More tests for \g errors in regular expressions
[p5sagit/p5-mst-13.2.git] / Changes
1 Please note: This file provides a complete, temporally ordered log of
2 changes that went into every version of Perl.  If you'd like more
3 detailed information, please consult the comments in the individual
4 patches posted to the perl5-porters mailing list.  Patches for each
5 individual change may also be obtained through ftp and rsync--see
6 pod/perlhack.pod for the details.
7
8 For information on what's new in this release, see pod/perldelta.pod.
9
10 [The "CAST AND CREW" list has been moved to AUTHORS.]
11
12 NOTE: Each change entry shows the change number; who checked it into the
13 repository; when; description of the change; which branch the change
14 happened in; and the affected files.  The file lists have a short symbolic
15 indicator:
16
17             !       modified
18             +       added
19             -       deleted
20             +>      branched (from elsewhere)
21             !>      merged changes (from elsewhere)
22
23 The Message-Ids in the change entries refer to the email messages sent
24 to the perl5-porters mailing list.  You can retrieve the messages for
25 example from http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/
26
27 --------------
28 Version v5.9.X          Development release working toward v5.10
29 --------------
30
31 ____________________________________________________________________________
32 [ 31502] By: rgs                                   on 2007/06/29  09:00:32
33         Log: Revert change #31489.
34              That change was adding a hook to cope with the case when one was
35              undef'ining *ISA globs, in order to clean up correctly. However, this
36              broke the case where one was assiging an array ref to @ISA, which
37              is likely to be more common.
38              Conclusion: don't undef *ISA. (or more generally don't undef globs
39              that contain magical variables)
40      Branch: perl
41            ! embed.fnc embed.h hv.c mg.c mro.c perl.h proto.h sv.c
42            ! t/mro/basic.t
43 ____________________________________________________________________________
44 [ 31501] By: rgs                                   on 2007/06/29  08:29:09
45         Log: Subject: Re: valgrind findings
46              From: "Brandon Black" <blblack@gmail.com>
47              Date: Thu, 28 Jun 2007 15:58:32 -0500
48              Message-ID: <84621a60706281358o3b379b20k2c1e53566587d79b@mail.gmail.com>
49      Branch: perl
50            ! mro.c
51 ____________________________________________________________________________
52 [ 31500] By: rgs                                   on 2007/06/29  07:58:19
53         Log: Being tired of adjusting the test count of concise-xs.t
54              all the time. Use no_plan instead.
55      Branch: perl
56            ! ext/B/t/concise-xs.t
57 ____________________________________________________________________________
58 [ 31499] By: rgs                                   on 2007/06/29  06:28:07
59         Log: Small pod fix
60      Branch: perl
61            ! pod/perlreapi.pod
62 ____________________________________________________________________________
63 [ 31498] By: demerphq                              on 2007/06/29  00:05:57
64         Log: fix overzealous search and replace
65      Branch: perl
66            ! regexp.h
67 ____________________________________________________________________________
68 [ 31497] By: demerphq                              on 2007/06/28  23:14:39
69         Log: Rename various regex defined so that they have distinct prefixes based on their usage.
70              
71              RXf_ => flags used in pm_flags argument to regcomp 
72              and stored in the regex via rx->extflags
73              PREGf_ => flags stored in rx->intflags
74              RXapif_ => argument flags for regex named capture api
75              RX_BUFF_IDX_ => special indexes to represent $` $' $&
76              used in the numeric capture buffer api
77              
78              PREGf is untouched by this change, but RXf_ is split into RXapif and RX_BUFF_IDX_.
79      Branch: perl
80            ! mg.c perl.h pod/perlreapi.pod regcomp.c regexp.h universal.c
81 ____________________________________________________________________________
82 [ 31496] By: demerphq                              on 2007/06/28  22:14:14
83         Log: Replace pattern parsing logic with optree "parsing" logic.
84      Branch: perl
85            ! regcomp.c
86 ____________________________________________________________________________
87 [ 31495] By: demerphq                              on 2007/06/28  22:09:07
88         Log: Subject: [PATCH] Move the RXf_WHITE logic for split " " into the regex engine
89              From: "=?UTF-8?Q?=C3=86var_Arnfj=C3=B6r=C3=B0_Bjarmason?=" 
90              Date: Thu, 28 Jun 2007 20:06:50 +0000
91              <avarab@gmail.com>
92              Message-ID: <51dd1af80706281306i4dbba39em3eeb8da1d67ea27c@mail.gmail.com>
93              
94              (with tweaks)
95      Branch: perl
96            ! ext/B/t/concise-xs.t op.c op.h pod/perlreapi.pod regcomp.c
97            ! regexp.h
98 ____________________________________________________________________________
99 [ 31494] By: stevep                                on 2007/06/28  20:33:32
100         Log: Add a TODO test cases RT# 43403.
101      Branch: perl
102            ! t/op/goto.t
103 ____________________________________________________________________________
104 [ 31493] By: rgs                                   on 2007/06/28  15:05:42
105         Log: Fix tests so they actually test $@. like() demands a qr//.
106      Branch: perl
107            ! t/op/vec.t
108 ____________________________________________________________________________
109 [ 31492] By: rgs                                   on 2007/06/28  10:55:04
110         Log: New valgrind suppressions.
111      Branch: perl
112            ! t/perl.supp
113 ____________________________________________________________________________
114 [ 31491] By: steveh                                on 2007/06/28  10:46:39
115         Log: Re-enable the setlocale() tests for Windows XP onwards
116              since they seem to work OK. Not sure about older flavours
117              of Windows, so leave them alone.
118      Branch: perl
119            ! lib/locale.t
120 ____________________________________________________________________________
121 [ 31490] By: steveh                                on 2007/06/28  10:11:15
122         Log: Subject: RE: Problem in Win32CORE when building PAR-Packer-0.975 with bleadperl on Win32
123              From: "Jan Dubois" <jand@activestate.com>
124              Date: Wed, 27 Jun 2007 15:34:12 -0700
125              Message-ID: <02bd01c7b90b$49863720$dc92a560$@com>
126              
127              Rearranges the initialization of Win32CORE. The Perl interpreter isn't
128              fully initialized when Perl_init_os_extras() in win32/win32.c is called,
129              so it is not safe to use the Perl calling mechanism yet. Fixes a problem
130              building PAR-Packer on Win32.
131      Branch: perl
132            ! cygwin/cygwin.c ext/Win32CORE/Win32CORE.c
133            ! ext/Win32CORE/Win32CORE.pm makedef.pl win32/win32.c
134 ____________________________________________________________________________
135 [ 31489] By: rgs                                   on 2007/06/28  06:32:01
136         Log: Subject: Re: [perl #43357] *DESTROY = sub {} at runtime
137              From: "Brandon Black" <blblack@gmail.com>
138              Date: Wed, 27 Jun 2007 10:07:54 -0500
139              Message-ID: <84621a60706270807r7af65546x8d959b131ffa28e6@mail.gmail.com>
140      Branch: perl
141            ! embed.fnc embed.h hv.c mg.c mro.c perl.h proto.h sv.c
142            ! t/mro/basic.t
143 ____________________________________________________________________________
144 [ 31488] By: rgs                                   on 2007/06/28  06:17:04
145         Log: Subject: [PATCH-revised] Move tests under 'threads' module
146              From: "Jerry D. Hedden" <jdhedden@cpan.org>
147              Date: Wed, 27 Jun 2007 14:15:16 -0400
148              Message-ID: <1ff86f510706271115n6c816334nbde6774792743a54@mail.gmail.com>
149      Branch: perl
150            ! ext/threads/t/thread.t t/op/threads.t
151 ____________________________________________________________________________
152 [ 31487] By: rgs                                   on 2007/06/28  06:13:31
153         Log: Subject: Re: [PATCH-revised] ext/Win32/t/Unicode.t failures on FAT32 under Cygwin
154              From: "Jerry D. Hedden" <jdhedden@cpan.org>
155              Date: Wed, 27 Jun 2007 20:46:39 -0400
156              Message-ID: <1ff86f510706271746r62f921f4s3770df0b92cdf201@mail.gmail.com>
157      Branch: perl
158            ! ext/Win32/t/Unicode.t
159 ____________________________________________________________________________
160 [ 31486] By: rgs                                   on 2007/06/28  06:10:45
161         Log: Subject: Math::BigFloat - fix bpi() and A [PATCH]
162              From: Tels <nospam-abuse@bloodgate.com>
163              Date: Wed, 27 Jun 2007 18:34:14 +0200
164              Message-Id: <200706271834.14904@bloodgate.com>
165      Branch: perl
166            + lib/Math/BigInt/t/big_pi_e.t
167            ! MANIFEST lib/Math/BigFloat.pm
168 ____________________________________________________________________________
169 [ 31485] By: rgs                                   on 2007/06/28  06:03:32
170         Log: Subject: Re: Broken bignum tests [PATCH]
171              From: Tels <nospam-abuse@bloodgate.com>
172              Date: Wed, 27 Jun 2007 19:15:45 +0200
173              Message-Id: <200706271915.46068@bloodgate.com>
174      Branch: perl
175            ! lib/bigint.pm lib/bignum.pm lib/bignum/t/big_e_pi.t
176            ! lib/bignum/t/bii_e_pi.t lib/bignum/t/bir_e_pi.t lib/bigrat.pm
177 ____________________________________________________________________________
178 [ 31484] By: rgs                                   on 2007/06/28  05:42:49
179         Log: Subject: [PATCH] bring File-Path up to 2.01
180              From: David Landgren <david@landgren.net>
181              Date: Wed, 27 Jun 2007 21:46:39 +0200
182              Message-ID: <4682BE9F.6080502@landgren.net>
183      Branch: perl
184            ! lib/File/Path.pm lib/File/Path.t
185 ____________________________________________________________________________
186 [ 31483] By: demerphq                              on 2007/06/28  00:01:54
187         Log: Free memory in case of error/failure to compile.
188              
189              Hopefully valgrind will notice and like. :-)
190      Branch: perl
191            ! regcomp.c
192 ____________________________________________________________________________
193 [ 31482] By: steveh                                on 2007/06/27  17:08:01
194         Log: Fix POSIX::setlocale(): the CRT function returns a pointer to a
195              buffer that may be overwritten by subsequent calls to the CRT
196              function, so we must make a safe copy of that buffer for our own
197              use. This fixes lib/locale.t on Win32 with the Borland compiler,
198              but presumably could affect other compilers too.
199      Branch: perl
200            ! ext/POSIX/POSIX.xs
201 ____________________________________________________________________________
202 [ 31481] By: rgs                                   on 2007/06/27  16:40:10
203         Log: Revert change #31480. The PI and e functions can accept an argument.
204      Branch: perl
205            ! lib/bigint.pm lib/bignum.pm lib/bigrat.pm
206 ____________________________________________________________________________
207 [ 31480] By: rgs                                   on 2007/06/27  13:02:02
208         Log: Add an empty prototype to functions PI and e
209      Branch: perl
210            ! lib/bigint.pm lib/bignum.pm lib/bigrat.pm
211 ____________________________________________________________________________
212 [ 31479] By: rgs                                   on 2007/06/27  12:57:52
213         Log: Subject: Re: RFC: bigint et. al exporting PI method? [PATCH]
214              From: Tels <nospam-abuse@bloodgate.com>
215              Date: Tue, 26 Jun 2007 20:56:45 +0200
216              Message-Id: <200706262056.47311@bloodgate.com>
217      Branch: perl
218            + lib/bignum/t/big_e_pi.t lib/bignum/t/bii_e_pi.t
219            + lib/bignum/t/bir_e_pi.t
220            ! MANIFEST lib/bigint.pm lib/bignum.pm lib/bigrat.pm
221 ____________________________________________________________________________
222 [ 31478] By: rgs                                   on 2007/06/27  12:51:22
223         Log: Subject: Math::BigInt take 12 [PATCH]
224              From: Tels <nospam-abuse@bloodgate.com>
225              Date: Tue, 26 Jun 2007 21:00:53 +0200
226              Message-Id: <200706262100.54138@bloodgate.com>
227      Branch: perl
228            ! lib/Math/BigFloat.pm lib/Math/BigInt.pm
229            ! lib/Math/BigInt/t/bare_mbf.t lib/Math/BigInt/t/bare_mbi.t
230            ! lib/Math/BigInt/t/bigfltpm.inc lib/Math/BigInt/t/bigfltpm.t
231            ! lib/Math/BigInt/t/bigintpm.inc lib/Math/BigInt/t/bigintpm.t
232            ! lib/Math/BigInt/t/sub_mbf.t lib/Math/BigInt/t/sub_mbi.t
233            ! lib/Math/BigInt/t/with_sub.t
234 ____________________________________________________________________________
235 [ 31477] By: rgs                                   on 2007/06/27  09:59:11
236         Log: Subject: [PATCH-revised] threads 1.63
237              From: "Jerry D. Hedden" <jdhedden@cpan.org>
238              Date: Tue, 26 Jun 2007 21:17:52 -0400
239              Message-ID: <1ff86f510706261817o52ad2e23kbd4efb16b5bed98b@mail.gmail.com>
240      Branch: perl
241            ! ext/threads/Changes ext/threads/README ext/threads/t/exit.t
242            ! ext/threads/t/thread.t ext/threads/threads.pm
243 ____________________________________________________________________________
244 [ 31476] By: rgs                                   on 2007/06/27  08:53:02
245         Log: Subject: [PATCH] B::Deparse cleanups
246              From: Chia-liang Kao <clkao@bestpractical.com>
247              Date: Wed, 27 Jun 2007 00:06:56 +0100
248              Message-Id: <1182899216.22414.32.camel@localhost>
249      Branch: perl
250            ! ext/B/B/Deparse.pm ext/B/t/concise-xs.t ext/B/t/deparse.t
251 ____________________________________________________________________________
252 [ 31475] By: davem                                 on 2007/06/26  21:25:15
253         Log: avoid double-free of the thread function
254      Branch: perl
255            ! ext/threads/threads.xs t/op/threads.t
256 ____________________________________________________________________________
257 [ 31474] By: davem                                 on 2007/06/26  21:07:02
258         Log: make sure PL_Parser is NULL during early stage of thread clone
259      Branch: perl
260            ! sv.c
261 ____________________________________________________________________________
262 [ 31473] By: rgs                                   on 2007/06/26  16:12:27
263         Log: Second patch from:
264              Subject: Re: [perl #43357] *DESTROY = sub {} at runtime
265              From: "Brandon Black" <blblack@gmail.com>
266              Date: Tue, 26 Jun 2007 11:05:31 -0500
267              Message-ID: <84621a60706260905x2da6eaf1x4bd7d5223951e52@mail.gmail.com>
268              
269              Fix MRO behaviour when one undefs @ISA
270      Branch: perl
271            ! av.c t/mro/basic.t
272 ____________________________________________________________________________
273 [ 31472] By: rgs                                   on 2007/06/26  16:10:11
274         Log: First patch from:
275              Subject: Re: [perl #43357] *DESTROY = sub {} at runtime
276              From: "Brandon Black" <blblack@gmail.com>
277              Date: Tue, 26 Jun 2007 11:05:31 -0500
278              Message-ID: <84621a60706260905x2da6eaf1x4bd7d5223951e52@mail.gmail.com>
279              
280              Fix problem recently introduced with loosing a DESTROY when redefined
281              at runtime.
282      Branch: perl
283            ! gv.c t/mro/basic.t
284 ____________________________________________________________________________
285 [ 31471] By: rgs                                   on 2007/06/26  15:48:51
286         Log: Subject: [PATCH] Add TODO tests for refcount issues related to threads
287              From: "Jerry D. Hedden" <jdhedden@cpan.org>
288              Date: Tue, 26 Jun 2007 11:26:25 -0400
289              Message-ID: <1ff86f510706260826h79124373y51d899e53c96b50e@mail.gmail.com>
290      Branch: perl
291            ! t/op/threads.t
292 ____________________________________________________________________________
293 [ 31470] By: steveh                                on 2007/06/26  09:10:24
294         Log: Upgrade to Win32-0.30
295      Branch: perl
296            + ext/Win32/t/GetShortPathName.t
297            ! MANIFEST ext/Win32/Makefile.PL ext/Win32/Win32.pm
298            ! ext/Win32/Win32.xs ext/Win32/t/Unicode.t
299 ____________________________________________________________________________
300 [ 31469] By: steveh                                on 2007/06/26  07:38:05
301         Log: Subject: [PATCH] Remove dead code from win32/win32sck.c
302              From: "Jan Dubois" <jand@activestate.com>
303              Date: Mon, 25 Jun 2007 17:13:04 -0700
304              Message-ID: <02bb01c7b786$c42099c0$4c61cd40$@com>
305              
306              Subject: RE: [PATCH] Remove dead code from win32/win32sck.c
307              From: "Jan Dubois" <jand@activestate.com>
308              Date: Mon, 25 Jun 2007 17:26:15 -0700
309              Message-ID: <02c801c7b788$9bf7ebe0$d3e7c3a0$@com>
310      Branch: perl
311            ! win32/win32sck.c win32/wincesck.c
312 ____________________________________________________________________________
313 [ 31468] By: steveh                                on 2007/06/26  07:31:13
314         Log: Subject: [PATCH] Win32 is dual-lived on CPAN
315              From: "Jan Dubois" <jand@activestate.com>
316              Date: Mon, 25 Jun 2007 17:02:24 -0700
317              Message-ID: <02a501c7b785$4774f890$d65ee9b0$@com>
318      Branch: perl
319            ! Porting/Maintainers.pl
320 ____________________________________________________________________________
321 [ 31467] By: rgs                                   on 2007/06/26  07:22:36
322         Log: Subject: [PATCH] Porting/corecpan.pl -f option doesn't work
323              From: "Jan Dubois" <jand@activestate.com>
324              Date: Mon, 25 Jun 2007 16:55:01 -0700
325              Message-ID: <02a101c7b784$3f79c720$be6d5560$@com>
326      Branch: perl
327            ! Porting/corecpan.pl
328 ____________________________________________________________________________
329 [ 31466] By: steveh                                on 2007/06/25  15:10:34
330         Log: Revert #30197 and #30219, which #31464 has just made redundant
331      Branch: perl
332            ! win32/Makefile win32/makefile.mk
333 ____________________________________________________________________________
334 [ 31465] By: rgs                                   on 2007/06/25  14:26:37
335         Log: Subject: [PATCH] Accept file exists error in ext/Win32API/File/t/file.t
336              From: "Jerry D. Hedden" <jdhedden@cpan.org>
337              Date: Mon, 25 Jun 2007 10:23:15 -0400
338              Message-ID: <1ff86f510706250723r4d6c5f5dg203b3f61cdeaa14d@mail.gmail.com>
339      Branch: perl
340            ! ext/Win32API/File/t/file.t
341 ____________________________________________________________________________
342 [ 31464] By: rgs                                   on 2007/06/25  14:20:04
343         Log: Rename README and Changes for more readability
344      Branch: perl
345           +> lib/Net/Changes lib/Net/README
346            - lib/Net/Changes.libnet lib/Net/README.libnet
347            ! MANIFEST Porting/Maintainers.pl
348 ____________________________________________________________________________
349 [ 31463] By: rgs                                   on 2007/06/25  14:16:28
350         Log: Upgrade to libnet 1.21
351      Branch: perl
352            + lib/Net/Hostname.pm.eg
353            - lib/Net/Hostname.eg
354            ! MANIFEST lib/Net/Changes.libnet lib/Net/Cmd.pm
355            ! lib/Net/Config.pm lib/Net/Domain.pm lib/Net/FTP.pm
356            ! lib/Net/FTP/A.pm lib/Net/FTP/I.pm lib/Net/FTP/dataconn.pm
357            ! lib/Net/NNTP.pm lib/Net/Netrc.pm lib/Net/POP3.pm
358            ! lib/Net/README.libnet lib/Net/SMTP.pm lib/Net/Time.pm
359            ! lib/Net/libnetFAQ.pod
360 ____________________________________________________________________________
361 [ 31462] By: rgs                                   on 2007/06/25  12:10:10
362         Log: Apply doc suggestion from:
363              Subject: [perl #43287] perluniintro inaccurate answer to testing encoding validity 
364              From: Danny Rathjens (via RT) <perlbug-followup@perl.org>
365              Date: Thu, 21 Jun 2007 17:35:26 -0700
366              Message-ID: <rt-3.6.HEAD-1276-1182472526-1129.43287-75-0@perl.org>
367      Branch: perl
368            ! pod/perluniintro.pod
369 ____________________________________________________________________________
370 [ 31461] By: rgs                                   on 2007/06/25  11:41:35
371         Log: Subject: [PATCH] remove op_static
372              From: Paul Johnson <paul@pjcj.net>
373              Date: Fri, 22 Jun 2007 02:13:20 +0200
374              Message-ID: <20070622001320.GD20560@pjcj.net>
375              
376              Plus version bumps
377      Branch: perl
378            ! ext/B/B.pm ext/B/B.xs ext/B/B/Concise.pm ext/B/B/Debug.pm op.c
379            ! op.h
380 ____________________________________________________________________________
381 [ 31460] By: rgs                                   on 2007/06/25  10:23:47
382         Log: That test too should be skipped in the core on EBCDIC platforms
383              (because it requires Convert::EBCDIC)
384      Branch: perl
385            ! lib/Net/t/datasend.t
386 ____________________________________________________________________________
387 [ 31459] By: rgs                                   on 2007/06/25  09:45:21
388         Log: Subject: [Caffeine-Patch] Math::BigInt 1.87 take 11 (add batan2, fix batan, speedup bpi()
389              From: Tels <nospam-abuse@bloodgate.com>
390              Date: Sat, 23 Jun 2007 15:30:49 +0200
391              Message-Id: <200706231530.49865@bloodgate.com>
392      Branch: perl
393            - lib/Math/BigInt/t/fallback.t
394            ! MANIFEST lib/Math/BigFloat.pm lib/Math/BigInt.pm
395            ! lib/Math/BigInt/t/bare_mbf.t lib/Math/BigInt/t/bigfltpm.inc
396            ! lib/Math/BigInt/t/bigfltpm.t lib/Math/BigInt/t/sub_mbf.t
397            ! lib/Math/BigInt/t/with_sub.t t/lib/Math/BigInt/BareCalc.pm
398 ____________________________________________________________________________
399 [ 31458] By: rgs                                   on 2007/06/25  09:08:53
400         Log: Remove now-irrelevant comment
401      Branch: perl
402            ! ext/Win32API/File/t/file.t
403 ____________________________________________________________________________
404 [ 31457] By: rgs                                   on 2007/06/25  09:08:04
405         Log: Subject: [perl #43285] Win32API::File tests language specific 
406              From: "Reini Urban via RT" <perlbug-followup@perl.org>
407              Date: Sat, 23 Jun 2007 11:15:07 -0700
408              Message-ID: <rt-3.6.HEAD-1276-1182622506-790.43285-15-0@perl.org>
409      Branch: perl
410            ! ext/Win32API/File/t/file.t
411 ____________________________________________________________________________
412 [ 31456] By: rgs                                   on 2007/06/25  09:02:18
413         Log: PerlFAQ sync.
414      Branch: perl
415            ! pod/perlfaq1.pod pod/perlfaq2.pod pod/perlfaq4.pod
416            ! pod/perlfaq5.pod pod/perlfaq7.pod pod/perlfaq8.pod
417 ____________________________________________________________________________
418 [ 31455] By: nicholas                              on 2007/06/24  15:46:40
419         Log: s/\bunicode\b/Unicode/; # For everything not dual life
420      Branch: perl
421            ! dump.c ext/Data/Dumper/Dumper.pm pod/perlapi.pod
422            ! pod/perldiag.pod pod/perlhack.pod pod/perlpacktut.pod
423            ! pod/perlre.pod pod/perlretut.pod pod/perlunicode.pod regcomp.c
424            ! regcomp.h regexec.c utf8.c vms/vms.c
425 ____________________________________________________________________________
426 [ 31454] By: nicholas                              on 2007/06/24  13:32:42
427         Log: Also get copy on write working with ithreads. It hadn't been working
428              since change 26684 (which uses sv_setsv_flags to copy a value from an
429              SV in one interpreter context to an SV in another), despite what
430              change 31120 thought. ext/Compress/Raw/Zlib/t/07bufsize.t still fails.
431      Branch: perl
432            ! sv.c sv.h
433 ____________________________________________________________________________
434 [ 31453] By: demerphq                              on 2007/06/23  19:53:53
435         Log: Rename test files starting with regexp_ that do not
436              wrap regexp.t (and thus use re_tests) to reg_ to make
437              it clear they are standalone.
438      Branch: perl
439           +> t/op/reg_email.t t/op/reg_mesg.t t/op/reg_namedcapture.t
440           +> t/op/reg_nc_tie.t t/op/reg_pmod.t
441            - t/op/regexp_email.t t/op/regexp_namedcapture.t
442            - t/op/regexp_nc_tie.t t/op/regexp_pmod.t t/op/regmesg.t
443            ! MANIFEST
444 ____________________________________________________________________________
445 [ 31451] By: demerphq                              on 2007/06/23  19:04:04
446         Log: Resolve 
447              http://www.nntp.perl.org/group/perl.perl5.porters/2007/06/msg125667.html
448              by reverting part of change #29354. 
449              
450              Unfortunately match vars after a /g match in scalar context will be
451              unsafe (again) after this, but such matches on long strings won't be
452              as diabolically slow.
453              
454              Question: why does the new test in t/op/pat.t pass, but the same test
455              in t/op/reg_unsafe.t fail? (Latter is TODO for now)
456      Branch: perl
457            + t/op/reg_unsafe.t
458            ! MANIFEST pp_hot.c t/op/pat.t
459 ____________________________________________________________________________
460 [ 31450] By: rgs                                   on 2007/06/23  10:14:43
461         Log: Tels' patch to defer overloading of hex and oct,
462              to avoid magic leaking and smoke failures under
463              utf-8 locales
464      Branch: perl
465            ! lib/bigint.pm lib/bignum.pm lib/bigrat.pm lib/charnames.pm
466            ! lib/utf8.pm lib/utf8_heavy.pl
467 ____________________________________________________________________________
468 [ 31449] By: rgs                                   on 2007/06/23  09:19:03
469         Log: Subject: [PATCH] Math::BigInt v1.87 take 10
470              From: Tels <nospam-abuse@bloodgate.com>
471              Date: Fri, 22 Jun 2007 19:02:22 +0200
472              Message-Id: <200706221902.22487@bloodgate.com>
473      Branch: perl
474            ! lib/Math/BigFloat.pm lib/Math/BigInt.pm
475            ! lib/Math/BigInt/t/bare_mbf.t lib/Math/BigInt/t/bigfltpm.inc
476            ! lib/Math/BigInt/t/bigfltpm.t lib/Math/BigInt/t/fallback.t
477            ! lib/Math/BigInt/t/sub_mbf.t lib/Math/BigInt/t/with_sub.t
478 ____________________________________________________________________________
479 [ 31448] By: davem                                 on 2007/06/23  00:08:44
480         Log: remove the test added by change #31447
481              (I couldn't get a test that worked, and accidentally included my
482              failed attempt in the patch).
483      Branch: perl
484            ! t/op/closure.t
485 ____________________________________________________________________________
486 [ 31447] By: davem                                 on 2007/06/22  23:46:36
487         Log: safely handle cloning a stale lexical var
488              This code:
489              my $x if ...; sub { $x}
490              could attempt to clone $x even if $x is stale.
491      Branch: perl
492            ! pad.c t/op/closure.t
493 ____________________________________________________________________________
494 [ 31446] By: rgs                                   on 2007/06/22  15:17:23
495         Log: Subject: [PATCH] Remove orphaned (and unused) Test::Simple test
496              From: "Jerry D. Hedden" <jdhedden@cpan.org>
497              Date: Thu, 21 Jun 2007 14:28:12 -0400
498              Message-ID: <1ff86f510706211128h58cd5e98s49ec897bbdcce2a2@mail.gmail.com>
499      Branch: perl
500            - lib/Test/Simple/t/strays.t
501            ! MANIFEST
502 ____________________________________________________________________________
503 [ 31445] By: merijn                                on 2007/06/22  14:55:47
504         Log: Subject: [perl #43291] perl-5.8.8 - AIX 5.3 64bit build issues 
505              From: Niklas Edmundsson (via RT) <perlbug-followup@perl.org>
506              Date: Fri, 22 Jun 2007 00:30:36 -0700
507              Message-ID: <rt-3.6.HEAD-1276-1182497436-1446.43291-75-0@perl.org>
508      Branch: perl
509            ! hints/aix.sh
510 ____________________________________________________________________________
511 [ 31444] By: merijn                                on 2007/06/22  10:21:12
512         Log: Subject: [PATCH] perlopentut
513              From: "Dintelmann, Peter" <Peter.Dintelmann@Dresdner-Bank.com>
514              Date: Fri, 22 Jun 2007 10:30:50 +0200
515              Message-ID: <3852726AFA94DE4F87E616F13F416A5FB66C78@naimucu1.ffz00k.rootdom.net>
516      Branch: perl
517            ! pod/perlopentut.pod
518 ____________________________________________________________________________
519 [ 31443] By: demerphq                              on 2007/06/21  22:57:20
520         Log: Add avar to the authors file... Apparently the 'ae' ligature sorts after z in Icelandic so he goes at the bottom of the file.
521      Branch: perl
522            ! AUTHORS
523 ____________________________________________________________________________
524 [ 31442] By: demerphq                              on 2007/06/21  22:23:20
525         Log: Correct my email address. (My very first commit!)
526      Branch: perl
527            ! AUTHORS
528 ____________________________________________________________________________
529 [ 31441] By: rgs                                   on 2007/06/21  14:54:32
530         Log: Subject: [PATCH] Remove unused Module::Build tests
531              From: "Jerry D. Hedden" <jdhedden@cpan.org>
532              Date: Thu, 21 Jun 2007 10:24:01 -0400
533              Message-ID: <1ff86f510706210724v5ccd24d0md024fd5a941ee769@mail.gmail.com>
534      Branch: perl
535            - lib/Module/Build/t/par.t lib/Module/Build/t/signature.t
536            ! MANIFEST
537 ____________________________________________________________________________
538 [ 31440] By: rgs                                   on 2007/06/21  08:34:35
539         Log: Subject: [PATCH] File::Spec::Cygwin more tests and silence warning
540              From: Reini Urban <rurban@x-ray.at>
541              Date: Wed, 20 Jun 2007 21:10:05 +0200
542              Message-ID: <46797B8D.8040002@x-ray.at>
543      Branch: perl
544            ! lib/File/Spec/Cygwin.pm lib/File/Spec/t/Spec.t
545 ____________________________________________________________________________
546 [ 31439] By: rgs                                   on 2007/06/21  08:28:13
547         Log: Subject: [perl #43265] cygwin/Makefile.SHs: miniperl -Ilib for a clean @INC 
548              From: cygwin@cygwin.com (via RT) <perlbug-followup@perl.org>
549              Date: Wed, 20 Jun 2007 09:39:31 -0700
550              Message-ID: <rt-3.6.HEAD-1276-1182357570-46.43265-75-0@perl.org>
551      Branch: perl
552            ! cygwin/Makefile.SHs
553 ____________________________________________________________________________
554 [ 31438] By: rgs                                   on 2007/06/21  08:26:18
555         Log: Subject: [PATCH] cloexec.t works under Cygwin
556              From: "Jerry D. Hedden" <jdhedden@cpan.org>
557              Date: Wed, 20 Jun 2007 09:39:20 -0400
558              Message-ID: <1ff86f510706200639t13f58ecbi286015713765c403@mail.gmail.com>
559      Branch: perl
560            ! t/run/cloexec.t
561 ____________________________________________________________________________
562 [ 31437] By: rgs                                   on 2007/06/21  08:24:26
563         Log: Subject: [PATCH] Remove Archive::Test POD check
564              From: "Jerry D. Hedden" <jdhedden@cpan.org>
565              Date: Wed, 20 Jun 2007 09:43:27 -0400
566              Message-ID: <1ff86f510706200643s50cb5028ted455f52497f6af5@mail.gmail.com>
567      Branch: perl
568            - lib/Archive/Tar/t/99_pod.t
569            ! MANIFEST
570 ____________________________________________________________________________
571 [ 31436] By: rgs                                   on 2007/06/21  08:18:54
572         Log: Subject: [perl #40103] File::Spec->case_tolerant() should return true on Cygwin 
573              From: "Reini Urban via RT" <perlbug-followup@perl.org>
574              Date: Wed, 20 Jun 2007 11:50:21 -0700
575              Message-ID: <rt-3.6.HEAD-1276-1182365420-145.40103-15-0@perl.org>
576      Branch: perl
577            ! lib/File/Spec/Cygwin.pm lib/File/Spec/t/Spec.t
578 ____________________________________________________________________________
579 [ 31435] By: rgs                                   on 2007/06/21  08:15:24
580         Log: Subject: [perl #43273] Enable lib/User/*.t on cygwin 
581              From: Reini Urban (via RT) <perlbug-followup@perl.org>
582              Date: Wed, 20 Jun 2007 16:22:48 -0700
583              Message-ID: <rt-3.6.HEAD-1276-1182381767-470.43273-75-0@perl.org>
584      Branch: perl
585            ! lib/User/grent.t lib/User/pwent.t
586 ____________________________________________________________________________
587 [ 31434] By: rgs                                   on 2007/06/21  08:13:37
588         Log: Subject: [PATH] AUTHORS rurban
589              From: Reini Urban <rurban@x-ray.at>
590              Date: Wed, 20 Jun 2007 23:35:03 +0200
591              Message-ID: <46799D87.50906@x-ray.at>
592      Branch: perl
593            ! AUTHORS
594 ____________________________________________________________________________
595 [ 31433] By: rgs                                   on 2007/06/21  08:12:09
596         Log: Subject: [PATCH] pod/perlhack.pod where to go for information about smoke testing
597              From: "Gabor Szabo" <szabgab@gmail.com>
598              Date: Thu, 21 Jun 2007 08:19:33 +0300
599              Message-ID: <d8a74af10706202219n4f4659eenef064752bd0a6954@mail.gmail.com>
600      Branch: perl
601            ! pod/perlhack.pod
602 ____________________________________________________________________________
603 [ 31432] By: craigb                                on 2007/06/21  03:24:02
604         Log: Skip a test that causes list assignment to %ENV errors on VMS.
605      Branch: perl
606            ! lib/File/Spec/t/tmpdir.t
607 ____________________________________________________________________________
608 [ 31431] By: craigb                                on 2007/06/21  03:15:59
609         Log: Make File::Spec::VMS->splitdir stop returning an empty first directory
610              when passed a relative path.  Also, don't split on escaped directory 
611              delimiters.
612      Branch: perl
613            ! lib/File/Spec/VMS.pm lib/File/Spec/t/Spec.t
614 ____________________________________________________________________________
615 [ 31430] By: steveh                                on 2007/06/20  16:26:01
616         Log: Silence "signed/unsigned mismatch" warning from VC++ when building
617              with -DPERL_DEBUGGING_MSTATS
618      Branch: perl
619            ! ext/Devel/Peek/Peek.xs
620 ____________________________________________________________________________
621 [ 31429] By: steveh                                on 2007/06/20  16:07:06
622         Log: Stop the VC++ warning "'HUF_func_2mode' undefined; assuming extern
623              returning int" by shuffling the functions around so that that
624              function is defined before it is called (since there are no forward
625              declarations of functions in this file)
626      Branch: perl
627            ! ext/Hash/Util/FieldHash/FieldHash.xs
628 ____________________________________________________________________________
629 [ 31428] By: steveh                                on 2007/06/20  16:03:10
630         Log: Change #31426 should also be applied to the PERL_IMPLICIT_SYS
631              version of ioctl()
632      Branch: perl
633            ! win32/perlhost.h
634 ____________________________________________________________________________
635 [ 31427] By: rgs                                   on 2007/06/20  14:36:19
636         Log: Change #31426 should also be applied to the windows CE version
637      Branch: perl
638            ! win32/wincesck.c
639 ____________________________________________________________________________
640 [ 31426] By: rgs                                   on 2007/06/20  13:30:14
641         Log: Subject: Re: Net::SMTP can't send large messages with bleadperl
642              From: demerphq <demerphq@gmail.com>
643              Date: Wed, 20 Jun 2007 15:22:31 +0200
644              Message-ID: <9b18b3110706200622o344c417apbd50468c6e5eb533@mail.gmail.com>
645      Branch: perl
646            ! win32/win32sck.c
647 ____________________________________________________________________________
648 [ 31425] By: rgs                                   on 2007/06/20  07:45:43
649         Log: A first stab at making perlreref.pod up to date
650      Branch: perl
651            ! pod/perlreref.pod
652 ____________________________________________________________________________
653 [ 31424] By: rgs                                   on 2007/06/20  07:41:15
654         Log: Fix docs for \u ; plus a POD formatting nit
655      Branch: perl
656            ! pod/perlrebackslash.pod
657 ____________________________________________________________________________
658 [ 31423] By: nicholas                              on 2007/06/19  20:38:36
659         Log: Subject: Re: Net::SMTP can't send large messages with bleadperl
660              Message-ID: <9b18b3110706180943y22c0eaa7yf34565d87689dd9e@mail.gmail.com>
661              From: demerphq <demerphq@gmail.com>
662              Date: Mon, 18 Jun 2007 18:43:17 +0200
663      Branch: perl
664            ! ext/IO/lib/IO/Socket.pm
665 ____________________________________________________________________________
666 [ 31422] By: nicholas                              on 2007/06/19  18:32:59
667         Log: Work on getting B compiling outside of the perl source tree.
668      Branch: perl
669            ! ext/B/Makefile.PL ext/B/defsubs_h.PL
670 ____________________________________________________________________________
671 [ 31421] By: craigb                                on 2007/06/19  12:29:32
672         Log: Better handling of escapes in filenames when converting between VMS
673              and Unix syntax.
674      Branch: perl
675            ! vms/vms.c
676 ____________________________________________________________________________
677 [ 31420] By: rgs                                   on 2007/06/19  12:13:20
678         Log: Subject: [perl #43242] "use base" breaks code containing peculiarly named constant 
679              From: Martin Becker (via RT) <perlbug-followup@perl.org>
680              Date: Mon, 18 Jun 2007 09:48:54 -0700
681              Message-ID: <rt-3.6.HEAD-7948-1182185333-640.43242-75-0@perl.org>
682              
683              plus a test case
684      Branch: perl
685            ! lib/base.pm lib/base/t/base.t
686 ____________________________________________________________________________
687 [ 31419] By: rgs                                   on 2007/06/19  09:43:21
688         Log: Update list of files that need crlf line endings
689      Branch: perl
690            ! Porting/curliff.pl
691 ____________________________________________________________________________
692 [ 31418] By: davem                                 on 2007/06/18  22:48:25
693         Log: fix S_emulate_eaccess compiler warning
694      Branch: perl
695            ! embed.fnc embed.h proto.h
696 ____________________________________________________________________________
697 [ 31417] By: davem                                 on 2007/06/18  15:10:32
698         Log: 5.9.4 regexp capturing wrongly
699              change #28398 accidently made the last branch of an alternation
700              not restore the paren state after failure backtrack. Fix this by
701              removing the last-branch-skips-pushing-a-state optimisation.
702      Branch: perl
703            ! regexec.c t/op/re_tests
704 ____________________________________________________________________________
705 [ 31416] By: rgs                                   on 2007/06/18  13:20:50
706         Log: R stands for Report, not Reporting.
707      Branch: perl
708            ! META.yml Porting/makemeta
709 ____________________________________________________________________________
710 [ 31415] By: rgs                                   on 2007/06/18  13:19:23
711         Log: Regenerate META.yml.
712              Put MAD in Maintainers.pl.
713      Branch: perl
714            ! META.yml Porting/Maintainers.pl
715 ____________________________________________________________________________
716 [ 31414] By: rgs                                   on 2007/06/18  11:39:04
717         Log: Regen pods
718      Branch: perl
719            ! pod/perlmodlib.pod pod/perltoc.pod
720 ____________________________________________________________________________
721 [ 31413] By: steveh                                on 2007/06/18  08:49:30
722         Log: Subject: Re: Math::BigInt 1.87 problems? Re: FAIL DBI-1.56 i686-linux 2.4.27-3-686 [PATCH]
723              From: Tels <nospam-abuse@bloodgate.com>
724              Date: Fri, 15 Jun 2007 19:56:10 +0200
725              Message-Id: <200706151956.11861@bloodgate.com>
726      Branch: perl
727            ! ext/Math/BigInt/FastCalc/FastCalc.xs
728            ! ext/Math/BigInt/FastCalc/t/bigintfc.t
729 ____________________________________________________________________________
730 [ 31412] By: rgs                                   on 2007/06/18  08:27:59
731         Log: Remove PERL_MAGIC_mutex
732      Branch: perl
733            ! dump.c perl.h pod/perlguts.pod
734 ____________________________________________________________________________
735 [ 31411] By: rgs                                   on 2007/06/18  07:53:05
736         Log: Subject: [PATCH] perlreapi.pod documentation for flags & cleanup
737              From: "=?UTF-8?Q?=C3=86var_Arnfj=C3=B6r=C3=B0_Bjarmason?=" <avarab@gmail.com>
738              Date: Sun, 17 Jun 2007 18:09:25 +0000
739              Message-ID: <51dd1af80706171109r37c294c4h78a51083c3b851ba@mail.gmail.com>
740      Branch: perl
741            ! pod/perlreapi.pod
742 ____________________________________________________________________________
743 [ 31410] By: rgs                                   on 2007/06/18  07:48:56
744         Log: Subject: [PATCH] POD Alignment for the magic table in perlapi.pod
745              From: "=?UTF-8?Q?=C3=86var_Arnfj=C3=B6r=C3=B0_Bjarmason?=" <avarab@gmail.com>
746              Date: Sun, 17 Jun 2007 18:41:29 +0000
747              Message-ID: <51dd1af80706171141w48cb717fr71ce7f214daebe36@mail.gmail.com>
748      Branch: perl
749            ! pod/perlguts.pod
750 ____________________________________________________________________________
751 [ 31409] By: rgs                                   on 2007/06/18  07:39:35
752         Log: Subject: [PATCH] SvRX() and SvRXOK() macros
753              From: "=?UTF-8?Q?=C3=86var_Arnfj=C3=B6r=C3=B0_Bjarmason?=" <avarab@gmail.com>
754              Date: Mon, 18 Jun 2007 03:33:34 +0000
755              Message-ID: <51dd1af80706172033h1908aa0ge15698204e0b79ed@mail.gmail.com>
756      Branch: perl
757            ! embed.fnc ext/re/re.xs pod/perlapi.pod pod/perlreapi.pod
758            ! proto.h regexp.h universal.c util.c
759 ____________________________________________________________________________
760 [ 31408] By: davem                                 on 2007/06/18  00:00:30
761         Log: add test for, and update comments for, old defined($1) oddity.
762              
763              Some code in regexec.c had a comment to the effect that without
764              this code, Dynaloader failed (this is back at 5.6.0). Replace the
765              comments with something more specific, and add a test for it
766              (basically without the code $1 is '' rather than undefined
767              sometimes).
768      Branch: perl
769            ! regexec.c t/op/re_tests
770 ____________________________________________________________________________
771 [ 31407] By: rgs                                   on 2007/06/17  17:14:12
772         Log: POD fixes in Hash::Util and Hash::Util::FieldHash
773      Branch: perl
774            ! ext/Hash/Util/FieldHash/lib/Hash/Util/FieldHash.pm
775            ! ext/Hash/Util/lib/Hash/Util.pm
776 ____________________________________________________________________________
777 [ 31406] By: rgs                                   on 2007/06/17  16:58:55
778         Log: Subject: [patch] Hash::Util::FieldHash v1.01
779              From: Anno Siegel <anno4000@mailbox.tu-berlin.de>
780              Date: Sun, 17 Jun 2007 17:13:06 +0200
781              Message-Id: <1750E68D-4F6E-48B9-A255-BCC0DA5C886E@mailbox.tu-berlin.de>
782      Branch: perl
783            ! ext/Hash/Util/FieldHash/Changes
784            ! ext/Hash/Util/FieldHash/FieldHash.xs
785            ! ext/Hash/Util/FieldHash/lib/Hash/Util/FieldHash.pm
786            ! ext/Hash/Util/FieldHash/t/02_function.t
787            ! ext/Hash/Util/lib/Hash/Util.pm
788 ____________________________________________________________________________
789 [ 31404] By: rgs                                   on 2007/06/17  14:48:11
790         Log: Patches to compile perl on Cray XT4 Catamount/Qk, by Jarkko
791      Branch: perl
792            + hints/catamount.sh
793            ! Configure MANIFEST Makefile.SH doio.c ext/util/make_ext
794            ! hints/linux.sh lib/ExtUtils/MM_Unix.pm perl.c perl.h pp_sys.c
795            ! sv.c util.c
796 ____________________________________________________________________________
797 [ 31403] By: rgs                                   on 2007/06/17  13:28:00
798         Log: Subject: bignum 0.22 take 4 (hex()/oct() overloading)
799              From: Tels <nospam-abuse@bloodgate.com>
800              Date: Sat, 16 Jun 2007 14:33:47 +0200
801              Message-Id: <200706161433.47489@bloodgate.com>
802      Branch: perl
803            ! lib/bigint.pm lib/bignum.pm lib/bignum/t/bigint.t
804            ! lib/bignum/t/bignum.t lib/bignum/t/bigrat.t
805            ! lib/bignum/t/in_effect.t lib/bignum/t/scope_f.t
806            ! lib/bignum/t/scope_i.t lib/bignum/t/scope_r.t lib/bigrat.pm
807 ____________________________________________________________________________
808 [ 31402] By: rgs                                   on 2007/06/17  12:54:12
809         Log: Subject: [PATCH] EBCDIC fixes for gzip
810              From: "Paul Marquess" <Paul.Marquess@ntlworld.com>
811              Date: Sun, 17 Jun 2007 01:43:11 +0100
812              Message-ID: <004001c7b078$7cc2e520$6701a8c0@myopwv.com>
813      Branch: perl
814            ! ext/IO_Compress_Zlib/lib/IO/Compress/Gzip/Constants.pm
815            ! ext/IO_Compress_Zlib/t/004gziphdr.t
816 ____________________________________________________________________________
817 [ 31401] By: rgs                                   on 2007/06/17  12:51:30
818         Log: Subject: [PATCH] CPANPLUS 0.80
819              From: "Jos I. Boumans" <kane@dwim.org>
820              Date: Sun, 17 Jun 2007 14:39:29 +0200
821              Message-Id: <45B1EC67-D34B-404D-9801-449FAC1D75BA@dwim.org>
822      Branch: perl
823            ! MANIFEST lib/CPANPLUS.pm lib/CPANPLUS/Internals.pm
824            ! lib/CPANPLUS/Shell/Default.pm
825            ! lib/CPANPLUS/t/01_CPANPLUS-Configure.t
826            ! lib/CPANPLUS/t/02_CPANPLUS-Internals.t
827            ! lib/CPANPLUS/t/04_CPANPLUS-Module.t
828            ! lib/CPANPLUS/t/05_CPANPLUS-Internals-Fetch.t
829            ! lib/CPANPLUS/t/08_CPANPLUS-Backend.t
830            ! lib/CPANPLUS/t/10_CPANPLUS-Error.t
831            ! lib/CPANPLUS/t/19_CPANPLUS-Dist.t
832            ! lib/CPANPLUS/t/20_CPANPLUS-Dist-MM.t
833            ! lib/CPANPLUS/t/21_CPANPLUS-Dist-No-Build.t
834            ! lib/CPANPLUS/t/dummy-CPAN/authors/01mailrc.txt.gz.packed
835            ! lib/CPANPLUS/t/dummy-CPAN/authors/id/E/EU/EUNOXS/Bundle-Foo-Ba
836            ! r-0.01.tar.gz.packed
837            ! lib/CPANPLUS/t/dummy-CPAN/authors/id/E/EU/EUNOXS/Foo-Bar-0.01.
838            ! tar.gz.packed
839            ! lib/CPANPLUS/t/dummy-CPAN/authors/id/E/EU/EUNOXS/perl5.005_03.
840            ! tar.gz.packed
841            ! lib/CPANPLUS/t/dummy-CPAN/authors/id/E/EU/EUXS/Foo-Bar-0.01.ta
842            ! r.gz.packed
843            ! lib/CPANPLUS/t/dummy-CPAN/authors/id/M/MB/MBNOXS/Foo-Bar-0.01.
844            ! tar.gz.packed
845            ! lib/CPANPLUS/t/dummy-CPAN/authors/id/M/MB/MBXS/Foo-Bar-0.01.ta
846            ! r.gz.packed
847            ! lib/CPANPLUS/t/dummy-CPAN/modules/02packages.details.txt.gz.pa
848            ! cked
849            ! lib/CPANPLUS/t/dummy-CPAN/modules/03modlist.data.gz.packed
850            ! lib/CPANPLUS/t/inc/conf.pl
851 ____________________________________________________________________________
852 [ 31400] By: rgs                                   on 2007/06/17  08:46:13
853         Log: Subject: Math::BigInt take 9 (CORE::hex() vs. hex() in Calc.pm)
854              From: Tels <nospam-abuse@bloodgate.com>
855              Date: Sat, 16 Jun 2007 13:43:45 +0200
856              Message-Id: <200706161343.47110@bloodgate.com>
857      Branch: perl
858            ! lib/Math/BigInt/Calc.pm
859 ____________________________________________________________________________
860 [ 31399] By: rgs                                   on 2007/06/17  08:10:59
861         Log: Subject: [DOC PATCH] Pod nits in doc/perlpodspec.pod
862              From: "Adriano Ferreira" <a.r.ferreira@gmail.com>
863              Date: Sat, 16 Jun 2007 14:30:16 -0300
864              Message-ID: <73ddeb6c0706161030nb489b0cx746daddc55b95987@mail.gmail.com>
865      Branch: perl
866            ! pod/perlpodspec.pod
867 ____________________________________________________________________________
868 [ 31398] By: rgs                                   on 2007/06/17  08:08:45
869         Log: Subject: [PATCH] Test::Builder tickles Pod::Html parsing stupidity bug
870              From: demerphq <demerphq@gmail.com>
871              Date: Sat, 16 Jun 2007 18:47:22 +0200
872              Message-ID: <9b18b3110706160947x5d3521b3kca1edf2d9ba65f37@mail.gmail.com>
873      Branch: perl
874            ! lib/Test/Builder.pm
875 ____________________________________________________________________________
876 [ 31397] By: rgs                                   on 2007/06/17  08:06:08
877         Log: Subject: [DOC PATCH] MANIFEST: t/op/exec.t tests exec, system AND qx
878              From: "Adriano Ferreira" <a.r.ferreira@gmail.com>
879              Date: Sat, 16 Jun 2007 15:03:41 -0300
880              Message-ID: <73ddeb6c0706161103oe4afe43i941223debc00543@mail.gmail.com>
881      Branch: perl
882            ! MANIFEST
883 ____________________________________________________________________________
884 [ 31396] By: rgs                                   on 2007/06/16  06:10:19
885         Log: More portability nits by Jarkko
886      Branch: perl
887            ! ext/util/make_ext gv.h hv.c
888 ____________________________________________________________________________
889 [ 31395] By: merijn                                on 2007/06/16  05:56:15
890         Log: Subject: [PATCH] Re: [perl #43216] Perl 5.8.8 does not compile on Solaris 8 with-Dusethreads
891              From: Andy Dougherty <doughera@lafayette.edu>
892              Date: Fri, 15 Jun 2007 12:05:36 -0400 (EDT)
893              Message-ID: <Pine.LNX.4.64.0706151203200.14068@fractal.phys.lafayette.edu>
894      Branch: perl
895            ! Configure
896 ____________________________________________________________________________
897 [ 31393] By: craigb                                on 2007/06/15  21:21:25
898         Log: Subject: [PATCH] Show warning bits on failure in t/op/caller.t
899              From: "Jerry D. Hedden" <jdhedden@cpan.org>
900              Date: Fri, 15 Jun 2007 16:05:36 -0400
901              Message-ID: <1ff86f510706151305j1ce8c46eib165ee9fad10b538@mail.gmail.com>
902      Branch: perl
903            ! t/op/caller.t
904 ____________________________________________________________________________
905 [ 31392] By: rgs                                   on 2007/06/15  15:29:53
906         Log: Subject: [PATCH] checkAUTHORS.pl once more
907              From: "Jerry D. Hedden" <jdhedden@cpan.org>
908              Date: Fri, 15 Jun 2007 10:54:28 -0400
909              Message-ID: <1ff86f510706150754g59703eabs7072fb750e160a31@mail.gmail.com>
910      Branch: perl
911            ! Porting/checkAUTHORS.pl
912 ____________________________________________________________________________
913 [ 31391] By: rgs                                   on 2007/06/15  14:29:28
914         Log: Subject: [PATCH] checkAUTHORS.pl again
915              From: "Jerry D. Hedden" <jdhedden@cpan.org>
916              Date: Fri, 15 Jun 2007 10:16:38 -0400
917              Message-ID: <1ff86f510706150716r5aef08fw12c9ea5d401f5f9a@mail.gmail.com>
918      Branch: perl
919            ! Porting/checkAUTHORS.pl
920 ____________________________________________________________________________
921 [ 31390] By: rgs                                   on 2007/06/15  13:59:55
922         Log: Subject: [PATCH] I have a name
923              From: "Jerry D. Hedden" <jdhedden@cpan.org>
924              Date: Fri, 15 Jun 2007 09:54:57 -0400
925              Message-ID: <1ff86f510706150654t24817135t67803e81f444305b@mail.gmail.com>
926      Branch: perl
927            ! Porting/checkAUTHORS.pl
928 ____________________________________________________________________________
929 [ 31389] By: rgs                                   on 2007/06/15  13:52:34
930         Log: Subject: [PATCH] Warning bit fixes to t/op/caller.t
931              From: "Jerry D. Hedden" <jdhedden@cpan.org>
932              Date: Fri, 15 Jun 2007 09:49:47 -0400
933              Message-ID: <1ff86f510706150649l320d629cl8820bfbf938c9f4d@mail.gmail.com>
934      Branch: perl
935            ! t/op/caller.t
936 ____________________________________________________________________________
937 [ 31388] By: rgs                                   on 2007/06/15  11:17:50
938         Log: Subject: [PATCH] miscellanea
939              From: Jarkko Hietaniemi <jhi@iki.fi>
940              Date: Thu, 14 Jun 2007 22:32:49 -0400
941              Message-ID: <4671FA51.4070001@iki.fi>
942      Branch: perl
943            ! Makefile.SH embed.fnc hv.h op.c proto.h sv.c util.c
944 ____________________________________________________________________________
945 [ 31387] By: rgs                                   on 2007/06/15  09:52:07
946         Log: Subject: [PATCH] Re: vsprintf
947              From: Andy Dougherty <doughera@lafayette.edu>
948              Date: Thu, 14 Jun 2007 13:12:57 -0400 (EDT)
949              Message-ID: <Pine.LNX.4.64.0706141312510.31762@fractal.phys.lafayette.edu>
950      Branch: perl
951            ! util.c
952 ____________________________________________________________________________
953 [ 31386] By: rgs                                   on 2007/06/15  08:55:38
954         Log: Forgot to regen warnings
955      Branch: perl
956            ! lib/warnings.pm warnings.h
957 ____________________________________________________________________________
958 [ 31385] By: craigb                                on 2007/06/15  03:19:46
959         Log: Don't let the home-grown readdir() on VMS return results with
960              ODS-5 escapes (i.e., report foo.tar.gz, not foo^.tar.gz).
961      Branch: perl
962            ! vms/vms.c
963 ____________________________________________________________________________
964 [ 31384] By: craigb                                on 2007/06/14  18:23:18
965         Log: Fix missing PerlIO_releaseFILE in VMS::Stdio::getname().
966      Branch: perl
967            ! vms/ext/Stdio/Stdio.xs
968 ____________________________________________________________________________
969 [ 31383] By: rgs                                   on 2007/06/14  15:36:16
970         Log: Update Changes.
971              Mention the removal of -A and assertions.pm in perldelta.
972      Branch: perl
973            ! Changes pod/perl595delta.pod
974 ____________________________________________________________________________
975 [ 31382] By: rgs                                   on 2007/06/14  14:12:35
976         Log: Upgrade to PathTools 3.25
977      Branch: perl
978            ! ext/Cwd/Changes ext/Cwd/Cwd.xs ext/Cwd/Makefile.PL lib/Cwd.pm
979            ! lib/File/Spec.pm lib/File/Spec/OS2.pm lib/File/Spec/t/tmpdir.t
980 ____________________________________________________________________________
981 [ 31381] By: rgs                                   on 2007/06/14  13:12:56
982         Log: Upgrade to ExtUtils::CBuilder 0.19
983      Branch: perl
984            ! lib/ExtUtils/CBuilder.pm lib/ExtUtils/CBuilder/Base.pm
985            ! lib/ExtUtils/CBuilder/Changes
986            ! lib/ExtUtils/CBuilder/Platform/Windows.pm
987            ! lib/ExtUtils/CBuilder/Platform/os2.pm
988 ____________________________________________________________________________
989 [ 31380] By: rgs                                   on 2007/06/14  13:06:13
990         Log: Sync Archive::Extract with CPAN
991      Branch: perl
992            ! lib/Archive/Extract.pm
993 ____________________________________________________________________________
994 [ 31379] By: rgs                                   on 2007/06/14  12:38:16
995         Log: Subject: [PATCH] Less sed'ing in Cygwin Makefile.SHs
996              From: "Jerry D. Hedden" <jdhedden@cpan.org>
997              Date: Thu, 14 Jun 2007 08:13:29 -0400
998              Message-ID: <1ff86f510706140513v5d3bb0e0l89dff31da83abfb9@mail.gmail.com>
999      Branch: perl
1000            ! cygwin/Makefile.SHs
1001 ____________________________________________________________________________
1002 [ 31378] By: rgs                                   on 2007/06/14  12:27:41
1003         Log: assertions has been removed
1004      Branch: perl
1005            ! Porting/Maintainers.pl
1006 ____________________________________________________________________________
1007 [ 31377] By: rgs                                   on 2007/06/14  11:06:02
1008         Log: Fix [perl #43207] lc() or uc() inside sort affect the return value.
1009      Branch: perl
1010            ! pp.c t/op/lc.t
1011 ____________________________________________________________________________
1012 [ 31376] By: davem                                 on 2007/06/13  22:41:33
1013         Log: change #31134 broke DEBUG_LEAKING_SCALARS builds
1014      Branch: perl
1015            ! sv.c
1016 ____________________________________________________________________________
1017 [ 31375] By: merijn                                on 2007/06/13  20:15:28
1018         Log: Subject: Re: vsprintf
1019              From: Andy Dougherty <doughera@lafayette.edu>
1020              Date: Wed, 13 Jun 2007 14:41:44 -0400 (EDT)
1021              Message-ID: <Pine.LNX.4.64.0706131434120.18715@fractal.phys.lafayette.edu>
1022      Branch: perl
1023            ! Configure
1024 ____________________________________________________________________________
1025 [ 31373] By: merijn                                on 2007/06/13  20:11:10
1026         Log: Subject: [PATCH] Configure: Erroneous C++ message
1027              From: Andy Dougherty <doughera@lafayette.edu>
1028              Date: Wed, 13 Jun 2007 14:33:54 -0400 (EDT)
1029              Message-ID: <Pine.LNX.4.64.0706131428510.18715@fractal.phys.lafayette.edu>
1030      Branch: perl
1031            ! Configure
1032 ____________________________________________________________________________
1033 [ 31371] By: steveh                                on 2007/06/13  17:12:21
1034         Log: Fix random failures in CPANPLUS tests on Win32
1035              
1036              The failures were a result of calling Win32::GetShortPathName with
1037              the program argument " /nologo" appended to the path. Program
1038              arguments should not be passed to Win32::GetShortPathName.
1039              
1040              (The randomness occurred because random garbage was being produced
1041              due to a separate bug in that Win32 function, for which a fix is
1042              forthcoming...).
1043      Branch: perl
1044            ! lib/CPANPLUS/Config.pm
1045 ____________________________________________________________________________
1046 [ 31370] By: rgs                                   on 2007/06/13  13:24:09
1047         Log: Subject: yet another mro.c patch
1048              From: "Brandon Black" <blblack@gmail.com>
1049              Date: Wed, 13 Jun 2007 08:19:11 -0500
1050              Message-ID: <84621a60706130619g17c9d2fbi111cca567da3d500@mail.gmail.com>
1051      Branch: perl
1052            ! mro.c
1053 ____________________________________________________________________________
1054 [ 31369] By: rgs                                   on 2007/06/12  08:43:55
1055         Log: Subject: mad-const patch
1056              From: Jim Cromie <jim.cromie@gmail.com>
1057              Date: Mon, 11 Jun 2007 13:49:06 -0600
1058              Message-ID: <466DA732.3010608@gmail.com>
1059      Branch: perl
1060            ! dump.c embed.fnc proto.h
1061 ____________________________________________________________________________
1062 [ 31368] By: rgs                                   on 2007/06/12  08:39:00
1063         Log: Subject: Re: integer vs. bigint [PATCH]
1064              From: Tels <nospam-abuse@bloodgate.com>
1065              Date: Mon, 11 Jun 2007 19:31:16 +0200
1066              Message-Id: <200706111931.17616@bloodgate.com>
1067      Branch: perl
1068            ! lib/bigint.pm
1069 ____________________________________________________________________________
1070 [ 31367] By: rgs                                   on 2007/06/12  08:33:40
1071         Log: Subject: [PATCH] perltodo: more vtable musings
1072              From: Jarkko Hietaniemi <jhi@cc.hut.fi>
1073              Date: Tue, 12 Jun 2007 03:15:26 +0300 (EEST)
1074              Message-Id: <200706120015.l5C0FQH7512295@kosh.hut.fi>
1075      Branch: perl
1076            ! pod/perltodo.pod
1077 ____________________________________________________________________________
1078 [ 31366] By: rgs                                   on 2007/06/12  08:32:26
1079         Log: Subject: Re: [PATCH-at-31365] (was - configpm frustrations)
1080              From: Vadim <vadim@vkonovalov.ru>
1081              Date: Mon, 11 Jun 2007 19:19:31 +0400
1082              Message-ID: <466D6803.1020808@vkonovalov.ru>
1083      Branch: perl
1084            ! Makefile.SH configpm
1085 ____________________________________________________________________________
1086 [ 31365] By: rgs                                   on 2007/06/11  15:20:38
1087         Log: Subject: Math::BigInt v1.87 take 8
1088              From: Tels <nospam-abuse@bloodgate.com>
1089              Date: Sat, 9 Jun 2007 14:07:34 +0200
1090              Message-Id: <200706091407.36659@bloodgate.com>
1091      Branch: perl
1092            ! lib/Math/BigFloat.pm lib/Math/BigInt.pm
1093            ! lib/Math/BigInt/t/bare_mbf.t lib/Math/BigInt/t/bare_mbi.t
1094            ! lib/Math/BigInt/t/bigfltpm.inc lib/Math/BigInt/t/bigfltpm.t
1095            ! lib/Math/BigInt/t/bigintpm.inc lib/Math/BigInt/t/bigintpm.t
1096            ! lib/Math/BigInt/t/sub_mbf.t lib/Math/BigInt/t/sub_mbi.t
1097            ! lib/Math/BigInt/t/with_sub.t
1098 ____________________________________________________________________________
1099 [ 31364] By: rgs                                   on 2007/06/11  15:18:27
1100         Log: Subject: pidigits benchmark and bpi() method in Math::BigFloat/Math::BigInt, take 7 [PATCH]
1101              From: Tels <nospam-abuse@bloodgate.com>
1102              Date: Fri, 8 Jun 2007 19:29:41 +0200
1103              Message-Id: <200706081929.44888@bloodgate.com>
1104      Branch: perl
1105            ! lib/Math/BigFloat.pm lib/Math/BigInt.pm
1106            ! lib/Math/BigInt/t/bare_mbf.t lib/Math/BigInt/t/bare_mbi.t
1107            ! lib/Math/BigInt/t/bigfltpm.inc lib/Math/BigInt/t/bigfltpm.t
1108            ! lib/Math/BigInt/t/bigintpm.inc lib/Math/BigInt/t/bigintpm.t
1109            ! lib/Math/BigInt/t/sub_mbf.t lib/Math/BigInt/t/sub_mbi.t
1110            ! lib/Math/BigInt/t/with_sub.t
1111 ____________________________________________________________________________
1112 [ 31363] By: rgs                                   on 2007/06/11  14:27:40
1113         Log: Doc adjustments for the number localization and setlocale().
1114              See debian bug #379463.
1115      Branch: perl
1116            ! pod/perllocale.pod
1117 ____________________________________________________________________________
1118 [ 31362] By: rgs                                   on 2007/06/11  08:28:57
1119         Log: Subject: [PATCH] cross-compilation for linux
1120              From: "Konovalov, Vadim Vladimirovich \(Vadim\)** CTR **" <vkonovalov@alcatel-lucent.com>
1121              Date: Sat, 9 Jun 2007 19:41:44 +0200
1122              Message-ID: <D16F05D0CAAA234BA2B753B80DE6100D278EBC@DEEXC1U02.de.lucent.com>
1123      Branch: perl
1124            + Cross/README.new
1125            ! Cross/Makefile-cross-SH Cross/README Cross/build-arm-n770-sh
1126            ! MANIFEST README.ce win32/Makefile.ce
1127 ____________________________________________________________________________
1128 [ 31361] By: craigb                                on 2007/06/08  18:43:10
1129         Log: A couple of File::Path tests require unix syntax on VMS.
1130      Branch: perl
1131            ! lib/File/Path.t
1132 ____________________________________________________________________________
1133 [ 31360] By: craigb                                on 2007/06/08  15:28:29
1134         Log: Make pipe shutdown on VMS care about whether PerlIO has already
1135              shut down.
1136      Branch: perl
1137            ! vms/vms.c
1138 ____________________________________________________________________________
1139 [ 31359] By: craigb                                on 2007/06/08  15:25:22
1140         Log: Avoid multiply defined symbols in re extension following #31341.
1141      Branch: perl
1142            ! ext/re/re_top.h
1143 ____________________________________________________________________________
1144 [ 31358] By: craigb                                on 2007/06/08  15:21:24
1145         Log: Make symbols short enough for VMS after #31341.
1146      Branch: perl
1147            ! universal.c
1148 ____________________________________________________________________________
1149 [ 31357] By: steveh                                on 2007/06/08  10:35:34
1150         Log: Fix lib/File/Path.t failure on Win32
1151              (Create a 'ZZ' directory instead of 'Z' because we already have a 'z'
1152              which is the same as 'Z' on Win32's case-insensitive filesystem)
1153      Branch: perl
1154            ! lib/File/Path.pm lib/File/Path.t
1155 ____________________________________________________________________________
1156 [ 31356] By: steveh                                on 2007/06/08  09:07:46
1157         Log: Change 31347 should also have removed win32_free_argvw()
1158              because it now isn't used anywhere.
1159      Branch: perl
1160            ! win32/win32.c win32/wince.c
1161 ____________________________________________________________________________
1162 [ 31355] By: steveh                                on 2007/06/08  08:50:09
1163         Log: Remove dead Perl_sys_intern_clear() from wince.c
1164      Branch: perl
1165            ! win32/wince.c
1166 ____________________________________________________________________________
1167 [ 31354] By: steveh                                on 2007/06/08  08:36:05
1168         Log: Move win32_create_message_window() out of #ifdef HAVE_INTERP_INTERN
1169              section, where it didn't belong. (That section should (currently)
1170              only contain sys_intern_init(), sys_intern_clear() and
1171              sys_intern_dup() and related functionality such as
1172              win32_csighandler().)
1173      Branch: perl
1174            ! win32/win32.c
1175 ____________________________________________________________________________
1176 [ 31353] By: rgs                                   on 2007/06/08  08:30:25
1177         Log: encoding.pm doesn't give any details about ${^ENCODING},
1178              so don't mention it in perlvar
1179      Branch: perl
1180            ! pod/perlvar.pod
1181 ____________________________________________________________________________
1182 [ 31352] By: rgs                                   on 2007/06/07  16:09:54
1183         Log: Plug a memory leak (noticed by Yves)
1184      Branch: perl
1185            ! regcomp.c
1186 ____________________________________________________________________________
1187 [ 31351] By: rgs                                   on 2007/06/07  14:05:11
1188         Log: Subject: Re: [perl #43082] "$_[0]->method" interpolation 
1189              From: Father Chrysostomos <sprout@cpan.org>
1190              Date: Tue, 5 Jun 2007 13:25:39 -0700
1191              Message-Id: <064E3238-D26D-446D-9B7E-0DB8CEFDE0AD@cpan.org>
1192      Branch: perl
1193            ! t/comp/parser.t toke.c
1194 ____________________________________________________________________________
1195 [ 31350] By: steveh                                on 2007/06/07  13:49:04
1196         Log: Stop VC++ from warning "'getenv' : inconsistent dll linkage.
1197              dllexport assumed." when building with -DDEBUGGING by declaring
1198              getenv() with the same __declspec as in Microsoft's <stdlib.h>.
1199              MinGW/GCC is happy with that too, but Borland doesn't understand
1200              _CRTIMP so don't bother for Borland since it doesn't warn anyway.
1201      Branch: perl
1202            ! x2p/a2p.c
1203 ____________________________________________________________________________
1204 [ 31349] By: rgs                                   on 2007/06/07  13:23:07
1205         Log: Subject: Re: [PATCH] Update File-Path to 2.00
1206              From: David Landgren <david@landgren.net>
1207              Date: Thu, 07 Jun 2007 14:02:36 +0200
1208              Message-ID: <4667F3DC.9070203@landgren.net>
1209      Branch: perl
1210            ! lib/File/Path.pm
1211 ____________________________________________________________________________
1212 [ 31348] By: rgs                                   on 2007/06/07  12:12:39
1213         Log: Subject: [PATCHES] Silence compiler warnings
1214              From: "Jerry D. Hedden" <jdhedden@cpan.org>
1215              Date: Wed, 6 Jun 2007 14:45:06 -0400
1216              Message-ID: <1ff86f510706061145r540c7f02kba96c04bc9dcf8b0@mail.gmail.com>
1217      Branch: perl
1218            ! mro.c pp_sys.c universal.c
1219 ____________________________________________________________________________
1220 [ 31347] By: steveh                                on 2007/06/07  11:48:47
1221         Log: Stop VC++ from warning "all references to 'SHELL32.dll' discarded
1222              by /OPT:REF" by removing the only reference to a SHELL32.dll function
1223              (namely, CommandLineToArgvW(), called from win32_argv2utf8(), which
1224              isn't actually used anywhere so delete it).
1225              
1226              That then caused the warning "/DELAYLOAD:shell32.dll ignored; no
1227              imports found from shell32.dll", so remove that /DELAYLOAD option too.
1228      Branch: perl
1229            ! win32/Makefile win32/makefile.mk win32/win32.c win32/win32.h
1230            ! win32/wince.c
1231 ____________________________________________________________________________
1232 [ 31346] By: rgs                                   on 2007/06/07  08:51:15
1233         Log: Subject: [patch] fix small errors in sv.c commentary
1234              From: Jim Cromie <jim.cromie@gmail.com>
1235              Date: Wed, 06 Jun 2007 23:38:53 -0600
1236              Message-ID: <466799ED.3090705@gmail.com>
1237      Branch: perl
1238            ! sv.c
1239 ____________________________________________________________________________
1240 [ 31345] By: rgs                                   on 2007/06/07  08:01:18
1241         Log: Subject: Re: [PATCH] Update File-Path to 2.00
1242              From: David Landgren <david@landgren.net>
1243              Date: Wed, 06 Jun 2007 23:57:34 +0200
1244              Message-ID: <46672DCE.2080508@landgren.net>
1245      Branch: perl
1246            ! lib/File/Path.pm lib/File/Path.t
1247 ____________________________________________________________________________
1248 [ 31344] By: steveh                                on 2007/06/06  16:48:46
1249         Log: Stop VC7 and VC8 warning about overriding /DPERLDLL with /UPERLDLL
1250              when compiling perlmain.c, and don't supply /DPERLDLL twice when
1251              compiling perlmainst.c
1252      Branch: perl
1253            ! win32/Makefile win32/makefile.mk
1254 ____________________________________________________________________________
1255 [ 31343] By: steveh                                on 2007/06/06  16:33:42
1256         Log: Stop VC7 and VC8 complaining about the DESCRIPTION statement
1257              in perldll.def (it isn't supported any more).
1258      Branch: perl
1259            ! makedef.pl
1260 ____________________________________________________________________________
1261 [ 31342] By: rgs                                   on 2007/06/06  14:58:27
1262         Log: Adjust test count (it shouldn't have changed with last patch)
1263      Branch: perl
1264            ! ext/B/t/concise-xs.t
1265 ____________________________________________________________________________
1266 [ 31341] By: rgs                                   on 2007/06/06  14:42:01
1267         Log: Subject: Re: [PATCH] Callbacks for named captures (%+ and %-)
1268              From: "=?UTF-8?Q?=C3=86var_Arnfj=C3=B6r=C3=B0_Bjarmason?=" <avarab@gmail.com>
1269              Date: Sun, 3 Jun 2007 20:24:59 +0000
1270              Message-ID: <51dd1af80706031324y5618d519p460da27a2e7fe712@mail.gmail.com>
1271      Branch: perl
1272            + ext/re/t/qr.t t/op/regexp_nc_tie.t
1273            ! MANIFEST embed.fnc embed.h ext/B/t/concise-xs.t ext/re/re.pm
1274            ! ext/re/re.xs ext/re/re_top.h ext/re/t/re_funcs.t global.sym
1275            ! gv.c lib/Tie/Hash/NamedCapture.pm mg.c perl.h
1276            ! pod/perlreapi.pod proto.h regcomp.c regcomp.h regexp.h
1277            ! t/op/pat.t t/op/readdir.t universal.c
1278 ____________________________________________________________________________
1279 [ 31340] By: rgs                                   on 2007/06/06  12:27:36
1280         Log: Upgrade to encoding::warnings 0.11
1281      Branch: perl
1282            ! lib/encoding/warnings.pm
1283 ____________________________________________________________________________
1284 [ 31339] By: rgs                                   on 2007/06/06  12:07:13
1285         Log: A test file was removed from the latest Unicode::Normalize
1286      Branch: perl
1287            - ext/Unicode/Normalize/t/short.t
1288            ! MANIFEST
1289 ____________________________________________________________________________
1290 [ 31338] By: rgs                                   on 2007/06/06  12:03:00
1291         Log: Upgrade to Unicode::Normalize 1.02
1292      Branch: perl
1293            ! ext/Unicode/Normalize/Changes
1294            ! ext/Unicode/Normalize/Normalize.pm
1295            ! ext/Unicode/Normalize/Normalize.xs
1296            ! ext/Unicode/Normalize/README ext/Unicode/Normalize/mkheader
1297            ! ext/Unicode/Normalize/t/fcdc.t ext/Unicode/Normalize/t/func.t
1298            ! ext/Unicode/Normalize/t/test.t
1299 ____________________________________________________________________________
1300 [ 31337] By: steveh                                on 2007/06/06  08:20:32
1301         Log: Subject: Re: [PATCH] Update File-Path to 2.00
1302              From: Joshua Juran <jjuran@gmail.com>
1303              Date: Wed, 6 Jun 2007 01:14:31 -0700
1304              Message-Id: <5F26D98D-8B6D-4F4A-B2E9-168F71B963DD@gmail.com>
1305              
1306              Fixes typo in the POD.
1307      Branch: perl
1308            ! lib/File/Path.pm
1309 ____________________________________________________________________________
1310 [ 31336] By: steveh                                on 2007/06/06  08:16:44
1311         Log: Subject: Re: [PATCH] Update File-Path to 2.00
1312              From: David Landgren <david@landgren.net>
1313              Date: Tue, 05 Jun 2007 23:21:40 +0200
1314              Message-ID: <4665D3E4.2030809@landgren.net>
1315              
1316              Silences some unnecessary carping (e.g. from ExtUtils::Command line 109
1317              when building perl).
1318      Branch: perl
1319            ! lib/File/Path.pm lib/File/Path.t
1320 ____________________________________________________________________________
1321 [ 31335] By: steveh                                on 2007/06/05  12:51:07
1322         Log: Silence another VC++ compiler warning (signed/unsigned mismatch in ==)
1323      Branch: perl
1324            ! regexec.c
1325 ____________________________________________________________________________
1326 [ 31334] By: rgs                                   on 2007/06/05  10:23:24
1327         Log: There is no more a ~~ feature, noticed by Moritz Lenz
1328      Branch: perl
1329            ! pod/perlsyn.pod
1330 ____________________________________________________________________________
1331 [ 31333] By: rgs                                   on 2007/06/05  10:10:33
1332         Log: Remove support for assertions and -A
1333      Branch: perl
1334            - lib/assertions.pm lib/assertions/activate.pm
1335            - lib/assertions/compat.pm t/comp/assertions.t
1336            - t/comp/asstcompat.t t/run/switch_A.t
1337            ! MANIFEST cv.h dump.c ext/B/B.xs ext/B/B/Concise.pm
1338            ! ext/B/B/Deparse.pm ext/B/defsubs_h.PL ext/B/t/concise-xs.t
1339            ! lib/perl5db.pl op.c perl.c perl.h pod/perl.pod
1340            ! pod/perldiag.pod pod/perllexwarn.pod pod/perlrun.pod
1341            ! pod/perltodo.pod pp_hot.c sv.c t/op/attrs.t toke.c warnings.pl
1342            ! xsutils.c
1343 ____________________________________________________________________________
1344 [ 31332] By: rgs                                   on 2007/06/04  08:04:13
1345         Log: Subject: another mro patch
1346              From: "Brandon Black" <blblack@gmail.com>
1347              Date: Mon, 4 Jun 2007 00:55:15 -0500
1348              Message-ID: <84621a60706032255g6702cd81ube1f582a1e07cf8a@mail.gmail.com>
1349      Branch: perl
1350            + t/mro/next_goto.t
1351            ! MANIFEST lib/mro.pm mro.c
1352 ____________________________________________________________________________
1353 [ 31331] By: craigb                                on 2007/06/03  22:26:20
1354         Log: cando_by_name again: work harder to identify directories 
1355              for fileification, plus a nit missed in #31326.
1356      Branch: perl
1357            ! vms/vms.c
1358 ____________________________________________________________________________
1359 [ 31330] By: rgs                                   on 2007/06/03  16:23:03
1360         Log: Subject: [PATCH] Math::BigInt v1.87 take 6
1361              From: Tels <nospam-abuse@bloodgate.com>
1362              Date: Sat, 2 Jun 2007 13:40:45 +0000
1363              Message-Id: <200706021340.46806@bloodgate.com>
1364      Branch: perl
1365            ! lib/Math/BigFloat.pm lib/Math/BigInt.pm
1366 ____________________________________________________________________________
1367 [ 31329] By: rgs                                   on 2007/06/03  16:19:37
1368         Log: Subject: Re: [PATCH] Update File-Path to 2.00
1369              From: David Landgren <david@landgren.net>
1370              Date: Sat, 02 Jun 2007 20:58:16 +0200
1371              Message-ID: <4661BDC8.6040102@landgren.net>
1372      Branch: perl
1373            ! lib/File/Path.pm lib/File/Path.t
1374 ____________________________________________________________________________
1375 [ 31328] By: rgs                                   on 2007/06/03  15:36:25
1376         Log: Subject: [PATCH] Re: BBC(Bleadperl Breaks CPAN) Today: String::Multibyte
1377              From: demerphq <demerphq@gmail.com>
1378              Date: Sun, 3 Jun 2007 17:21:55 +0200
1379              Message-ID: <9b18b3110706030821u39460f96ic342dda8ba9fcdf7@mail.gmail.com>
1380      Branch: perl
1381            ! regcomp.c t/op/pat.t
1382 ____________________________________________________________________________
1383 [ 31327] By: craigb                                on 2007/06/02  17:47:37
1384         Log: In File::Path::_rmtree, we want a list of files, not directories (some of them 
1385              may be directory files, which is ok).
1386      Branch: perl
1387            ! lib/File/Path.pm
1388 ____________________________________________________________________________
1389 [ 31326] By: craigb                                on 2007/06/02  16:02:03
1390         Log: Assorted fixes for VMS version of cando_by_name:
1391              -- Restore pre-5.9.x behavior of expanding logical names and fileifying
1392              directory specs regardless of whether input spec is in VMS syntax.
1393              -- VMSify input spec unless explicitly told we don't need to (this was
1394              backwards since introduced in #27733).
1395              -- Various memory handling robustifications.
1396      Branch: perl
1397            ! vms/vms.c
1398 ____________________________________________________________________________
1399 [ 31325] By: rgs                                   on 2007/06/01  09:14:24
1400         Log: Subject: [perl #43094] Doc patch to perlre: modifiers => quantifiers 
1401              From: Brad Baxter (via RT) <perlbug-followup@perl.org>
1402              Date: Thu, 31 May 2007 15:04:55 -0700
1403              Message-ID: <rt-3.6.HEAD-1668-1180649095-1834.43094-75-0@perl.org>
1404      Branch: perl
1405            ! pod/perlre.pod
1406 ____________________________________________________________________________
1407 [ 31324] By: steveh                                on 2007/06/01  07:32:52
1408         Log: Subject: [PATCH] Fix DynaLoader::dl_findfile() to locate .so files again
1409              From: "Jan Dubois" <jand@activestate.com>
1410              Date: Thu, 31 May 2007 13:17:22 -0700
1411              Message-ID: <00a501c7a3c0$b2d880d0$18898270$@com>
1412      Branch: perl
1413            ! ext/DynaLoader/DynaLoader_pm.PL
1414 ____________________________________________________________________________
1415 [ 31323] By: merijn                                on 2007/06/01  06:39:32
1416         Log: Subject: [PATCH] Configure: O_NONBLOCK test uses fork() and pipe()
1417              From: Jarkko Hietaniemi <jhi@cc.hut.fi>
1418              Date: Fri, 1 Jun 2007 04:31:03 +0300 (EEST)
1419              Message-Id: <200706010131.l511V3kv417484@kosh.hut.fi>
1420      Branch: perl
1421            ! Configure
1422 ____________________________________________________________________________
1423 [ 31321] By: merijn                                on 2007/06/01  06:32:38
1424         Log: Subject: Updated email address for AUTHORS.txt
1425              From: perl@cadop.com
1426              Date: Thu, 31 May 2007 19:33:08 -0600 (MDT)
1427              Message-Id: <20070601013308.3B6A314ECA82@noop.cadop.com>
1428      Branch: perl
1429            ! AUTHORS
1430 ____________________________________________________________________________
1431 [ 31320] By: craigb                                on 2007/05/31  22:17:17
1432         Log: Maintain UAF context across calls to sys$check_access in cando_by_name.
1433      Branch: perl
1434            ! vms/vms.c
1435 ____________________________________________________________________________
1436 [ 31319] By: rgs                                   on 2007/05/31  16:13:07
1437         Log: Dave remarks that I have been too terse here.
1438      Branch: perl
1439            ! pod/perl595delta.pod
1440 ____________________________________________________________________________
1441 [ 31318] By: rgs                                   on 2007/05/31  16:09:22
1442         Log: Subject: [PATCH] Remove threads/typemap from Porting/Maintainers.pl
1443              From: "Jerry D. Hedden" <jdhedden@cpan.org>
1444              Date: Thu, 31 May 2007 11:59:31 -0400
1445              Message-ID: <1ff86f510705310859y6c101c15t6d823d00ef25309b@mail.gmail.com>
1446      Branch: perl
1447            ! Porting/Maintainers.pl
1448 ____________________________________________________________________________
1449 [ 31317] By: rgs                                   on 2007/05/31  15:52:28
1450         Log: Actually, Log::Message::Simple comes from Jos, not Tels.
1451      Branch: perl
1452            ! Porting/Maintainers.pl
1453 ____________________________________________________________________________
1454 [ 31316] By: rgs                                   on 2007/05/31  12:11:40
1455         Log: Subject: [PATCH] minor assertions improvements
1456              From: Ricardo SIGNES <rjbs-perl-p5p@lists.manxome.org>
1457              Date: Wed, 30 May 2007 21:47:15 -0400
1458              Message-ID: <20070531014715.GA26562@knight.manxome.org>
1459      Branch: perl
1460            ! lib/assertions.pm lib/assertions/activate.pm
1461            ! t/comp/assertions.t
1462 ____________________________________________________________________________
1463 [ 31315] By: rgs                                   on 2007/05/31  09:42:05
1464         Log: Subject: [PATCH] Update File-Path to 2.00
1465              From: David Landgren <david@landgren.net>
1466              Date: Wed, 30 May 2007 19:50:38 +0200
1467              Message-ID: <465DB96E.1020106@landgren.net>
1468      Branch: perl
1469            ! lib/File/Path.pm lib/File/Path.t
1470 ____________________________________________________________________________
1471 [ 31314] By: rgs                                   on 2007/05/31  08:28:02
1472         Log: Subject: [PATCH] Gooder English
1473              From: "Jerry D. Hedden" <jdhedden@cpan.org>
1474              Date: Wed, 30 May 2007 17:12:32 -0400
1475              Message-ID: <1ff86f510705301412v75fc5810vf28f5b62c0077585@mail.gmail.com>
1476      Branch: perl
1477            ! lib/Log/Message/Simple.pm
1478 ____________________________________________________________________________
1479 [ 31313] By: nicholas                              on 2007/05/31  08:25:57
1480         Log: blead segfaults on local *@; eval {1} because ERRSV assumes that
1481              GvSV(PL_errgv) is always non-NULL. That stopped being the case with
1482              change 25009 (ish) - when we stopped automatically creating a(n unused)
1483              SV at GV creation time.
1484      Branch: perl
1485            ! scope.c t/op/local.t
1486 ____________________________________________________________________________
1487 [ 31312] By: rgs                                   on 2007/05/30  15:21:10
1488         Log: Subject: Re: HvMROMETA
1489              From: "Brandon Black" <blblack@gmail.com>
1490              Date: Tue, 29 May 2007 19:08:13 -0500
1491              Message-ID: <84621a60705291708m3f106d74r473f3d91c780163d@mail.gmail.com>
1492      Branch: perl
1493            ! hv.h mro.c
1494 ____________________________________________________________________________
1495 [ 31311] By: rgs                                   on 2007/05/30  13:59:17
1496         Log: Subject: Re: localising hash element by variable 
1497              From: hv@crypt.org
1498              Date: Wed, 30 May 2007 13:21:15 +0100
1499              Message-Id: <200705301221.l4UCLFwf010411@zen.crypt.org>
1500      Branch: perl
1501            ! t/op/local.t
1502 ____________________________________________________________________________
1503 [ 31310] By: rgs                                   on 2007/05/30  10:45:08
1504         Log: Upgrade to Encode 2.23
1505      Branch: perl
1506            ! ext/Encode/Changes ext/Encode/Encode.pm ext/Encode/Encode.xs
1507            ! ext/Encode/Makefile.PL ext/Encode/Unicode/Unicode.pm
1508 ____________________________________________________________________________
1509 [ 31309] By: steveh                                on 2007/05/30  07:38:30
1510         Log: Silence a couple of VC++ compiler warnings
1511      Branch: perl
1512            ! ext/Math/BigInt/FastCalc/FastCalc.pm
1513            ! ext/Math/BigInt/FastCalc/FastCalc.xs
1514 ____________________________________________________________________________
1515 [ 31308] By: nicholas                              on 2007/05/29  19:57:34
1516         Log: DBL_EPSILON DBL_MIN FLT_EPSILON FLT_MIN are not C constant expressions
1517              on z/OS, so move them to the list of non const constants.
1518      Branch: perl
1519            ! ext/POSIX/Makefile.PL
1520 ____________________________________________________________________________
1521 [ 31307] By: rgs                                   on 2007/05/29  15:48:27
1522         Log: Plug a memory leak in Encode
1523      Branch: perl
1524            ! ext/Encode/Encode.xs
1525 ____________________________________________________________________________
1526 [ 31306] By: stevep                                on 2007/05/29  14:42:24
1527         Log: Upgrade to CPAN-1.9102
1528      Branch: perl
1529            ! lib/CPAN.pm lib/CPAN/Kwalify.pm lib/CPAN/t/10version.t
1530 ____________________________________________________________________________
1531 [ 31305] By: rgs                                   on 2007/05/29  09:33:52
1532         Log: Upgrade to Encode 2.22
1533      Branch: perl
1534            ! ext/Encode/Changes ext/Encode/Encode.pm ext/Encode/Encode.xs
1535            ! ext/Encode/t/fallback.t ext/Encode/t/mime-name.t
1536 ____________________________________________________________________________
1537 [ 31304] By: rgs                                   on 2007/05/29  08:59:05
1538         Log: Revert change #30530, following Jan's advice
1539      Branch: perl
1540            ! Makefile.SH
1541 ____________________________________________________________________________
1542 [ 31303] By: rgs                                   on 2007/05/29  08:49:06
1543         Log: Subject: Re: [perl #43015] regex /.*\z/ doesn't matches strings ending with \n
1544              From: demerphq <demerphq@gmail.com>
1545              Date: Mon, 28 May 2007 19:46:04 +0200
1546              Message-ID: <9b18b3110705281046ib37acb4i7960fe415325270f@mail.gmail.com>
1547      Branch: perl
1548            ! regcomp.c regexec.c t/op/re_tests
1549 ____________________________________________________________________________
1550 [ 31302] By: rgs                                   on 2007/05/29  08:43:29
1551         Log: Mention that last bugfix in perldelta
1552      Branch: perl
1553            ! pod/perl595delta.pod
1554 ____________________________________________________________________________
1555 [ 31301] By: rgs                                   on 2007/05/29  08:41:09
1556         Log: Subject: Re: localising hash element by variable
1557              From: Bo Lindbergh <blgl@hagernas.com>
1558              Date: Mon, 28 May 2007 20:26:00 +0200
1559              Message-Id: <BC2C451F-B286-4D38-923E-E3B473F7B5E1@hagernas.com>
1560      Branch: perl
1561            ! scope.c t/op/local.t
1562 ____________________________________________________________________________
1563 [ 31300] By: steveh                                on 2007/05/29  08:09:38
1564         Log: win32/makefile.mk doesn't support GSAR's old dmake (because of
1565              the use of || and && in conditional expressions, which that old
1566              dmake doesn't understand), so stop with a helpful error message
1567              if such a dmake is being used.
1568              
1569              There is now no need to have all the clutter of trying to support
1570              different backslash and newline semantics, so ditch that too.
1571      Branch: perl
1572            ! win32/makefile.mk
1573 ____________________________________________________________________________
1574 [ 31299] By: rgs                                   on 2007/05/29  07:57:33
1575         Log: Subject: Re: [PATCH] Update CPANPLUS to 0.79_03
1576              From: "Jos I. Boumans" <jos@dwim.org>
1577              Date: Tue, 29 May 2007 09:00:53 +0200
1578              Message-Id: <551932A2-91F8-4E7C-8939-4B71216976BA@dwim.org>
1579              
1580              Removed a fatal debug statement from cpan2dist.
1581      Branch: perl
1582            ! lib/CPANPLUS.pm lib/CPANPLUS/Internals.pm
1583            ! lib/CPANPLUS/Shell/Default.pm lib/CPANPLUS/bin/cpan2dist
1584            ! lib/CPANPLUS/t/dummy-CPAN/authors/01mailrc.txt.gz.packed
1585            ! lib/CPANPLUS/t/dummy-CPAN/authors/id/E/EU/EUNOXS/Bundle-Foo-Ba
1586            ! r-0.01.tar.gz.packed
1587            ! lib/CPANPLUS/t/dummy-CPAN/authors/id/E/EU/EUNOXS/Foo-Bar-0.01.
1588            ! tar.gz.packed
1589            ! lib/CPANPLUS/t/dummy-CPAN/authors/id/E/EU/EUNOXS/perl5.005_03.
1590            ! tar.gz.packed
1591            ! lib/CPANPLUS/t/dummy-CPAN/authors/id/E/EU/EUXS/Foo-Bar-0.01.ta
1592            ! r.gz.packed
1593            ! lib/CPANPLUS/t/dummy-CPAN/authors/id/M/MB/MBNOXS/Foo-Bar-0.01.
1594            ! tar.gz.packed
1595            ! lib/CPANPLUS/t/dummy-CPAN/authors/id/M/MB/MBXS/Foo-Bar-0.01.ta
1596            ! r.gz.packed
1597            ! lib/CPANPLUS/t/dummy-CPAN/modules/02packages.details.txt.gz.pa
1598            ! cked
1599            ! lib/CPANPLUS/t/dummy-CPAN/modules/03modlist.data.gz.packed
1600 ____________________________________________________________________________
1601 [ 31298] By: steveh                                on 2007/05/29  07:25:22
1602         Log: Silence the warning "Can't locate auto/POSIX/autosplit.ix in @INC"
1603              when building the POSIX extension
1604      Branch: perl
1605            ! lib/ExtUtils/Install.pm
1606 ____________________________________________________________________________
1607 [ 31297] By: merijn                                on 2007/05/29  06:12:06
1608         Log: Subject: [PATCH] perltodo tweak on virtualizing OS/FS access
1609              From: Jarkko Hietaniemi <jhi@cc.hut.fi>
1610              Date: Tue, 29 May 2007 06:50:57 +0300 (EEST)
1611              Message-Id: <200705290350.l4T3ovWG275103@kosh.hut.fi>
1612      Branch: perl
1613            ! pod/perltodo.pod
1614 ____________________________________________________________________________
1615 [ 31296] By: nicholas                              on 2007/05/28  21:35:45
1616         Log: Subject: Re: Cross patch 31287 broke blead
1617              From: Vadim <vadim@vkonovalov.ru>
1618              Message-ID: <465B11AB.8000608@vkonovalov.ru>
1619              Date: Mon, 28 May 2007 21:30:19 +0400
1620      Branch: perl
1621           +> Cross/Makefile-cross-SH Cross/build-arm-n770-sh
1622            - Cross/Makefile-cross.SH Cross/build-arm-n770.sh
1623            ! MANIFEST
1624 ____________________________________________________________________________
1625 [ 31295] By: nicholas                              on 2007/05/28  18:50:23
1626         Log: Avoid calling SvEND() when SvPOKp() is not true.
1627              Remove an unneeded dupliate SvCUR_set() in Perl_sv_2pv_flags().
1628      Branch: perl
1629            ! sv.c
1630 ____________________________________________________________________________
1631 [ 31294] By: rgs                                   on 2007/05/28  13:36:43
1632         Log: Several POD fixes by Jonathan Stowe
1633      Branch: perl
1634            ! ext/B/B/Concise.pm ext/B/B/Lint.pm pod/perldebguts.pod
1635            ! symbian/PerlBase.pod
1636 ____________________________________________________________________________
1637 [ 31293] By: rgs                                   on 2007/05/28  13:21:23
1638         Log: Subject: [PATCH] Add /nologo to nmake in CPANPLUS::Dist::Build too
1639              From: "Jos I. Boumans" <kane@xs4all.nl>
1640              Date: Mon, 28 May 2007 15:06:52 +0200
1641              Message-Id: <90E1CAA6-8529-4DD1-9D42-A377538E9320@xs4all.nl>
1642      Branch: perl
1643            ! lib/CPANPLUS/Dist/Build/t/02_CPANPLUS-Dist-Build.t
1644            ! lib/CPANPLUS/Dist/Build/t/src/noxs/Foo-Bar-0.01.tar.gz.packed
1645            ! lib/CPANPLUS/Dist/Build/t/src/xs/Foo-Bar-0.01.tar.gz.packed
1646 ____________________________________________________________________________
1647 [ 31292] By: rgs                                   on 2007/05/28  13:17:54
1648         Log: Subject: [PATCH] Update CPANPLUS to 0.79_03
1649              From: "Jos I. Boumans" <jos@dwim.org>
1650              Date: Mon, 28 May 2007 14:59:11 +0200
1651              Message-Id: <DDD60952-6B63-4AA5-9862-FAE3456AB7CA@dwim.org>
1652      Branch: perl
1653            ! lib/CPANPLUS.pm lib/CPANPLUS/Config.pm
1654            ! lib/CPANPLUS/Configure.pm lib/CPANPLUS/Dist.pm
1655            ! lib/CPANPLUS/Dist/MM.pm lib/CPANPLUS/Internals.pm
1656            ! lib/CPANPLUS/Internals/Constants.pm
1657            ! lib/CPANPLUS/Internals/Constants/Report.pm
1658            ! lib/CPANPLUS/Selfupdate.pm lib/CPANPLUS/Shell/Default.pm
1659            ! lib/CPANPLUS/bin/cpan2dist
1660            ! lib/CPANPLUS/t/02_CPANPLUS-Internals.t
1661            ! lib/CPANPLUS/t/30_CPANPLUS-Internals-Selfupdate.t
1662            ! lib/CPANPLUS/t/dummy-CPAN/authors/01mailrc.txt.gz.packed
1663            ! lib/CPANPLUS/t/dummy-CPAN/authors/id/E/EU/EUNOXS/Bundle-Foo-Ba
1664            ! r-0.01.tar.gz.packed
1665            ! lib/CPANPLUS/t/dummy-CPAN/authors/id/E/EU/EUNOXS/Foo-Bar-0.01.
1666            ! tar.gz.packed
1667            ! lib/CPANPLUS/t/dummy-CPAN/authors/id/E/EU/EUNOXS/perl5.005_03.
1668            ! tar.gz.packed
1669            ! lib/CPANPLUS/t/dummy-CPAN/authors/id/E/EU/EUXS/Foo-Bar-0.01.ta
1670            ! r.gz.packed
1671            ! lib/CPANPLUS/t/dummy-CPAN/authors/id/M/MB/MBNOXS/Foo-Bar-0.01.
1672            ! tar.gz.packed
1673            ! lib/CPANPLUS/t/dummy-CPAN/authors/id/M/MB/MBXS/Foo-Bar-0.01.ta
1674            ! r.gz.packed
1675            ! lib/CPANPLUS/t/dummy-CPAN/modules/02packages.details.txt.gz.pa
1676            ! cked
1677            ! lib/CPANPLUS/t/dummy-CPAN/modules/03modlist.data.gz.packed
1678            ! lib/CPANPLUS/t/inc/conf.pl
1679 ____________________________________________________________________________
1680 [ 31291] By: rgs                                   on 2007/05/28  12:52:08
1681         Log: Mention new lexical pragmas big* in perldelta
1682      Branch: perl
1683            ! pod/perl595delta.pod
1684 ____________________________________________________________________________
1685 [ 31290] By: rgs                                   on 2007/05/28  12:47:32
1686         Log: Update Changes
1687      Branch: perl
1688            ! Changes
1689 ____________________________________________________________________________
1690 [ 31289] By: rgs                                   on 2007/05/28  12:44:29
1691         Log: Update outdated example
1692      Branch: perl
1693            ! pod/perlpod.pod
1694 ____________________________________________________________________________
1695 [ 31288] By: rgs                                   on 2007/05/28  12:33:05
1696         Log: Update to Archive::Extract 0.20, and re-apply patch #31158
1697      Branch: perl
1698            + lib/Archive/Extract/t/src/x.Z.packed
1699            ! MANIFEST lib/Archive/Extract.pm
1700            ! lib/Archive/Extract/t/01_Archive-Extract.t
1701            ! lib/Archive/Extract/t/src/double_dir.zip.packed
1702            ! lib/Archive/Extract/t/src/x.bz2.packed
1703            ! lib/Archive/Extract/t/src/x.gz.packed
1704            ! lib/Archive/Extract/t/src/x.jar.packed
1705            ! lib/Archive/Extract/t/src/x.par.packed
1706            ! lib/Archive/Extract/t/src/x.tar.gz.packed
1707            ! lib/Archive/Extract/t/src/x.tar.packed
1708            ! lib/Archive/Extract/t/src/x.tgz.packed
1709            ! lib/Archive/Extract/t/src/x.zip.packed
1710            ! lib/Archive/Extract/t/src/y.jar.packed
1711            ! lib/Archive/Extract/t/src/y.par.packed
1712            ! lib/Archive/Extract/t/src/y.tar.bz2.packed
1713            ! lib/Archive/Extract/t/src/y.tar.gz.packed
1714            ! lib/Archive/Extract/t/src/y.tar.packed
1715            ! lib/Archive/Extract/t/src/y.tbz.packed
1716            ! lib/Archive/Extract/t/src/y.tgz.packed
1717            ! lib/Archive/Extract/t/src/y.zip.packed
1718 ____________________________________________________________________________
1719 [ 31287] By: rgs                                   on 2007/05/28  12:03:25
1720         Log: Subject: linux arm cross-compilation
1721              From: Vadim <vadim@vkonovalov.ru>
1722              Date: Mon, 28 May 2007 01:23:46 +0400
1723              Message-ID: <4659F6E2.3090805@vkonovalov.ru>
1724              
1725              with adjustments to the MANIFEST
1726      Branch: perl
1727            + Cross/Makefile-cross.SH Cross/build-arm-n770.sh
1728            + Cross/cflags-cross-arm Cross/config.sh-arm-linux-n770
1729            + ext/util/make_ext_cross
1730            ! MANIFEST configpm
1731 ____________________________________________________________________________
1732 [ 31286] By: rgs                                   on 2007/05/28  11:14:32
1733         Log: Bump version number
1734              
1735              Subject: [PATCH] Update log::message::simple to 0.02
1736              From: "Jos I. Boumans" <jib@ripe.net>
1737              Date: Mon, 28 May 2007 12:04:02 +0200
1738              Message-Id: <EB397A0C-713C-4E42-92DB-DD8B808AE34C@ripe.net>
1739      Branch: perl
1740            ! lib/Log/Message/Simple.pm
1741 ____________________________________________________________________________
1742 [ 31285] By: rgs                                   on 2007/05/28  10:17:22
1743         Log: Subject: Re: [PATCH] Math::BigInt v1.87 take 5
1744              From: Tels <nospam-abuse@bloodgate.com>
1745              Date: Sun, 27 May 2007 15:54:29 +0000
1746              Message-Id: <200705271554.32054@bloodgate.com>
1747      Branch: perl
1748            ! lib/Math/BigFloat.pm lib/Math/BigInt.pm
1749            ! lib/Math/BigInt/Calc.pm lib/Math/BigInt/t/bigfltpm.t
1750 ____________________________________________________________________________
1751 [ 31284] By: rgs                                   on 2007/05/28  09:45:39
1752         Log: Subject: [PATCH] Math::BigInt::FastCalc v0.15
1753              From: Tels <nospam-abuse@bloodgate.com>
1754              Date: Sun, 27 May 2007 14:43:15 +0000
1755              Message-Id: <200705271443.16138@bloodgate.com>
1756      Branch: perl
1757            ! ext/Math/BigInt/FastCalc/FastCalc.pm
1758            ! ext/Math/BigInt/FastCalc/FastCalc.xs
1759            ! ext/Math/BigInt/FastCalc/Makefile.PL
1760            ! ext/Math/BigInt/FastCalc/t/leak.t
1761 ____________________________________________________________________________
1762 [ 31283] By: craigb                                on 2007/05/27  01:54:45
1763         Log: In the stat() wrapper for VMS, always allow extended characters
1764              (such as multiple dots) in the filename regardless of environment
1765              setting.
1766      Branch: perl
1767            ! vms/vms.c
1768 ____________________________________________________________________________
1769 [ 31282] By: craigb                                on 2007/05/27  01:50:46
1770         Log: In the homegrown readdir() for VMS, always treat unix-style paths
1771              appropriately regardless of environment setting, and also remove
1772              the escape characters from escaped dots.
1773      Branch: perl
1774            ! vms/vms.c
1775 ____________________________________________________________________________
1776 [ 31281] By: rgs                                   on 2007/05/26  06:54:40
1777         Log: Bad orientation in doc, noticed by Jan Dubois.
1778      Branch: perl
1779            ! pod/perl595delta.pod
1780 ____________________________________________________________________________
1781 [ 31280] By: davem                                 on 2007/05/25  23:26:33
1782         Log: delete PL_hash_seed_set, PL_lineary; move PL_runops_std/dbg
1783              the first two aren't used, and the last two are just place holders
1784              to ensure that both runops functions get linked in; so make them
1785              global rather than per-interpeter
1786      Branch: perl
1787            ! embedvar.h intrpvar.h perlapi.h perlvars.h sv.c
1788 ____________________________________________________________________________
1789 [ 31279] By: craigb                                on 2007/05/25  22:19:40
1790         Log: Subject: Re: argproc.c license Re: [perl #43037] Bad license in perl distribution
1791              From: Mark Pizzolato <mark@infocomm.com>
1792              Date: Fri, 25 May 2007 13:31:17 -0700 (PDT)
1793              Message-ID: <288163.41670.qm@web83606.mail.sp1.yahoo.com>
1794      Branch: perl
1795            ! vms/vms.c
1796 ____________________________________________________________________________
1797 [ 31278] By: davem                                 on 2007/05/25  19:16:50
1798         Log: fix coredump in S_varname (tickled by Devel::Profile)
1799              a 'Use of uninitialized value' warning within a DB sub
1800              attempted to use the pad of the caller to locate the offending
1801              lexical
1802      Branch: perl
1803            ! sv.c
1804 ____________________________________________________________________________
1805 [ 31277] By: rgs                                   on 2007/05/25  13:29:34
1806         Log: \R can't be used in a char class
1807      Branch: perl
1808            ! pod/perlre.pod
1809 ____________________________________________________________________________
1810 [ 31276] By: rgs                                   on 2007/05/25  13:28:39
1811         Log: Document new escapes in perldelta
1812      Branch: perl
1813            ! pod/perl595delta.pod
1814 ____________________________________________________________________________
1815 [ 31275] By: steveh                                on 2007/05/25  10:15:54
1816         Log: Change #31270 should have updated proto.h to match
1817      Branch: perl
1818            ! embed.fnc proto.h
1819 ____________________________________________________________________________
1820 [ 31274] By: rgs                                   on 2007/05/25  09:57:33
1821         Log: Upgrade to Archive::Tar 1.32.
1822      Branch: perl
1823            ! lib/Archive/Tar.pm lib/Archive/Tar/Constant.pm
1824            ! lib/Archive/Tar/File.pm
1825            ! lib/Archive/Tar/t/src/long/bar.tar.packed
1826            ! lib/Archive/Tar/t/src/long/foo.tgz.packed
1827            ! lib/Archive/Tar/t/src/short/bar.tar.packed
1828            ! lib/Archive/Tar/t/src/short/foo.tgz.packed
1829 ____________________________________________________________________________
1830 [ 31273] By: rgs                                   on 2007/05/25  09:29:12
1831         Log: Document that ptardiff needs Text::Diff
1832      Branch: perl
1833            ! pod/perlutil.pod
1834 ____________________________________________________________________________
1835 [ 31272] By: rgs                                   on 2007/05/25  09:20:45
1836         Log: Document cpanp and cpan2dist
1837      Branch: perl
1838            ! pod/perl595delta.pod pod/perlutil.pod
1839 ____________________________________________________________________________
1840 [ 31271] By: steveh                                on 2007/05/25  09:18:45
1841         Log: Fix the ext/IO/t/io_sock.t failure when built with VC++ 2005
1842              
1843              Unknown to me win32/win32.h was defining USE_FIXED_OSFHANDLE, which
1844              arranged for a black magic fix to MSVCRT.DLL's _open_osfhandle() to
1845              be used. It seems that this is inappropriate for VC++ versions later
1846              than 6.x, since they don't use that DLL: simply not defining that
1847              symbol makes the io_sock.t failure go away.
1848              
1849              (Compare change #29233, which similarly disabled the fix to
1850              MSVCRT.DLL's read() for VC++ versions later than 6.x.)
1851      Branch: perl
1852            ! README.win32 win32/win32.h
1853 ____________________________________________________________________________
1854 [ 31270] By: rgs                                   on 2007/05/25  07:46:08
1855         Log: Subject: [PATCH] Consting dump.c
1856              From: Andy Lester <andy@petdance.com>
1857              Date: Thu, 24 May 2007 13:25:43 -0500
1858              Message-Id: <B46A083E-A133-4D38-9BE8-BE1EB0AAA326@petdance.com>
1859      Branch: perl
1860            ! XSUB.h doop.c dump.c
1861 ____________________________________________________________________________
1862 [ 31269] By: rgs                                   on 2007/05/24  17:18:24
1863         Log: Subject: Re: perl pragma [PATCH]
1864              From: Tels <nospam-abuse@bloodgate.com>
1865              Date: Wed, 23 May 2007 21:35:58 +0000
1866              Message-Id: <200705232135.59546@bloodgate.com>
1867      Branch: perl
1868            + lib/bignum/t/in_effect.t lib/bignum/t/scope_f.t
1869            + lib/bignum/t/scope_i.t lib/bignum/t/scope_r.t
1870            ! MANIFEST lib/bigint.pm lib/bignum.pm lib/bigrat.pm
1871 ____________________________________________________________________________
1872 [ 31268] By: rgs                                   on 2007/05/24  16:12:58
1873         Log: Subject: [perl #43010] [PATCH] Deparse, ''->(), ::(), sub :: {}, etc. 
1874              From: Father Chrysostomos (via RT) <perlbug-followup@perl.org>
1875              Date: Sun, 20 May 2007 21:44:42 -0700
1876              Message-ID: <rt-3.6.HEAD-4015-1179722682-636.43010-75-0@perl.org>
1877      Branch: perl
1878            ! ext/B/B/Deparse.pm ext/B/t/deparse.t
1879 ____________________________________________________________________________
1880 [ 31267] By: rgs                                   on 2007/05/24  15:37:40
1881         Log: Adjustment to the test for importing feature bundles,
1882              found by Hugo
1883      Branch: perl
1884            ! lib/feature.pm
1885 ____________________________________________________________________________
1886 [ 31266] By: rgs                                   on 2007/05/24  15:12:41
1887         Log: Subject: [PATCH] update CPANPLUS::Dist::Build to 0.06_01
1888              From: "Jos I. Boumans" <kane@dwim.org>
1889              Date: Tue, 22 May 2007 14:45:19 +0200
1890              Message-Id: <208F4537-CCF8-401B-9F97-EF1902EA2FB6@dwim.org>
1891      Branch: perl
1892            ! lib/CPANPLUS/Dist/Build.pm
1893            ! lib/CPANPLUS/Dist/Build/t/01_CPANPLUS-Dist-Build-Constants.t
1894            ! lib/CPANPLUS/Dist/Build/t/02_CPANPLUS-Dist-Build.t
1895            ! lib/CPANPLUS/Dist/Build/t/inc/conf.pl
1896            ! lib/CPANPLUS/Dist/Build/t/src/noxs/Foo-Bar-0.01.tar.gz.packed
1897            ! lib/CPANPLUS/Dist/Build/t/src/xs/Foo-Bar-0.01.tar.gz.packed
1898 ____________________________________________________________________________
1899 [ 31265] By: rgs                                   on 2007/05/24  13:29:01
1900         Log: It suddendly annoyed me that corelist returned sometimes two
1901              spaces in a row.
1902      Branch: perl
1903            ! lib/Module/CoreList/bin/corelist
1904 ____________________________________________________________________________
1905 [ 31264] By: rgs                                   on 2007/05/24  11:17:31
1906         Log: Doc nits by Steven Schubiger
1907      Branch: perl
1908            ! pod/perlintro.pod
1909 ____________________________________________________________________________
1910 [ 31263] By: rgs                                   on 2007/05/24  08:25:52
1911         Log: perldelta additions suggested by Steve Hay
1912      Branch: perl
1913            ! pod/perl595delta.pod
1914 ____________________________________________________________________________
1915 [ 31262] By: rgs                                   on 2007/05/24  08:18:31
1916         Log: Subject: [PATCH revised] threads::shared 1.12
1917              From: "Jerry D. Hedden" <jdhedden@cpan.org>
1918              Date: Wed, 23 May 2007 09:28:28 -0400
1919              Message-ID: <1ff86f510705230628n73c16e2gc67a3ec05d57c5f3@mail.gmail.com>
1920      Branch: perl
1921            ! ext/threads/shared/Changes ext/threads/shared/README
1922            ! ext/threads/shared/shared.pm ext/threads/shared/t/wait.t
1923            ! ext/threads/shared/t/waithires.t
1924 ____________________________________________________________________________
1925 [ 31260] By: rgs                                   on 2007/05/23  10:20:29
1926         Log: Perldelta nit by Brandon Black
1927      Branch: perl
1928            ! pod/perl595delta.pod
1929 ____________________________________________________________________________
1930 [ 31259] By: steveh                                on 2007/05/23  08:12:14
1931         Log: Subject: RE: [PATCH] Skip ext/Win32/t/Unicode.t under Cygwin
1932              From: "Jan Dubois" <jand@activestate.com>
1933              Date: Tue, 22 May 2007 16:35:27 -0700
1934              Message-ID: <06dd01c79cc9$e101ce60$a3056b20$@com>
1935              
1936              Reinstates the test under Cygwin and fixes it.
1937      Branch: perl
1938            ! ext/Win32/t/Unicode.t
1939 ____________________________________________________________________________
1940 [ 31258] By: stevep                                on 2007/05/23  01:58:07
1941         Log: Subject: [PATCH] Forgotten Cygwin patch
1942              From: "Jerry D. Hedden" <jdhedden@cpan.org>
1943              Date: Tue, 22 May 2007 20:58:04 -0400
1944              Message-ID: <1ff86f510705221758p71418517ncb89fac289d74c35@mail.gmail.com>
1945      Branch: perl
1946            ! cygwin/perlld.in
1947 ____________________________________________________________________________
1948 [ 31257] By: rgs                                   on 2007/05/22  14:12:18
1949         Log: Add MidnightBSD to the list of Unix-like OSes
1950      Branch: perl
1951            ! lib/Module/Build.pm
1952 ____________________________________________________________________________
1953 [ 31256] By: rgs                                   on 2007/05/22  10:07:09
1954         Log: Update perldelta
1955      Branch: perl
1956            ! pod/perl595delta.pod
1957 ____________________________________________________________________________
1958 [ 31255] By: davem                                 on 2007/05/21  22:35:15
1959         Log: move PL_error_count into the PL_parser struct
1960      Branch: perl
1961            ! embedvar.h intrpvar.h op.c parser.h perl.c perlapi.h pp_ctl.c
1962            ! sv.c toke.c
1963 ____________________________________________________________________________
1964 [ 31254] By: davem                                 on 2007/05/21  21:02:50
1965         Log: move PL_multi_end into the PL_parser struct
1966      Branch: perl
1967            ! embedvar.h intrpvar.h op.c parser.h perlapi.h sv.c toke.c
1968 ____________________________________________________________________________
1969 [ 31253] By: stevep                                on 2007/05/21  20:52:10
1970         Log: Subject: Re: Smoke failures with blead@31225 (Linux) [PATCH]
1971              From: Tels <nospam-abuse@bloodgate.com>
1972              Date: Mon, 21 May 2007 20:17:20 +0000
1973              Message-Id: <200705212017.23224@bloodgate.com>
1974      Branch: perl
1975            ! lib/Math/BigInt/Calc.pm
1976 ____________________________________________________________________________
1977 [ 31252] By: davem                                 on 2007/05/21  19:57:24
1978         Log: move PL_tokenbuf into the PL_parser struct
1979      Branch: perl
1980            ! embedvar.h intrpvar.h parser.h perlapi.h sv.c toke.c utf8.c
1981 ____________________________________________________________________________
1982 [ 31251] By: rgs                                   on 2007/05/21  16:46:04
1983         Log: Update Changes
1984      Branch: perl
1985            ! Changes
1986 ____________________________________________________________________________
1987 [ 31250] By: rgs                                   on 2007/05/21  14:29:02
1988         Log: Subject: [PATCH] Skip ext/Win32/t/Unicode.t under Cygwin
1989              From: "Jerry D. Hedden" <jdhedden@cpan.org>
1990              Date: Sat, 19 May 2007 11:56:40 -0400
1991              Message-ID: <1ff86f510705190856o2a98f1a5sd6f316f863e60c87@mail.gmail.com>
1992      Branch: perl
1993            ! ext/Win32/t/Unicode.t
1994 ____________________________________________________________________________
1995 [ 31249] By: rgs                                   on 2007/05/21  14:27:03
1996         Log: Subject: [PATCH] Skip win32core.t under Cygwin
1997              From: "Jerry D. Hedden" <jdhedden@cpan.org>
1998              Date: Sat, 19 May 2007 08:43:47 -0400
1999              Message-ID: <1ff86f510705190543r505cfc2fua18e87cd665b8f6e@mail.gmail.com>
2000      Branch: perl
2001            ! ext/Win32CORE/t/win32core.t
2002 ____________________________________________________________________________
2003 [ 31248] By: merijn                                on 2007/05/21  06:26:31
2004         Log: Subject: [PATCH] pp_sys.c: gethostbyaddr
2005              From: Jarkko Hietaniemi <jhi@iki.fi>
2006              Date: Mon, 21 May 2007 00:02:38 -0400
2007              Message-ID: <465119DE.6040208@iki.fi>
2008      Branch: perl
2009            ! pp_sys.c
2010 ____________________________________________________________________________
2011 [ 31247] By: craigb                                on 2007/05/21  04:33:27
2012         Log: VMSify uupacktool.pl and run it during VMS build.
2013      Branch: perl
2014            ! uupacktool.pl vms/descrip_mms.template
2015 ____________________________________________________________________________
2016 [ 31246] By: davem                                 on 2007/05/20  23:56:30
2017         Log: delete unused vars PL_av_fetch_sv, PL_hv_fetch_sv
2018              and fix 'duplicate symbol' warnings from embed.pl
2019              for utf8cache and sh_path
2020      Branch: perl
2021            ! embedvar.h intrpvar.h perlapi.h perlvars.h
2022 ____________________________________________________________________________
2023 [ 31245] By: davem                                 on 2007/05/20  23:10:15
2024         Log: delete thrdvar.h and move its contents to intrpvar.h
2025      Branch: perl
2026            - thrdvar.h
2027            ! MANIFEST Makefile.SH Makefile.micro NetWare/Makefile embed.h
2028            ! embed.pl embedvar.h global.sym intrpvar.h
2029            ! lib/ExtUtils/MM_Unix.pm lib/ExtUtils/MM_VMS.pm makedef.pl
2030            ! perl.c perl.h perlapi.c perlapi.h pod/perlapi.pod
2031            ! pod/perlintern.pod pod/perltodo.pod proto.h sv.c
2032            ! vms/descrip_mms.template win32/Makefile win32/Makefile.ce
2033            ! win32/makefile.mk
2034 ____________________________________________________________________________
2035 [ 31244] By: rgs                                   on 2007/05/20  12:58:53
2036         Log: Subject: [PATCH] Minor perlreapi.pod cleanup
2037              From: "=?UTF-8?Q?=C3=86var_Arnfj=C3=B6r=C3=B0_Bjarmason?=" <avarab@gmail.com>
2038              Date: Wed, 16 May 2007 16:38:44 +0000
2039              Message-ID: <51dd1af80705160938w13789b63m6d5f4710441ceac@mail.gmail.com>
2040      Branch: perl
2041            ! pod/perlreapi.pod regexp.h
2042 ____________________________________________________________________________
2043 [ 31243] By: rgs                                   on 2007/05/20  12:55:20
2044         Log: Update Archive::Tar to 1.31
2045      Branch: perl
2046            + lib/Archive/Tar/t/99_pod.t lib/Archive/Tar/t/src/long/b
2047            + lib/Archive/Tar/t/src/long/bar.tar.packed
2048            + lib/Archive/Tar/t/src/long/foo.tgz.packed
2049            + lib/Archive/Tar/t/src/short/b
2050            + lib/Archive/Tar/t/src/short/bar.tar.packed
2051            + lib/Archive/Tar/t/src/short/foo.tgz.packed
2052            - lib/Archive/Tar/t/00_setup.t lib/Archive/Tar/t/99_clean.t
2053            ! MANIFEST lib/Archive/Tar.pm lib/Archive/Tar/File.pm
2054            ! lib/Archive/Tar/t/02_methods.t
2055 ____________________________________________________________________________
2056 [ 31242] By: rgs                                   on 2007/05/20  12:50:02
2057         Log: Subject: RE: When is -DPERL_CORE required?
2058              From: "Jan Dubois" <jand@activestate.com>
2059              Date: Fri, 18 May 2007 10:57:35 -0700
2060              Message-ID: <044601c79976$046691d0$0d33b570$@com>
2061      Branch: perl
2062            ! win32/win32.h
2063 ____________________________________________________________________________
2064 [ 31241] By: rgs                                   on 2007/05/20  12:48:01
2065         Log: Subject: [PATCH] Don't use a regex match in lib/feature.pm
2066              From: "=?UTF-8?Q?=C3=86var_Arnfj=C3=B6r=C3=B0_Bjarmason?=" <avarab@gmail.com>
2067              Date: Fri, 18 May 2007 20:16:53 +0000
2068              Message-ID: <51dd1af80705181316r15f65e45n55903de294565aa1@mail.gmail.com>
2069      Branch: perl
2070            ! lib/feature.pm
2071 ____________________________________________________________________________
2072 [ 31240] By: craigb                                on 2007/05/20  01:00:31
2073         Log: Make VMS's home-grown glob() recognize a directory even without
2074              tell-tale punctuation.
2075      Branch: perl
2076            ! vms/vms.c
2077 ____________________________________________________________________________
2078 [ 31239] By: craigb                                on 2007/05/19  01:00:15
2079         Log: Various mro updates from Brandon Black. References:
2080              <84621a60705111347q40f9dd9ciefa9468e9ff9ca6c@mail.gmail.com>
2081              <84621a60705121458i34ff361fh9166e8558781df41@mail.gmail.com>
2082              <84621a60705141111q70ed307r9181dfc2834a8f5c@mail.gmail.com>
2083              <84621a60705160937h53946fcfg70635908302724e8@mail.gmail.com>
2084      Branch: perl
2085            + t/mro/pkg_gen.t
2086            ! MANIFEST hv.h lib/mro.pm mg.c mro.c sv.c t/mro/basic.t
2087 ____________________________________________________________________________
2088 [ 31238] By: craigb                                on 2007/05/18  22:48:12
2089         Log: Subject: [PATCH] threads 1.62
2090              From: "Jerry D. Hedden" <jdhedden@cpan.org>
2091              Date: Thu, 17 May 2007 12:21:46 -0400
2092              Message-ID: <1ff86f510705170921g77d87898ye2c081fc0df53a9e@mail.gmail.com>
2093      Branch: perl
2094            ! ext/threads/Changes ext/threads/README ext/threads/t/exit.t
2095            ! ext/threads/t/free.t ext/threads/t/free2.t
2096            ! ext/threads/t/kill.t ext/threads/t/thread.t
2097            ! ext/threads/threads.pm ext/threads/threads.xs
2098 ____________________________________________________________________________
2099 [ 31237] By: craigb                                on 2007/05/18  22:01:51
2100         Log: Subject: [PATCH] Unicode::UCD: add general category and bidi type interfaces
2101              From: Jarkko Hietaniemi <jhi@cc.hut.fi>
2102              Date: Fri, 18 May 2007 03:45:29 +0300 (EEST)
2103              Message-Id: <200705180045.l4I0jTeI221780@kosh.hut.fi>
2104      Branch: perl
2105            ! lib/Unicode/UCD.pm lib/Unicode/UCD.t
2106 ____________________________________________________________________________
2107 [ 31236] By: craigb                                on 2007/05/18  21:42:56
2108         Log: When trimming long XS symbols on VMS, avoid warnings from operator
2109              precedence mistakes, but for now give the same symbol mangling
2110              results as before.
2111      Branch: perl
2112            ! vms/ext/XSSymSet.pm
2113 ____________________________________________________________________________
2114 [ 31235] By: steveh                                on 2007/05/18  10:46:57
2115         Log: Upgrade to Win32-0.29
2116      Branch: perl
2117            + ext/Win32/longpath.inc ext/Win32/t/CreateFile.t
2118            + ext/Win32/t/GetCurrentThreadId.t ext/Win32/t/Unicode.t
2119            ! MANIFEST ext/Win32/Makefile.PL ext/Win32/Win32.pm
2120            ! ext/Win32/Win32.xs ext/Win32/t/GetFileVersion.t
2121 ____________________________________________________________________________
2122 [ 31234] By: steveh                                on 2007/05/17  09:19:01
2123         Log: Subject: [PATCH] todos for perl 5.12
2124              From: Jarkko Hietaniemi <jhi@cc.hut.fi>
2125              Date: Thu, 17 May 2007 04:25:19 +0300 (EEST)
2126              Message-Id: <200705170125.l4H1PJNi198465@kosh.hut.fi>
2127              
2128              (plus a fix for 1 unescaped <>)
2129      Branch: perl
2130            ! pod/perltodo.pod
2131 ____________________________________________________________________________
2132 [ 31233] By: merijn                                on 2007/05/16  21:32:56
2133         Log: Subject: [PATCH] Re: Thread fail/hang on HP-UX 10.20
2134              From: "Jerry D. Hedden" <jdhedden@cpan.org>
2135              Date: Wed, 16 May 2007 14:18:05 -0400
2136              Message-ID: <1ff86f510705161118x55e9d18crdf376ca469f97dc7@mail.gmail.com>
2137      Branch: perl
2138            ! ext/threads/shared/Changes ext/threads/shared/shared.pm
2139            ! ext/threads/shared/t/stress.t
2140 ____________________________________________________________________________
2141 [ 31232] By: merijn                                on 2007/05/16  17:36:15
2142         Log: Subject: [PATCH] Configure (and Makefile.SH): remove ODBM_File early if c++ (this time even with the Configure bits)
2143              From: Jarkko Hietaniemi <jhi@cc.hut.fi>
2144              Date: Wed, 16 May 2007 05:33:14 +0300 (EEST)
2145              Message-Id: <200705160233.l4G2XEET143034@kosh.hut.fi>
2146      Branch: perl
2147            ! Configure Makefile.SH
2148 ____________________________________________________________________________
2149 [ 31230] By: steveh                                on 2007/05/16  16:41:48
2150         Log: DynaLoader doesn't seem to need -DPERL_CORE, and no other extensions
2151              are compiled with it, so let's see if we can get away with removing
2152              it. Revert this change if it causes black smoke!
2153      Branch: perl
2154            ! ext/DynaLoader/Makefile.PL
2155 ____________________________________________________________________________
2156 [ 31229] By: steveh                                on 2007/05/16  08:26:09
2157         Log: A more general fix to non-threaded static extension build problems
2158              than #31220 was.
2159      Branch: perl
2160            ! ext/Win32CORE/Makefile.PL lib/ExtUtils/MM_Win32.pm
2161 ____________________________________________________________________________
2162 [ 31228] By: steveh                                on 2007/05/16  07:32:20
2163         Log: Remove comment added by #31218 since the rest of that change was
2164              reverted by #31224
2165      Branch: perl
2166            ! op.h
2167 ____________________________________________________________________________
2168 [ 31227] By: stevep                                on 2007/05/16  03:39:44
2169         Log: Subject: [PATCH] DBM_Filter test: use std test preamble
2170              From: Jarkko Hietaniemi <jhi@cc.hut.fi>
2171              Date: Wed, 16 May 2007 05:29:17 +0300 (EEST)
2172              Message-Id: <200705160229.l4G2THSE421947@kosh.hut.fi>
2173      Branch: perl
2174            ! lib/DBM_Filter/t/01error.t
2175 ____________________________________________________________________________
2176 [ 31226] By: craigb                                on 2007/05/16  03:08:51
2177         Log: Better suppression of Threads build (probably still needed on 5.8.x)
2178      Branch: perl
2179            ! configure.com
2180 ____________________________________________________________________________
2181 [ 31225] By: davem                                 on 2007/05/15  21:51:03
2182         Log: change 31200 broke src filters used within an eval
2183              eg BEGIN { eval q(use MyFilter) } would ignore the filter
2184      Branch: perl
2185            ! toke.c
2186 ____________________________________________________________________________
2187 [ 31224] By: stevep                                on 2007/05/15  18:56:23
2188         Log: Move pmop.op_pmflags back to its previous location.  The move in
2189              change #31218 was causing segfaults in miniperl on 32-bit
2190              environments.
2191      Branch: perl
2192            ! op.h
2193 ____________________________________________________________________________
2194 [ 31222] By: stevep                                on 2007/05/15  17:21:30
2195         Log: Subject: [PATCH] Math::BigInt v1.87
2196              From: Tels <nospam-abuse@bloodgate.com>
2197              Date: Sun, 13 May 2007 14:34:11 +0000
2198              Message-Id: <200705131434.11992@bloodgate.com>
2199              
2200              Subject: Re: [PATCH] Math::BigInt v1.87 (take 2)
2201              From: Tels <nospam-abuse@bloodgate.com>
2202              Date: Mon, 14 May 2007 15:41:36 +0000
2203              Message-Id: <200705141541.40678@bloodgate.com>
2204              
2205              Subject: Re: [PATCH] Math::BigInt v1.87 (take 3)
2206              From: Tels <nospam-abuse@bloodgate.com>
2207              Date: Tue, 15 May 2007 19:02:54 +0000
2208              Message-Id: <200705151902.57372@bloodgate.com>
2209      Branch: perl
2210            ! lib/Math/BigFloat.pm lib/Math/BigInt.pm
2211            ! lib/Math/BigInt/Calc.pm lib/Math/BigInt/t/bigintc.t
2212            ! lib/Math/BigInt/t/biglog.t lib/Math/BigInt/t/config.t
2213 ____________________________________________________________________________
2214 [ 31221] By: steveh                                on 2007/05/15  15:45:50
2215         Log: Subject: [PATCH] Win32CORE.c needed windows.h
2216              From: "Jerry D. Hedden" <jdhedden@cpan.org>
2217              Date: Tue, 15 May 2007 09:10:00 -0400
2218              Message-ID: <1ff86f510705150609l1c178629i97091adbd02b6463@mail.gmail.com>
2219              
2220              (plus a #define to save windows.h pulling in so much stuff.)
2221              
2222              Fixes a build error on Cygwin caused by #31214.
2223      Branch: perl
2224            ! ext/Win32CORE/Win32CORE.c
2225 ____________________________________________________________________________
2226 [ 31220] By: steveh                                on 2007/05/15  08:19:56
2227         Log: Subject: RE: Smoke summary results for maint and current on Win32
2228              From: "Jan Dubois" <jand@activestate.com>
2229              Date: Mon, 14 May 2007 14:58:19 -0700
2230              Message-ID: <013401c79672$fbbdb320$f3391960$@com>
2231              
2232              Fixes non-threaded builds on Win32 (which had warnings with VC and
2233              errors with GCC) by compiling the statically linked extension
2234              Win32CORE with -DPERLDLL.
2235              
2236              The same fix should be applied more generally to all statically
2237              linked extensions so a further change may be forthcoming, but this
2238              at least gets the standard non-threaded build working again.
2239      Branch: perl
2240            ! ext/Win32CORE/Makefile.PL
2241 ____________________________________________________________________________
2242 [ 31219] By: steveh                                on 2007/05/15  08:15:32
2243         Log: Subject: RE: [perl #42925] Win32::GetLastError fails when first called
2244              From: "Jan Dubois" <jand@activestate.com>
2245              Date: Mon, 14 May 2007 15:18:22 -0700
2246              Message-ID: <014e01c79675$c8bfc6e0$5a3f54a0$@com>
2247              
2248              Improved test: make sure that Win32 isn't already loaded when you call
2249              Win32::GetLastError()
2250      Branch: perl
2251            ! ext/Win32CORE/t/win32core.t
2252 ____________________________________________________________________________
2253 [ 31218] By: nicholas                              on 2007/05/15  07:36:57
2254         Log: BASEOP isn't an exact multiple of 8 bytes, so reordering pmop and cop
2255              to put a 32 bit member first elimiates structure padding on LP64.
2256      Branch: perl
2257            ! cop.h op.h
2258 ____________________________________________________________________________
2259 [ 31217] By: nicholas                              on 2007/05/14  22:32:16
2260         Log: PERL_IMPLICIT_CONTEXT is usually defined for threads, so assume that
2261              its int needs a friend under LP64.
2262              gcc -Wpaddedspotted padding I'd missed in thrdvar.h
2263      Branch: perl
2264            ! intrpvar.h thrdvar.h
2265 ____________________________________________________________________________
2266 [ 31216] By: nicholas                              on 2007/05/14  22:16:04
2267         Log: Subject: [PATCH] threads::shared 1.11
2268              From: "Jerry D. Hedden" <jdhedden@cpan.org>
2269              Message-ID: <1ff86f510705140517n1c140d96nca36667bcbbc27f@mail.gmail.com>
2270              Date: Mon, 14 May 2007 08:17:51 -0400
2271      Branch: perl
2272            ! ext/threads/shared/Changes ext/threads/shared/README
2273            ! ext/threads/shared/shared.pm
2274 ____________________________________________________________________________
2275 [ 31215] By: steveh                                on 2007/05/14  16:56:22
2276         Log: Test for [perl #42925], which was fixed by #31214
2277      Branch: perl
2278            ! ext/Win32CORE/t/win32core.t
2279 ____________________________________________________________________________
2280 [ 31214] By: steveh                                on 2007/05/14  16:54:30
2281         Log: Subject: RE: [perl #42925] Win32::GetLastError fails when first called 
2282              From: "Jan Dubois" <jand@activestate.com>
2283              Date: Fri, 11 May 2007 16:55:17 -0700
2284              Message-ID: <02bd01c79427$d36140b0$7a23c210$@com>
2285      Branch: perl
2286            ! ext/Win32CORE/Win32CORE.c
2287 ____________________________________________________________________________
2288 [ 31213] By: steveh                                on 2007/05/14  16:22:04
2289         Log: Older versions of windres interpret "-I" as the input format,
2290              so use the long option name "--include-dir" instead.
2291      Branch: perl
2292            ! win32/makefile.mk
2293 ____________________________________________________________________________
2294 [ 31212] By: stevep                                on 2007/05/13  16:47:40
2295         Log: Upgrade to Encode-2.21
2296      Branch: perl
2297            + ext/Encode/lib/Encode/MIME/Name.pm ext/Encode/t/mime-name.t
2298            ! MANIFEST ext/Encode/Encode.pm ext/Encode/Encode.xs
2299            ! ext/Encode/Unicode/Unicode.pm ext/Encode/encoding.pm
2300            ! ext/Encode/lib/Encode/Encoding.pm
2301 ____________________________________________________________________________
2302 [ 31211] By: stevep                                on 2007/05/13  16:35:02
2303         Log: Subject: [PATCH] Restore Windows NT support
2304              From: "Jan Dubois" <jand@activestate.com>
2305              Date: Fri, 11 May 2007 18:25:39 -0700
2306              Message-ID: <02d101c79434$743be100$5cb3a300$@com>
2307      Branch: perl
2308            ! win32/perllib.c win32/vdir.h win32/win32.c
2309 ____________________________________________________________________________
2310 [ 31209] By: davem                                 on 2007/05/13  01:17:42
2311         Log: fix some (mostly MAD) compiler warnings
2312      Branch: perl
2313            ! perly.act perly.tab perly.y toke.c
2314 ____________________________________________________________________________
2315 [ 31208] By: davem                                 on 2007/05/12  22:44:02
2316         Log: Give the 'local' declarator a new key, such that 'local our'
2317              declaration don't have multiple 'd' keys.
2318              
2319              Subject:  [PATCH] mad: different key for the locale declarator
2320              From:  Gerard Goossen <gerard@tty.nl>
2321              Date:    Tue May 8 17:42:45 2007 +0200
2322              Message-Id:  <20070508171125.GI17043@ostwald>
2323      Branch: perl
2324            ! mad/Nomad.pm op.h perly.act perly.y
2325 ____________________________________________________________________________
2326 [ 31207] By: davem                                 on 2007/05/12  22:43:01
2327         Log: move the logic of combining '_' and '#' with the previous logic
2328              from Nomad.pm to dump.c. So they are already combined in the XML
2329              dump.
2330              
2331              Subject:  [PATCH] mad: combine whitespace keys '_' '#' in dump.c instead of Nomad.pm
2332              From:  Gerard Goossen <gerard@tty.nl>
2333              Date:    Sun Mar 25 13:36:31 2007 +0200
2334              Message-Id:  <20070508170341.GH17043@ostwald>
2335      Branch: perl
2336            ! dump.c mad/Nomad.pm
2337 ____________________________________________________________________________
2338 [ 31206] By: davem                                 on 2007/05/12  22:42:09
2339         Log: Subject:  [PATCH] Disable slurping assigned of split when PL_madskills
2340              From:  Gerard Goossen <gerard@tty.nl>
2341              Date:    Tue May 8 15:15:09 2007 +0200
2342              Message-Id:  <20070508164400.GA15860@ostwald>
2343      Branch: perl
2344            ! mad/Nomad.pm op.c op.h
2345 ____________________________________________________________________________
2346 [ 31205] By: davem                                 on 2007/05/12  22:41:17
2347         Log: Subject:  [PATCH] Disable !a&&b, !b||a optimalization when PL_madskills
2348              From:  Gerard Goossen <gerard@tty.nl>
2349              Date:    Tue May 8 16:09:17 2007 +0200
2350              Message-Id:  <20070508164556.GB15860@ostwald>
2351      Branch: perl
2352            ! op.c
2353 ____________________________________________________________________________
2354 [ 31204] By: davem                                 on 2007/05/12  22:40:05
2355         Log: Disable operator target setting for 'my' variables (OPpTARGET_MY)
2356              when madskills is active. Remove the p55 code required for dealing
2357              with the optimized tree.
2358              
2359              Subject:  [PATCH] disable operator with target my when madskills enabled
2360              From:  Gerard Goossen <gerard@tty.nl>
2361              Date:    Thu Apr 19 15:31:27 2007 +0200
2362              Message-Id:  <20070419133822.GG19244@ostwald>
2363              
2364              also:
2365              
2366              Remove the just remove madprop 'M' doc
2367              
2368              Message-ID: <20070419134549.GH19244@ostwald>
2369      Branch: perl
2370            ! mad/Nomad.pm op.c op.h
2371 ____________________________________________________________________________
2372 [ 31203] By: davem                                 on 2007/05/12  22:17:40
2373         Log: move PL_in_my and PL_in_my_stash into the PL_parser struct
2374      Branch: perl
2375            ! embedvar.h intrpvar.h op.c pad.c parser.h perlapi.h perly.act
2376            ! perly.y sv.c toke.c utf8.c
2377 ____________________________________________________________________________
2378 [ 31202] By: davem                                 on 2007/05/12  20:06:41
2379         Log: eliminate a stray PL_lex_state
2380      Branch: perl
2381            ! toke.c
2382 ____________________________________________________________________________
2383 [ 31201] By: davem                                 on 2007/05/12  19:51:37
2384         Log: save old PL_curcop value in parser struct
2385      Branch: perl
2386            ! parser.h toke.c
2387 ____________________________________________________________________________
2388 [ 31200] By: davem                                 on 2007/05/12  19:21:02
2389         Log: move PL_rsfp_filters into the parser struct
2390      Branch: perl
2391            ! embed.fnc embed.h embedvar.h
2392            ! ext/Devel/PPPort/parts/inc/variables
2393            ! ext/Filter/Util/Call/Call.pm ext/Filter/Util/Call/Call.xs
2394            ! intrpvar.h op.c parser.h perl.c perl.h perlapi.h perly.act
2395            ! perly.tab perly.y pp_ctl.c proto.h sv.c toke.c
2396 ____________________________________________________________________________
2397 [ 31199] By: davem                                 on 2007/05/11  23:22:24
2398         Log: move PL_rsfp into the PL_parser struct
2399              and simplify its creation and destruction
2400      Branch: perl
2401            ! embed.fnc embed.h embedvar.h
2402            ! ext/Devel/PPPort/parts/inc/variables intrpvar.h op.c parser.h
2403            ! perl.c perlapi.h pp_ctl.c proto.h sv.c toke.c
2404 ____________________________________________________________________________
2405 [ 31198] By: nicholas                              on 2007/05/10  22:32:57
2406         Log: Work around to get Unicode tests passing.
2407      Branch: perl
2408            ! ext/Unicode/Normalize/mkheader
2409 ____________________________________________________________________________
2410 [ 31197] By: stevep                                on 2007/05/10  20:34:21
2411         Log: Fix Pod nit in perlfunc
2412      Branch: perl
2413            ! pod/perlfunc.pod
2414 ____________________________________________________________________________
2415 [ 31196] By: rgs                                   on 2007/05/10  14:49:37
2416         Log: Update the *::Compress::* modules maintainers information
2417      Branch: perl
2418            ! Porting/Maintainers.pl
2419 ____________________________________________________________________________
2420 [ 31195] By: rgs                                   on 2007/05/10  13:12:38
2421         Log: Replace a call to utf8::encode by a pack/unpack combination,
2422              so that code runs under 5.6 too
2423      Branch: perl
2424            ! lib/CGI/Util.pm
2425 ____________________________________________________________________________
2426 [ 31194] By: rgs                                   on 2007/05/10  12:41:08
2427         Log: Subject: Re: Compress::Zlib, pack "C" and utf-8 [PATCH]
2428              From: Marc Lehmann <schmorp@schmorp.de>
2429              Date: Thu, 12 Apr 2007 08:41:53 +0200
2430              Message-ID: <20070412064153.GA22475@schmorp.de>
2431      Branch: perl
2432            ! ext/Encode/t/encoding.t ext/Storable/t/utf8hash.t
2433            ! ext/Unicode/Normalize/t/short.t lib/CGI/Util.pm
2434            ! pod/perlfunc.pod pp_pack.c t/op/chr.t t/op/pack.t
2435            ! t/op/utftaint.t
2436 ____________________________________________________________________________
2437 [ 31193] By: rgs                                   on 2007/05/10  10:39:13
2438         Log: New data for Unicode on older versions, thanks to Nicholas
2439              and Dave Rolsky
2440      Branch: perl
2441            ! lib/Module/CoreList.pm
2442 ____________________________________________________________________________
2443 [ 31192] By: rgs                                   on 2007/05/10  10:18:32
2444         Log: first_release() now returns the first release in the order of
2445              perl version numbers. Add a new method first_release_by_date()
2446              to keep the old behaviour available. Suggested by Michael G Schwern.
2447      Branch: perl
2448            ! lib/Module/CoreList.pm lib/Module/CoreList/t/corelist.t
2449 ____________________________________________________________________________
2450 [ 31191] By: rgs                                   on 2007/05/10  08:50:44
2451         Log: Subject: [PATCH] Fix bignum-0.21
2452              From: "Jerry D. Hedden" <jdhedden@cpan.org>
2453              Date: Wed, 9 May 2007 21:05:52 -0400
2454              Message-ID: <1ff86f510705091805n37c4137u16a35ca27810979f@mail.gmail.com>
2455      Branch: perl
2456            ! lib/bignum.pm lib/bignum/t/option_l.t
2457 ____________________________________________________________________________
2458 [ 31190] By: rgs                                   on 2007/05/10  08:39:04
2459         Log: Small fix to a previous patch on magic $<digit> variables.
2460              
2461              Subject: [PATCH]
2462              From: "=?UTF-8?Q?=C3=86var_Arnfj=C3=B6r=C3=B0_Bjarmason?=" <avarab@gmail.com>
2463              Date: Thu, 10 May 2007 02:24:48 +0000
2464              Message-ID: <51dd1af80705091924q77c2ca23n30359779b96ab909@mail.gmail.com>
2465      Branch: perl
2466            ! mg.c
2467 ____________________________________________________________________________
2468 [ 31189] By: rgs                                   on 2007/05/10  08:27:35
2469         Log: Regarding precedence, filetest operators are the same than
2470              unary operators, but not regarding parsing and parentheses
2471              (see toke.c). Spotted by Eirik Berg Hanssen.
2472      Branch: perl
2473            ! pod/perlfunc.pod
2474 ____________________________________________________________________________
2475 [ 31188] By: steveh                                on 2007/05/10  08:09:18
2476         Log: Subject: Re: [perl #42869] Problem killing a pseudo-forked child on Win32
2477              From: Dave Mitchell <davem@iabyn.com>
2478              Date: Thu, 3 May 2007 22:39:23 +0100
2479              Message-ID: <20070503213923.GH24804@iabyn.com>
2480              
2481              Fixes the failure to kill a pseudo-forked child on Win32 described in
2482              [perl #42869], but the "Free to wrong pool" error remains
2483      Branch: perl
2484            ! win32/win32.c
2485 ____________________________________________________________________________
2486 [ 31187] By: merijn                                on 2007/05/09  22:09:24
2487         Log: Subject: [PATCH] Syntax error in Configure in blead
2488              From: "Ævar Arnfjörð Bjarmason" <avarab@gmail.com>
2489              Date: Wed, 9 May 2007 20:30:04 +0000
2490              Message-ID: <51dd1af80705091330h1bb9b508g2154b03868b71d07@mail.gmail.com>
2491      Branch: perl
2492            ! Configure
2493 ____________________________________________________________________________
2494 [ 31185] By: rgs                                   on 2007/05/09  17:20:35
2495         Log: Subject: [PATCH] Remove unused parms in S_isa_lookup
2496              From: Andy Lester <andy@petdance.com>
2497              Date: Wed, 9 May 2007 11:49:13 -0500
2498              Message-Id: <1CBA316A-EC1D-4E8F-8DEE-35322F390358@petdance.com>
2499      Branch: perl
2500            ! embed.fnc embed.h proto.h universal.c
2501 ____________________________________________________________________________
2502 [ 31184] By: stevep                                on 2007/05/09  17:19:10
2503         Log: Partial reversion of bignum-0.21 to get tests to pass again.
2504      Branch: perl
2505            ! lib/bignum.pm lib/bignum/t/option_l.t
2506 ____________________________________________________________________________
2507 [ 31183] By: merijn                                on 2007/05/09  16:54:21
2508         Log: Typing is for secretaries
2509      Branch: perl
2510            ! Configure
2511 ____________________________________________________________________________
2512 [ 31181] By: merijn                                on 2007/05/09  16:41:01
2513         Log: Better help ; regen after backport #31114 ; RT#42886 ' in uname
2514      Branch: perl
2515            ! Configure
2516 ____________________________________________________________________________
2517 [ 31178] By: rgs                                   on 2007/05/09  15:56:57
2518         Log: Bump the version of Module::CoreList and add docs
2519              for the Unicode module name, that Merijn just added
2520      Branch: perl
2521            ! lib/Module/CoreList.pm lib/Module/CoreList/bin/corelist
2522 ____________________________________________________________________________
2523 [ 31177] By: merijn                                on 2007/05/09  15:39:40
2524         Log: Added all traceable Unicode versions
2525      Branch: perl
2526            ! lib/Module/CoreList.pm
2527 ____________________________________________________________________________
2528 [ 31176] By: merijn                                on 2007/05/09  14:17:57
2529         Log: 1. Add Unicode UCD version; 2. sort *unique*; 3. remove win32/ext
2530      Branch: perl
2531            ! Porting/corelist.pl
2532 ____________________________________________________________________________
2533 [ 31175] By: rgs                                   on 2007/05/09  07:57:50
2534         Log: Add examples for h2xs -X, by Andy Armstrong
2535      Branch: perl
2536            ! utils/h2xs.PL
2537 ____________________________________________________________________________
2538 [ 31174] By: rgs                                   on 2007/05/09  07:53:47
2539         Log: Subject: Re: mro c3 infinite recursion problem. Attemp to free unreferenced scalar
2540              From: "Brandon Black" <blblack@gmail.com>
2541              Date: Tue, 8 May 2007 15:15:29 -0500
2542              Message-ID: <84621a60705081315hca3885duc14b8c3e44080853@mail.gmail.com>
2543      Branch: perl
2544            ! mro.c t/mro/recursion_c3.t
2545 ____________________________________________________________________________
2546 [ 31173] By: rgs                                   on 2007/05/08  22:19:21
2547         Log: Reapply patch 31028, that wasn't integrated in CPANPLUS
2548      Branch: perl
2549            ! lib/CPANPLUS/t/inc/conf.pl
2550 ____________________________________________________________________________
2551 [ 31172] By: stevep                                on 2007/05/08  16:40:51
2552         Log: Upgrade to Math-BigInt-FastCalc-0.14
2553      Branch: perl
2554            ! ext/Math/BigInt/FastCalc/FastCalc.pm
2555            ! ext/Math/BigInt/FastCalc/Makefile.PL
2556            ! ext/Math/BigInt/FastCalc/t/bigintfc.t
2557 ____________________________________________________________________________
2558 [ 31171] By: stevep                                on 2007/05/08  16:34:36
2559         Log: Upgrade to Module-Build-0.2808
2560      Branch: perl
2561            + lib/Module/Build/t/help.t lib/Module/Build/t/par.t
2562            ! MANIFEST lib/Module/Build.pm lib/Module/Build/API.pod
2563            ! lib/Module/Build/Base.pm lib/Module/Build/Compat.pm
2564            ! lib/Module/Build/Notes.pm lib/Module/Build/t/basic.t
2565            ! lib/Module/Build/t/tilde.t lib/Module/Build/t/xs.t
2566 ____________________________________________________________________________
2567 [ 31170] By: stevep                                on 2007/05/08  15:09:20
2568         Log: Upgrade to CGI.pm-3.29
2569      Branch: perl
2570            ! lib/CGI.pm lib/CGI/Changes
2571 ____________________________________________________________________________
2572 [ 31169] By: stevep                                on 2007/05/08  14:36:47
2573         Log: Upgrage to bignum-0.21 and Math-BigRat-0.19
2574      Branch: perl
2575            ! lib/Math/BigRat.pm lib/Math/BigRat/t/bigfltpm.inc
2576            ! lib/bigint.pm lib/bignum.pm lib/bignum/t/option_l.t
2577            ! lib/bigrat.pm
2578 ____________________________________________________________________________
2579 [ 31168] By: rgs                                   on 2007/05/08  12:38:04
2580         Log: Subject: [PATCH] Update CPANPLUS to 0.79_02
2581              From: "Jos I. Boumans" <kane@dwim.org>
2582              Date: Tue, 8 May 2007 14:05:34 +0200
2583              Message-Id: <D216B250-B8FA-488E-839B-27A187BAF04C@dwim.org>
2584      Branch: perl
2585            ! lib/CPANPLUS.pm lib/CPANPLUS/Config.pm
2586            ! lib/CPANPLUS/Dist/Base.pm lib/CPANPLUS/Dist/MM.pm
2587            ! lib/CPANPLUS/Selfupdate.pm lib/CPANPLUS/Shell/Default.pm
2588            ! lib/CPANPLUS/t/dummy-CPAN/authors/01mailrc.txt.gz.packed
2589            ! lib/CPANPLUS/t/dummy-CPAN/authors/id/E/EU/EUNOXS/Bundle-Foo-Ba
2590            ! r-0.01.tar.gz.packed
2591            ! lib/CPANPLUS/t/dummy-CPAN/authors/id/E/EU/EUNOXS/Foo-Bar-0.01.
2592            ! tar.gz.packed
2593            ! lib/CPANPLUS/t/dummy-CPAN/authors/id/E/EU/EUNOXS/perl5.005_03.
2594            ! tar.gz.packed
2595            ! lib/CPANPLUS/t/dummy-CPAN/authors/id/E/EU/EUXS/Foo-Bar-0.01.ta
2596            ! r.gz.packed
2597            ! lib/CPANPLUS/t/dummy-CPAN/authors/id/M/MB/MBNOXS/Foo-Bar-0.01.
2598            ! tar.gz.packed
2599            ! lib/CPANPLUS/t/dummy-CPAN/authors/id/M/MB/MBXS/Foo-Bar-0.01.ta
2600            ! r.gz.packed
2601            ! lib/CPANPLUS/t/dummy-CPAN/modules/02packages.details.txt.gz.pa
2602            ! cked
2603            ! lib/CPANPLUS/t/dummy-CPAN/modules/03modlist.data.gz.packed
2604            ! lib/CPANPLUS/t/inc/conf.pl
2605 ____________________________________________________________________________
2606 [ 31167] By: rgs                                   on 2007/05/08  12:32:15
2607         Log: Subject: [PATCH] more consting
2608              From: andy@petdance.com (Andy Lester)
2609              Date: Mon, 7 May 2007 11:34:16 -0500
2610              Message-ID: <20070507163416.GA6187@petdance.com>
2611      Branch: perl
2612            ! hv.c mg.c mro.c sv.c
2613 ____________________________________________________________________________
2614 [ 31166] By: rgs                                   on 2007/05/07  15:39:49
2615         Log: Subject: Sync Tie::RefHash with CPAN (1.37)
2616              From: Yuval Kogman <nothingmuch@woobling.org>
2617              Date: Mon, 7 May 2007 18:35:08 +0300
2618              Message-ID: <20070507153508.GZ17982@woobling.org>
2619      Branch: perl
2620            ! lib/Tie/RefHash.pm lib/Tie/RefHash/threaded.t
2621 ____________________________________________________________________________
2622 [ 31165] By: nicholas                              on 2007/05/07  15:35:56
2623         Log: bytecode.pl:        Exterminate!
2624              ext/B/B/Asmdata.pm: Exterminate!
2625      Branch: perl
2626            - bytecode.pl ext/B/B/Asmdata.pm
2627            ! MANIFEST regen.pl vms/descrip_mms.template
2628 ____________________________________________________________________________
2629 [ 31164] By: nicholas                              on 2007/05/07  14:53:05
2630         Log: Given that @optype and @specialsv_name are hard coded tables, it seems
2631              more logical for them to be in B.pm, rather than in the "boilerplate"
2632              for the machine generated B/Asmdata.pm
2633      Branch: perl
2634            ! bytecode.pl ext/B/B.pm ext/B/B/Asmdata.pm ext/B/B/Debug.pm
2635            ! ext/B/B/Terse.pm
2636 ____________________________________________________________________________
2637 [ 31163] By: rgs                                   on 2007/05/07  13:38:24
2638         Log: Fix [perl #42163] "use base" masks $SIG{__DIE__}
2639              adapted from a patch by Michael G Schwern
2640      Branch: perl
2641            ! lib/base.pm
2642 ____________________________________________________________________________
2643 [ 31159] By: rgs                                   on 2007/05/07  09:47:00
2644         Log: Upgrade to Math::BigInt 1.86
2645      Branch: perl
2646            ! lib/Math/BigFloat.pm lib/Math/BigInt.pm
2647            ! lib/Math/BigInt/Calc.pm lib/Math/BigInt/t/bare_mbf.t
2648            ! lib/Math/BigInt/t/bare_mbi.t lib/Math/BigInt/t/bigfltpm.inc
2649            ! lib/Math/BigInt/t/bigfltpm.t lib/Math/BigInt/t/bigintc.t
2650            ! lib/Math/BigInt/t/bigintpm.inc lib/Math/BigInt/t/bigintpm.t
2651            ! lib/Math/BigInt/t/biglog.t lib/Math/BigInt/t/bigroot.t
2652            ! lib/Math/BigInt/t/lib_load.t lib/Math/BigInt/t/mbi_rand.t
2653            ! lib/Math/BigInt/t/sub_mbf.t lib/Math/BigInt/t/sub_mbi.t
2654            ! lib/Math/BigInt/t/with_sub.t
2655 ____________________________________________________________________________
2656 [ 31158] By: craigb                                on 2007/05/05  23:53:58
2657         Log: Archive::Extract test tries to do the logically impossible.
2658      Branch: perl
2659            ! lib/Archive/Extract/t/01_Archive-Extract.t
2660 ____________________________________________________________________________
2661 [ 31157] By: craigb                                on 2007/05/05  23:44:01
2662         Log: Make ppptools.pl allow a trailing dot in filenames for VMS.
2663      Branch: perl
2664            ! ext/Devel/PPPort/parts/ppptools.pl
2665 ____________________________________________________________________________
2666 [ 31156] By: craigb                                on 2007/05/05  23:42:42
2667         Log: Some filename dot and extension help for Module::Build on VMS.
2668      Branch: perl
2669            ! lib/Module/Build/Base.pm lib/Module/Build/Platform/VMS.pm
2670 ____________________________________________________________________________
2671 [ 31154] By: davem                                 on 2007/05/05  17:38:12
2672         Log: move PL_lex_state into the PL_parser struct
2673      Branch: perl
2674            ! embedvar.h intrpvar.h mg.c op.c parser.h perl.c perlapi.h
2675            ! pp_ctl.c sv.c toke.c
2676 ____________________________________________________________________________
2677 [ 31153] By: nicholas                              on 2007/05/05  17:35:22
2678         Log: Tweak change 30841 so that B works on maint too.
2679      Branch: perl
2680            ! ext/B/B.xs ext/B/B/Deparse.pm ext/B/t/concise-xs.t
2681 ____________________________________________________________________________
2682 [ 31152] By: nicholas                              on 2007/05/05  13:26:28
2683         Log: Shuffling PL_gensym saves 8 bytes on LP64 systems.
2684      Branch: perl
2685            ! intrpvar.h
2686 ____________________________________________________________________________
2687 [ 31148] By: davem                                 on 2007/05/05  00:49:51
2688         Log: migrate more variables to PL_parser struct:
2689              PL_nexttoke PL_curforce PL_nextval PL_nexttype
2690      Branch: perl
2691            ! embedvar.h intrpvar.h parser.h perlapi.h sv.c toke.c
2692 ____________________________________________________________________________
2693 [ 31147] By: davem                                 on 2007/05/04  22:18:42
2694         Log: move some more variables into the PL_parser struct:
2695              PL_bufptr PL_oldbufptr PL_oldoldbufptr
2696              PL_linestart PL_bufend
2697              PL_last_uni PL_last_lop PL_last_lop_op
2698      Branch: perl
2699            ! embedvar.h intrpvar.h op.c parser.h perl.h perlapi.h sv.c
2700            ! toke.c
2701 ____________________________________________________________________________
2702 [ 31142] By: rgs                                   on 2007/05/04  15:33:22
2703         Log: Add a few manpages to Maintainers.pl
2704      Branch: perl
2705            ! Porting/Maintainers.pl
2706 ____________________________________________________________________________
2707 [ 31141] By: rgs                                   on 2007/05/04  14:45:09
2708         Log: Add CPANPLUS to Maintainers.pl
2709      Branch: perl
2710            ! Porting/Maintainers.pl
2711 ____________________________________________________________________________
2712 [ 31140] By: rgs                                   on 2007/05/04  14:33:07
2713         Log: Subject: [PATCH] Add CPANPLUS::Dist::Build to the core
2714              From: "Jos I. Boumans" <kane@dwim.org>
2715              Date: Fri, 4 May 2007 14:41:39 +0200
2716              Message-Id: <58AAEC18-D5B6-4840-9FA5-B121D95446A3@dwim.org>
2717      Branch: perl
2718            + lib/CPANPLUS/Dist/Build.pm
2719            + lib/CPANPLUS/Dist/Build/Constants.pm
2720            + lib/CPANPLUS/Dist/Build/t/01_CPANPLUS-Dist-Build-Constants.t
2721            + lib/CPANPLUS/Dist/Build/t/02_CPANPLUS-Dist-Build.t
2722            + lib/CPANPLUS/Dist/Build/t/inc/conf.pl
2723            + lib/CPANPLUS/Dist/Build/t/src/noxs/Foo-Bar-0.01.tar.gz.packed
2724            + lib/CPANPLUS/Dist/Build/t/src/xs/Foo-Bar-0.01.tar.gz.packed
2725            ! MANIFEST
2726 ____________________________________________________________________________
2727 [ 31139] By: rgs                                   on 2007/05/04  14:17:54
2728         Log: A patch from ExtUtils::CBuilder::Base from :
2729              
2730              Subject: [PATCH] Add CPANPLUS::Dist::Build to the core
2731              From: "Jos I. Boumans" <kane@dwim.org>
2732              Date: Fri, 4 May 2007 14:41:39 +0200
2733              Message-Id: <58AAEC18-D5B6-4840-9FA5-B121D95446A3@dwim.org>
2734      Branch: perl
2735            ! lib/ExtUtils/CBuilder/Base.pm
2736 ____________________________________________________________________________
2737 [ 31138] By: rgs                                   on 2007/05/04  14:02:26
2738         Log: Subject: [perl #42844] careless use of gethostbyname() in Socket.xs 
2739              From: kan@dcit.cz (via RT) <perlbug-followup@perl.org>
2740              Date: Tue, 01 May 2007 09:17:22 -0700
2741              Message-ID: <rt-3.6.HEAD-6655-1178036242-364.42844-75-0@perl.org>
2742      Branch: perl
2743            ! ext/Socket/Socket.pm ext/Socket/Socket.xs
2744 ____________________________________________________________________________
2745 [ 31137] By: rgs                                   on 2007/05/04  13:21:53
2746         Log: Subject: [PATCH] Documentation fixes for EGID/GID confusion
2747              From: David Leadbeater <dgl@dgl.cx>
2748              Date: Thu, 3 May 2007 18:27:13 +0100
2749              Message-ID: <20070503172713.GA23180@sirius.otherwize.co.uk>
2750      Branch: perl
2751            ! ext/POSIX/POSIX.pod pod/perlvar.pod
2752 ____________________________________________________________________________
2753 [ 31136] By: davem                                 on 2007/05/04  09:18:05
2754         Log: toke.c changes missed from change #31134
2755      Branch: perl
2756            ! toke.c
2757 ____________________________________________________________________________
2758 [ 31135] By: davem                                 on 2007/05/04  00:57:20
2759         Log: eliminate PL_bufend from util.c (missed from #30820)
2760      Branch: perl
2761            ! util.c
2762 ____________________________________________________________________________
2763 [ 31134] By: davem                                 on 2007/05/04  00:41:51
2764         Log: move PL_expect and PL_copline into the PL_parser structure
2765      Branch: perl
2766            ! embedvar.h ext/Devel/PPPort/parts/inc/variables intrpvar.h
2767            ! op.c parser.h perlapi.h perly.act perly.y sv.c
2768 ____________________________________________________________________________
2769 [ 31132] By: steveh                                on 2007/05/03  17:17:01
2770         Log: Fix breakages caused by #31130:
2771              report_uninit was not exported on Win32 and
2772              my_reg_numbered_buff_length had wrong prototype
2773      Branch: perl
2774            ! embed.fnc embed.h ext/re/re.xs global.sym proto.h
2775 ____________________________________________________________________________
2776 [ 31131] By: steveh                                on 2007/05/03  16:41:29
2777         Log: Silence some VC6 compiler warnings in the regex code
2778      Branch: perl
2779            ! embed.fnc ext/re/re.xs proto.h regcomp.c
2780 ____________________________________________________________________________
2781 [ 31130] By: rgs                                   on 2007/05/03  16:04:13
2782         Log: Subject: [PATCH] FETCH/STORE/LENGTH callbacks for numbered capture variables
2783              From: "=?UTF-8?Q?=C3=86var_Arnfj=C3=B6r=C3=B0_Bjarmason?=" <avarab@gmail.com>
2784              Date: Tue, 1 May 2007 23:58:44 +0000
2785              Message-ID: <51dd1af80705011658g1156e14cw4d2b21a8d772ed41@mail.gmail.com>
2786      Branch: perl
2787            ! embed.fnc embed.h ext/re/re.xs ext/re/re_top.h global.sym gv.c
2788            ! mg.c perl.h pod/perlreapi.pod proto.h regcomp.c regcomp.h
2789            ! regexp.h t/op/tr.t universal.c
2790 ____________________________________________________________________________
2791 [ 31127] By: nicholas                              on 2007/05/03  14:45:32
2792         Log: Move PL_delayedisa into a better spot in the interpreter structure.
2793      Branch: perl
2794            ! thrdvar.h
2795 ____________________________________________________________________________
2796 [ 31126] By: rgs                                   on 2007/05/03  14:30:49
2797         Log: Subject: [PATCH] Add John Peacock as maintainer of version.pm
2798              From: Gerard Goossen <gerard@tty.nl>
2799              Date: Thu, 3 May 2007 16:23:58 +0200
2800              Message-ID: <20070503142358.GE27210@ostwald>
2801      Branch: perl
2802            ! Porting/Maintainers.pl
2803 ____________________________________________________________________________
2804 [ 31125] By: nicholas                              on 2007/05/03  14:23:14
2805         Log: Initialise PL_delayedisa on thread clone.
2806      Branch: perl
2807            ! sv.c
2808 ____________________________________________________________________________
2809 [ 31124] By: rgs                                   on 2007/05/03  13:35:18
2810         Log: Subject: [PATCH lib/ExtUtils/t/MM_Unix.t]  Fix warning.
2811              From: Abigail <abigail@abigail.be>
2812              Date: Tue, 24 Apr 2007 00:37:15 +0200
2813              Message-ID: <20070423223715.GB544@abigail.nl>
2814      Branch: perl
2815            ! lib/ExtUtils/t/MM_Unix.t
2816 ____________________________________________________________________________
2817 [ 31123] By: rgs                                   on 2007/05/03  09:30:08
2818         Log: Subject: The revenge of the consts
2819              From: andy@petdance.com (Andy Lester)
2820              Date: Thu, 3 May 2007 00:45:54 -0500
2821              Message-ID: <20070503054554.GA30975@petdance.com>
2822      Branch: perl
2823            ! av.c embed.fnc numeric.c proto.h regcomp.c
2824 ____________________________________________________________________________
2825 [ 31122] By: rgs                                   on 2007/05/03  09:24:47
2826         Log: Subject: Re: mro status, etc
2827              From: "Brandon Black" <blblack@gmail.com>
2828              Date: Mon, 30 Apr 2007 16:45:54 -0500
2829              Message-ID: <84621a60704301445y37e9b05ey235210a8e5547cc1@mail.gmail.com>
2830      Branch: perl
2831            ! embedvar.h lib/mro.pm mg.c perlapi.h pp_hot.c
2832            ! t/mro/recursion_c3.t t/mro/recursion_dfs.t thrdvar.h
2833 ____________________________________________________________________________
2834 [ 31121] By: steveh                                on 2007/05/03  07:51:17
2835         Log: Fix a CPANPLUS test that fails when run on a read-only source tree
2836              (such as a p4 client repository)
2837      Branch: perl
2838            ! lib/CPANPLUS/Internals.pm lib/CPANPLUS/Internals/Source.pm
2839 ____________________________________________________________________________
2840 [ 31120] By: nicholas                              on 2007/05/02  16:26:24
2841         Log: Get PERL_OLD_COPY_ON_WRITE passing all tests, apart from
2842              ext/Compress/Raw/Zlib/t/07bufsize.t
2843              which still puzzles me.
2844      Branch: perl
2845            ! regcomp.c
2846 ____________________________________________________________________________
2847 [ 31119] By: rgs                                   on 2007/05/02  15:32:38
2848         Log: Subject: [perl #42839] Swatch hash cache has key mismatch 
2849              From: Jonathan Steinert (via RT) <perlbug-followup@perl.org>
2850              Date: Tue, 01 May 2007 05:18:52 -0700
2851              Message-ID: <rt-3.6.HEAD-30557-1178021932-1416.42839-75-0@perl.org>
2852      Branch: perl
2853            + t/uni/cache.t
2854            ! MANIFEST lib/utf8_heavy.pl
2855 ____________________________________________________________________________
2856 [ 31118] By: rgs                                   on 2007/05/02  14:28:45
2857         Log: Subject: [PATCH] tweak some regexp params to avoid warnings
2858              From: demerphq <demerphq@gmail.com>
2859              Date: Tue, 1 May 2007 23:46:40 +0200
2860              Message-ID: <9b18b3110705011446h2113221cndf70af928d72505@mail.gmail.com>
2861      Branch: perl
2862            ! embed.fnc perl.h proto.h regexec.c regexp.h
2863 ____________________________________________________________________________
2864 [ 31117] By: rgs                                   on 2007/05/02  12:42:04
2865         Log: Upgrade to XSLoader 0.08
2866      Branch: perl
2867            ! ext/DynaLoader/XSLoader_pm.PL
2868 ____________________________________________________________________________
2869 [ 31116] By: rgs                                   on 2007/05/02  12:17:22
2870         Log: Subject: [PATCH] When FETCHSIZE returns <0 perl segfaults
2871              From: "=?UTF-8?Q?=C3=86var_Arnfj=C3=B6r=C3=B0_Bjarmason?=" <avarab@gmail.com>
2872              Date: Tue, 1 May 2007 21:06:47 +0000
2873              Message-ID: <51dd1af80705011406j7897772bm58e9c770183ef3ed@mail.gmail.com>
2874      Branch: perl
2875            ! mg.c pod/perldiag.pod t/op/tiearray.t
2876 ____________________________________________________________________________
2877 [ 31115] By: steveh                                on 2007/05/02  11:22:19
2878         Log: Fix threaded builds (broken by change #31112)
2879      Branch: perl
2880            ! embed.fnc embed.h proto.h util.c
2881 ____________________________________________________________________________
2882 [ 31114] By: steveh                                on 2007/05/02  08:43:08
2883         Log: Subject: [PATCH-revised] Remove ext/Thread
2884              From: "Jerry D. Hedden" <jdhedden@cpan.org>
2885              Date: Mon, 30 Apr 2007 17:06:28 -0400
2886              Message-ID: <1ff86f510704301406t6373912ame78fea5c7a148cf4@mail.gmail.com>
2887      Branch: perl
2888            - ext/Thread/Makefile.PL ext/Thread/Notes ext/Thread/Queue.pmx
2889            - ext/Thread/README ext/Thread/README.threads
2890            - ext/Thread/Semaphore.pmx ext/Thread/Thread.xs
2891            - ext/Thread/Thread/Signal.pm ext/Thread/Thread/Specific.pm
2892            - ext/Thread/create.tx ext/Thread/die.tx ext/Thread/die2.tx
2893            - ext/Thread/io.tx ext/Thread/join.tx ext/Thread/join2.tx
2894            - ext/Thread/list.tx ext/Thread/lock.tx ext/Thread/queue.tx
2895            - ext/Thread/specific.tx ext/Thread/sync.tx ext/Thread/sync2.tx
2896            - ext/Thread/unsync.tx ext/Thread/unsync2.tx
2897            - ext/Thread/unsync3.tx ext/Thread/unsync4.tx
2898            ! Configure Cross/config.sh-arm-linux INSTALL MANIFEST
2899            ! NetWare/Makefile NetWare/config.wc Porting/config.sh
2900            ! hints/vmesa.sh lib/Carp/Heavy.pm perl.h plan9/config_sh.sample
2901            ! pod/perlmodlib.pod pod/perlothrtut.pod pod/perlthrtut.pod
2902            ! toke.c win32/Makefile win32/Makefile.ce
2903            ! win32/ce-helpers/cecopy-lib.pl win32/config.bc win32/config.ce
2904            ! win32/config.gc win32/config.vc win32/config.vc64
2905            ! win32/config_sh.PL win32/makefile.mk
2906 ____________________________________________________________________________
2907 [ 31113] By: stevep                                on 2007/05/01  18:20:02
2908         Log: Fixing a Perl_my_dirfd() related test failure.
2909      Branch: perl
2910            ! t/op/chdir.t
2911 ____________________________________________________________________________
2912 [ 31112] By: stevep                                on 2007/05/01  15:32:15
2913         Log: Add Perl_my_dirfd() to util.c
2914      Branch: perl
2915            ! doio.c embed.fnc embed.h global.sym handy.h pp_sys.c proto.h
2916            ! t/op/stat.t util.c
2917 ____________________________________________________________________________
2918 [ 31111] By: rgs                                   on 2007/05/01  11:50:36
2919         Log: Subject: Re: [PATCH] Change meaning of \v, \V, and add \h, \H to match Perl6, add \R to match PCRE and unicode tr18
2920              From: demerphq <demerphq@gmail.com>
2921              Date: Tue, 1 May 2007 12:35:37 +0200
2922              Message-ID: <9b18b3110705010335w1924941ep3eb925a3ed597604@mail.gmail.com>
2923      Branch: perl
2924            ! regcomp.c
2925 ____________________________________________________________________________
2926 [ 31110] By: rgs                                   on 2007/04/30  15:34:29
2927         Log: Two new manpages, by Abigail
2928      Branch: perl
2929            + pod/perlrebackslash.pod pod/perlrecharclass.pod
2930            ! MANIFEST pod.lst pod/perl.pod vms/descrip_mms.template
2931            ! win32/pod.mak
2932 ____________________________________________________________________________
2933 [ 31109] By: rgs                                   on 2007/04/30  12:21:50
2934         Log: Signedness nit, found by Jarkko
2935      Branch: perl
2936            ! regexec.c
2937 ____________________________________________________________________________
2938 [ 31108] By: rgs                                   on 2007/04/30  10:18:15
2939         Log: Subject: [PATCH] make mad/PLXML.pm use strict
2940              From: Gerard Goossen <gerard@tty.nl>
2941              Date: Thu, 19 Apr 2007 14:56:13 +0200
2942              Message-ID: <20070419125613.GF19244@ostwald>
2943      Branch: perl
2944            ! mad/PLXML.pm
2945 ____________________________________________________________________________
2946 [ 31107] By: rgs                                   on 2007/04/30  09:22:58
2947         Log: Subject: Re: mro status, etc
2948              From: "Brandon Black" <blblack@gmail.com>
2949              Date: Sun, 29 Apr 2007 17:27:03 -0500
2950              Message-ID: <84621a60704291527y1b39be37l221ef66e4c828f66@mail.gmail.com>
2951      Branch: perl
2952            ! embedvar.h gv.c hv.c hv.h intrpvar.h lib/mro.pm mg.c mro.c
2953            ! op.c perl.c perlapi.h pod/perlapi.pod pod/perlboot.pod
2954            ! pod/perlobj.pod pod/perltoot.pod pp.c pp_hot.c scope.c sv.c
2955            ! t/mro/method_caching.t universal.c
2956 ____________________________________________________________________________
2957 [ 31106] By: rgs                                   on 2007/04/30  08:42:44
2958         Log: Subject: Re: [PATCH] Cleanup of the regexp API
2959              From: "=?UTF-8?Q?=C3=86var_Arnfj=C3=B6r=C3=B0_Bjarmason?=" <avarab@gmail.com>
2960              Date: Fri, 27 Apr 2007 02:22:25 +0000
2961              Message-ID: <51dd1af80704261922j3db0615wa86ccc4cb65b2713@mail.gmail.com>
2962      Branch: perl
2963            ! embed.fnc embed.h ext/re/re.xs ext/re/re_top.h global.sym
2964            ! perl.h pod/perlreapi.pod pp_hot.c proto.h regcomp.c regcomp.h
2965            ! regexec.c regexp.h
2966 ____________________________________________________________________________
2967 [ 31105] By: craigb                                on 2007/04/28  16:06:01
2968         Log: VMS-specific tweak to FindBin for when $0 returns a unix-style filespec.
2969      Branch: perl
2970            ! lib/FindBin.pm
2971 ____________________________________________________________________________
2972 [ 31104] By: craigb                                on 2007/04/28  14:28:00
2973         Log: Don't try to build old Thread extension on VMS when -Duseithreads
2974              has been chosen.
2975      Branch: perl
2976            ! configure.com
2977 ____________________________________________________________________________
2978 [ 31103] By: steveh                                on 2007/04/27  17:12:05
2979         Log: Do the same as #31095 for Win32
2980      Branch: perl
2981            ! win32/FindExt.pm
2982 ____________________________________________________________________________
2983 [ 31102] By: rgs                                   on 2007/04/27  14:19:15
2984         Log: Subject: Re: Analysis of problems with mixed encoding case insensitive matches in regex engine.
2985              From: demerphq <demerphq@gmail.com>
2986              Date: Fri, 27 Apr 2007 16:09:56 +0200
2987              Message-ID: <9b18b3110704270709y50ef652ci436b3bb29abca275@mail.gmail.com>
2988      Branch: perl
2989            ! Porting/regcharclass.pl regcharclass.h regcomp.c regexec.c
2990            ! t/op/pat.t win32/Makefile
2991 ____________________________________________________________________________
2992 [ 31101] By: rgs                                   on 2007/04/27  13:10:06
2993         Log: Reindent bash functions properly
2994      Branch: perl
2995            ! pod/perlhack.pod
2996 ____________________________________________________________________________
2997 [ 31098] By: rgs                                   on 2007/04/27  07:56:05
2998         Log: Subject: [PATCH] Cargo-cult fix for an AIX build problem
2999              From: "Jan Dubois" <jand@activestate.com>
3000              Date: Thu, 26 Apr 2007 17:02:01 -0700
3001              Message-ID: <048b01c7885f$48862510$d9926f30$@com>
3002      Branch: perl
3003            ! Makefile.SH
3004 ____________________________________________________________________________
3005 [ 31097] By: rgs                                   on 2007/04/27  07:55:34
3006         Log: Fix a signed/unsigned comparison warning
3007      Branch: perl
3008            ! regexec.c
3009 ____________________________________________________________________________
3010 [ 31096] By: merijn                                on 2007/04/27  06:16:02
3011         Log: More up-to-date info about the metaunits
3012      Branch: perl
3013            ! Porting/pumpkin.pod
3014 ____________________________________________________________________________
3015 [ 31095] By: merijn                                on 2007/04/27  06:03:52
3016         Log: Subject: [PATCH] special Configure handling for IO/Compress modules no longer needed
3017              From: "Craig A. Berry" <craigberry@mac.com>
3018              Date: Thu, 26 Apr 2007 18:59:15 -0500
3019              Message-Id: <p06240812c256eae2b552@[172.16.52.1]>
3020      Branch: perl
3021            ! Configure
3022 ____________________________________________________________________________
3023 [ 31093] By: nicholas                              on 2007/04/26  20:43:13
3024         Log: Avoid a SIGBUS caused by passing a U32 pointer to utf8_to_uvchr(),
3025              which expects a STRLEN pointer.
3026              Avoid some signed/unsigned casting warnings by adding casts.
3027      Branch: perl
3028            ! regcomp.c regexec.c
3029 ____________________________________________________________________________
3030 [ 31092] By: rgs                                   on 2007/04/26  16:57:55
3031         Log: strxfrm() returns a size_t, not a ssize_t. See:
3032              
3033              Subject: locale.c usage of strxfrm
3034              From: "Devin Heitmueller" <devin.heitmueller@gmail.com>
3035              Date: Fri, 20 Apr 2007 18:20:21 -0400
3036              Message-ID: <412bdbff0704201520i7aac0189n74f0cef5c5213f41@mail.gmail.com>
3037      Branch: perl
3038            ! locale.c
3039 ____________________________________________________________________________
3040 [ 31091] By: rgs                                   on 2007/04/26  16:29:01
3041         Log: Fix a bug in method caching. Better version (broader) of change #29336.
3042              
3043              Subject: Re: mro status, etc
3044              From: "Brandon Black" <blblack@gmail.com>
3045              Date: Thu, 26 Apr 2007 10:52:20 -0500
3046              Message-ID: <84621a60704260852y5a3dd2a5jeb633bb46cc7a8c0@mail.gmail.com>
3047      Branch: perl
3048            ! pp_hot.c sv.c t/mro/method_caching.t
3049 ____________________________________________________________________________
3050 [ 31090] By: rgs                                   on 2007/04/26  14:27:18
3051         Log: Doc nit, by Peter Scott
3052      Branch: perl
3053            ! README
3054 ____________________________________________________________________________
3055 [ 31089] By: nicholas                              on 2007/04/26  14:26:13
3056         Log: Subject: Re: VMS and Win32 Makefiles in change 31059
3057              From: Steve Hay <steve.hay@uk.radan.com>
3058              Message-ID: <46306D01.6070607@uk.radan.com>
3059              Date: Thu, 26 Apr 2007 10:12:33 +0100
3060      Branch: perl
3061            ! win32/Makefile win32/makefile.mk
3062 ____________________________________________________________________________
3063 [ 31088] By: rgs                                   on 2007/04/26  13:58:34
3064         Log: Remove the Thread typemap
3065      Branch: perl
3066            - ext/Thread/typemap
3067            ! MANIFEST
3068 ____________________________________________________________________________
3069 [ 31087] By: rgs                                   on 2007/04/26  13:15:14
3070         Log: Subject: mro status, etc
3071              From: "Brandon Black" <blblack@gmail.com>
3072              Date: Wed, 25 Apr 2007 18:37:21 -0500
3073              Message-ID: <84621a60704251637v1f4a3f84y19b39461166e3631@mail.gmail.com>
3074      Branch: perl
3075            ! mro.c
3076 ____________________________________________________________________________
3077 [ 31086] By: rgs                                   on 2007/04/26  13:05:29
3078         Log: Fix mro docs.
3079              
3080              Subject: Re: mro callbacks patch
3081              From: "Brandon Black" <blblack@gmail.com>
3082              Date: Mon, 23 Apr 2007 18:58:39 -0500
3083              Message-ID: <84621a60704231658o4c85783ere3c3e90dd614c30b@mail.gmail.com>
3084      Branch: perl
3085            ! embed.fnc embed.h global.sym mro.c pod/perlapi.pod
3086            ! pod/perlintern.pod proto.h
3087 ____________________________________________________________________________
3088 [ 31085] By: rgs                                   on 2007/04/26  12:53:30
3089         Log: Forgot to submit regcomp.c in change #31081
3090      Branch: perl
3091            ! regcomp.c
3092 ____________________________________________________________________________
3093 [ 31084] By: rgs                                   on 2007/04/26  12:47:57
3094         Log: Do the same thing as change #31082, but for warnings.pm.
3095      Branch: perl
3096            ! lib/warnings.pm warnings.pl
3097 ____________________________________________________________________________
3098 [ 31083] By: davem                                 on 2007/04/26  12:36:45
3099         Log: eliminate "unused var" warning
3100      Branch: perl
3101            ! perl.c
3102 ____________________________________________________________________________
3103 [ 31082] By: rgs                                   on 2007/04/26  10:51:36
3104         Log: Subject: Re: The Strict trap
3105              From: Johan Vromans <jvromans@squirrel.nl>
3106              Date: Wed, 25 Apr 2007 16:12:58 +0200
3107              Message-ID: <m2lkggilud.fsf@phoenix.squirrel.nl>
3108      Branch: perl
3109            ! ext/Storable/t/code.t lib/strict.pm
3110 ____________________________________________________________________________
3111 [ 31081] By: rgs                                   on 2007/04/26  10:23:30
3112         Log: Subject: Re: Analysis of problems with mixed encoding case insensitive matches in regex engine.
3113              From: demerphq <demerphq@gmail.com>
3114              Date: Tue, 24 Apr 2007 16:46:05 +0200
3115              Message-ID: <9b18b3110704240746u461e4bdcl208ef7d7f9c5ef64@mail.gmail.com>
3116      Branch: perl
3117            ! Porting/regcharclass.pl regcharclass.h regcomp.h regcomp.sym
3118            ! regexec.c regnodes.h t/op/pat.t
3119 ____________________________________________________________________________
3120 [ 31080] By: rgs                                   on 2007/04/26  07:09:32
3121         Log: Subject: [PATCH] fixed Fcntl::S_IFMT() breakage introduced by change 30674 (blead 26701)
3122              From: Alexey Tourbin <at@altlinux.ru>
3123              Date: Wed, 25 Apr 2007 18:12:22 +0400
3124              Message-ID: <20070425141222.GA24828@solemn.turbinal>
3125      Branch: perl
3126            + ext/Fcntl/t/mode.t
3127            ! MANIFEST ext/Fcntl/Fcntl.pm
3128 ____________________________________________________________________________
3129 [ 31079] By: rgs                                   on 2007/04/25  16:17:01
3130         Log: Subject: [PATCH] Safely store user locks in threads::shared
3131              From: "Jerry D. Hedden" <jdhedden@cpan.org>
3132              Date: Mon, 23 Apr 2007 13:21:11 -0400
3133              Message-ID: <1ff86f510704231021l6989ee0bkd68ab89e99bf8c6b@mail.gmail.com>
3134      Branch: perl
3135            ! ext/threads/shared/Changes ext/threads/shared/shared.pm
3136            ! ext/threads/shared/shared.xs
3137 ____________________________________________________________________________
3138 [ 31078] By: rgs                                   on 2007/04/25  16:13:54
3139         Log: Subject: [PATCH] Thread.xs doesn't need magic sig anymore
3140              From: "Jerry D. Hedden" <jdhedden@cpan.org>
3141              Date: Mon, 23 Apr 2007 13:25:20 -0400
3142              Message-ID: <1ff86f510704231025y22d30ecfk1ebc418f2b3a0bf7@mail.gmail.com>
3143      Branch: perl
3144            ! ext/Thread/Thread.xs
3145 ____________________________________________________________________________
3146 [ 31077] By: rgs                                   on 2007/04/25  15:31:29
3147         Log: Small perlivp.PL updates
3148              
3149              Subject: Re: [Andreas J. Koenig] C3 MRO breaks Params::Util and Graph
3150              From: Johan Vromans <jvromans@squirrel.nl>
3151              Date: Wed, 25 Apr 2007 14:37:16 +0200
3152              Message-ID: <m2r6q8iq9v.fsf@phoenix.squirrel.nl>
3153      Branch: perl
3154            ! utils/perlivp.PL
3155 ____________________________________________________________________________
3156 [ 31076] By: rgs                                   on 2007/04/25  15:19:21
3157         Log: overload must not load XS modules at compile time, or perl
3158              doesn't compile.
3159              overload must not clobber $! or $@ behind the scenes when
3160              loading an XS module.
3161      Branch: perl
3162            ! lib/overload.pm
3163 ____________________________________________________________________________
3164 [ 31075] By: rgs                                   on 2007/04/25  15:03:21
3165         Log: Remove a now redundant require
3166      Branch: perl
3167            ! lib/overload.pm
3168 ____________________________________________________________________________
3169 [ 31074] By: rgs                                   on 2007/04/25  14:53:57
3170         Log: Move the require at the top of the file.
3171              Else, Test::More has test failures.
3172      Branch: perl
3173            ! lib/overload.pm
3174 ____________________________________________________________________________
3175 [ 31073] By: rgs                                   on 2007/04/25  12:15:55
3176         Log: Subject: Re: [Andreas J. Koenig] C3 MRO breaks Params::Util and Graph
3177              From: "Brandon Black" <blblack@gmail.com>
3178              Date: Tue, 24 Apr 2007 07:58:44 -0500
3179              Message-ID: <84621a60704240558q7ff65863l803c6f9b9b8ca4a6@mail.gmail.com>
3180      Branch: perl
3181            ! ext/DynaLoader/t/DynaLoader.t lib/overload.pm
3182 ____________________________________________________________________________
3183 [ 31072] By: stevep                                on 2007/04/25  11:00:34
3184         Log: Upgrade to CPAN-1.9101
3185      Branch: perl
3186            ! lib/CPAN.pm lib/CPAN/Kwalify/distroprefs.dd
3187 ____________________________________________________________________________
3188 [ 31069] By: nicholas                              on 2007/04/25  09:54:17
3189         Log: Avoid the need for 2 casts added in 31055 by using a better type for
3190              the local variable. Add an assertion that another cast is not a data
3191              loss (and that there is no buffer overflow)
3192      Branch: perl
3193            ! ext/Devel/Peek/Peek.xs utf8.c
3194 ____________________________________________________________________________
3195 [ 31068] By: nicholas                              on 2007/04/25  09:32:50
3196         Log: Remove vestigical include of <ctype.h>, which came from a previous
3197              version that tried to make the initialiser out of a single "" string.
3198              (Which turned out to be over 509 characters long)
3199      Branch: perl
3200            ! generate_uudmap.c
3201 ____________________________________________________________________________
3202 [ 31067] By: rgs                                   on 2007/04/25  08:42:27
3203         Log: Subject: [PATCH] perlre.pod spellcheck
3204              From: "Alexandr Ciornii" <alexchorny@gmail.com>
3205              Date: Tue, 24 Apr 2007 00:45:05 +0300
3206              Message-ID: <2f1541220704231445w6fa7bfcbl41c9b6f56fb70feb@mail.gmail.com>
3207      Branch: perl
3208            ! pod/perlre.pod
3209 ____________________________________________________________________________
3210 [ 31066] By: merijn                                on 2007/04/25  08:12:16
3211         Log: Leave try.c and include files where they are if we need them later
3212      Branch: perl
3213            ! Configure
3214 ____________________________________________________________________________
3215 [ 31064] By: rgs                                   on 2007/04/25  08:10:05
3216         Log: Subject: [PATCH] Move hash action constants to hv.h
3217              From: "Jerry D. Hedden" <jdhedden@cpan.org>
3218              Date: Tue, 24 Apr 2007 10:35:43 -0400
3219              Message-ID: <1ff86f510704240735t50cfc159g59b55726ac5ac64b@mail.gmail.com>
3220      Branch: perl
3221            ! ext/Hash/Util/FieldHash/FieldHash.xs hv.c hv.h
3222 ____________________________________________________________________________
3223 [ 31063] By: rgs                                   on 2007/04/25  08:08:18
3224         Log: perlguts nit, found by Jerry D. Hedden
3225      Branch: perl
3226            ! pod/perlguts.pod
3227 ____________________________________________________________________________
3228 [ 31062] By: craigb                                on 2007/04/25  03:10:23
3229         Log: Work a little harder at building generate_uudmap on VMS.
3230      Branch: perl
3231            ! vms/descrip_mms.template
3232 ____________________________________________________________________________
3233 [ 31061] By: stevep                                on 2007/04/25  01:06:23
3234         Log: Upgrade to Encode-2.20
3235      Branch: perl
3236            + ext/Encode/lib/Encode/GSM0338.pm
3237            ! MANIFEST ext/Encode/Byte/Byte.pm ext/Encode/Changes
3238            ! ext/Encode/Encode.pm ext/Encode/Encode.xs
3239            ! ext/Encode/Makefile.PL ext/Encode/bin/piconv
3240            ! ext/Encode/encoding.pm ext/Encode/lib/Encode/Config.pm
3241            ! ext/Encode/lib/Encode/Supported.pod ext/Encode/t/gsm0338.t
3242            ! ext/Encode/t/mime-header.t
3243 ____________________________________________________________________________
3244 [ 31060] By: nicholas                              on 2007/04/24  23:16:12
3245         Log: Ooops. It helps to p4 add the new file.
3246      Branch: perl
3247            + generate_uudmap.c
3248 ____________________________________________________________________________
3249 [ 31059] By: nicholas                              on 2007/04/24  23:10:05
3250         Log: Make PL_uudmap a constant global. Remove the run time initialisation
3251              code, and instead use it to generate a header at perl build time.
3252              By removing uudmap from the interpreter structure we save 256 bytes
3253              per child thread.
3254      Branch: perl
3255            ! MANIFEST Makefile.SH embedvar.h intrpvar.h perl.h perlapi.h
3256            ! pp_pack.c sv.c vms/descrip_mms.template win32/Makefile
3257            ! win32/makefile.mk
3258 ____________________________________________________________________________
3259 [ 31058] By: davem                                 on 2007/04/24  16:42:12
3260         Log: move PL_linestr from the interpreter struct to the parser struct
3261      Branch: perl
3262            ! cop.h embedvar.h intrpvar.h parser.h perl.c perlapi.h pp_ctl.c
3263            ! sv.c toke.c
3264 ____________________________________________________________________________
3265 [ 31057] By: steveh                                on 2007/04/24  13:31:29
3266         Log: Silence VC6 warning about not all control paths returning a value
3267      Branch: perl
3268            ! mro.c
3269 ____________________________________________________________________________
3270 [ 31056] By: steveh                                on 2007/04/24  13:11:50
3271         Log: Fix a function signature missed by #31027 to silence a VC6 warning
3272      Branch: perl
3273            ! ext/re/re.xs
3274 ____________________________________________________________________________
3275 [ 31055] By: steveh                                on 2007/04/24  12:17:00
3276         Log: Silence 5 "possible loss of data" warnings from VC6
3277      Branch: perl
3278            ! ext/Devel/Peek/Peek.xs toke.c utf8.c
3279 ____________________________________________________________________________
3280 [ 31054] By: steveh                                on 2007/04/24  12:16:07
3281         Log: Subject: [perl #42648] [PATCH] crash in win32/VMem.h when out of memory 
3282              From: "Devin Heitmueller" (via RT) <perlbug-followup@perl.org>
3283              Date: Fri, 20 Apr 2007 14:49:08 -0700
3284              Message-ID: <rt-3.6.HEAD-30201-1177105747-239.42648-75-0@perl.org>
3285      Branch: perl
3286            ! win32/vmem.h
3287 ____________________________________________________________________________
3288 [ 31053] By: rgs                                   on 2007/04/24  11:25:56
3289         Log: Adjust test count.
3290      Branch: perl
3291            ! ext/B/t/concise-xs.t
3292 ____________________________________________________________________________
3293 [ 31052] By: rgs                                   on 2007/04/24  10:35:15
3294         Log: Fix potential precedence problem
3295      Branch: perl
3296            ! op.c
3297 ____________________________________________________________________________
3298 [ 31051] By: rgs                                   on 2007/04/24  10:34:20
3299         Log: Remove unnecessarily paranoid protection in pp_defined
3300      Branch: perl
3301            ! pp_hot.c
3302 ____________________________________________________________________________
3303 [ 31050] By: rgs                                   on 2007/04/24  10:32:33
3304         Log: Fix a bug in dor assignment (@x //= 1 was triggering an
3305              assertion failure)
3306      Branch: perl
3307            ! op.c
3308 ____________________________________________________________________________
3309 [ 31049] By: rgs                                   on 2007/04/24  10:31:28
3310         Log: Remove the code that handles assignment to state variables
3311      Branch: perl
3312            ! op.c op.h pod/perldiag.pod pod/perlfunc.pod pod/perlsub.pod
3313            ! pp_hot.c t/lib/warnings/op t/op/state.t
3314 ____________________________________________________________________________
3315 [ 31048] By: merijn                                on 2007/04/24  06:01:41
3316         Log: Subject: [PATCH t/base/num.t] Typo fix.
3317              From: Abigail <abigail@abigail.be>
3318              Date: Tue, 24 Apr 2007 00:48:26 +0200
3319              Message-ID: <20070423224826.GC544@abigail.nl>
3320      Branch: perl
3321            ! t/base/num.t
3322 ____________________________________________________________________________
3323 [ 31047] By: craigb                                on 2007/04/24  03:18:34
3324         Log: Reduce directory depth for IO::Compress modules.
3325      Branch: perl
3326           +> (branch 94 files)
3327            - ext/IO/Compress/Base/Changes ext/IO/Compress/Base/Makefile.PL
3328            - ext/IO/Compress/Base/README
3329            - ext/IO/Compress/Base/lib/File/GlobMapper.pm
3330            - ext/IO/Compress/Base/lib/IO/Compress/Base.pm
3331            - ext/IO/Compress/Base/lib/IO/Compress/Base/Common.pm
3332            - ext/IO/Compress/Base/lib/IO/Uncompress/AnyUncompress.pm
3333            - ext/IO/Compress/Base/lib/IO/Uncompress/Base.pm
3334            - ext/IO/Compress/Base/private/MakeUtil.pm
3335            - ext/IO/Compress/Base/t/01misc.t
3336            - ext/IO/Compress/Base/t/globmapper.t
3337            - ext/IO/Compress/Zlib/Changes ext/IO/Compress/Zlib/Makefile.PL
3338            - ext/IO/Compress/Zlib/README
3339            - ext/IO/Compress/Zlib/examples/gzappend
3340            - ext/IO/Compress/Zlib/examples/gzcat
3341            - ext/IO/Compress/Zlib/examples/gzgrep
3342            - ext/IO/Compress/Zlib/examples/gzstream
3343            - ext/IO/Compress/Zlib/examples/unzip
3344            - ext/IO/Compress/Zlib/lib/IO/Compress/Adapter/Deflate.pm
3345            - ext/IO/Compress/Zlib/lib/IO/Compress/Adapter/Identity.pm
3346            - ext/IO/Compress/Zlib/lib/IO/Compress/Deflate.pm
3347            - ext/IO/Compress/Zlib/lib/IO/Compress/Gzip.pm
3348            - ext/IO/Compress/Zlib/lib/IO/Compress/Gzip/Constants.pm
3349            - ext/IO/Compress/Zlib/lib/IO/Compress/RawDeflate.pm
3350            - ext/IO/Compress/Zlib/lib/IO/Compress/Zip.pm
3351            - ext/IO/Compress/Zlib/lib/IO/Compress/Zip/Constants.pm
3352            - ext/IO/Compress/Zlib/lib/IO/Compress/Zlib/Constants.pm
3353            - ext/IO/Compress/Zlib/lib/IO/Compress/Zlib/Extra.pm
3354            - ext/IO/Compress/Zlib/lib/IO/Uncompress/Adapter/Identity.pm
3355            - ext/IO/Compress/Zlib/lib/IO/Uncompress/Adapter/Inflate.pm
3356            - ext/IO/Compress/Zlib/lib/IO/Uncompress/AnyInflate.pm
3357            - ext/IO/Compress/Zlib/lib/IO/Uncompress/Gunzip.pm
3358            - ext/IO/Compress/Zlib/lib/IO/Uncompress/Inflate.pm
3359            - ext/IO/Compress/Zlib/lib/IO/Uncompress/RawInflate.pm
3360            - ext/IO/Compress/Zlib/lib/IO/Uncompress/Unzip.pm
3361            - ext/IO/Compress/Zlib/private/MakeUtil.pm
3362            - ext/IO/Compress/Zlib/t/001zlib-generic-deflate.t
3363            - ext/IO/Compress/Zlib/t/001zlib-generic-gzip.t
3364            - ext/IO/Compress/Zlib/t/001zlib-generic-rawdeflate.t
3365            - ext/IO/Compress/Zlib/t/001zlib-generic-zip.t
3366            - ext/IO/Compress/Zlib/t/002any-deflate.t
3367            - ext/IO/Compress/Zlib/t/002any-gzip.t
3368            - ext/IO/Compress/Zlib/t/002any-rawdeflate.t
3369            - ext/IO/Compress/Zlib/t/002any-transparent.t
3370            - ext/IO/Compress/Zlib/t/002any-zip.t
3371            - ext/IO/Compress/Zlib/t/004gziphdr.t
3372            - ext/IO/Compress/Zlib/t/005defhdr.t
3373            - ext/IO/Compress/Zlib/t/010examples.t
3374            - ext/IO/Compress/Zlib/t/020isize.t
3375            - ext/IO/Compress/Zlib/t/050interop-gzip.t
3376            - ext/IO/Compress/Zlib/t/100generic-deflate.t
3377            - ext/IO/Compress/Zlib/t/100generic-gzip.t
3378            - ext/IO/Compress/Zlib/t/100generic-rawdeflate.t
3379            - ext/IO/Compress/Zlib/t/100generic-zip.t
3380            - ext/IO/Compress/Zlib/t/101truncate-deflate.t
3381            - ext/IO/Compress/Zlib/t/101truncate-gzip.t
3382            - ext/IO/Compress/Zlib/t/101truncate-rawdeflate.t
3383            - ext/IO/Compress/Zlib/t/101truncate-zip.t
3384            - ext/IO/Compress/Zlib/t/102tied-deflate.t
3385            - ext/IO/Compress/Zlib/t/102tied-gzip.t
3386            - ext/IO/Compress/Zlib/t/102tied-rawdeflate.t
3387            - ext/IO/Compress/Zlib/t/102tied-zip.t
3388            - ext/IO/Compress/Zlib/t/103newtied-deflate.t
3389            - ext/IO/Compress/Zlib/t/103newtied-gzip.t
3390            - ext/IO/Compress/Zlib/t/103newtied-rawdeflate.t
3391            - ext/IO/Compress/Zlib/t/103newtied-zip.t
3392            - ext/IO/Compress/Zlib/t/104destroy-deflate.t
3393            - ext/IO/Compress/Zlib/t/104destroy-gzip.t
3394            - ext/IO/Compress/Zlib/t/104destroy-rawdeflate.t
3395            - ext/IO/Compress/Zlib/t/104destroy-zip.t
3396            - ext/IO/Compress/Zlib/t/105oneshot-deflate.t
3397            - ext/IO/Compress/Zlib/t/105oneshot-gzip-only.t
3398            - ext/IO/Compress/Zlib/t/105oneshot-gzip.t
3399            - ext/IO/Compress/Zlib/t/105oneshot-rawdeflate.t
3400            - ext/IO/Compress/Zlib/t/105oneshot-zip-only.t
3401            - ext/IO/Compress/Zlib/t/105oneshot-zip.t
3402            - ext/IO/Compress/Zlib/t/106prime-deflate.t
3403            - ext/IO/Compress/Zlib/t/106prime-gzip.t
3404            - ext/IO/Compress/Zlib/t/106prime-rawdeflate.t
3405            - ext/IO/Compress/Zlib/t/106prime-zip.t
3406            - ext/IO/Compress/Zlib/t/107multi-deflate.t
3407            - ext/IO/Compress/Zlib/t/107multi-gzip.t
3408            - ext/IO/Compress/Zlib/t/107multi-rawdeflate.t
3409            - ext/IO/Compress/Zlib/t/107multi-zip.t
3410            - ext/IO/Compress/Zlib/t/108anyunc-deflate.t
3411            - ext/IO/Compress/Zlib/t/108anyunc-gzip.t
3412            - ext/IO/Compress/Zlib/t/108anyunc-rawdeflate.t
3413            - ext/IO/Compress/Zlib/t/108anyunc-transparent.t
3414            - ext/IO/Compress/Zlib/t/108anyunc-zip.t
3415            - ext/IO/Compress/Zlib/t/109merge-deflate.t
3416            - ext/IO/Compress/Zlib/t/109merge-gzip.t
3417            - ext/IO/Compress/Zlib/t/109merge-rawdeflate.t
3418            - ext/IO/Compress/Zlib/t/109merge-zip.t
3419            ! MANIFEST
3420 ____________________________________________________________________________
3421 [ 31046] By: davem                                 on 2007/04/23  23:01:18
3422         Log: eliminate some uses of PL_linestr in perl.c
3423      Branch: perl
3424            ! embed.fnc embed.h perl.c proto.h
3425 ____________________________________________________________________________
3426 [ 31045] By: davem                                 on 2007/04/23  22:27:27
3427         Log: inline S_init_lexer() and regen
3428      Branch: perl
3429            ! embed.fnc embed.h embedvar.h perl.c perlapi.h proto.h
3430 ____________________________________________________________________________
3431 [ 31044] By: davem                                 on 2007/04/23  22:04:59
3432         Log: make initialisation of PL_sv_no etc unconditional
3433      Branch: perl
3434            ! perl.c
3435 ____________________________________________________________________________
3436 [ 31043] By: merijn                                on 2007/04/23  20:55:05
3437         Log: Missed quotes in protocheck for rm_try
3438      Branch: perl
3439            ! Configure
3440 ____________________________________________________________________________
3441 [ 31040] By: merijn                                on 2007/04/23  17:35:53
3442         Log: Major *try* cleanup: introduce $rm_try; Some whitespace cleanups;
3443              Small textual nit from Jarkko
3444      Branch: perl
3445            ! Configure
3446 ____________________________________________________________________________
3447 [ 31038] By: nicholas                              on 2007/04/23  16:36:31
3448         Log: Remove the unnecessary allocation of and assignment to hunk[3], as the
3449              perl API functions called don't need a NUL terminated string.
3450      Branch: perl
3451            ! pp_pack.c
3452 ____________________________________________________________________________
3453 [ 31037] By: rgs                                   on 2007/04/23  15:31:48
3454         Log: Switch to hex format for integer constants in regcharclass.h
3455              (Yves Orton). Also, avoid trailing spaces.
3456      Branch: perl
3457            ! Porting/regcharclass.pl regcharclass.h
3458 ____________________________________________________________________________
3459 [ 31036] By: rgs                                   on 2007/04/23  15:07:52
3460         Log: Upgrade to Term::ANSIColor 1.12.
3461      Branch: perl
3462            ! lib/Term/ANSIColor.pm lib/Term/ANSIColor/ChangeLog
3463            ! lib/Term/ANSIColor/README lib/Term/ANSIColor/t/basic.t
3464 ____________________________________________________________________________
3465 [ 31034] By: nicholas                              on 2007/04/23  14:40:05
3466         Log: More variable reordering saves another 40 bytes from the interpreter
3467              structure. (on LP64). Zero cost space saving! Woohoo!
3468      Branch: perl
3469            ! intrpvar.h pod/perltodo.pod thrdvar.h
3470 ____________________________________________________________________________
3471 [ 31033] By: rgs                                   on 2007/04/23  13:17:05
3472         Log: Subject: [PATCH] Un-mathom Perl_save_I16
3473              From: "Jerry D. Hedden" <jdhedden@cpan.org>
3474              Date: Mon, 23 Apr 2007 09:10:01 -0400
3475              Message-ID: <1ff86f510704230610t13c62378s381eaceae3e7e9b1@mail.gmail.com>
3476      Branch: perl
3477            ! mathoms.c scope.c
3478 ____________________________________________________________________________
3479 [ 31032] By: rgs                                   on 2007/04/23  13:10:56
3480         Log: A safer version of CopFILE, by Jarkko
3481      Branch: perl
3482            ! cop.h
3483 ____________________________________________________________________________
3484 [ 31031] By: rgs                                   on 2007/04/23  12:30:12
3485         Log: Change boilerplate of regcharclass.h
3486      Branch: perl
3487            ! Porting/regcharclass.pl regcharclass.h
3488 ____________________________________________________________________________
3489 [ 31030] By: rgs                                   on 2007/04/23  12:25:10
3490         Log: Add Yves Orton's script to regenerate regcharclass.h
3491      Branch: perl
3492            + Porting/regcharclass.pl
3493            ! MANIFEST regcharclass.h
3494 ____________________________________________________________________________
3495 [ 31029] By: rgs                                   on 2007/04/23  10:02:13
3496         Log: Remove generated test files from CPANPLUS
3497      Branch: perl
3498            - lib/CPANPLUS/t/dummy-localmirror/01mailrc.txt.gz.packed
3499            - lib/CPANPLUS/t/dummy-localmirror/02packages.details.txt.gz.pac
3500            - ked lib/CPANPLUS/t/dummy-localmirror/03modlist.data.gz.packed
3501            - lib/CPANPLUS/t/dummy-localmirror/authors/id/E/EU/EUNOXS/Bundle
3502            - -Foo-Bar-0.01.tar.gz.packed
3503            - lib/CPANPLUS/t/dummy-localmirror/authors/id/E/EU/EUNOXS/CHECKS
3504            - UMS
3505            - lib/CPANPLUS/t/dummy-localmirror/authors/id/E/EU/EUNOXS/Foo-Ba
3506            - r-0.01.tar.gz.packed
3507            - lib/CPANPLUS/t/dummy-localmirror/authors/id/E/EU/EUNOXS/perl5.
3508            - 005_03.tar.gz.packed
3509            - lib/CPANPLUS/t/dummy-localmirror/authors/id/E/EU/EUXS/CHECKSUM
3510            - S
3511            - lib/CPANPLUS/t/dummy-localmirror/authors/id/E/EU/EUXS/Foo-Bar-
3512            - 0.01.tar.gz.packed
3513            - lib/CPANPLUS/t/dummy-localmirror/authors/id/M/MB/MBNOXS/CHECKS
3514            - UMS
3515            - lib/CPANPLUS/t/dummy-localmirror/authors/id/M/MB/MBNOXS/Foo-Ba
3516            - r-0.01.tar.gz.packed
3517            - lib/CPANPLUS/t/dummy-localmirror/authors/id/M/MB/MBXS/CHECKSUM
3518            - S
3519            - lib/CPANPLUS/t/dummy-localmirror/authors/id/M/MB/MBXS/Foo-Bar-
3520            - 0.01.tar.gz.packed
3521            ! MANIFEST
3522 ____________________________________________________________________________
3523 [ 31028] By: rgs                                   on 2007/04/23  09:53:41
3524         Log: Patch to config to avoid failures in the perl core due
3525              to too much verbosity (by Jos Boumans)
3526      Branch: perl
3527            ! lib/CPANPLUS/t/inc/conf.pl
3528 ____________________________________________________________________________
3529 [ 31027] By: rgs                                   on 2007/04/23  09:39:38
3530         Log: Subject: Re: [PATCH (incomplete)] Make regcomp use SV* sv, instead of char* exp, char* xend
3531              From: <avarab@gmail.com>
3532              Date: Sat, 21 Apr 2007 21:30:47 +0000
3533              Message-ID: <51dd1af80704211430m6ad1b4afy49b069faa61e33a9@mail.gmail.com>
3534      Branch: perl
3535            ! embed.fnc embed.h op.c perl.h pod/perlreapi.pod pp_ctl.c
3536            ! proto.h regcomp.c regexec.c regexp.h uupacktool.pl
3537 ____________________________________________________________________________
3538 [ 31026] By: rgs                                   on 2007/04/23  09:04:31
3539         Log: Subject: [PATCH] Change meaning of \v, \V, and add \h, \H to match Perl6, add \R to match PCRE and unicode tr18
3540              From: demerphq <demerphq@gmail.com>
3541              Date: Sun, 22 Apr 2007 23:34:55 +0200
3542              Message-ID: <9b18b3110704221434g43457742p28cab00289f83639@mail.gmail.com>
3543      Branch: perl
3544            + regcharclass.h
3545            ! MANIFEST lib/unicore/mktables pod/perlre.pod regcomp.c
3546            ! regcomp.h regcomp.sym regexec.c regnodes.h t/op/pat.t
3547            ! t/op/re_tests t/op/regexp.t
3548 ____________________________________________________________________________
3549 [ 31025] By: rgs                                   on 2007/04/23  08:21:50
3550         Log: An optimisation to the MRO code, by Brandon Black,
3551              plus more comments.
3552      Branch: perl
3553            ! mro.c
3554 ____________________________________________________________________________
3555 [ 31024] By: craigb                                on 2007/04/23  03:14:53
3556         Log: Shorten long symbols in mro.c to avoid name mangling on VMS.
3557      Branch: perl
3558            ! mro.c
3559 ____________________________________________________________________________
3560 [ 31023] By: nicholas                              on 2007/04/22  22:57:54
3561         Log: Fix problems caused by downsizing in change 31017. (Which don't show
3562              up until you test on a "real" architecture)
3563      Branch: perl
3564            ! pp_ctl.c utf8.c
3565 ____________________________________________________________________________
3566 [ 31022] By: rgs                                   on 2007/04/22  15:08:45
3567         Log: Reflect change of path for Module::Pluggable's tests in Maintainers.pl
3568      Branch: perl
3569            ! Porting/Maintainers.pl
3570 ____________________________________________________________________________
3571 [ 31021] By: rgs                                   on 2007/04/22  15:03:27
3572         Log: Add missing file to MANIFEST
3573      Branch: perl
3574            ! MANIFEST
3575 ____________________________________________________________________________
3576 [ 31020] By: rgs                                   on 2007/04/22  15:03:13
3577         Log: Subject: [PATCH] Update CPANPLUS to 0.79_01
3578              From: "Jos I. Boumans" <kane@xs4all.nl>
3579              Date: Sun, 22 Apr 2007 10:18:10 +0200
3580              Message-Id: <BDAACA85-8D3E-4104-9B03-9DB247EDA080@xs4all.nl>
3581      Branch: perl
3582            + lib/CPANPLUS/t/15_CPANPLUS-Shell.t
3583            ! lib/CPANPLUS.pm lib/CPANPLUS/Config.pm lib/CPANPLUS/Dist/MM.pm
3584            ! lib/CPANPLUS/Internals.pm lib/CPANPLUS/Internals/Constants.pm
3585            ! lib/CPANPLUS/Selfupdate.pm lib/CPANPLUS/Shell.pm
3586            ! lib/CPANPLUS/Shell/Default.pm
3587            ! lib/CPANPLUS/t/30_CPANPLUS-Internals-Selfupdate.t
3588            ! lib/CPANPLUS/t/dummy-CPAN/authors/01mailrc.txt.gz.packed
3589            ! lib/CPANPLUS/t/dummy-CPAN/authors/id/E/EU/EUNOXS/Bundle-Foo-Ba
3590            ! r-0.01.tar.gz.packed
3591            ! lib/CPANPLUS/t/dummy-CPAN/authors/id/E/EU/EUNOXS/Foo-Bar-0.01.
3592            ! tar.gz.packed
3593            ! lib/CPANPLUS/t/dummy-CPAN/authors/id/E/EU/EUNOXS/perl5.005_03.
3594            ! tar.gz.packed
3595            ! lib/CPANPLUS/t/dummy-CPAN/authors/id/E/EU/EUXS/Foo-Bar-0.01.ta
3596            ! r.gz.packed
3597            ! lib/CPANPLUS/t/dummy-CPAN/authors/id/M/MB/MBNOXS/Foo-Bar-0.01.
3598            ! tar.gz.packed
3599            ! lib/CPANPLUS/t/dummy-CPAN/authors/id/M/MB/MBXS/Foo-Bar-0.01.ta
3600            ! r.gz.packed
3601            ! lib/CPANPLUS/t/dummy-CPAN/modules/02packages.details.txt.gz.pa
3602            ! cked
3603            ! lib/CPANPLUS/t/dummy-CPAN/modules/03modlist.data.gz.packed
3604            ! lib/CPANPLUS/t/inc/conf.pl
3605 ____________________________________________________________________________
3606 [ 31019] By: craigb                                on 2007/04/22  14:34:28
3607         Log: Move Module::Pluggable tests up under main test directory.
3608      Branch: perl
3609           +> (branch 50 files)
3610            - lib/Module/Pluggable/t/01use.t
3611            - lib/Module/Pluggable/t/02alsoworks.t
3612            - lib/Module/Pluggable/t/02works.t
3613            - lib/Module/Pluggable/t/02works_taint.t
3614            - lib/Module/Pluggable/t/03diffname.t
3615            - lib/Module/Pluggable/t/04acmedir.t
3616            - lib/Module/Pluggable/t/04acmedir_single.t
3617            - lib/Module/Pluggable/t/04acmepath.t
3618            - lib/Module/Pluggable/t/04acmepath_single.t
3619            - lib/Module/Pluggable/t/05postpath.t
3620            - lib/Module/Pluggable/t/06multipath.t
3621            - lib/Module/Pluggable/t/07instantiate.t
3622            - lib/Module/Pluggable/t/08nothing.t
3623            - lib/Module/Pluggable/t/09require.t
3624            - lib/Module/Pluggable/t/10innerpack.t
3625            - lib/Module/Pluggable/t/10innerpack_inner.t
3626            - lib/Module/Pluggable/t/10innerpack_noinner.t
3627            - lib/Module/Pluggable/t/10innerpack_override.t
3628            - lib/Module/Pluggable/t/11usetwice.t
3629            - lib/Module/Pluggable/t/12only.t
3630            - lib/Module/Pluggable/t/12onlyarray.t
3631            - lib/Module/Pluggable/t/12onlyregex.t
3632            - lib/Module/Pluggable/t/13except.t
3633            - lib/Module/Pluggable/t/13exceptarray.t
3634            - lib/Module/Pluggable/t/13exceptregex.t
3635            - lib/Module/Pluggable/t/14package.t
3636            - lib/Module/Pluggable/t/15topicsafe.t
3637            - lib/Module/Pluggable/t/16different_extension.t
3638            - lib/Module/Pluggable/t/17devel_inner_package.t
3639            - lib/Module/Pluggable/t/18skipped_package.t
3640            - lib/Module/Pluggable/t/19can_ok_clobber.t
3641            - lib/Module/Pluggable/t/20dodgy_files.t
3642            - lib/Module/Pluggable/t/acme/Acme/MyTest/Plugin/Foo.pm
3643            - lib/Module/Pluggable/t/lib/Acme/MyTest/Plugin/Foo.pm
3644            - lib/Module/Pluggable/t/lib/ExtTest/Plugin/Bar.plugin
3645            - lib/Module/Pluggable/t/lib/ExtTest/Plugin/Foo.plugin
3646            - lib/Module/Pluggable/t/lib/ExtTest/Plugin/Quux/Foo.plugin
3647            - lib/Module/Pluggable/t/lib/InnerTest/Plugin/Foo.pm
3648            - lib/Module/Pluggable/t/lib/MyOtherTest/Plugin/Bar.pm
3649            - lib/Module/Pluggable/t/lib/MyOtherTest/Plugin/Foo.pm
3650            - lib/Module/Pluggable/t/lib/MyOtherTest/Plugin/Quux.pm
3651            - lib/Module/Pluggable/t/lib/MyOtherTest/Plugin/Quux/Foo.pm
3652            - lib/Module/Pluggable/t/lib/MyTest/Extend/Plugin/Bar.pm
3653            - lib/Module/Pluggable/t/lib/MyTest/Plugin/Bar.pm
3654            - lib/Module/Pluggable/t/lib/MyTest/Plugin/Foo.pm
3655            - lib/Module/Pluggable/t/lib/MyTest/Plugin/Quux/Foo.pm
3656            - lib/Module/Pluggable/t/lib/No/Middle.pm
3657            - lib/Module/Pluggable/t/lib/OddTest/Plugin/-Dodgy.pm
3658            - lib/Module/Pluggable/t/lib/OddTest/Plugin/Foo.pm
3659            - lib/Module/Pluggable/t/lib/TA/C/A/I.pm
3660            ! MANIFEST t/TEST t/harness
3661 ____________________________________________________________________________
3662 [ 31018] By: craigb                                on 2007/04/22  00:50:18
3663         Log: Make t/harness find the t/mro tests
3664      Branch: perl
3665            ! t/harness
3666 ____________________________________________________________________________
3667 [ 31017] By: nicholas                              on 2007/04/21  21:47:34
3668         Log: Various variables in intrpvar.h and thrdvar.h are considerably larger
3669              than they need to be.
3670      Branch: perl
3671            ! intrpvar.h pad.c thrdvar.h
3672 ____________________________________________________________________________
3673 [ 31016] By: nicholas                              on 2007/04/21  21:46:27
3674         Log: Fix bug in change 31015 - saving the wrong size of variable.
3675      Branch: perl
3676            ! toke.c
3677 ____________________________________________________________________________
3678 [ 31015] By: nicholas                              on 2007/04/21  19:05:08
3679         Log: Several members of struct yy_parser can go on a diet. Some I32s were
3680              actually only holding chars.
3681      Branch: perl
3682            ! intrpvar.h op.c parser.h perl.h toke.c
3683 ____________________________________________________________________________
3684 [ 31014] By: nicholas                              on 2007/04/21  18:41:39
3685         Log: By re-ordering declarations in interpvar.h and thrdvar.h, reduce the
3686              size of the interpreter structure. (For LP64, from 3712 to 3584, for
3687              ILP32, from 2288 to 2248).
3688      Branch: perl
3689            ! intrpvar.h thrdvar.h
3690 ____________________________________________________________________________
3691 [ 31013] By: nicholas                              on 2007/04/21  17:01:53
3692         Log: Remove widesyscalls and numeric_compat1, two unused per-interpreter
3693              variables retained for binary compatibility, something which we no
3694              longer maintain back to 5.6.x.
3695      Branch: perl
3696            ! intrpvar.h
3697 ____________________________________________________________________________
3698 [ 31012] By: nicholas                              on 2007/04/21  13:54:28
3699         Log: Eliminate Internals::inc_sub_generation, which nothing now calls.
3700      Branch: perl
3701            ! universal.c
3702 ____________________________________________________________________________
3703 [ 31010] By: nicholas                              on 2007/04/21  11:42:43
3704         Log: Where possible, use SvIV instead of SvIVX, SvNV instead of SvNVX,
3705              SvUV instead of SvUVX, and SvPV* variants instead of SvPVX*.
3706              Document that the non-x variants are preferable whenever the expression
3707              has no side effects. (Compilers perform common subexression
3708              elimination). Likewise SvREFCNT_inc simple variants are valid for all
3709              cases apart from expressions with side effects.
3710      Branch: perl
3711            ! doio.c op.c pod/perlapi.pod pp.c pp_ctl.c pp_sys.c sv.c sv.h
3712 ____________________________________________________________________________
3713 [ 31009] By: nicholas                              on 2007/04/21  10:28:59
3714         Log: Storing PL_sv_yes over itself is as cheap as calling hv_exists(), so
3715              always store it, to save the (second) store call. SvIVx is more
3716              expensive than SvIVX, so use the latter. Reorder the other call to
3717              hv_store() to be immediately after the call to hv_exists(), to try to
3718              avoid thrashing the CPU cache.
3719      Branch: perl
3720            ! mro.c
3721 ____________________________________________________________________________
3722 [ 31008] By: nicholas                              on 2007/04/21  09:43:27
3723         Log: In Perl_mro_get_linear_isa_dfs(), by treating the local variable sv as
3724              an array of size 1, we can merge two arms and reduce code duplication.
3725      Branch: perl
3726            ! mro.c
3727 ____________________________________________________________________________
3728 [ 31007] By: rgs                                   on 2007/04/21  09:29:45
3729         Log: Typo fix by Abigail
3730      Branch: perl
3731            ! ext/Hash/Util/FieldHash/t/02_function.t
3732 ____________________________________________________________________________
3733 [ 31005] By: rgs                                   on 2007/04/21  09:20:56
3734         Log: Upgrade to version-0.7203.
3735              Plus a change in Module::Build::Version, specific to bleadperl.
3736      Branch: perl
3737            ! ext/DynaLoader/t/XSLoader.t lib/Module/Build/Version.pm
3738            ! lib/Module/Build/t/metadata.t lib/Module/Build/t/moduleinfo.t
3739            ! lib/version.pm lib/version.pod lib/version.t perl.c
3740            ! t/comp/use.t t/op/sprintf.t universal.c util.c
3741 ____________________________________________________________________________
3742 [ 31004] By: rgs                                   on 2007/04/21  09:08:04
3743         Log: Completely remove Test::More from the MRO tests, by Brandon Black
3744      Branch: perl
3745            ! t/mro/basic.t t/mro/basic_01_c3.t t/mro/basic_01_dfs.t
3746            ! t/mro/basic_02_c3.t t/mro/basic_02_dfs.t t/mro/basic_03_c3.t
3747            ! t/mro/basic_03_dfs.t t/mro/basic_04_c3.t t/mro/basic_04_dfs.t
3748            ! t/mro/basic_05_c3.t t/mro/basic_05_dfs.t t/mro/complex_c3.t
3749            ! t/mro/complex_dfs.t t/mro/dbic_c3.t t/mro/dbic_dfs.t
3750            ! t/mro/next_method.t t/mro/next_skip.t t/mro/vulcan_c3.t
3751            ! t/mro/vulcan_dfs.t
3752 ____________________________________________________________________________
3753 [ 31003] By: rgs                                   on 2007/04/21  09:06:38
3754         Log: Small optimisations, by Brandon Black
3755      Branch: perl
3756            ! mro.c
3757 ____________________________________________________________________________
3758 [ 31002] By: rgs                                   on 2007/04/21  09:05:41
3759         Log: Code comments, by Brandon Black
3760      Branch: perl
3761            ! mro.c
3762 ____________________________________________________________________________
3763 [ 31001] By: rgs                                   on 2007/04/21  08:55:16
3764         Log: Subject: [PATCH] Bug in Hash::Util::FieldHash
3765              From: Anno Siegel <anno4000@mailbox.tu-berlin.de>
3766              Date: Sat, 21 Apr 2007 02:11:00 +0200
3767              Message-Id: <DFEC2420-9301-40EC-A986-80D0290B2C8F@mailbox.tu-berlin.de>
3768      Branch: perl
3769            ! ext/Hash/Util/FieldHash/Changes
3770            ! ext/Hash/Util/FieldHash/FieldHash.xs
3771            ! ext/Hash/Util/FieldHash/lib/Hash/Util/FieldHash.pm
3772            ! ext/Hash/Util/FieldHash/t/02_function.t
3773 ____________________________________________________________________________
3774 [ 31000] By: nicholas                              on 2007/04/20  19:34:15
3775         Log: Terser source code in Perl_mro_meta_dup()
3776      Branch: perl
3777            ! mro.c
3778 ____________________________________________________________________________
3779 [ 30999] By: nicholas                              on 2007/04/20  16:09:31
3780         Log: Make struct mro_meta 4(ish) bytes smaller.
3781      Branch: perl
3782            ! hv.h
3783 ____________________________________________________________________________
3784 [ 30998] By: rgs                                   on 2007/04/20  15:38:47
3785         Log: Shorten some file names
3786      Branch: perl
3787           +> t/mro/next_NEXT.t t/mro/next_edgecases.t t/mro/next_inanon.t
3788           +> t/mro/next_ineval.t t/mro/next_skip.t
3789            - t/mro/next_method_edge_cases.t t/mro/next_method_in_anon.t
3790            - t/mro/next_method_in_eval.t t/mro/next_method_skip.t
3791            - t/mro/next_method_used_with_NEXT.t
3792            ! MANIFEST
3793 ____________________________________________________________________________
3794 [ 30997] By: rgs                                   on 2007/04/20  15:03:57
3795         Log: Silence some diagnostic messages when running within the core tests.
3796              By Jerry D. Hedden
3797      Branch: perl
3798            ! lib/Archive/Extract/t/01_Archive-Extract.t
3799            ! lib/Archive/Tar/t/02_methods.t
3800 ____________________________________________________________________________
3801 [ 30996] By: rgs                                   on 2007/04/20  14:22:26
3802         Log: Nit to S_isa_lookup by Brandon Black
3803      Branch: perl
3804            ! universal.c
3805 ____________________________________________________________________________
3806 [ 30995] By: rgs                                   on 2007/04/20  14:20:42
3807         Log: Additions to perldiag for MRO, by Brandon Black.
3808      Branch: perl
3809            ! pod/perldiag.pod
3810 ____________________________________________________________________________
3811 [ 30994] By: rgs                                   on 2007/04/20  13:54:26
3812         Log: A little bit more safe version of HvMROMETA
3813      Branch: perl
3814            ! hv.h
3815 ____________________________________________________________________________
3816 [ 30993] By: rgs                                   on 2007/04/20  13:42:21
3817         Log: Don't use Test::More in core tests (at least, where
3818              that's possible, that is where is_deeply() isn't used)
3819      Branch: perl
3820            ! t/mro/c3_with_overload.t t/mro/inconsistent_c3.t
3821            ! t/mro/method_caching.t t/mro/next_method_edge_cases.t
3822            ! t/mro/next_method_in_anon.t t/mro/next_method_in_eval.t
3823            ! t/mro/next_method_used_with_NEXT.t t/mro/overload_c3.t
3824            ! t/mro/overload_dfs.t t/mro/recursion_c3.t
3825            ! t/mro/recursion_dfs.t
3826 ____________________________________________________________________________
3827 [ 30992] By: rgs                                   on 2007/04/20  11:55:37
3828         Log: Subject: Re: [PATCH] madprop about forced words
3829              From: Gerard Goossen <gerard@tty.nl>
3830              Date: Thu, 19 Apr 2007 13:33:21 +0200
3831              Message-ID: <20070419113321.GE19244@ostwald>
3832      Branch: perl
3833            ! op.h toke.c
3834 ____________________________________________________________________________
3835 [ 30991] By: rgs                                   on 2007/04/20  11:49:36
3836         Log: Subject: [perl #42614] NAN_COMPARE_BROKEN.DIV_BY_NAN_BUG (with patch) 
3837              From: patrick.dugnolle@bnpparibas.com (via RT) <perlbug-followup@perl.org>
3838              Date: Thu, 19 Apr 2007 06:34:18 -0700
3839              Message-ID: <rt-3.6.HEAD-6655-1176989657-125.42614-75-0@perl.org>
3840      Branch: perl
3841            ! pp.c
3842 ____________________________________________________________________________
3843 [ 30990] By: rgs                                   on 2007/04/20  08:04:41
3844         Log: Clean the MRO documentation up
3845      Branch: perl
3846            ! lib/mro.pm
3847 ____________________________________________________________________________
3848 [ 30989] By: stevep                                on 2007/04/20  01:58:55
3849         Log: Upgrade to CPAN-1.91
3850      Branch: perl
3851            ! lib/CPAN.pm lib/CPAN/HandleConfig.pm lib/CPAN/Tarzip.pm
3852            ! lib/CPAN/t/10version.t
3853 ____________________________________________________________________________
3854 [ 30988] By: rgs                                   on 2007/04/19  17:28:38
3855         Log: Simpler version, and that zeroes the allocated memory
3856      Branch: perl
3857            ! mro.c
3858 ____________________________________________________________________________
3859 [ 30987] By: rgs                                   on 2007/04/19  17:15:25
3860         Log: Use Newxc instead of casting by hand
3861      Branch: perl
3862            ! mro.c
3863 ____________________________________________________________________________
3864 [ 30986] By: rgs                                   on 2007/04/19  17:07:14
3865         Log: A Tolkien quote for mro.c, found by Audrey Tang.
3866      Branch: perl
3867            ! mro.c
3868 ____________________________________________________________________________
3869 [ 30985] By: steveh                                on 2007/04/19  16:20:09
3870         Log: Fix non-threaded build on Win32 following #30980
3871      Branch: perl
3872            ! makedef.pl
3873 ____________________________________________________________________________
3874 [ 30984] By: rgs                                   on 2007/04/19  15:06:53
3875         Log: Fix compilation error with threads
3876      Branch: perl
3877            ! mro.c
3878 ____________________________________________________________________________
3879 [ 30983] By: rgs                                   on 2007/04/19  15:04:19
3880         Log: Adjust the warning category in the test, too
3881      Branch: perl
3882            ! t/lib/warnings/gv
3883 ____________________________________________________________________________
3884 [ 30982] By: rgs                                   on 2007/04/19  14:53:36
3885         Log: Put the "Can't locate package..." warnings in the "syntax"
3886              category, as documented
3887      Branch: perl
3888            ! gv.c mro.c universal.c
3889 ____________________________________________________________________________
3890 [ 30981] By: rgs                                   on 2007/04/19  14:50:11
3891         Log: Change an "Internal error" message to the more common "panic"
3892              in the C3 MRO code
3893      Branch: perl
3894            ! mro.c
3895 ____________________________________________________________________________
3896 [ 30980] By: rgs                                   on 2007/04/19  14:48:20
3897         Log: Subject: Re: new C3 MRO patch
3898              From: "Brandon Black" <blblack@gmail.com>
3899              Date: Tue, 17 Apr 2007 13:14:36 -0500
3900              Message-ID: <84621a60704171114k29b0460el5b08ce5185d55ed5@mail.gmail.com>
3901      Branch: perl
3902            + lib/mro.pm mro.c t/mro/basic.t t/mro/basic_01_c3.t
3903            + t/mro/basic_01_dfs.t t/mro/basic_02_c3.t t/mro/basic_02_dfs.t
3904            + t/mro/basic_03_c3.t t/mro/basic_03_dfs.t t/mro/basic_04_c3.t
3905            + t/mro/basic_04_dfs.t t/mro/basic_05_c3.t t/mro/basic_05_dfs.t
3906            + t/mro/c3_with_overload.t t/mro/complex_c3.t
3907            + t/mro/complex_dfs.t t/mro/dbic_c3.t t/mro/dbic_dfs.t
3908            + t/mro/inconsistent_c3.t t/mro/method_caching.t
3909            + t/mro/next_method.t t/mro/next_method_edge_cases.t
3910            + t/mro/next_method_in_anon.t t/mro/next_method_in_eval.t
3911            + t/mro/next_method_skip.t t/mro/next_method_used_with_NEXT.t
3912            + t/mro/overload_c3.t t/mro/overload_dfs.t t/mro/recursion_c3.t
3913            + t/mro/recursion_dfs.t t/mro/vulcan_c3.t t/mro/vulcan_dfs.t
3914            ! MANIFEST Makefile.SH Makefile.micro NetWare/Makefile embed.fnc
3915            ! embed.h ext/B/t/b.t global.sym gv.c hv.c hv.h lib/constant.pm
3916            ! lib/overload.pm mg.c op.c perl.c pod/perlapi.pod pp_hot.c
3917            ! proto.h scope.c sv.c t/TEST t/op/magic.t universal.c
3918            ! vms/descrip_mms.template win32/Makefile win32/Makefile.ce
3919            ! win32/makefile.mk
3920 ____________________________________________________________________________
3921 [ 30979] By: steveh                                on 2007/04/19  12:15:30
3922         Log: Subject: [PATCH] Allow sending SIGINT to child processes on Windows *if* they are running Perl
3923              From: "Jan Dubois" <jand@activestate.com>
3924              Date: Mon, 16 Apr 2007 17:52:25 -0700
3925              Message-ID: <01e301c7808a$ac0cca30$04265e90$@com>
3926      Branch: perl
3927            ! win32/win32.c
3928 ____________________________________________________________________________
3929 [ 30978] By: steveh                                on 2007/04/19  07:54:42
3930         Log: Subject: [PATCH - again] Re: [perl #41574] cond_wait hang ups under MSWin32
3931              From: "Jerry D. Hedden" <jdhedden@cpan.org>
3932              Date: Wed, 18 Apr 2007 14:32:16 -0400
3933              Message-ID: <1ff86f510704181132qf94b413mfda6aaa0f347df28@mail.gmail.com>
3934              
3935              Makes the test "TODO" on Win32, where it is not reliable, and turns
3936              the 50 separate tests in one single test for less line noise
3937      Branch: perl
3938            ! ext/threads/shared/Changes ext/threads/shared/shared.pm
3939            ! ext/threads/shared/t/stress.t
3940 ____________________________________________________________________________
3941 [ 30977] By: merijn                                on 2007/04/18  19:04:40
3942         Log: 1. Move #30327 to the generation location
3943              2. Regen after backports
3944              3. Include Jarkko's $run and \n patch
3945      Branch: perl
3946            ! Configure Porting/config_h.pl config_h.SH
3947 ____________________________________________________________________________
3948 [ 30973] By: steveh                                on 2007/04/18  08:40:42
3949         Log: Add a test for the bug fixed by #30970
3950      Branch: perl
3951            + t/op/kill0.t
3952            ! MANIFEST
3953 ____________________________________________________________________________
3954 [ 30972] By: rgs                                   on 2007/04/18  08:36:24
3955         Log: Sys::Syslog was missing from Maintainers.pl
3956      Branch: perl
3957            ! Porting/Maintainers.pl
3958 ____________________________________________________________________________
3959 [ 30971] By: steveh                                on 2007/04/17  17:12:23
3960         Log: These test scripts probably wanted BEGIN blocks,
3961              not just blocks with "BEGIN:" labels.
3962      Branch: perl
3963            ! t/comp/multiline.t t/op/exec.t
3964 ____________________________________________________________________________
3965 [ 30970] By: steveh                                on 2007/04/17  11:13:23
3966         Log: Subject: [PATCH] Fix kill(0, $pid) on Windows
3967              From: "Jan Dubois" <jand@activestate.com>
3968              Date: Mon, 16 Apr 2007 17:35:48 -0700
3969              Message-ID: <01df01c78088$59718d30$0c54a790$@com>
3970              
3971              Fixes breakage caused by #29605.
3972      Branch: perl
3973            ! win32/win32.c
3974 ____________________________________________________________________________
3975 [ 30969] By: nicholas                              on 2007/04/16  16:17:05
3976         Log: Remove the "performance hack" that suppressed used only once warnings
3977              for files in the standard library.
3978      Branch: perl
3979            ! gv.c
3980 ____________________________________________________________________________
3981 [ 30968] By: merijn                                on 2007/04/16  15:01:31
3982         Log: Subject: Re: [PATCH] Mention sorting MANIFEST in perlhack.pod
3983              From: "Jerry D. Hedden" <jdhedden@cpan.org>
3984              Date: Mon, 16 Apr 2007 10:44:36 -0400
3985              Message-ID: <1ff86f510704160744j9ae934cv9fef077afe3ca516@mail.gmail.com>
3986      Branch: perl
3987            ! pod/perlhack.pod
3988 ____________________________________________________________________________
3989 [ 30967] By: rgs                                   on 2007/04/16  13:37:05
3990         Log: Subject: [PATCH] Re: Thread.t hangs, even under normal test...
3991              From: "Jerry D. Hedden" <jdhedden@gmail.com>
3992              Date: Mon, 16 Apr 2007 09:31:39 -0400
3993              Message-ID: <1ff86f510704160631ue286a97kb66a0ce649c9aae4@mail.gmail.com>
3994      Branch: perl
3995            ! lib/Thread.t
3996 ____________________________________________________________________________
3997 [ 30966] By: merijn                                on 2007/04/16  11:44:54
3998         Log: Subject: [PATCH] sv.c: %d ne size_t
3999              From: Jarkko Hietaniemi <jhi@cc.hut.fi>
4000              Date: Mon, 16 Apr 2007 14:31:42 +0300 (EEST)
4001              Message-Id: <200704161131.l3GBVg3n104476@kosh.hut.fi>
4002      Branch: perl
4003            ! sv.c
4004 ____________________________________________________________________________
4005 [ 30965] By: davem                                 on 2007/04/15  23:33:13
4006         Log: fix casting warning in pp_ord()
4007      Branch: perl
4008            ! pp.c
4009 ____________________________________________________________________________
4010 [ 30964] By: davem                                 on 2007/04/15  23:24:21
4011         Log: get rid of warning due to empty dangling else in malloc.c
4012      Branch: perl
4013            ! malloc.c
4014 ____________________________________________________________________________
4015 [ 30963] By: davem                                 on 2007/04/15  21:10:55
4016         Log: follow PL_watchaddr when cloning a thread
4017      Branch: perl
4018            ! sv.c
4019 ____________________________________________________________________________
4020 [ 30962] By: davem                                 on 2007/04/15  16:32:42
4021         Log: with DEBUG_LEAKING_SCALARS, dump multiply-freed scalars
4022      Branch: perl
4023            ! sv.c
4024 ____________________________________________________________________________
4025 [ 30958] By: nicholas                              on 2007/04/15  12:37:44
4026         Log: Remove wince/ from checkcfgvar.pl, now that it is gone in 5.8.x too.
4027      Branch: perl
4028            ! Porting/checkcfgvar.pl
4029 ____________________________________________________________________________
4030 [ 30957] By: rgs                                   on 2007/04/15  12:35:38
4031         Log: Add the Default Unicode Collation Element Table for UCD 5.0.0
4032              to Unicode::Collate
4033      Branch: perl
4034            + lib/Unicode/Collate/allkeys.txt
4035            ! MANIFEST
4036 ____________________________________________________________________________
4037 [ 30955] By: rgs                                   on 2007/04/15  07:26:28
4038         Log: Change prototype of async() to be compatible with the one
4039              of threads::async()
4040      Branch: perl
4041            ! lib/Thread.pm
4042 ____________________________________________________________________________
4043 [ 30954] By: rgs                                   on 2007/04/15  07:16:44
4044         Log: Subject: [PATCH] Remove 5005threads from Thread.pm
4045              From: "Jerry D. Hedden" <jdhedden@cpan.org>
4046              Date: Fri, 13 Apr 2007 13:19:26 -0400
4047              Message-ID: <1ff86f510704131019i3ea1f99es7067ba2ef60171ca@mail.gmail.com>
4048      Branch: perl
4049            ! lib/Thread.pm
4050 ____________________________________________________________________________
4051 [ 30953] By: rgs                                   on 2007/04/15  07:12:33
4052         Log: Subject: [PATCH] Fix Thread.pm
4053              From: "Jerry D. Hedden" <jdhedden@cpan.org>
4054              Date: Fri, 13 Apr 2007 12:51:40 -0400
4055              Message-ID: <1ff86f510704130951t5f66baa0m4ed13018539976a3@mail.gmail.com>
4056      Branch: perl
4057            + lib/Thread.t
4058            ! MANIFEST lib/Thread.pm
4059 ____________________________________________________________________________
4060 [ 30952] By: davem                                 on 2007/04/14  21:53:17
4061         Log: Move PL_comppad nulling from do_clean_all to sv_clear
4062      Branch: perl
4063            ! sv.c
4064 ____________________________________________________________________________
4065 [ 30951] By: merijn                                on 2007/04/14  20:52:56
4066         Log: Typo in croak message
4067      Branch: perl
4068            ! universal.c
4069 ____________________________________________________________________________
4070 [ 30950] By: merijn                                on 2007/04/14  17:38:23
4071         Log: Subject: [PATCH pod/perlfunc.pod] Typo in =item say
4072              From: Abigail <abigail@abigail.be>
4073              Date: Sat, 14 Apr 2007 19:22:41 +0200
4074              Message-ID: <20070414172241.GB3191@abigail.nl>
4075      Branch: perl
4076            ! pod/perlfunc.pod
4077 ____________________________________________________________________________
4078 [ 30943] By: rgs                                   on 2007/04/13  12:14:06
4079         Log: Subject: RE: [PATCH] Restore Win64 compilation with the Windows Platform SDK
4080              From: "Jan Dubois" <jand@activestate.com>
4081              Date: Tue, 10 Apr 2007 16:49:21 -0700
4082              Message-ID: <001b01c77bca$dcae7720$960b6560$@com>
4083      Branch: perl
4084            ! lib/ExtUtils/CBuilder/Platform/Windows.pm
4085 ____________________________________________________________________________
4086 [ 30940] By: nicholas                              on 2007/04/12  21:03:08
4087         Log: Bump the VERSION of ExtUtils::Constant::Base.
4088      Branch: perl
4089            ! lib/ExtUtils/Constant/Base.pm
4090 ____________________________________________________________________________
4091 [ 30939] By: nicholas                              on 2007/04/12  20:45:21
4092         Log: PL_madskills is a bool, so save it as one (else Solaris rightly
4093              SIGBUSes)
4094      Branch: perl
4095            ! pp_ctl.c
4096 ____________________________________________________________________________
4097 [ 30936] By: nicholas                              on 2007/04/12  18:52:49
4098         Log: Fix two errors in the OP debugging code. Now all test errors relate
4099              to newCONSTSUB().
4100      Branch: perl
4101            ! op.c sv.c
4102 ____________________________________________________________________________
4103 [ 30932] By: rgs                                   on 2007/04/12  15:54:33
4104         Log: Subject: Re: [PATCH] Add CPANPLUS 0.78 to the core
4105              From: demerphq <demerphq@gmail.com>
4106              Date: Tue, 10 Apr 2007 18:31:28 +0200
4107              Message-ID: <9b18b3110704100931t5c0c97e0n9d3c059e6f404dd5@mail.gmail.com>
4108      Branch: perl
4109            ! lib/ExtUtils/MM_Unix.pm
4110 ____________________________________________________________________________
4111 [ 30931] By: nicholas                              on 2007/04/12  15:51:58
4112         Log: Change 18797 (Patch for [perl #9402], known also as "glibc _moddi3 bug
4113              with negative quads", or also as RedHat bug #65612.) was a bit brute
4114              force. In reality, we don't need to have an auto-detecting pp_i_modulo
4115              unless we're compiled with 64 bit IVs and on glibc.
4116      Branch: perl
4117            ! pp.c
4118 ____________________________________________________________________________
4119 [ 30926] By: rgs                                   on 2007/04/12  14:50:04
4120         Log: Run buildtoc --build-all
4121      Branch: perl
4122            ! MANIFEST pod/perltoc.pod vms/descrip_mms.template
4123            ! win32/pod.mak
4124 ____________________________________________________________________________
4125 [ 30925] By: rgs                                   on 2007/04/12  14:37:35
4126         Log: Subject: [PATCH] Add $VERSION to Module::Build::Version
4127              From: "Jerry D. Hedden" <jdhedden@cpan.org>
4128              Date: Wed, 11 Apr 2007 12:45:19 -0400
4129              Message-ID: <1ff86f510704110945q173f2ac8p399171428fd182cd@mail.gmail.com>
4130      Branch: perl
4131            ! lib/Module/Build/Version.pm
4132 ____________________________________________________________________________
4133 [ 30923] By: rgs                                   on 2007/04/12  14:33:33
4134         Log: Upgrade to Archive::Extract 0.18
4135      Branch: perl
4136            ! lib/Archive/Extract.pm
4137            ! lib/Archive/Extract/t/src/double_dir.zip.packed
4138            ! lib/Archive/Extract/t/src/x.bz2.packed
4139            ! lib/Archive/Extract/t/src/x.gz.packed
4140            ! lib/Archive/Extract/t/src/x.jar.packed
4141            ! lib/Archive/Extract/t/src/x.par.packed
4142            ! lib/Archive/Extract/t/src/x.tar.gz.packed
4143            ! lib/Archive/Extract/t/src/x.tar.packed
4144            ! lib/Archive/Extract/t/src/x.tgz.packed
4145            ! lib/Archive/Extract/t/src/x.zip.packed
4146            ! lib/Archive/Extract/t/src/y.jar.packed
4147            ! lib/Archive/Extract/t/src/y.par.packed
4148            ! lib/Archive/Extract/t/src/y.tar.bz2.packed
4149            ! lib/Archive/Extract/t/src/y.tar.gz.packed
4150            ! lib/Archive/Extract/t/src/y.tar.packed
4151            ! lib/Archive/Extract/t/src/y.tbz.packed
4152            ! lib/Archive/Extract/t/src/y.tgz.packed
4153            ! lib/Archive/Extract/t/src/y.zip.packed
4154 ____________________________________________________________________________
4155 [ 30922] By: rgs                                   on 2007/04/12  14:27:23
4156         Log: Add the perlreapi man page, by Ã†var Arnfjörð Bjarmason
4157              (largely from perlreguts)
4158      Branch: perl
4159            + pod/perlreapi.pod
4160            ! MANIFEST pod.lst pod/perl.pod pod/perlreguts.pod
4161            ! vms/descrip_mms.template win32/pod.mak
4162 ____________________________________________________________________________
4163 [ 30921] By: rgs                                   on 2007/04/12  14:05:17
4164         Log: Subject: Re: [PATCH] extflags/pmflags Change 30841, in dump.c:pm_description regex does not have to exist
4165              From: avarab@gmail.com
4166              Date: Wed, 11 Apr 2007 20:54:43 +0000
4167              Message-ID: <51dd1af80704111354h4bbd0212hc96a9f1911d2ffb4@mail.gmail.com>
4168      Branch: perl
4169            ! dump.c
4170 ____________________________________________________________________________
4171 [ 30920] By: rgs                                   on 2007/04/12  13:57:49
4172         Log: Subject: Re: [PATCH] perlreguts.pod: use the unicode name for ÃŸ and show the codepoint
4173              From: avarab@gmail.com
4174              Date: Fri, 6 Apr 2007 21:41:57 +0000
4175              Message-ID: <51dd1af80704061441v4b972257ta4c95230bdbc47c5@mail.gmail.com>
4176      Branch: perl
4177            ! pod/perlreguts.pod
4178 ____________________________________________________________________________
4179 [ 30919] By: nicholas                              on 2007/04/12  11:57:26
4180         Log: When removing the test program source, also remove the compiled
4181              executable.
4182      Branch: perl
4183            ! Configure
4184 ____________________________________________________________________________
4185 [ 30918] By: merijn                                on 2007/04/12  06:15:36
4186         Log: Subject: [PATCH] g++ in Tru64: align sockaddr and sockaddr_in defs
4187              From: Jarkko Hietaniemi <jhi@cc.hut.fi>
4188              Date: Thu, 12 Apr 2007 05:19:30 +0300 (EEST)
4189              Message-Id: <200704120219.l3C2JUGZ294947@kosh.hut.fi>
4190      Branch: perl
4191            ! hints/dec_osf.sh
4192 ____________________________________________________________________________
4193 [ 30915] By: nicholas                              on 2007/04/11  19:48:36
4194         Log: For symbolic references test the defined path through the pp functions.
4195      Branch: perl
4196            ! t/op/ref.t
4197 ____________________________________________________________________________
4198 [ 30913] By: nicholas                              on 2007/04/11  17:51:02
4199         Log: Be a bit more specific in what our second typeglob isn't. It is actually
4200              expected to be undef.
4201      Branch: perl
4202            ! t/op/ref.t
4203 ____________________________________________________________________________
4204 [ 30912] By: stevep                                on 2007/04/11  17:16:00
4205         Log: Fix spelling nit.
4206      Branch: perl
4207            ! ext/POSIX/t/posix.t
4208 ____________________________________________________________________________
4209 [ 30910] By: nicholas                              on 2007/04/11  14:15:19
4210         Log: Run pod/buildtoc --build-all
4211      Branch: perl
4212            ! MANIFEST pod/perltoc.pod vms/descrip_mms.template
4213 ____________________________________________________________________________
4214 [ 30909] By: nicholas                              on 2007/04/11  14:09:31
4215         Log: perl5.9.5delta is about 5, not 4.
4216      Branch: perl
4217            ! pod.lst
4218 ____________________________________________________________________________
4219 [ 30908] By: nicholas                              on 2007/04/11  13:52:43
4220         Log: Update MANIFEST to include 3 files added in change 30893.
4221      Branch: perl
4222            ! MANIFEST
4223 ____________________________________________________________________________
4224 [ 30907] By: rgs                                   on 2007/04/11  13:08:49
4225         Log: Subject: [PATCH] Correct Shell.pm POD regarding $Shell::capture_stderr
4226              From: "Jerry D. Hedden" <jdhedden@cpan.org>
4227              Date: Tue, 10 Apr 2007 13:54:10 -0400
4228              Message-ID: <1ff86f510704101054q2ccc7c10l66d62971716877f9@mail.gmail.com>
4229      Branch: perl
4230            ! lib/Shell.pm
4231 ____________________________________________________________________________
4232 [ 30906] By: rgs                                   on 2007/04/11  13:06:49
4233         Log: Add Shell.pm to the list of dual-life modules
4234      Branch: perl
4235            ! Porting/Maintainers.pl
4236 ____________________________________________________________________________
4237 [ 30905] By: rgs                                   on 2007/04/11  13:05:28
4238         Log: Upgrade to Shell 0.72 (noticed by Jerry D. Hedden)
4239      Branch: perl
4240            ! lib/Shell.pm lib/Shell.t
4241 ____________________________________________________________________________
4242 [ 30904] By: nicholas                              on 2007/04/11  08:02:43
4243         Log: If the test programs for strtoul(), strtoull() or strtouq() fail, don't
4244              assume that the functions work.
4245      Branch: perl
4246            ! Configure
4247 ____________________________________________________________________________
4248 [ 30903] By: nicholas                              on 2007/04/11  07:39:21
4249         Log: Work round what appears to be a bug in Sun C++ 5.8 2005/10/13
4250              If we just cast GvSVn(gv) to void, it ignores evaluating it for
4251              its side effect.
4252      Branch: perl
4253            ! gv.c
4254 ____________________________________________________________________________
4255 [ 30902] By: craigb                                on 2007/04/11  04:08:47
4256         Log: Fully VMSify CPANPLUS util names following #30885
4257      Branch: perl
4258            ! vms/descrip_mms.template
4259 ____________________________________________________________________________
4260 [ 30900] By: nicholas                              on 2007/04/10  19:39:01
4261         Log: Silence the g++ warnings "right-hand operand of comma has no effect"
4262      Branch: perl
4263            ! perl.c perly.act perly.h perly.tab perly.y regcomp.c
4264 ____________________________________________________________________________
4265 [ 30898] By: nicholas                              on 2007/04/10  18:56:17
4266         Log: Cast needed to get POSIX compiling with g++ on FreeBSD.
4267      Branch: perl
4268            ! ext/POSIX/POSIX.xs
4269 ____________________________________________________________________________
4270 [ 30897] By: nicholas                              on 2007/04/10  18:30:04
4271         Log: Make the don't-use-nm symbol table probes work under C++.
4272      Branch: perl
4273            ! Configure
4274 ____________________________________________________________________________
4275 [ 30896] By: stevep                                on 2007/04/10  16:36:08
4276         Log: Version change to ExtUtils::MM_Unix missed in change #30380.
4277      Branch: perl
4278            ! lib/ExtUtils/MM_Unix.pm
4279 ____________________________________________________________________________
4280 [ 30895] By: stevep                                on 2007/04/10  16:23:10
4281         Log: Somehow, version.pm was missed from change #30629.
4282      Branch: perl
4283            ! lib/version.pm
4284 ____________________________________________________________________________
4285 [ 30894] By: nicholas                              on 2007/04/10  16:11:41
4286         Log: Undo the non-maint part of change 30816. Silly Nicholas.
4287      Branch: perl
4288            ! hints/freebsd.sh
4289 ____________________________________________________________________________
4290 [ 30893] By: stevep                                on 2007/04/10  15:44:51
4291         Log: Upgrade to Module-Build-0.2807
4292      Branch: perl
4293            + lib/Module/Build/t/new_from_context.t
4294            + lib/Module/Build/t/test_type.t lib/Module/Build/t/test_types.t
4295            ! lib/Module/Build.pm lib/Module/Build/API.pod
4296            ! lib/Module/Build/Base.pm lib/Module/Build/ModuleInfo.pm
4297            ! lib/Module/Build/Version.pm lib/Module/Build/YAML.pm
4298            ! lib/Module/Build/t/extend.t lib/Module/Build/t/lib/MBTest.pm
4299            ! lib/Module/Build/t/manifypods.t lib/Module/Build/t/metadata.t
4300            ! lib/Module/Build/t/moduleinfo.t lib/Module/Build/t/ppm.t
4301            ! lib/Module/Build/t/tilde.t
4302 ____________________________________________________________________________
4303 [ 30891] By: nicholas                              on 2007/04/10  14:49:31
4304         Log: S_forget_pmop() only needs a flags argument for the ithreads case,
4305              because PmopSTASH_free() is a no-op in an unthreaded perl.
4306      Branch: perl
4307            ! embed.fnc embed.h op.c op.h proto.h
4308 ____________________________________________________________________________
4309 [ 30888] By: nicholas                              on 2007/04/10  11:48:07
4310         Log: If PL_curpm is pointing to an op that is getting freed, reset it to
4311              NULL. Otherwise we have a pointer dangling into undefined behaviour.
4312      Branch: perl
4313            ! op.c
4314 ____________________________________________________________________________
4315 [ 30887] By: rgs                                   on 2007/04/10  09:43:34
4316         Log: Could someone explain why this file was added twice.
4317      Branch: perl
4318            ! ext/threads/shared/t/stress.t
4319 ____________________________________________________________________________
4320 [ 30886] By: rgs                                   on 2007/04/10  09:41:00
4321         Log: Upgrade to threads::shared 1.09 :
4322              - Fix casting issue under MSWin32
4323              - Modify stress test to not hang under MSWin32
4324      Branch: perl
4325            + ext/threads/shared/t/stress.t
4326            ! MANIFEST ext/threads/shared/Changes ext/threads/shared/README
4327            ! ext/threads/shared/shared.pm ext/threads/shared/shared.xs
4328            ! ext/threads/shared/t/cond.t
4329 ____________________________________________________________________________
4330 [ 30885] By: rgs                                   on 2007/04/10  09:23:43
4331         Log: Add the new CPANPLUS utilities to the VMS build process.
4332      Branch: perl
4333            ! vms/descrip_mms.template
4334 ____________________________________________________________________________
4335 [ 30884] By: rgs                                   on 2007/04/10  07:44:50
4336         Log: Sync MANIFEST. Files have disappeared ?
4337      Branch: perl
4338            ! MANIFEST
4339 ____________________________________________________________________________
4340 [ 30883] By: rgs                                   on 2007/04/10  07:42:33
4341         Log: Add CPANPLUS 0.78
4342      Branch: perl
4343            + lib/CPANPLUS.pm lib/CPANPLUS/Backend.pm
4344            + lib/CPANPLUS/Backend/RV.pm lib/CPANPLUS/Config.pm
4345            + lib/CPANPLUS/Configure.pm lib/CPANPLUS/Configure/Setup.pm
4346            + lib/CPANPLUS/Dist.pm lib/CPANPLUS/Dist/Base.pm
4347            + lib/CPANPLUS/Dist/MM.pm lib/CPANPLUS/Dist/Sample.pm
4348            + lib/CPANPLUS/Error.pm lib/CPANPLUS/FAQ.pod
4349            + lib/CPANPLUS/Hacking.pod lib/CPANPLUS/Internals.pm
4350            + lib/CPANPLUS/Internals/Constants.pm
4351            + lib/CPANPLUS/Internals/Constants/Report.pm
4352            + lib/CPANPLUS/Internals/Extract.pm
4353            + lib/CPANPLUS/Internals/Fetch.pm
4354            + lib/CPANPLUS/Internals/Report.pm
4355            + lib/CPANPLUS/Internals/Search.pm
4356            + lib/CPANPLUS/Internals/Source.pm
4357            + lib/CPANPLUS/Internals/Utils.pm
4358            + lib/CPANPLUS/Internals/Utils/Autoflush.pm
4359            + lib/CPANPLUS/Module.pm lib/CPANPLUS/Module/Author.pm
4360            + lib/CPANPLUS/Module/Author/Fake.pm
4361            + lib/CPANPLUS/Module/Checksums.pm lib/CPANPLUS/Module/Fake.pm
4362            + lib/CPANPLUS/Module/Signature.pm lib/CPANPLUS/Selfupdate.pm
4363            + lib/CPANPLUS/Shell.pm lib/CPANPLUS/Shell/Classic.pm
4364            + lib/CPANPLUS/Shell/Default.pm
4365            + lib/CPANPLUS/Shell/Default/Plugins/HOWTO.pod
4366            + lib/CPANPLUS/Shell/Default/Plugins/Remote.pm
4367            + lib/CPANPLUS/Shell/Default/Plugins/Source.pm
4368            + lib/CPANPLUS/bin/cpan2dist lib/CPANPLUS/bin/cpanp
4369            + lib/CPANPLUS/bin/cpanp-run-perl lib/CPANPLUS/inc.pm
4370            + lib/CPANPLUS/t/00_CPANPLUS-Inc.t
4371            + lib/CPANPLUS/t/00_CPANPLUS-Internals-Utils.t
4372            + lib/CPANPLUS/t/01_CPANPLUS-Configure.t
4373            + lib/CPANPLUS/t/02_CPANPLUS-Internals.t
4374            + lib/CPANPLUS/t/03_CPANPLUS-Internals-Source.t
4375            + lib/CPANPLUS/t/04_CPANPLUS-Module.t
4376            + lib/CPANPLUS/t/05_CPANPLUS-Internals-Fetch.t
4377            + lib/CPANPLUS/t/06_CPANPLUS-Internals-Constants.t
4378            + lib/CPANPLUS/t/07_CPANPLUS-Internals-Extract.t
4379            + lib/CPANPLUS/t/08_CPANPLUS-Backend.t
4380            + lib/CPANPLUS/t/09_CPANPLUS-Internals-Search.t
4381            + lib/CPANPLUS/t/10_CPANPLUS-Error.t
4382            + lib/CPANPLUS/t/19_CPANPLUS-Dist.t
4383            + lib/CPANPLUS/t/20_CPANPLUS-Dist-MM.t
4384            + lib/CPANPLUS/t/21_CPANPLUS-Dist-No-Build.t
4385            + lib/CPANPLUS/t/30_CPANPLUS-Internals-Selfupdate.t
4386            + lib/CPANPLUS/t/40_CPANPLUS-Internals-Report.t
4387            + lib/CPANPLUS/t/dummy-CPAN/authors/01mailrc.txt.gz.packed
4388            + lib/CPANPLUS/t/dummy-CPAN/authors/id/E/EU/EUNOXS/Bundle-Foo-Ba
4389            + r-0.01.tar.gz.packed
4390            + lib/CPANPLUS/t/dummy-CPAN/authors/id/E/EU/EUNOXS/CHECKSUMS
4391            + lib/CPANPLUS/t/dummy-CPAN/authors/id/E/EU/EUNOXS/Foo-Bar-0.01.
4392            + readme
4393            + lib/CPANPLUS/t/dummy-CPAN/authors/id/E/EU/EUNOXS/Foo-Bar-0.01.
4394            + tar.gz.packed
4395            + lib/CPANPLUS/t/dummy-CPAN/authors/id/E/EU/EUNOXS/perl5.005_03.
4396            + tar.gz.packed
4397            + lib/CPANPLUS/t/dummy-CPAN/authors/id/E/EU/EUXS/CHECKSUMS
4398            + lib/CPANPLUS/t/dummy-CPAN/authors/id/E/EU/EUXS/Foo-Bar-0.01.re
4399            + adme
4400            + lib/CPANPLUS/t/dummy-CPAN/authors/id/E/EU/EUXS/Foo-Bar-0.01.ta
4401            + r.gz.packed
4402            + lib/CPANPLUS/t/dummy-CPAN/authors/id/M/MB/MBNOXS/CHECKSUMS
4403            + lib/CPANPLUS/t/dummy-CPAN/authors/id/M/MB/MBNOXS/Foo-Bar-0.01.
4404            + readme
4405            + lib/CPANPLUS/t/dummy-CPAN/authors/id/M/MB/MBNOXS/Foo-Bar-0.01.
4406            + tar.gz.packed
4407            + lib/CPANPLUS/t/dummy-CPAN/authors/id/M/MB/MBXS/CHECKSUMS
4408            + lib/CPANPLUS/t/dummy-CPAN/authors/id/M/MB/MBXS/Foo-Bar-0.01.re
4409            + adme
4410            + lib/CPANPLUS/t/dummy-CPAN/authors/id/M/MB/MBXS/Foo-Bar-0.01.ta
4411            + r.gz.packed
4412            + lib/CPANPLUS/t/dummy-CPAN/modules/02packages.details.txt.gz.pa
4413            + cked
4414            + lib/CPANPLUS/t/dummy-CPAN/modules/03modlist.data.gz.packed
4415            + lib/CPANPLUS/t/dummy-localmirror/01mailrc.txt.gz.packed
4416            + lib/CPANPLUS/t/dummy-localmirror/02packages.details.txt.gz.pac
4417            + ked lib/CPANPLUS/t/dummy-localmirror/03modlist.data.gz.packed
4418            + lib/CPANPLUS/t/dummy-localmirror/authors/id/E/EU/EUNOXS/Bundle
4419            + -Foo-Bar-0.01.tar.gz.packed
4420            + lib/CPANPLUS/t/dummy-localmirror/authors/id/E/EU/EUNOXS/CHECKS
4421            + UMS
4422            + lib/CPANPLUS/t/dummy-localmirror/authors/id/E/EU/EUNOXS/Foo-Ba
4423            + r-0.01.tar.gz.packed
4424            + lib/CPANPLUS/t/dummy-localmirror/authors/id/E/EU/EUNOXS/perl5.
4425            + 005_03.tar.gz.packed
4426            + lib/CPANPLUS/t/dummy-localmirror/authors/id/E/EU/EUXS/CHECKSUM
4427            + S
4428            + lib/CPANPLUS/t/dummy-localmirror/authors/id/E/EU/EUXS/Foo-Bar-
4429            + 0.01.tar.gz.packed
4430            + lib/CPANPLUS/t/dummy-localmirror/authors/id/M/MB/MBNOXS/CHECKS
4431            + UMS
4432            + lib/CPANPLUS/t/dummy-localmirror/authors/id/M/MB/MBNOXS/Foo-Ba
4433            + r-0.01.tar.gz.packed
4434            + lib/CPANPLUS/t/dummy-localmirror/authors/id/M/MB/MBXS/CHECKSUM
4435            + S
4436            + lib/CPANPLUS/t/dummy-localmirror/authors/id/M/MB/MBXS/Foo-Bar-
4437            + 0.01.tar.gz.packed lib/CPANPLUS/t/inc/conf.pl
4438            + utils/cpan2dist.PL utils/cpanp-run-perl.PL utils/cpanp.PL
4439            ! MANIFEST installperl utils.lst utils/Makefile win32/Makefile
4440            ! win32/makefile.mk
4441 ____________________________________________________________________________
4442 [ 30882] By: rgs                                   on 2007/04/10  06:46:54
4443         Log: Fix new tests
4444      Branch: perl
4445            ! t/op/pat.t
4446 ____________________________________________________________________________
4447 [ 30881] By: stevep                                on 2007/04/10  02:53:34
4448         Log: Subject: Re: [PATCH] length() on magic capture variables
4449              From: "Ævar Arnfjörð Bjarmason" <avarab@gmail.com>
4450              Date: Mon, 9 Apr 2007 22:02:42 +0000
4451              Message-ID: <51dd1af80704091502m19130c28y29e6e656516fabfd@mail.gmail.com>
4452      Branch: perl
4453            ! t/op/pat.t
4454 ____________________________________________________________________________
4455 [ 30880] By: stevep                                on 2007/04/10  02:49:07
4456         Log: Subject: [PATCH] Test for the qr// construct
4457              From: "Ævar Arnfjörð Bjarmason" <avarab@gmail.com>
4458              Date: Mon, 9 Apr 2007 20:36:58 +0000
4459              Message-ID: <51dd1af80704091336q335f0584o602b5e245bc210fe@mail.gmail.com>
4460              
4461              Includes add to the MANIFEST
4462      Branch: perl
4463            + t/op/qr.t
4464            ! MANIFEST
4465 ____________________________________________________________________________
4466 [ 30879] By: stevep                                on 2007/04/10  02:37:04
4467         Log: Subject: [PATCH] Cast markstack values to I32
4468              From: Jan Dubois <jand@ActiveState.com>
4469              Date: Mon, 09 Apr 2007 18:11:32 -0700
4470              Message-ID: <prol131i8b27re246alnhmem4mj13fcl2b@4ax.com>
4471      Branch: perl
4472            ! XSUB.h pp.h
4473 ____________________________________________________________________________
4474 [ 30878] By: stevep                                on 2007/04/10  02:30:38
4475         Log: Subject: [PATCH] Restore Win64 compilation with the Windows Platform SDK
4476              From: Jan Dubois <jand@ActiveState.com>
4477              Date: Mon, 09 Apr 2007 17:27:17 -0700
4478              Message-ID: <4kll13df3tndn8alp54gi9ur9jmq063aij@4ax.com>   
4479      Branch: perl
4480            ! lib/ExtUtils/MM_Win32.pm win32/win32.c
4481 ____________________________________________________________________________
4482 [ 30877] By: stevep                                on 2007/04/10  02:18:24
4483         Log: Upgrade to bignum-0.20 and Math-BigRat-0.18.
4484      Branch: perl
4485            + lib/bignum/t/bigexp.t
4486            ! MANIFEST lib/Math/BigRat.pm lib/bignum.pm
4487 ____________________________________________________________________________
4488 [ 30876] By: stevep                                on 2007/04/10  02:11:02
4489         Log: Subject: BigInt, FastCalc, BitRat, bignum released to CPAN [PATCH]
4490              From: Tels <nospam-abuse@bloodgate.com>
4491              Date: Mon, 9 Apr 2007 20:59:22 +0000
4492              Message-Id: <200704092059.24058@bloodgate.com>
4493      Branch: perl
4494            ! ext/Math/BigInt/FastCalc/FastCalc.pm
4495            ! ext/Math/BigInt/FastCalc/FastCalc.xs
4496            ! ext/Math/BigInt/FastCalc/t/leak.t lib/Math/BigFloat.pm
4497            ! lib/Math/BigInt.pm lib/Math/BigInt/t/biglog.t
4498            ! lib/Math/BigInt/t/fallback.t
4499 ____________________________________________________________________________
4500 [ 30875] By: stevep                                on 2007/04/09  14:06:22
4501         Log: Upgrade to CPAN-1.90.
4502      Branch: perl
4503            ! lib/CPAN.pm lib/CPAN/FirstTime.pm lib/CPAN/Queue.pm
4504 ____________________________________________________________________________
4505 [ 30871] By: rgs                                   on 2007/04/08  07:58:39
4506         Log: Subject: [PATCH] RXf_WHITE never used due to small bug in regcomp.c
4507              From: "=?UTF-8?Q?=C3=86var_Arnfj=C3=B6r=C3=B0_Bjarmason?=" <avarab@gmail.com>
4508              Date: Sat, 7 Apr 2007 00:17:05 +0000
4509              Message-ID: <51dd1af80704061717s44107fb9jf468ef28080d33a6@mail.gmail.com>
4510      Branch: perl
4511            ! regcomp.c
4512 ____________________________________________________________________________
4513 [ 30870] By: rgs                                   on 2007/04/08  07:55:04
4514         Log: Subject: [PATCH] makedepend.SH syntax error
4515              From: "Yitzchak Scott-Thoennes" <sthoenna@efn.org>
4516              Date: Sat, 7 Apr 2007 23:32:44 -0700 (PDT)
4517              Message-ID: <41520.67.40.29.216.1176013964.squirrel@webmail.efn.org>
4518      Branch: perl
4519            ! makedepend.SH
4520 ____________________________________________________________________________
4521 [ 30869] By: nicholas                              on 2007/04/07  21:36:19
4522         Log: Upgrade to Module-Pluggable 3.6
4523      Branch: perl
4524            ! lib/Module/Pluggable.pm lib/Module/Pluggable/Object.pm
4525 ____________________________________________________________________________
4526 [ 30868] By: nicholas                              on 2007/04/07  20:43:14
4527         Log: Ensure PL_last_in_gv doesn't end up pointing to garbage by NULLing it
4528              if the GV it is pointing to gets freed.
4529      Branch: perl
4530            ! sv.c
4531 ____________________________________________________________________________
4532 [ 30867] By: nicholas                              on 2007/04/07  17:14:11
4533         Log: Under PERL_DEBUG_READONLY_OPS don't panic if you can't find the slab
4534              being freed. Also, need to set the slab to read/write before
4535              incrementing or decrementing an op's reference count.
4536              With this we can build all extentions, and run test_harness.
4537      Branch: perl
4538            ! embed.fnc op.c op.h proto.h
4539 ____________________________________________________________________________
4540 [ 30866] By: nicholas                              on 2007/04/07  12:45:44
4541         Log: Upgrade to Encode 2.19
4542      Branch: perl
4543            ! ext/Encode/AUTHORS ext/Encode/Changes ext/Encode/Encode.pm
4544            ! ext/Encode/Encode.xs ext/Encode/bin/piconv
4545            ! ext/Encode/encoding.pm ext/Encode/lib/Encode/Alias.pm
4546            ! ext/Encode/lib/Encode/CJKConstants.pm
4547            ! ext/Encode/lib/Encode/JP/H2Z.pm
4548            ! ext/Encode/lib/Encode/JP/JIS7.pm
4549            ! ext/Encode/lib/Encode/MIME/Header.pm
4550            ! ext/Encode/lib/Encode/Unicode/UTF7.pm ext/Encode/t/Aliases.t
4551            ! ext/Encode/t/mime-header.t
4552 ____________________________________________________________________________
4553 [ 30865] By: nicholas                              on 2007/04/07  12:15:40
4554         Log: Turn op_pmreplroot in struct pmop into a real union.
4555      Branch: perl
4556            ! dump.c ext/B/B.xs op.c op.h pp.c pp_hot.c
4557 ____________________________________________________________________________
4558 [ 30863] By: nicholas                              on 2007/04/07  10:48:08
4559         Log: Remove a now un-needed goto from Perl_peep().
4560      Branch: perl
4561            ! op.c
4562 ____________________________________________________________________________
4563 [ 30862] By: nicholas                              on 2007/04/07  10:43:37
4564         Log: Rejig Perl_peep() to assume that ops are optimised by default. The
4565              source code is simpler, and the object code slightly smaller.
4566      Branch: perl
4567            ! op.c
4568 ____________________________________________________________________________
4569 [ 30861] By: nicholas                              on 2007/04/07  08:32:46
4570         Log: Re-ordering OP_STUB in the switch statement in Perl_peep saves a goto.
4571      Branch: perl
4572            ! op.c
4573 ____________________________________________________________________________
4574 [ 30860] By: nicholas                              on 2007/04/06  23:31:14
4575         Log: Merge op_pmreplstart and op_pmstash/op_pmstashpv into a union in
4576              PMOP, as both pointers never need to be set at the same time.
4577      Branch: perl
4578            ! dump.c ext/B/B.xs op.c op.h pp_ctl.c
4579 ____________________________________________________________________________
4580 [ 30859] By: nicholas                              on 2007/04/06  22:32:02
4581         Log: assert() that OP_QR and OP_MATCH never set op_pmreplstart, which
4582              simplifies the peep hole optimiser slightly.
4583      Branch: perl
4584            ! op.c
4585 ____________________________________________________________________________
4586 [ 30858] By: nicholas                              on 2007/04/06  22:08:20
4587         Log: Add editor block.
4588      Branch: perl
4589            ! op.h
4590 ____________________________________________________________________________
4591 [ 30857] By: nicholas                              on 2007/04/06  21:53:46
4592         Log: Only append ?? match ops to the list used by reset. This saves memory
4593              and time.
4594      Branch: perl
4595            ! op.c op.h toke.c
4596 ____________________________________________________________________________
4597 [ 30856] By: nicholas                              on 2007/04/06  20:57:34
4598         Log: Avoid accessing free()d memory when calling reset in one thread, after
4599              deleting pattern match ops in another thread.
4600      Branch: perl
4601            ! embed.fnc embed.h op.c proto.h t/op/reset.t
4602 ____________________________________________________________________________
4603 [ 30855] By: nicholas                              on 2007/04/06  20:46:47
4604         Log: Give accurate failure diagnostics when unlike() fails.
4605      Branch: perl
4606            ! t/test.pl
4607 ____________________________________________________________________________
4608 [ 30854] By: nicholas                              on 2007/04/06  20:17:14
4609         Log: Ooops. Forgot to update proto.h in change 30853.
4610      Branch: perl
4611            ! proto.h
4612 ____________________________________________________________________________
4613 [ 30853] By: nicholas                              on 2007/04/06  19:50:12
4614         Log: Remove op_pmnext from PMOPs, and instead store the list for reset as
4615              an array hanging from the mg_ptr of the symbol table magic.
4616              (Previously the linked list head was in the mg_obj member)
4617      Branch: perl
4618            ! embed.fnc embed.h ext/B/B.xs op.c op.h sv.c
4619 ____________________________________________________________________________
4620 [ 30852] By: rgs                                   on 2007/04/06  14:15:44
4621         Log: Subject: [PATCH] Allow any *DBM_File to work for DynaLoader testing
4622              From: "Jerry D. Hedden" <jdhedden@1979.usna.com>
4623              Date: Wed, 4 Apr 2007 09:57:16 -0400
4624              Message-ID: <1ff86f510704040657t732af552jbcbdb8804d134ff7@mail.gmail.com>
4625      Branch: perl
4626            ! ext/DynaLoader/t/DynaLoader.t ext/DynaLoader/t/XSLoader.t
4627 ____________________________________________________________________________
4628 [ 30851] By: rgs                                   on 2007/04/06  13:35:15
4629         Log: Subject: [PATCH] MAD do not ignore errors from 'use'
4630              From: Gerard Goossen <gerard@tty.nl>
4631              Date: Thu, 29 Mar 2007 18:02:29 +0200
4632              Message-ID: <20070329160229.GF20231@ostwald>
4633              
4634              plus another similar correction
4635      Branch: perl
4636            ! perl.c
4637 ____________________________________________________________________________
4638 [ 30850] By: rgs                                   on 2007/04/06  13:19:44
4639         Log: Subject: [PATCH] madprop about forced words
4640              From: Gerard Goossen <gerard@tty.nl>
4641              Date: Thu, 29 Mar 2007 18:10:42 +0200
4642              Message-ID: <20070329161042.GG20231@ostwald>
4643      Branch: perl
4644            ! toke.c
4645 ____________________________________________________________________________
4646 [ 30849] By: rgs                                   on 2007/04/06  12:13:14
4647         Log: Subject: Re: Proposed changes and to regular expression interfaces in core
4648              From: "Ævar Arnfjörð Bjarmason" <avarab@gmail.com>
4649              Date: Thu, 29 Mar 2007 22:52:49 +0000
4650              Message-ID: <51dd1af80703291552y1073bcb6r954b043eb68a4459@mail.gmail.com>
4651      Branch: perl
4652            ! embed.fnc embed.h ext/re/re.xs ext/re/re_top.h global.sym
4653            ! perl.h pp_hot.c proto.h regcomp.c regcomp.h regexp.h
4654 ____________________________________________________________________________
4655 [ 30848] By: stevep                                on 2007/04/05  16:32:19
4656         Log: g++ on NetBSD needs to have environ declared as well.
4657      Branch: perl
4658            ! perl.h
4659 ____________________________________________________________________________
4660 [ 30847] By: rgs                                   on 2007/04/05  16:26:18
4661         Log: C++ compilation fix by Steve Peters
4662      Branch: perl
4663            ! perl.h
4664 ____________________________________________________________________________
4665 [ 30846] By: nicholas                              on 2007/04/05  08:56:10
4666         Log: S_op_destroy() was not static. Also tidy all other STATIC/static
4667              declarations onto the same line as the return type, to make checking
4668              this easier.
4669      Branch: perl
4670            ! dump.c op.c pp_ctl.c pp_pack.c
4671 ____________________________________________________________________________
4672 [ 30845] By: nicholas                              on 2007/04/04  21:42:26
4673         Log: Add TODO tests for the (sometimes) crashing threads/op deletion/reset
4674              combination.
4675      Branch: perl
4676            ! t/op/reset.t
4677 ____________________________________________________________________________
4678 [ 30844] By: nicholas                              on 2007/04/04  19:55:23
4679         Log: A test for reset.
4680      Branch: perl
4681            + t/op/reset.t
4682            ! MANIFEST
4683 ____________________________________________________________________________
4684 [ 30843] By: nicholas                              on 2007/04/04  17:22:02
4685         Log: Get further through the build with read-only optrees. Free()ing cops
4686              as currently implemented seems to want write activity to them. Also we
4687              save a field in PL_curcop at one point, and sometimes this can be in
4688              a read only COP. If so, the end of scope restoration is always to the
4689              same value, but it's easier to cheat and skip the restoration than to
4690              dig around and avoid the save.
4691      Branch: perl
4692            ! op.c scope.c
4693 ____________________________________________________________________________
4694 [ 30842] By: rgs                                   on 2007/04/04  08:40:52
4695         Log: Symbol export nit, found by Yves
4696      Branch: perl
4697            ! makedef.pl
4698 ____________________________________________________________________________
4699 [ 30841] By: rgs                                   on 2007/04/04  08:32:37
4700         Log: Subject: Re: pmdynflags and thread safety
4701              From: demerphq <demerphq@gmail.com>
4702              Date: Wed, 4 Apr 2007 01:46:26 +0200
4703              Message-ID: <9b18b3110704031646p7ac8dbearf9e41397a5f884d8@mail.gmail.com>
4704      Branch: perl
4705            ! bytecode.pl dump.c embed.fnc ext/B/B.pm ext/B/B.xs
4706            ! ext/B/B/Asmdata.pm ext/B/B/Deparse.pm ext/B/defsubs_h.PL
4707            ! ext/B/t/concise-xs.t ext/re/re.xs op.c op.h pod/perlreguts.pod
4708            ! pod/perltoc.pod pp.c pp_ctl.c pp_hot.c proto.h regcomp.c
4709            ! regexec.c regexp.h sv.c toke.c
4710 ____________________________________________________________________________
4711 [ 30840] By: rgs                                   on 2007/04/04  06:46:46
4712         Log: Subject: [PATCH] ext\ExtUtils\t\Embed.t fails test when upgrading a perl with different core headers.
4713              From: demerphq <demerphq@gmail.com>
4714              Date: Wed, 4 Apr 2007 03:17:21 +0200
4715              Message-ID: <9b18b3110704031817l37c034d3gf3d2b1cd205ac517@mail.gmail.com>
4716      Branch: perl
4717            ! lib/ExtUtils/t/Embed.t
4718 ____________________________________________________________________________
4719 [ 30839] By: rgs                                   on 2007/04/04  06:39:46
4720         Log: Subject: [PATCH] Re: [PATCH] microperl plus missing config vars
4721              From: Jarkko Hietaniemi <jhi@iki.fi>
4722              Date: Tue, 03 Apr 2007 18:28:30 -0400
4723              Message-ID: <4612D50E.5010105@iki.fi>
4724      Branch: perl
4725            ! Porting/checkcfgvar.pl win32/config.gc
4726 ____________________________________________________________________________
4727 [ 30838] By: rgs                                   on 2007/04/03  16:17:01
4728         Log: Subject: Re: [PATCH] MAD prototype checking
4729              From: Gerard Goossen <gerard@tty.nl>
4730              Date: Thu, 29 Mar 2007 17:34:23 +0200
4731              Message-ID: <20070329153423.GE20231@ostwald>
4732      Branch: perl
4733            ! op.c
4734 ____________________________________________________________________________
4735 [ 30837] By: rgs                                   on 2007/04/03  16:12:08
4736         Log: Subject: Re: [PATCH] MAD disable constant inlining
4737              From: Gerard Goossen <gerard@tty.nl>
4738              Date: Thu, 29 Mar 2007 17:31:32 +0200
4739              Message-ID: <20070329153132.GD20231@ostwald>
4740      Branch: perl
4741            ! toke.c
4742 ____________________________________________________________________________
4743 [ 30836] By: rgs                                   on 2007/04/03  08:34:09
4744         Log: C++ compilation patch by Jarkko
4745      Branch: perl
4746            ! ext/Encode/bin/enc2xs
4747 ____________________________________________________________________________
4748 [ 30835] By: nicholas                              on 2007/04/02  21:27:26
4749         Log: We may not even have a list of slabs when Perl_Slab_Free is called.
4750      Branch: perl
4751            ! op.c
4752 ____________________________________________________________________________
4753 [ 30834] By: nicholas                              on 2007/04/02  21:25:03
4754         Log: Cleanups for PERL_DEBUG_READONLY_OPS debugging code - remove a now-
4755              unneeded include of <sys/mman.h>, and make PERL_DEBUG_READONLY_OPS
4756              appear in -V output.
4757      Branch: perl
4758            ! perl.c
4759 ____________________________________________________________________________
4760 [ 30833] By: rgs                                   on 2007/04/02  19:53:08
4761         Log: Subject: [PATCH] Allow testing of DBM_Filter with any *DBM_File
4762              From: "Jerry D. Hedden" <jdhedden@yahoo.com>
4763              Date: Mon, 2 Apr 2007 10:15:47 -0700 (PDT)
4764              Message-ID: <642435.53086.qm@web30215.mail.mud.yahoo.com>
4765      Branch: perl
4766            ! lib/DBM_Filter/t/01error.t lib/DBM_Filter/t/02core.t
4767            ! lib/DBM_Filter/t/compress.t lib/DBM_Filter/t/encode.t
4768            ! lib/DBM_Filter/t/int32.t lib/DBM_Filter/t/null.t
4769            ! lib/DBM_Filter/t/utf8.t
4770 ____________________________________________________________________________
4771 [ 30832] By: nicholas                              on 2007/04/02  19:53:06
4772         Log: For Perl_Slab_Alloc(), eliminate the unused parameter 'm'.
4773      Branch: perl
4774            ! embed.fnc embed.h op.c op.h proto.h
4775 ____________________________________________________________________________
4776 [ 30831] By: rgs                                   on 2007/04/02  19:51:08
4777         Log: Subject: [PATCH] Don't install dbm_filter_util.pl
4778              From: "Jerry D. Hedden" <jdhedden@yahoo.com>
4779              Date: Mon, 2 Apr 2007 09:31:13 -0700 (PDT)
4780              Message-ID: <721682.89546.qm@web30209.mail.mud.yahoo.com>
4781      Branch: perl
4782            ! installperl
4783 ____________________________________________________________________________
4784 [ 30830] By: nicholas                              on 2007/04/02  19:25:53
4785         Log: The op slab allocator can call calloc() instead of malloc(), and save
4786              a Zero(). Also, argument m is unused.
4787      Branch: perl
4788            ! op.c
4789 ____________________________________________________________________________
4790 [ 30829] By: nicholas                              on 2007/04/02  19:03:55
4791         Log: Add a new compile option PERL_DEBUG_READONLY_OPS which marks the optree
4792              as read only (or as much of it as it practical). This makes it trivial
4793              to detect buggy code that is modifying the optree at runtime.
4794      Branch: perl
4795            ! embed.fnc embed.h embedvar.h intrpvar.h op.c perl.c perlapi.h
4796            ! pod/perlhack.pod proto.h
4797 ____________________________________________________________________________
4798 [ 30828] By: rgs                                   on 2007/04/02  08:50:23
4799         Log: Subject: [PATCH?] perlfunc.pod: Lexical visibility hint in require docu
4800              From: Christian Winter <bitpoet@linux-config.de>
4801              Date: Sun, 01 Apr 2007 18:01:24 +0200
4802              Message-ID: <460FD754.8050106@linux-config.de>
4803      Branch: perl
4804            ! pod/perlfunc.pod
4805 ____________________________________________________________________________
4806 [ 30827] By: craigb                                on 2007/04/01  18:11:28
4807         Log: Update name of Perl executable on VMS following #30414.
4808      Branch: perl
4809            ! t/op/taint.t
4810 ____________________________________________________________________________
4811 [ 30826] By: craigb                                on 2007/04/01  18:01:01
4812         Log: Mark new regex glob test as a TODO on VMS.
4813      Branch: perl
4814            ! ext/File/Glob/t/basic.t
4815 ____________________________________________________________________________
4816 [ 30825] By: merijn                                on 2007/04/01  15:44:33
4817         Log: Subject: README.$OS URLs
4818              From: Steffen Mueller <o6hhmk002@sneakemail.com>
4819              Date: Sat, 31 Mar 2007 16:37:56 +0200
4820              Message-ID: <20070331143757.26271.qmail@lists.develooper.com>
4821      Branch: perl
4822            ! README.amiga README.cn README.dos README.jp README.netware
4823            ! README.tw
4824 ____________________________________________________________________________
4825 [ 30824] By: stevep                                on 2007/04/01  13:10:11
4826         Log: Subject: [PATCH] Symbian sync
4827              From: Jarkko Hietaniemi <jhi@iki.fi>
4828              Date: Sat, 31 Mar 2007 15:30:09 -0400
4829              Message-ID: <460EB6C1.4020406@iki.fi>
4830      Branch: perl
4831            ! README.symbian lib/AutoSplit.pm lib/constant.pm regcomp.pl
4832            ! regnodes.h symbian/port.pl symbian/sdk.pl
4833 ____________________________________________________________________________
4834 [ 30823] By: stevep                                on 2007/04/01  12:57:24
4835         Log: Subject: [PATCH] microperl plus missing config vars
4836              From: Jarkko Hietaniemi <jhi@iki.fi>
4837              Date: Sat, 31 Mar 2007 17:50:18 -0400
4838              Message-ID: <460ED79A.5030809@iki.fi>
4839      Branch: perl
4840            ! Cross/config.sh-arm-linux Makefile.micro NetWare/config.wc
4841            ! Porting/checkcfgvar.pl README.micro epoc/config.sh
4842            ! plan9/config_sh.sample symbian/config.sh uconfig.h uconfig.sh
4843            ! win32/config.bc win32/config.ce win32/config.vc
4844            ! win32/config.vc64
4845 ____________________________________________________________________________
4846 [ 30822] By: davem                                 on 2007/04/01  01:27:57
4847         Log: Make parser_free() be called slightly later,
4848              i.e. at the point where lexer vars are being restored in a LEAVE,
4849              rather than at the end of yyparse()
4850      Branch: perl
4851            ! perly.c toke.c
4852 ____________________________________________________________________________
4853 [ 30821] By: davem                                 on 2007/04/01  01:22:20
4854         Log: Eliminate the use of PL_curforce outside of toke.c
4855      Branch: perl
4856            ! perl.c toke.c
4857 ____________________________________________________________________________
4858 [ 30820] By: davem                                 on 2007/04/01  01:20:02
4859         Log: Eliminate the use of PL_bufend outside of toke.c:
4860              give Perl_scan_vstring() an explicit 'end' arg rather than using
4861              PL_bufend, and replace it with a local var in Perl_find_script()
4862      Branch: perl
4863            ! embed.fnc embed.h proto.h sv.c toke.c
4864 ____________________________________________________________________________
4865 [ 30819] By: davem                                 on 2007/04/01  00:51:00
4866         Log: free backtrack track when on unexpected exit, eg /(?{ die })/
4867      Branch: perl
4868            ! regexec.c
4869 ____________________________________________________________________________
4870 [ 30818] By: davem                                 on 2007/04/01  00:27:02
4871         Log: fix $^R scoping bug.
4872              By setting the outer saved $^R to the current $^R just at the
4873              end of a successful match, and ensuring that that the savestack
4874              doesn't get popped beforehand, the code is simplified and fixes a
4875              bug.
4876      Branch: perl
4877            ! regexec.c t/op/pat.t
4878 ____________________________________________________________________________
4879 [ 30817] By: nicholas                              on 2007/03/31  23:15:15
4880         Log: Rearrange members of structures to reduce memory size on some
4881              platforms. On LP64 structs stackinfo, refcounted_he, and magic shrink
4882              by 8 bytes, struct yy_parser by 16.
4883      Branch: perl
4884            ! cop.h gv.h hv.h mg.h parser.h perl.h
4885 ____________________________________________________________________________
4886 [ 30815] By: nicholas                              on 2007/03/31  20:52:53
4887         Log: Reorder the members of various regexp structs to reduce their size on
4888              LP64 platforms, by pairing up I32 and U32 members. Notably structs
4889              _reg_trie_data, reg_ac_data, regexp and regmatch_state down by 8 bytes,
4890              re_save_state by 16, and regmatch_slab up by 48 (ie one more state per
4891              slab)
4892      Branch: perl
4893            ! regcomp.h regexp.h
4894 ____________________________________________________________________________
4895 [ 30814] By: craigb                                on 2007/03/31  19:42:35
4896         Log: Fix URL rot in README.vms
4897      Branch: perl
4898            ! README.vms
4899 ____________________________________________________________________________
4900 [ 30813] By: craigb                                on 2007/03/31  19:40:43
4901         Log: Make Perl_vms_start_glob return the input pattern when there are
4902              no matches.  
4903      Branch: perl
4904            ! vms/vms.c
4905 ____________________________________________________________________________
4906 [ 30812] By: nicholas                              on 2007/03/31  15:50:05
4907         Log: precomp in struct regexp can be const char *.
4908      Branch: perl
4909            ! regexp.h
4910 ____________________________________________________________________________
4911 [ 30811] By: rgs                                   on 2007/03/31  14:11:40
4912         Log: Fix bug #42224, perl -MO=Deparse -e 'print readpipe $x, $y' broken
4913      Branch: perl
4914            ! ext/B/B/Deparse.pm
4915 ____________________________________________________________________________
4916 [ 30806] By: rgs                                   on 2007/03/31  06:23:12
4917         Log: Fix the error message "Can't call method "DOES" on unblessed
4918              reference".
4919      Branch: perl
4920            ! pp_hot.c t/op/universal.t universal.c
4921 ____________________________________________________________________________
4922 [ 30805] By: rgs                                   on 2007/03/31  06:16:09
4923         Log: Don't use utf8.pm in the test (avoiding embedding utf8 in the test
4924              file), and use greek to test for something out of 8-bit latin, as
4925              Jarkko suggested. Everything flows.
4926      Branch: perl
4927            ! t/io/dup.t
4928 ____________________________________________________________________________
4929 [ 30804] By: ams                                   on 2007/03/31  00:51:55
4930         Log: This was released as 2.16.
4931      Branch: perl
4932            ! ext/Storable/Storable.pm
4933 ____________________________________________________________________________
4934 [ 30803] By: ams                                   on 2007/03/31  00:34:13
4935         Log: Add new hints files.
4936      Branch: perl
4937            ! ext/Storable/MANIFEST
4938 ____________________________________________________________________________
4939 [ 30791] By: nicholas                              on 2007/03/30  16:17:25
4940         Log: Bump File::Glob's VERSION to go with change 30103.
4941      Branch: perl
4942            ! ext/File/Glob/Glob.pm
4943 ____________________________________________________________________________
4944 [ 30785] By: nicholas                              on 2007/03/30  11:52:43
4945         Log: Remove the never-used numeric and character switch ops.
4946      Branch: perl
4947            ! opcode.pl
4948 ____________________________________________________________________________
4949 [ 30784] By: nicholas                              on 2007/03/30  11:48:54
4950         Log: A logical rearrangement of ops, to get the post 5.005 ops to their
4951              logical groups.
4952      Branch: perl
4953            ! ext/B/t/b.t opcode.h opcode.pl opnames.h pp.sym pp_proto.h
4954 ____________________________________________________________________________
4955 [ 30783] By: nicholas                              on 2007/03/30  10:53:31
4956         Log: Oops. Failed to remove the now obsolete comment about custom ops.
4957      Branch: perl
4958            ! opcode.pl
4959 ____________________________________________________________________________
4960 [ 30782] By: nicholas                              on 2007/03/30  10:50:10
4961         Log: Remove the restriction that op_custom has to be the last op.
4962              This allows more ops to be added during the life of a stable release.
4963      Branch: perl
4964            ! opcode.h opcode.pl
4965 ____________________________________________________________________________
4966 [ 30781] By: rgs                                   on 2007/03/30  08:30:35
4967         Log: When dup'ing a filehandle, retain the :utf8 layer
4968      Branch: perl
4969            ! perlio.c t/io/dup.t
4970 ____________________________________________________________________________
4971 [ 30780] By: rgs                                   on 2007/03/30  07:48:59
4972         Log: Add two deprecation warnings:
4973              Opening dirhandle %s also as a file
4974              Opening filehandle %s also as a directory
4975      Branch: perl
4976            ! pod/perldiag.pod pp_sys.c t/lib/warnings/pp_sys t/op/chdir.t
4977 ____________________________________________________________________________
4978 [ 30779] By: stevep                                on 2007/03/30  03:24:22
4979         Log: Subject: [PATCH] cflags.SH: 30327 wasn't portable Bourne (avoid '!: not found')
4980              From: Jarkko Hietaniemi <jhi@cc.hut.fi>
4981              Date: Fri, 30 Mar 2007 04:44:11 +0300 (EEST)
4982              Message-Id: <200703300144.l2U1iBSA490663@kosh.hut.fi>
4983      Branch: perl
4984            ! cflags.SH
4985 ____________________________________________________________________________
4986 [ 30778] By: stevep                                on 2007/03/29  23:11:29
4987         Log: Upgrade to CGI.pm-3.28
4988      Branch: perl
4989            ! lib/CGI.pm lib/CGI/Changes lib/CGI/Cookie.pm
4990 ____________________________________________________________________________
4991 [ 30777] By: rgs                                   on 2007/03/29  13:03:54
4992         Log: Subject: [PATCH] Shorten 'skipping...' test message
4993              From: "Jerry D. Hedden" <jdhedden@yahoo.com>
4994              Date: Thu, 29 Mar 2007 05:56:51 -0700 (PDT)
4995              Message-ID: <213529.35369.qm@web30214.mail.mud.yahoo.com>
4996      Branch: perl
4997            ! t/TEST
4998 ____________________________________________________________________________
4999 [ 30776] By: rgs                                   on 2007/03/29  07:56:11
5000         Log: Back out changes 30762 and 30763
5001      Branch: perl
5002            ! pp.c
5003 ____________________________________________________________________________
5004 [ 30775] By: rgs                                   on 2007/03/28  08:43:10
5005         Log: Subject: [PATCH?]: perlguts.pod
5006              From: "John P. Linderman" <jpl@research.att.com>
5007              Date: Tue, 27 Mar 2007 12:33:39 -0400
5008              Message-Id: <200703271633.l2RGXd3u3443680@raptor.research.att.com>
5009      Branch: perl
5010            ! pod/perlguts.pod
5011 ____________________________________________________________________________
5012 [ 30774] By: merijn                                on 2007/03/27  12:30:11
5013         Log: Subject: [PATCH] stop the cargo cult of (MEM_SIZE)~0
5014              From: Jarkko Hietaniemi <jhi@cc.hut.fi>
5015              Date: Tue, 27 Mar 2007 15:07:52 +0300 (EEST)
5016              Message-Id: <200703271207.l2RC7qOC443040@kosh.hut.fi>
5017      Branch: perl
5018            ! handy.h pp.c util.c
5019 ____________________________________________________________________________
5020 [ 30773] By: rgs                                   on 2007/03/27  11:15:51
5021         Log: Compress::Zlib isn't a good example of extra modules,
5022              since it's now core
5023      Branch: perl
5024            ! INSTALL
5025 ____________________________________________________________________________
5026 [ 30772] By: rgs                                   on 2007/03/27  09:42:44
5027         Log: Fix return value of state assignment ($x=state $y=$z).
5028              Fix a form of state assignment (state($x)=$y).
5029              Minor optimisation in pp_aassign for state variables.
5030              New tests.
5031      Branch: perl
5032            ! op.c pp_hot.c t/op/state.t
5033 ____________________________________________________________________________
5034 [ 30771] By: merijn                                on 2007/03/27  06:17:25
5035         Log: Subject: [PATCH] util.c [PATCH] perlhack.pod (Was: Re: threads crashes in Tru64)
5036              From: Jarkko Hietaniemi <jhi@iki.fi>
5037              Date: Mon, 26 Mar 2007 19:50:11 -0400
5038              Message-ID: <46085C33.1030601@iki.fi>
5039      Branch: perl
5040            ! pod/perlhack.pod util.c
5041 ____________________________________________________________________________
5042 [ 30770] By: merijn                                on 2007/03/27  06:15:21
5043         Log: Documented the PA-RISC End-Of_Life plan; more servers; some IPF
5044              remarks. TODO: the various locations for downloading prebuilt
5045              depots, and what their specifics are. The first is now in, but
5046              no specifics yet.
5047      Branch: perl
5048            ! README.hpux
5049 ____________________________________________________________________________
5050 [ 30769] By: nicholas                              on 2007/03/26  22:52:18
5051         Log: In struct regexp replace the two arrays of I32s accessed via startp
5052              and endp with a single array of struct regexp_paren_pair, which has 2
5053              I32 members. PL_regstartp and PL_regendp are replaced with a pointer
5054              to regexp_paren_pair. The regexp swap structure now only has one
5055              member, so abolish it and store the pointer to the swap array directly.
5056              Hopefully keeping the corresponding start and end adjacent in memory
5057              will help with cache coherency.
5058      Branch: perl
5059            ! mg.c pp.c pp_ctl.c pp_hot.c regcomp.c regexec.c regexp.h sv.c
5060            ! universal.c
5061 ____________________________________________________________________________
5062 [ 30768] By: davem                                 on 2007/03/26  21:48:48
5063         Log: add p55.t MAD tests, and convert renamed mad/nomad into a module
5064              Subject: Re: [PATCH] p55 tests
5065              From: Gerard Goossen <gerard@tty.nl>
5066              Message-ID: <20070322174056.GE24152@ostwald>
5067      Branch: perl
5068            + mad/t/p55.t
5069            ! MANIFEST mad/Nomad.pm
5070 ____________________________________________________________________________
5071 [ 30767] By: davem                                 on 2007/03/26  21:42:48
5072         Log: Rename mad/nomad to mad/Nomad.pm
5073              
5074              Subject: Re: [PATCH] p55 tests
5075              From: Gerard Goossen <gerard@tty.nl>
5076              Message-ID: <20070322174056.GE24152@ostwald>
5077      Branch: perl
5078           +> mad/Nomad.pm
5079            - mad/nomad
5080            ! MANIFEST
5081 ____________________________________________________________________________
5082 [ 30766] By: nicholas                              on 2007/03/26  21:40:12
5083         Log: Move the declaration of two variables into the only block that uses
5084              them.
5085      Branch: perl
5086            ! regexec.c
5087 ____________________________________________________________________________
5088 [ 30763] By: rgs                                   on 2007/03/26  14:36:17
5089         Log: Nit to change 30762 by Gisle.
5090              Avoids storing the chars removed by 4-arg substr() in void context.
5091      Branch: perl
5092            ! pp.c
5093 ____________________________________________________________________________
5094 [ 30762] By: rgs                                   on 2007/03/26  14:33:41
5095         Log: Subject: [PATCH] Re: substr($megabytes, 30) = 
5096              From: "Yitzchak Scott-Thoennes" <sthoenna@efn.org>
5097              Date: Mon, 12 Feb 2007 22:13:50 -0800 (PST)
5098              Message-ID: <1119.63.226.247.186.1171347230.squirrel@63.226.247.186>
5099      Branch: perl
5100            ! pp.c
5101 ____________________________________________________________________________
5102 [ 30761] By: rgs                                   on 2007/03/26  14:21:39
5103         Log: Make the warning "interpreted as function" a bit less annoying,
5104              and test it properly
5105      Branch: perl
5106            ! t/lib/warnings/toke toke.c
5107 ____________________________________________________________________________
5108 [ 30760] By: rgs                                   on 2007/03/26  13:51:30
5109         Log: say() should parse exactly like print()
5110      Branch: perl
5111            ! sv.c toke.c
5112 ____________________________________________________________________________
5113 [ 30759] By: rgs                                   on 2007/03/26  11:52:21
5114         Log: Remove the object_compatibility placeholder in the interpreter struct
5115      Branch: perl
5116            ! perl.h
5117 ____________________________________________________________________________
5118 [ 30758] By: rgs                                   on 2007/03/26  10:09:21
5119         Log: On Linux, don't compile with -DTHREADS_HAVE_PIDS if the
5120              kernel uses the NPTL threading model
5121      Branch: perl
5122            ! hints/linux.sh
5123 ____________________________________________________________________________
5124 [ 30757] By: nicholas                              on 2007/03/26  08:39:43
5125         Log: Simplify the logic in Perl_re_dup() - copy the structure as 1 block,
5126              then fix up what differs. Curiously -Os with gcc x86 produces the same
5127              sized object code.
5128      Branch: perl
5129            ! regcomp.c
5130 ____________________________________________________________________________
5131 [ 30756] By: nicholas                              on 2007/03/25  23:40:00
5132         Log: Change 30753 forgot to remove 2 now unused variables.
5133      Branch: perl
5134            ! regcomp.c
5135 ____________________________________________________________________________
5136 [ 30755] By: nicholas                              on 2007/03/25  23:34:58
5137         Log: Looks like re_dup has been leaking references on 2 SVs for most regexps
5138              since dot (only to be recovered for certain at thread exit).
5139      Branch: perl
5140            ! regcomp.c
5141 ____________________________________________________________________________
5142 [ 30754] By: nicholas                              on 2007/03/25  22:32:11
5143         Log: A more efficient copy in  Perl_reg_temp_copy()
5144      Branch: perl
5145            ! regcomp.c
5146 ____________________________________________________________________________
5147 [ 30753] By: nicholas                              on 2007/03/25  21:59:58
5148         Log: Subject: Re: The performance problem of 30678
5149              From: Marcus Holland-Moritz <mhx-perl@gmx.net>
5150              Message-ID: <20070324185511.02f84668@r2d2>
5151              Date: Sat, 24 Mar 2007 18:55:11 +0100
5152      Branch: perl
5153            ! regcomp.c
5154 ____________________________________________________________________________
5155 [ 30750] By: rgs                                   on 2007/03/24  21:14:22
5156         Log: Make readline() default to *ARGV.
5157              Plus MAD fixes.
5158      Branch: perl
5159            ! embed.fnc embed.h op.c opcode.h opcode.pl pod/perlfunc.pod
5160            ! pp.sym pp_proto.h proto.h t/op/readline.t
5161 ____________________________________________________________________________
5162 [ 30749] By: rgs                                   on 2007/03/24  16:58:28
5163         Log: Now that readpipe defaults to $_, I should update the prototype table
5164              in opcode.pl too.
5165      Branch: perl
5166            ! opcode.h opcode.pl t/op/cproto.t
5167 ____________________________________________________________________________
5168 [ 30748] By: rgs                                   on 2007/03/24  16:51:13
5169         Log: Make sure readpipe without argument can be followed by //
5170      Branch: perl
5171            ! toke.c
5172 ____________________________________________________________________________
5173 [ 30747] By: rgs                                   on 2007/03/24  16:46:02
5174         Log: Make readpipe default to $_
5175      Branch: perl
5176            ! op.c pod/perlfunc.pod t/op/exec.t
5177 ____________________________________________________________________________
5178 [ 30745] By: nicholas                              on 2007/03/24  14:44:28
5179         Log: startp and endp can allocate their array of I32s from the same block of
5180              memory, and Copy() and free it as one.
5181              Probably these two pointers to array should merge into single pointer
5182              to an array of structs.
5183      Branch: perl
5184            ! regcomp.c regexec.c
5185 ____________________________________________________________________________
5186 [ 30740] By: nicholas                              on 2007/03/23  23:32:19
5187         Log: It's possible to write the dup of struct reg_substr_datum with a
5188              memcpy() replacing the member by member copy. Curiously gcc's -Os
5189              produces the same sized code, but not all optimisers may manage this.
5190              Also, by reading and re-assigning to the copied data for the sv_dup()s
5191              we hope to avoid any cache misses on the copied from data.
5192      Branch: perl
5193            ! regcomp.c
5194 ____________________________________________________________________________
5195 [ 30730] By: rgs                                   on 2007/03/23  18:25:43
5196         Log: Don't use PL_na.
5197      Branch: perl
5198            ! universal.c
5199 ____________________________________________________________________________
5200 [ 30729] By: rgs                                   on 2007/03/23  17:34:48
5201         Log: Subject: [perl #41775] Memoize bug (and patch): problem with LIST_CACHE => MERGE 
5202              From: Father Chrysostomos (via RT) <perlbug-followup@perl.org>
5203              Date: Sat, 10 Mar 2007 12:18:35 -0800
5204              Message-ID: <rt-3.6.HEAD-30201-1173557915-1780.41775-75-0@perl.org>
5205      Branch: perl
5206            ! lib/Memoize.pm
5207 ____________________________________________________________________________
5208 [ 30728] By: mhx                                   on 2007/03/23  17:21:15
5209         Log: Upgrade to Devel::PPPort 3.11_01
5210      Branch: perl
5211            ! ext/Devel/PPPort/Changes ext/Devel/PPPort/PPPort_pm.PL
5212            ! ext/Devel/PPPort/parts/inc/call
5213            ! ext/Devel/PPPort/parts/inc/variables
5214            ! ext/Devel/PPPort/parts/todo/5006000 ext/Devel/PPPort/soak
5215            ! ext/Devel/PPPort/t/call.t ext/Devel/PPPort/t/variables.t
5216 ____________________________________________________________________________
5217 [ 30726] By: nicholas                              on 2007/03/23  16:55:13
5218         Log: Move CHECK_WORD in regcomp.c to a more generic memEQs() in handy.h
5219              and provide memNEs() too.
5220      Branch: perl
5221            ! handy.h regcomp.c
5222 ____________________________________________________________________________
5223 [ 30725] By: rgs                                   on 2007/03/23  16:45:14
5224         Log: Subject: [PATCH] Silence compiler warning in util.c
5225              From: "Jerry D. Hedden" <jdhedden@yahoo.com>
5226              Date: Fri, 23 Mar 2007 09:40:02 -0700 (PDT)
5227              Message-ID: <256688.25862.qm@web30215.mail.mud.yahoo.com>
5228      Branch: perl
5229            ! util.c
5230 ____________________________________________________________________________
5231 [ 30724] By: nicholas                              on 2007/03/23  16:15:58
5232         Log: Change 30080 was wrong to swap the BEGIN test to memEQ
5233      Branch: perl
5234            ! op.c
5235 ____________________________________________________________________________
5236 [ 30722] By: rgs                                   on 2007/03/23  14:47:09
5237         Log: Subject: Re: [perl #41683] [PATCH] v5.8.8 pod2html -- incorrect treatment of non-manual page refs like "this(c)"
5238              From: Jari Aalto <jari.aalto@cante.net>
5239              Date: Wed, 07 Mar 2007 11:08:24 +0200
5240              Message-ID: <87ejo1s9o7.fsf@w2kpicasso.cante.net>
5241              
5242              with adjustments to the regexp
5243      Branch: perl
5244            ! lib/Pod/Html.pm
5245 ____________________________________________________________________________
5246 [ 30721] By: rgs                                   on 2007/03/23  14:33:22
5247         Log: PerlFAQ sync.
5248              Also, use a svn checkout done under an English locale, to
5249              avoid having French dates in the headers. Hateful.
5250      Branch: perl
5251            ! pod/perlfaq.pod pod/perlfaq1.pod pod/perlfaq2.pod
5252            ! pod/perlfaq3.pod pod/perlfaq4.pod pod/perlfaq5.pod
5253            ! pod/perlfaq6.pod pod/perlfaq7.pod pod/perlfaq8.pod
5254            ! pod/perlfaq9.pod
5255 ____________________________________________________________________________
5256 [ 30718] By: rgs                                   on 2007/03/23  11:59:55
5257         Log: Subject: [PATCH] Cwd doesn't need ppport.h in core
5258              From: "Jerry D. Hedden" <jdhedden@yahoo.com>
5259              Date: Tue, 20 Mar 2007 13:16:46 -0700 (PDT)
5260              Message-ID: <196803.14702.qm@web30215.mail.mud.yahoo.com>
5261      Branch: perl
5262            ! ext/Cwd/Cwd.xs ext/Cwd/Makefile.PL lib/Cwd.pm mkppport.lst
5263 ____________________________________________________________________________
5264 [ 30716] By: rgs                                   on 2007/03/23  11:41:58
5265         Log: Subject: symbol-exports needed for Data::Alias
5266              From: Matthijs van Duin <xmath@cpan.org>
5267              Date: Tue, 20 Mar 2007 14:59:15 +0100
5268              Message-ID: <20070320135915.GA25192@cds.nl>
5269      Branch: perl
5270            ! embed.fnc embed.h global.sym
5271 ____________________________________________________________________________
5272 [ 30715] By: rgs                                   on 2007/03/23  10:48:41
5273         Log: Convert file to proper line-endings
5274      Branch: perl
5275            ! lib/Pod/Simple/t/items02.t
5276 ____________________________________________________________________________
5277 [ 30714] By: rgs                                   on 2007/03/23  10:43:04
5278         Log: Missing file in MANIFEST
5279      Branch: perl
5280            ! MANIFEST
5281 ____________________________________________________________________________
5282 [ 30713] By: rgs                                   on 2007/03/23  08:48:33
5283         Log: Fix path of a test file for running in the core
5284      Branch: perl
5285            ! lib/Pod/Simple/t/reinit.t
5286 ____________________________________________________________________________
5287 [ 30712] By: stevep                                on 2007/03/23  03:45:30
5288         Log: Upgrade to CPAN-1.88_79
5289      Branch: perl
5290            ! lib/CPAN.pm
5291 ____________________________________________________________________________
5292 [ 30711] By: stevep                                on 2007/03/23  03:36:47
5293         Log: Upgrade to Test-Simple-0.70
5294      Branch: perl
5295            ! lib/Test/Builder.pm lib/Test/More.pm lib/Test/Simple.pm
5296            ! lib/Test/Simple/Changes lib/Test/Simple/t/is_fh.t
5297 ____________________________________________________________________________
5298 [ 30710] By: stevep                                on 2007/03/23  02:17:50
5299         Log: Re-sorting the MANIFEST after the mess made of it with the
5300              Pod-Simple renamings
5301      Branch: perl
5302            ! MANIFEST
5303 ____________________________________________________________________________
5304 [ 30709] By: stevep                                on 2007/03/23  02:06:06
5305         Log: Perforce appararently didn't like integrating this file, since
5306              I had done it twice.  It looks like an add will have to do instead.
5307      Branch: perl
5308            + lib/Pod/Simple/t/perlvaro.txt
5309 ____________________________________________________________________________
5310 [ 30708] By: stevep                                on 2007/03/23  01:54:54
5311         Log: fix instalhtml and Pod::HTML issues.
5312              From: demerphq <demerphq@gmail.com>
5313              Date: Thu, 22 Mar 2007 19:42:54 +0100
5314              Message-ID: <9b18b3110703221142g4955362atffee33d05e30bd27@mail.gmail.com>
5315              
5316              Just the changes to installhtml and Pod::HTML in this patch.
5317      Branch: perl
5318            ! installhtml lib/Pod/Html.pm
5319 ____________________________________________________________________________
5320 [ 30707] By: stevep                                on 2007/03/23  01:47:41
5321         Log: Additional test file edits needed for Pod-Simple-3.05 that couldn't
5322              be included due to the integrates being performed in the previous
5323              change.
5324      Branch: perl
5325            ! lib/Pod/Simple/t/htmlbat.t lib/Pod/Simple/t/render.t
5326            ! lib/Pod/Simple/t/search10.t lib/Pod/Simple/t/search12.t
5327            ! lib/Pod/Simple/t/search20.t lib/Pod/Simple/t/search22.t
5328            ! lib/Pod/Simple/t/search25.t lib/Pod/Simple/t/search26.t
5329            ! lib/Pod/Simple/t/search27.t lib/Pod/Simple/t/search28.t
5330            ! lib/Pod/Simple/t/search29.t
5331 ____________________________________________________________________________
5332 [ 30706] By: stevep                                on 2007/03/23  01:43:11
5333         Log: Upgrade to Pod-Simple-3.05.
5334      Branch: perl
5335            + lib/Pod/Simple/t/20_skip.t lib/Pod/Simple/t/accept01.t
5336            + lib/Pod/Simple/t/corpus/2202jp.txt.packed
5337            + lib/Pod/Simple/t/corpus/2202jpx.txt.packed
5338            + lib/Pod/Simple/t/corpus/2202jpy.txt.packed
5339            + lib/Pod/Simple/t/corpus2/polish_utf16be_bom.txt.packed
5340            + lib/Pod/Simple/t/corpus2/polish_utf16le_bom.txt.packed
5341            + lib/Pod/Simple/t/reinit.t
5342           +> (branch 87 files)
5343            - lib/Pod/Simple/t/20_skip_before_58.t
5344            - lib/Pod/Simple/t/ac_c_extend.t lib/Pod/Simple/t/ac_c_simple.t
5345            - lib/Pod/Simple/t/beginend.t
5346            - lib/Pod/Simple/t/corpus/buniya_cp1256.txt
5347            - lib/Pod/Simple/t/corpus/buniya_cp1256.xml
5348            - lib/Pod/Simple/t/corpus/buniya_iso6.txt
5349            - lib/Pod/Simple/t/corpus/buniya_iso6.xml
5350            - lib/Pod/Simple/t/corpus/fet_contradiction.txt
5351            - lib/Pod/Simple/t/corpus/fet_contradiction.xml
5352            - lib/Pod/Simple/t/corpus/fet_duplication.txt
5353            - lib/Pod/Simple/t/corpus/fet_duplication.xml
5354            - lib/Pod/Simple/t/corpus/fet_when_koi8r.txt
5355            - lib/Pod/Simple/t/corpus/fet_when_koi8r.xml
5356            - lib/Pod/Simple/t/corpus/french_implicit_latin1.txt
5357            - lib/Pod/Simple/t/corpus/french_implicit_latin1.xml
5358            - lib/Pod/Simple/t/corpus/french_latin1.txt
5359            - lib/Pod/Simple/t/corpus/french_latin1.xml
5360            - lib/Pod/Simple/t/corpus/greek_iso_8859_7.pod
5361            - lib/Pod/Simple/t/corpus/greek_iso_8859_7.xml
5362            - lib/Pod/Simple/t/corpus/haiku-iso2202jp.xml
5363            - lib/Pod/Simple/t/corpus/haiku-iso2202jpx.xml
5364            - lib/Pod/Simple/t/corpus/haiku-iso2202jpy.xml
5365            - lib/Pod/Simple/t/corpus/haiku-iso2202jpz.txt
5366            - lib/Pod/Simple/t/corpus/haiku-iso2202jpz.xml
5367            - lib/Pod/Simple/t/corpus_not_yet_impl/fiqhakbar_iso6.txt
5368            - lib/Pod/Simple/t/corpus_not_yet_impl/fiqhakbar_iso6.xml
5369            - lib/Pod/Simple/t/corpus_not_yet_impl/polish_implicit_utf8.txt
5370            - lib/Pod/Simple/t/corpus_not_yet_impl/polish_utf8_bom.txt
5371            - lib/Pod/Simple/t/corpus_not_yet_impl/polish_utf8_bom.xml
5372            - lib/Pod/Simple/t/corpus_not_yet_impl/polish_utf8_bom2.txt
5373            - lib/Pod/Simple/t/corpus_not_yet_impl/polish_utf8_bom2.xml
5374            - lib/Pod/Simple/t/corpustest.t
5375            - lib/Pod/Simple/t/encoding_nonesuch.t
5376            - lib/Pod/Simple/t/encoding_not_error.t
5377            - lib/Pod/Simple/t/encoding_not_error0.t
5378            - lib/Pod/Simple/t/fcodes_ee.t lib/Pod/Simple/t/fcodes_ell.t
5379            - lib/Pod/Simple/t/fcodes_ess.t
5380            - lib/Pod/Simple/t/fullstop_spaces.t
5381            - lib/Pod/Simple/t/head_ends_over.t lib/Pod/Simple/t/html-para.t
5382            - lib/Pod/Simple/t/html-styles.t lib/Pod/Simple/t/html-title.t
5383            - lib/Pod/Simple/t/htmlbatch_01.t lib/Pod/Simple/t/itemadapt.t
5384            - lib/Pod/Simple/t/junk1_out.txt lib/Pod/Simple/t/junk2_out.txt
5385            - lib/Pod/Simple/t/linkclass.t
5386            - lib/Pod/Simple/t/other_test_lib/Sizzlesuzzle.pm
5387            - lib/Pod/Simple/t/other_test_lib/hink_honk/Glunk.pod
5388            - lib/Pod/Simple/t/other_test_lib/hink_honk/Vliff.pm
5389            - lib/Pod/Simple/t/other_test_lib/hink_honk/readme.txt
5390            - lib/Pod/Simple/t/other_test_lib/pod/perlthang.pod
5391            - lib/Pod/Simple/t/other_test_lib/pod/perlzuk.pod
5392            - lib/Pod/Simple/t/other_test_lib/squaa/Vliff.pm
5393            - lib/Pod/Simple/t/other_test_lib/squaa/Wowo.pod
5394            - lib/Pod/Simple/t/perlcyg_out.txt lib/Pod/Simple/t/perlfaq3.pod
5395            - lib/Pod/Simple/t/perlfaq3_out.txt
5396            - lib/Pod/Simple/t/perlvar_out.txt lib/Pod/Simple/t/pulltitle.t
5397            - lib/Pod/Simple/t/sanity_tfh.t lib/Pod/Simple/t/search_05sane.t
5398            - lib/Pod/Simple/t/search_10survey_specific.t
5399            - lib/Pod/Simple/t/search_12survey_cwd.t
5400            - lib/Pod/Simple/t/search_20survey_two.t
5401            - lib/Pod/Simple/t/search_22survey_two_shadowing.t
5402            - lib/Pod/Simple/t/search_25_glob_squaa.t
5403            - lib/Pod/Simple/t/search_26_glob_kleene_k.t
5404            - lib/Pod/Simple/t/search_27_glob_squaa_kleene.t
5405            - lib/Pod/Simple/t/search_28_glob_z_kleene_k.t
5406            - lib/Pod/Simple/t/search_29_glob_z_qmark_k.t
5407            - lib/Pod/Simple/t/search_50survey_inc.t
5408            - lib/Pod/Simple/t/test_lib/Blorm.pm
5409            - lib/Pod/Simple/t/test_lib/Zonk/Fiddle.txt
5410            - lib/Pod/Simple/t/test_lib/Zonk/Pronk.pm
5411            - lib/Pod/Simple/t/test_lib/Zonk/Veng.pm
5412            - lib/Pod/Simple/t/test_lib/hink_honk/Glunk.pod
5413            - lib/Pod/Simple/t/test_lib/hink_honk/Vliff.pm
5414            - lib/Pod/Simple/t/test_lib/hink_honk/readme.txt
5415            - lib/Pod/Simple/t/test_lib/pod/perlfliff.pod
5416            - lib/Pod/Simple/t/test_lib/pod/perlthang.pod
5417            - lib/Pod/Simple/t/test_lib/squaa.pm
5418            - lib/Pod/Simple/t/test_lib/squaa/Glunk.pod
5419            - lib/Pod/Simple/t/test_lib/squaa/Vliff.pm
5420            - lib/Pod/Simple/t/test_lib/zikzik.pod
5421            - lib/Pod/Simple/t/verbatim_formatted.t
5422            - lib/Pod/Simple/t/verbatims.t
5423            - lib/Pod/Simple/t/yet_another_test_lib/squaa/Vliff.pm
5424            ! MANIFEST lib/Pod/Simple.pm lib/Pod/Simple/ChangeLog
5425            ! lib/Pod/Simple/Search.pm
5426 ____________________________________________________________________________
5427 [ 30700] By: nicholas                              on 2007/03/22  22:21:54
5428         Log: Can use memEQ instead of strnEQ in CHECK_WORD()
5429      Branch: perl
5430            ! regcomp.c
5431 ____________________________________________________________________________
5432 [ 30693] By: rgs                                   on 2007/03/22  18:26:36
5433         Log: Subject: [PATCH] Re: [perl #32687] Encode::is_utf8 on tainted UTF8 string
5434              From: Rafael Garcia-Suarez <rgarciasuarez@mandriva.com>
5435              Date: Thu, 16 Nov 2006 17:36:44 +0100
5436              Message-ID: <20061116173644.4412f66f@grubert.mandriva.com>
5437      Branch: perl
5438            ! ext/Encode/Encode.xs
5439 ____________________________________________________________________________
5440 [ 30691] By: steveh                                on 2007/03/22  17:46:43
5441         Log: Make sure Win32CORE.pm gets cleaned up
5442              
5443              Normally it happens anyway, but sometimes when running 'distclean'
5444              on a half-built source tree it gets left behind.
5445      Branch: perl
5446            ! win32/Makefile win32/makefile.mk
5447 ____________________________________________________________________________
5448 [ 30688] By: rgs                                   on 2007/03/22  14:45:36
5449         Log: Misc. L<> fixes in core docs : don't link to man pages;
5450              provide full urls when linking to web sites.
5451      Branch: perl
5452            ! pod/perlipc.pod pod/perllocale.pod pod/perlpacktut.pod
5453 ____________________________________________________________________________
5454 [ 30687] By: stevep                                on 2007/03/22  14:43:32
5455         Log: Subject: [PATCH] Fix to threads::shared t/waithires.t
5456              From: "Jerry D. Hedden" <jdhedden@yahoo.com>
5457              Date: Thu, 22 Mar 2007 07:34:23 -0700 (PDT)
5458              Message-ID: <381102.32342.qm@web30207.mail.mud.yahoo.com>
5459      Branch: perl
5460            ! ext/threads/shared/t/waithires.t
5461 ____________________________________________________________________________
5462 [ 30686] By: rgs                                   on 2007/03/22  14:41:17
5463         Log: Fix a broken link and a meaningless phrase in perldebguts
5464      Branch: perl
5465            ! pod/perldebguts.pod
5466 ____________________________________________________________________________
5467 [ 30685] By: rgs                                   on 2007/03/22  14:37:43
5468         Log: Remove references to perlcc from the core docs.
5469      Branch: perl
5470            ! pod/perlfunc.pod pod/perlmod.pod pod/perlutil.pod
5471            ! pod/perlvar.pod
5472 ____________________________________________________________________________
5473 [ 30684] By: rgs                                   on 2007/03/22  14:25:54
5474         Log: Fix internal POD link
5475      Branch: perl
5476            ! lib/Term/ANSIColor.pm
5477 ____________________________________________________________________________
5478 [ 30683] By: nicholas                              on 2007/03/22  14:00:14
5479         Log: Re-order the flags values for struct refcounted_he to allow the
5480              possibility of storing 2 futher types. Add a void * to the union
5481              as it won't increase the size, but may become useful.
5482      Branch: perl
5483            ! hv.c hv.h
5484 ____________________________________________________________________________
5485 [ 30681] By: rgs                                   on 2007/03/22  09:28:15
5486         Log: Subject: [PATCH] Re: [PATCH] lib/Pod/Html.pm plus a funky UT8-8 regex bug
5487              From: Jarkko Hietaniemi <jhi@iki.fi>
5488              Date: Wed, 21 Mar 2007 08:01:14 -0400
5489              Message-ID: <46011E8A.1080009@iki.fi>
5490      Branch: perl
5491            ! lib/Pod/Html.pm
5492 ____________________________________________________________________________
5493 [ 30680] By: rgs                                   on 2007/03/22  09:19:22
5494         Log: regexp refcount is an integer, not a pointer
5495      Branch: perl
5496            ! dump.c
5497 ____________________________________________________________________________
5498 [ 30679] By: rgs                                   on 2007/03/22  09:16:37
5499         Log: Fix error message for re::regnames_iterinit()
5500      Branch: perl
5501            ! universal.c
5502 ____________________________________________________________________________
5503 [ 30678] By: rgs                                   on 2007/03/22  09:01:37
5504         Log: Subject: [PATCH] Resolve PL_curpm issues with (??{}) and fix corruption of match results when pattern is a qr.
5505              From: demerphq <demerphq@gmail.com>
5506              Date: Wed, 21 Mar 2007 10:39:24 +0100
5507              Message-ID: <9b18b3110703210239x540f5ad9mdb41c2ea6229ac31@mail.gmail.com>
5508              
5509              plus two follow-up patches (minor tweaks)
5510      Branch: perl
5511            ! dump.c embed.fnc embed.h ext/Devel/Peek/t/Peek.t
5512            ! ext/Encode/t/Aliases.t ext/re/re.pm ext/re/t/re_funcs.t
5513            ! global.sym lib/Tie/Hash/NamedCapture.pm pp_ctl.c proto.h
5514            ! regcomp.c regcomp.h regexec.c regexp.h t/op/pat.t universal.c
5515 ____________________________________________________________________________
5516 [ 30677] By: rgs                                   on 2007/03/22  08:34:42
5517         Log: Subject: [PATCH] threads 1.61
5518              From: "Jerry D. Hedden" <jdhedden@yahoo.com>
5519              Date: Wed, 21 Mar 2007 13:15:53 -0700 (PDT)
5520              Message-ID: <999680.51877.qm@web30208.mail.mud.yahoo.com>
5521              
5522              Fix 'list/array' context - both keywords are supported
5523      Branch: perl
5524            ! ext/threads/Changes ext/threads/README ext/threads/t/context.t
5525            ! ext/threads/t/exit.t ext/threads/t/thread.t
5526            ! ext/threads/threads.pm ext/threads/threads.xs
5527 ____________________________________________________________________________
5528 [ 30676] By: davem                                 on 2007/03/22  00:16:23
5529         Log: fix MAD compilation of C-style for loop
5530              
5531              Subject:  [PATCH] MAD C-style for loop
5532              From:  Gerard Goossen <gerard@tty.nl>
5533              Date:  Wed, 21 Mar 2007 19:18:52 +0100
5534              Message-Id:  <20070321181852.GD31539@ostwald>
5535      Branch: perl
5536            ! perly.act perly.y
5537 ____________________________________________________________________________
5538 [ 30675] By: stevep                                on 2007/03/21  23:21:46
5539         Log: Silence a couple of warnings caused by change #30672.
5540      Branch: perl
5541            ! doio.c
5542 ____________________________________________________________________________
5543 [ 30673] By: nicholas                              on 2007/03/21  22:59:47
5544         Log: Adjust test count for 5.8.x
5545      Branch: perl
5546            ! ext/B/t/concise-xs.t
5547 ____________________________________________________________________________
5548 [ 30672] By: stevep                                on 2007/03/21  22:44:10
5549         Log: Make gcc warn in case code is not C++ compatible.
5550      Branch: perl
5551            ! cflags.SH
5552 ____________________________________________________________________________
5553 [ 30671] By: nicholas                              on 2007/03/21  22:01:32
5554         Log: Only use proxy constant subroutines for 5.9.x.
5555      Branch: perl
5556            ! ext/Fcntl/Makefile.PL ext/POSIX/Makefile.PL
5557            ! ext/Socket/Makefile.PL
5558 ____________________________________________________________________________
5559 [ 30670] By: nicholas                              on 2007/03/21  21:28:35
5560         Log: Subject: [PATCH] Change 30661 could result in undefined variable
5561              From: "Jerry D. Hedden" <jdhedden@yahoo.com>
5562              Message-ID: <915076.64236.qm@web30212.mail.mud.yahoo.com>
5563              Date: Wed, 21 Mar 2007 12:47:52 -0700 (PDT)
5564      Branch: perl
5565            ! util.c
5566 ____________________________________________________________________________
5567 [ 30667] By: nicholas                              on 2007/03/21  19:02:50
5568         Log: Add some PERL_MEM* defines to the -V output that were missing.
5569              "Correct" the whitespace on the only inconsistent #ifdef/#endif
5570      Branch: perl
5571            ! perl.c
5572 ____________________________________________________________________________
5573 [ 30661] By: nicholas                              on 2007/03/21  16:31:52
5574         Log: Remove the (sometimes) unused variable from change 30652.
5575      Branch: perl
5576            ! util.c
5577 ____________________________________________________________________________
5578 [ 30660] By: stevep                                on 2007/03/21  13:32:22
5579         Log: Pod fix to h2ph from John Morrissey on the Debian bug list.
5580      Branch: perl
5581            ! utils/h2ph.PL
5582 ____________________________________________________________________________
5583 [ 30659] By: nicholas                              on 2007/03/21  12:53:56
5584         Log: Don't try to set the NV on a typeglob-in-action. Should cure bug
5585              41920.
5586      Branch: perl
5587            ! sv.c
5588 ____________________________________________________________________________
5589 [ 30658] By: nicholas                              on 2007/03/21  12:20:03
5590         Log: AVs and HVs never had the NV slot. (Not that this error mattered, as
5591              you can't upgrade from them, and the only code path that uses the
5592              flag in sv_upgrade isn't reached when upgrading to AVs or HVs)
5593      Branch: perl
5594            ! sv.c
5595 ____________________________________________________________________________
5596 [ 30657] By: rgs                                   on 2007/03/21  10:43:52
5597         Log: Subject: [PATCH] Sys::Syslog doesn't need ppport.h in core
5598              From: "Jerry D. Hedden" <jdhedden@yahoo.com>
5599              Date: Tue, 20 Mar 2007 13:15:31 -0700 (PDT)
5600              Message-ID: <203426.48736.qm@web30214.mail.mud.yahoo.com>
5601      Branch: perl
5602            ! ext/Sys/Syslog/Makefile.PL ext/Sys/Syslog/Syslog.pm
5603            ! ext/Sys/Syslog/Syslog.xs mkppport.lst
5604 ____________________________________________________________________________
5605 [ 30656] By: rgs                                   on 2007/03/21  10:24:52
5606         Log: Subject: [PATCH] Data::Dumper doesn't need ppport.h in core
5607              From: "Jerry D. Hedden" <jdhedden@yahoo.com>
5608              Date: Tue, 20 Mar 2007 11:48:24 -0700 (PDT)
5609              Message-ID: <627715.37131.qm@web30212.mail.mud.yahoo.com>
5610      Branch: perl
5611            ! ext/Data/Dumper/Dumper.pm ext/Data/Dumper/Dumper.xs
5612            ! ext/Data/Dumper/Makefile.PL mkppport.lst
5613 ____________________________________________________________________________
5614 [ 30655] By: rgs                                   on 2007/03/21  09:27:40
5615         Log: Subject: [PATCH] Compress::Raw::Zlib doesn't need ppport.h in core [REVISED]
5616              From: "Jerry D. Hedden" <jdhedden@yahoo.com>
5617              Date: Tue, 20 Mar 2007 14:05:46 -0700 (PDT)
5618              Message-ID: <855257.38889.qm@web30205.mail.mud.yahoo.com>
5619      Branch: perl
5620            ! ext/Compress/Raw/Zlib/Makefile.PL
5621            ! ext/Compress/Raw/Zlib/Zlib.xs
5622            ! ext/Compress/Raw/Zlib/lib/Compress/Raw/Zlib.pm mkppport.lst
5623 ____________________________________________________________________________
5624 [ 30654] By: rgs                                   on 2007/03/21  09:20:30
5625         Log: Subject: [PATCH] Remove unneeded pragma line from B/t/OptreeCheck.pm
5626              From: "Jerry D. Hedden" <jdhedden@yahoo.com>
5627              Date: Tue, 20 Mar 2007 16:43:02 -0700 (PDT)
5628              Message-ID: <376615.72521.qm@web30204.mail.mud.yahoo.com>
5629      Branch: perl
5630            ! ext/B/t/OptreeCheck.pm
5631 ____________________________________________________________________________
5632 [ 30653] By: rgs                                   on 2007/03/21  08:57:22
5633         Log: Don't install XS::APItest and XS::Typemap
5634      Branch: perl
5635            ! installperl utils/perlivp.PL
5636 ____________________________________________________________________________
5637 [ 30652] By: nicholas                              on 2007/03/20  23:20:46
5638         Log: In safecalloc, use the system calloc() for the non-DEBUGGING case, as
5639              it may be able to memset() to 0 for free. 
5640      Branch: perl
5641            ! util.c
5642 ____________________________________________________________________________
5643 [ 30651] By: rgs                                   on 2007/03/20  16:15:55
5644         Log: Subject: [PATCH] Re: ppport.h in core
5645              From: "Jerry D. Hedden" <jdhedden@yahoo.com>
5646              Date: Tue, 20 Mar 2007 09:08:19 -0700 (PDT)
5647              Message-ID: <319763.15276.qm@web30202.mail.mud.yahoo.com>
5648              
5649              Digest::SHA no longer uses ppport.h
5650      Branch: perl
5651            ! mkppport.lst
5652 ____________________________________________________________________________
5653 [ 30649] By: merijn                                on 2007/03/20  16:06:11
5654         Log: Subject: [PATCH] my email address changed
5655              From: Michael Stevens <mstevens@etla.org>
5656              Date: Tue, 20 Mar 2007 15:49:12 +0000
5657              Message-ID: <20070320154912.GE50318@etla.org>
5658      Branch: perl
5659            ! AUTHORS
5660 ____________________________________________________________________________
5661 [ 30648] By: rgs                                   on 2007/03/20  11:39:16
5662         Log: More nits in the PERL5LIB docs, suggested by Andreas.
5663      Branch: perl
5664            ! pod/perlrun.pod
5665 ____________________________________________________________________________
5666 [ 30647] By: rgs                                   on 2007/03/20  09:01:05
5667         Log: Subject: [PATCH] feel the the baß (encoding problems in the regex engine)
5668              From: demerphq <demerphq@gmail.com>
5669              Date: Tue, 20 Mar 2007 01:40:34 +0100
5670              Message-ID: <9b18b3110703191740m6bf21942p6521f3016ed8092f@mail.gmail.com>
5671      Branch: perl
5672            ! pod/perlreguts.pod regcomp.c regexec.c t/op/pat.t
5673 ____________________________________________________________________________
5674 [ 30646] By: rgs                                   on 2007/03/19  23:59:54
5675         Log: Better wording for the return value of select()
5676              (bug #41907)
5677      Branch: perl
5678            ! pod/perlfunc.pod
5679 ____________________________________________________________________________
5680 [ 30645] By: rgs                                   on 2007/03/19  23:34:50
5681         Log: More adjustments to the PERL5LIB docs by Rick
5682              Delaney and myself
5683      Branch: perl
5684            ! pod/perlrun.pod
5685 ____________________________________________________________________________
5686 [ 30644] By: rgs                                   on 2007/03/19  23:11:12
5687         Log: Let %^H be modifiable in eval-strings (bug #41531),
5688              by adding a meaning for OPf_SPECIAL on OP_CONST.
5689              Patch by Yves Orton.
5690      Branch: perl
5691            ! op.c op.h pp_hot.c t/comp/hints.t
5692 ____________________________________________________________________________
5693 [ 30643] By: rgs                                   on 2007/03/19  22:44:18
5694         Log: Subject: Re: Composing @INC from PERL5LIB
5695              From: andreas.koenig.7os6VVqR@franz.ak.mind.de (Andreas J. Koenig)
5696              Date: Mon, 19 Mar 2007 23:35:10 +0100
5697              Message-ID: <87ircwkgkh.fsf@k75.linux.bogus>
5698      Branch: perl
5699            ! pod/perlrun.pod
5700 ____________________________________________________________________________
5701 [ 30634] By: rgs                                   on 2007/03/19  15:42:58
5702         Log: Adjust timing tolerance in threads tests, by Jerry D. Hedden
5703      Branch: perl
5704            ! ext/threads/shared/shared.pm ext/threads/shared/shared.xs
5705            ! ext/threads/shared/t/waithires.t
5706 ____________________________________________________________________________
5707 [ 30633] By: nicholas                              on 2007/03/19  15:17:27
5708         Log: PerlIO_exportFILE() and PerlIO_releaseFILE() should manage the fd
5709              reference counts correctly.
5710      Branch: perl
5711            ! ext/XS/Typemap/Typemap.xs perlio.c
5712 ____________________________________________________________________________
5713 [ 30631] By: rgs                                   on 2007/03/19  09:34:32
5714         Log: Subject: Re: [perl #41691] [PATCH] v5.8.8 pod2html -- Convert RFC links to point ot IETF pages
5715              From: Jari Aalto <jari.aalto@cante.net>
5716              Date: Sat, 17 Mar 2007 11:11:17 +0300
5717              Message-ID: <87k5xg9tne.fsf@w2kpicasso.cante.net>
5718      Branch: perl
5719            ! lib/Pod/Html.pm
5720 ____________________________________________________________________________
5721 [ 30630] By: rgs                                   on 2007/03/19  09:27:29
5722         Log: Subject: Re: perlreguts: Copy-editing and wishlist
5723              From: Marvin Humphrey <marvin@rectangular.com>
5724              Date: Fri, 16 Mar 2007 12:44:55 -0700
5725              Message-Id: <F6284B08-4B4E-467A-AFB2-8A71154FDD08@rectangular.com>
5726      Branch: perl
5727            ! pod/perlreguts.pod
5728 ____________________________________________________________________________
5729 [ 30629] By: rgs                                   on 2007/03/19  08:58:08
5730         Log: Upgrade to version.pm 0.71, by John Peacock
5731      Branch: perl
5732            ! embed.fnc embed.h gv.c lib/version.t perl.c pod/perlapi.pod
5733            ! pp_ctl.c proto.h t/comp/use.t t/op/universal.t universal.c
5734            ! util.c
5735 ____________________________________________________________________________
5736 [ 30628] By: davem                                 on 2007/03/19  00:00:46
5737         Log: minor code simplification made possible by change #30627
5738      Branch: perl
5739            ! mg.c
5740 ____________________________________________________________________________
5741 [ 30627] By: davem                                 on 2007/03/18  23:43:05
5742         Log: When restoring localised values, call set only on container magic.
5743              Avoids (among other things), localised pos index being trashed at
5744              scope exit.
5745      Branch: perl
5746            ! mg.c t/op/pos.t
5747 ____________________________________________________________________________
5748 [ 30624] By: davem                                 on 2007/03/18  23:17:04
5749         Log: move magic container/value test into separate function
5750      Branch: perl
5751            ! mg.c
5752 ____________________________________________________________________________
5753 [ 30618] By: nicholas                              on 2007/03/18  21:14:16
5754         Log: The test case applied in change 29502 really should have gone at the
5755              end of the file t/op/re_tests.
5756      Branch: perl
5757            ! t/op/re_tests
5758 ____________________________________________________________________________
5759 [ 30614] By: nicholas                              on 2007/03/18  19:44:42
5760         Log: Subject: 29044 broke Fatal.pm
5761              From: andreas.koenig.7os6VVqR@franz.ak.mind.de (Andreas J. Koenig)
5762              Message-ID: <87slc37y99.fsf@k75.linux.bogus>
5763              Date: Sun, 18 Mar 2007 09:26:58 +0100
5764      Branch: perl
5765            ! lib/Fatal.pm lib/Fatal.t
5766 ____________________________________________________________________________
5767 [ 30610] By: nicholas                              on 2007/03/17  18:42:30
5768         Log: PerlIO_importFILE() should increase the reference count on the fd
5769              that it brings into PerlIO managed space. (A long standing problem
5770              reported by Steve Hay)
5771      Branch: perl
5772            ! perlio.c
5773 ____________________________________________________________________________
5774 [ 30609] By: rgs                                   on 2007/03/17  17:43:48
5775         Log: Subject: [PATCH] perl5db.t: skip test when /dev/tty is not available
5776              From: Alexey Tourbin <at@altlinux.ru>
5777              Date: Sat, 17 Mar 2007 19:28:33 +0300
5778              Message-ID: <20070317162833.GA10670@solemn.turbinal>
5779      Branch: perl
5780            ! lib/perl5db.t
5781 ____________________________________________________________________________
5782 [ 30608] By: nicholas                              on 2007/03/17  16:58:00
5783         Log: Test case from Karl Chen in RT #41831
5784              (The bug was already fixed in blead, merged to maint, and it seems
5785              better to adapt the sample code rather than add the whole new test)
5786      Branch: perl
5787            ! t/op/taint.t
5788 ____________________________________________________________________________
5789 [ 30607] By: nicholas                              on 2007/03/17  15:14:38
5790         Log: Remove the other 4 bits of MAD code designed to abort on local $^L.
5791      Branch: perl
5792            ! scope.c
5793 ____________________________________________________________________________
5794 [ 30606] By: nicholas                              on 2007/03/17  13:01:18
5795         Log: The code in newCONDOP can be made visibly simpler by using intermediate
5796              variables. It's also 8 bytes smaller with -Os
5797      Branch: perl
5798            ! op.c
5799 ____________________________________________________________________________
5800 [ 30605] By: nicholas                              on 2007/03/16  19:29:04
5801         Log: Under -Dmad, free the ops representing the dead code when a branch
5802              conditional value is actually a constant. Previously this was leaking
5803              ops, and more visibly shared hash keys.
5804      Branch: perl
5805            ! op.c
5806 ____________________________________________________________________________
5807 [ 30604] By: rgs                                   on 2007/03/16  15:18:07
5808         Log: Subject: Re: [perl #41691] [PATCH] v5.8.8 pod2html -- Convert RFC links to point ot IETF pages
5809              From: Jari Aalto <jari.aalto@cante.net>
5810              Date: Wed, 14 Mar 2007 21:56:14 +0300
5811              Message-ID: <87hcsnbqnl.fsf@w2kpicasso.cante.net>
5812      Branch: perl
5813            ! lib/Pod/Html.pm
5814 ____________________________________________________________________________
5815 [ 30603] By: nicholas                              on 2007/03/16  08:41:02
5816         Log: Remove the abort() trap, which Larry said was actually only ever
5817              intended as a way to enter gdb by using local $^L
5818      Branch: perl
5819            ! scope.c
5820 ____________________________________________________________________________
5821 [ 30602] By: craigb                                on 2007/03/16  01:40:50
5822         Log: Make sure escaped dots in filenames are preserved when translating
5823              filenames from VMS to UNIX syntax.
5824      Branch: perl
5825            ! vms/ext/filespec.t vms/vms.c
5826 ____________________________________________________________________________
5827 [ 30601] By: rgs                                   on 2007/03/15  17:43:43
5828         Log: Patch by Abigail to avoid using $& in diagnostics.pm.
5829      Branch: perl
5830            ! lib/diagnostics.pm
5831 ____________________________________________________________________________
5832 [ 30600] By: rgs                                   on 2007/03/15  17:18:18
5833         Log: Subject: [PATCH] Re: Smoke [5.8.8] 30522 FAIL(XF) Solaris 2.10 (i386/1 cpu)
5834              From: Abe Timmerman <abe@ztreet.demon.nl>
5835              Date: Thu, 15 Mar 2007 18:06:25 +0100
5836              Message-ID: <45F97D11.2080009@ztreet.demon.nl>
5837              
5838              skips some tests when perl is built without useperlio
5839      Branch: perl
5840            ! ext/PerlIO/encoding/t/nolooping.t t/op/inccode.t
5841 ____________________________________________________________________________
5842 [ 30599] By: rgs                                   on 2007/03/15  16:14:22
5843         Log: Patch by Gerard Goossen to add madprops to "require" opcode
5844      Branch: perl
5845            ! perly.act perly.h perly.tab perly.y
5846 ____________________________________________________________________________
5847 [ 30597] By: rgs                                   on 2007/03/15  16:01:33
5848         Log: Patch by Gerard Goossen to have nomad print also
5849              the [ ] { } madprops.
5850      Branch: perl
5851            ! mad/nomad
5852 ____________________________________________________________________________
5853 [ 30596] By: rgs                                   on 2007/03/15  15:53:28
5854         Log: Don't mention DynaLoader.a in INSTALL,
5855              since it doesn't exist anymore
5856      Branch: perl
5857            ! INSTALL
5858 ____________________________________________________________________________
5859 [ 30595] By: nicholas                              on 2007/03/15  15:02:55
5860         Log: Seems that 5.6.x needs the same fix as 5.005_xx for dclone.t
5861      Branch: perl
5862            ! ext/Storable/Storable.xs
5863 ____________________________________________________________________________
5864 [ 30594] By: nicholas                              on 2007/03/15  13:23:49
5865         Log: Subject: Re: [Patch] Fix some of the tests of Storable on Perl 5.004
5866              From: Sébastien Aperghis-Tramoni <saper@cpan.org>
5867              Message-ID: <1173961567.45f93b5f0fc9f@imp.free.fr>
5868              Date: Thu, 15 Mar 2007 13:26:07 +0100
5869      Branch: perl
5870            ! ext/Storable/Storable.pm ext/Storable/t/file_magic.t
5871            ! ext/Storable/t/threads.t
5872 ____________________________________________________________________________
5873 [ 30593] By: nicholas                              on 2007/03/15  11:35:26
5874         Log: Tweak to Storable to make dclone.t pass on 5.005_03.
5875      Branch: perl
5876            ! ext/Storable/Storable.xs
5877 ____________________________________________________________________________
5878 [ 30592] By: nicholas                              on 2007/03/15  11:32:38
5879         Log: Subject: [PATCH blead] Re: What is this MAD stuff all about?
5880              From: Rick Delaney <rick@bort.ca>
5881              Message-ID: <20070313001511.GJ6001@bort.ca>
5882              Date: Mon, 12 Mar 2007 20:15:12 -0400
5883      Branch: perl
5884            ! toke.c
5885 ____________________________________________________________________________
5886 [ 30591] By: rgs                                   on 2007/03/15  09:52:05
5887         Log: Upgrade to threads::shared 1.08 :
5888              - Sub-second resolution for cont_timedwait under WIN32
5889              (courtesy of Dean Arnold)
5890              - Fix compiler warnings
5891      Branch: perl
5892            + ext/threads/shared/t/waithires.t
5893            ! MANIFEST ext/threads/shared/Changes ext/threads/shared/README
5894            ! ext/threads/shared/shared.pm ext/threads/shared/shared.xs
5895            ! ext/threads/shared/t/blessed.t
5896 ____________________________________________________________________________
5897 [ 30590] By: rgs                                   on 2007/03/15  09:35:14
5898         Log: Make the isdst argument to asctime and mktime default to -1
5899              instead of 0, as suggested by Mike Schilli.
5900      Branch: perl
5901            ! ext/POSIX/POSIX.pm ext/POSIX/POSIX.pod ext/POSIX/POSIX.xs
5902 ____________________________________________________________________________
5903 [ 30589] By: nicholas                              on 2007/03/14  23:33:02
5904         Log: Changes needed to get Storable to compile on 5.005_03.
5905              Passing tests is a different matter...
5906      Branch: perl
5907            ! ext/Storable/Storable.xs
5908 ____________________________________________________________________________
5909 [ 30584] By: rgs                                   on 2007/03/14  16:18:33
5910         Log: Subject: Re: [perl #41687] [PATCH] v5.8.8 pod2html -- Add --[no]fragmentuniq to support more readable <a name=..> refs
5911              From: Jari Aalto <jari.aalto@cante.net>
5912              Date: Wed, 07 Mar 2007 10:04:15 +0200
5913              Message-ID: <87y7m9scn4.fsf@w2kpicasso.cante.net>
5914              
5915              with test adjustments
5916      Branch: perl
5917            ! lib/Pod/Html.pm lib/Pod/t/htmllink.t lib/Pod/t/htmlview.t
5918 ____________________________________________________________________________
5919 [ 30583] By: rgs                                   on 2007/03/14  15:50:21
5920         Log: Subject: [perl #41698] [PATCH] v5.8.8 pod2html -- Add <div>..</div> around the outputted INDEX section 
5921              From: Jari Aalto (via RT) <perlbug-followup@perl.org>
5922              Date: Sun, 04 Mar 2007 13:33:20 -0800
5923              Message-ID: <rt-3.6.HEAD-2051-1173043999-1740.41698-75-0@perl.org>
5924              
5925              plus test adjustments
5926      Branch: perl
5927            ! lib/Pod/Html.pm lib/Pod/t/htmlescp.t lib/Pod/t/htmllink.t
5928            ! lib/Pod/t/htmlview.t
5929 ____________________________________________________________________________
5930 [ 30582] By: rgs                                   on 2007/03/14  15:40:54
5931         Log: Subject: [perl #41701] [PATCH] v5.8.8. pod2html -- F<filename> should add 'class="file"' in the HTML output 
5932              From: Jari Aalto (via RT) <perlbug-followup@perl.org>
5933              Date: Mon, 05 Mar 2007 02:05:38 -0800
5934              Message-ID: <rt-3.6.HEAD-2051-1173089138-1801.41701-75-0@perl.org>
5935              
5936              plus adjustments to tests
5937      Branch: perl
5938            ! lib/Pod/Html.pm lib/Pod/t/htmlescp.t lib/Pod/t/htmlview.t
5939 ____________________________________________________________________________
5940 [ 30580] By: rgs                                   on 2007/03/14  13:38:15
5941         Log: De-hardcode a path in a Test::Simple test, so it works
5942              when integrated to the core.
5943      Branch: perl
5944            ! lib/Test/Simple/t/fail-more.t
5945 ____________________________________________________________________________
5946 [ 30578] By: stevep                                on 2007/03/14  13:17:42
5947         Log: Upgrade to Test-Simple-0.68.  Includes a tweak to
5948              lib/Test/Simple/t/fail-more.t so that all of its tests pass within
5949              the Perl core.
5950      Branch: perl
5951            ! lib/Test/Builder.pm lib/Test/Builder/Module.pm
5952            ! lib/Test/More.pm lib/Test/Simple.pm lib/Test/Simple/Changes
5953            ! lib/Test/Simple/t/fail-more.t lib/Test/Simple/t/is_fh.t
5954            ! lib/Test/Simple/t/overload.t
5955 ____________________________________________________________________________
5956 [ 30577] By: davem                                 on 2007/03/14  12:34:05
5957         Log: use a fresh stack when loading Errno.pm etc.
5958              Stops 'use vars qw($!)' in lib/vars.t segfaulting.
5959              (This can be reduced to 'my $sym = "!"; *$sym = \$$sym')
5960      Branch: perl
5961            ! gv.c
5962 ____________________________________________________________________________
5963 [ 30576] By: rgs                                   on 2007/03/14  09:43:21
5964         Log: Patch by Sébastien Aperghis-Tramoni to avoid encoding
5965              everything that goes through Net::Cmd as UTF-8
5966              (regression as of Net::Cmd 2.27, see CPAN RT #24835)
5967      Branch: perl
5968            ! lib/Net/Cmd.pm
5969 ____________________________________________________________________________
5970 [ 30575] By: rgs                                   on 2007/03/14  07:51:57
5971         Log: Subject: [PATCH] perlfunc.pod (ref results), perlop.pod (qr// result) 
5972              From: Wolfgang Laun <Wolfgang.Laun@thalesgroup.com>
5973              Date: Wed, 14 Mar 2007 07:56:45 +0100
5974              Message-ID: <45F79CAD.5050005@thalesgroup.com>
5975      Branch: perl
5976            ! pod/perlfunc.pod pod/perlop.pod
5977 ____________________________________________________________________________
5978 [ 30574] By: nicholas                              on 2007/03/13  23:10:11
5979         Log: The dMY_CXT added in change 27938 isn't needed when in the PERL_CORE.
5980      Branch: perl
5981            ! regexec.c
5982 ____________________________________________________________________________
5983 [ 30572] By: nicholas                              on 2007/03/13  22:48:46
5984         Log: Check that stat and -X favours the file handle over the directory
5985              handle when using *THINGY{IO} syntax too.
5986      Branch: perl
5987            ! t/op/stat.t
5988 ____________________________________________________________________________
5989 [ 30571] By: nicholas                              on 2007/03/13  22:24:54
5990         Log: Check that stat and -X on barewords favour the file handle over the
5991              directory handle for the ambiguous case.
5992      Branch: perl
5993            ! t/op/stat.t
5994 ____________________________________________________________________________
5995 [ 30569] By: nicholas                              on 2007/03/13  20:48:17
5996         Log: Bump versions of modules that are currently on "dev" releases in maint.
5997      Branch: perl
5998            ! ext/B/B/Debug.pm ext/B/B/Terse.pm
5999 ____________________________________________________________________________
6000 [ 30566] By: nicholas                              on 2007/03/13  19:33:02
6001         Log: Integrate:
6002              [ 30565]
6003              Make the constant AVf_REAL conditional on Perl version.
6004      Branch: perl
6005           !> ext/B/defsubs_h.PL
6006 ____________________________________________________________________________
6007 [ 30563] By: nicholas                              on 2007/03/13  17:35:05
6008         Log: 5.8's B.xs exports AVf_REAL, so need to jiggle the test count by 1.
6009              (And then merge the difference back into blead)
6010      Branch: perl
6011            ! ext/B/t/concise-xs.t
6012 ____________________________________________________________________________
6013 [ 30562] By: stevep                                on 2007/03/13  15:54:56
6014         Log: Subject: [PATCH] DB_File with g++ and db v1
6015              From: Jarkko Hietaniemi <jhi@iki.fi>
6016              Date: Mon, 12 Mar 2007 22:01:34 -0400
6017              Message-ID: <45F605FE.1090606@iki.fi>
6018      Branch: perl
6019            ! ext/DB_File/DB_File.xs
6020 ____________________________________________________________________________
6021 [ 30561] By: rgs                                   on 2007/03/13  11:13:20
6022         Log: Subject: [PATCH] inform constant.pm about UNITCHECK
6023              From: "Joshua ben Jore" <twists@gmail.com>
6024              Date: Tue, 13 Mar 2007 00:35:11 -0700
6025              Message-ID: <dc5c751d0703130035o1a739f45g1ea559d110bd5dd8@mail.gmail.com>
6026      Branch: perl
6027            ! lib/constant.pm lib/constant.t
6028 ____________________________________________________________________________
6029 [ 30560] By: rgs                                   on 2007/03/13  11:02:03
6030         Log: Need a SPAGAIN here because the stack pointer might have
6031              moved when evaluating a tied hash in scalar context.
6032      Branch: perl
6033            ! pp_hot.c
6034 ____________________________________________________________________________
6035 [ 30558] By: nicholas                              on 2007/03/13  00:01:42
6036         Log: Get B compiling and passing all tests on both 5.9.x and 5.8.x
6037      Branch: perl
6038            ! ext/B/B.pm ext/B/B.xs ext/B/B/Deparse.pm ext/B/defsubs_h.PL
6039            ! ext/B/t/OptreeCheck.pm ext/B/t/concise-xs.t ext/B/t/f_sort.t
6040            ! ext/B/t/optree_constants.t ext/B/t/optree_specials.t
6041            ! ext/B/t/pragma.t
6042 ____________________________________________________________________________
6043 [ 30557] By: rgs                                   on 2007/03/12  22:14:27
6044         Log: Fix a couple of minor typos in comments
6045      Branch: perl
6046            ! dump.c
6047 ____________________________________________________________________________
6048 [ 30556] By: rgs                                   on 2007/03/12  21:58:19
6049         Log: Better wording for (?|...) in perlre, from a suggestion by Ruud.
6050      Branch: perl
6051            ! pod/perlre.pod
6052 ____________________________________________________________________________
6053 [ 30555] By: rgs                                   on 2007/03/12  21:22:55
6054         Log: Remove notes about experimental functions in the utf8 module.
6055              Also, document that the internal utf8 functions can be used
6056              without loading utf8.pm. (Suggested by Juerd)
6057      Branch: perl
6058            ! lib/utf8.pm
6059 ____________________________________________________________________________
6060 [ 30554] By: rgs                                   on 2007/03/12  21:00:05
6061         Log: warn() without args doesn't take a default message in $_, but in $@
6062      Branch: perl
6063            ! pod/perldiag.pod
6064 ____________________________________________________________________________
6065 [ 30553] By: nicholas                              on 2007/03/12  18:21:56
6066         Log: Fix the partially passing TODO test in optree_constants.t by
6067              making the tests for PL_sv_yes and PL_sv_no run as separate programs,
6068              rather than code eval'd in the current program, as under ithreads
6069              whether you get the real thing or a copy depends on whether any
6070              previous code has that SV in a PAD op.
6071      Branch: perl
6072            ! ext/B/t/optree_constants.t
6073 ____________________________________________________________________________
6074 [ 30552] By: nicholas                              on 2007/03/12  15:30:39
6075         Log: With the demise of ByteLoader in blead, unshare_hek can return to the
6076              backwaters of 'p'. Not being visible to 'EX'tensions means that there's
6077              less exposure to maintenance compatibility concerns.
6078      Branch: perl
6079            ! embed.fnc embed.h global.sym
6080 ____________________________________________________________________________
6081 [ 30551] By: stevep                                on 2007/03/12  15:12:39
6082         Log: Upgrade to CPAN-1.88_78
6083      Branch: perl
6084            ! lib/CPAN.pm lib/CPAN/FirstTime.pm lib/CPAN/Kwalify.pm
6085            ! lib/CPAN/Kwalify/distroprefs.dd
6086            ! lib/CPAN/Kwalify/distroprefs.yml lib/CPAN/bin/cpan
6087 ____________________________________________________________________________
6088 [ 30550] By: nicholas                              on 2007/03/12  15:03:29
6089         Log: Bitten again by the snakes in the MANIFEST spec - tabs, not spaces.
6090      Branch: perl
6091            ! MANIFEST
6092 ____________________________________________________________________________
6093 [ 30548] By: rgs                                   on 2007/03/12  14:33:01
6094         Log: Like fake scalars, state variables shouldn't get new pad entries
6095              at each recursion, in order to be truly stateful. (bug #41789)
6096      Branch: perl
6097            ! pad.c t/op/state.t
6098 ____________________________________________________________________________
6099 [ 30544] By: craigb                                on 2007/03/11  23:42:14
6100         Log: ExtUtils::Manifest fix-ups for VMS:
6101              - don't use multiple dots in .bak filenames
6102              - remove VMS-specific clobbering of keys with values in mkmanifest()
6103              patch also in RT at <http://rt.cpan.org//Ticket/Display.html?id=25377>
6104      Branch: perl
6105            ! lib/ExtUtils/Manifest.pm lib/ExtUtils/t/Manifest.t
6106 ____________________________________________________________________________
6107 [ 30543] By: craigb                                on 2007/03/11  21:05:08
6108         Log: Upgrade inplace.t and iprefix.t to use test.pl, avoiding a lot
6109              of OS-specific shenanigans.
6110      Branch: perl
6111            ! t/io/inplace.t t/io/iprefix.t
6112 ____________________________________________________________________________
6113 [ 30542] By: craigb                                on 2007/03/11  21:01:35
6114         Log: Add directory depth check for older VMS systems to check83.pl
6115      Branch: perl
6116            ! Porting/check83.pl
6117 ____________________________________________________________________________
6118 [ 30537] By: nicholas                              on 2007/03/10  16:56:21
6119         Log: Test that format references can't be wrongly dereferenced.
6120              Test that a glob dereference of a PVIO correctly sets the IO of the
6121              temporary glob that it creates.
6122      Branch: perl
6123            ! t/op/ref.t
6124 ____________________________________________________________________________
6125 [ 30535] By: nicholas                              on 2007/03/10  16:20:31
6126         Log: Bump Exporter's $VERSION.
6127      Branch: perl
6128            ! lib/Exporter.pm
6129 ____________________________________________________________________________
6130 [ 30533] By: nicholas                              on 2007/03/10  15:34:34
6131         Log: A test case for change 30527 (chdir bareword ambiguity with dirhandles
6132              and filehandles)
6133      Branch: perl
6134            ! t/op/chdir.t
6135 ____________________________________________________________________________
6136 [ 30532] By: nicholas                              on 2007/03/10  15:30:46
6137         Log: Refactor the "has fchdir" and "has dirfd" logic to one place.
6138      Branch: perl
6139            ! t/op/chdir.t
6140 ____________________________________________________________________________
6141 [ 30531] By: nicholas                              on 2007/03/09  20:49:47
6142         Log: Don't swallow up other warnings in Exporter's test. Remove a needless
6143              eval that happened to generate 4 warnings.
6144      Branch: perl
6145            ! lib/Exporter.t
6146 ____________________________________________________________________________
6147 [ 30530] By: merijn                                on 2007/03/09  19:47:15
6148         Log: Subject: [perl #41587] [PATCH] 5.8.8 make sure we get the proper ldflags on libperl.so 
6149              From: Tom Callaway (via RT) <perlbug-followup@perl.org>
6150              Date: Thu, 22 Feb 2007 14:39:02 -0800
6151              Message-ID: <rt-3.6.HEAD-28041-1172183942-1615.41587-75-0@perl.org>
6152      Branch: perl
6153            ! Makefile.SH
6154 ____________________________________________________________________________
6155 [ 30529] By: nicholas                              on 2007/03/09  19:23:57
6156         Log: Make Exporter::Heavy correctly not warn when exporting a symbol only
6157              declared in the export specification. Ensure that the test actually
6158              tests this.
6159      Branch: perl
6160            ! lib/Exporter.t lib/Exporter/Heavy.pm
6161 ____________________________________________________________________________
6162 [ 30528] By: merijn                                on 2007/03/09  19:02:23
6163         Log: Tom Callaway's Redhat patches
6164              
6165              Subject: [perl #41595] [PATCH] 5.8.8 Use CFLAGS for all compiler invocations
6166              From: Tom Callaway (via RT) <perlbug-followup@perl.org>
6167              Date: Thu, 22 Feb 2007 19:33:45 -0800
6168              Message-ID: <rt-3.6.HEAD-28041-1172201625-659.41595-75-0@perl.org>
6169              
6170              Subject: [perl #41589] [PATCH] 5.8.8 Linux needs -FPIC too
6171              From: Tom Callaway (via RT) <perlbug-followup@perl.org>
6172              Date: Thu, 22 Feb 2007 14:56:24 -0800
6173              Message-ID: <rt-3.6.HEAD-18680-1172184984-1237.41589-75-0@perl.org>
6174      Branch: perl
6175            ! Configure
6176 ____________________________________________________________________________
6177 [ 30527] By: stevep                                on 2007/03/09  18:30:16
6178         Log: Prefer dirhandles to filehandles when passing a bareword typeglob
6179              to chdir() and the typeglob has both a dirhandle and a 
6180              filehandle assigned to it.
6181      Branch: perl
6182            ! pp_sys.c
6183 ____________________________________________________________________________
6184 [ 30525] By: rgs                                   on 2007/03/09  17:47:22
6185         Log: Mention Perl::Unsafe::Signals in the core docs en passant.
6186      Branch: perl
6187            ! pod/perlipc.pod
6188 ____________________________________________________________________________
6189 [ 30521] By: craigb                                on 2007/03/09  00:46:34
6190         Log: In ExtUtils::Liblist::Kid::_vms_ext(), escape the dollar, not the
6191              minus (there was no intention to use $\ or $- here).
6192      Branch: perl
6193            ! lib/ExtUtils/Liblist/Kid.pm
6194 ____________________________________________________________________________
6195 [ 30520] By: rgs                                   on 2007/03/08  16:31:36
6196         Log: The HePV macro was borked.
6197      Branch: perl
6198            ! hv.h
6199 ____________________________________________________________________________
6200 [ 30519] By: rgs                                   on 2007/03/08  16:12:29
6201         Log: Warning fix. Since HePV's second argument is supposed
6202              to be an unsigned integer, there's not point in comparing
6203              it to 0.
6204      Branch: perl
6205            ! hv.h
6206 ____________________________________________________________________________
6207 [ 30518] By: rgs                                   on 2007/03/08  15:48:53
6208         Log: Subject: Re: [PATCH] Tweaks so that miniperl.exe doesnt croak while building perl.exe
6209              From: demerphq <demerphq@gmail.com>
6210              Date: Thu, 8 Mar 2007 10:20:50 +0100
6211              Message-ID: <9b18b3110703080120s41147a4fh4f4c1f9817079be3@mail.gmail.com>
6212      Branch: perl
6213            ! gv.c lib/Tie/Hash/NamedCapture.pm t/op/regexp_namedcapture.t
6214 ____________________________________________________________________________
6215 [ 30517] By: rgs                                   on 2007/03/08  15:06:49
6216         Log: Subject: Re: [PATCH] Tweaks so that miniperl.exe doesnt croak while building perl.exe
6217              From: demerphq <demerphq@gmail.com>
6218              Date: Wed, 7 Mar 2007 20:44:52 +0100
6219              Message-ID: <9b18b3110703071144t787e028s8a79fa1986624b54@mail.gmail.com>
6220      Branch: perl
6221            + lib/Tie/Hash/NamedCapture.pm t/op/regexp_namedcapture.t
6222            - ext/re/lib/re/Tie/Hash/NamedCapture.pm
6223            ! MANIFEST embed.fnc ext/re/re.xs ext/re/t/re_funcs.t global.sym
6224            ! gv.c pod/perl595delta.pod pod/perlvar.pod proto.h universal.c
6225 ____________________________________________________________________________
6226 [ 30516] By: steveh                                on 2007/03/08  14:13:11
6227         Log: Subject: RE: $Win32::VERSION problem
6228              From: "Jan Dubois" <jand@activestate.com>
6229              Date: Wed, 7 Mar 2007 12:26:01 -0800
6230              Message-ID: <00b301c760f6$d28129d0$77837d70$@com>
6231              
6232              Adds the tests from the dual-lived CPAN distribution Win32-0.27
6233              and removes two old t/win32 tests which are now redundant
6234      Branch: perl
6235            + ext/Win32/t/ExpandEnvironmentStrings.t
6236            + ext/Win32/t/GetFileVersion.t ext/Win32/t/GetFolderPath.t
6237            + ext/Win32/t/GetFullPathName.t ext/Win32/t/GetLongPathName.t
6238            + ext/Win32/t/GetOSVersion.t ext/Win32/t/GuidGen.t
6239            - t/win32/getosversion.t t/win32/longpath.t
6240            ! MANIFEST
6241 ____________________________________________________________________________
6242 [ 30515] By: rgs                                   on 2007/03/08  13:49:42
6243         Log: Subject: debugger history save and load
6244              From: andreas.koenig.7os6VVqR@franz.ak.mind.de (Andreas J. Koenig)
6245              Date: Wed, 07 Mar 2007 14:53:58 +0100
6246              Message-ID: <87y7m99n2h.fsf@k75.linux.bogus>
6247      Branch: perl
6248            ! lib/perl5db.pl
6249 ____________________________________________________________________________
6250 [ 30514] By: rgs                                   on 2007/03/08  13:46:16
6251         Log: Better docs for C<no VERSION>
6252      Branch: perl
6253            ! pod/perl593delta.pod pod/perlfunc.pod
6254 ____________________________________________________________________________
6255 [ 30513] By: rgs                                   on 2007/03/08  11:19:38
6256         Log: Need to extend the stack when using warn() without
6257              an argument (this fixes bug #41716)
6258      Branch: perl
6259            ! pp_sys.c
6260 ____________________________________________________________________________
6261 [ 30512] By: rgs                                   on 2007/03/08  11:17:21
6262         Log: Subject: [PATCH] Default to ELF on FreeBSD when objformat is not there
6263              From: Anton Berezin <tobez@tobez.org>
6264              Date: Thu, 8 Mar 2007 12:08:45 +0100
6265              Message-ID: <20070308110845.GA24332@heechee.tobez.org>
6266      Branch: perl
6267            ! hints/freebsd.sh
6268 ____________________________________________________________________________
6269 [ 30511] By: craigb                                on 2007/03/08  03:50:32
6270         Log: MM->{ldflags} may not be defined and wouldn't help us locate
6271              the perlshr library anyway (follow-up to #30462).
6272      Branch: perl
6273            ! lib/ExtUtils/Liblist/Kid.pm
6274 ____________________________________________________________________________
6275 [ 30510] By: craigb                                on 2007/03/08  03:06:53
6276         Log: Make vms/gen_shrfls.pl better able to detect header transitions with
6277              various compiler versions (needed after #30463).
6278      Branch: perl
6279            ! vms/gen_shrfls.pl
6280 ____________________________________________________________________________
6281 [ 30500] By: rgs                                   on 2007/03/07  17:08:54
6282         Log: Regenerates internal and external API docs
6283      Branch: perl
6284            ! pod/perlapi.pod pod/perlintern.pod
6285 ____________________________________________________________________________
6286 [ 30499] By: rgs                                   on 2007/03/07  17:05:29
6287         Log: Add the new man page, perlunifaq, in relevant places
6288      Branch: perl
6289            ! plan9/mkfile pod.lst pod/perl.pod vms/descrip_mms.template
6290            ! win32/pod.mak
6291 ____________________________________________________________________________
6292 [ 30497] By: rgs                                   on 2007/03/07  16:36:20
6293         Log: Syntax nit in ExtUtils::Liblist::Kid, noticed by Yves Orton
6294      Branch: perl
6295            ! lib/ExtUtils/Liblist/Kid.pm
6296 ____________________________________________________________________________
6297 [ 30496] By: rgs                                   on 2007/03/07  16:32:48
6298         Log: Use another method to avoid the "possible interpolation" warning
6299              for @- and @+ : do this directly from the lexer (patch by Yves
6300              Orton.) This way, @- and @+ aren't preloaded anymore.
6301              Avoid to require re::Tie::Hash::NamedCapture when the *- or *+
6302              globs are created, this was breaking the build due to miniperl's
6303              inability to load it.
6304      Branch: perl
6305            ! gv.c perl.c toke.c
6306 ____________________________________________________________________________
6307 [ 30493] By: merijn                                on 2007/03/07  13:23:23
6308         Log: Subject: Re: [PATCH] (Re: [PATCH] unicode/utf8 pod)
6309              From: Juerd Waalboer <juerd@convolution.nl>
6310              Date: Sun, 4 Mar 2007 16:00:19 +0100
6311              Message-ID: <20070304150019.GN4723@c4.convolution.nl>
6312      Branch: perl
6313            + pod/perlunifaq.pod
6314            ! MANIFEST ext/Encode/Encode.pm ext/Encode/encoding.pm
6315            ! lib/PerlIO.pm lib/utf8.pm pod/perlapi.pod pod/perldata.pod
6316            ! pod/perldiag.pod pod/perlfunc.pod pod/perlguts.pod
6317            ! pod/perlpacktut.pod pod/perlport.pod pod/perlretut.pod
6318            ! pod/perlunicode.pod pod/perluniintro.pod pod/perlunitut.pod
6319            ! pod/perlvar.pod sv.c
6320 ____________________________________________________________________________
6321 [ 30492] By: rgs                                   on 2007/03/07  11:00:07
6322         Log: Localize $! in splainthis() too. (see bug #41717)
6323      Branch: perl
6324            ! lib/diagnostics.pm
6325 ____________________________________________________________________________
6326 [ 30491] By: rgs                                   on 2007/03/07  10:57:11
6327         Log: Better localisation of $_ in diagnostics.
6328              This fixes bug #41717.
6329      Branch: perl
6330            ! lib/diagnostics.pm
6331 ____________________________________________________________________________
6332 [ 30490] By: rgs                                   on 2007/03/07  10:33:38
6333         Log: Avoid to load the *+ and *- globs too early.
6334              To silence spurious interpolation warnings, merely
6335              create the stash entry for them. Ensure that the
6336              re::Tie::Hash::NamedCapture module is always loaded
6337              when we have created the tied hashes %+ and %-.
6338              Revert change #30483, which is now unnecessary.
6339      Branch: perl
6340            ! gv.c lib/dumpvar.pl perl.c
6341 ____________________________________________________________________________
6342 [ 30489] By: stevep                                on 2007/03/06  16:49:47
6343         Log: Upgrade to IO-Zlib-1.05.  There are updates to the core that have
6344              not yet been included in the CPAN distribution, so the core 
6345              module has a version bump.
6346      Branch: perl
6347            ! lib/IO/Zlib.pm lib/IO/Zlib/t/basic.t lib/IO/Zlib/t/getline.t
6348 ____________________________________________________________________________
6349 [ 30488] By: rgs                                   on 2007/03/06  15:51:06
6350         Log: Fix error messages returned by S_require_tie_mod. Fix small leaks
6351              happening in there too. More importantly, call it when we load both
6352              a hash or a glob.
6353      Branch: perl
6354            ! gv.c
6355 ____________________________________________________________________________
6356 [ 30487] By: rgs                                   on 2007/03/06  15:04:03
6357         Log: Fix a small leak on loading *+ and *- globs
6358      Branch: perl
6359            ! gv.c
6360 ____________________________________________________________________________
6361 [ 30486] By: stevep                                on 2007/03/06  13:52:56
6362         Log: Upgrade to CGI.pm-3.27
6363      Branch: perl
6364            ! lib/CGI.pm lib/CGI/Carp.pm lib/CGI/Changes lib/CGI/Util.pm
6365            ! lib/CGI/t/form.t lib/CGI/t/util.t
6366 ____________________________________________________________________________
6367 [ 30485] By: rgs                                   on 2007/03/06  11:19:04
6368         Log: Subject: [PATCH] 'Unknown PerlIO layer "encoding"...' message
6369              From: "Jerry D. Hedden" <jdhedden@yahoo.com>
6370              Date: Fri, 2 Mar 2007 06:59:41 -0800 (PST)
6371              Message-ID: <794180.55454.qm@web30208.mail.mud.yahoo.com>
6372      Branch: perl
6373            ! lib/Pod/t/man.t
6374 ____________________________________________________________________________
6375 [ 30484] By: rgs                                   on 2007/03/06  11:10:26
6376         Log: Doc patch about PerlIO::encoding:
6377              
6378              Subject: [PATCH] Re: 'Unknown PerlIO layer "encoding"...' message
6379              From: Tels <nospam-abuse@bloodgate.com>
6380              Date: Fri, 2 Mar 2007 11:31:39 +0000
6381              Message-Id: <200703021131.41085@bloodgate.com>
6382      Branch: perl
6383            ! pod/perlfunc.pod
6384 ____________________________________________________________________________
6385 [ 30483] By: rgs                                   on 2007/03/06  10:32:01
6386         Log: dumpvar.pl must load re::Tie::Hash::NamedCapture if it wants
6387              to dump %+ and %-.
6388      Branch: perl
6389            ! lib/dumpvar.pl
6390 ____________________________________________________________________________
6391 [ 30482] By: steveh                                on 2007/03/06  09:20:51
6392         Log: Reinstate part of #28744 that was accidentally reverted in #30454
6393              to suppress a couple of warnings (at least on Win32)
6394      Branch: perl
6395            ! ext/Math/BigInt/FastCalc/FastCalc.pm
6396            ! ext/Math/BigInt/FastCalc/FastCalc.xs
6397 ____________________________________________________________________________
6398 [ 30481] By: nicholas                              on 2007/03/05  23:52:09
6399         Log: As SvUPGRADE() is a macro wrapping a call to sv_upgrade() inside
6400              a check on the existing SvTYPE(), there's no need to wrap it inside
6401              another explcit check of SvTYPE(). This won't make any difference to
6402              the output of an optimising compiler, but it makes the source clearer.
6403      Branch: perl
6404            ! pp_ctl.c sv.c
6405 ____________________________________________________________________________
6406 [ 30464] By: nicholas                              on 2007/03/05  12:26:46
6407         Log: Change 30461 was wrong. As ext/re (re)builds the regexp engine with
6408              -DDEBUGGING, it's going to need PL_reg_name even if core perl doesn't.
6409              So something is always going to use it, so always define it, and always
6410              export it. (But only define it once, so that static builds work.)
6411      Branch: perl
6412            ! makedef.pl regcomp.pl regnodes.h
6413 ____________________________________________________________________________
6414 [ 30463] By: craigb                                on 2007/03/05  00:13:50
6415         Log: In vms/gen_shrfls.pl, no more special handling of vars from
6416              regcomp.h -- just process the file. (Needed for PL_reg_name.)
6417      Branch: perl
6418            ! vms/gen_shrfls.pl
6419 ____________________________________________________________________________
6420 [ 30462] By: craigb                                on 2007/03/04  22:58:29
6421         Log: Use linker flags rather than compiler flags in ExtUtils::Liblist::Kid::_vms_ext 
6422              when determining whether the perlshr library was linked debug. Also submitted 
6423              to CPAN RT queue at <http://rt.cpan.org/Ticket/Display.html?id=25268>.
6424      Branch: perl
6425            ! lib/ExtUtils/Liblist/Kid.pm
6426 ____________________________________________________________________________
6427 [ 30461] By: nicholas                              on 2007/03/04  19:22:45
6428         Log: It seems that change 30451 should also have arranged to export
6429              PL_reg_name properly. Hopefuly this will fix it, but I don't have
6430              access to any platform where I can test this directly.
6431      Branch: perl
6432            ! globvar.sym makedef.pl
6433 ____________________________________________________________________________
6434 [ 30460] By: stevep                                on 2007/03/04  17:15:38
6435         Log: Subject: [PATCH] Math::BigInt 1.80
6436              From: Tels <nospam-abuse@bloodgate.com>
6437              Date: Sun, 4 Mar 2007 15:57:01 +0000
6438              Message-Id: <200703041557.02996@bloodgate.com>
6439      Branch: perl
6440            + lib/Math/BigInt/t/nan_cmp.t lib/Math/BigInt/t/new_ovld.t
6441            ! MANIFEST lib/Math/BigFloat.pm lib/Math/BigInt.pm
6442            ! lib/Math/BigInt/Calc.pm lib/Math/BigInt/CalcEmu.pm
6443            ! lib/Math/BigInt/t/bigfltpm.inc lib/Math/BigInt/t/bigfltpm.t
6444            ! lib/Math/BigInt/t/bigintpm.inc lib/Math/BigInt/t/biglog.t
6445            ! lib/Math/BigInt/t/mbimbf.inc lib/Math/BigInt/t/upgrade.inc
6446 ____________________________________________________________________________
6447 [ 30459] By: nicholas                              on 2007/03/04  11:51:08
6448         Log: Rename exception() to apitest_exception() in XS/APItest, so that it
6449              doesn't clash with the exception() in Devel/PPPort. This way, all
6450              tests pass when both modules are staticly linked.
6451      Branch: perl
6452            ! ext/XS/APItest/APItest.pm ext/XS/APItest/APItest.xs
6453            ! ext/XS/APItest/exception.c ext/XS/APItest/t/exception.t
6454 ____________________________________________________________________________
6455 [ 30458] By: stevep                                on 2007/03/04  07:01:34
6456         Log: Upgrade to IO-Compress-Base-2.004, Compress-Raw-Zlib-2.004, 
6457              IO-Compress-Zlib-2.004, and Compress-Zlib-2.004.
6458      Branch: perl
6459            ! ext/Compress/Raw/Zlib/Changes
6460            ! ext/Compress/Raw/Zlib/Makefile.PL ext/Compress/Raw/Zlib/README
6461            ! ext/Compress/Raw/Zlib/Zlib.xs
6462            ! ext/Compress/Raw/Zlib/lib/Compress/Raw/Zlib.pm
6463            ! ext/Compress/Raw/Zlib/t/02zlib.t ext/Compress/Zlib/Changes
6464            ! ext/Compress/Zlib/Makefile.PL ext/Compress/Zlib/README
6465            ! ext/Compress/Zlib/lib/Compress/Zlib.pm
6466            ! ext/Compress/Zlib/t/03zlib-v1.t ext/IO/Compress/Base/Changes
6467            ! ext/IO/Compress/Base/Makefile.PL ext/IO/Compress/Base/README
6468            ! ext/IO/Compress/Base/lib/IO/Compress/Base.pm
6469            ! ext/IO/Compress/Base/lib/IO/Compress/Base/Common.pm
6470            ! ext/IO/Compress/Base/lib/IO/Uncompress/AnyUncompress.pm
6471            ! ext/IO/Compress/Base/lib/IO/Uncompress/Base.pm
6472            ! ext/IO/Compress/Zlib/Changes ext/IO/Compress/Zlib/Makefile.PL
6473            ! ext/IO/Compress/Zlib/README
6474            ! ext/IO/Compress/Zlib/lib/IO/Compress/Adapter/Deflate.pm
6475            ! ext/IO/Compress/Zlib/lib/IO/Compress/Adapter/Identity.pm
6476            ! ext/IO/Compress/Zlib/lib/IO/Compress/Deflate.pm
6477            ! ext/IO/Compress/Zlib/lib/IO/Compress/Gzip.pm
6478            ! ext/IO/Compress/Zlib/lib/IO/Compress/Gzip/Constants.pm
6479            ! ext/IO/Compress/Zlib/lib/IO/Compress/RawDeflate.pm
6480            ! ext/IO/Compress/Zlib/lib/IO/Compress/Zip.pm
6481            ! ext/IO/Compress/Zlib/lib/IO/Compress/Zip/Constants.pm
6482            ! ext/IO/Compress/Zlib/lib/IO/Compress/Zlib/Constants.pm
6483            ! ext/IO/Compress/Zlib/lib/IO/Compress/Zlib/Extra.pm
6484            ! ext/IO/Compress/Zlib/lib/IO/Uncompress/Adapter/Identity.pm
6485            ! ext/IO/Compress/Zlib/lib/IO/Uncompress/Adapter/Inflate.pm
6486            ! ext/IO/Compress/Zlib/lib/IO/Uncompress/AnyInflate.pm
6487            ! ext/IO/Compress/Zlib/lib/IO/Uncompress/Gunzip.pm
6488            ! ext/IO/Compress/Zlib/lib/IO/Uncompress/Inflate.pm
6489            ! ext/IO/Compress/Zlib/lib/IO/Uncompress/RawInflate.pm
6490            ! ext/IO/Compress/Zlib/lib/IO/Uncompress/Unzip.pm
6491            ! ext/IO/Compress/Zlib/t/050interop-gzip.t
6492            ! t/lib/compress/generic.pl t/lib/compress/merge.pl
6493 ____________________________________________________________________________
6494 [ 30457] By: stevep                                on 2007/03/04  04:51:28
6495         Log: Upgrade to Time-HiRes-1.9707
6496      Branch: perl
6497            ! ext/Time/HiRes/HiRes.pm ext/Time/HiRes/t/HiRes.t
6498            ! pod/perlretut.pod
6499 ____________________________________________________________________________
6500 [ 30456] By: craigb                                on 2007/03/03  23:26:33
6501         Log: Clean up the right file in vms/test.com (following #30414).
6502      Branch: perl
6503            ! vms/test.com
6504 ____________________________________________________________________________
6505 [ 30455] By: rgs                                   on 2007/03/03  18:19:01
6506         Log: Add missing file from change #30454
6507      Branch: perl
6508            + ext/Math/BigInt/FastCalc/t/leak.t
6509 ____________________________________________________________________________
6510 [ 30454] By: nicholas                              on 2007/03/03  16:47:05
6511         Log: Subject: [PATCH] Math::BigInt::FastCalc 0.12 (plug leaks)
6512              From: Tels <nospam-abuse@bloodgate.com>
6513              Date: Sat, 3 Mar 2007 17:09:58 +0000
6514              Message-Id: <200703031710.00203@bloodgate.com>
6515      Branch: perl
6516            ! MANIFEST ext/Math/BigInt/FastCalc/FastCalc.pm
6517            ! ext/Math/BigInt/FastCalc/FastCalc.xs
6518 ____________________________________________________________________________
6519 [ 30453] By: nicholas                              on 2007/03/03  15:50:33
6520         Log: Must only use dynamic extensions in the Dynaloader test. If the
6521              extensions are static, it doesn't work :-)
6522      Branch: perl
6523            ! ext/DynaLoader/t/DynaLoader.t
6524 ____________________________________________________________________________
6525 [ 30452] By: nicholas                              on 2007/03/03  15:28:39
6526         Log: As the test is about the parser, not actually running the code, better
6527              to avoid running <STDOUT> rather than run it with warnings disabled.
6528      Branch: perl
6529            ! t/op/gv.t
6530 ____________________________________________________________________________
6531 [ 30451] By: nicholas                              on 2007/03/03  12:22:19
6532         Log: Define and initialise reg_name only once.
6533              This allows re to be a static extension.
6534              As it's now no-longer a static variable in regcomp.c, it needs a PL_
6535              prefix.
6536      Branch: perl
6537            ! regcomp.c regcomp.pl regexec.c regnodes.h
6538 ____________________________________________________________________________
6539 [ 30450] By: rgs                                   on 2007/03/03  10:09:49
6540         Log: Don't let feature.pm interfere with the tests for use VERSION.
6541              That probably needs to be refined.
6542      Branch: perl
6543            ! t/comp/use.t
6544 ____________________________________________________________________________
6545 [ 30449] By: rgs                                   on 2007/03/03  09:39:55
6546         Log: Subject: [PATCH] Don't copy DynaLoader.o unnecessarily
6547              From: "Jerry D. Hedden" <jdhedden@yahoo.com>
6548              Date: Thu, 1 Mar 2007 08:47:30 -0800 (PST)
6549              Message-ID: <566598.96493.qm@web30204.mail.mud.yahoo.com>
6550      Branch: perl
6551            ! ext/DynaLoader/Makefile.PL
6552 ____________________________________________________________________________
6553 [ 30448] By: rgs                                   on 2007/03/03  09:36:54
6554         Log: Add a volatile modifier to avoid possible cloberring by longjmp,
6555              as the compiler used by Jerry D. Hedden warns.
6556      Branch: perl
6557            ! perl.c
6558 ____________________________________________________________________________
6559 [ 30447] By: rgs                                   on 2007/03/03  09:34:23
6560         Log: Compilation warnings fixes by Jerry D. Hedden
6561      Branch: perl
6562            ! perlio.c pp_sys.c universal.c xsutils.c
6563 ____________________________________________________________________________
6564 [ 30446] By: rgs                                   on 2007/03/03  09:29:37
6565         Log: Make use VERSION also load feature.pm
6566      Branch: perl
6567            + t/lib/feature/implicit
6568            ! MANIFEST lib/feature.pm pod/perlfunc.pod pp_ctl.c
6569 ____________________________________________________________________________
6570 [ 30445] By: craigb                                on 2007/03/03  04:35:24
6571         Log: Fix a few errors and ambiguities in configure.com caught by
6572              Charlie Hammond's DCL Checker.
6573      Branch: perl
6574            ! configure.com
6575 ____________________________________________________________________________
6576 [ 30444] By: nicholas                              on 2007/03/02  15:02:43
6577         Log: Avoid an assertion failure when overloading readpipe.
6578      Branch: perl
6579            ! t/op/gv.t toke.c
6580 ____________________________________________________________________________
6581 [ 30443] By: nicholas                              on 2007/03/02  14:42:27
6582         Log: More assertion failures, found by auditing the code.
6583      Branch: perl
6584            ! gv.c t/op/gv.t toke.c universal.c
6585 ____________________________________________________________________________
6586 [ 30442] By: nicholas                              on 2007/03/02  13:23:22
6587         Log: Don't crash if the symbol table entry for ISA isn't a typeglob.
6588      Branch: perl
6589            ! gv.c t/op/gv.t
6590 ____________________________________________________________________________
6591 [ 30441] By: rgs                                   on 2007/03/02  12:58:04
6592         Log: More work on perldelta
6593      Branch: perl
6594            ! pod/perl595delta.pod
6595 ____________________________________________________________________________
6596 [ 30440] By: nicholas                              on 2007/03/01  17:46:49
6597         Log: The bug fixed by change 29610 would have been avoided with this
6598              assertion - ensure that the hek argument to Perl_unshare_hek() is not
6599              NULL, because if it is, then S_unshare_hek_or_pvn() will merrily
6600              unshare the string "" instead.
6601      Branch: perl
6602            ! hv.c
6603 ____________________________________________________________________________
6604 [ 30439] By: nicholas                              on 2007/03/01  16:09:31
6605         Log: Don't SEGV when dumping an undefined typeglob. The HEK used to store
6606              the GV's name can be NULL.
6607      Branch: perl
6608            ! gv.h
6609 ____________________________________________________________________________
6610 [ 30438] By: rgs                                   on 2007/03/01  15:22:52
6611         Log: Mention the syntax C<use feature ':5.10'> in feature.pm's synopsis
6612      Branch: perl
6613            ! lib/feature.pm
6614 ____________________________________________________________________________
6615 [ 30437] By: rgs                                   on 2007/03/01  11:20:14
6616         Log: Upgrade to Params::Check 0.26
6617      Branch: perl
6618            ! lib/Params/Check.pm lib/Params/Check/t/01_Params-Check.t
6619 ____________________________________________________________________________
6620 [ 30436] By: rgs                                   on 2007/03/01  10:54:09
6621         Log: Subject: Re: New file: t/op/regexp_email.t
6622              From: demerphq <demerphq@gmail.com>
6623              Date: Wed, 28 Feb 2007 17:45:33 +0100
6624              Message-ID: <9b18b3110702280845p7860ca08taf1aead39a178aa4@mail.gmail.com>
6625      Branch: perl
6626            + t/op/regexp_email.t
6627            ! MANIFEST ext/re/re.pm regcomp.h regexec.c
6628 ____________________________________________________________________________
6629 [ 30435] By: rgs                                   on 2007/03/01  10:30:04
6630         Log: A new test by Abigail: Check that certain modules don't
6631              get loaded when other modules are used.
6632      Branch: perl
6633            + t/lib/no_load.t
6634            ! MANIFEST
6635 ____________________________________________________________________________
6636 [ 30434] By: rgs                                   on 2007/03/01  10:21:58
6637         Log: Subject: [PATCH] Re: Revisits in 'make install'
6638              From: "Jerry D. Hedden" <jdhedden@yahoo.com>
6639              Date: Wed, 28 Feb 2007 10:59:49 -0800 (PST)
6640              Message-ID: <95346.11233.qm@web30207.mail.mud.yahoo.com>
6641      Branch: perl
6642            ! Makefile.SH
6643 ____________________________________________________________________________
6644 [ 30433] By: rgs                                   on 2007/03/01  10:10:41
6645         Log: A couple of casting nits by Jarkko
6646      Branch: perl
6647            ! op.c pp_hot.c
6648 ____________________________________________________________________________
6649 [ 30432] By: rgs                                   on 2007/03/01  09:19:07
6650         Log: Teach Module::Build about DragonflyBSD
6651      Branch: perl
6652            ! lib/Module/Build.pm
6653 ____________________________________________________________________________
6654 [ 30431] By: rgs                                   on 2007/02/28  15:27:23
6655         Log: Missing dual-lived modules in maintainers list
6656      Branch: perl
6657            ! Porting/Maintainers.pl
6658 ____________________________________________________________________________
6659 [ 30430] By: rgs                                   on 2007/02/28  14:51:41
6660         Log: Update my email address
6661      Branch: perl
6662            ! AUTHORS Porting/checkAUTHORS.pl
6663 ____________________________________________________________________________
6664 [ 30429] By: steveh                                on 2007/02/28  12:29:35
6665         Log: Subject: [PATCH] Win32 doc update for Win32CORE changes
6666              From: "Yitzchak Scott-Thoennes" <sthoenna@efn.org>
6667              Date: Mon, 26 Feb 2007 11:28:00 -0800 (PST)
6668              Message-ID: <13678.68.166.55.187.1172518080.squirrel@68.166.55.187>
6669      Branch: perl
6670            ! ext/Win32/Win32.pm ext/Win32CORE/Win32CORE.pm
6671 ____________________________________________________________________________
6672 [ 30428] By: rgs                                   on 2007/02/28  10:42:03
6673         Log: Subject: [PATCH t/japh/abigail.t] Unexpected output
6674              From: Abigail <abigail@abigail.be>
6675              Date: Tue, 27 Feb 2007 23:00:28 +0100
6676              Message-ID: <20070227220028.GA460@abigail.nl>
6677      Branch: perl
6678            ! t/japh/abigail.t
6679 ____________________________________________________________________________
6680 [ 30427] By: rgs                                   on 2007/02/28  09:22:56
6681         Log: Remove obsolete test for the deprecation warning I just removed.
6682      Branch: perl
6683            ! t/op/regmesg.t
6684 ____________________________________________________________________________
6685 [ 30426] By: steveh                                on 2007/02/28  09:13:43
6686         Log: Subject: [PATCH] Fix ext/Win32API/File/t/file.t under test harness
6687              From: "Jerry D. Hedden" <jdhedden@yahoo.com>
6688              Date: Tue, 27 Feb 2007 09:38:15 -0800 (PST)
6689              Message-ID: <994673.36516.qm@web30215.mail.mud.yahoo.com>
6690      Branch: perl
6691            ! ext/Win32API/File/t/file.t
6692 ____________________________________________________________________________
6693 [ 30425] By: steveh                                on 2007/02/28  09:11:19
6694         Log: Subject: Re: [PATCH] Re: Math::BigInt and Win32API::File whines a lot during make test...
6695              From: "Jerry D. Hedden" <jdhedden@yahoo.com>
6696              Date: Tue, 27 Feb 2007 10:33:36 -0800 (PST)
6697              Message-ID: <738238.57355.qm@web30201.mail.mud.yahoo.com>
6698              
6699              (Silences warnings about math lib(s), avoids using Math::BigInt
6700              when using 64-bit ints and changes "new" to "->new()")
6701      Branch: perl
6702            ! ext/Win32API/File/File.pm
6703 ____________________________________________________________________________
6704 [ 30424] By: rgs                                   on 2007/02/28  08:54:05
6705         Log: (?p{}) has been deprecated for a long time.
6706              Remove it, so people are not confused with regard to the
6707              new /p regexp modifier.
6708      Branch: perl
6709            ! regcomp.c t/lib/warnings/regcomp toke.c
6710 ____________________________________________________________________________
6711 [ 30423] By: rgs                                   on 2007/02/28  08:45:55
6712         Log: Add new tests for keys in %+ and %-
6713      Branch: perl
6714            ! t/op/pat.t
6715 ____________________________________________________________________________
6716 [ 30422] By: rgs                                   on 2007/02/28  08:45:13
6717         Log: perltodo nit for SelfLoader
6718      Branch: perl
6719            ! pod/perltodo.pod
6720 ____________________________________________________________________________
6721 [ 30421] By: rgs                                   on 2007/02/28  08:44:16
6722         Log: Fix a couple of typos in internal docs
6723      Branch: perl
6724            ! hv.c util.c
6725 ____________________________________________________________________________
6726 [ 30420] By: nicholas                              on 2007/02/27  23:07:39
6727         Log: Subject: [PATCH AUTHORS] Change of email address.
6728              From: Abigail <abigail@abigail.be>
6729              Message-ID: <20070227225456.GA1808@abigail.nl>
6730              Date: Tue, 27 Feb 2007 23:54:56 +0100
6731      Branch: perl
6732            ! AUTHORS
6733 ____________________________________________________________________________
6734 [ 30419] By: nicholas                              on 2007/02/27  20:36:14
6735         Log: Subject: [PATCH] Skip tests if Encode not built
6736              From: "Jerry D. Hedden" <jdhedden@yahoo.com>
6737              Date: Tue, 27 Feb 2007 11:27:58 -0800 (PST)
6738              Message-ID: <176638.9767.qm@web30207.mail.mud.yahoo.com>
6739      Branch: perl
6740            ! lib/Pod/Simple/t/corpustest.t
6741            ! lib/encoding/warnings/t/4-lexical.t
6742 ____________________________________________________________________________
6743 [ 30418] By: rgs                                   on 2007/02/27  14:07:28
6744         Log: Disable the strict pragma before eval'ing selfloaded code.
6745      Branch: perl
6746            ! lib/SelfLoader.pm
6747 ____________________________________________________________________________
6748 [ 30417] By: rgs                                   on 2007/02/27  13:39:03
6749         Log: dmq points out that %+ and %- are not arrays. Fix the doc.
6750      Branch: perl
6751            ! ext/re/lib/re/Tie/Hash/NamedCapture.pm
6752 ____________________________________________________________________________
6753 [ 30416] By: rgs                                   on 2007/02/27  13:16:46
6754         Log: Update Changes
6755      Branch: perl
6756            ! Changes
6757 ____________________________________________________________________________
6758 [ 30415] By: rgs                                   on 2007/02/27  10:56:17
6759         Log: Rework and fix docs for %+, %- and re::Tie::Hash::NamedCapture.
6760      Branch: perl
6761            ! ext/re/lib/re/Tie/Hash/NamedCapture.pm pod/perlvar.pod
6762 ____________________________________________________________________________
6763 [ 30414] By: craigb                                on 2007/02/27  01:41:31
6764         Log: On VMS, use the normal executable file extension for the copy of 
6765              Perl used to run the test suite.  Not doing so was confusing
6766              some of the Module::Build tests.
6767      Branch: perl
6768            ! vms/descrip_mms.template vms/test.com
6769 ____________________________________________________________________________
6770 [ 30413] By: rgs                                   on 2007/02/26  17:10:33
6771         Log: Subject: Re: [perl #41565] qr// memory corruption
6772              From: demerphq <demerphq@gmail.com>
6773              Date: Mon, 26 Feb 2007 16:45:23 +0100
6774              Message-ID: <9b18b3110702260745u373980e8x19ba3afdf33bd424@mail.gmail.com>
6775      Branch: perl
6776            ! ext/re/t/regop.t regcomp.c regexec.c
6777 ____________________________________________________________________________
6778 [ 30412] By: rgs                                   on 2007/02/26  16:49:45
6779         Log: Subject: Re: Regexp recursion limit too low?
6780              From: demerphq <demerphq@gmail.com>
6781              Date: Thu, 15 Feb 2007 17:22:16 +0100
6782              Message-ID: <9b18b3110702150822o13a4f240g86463c60e625fb8f@mail.gmail.com>
6783      Branch: perl
6784            ! regexec.c regexp.h
6785 ____________________________________________________________________________
6786 [ 30411] By: steveh                                on 2007/02/26  13:45:23
6787         Log: Bump $Win32API::File::VERSION for change #30409
6788      Branch: perl
6789            ! ext/Win32API/File/File.pm
6790 ____________________________________________________________________________
6791 [ 30410] By: craigb                                on 2007/02/26  13:36:41
6792         Log: In configure.com, include the Win32 extensions in $Config{known_extensions},
6793              but not it $Config{extensions}.  This way t/TEST knows to exclude them.
6794      Branch: perl
6795            ! configure.com
6796 ____________________________________________________________________________
6797 [ 30409] By: steveh                                on 2007/02/26  13:27:58
6798         Log: Subject: [PATCH] Re: [PATCH] Re: Win32 modules & cygwin
6799              From: "Yitzchak Scott-Thoennes" <sthoenna@efn.org>
6800              Date: Mon, 26 Feb 2007 00:45:10 -0800 (PST)
6801              Message-ID: <1300.63.226.247.142.1172479510.squirrel@63.226.247.142>
6802              
6803              (Stops Win32* extension tests from being run when the
6804              corresponding extensions haven't been built)
6805      Branch: perl
6806            ! ext/Win32API/File/t/file.t ext/Win32API/File/t/tie.t
6807            ! ext/Win32CORE/t/win32core.t
6808 ____________________________________________________________________________
6809 [ 30408] By: nicholas                              on 2007/02/26  11:59:27
6810         Log: Update the FSF's address. Plus some other whitespace and NON-WHITESPACE
6811              changes that have crept into the GPL v2.
6812      Branch: perl
6813            ! README emacs/cperl-mode.el lib/Tie/File.pm pod/perlgpl.pod
6814 ____________________________________________________________________________
6815 [ 30407] By: nicholas                              on 2007/02/26  11:07:06
6816         Log: Fix bug #41550 -  AUTOLOAD :lvalue not working the same in blead as in
6817              5.8.8 (a code example from "Extending and Embedding Perl")
6818      Branch: perl
6819            ! op.h t/op/sub_lval.t
6820 ____________________________________________________________________________
6821 [ 30406] By: nicholas                              on 2007/02/26  09:33:15
6822         Log: Convert t/op/sub_lval.t to test.pl
6823      Branch: perl
6824            ! t/op/sub_lval.t
6825 ____________________________________________________________________________
6826 [ 30405] By: rgs                                   on 2007/02/26  06:59:44
6827         Log: Module::Pluggable wasn't in the maintainers list
6828      Branch: perl
6829            ! Porting/Maintainers.pl
6830 ____________________________________________________________________________
6831 [ 30404] By: rgs                                   on 2007/02/26  06:57:22
6832         Log: Add a version number to Module::Pluggable::Object and
6833              bump the version number of Module::Pluggable
6834      Branch: perl
6835            ! lib/Module/Pluggable.pm lib/Module/Pluggable/Object.pm
6836 ____________________________________________________________________________
6837 [ 30403] By: craigb                                on 2007/02/26  04:35:18
6838         Log: In perlport, refine description of eight-level directory depth
6839              limitation on older VMS systems and add example of how to tell 
6840              when we're in trouble.
6841      Branch: perl
6842            ! pod/perlport.pod
6843 ____________________________________________________________________________
6844 [ 30402] By: craigb                                on 2007/02/26  01:08:07
6845         Log: Assorted updates to vms/vms.c to fix compiler errors on VAX.
6846      Branch: perl
6847            ! vms/vms.c
6848 ____________________________________________________________________________
6849 [ 30401] By: craigb                                on 2007/02/26  01:06:30
6850         Log: One more longdouble nit for configure.com, following 30217, 30325, and 30329.
6851      Branch: perl
6852            ! configure.com
6853 ____________________________________________________________________________
6854 [ 30400] By: craigb                                on 2007/02/26  00:42:30
6855         Log: Module::Pluggable::Object::search_paths portability update prompted by
6856              VMS test failures.  Patch also submitted to CPAN RT queue at 
6857              <http://rt.cpan.org/Public/Bug/Display.html?id=13607>.
6858      Branch: perl
6859            ! lib/Module/Pluggable/Object.pm
6860            ! lib/Module/Pluggable/t/20dodgy_files.t
6861 ____________________________________________________________________________
6862 [ 30399] By: rgs                                   on 2007/02/25  17:00:26
6863         Log: Subject: [PATCH] sigtrap.pm (handler_traceback): do not clobber $_
6864              From: Alexey Tourbin <at@altlinux.ru>
6865              Date: Sat, 24 Feb 2007 21:24:32 +0300
6866              Message-ID: <20070224182432.GA14446@localhost.localdomain>
6867      Branch: perl
6868            ! lib/sigtrap.pm
6869 ____________________________________________________________________________
6870 [ 30398] By: rgs                                   on 2007/02/25  16:44:52
6871         Log: Subject: [perl #41560] [PATCH] crash in Perl_vmess when GvIOp is null 
6872              From: "Devin Heitmueller" (via RT) <perlbug-followup@perl.org>
6873              Date: Tue, 20 Feb 2007 16:38:20 -0800
6874              Message-ID: <rt-3.6.HEAD-24617-1172018300-131.41560-75-0@perl.org>
6875      Branch: perl
6876            ! util.c
6877 ____________________________________________________________________________
6878 [ 30397] By: rgs                                   on 2007/02/25  16:19:07
6879         Log: Subject: Re: [perl #41513] (parsing?)problem when using a '/' followed by a Switch statement
6880              From: "Wolfgang Laun" <wolfgang.laun@gmail.com>
6881              Date: Sat, 24 Feb 2007 15:08:44 +0100
6882              Message-ID: <17de7ee80702240608n1411ef67xcdd1ffb238742bc1@mail.gmail.com>
6883      Branch: perl
6884            ! lib/Switch.pm
6885 ____________________________________________________________________________
6886 [ 30396] By: rgs                                   on 2007/02/25  15:29:20
6887         Log: - Use the same regexp as in change #30395 to parse subroutine
6888              declarations
6889              - Make SelfLoader strict-compliant
6890              - Constant fold debug code out
6891      Branch: perl
6892            ! lib/SelfLoader.pm
6893 ____________________________________________________________________________
6894 [ 30395] By: rgs                                   on 2007/02/25  15:04:17
6895         Log: Factorize three regexps into one, using new regexp features
6896              (with some help from Yves Orton). (Now the compatibilty of this
6897              module with 5.8.x perls is doomed.)
6898      Branch: perl
6899            ! lib/AutoSplit.pm
6900 ____________________________________________________________________________
6901 [ 30394] By: rgs                                   on 2007/02/25  14:42:11
6902         Log: Don't clobber $_ by using "my $_". Potential bug found by Alexey Tourbin.
6903      Branch: perl
6904            ! lib/AutoSplit.pm
6905 ____________________________________________________________________________
6906 [ 30393] By: craigb                                on 2007/02/25  00:54:14
6907         Log: Add a comment to mg.c to clarify that words like "raise" and
6908              "pending" in the context of Perl's deferred signals bear only
6909              an analogous relationship to the underlying signal mechanism.
6910      Branch: perl
6911            ! mg.c
6912 ____________________________________________________________________________
6913 [ 30392] By: craigb                                on 2007/02/24  21:52:23
6914         Log: Update descriptions of long-running ops and non-deferrable
6915              signals in perlipc.pod.
6916      Branch: perl
6917            ! pod/perlipc.pod
6918 ____________________________________________________________________________
6919 [ 30391] By: rgs                                   on 2007/02/24  15:55:06
6920         Log: Subject: [PATCH] ExtUtils/Constant/Base.pm: use constant folding to eliminated dead code
6921              From: Alexey Tourbin <at@altlinux.ru>
6922              Date: Sat, 24 Feb 2007 15:52:23 +0300
6923              Message-ID: <20070224125223.GA17227@localhost.localdomain>
6924      Branch: perl
6925            ! lib/ExtUtils/Constant/Base.pm
6926 ____________________________________________________________________________
6927 [ 30390] By: rgs                                   on 2007/02/24  15:48:49
6928         Log: Subject: [PATCH] ExtUtils/MM_Unix.pm (fixin): do not clobber $/
6929              From: Alexey Tourbin <at@altlinux.ru>
6930              Date: Sat, 24 Feb 2007 15:38:58 +0300
6931              Message-ID: <20070224123858.GA11434@localhost.localdomain>
6932      Branch: perl
6933            ! lib/ExtUtils/MM_Unix.pm
6934 ____________________________________________________________________________
6935 [ 30389] By: rgs                                   on 2007/02/24  15:42:45
6936         Log: Subject: [PATCH] perlio.c (PerlIO_tmpfile): fix memory leak
6937              From: Alexey Tourbin <at@altlinux.ru>
6938              Date: Sat, 24 Feb 2007 14:47:35 +0300
6939              Message-ID: <20070224114735.GA3454@localhost.localdomain>
6940      Branch: perl
6941            ! perlio.c
6942 ____________________________________________________________________________
6943 [ 30388] By: rgs                                   on 2007/02/24  09:53:56
6944         Log: Add a new test for undef and delete on stash entries that
6945              are bound to subroutines or methods. Based on a test by
6946              Robert 'phaylon' Sedlacek.
6947      Branch: perl
6948            + t/op/symbolcache.t
6949            ! MANIFEST
6950 ____________________________________________________________________________
6951 [ 30387] By: rgs                                   on 2007/02/24  09:29:20
6952         Log: C<keys %+> should not warn. Don't make scan_ident test for
6953              ambiguous unary ops when the following token is a hash identifier.
6954              (like with scalars and arrays)
6955      Branch: perl
6956            ! t/lib/warnings/toke toke.c
6957 ____________________________________________________________________________
6958 [ 30386] By: rgs                                   on 2007/02/24  09:04:10
6959         Log: Indexing and POD fixes
6960      Branch: perl
6961            ! pod/perlop.pod
6962 ____________________________________________________________________________
6963 [ 30385] By: rgs                                   on 2007/02/24  08:51:29
6964         Log: Subject: [PATCH] perlretut.pod, 2nd version
6965              From: Wolfgang Laun <Wolfgang.Laun@thalesgroup.com>
6966              Date: Thu, 22 Feb 2007 09:36:19 +0100
6967              Message-ID: <45DD5603.1040402@thalesgroup.com>
6968      Branch: perl
6969            ! pod/perlretut.pod
6970 ____________________________________________________________________________
6971 [ 30384] By: rgs                                   on 2007/02/24  07:22:05
6972         Log: At least, fix the MakeMaker build_man tests.
6973      Branch: perl
6974            ! lib/ExtUtils/t/build_man.t
6975 ____________________________________________________________________________
6976 [ 30383] By: rgs                                   on 2007/02/23  18:19:32
6977         Log: Subject: [PATCH blead] Re: [perl #41546] perl 5.8.x bug: overloaded 'eq' does not work with 'nomethod'
6978              From: Rick Delaney <rick@bort.ca>
6979              Date: Wed, 21 Feb 2007 16:53:16 -0500
6980              Message-ID: <20070221215316.GF5646@bort.ca>
6981      Branch: perl
6982            ! gv.c lib/overload.t
6983 ____________________________________________________________________________
6984 [ 30382] By: rgs                                   on 2007/02/22  18:29:18
6985         Log: Reinstate tests removed by change #30381, but don't
6986              "use Config" in the test, because that will overwrite
6987              %main::Config with the real Config hash, not the fake
6988              one from MakeMaker.
6989      Branch: perl
6990            ! lib/ExtUtils/t/build_man.t
6991 ____________________________________________________________________________
6992 [ 30381] By: stevep                                on 2007/02/22  18:09:06
6993         Log: Revert changes to lib/ExtUtils/t/build_man.t from change 
6994              #30380.  The changes in that test write to the now
6995              readonly %Config.
6996      Branch: perl
6997            ! lib/ExtUtils/t/build_man.t
6998 ____________________________________________________________________________
6999 [ 30380] By: stevep                                on 2007/02/22  14:36:27
7000         Log: Upgrade to ExtUtils-MakeMaker-6.32.  Included a version
7001              bump to ExtUtils::MakeMaker to 6.32_01 because changes
7002              #29266 and #29583 were missing from the new release.
7003      Branch: perl
7004            ! lib/ExtUtils/Command/MM.pm lib/ExtUtils/Liblist.pm
7005            ! lib/ExtUtils/Liblist/Kid.pm lib/ExtUtils/MM.pm
7006            ! lib/ExtUtils/MM_AIX.pm lib/ExtUtils/MM_Any.pm
7007            ! lib/ExtUtils/MM_BeOS.pm lib/ExtUtils/MM_Cygwin.pm
7008            ! lib/ExtUtils/MM_DOS.pm lib/ExtUtils/MM_MacOS.pm
7009            ! lib/ExtUtils/MM_NW5.pm lib/ExtUtils/MM_OS2.pm
7010            ! lib/ExtUtils/MM_QNX.pm lib/ExtUtils/MM_UWIN.pm
7011            ! lib/ExtUtils/MM_Unix.pm lib/ExtUtils/MM_VMS.pm
7012            ! lib/ExtUtils/MM_VOS.pm lib/ExtUtils/MM_Win32.pm
7013            ! lib/ExtUtils/MM_Win95.pm lib/ExtUtils/MY.pm
7014            ! lib/ExtUtils/MakeMaker.pm lib/ExtUtils/MakeMaker/Config.pm
7015            ! lib/ExtUtils/MakeMaker/FAQ.pod lib/ExtUtils/MakeMaker/bytes.pm
7016            ! lib/ExtUtils/MakeMaker/vmsish.pm lib/ExtUtils/Mkbootstrap.pm
7017            ! lib/ExtUtils/Mksymlists.pm lib/ExtUtils/t/build_man.t
7018            ! lib/ExtUtils/testlib.pm
7019 ____________________________________________________________________________
7020 [ 30379] By: steveh                                on 2007/02/22  09:09:31
7021         Log: Subject: [PATCH] Re: Win32 modules & cygwin
7022              From: "Yitzchak Scott-Thoennes" <sthoenna@efn.org>
7023              Date: Tue, 20 Feb 2007 01:50:18 -0800 (PST)
7024              Message-ID: <1254.67.42.109.122.1171965018.squirrel@67.42.109.122>
7025              
7026              Also includes integration & deletion of win32/ext/Win32API to
7027              ext/Win32API, and addition of copyright message and corrections to
7028              spacing/tabbing as suggested by Jan Dubois.
7029      Branch: perl
7030            + ext/Win32API/File/t/file.t ext/Win32CORE/Makefile.PL
7031            + ext/Win32CORE/Win32CORE.c ext/Win32CORE/Win32CORE.pm
7032            + ext/Win32CORE/t/win32core.t
7033           +> ext/Win32API/File/Changes
7034           +> ext/Win32API/File/ExtUtils/Myconst2perl.pm
7035           +> ext/Win32API/File/File.pm ext/Win32API/File/File.xs
7036           +> ext/Win32API/File/Makefile.PL ext/Win32API/File/README
7037           +> ext/Win32API/File/buffers.h ext/Win32API/File/cFile.h
7038           +> ext/Win32API/File/cFile.pc ext/Win32API/File/const2perl.h
7039           +> ext/Win32API/File/t/tie.t ext/Win32API/File/typemap
7040            - win32/ext/Win32API/File/Changes
7041            - win32/ext/Win32API/File/ExtUtils/Myconst2perl.pm
7042            - win32/ext/Win32API/File/File.pm
7043            - win32/ext/Win32API/File/File.xs
7044            - win32/ext/Win32API/File/Makefile.PL
7045            - win32/ext/Win32API/File/README
7046            - win32/ext/Win32API/File/buffers.h
7047            - win32/ext/Win32API/File/cFile.h
7048            - win32/ext/Win32API/File/cFile.pc
7049            - win32/ext/Win32API/File/const2perl.h
7050            - win32/ext/Win32API/File/t/file.t
7051            - win32/ext/Win32API/File/t/tie.t
7052            - win32/ext/Win32API/File/typemap
7053            ! Configure MANIFEST Porting/Maintainers.pl cygwin/cygwin.c
7054            ! hints/cygwin.sh mkppport.lst win32/FindExt.pm win32/Makefile
7055            ! win32/config_sh.PL win32/makefile.mk win32/win32.c
7056 ____________________________________________________________________________
7057 [ 30378] By: stevep                                on 2007/02/21  17:50:37
7058         Log: Upgrade to CPAN-1.88_77.
7059      Branch: perl
7060            ! lib/CPAN.pm
7061 ____________________________________________________________________________
7062 [ 30376] By: rgs                                   on 2007/02/21  17:33:54
7063         Log: Subject: [PATCH] Re: [PATCH] Test with Errno in autouse.t
7064              From: "Jerry D. Hedden" <jdhedden@yahoo.com>
7065              Date: Wed, 21 Feb 2007 09:27:20 -0800 (PST)
7066              Message-ID: <619324.6794.qm@web30207.mail.mud.yahoo.com>
7067      Branch: perl
7068            ! lib/autouse.t
7069 ____________________________________________________________________________
7070 [ 30375] By: steveh                                on 2007/02/21  13:36:14
7071         Log: Remove unreferenced local variable
7072      Branch: perl
7073            ! ext/threads/threads.pm ext/threads/threads.xs
7074 ____________________________________________________________________________
7075 [ 30374] By: steveh                                on 2007/02/21  08:40:18
7076         Log: Fix Win32 compilation error following #30372
7077      Branch: perl
7078            ! regcomp.c
7079 ____________________________________________________________________________
7080 [ 30373] By: craigb                                on 2007/02/21  01:55:37
7081         Log: Fix VMS exit handling broken in Test::Harness 2.64. Also
7082              submitted as http://rt.cpan.org/Public/Bug/Display.html?id=24985
7083              on CPAN RT queue.
7084      Branch: perl
7085            ! lib/Test/Harness/Results.pm lib/Test/Harness/Straps.pm
7086 ____________________________________________________________________________
7087 [ 30372] By: stevep                                on 2007/02/20  13:24:38
7088         Log: Silence a couple of compile warnings.
7089      Branch: perl
7090            ! regcomp.c regexec.c
7091 ____________________________________________________________________________
7092 [ 30371] By: rgs                                   on 2007/02/20  11:05:15
7093         Log: Some INSTALL nits by Andy Dougherty
7094      Branch: perl
7095            ! INSTALL
7096 ____________________________________________________________________________
7097 [ 30370] By: rgs                                   on 2007/02/20  10:44:44
7098         Log: Skip test when Encode isn't built
7099              (noticed by Jerry D. Hedden)
7100      Branch: perl
7101            ! ext/PerlIO/encoding/t/nolooping.t
7102 ____________________________________________________________________________
7103 [ 30369] By: rgs                                   on 2007/02/20  10:39:52
7104         Log: Subject: [PATCH] Test with Errno in autouse.t
7105              From: "Jerry D. Hedden" <jdhedden@yahoo.com>
7106              Date: Sun, 18 Feb 2007 09:09:23 -0800 (PST)
7107              Message-ID: <834019.44481.qm@web30203.mail.mud.yahoo.com>
7108      Branch: perl
7109            ! lib/autouse.t
7110 ____________________________________________________________________________
7111 [ 30368] By: rgs                                   on 2007/02/20  09:31:59
7112         Log: A few nits to perlfunc/map.
7113      Branch: perl
7114            ! pod/perlfunc.pod
7115 ____________________________________________________________________________
7116 [ 30367] By: stevep                                on 2007/02/20  03:55:21
7117         Log: Subject: [PATCH] regexec.c: S_ stands for static
7118              From: jhi@cc.hut.fi (Jarkko Hietaniemi)
7119              Date: Tue, 20 Feb 2007 03:03:03 +0200 (EET)
7120              Message-Id: <20070220010303.2380A43A67@anubis.hut.fi>
7121      Branch: perl
7122            ! regexec.c
7123 ____________________________________________________________________________
7124 [ 30366] By: stevep                                on 2007/02/20  03:52:37
7125         Log: Subject: [PATCH] dump.c: format fixes
7126              From: jhi@cc.hut.fi (Jarkko Hietaniemi)
7127              Date: Tue, 20 Feb 2007 03:00:50 +0200 (EET)
7128              Message-Id: <20070220010050.CCDAF43A67@anubis.hut.fi>
7129      Branch: perl
7130            ! dump.c
7131 ____________________________________________________________________________
7132 [ 30365] By: nicholas                              on 2007/02/19  23:58:53
7133         Log: Avoid *some* g++ errors. (But not all yet)
7134      Branch: perl
7135            ! sv.c warnings.h warnings.pl
7136 ____________________________________________________________________________
7137 [ 30362] By: stevep                                on 2007/02/19  20:51:10
7138         Log: Subject: [PATCH] blead (honestly :-) g++ with -DPERL_GLOBAL_STRUCT_PRIVATE needs tweaking
7139              From: jhi@cc.hut.fi (Jarkko Hietaniemi)
7140              Date: Mon, 19 Feb 2007 19:41:07 +0200 (EET)
7141              Message-Id: <20070219174107.63EEB43A67@anubis.hut.fi>
7142              
7143              Plus a regen picked up changes in pod/perlapi.pod related to change
7144              #30347.
7145      Branch: perl
7146            ! opcode.h opcode.pl pod/perlapi.pod sv.c util.c
7147 ____________________________________________________________________________
7148 [ 30361] By: stevep                                on 2007/02/19  19:42:47
7149         Log: Upgrade to CPAN-1.88_76
7150      Branch: perl
7151            ! lib/CPAN.pm
7152 ____________________________________________________________________________
7153 [ 30360] By: stevep                                on 2007/02/19  19:27:27
7154         Log: Subject: [PATCH] integrate bignum 0.19
7155              From: Tels <nospam-abuse@bloodgate.com>
7156              Date: Sat, 3 Feb 2007 13:42:20 +0100
7157              Message-Id: <200702031342.21634@bloodgate.com>
7158      Branch: perl
7159            ! lib/bigint.pm lib/bignum.pm lib/bignum/t/bigint.t
7160            ! lib/bigrat.pm
7161 ____________________________________________________________________________
7162 [ 30359] By: stevep                                on 2007/02/19  19:23:03
7163         Log: Subject: [PATCH] Integrate BigRat 0.17
7164              From: Tels <nospam-abuse@bloodgate.com>
7165              Date: Sat, 3 Feb 2007 13:10:57 +0100
7166              Message-Id: <200702031310.58656@bloodgate.com>
7167      Branch: perl
7168            ! lib/Math/BigRat.pm lib/Math/BigRat/t/bigrat.t
7169 ____________________________________________________________________________
7170 [ 30358] By: stevep                                on 2007/02/19  19:15:15
7171         Log: Subject: [PATCH] integrate Math::BigInt 1.79 and Math::BigInt::FastCalc 0.11
7172              From: Tels <nospam-abuse@bloodgate.com>
7173              Date: Fri, 2 Feb 2007 15:37:36 +0100
7174              Message-Id: <200702021537.38442@bloodgate.com>
7175              
7176              Subject: Re: [PATCH] integrate Math::BigInt 1.79 and Math::BigInt::FastCalc 0.11
7177              From: Tels <nospam-abuse@bloodgate.com>
7178              Date: Tue, 6 Feb 2007 20:18:48 +0100
7179              Message-Id: <200702062019.05487@bloodgate.com>
7180              
7181              Also, a fix for @INC in lib/Math/BigInt/t/calling.t
7182              
7183              Additional tests to perform Pod and Pod coverage testing
7184              were left out based on removal of similar test files previously.
7185      Branch: perl
7186            ! ext/Math/BigInt/FastCalc/FastCalc.pm
7187            ! ext/Math/BigInt/FastCalc/Makefile.PL lib/Math/BigFloat.pm
7188            ! lib/Math/BigInt.pm lib/Math/BigInt/Calc.pm
7189            ! lib/Math/BigInt/t/alias.inc lib/Math/BigInt/t/bare_mbf.t
7190            ! lib/Math/BigInt/t/bare_mbi.t lib/Math/BigInt/t/bigfltpm.inc
7191            ! lib/Math/BigInt/t/bigfltpm.t lib/Math/BigInt/t/bigintc.t
7192            ! lib/Math/BigInt/t/bigintpm.inc lib/Math/BigInt/t/bigintpm.t
7193            ! lib/Math/BigInt/t/calling.t lib/Math/BigInt/t/sub_mbf.t
7194            ! lib/Math/BigInt/t/sub_mbi.t lib/Math/BigInt/t/upgrade.inc
7195            ! lib/Math/BigInt/t/upgrade.t lib/Math/BigInt/t/with_sub.t
7196            ! t/lib/Math/BigInt/BareCalc.pm t/lib/Math/BigInt/Scalar.pm
7197            ! t/lib/Math/BigInt/Subclass.pm
7198 ____________________________________________________________________________
7199 [ 30357] By: rgs                                   on 2007/02/19  18:23:51
7200         Log: Revert change #28980 per Jarkko's suggestion
7201              (it was actually breaking g++ builds)
7202      Branch: perl
7203            ! ext/Encode/bin/enc2xs
7204 ____________________________________________________________________________
7205 [ 30352] By: rgs                                   on 2007/02/19  13:41:41
7206         Log: Actually, only changes to regexec.c from #30081 needed to be reverted.
7207      Branch: perl
7208            ! ext/re/lib/re/Tie/Hash/NamedCapture.pm ext/re/re.pm regcomp.c
7209 ____________________________________________________________________________
7210 [ 30351] By: rgs                                   on 2007/02/19  13:08:03
7211         Log: Revert change #30081 at dmq's request, and mark its tests
7212              as TODO. (This should restore compilation with g++)
7213      Branch: perl
7214            ! ext/re/lib/re/Tie/Hash/NamedCapture.pm ext/re/re.pm regcomp.c
7215            ! regexec.c t/op/pat.t
7216 ____________________________________________________________________________
7217 [ 30349] By: rgs                                   on 2007/02/19  10:08:38
7218         Log: Add a cast for C++ compilation
7219      Branch: perl
7220            ! mg.c
7221 ____________________________________________________________________________
7222 [ 30348] By: nicholas                              on 2007/02/18  20:07:39
7223         Log: More efficient to call newSV_type() then SvGROW() instead of newSV()
7224              with a size then sv_upgrade(), as the latter calls sv_upgrade() twice.
7225      Branch: perl
7226            ! perl.c toke.c
7227 ____________________________________________________________________________
7228 [ 30347] By: nicholas                              on 2007/02/18  19:40:43
7229         Log: Add a new API function newSV_type, to replace the idiom:
7230              sv = newSV(0);
7231              sv_upgrade(sv, type);
7232      Branch: perl
7233            ! av.c embed.fnc embed.h global.sym gv.c hv.c mathoms.c op.c
7234            ! pad.c perl.c pp.c pp_ctl.c pp_hot.c proto.h sv.c toke.c
7235 ____________________________________________________________________________
7236 [ 30346] By: nicholas                              on 2007/02/18  18:33:04
7237         Log: Properly handle the differences in hints in the optree with/without
7238              use open; by adding the with-open hints to all the golden results,
7239              and providing a new flag strip_open_hint to checkOptree().
7240      Branch: perl
7241            ! ext/B/t/OptreeCheck.pm ext/B/t/optree_check.t
7242            ! ext/B/t/optree_concise.t ext/B/t/optree_constants.t
7243            ! ext/B/t/optree_misc.t ext/B/t/optree_samples.t
7244            ! ext/B/t/optree_sort.t ext/B/t/optree_specials.t
7245            ! ext/B/t/optree_varinit.t
7246 ____________________________________________________________________________
7247 [ 30345] By: nicholas                              on 2007/02/18  17:56:13
7248         Log: newHV doesn't need to turn off POK or NOK, as they will default to not
7249              being set.
7250      Branch: perl
7251            ! hv.c
7252 ____________________________________________________________________________
7253 [ 30344] By: nicholas                              on 2007/02/18  14:18:01
7254         Log: test.pl should locally increase $Level, rather than setting it to a
7255              hard value, so that callers of like and unlike can present diagnostics
7256              with the line number of their own caller.
7257      Branch: perl
7258            ! t/test.pl
7259 ____________________________________________________________________________
7260 [ 30343] By: craigb                                on 2007/02/18  03:54:46
7261         Log: Make vms/munchconfig.c able to take a list of substitutions from
7262              a file so we don't overflow the command buffer on older systems.
7263      Branch: perl
7264            ! configure.com vms/munchconfig.c
7265 ____________________________________________________________________________
7266 [ 30342] By: craigb                                on 2007/02/17  22:40:51
7267         Log: Make configure.com's manifest checker more robust when handling files with 
7268              multiple dots that also have an underscore in the name (e.g., foo_bar.tar.gz).
7269              Various archive utilities will create that as foo_bar_tar.gz or foo_bar.tar_gz,
7270              at least on ODS-2 volumes.
7271      Branch: perl
7272            ! configure.com
7273 ____________________________________________________________________________
7274 [ 30335] By: nicholas                              on 2007/02/17  14:12:07
7275         Log: Missed an aTHX_ in B's call to Perl_emulate_cop_io.
7276              Missed that global.sym was modified.
7277      Branch: perl
7278            ! ext/B/B.xs global.sym
7279 ____________________________________________________________________________
7280 [ 30334] By: nicholas                              on 2007/02/17  12:39:17
7281         Log: Split the storage of the layers specificied by open.pm into one hint
7282              for input, and one for output, as this better reflects how they are
7283              used. The original "concatenate with \0" plan was really only a
7284              compramise to avoid needing to increase every COP by 2 pointers.
7285      Branch: perl
7286            ! embed.fnc embed.h ext/B/B.xs ext/B/B/Concise.pm
7287            ! ext/B/t/OptreeCheck.pm mg.c perl.h perlio.c proto.h
7288 ____________________________________________________________________________
7289 [ 30333] By: nicholas                              on 2007/02/16  23:54:33
7290         Log: Move all the cut&paste open TODO logic into OptreeCheck.pm, where it
7291              should have been in the first place. Apply strict and warnings to
7292              OptreeCheck.pm, and remove dead code they show up.
7293      Branch: perl
7294            ! ext/B/t/OptreeCheck.pm ext/B/t/optree_check.t
7295            ! ext/B/t/optree_concise.t ext/B/t/optree_constants.t
7296            ! ext/B/t/optree_misc.t ext/B/t/optree_samples.t
7297            ! ext/B/t/optree_sort.t ext/B/t/optree_specials.t
7298            ! ext/B/t/optree_varinit.t
7299 ____________________________________________________________________________
7300 [ 30332] By: stevep                                on 2007/02/16  20:19:16
7301         Log: Subject: [perl #41521] Fix for IO::Socket send method
7302              From: "Todd C. Miller" (via RT) <perlbug-followup@perl.org>
7303              Date: Fri, 16 Feb 2007 11:26:45 -0800
7304              Message-ID: <rt-3.6.HEAD-24617-1171654005-819.41521-75-0@perl.org>
7305      Branch: perl
7306            ! ext/IO/lib/IO/Socket.pm
7307 ____________________________________________________________________________
7308 [ 30331] By: steveh                                on 2007/02/16  18:14:58
7309         Log: Fix Win32 build after unusual breakage caused by #30327
7310              (Boy, did that take some tracking down!)
7311      Branch: perl
7312            ! win32/config_h.PL
7313 ____________________________________________________________________________
7314 [ 30330] By: rgs                                   on 2007/02/16  15:38:39
7315         Log: Update Changes
7316      Branch: perl
7317            ! Changes
7318 ____________________________________________________________________________
7319 [ 30329] By: craigb                                on 2007/02/16  14:41:18
7320         Log: In configure.com, put the "use" back in useieee (typo in #30325)
7321      Branch: perl
7322            ! configure.com
7323 ____________________________________________________________________________
7324 [ 30327] By: rgs                                   on 2007/02/16  10:30:57
7325         Log: Avoid to run config_h.SH twice during configuration.
7326      Branch: perl
7327            ! cflags.SH config_h.SH
7328 ____________________________________________________________________________
7329 [ 30325] By: craigb                                on 2007/02/16  00:43:07
7330         Log: In configure.com, further disambiguate -Duselongdouble and its 
7331              prerequisites from other 64-bit options.
7332      Branch: perl
7333            ! configure.com
7334 ____________________________________________________________________________
7335 [ 30317] By: rgs                                   on 2007/02/15  14:16:56
7336         Log: Hakim Cassimally is the new maintainer of the Perldoc modules
7337      Branch: perl
7338            ! Porting/Maintainers.pl
7339 ____________________________________________________________________________
7340 [ 30315] By: rgs                                   on 2007/02/15  13:10:31
7341         Log: Subject: Re: Patch for Deep recursion in B::Deparse
7342              From: Ash Berlin <ash_cpan@firemirror.com>
7343              Date: Thu, 15 Feb 2007 10:47:15 +0000
7344              Message-ID: <45D43A33.6070101@firemirror.com>
7345      Branch: perl
7346            ! ext/B/B/Deparse.pm
7347 ____________________________________________________________________________
7348 [ 30313] By: rgs                                   on 2007/02/15  12:39:46
7349         Log: Subject: Re: [perl #41491] Incorrect regexp warning.
7350              From: demerphq <demerphq@gmail.com>
7351              Date: Thu, 15 Feb 2007 12:07:40 +0100
7352              Message-ID: <9b18b3110702150307t21b5efd2jfdeebccdff9175b1@mail.gmail.com>
7353      Branch: perl
7354            ! regcomp.c
7355 ____________________________________________________________________________
7356 [ 30310] By: rgs                                   on 2007/02/15  09:34:01
7357         Log: Subject: [PATCH] Use newer 'threads' constructs
7358              From: "Jerry D. Hedden" <jdhedden@yahoo.com>
7359              Date: Mon, 12 Feb 2007 12:04:33 -0800 (PST)
7360              Message-ID: <844555.64815.qm@web30202.mail.mud.yahoo.com>
7361      Branch: perl
7362            ! ext/XS/APItest/t/my_cxt.t ext/threads/shared/t/blessed.t
7363            ! ext/threads/shared/t/cond.t ext/threads/shared/t/hv_refs.t
7364            ! ext/threads/threads.xs lib/Thread/Queue.t lib/perl5db.pl
7365            ! pod/perlapi.pod pod/perlxs.pod sv.c t/op/threads.t
7366 ____________________________________________________________________________
7367 [ 30298] By: nicholas                              on 2007/02/14  20:59:02
7368         Log: There's no need to special case SVt_NULL in the print code, as it's
7369              only 0.01% of the cases called, and the call to SvPV_const() will
7370              issue the same warning and return the same empty string result for us.
7371              Unfortunately changing the switch statement to an if results in lots of
7372              whitespace changes, hence this change appears much larger than it is.
7373      Branch: perl
7374            ! doio.c
7375 ____________________________________________________________________________
7376 [ 30293] By: rgs                                   on 2007/02/14  17:29:53
7377         Log: Allow to override MAX_RECURSE_EVAL_NOCHANGE_DEPTH,
7378              introduced in change 28939 (this should be documented)
7379      Branch: perl
7380            ! regexp.h
7381 ____________________________________________________________________________
7382 [ 30280] By: mhx                                   on 2007/02/14  13:23:50
7383         Log: Upgrade to Devel::PPPort 3.11
7384      Branch: perl
7385            ! ext/Devel/PPPort/Changes ext/Devel/PPPort/HACKERS
7386            ! ext/Devel/PPPort/Makefile.PL ext/Devel/PPPort/PPPort_pm.PL
7387            ! ext/Devel/PPPort/PPPort_xs.PL ext/Devel/PPPort/README
7388            ! ext/Devel/PPPort/TODO ext/Devel/PPPort/apicheck_c.PL
7389            ! ext/Devel/PPPort/mktests.PL ext/Devel/PPPort/module2.c
7390            ! ext/Devel/PPPort/module3.c ext/Devel/PPPort/parts/apicheck.pl
7391            ! ext/Devel/PPPort/parts/inc/MY_CXT
7392            ! ext/Devel/PPPort/parts/inc/SvPV
7393            ! ext/Devel/PPPort/parts/inc/SvREFCNT
7394            ! ext/Devel/PPPort/parts/inc/Sv_set
7395            ! ext/Devel/PPPort/parts/inc/call ext/Devel/PPPort/parts/inc/cop
7396            ! ext/Devel/PPPort/parts/inc/exception
7397            ! ext/Devel/PPPort/parts/inc/format
7398            ! ext/Devel/PPPort/parts/inc/grok
7399            ! ext/Devel/PPPort/parts/inc/limits
7400            ! ext/Devel/PPPort/parts/inc/mPUSH
7401            ! ext/Devel/PPPort/parts/inc/magic
7402            ! ext/Devel/PPPort/parts/inc/memory
7403            ! ext/Devel/PPPort/parts/inc/misc
7404            ! ext/Devel/PPPort/parts/inc/newCONSTSUB
7405            ! ext/Devel/PPPort/parts/inc/newRV
7406            ! ext/Devel/PPPort/parts/inc/podtest
7407            ! ext/Devel/PPPort/parts/inc/ppphbin
7408            ! ext/Devel/PPPort/parts/inc/ppphdoc
7409            ! ext/Devel/PPPort/parts/inc/ppphtest
7410            ! ext/Devel/PPPort/parts/inc/pvs
7411            ! ext/Devel/PPPort/parts/inc/snprintf
7412            ! ext/Devel/PPPort/parts/inc/strlfuncs
7413            ! ext/Devel/PPPort/parts/inc/sv_xpvf
7414            ! ext/Devel/PPPort/parts/inc/threads
7415            ! ext/Devel/PPPort/parts/inc/uv
7416            ! ext/Devel/PPPort/parts/inc/variables
7417            ! ext/Devel/PPPort/parts/inc/version
7418            ! ext/Devel/PPPort/parts/inc/warn
7419            ! ext/Devel/PPPort/parts/ppptools.pl ext/Devel/PPPort/soak
7420            ! ext/Devel/PPPort/typemap
7421 ____________________________________________________________________________
7422 [ 30278] By: merijn                                on 2007/02/14  07:54:59
7423         Log: Subject: Re: [PATCH] Document that m//k works
7424              From: demerphq <demerphq@gmail.com>
7425              Date: Tue, 13 Feb 2007 22:04:54 +0100
7426              Message-ID: <9b18b3110702131304q370f3530j463c1a59c5ac1dfe@mail.gmail.com>
7427      Branch: perl
7428            + t/op/regexp_pmod.t
7429            - t/op/regexp_kmod.t
7430            ! MANIFEST ext/re/t/re_funcs.t pod/perlop.pod pod/perlre.pod
7431            ! pod/perlvar.pod regexp.h
7432 ____________________________________________________________________________
7433 [ 30277] By: nicholas                              on 2007/02/14  00:04:54
7434         Log: Change 30276 wasn't meant do mess with t/lib/common.pl. Oops.
7435              Undo the mistake.
7436      Branch: perl
7437            ! t/lib/common.pl
7438 ____________________________________________________________________________
7439 [ 30268] By: nicholas                              on 2007/02/13  20:11:53
7440         Log: Invoke minitrue to ensure that my spelling had always been correct.
7441              [We] thank Big Brother for raising the chocolate ration to twenty
7442              grammes a week.
7443      Branch: perl
7444            ! Changes
7445 ____________________________________________________________________________
7446 [ 30267] By: merijn                                on 2007/02/13  20:11:08
7447         Log: Subject: Re: Segmentation fault at undeclared for loop variable
7448              From: Robin Houston <robin@cpan.org>
7449              Date: Tue, 13 Feb 2007 16:50:08 +0000
7450              Message-Id: <C8B8E41C-C6FE-4822-918B-C62C916194DF@cpan.org>
7451      Branch: perl
7452            ! op.c
7453 ____________________________________________________________________________
7454 [ 30265] By: merijn                                on 2007/02/13  19:43:15
7455         Log: Subject: [PATCH] add hooks for capture buffers into regex engine.
7456              From: demerphq <demerphq@gmail.com>
7457              Date: Tue, 13 Feb 2007 20:27:33 +0100
7458              Message-ID: <9b18b3110702131127q79cc6df1lb1480d9a40d15213@mail.gmail.com>
7459      Branch: perl
7460            ! embed.fnc embed.h ext/re/re.xs ext/re/re_top.h mg.c perl.h
7461            ! proto.h regcomp.c regcomp.h regexp.h
7462 ____________________________________________________________________________
7463 [ 30264] By: merijn                                on 2007/02/13  19:36:56
7464         Log: Subject: Re: [perl #41491] Incorrect regexp warning.
7465              From: demerphq <demerphq@gmail.com>
7466              Date: Tue, 13 Feb 2007 19:09:17 +0100
7467              Message-ID: <9b18b3110702131009l6a0867a3m8317c9d62328f834@mail.gmail.com>
7468      Branch: perl
7469            ! regcomp.c
7470 ____________________________________________________________________________
7471 [ 30258] By: steveh                                on 2007/02/13  16:02:42
7472         Log: Vadim did the static build change
7473      Branch: perl
7474            ! pod/perl595delta.pod
7475 ____________________________________________________________________________
7476 [ 30257] By: rgs                                   on 2007/02/13  15:30:12
7477         Log: A few more details in perldelta
7478      Branch: perl
7479            ! pod/perl595delta.pod
7480 ____________________________________________________________________________
7481 [ 30256] By: stevep                                on 2007/02/13  15:23:00
7482         Log: Upgrade to CPAN-1.88_72
7483      Branch: perl
7484            ! lib/CPAN.pm lib/CPAN/FirstTime.pm lib/CPAN/HandleConfig.pm
7485            ! lib/CPAN/Queue.pm lib/CPAN/Tarzip.pm
7486 ____________________________________________________________________________
7487 [ 30255] By: nicholas                              on 2007/02/13  14:22:32
7488         Log: Change 26487 left some debugging code in, and through the wonders of
7489              autovivification, that code actually introduced a bug, most easily
7490              visible for the for the non-5.9.x case.
7491      Branch: perl
7492            ! ext/B/t/optree_constants.t lib/constant.pm
7493 ____________________________________________________________________________
7494 [ 30254] By: stevep                                on 2007/02/13  03:19:05
7495         Log: Subject: [PATCH] Fwd: CPAN Upload: J/JP/JPEACOCK/version-0.70.tar.gz
7496              From: John Peacock <jpeacock@rowman.com>
7497              Date: Mon, 12 Feb 2007 21:51:23 -0500
7498              Message-ID: <45D127AB.3050904@rowman.com>
7499      Branch: perl
7500            ! lib/version.pm lib/version.pod lib/version.t util.c
7501 ____________________________________________________________________________
7502 [ 30240] By: nicholas                              on 2007/02/12  20:29:43
7503         Log: Integrate:
7504              [ 29832]
7505              Avoid a SEGV in DBI's test suite, discovered by Andreas.
7506              Probably need to go through and audit to see if there are analagous
7507              places that need tweaking.
7508      Branch: perl
7509           !> perl.c
7510 ____________________________________________________________________________
7511 [ 30236] By: merijn                                on 2007/02/12  18:33:45
7512         Log: Subject: Re: [perl #41492] Incorrect match with /(?(DEFINE)(?<A> (?&B)+)(?<B> a))/
7513              From: demerphq <demerphq@gmail.com>
7514              Date: Mon, 12 Feb 2007 19:15:33 +0100
7515              Message-ID: <9b18b3110702121015o1c84ff6hfd69cfa645fae0bf@mail.gmail.com>
7516      Branch: perl
7517            ! regexec.c t/op/re_tests
7518 ____________________________________________________________________________
7519 [ 30235] By: nicholas                              on 2007/02/12  18:25:07
7520         Log: Integrate:
7521              [ 24458]
7522              Fix from Steve Peters
7523              
7524              [ 24464]
7525              Subject: RE: 5.8.7-tobe fails to compile on AIX 4.3.3
7526              From: "Jan Dubois" <jand@ActiveState.com>
7527              Message-Id: <200505131921.j4DJLgG5007986@smtp3.ActiveState.com>
7528              Date: Fri, 13 May 2005 12:21:40 -0700
7529              
7530              
7531              and then regenerate reentr.h, with the , no longer inside
7532              REENTR_MEMZERO(). This keeps macros looking like functions.
7533      Branch: perl
7534            ! reentr.h
7535           !> reentr.pl
7536 ____________________________________________________________________________
7537 [ 30234] By: merijn                                on 2007/02/12  17:46:46
7538         Log: Subject: Re: [PATCH - provisional] H. Merijn Brands idea of buffer numbering.
7539              From: Paul Johnson <paul@pjcj.net>
7540              Date: Sat, 10 Feb 2007 23:10:31 +0100
7541              Message-ID: <20070210221031.GB31280@pjcj.net>
7542      Branch: perl
7543            ! README.hpux pod/perlre.pod
7544 ____________________________________________________________________________
7545 [ 30233] By: rgs                                   on 2007/02/12  17:00:09
7546         Log: Skip this test if "use open" fails due to an unknown encoding
7547      Branch: perl
7548            ! ext/PerlIO/encoding/t/nolooping.t
7549 ____________________________________________________________________________
7550 [ 30229] By: rgs                                   on 2007/02/12  15:31:56
7551         Log: Un-TODO tests avec change #30228
7552      Branch: perl
7553            ! t/comp/parser.t
7554 ____________________________________________________________________________
7555 [ 30228] By: rgs                                   on 2007/02/12  15:27:31
7556         Log: Subject: Re: PL_copline inconsistency
7557              From: Rick Delaney <rick@bort.ca>
7558              Date: Sat, 27 Jan 2007 20:29:02 -0500
7559              Message-ID: <20070128012902.GA21572@bort.ca>
7560      Branch: perl
7561            ! toke.c
7562 ____________________________________________________________________________
7563 [ 30221] By: nicholas                              on 2007/02/12  10:52:28
7564         Log: Note why storing a reference as an integer in %^H is not threadsafe.
7565      Branch: perl
7566            ! pod/perlpragma.pod
7567 ____________________________________________________________________________
7568 [ 30220] By: rgs                                   on 2007/02/12  09:05:38
7569         Log: Document that m//k works, by Ã†var Arnfjörð Bjarmason
7570      Branch: perl
7571            ! pod/perlop.pod
7572 ____________________________________________________________________________
7573 [ 30219] By: steveh                                on 2007/02/12  09:04:41
7574         Log: Apply #30197 to win32/makefile.mk too
7575      Branch: perl
7576            ! win32/makefile.mk
7577 ____________________________________________________________________________
7578 [ 30218] By: rgs                                   on 2007/02/12  09:01:30
7579         Log: FAQ sync
7580      Branch: perl
7581            ! pod/perlfaq1.pod pod/perlfaq2.pod pod/perlfaq3.pod
7582            ! pod/perlfaq4.pod pod/perlfaq5.pod pod/perlfaq6.pod
7583            ! pod/perlfaq7.pod pod/perlfaq8.pod pod/perlfaq9.pod
7584 ____________________________________________________________________________
7585 [ 30217] By: craigb                                on 2007/02/11  23:52:35
7586         Log: Check for the presence of signbit() on VMS. It currently only works
7587              on IEEE double, not IEEE long double or any other floating point format.
7588              Also, begin to disentangle -Duselongdouble configuration support from
7589              its other 64-bit brethren.
7590      Branch: perl
7591            ! configure.com
7592 ____________________________________________________________________________
7593 [ 30216] By: craigb                                on 2007/02/11  23:48:46
7594         Log: In vms/vms.c's declaration of the LIB$INITIALIZE psect, try to get
7595              all of the attributes we need without any of the ones we don't, and
7596              try to be friendly to older compilers without too much damage to 
7597              readability.  Thanks to Saku Setala for the problem report.
7598      Branch: perl
7599            ! vms/vms.c
7600 ____________________________________________________________________________
7601 [ 30215] By: rgs                                   on 2007/02/11  17:29:04
7602         Log: Another tiny typo in File::Copy (found by Ruud.)
7603      Branch: perl
7604            ! lib/File/Copy.pm
7605 ____________________________________________________________________________
7606 [ 30214] By: rgs                                   on 2007/02/11  17:23:51
7607         Log: Explicitly load PerlIO::encoding when testing it.
7608              (so we know what we're testing)
7609      Branch: perl
7610            ! ext/PerlIO/encoding/t/nolooping.t
7611 ____________________________________________________________________________
7612 [ 30213] By: rgs                                   on 2007/02/11  17:13:44
7613         Log: Subject: Re: [perl #41442] segfault (dead loop) with Encoding, use open :locale, print STDERR
7614              From: Slaven Rezic <slaven@rezic.de>
7615              Date: 05 Feb 2007 23:04:07 +0100
7616              Message-ID: <87veiggt2g.fsf@biokovo.herceg.de>
7617      Branch: perl
7618            + ext/PerlIO/encoding/t/nolooping.t
7619            ! MANIFEST ext/PerlIO/encoding/encoding.pm
7620            ! ext/PerlIO/encoding/encoding.xs
7621 ____________________________________________________________________________
7622 [ 30212] By: rgs                                   on 2007/02/11  16:26:47
7623         Log: Convert new test to using t/test.pl.
7624              (No idea where it could fit better. And since it uses the stack,
7625              it's a bit fragile)
7626      Branch: perl
7627            ! t/op/qrstack.t
7628 ____________________________________________________________________________
7629 [ 30211] By: rgs                                   on 2007/02/11  16:20:15
7630         Log: Subject: [perl #41484] qr// stack bug 
7631              From: knew-p5p@pimb.org (via RT) <perlbug-followup@perl.org>
7632              Date: Sat, 10 Feb 2007 19:32:17 -0800
7633              Message-ID: <rt-3.6.HEAD-14573-1171164736-117.41484-75-0@perl.org>
7634      Branch: perl
7635            + t/op/qrstack.t
7636            ! MANIFEST pp_hot.c
7637 ____________________________________________________________________________
7638 [ 30200] By: merijn                                on 2007/02/10  20:41:31
7639         Log: Subject: Re: [NL-PM] Fw: [PATCH - provisional] H. Merijn Brands idea of buffer numbering.
7640              From: demerphq <demerphq@gmail.com>
7641              Date: Sat, 10 Feb 2007 21:31:55 +0100
7642              Message-ID: <9b18b3110702101231j5e91cc20g780a8c581af02dd5@mail.gmail.com>
7643      Branch: perl
7644            ! regcomp.c t/op/pat.t
7645 ____________________________________________________________________________
7646 [ 30197] By: nicholas                              on 2007/02/10  19:35:09
7647         Log: Subject: [PATCH] Defend against cmd.exe stupidity (on Win2k at least)
7648              From: demerphq <demerphq@gmail.com>
7649              Message-ID: <9b18b3110702101100n76f65136ke65113bf0dbd01f@mail.gmail.com>
7650              Date: Sat, 10 Feb 2007 20:00:10 +0100
7651      Branch: perl
7652            ! win32/Makefile
7653 ____________________________________________________________________________
7654 [ 30195] By: nicholas                              on 2007/02/10  18:51:31
7655         Log: These casts to GV are no longer needed.
7656      Branch: perl
7657            ! pp.c
7658 ____________________________________________________________________________
7659 [ 30192] By: merijn                                on 2007/02/10  17:22:04
7660         Log: Subject: [PATCH] signbit detection (was [perl #39875] -0.0 loses signedness upon numeric comparison)
7661              From: Andy Dougherty <doughera@lafayette.edu>
7662              Date: Fri, 9 Feb 2007 11:40:51 -0500 (EST)
7663              Message-ID: <Pine.LNX.4.62.0702091121400.10202@fractal.phys.lafayette.edu>
7664      Branch: perl
7665            ! Configure Porting/Glossary config_h.SH embed.fnc embed.h
7666            ! global.sym numeric.c perl.h pod/perlapi.pod proto.h
7667 ____________________________________________________________________________
7668 [ 30188] By: nicholas                              on 2007/02/09  23:36:46
7669         Log: Fix Pod errors.
7670      Branch: perl
7671            ! README.mpeix gv.c pod/perl595delta.pod pod/perlapi.pod
7672 ____________________________________________________________________________
7673 [ 30184] By: merijn                                on 2007/02/09  20:06:44
7674         Log: Subject: Re: [NL-PM] Fw: [PATCH - provisional] H. Merijn Brands idea of buffer numbering.
7675              From: demerphq <demerphq@gmail.com>
7676              Date: Fri, 9 Feb 2007 20:40:17 +0100
7677              Message-ID: <9b18b3110702091140k12d60712uf9fffbf77141247c@mail.gmail.com>
7678      Branch: perl
7679            ! regcomp.c
7680 ____________________________________________________________________________
7681 [ 30183] By: nicholas                              on 2007/02/09  19:39:45
7682         Log: Unknown formatting code U<> spotted by Jesse - presumably it should be
7683              L<>
7684      Branch: perl
7685            ! pod/perlfaq1.pod
7686 ____________________________________________________________________________
7687 [ 30178] By: nicholas                              on 2007/02/09  12:20:49
7688         Log: Update the lists of files that makerel needs to process. Remove the
7689              "used only once" warning.
7690      Branch: perl
7691            ! Porting/makerel
7692 ____________________________________________________________________________
7693 [ 30177] By: craigb                                on 2007/02/08  18:42:44
7694         Log: Switch from Carp to plain old warn in vms/ext/XSSymSet.pm
7695              because Carp now in some cases depends on things that may not
7696              be available from miniperl or before extensions are built.
7697      Branch: perl
7698            ! vms/ext/XSSymSet.pm
7699 ____________________________________________________________________________
7700 [ 30172] By: rgs                                   on 2007/02/08  14:14:25
7701         Log: Typo fix, by John P. Linderman
7702      Branch: perl
7703            ! lib/File/Copy.pm
7704 ____________________________________________________________________________
7705 [ 30171] By: nicholas                              on 2007/02/08  13:46:31
7706         Log: Subject: [PATCH] Re: Change 29193 is a regression
7707              From: Rick Delaney <rick@bort.ca>
7708              Date: Thu, 8 Feb 2007 08:21:37 -0500
7709              Message-ID: <20070208132137.GA24202@bort.ca>
7710      Branch: perl
7711            ! pp_ctl.c t/op/taint.t
7712 ____________________________________________________________________________
7713 [ 30170] By: rgs                                   on 2007/02/08  10:16:14
7714         Log: Remove dead code that was emitting warnings.
7715      Branch: perl
7716            ! regcomp.c
7717 ____________________________________________________________________________
7718 [ 30169] By: merijn                                on 2007/02/08  08:19:24
7719         Log: Subject: Re: [PATCH - provisional] H. Merijn Brands idea of buffer numbering.
7720              From: demerphq <demerphq@gmail.com>
7721              Date: Wed, 7 Feb 2007 22:53:25 +0100
7722              Message-ID: <9b18b3110702071353l250d8a67x188c4e234e8905c7@mail.gmail.com>
7723      Branch: perl
7724            ! pod/perlre.pod regcomp.c t/op/re_tests
7725 ____________________________________________________________________________
7726 [ 30168] By: nicholas                              on 2007/02/07  23:54:53
7727         Log: opening $0 doesn't work if you change directory. So use test.pl
7728      Branch: perl
7729            ! t/op/taint.t
7730 ____________________________________________________________________________
7731 [ 30167] By: nicholas                              on 2007/02/07  23:49:44
7732         Log: TODO tests for eval of tainted scalars. (change 29193's regression)
7733      Branch: perl
7734            ! t/op/taint.t
7735 ____________________________________________________________________________
7736 [ 30157] By: stevep                                on 2007/02/07  14:56:05
7737         Log: Upgrade to Time-HiRes-1.9705
7738      Branch: perl
7739            + ext/Time/HiRes/hints/linux.pl
7740            ! MANIFEST ext/Time/HiRes/Changes ext/Time/HiRes/HiRes.pm
7741            ! ext/Time/HiRes/HiRes.xs ext/Time/HiRes/Makefile.PL
7742            ! ext/Time/HiRes/t/HiRes.t
7743 ____________________________________________________________________________
7744 [ 30156] By: rgs                                   on 2007/02/07  13:58:10
7745         Log: Subject: [PATCH] Fix to Dynaloader.t for missing modules
7746              From: "Jerry D. Hedden" <jdhedden@yahoo.com>
7747              Date: Wed, 7 Feb 2007 05:18:43 -0800 (PST)
7748              Message-ID: <618512.39885.qm@web30212.mail.mud.yahoo.com>
7749      Branch: perl
7750            ! ext/DynaLoader/t/DynaLoader.t
7751 ____________________________________________________________________________
7752 [ 30155] By: rgs                                   on 2007/02/07  12:27:58
7753         Log: Subject: [PATCH hints/linux.sh] libdb may require pthread
7754              From: Jonathan Stowe <jns@gellyfish.com>
7755              Date: Wed, 07 Feb 2007 11:56:17 +0000
7756              Message-Id: <1170849377.13207.14.camel@coriolanus.gellyfish.com>
7757      Branch: perl
7758            ! hints/linux.sh
7759 ____________________________________________________________________________
7760 [ 30153] By: rgs                                   on 2007/02/07  09:04:56
7761         Log: Wrap the SvTYPE macro definition in parens.
7762      Branch: perl
7763            ! sv.h
7764 ____________________________________________________________________________
7765 [ 30152] By: rgs                                   on 2007/02/06  22:37:34
7766         Log: Upgrade to threads.pm 1.59 (doc tweaks)
7767      Branch: perl
7768            ! ext/threads/Changes ext/threads/README ext/threads/t/exit.t
7769            ! ext/threads/t/thread.t ext/threads/threads.pm
7770 ____________________________________________________________________________
7771 [ 30151] By: rgs                                   on 2007/02/06  22:35:29
7772         Log: Upgrade to threads::shared 1.07 (doc tweaks)
7773      Branch: perl
7774            ! ext/threads/shared/Changes ext/threads/shared/README
7775            ! ext/threads/shared/shared.pm
7776 ____________________________________________________________________________
7777 [ 30150] By: rgs                                   on 2007/02/06  22:33:23
7778         Log: Subject: [PATCH] perlop.pod - proposal to add an explanation of \c
7779              From: "Wolfgang Laun" <wolfgang.laun@gmail.com>
7780              Date: Sat, 3 Feb 2007 16:23:48 +0100
7781              Message-ID: <17de7ee80702030723m4265bbfkc83644d55a24aa0@mail.gmail.com>
7782      Branch: perl
7783            ! pod/perlop.pod
7784 ____________________________________________________________________________
7785 [ 30149] By: rgs                                   on 2007/02/06  22:29:45
7786         Log: Avoid obscure failures when a regexp hasn't matched
7787      Branch: perl
7788            ! t/op/bless.t
7789 ____________________________________________________________________________
7790 [ 30148] By: rgs                                   on 2007/02/06  21:54:12
7791         Log: Subject: [PATCH] current status on Unicode Regular Expressions
7792              From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
7793              Date: Sat, 03 Feb 2007 17:01:52 +0900
7794              Message-Id: <20070203170135.3B43.BQW10602@nifty.com>
7795      Branch: perl
7796            ! lib/unicore/mktables pod/perlunicode.pod t/op/pat.t
7797 ____________________________________________________________________________
7798 [ 30147] By: rgs                                   on 2007/02/06  21:48:59
7799         Log: Subject: [PATCH] fix 2 environment handling bugs
7800              From: Jan Dubois <jand@ActiveState.com>
7801              Date: Mon, 05 Feb 2007 21:45:36 -0800
7802              Message-ID: <p81gs2pggh04cngqjam0ejite7ksamiprt@4ax.com>
7803      Branch: perl
7804            ! perl.c
7805 ____________________________________________________________________________
7806 [ 30146] By: stevep                                on 2007/02/06  21:43:13
7807         Log: Upgrade to ExtUtils-Command-1.13
7808      Branch: perl
7809            ! lib/ExtUtils/Command.pm
7810 ____________________________________________________________________________
7811 [ 30144] By: stevep                                on 2007/02/06  17:29:09
7812         Log: Upgrade to libnet-1.20.  Includes some additional version bumps where bleadperl
7813              differs from the CPAN version (Net::FTP and Net::NNTP).
7814      Branch: perl
7815            ! lib/Net/Changes.libnet lib/Net/Cmd.pm lib/Net/FTP.pm
7816            ! lib/Net/FTP/A.pm lib/Net/NNTP.pm lib/Net/POP3.pm
7817            ! lib/Net/SMTP.pm
7818 ____________________________________________________________________________
7819 [ 30143] By: stevep                                on 2007/02/06  16:42:50
7820         Log: Upgrade to Module-Pluggable-3.5
7821      Branch: perl
7822            ! lib/Module/Pluggable.pm lib/Module/Pluggable/Object.pm
7823 ____________________________________________________________________________
7824 [ 30142] By: nicholas                              on 2007/02/05  23:52:23
7825         Log: Make a dummy OPpPAD_STATE and a dummy PL_unitcheck_save available to
7826              pre 5.9.x.
7827      Branch: perl
7828            ! ext/B/B.xs ext/B/defsubs_h.PL
7829 ____________________________________________________________________________
7830 [ 30136] By: nicholas                              on 2007/02/05  18:53:18
7831         Log: t/lib/common.pl can be warnings clean.
7832      Branch: perl
7833            ! t/lib/common.pl
7834 ____________________________________________________________________________
7835 [ 30134] By: nicholas                              on 2007/02/05  18:35:47
7836         Log: Upgrade to ExtUtils-ParseXS-2.18
7837      Branch: perl
7838            ! lib/ExtUtils/ParseXS.pm
7839 ____________________________________________________________________________
7840 [ 30129] By: rgs                                   on 2007/02/05  15:35:56
7841         Log: Subject: [PATCH] cygwin: disable effect of -ansi -std=c89 on system include 
7842              From: "Yitzchak Scott-Thoennes" <sthoenna@efn.org>
7843              Date: Mon, 5 Feb 2007 03:32:59 -0800 (PST)
7844              Message-ID: <1344.63.226.247.186.1170675179.squirrel@63.226.247.186>
7845      Branch: perl
7846            ! hints/cygwin.sh
7847 ____________________________________________________________________________
7848 [ 30128] By: rgs                                   on 2007/02/05  12:24:24
7849         Log: Upgrade to DB_File 1.815
7850      Branch: perl
7851            ! ext/DB_File/Changes ext/DB_File/DB_File.pm
7852            ! ext/DB_File/DB_File.xs ext/DB_File/Makefile.PL
7853 ____________________________________________________________________________
7854 [ 30126] By: rgs                                   on 2007/02/05  11:29:08
7855         Log: Subject: [PATCH] minor improvements for perlre.pod
7856              From: "Wolfgang Laun" <wolfgang.laun@gmail.com>
7857              Date: Sun, 4 Feb 2007 16:26:14 +0100
7858              Message-ID: <17de7ee80702040726v23f54266g3c352d353a30c430@mail.gmail.com>
7859      Branch: perl
7860            ! pod/perlre.pod
7861 ____________________________________________________________________________
7862 [ 30125] By: rgs                                   on 2007/02/05  10:05:10
7863         Log: Quote fix by Jarkko
7864      Branch: perl
7865            ! cflags.SH
7866 ____________________________________________________________________________
7867 [ 30124] By: nicholas                              on 2007/02/05  00:13:08
7868         Log: Use the new conditional TODOs to mark as TODO the warning tests
7869              failing due to HEKs leaked by OPs for unthreaded perls tested with
7870              a UTF-8 locale.
7871      Branch: perl
7872            ! lib/warnings.t t/lib/warnings/7fatal
7873 ____________________________________________________________________________
7874 [ 30123] By: nicholas                              on 2007/02/05  00:12:25
7875         Log: Enhance t/lib/common.pl to provide conditional TODOs using eval'd code.
7876      Branch: perl
7877            ! t/lib/common.pl
7878 ____________________________________________________________________________
7879 [ 30120] By: craigb                                on 2007/02/04  20:43:46
7880         Log: In vms/gen_shrfls.pl, consider EXTERN_C declarations as function
7881              candidates, not global variable candidates.  Currently only needed
7882              for PerlIO_teardown.
7883      Branch: perl
7884            ! vms/gen_shrfls.pl
7885 ____________________________________________________________________________
7886 [ 30119] By: nicholas                              on 2007/02/04  20:32:13
7887         Log: Change 23753 wasn't quite a perfect refactoring, as it omitted calling
7888              PERL_SET_THX(my_perl); when !PL_curinterp for non-ithreads.
7889              However, this would not have made a difference for any configuration
7890              buildable from the blead source alone.
7891      Branch: perl
7892            ! perl.c
7893 ____________________________________________________________________________
7894 [ 30114] By: nicholas                              on 2007/02/04  18:38:59
7895         Log: Currently Changes is in ISO-8859-1, not UTF-8, so correct change 28226
7896              which had an e accute in UTF-8.
7897      Branch: perl
7898            ! Changes
7899 ____________________________________________________________________________
7900 [ 30111] By: craigb                                on 2007/02/03  23:53:06
7901         Log: Install overload.h on VMS, plus more case fix-ups in descrip_mms.template.
7902      Branch: perl
7903            ! vms/descrip_mms.template
7904 ____________________________________________________________________________
7905 [ 30108] By: craigb                                on 2007/02/03  18:52:02
7906         Log: Install parser.h on VMS, plus fix some case typos in descrip_mms.template.
7907      Branch: perl
7908            ! vms/descrip_mms.template
7909 ____________________________________________________________________________
7910 [ 30105] By: nicholas                              on 2007/02/03  15:23:52
7911         Log: Purge all references to 5005 threads variables in the code.
7912              (Retain the aides memoire in makedef.pl)
7913      Branch: perl
7914            ! Porting/findvars gv.c hv.c op.c perl.c pp_ctl.c sv.c
7915 ____________________________________________________________________________
7916 [ 30104] By: stevep                                on 2007/02/03  06:25:11
7917         Log: Subject: Re: prerelease checklist for Perl 5.10
7918              From: demerphq <demerphq@gmail.com>
7919              Date: Thu, 1 Feb 2007 17:06:37 +0100
7920              Message-ID: <9b18b3110702010806n7e095317v77f5dc1eb765f8d@mail.gmail.com>
7921              
7922              Subject: Re: prerelease checklist for Perl 5.10
7923              From: demerphq <demerphq@gmail.com>
7924              Date: Fri, 2 Feb 2007 18:10:14 +0100
7925              Message-ID: <9b18b3110702020910l31c7784fi5e37bf777b6eafb3@mail.gmail.com>
7926              
7927              Regular expression changes to fix failing tests in XML::Twig and
7928              Mail::SpamAssassin.  The breakages occured in changes #28785 and
7929              #29279.
7930      Branch: perl
7931            ! embed.fnc embed.h proto.h regexec.c regexp.h t/op/re_tests
7932 ____________________________________________________________________________
7933 [ 30103] By: nicholas                              on 2007/02/02  23:35:22
7934         Log: Subject: Re: [perl #41421] glob() produces spurious results with brackets in braces
7935              From: Slaven Rezic <slaven@rezic.de>
7936              Message-ID: <87r6t81acj.fsf@biokovo.herceg.de>
7937              Date: 02 Feb 2007 23:08:28 +0100
7938      Branch: perl
7939            ! ext/File/Glob/bsd_glob.c ext/File/Glob/t/basic.t
7940 ____________________________________________________________________________
7941 [ 30101] By: nicholas                              on 2007/02/02  22:10:39
7942         Log: A few more places where we know the length for sv_setpv() or sv_catpv()
7943      Branch: perl
7944            ! mg.c op.c pp_ctl.c toke.c
7945 ____________________________________________________________________________
7946 [ 30093] By: nicholas                              on 2007/02/02  16:25:23
7947         Log: Testing every pattern by also upgrading to UTF-8 would have caught the
7948              bug added by change 29502, fixed in change 30092.
7949      Branch: perl
7950            ! t/op/regexp.t
7951 ____________________________________________________________________________
7952 [ 30092] By: nicholas                              on 2007/02/02  14:37:31
7953         Log: Change 29502 wasn't perfect - you need to remove any extra trailing
7954              "\n" added by fbm_compile(), before recompiling with the same flags.
7955              In turn, to do that, it's best to store the flags even for short
7956              "PVBM"s.
7957      Branch: perl
7958            ! regexec.c util.c
7959 ____________________________________________________________________________
7960 [ 30091] By: nicholas                              on 2007/02/02  14:35:51
7961         Log: Better dump reporting of "PVBM"s.
7962      Branch: perl
7963            ! dump.c
7964 ____________________________________________________________________________
7965 [ 30090] By: nicholas                              on 2007/02/01  23:32:22
7966         Log: Allow regexp.t to take a command line argument for the filename of
7967              tests. Read the tests into memory, to avoid seeking the FH.
7968      Branch: perl
7969            ! t/op/regexp.t
7970 ____________________________________________________________________________
7971 [ 30089] By: nicholas                              on 2007/02/01  16:49:12
7972         Log: Make t/op/regexp.t warnings clean.
7973      Branch: perl
7974            ! t/op/regexp.t
7975 ____________________________________________________________________________
7976 [ 30088] By: nicholas                              on 2007/02/01  16:27:00
7977         Log: Make t/op/regexp.t run under use strict; including removing the
7978              vestiges of change 1195 not removed by change 1244.
7979      Branch: perl
7980            ! t/op/re_tests t/op/regexp.t
7981 ____________________________________________________________________________
7982 [ 30087] By: merijn                                on 2007/01/31  15:38:06
7983         Log: alloca () might end up unreferenced during linking.
7984              Thanks Steve
7985      Branch: perl
7986            ! cygwin/cygwin.c
7987 ____________________________________________________________________________
7988 [ 30086] By: rgs                                   on 2007/01/31  13:58:40
7989         Log: Upgrade to Getopt::Long 2.36
7990      Branch: perl
7991            + lib/Getopt/Long/t/gol-xargv.t lib/Getopt/Long/t/gol-xstring.t
7992            ! MANIFEST lib/Getopt/Long.pm lib/Getopt/Long/CHANGES
7993            ! lib/Getopt/Long/README lib/Getopt/Long/t/gol-basic.t
7994            ! lib/Getopt/Long/t/gol-linkage.t
7995 ____________________________________________________________________________
7996 [ 30085] By: nicholas                              on 2007/01/31  12:14:05
7997         Log: You can't have special blocks if the subroutine has an "anonymous"
7998              name for the debugger, so don't bother checking.
7999      Branch: perl
8000            ! op.c
8001 ____________________________________________________________________________
8002 [ 30084] By: merijn                                on 2007/01/31  10:29:59
8003         Log: Subject: [PATCH] Improve regex stringification code
8004              From: demerphq <demerphq@gmail.com>
8005              Date: Tue, 30 Jan 2007 23:58:31 +0100
8006              Message-ID: <9b18b3110701301458k2f6a8254hea6c6db28489c38b@mail.gmail.com>
8007      Branch: perl
8008            ! embed.fnc embed.h ext/re/re.xs ext/re/t/re_funcs.t op.c perl.h
8009            ! pod/perlapi.pod proto.h regcomp.c regcomp.h regexec.c regexp.h
8010 ____________________________________________________________________________
8011 [ 30083] By: merijn                                on 2007/01/31  09:51:48
8012         Log: Subject: [PATCH] regcomp.c: remove some gotos that cause compiler consternation.
8013              From: demerphq <demerphq@gmail.com>
8014              Date: Wed, 31 Jan 2007 10:28:34 +0100
8015      Branch: perl
8016            ! regcomp.c
8017 ____________________________________________________________________________
8018 [ 30082] By: merijn                                on 2007/01/31  07:49:12
8019         Log: Subject: [PATCH] Improve regex stringification code
8020              From: demerphq <demerphq@gmail.com>
8021              Date: Tue, 30 Jan 2007 23:58:31 +0100
8022              Message-ID: <9b18b3110701301458k2f6a8254hea6c6db28489c38b@mail.gmail.com>
8023      Branch: perl
8024            ! embed.fnc embed.h ext/re/re.xs ext/re/t/re_funcs.t op.c perl.h
8025            ! proto.h regcomp.c regcomp.h regexec.c regexp.h
8026 ____________________________________________________________________________
8027 [ 30081] By: merijn                                on 2007/01/31  07:34:39
8028         Log: Subject: [PATCH] $1 in nested regex EVAL doesnt work correctly.
8029              From: demerphq <demerphq@gmail.com>
8030              Date: Tue, 30 Jan 2007 23:51:27 +0100
8031              Message-ID: <9b18b3110701301451l1443a186p39df7a6e8b65ea3c@mail.gmail.com>
8032      Branch: perl
8033            ! ext/re/lib/re/Tie/Hash/NamedCapture.pm ext/re/re.pm regcomp.c
8034            ! regexec.c t/op/pat.t
8035 ____________________________________________________________________________
8036 [ 30080] By: nicholas                              on 2007/01/30  23:53:56
8037         Log: Refactor the code used to check/execute BEGIN/UNITCHECK/CHECK/INIT/END
8038              duplicated in newATTRSUB and newXS into a new static function
8039              process_special_blocks()
8040      Branch: perl
8041            ! embed.fnc embed.h op.c proto.h
8042 ____________________________________________________________________________
8043 [ 30079] By: merijn                                on 2007/01/30  17:39:58
8044         Log: Subject: [PATCH] one more iteration on PerlIO_teardown prototype
8045              From: jhi@cc.hut.fi (Jarkko Hietaniemi)
8046              Date: Tue, 30 Jan 2007 04:20:21 +0200 (EET)
8047              Message-Id: <20070130022021.6051443A67@anubis.hut.fi>
8048      Branch: perl
8049            ! perl.h perliol.h
8050 ____________________________________________________________________________
8051 [ 30078] By: gisle                                 on 2007/01/30  11:13:51
8052         Log: Subject: [PATCH] Re: run/cloexec.t is failing
8053              From: Marcus Holland-Moritz <mhx-perl@gmx.net>
8054              Date: Sat, 13 Jan 2007 18:44:53 +0100
8055              Message-ID: <20070113184453.7cd54bcf@r2d2>
8056      Branch: perl
8057            ! t/run/cloexec.t
8058 ____________________________________________________________________________
8059 [ 30076] By: nicholas                              on 2007/01/29  23:36:02
8060         Log: Also check BEGIN/UNITCHECK/CHECK/INIT/END for require.
8061      Branch: perl
8062            + ext/XS/APItest/t/xs_special_subs_require.t
8063            ! MANIFEST ext/XS/APItest/t/xs_special_subs.t
8064 ____________________________________________________________________________
8065 [ 30072] By: nicholas                              on 2007/01/29  22:40:01
8066         Log: UNITCHECK for XS code. Turned out to be harder that expected.
8067              We need to get the XS BOOT section to run any UNITCHECK blocks for us.
8068      Branch: perl
8069            ! ext/XS/APItest/APItest.pm ext/XS/APItest/APItest.xs
8070            ! ext/XS/APItest/t/xs_special_subs.t lib/ExtUtils/ParseXS.pm
8071            ! op.c
8072 ____________________________________________________________________________
8073 [ 30067] By: nicholas                              on 2007/01/29  20:05:52
8074         Log: BEGIN blocks in XS should work. (Given that CHECK, INIT and END all do)
8075      Branch: perl
8076            + ext/XS/APItest/t/xs_special_subs.t
8077            ! MANIFEST ext/XS/APItest/APItest.pm ext/XS/APItest/APItest.xs
8078            ! op.c
8079 ____________________________________________________________________________
8080 [ 30064] By: nicholas                              on 2007/01/29  18:28:16
8081         Log: Add av_create_and_push() and av_create_and_unshift_one() to refactor
8082              out two repeated idioms.
8083      Branch: perl
8084            ! av.c doio.c embed.fnc op.c perl.c pod/perlapi.pod proto.h
8085 ____________________________________________________________________________
8086 [ 30059] By: gisle                                 on 2007/01/29  16:54:38
8087         Log: Avoid test failure with for a -Dusesitecustomize perl.
8088      Branch: perl
8089            ! t/run/switchd.t
8090 ____________________________________________________________________________
8091 [ 30052] By: nicholas                              on 2007/01/28  22:30:18
8092         Log: Convert ext/B/t/debug.t to Test::More. (Diagnostics are good, m'kay)
8093      Branch: perl
8094            ! ext/B/t/debug.t
8095 ____________________________________________________________________________
8096 [ 30050] By: rgs                                   on 2007/01/28  17:26:02
8097         Log: Subject: [PATCH] g++ wants cast
8098              From: jhi@cc.hut.fi (Jarkko Hietaniemi)
8099              Date: Sun, 28 Jan 2007 17:04:44 +0200 (EET)
8100              Message-Id: <20070128150444.AC62043A57@anubis.hut.fi>
8101      Branch: perl
8102            ! sv.c
8103 ____________________________________________________________________________
8104 [ 30044] By: nicholas                              on 2007/01/27  22:49:10
8105         Log: As we're not using UVf in the core, don't even define in when PERL_CORE
8106              is true.
8107      Branch: perl
8108            ! perl.h
8109 ____________________________________________________________________________
8110 [ 30043] By: nicholas                              on 2007/01/27  22:48:39
8111         Log: Change 30034 wasn't enough to silence the warnings - also need to
8112              pass a never-NULL parameter to newPADOP from newGVOP
8113      Branch: perl
8114            ! op.c
8115 ____________________________________________________________________________
8116 [ 30041] By: craigb                                on 2007/01/27  22:08:55
8117         Log: Subject: [perl@30030] blead on OpenVMS doesn't build
8118              From: Abe Timmerman <abe@ztreet.demon.nl>
8119              Date: Sat, 27 Jan 2007 17:26:47 +0100
8120              Message-Id: <200701271726.48347.abe@ztreet.demon.nl>
8121              
8122              Disable DECterm support by default, and when we enable it, 
8123              make sure the image we need is installed, not merely present.
8124      Branch: perl
8125            ! configure.com
8126 ____________________________________________________________________________
8127 [ 30037] By: craigb                                on 2007/01/27  17:45:27
8128         Log: For FindBin to work as advertised on VMS, $FindBin::Bin
8129              must be in unix syntax.
8130      Branch: perl
8131            ! lib/FindBin.pm
8132 ____________________________________________________________________________
8133 [ 30035] By: craigb                                on 2007/01/27  17:19:12
8134         Log: For VMS, a belated entry into the $^O jungle that is File::Find::_find_dir.
8135      Branch: perl
8136            ! lib/File/Find.pm
8137 ____________________________________________________________________________
8138 [ 30034] By: nicholas                              on 2007/01/27  17:03:59
8139         Log: newPADOP()'s sv parameter is never NULL, so mark it as so.
8140              (Well, in theory it could be NULL if someone is creating ops during
8141              symbol table destruction, but snowballs in hell, etc.
8142              This is usually the point where Jarkko observes that the aliens are
8143              looking for a free slot in their diaries...)
8144      Branch: perl
8145            ! embed.fnc op.c proto.h
8146 ____________________________________________________________________________
8147 [ 30032] By: nicholas                              on 2007/01/27  15:36:49
8148         Log: newPADOP is only used under ithreads, so don't waste space by compiling
8149              it for non-threaded builds.
8150      Branch: perl
8151            ! embed.fnc embed.h makedef.pl op.c proto.h
8152 ____________________________________________________________________________
8153 [ 30030] By: nicholas                              on 2007/01/27  14:03:01
8154         Log: One last gv_fetchpv() that should be GV_ADD rather than TRUE.
8155      Branch: perl
8156            ! toke.c
8157 ____________________________________________________________________________
8158 [ 30028] By: nicholas                              on 2007/01/27  12:55:31
8159         Log: Using gv_stashsv() and sv_setsv() in Perl_package reduces source and
8160              object code size.
8161      Branch: perl
8162            ! op.c
8163 ____________________________________________________________________________
8164 [ 30025] By: rgs                                   on 2007/01/27  09:42:32
8165         Log: Change Tels' contact address
8166      Branch: perl
8167            ! Porting/Maintainers.pl
8168 ____________________________________________________________________________
8169 [ 30024] By: nicholas                              on 2007/01/27  00:45:30
8170         Log: A test to exercise the smallbuf overflow code in S_incline, and a
8171              refactoring of that code to use only one 128 char array, not two.
8172      Branch: perl
8173            ! t/comp/parser.t toke.c
8174 ____________________________________________________________________________
8175 [ 30019] By: rgs                                   on 2007/01/26  18:28:42
8176         Log: cflags.SH was broken: it was compiling a C file for testing available
8177              command-line options, but this C file was including perl.h, which in
8178              turn includes config.h, which might not be present at that time. So
8179              force the generation of config.h.
8180      Branch: perl
8181            ! cflags.SH
8182 ____________________________________________________________________________
8183 [ 30017] By: rgs                                   on 2007/01/26  16:41:52
8184         Log: Silence a few pedantic warnings
8185      Branch: perl
8186            ! sv.c
8187 ____________________________________________________________________________
8188 [ 30016] By: rgs                                   on 2007/01/26  16:39:40
8189         Log: If we have specified -Dgccansipedantic on the Configure command-line,
8190              assume we really want it
8191      Branch: perl
8192            ! cflags.SH
8193 ____________________________________________________________________________
8194 [ 30015] By: nicholas                              on 2007/01/26  16:16:29
8195         Log: Stop S_incline needing to temporarily write a '\0' into its passed-in
8196              buffer. (Requires adding gv_fetchfile_flags(), savesharedpvn() and
8197              CopFILE_setn() to provide pointer/length versions of APIs)
8198      Branch: perl
8199            ! cop.h embed.fnc embed.h global.sym gv.c pod/perlapi.pod
8200            ! proto.h toke.c util.c
8201 ____________________________________________________________________________
8202 [ 30014] By: stevep                                on 2007/01/26  16:12:58
8203         Log: Fix ext/POSIX/t/sysconf.t failures on Cygwin.
8204      Branch: perl
8205            ! ext/POSIX/t/sysconf.t
8206 ____________________________________________________________________________
8207 [ 30013] By: rgs                                   on 2007/01/26  16:06:47
8208         Log: Subject: Re: [perl #32135] File::Copy module
8209              From: "Adriano Ferreira" <a.r.ferreira@gmail.com>
8210              Date: Fri, 26 Jan 2007 12:56:18 -0200
8211              Message-ID: <73ddeb6c0701260656i1c35b207r1f9624edd3503fa6@mail.gmail.com>
8212      Branch: perl
8213            ! lib/File/Copy.pm
8214 ____________________________________________________________________________
8215 [ 30012] By: rgs                                   on 2007/01/26  15:21:37
8216         Log: Subject: [PATCH] Add Archive::Extract 0.16 to the core
8217              From: "Jos Boumans" <kane@dwim.org>
8218              Date: Fri, 26 Jan 2007 15:02:36 +0100 (CET)
8219              Message-ID: <21170.80.127.35.68.1169820156.squirrel@webmail.xs4all.nl>
8220      Branch: perl
8221            + lib/Archive/Extract.pm
8222            + lib/Archive/Extract/t/01_Archive-Extract.t
8223            + lib/Archive/Extract/t/src/double_dir.zip.packed
8224            + lib/Archive/Extract/t/src/x.bz2.packed
8225            + lib/Archive/Extract/t/src/x.gz.packed
8226            + lib/Archive/Extract/t/src/x.jar.packed
8227            + lib/Archive/Extract/t/src/x.par.packed
8228            + lib/Archive/Extract/t/src/x.tar.gz.packed
8229            + lib/Archive/Extract/t/src/x.tar.packed
8230            + lib/Archive/Extract/t/src/x.tgz.packed
8231            + lib/Archive/Extract/t/src/x.zip.packed
8232            + lib/Archive/Extract/t/src/y.jar.packed
8233            + lib/Archive/Extract/t/src/y.par.packed
8234            + lib/Archive/Extract/t/src/y.tar.bz2.packed
8235            + lib/Archive/Extract/t/src/y.tar.gz.packed
8236            + lib/Archive/Extract/t/src/y.tar.packed
8237            + lib/Archive/Extract/t/src/y.tbz.packed
8238            + lib/Archive/Extract/t/src/y.tgz.packed
8239            + lib/Archive/Extract/t/src/y.zip.packed
8240            ! MANIFEST
8241 ____________________________________________________________________________
8242 [ 30010] By: rgs                                   on 2007/01/26  14:03:34
8243         Log: Subject: [PATCH] Small bugfixes to uupacktool.pl
8244              From: "Jos Boumans" <kane@dwim.org>
8245              Date: Fri, 26 Jan 2007 14:50:29 +0100 (CET)
8246              Message-ID: <16773.80.127.35.68.1169819429.squirrel@webmail.xs4all.nl>
8247      Branch: perl
8248            ! uupacktool.pl
8249 ____________________________________________________________________________
8250 [ 30009] By: rgs                                   on 2007/01/26  13:58:56
8251         Log: Subject: [PATCH] still some Symbian/S90 tweaks
8252              From: jhi@cc.hut.fi (Jarkko Hietaniemi)
8253              Date: Fri, 26 Jan 2007 15:40:58 +0200 (EET)
8254              Message-Id: <20070126134058.83B0643A57@anubis.hut.fi>
8255      Branch: perl
8256            ! README.symbian symbian/config.sh symbian/xsbuild.pl
8257 ____________________________________________________________________________
8258 [ 30008] By: rgs                                   on 2007/01/26  13:56:29
8259         Log: Upgrade to File::Fetch 0.10, by Jos Boumans
8260      Branch: perl
8261            - lib/File/Fetch/Item.pm
8262            ! MANIFEST lib/File/Fetch.pm lib/File/Fetch/t/01_File-Fetch.t
8263 ____________________________________________________________________________
8264 [ 30002] By: rgs                                   on 2007/01/26  11:21:17
8265         Log: Let File::Path report the extended system error message
8266              when available (Ilya Zakharevich)
8267      Branch: perl
8268            ! lib/File/Path.pm
8269 ____________________________________________________________________________
8270 [ 30000] By: nicholas                              on 2007/01/26  11:18:02
8271         Log: As we're not passing over (or copying in) a NUL, don't need that extra
8272              byte for it, so correct the < to <= so that we use the smallbuf
8273              whenever possible.
8274      Branch: perl
8275            ! gv.c toke.c
8276 ____________________________________________________________________________
8277 [ 29998] By: rgs                                   on 2007/01/26  10:55:50
8278         Log: Mention //w in perltodo.
8279      Branch: perl
8280            ! pod/perltodo.pod
8281 ____________________________________________________________________________
8282 [ 29994] By: rgs                                   on 2007/01/26  09:17:56
8283         Log: Upgrade to Time::Local 1.17
8284      Branch: perl
8285            ! lib/Time/Local.pm lib/Time/Local.t
8286 ____________________________________________________________________________
8287 [ 29992] By: rgs                                   on 2007/01/26  09:03:27
8288         Log: Subject: [PATCH] utf8.pm doc patch
8289              From: Audrey Tang <audreyt@audreyt.org>
8290              Date: Fri, 26 Jan 2007 05:38:39 +0800
8291              Message-Id: <5BDAD0DE-3434-4A29-82C6-35AE3EFD27CC@audreyt.org>
8292      Branch: perl
8293            ! lib/utf8.pm
8294 ____________________________________________________________________________
8295 [ 29991] By: rgs                                   on 2007/01/26  09:01:01
8296         Log: Some variables are used only with DEBUGGING
8297      Branch: perl
8298            ! regcomp.c
8299 ____________________________________________________________________________
8300 [ 29990] By: rgs                                   on 2007/01/26  08:39:07
8301         Log: Subject: [PATCH] further Symbian/S90 fixes from alexander smishlajev
8302              From: jhi@cc.hut.fi (Jarkko Hietaniemi)
8303              Date: Fri, 26 Jan 2007 05:51:50 +0200 (EET)
8304              Message-Id: <20070126035150.41A4143A67@anubis.hut.fi>
8305      Branch: perl
8306            ! README.symbian ext/Data/Dumper/Dumper.xs symbian/PerlBase.cpp
8307            ! symbian/config.sh symbian/symbianish.h symbian/xsbuild.pl
8308 ____________________________________________________________________________
8309 [ 29989] By: rgs                                   on 2007/01/26  08:27:23
8310         Log: Upgrade to Module::Load::Conditional 0.16, by Jos Boumans
8311      Branch: perl
8312            + lib/Module/Load/Conditional/t/02_Parse_Version.t
8313            ! MANIFEST lib/Module/Load/Conditional.pm
8314            ! lib/Module/Load/Conditional/t/01_Module_Load_Conditional.t
8315 ____________________________________________________________________________
8316 [ 29987] By: nicholas                              on 2007/01/25  23:18:25
8317         Log: Convert the last remaining 256 byte "small"bufs to 128 bytes.
8318              (The actual size doesn't matter, as the buffers are only there to
8319              save a malloc() for the common, short, case. Coverage reports suggest
8320              that we aren't actually testing the long case. Yet - will fix this)
8321      Branch: perl
8322            ! gv.c toke.c
8323 ____________________________________________________________________________
8324 [ 29983] By: nicholas                              on 2007/01/25  22:39:08
8325         Log: Neither gv_fetchpvn_flags() nor hv_fetch() need a NUL terminated
8326              string, so don't bother allocating buffer space or adding a NUL.
8327      Branch: perl
8328            ! gv.c toke.c
8329 ____________________________________________________________________________
8330 [ 29977] By: nicholas                              on 2007/01/25  20:57:56
8331         Log: The last parameter to gv_stashpv/gv_stashpvn/gv_stashsv is a bitmask
8332              of flags, not a boolean, so correct the documenation and callers.
8333      Branch: perl
8334            ! embed.fnc ext/B/B.xs ext/IPC/SysV/SysV.xs
8335            ! ext/PerlIO/via/via.xs ext/Storable/Storable.xs gv.c op.c
8336            ! perlio.c pod/perlapi.pod pod/perlguts.pod pp.c pp_hot.c
8337            ! pp_sys.c proto.h sv.c toke.c universal.c utf8.c
8338 ____________________________________________________________________________
8339 [ 29975] By: rgs                                   on 2007/01/25  17:22:40
8340         Log: Subject: split by " \0" (const string staring with a SPACE followed by NULL)
8341              From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
8342              Date: Fri, 19 Jan 2007 22:21:48 +0900
8343              Message-Id: <20070119221905.D162.BQW10602@nifty.com>
8344      Branch: perl
8345            ! op.c t/op/split.t
8346 ____________________________________________________________________________
8347 [ 29973] By: rgs                                   on 2007/01/25  14:48:49
8348         Log: Upgrade to threads 1.58:
8349              * Ignore thread return value(s) in void context
8350              * Check for missing args for 'use threads' options
8351              * Check that stack size argument is numeric
8352      Branch: perl
8353            ! ext/threads/Changes ext/threads/README ext/threads/t/exit.t
8354            ! ext/threads/t/thread.t ext/threads/threads.pm
8355            ! ext/threads/threads.xs
8356 ____________________________________________________________________________
8357 [ 29972] By: rgs                                   on 2007/01/25  12:23:45
8358         Log: Subject: Re: [perl #41283] B::walkoptree_slow fails for 'our @foo = split( m/ /, "hello" )'
8359              From: "Joshua ben Jore" <twists@gmail.com>
8360              Date: Wed, 17 Jan 2007 17:49:22 -0800
8361              Message-ID: <dc5c751d0701171749x3f2dfd00tc523d33bc234c530@mail.gmail.com>
8362      Branch: perl
8363            ! ext/B/B.pm
8364 ____________________________________________________________________________
8365 [ 29970] By: nicholas                              on 2007/01/25  11:41:13
8366         Log: Change 28058 hadn't been tested with -DPERL_CREATE_GVSV
8367      Branch: perl
8368            ! gv.c
8369 ____________________________________________________________________________
8370 [ 29960] By: nicholas                              on 2007/01/24  21:42:53
8371         Log: Display the process id as part of the trace output if running with -Dv
8372              (Might be nice to display the thread ID too under ithreads, but I can't
8373              see a clean way to get that)
8374      Branch: perl
8375            ! deb.c
8376 ____________________________________________________________________________
8377 [ 29956] By: nicholas                              on 2007/01/24  19:07:49
8378         Log: Fix typo in the description of change 27911
8379      Branch: perl
8380            ! Changes
8381 ____________________________________________________________________________
8382 [ 29954] By: nicholas                              on 2007/01/24  18:44:51
8383         Log: Wrap the macro arguments for ck_proto in ().
8384      Branch: perl
8385            ! op.h
8386 ____________________________________________________________________________
8387 [ 29942] By: rgs                                   on 2007/01/24  11:32:24
8388         Log: Subject: [PATCH] fix a few references in perlfunc.html
8389              From: Jan Dubois <jand@ActiveState.com>
8390              Date: Tue, 23 Jan 2007 18:25:02 -0800
8391              Message-ID: <oggdr2pfqj8bb2o47ikmmq9gmjebhr8ht6@4ax.com>
8392      Branch: perl
8393            ! pod/perlfunc.pod
8394 ____________________________________________________________________________
8395 [ 29941] By: rgs                                   on 2007/01/24  11:22:17
8396         Log: Subject: [PATCH] Improve documentation PERLIO default value in perlrun.pod
8397              From: Jan Dubois <jand@ActiveState.com>
8398              Date: Tue, 23 Jan 2007 18:43:55 -0800
8399              Message-ID: <jhhdr21vmlo5ccbfd8la2di4bq8crv3s8t@4ax.com>
8400      Branch: perl
8401            ! pod/perlrun.pod
8402 ____________________________________________________________________________
8403 [ 29940] By: rgs                                   on 2007/01/24  11:02:24
8404         Log: Upgrade to Time::Local 1.16
8405      Branch: perl
8406            ! lib/Time/Local.pm lib/Time/Local.t
8407 ____________________________________________________________________________
8408 [ 29938] By: nicholas                              on 2007/01/23  22:54:00
8409         Log: Add lib to @INC so that ./perl t/op/local.t works.
8410      Branch: perl
8411            ! t/op/local.t
8412 ____________________________________________________________________________
8413 [ 29937] By: nicholas                              on 2007/01/23  21:07:06
8414         Log: Change 29936 missed a ;
8415      Branch: perl
8416            ! lib/Time/Local.pm
8417 ____________________________________________________________________________
8418 [ 29936] By: stevep                                on 2007/01/23  18:43:50
8419         Log: Fix to Time::Local to fix problems with leap year calculation.
8420      Branch: perl
8421            ! lib/Time/Local.pm
8422 ____________________________________________________________________________
8423 [ 29935] By: stevep                                on 2007/01/23  15:02:56
8424         Log: Upgrade to File-Temp-0.18.
8425      Branch: perl
8426            + lib/File/Temp/t/cmp.t
8427            ! MANIFEST lib/File/Temp.pm
8428 ____________________________________________________________________________
8429 [ 29934] By: stevep                                on 2007/01/23  14:29:55
8430         Log: Upgrade to AutoLoader-5.63
8431      Branch: perl
8432            ! lib/AutoLoader.pm
8433 ____________________________________________________________________________
8434 [ 29933] By: stevep                                on 2007/01/23  02:20:31
8435         Log: Upgrade to Test-Simple-0.67
8436      Branch: perl
8437            ! lib/Test/Builder.pm lib/Test/Builder/Module.pm
8438            ! lib/Test/Builder/Tester.pm lib/Test/More.pm lib/Test/Simple.pm
8439 ____________________________________________________________________________
8440 [ 29932] By: stevep                                on 2007/01/23  02:14:57
8441         Log: Upgrade to Math-Complex-1.37.
8442      Branch: perl
8443            ! lib/Math/Complex.pm lib/Math/Trig.pm lib/Math/Trig.t
8444 ____________________________________________________________________________
8445 [ 29931] By: stevep                                on 2007/01/23  01:55:48
8446         Log: Subject: [PATCH] Time::Local patch take 2
8447              From: Dave Rolsky <autarch@urth.org>
8448              Date: Mon, 22 Jan 2007 09:46:08 -0600 (CST)
8449              Message-ID: <Pine.LNX.4.64.0701220945040.28849@urth.org>
8450      Branch: perl
8451            ! lib/Time/Local.pm lib/Time/Local.t
8452 ____________________________________________________________________________
8453 [ 29930] By: stevep                                on 2007/01/23  01:52:16
8454         Log: Subject: [perl #41318] Patch: win32.c typo in #define MULTIPLICITY
8455              From: "Devin Heitmueller" (via RT) <perlbug-followup@perl.org>
8456              Date: Mon, 22 Jan 2007 14:46:15 -0800
8457              Message-ID: <rt-3.6.HEAD-1834-1169505975-229.41318-75-0@perl.org>
8458      Branch: perl
8459            ! win32/win32.c
8460 ____________________________________________________________________________
8461 [ 29923] By: nicholas                              on 2007/01/22  19:39:28
8462         Log: Subject: [PATCH] Disable positive lookaround optimisations
8463              From: demerphq <demerphq@gmail.com>
8464              Message-ID: <9b18b3110701210953l4df6198re36a9342e6049583@mail.gmail.com>
8465              Date: Sun, 21 Jan 2007 18:53:38 +0100
8466      Branch: perl
8467            ! regcomp.h t/op/re_tests
8468 ____________________________________________________________________________
8469 [ 29922] By: nicholas                              on 2007/01/22  19:38:12
8470         Log: Fix a typo and some doubled spaces in comments.
8471      Branch: perl
8472            ! cop.h pod/perlapi.pod sv.h
8473 ____________________________________________________________________________
8474 [ 29921] By: nicholas                              on 2007/01/22  19:21:21
8475         Log: Remove duplicate assignment to PL_eval_root in Perl_create_eval_scope
8476      Branch: perl
8477            ! pp_ctl.c
8478 ____________________________________________________________________________
8479 [ 29917] By: nicholas                              on 2007/01/22  17:03:48
8480         Log: Fix my typo, as spotted by Steve Peters
8481      Branch: perl
8482            ! Changes
8483 ____________________________________________________________________________
8484 [ 29911] By: nicholas                              on 2007/01/21  23:18:20
8485         Log: Assignments to function pointers can't be NULL, as that's a pointer to
8486              data, and assigning pointers to data to pointers to functions is not
8487              ANSI-conformant.
8488      Branch: perl
8489            ! perl.h
8490 ____________________________________________________________________________
8491 [ 29910] By: nicholas                              on 2007/01/21  23:11:30
8492         Log: Restore the const to vtbl in Perl_mg_localize() removed in change
8493              26924.
8494      Branch: perl
8495            ! mg.c
8496 ____________________________________________________________________________
8497 [ 29907] By: nicholas                              on 2007/01/21  20:06:45
8498         Log: Remove register keyword from dSP; (at least for now)
8499      Branch: perl
8500            ! pp.h
8501 ____________________________________________________________________________
8502 [ 29905] By: nicholas                              on 2007/01/21  11:44:16
8503         Log: Refactor the common soft-reference code from pp_rv2sv and pp_rv2av
8504              into a single routine Perl_softref2xv(). As soft references are
8505              rarely used compared with true references, move this code from pp_hot.c
8506      Branch: perl
8507            ! embed.fnc embed.h pp.c pp_hot.c proto.h
8508 ____________________________________________________________________________
8509 [ 29900] By: nicholas                              on 2007/01/20  23:40:23
8510         Log: defined @$foo and defined %$bar should be subject to strict 'refs';
8511      Branch: perl
8512            ! lib/DBM_Filter.pm pp_hot.c t/lib/strict/refs
8513 ____________________________________________________________________________
8514 [ 29895] By: stevep                                on 2007/01/20  03:51:26
8515         Log: Upgrade to version-0.69
8516      Branch: perl
8517            ! lib/version.pm
8518 ____________________________________________________________________________
8519 [ 29894] By: stevep                                on 2007/01/20  03:40:23
8520         Log: Subject: [PATCH] Re: Race condition in IPC::Open3 / Mac OS?
8521              From: Bo Lindbergh <blgl@hagernas.com>
8522              Date: Sat, 20 Jan 2007 02:39:57 +0100
8523              Message-Id: <D256CF03-D814-4973-9DF6-60EA4F26FE10@hagernas.com>
8524      Branch: perl
8525            ! perlio.c
8526 ____________________________________________________________________________
8527 [ 29893] By: stevep                                on 2007/01/20  03:28:48
8528         Log: Add PAUSE2007.pub key
8529      Branch: perl
8530            + lib/CPAN/PAUSE2007.pub
8531            ! MANIFEST
8532 ____________________________________________________________________________
8533 [ 29892] By: stevep                                on 2007/01/20  03:20:11
8534         Log: Upgrade to CPAN-1.88_69.
8535      Branch: perl
8536            ! lib/CPAN.pm lib/CPAN/FirstTime.pm lib/CPAN/HandleConfig.pm
8537 ____________________________________________________________________________
8538 [ 29887] By: nicholas                              on 2007/01/19  21:11:40
8539         Log: Subject: Re: [PATCH] fix unicode split /\s+/
8540              From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
8541              Message-Id: <20070120005232.D9CC.BQW10602@nifty.com>
8542              Date: Sat, 20 Jan 2007 00:52:42 +0900
8543      Branch: perl
8544            ! pp.c t/op/split.t
8545 ____________________________________________________________________________
8546 [ 29885] By: nicholas                              on 2007/01/19  20:13:46
8547         Log: Yves spotted that I'd not regenerated perlapi.pod when I added
8548              get_cvn_flags().
8549      Branch: perl
8550            ! pod/perlapi.pod
8551 ____________________________________________________________________________
8552 [ 29884] By: nicholas                              on 2007/01/19  19:27:59
8553         Log: Marcus Holland-Moritz notes that the first argument to
8554              refcounted_he_fetch() can be NULL.
8555      Branch: perl
8556            ! embed.fnc proto.h
8557 ____________________________________________________________________________
8558 [ 29883] By: nicholas                              on 2007/01/19  18:07:23
8559         Log: Fix breakage for -DDEBUGGING accidentally introduced with change 29882.
8560      Branch: perl
8561            ! sv.c
8562 ____________________________________________________________________________
8563 [ 29882] By: nicholas                              on 2007/01/19  17:36:10
8564         Log: Add a parameter to Perl_get_arena() to pass in the SV type, and record
8565              this in the arena description. Change all sizes to unsigned values.
8566              Make Perl_sv_free_arenas() loop downwards to free memory, simplifying
8567              the logic. Remove my erroneous comment added in change 29881.
8568      Branch: perl
8569            ! embed.fnc hv.c proto.h sv.c
8570 ____________________________________________________________________________
8571 [ 29881] By: nicholas                              on 2007/01/19  11:45:24
8572         Log: I think that it's clearer if aroot is only struct arena_set *
8573              (rather than ** and constantly dereferneced). Move the declaration
8574              of new_root into the block it is used in. Add a comment describing
8575              where the arenas for arena_sets themselves aren't rooted anywhere.
8576      Branch: perl
8577            ! sv.c
8578 ____________________________________________________________________________
8579 [ 29880] By: rgs                                   on 2007/01/19  09:33:00
8580         Log: Subject: [PATCH] fix unicode split /\s+/
8581              From: demerphq <demerphq@gmail.com>
8582              Date: Fri, 19 Jan 2007 02:14:06 +0100
8583              Message-ID: <9b18b3110701181714r4f3bc9ebq9ba462eba8338734@mail.gmail.com>
8584      Branch: perl
8585            ! pp.c t/op/split.t
8586 ____________________________________________________________________________
8587 [ 29879] By: nicholas                              on 2007/01/19  00:13:02
8588         Log: As Perl_get_arena() is dealing with sizes, use size_t rather than int,
8589              as it's both unsigned and semantically the correct width for a size.
8590              As all arenas get cleared later on, can use Newx() rather than Newxz().
8591      Branch: perl
8592            ! embed.fnc proto.h sv.c
8593 ____________________________________________________________________________
8594 [ 29878] By: nicholas                              on 2007/01/18  23:52:11
8595         Log: Move C<static bool done_sanity_check;> inside the only function that
8596              uses it.
8597      Branch: perl
8598            ! sv.c
8599 ____________________________________________________________________________
8600 [ 29877] By: nicholas                              on 2007/01/18  23:51:45
8601         Log: Add in missing dVAR that prevents compilation with
8602              -DPERL_GLOBAL_STRUCT_PRIVATE
8603      Branch: perl
8604            ! perl.c
8605 ____________________________________________________________________________
8606 [ 29876] By: nicholas                              on 2007/01/18  23:36:57
8607         Log: Move the flag checking for isGV_with_GP() into the call to visit()
8608      Branch: perl
8609            ! sv.c
8610 ____________________________________________________________________________
8611 [ 29875] By: mhx                                   on 2007/01/18  16:52:37
8612         Log: Add missing SVfARG()s in require_tie_mod().
8613      Branch: perl
8614            ! gv.c
8615 ____________________________________________________________________________
8616 [ 29872] By: nicholas                              on 2007/01/18  15:48:13
8617         Log: Given that we now do the tests in S_visit() to avoid calling the
8618              helper function when skippable, no need to retain those tests
8619              inside the helper functions do_clean_objs() and do_clean_named_objs().
8620      Branch: perl
8621            ! sv.c
8622 ____________________________________________________________________________
8623 [ 29871] By: merijn                                on 2007/01/18  14:03:21
8624         Log: perl rebuilds because of gcc's -g flag
8625              Subject: [PATCH] Re: [perl #41058] make rebuilds perl everytime
8626              From: Marcus Holland-Moritz <mhx-perl@gmx.net>
8627              Date: Thu, 18 Jan 2007 14:27:55 +0100
8628              Message-ID: <20070118142755.28e7f724@r2d2>
8629      Branch: perl
8630            ! makedepend.SH
8631 ____________________________________________________________________________
8632 [ 29868] By: steveh                                on 2007/01/18  11:36:05
8633         Log: Subject: Re: [PATCH] win32_async_check() can still loop indefinitely
8634              From: Jan Dubois <jand@ActiveState.com>
8635              Date: Mon, 15 Jan 2007 19:25:11 -0800
8636              Message-ID: <rigoq25vda3sg4i7ppdb5o2jhvuiq15kqj@4ax.com>
8637      Branch: perl
8638            ! win32/win32.c
8639 ____________________________________________________________________________
8640 [ 29867] By: nicholas                              on 2007/01/18  11:16:09
8641         Log: As PVLVs can hold globs in some cases, I think that we should be
8642              treating them as a strict subclass of PVGV. Hence drop through into
8643              the PVGV handling code.
8644      Branch: perl
8645            ! sv.c
8646 ____________________________________________________________________________
8647 [ 29866] By: davem                                 on 2007/01/18  02:14:48
8648         Log: disable parser stack cleanup on reduce croak (too fragile)
8649      Branch: perl
8650            ! perly.c
8651 ____________________________________________________________________________
8652 [ 29857] By: mhx                                   on 2007/01/17  21:06:11
8653         Log: Fix a typo in Dynaloader_pm.PL.
8654      Branch: perl
8655            ! ext/DynaLoader/DynaLoader_pm.PL
8656 ____________________________________________________________________________
8657 [ 29855] By: nicholas                              on 2007/01/17  19:22:47
8658         Log: Replace SvRELEASE_IVX(dstr) with SvOOK_off(dstr) in sv_setsv_flags(),
8659              because it's not possible for dstr to be COW at this point, due to an
8660              earlier force_normal.
8661      Branch: perl
8662            ! sv.c
8663 ____________________________________________________________________________
8664 [ 29853] By: nicholas                              on 2007/01/17  18:24:50
8665         Log: Make PERL_OLD_COPY_ON_WRITE build again. Inline Perl_sv_release_IVX().
8666              (Currently it fails ext/Compress/Raw/Zlib/t/07bufsize.t)
8667      Branch: perl
8668            ! embed.fnc embed.h global.sym makedef.pl proto.h sv.c sv.h
8669 ____________________________________________________________________________
8670 [ 29852] By: nicholas                              on 2007/01/17  15:42:54
8671         Log: If we use SvUPGRADE() rather than sv_upgrade() then it can make the
8672              decision on not "up"grading PVLV to PVGV for us. However, it appears
8673              that the other actions conducted for "not-yet-a-glob" are useful here.
8674      Branch: perl
8675            ! sv.c
8676 ____________________________________________________________________________
8677 [ 29848] By: merijn                                on 2007/01/17  13:38:05
8678         Log: Subject: Re: [PATCH] symbian/xsbuild.pl patching continues
8679              From: Jarkko Hietaniemi <jhi@iki.fi>
8680              Date: Wed, 17 Jan 2007 08:27:03 -0500
8681              Message-ID: <45AE2427.7080907@iki.fi>
8682      Branch: perl
8683            ! symbian/xsbuild.pl
8684 ____________________________________________________________________________
8685 [ 29845] By: stevep                                on 2007/01/16  22:15:05
8686         Log: Reentrant functions appear to still be broken in NetBSD 3.1.
8687      Branch: perl
8688            ! hints/netbsd.sh
8689 ____________________________________________________________________________
8690 [ 29844] By: merijn                                on 2007/01/16  16:17:03
8691         Log: Subject: [PATCH] Re: Dual-lived AutoLoader
8692              From: Steffen Mueller <o6hhmk002@sneakemail.com>
8693              Date: Tue, 16 Jan 2007 15:29:44 +0100
8694              Message-ID: <45ACE158.4080102@sneakemail.com>
8695      Branch: perl
8696            ! Porting/Maintainers.pl
8697 ____________________________________________________________________________
8698 [ 29843] By: rgs                                   on 2007/01/16  15:32:30
8699         Log: Subject: Re: [PATCH] Change implementation of %+ to use a proper tied hash interface and add support for %-
8700              From: demerphq <demerphq@gmail.com>
8701              Date: Mon, 15 Jan 2007 23:06:44 +0100
8702              Message-ID: <9b18b3110701151406p7168b20byf873ee2e58091ca3@mail.gmail.com>
8703      Branch: perl
8704            ! regcomp.h
8705 ____________________________________________________________________________
8706 [ 29842] By: rgs                                   on 2007/01/16  10:56:46
8707         Log: Subject: [PATCH] Make offsets support conditional
8708              From: demerphq <demerphq@gmail.com>
8709              Date: Sun, 14 Jan 2007 15:24:25 +0100
8710              Message-ID: <9b18b3110701140624v452f7684x5e9d2890805489fd@mail.gmail.com>
8711      Branch: perl
8712            ! ext/re/t/regop.t regcomp.c regcomp.h
8713 ____________________________________________________________________________
8714 [ 29841] By: rgs                                   on 2007/01/16  10:17:43
8715         Log: Typo fix, by Robin Barker
8716      Branch: perl
8717            ! Porting/Maintainers.pl
8718 ____________________________________________________________________________
8719 [ 29839] By: davem                                 on 2007/01/15  18:33:02
8720         Log: make Dump display the SVf_BREAK flag
8721      Branch: perl
8722            ! dump.c
8723 ____________________________________________________________________________
8724 [ 29838] By: rgs                                   on 2007/01/15  18:25:45
8725         Log: Enable the ~~ operator by default.
8726              Remove the ~~ feature.
8727      Branch: perl
8728            - t/lib/feature/smartmatch
8729            ! MANIFEST lib/feature.pm t/op/smartmatch.t toke.c
8730 ____________________________________________________________________________
8731 [ 29837] By: davem                                 on 2007/01/15  18:19:20
8732         Log: when cloning  PL_regex_pad, copy SVf_BREAK flag too
8733      Branch: perl
8734            ! sv.c
8735 ____________________________________________________________________________
8736 [ 29836] By: nicholas                              on 2007/01/15  18:15:54
8737         Log: pp_rv2av and pp_rv2hv have a lot of common code, so it's certainly a
8738              space saving to merge them. Hopefully this will reduce L2 cache misses.
8739      Branch: perl
8740            ! mathoms.c opcode.h opcode.pl pp.h pp_hot.c
8741 ____________________________________________________________________________
8742 [ 29835] By: nicholas                              on 2007/01/15  17:18:03
8743         Log: Make changes analagous to pp_rv2hv's 21394 and 24489 in pp_rv2av.
8744      Branch: perl
8745            ! pp_hot.c
8746 ____________________________________________________________________________
8747 [ 29834] By: rgs                                   on 2007/01/15  16:37:21
8748         Log: Subject: Re: [PATCH] Add support for /k modfier for matching along with ${^PREMATCH}, ${^MATCH}, ${^POSTMATCH}
8749              From: demerphq <demerphq@gmail.com>
8750              Date: Sat, 13 Jan 2007 17:18:01 +0100
8751              Message-ID: <9b18b3110701130818h6badbd3o1b38f2660d258173@mail.gmail.com>
8752              
8753              macroize regexp modifiers
8754      Branch: perl
8755            ! perl.h regcomp.c regexp.h toke.c
8756 ____________________________________________________________________________
8757 [ 29831] By: rgs                                   on 2007/01/15  16:26:17
8758         Log: Subject: [PATCH] Add support for /k modfier for matching along with ${^PREMATCH}, ${^MATCH}, ${^POSTMATCH}
8759              From: demerphq <demerphq@gmail.com>
8760              Date: Fri, 12 Jan 2007 02:31:12 +0100
8761              Message-ID: <9b18b3110701111731x29b1c63i57b1698f769b3bbc@mail.gmail.com>
8762              (with tweaks)
8763      Branch: perl
8764            + t/op/regexp_kmod.t
8765            ! MANIFEST ext/B/t/concise-xs.t gv.c mg.c op.h pod/perlop.pod
8766            ! pod/perlre.pod pod/perlvar.pod pp_hot.c regcomp.c regcomp.h
8767            ! regexp.h t/op/regexp.t toke.c
8768 ____________________________________________________________________________
8769 [ 29830] By: nicholas                              on 2007/01/15  14:38:58
8770         Log: Add get_cvn_flags(), which is like get_cv() but takes a length. This
8771              allows symbolic code references with embeded NULs to work.
8772      Branch: perl
8773            ! embed.fnc embed.h global.sym gv.c gv.h op.c perl.c perlio.c
8774            ! pp_ctl.c pp_hot.c proto.h t/op/ref.t toke.c
8775 ____________________________________________________________________________
8776 [ 29829] By: rgs                                   on 2007/01/15  14:32:26
8777         Log: Subject: [PATCH] symbian/xsbuild.pl
8778              From: Jarkko Hietaniemi <jhi@iki.fi>
8779              Date: Mon, 15 Jan 2007 08:49:56 -0500
8780              Message-ID: <45AB8684.70906@iki.fi>
8781      Branch: perl
8782            ! symbian/xsbuild.pl
8783 ____________________________________________________________________________
8784 [ 29827] By: davem                                 on 2007/01/15  14:16:53
8785         Log: extend threads 'veto cleanup' to perl_free and system stuff
8786      Branch: perl
8787            ! embedvar.h perl.c perlapi.h perlvars.h unixish.h
8788 ____________________________________________________________________________
8789 [ 29826] By: rgs                                   on 2007/01/15  14:15:35
8790         Log: Proper symbian fix (replacing change #29813) by Jarkko
8791      Branch: perl
8792            ! perl.h
8793 ____________________________________________________________________________
8794 [ 29825] By: rgs                                   on 2007/01/15  13:45:40
8795         Log: Use the $Is_MacOS variable
8796      Branch: perl
8797            ! t/lib/common.pl
8798 ____________________________________________________________________________
8799 [ 29824] By: rgs                                   on 2007/01/15  13:44:39
8800         Log: Simplify the ok/not ok logic
8801              (another refactorisation by Schwern)
8802      Branch: perl
8803            ! t/lib/common.pl
8804 ____________________________________________________________________________
8805 [ 29823] By: rgs                                   on 2007/01/15  13:40:18
8806         Log: Various cleanup and factorization by Schwern
8807              for tests for warnings and features
8808      Branch: perl
8809            ! t/lib/common.pl
8810 ____________________________________________________________________________
8811 [ 29822] By: rgs                                   on 2007/01/15  13:30:51
8812         Log: Introduce the :5.10.0 feature bundle, and make :5.10 an
8813              alias to it (aimed at be an alias to the latest :5.10.X)
8814      Branch: perl
8815            ! lib/feature.pm
8816 ____________________________________________________________________________
8817 [ 29821] By: rgs                                   on 2007/01/15  12:44:45
8818         Log: Fix link to perlsyn (thanks to Michael G Schwern)
8819      Branch: perl
8820            ! lib/feature.pm
8821 ____________________________________________________________________________
8822 [ 29820] By: rgs                                   on 2007/01/15  12:42:36
8823         Log: Remove the "dor" feature alias.
8824      Branch: perl
8825            ! lib/feature.pm
8826 ____________________________________________________________________________
8827 [ 29819] By: rgs                                   on 2007/01/15  12:41:28
8828         Log: Document "no feature" (Michael G Schwern)
8829      Branch: perl
8830            ! lib/feature.pm
8831 ____________________________________________________________________________
8832 [ 29818] By: rgs                                   on 2007/01/15  12:37:27
8833         Log: Move the documentation of the lexical effect of feature.pm to its own
8834              section thus removing a lot of redundant redundant documentation about
8835              it cluttering up the feature documentation. (by Michael G Schwern)
8836      Branch: perl
8837            ! lib/feature.pm
8838 ____________________________________________________________________________
8839 [ 29817] By: rgs                                   on 2007/01/15  12:34:00
8840         Log: Remove obsolete notes and TODOs from feature.pm
8841      Branch: perl
8842            ! lib/feature.pm
8843 ____________________________________________________________________________
8844 [ 29816] By: rgs                                   on 2007/01/15  12:30:56
8845         Log: Add a reference to the docs for state() variables in feature.pm
8846              (suggested by Michael G Schwern)
8847      Branch: perl
8848            ! lib/feature.pm
8849 ____________________________________________________________________________
8850 [ 29815] By: rgs                                   on 2007/01/15  12:29:14
8851         Log: Factorise croak() calls and error messages in feature.pm
8852              (suggested by Michael G Schwern)
8853      Branch: perl
8854            ! lib/feature.pm
8855 ____________________________________________________________________________
8856 [ 29814] By: nicholas                              on 2007/01/15  12:13:24
8857         Log: Test that names with embedded NULs work for symbolic array, hash and
8858              typeglob references.
8859      Branch: perl
8860            ! t/op/ref.t
8861 ____________________________________________________________________________
8862 [ 29813] By: rgs                                   on 2007/01/15  08:22:08
8863         Log: Revert perl.h part of change 29811, which breaks compilation with gcc
8864      Branch: perl
8865            ! perl.h
8866 ____________________________________________________________________________
8867 [ 29812] By: merijn                                on 2007/01/15  07:45:28
8868         Log: Subject: [PATCH] g++ fixes
8869              From: jhi@cc.hut.fi (Jarkko Hietaniemi)
8870              Date: Mon, 15 Jan 2007 06:09:30 +0200 (EET)
8871              Message-Id: <20070115040930.8685843A67@anubis.hut.fi>
8872      Branch: perl
8873            ! op.c toke.c
8874 ____________________________________________________________________________
8875 [ 29811] By: merijn                                on 2007/01/15  07:42:37
8876         Log: Subject: [PATCH] Symbian/S90 further fixes
8877              From: jhi@cc.hut.fi (Jarkko Hietaniemi)
8878              Date: Mon, 15 Jan 2007 06:11:52 +0200 (EET)
8879              Message-Id: <20070115041152.374AB43A67@anubis.hut.fi>
8880      Branch: perl
8881            ! perl.h symbian/PerlBase.cpp symbian/config.sh
8882 ____________________________________________________________________________
8883 [ 29810] By: davem                                 on 2007/01/14  23:58:49
8884         Log: make S_ithread_run() call S_ithread_free() in main context
8885              
8886              Fixes a race condition between detach clearing a thread's
8887              interpreter, and S_ithread_run() freeing itself while
8888              assuming that it's own interpreter still exists.
8889      Branch: perl
8890            ! ext/threads/threads.xs
8891 ____________________________________________________________________________
8892 [ 29805] By: davem                                 on 2007/01/14  12:43:39
8893         Log: further refinement to #29796 (cleanup veto)
8894      Branch: perl
8895            ! ext/threads/threads.xs
8896 ____________________________________________________________________________
8897 [ 29803] By: rgs                                   on 2007/01/14  10:12:08
8898         Log: Subject: Re: Memory...growing, and growing
8899              From: Marvin Humphrey <marvin@rectangular.com>
8900              Date: Sat, 13 Jan 2007 12:05:30 -0800
8901              Message-Id: <3CCCF699-345E-4C65-BCCB-1549EB99547A@rectangular.com>
8902              
8903              Document -DDL_UNLOAD_ALL_AT_EXIT
8904      Branch: perl
8905            ! pod/perlhack.pod
8906 ____________________________________________________________________________
8907 [ 29796] By: davem                                 on 2007/01/13  22:57:26
8908         Log: unfreed threads should trigger cleanup veto
8909              
8910              The thread pool struct is allocated in the main interpreter, so
8911              don't clean that up if any threads remain, regardless of what
8912              state they are in
8913      Branch: perl
8914            ! ext/threads/threads.xs
8915 ____________________________________________________________________________
8916 [ 29790] By: nicholas                              on 2007/01/13  18:21:19
8917         Log: In S_hfreeentries, orig_array can be const.
8918      Branch: perl
8919            ! hv.c
8920 ____________________________________________________________________________
8921 [ 29786] By: rgs                                   on 2007/01/13  17:17:40
8922         Log: TODO: yada yada yada
8923      Branch: perl
8924            ! pod/perltodo.pod
8925 ____________________________________________________________________________
8926 [ 29784] By: rgs                                   on 2007/01/13  16:56:02
8927         Log: Subject:  Re: AW: umask handling in File::Temp
8928              From:  Gisle Aas <gisle@activestate.com>
8929              Date:  12 Jan 2007 16:10:16 +0100
8930              Message-ID:  <877ivs1dt3.fsf@ask.g.aas.no>
8931      Branch: perl
8932            ! pp_sys.c
8933 ____________________________________________________________________________
8934 [ 29781] By: rgs                                   on 2007/01/13  11:06:06
8935         Log: Subject: [PATCH] perlthrtut.pod (based on perl-current@29766)
8936              From: Wolfgang Laun <Wolfgang.Laun@thalesgroup.com>
8937              Date: Fri, 12 Jan 2007 17:37:58 +0100
8938              Message-ID: <45A7B966.1040307@thalesgroup.com>
8939      Branch: perl
8940            ! pod/perlthrtut.pod
8941 ____________________________________________________________________________
8942 [ 29780] By: davem                                 on 2007/01/12  21:49:13
8943         Log: fix PL_parser_dup symbol (again)
8944      Branch: perl
8945            ! embed.fnc embed.h global.sym
8946 ____________________________________________________________________________
8947 [ 29779] By: davem                                 on 2007/01/12  19:56:40
8948         Log: Rationalise refcounting of thread structures
8949              Formerly there could be races with multiple destroys of a thread
8950              structure.
8951      Branch: perl
8952            ! ext/threads/threads.xs
8953 ____________________________________________________________________________
8954 [ 29778] By: merijn                                on 2007/01/12  16:06:23
8955         Log: Superdome now also in Itanium series (sx1000 & sx2000),
8956              cx2600 is Madison 6
8957      Branch: perl
8958            ! README.hpux
8959 ____________________________________________________________________________
8960 [ 29777] By: merijn                                on 2007/01/12  15:15:13
8961         Log: gcc -dumpversion is at least supported back to 2.7.x and
8962              thus seems to be much more defensive against upcoming version
8963              reporting format changes.
8964      Branch: perl
8965            ! hints/aix.sh hints/aix_3.sh hints/aix_4.sh hints/dec_osf.sh
8966            ! hints/hpux.sh hints/svr5.sh hints/vos.sh
8967 ____________________________________________________________________________
8968 [ 29774] By: rgs                                   on 2007/01/12  13:57:45
8969         Log: makedef.pl should be able to load "strict"
8970      Branch: perl
8971            ! makedef.pl
8972 ____________________________________________________________________________
8973 [ 29768] By: rgs                                   on 2007/01/12  11:44:04
8974         Log: Upgrade to ExtUtils::Manifest 1.51
8975      Branch: perl
8976            ! lib/ExtUtils/Manifest.pm lib/ExtUtils/t/Manifest.t
8977 ____________________________________________________________________________
8978 [ 29767] By: davem                                 on 2007/01/12  11:26:14
8979         Log: fix typo in hv.c
8980      Branch: perl
8981            ! hv.c
8982 ____________________________________________________________________________
8983 [ 29766] By: davem                                 on 2007/01/12  11:13:49
8984         Log: fix PL_parser_dup symbol
8985      Branch: perl
8986            ! embed.fnc embed.h makedef.pl
8987 ____________________________________________________________________________
8988 [ 29765] By: davem                                 on 2007/01/12  10:42:05
8989         Log: make tr/// threadsafe by moving swash into pad
8990      Branch: perl
8991            ! doop.c op.c
8992 ____________________________________________________________________________
8993 [ 29764] By: rgs                                   on 2007/01/12  10:24:55
8994         Log: Subject: [PATCH] trivia in perlthrtut.pod
8995              From: Wolfgang Laun <Wolfgang.Laun@thalesgroup.com>
8996              Date: Thu, 11 Jan 2007 16:57:29 +0100
8997              Message-ID: <45A65E69.8010400@thalesgroup.com>
8998      Branch: perl
8999            ! pod/perlthrtut.pod
9000 ____________________________________________________________________________
9001 [ 29762] By: steveh                                on 2007/01/11  17:27:02
9002         Log: Update copyright year in "perl -v" output
9003      Branch: perl
9004            ! perl.c
9005 ____________________________________________________________________________
9006 [ 29761] By: rgs                                   on 2007/01/11  17:12:08
9007         Log: Fix bug [perl #41234] : the tokenizer understands "=cute"
9008              or other words that begin with "cut" as synonyms for "=cut"
9009      Branch: perl
9010            ! toke.c
9011 ____________________________________________________________________________
9012 [ 29758] By: nicholas                              on 2007/01/11  15:37:12
9013         Log: Change 29753 messed up do_hv_dump() [my fault]
9014      Branch: perl
9015            ! embed.fnc proto.h
9016 ____________________________________________________________________________
9017 [ 29757] By: rgs                                   on 2007/01/11  15:07:28
9018         Log: Silence an "unused parameter" warning in Perl_reg_numbered_buff_get().
9019              This parameter might become handy in the future, so keep it.
9020      Branch: perl
9021            ! regcomp.c
9022 ____________________________________________________________________________
9023 [ 29756] By: rgs                                   on 2007/01/11  14:47:01
9024         Log: Subject: [PATCH] Add Regexp::Keep \K functionality to regex engine as well as add \v and \V, cleanup and more docs for regatom()
9025              From: demerphq <demerphq@gmail.com>
9026              Date: Wed, 10 Jan 2007 20:33:39 +0100
9027              Message-ID: <9b18b3110701101133i46dc5fd0p1476a0f1dd1e9c5a@mail.gmail.com>
9028              
9029              (plus POD nits by Merijn and myself)
9030      Branch: perl
9031            ! pod/perl595delta.pod pod/perlre.pod regcomp.c regcomp.sym
9032            ! regexec.c regexp.h regnodes.h t/op/pat.t
9033 ____________________________________________________________________________
9034 [ 29753] By: nicholas                              on 2007/01/11  13:23:40
9035         Log: do_gv_dump, do_gvgv_dump and do_hv_dump call all actually take a NULL
9036              parameter. Patch for do_hv_dump supplied by Brandon L Black, other
9037              two added after code inspection.
9038      Branch: perl
9039            ! embed.fnc proto.h
9040 ____________________________________________________________________________
9041 [ 29751] By: rgs                                   on 2007/01/11  10:34:02
9042         Log: Fix bug #40407: after a seek on a PerlIO::scalar filehandle,
9043              ensure there's a string buffer in the scalar
9044      Branch: perl
9045            ! ext/PerlIO/scalar/scalar.xs
9046 ____________________________________________________________________________
9047 [ 29750] By: rgs                                   on 2007/01/11  09:51:56
9048         Log: Subject: [PATCH] AutoLoader fix, part 2
9049              From: Steffen Mueller <rt8363b02@sneakemail.com>
9050              Date: Wed, 10 Jan 2007 18:52:23 +0100
9051              Message-ID: <20070110175148.26694.qmail@lists.develooper.com>
9052      Branch: perl
9053            ! lib/AutoLoader.pm lib/AutoLoader.t
9054 ____________________________________________________________________________
9055 [ 29749] By: nicholas                              on 2007/01/11  00:24:48
9056         Log: In toke.c, merge S_update_debugger_info_pv() and
9057              S_update_debugger_info_sv() into S_update_debugger_info().
9058      Branch: perl
9059            ! embed.fnc embed.h proto.h toke.c
9060 ____________________________________________________________________________
9061 [ 29748] By: nicholas                              on 2007/01/10  16:24:27
9062         Log: An implementation of change 29735 for blead (PL_curcop could be NULL)
9063              given that blead's refactoring is not yet in maint.
9064      Branch: perl
9065            ! gv.c
9066 ____________________________________________________________________________
9067 [ 29747] By: rgs                                   on 2007/01/10  16:00:17
9068         Log: Regenerate all files
9069      Branch: perl
9070            ! embed.h keywords.h reentr.c reentr.h
9071 ____________________________________________________________________________
9072 [ 29745] By: rgs                                   on 2007/01/10  13:21:03
9073         Log: Subject: PATCH: perlfunc.pod / warn
9074              From: Peter Scott <Peter@PSDT.com>
9075              Date: Wed, 10 Jan 2007 05:18:52 -0800
9076              Message-Id: <pan.2007.01.10.13.18.52.834683@PSDT.com>
9077      Branch: perl
9078            ! pod/perlfunc.pod
9079 ____________________________________________________________________________
9080 [ 29744] By: rgs                                   on 2007/01/10  13:17:37
9081         Log: Subject: Re: [perl #41215] % on scalars sometimes throws away fractions 
9082              From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
9083              Date: Tue, 09 Jan 2007 23:39:42 +0900
9084              Message-Id: <20070109233928.07AF.BQW10602@nifty.com>
9085              
9086              plus nits by Dominic Dunlop
9087      Branch: perl
9088            ! pod/perlop.pod
9089 ____________________________________________________________________________
9090 [ 29743] By: rgs                                   on 2007/01/10  10:54:27
9091         Log: Subject: Bug in AutoLoader.pm causing endless loop
9092              From: Steffen Mueller <rt8363b02@sneakemail.com>
9093              Date: Tue, 09 Jan 2007 19:15:36 +0100
9094              Message-ID: <45A3DBC8.4010203@sneakemail.com>
9095      Branch: perl
9096            ! lib/AutoLoader.pm
9097 ____________________________________________________________________________
9098 [ 29742] By: rgs                                   on 2007/01/10  10:25:02
9099         Log: Subject: ./miniperl minimod.pl ... Can't locate strict.pm
9100              From: andreas.koenig.7os6VVqR@franz.ak.mind.de (Andreas J. Koenig)
9101              Date: Wed, 10 Jan 2007 04:55:55 +0100
9102              Message-ID: <87lkkbk01g.fsf@k75.linux.bogus>
9103      Branch: perl
9104            ! minimod.pl
9105 ____________________________________________________________________________
9106 [ 29741] By: nicholas                              on 2007/01/09  21:46:28
9107         Log: Make minimod.pl warnings and strict clean.
9108      Branch: perl
9109            ! minimod.pl
9110 ____________________________________________________________________________
9111 [ 29740] By: nicholas                              on 2007/01/09  21:44:05
9112         Log: Make makedef.pl warnings and strict clean.
9113      Branch: perl
9114            ! makedef.pl
9115 ____________________________________________________________________________
9116 [ 29739] By: nicholas                              on 2007/01/09  21:37:31
9117         Log: Make keywords.pl strict and warnings clean.
9118      Branch: perl
9119            ! keywords.pl
9120 ____________________________________________________________________________
9121 [ 29738] By: nicholas                              on 2007/01/09  21:34:50
9122         Log: Make autodoc.pl strict clean.
9123      Branch: perl
9124            ! autodoc.pl
9125 ____________________________________________________________________________
9126 [ 29736] By: nicholas                              on 2007/01/09  21:21:56
9127         Log: Make opcode.pl strict and warnings clean.
9128      Branch: perl
9129            ! opcode.pl
9130 ____________________________________________________________________________
9131 [ 29734] By: steveh                                on 2007/01/09  12:44:15
9132         Log: Subject: Re: Change 29723 breaks t/op/inccode-tie.t on Win32
9133              From: Nicholas Clark <nick@ccl4.org>
9134              Date: Tue, 9 Jan 2007 12:31:17 +0000
9135              Message-ID: <20070109123116.GC30742@plum.flirble.org>
9136      Branch: perl
9137            ! t/op/inccode-tie.t
9138 ____________________________________________________________________________
9139 [ 29732] By: steveh                                on 2007/01/09  10:40:23
9140         Log: Subject: Re: [PATCH] ANSIfy the PATH environment variable on Windows
9141              From: Jan Dubois <jand@ActiveState.com>
9142              Date: Mon, 08 Jan 2007 14:58:12 -0800
9143              Message-ID: <eei5q29hrchpam2i5g0000mbvu0b1hrm83@4ax.com>
9144              
9145              Fixes the Borland build, in which the PATH was getting corrupted
9146              when the variable that was just putenv()'d got free()'d
9147      Branch: perl
9148            ! win32/win32.c
9149 ____________________________________________________________________________
9150 [ 29731] By: rgs                                   on 2007/01/09  10:33:56
9151         Log: Subject: [PATCH] Change #29711 broke tr//c on Win32.
9152              From: demerphq <demerphq@gmail.com>
9153              Date: Mon, 8 Jan 2007 20:31:26 +0100
9154              Message-ID: <9b18b3110701081131v392597c6veed493407c1eede7@mail.gmail.com>
9155      Branch: perl
9156            ! op.c
9157 ____________________________________________________________________________
9158 [ 29730] By: rgs                                   on 2007/01/09  10:04:37
9159         Log: Subject: [PATCH] Let the regex parser decide if we have a special pattern or not.
9160              From: demerphq <demerphq@gmail.com>
9161              Date: Tue, 9 Jan 2007 00:46:31 +0100
9162              Message-ID: <9b18b3110701081546n2c3f19acy29adc0d233bb848c@mail.gmail.com>
9163      Branch: perl
9164            ! op.c op.h pp.c pp_ctl.c regcomp.c regexp.h
9165 ____________________________________________________________________________
9166 [ 29729] By: nicholas                              on 2007/01/09  09:58:17
9167         Log: socketpair.t was written in 2001. At that time, Test::More got confused
9168              if you forked under it. Test::More 0.47 added support to detect forking
9169              which resolves this. Hence there is now no need to fork() in a BEGIN
9170              block, which causes issues on Win32 due to how pseudofork works.
9171      Branch: perl
9172            ! ext/Socket/t/socketpair.t
9173 ____________________________________________________________________________
9174 [ 29728] By: rgs                                   on 2007/01/09  09:28:52
9175         Log: Revert change #29708 (useless)
9176      Branch: perl
9177            ! win32/win32.c
9178 ____________________________________________________________________________
9179 [ 29727] By: nicholas                              on 2007/01/08  23:27:26
9180         Log: Eliminate pp_threadsv, as it was only ever used by 5005 threads.
9181      Branch: perl
9182            ! dump.c ext/Opcode/Opcode.pm op.c opcode.h opcode.pl opnames.h
9183            ! pp.sym pp_proto.h
9184 ____________________________________________________________________________
9185 [ 29724] By: nicholas                              on 2007/01/08  21:52:32
9186         Log: do or die; for all the List::Util pure perl tests.
9187      Branch: perl
9188            ! ext/List/Util/t/p_blessed.t ext/List/Util/t/p_first.t
9189            ! ext/List/Util/t/p_lln.t ext/List/Util/t/p_max.t
9190            ! ext/List/Util/t/p_maxstr.t ext/List/Util/t/p_min.t
9191            ! ext/List/Util/t/p_minstr.t ext/List/Util/t/p_openhan.t
9192            ! ext/List/Util/t/p_readonly.t ext/List/Util/t/p_reduce.t
9193            ! ext/List/Util/t/p_refaddr.t ext/List/Util/t/p_reftype.t
9194            ! ext/List/Util/t/p_shuffle.t ext/List/Util/t/p_sum.t
9195            ! ext/List/Util/t/p_tainted.t
9196 ____________________________________________________________________________
9197 [ 29723] By: nicholas                              on 2007/01/08  21:20:26
9198         Log: do $file; won't propagate errors from die, as do is an implicit eval.
9199              So need to propagate errors with $@.
9200      Branch: perl
9201            ! ext/DynaLoader/hints/gnukfreebsd.pl
9202            ! ext/DynaLoader/hints/gnuknetbsd.pl
9203            ! ext/NDBM_File/hints/gnukfreebsd.pl
9204            ! ext/NDBM_File/hints/gnuknetbsd.pl
9205            ! ext/ODBM_File/hints/gnukfreebsd.pl
9206            ! ext/ODBM_File/hints/gnuknetbsd.pl
9207            ! ext/POSIX/hints/gnukfreebsd.pl ext/POSIX/hints/gnuknetbsd.pl
9208            ! ext/Storable/hints/gnukfreebsd.pl
9209            ! ext/Storable/hints/gnuknetbsd.pl lib/perl5db.pl
9210            ! lib/utf8_heavy.pl symbian/config.pl symbian/makesis.pl
9211            ! symbian/xsbuild.pl t/comp/require.t t/op/caller.t t/op/do.t
9212            ! t/op/inccode-tie.t t/op/regexp_noamp.t t/op/regexp_notrie.t
9213            ! t/op/regexp_qr.t t/op/regexp_qr_embed.t t/op/regexp_trielist.t
9214            ! t/op/threads.t t/uni/case.pl win32/ce-helpers/makedist.pl
9215 ____________________________________________________________________________
9216 [ 29719] By: nicholas                              on 2007/01/08  14:28:17
9217         Log: Mention -C on #! line in perltodo. Remove some trailing whitespace that
9218              podchecker warned over.
9219      Branch: perl
9220            ! pod/perltodo.pod
9221 ____________________________________________________________________________
9222 [ 29718] By: rgs                                   on 2007/01/08  11:09:10
9223         Log: Change the API doc for some of the SvXXX testing macros.
9224              Often, those macros simply test a bit in sv_flags, so
9225              the return value should be assigned to a U32 instead of
9226              a bool to avoid truncation. (bug perl #32884)
9227      Branch: perl
9228            ! pod/perlapi.pod sv.h
9229 ____________________________________________________________________________
9230 [ 29717] By: rgs                                   on 2007/01/08  10:35:04
9231         Log: Turn taint warnings (-t) into severe warnings, so they're
9232              on by default, without having to play games with the
9233              warning bits. Add a test for -t.
9234      Branch: perl
9235            ! perl.c pp_ctl.c t/lib/warnings/taint taint.c warnings.h
9236            ! warnings.pl
9237 ____________________________________________________________________________
9238 [ 29716] By: rgs                                   on 2007/01/08  09:26:01
9239         Log: Silence casting warnings
9240      Branch: perl
9241            ! regcomp.c
9242 ____________________________________________________________________________
9243 [ 29715] By: merijn                                on 2007/01/08  07:34:29
9244         Log: Default "$undef" for NV_PRESERVES_UV_BITS causes compilation
9245              failure of sv.c when triggered
9246              From: Marcus Holland-Moritz <mhx-perl@gmx.net>
9247              Date: Mon, 8 Jan 2007 00:49:11 +0100
9248              Message-ID: <20070108004911.7022445c@r2d2>
9249      Branch: perl
9250            ! Configure
9251 ____________________________________________________________________________
9252 [ 29713] By: merijn                                on 2007/01/08  07:19:02
9253         Log: Subject: help cygwin find its dlls even on taint tests with no path
9254              From: "Yitzchak Scott-Thoennes" <sthoenna@efn.org>
9255              Date: Sun, 7 Jan 2007 16:56:28 -0800 (PST)
9256              Message-ID: <2437.63.226.247.31.1168217788.squirrel@63.226.247.31>
9257      Branch: perl
9258            ! cygwin/Makefile.SHs t/op/taint.t
9259 ____________________________________________________________________________
9260 [ 29712] By: davem                                 on 2007/01/08  00:14:22
9261         Log: fix occasional op/time.t failure
9262              test 2 uses far more sys than user time, so it's possible to burn
9263              20 secs of wall time without an apparent increase in user time
9264      Branch: perl
9265            ! t/op/time.t
9266 ____________________________________________________________________________
9267 [ 29711] By: davem                                 on 2007/01/08  00:06:44
9268         Log: allocate op_pv strings from shared mem pool
9269      Branch: perl
9270            ! op.c toke.c
9271 ____________________________________________________________________________
9272 [ 29710] By: rgs                                   on 2007/01/07  23:27:03
9273         Log: In the new test for less.pm, call use_ok at compile-time
9274              and add -w.
9275      Branch: perl
9276            ! lib/less.t
9277 ____________________________________________________________________________
9278 [ 29709] By: rgs                                   on 2007/01/07  23:24:31
9279         Log: Subject: [PATCH] less useful
9280              From: "Joshua ben Jore" <twists@gmail.com>
9281              Date: Sat, 6 Jan 2007 13:33:15 -0800
9282              Message-ID: <dc5c751d0701061333w7b89ea48kf5c8993e3de19b44@mail.gmail.com>
9283      Branch: perl
9284            ! lib/less.pm lib/less.t
9285 ____________________________________________________________________________
9286 [ 29708] By: rgs                                   on 2007/01/07  23:12:26
9287         Log: Subject: Re: [PATCH] ANSIfy the PATH environment variable on Windows
9288              From: demerphq <demerphq@gmail.com>
9289              Date: Sun, 7 Jan 2007 20:51:43 +0100
9290              Message-ID: <9b18b3110701071151y13eaa554w257d2d5016ee0983@mail.gmail.com>
9291      Branch: perl
9292            ! win32/win32.c
9293 ____________________________________________________________________________
9294 [ 29707] By: rgs                                   on 2007/01/07  23:08:04
9295         Log: Subject: DynaLoader test failure on cygwin
9296              From: "Yitzchak Scott-Thoennes" <sthoenna@efn.org>
9297              Date: Sun, 7 Jan 2007 11:56:21 -0800 (PST)
9298              Message-ID: <1675.63.226.247.31.1168199781.squirrel@63.226.247.31>
9299      Branch: perl
9300            ! ext/DynaLoader/t/DynaLoader.t
9301 ____________________________________________________________________________
9302 [ 29706] By: davem                                 on 2007/01/07  14:55:27
9303         Log: silence a warning in perly.c
9304      Branch: perl
9305            ! perly.c
9306 ____________________________________________________________________________
9307 [ 29705] By: rgs                                   on 2007/01/06  07:19:09
9308         Log: Subject: patch: shorten perl.h by six lines
9309              From: "David Nicol" <davidnicol@gmail.com>
9310              Date: Sat, 6 Jan 2007 00:02:24 -0600
9311              Message-ID: <934f64a20701052202p1c77a226w32634a1c69f584c7@mail.gmail.com>
9312      Branch: perl
9313            ! perl.h
9314 ____________________________________________________________________________
9315 [ 29704] By: rgs                                   on 2007/01/06  06:58:41
9316         Log: Add 2007 copyrights in a few more .pl files that
9317              generate code (thanks to Jarkko)
9318      Branch: perl
9319            ! overload.pl reentr.pl
9320 ____________________________________________________________________________
9321 [ 29703] By: rgs                                   on 2007/01/05  23:15:38
9322         Log: Silence a gcc warning, spotted by Tels
9323      Branch: perl
9324            ! regcomp.c
9325 ____________________________________________________________________________
9326 [ 29702] By: rgs                                   on 2007/01/05  18:30:52
9327         Log: Bump version of PerlIO::via after last change
9328      Branch: perl
9329            ! ext/PerlIO/via/via.pm
9330 ____________________________________________________________________________
9331 [ 29701] By: rgs                                   on 2007/01/05  18:26:43
9332         Log: Subject: [PATCH] ext/PerlIO/via/via.xs freeing the wrong thing
9333              From: Bo Lindbergh <blgl@hagernas.com>
9334              Date: Fri, 5 Jan 2007 19:19:53 +0100
9335              Message-Id: <C7070BEE-BFB6-4FA2-A50B-BF20CDB3B61F@hagernas.com>
9336      Branch: perl
9337            ! ext/PerlIO/via/via.xs
9338 ____________________________________________________________________________
9339 [ 29700] By: rgs                                   on 2007/01/05  15:37:54
9340         Log: Normalize copyright of perlio.c for years >= 2006
9341      Branch: perl
9342            ! perlio.c
9343 ____________________________________________________________________________
9344 [ 29699] By: steveh                                on 2007/01/05  15:04:59
9345         Log: Do the same as #29697 for Win32
9346      Branch: perl
9347            ! win32/Makefile win32/makefile.mk
9348 ____________________________________________________________________________
9349 [ 29698] By: rgs                                   on 2007/01/05  14:37:31
9350         Log: Fix the interaction of -w and -t when provided on the command-line
9351              and/or on the shebang line : do not reset the warning bits to
9352              'only taint'.
9353      Branch: perl
9354            ! perl.c pp_ctl.c
9355 ____________________________________________________________________________
9356 [ 29697] By: rgs                                   on 2007/01/05  12:27:22
9357         Log: Fix distclean now that we have re::Tie::Hash::NamedCapture
9358      Branch: perl
9359            ! Makefile.SH
9360 ____________________________________________________________________________
9361 [ 29696] By: rgs                                   on 2007/01/05  10:47:58
9362         Log: Update copyright years in .c files
9363      Branch: perl
9364            ! doio.c doop.c gv.c miniperlmain.c pad.c perl.c pp.c pp_ctl.c
9365            ! pp_hot.c pp_sort.c pp_sys.c regcomp.c regexec.c scope.c
9366            ! universal.c utf8.c
9367 ____________________________________________________________________________
9368 [ 29695] By: rgs                                   on 2007/01/05  10:34:36
9369         Log: Update copyright years in .h files. Also, in .pl
9370              files that generate .h files, so they'll be ready
9371              next time.
9372      Branch: perl
9373            ! XSUB.h keywords.pl op.h opcode.pl pad.h perlio.h perlsdio.h
9374            ! perlsfio.h pp.h regcomp.h regexp.h scope.h thrdvar.h unixish.h
9375            ! utf8.h utfebcdic.h util.h
9376 ____________________________________________________________________________
9377 [ 29694] By: rgs                                   on 2007/01/05  10:21:58
9378         Log: Update copyright for perlio.c
9379      Branch: perl
9380            ! perlio.c
9381 ____________________________________________________________________________
9382 [ 29693] By: rgs                                   on 2007/01/05  09:55:22
9383         Log: Subject: Re: What if NV_PRESERVES_UV_BITS is undef? (was: Re: [PATCH] Configure test code fails to compile if SIGFPE is undefined)
9384              From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
9385              Date: Thu, 04 Jan 2007 00:21:02 +0900
9386              Message-Id: <20070104001943.6BC2.BQW10602@nifty.com>
9387      Branch: perl
9388            ! ext/Data/Dumper/t/dumper.t ext/Devel/Peek/t/Peek.t
9389 ____________________________________________________________________________
9390 [ 29692] By: steveh                                on 2007/01/05  09:45:08
9391         Log: Silence various VC6 warnings
9392      Branch: perl
9393            ! ext/B/B.xs perly.c regexec.c util.c win32/win32.c
9394 ____________________________________________________________________________
9395 [ 29691] By: rgs                                   on 2007/01/05  09:11:30
9396         Log: Subject: Re: [PATCH] perlio.c repair
9397              From: Bo Lindbergh <blgl@hagernas.com>
9398              Date: Thu, 4 Jan 2007 18:22:09 +0100
9399              Message-Id: <E22DC961-6821-4AC2-BA2F-9B5B06927758@hagernas.com>
9400      Branch: perl
9401            ! perlio.c
9402 ____________________________________________________________________________
9403 [ 29690] By: rgs                                   on 2007/01/05  07:49:03
9404         Log: Subject: [PATCH] ANSIfy the PATH environment variable on Windows
9405              From: Jan Dubois <jand@ActiveState.com>
9406              Date: Thu, 04 Jan 2007 12:37:48 -0800
9407              Message-ID: <7coqp2pme3r30qaonticuv6c6licieg4cg@4ax.com>
9408      Branch: perl
9409            ! win32/perllib.c win32/win32.c
9410 ____________________________________________________________________________
9411 [ 29689] By: rgs                                   on 2007/01/05  07:47:08
9412         Log: Subject: [PATCH] Add error handling to win32_ansipath
9413              From: Jan Dubois <jand@ActiveState.com>
9414              Date: Thu, 04 Jan 2007 12:20:21 -0800
9415              Message-ID: <f2oqp2dbdglim8bda4q1kajt9k3cvpqqga@4ax.com>
9416      Branch: perl
9417            ! win32/win32.c
9418 ____________________________________________________________________________
9419 [ 29688] By: rgs                                   on 2007/01/04  17:04:11
9420         Log: Upgrade Module::Load::Conditional to 0.14
9421      Branch: perl
9422            + lib/Module/Load/Conditional/t/to_load/InPod.pm
9423            ! MANIFEST lib/Module/Load/Conditional.pm
9424            ! lib/Module/Load/Conditional/t/01_Module_Load_Conditional.t
9425            ! lib/Module/Load/Conditional/t/to_load/Commented.pm
9426            ! lib/Module/Load/Conditional/t/to_load/LoadIt.pm
9427            ! lib/Module/Load/Conditional/t/to_load/Must/Be/Loaded.pm
9428 ____________________________________________________________________________
9429 [ 29687] By: rgs                                   on 2007/01/04  15:33:16
9430         Log: 4th patch from: 
9431              
9432              Subject: [PATCH] Cleanup SVf arguments (2nd try)
9433              From: Marcus Holland-Moritz <mhx-perl@gmx.net>
9434              Date: Mon, 1 Jan 2007 20:16:13 +0100
9435              Message-ID: <20070101201613.4120d9ef@r2d2>
9436              
9437              Introduce an SVfARG() macro for %SVf (%-p here) arguments to
9438              perl's printf
9439      Branch: perl
9440            ! XSUB.h doio.c gv.c hv.c mg.c op.c pad.c perl.c perl.h perlio.c
9441            ! pp.c pp_ctl.c pp_hot.c pp_sort.c pp_sys.c regcomp.c regexec.c
9442            ! sv.c toke.c universal.c utf8.c
9443 ____________________________________________________________________________
9444 [ 29686] By: rgs                                   on 2007/01/04  15:29:02
9445         Log: The first three patches from:
9446              
9447              Subject: [PATCH] Cleanup SVf arguments (2nd try)
9448              From: Marcus Holland-Moritz <mhx-perl@gmx.net>
9449              Date: Mon, 1 Jan 2007 20:16:13 +0100
9450              Message-ID: <20070101201613.4120d9ef@r2d2>
9451              
9452              Adds (void*) casts to %-p and %p printf arguments
9453      Branch: perl
9454            ! XSUB.h doio.c hv.c mg.c perl.c perlio.c pp.c pp_hot.c
9455            ! regcomp.c regexec.c scope.c sv.c util.c
9456 ____________________________________________________________________________
9457 [ 29685] By: steveh                                on 2007/01/04  15:21:50
9458         Log: Subject: Re: [PATCH] Symbian port: add Series 90 support
9459              From: Jarkko Hietaniemi <jhi@iki.fi>
9460              Date: Thu, 04 Jan 2007 03:35:54 -0500
9461              Message-ID: <459CBC6A.4060806@iki.fi>
9462              
9463              Fixes a VC7/VC7.1 linker error following #29650/#29651
9464      Branch: perl
9465            ! perl.h util.c
9466 ____________________________________________________________________________
9467 [ 29684] By: rgs                                   on 2007/01/04  14:40:18
9468         Log: Remove no longer used magic vtable
9469      Branch: perl
9470            ! XSUB.h perl.h
9471 ____________________________________________________________________________
9472 [ 29683] By: rgs                                   on 2007/01/04  14:39:08
9473         Log: Silence a 'null argument' warning
9474      Branch: perl
9475            ! dump.c
9476 ____________________________________________________________________________
9477 [ 29682] By: rgs                                   on 2007/01/04  14:30:02
9478         Log: Subject: Re: [PATCH] Change implementation of %+ to use a proper tied hash interface and add support for %-
9479              From: demerphq <demerphq@gmail.com>
9480              Date: Fri, 29 Dec 2006 21:45:51 +0100
9481              Message-ID: <9b18b3110612291245q792fe91cu69422d2b81bb4f0b@mail.gmail.com>
9482      Branch: perl
9483            + ext/re/lib/re/Tie/Hash/NamedCapture.pm
9484            ! MANIFEST doop.c dump.c embed.fnc embed.h ext/re/re.pm
9485            ! ext/re/re.xs ext/re/t/re_funcs.t global.sym gv.c hv.c mg.c
9486            ! perl.h pod/perlapi.pod pod/perlintern.pod pod/perlvar.pod
9487            ! proto.h regcomp.c sv.c t/op/pat.t
9488 ____________________________________________________________________________
9489 [ 29681] By: rgs                                   on 2007/01/04  10:32:13
9490         Log: Subject: [PATCH] Add note to perltodo.pod about Unicode and file globbing
9491              From: Jan Dubois <jand@ActiveState.com>
9492              Date: Thu, 28 Dec 2006 19:06:00 -0800
9493              Message-ID: <4e19p2lgme9qbqjkv78q7154vg6hlaar19@4ax.com>
9494      Branch: perl
9495            ! pod/perltodo.pod
9496 ____________________________________________________________________________
9497 [ 29680] By: davem                                 on 2007/01/04  01:03:22
9498         Log: make parser_free actually free the parser!
9499              also remove two SAVEs left over from #29655
9500      Branch: perl
9501            ! perly.c toke.c
9502 ____________________________________________________________________________
9503 [ 29679] By: nicholas                              on 2007/01/03  23:13:43
9504         Log: Rename OURSTASH to SvOURSTASH and OURSTASH_set to SvOURSTASH_set.
9505      Branch: perl
9506            ! dump.c pad.c pad.h sv.c sv.h
9507 ____________________________________________________________________________
9508 [ 29678] By: davem                                 on 2007/01/03  22:17:48
9509         Log: handle cloning of parsers on the save stack
9510      Branch: perl
9511            ! perly.c scope.c scope.h sv.c
9512 ____________________________________________________________________________
9513 [ 29677] By: nicholas                              on 2007/01/03  22:02:49
9514         Log: Teach dump about OURSTASH and COP ranges stored in the NV union.
9515      Branch: perl
9516            ! dump.c
9517 ____________________________________________________________________________
9518 [ 29676] By: stevep                                on 2007/01/03  18:23:32
9519         Log: Subject: [PATCH] Update change 29607 to affect only Win32
9520              From: Jan Dubois <jand@ActiveState.com>
9521              Date: Wed, 03 Jan 2007 08:48:22 -0800
9522              Message-ID: <f9nnp2lf4hsb74jf9unlsj59ahsf4f1o1v@4ax.com>
9523      Branch: perl
9524            ! lib/blib.pm
9525 ____________________________________________________________________________
9526 [ 29675] By: steveh                                on 2007/01/03  17:56:16
9527         Log: Subject: [PATCH] Use short pathnames in $^X and @INC if the long form cannot be represented in the current codepage
9528              From: Jan Dubois <jand@ActiveState.com>
9529              Date: Thu, 28 Dec 2006 18:59:40 -0800
9530              Message-ID: <vq09p2p09k6rcu6c9t0mab3vnc335ghg9m@4ax.com>
9531              
9532              Subject: Re: [PATCH] Use short pathnames in $^X and @INC if the long form cannot be represented in the current codepage
9533              From: Jan Dubois <jand@ActiveState.com>
9534              Date: Wed, 03 Jan 2007 08:12:35 -0800
9535              Message-ID: <orknp2pj17265modfosjkp2qtt4bdgtgjp@4ax.com>
9536      Branch: perl
9537            ! makedef.pl win32/perlhost.h win32/perllib.c win32/vdir.h
9538            ! win32/win32.c win32/win32iop.h
9539 ____________________________________________________________________________
9540 [ 29674] By: stevep                                on 2007/01/03  17:02:53
9541         Log: Subject: [PATCH] Re: g++ unhappy
9542              From: Jarkko Hietaniemi <jhi@iki.fi>
9543              Date: Mon, 01 Jan 2007 14:35:46 -0500
9544              Message-ID: <45996292.5090000@iki.fi>
9545      Branch: perl
9546            ! regcomp.c
9547 ____________________________________________________________________________
9548 [ 29673] By: nicholas                              on 2007/01/03  15:17:29
9549         Log: Make the ptr_table functions available in an unthreaded perl, as other
9550              code (such as Storable) can take advantage of them.
9551      Branch: perl
9552            ! embed.fnc embed.h intrpvar.h makedef.pl proto.h sv.c
9553 ____________________________________________________________________________
9554 [ 29672] By: stevep                                on 2007/01/03  13:56:57
9555         Log: Subject: [PATCH] IO::Compress::* 2.003
9556              From: "Paul Marquess" <Paul.Marquess@ntlworld.com>
9557              Date: Tue, 2 Jan 2007 13:14:26 -0000
9558              Message-ID: <02ca01c72e6f$eef88360$6401a8c0@myopwv.com>
9559      Branch: perl
9560            ! ext/Compress/Raw/Zlib/Changes ext/Compress/Raw/Zlib/README
9561            ! ext/Compress/Raw/Zlib/lib/Compress/Raw/Zlib.pm
9562            ! ext/Compress/Zlib/Changes ext/Compress/Zlib/Makefile.PL
9563            ! ext/Compress/Zlib/README
9564            ! ext/Compress/Zlib/lib/Compress/Zlib.pm
9565            ! ext/IO/Compress/Base/Changes ext/IO/Compress/Base/README
9566            ! ext/IO/Compress/Base/lib/IO/Compress/Base.pm
9567            ! ext/IO/Compress/Base/lib/IO/Compress/Base/Common.pm
9568            ! ext/IO/Compress/Base/lib/IO/Uncompress/AnyUncompress.pm
9569            ! ext/IO/Compress/Base/lib/IO/Uncompress/Base.pm
9570            ! ext/IO/Compress/Zlib/Changes ext/IO/Compress/Zlib/Makefile.PL
9571            ! ext/IO/Compress/Zlib/README
9572            ! ext/IO/Compress/Zlib/lib/IO/Compress/Adapter/Deflate.pm
9573            ! ext/IO/Compress/Zlib/lib/IO/Compress/Adapter/Identity.pm
9574            ! ext/IO/Compress/Zlib/lib/IO/Compress/Deflate.pm
9575            ! ext/IO/Compress/Zlib/lib/IO/Compress/Gzip.pm
9576            ! ext/IO/Compress/Zlib/lib/IO/Compress/Gzip/Constants.pm
9577            ! ext/IO/Compress/Zlib/lib/IO/Compress/RawDeflate.pm
9578            ! ext/IO/Compress/Zlib/lib/IO/Compress/Zip.pm
9579            ! ext/IO/Compress/Zlib/lib/IO/Compress/Zip/Constants.pm
9580            ! ext/IO/Compress/Zlib/lib/IO/Compress/Zlib/Constants.pm
9581            ! ext/IO/Compress/Zlib/lib/IO/Compress/Zlib/Extra.pm
9582            ! ext/IO/Compress/Zlib/lib/IO/Uncompress/Adapter/Identity.pm
9583            ! ext/IO/Compress/Zlib/lib/IO/Uncompress/Adapter/Inflate.pm
9584            ! ext/IO/Compress/Zlib/lib/IO/Uncompress/AnyInflate.pm
9585            ! ext/IO/Compress/Zlib/lib/IO/Uncompress/Gunzip.pm
9586            ! ext/IO/Compress/Zlib/lib/IO/Uncompress/Inflate.pm
9587            ! ext/IO/Compress/Zlib/lib/IO/Uncompress/RawInflate.pm
9588            ! ext/IO/Compress/Zlib/lib/IO/Uncompress/Unzip.pm
9589 ____________________________________________________________________________
9590 [ 29671] By: stevep                                on 2007/01/03  01:46:41
9591         Log: Upgrade to Time-HiRes-1.9704
9592      Branch: perl
9593            ! ext/Time/HiRes/Changes ext/Time/HiRes/HiRes.pm
9594            ! ext/Time/HiRes/HiRes.xs ext/Time/HiRes/t/HiRes.t
9595 ____________________________________________________________________________
9596 [ 29670] By: nicholas                              on 2007/01/02  21:45:08
9597         Log: Update copyright years to include 2007. (Plus a couple of 2006s and
9598              earlier we missed in av.h and hv.h)
9599      Branch: perl
9600            ! av.h cv.h dump.c hv.h op.c parser.h perly.c sv.h
9601 ____________________________________________________________________________
9602 [ 29669] By: nicholas                              on 2007/01/02  21:10:13
9603         Log: Assignment to a tainted variable was causing confusion if the source
9604              value was an NV too large for an IV (bug #40708). Fix the confusion
9605              by not promoting private flags to public flags in S_save_magic if
9606              there are already public flags.
9607      Branch: perl
9608            ! mg.c t/op/taint.t
9609 ____________________________________________________________________________
9610 [ 29668] By: nicholas                              on 2007/01/02  20:47:31
9611         Log: PVMG can be isUV too.
9612      Branch: perl
9613            ! dump.c ext/Devel/Peek/t/Peek.t
9614 ____________________________________________________________________________
9615 [ 29667] By: davem                                 on 2007/01/02  19:44:23
9616         Log: fix -Mad build breakage
9617      Branch: perl
9618            ! perly.c
9619 ____________________________________________________________________________
9620 [ 29666] By: nicholas                              on 2007/01/02  18:14:26
9621         Log: Copying to FORMATs should work (and not fail assertions if the value
9622              is floating point). Copying to ARRAYs and HASHes can't work and should
9623              croak.
9624      Branch: perl
9625            ! pod/perldiag.pod sv.c
9626 ____________________________________________________________________________
9627 [ 29665] By: nicholas                              on 2007/01/02  17:41:06
9628         Log: It's good to be able to dump FORMATs too :-)
9629      Branch: perl
9630            ! cv.h
9631 ____________________________________________________________________________
9632 [ 29664] By: nicholas                              on 2007/01/02  16:28:48
9633         Log: Remove the vestigal "#if 0"s from header files that defined same-sized
9634              *allocated structs, as these are not going to be needed again.
9635      Branch: perl
9636            ! av.h hv.h sv.h
9637 ____________________________________________________________________________
9638 [ 29663] By: nicholas                              on 2007/01/02  16:05:02
9639         Log: Probably better to make PAD_FAKELEX_ANON and PAD_FAKELEX_MULTI special
9640              cases, instead of scanning pad.h to find them, and picking up 3 other
9641              superfluous definitions as a side effect.
9642      Branch: perl
9643            ! ext/B/defsubs_h.PL ext/B/t/concise-xs.t
9644 ____________________________________________________________________________
9645 [ 29662] By: nicholas                              on 2007/01/02  14:55:29
9646         Log: Note that the examples for the structure copying bug example are no
9647              longer relevant because of the XPVGV re-ordering.
9648      Branch: perl
9649            ! sv.c
9650 ____________________________________________________________________________
9651 [ 29661] By: steveh                                on 2007/01/02  14:50:56
9652         Log: Fix a couple of linker errors on Win32
9653      Branch: perl
9654            ! makedef.pl
9655 ____________________________________________________________________________
9656 [ 29660] By: davem                                 on 2007/01/02  14:02:40
9657         Log: remove conflict in pending_ident function and field name
9658      Branch: perl
9659            ! embed.fnc embed.h proto.h toke.c
9660 ____________________________________________________________________________
9661 [ 29659] By: steveh                                on 2007/01/02  11:18:26
9662         Log: Check miniperl exists before using it to run uupacktool.pl
9663              during distclean
9664      Branch: perl
9665            ! win32/Makefile win32/makefile.mk
9666 ____________________________________________________________________________
9667 [ 29658] By: merijn                                on 2007/01/02  07:15:38
9668         Log: Subject: [PATCH] Configure test code fails to compile if SIGFPE is undefined
9669              From: Marcus Holland-Moritz <mhx-perl@gmx.net>
9670              Date: Tue, 2 Jan 2007 00:08:27 +0100
9671              Message-ID: <20070102000827.7acf11c8@r2d2>
9672      Branch: perl
9673            ! Configure
9674 ____________________________________________________________________________
9675 [ 29656] By: davem                                 on 2007/01/02  02:19:20
9676         Log: Subject:  [PATCH] really should test compile in AIX or something (fixup after the Series 90 patch)
9677              From:  Jarkko Hietaniemi <jhi@cc.hut.fi>
9678              Date:  Tue, 2 Jan 2007 03:15:42 +0200 (EET)
9679              Message-Id:  <200701020115.l021FgtC495074@kosh.hut.fi>
9680      Branch: perl
9681            ! makedef.pl
9682 ____________________________________________________________________________
9683 [ 29655] By: davem                                 on 2007/01/02  01:51:05
9684         Log: move easy lexer state variables into PL_parser
9685              (where "easy" == "only appear in toke.c")
9686      Branch: perl
9687            ! embed.fnc embed.h embedvar.h intrpvar.h parser.h perl.h
9688            ! perlapi.h perly.c proto.h sv.c toke.c
9689 ____________________________________________________________________________
9690 [ 29654] By: stevep                                on 2007/01/02  00:07:52
9691         Log: Quiet a smoke warning in toke.c and bump the copyright year.
9692      Branch: perl
9693            ! toke.c
9694 ____________________________________________________________________________
9695 [ 29653] By: stevep                                on 2007/01/01  22:48:33
9696         Log: Welcome to 2007!  Time to update copyrights from changes earlier
9697              today.
9698      Branch: perl
9699            ! embed.h embed.pl embedvar.h global.sym hv.c mg.c perl.h
9700            ! perlapi.c perlapi.h proto.h sv.c util.c
9701 ____________________________________________________________________________
9702 [ 29652] By: davem                                 on 2007/01/01  22:37:40
9703         Log: split parser initialisation from parser execution
9704      Branch: perl
9705            ! embed.fnc embed.h parser.h perly.c proto.h toke.c
9706 ____________________________________________________________________________
9707 [ 29651] By: stevep                                on 2007/01/01  19:30:05
9708         Log: Add file missed in change #29650.
9709      Branch: perl
9710            + symbian/PerlUiS90.rss
9711 ____________________________________________________________________________
9712 [ 29650] By: stevep                                on 2007/01/01  15:41:48
9713         Log: Subject: [PATCH] Symbian port: add Series 90 support
9714              From: Jarkko Hietaniemi <jhi@iki.fi>
9715              Date: Mon, 01 Jan 2007 08:49:03 -0500
9716              Message-ID: <4599114F.8020307@iki.fi>
9717      Branch: perl
9718            ! MANIFEST README.symbian embed.fnc embed.h embedvar.h
9719            ! global.sym hv.c intrpvar.h lib/ExtUtils/Constant/ProxySubs.pm
9720            ! mg.c perl.h perlapi.h perlio.c pod/perlapi.pod proto.h sv.c
9721            ! symbian/PerlApp.cpp symbian/PerlApp.h symbian/PerlUi.cpp
9722            ! symbian/PerlUi.h symbian/config.pl symbian/config.sh
9723            ! symbian/cwd.pl symbian/install.cfg symbian/makesis.pl
9724            ! symbian/sdk.pl symbian/xsbuild.pl util.c
9725 ____________________________________________________________________________
9726 [ 29649] By: davem                                 on 2007/01/01  11:24:07
9727         Log: split parser stack from parser object
9728      Branch: perl
9729            ! parser.h perly.c
9730 ____________________________________________________________________________
9731 [ 29648] By: davem                                 on 2006/12/31  18:56:37
9732         Log: in lex_start(), ensure that all lexer state vars are saved
9733              and re-initialised. This is mostly overkill, but mimicks the
9734              effect of having all the vars in a single parser object.
9735      Branch: perl
9736            ! toke.c
9737 ____________________________________________________________________________
9738 [ 29647] By: nicholas                              on 2006/12/31  16:58:18
9739         Log: Rationalise the logic in lex_start for creating a new temporary if the
9740              passed in SV is read only or doesn't end in ';'. Also, allow a NULL
9741              pointer to imply a zero length string, which saves creating a mortal
9742              in pp_require, only for it to be ignored in favour of a new SV.
9743      Branch: perl
9744            ! embed.fnc pp_ctl.c proto.h toke.c
9745 ____________________________________________________________________________
9746 [ 29646] By: stevep                                on 2006/12/31  16:37:54
9747         Log: Fix to test failures caused by change #29606 when PERLIO=stdio.
9748              Based on suggestions from Ilya Zakharevich in 
9749              http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2006-12/msg00646.html
9750      Branch: perl
9751            ! lib/SelfLoader.pm
9752 ____________________________________________________________________________
9753 [ 29645] By: merijn                                on 2006/12/31  13:58:57
9754         Log: Subject: [PATCH] smoke signs suppression
9755              From: Jarkko Hietaniemi <jhi@iki.fi>
9756              Date: Sun, 31 Dec 2006 08:51:52 -0500
9757              Message-ID: <4597C078.4000503@iki.fi>
9758      Branch: perl
9759            ! iperlsys.h perly.c regcomp.c
9760 ____________________________________________________________________________
9761 [ 29644] By: nicholas                              on 2006/12/31  12:31:09
9762         Log: As freeing up PL_linestr is now done via the scope stack, there's no
9763              need to make any temporary varariable a mortal, and waste effort on
9764              the temp stack (not) clearing it up.
9765      Branch: perl
9766            ! toke.c
9767 ____________________________________________________________________________
9768 [ 29643] By: nicholas                              on 2006/12/31  12:07:37
9769         Log: PL_linestr needs to survive until the end of scope, not just the next
9770              FREETMPS. Fixes the underlying cause of the thread cloning SEGV
9771              reported in http://www.nntp.perl.org/group/perl.perl5.porters/63123
9772      Branch: perl
9773            + t/op/threads_create.pl
9774            ! MANIFEST sv.c t/op/threads.t toke.c
9775 ____________________________________________________________________________
9776 [ 29642] By: nicholas                              on 2006/12/31  00:08:00
9777         Log: Move SVt_BIND to be the lowest type after SVt_NULL. This will force all
9778              code attempting to upgrade a BIND to anything into sv_upgrade(), which
9779              for now will croak, but in future can DTRT, for whatever TRT is decided
9780              to be. Make SvOK() check the flags of the referenant for a BIND, as I
9781              envisage that the only flag bit that will get set on a BIND is SVf_UTF8
9782              even if the referant has a defined value.
9783      Branch: perl
9784            ! dump.c ext/B/B.xs sv.c sv.h
9785 ____________________________________________________________________________
9786 [ 29641] By: stevep                                on 2006/12/30  05:55:53
9787         Log: Subject: [PATCH] Update Compress Modules to version 2.002
9788              From: "Paul Marquess" <Paul.Marquess@ntlworld.com>
9789              Date: Fri, 29 Dec 2006 20:50:26 -0000
9790              Message-ID: <000501c72b8a$f96b2ba0$6401a8c0@myopwv.com>
9791      Branch: perl
9792            ! ext/Compress/Raw/Zlib/Changes ext/Compress/Raw/Zlib/README
9793            ! ext/Compress/Raw/Zlib/lib/Compress/Raw/Zlib.pm
9794            ! ext/Compress/Zlib/Changes ext/Compress/Zlib/README
9795            ! ext/Compress/Zlib/lib/Compress/Zlib.pm
9796            ! ext/Compress/Zlib/t/03zlib-v1.t ext/Compress/Zlib/t/14gzopen.t
9797            ! ext/IO/Compress/Base/Changes ext/IO/Compress/Base/README
9798            ! ext/IO/Compress/Base/lib/IO/Compress/Base.pm
9799            ! ext/IO/Compress/Base/lib/IO/Compress/Base/Common.pm
9800            ! ext/IO/Compress/Base/lib/IO/Uncompress/AnyUncompress.pm
9801            ! ext/IO/Compress/Base/lib/IO/Uncompress/Base.pm
9802            ! ext/IO/Compress/Base/t/01misc.t ext/IO/Compress/Zlib/Changes
9803            ! ext/IO/Compress/Zlib/README
9804            ! ext/IO/Compress/Zlib/lib/IO/Compress/Adapter/Deflate.pm
9805            ! ext/IO/Compress/Zlib/lib/IO/Compress/Adapter/Identity.pm
9806            ! ext/IO/Compress/Zlib/lib/IO/Compress/Deflate.pm
9807            ! ext/IO/Compress/Zlib/lib/IO/Compress/Gzip.pm
9808            ! ext/IO/Compress/Zlib/lib/IO/Compress/Gzip/Constants.pm
9809            ! ext/IO/Compress/Zlib/lib/IO/Compress/RawDeflate.pm
9810            ! ext/IO/Compress/Zlib/lib/IO/Compress/Zip.pm
9811            ! ext/IO/Compress/Zlib/lib/IO/Compress/Zip/Constants.pm
9812            ! ext/IO/Compress/Zlib/lib/IO/Compress/Zlib/Constants.pm
9813            ! ext/IO/Compress/Zlib/lib/IO/Compress/Zlib/Extra.pm
9814            ! ext/IO/Compress/Zlib/lib/IO/Uncompress/Adapter/Identity.pm
9815            ! ext/IO/Compress/Zlib/lib/IO/Uncompress/Adapter/Inflate.pm
9816            ! ext/IO/Compress/Zlib/lib/IO/Uncompress/AnyInflate.pm
9817            ! ext/IO/Compress/Zlib/lib/IO/Uncompress/Gunzip.pm
9818            ! ext/IO/Compress/Zlib/lib/IO/Uncompress/Inflate.pm
9819            ! ext/IO/Compress/Zlib/lib/IO/Uncompress/RawInflate.pm
9820            ! ext/IO/Compress/Zlib/lib/IO/Uncompress/Unzip.pm
9821            ! t/lib/compress/CompTestUtils.pm t/lib/compress/multi.pl
9822            ! t/lib/compress/oneshot.pl
9823 ____________________________________________________________________________
9824 [ 29640] By: davem                                 on 2006/12/30  01:18:18
9825         Log: fix a test failing under -Dmad
9826      Branch: perl
9827            ! ext/List/Util/t/weak.t
9828 ____________________________________________________________________________
9829 [ 29639] By: nicholas                              on 2006/12/29  16:20:39
9830         Log: With xlow and xhigh as U32, PAD_MAX shouldn't be IV_MAX, as on a 64 bit
9831              system this can't be stored.
9832      Branch: perl
9833            ! pad.c
9834 ____________________________________________________________________________
9835 [ 29638] By: nicholas                              on 2006/12/29  14:42:03
9836         Log: I failed to run regen.pl to propagate my pad.c changes to perlintern.pod
9837      Branch: perl
9838            ! pod/perlintern.pod
9839 ____________________________________________________________________________
9840 [ 29637] By: nicholas                              on 2006/12/29  00:17:18
9841         Log: In Perl_fbm_compile, really rarest should be U32 not I32, as it is
9842              set from a U32, and used as an array index.
9843      Branch: perl
9844            ! util.c
9845 ____________________________________________________________________________
9846 [ 29636] By: davem                                 on 2006/12/29  00:08:35
9847         Log: further fix for #29543: fix parser leaks caused by croaking
9848      Branch: perl
9849            ! dump.c op.c op.h perly.c t/comp/parser.t
9850 ____________________________________________________________________________
9851 [ 29635] By: nicholas                              on 2006/12/28  23:57:16
9852         Log: Eliminate BmPREVIOUS_set - with the complexity gone from how the datum
9853              is stored, there's no need for it.
9854      Branch: perl
9855            ! sv.h util.c
9856 ____________________________________________________________________________
9857 [ 29634] By: nicholas                              on 2006/12/28  23:35:54
9858         Log: Move all the FBM data fields from the table into a struct xbm_s which
9859              is part of the xnv union.
9860      Branch: perl
9861            ! av.h cv.h hv.h sv.h util.c
9862 ____________________________________________________________________________
9863 [ 29633] By: nicholas                              on 2006/12/28  22:40:37
9864         Log: With PAD_COMPNAME_GEN in SvUVX, SvCUR is trustworthy once more.
9865      Branch: perl
9866            ! op.c pad.h sv.c
9867 ____________________________________________________________________________
9868 [ 29632] By: nicholas                              on 2006/12/28  22:03:56
9869         Log: Move PAD_COMPNAME_GEN from SvCUR to SvUVX.
9870      Branch: perl
9871            ! op.c pad.c pad.h
9872 ____________________________________________________________________________
9873 [ 29631] By: nicholas                              on 2006/12/28  21:41:52
9874         Log: Move PAD_FAKELEX_ANON and PAD_FAKELEX_MULTI to pad.h, export them via
9875              B.pm, so that B::Concise doesn't need to hard code magic numbers.
9876      Branch: perl
9877            ! ext/B/B/Concise.pm ext/B/defsubs_h.PL ext/B/t/concise-xs.t
9878            ! pad.c pad.h
9879 ____________________________________________________________________________
9880 [ 29630] By: nicholas                              on 2006/12/28  21:21:22
9881         Log: Move the low/high cop sequences from NVX/IVX to a two U32 structure
9882              in the xnv union. This frees up IVX for the PL_generation code, which
9883              in turn will allow SvCUR to return to its real purpose.
9884      Branch: perl
9885            ! av.h cv.h hv.h pad.c pad.h sv.h
9886 ____________________________________________________________________________
9887 [ 29629] By: nicholas                              on 2006/12/28  20:02:03
9888         Log: Abstract the pad code's overloaded use of SvNVX and SvIVX into
9889              4 macros COP_SEQ_RANGE_LOW, COP_SEQ_RANGE_HIGH, PARENT_PAD_INDEX
9890              and PARENT_FAKELEX_FLAGS
9891      Branch: perl
9892            ! ext/B/B.pm ext/B/B.xs ext/B/B/Concise.pm ext/B/B/Deparse.pm
9893            ! pad.c pad.h
9894 ____________________________________________________________________________
9895 [ 29628] By: nicholas                              on 2006/12/28  17:55:06
9896         Log: Change PAD_MAX to something a bit less FORTRAN-ish than 999999999.
9897      Branch: perl
9898            ! pad.c
9899 ____________________________________________________________________________
9900 [ 29627] By: stevep                                on 2006/12/27  19:36:13
9901         Log: Upgrade to Errno-1.10 (!).  I have left the core tests as is for
9902              now as well as for Makefile.PL, which need some looking into.
9903      Branch: perl
9904            ! ext/Errno/ChangeLog ext/Errno/Errno_pm.PL
9905 ____________________________________________________________________________
9906 [ 29626] By: nicholas                              on 2006/12/27  15:27:58
9907         Log: Subject: [PATCH] Macroize char class tests in case to remove duplicated code.
9908              From: demerphq <demerphq@gmail.com>
9909              Message-ID: <9b18b3110612270237i40e5ef34ud80898459ee338eb@mail.gmail.com>
9910              Date: Wed, 27 Dec 2006 11:37:36 +0100
9911      Branch: perl
9912            ! regcomp.c
9913 ____________________________________________________________________________
9914 [ 29625] By: stevep                                on 2006/12/27  14:13:27
9915         Log: Upgrade to CPAN-1.83_66.
9916      Branch: perl
9917            + lib/CPAN/Kwalify.pm lib/CPAN/Kwalify/distroprefs.dd
9918            + lib/CPAN/Kwalify/distroprefs.yml
9919            ! MANIFEST lib/CPAN.pm lib/CPAN/FirstTime.pm
9920            ! lib/CPAN/HandleConfig.pm lib/CPAN/Version.pm
9921            ! lib/CPAN/t/10version.t
9922 ____________________________________________________________________________
9923 [ 29624] By: stevep                                on 2006/12/26  15:53:57
9924         Log: Cannot use a L<> within a preformatted section of a Pod document.
9925      Branch: perl
9926            ! pod/perlreref.pod
9927 ____________________________________________________________________________
9928 [ 29623] By: rgs                                   on 2006/12/26  14:22:15
9929         Log: Subject: Re: Named-capture regex syntax
9930              From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
9931              Date: Tue, 26 Dec 2006 23:11:38 +0900
9932              Message-Id: <20061226231027.8320.BQW10602@nifty.com>
9933      Branch: perl
9934            ! t/op/pat.t
9935 ____________________________________________________________________________
9936 [ 29622] By: rgs                                   on 2006/12/25  17:09:07
9937         Log: Fix a couple of warnings
9938      Branch: perl
9939            ! regcomp.c
9940 ____________________________________________________________________________
9941 [ 29621] By: rgs                                   on 2006/12/25  17:03:14
9942         Log: Subject: Re: Named-capture regex syntax
9943              From: demerphq <demerphq@gmail.com>
9944              Date: Sun, 24 Dec 2006 14:38:15 +0100
9945              Message-ID: <9b18b3110612240538m5c45654br7d27171835f6664@mail.gmail.com>
9946      Branch: perl
9947            ! pod/perldiag.pod pod/perlre.pod regcomp.c regcomp.h t/op/pat.t
9948            ! t/op/re_tests
9949 ____________________________________________________________________________
9950 [ 29620] By: rgs                                   on 2006/12/24  09:28:22
9951         Log: The PERLIO environment variable, when unset, doesn't default to :stdio.
9952      Branch: perl
9953            ! pod/perlrun.pod
9954 ____________________________________________________________________________
9955 [ 29619] By: rgs                                   on 2006/12/23  16:15:50
9956         Log: Fix #6006 for taint mode too.
9957      Branch: perl
9958            ! op.c t/op/subst.t
9959 ____________________________________________________________________________
9960 [ 29618] By: rgs                                   on 2006/12/23  15:52:27
9961         Log: Remove -T from op/subst.t, and add a new test file, substT.t,
9962              to run the s/// tests under taint mode; mark the test for
9963              RT #6006 as TODO, but only with -T.
9964      Branch: perl
9965            + t/op/substT.t
9966            ! MANIFEST t/op/subst.t
9967 ____________________________________________________________________________
9968 [ 29617] By: rgs                                   on 2006/12/23  15:38:50
9969         Log: A better fix for RT #6006: revert change 29616, which was bogus,
9970              and add OP_SCOPE to the list of "dangerous" ops that might appear
9971              on the right side of s///.
9972              However, this fix does not work under taint mode, and op/subst.t
9973              has -T.
9974      Branch: perl
9975            ! op.c
9976 ____________________________________________________________________________
9977 [ 29616] By: rgs                                   on 2006/12/23  13:52:02
9978         Log: Fix RT #6006: Regexp replaces using large replacement variables fail
9979              some of the time (i.e. when the substitution contains something
9980              like ${10}). Patch derived from a patch by Hugo van der Sanden;
9981              added also a second test (Yves Orton already added a TODO test
9982              for this.)
9983      Branch: perl
9984            ! op.c t/op/subst.t
9985 ____________________________________________________________________________
9986 [ 29615] By: rgs                                   on 2006/12/23  12:31:26
9987         Log: Upgrade to Module::Build 0.2806
9988      Branch: perl
9989            + lib/Module/Build/Config.pm
9990            ! MANIFEST lib/Module/Build.pm lib/Module/Build/API.pod
9991            ! lib/Module/Build/Authoring.pod lib/Module/Build/Base.pm
9992            ! lib/Module/Build/Changes lib/Module/Build/Compat.pm
9993            ! lib/Module/Build/Cookbook.pm lib/Module/Build/ModuleInfo.pm
9994            ! lib/Module/Build/PPMMaker.pm
9995            ! lib/Module/Build/Platform/Amiga.pm
9996            ! lib/Module/Build/Platform/Default.pm
9997            ! lib/Module/Build/Platform/EBCDIC.pm
9998            ! lib/Module/Build/Platform/MPEiX.pm
9999            ! lib/Module/Build/Platform/MacOS.pm
10000            ! lib/Module/Build/Platform/RiscOS.pm
10001            ! lib/Module/Build/Platform/Unix.pm
10002            ! lib/Module/Build/Platform/VMS.pm
10003            ! lib/Module/Build/Platform/VOS.pm
10004            ! lib/Module/Build/Platform/Windows.pm
10005            ! lib/Module/Build/Platform/aix.pm
10006            ! lib/Module/Build/Platform/darwin.pm
10007            ! lib/Module/Build/Platform/os2.pm lib/Module/Build/Version.pm
10008            ! lib/Module/Build/t/basic.t lib/Module/Build/t/ext.t
10009            ! lib/Module/Build/t/extend.t lib/Module/Build/t/metadata.t
10010            ! lib/Module/Build/t/moduleinfo.t lib/Module/Build/t/xs.t
10011 ____________________________________________________________________________
10012 [ 29614] By: rgs                                   on 2006/12/23  11:45:28
10013         Log: syswrite() wasn't reporting a warning when writing to a filehandle
10014              opened only for input.
10015      Branch: perl
10016            ! pp_sys.c t/lib/warnings/pp_sys
10017 ____________________________________________________________________________
10018 [ 29613] By: rgs                                   on 2006/12/22  15:44:51
10019         Log: The Perl 6 specification is still evolving, so don't refer to it.
10020      Branch: perl
10021            ! pod/perlsyn.pod
10022 ____________________________________________________________________________
10023 [ 29612] By: stevep                                on 2006/12/22  15:18:02
10024         Log: miniperl may not have been successfully built before running a
10025              "make distclean".
10026      Branch: perl
10027            ! Makefile.SH
10028 ____________________________________________________________________________
10029 [ 29611] By: stevep                                on 2006/12/22  14:53:17
10030         Log: Silence an unused variable warning in sv.c.
10031      Branch: perl
10032            ! sv.h
10033 ____________________________________________________________________________
10034 [ 29610] By: rgs                                   on 2006/12/22  11:30:47
10035         Log: Unshare the shared string gp_file_hek only if it exists in a GP.
10036              Not doing this will produce invalid frees in the global destruction
10037              process, probably because the empty string will get freed several
10038              times. This should be safe since gp_file_hek is only assigned a
10039              new value with share_hek().
10040      Branch: perl
10041            ! gv.c
10042 ____________________________________________________________________________
10043 [ 29609] By: rgs                                   on 2006/12/21  10:24:05
10044         Log: Upgrade to Text::Balanced 2.0.0
10045      Branch: perl
10046            ! lib/Text/Balanced.pm lib/Text/Balanced/Changes
10047            ! lib/Text/Balanced/README lib/Text/Balanced/t/extqlk.t
10048 ____________________________________________________________________________
10049 [ 29608] By: rgs                                   on 2006/12/21  10:12:14
10050         Log: Subject: [PATCH] threads 1.57
10051              From: "Jerry D. Hedden" <jdhedden@yahoo.com>
10052              Date: Wed, 20 Dec 2006 10:30:21 -0800 (PST)
10053              Message-ID: <20061220183021.79793.qmail@web30205.mail.mud.yahoo.com>
10054      Branch: perl
10055            ! ext/threads/Changes ext/threads/README ext/threads/t/exit.t
10056            ! ext/threads/t/join.t ext/threads/t/state.t
10057            ! ext/threads/t/thread.t ext/threads/threads.pm
10058            ! ext/threads/threads.xs
10059 ____________________________________________________________________________
10060 [ 29607] By: rgs                                   on 2006/12/21  09:47:34
10061         Log: Subject: [PATCH] allow blib.pm to be used for testing Win32 module (again)
10062              From: Jan Dubois <jand@ActiveState.com>
10063              Date: Wed, 20 Dec 2006 18:53:51 -0800
10064              Message-ID: <vjtjo21l5ksgeab6k9l46d9pvlg5vf86rt@4ax.com>
10065      Branch: perl
10066            ! lib/blib.pm
10067 ____________________________________________________________________________
10068 [ 29606] By: stevep                                on 2006/12/21  05:47:31
10069         Log: Subject: [PATCH 5.8.8] SelfLoader after fork()
10070              From: Ilya Zakharevich <nospam-abuse@ilyaz.org>
10071              Date: Mon, 18 Dec 2006 01:13:59 -0800
10072              Message-ID: <20061218091359.GA14985@powdermilk.math.berkeley.edu>
10073      Branch: perl
10074            ! lib/SelfLoader.pm
10075 ____________________________________________________________________________
10076 [ 29605] By: stevep                                on 2006/12/21  05:12:28
10077         Log: Subject: [PATCH] Implement killpg() for MSWin32
10078              From: Jan Dubois <jand@ActiveState.com>
10079              Date: Wed, 20 Dec 2006 15:41:00 -0800
10080              Message-ID: <m8hjo2pasv3hdbhd1sj9sasen7tm38hrhp@4ax.com>
10081      Branch: perl
10082            ! win32/config.bc win32/config.gc win32/config.vc
10083            ! win32/config.vc64 win32/config_H.bc win32/config_H.gc
10084            ! win32/config_H.vc win32/config_H.vc64 win32/perlhost.h
10085            ! win32/win32.c win32/win32.h
10086 ____________________________________________________________________________
10087 [ 29604] By: rgs                                   on 2006/12/20  16:13:32
10088         Log: Subject: Re: [PATCH] Making adding binary files possible
10089              From: demerphq <demerphq@gmail.com>
10090              Date: Wed, 20 Dec 2006 16:00:33 +0100
10091              Message-ID: <9b18b3110612200700k48157cd1n1f2305f306b7de32@mail.gmail.com>
10092              
10093              plus matching updates to Makefile.SH and patching.pod
10094      Branch: perl
10095            + uupacktool.pl win32/perlexe.ico.packd
10096            - pack.pl packed_files.pl win32/makeico.pl
10097            ! MANIFEST Makefile.SH Porting/patching.pod win32/Makefile
10098            ! win32/Makefile.ce win32/makefile.mk
10099 ____________________________________________________________________________
10100 [ 29603] By: merijn                                on 2006/12/20  12:58:41
10101         Log: Open Configure to the world of 64bitonly environments
10102      Branch: perl
10103            ! Configure
10104 ____________________________________________________________________________
10105 [ 29601] By: rgs                                   on 2006/12/20  11:15:29
10106         Log: Fix leaks in label strings allocation in COPs
10107      Branch: perl
10108            ! cop.h perly.act perly.h perly.tab perly.y toke.c
10109 ____________________________________________________________________________
10110 [ 29600] By: rgs                                   on 2006/12/20  09:30:06
10111         Log: Don't free the original label string when assigning it to cop_label,
10112              since it comes directly from the parser. (That was making op/goto.t
10113              fail under threads and without debugging on some platforms.)
10114      Branch: perl
10115            ! cop.h
10116 ____________________________________________________________________________
10117 [ 29599] By: stevep                                on 2006/12/20  04:20:14
10118         Log: Subject: [PATCH] threads::shared 1.06
10119              From: "Jerry D. Hedden" <jdhedden@yahoo.com>
10120              Date: Tue, 19 Dec 2006 10:30:47 -0800 (PST)
10121              Message-ID: <525867.40748.qm@web30207.mail.mud.yahoo.com>
10122      Branch: perl
10123            ! ext/threads/shared/Changes ext/threads/shared/README
10124            ! ext/threads/shared/shared.pm ext/threads/shared/shared.xs
10125            ! ext/threads/shared/t/cond.t
10126 ____________________________________________________________________________
10127 [ 29598] By: stevep                                on 2006/12/20  04:14:06
10128         Log: Subject: [PATCH] Update cwd() to return the "short" pathname if the long one doesn't fit the codepage
10129              From: Jan Dubois <jand@ActiveState.com>
10130              Date: Mon, 18 Dec 2006 21:37:25 -0800
10131              Message-ID: <3rteo219or8hqr511e4vg1fnsgvgemb4sh@4ax.com>
10132      Branch: perl
10133            ! win32/perlhost.h win32/vdir.h
10134 ____________________________________________________________________________
10135 [ 29597] By: stevep                                on 2006/12/20  04:07:11
10136         Log: Subject: [PATCH] let readdir() return the alternate (short) filename if the long name is outside the current codepage
10137              From: Jan Dubois <jand@ActiveState.com>
10138              Date: Tue, 19 Dec 2006 13:49:40 -0800
10139              Message-ID: <8nmgo2dr5gtmv00gtfu07g7rdgitr859jk@4ax.com>
10140      Branch: perl
10141            ! win32/win32.c
10142 ____________________________________________________________________________
10143 [ 29596] By: merijn                                on 2006/12/19  19:48:51
10144         Log: Subject: [PATCH] Re: 'localtime' not thread-safe under HP-UX B.11.11/64
10145              From: "Jerry D. Hedden" <jdhedden@yahoo.com>
10146              Date: Mon, 18 Dec 2006 10:18:28 -0800 (PST)
10147              Message-ID: <31291.28361.qm@web30205.mail.mud.yahoo.com>
10148      Branch: perl
10149            ! hints/hpux.sh
10150 ____________________________________________________________________________
10151 [ 29595] By: rgs                                   on 2006/12/19  15:22:24
10152         Log: Proper cleanup for Errno.pm
10153      Branch: perl
10154            ! ext/Errno/Makefile.PL
10155 ____________________________________________________________________________
10156 [ 29594] By: rgs                                   on 2006/12/19  15:14:47
10157         Log: Fix paths of pack.pl in patching.pod
10158      Branch: perl
10159            ! Porting/patching.pod
10160 ____________________________________________________________________________
10161 [ 29593] By: rgs                                   on 2006/12/19  15:07:45
10162         Log: Subject: [PATCH] Making adding binary files possible
10163              From: "Jos Boumans" <kane@dwim.org>
10164              Date: Fri, 15 Dec 2006 20:51:45 +0100 (CET)
10165              Message-ID: <19978.80.127.35.68.1166212305.squirrel@webmail.xs4all.nl>
10166              
10167              with a few tweaks
10168      Branch: perl
10169            + pack.pl packed_files.pl
10170            ! MANIFEST Makefile.SH Porting/patching.pod
10171 ____________________________________________________________________________
10172 [ 29592] By: rgs                                   on 2006/12/19  10:50:13
10173         Log: Add a regression test to verify that POSIX::AUTOLOAD works,
10174              and silence a potential warning from it.
10175      Branch: perl
10176            ! ext/POSIX/POSIX.pm ext/POSIX/t/posix.t
10177 ____________________________________________________________________________
10178 [ 29591] By: rgs                                   on 2006/12/19  10:23:29
10179         Log: Disable strictures in POSIX AUTOLOAD
10180      Branch: perl
10181            ! ext/POSIX/POSIX.pm
10182 ____________________________________________________________________________
10183 [ 29590] By: rgs                                   on 2006/12/19  09:49:30
10184         Log: Subject: [PATCH] Don't destroy the Unicode system environment on Perl startup
10185              From: Jan Dubois <jand@ActiveState.com>
10186              Date: Mon, 18 Dec 2006 16:34:33 -0800
10187              Message-ID: <bsbeo2hama2sdo3kqdbrdhp505caeft6h9@4ax.com>
10188      Branch: perl
10189            ! perl.c
10190 ____________________________________________________________________________
10191 [ 29589] By: davem                                 on 2006/12/19  02:25:19
10192         Log: make -Dpv print 8 parser stack items, not 9
10193      Branch: perl
10194            ! perly.c
10195 ____________________________________________________________________________
10196 [ 29588] By: nicholas                              on 2006/12/18  22:12:36
10197         Log: Making strict et al propagate into autoloaded subroutines seems a
10198              worthy todo.
10199      Branch: perl
10200            ! pod/perltodo.pod
10201 ____________________________________________________________________________
10202 [ 29587] By: nicholas                              on 2006/12/18  22:04:19
10203         Log: Ensure that POSIX.pm is strict and warnings compliant throughout if
10204              the __END__ is temporarily removed.
10205      Branch: perl
10206            ! ext/POSIX/POSIX.pm
10207 ____________________________________________________________________________
10208 [ 29586] By: nicholas                              on 2006/12/18  21:23:43
10209         Log: Given that POSIX already has AutoLoader loaded, move as much as
10210              possible of POSIX::SigRt out to AutoLoadLand, so that it won't be
10211              loaded unless someone starts using the realtime signals interface.
10212      Branch: perl
10213            ! ext/POSIX/POSIX.pm
10214 ____________________________________________________________________________
10215 [ 29585] By: rgs                                   on 2006/12/18  16:06:38
10216         Log: Subject: Re: [PATCH] do not meddle in the affairs of PERL_TRACK_MEMPOOL
10217              From: Jarkko Hietaniemi <jhi@iki.fi>
10218              Date: Sun, 17 Dec 2006 22:17:34 -0500
10219              Message-ID: <4586084E.8040706@iki.fi>
10220              
10221              Introduce CopLABEL() macro to deal with labels attached to COPs.
10222      Branch: perl
10223            ! cop.h op.c scope.h
10224 ____________________________________________________________________________
10225 [ 29584] By: stevep                                on 2006/12/18  15:36:11
10226         Log: Subject: [PATCH blead] Re: [perl #41071] require stringifies code references in tied @INC
10227              From: Rick Delaney <rick@bort.ca>
10228              Date: Fri, 15 Dec 2006 23:28:25 -0500
10229              Message-ID: <20061216042825.GB23501@localhost.localdomain>
10230      Branch: perl
10231            + t/op/inccode-tie.t
10232            ! MANIFEST pp_ctl.c t/op/inccode.t
10233 ____________________________________________________________________________
10234 [ 29583] By: rgs                                   on 2006/12/18  14:43:58
10235         Log: ExtUtils/MakeMaker.pm: WriteEmptyMakefile() was ignoring FIRST_MAKEFILE
10236              
10237              Subject: [PATCH 5.8.8] OS/2 build, small change
10238              From: Ilya Zakharevich <nospam-abuse@ilyaz.org>
10239              Date: Mon, 18 Dec 2006 01:20:12 -0800
10240              Message-ID: <20061218092012.GA15022@powdermilk.math.berkeley.edu>
10241      Branch: perl
10242            ! lib/ExtUtils/MakeMaker.pm
10243 ____________________________________________________________________________
10244 [ 29582] By: rgs                                   on 2006/12/18  14:43:05
10245         Log: lib/perl5db.pl: Remove code now moved to OS2::Process
10246              
10247              Subject: [PATCH 5.8.8] OS/2 build, small change
10248              From: Ilya Zakharevich <nospam-abuse@ilyaz.org>
10249              Date: Mon, 18 Dec 2006 01:20:12 -0800
10250              Message-ID: <20061218092012.GA15022@powdermilk.math.berkeley.edu>
10251      Branch: perl
10252            ! lib/perl5db.pl
10253 ____________________________________________________________________________
10254 [ 29581] By: rgs                                   on 2006/12/18  13:35:18
10255         Log: Bump version number of ExtUtils::MM_Unix after last change
10256      Branch: perl
10257            ! lib/ExtUtils/MM_Unix.pm
10258 ____________________________________________________________________________
10259 [ 29580] By: rgs                                   on 2006/12/18  13:34:00
10260         Log: Subject: [PATCH 5.8.8] OS/2-specific fixes, round II
10261              From: Ilya Zakharevich <nospam-abuse@ilyaz.org>
10262              Date: Mon, 18 Dec 2006 00:45:24 -0800
10263              Message-ID: <20061218084524.GA14866@powdermilk.math.berkeley.edu>
10264      Branch: perl
10265            + os2/OS2/Process/t/os2_atoms.t
10266            + os2/OS2/Process/t/os2_clipboard.t os2/os2_pipe.t
10267            ! MANIFEST emacs/ptags ext/DynaLoader/XSLoader_pm.PL
10268            ! lib/ExtUtils/MM_Unix.pm os2/Makefile.SHs
10269            ! os2/OS2/Process/Process.pm os2/OS2/Process/Process.xs
10270            ! os2/OS2/Process/t/os2_process.t os2/OS2/REXX/DLL/Changes
10271            ! os2/OS2/REXX/DLL/DLL.pm os2/os2.c os2/os2ish.h perl.c util.c
10272 ____________________________________________________________________________
10273 [ 29579] By: rgs                                   on 2006/12/18  11:53:54
10274         Log: ExtUtils::Command is now maintained separately from MakeMaker
10275      Branch: perl
10276            ! Porting/Maintainers.pl
10277 ____________________________________________________________________________
10278 [ 29578] By: rgs                                   on 2006/12/18  11:47:56
10279         Log: Subject: [PATCH 5.8.8] Fixes for the test suite on OS/2
10280              From: Ilya Zakharevich <nospam-abuse@ilyaz.org>
10281              Date: Wed, 13 Dec 2006 18:32:22 -0800
10282              Message-ID: <20061214023222.GA29084@powdermilk.math.berkeley.edu>
10283      Branch: perl
10284            ! ext/IO/t/io_unix.t lib/ExtUtils/t/eu_command.t
10285            ! lib/Time/Local.t os2/OS2/ExtAttr/t/os2_ea.t t/io/fs.t
10286            ! t/op/stat.t
10287 ____________________________________________________________________________
10288 [ 29577] By: rgs                                   on 2006/12/18  10:49:15
10289         Log: Subject: [PATCH 5.8.8] OS/2: survive SIGCHLD
10290              From: Ilya Zakharevich <nospam-abuse@ilyaz.org>
10291              Date: Mon, 18 Dec 2006 00:55:19 -0800
10292              Message-ID: <20061218085519.GA14893@powdermilk.math.berkeley.edu>
10293              
10294              plus a perldiag entry for the new error,
10295              "Maximal count of pending signals (%s) exceeded"
10296      Branch: perl
10297            ! mg.c pod/perldiag.pod
10298 ____________________________________________________________________________
10299 [ 29576] By: rgs                                   on 2006/12/18  10:07:10
10300         Log: Subject: [PATCH] C++: regcomp.c and ext/Time/Piece/Piece.xs
10301              From: Jarkko Hietaniemi <jhi@iki.fi>
10302              Date: Sun, 17 Dec 2006 22:45:29 -0500
10303              Message-ID: <45860ED9.9090808@iki.fi>
10304      Branch: perl
10305            ! ext/Time/Piece/Piece.xs regcomp.c
10306 ____________________________________________________________________________
10307 [ 29575] By: rgs                                   on 2006/12/18  09:58:48
10308         Log: Subject: PATCH: Add =encoding directive to non-latin READMEs
10309              From: Slaven Rezic <slaven@rezic.de>
10310              Date: 16 Dec 2006 11:20:36 +0100
10311              Message-ID: <87wt4sdtvv.fsf@biokovo.herceg.de>
10312      Branch: perl
10313            ! README.cn README.jp README.ko README.tw
10314 ____________________________________________________________________________
10315 [ 29574] By: rgs                                   on 2006/12/18  09:51:09
10316         Log: Subject: [PATCH] perl.c: leak avoidance
10317              From: Jarkko Hietaniemi <jhi@iki.fi>
10318              Date: Sat, 16 Dec 2006 11:48:13 -0500
10319              Message-ID: <4584234D.7070209@iki.fi>
10320      Branch: perl
10321            ! perl.c
10322 ____________________________________________________________________________
10323 [ 29573] By: craigb                                on 2006/12/18  01:15:43
10324         Log: In vms/vms.c, don't prototype decw$term_port until after 
10325              config.h (via perl.h) is included.  That's where USE_VMS_DECTERM
10326              is defined.
10327      Branch: perl
10328            ! vms/vms.c
10329 ____________________________________________________________________________
10330 [ 29572] By: craigb                                on 2006/12/18  01:11:41
10331         Log: Don't try to build Win32 on VMS
10332      Branch: perl
10333            ! configure.com
10334 ____________________________________________________________________________
10335 [ 29571] By: nicholas                              on 2006/12/18  00:27:43
10336         Log: POSIX::SigAction::new can be moved into the AUTOLOAD section.
10337      Branch: perl
10338            ! ext/POSIX/POSIX.pm
10339 ____________________________________________________________________________
10340 [ 29570] By: davem                                 on 2006/12/18  00:24:01
10341         Log: move parser state into new parser object, PL_parser
10342      Branch: perl
10343            + parser.h
10344            ! MANIFEST embedvar.h intrpvar.h perl.h perlapi.h perly.c
10345            ! pod/perlapi.pod pod/perlintern.pod toke.c
10346 ____________________________________________________________________________
10347 [ 29569] By: davem                                 on 2006/12/17  22:21:40
10348         Log: merge the four parser stacks into one
10349      Branch: perl
10350            ! perly.act perly.c regen_perly.pl
10351 ____________________________________________________________________________
10352 [ 29568] By: davem                                 on 2006/12/17  20:00:19
10353         Log: delete dead code and macros from perly.c
10354      Branch: perl
10355            ! perly.c
10356 ____________________________________________________________________________
10357 [ 29567] By: davem                                 on 2006/12/17  19:42:35
10358         Log: unify stacks arithmetic in parser
10359      Branch: perl
10360            ! perly.c
10361 ____________________________________________________________________________
10362 [ 29566] By: nicholas                              on 2006/12/16  23:03:42
10363         Log: Add a new flag SVprv_PCS_IMPORTED (which is a pseudonym for SVf_SCREAM)
10364              to note when a proxy constant subroutine is copied. This allows us to
10365              correctly set GvIMPORTED_CV_on() if the symbol is ever turned into a
10366              real GV.
10367      Branch: perl
10368            + t/lib/proxy_constant_subs.t
10369            ! MANIFEST dump.c gv.c pp_hot.c sv.h
10370 ____________________________________________________________________________
10371 [ 29565] By: nicholas                              on 2006/12/16  16:54:06
10372         Log: Split out the use of SVp_SCREAM for GVs with GPs into a new symbolic
10373              flag SVpgv_GP, and use this in isGV_with_GP_on/off.
10374      Branch: perl
10375            ! dump.c ext/Devel/Peek/t/Peek.t gv.c mg.c sv.c sv.h
10376 ____________________________________________________________________________
10377 [ 29564] By: davem                                 on 2006/12/16  15:37:32
10378         Log: remove extraneous declaration prom perly.tab
10379      Branch: perl
10380            ! perly.tab regen_perly.pl
10381 ____________________________________________________________________________
10382 [ 29563] By: rgs                                   on 2006/12/16  10:03:23
10383         Log: Subject: [PATCH] threads 1.56
10384              From: "Jerry D. Hedden" <jdhedden@yahoo.com>
10385              Date: Fri, 15 Dec 2006 09:22:17 -0800 (PST)
10386              Message-ID: <20061215172217.10959.qmail@web30211.mail.mud.yahoo.com>
10387      Branch: perl
10388            ! ext/threads/Changes ext/threads/README ext/threads/t/err.t
10389            ! ext/threads/t/exit.t ext/threads/t/thread.t
10390            ! ext/threads/threads.pm
10391 ____________________________________________________________________________
10392 [ 29562] By: rgs                                   on 2006/12/16  09:54:47
10393         Log: TODO addition by Jerry D. Hedden.
10394      Branch: perl
10395            ! pod/perltodo.pod
10396 ____________________________________________________________________________
10397 [ 29561] By: davem                                 on 2006/12/16  02:53:59
10398         Log: don't include MAD code when its not needed
10399      Branch: perl
10400            ! op.c
10401 ____________________________________________________________________________
10402 [ 29560] By: davem                                 on 2006/12/16  01:36:28
10403         Log: fix a cast warning in perly.c
10404      Branch: perl
10405            ! perly.c
10406 ____________________________________________________________________________
10407 [ 29559] By: nicholas                              on 2006/12/15  20:14:07
10408         Log: Better documentation for SVf_UTF8. Including SvPV() 1st, SvUTF() 2nd.
10409      Branch: perl
10410            ! sv.h
10411 ____________________________________________________________________________
10412 [ 29558] By: rgs                                   on 2006/12/15  13:51:44
10413         Log: Subject: Re: [PATCH] Errno doesnt rebuild when things it depends on in Config.pm change
10414              From: demerphq <demerphq@gmail.com>
10415              Date: Fri, 15 Dec 2006 12:52:45 +0100
10416              Message-ID: <9b18b3110612150352y2394954bg5acd5ec5fd320d33@mail.gmail.com>
10417      Branch: perl
10418            ! ext/Errno/Makefile.PL
10419 ____________________________________________________________________________
10420 [ 29557] By: rgs                                   on 2006/12/15  10:14:16
10421         Log: Subject: [PATCH] threads 1.54 - Adds ->error() method
10422              From: "Jerry D. Hedden" <jdhedden@yahoo.com>
10423              Date: Thu, 14 Dec 2006 11:17:47 -0800 (PST)
10424              Message-ID: <20061214191748.98286.qmail@web30209.mail.mud.yahoo.com>
10425      Branch: perl
10426            + ext/threads/t/err.t
10427            ! MANIFEST ext/threads/Changes ext/threads/README
10428            ! ext/threads/t/exit.t ext/threads/t/libc.t
10429            ! ext/threads/t/thread.t ext/threads/threads.pm
10430            ! ext/threads/threads.xs
10431 ____________________________________________________________________________
10432 [ 29556] By: steveh                                on 2006/12/14  16:24:29
10433         Log: Silence a warning from (MinGW's) gcc
10434      Branch: perl
10435            ! ext/Time/Piece/Piece.xs
10436 ____________________________________________________________________________
10437 [ 29555] By: rgs                                   on 2006/12/14  12:43:20
10438         Log: Subject: [PATCH] perl5db.pl Mac OS X fix
10439              From: Bo Lindbergh <blgl@hagernas.com>
10440              Date: Thu, 14 Dec 2006 13:34:06 +0100
10441              Message-Id: <658AFA03-517E-4068-93CA-06D4A93B5CA5@hagernas.com>
10442      Branch: perl
10443            ! lib/perl5db.pl
10444 ____________________________________________________________________________
10445 [ 29554] By: nicholas                              on 2006/12/14  11:23:16
10446         Log: Turn a tab into 2 spaces to make more room for comments about SV flags.
10447              Sorry about damaging the change history - dig through this change with
10448              http://public.activestate.com/cgi-bin/perlbrowse?show_blame=Show+Annotated+File&filename=sv.h&rev=&change=29552
10449      Branch: perl
10450            ! sv.h
10451 ____________________________________________________________________________
10452 [ 29553] By: steveh                                on 2006/12/14  09:37:45
10453         Log: Silence a VC compiler warning
10454      Branch: perl
10455            ! op.c
10456 ____________________________________________________________________________
10457 [ 29552] By: nicholas                              on 2006/12/13  20:56:24
10458         Log: Swap the order of PERL_FBM_PREVIOUS_{L,H}_OFFSET_FROM_TABLE on little
10459              endian machines to hint to the compiler that a 16 bit read could work.
10460      Branch: perl
10461            ! sv.h
10462 ____________________________________________________________________________
10463 [ 29551] By: nicholas                              on 2006/12/13  19:55:08
10464         Log: Restore the two comments describing BmRARE and BmPREVIOUS that I'd
10465              inadvertently deleted. Explain the setting and testing of
10466              SVpbm_VALID.
10467      Branch: perl
10468            ! sv.h
10469 ____________________________________________________________________________
10470 [ 29550] By: stevep                                on 2006/12/13  19:53:02
10471         Log: Subject: [PATCH 5.8.8] Text mode wrongly set on pipe file descriptors
10472              From: Ilya Zakharevich <nospam-abuse@ilyaz.org>
10473              Date: Tue, 12 Dec 2006 23:28:25 -0800
10474              Message-ID: <20061213072825.GA26300@powdermilk.math.berkeley.edu>
10475      Branch: perl
10476            ! t/io/pipe.t util.c
10477 ____________________________________________________________________________
10478 [ 29549] By: davem                                 on 2006/12/13  17:24:49
10479         Log: make -Dpv display the parser stack before reduction
10480              (rather than afterwards)
10481      Branch: perl
10482            ! perly.c
10483 ____________________________________________________________________________
10484 [ 29548] By: davem                                 on 2006/12/13  17:16:22
10485         Log: misc MAD coredump fixes and parser leak fixes
10486              
10487              - fix MAD coredump in tr///
10488              - fix mad coredump in multi-line string literals
10489              - kill some MAD uninit value warnings
10490              - don't allow assignment to $n in perly.y
10491              - make op_dump handle op_latefree flags
10492      Branch: perl
10493            ! dump.c op.c perly.act perly.h perly.tab perly.y regen_perly.pl
10494            ! toke.c
10495 ____________________________________________________________________________
10496 [ 29547] By: davem                                 on 2006/12/13  12:47:35
10497         Log: fix double free introduced by #29543 (spotted by Nicholas)
10498      Branch: perl
10499            ! op.c
10500 ____________________________________________________________________________
10501 [ 29546] By: rgs                                   on 2006/12/13  10:40:36
10502         Log: Subject: [PATCH] t/op/groups.t: prevent failure on modern FreeBSDs
10503              From: Anton Berezin <tobez@tobez.org>
10504              Date: Tue, 12 Dec 2006 19:59:38 +0100
10505              Message-ID: <20061212185938.GB49084@heechee.tobez.org>
10506      Branch: perl
10507            ! t/op/groups.t
10508 ____________________________________________________________________________
10509 [ 29545] By: steveh                                on 2006/12/13  10:37:11
10510         Log: Do the same as #29514 for Win32
10511      Branch: perl
10512            ! win32/FindExt.pm
10513 ____________________________________________________________________________
10514 [ 29544] By: nicholas                              on 2006/12/13  08:35:43
10515         Log: Eliminate PVBM. Store fast Boyer-Moore tables in PVGV.
10516              Add the placeholder for new type, temporarily named BIND, for binding
10517              and aliasing in 6 on 5.
10518      Branch: perl
10519            ! dump.c ext/B/B.xs ext/Storable/Storable.xs op.h
10520            ! pod/perltodo.pod pp_hot.c sv.c sv.h util.c
10521 ____________________________________________________________________________
10522 [ 29543] By: davem                                 on 2006/12/13  01:47:34
10523         Log: fix parser leaks caused by croaking while shifting or reducing
10524              e.g. these no longer leak:
10525              eval q[my $x; local $x] while 1;
10526              eval q[$s = sub <> {}]  while 1;
10527      Branch: perl
10528            ! op.c op.h perly.c
10529 ____________________________________________________________________________
10530 [ 29542] By: davem                                 on 2006/12/13  00:16:18
10531         Log: fixup some ival/opval type changes from perly.y/madly.y merger
10532      Branch: perl
10533            ! perly.act perly.h perly.tab perly.y
10534 ____________________________________________________________________________
10535 [ 29541] By: nicholas                              on 2006/12/12  23:02:56
10536         Log: In theory Perl_magic_setbm() should clear SvTAIL() too. In practice,
10537              I don't think that it matters as this routine is never actualy called
10538              because nothing exposes PVBMs to the world so that the world can assign
10539              to them.
10540      Branch: perl
10541            ! mg.c
10542 ____________________________________________________________________________
10543 [ 29540] By: nicholas                              on 2006/12/12  22:30:29
10544         Log: Correct the dumping logic for the various bits of flag bending
10545              associated with change 27313 or therabouts.
10546      Branch: perl
10547            ! dump.c
10548 ____________________________________________________________________________
10549 [ 29539] By: nicholas                              on 2006/12/12  22:03:21
10550         Log: Oops. As of some point one stopped being able to assign integers and
10551              floating point values to typeglobs.
10552      Branch: perl
10553            ! sv.c t/op/glob.t
10554 ____________________________________________________________________________
10555 [ 29538] By: nicholas                              on 2006/12/12  21:54:22
10556         Log: Correct some assumptions about PVBM table offset in B.xs
10557      Branch: perl
10558            ! ext/B/B.xs
10559 ____________________________________________________________________________
10560 [ 29537] By: nicholas                              on 2006/12/12  21:31:10
10561         Log: Assert that SvPAD_TYPED_on(), SvPAD_OUR_on() and SvPAD_STATE_on()
10562              are never called on PVGVs.
10563      Branch: perl
10564            ! sv.h
10565 ____________________________________________________________________________
10566 [ 29536] By: nicholas                              on 2006/12/12  21:00:37
10567         Log: Assert that PVGVs are never SvVALID() in the PVBM sense.
10568      Branch: perl
10569            ! gv.h sv.h
10570 ____________________________________________________________________________
10571 [ 29535] By: nicholas                              on 2006/12/12  19:54:05
10572         Log: pads haven't actually contained any PVGVs since change 27313.
10573              So correct the docs and assert this in the code.
10574      Branch: perl
10575            ! pad.c sv.c
10576 ____________________________________________________________________________
10577 [ 29534] By: nicholas                              on 2006/12/12  18:52:55
10578         Log: Shrink Perl_sv_peek() and Perl_do_sv_dump() by using type to name
10579              lookup tables.
10580      Branch: perl
10581            ! dump.c
10582 ____________________________________________________________________________
10583 [ 29533] By: steveh                                on 2006/12/12  18:02:19
10584         Log: Restore (differently) the setting of $Config{osvers} on Win32
10585              that was removed by #29509
10586      Branch: perl
10587            ! win32/config_sh.PL
10588 ____________________________________________________________________________
10589 [ 29532] By: steveh                                on 2006/12/12  17:49:51
10590         Log: Silence VC warnings about possible operator precedence problems
10591              and signed/unsigned mismatches
10592      Branch: perl
10593            ! regexec.c sv.h util.c
10594 ____________________________________________________________________________
10595 [ 29531] By: rgs                                   on 2006/12/12  13:32:01
10596         Log: Subject: [PATCH] mg.c: #ifdef only the different bits
10597              From: jhi@cc.hut.fi (Jarkko Hietaniemi)
10598              Date: Tue, 12 Dec 2006 15:18:53 +0200 (EET)
10599              Message-Id: <20061212131853.C2CBA43A67@anubis.hut.fi>
10600      Branch: perl
10601            ! mg.c
10602 ____________________________________________________________________________
10603 [ 29530] By: merijn                                on 2006/12/12  11:36:41
10604         Log: The overly-picky AIX xlc compiler doesn't like the style
10605              from patch #29446
10606      Branch: perl
10607            ! mg.c
10608 ____________________________________________________________________________
10609 [ 29529] By: rgs                                   on 2006/12/12  11:07:27
10610         Log: Skip IO::Compress::Zlib in perlivp, since that's a distribution name,
10611              not a proper module name.
10612      Branch: perl
10613            ! utils/perlivp.PL
10614 ____________________________________________________________________________
10615 [ 29528] By: rgs                                   on 2006/12/12  10:20:04
10616         Log: Subject: [PATCH] get ext/Win32/Win32.xs to compile on cygwin
10617              From: Jan Dubois <jand@ActiveState.com>
10618              Date: Mon, 11 Dec 2006 13:09:09 -0800
10619              Message-ID: <isfrn2tbfleo1svmmi5kh673f4uh69am11@4ax.com>
10620              
10621              and:
10622              Date: Mon, 11 Dec 2006 15:08:53 -0800
10623              Message-ID: <kvorn2h0d14jo3khmmj2a9svsp2mplrodv@4ax.com>
10624      Branch: perl
10625            ! ext/Win32/Win32.xs win32/win32.c
10626 ____________________________________________________________________________
10627 [ 29527] By: nicholas                              on 2006/12/12  00:07:48
10628         Log: By moving xbm_previous into the SvPVX, we save a U16 from struct xpvbm,
10629              which will likely equate to 4 bytes with padding. (But we add 2 bytes
10630              to the SvPVX buffer...). However, the real win is that xpvbm is now
10631              identical to xpvmg, and all active FBM compiled strings are SvVALID()
10632              true, so now we can eliminate xpvbm, freeing a type for 6 on 5 proxies.
10633      Branch: perl
10634            ! sv.h
10635 ____________________________________________________________________________
10636 [ 29526] By: nicholas                              on 2006/12/11  23:44:30
10637         Log: Fix allocation bug in change 29524.
10638      Branch: perl
10639            ! util.c
10640 ____________________________________________________________________________
10641 [ 29525] By: nicholas                              on 2006/12/11  22:52:46
10642         Log: Add BmPREVIOUS_set(), and use it in the one place that BmPREVIOUS is
10643              modified.
10644      Branch: perl
10645            ! sv.h util.c
10646 ____________________________________________________________________________
10647 [ 29524] By: nicholas                              on 2006/12/11  22:18:53
10648         Log: Move PERL_FBM_TABLE_OFFSET and PERL_FBM_FLAGS_OFFSET_FROM_TABLE to sv.h
10649              Stow BmRARE in the SvPVX, and so delete xbm_rare.
10650              Can you see what it is yet?
10651      Branch: perl
10652            ! sv.h util.c
10653 ____________________________________________________________________________
10654 [ 29523] By: nicholas                              on 2006/12/11  21:52:12
10655         Log: Fix typo in change 29518 which broke non-debugging builds.
10656              (Here Mark, you can have the spare ; back again)
10657      Branch: perl
10658            ! sv.h
10659 ____________________________________________________________________________
10660 [ 29522] By: nicholas                              on 2006/12/11  21:21:09
10661         Log: Convert the -1 to a more explicit PERL_FBM_FLAGS_OFFSET_FROM_TABLE.
10662      Branch: perl
10663            ! util.c
10664 ____________________________________________________________________________
10665 [ 29521] By: nicholas                              on 2006/12/11  21:15:06
10666         Log: Assert that BmRARE() BmPREVIOUS() and BmUSEFUL() are only called on
10667              valid PVBMs.
10668      Branch: perl
10669            ! sv.h
10670 ____________________________________________________________________________
10671 [ 29520] By: nicholas                              on 2006/12/11  20:55:20
10672         Log: Rename FBM_TABLE_OFFSET to PERL_FBM_TABLE_OFFSET prior to moving it
10673              to a header.
10674      Branch: perl
10675            ! util.c
10676 ____________________________________________________________________________
10677 [ 29519] By: rgs                                   on 2006/12/11  18:33:21
10678         Log: Don't load the Win32 module on non-win32 platforms
10679      Branch: perl
10680            ! lib/File/CheckTree.t
10681 ____________________________________________________________________________
10682 [ 29518] By: nicholas                              on 2006/12/11  18:26:31
10683         Log: Change SvTAIL() to check that both SVpbm_TAIL|SVpbm_VALID are true.
10684              SVpbm_VALID is the same bit value is SVf_IVisUV, which means that
10685              PVBMs can't actually ever be IOK. Therefore move BmUSEFUL() into the
10686              IV union, and save one I32 per PVBM.
10687      Branch: perl
10688            ! sv.h util.c
10689 ____________________________________________________________________________
10690 [ 29516] By: rgs                                   on 2006/12/11  17:09:17
10691         Log: Changes and README are not needed for Switch.pm
10692      Branch: perl
10693            - lib/Switch/Changes lib/Switch/README
10694            ! MANIFEST
10695 ____________________________________________________________________________
10696 [ 29515] By: rgs                                   on 2006/12/11  16:53:58
10697         Log: As pointed out by Valentin Guignon, there is most
10698              probably one \n too many in the end-of-pod marker.
10699      Branch: perl
10700            ! lib/Switch.pm
10701 ____________________________________________________________________________
10702 [ 29514] By: rgs                                   on 2006/12/11  16:49:06
10703         Log: Configure needs to know about the extensions IO/Compress/Base
10704              and IO/Compress/Zlib, so they get built.
10705      Branch: perl
10706            ! Configure
10707 ____________________________________________________________________________
10708 [ 29513] By: rgs                                   on 2006/12/11  16:16:46
10709         Log: Move files from ext/Compress/IO to ext/IO/Compress
10710      Branch: perl
10711           +> (branch 94 files)
10712            - ext/Compress/IO/Base/Changes ext/Compress/IO/Base/Makefile.PL
10713            - ext/Compress/IO/Base/README
10714            - ext/Compress/IO/Base/lib/File/GlobMapper.pm
10715            - ext/Compress/IO/Base/lib/IO/Compress/Base.pm
10716            - ext/Compress/IO/Base/lib/IO/Compress/Base/Common.pm
10717            - ext/Compress/IO/Base/lib/IO/Uncompress/AnyUncompress.pm
10718            - ext/Compress/IO/Base/lib/IO/Uncompress/Base.pm
10719            - ext/Compress/IO/Base/private/MakeUtil.pm
10720            - ext/Compress/IO/Base/t/01misc.t
10721            - ext/Compress/IO/Base/t/globmapper.t
10722            - ext/Compress/IO/Zlib/Changes ext/Compress/IO/Zlib/Makefile.PL
10723            - ext/Compress/IO/Zlib/README
10724            - ext/Compress/IO/Zlib/examples/gzappend
10725            - ext/Compress/IO/Zlib/examples/gzcat
10726            - ext/Compress/IO/Zlib/examples/gzgrep
10727            - ext/Compress/IO/Zlib/examples/gzstream
10728            - ext/Compress/IO/Zlib/examples/unzip
10729            - ext/Compress/IO/Zlib/lib/IO/Compress/Adapter/Deflate.pm
10730            - ext/Compress/IO/Zlib/lib/IO/Compress/Adapter/Identity.pm
10731            - ext/Compress/IO/Zlib/lib/IO/Compress/Deflate.pm
10732            - ext/Compress/IO/Zlib/lib/IO/Compress/Gzip.pm
10733            - ext/Compress/IO/Zlib/lib/IO/Compress/Gzip/Constants.pm
10734            - ext/Compress/IO/Zlib/lib/IO/Compress/RawDeflate.pm
10735            - ext/Compress/IO/Zlib/lib/IO/Compress/Zip.pm
10736            - ext/Compress/IO/Zlib/lib/IO/Compress/Zip/Constants.pm
10737            - ext/Compress/IO/Zlib/lib/IO/Compress/Zlib/Constants.pm
10738            - ext/Compress/IO/Zlib/lib/IO/Compress/Zlib/Extra.pm
10739            - ext/Compress/IO/Zlib/lib/IO/Uncompress/Adapter/Identity.pm
10740            - ext/Compress/IO/Zlib/lib/IO/Uncompress/Adapter/Inflate.pm
10741            - ext/Compress/IO/Zlib/lib/IO/Uncompress/AnyInflate.pm
10742            - ext/Compress/IO/Zlib/lib/IO/Uncompress/Gunzip.pm
10743            - ext/Compress/IO/Zlib/lib/IO/Uncompress/Inflate.pm
10744            - ext/Compress/IO/Zlib/lib/IO/Uncompress/RawInflate.pm
10745            - ext/Compress/IO/Zlib/lib/IO/Uncompress/Unzip.pm
10746            - ext/Compress/IO/Zlib/private/MakeUtil.pm
10747            - ext/Compress/IO/Zlib/t/001zlib-generic-deflate.t
10748            - ext/Compress/IO/Zlib/t/001zlib-generic-gzip.t
10749            - ext/Compress/IO/Zlib/t/001zlib-generic-rawdeflate.t
10750            - ext/Compress/IO/Zlib/t/001zlib-generic-zip.t
10751            - ext/Compress/IO/Zlib/t/002any-deflate.t
10752            - ext/Compress/IO/Zlib/t/002any-gzip.t
10753            - ext/Compress/IO/Zlib/t/002any-rawdeflate.t
10754            - ext/Compress/IO/Zlib/t/002any-transparent.t
10755            - ext/Compress/IO/Zlib/t/002any-zip.t
10756            - ext/Compress/IO/Zlib/t/004gziphdr.t
10757            - ext/Compress/IO/Zlib/t/005defhdr.t
10758            - ext/Compress/IO/Zlib/t/010examples.t
10759            - ext/Compress/IO/Zlib/t/020isize.t
10760            - ext/Compress/IO/Zlib/t/050interop-gzip.t
10761            - ext/Compress/IO/Zlib/t/100generic-deflate.t
10762            - ext/Compress/IO/Zlib/t/100generic-gzip.t
10763            - ext/Compress/IO/Zlib/t/100generic-rawdeflate.t
10764            - ext/Compress/IO/Zlib/t/100generic-zip.t
10765            - ext/Compress/IO/Zlib/t/101truncate-deflate.t
10766            - ext/Compress/IO/Zlib/t/101truncate-gzip.t
10767            - ext/Compress/IO/Zlib/t/101truncate-rawdeflate.t
10768            - ext/Compress/IO/Zlib/t/101truncate-zip.t
10769            - ext/Compress/IO/Zlib/t/102tied-deflate.t
10770            - ext/Compress/IO/Zlib/t/102tied-gzip.t
10771            - ext/Compress/IO/Zlib/t/102tied-rawdeflate.t
10772            - ext/Compress/IO/Zlib/t/102tied-zip.t
10773            - ext/Compress/IO/Zlib/t/103newtied-deflate.t
10774            - ext/Compress/IO/Zlib/t/103newtied-gzip.t
10775            - ext/Compress/IO/Zlib/t/103newtied-rawdeflate.t
10776            - ext/Compress/IO/Zlib/t/103newtied-zip.t
10777            - ext/Compress/IO/Zlib/t/104destroy-deflate.t
10778            - ext/Compress/IO/Zlib/t/104destroy-gzip.t
10779            - ext/Compress/IO/Zlib/t/104destroy-rawdeflate.t
10780            - ext/Compress/IO/Zlib/t/104destroy-zip.t
10781            - ext/Compress/IO/Zlib/t/105oneshot-deflate.t
10782            - ext/Compress/IO/Zlib/t/105oneshot-gzip-only.t
10783            - ext/Compress/IO/Zlib/t/105oneshot-gzip.t
10784            - ext/Compress/IO/Zlib/t/105oneshot-rawdeflate.t
10785            - ext/Compress/IO/Zlib/t/105oneshot-zip-only.t
10786            - ext/Compress/IO/Zlib/t/105oneshot-zip.t
10787            - ext/Compress/IO/Zlib/t/106prime-deflate.t
10788            - ext/Compress/IO/Zlib/t/106prime-gzip.t
10789            - ext/Compress/IO/Zlib/t/106prime-rawdeflate.t
10790            - ext/Compress/IO/Zlib/t/106prime-zip.t
10791            - ext/Compress/IO/Zlib/t/107multi-deflate.t
10792            - ext/Compress/IO/Zlib/t/107multi-gzip.t
10793            - ext/Compress/IO/Zlib/t/107multi-rawdeflate.t
10794            - ext/Compress/IO/Zlib/t/107multi-zip.t
10795            - ext/Compress/IO/Zlib/t/108anyunc-deflate.t
10796            - ext/Compress/IO/Zlib/t/108anyunc-gzip.t
10797            - ext/Compress/IO/Zlib/t/108anyunc-rawdeflate.t
10798            - ext/Compress/IO/Zlib/t/108anyunc-transparent.t
10799            - ext/Compress/IO/Zlib/t/108anyunc-zip.t
10800            - ext/Compress/IO/Zlib/t/109merge-deflate.t
10801            - ext/Compress/IO/Zlib/t/109merge-gzip.t
10802            - ext/Compress/IO/Zlib/t/109merge-rawdeflate.t
10803            - ext/Compress/IO/Zlib/t/109merge-zip.t
10804            ! MANIFEST
10805 ____________________________________________________________________________
10806 [ 29512] By: rgs                                   on 2006/12/11  14:58:43
10807         Log: Subject: Re: [PATCH] Deparse.pm bugfix
10808              From: Bo Lindbergh <blgl@hagernas.com>
10809              Date: Sat, 9 Dec 2006 12:17:53 +0100
10810              Message-Id: <A4BDE74B-DB3A-41C0-B2BE-FCEE0E15AB54@hagernas.com>
10811      Branch: perl
10812            ! ext/B/B/Deparse.pm ext/B/t/concise-xs.t
10813 ____________________________________________________________________________
10814 [ 29511] By: rgs                                   on 2006/12/11  13:23:55
10815         Log: Subject: re: [PATCH] Move Win32::* functions from win32/win32.c to ext/Win32/Win32.xs
10816              From: Jan Dubois <jand@ActiveState.com>
10817              Date: Sun, 10 Dec 2006 11:47:58 -0800
10818              Message-ID: <9moon29qtn5c23t9fer229ealsu06bkf11@4ax.com>
10819      Branch: perl
10820            ! ext/Storable/Storable.xs ext/Win32/Win32.pm win32/win32.c
10821 ____________________________________________________________________________
10822 [ 29510] By: rgs                                   on 2006/12/11  13:22:11
10823         Log: Second patch from:
10824              Subject: [PATCH] Move Win32::* functions from win32/win32.c to ext/Win32/Win32.xs
10825              From: Jan Dubois <jand@ActiveState.com>
10826              Date: Fri, 08 Dec 2006 19:07:06 -0800
10827              Message-ID: <lc9kn2tb0p5sdd4q69rbc7067r4imar59r@4ax.com>
10828      Branch: perl
10829            ! ext/Win32/Win32.xs win32/win32.c
10830 ____________________________________________________________________________
10831 [ 29509] By: rgs                                   on 2006/12/11  13:21:28
10832         Log: First patch from:
10833              Subject: [PATCH] Move Win32::* functions from win32/win32.c to ext/Win32/Win32.xs
10834              From: Jan Dubois <jand@ActiveState.com>
10835              Date: Fri, 08 Dec 2006 19:07:06 -0800
10836              Message-ID: <lc9kn2tb0p5sdd4q69rbc7067r4imar59r@4ax.com>
10837      Branch: perl
10838            ! ext/SDBM_File/Makefile.PL lib/Cwd.pm lib/ExtUtils/MM.pm
10839            ! lib/File/CheckTree.t lib/File/Copy.pm t/op/fork.t
10840            ! win32/FindExt.pm win32/config_sh.PL
10841            ! win32/ext/Win32API/File/t/file.t
10842 ____________________________________________________________________________
10843 [ 29508] By: davem                                 on 2006/12/11  11:41:10
10844         Log: remove extraneous debugging code introduced by #29504
10845      Branch: perl
10846            ! perly.c
10847 ____________________________________________________________________________
10848 [ 29507] By: rgs                                   on 2006/12/11  10:32:47
10849         Log: Subject: [PATCH] Fatal v1.03
10850              From: Jerrad Pierce <belg4mit@MIT.EDU>
10851              Date: Sun, 10 Dec 2006 14:38:18 -0500
10852              Message-Id: <200612101938.kBAJcI9D008026@all-night-tool.mit.edu>
10853              
10854              Allow to make fatal built-ins in CORE::GLOBAL
10855      Branch: perl
10856            ! lib/Fatal.pm
10857 ____________________________________________________________________________
10858 [ 29506] By: rgs                                   on 2006/12/11  10:28:13
10859         Log: Subject: [PATCH] Re: [perl #41065] Out of memory!, while extending scalar
10860              From: Marcus Holland-Moritz <mhx-perl@gmx.net>
10861              Date: Sun, 10 Dec 2006 22:32:32 +0100
10862              Message-ID: <20061210223232.0f3a5318@r2d2>
10863      Branch: perl
10864            ! doop.c
10865 ____________________________________________________________________________
10866 [ 29505] By: rgs                                   on 2006/12/11  09:41:45
10867         Log: perlhack.pod nit by Jarkko
10868      Branch: perl
10869            ! pod/perlhack.pod
10870 ____________________________________________________________________________
10871 [ 29504] By: davem                                 on 2006/12/11  00:48:06
10872         Log: fix eval qw(BEGIN{die}) style leaks (second attempt).
10873              
10874              Repeat of change #28319 (backed out by change #28720), this time
10875              freeing ops using the right pad. Also backs out the remempad
10876              parser addition from change #29501; instead a new auxiliary
10877              paser stack is added, which records the current value of
10878              PL_comppad for every state.
10879      Branch: perl
10880            ! perly.act perly.c perly.h perly.tab perly.y t/comp/parser.t
10881 ____________________________________________________________________________
10882 [ 29503] By: nicholas                              on 2006/12/10  23:05:25
10883         Log: Remove code duplication in S_to_utf8_substr() and S_to_byte_substr()
10884              by taking advantage of how anchored_* and float_* are stored in arrays
10885              to use a loop.
10886      Branch: perl
10887            ! regcomp.h regexec.c
10888 ____________________________________________________________________________
10889 [ 29502] By: nicholas                              on 2006/12/10  22:31:56
10890         Log: Downgrading a fixed or floating substring of a pattern whilst matching
10891              a studied string seems to get to a "should not happen" [bug #41067]
10892              It seems that Perl_regexec_flags() assumes that if the pre-downgraded
10893              substring is FBM compiled, then the downgraded version will be too,
10894              hence changing the downgrade and upgrade routines to FBM compile seems
10895              to be a correct fix.
10896      Branch: perl
10897            ! regexec.c t/op/re_tests
10898 ____________________________________________________________________________
10899 [ 29501] By: davem                                 on 2006/12/10  18:50:05
10900         Log: #28315 could crash when freeing ops with different pads
10901              Add hook to parser to record current PL_comppad, then use this
10902              when popping ops off the parser stack after parser error
10903      Branch: perl
10904            ! perly.act perly.c perly.h perly.tab perly.y t/comp/parser.t
10905 ____________________________________________________________________________
10906 [ 29500] By: davem                                 on 2006/12/10  17:18:00
10907         Log: parser: expand yy_is_opval[] to include all value types
10908              and rename to yy_type_tab[]. Then use this table to improve stack
10909              dumping with -Dpv
10910      Branch: perl
10911            ! perly.act perly.c perly.h perly.tab perly.y regen_perly.pl
10912 ____________________________________________________________________________
10913 [ 29499] By: gbarr                                 on 2006/12/10  16:28:34
10914         Log: Restore change 27486 accidently removed (also added to 1.19 before release)
10915      Branch: perl
10916            ! ext/List/Util/multicall.h
10917 ____________________________________________________________________________
10918 [ 29498] By: gbarr                                 on 2006/12/10  16:17:14
10919         Log: Upgrade to Scalar-List-Utils-1.19
10920      Branch: perl
10921            ! ext/List/Util/Changes ext/List/Util/README
10922            ! ext/List/Util/Util.xs ext/List/Util/lib/List/Util.pm
10923            ! ext/List/Util/lib/Scalar/Util.pm ext/List/Util/multicall.h
10924 ____________________________________________________________________________
10925 [ 29497] By: stevep                                on 2006/12/10  02:23:10
10926         Log: Subject: Re: [PATCH 5.8.8] Build on OS/2 - missing part
10927              From: Ilya Zakharevich <nospam-abuse@ilyaz.org>
10928              Date: Sat, 9 Dec 2006 16:33:41 -0800
10929              Message-ID: <20061210003341.GA14200@powdermilk.math.berkeley.edu>
10930      Branch: perl
10931            ! Makefile.SH os2/Makefile.SHs
10932 ____________________________________________________________________________
10933 [ 29496] By: nicholas                              on 2006/12/10  01:13:09
10934         Log: Swap SVpbm_TAIL and SVpbm_VALID.
10935      Branch: perl
10936            ! sv.h
10937 ____________________________________________________________________________
10938 [ 29495] By: stevep                                on 2006/12/09  22:44:27
10939         Log: Upgrade to Time-HiRes-1.9703
10940      Branch: perl
10941            ! ext/Time/HiRes/Changes ext/Time/HiRes/HiRes.pm
10942            ! ext/Time/HiRes/Makefile.PL
10943 ____________________________________________________________________________
10944 [ 29494] By: nicholas                              on 2006/12/09  21:19:45
10945         Log: PVBMs mustn't enter anything that turns SVIVisUV_on().
10946      Branch: perl
10947            ! sv.c
10948 ____________________________________________________________________________
10949 [ 29493] By: nicholas                              on 2006/12/09  21:17:37
10950         Log: Exterminate! 2 pieces of superfluous code related to UV setting.
10951      Branch: perl
10952            ! sv.c
10953 ____________________________________________________________________________
10954 [ 29492] By: nicholas                              on 2006/12/08  23:49:51
10955         Log: In Perl_fbm_instr(), no need to calculate the address of the table if
10956              we're going to return anyway.
10957      Branch: perl
10958            ! util.c
10959 ____________________________________________________________________________
10960 [ 29491] By: nicholas                              on 2006/12/08  23:22:31
10961         Log: assert that SvTAIL() isn't being called on PVAVs or PVHVs
10962      Branch: perl
10963            ! sv.h
10964 ____________________________________________________________________________
10965 [ 29490] By: nicholas                              on 2006/12/08  22:56:54
10966         Log: Wrap some macro arguments in () to avoid precedence problems.
10967      Branch: perl
10968            ! sv.h
10969 ____________________________________________________________________________
10970 [ 29489] By: nicholas                              on 2006/12/08  22:56:08
10971         Log: Perl_screaminstr() must be called with littlestr as a PVBM.
10972      Branch: perl
10973            ! util.c
10974 ____________________________________________________________________________
10975 [ 29488] By: davem                                 on 2006/12/08  22:20:41
10976         Log: add missing OP_REFCNT_LOCK/UNLOCKs and document it
10977      Branch: perl
10978            ! op.h sv.c
10979 ____________________________________________________________________________
10980 [ 29487] By: nicholas                              on 2006/12/08  22:11:56
10981         Log: Assert that BmRARE, BmUSEFUL and BmPREVIOUS are only called on SVtPVBM
10982      Branch: perl
10983            ! sv.h
10984 ____________________________________________________________________________
10985 [ 29486] By: nicholas                              on 2006/12/08  21:09:57
10986         Log: No need to upgrade if all we're going to do is return.
10987      Branch: perl
10988            ! util.c
10989 ____________________________________________________________________________
10990 [ 29485] By: steveh                                on 2006/12/07  12:34:10
10991         Log: Make use of $Config{d_pseudofork} in a couple of core tests
10992              
10993              Can't really use it in ext/IO/t/*.t and lib/Test/Simple/t/fork.t
10994              because they are dual-lived modules and must work with older perls
10995              that don't have d_pseudofork
10996      Branch: perl
10997            ! ext/Socket/t/socketpair.t t/op/fork.t
10998 ____________________________________________________________________________
10999 [ 29483] By: steveh                                on 2006/12/07  09:12:45
11000         Log: Subject: [PATCH] Move Win32 from win32/ext/Win32 to ext/Win32
11001              From: Jan Dubois <jand@ActiveState.com>
11002              Date: Wed, 06 Dec 2006 16:31:42 -0800
11003              Message-ID: <1unen2lsrq4pnnt06933h96pqj1d8luh3b@4ax.com>
11004      Branch: perl
11005           +> ext/Win32/Makefile.PL ext/Win32/Win32.pm ext/Win32/Win32.xs
11006            - win32/ext/Win32/Makefile.PL win32/ext/Win32/Win32.pm
11007            - win32/ext/Win32/Win32.xs
11008            ! Configure MANIFEST
11009 ____________________________________________________________________________
11010 [ 29482] By: rgs                                   on 2006/12/07  09:07:25
11011         Log: Subject: [PATCH] Perl_save_destructor is not a mathom
11012              From: "Jerry D. Hedden" <jdhedden@yahoo.com>
11013              Date: Wed, 6 Dec 2006 11:12:13 -0800 (PST)
11014              Message-ID: <20061206191213.35036.qmail@web30206.mail.mud.yahoo.com>
11015      Branch: perl
11016            ! mathoms.c scope.c
11017 ____________________________________________________________________________
11018 [ 29481] By: steveh                                on 2006/12/07  08:53:15
11019         Log: Subject: [PATCH] Makefile.PL changes to compiler Win32.xs using cygwin
11020              From: Jan Dubois <jand@ActiveState.com>
11021              Date: Wed, 06 Dec 2006 16:26:38 -0800
11022              Message-ID: <5nnen2p2h4lhremj0qf1tmpkl0asvk87hr@4ax.com>
11023      Branch: perl
11024            ! win32/ext/Win32/Makefile.PL
11025 ____________________________________________________________________________
11026 [ 29480] By: steveh                                on 2006/12/06  17:28:03
11027         Log: Better fix than #29479 for exporting refcounted_he_chain_2hv
11028      Branch: perl
11029            ! embed.fnc pod/perlapi.pod pod/perlintern.pod
11030 ____________________________________________________________________________
11031 [ 29479] By: rgs                                   on 2006/12/06  17:05:18
11032         Log: Subject: Re: [PATCH] User pragmas now accessible from B
11033              From: demerphq <demerphq@gmail.com>
11034              Date: Wed, 6 Dec 2006 17:52:08 +0100
11035              Message-ID: <9b18b3110612060852s7cfbba66id5aae25e5bb20ae0@mail.gmail.com>
11036      Branch: perl
11037            ! embed.fnc embed.h ext/B/B.xs global.sym pod/perlapi.pod
11038            ! pod/perlintern.pod
11039 ____________________________________________________________________________
11040 [ 29478] By: steveh                                on 2006/12/06  14:19:55
11041         Log: Upgrade to Time-HiRes 1.9702
11042      Branch: perl
11043            ! ext/Time/HiRes/Changes ext/Time/HiRes/HiRes.pm
11044            ! ext/Time/HiRes/HiRes.xs ext/Time/HiRes/Makefile.PL
11045            ! ext/Time/HiRes/t/HiRes.t
11046 ____________________________________________________________________________
11047 [ 29477] By: steveh                                on 2006/12/06  14:08:49
11048         Log: Subject: [PATCH] Re: When should PERL_SYS_TERM() be called? [was: Re: [PATCH] Re: [PATCH] Re: [PATCH] abstract mempool header testing]
11049              From: Jarkko Hietaniemi <jhi@iki.fi>
11050              Date: Tue, 05 Dec 2006 16:08:33 -0500
11051              Message-ID: <4575DFD1.1060108@iki.fi>
11052              
11053              Fixes a problem spotted by Jan Dubois:
11054              
11055              The PerlMemShared pool is only shared between the interpreters that
11056              can share data structures (interpreters created by perl_clone(), which
11057              mean pseudo-fork, and threads.xs).  The pool is not shared between
11058              interpreters that are created separately by perl_alloc().
11059              [...]
11060              I guess this means PL_perlio_fd_refcnt needs to be allocated and
11061              freed by standard malloc() and not go through any abstraction.
11062      Branch: perl
11063            ! perlio.c
11064 ____________________________________________________________________________
11065 [ 29476] By: rgs                                   on 2006/12/06  13:26:18
11066         Log: save_I8 is not a mathom.
11067      Branch: perl
11068            ! mathoms.c scope.c
11069 ____________________________________________________________________________
11070 [ 29475] By: rgs                                   on 2006/12/06  12:51:34
11071         Log: Subject: [PATCH] User pragmas now accessible from B
11072              From: "Joshua ben Jore" <twists@gmail.com>
11073              Date: Tue, 5 Dec 2006 13:18:21 -0800
11074              Message-ID: <dc5c751d0612051318n2e2f08bfh185fab6323a980b@mail.gmail.com>
11075      Branch: perl
11076            + ext/B/t/pragma.t
11077            ! MANIFEST ext/B/B.pm ext/B/B.xs ext/B/typemap t/lib/mypragma.pm
11078            ! t/lib/mypragma.t
11079 ____________________________________________________________________________
11080 [ 29474] By: craigb                                on 2006/12/06  05:29:50
11081         Log: Avoid my_regdupe type mismatch warning after #29430
11082      Branch: perl
11083            ! ext/re/re.xs
11084 ____________________________________________________________________________
11085 [ 29473] By: craigb                                on 2006/12/06  04:48:35
11086         Log: d_pseudofork for configure.com
11087      Branch: perl
11088            ! configure.com
11089 ____________________________________________________________________________
11090 [ 29472] By: nicholas                              on 2006/12/05  22:40:56
11091         Log: Subject: Re: [PATCH] Further tweaks to make it easier to create regexp engine plug ins.
11092              From: demerphq <demerphq@gmail.com>
11093              Message-ID: <9b18b3110612051353k7745792byabfdf98e18eb48c9@mail.gmail.com>
11094              Date: Tue, 5 Dec 2006 22:53:48 +0100
11095              
11096              Fixes a minor bug in change 29468.
11097      Branch: perl
11098            ! regcomp.c
11099 ____________________________________________________________________________
11100 [ 29471] By: stevep                                on 2006/12/05  21:00:38
11101         Log: Silence a warning from Module::CoreList that occurs when the module version is
11102              something like X.XX_XX.
11103      Branch: perl
11104            ! lib/Module/CoreList.pm
11105 ____________________________________________________________________________
11106 [ 29470] By: steveh                                on 2006/12/05  16:41:55
11107         Log: Make the check for PERL_IMPLICIT_SYS better
11108      Branch: perl
11109            ! win32/config_sh.PL
11110 ____________________________________________________________________________
11111 [ 29469] By: steveh                                on 2006/12/05  16:06:31
11112         Log: Extend d_pseudofork to Win32-land and set it when appropriate
11113              (namely, when we have USE_ITHREADS and PERL_IMPLICIT_SYSTEM)
11114      Branch: perl
11115            ! win32/config.bc win32/config.gc win32/config.vc
11116            ! win32/config.vc64 win32/config_H.bc win32/config_H.gc
11117            ! win32/config_H.vc win32/config_H.vc64 win32/config_sh.PL
11118 ____________________________________________________________________________
11119 [ 29468] By: rgs                                   on 2006/12/05  15:39:39
11120         Log: Subject: [PATCH] Further tweaks to make it easier to create regexp engine plug ins.
11121              From: demerphq <demerphq@gmail.com>
11122              Date: Tue, 5 Dec 2006 16:13:36 +0100
11123              Message-ID: <9b18b3110612050713g77cac516x46fb5baac99b47c9@mail.gmail.com>
11124              
11125              (with tweaks)
11126      Branch: perl
11127            ! regcomp.c regcomp.h regexp.h
11128 ____________________________________________________________________________
11129 [ 29467] By: merijn                                on 2006/12/05  14:55:14
11130         Log: Introduction of d_pseudofork
11131      Branch: perl
11132            ! Configure Porting/Glossary Porting/config.sh config_h.SH
11133            ! handy.h uconfig.sh
11134 ____________________________________________________________________________
11135 [ 29465] By: steveh                                on 2006/12/05  09:41:44
11136         Log: Subject: [PATCH] Re: When should PERL_SYS_TERM() be called? [was: Re: [PATCH] Re: [PATCH] Re: [PATCH] abstract mempool header testing]
11137              From: Jarkko Hietaniemi <jhi@iki.fi>
11138              Date: Mon, 04 Dec 2006 22:53:03 -0500
11139              Message-ID: <4574ED1F.40508@iki.fi>
11140              
11141              Re-instates #29424 (previously reverted by #29451), now fixed to work
11142              with PERL_IMPLICIT_SYS, thanks to Jan Dubois. Also adds PERLIO_TERM to
11143              the Symbian port.
11144      Branch: perl
11145            ! perlio.c symbian/symbianish.h win32/win32.c win32/wince.c
11146 ____________________________________________________________________________
11147 [ 29464] By: steveh                                on 2006/12/05  09:38:14
11148         Log: Skip Perl_regdupe_internal rather than Perl_regdupe
11149              when building on Win32 without ithreads (see #29430)
11150      Branch: perl
11151            ! makedef.pl
11152 ____________________________________________________________________________
11153 [ 29463] By: nicholas                              on 2006/12/04  22:50:09
11154         Log: Move Perl_get_db_sub() from pp_hot.c to util.c
11155      Branch: perl
11156            ! pp_hot.c util.c
11157 ____________________________________________________________________________
11158 [ 29462] By: merijn                                on 2006/12/04  18:09:20
11159         Log: Revert #29454
11160      Branch: perl
11161            ! Configure
11162 ____________________________________________________________________________
11163 [ 29461] By: davem                                 on 2006/12/04  18:08:31
11164         Log: fix some casting issues with perly.y / madly.y merger
11165      Branch: perl
11166            ! perly.act perly.h perly.tab perly.y
11167 ____________________________________________________________________________
11168 [ 29459] By: rgs                                   on 2006/12/04  17:50:51
11169         Log: Better version of last patch, by Yves Orton.
11170              Actually the regexp engine structure only needs
11171              one compilation function hook.
11172      Branch: perl
11173            ! ext/re/re.xs ext/re/re_top.h regcomp.c regcomp.h regexp.h
11174 ____________________________________________________________________________
11175 [ 29458] By: rgs                                   on 2006/12/04  17:22:02
11176         Log: The new regexp compilation function must be added to the engine structure.
11177      Branch: perl
11178            ! ext/re/re.xs ext/re/re_top.h regcomp.h regexp.h
11179 ____________________________________________________________________________
11180 [ 29457] By: rgs                                   on 2006/12/04  16:24:09
11181         Log: Actually submit previous change.
11182      Branch: perl
11183            ! embed.fnc embed.h global.sym proto.h regcomp.c
11184 ____________________________________________________________________________
11185 [ 29456] By: rgs                                   on 2006/12/04  16:15:54
11186         Log: Split Perl_pregcomp in two functions. Patch by Audrey Tang,
11187              to facilitate pluging in other regexp engines.
11188      Branch: perl
11189            ! embed.fnc embed.h global.sym proto.h regcomp.c
11190 ____________________________________________________________________________
11191 [ 29455] By: davem                                 on 2006/12/04  15:38:05
11192         Log: merge perly.y and madlu.y
11193      Branch: perl
11194            - madly.act madly.h madly.tab madly.y
11195            ! MANIFEST Makefile.SH madly.c perly.act perly.c perly.h
11196            ! perly.tab perly.y
11197 ____________________________________________________________________________
11198 [ 29454] By: merijn                                on 2006/12/04  15:20:53
11199         Log: Subject: Re: install misses Compress/IO/{Base,Zlib}
11200              From: "Rafael Garcia-Suarez" <rgarciasuarez@gmail.com>
11201              Date: Mon, 4 Dec 2006 15:48:12 +0100
11202              Message-ID: <b77c1dce0612040648j411247c5i27a305c86cbac401@mail.gmail.com>
11203      Branch: perl
11204            ! Configure
11205 ____________________________________________________________________________
11206 [ 29452] By: rgs                                   on 2006/12/04  15:06:34
11207         Log: Subject: [PATCH] Add File::Fetch to the core
11208              From: "Jos Boumans" <kane@dwim.org>
11209              Date: Fri, 1 Dec 2006 12:24:08 +0100 (CET)
11210              Message-ID: <22195.80.127.35.68.1164972248.squirrel@webmail.xs4all.nl>
11211      Branch: perl
11212            + lib/File/Fetch.pm lib/File/Fetch/Item.pm
11213            + lib/File/Fetch/t/01_File-Fetch.t
11214            ! MANIFEST
11215 ____________________________________________________________________________
11216 [ 29451] By: steveh                                on 2006/12/04  14:31:08
11217         Log: Change #29424 may well be correct in itself, but currently doesn't
11218              work when perl is built with PERL_IMPLICIT_SYS because PERLIO_TERM
11219              uses PerlMemShared_free() which, in that case, involves the perlhost
11220              that has already been freed itself by perl_free(), which is called
11221              before PERL_SYS_TERM().
11222              
11223              The order of perl_destruct(), perl_free(), PERL_SYS_TERM() cannot
11224              be changed (it is advertised in perlembed for a start), so just
11225              revert #29424 and the appropriate parts of #29442 for now.
11226              
11227              Perhaps PL_perlio_fd_refcnt needs allocating differently, or else
11228              the perlhost needs freeing later (after PerlIO)?
11229      Branch: perl
11230            ! win32/perllib.c win32/win32.c win32/wince.c
11231 ____________________________________________________________________________
11232 [ 29450] By: rgs                                   on 2006/12/04  13:49:20
11233         Log: Subject: [PATCH] Minor pod nit in perlre.
11234              From: demerphq <demerphq@gmail.com>
11235              Date: Mon, 4 Dec 2006 14:47:07 +0100
11236              Message-ID: <9b18b3110612040547k1bcff290qb8c9b0d7c9ed9640@mail.gmail.com>
11237      Branch: perl
11238            ! pod/perlre.pod
11239 ____________________________________________________________________________
11240 [ 29449] By: davem                                 on 2006/12/04  12:08:56
11241         Log: another fix for bison 2.3
11242      Branch: perl
11243            ! regen_perly.pl
11244 ____________________________________________________________________________
11245 [ 29448] By: merijn                                on 2006/12/04  11:24:57
11246         Log: Subject: -DDEBUGGING=both doesn't set -g
11247              From: "Yitzchak Scott-Thoennes" <sthoenna@efn.org>
11248              Date: Mon, 4 Dec 2006 03:10:31 -0800 (PST)
11249              Message-ID: <1176.63.226.246.123.1165230631.squirrel@63.226.246.123>
11250      Branch: perl
11251            ! Configure
11252 ____________________________________________________________________________
11253 [ 29446] By: rgs                                   on 2006/12/04  09:36:15
11254         Log: Subject: Re: [perl #38868] Changing $0 on darwin leads to excessive padding in 'ps'
11255              From: Chris Dolan <chris@chrisdolan.net>
11256              Date: Sat, 2 Dec 2006 09:37:08 -0600
11257              Message-Id: <005671A0-5C2B-464C-85B9-A91E52278194@chrisdolan.net>
11258      Branch: perl
11259            ! mg.c
11260 ____________________________________________________________________________
11261 [ 29445] By: rgs                                   on 2006/12/04  09:21:16
11262         Log: Subject: [PATCH] \R is supposed to mean something else so switch to \g and make it more useful in the process
11263              From: demerphq <demerphq@gmail.com>
11264              Date: Sun, 3 Dec 2006 16:55:55 +0100
11265              Message-ID: <9b18b3110612030755o241e6372o9870ecce9c42e3d5@mail.gmail.com>
11266      Branch: perl
11267            ! pod/perl595delta.pod pod/perldiag.pod pod/perlre.pod regcomp.c
11268            ! regexec.c t/op/pat.t t/op/re_tests
11269 ____________________________________________________________________________
11270 [ 29444] By: stevep                                on 2006/12/04  02:48:24
11271         Log: Upgrade to Test-Simple-0.66.
11272      Branch: perl
11273            ! lib/Test/Builder.pm lib/Test/Builder/Module.pm
11274            ! lib/Test/Builder/Tester.pm lib/Test/More.pm lib/Test/Simple.pm
11275 ____________________________________________________________________________
11276 [ 29443] By: davem                                 on 2006/12/03  22:08:57
11277         Log: add support for bison 2.3
11278      Branch: perl
11279            ! perly.c regen_perly.pl
11280 ____________________________________________________________________________
11281 [ 29442] By: rgs                                   on 2006/12/03  19:16:17
11282         Log: Subject: Re: [PATCH] Re: [PATCH] Re: [PATCH] abstract mempool header testing
11283              From: demerphq <demerphq@gmail.com>
11284              Date: Sat, 2 Dec 2006 14:48:54 +0100
11285              Message-ID: <9b18b3110612020548l7c5aefd4m19cb0b5c4395abb4@mail.gmail.com>
11286      Branch: perl
11287            ! perlio.c win32/perllib.c
11288 ____________________________________________________________________________
11289 [ 29441] By: rgs                                   on 2006/12/03  18:37:15
11290         Log: Subject: Re: [perl #41010] (?(COND)) in pattern matching not working properly
11291              From: demerphq <demerphq@gmail.com>
11292              Date: Thu, 30 Nov 2006 01:12:25 +0100
11293              Message-ID: <9b18b3110611291612i137803f4lab2739e3d9af40f7@mail.gmail.com>
11294      Branch: perl
11295            ! embed.fnc embed.h proto.h regcomp.c t/op/pat.t
11296 ____________________________________________________________________________
11297 [ 29440] By: davem                                 on 2006/12/03  15:52:59
11298         Log: merge perly.c and madly.c
11299              
11300              madly.c is now just a wrapper that #includes perly.c
11301      Branch: perl
11302            ! madly.c perly.c
11303 ____________________________________________________________________________
11304 [ 29439] By: rgs                                   on 2006/12/03  13:58:52
11305         Log: Subject: Minor patch for Benchmark.pm
11306              From: christophe grosjean <christophe.grosjean@gmail.com>
11307              Date: Sun, 03 Dec 2006 01:31:58 +0100
11308              Message-Id: <1165105918.2718.90.camel@localhost.localdomain>
11309      Branch: perl
11310            ! lib/Benchmark.pm
11311 ____________________________________________________________________________
11312 [ 29438] By: davem                                 on 2006/12/02  18:38:35
11313         Log: synchronise perly.c and madly.c
11314      Branch: perl
11315            ! madly.c perly.c
11316 ____________________________________________________________________________
11317 [ 29437] By: mhx                                   on 2006/12/02  17:25:55
11318         Log: Upgrade to Devel::PPPort 3.10_02
11319      Branch: perl
11320            + ext/Devel/PPPort/parts/base/5009005
11321            + ext/Devel/PPPort/parts/todo/5009005
11322            ! MANIFEST ext/Devel/PPPort/Changes
11323            ! ext/Devel/PPPort/PPPort_pm.PL ext/Devel/PPPort/soak
11324 ____________________________________________________________________________
11325 [ 29436] By: mhx                                   on 2006/12/02  17:13:26
11326         Log: Upgrade to Devel::PPPort 3.10_01
11327      Branch: perl
11328            ! ext/Devel/PPPort/Changes ext/Devel/PPPort/PPPort_pm.PL
11329            ! ext/Devel/PPPort/PPPort_xs.PL ext/Devel/PPPort/TODO
11330            ! ext/Devel/PPPort/devel/buildperl.pl
11331            ! ext/Devel/PPPort/mktests.PL
11332            ! ext/Devel/PPPort/parts/base/5005000
11333            ! ext/Devel/PPPort/parts/base/5007002
11334            ! ext/Devel/PPPort/parts/base/5009001
11335            ! ext/Devel/PPPort/parts/base/5009004
11336            ! ext/Devel/PPPort/parts/embed.fnc
11337            ! ext/Devel/PPPort/parts/inc/misc
11338            ! ext/Devel/PPPort/parts/inc/threads
11339            ! ext/Devel/PPPort/parts/inc/variables
11340            ! ext/Devel/PPPort/parts/todo/5009001
11341            ! ext/Devel/PPPort/parts/todo/5009004 ext/Devel/PPPort/soak
11342            ! ext/Devel/PPPort/t/MY_CXT.t ext/Devel/PPPort/t/SvPV.t
11343            ! ext/Devel/PPPort/t/SvREFCNT.t ext/Devel/PPPort/t/Sv_set.t
11344            ! ext/Devel/PPPort/t/call.t ext/Devel/PPPort/t/cop.t
11345            ! ext/Devel/PPPort/t/exception.t ext/Devel/PPPort/t/grok.t
11346            ! ext/Devel/PPPort/t/limits.t ext/Devel/PPPort/t/mPUSH.t
11347            ! ext/Devel/PPPort/t/magic.t ext/Devel/PPPort/t/memory.t
11348            ! ext/Devel/PPPort/t/misc.t ext/Devel/PPPort/t/newCONSTSUB.t
11349            ! ext/Devel/PPPort/t/newRV.t ext/Devel/PPPort/t/podtest.t
11350            ! ext/Devel/PPPort/t/ppphtest.t ext/Devel/PPPort/t/pvs.t
11351            ! ext/Devel/PPPort/t/snprintf.t ext/Devel/PPPort/t/strlfuncs.t
11352            ! ext/Devel/PPPort/t/sv_xpvf.t ext/Devel/PPPort/t/threads.t
11353            ! ext/Devel/PPPort/t/uv.t ext/Devel/PPPort/t/variables.t
11354            ! ext/Devel/PPPort/t/warn.t
11355 ____________________________________________________________________________
11356 [ 29435] By: rgs                                   on 2006/12/02  09:10:01
11357         Log: Subject: [PATCH] perltodo.pod: add perlio todos/thinkabouts
11358              From: Jarkko Hietaniemi <jhi@cc.hut.fi>
11359              Date: Fri, 1 Dec 2006 22:05:17 +0200 (EET)
11360              Message-Id: <200612012005.kB1K5Hn3448004@kosh.hut.fi>
11361      Branch: perl
11362            ! pod/perltodo.pod
11363 ____________________________________________________________________________
11364 [ 29434] By: nicholas                              on 2006/12/01  22:51:22
11365         Log: Make get_db_sub non-static, and call it from pp_goto, which allows the
11366              removal of duplicate code. (The conversion of GvSV(PL_DBsub) to
11367              GvSVn(PL_DBsub) implicit in this change should fix a failure with
11368              Devel::SmallProf.)
11369      Branch: perl
11370            ! embed.fnc embed.h pp_ctl.c pp_hot.c proto.h
11371 ____________________________________________________________________________
11372 [ 29433] By: nicholas                              on 2006/12/01  22:28:11
11373         Log: Remove the pp_entersub specific logic from S_get_db_sub.
11374      Branch: perl
11375            ! embed.fnc pp_ctl.c pp_hot.c proto.h
11376 ____________________________________________________________________________
11377 [ 29432] By: rgs                                   on 2006/12/01  16:56:01
11378         Log: Subject: Re: [PATCH] Make B::Lint use Module::Pluggable
11379              From: "Joshua ben Jore" <twists@gmail.com>
11380              Date: Wed, 29 Nov 2006 16:26:25 -0800
11381              Message-ID: <dc5c751d0611291626w51f85791h93d0c6b7d13ed4a2@mail.gmail.com>
11382      Branch: perl
11383            + ext/B/t/pluglib/B/Lint/Plugin/Test.pm
11384            ! MANIFEST ext/B/B/Lint.pm ext/B/t/lint.t
11385 ____________________________________________________________________________
11386 [ 29431] By: rgs                                   on 2006/12/01  14:03:22
11387         Log: Remove unused variable
11388      Branch: perl
11389            ! regcomp.c
11390 ____________________________________________________________________________
11391 [ 29430] By: rgs                                   on 2006/12/01  13:59:27
11392         Log: Subject: [PATCH] Continue split of perl internal regexp structures from ones that are engine specific.
11393              From: demerphq <demerphq@gmail.com>
11394              Date: Thu, 30 Nov 2006 22:06:38 +0100
11395              Message-ID: <9b18b3110611301306p5cad5deal4aa55559b8c8defd@mail.gmail.com>
11396      Branch: perl
11397            ! embed.fnc embed.h ext/re/re.xs ext/re/re_top.h global.sym
11398            ! perl.h pod/perlreguts.pod proto.h regcomp.c regcomp.h regexp.h
11399            ! sv.c
11400 ____________________________________________________________________________
11401 [ 29429] By: rgs                                   on 2006/12/01  10:28:36
11402         Log: Verify that the debugger has an array where to store lines before
11403              doing so. This fixes an assertion failure when parsing a script
11404              that begins with '#!perl -d'.
11405              Also, code factorization in toke.c.
11406      Branch: perl
11407            ! embed.fnc embed.h op.c proto.h toke.c
11408 ____________________________________________________________________________
11409 [ 29428] By: steveh                                on 2006/12/01  09:41:47
11410         Log: Fix Time-HiRes linker error on Win32 introduced by upgrades
11411              from version 1.94 (#29423 and #29426)
11412              
11413              Subject: Re: Time::HiRes not happy?
11414              From: "Rafael Garcia-Suarez" <rgarciasuarez@gmail.com>
11415              Date: Fri, 1 Dec 2006 10:26:48 +0100
11416              Message-ID: <b77c1dce0612010126o799d5b8bs4ef37d22d5c7e50@mail.gmail.com>
11417      Branch: perl
11418            ! ext/Time/HiRes/HiRes.pm ext/Time/HiRes/HiRes.xs
11419 ____________________________________________________________________________
11420 [ 29427] By: stevep                                on 2006/11/30  14:21:40
11421         Log: -Dprefix failed on Cygwin unless the directory ${installbin} already
11422              existed prior to running make.
11423      Branch: perl
11424            ! cygwin/Makefile.SHs
11425 ____________________________________________________________________________
11426 [ 29426] By: stevep                                on 2006/11/30  14:11:57
11427         Log: Upgrade to Time-HiRes-1.96.
11428      Branch: perl
11429            ! ext/Time/HiRes/Changes ext/Time/HiRes/HiRes.pm
11430            ! ext/Time/HiRes/HiRes.xs ext/Time/HiRes/Makefile.PL
11431 ____________________________________________________________________________
11432 [ 29425] By: steveh                                on 2006/11/30  10:13:40
11433         Log: Don't try to export fd_refcnt symbols when building without USE_PERLIO
11434              to keep the Win32 linker happy
11435      Branch: perl
11436            ! makedef.pl
11437 ____________________________________________________________________________
11438 [ 29424] By: steveh                                on 2006/11/30  09:45:47
11439         Log: I think #29060 / #29073 missed this
11440      Branch: perl
11441            ! win32/win32.c win32/wince.c
11442 ____________________________________________________________________________
11443 [ 29423] By: stevep                                on 2006/11/30  04:44:54
11444         Log: Upgrade to Time-HiRes-1.95
11445      Branch: perl
11446            ! ext/Time/HiRes/Changes ext/Time/HiRes/HiRes.pm
11447            ! ext/Time/HiRes/Makefile.PL ext/Time/HiRes/fallback/const-c.inc
11448 ____________________________________________________________________________
11449 [ 29422] By: stevep                                on 2006/11/30  04:24:10
11450         Log: Subject: [PATCH] No code specified for -.
11451              From: Jarkko Hietaniemi <jhi@iki.fi>
11452              Date: Wed, 29 Nov 2006 19:06:09 -0500
11453              Message-ID: <456E2071.3010404@iki.fi>
11454      Branch: perl
11455            ! perl.c
11456 ____________________________________________________________________________
11457 [ 29421] By: stevep                                on 2006/11/29  15:32:58
11458         Log: Upgrade to CPAN-1.88_63.
11459      Branch: perl
11460            ! lib/CPAN.pm lib/CPAN/HandleConfig.pm lib/CPAN/Tarzip.pm
11461 ____________________________________________________________________________
11462 [ 29420] By: rgs                                   on 2006/11/29  15:26:00
11463         Log: Subject: Re: Fix \k<foo> preceded by literal
11464              From: demerphq <demerphq@gmail.com>
11465              Date: Wed, 29 Nov 2006 16:18:34 +0100
11466              Message-ID: <9b18b3110611290718o685a07ddja39f595ed97c231a@mail.gmail.com>
11467      Branch: perl
11468            ! regcomp.c regcomp.h t/op/re_tests
11469 ____________________________________________________________________________
11470 [ 29419] By: stevep                                on 2006/11/29  15:24:21
11471         Log: Upgrade to Tie-RefHash-1.35_01, which is just a version change for
11472              bleadperl.
11473      Branch: perl
11474            ! lib/Tie/RefHash.pm
11475 ____________________________________________________________________________
11476 [ 29418] By: stevep                                on 2006/11/29  15:17:59
11477         Log: Upgrade to ExtUtils-ParseXS-2.17.  Actuall just caught up with 
11478              most of the patches to bleadperl.  The remaining change missing
11479              is #29252, so, the version has been bumped to 2.17_01.
11480      Branch: perl
11481            ! lib/ExtUtils/ParseXS.pm
11482 ____________________________________________________________________________
11483 [ 29417] By: rgs                                   on 2006/11/29  12:08:35
11484         Log: Patch by Derek Price to Time::Piece for CPAN bug #21255:
11485              NOTDATE - DATE should stringify DATE and let Perl handle things
11486      Branch: perl
11487            ! ext/Time/Piece/Piece.pm ext/Time/Piece/t/06subclass.t
11488 ____________________________________________________________________________
11489 [ 29416] By: rgs                                   on 2006/11/29  11:34:10
11490         Log: Subject: [perl #41008] Setting $0 invalidates environment shown by ps 
11491              From: alexander_bluhm@genua.de (via RT) <perlbug-followup@perl.org>
11492              Date: Tue, 28 Nov 2006 05:09:31 -0800
11493              Message-ID: <rt-3.5.HEAD-32013-1164719371-480.41008-75-0@perl.org>
11494      Branch: perl
11495            ! mg.c
11496 ____________________________________________________________________________
11497 [ 29415] By: rgs                                   on 2006/11/29  11:01:06
11498         Log: Subject: [PATCH perl5db.pl] MacOSX debugger fork support
11499              From: Richard Foley <Richard.Foley@rfi.net>
11500              Date: Wed, 29 Nov 2006 12:00:53 +0100
11501              Message-Id: <200611291200.53429.Richard.Foley@rfi.net>
11502      Branch: perl
11503            ! lib/perl5db.pl
11504 ____________________________________________________________________________
11505 [ 29414] By: nicholas                              on 2006/11/29  10:19:19
11506         Log: Fix Attribute::Handlers to cope with proxy constant subroutines.
11507      Branch: perl
11508            + lib/Attribute/Handlers/t/constants.t
11509            ! MANIFEST lib/Attribute/Handlers.pm
11510 ____________________________________________________________________________
11511 [ 29413] By: rgs                                   on 2006/11/29  09:30:02
11512         Log: Change in handling of \RNNN inside nested patterns
11513              Subject: Re: New development release in sight
11514              From: demerphq <demerphq@gmail.com>
11515              Date: Wed, 29 Nov 2006 01:07:43 +0100
11516              Message-ID: <9b18b3110611281607i3d583febtd549989dc3cabc8a@mail.gmail.com>
11517      Branch: perl
11518            ! pod/perlre.pod regcomp.c t/op/pat.t t/op/re_tests
11519 ____________________________________________________________________________
11520 [ 29412] By: nicholas                              on 2006/11/28  23:31:15
11521         Log: Bring the joy of strict to Attribute::Handlers.
11522      Branch: perl
11523            ! lib/Attribute/Handlers.pm
11524 ____________________________________________________________________________
11525 [ 29411] By: rgs                                   on 2006/11/28  17:19:40
11526         Log: Remove DOS line endings
11527              (perforce should take care of line encodings on checkout)
11528      Branch: perl
11529            ! lib/IPC/Cmd/t/02_Interactive.t lib/Log/Message.pm
11530            ! lib/Log/Message/Config.pm lib/Log/Message/Handlers.pm
11531            ! lib/Log/Message/Item.pm lib/Log/Message/t/conf/config_file
11532            ! lib/Module/Load/Conditional/t/to_load/Commented.pm
11533            ! lib/Module/Load/Conditional/t/to_load/LoadIt.pm
11534            ! lib/Module/Load/Conditional/t/to_load/Must/Be/Loaded.pm
11535 ____________________________________________________________________________
11536 [ 29410] By: steveh                                on 2006/11/28  16:43:17
11537         Log: Fix IPC-Cmd test failure on Win32: check current directory as well
11538              as those listed in $ENV{PATH} when searching for binaries
11539      Branch: perl
11540            ! lib/IPC/Cmd.pm
11541 ____________________________________________________________________________
11542 [ 29409] By: steveh                                on 2006/11/28  16:01:55
11543         Log: Building with Visual C++ 2005 now works except for one test failure
11544      Branch: perl
11545            ! README.win32 win32/Makefile win32/makefile.mk
11546 ____________________________________________________________________________
11547 [ 29408] By: steveh                                on 2006/11/28  15:57:45
11548         Log: Silence VC++ 8 warnings about "possible loss of data"
11549      Branch: perl
11550            ! ext/POSIX/POSIX.xs pp_sys.c
11551 ____________________________________________________________________________
11552 [ 29407] By: rgs                                   on 2006/11/28  14:59:03
11553         Log: OS/2 compilation fixes by Ilya
11554              
11555              Subject: [PATCH 5.8.8] Build on OS/2
11556              From: Ilya Zakharevich <nospam-abuse@ilyaz.org>
11557              Date: Tue, 28 Nov 2006 03:36:29 -0800
11558              Message-ID: <20061128113629.GA18108@powdermilk.math.berkeley.edu>
11559      Branch: perl
11560            ! config_h.SH perlvars.h
11561 ____________________________________________________________________________
11562 [ 29406] By: steveh                                on 2006/11/28  14:58:14
11563         Log: Silence 4 "unreferenced local variable" warnings from VC++
11564      Branch: perl
11565            ! ext/Time/Piece/Piece.pm ext/Time/Piece/Piece.xs
11566 ____________________________________________________________________________
11567 [ 29405] By: rgs                                   on 2006/11/28  14:39:58
11568         Log: Subject: Re: [PATCH 5.8.8] Build on OS/2
11569              From: Ilya Zakharevich <nospam-abuse@ilyaz.org>
11570              Date: Tue, 28 Nov 2006 05:02:20 -0800
11571              Message-ID: <20061128130220.GA18386@powdermilk.math.berkeley.edu>
11572      Branch: perl
11573            ! ext/Devel/DProf/DProf.xs
11574 ____________________________________________________________________________
11575 [ 29404] By: rgs                                   on 2006/11/28  13:50:37
11576         Log: Add Module::Pluggable
11577              (required by CPANPLUS)
11578      Branch: perl
11579            + lib/Module/Pluggable.pm lib/Module/Pluggable/Object.pm
11580            + lib/Module/Pluggable/t/01use.t
11581            + lib/Module/Pluggable/t/02alsoworks.t
11582            + lib/Module/Pluggable/t/02works.t
11583            + lib/Module/Pluggable/t/02works_taint.t
11584            + lib/Module/Pluggable/t/03diffname.t
11585            + lib/Module/Pluggable/t/04acmedir.t
11586            + lib/Module/Pluggable/t/04acmedir_single.t
11587            + lib/Module/Pluggable/t/04acmepath.t
11588            + lib/Module/Pluggable/t/04acmepath_single.t
11589            + lib/Module/Pluggable/t/05postpath.t
11590            + lib/Module/Pluggable/t/06multipath.t
11591            + lib/Module/Pluggable/t/07instantiate.t
11592            + lib/Module/Pluggable/t/08nothing.t
11593            + lib/Module/Pluggable/t/09require.t
11594            + lib/Module/Pluggable/t/10innerpack.t
11595            + lib/Module/Pluggable/t/10innerpack_inner.t
11596            + lib/Module/Pluggable/t/10innerpack_noinner.t
11597            + lib/Module/Pluggable/t/10innerpack_override.t
11598            + lib/Module/Pluggable/t/11usetwice.t
11599            + lib/Module/Pluggable/t/12only.t
11600            + lib/Module/Pluggable/t/12onlyarray.t
11601            + lib/Module/Pluggable/t/12onlyregex.t
11602            + lib/Module/Pluggable/t/13except.t
11603            + lib/Module/Pluggable/t/13exceptarray.t
11604            + lib/Module/Pluggable/t/13exceptregex.t
11605            + lib/Module/Pluggable/t/14package.t
11606            + lib/Module/Pluggable/t/15topicsafe.t
11607            + lib/Module/Pluggable/t/16different_extension.t
11608            + lib/Module/Pluggable/t/17devel_inner_package.t
11609            + lib/Module/Pluggable/t/18skipped_package.t
11610            + lib/Module/Pluggable/t/19can_ok_clobber.t
11611            + lib/Module/Pluggable/t/20dodgy_files.t
11612            + lib/Module/Pluggable/t/acme/Acme/MyTest/Plugin/Foo.pm
11613            + lib/Module/Pluggable/t/lib/Acme/MyTest/Plugin/Foo.pm
11614            + lib/Module/Pluggable/t/lib/ExtTest/Plugin/Bar.plugin
11615            + lib/Module/Pluggable/t/lib/ExtTest/Plugin/Foo.plugin
11616            + lib/Module/Pluggable/t/lib/ExtTest/Plugin/Quux/Foo.plugin
11617            + lib/Module/Pluggable/t/lib/InnerTest/Plugin/Foo.pm
11618            + lib/Module/Pluggable/t/lib/MyOtherTest/Plugin/Bar.pm
11619            + lib/Module/Pluggable/t/lib/MyOtherTest/Plugin/Foo.pm
11620            + lib/Module/Pluggable/t/lib/MyOtherTest/Plugin/Quux.pm
11621            + lib/Module/Pluggable/t/lib/MyOtherTest/Plugin/Quux/Foo.pm
11622            + lib/Module/Pluggable/t/lib/MyTest/Extend/Plugin/Bar.pm
11623            + lib/Module/Pluggable/t/lib/MyTest/Plugin/Bar.pm
11624            + lib/Module/Pluggable/t/lib/MyTest/Plugin/Foo.pm
11625            + lib/Module/Pluggable/t/lib/MyTest/Plugin/Quux/Foo.pm
11626            + lib/Module/Pluggable/t/lib/No/Middle.pm
11627            + lib/Module/Pluggable/t/lib/OddTest/Plugin/-Dodgy.pm
11628            + lib/Module/Pluggable/t/lib/OddTest/Plugin/Foo.pm
11629            + lib/Module/Pluggable/t/lib/TA/C/A/I.pm
11630            ! MANIFEST
11631 ____________________________________________________________________________
11632 [ 29403] By: rgs                                   on 2006/11/28  13:32:26
11633         Log: Subject: [PATCH 5.8.8] perl5db on miniperl
11634              From: Ilya Zakharevich <nospam-abuse@ilyaz.org>
11635              Date: Tue, 28 Nov 2006 03:39:05 -0800
11636              Message-ID: <20061128113905.GA18135@powdermilk.math.berkeley.edu>
11637      Branch: perl
11638            ! lib/perl5db.pl
11639 ____________________________________________________________________________
11640 [ 29402] By: steveh                                on 2006/11/28  11:57:35
11641         Log: Give perl.exe an icon when built with MinGW and Borland
11642              
11643              It already gets an icon when built with VC++, but the MinGW and Borland
11644              builds were not making any use of the resource file.
11645              
11646              Also add the top-level directory into MinGW's resource compiler search
11647              path to assist ActivePerl builds: see:
11648              http://downloads.activestate.com/ActivePerl/src/5.8/AP819_diff.txt
11649      Branch: perl
11650            ! win32/makefile.mk
11651 ____________________________________________________________________________
11652 [ 29401] By: rgs                                   on 2006/11/28  10:45:06
11653         Log: Add IPC::Cmd to the core
11654      Branch: perl
11655            + lib/IPC/Cmd.pm lib/IPC/Cmd/t/01_IPC-Cmd.t
11656            + lib/IPC/Cmd/t/02_Interactive.t lib/IPC/Cmd/t/src/child.pl
11657            ! MANIFEST
11658 ____________________________________________________________________________
11659 [ 29400] By: rgs                                   on 2006/11/28  10:09:01
11660         Log: Typo fix (by Dominic Dunlop)
11661      Branch: perl
11662            ! cflags.SH
11663 ____________________________________________________________________________
11664 [ 29399] By: rgs                                   on 2006/11/28  09:57:24
11665         Log: Subject: [PATCH[ threads 1.53
11666              From: "Jerry D. Hedden" <jdhedden@yahoo.com>
11667              Date: Mon, 27 Nov 2006 09:26:08 -0800 (PST)
11668              Message-ID: <965653.3725.qm@web30206.mail.mud.yahoo.com>
11669      Branch: perl
11670            ! ext/threads/Changes ext/threads/README
11671            ! ext/threads/shared/t/cond.t ext/threads/t/exit.t
11672            ! ext/threads/t/libc.t ext/threads/t/stress_re.t
11673            ! ext/threads/t/thread.t ext/threads/threads.pm
11674            ! ext/threads/threads.xs
11675 ____________________________________________________________________________
11676 [ 29398] By: stevep                                on 2006/11/28  01:32:07
11677         Log: Subject: [PATCH] Re: [PATCH] perlhack: some portability updates
11678              From: Dominic Dunlop <shouldbedomo@mac.com>
11679              Date: Sun, 26 Nov 2006 12:01:16 +0100
11680              Message-Id: <253514EB-BA57-4A43-93FA-75D6F3CF27BC@mac.com>
11681      Branch: perl
11682            ! cflags.SH perl.h pod/perlhack.pod
11683 ____________________________________________________________________________
11684 [ 29397] By: steveh                                on 2006/11/27  17:44:27
11685         Log: Add missing d_printf_format_null/PRINTF_FORMAT_NULL_OK to Win32 canned
11686              configs
11687              
11688              See:
11689              http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2006-11/msg00923.html
11690      Branch: perl
11691            ! perl.h win32/config.bc win32/config.gc win32/config.vc
11692            ! win32/config.vc64 win32/config_H.bc win32/config_H.gc
11693            ! win32/config_H.vc win32/config_H.vc64
11694 ____________________________________________________________________________
11695 [ 29396] By: steveh                                on 2006/11/27  17:39:00
11696         Log: Make the win32/makefile.mk a little safer
11697              
11698              - Add a few missing s,\,$B, substitutions. We were living dangerously
11699              with various unescaped backslashes not causing problems purely because
11700              they don't make valid ecape codes anyway, e.g. ..\perl59.dll was only
11701              working because \p isn't an escape code so it didn't get mapped to
11702              anything nasty.
11703              
11704              - Move the $(BLINK_FLAGS) out of $(mktmp ...)'s because it could contain
11705              backslashes which would otherwise need escaping. (Adding in the
11706              escaping would be another fix but other cases don't put $(BLINK_FLAGS)
11707              into $(mktmp ...) files in the first place.)
11708      Branch: perl
11709            ! win32/makefile.mk
11710 ____________________________________________________________________________
11711 [ 29395] By: rgs                                   on 2006/11/27  16:54:26
11712         Log: Add missing file to MANIFEST
11713      Branch: perl
11714            ! MANIFEST
11715 ____________________________________________________________________________
11716 [ 29394] By: nicholas                              on 2006/11/27  08:02:35
11717         Log: Move words and revcharmap out of struct _rev_trie_data and duplicate
11718              them on thread clone.
11719      Branch: perl
11720            ! embed.fnc embed.h proto.h regcomp.c regcomp.h regexec.c
11721 ____________________________________________________________________________
11722 [ 29393] By: nicholas                              on 2006/11/26  23:32:29
11723         Log: Move widecharmap out of the shared structure _reg_trie_data into the
11724              top level regdata array, so that it can be correctly duplicated on
11725              thread clone.
11726      Branch: perl
11727            ! embed.fnc embed.h proto.h regcomp.c regcomp.h regexec.c
11728 ____________________________________________________________________________
11729 [ 29392] By: nicholas                              on 2006/11/26  23:01:46
11730         Log: Swap _reg_ac_data.trie to U32 offset into the regdata array, as
11731              preliminary to moving _reg_trie_data.widecharmap out too.
11732      Branch: perl
11733            ! regcomp.c regcomp.h regexec.c
11734 ____________________________________________________________________________
11735 [ 29391] By: nicholas                              on 2006/11/26  22:21:02
11736         Log: Moving the reference count to the front of both _reg_trie_data and
11737              _reg_ac_data allows smaller code in Perl_regdupe.
11738      Branch: perl
11739            ! regcomp.c regcomp.h
11740 ____________________________________________________________________________
11741 [ 29390] By: nicholas                              on 2006/11/26  20:52:49
11742         Log: A little reodering of the switch statement in Perl_regdupe makes a 
11743              smaller executable.
11744      Branch: perl
11745            ! regcomp.c
11746 ____________________________________________________________________________
11747 [ 29389] By: nicholas                              on 2006/11/26  20:03:16
11748         Log: Eliminated unitialised clone_params value bug accidentally added with
11749              change 28229.
11750      Branch: perl
11751            ! ext/threads/threads.xs
11752 ____________________________________________________________________________
11753 [ 29388] By: nicholas                              on 2006/11/26  20:00:36
11754         Log: Stage 1 of threadsafe-ing the trie strucutres - use shared malloc.
11755      Branch: perl
11756            ! regcomp.c
11757 ____________________________________________________________________________
11758 [ 29387] By: nicholas                              on 2006/11/26  18:44:57
11759         Log: Simplify S_add_data(), given that realloc will NULL acts as malloc().
11760      Branch: perl
11761            ! regcomp.c
11762 ____________________________________________________________________________
11763 [ 29386] By: nicholas                              on 2006/11/26  18:26:53
11764         Log: Change (well, correct) S_add_data to take and return a U32.
11765      Branch: perl
11766            ! embed.fnc proto.h regcomp.c
11767 ____________________________________________________________________________
11768 [ 29385] By: nicholas                              on 2006/11/26  18:00:05
11769         Log: Make the cache in Carp::trusts actually persist across calls :-)
11770              I made a similar mistake once long ago, and now spot the pattern.
11771      Branch: perl
11772            ! lib/Carp/Heavy.pm
11773 ____________________________________________________________________________
11774 [ 29384] By: nicholas                              on 2006/11/26  17:33:05
11775         Log: Remove unused lexical present since change 13426.
11776      Branch: perl
11777            ! lib/Carp/Heavy.pm
11778 ____________________________________________________________________________
11779 [ 29383] By: stevep                                on 2006/11/26  14:14:54
11780         Log: Adding Time::Piece to the core...again.
11781      Branch: perl
11782            + ext/Time/Piece/Changes ext/Time/Piece/Makefile.PL
11783            + ext/Time/Piece/Piece.pm ext/Time/Piece/Piece.xs
11784            + ext/Time/Piece/README ext/Time/Piece/Seconds.pm
11785            + ext/Time/Piece/t/01base.t ext/Time/Piece/t/02core.t
11786            + ext/Time/Piece/t/03compare.t ext/Time/Piece/t/04mjd.t
11787            + ext/Time/Piece/t/05overload.t ext/Time/Piece/t/06subclass.t
11788            ! MANIFEST Porting/Maintainers.pl
11789 ____________________________________________________________________________
11790 [ 29382] By: nicholas                              on 2006/11/26  12:38:20
11791         Log: Stop mod_perl looping forever in &Carp::shortmess_jmp as it somehow
11792              manages to forcibly re-load Carp.pm without re-loading Carp/Heavy.pm
11793      Branch: perl
11794            ! lib/Carp.pm lib/Carp/Heavy.pm
11795 ____________________________________________________________________________
11796 [ 29381] By: stevep                                on 2006/11/25  23:11:36
11797         Log: Skip test for Module::Load::Conditional that appears to be setting
11798              $^X, but not getting it right.  I'll wait to see if Jos has a fix.
11799      Branch: perl
11800            ! lib/Module/Load/Conditional/t/01_Module_Load_Conditional.t
11801 ____________________________________________________________________________
11802 [ 29380] By: craigb                                on 2006/11/25  22:19:14
11803         Log: xterm debugger support for VMS from John Malmberg (with revisions)
11804      Branch: perl
11805            ! configure.com lib/perl5db.pl vms/descrip_mms.template
11806            ! vms/vms.c
11807 ____________________________________________________________________________
11808 [ 29379] By: stevep                                on 2006/11/25  17:49:26
11809         Log: Subject: [PATCH] Add Module::Load::Conditional to the core
11810              From: "Jos Boumans" <kane@dwim.org>
11811              Date: Fri, 24 Nov 2006 18:07:54 +0100 (CET)
11812              Message-ID: <23336.80.127.35.68.1164388074.squirrel@webmail.xs4all.nl>
11813      Branch: perl
11814            + lib/Module/Load/Conditional.pm
11815            + lib/Module/Load/Conditional/t/01_Module_Load_Conditional.t
11816            + lib/Module/Load/Conditional/t/to_load/Commented.pm
11817            + lib/Module/Load/Conditional/t/to_load/LoadIt.pm
11818            + lib/Module/Load/Conditional/t/to_load/LoadMe.pl
11819            + lib/Module/Load/Conditional/t/to_load/Must/Be/Loaded.pm
11820            + lib/Module/Load/Conditional/t/to_load/ToBeLoaded
11821            ! MANIFEST
11822 ____________________________________________________________________________
11823 [ 29378] By: stevep                                on 2006/11/25  17:34:09
11824         Log: Subject: [PATCH] smoke signs suppression
11825              From: Jarkko Hietaniemi <jhi@iki.fi>
11826              Date: Sat, 25 Nov 2006 11:45:24 -0500
11827              Message-ID: <45687324.3040102@iki.fi>
11828      Branch: perl
11829            ! ext/re/re.xs iperlsys.h pp_hot.c regcomp.c regexec.c
11830 ____________________________________________________________________________
11831 [ 29377] By: stevep                                on 2006/11/25  17:29:55
11832         Log: Subject: [PATCH] perlhack: some portability updates
11833              From: Jarkko Hietaniemi <jhi@cc.hut.fi>
11834              Date: Sat, 25 Nov 2006 17:57:23 +0200 (EET)
11835              Message-Id: <200611251557.kAPFvNKw011342@kosh.hut.fi>
11836      Branch: perl
11837            ! pod/perlhack.pod
11838 ____________________________________________________________________________
11839 [ 29376] By: steveh                                on 2006/11/24  17:11:34
11840         Log: Remove redundant macros from win32 makefiles
11841              
11842              In the course of removing redundant ByteLoader references I found that
11843              various long lists of extensions are hopelessly out of date, e.g.
11844              Compress/Zlib should be Compress/Raw/Zlib and PerlIO/*, threads/* and
11845              others are missing. It seems that these lists of extensions serve no
11846              useful purpose anyway: in Makefile they are used to delete files that
11847              should already have been deleted by the Makefile for each module, and
11848              in makefile.mk DYNAMIC_EXT wasn't used at all! So the simplest remedy
11849              is to remove them. One less maintenance headache.
11850      Branch: perl
11851            ! win32/Makefile win32/makefile.mk
11852 ____________________________________________________________________________
11853 [ 29375] By: steveh                                on 2006/11/24  15:44:23
11854         Log: Cleanup manifest file left by test script when using VC8
11855      Branch: perl
11856            ! lib/ExtUtils/t/Embed.t
11857 ____________________________________________________________________________
11858 [ 29374] By: steveh                                on 2006/11/24  15:38:24
11859         Log: Embed manifest files in DLLs built with Module-Build when using VC8
11860              
11861              This change does for Module-Build what part of #29266 did for
11862              ExtUtils-MakeMaker.
11863      Branch: perl
11864            ! lib/ExtUtils/CBuilder/Platform/Windows.pm
11865 ____________________________________________________________________________
11866 [ 29373] By: rgs                                   on 2006/11/24  15:03:55
11867         Log: Subject: [perl #36689] &=, |= and ^= overloads are nbot documented
11868              From: "Adriano Rodrigues" <a.r.ferreira@gmail.com>
11869              Date: Thu, 23 Nov 2006 17:43:12 -0200
11870              Message-ID: <73ddeb6c0611231143y1e3461dbqf30f5fce16698b5c@mail.gmail.com>
11871      Branch: perl
11872            ! lib/overload.pm lib/overload.t
11873 ____________________________________________________________________________
11874 [ 29372] By: rgs                                   on 2006/11/24  10:16:07
11875         Log: Revert change #29098 (that introduced a new warning,
11876              "Variable length character upgraded in print")
11877      Branch: perl
11878            ! doio.c pod/perl595delta.pod pod/perldiag.pod
11879 ____________________________________________________________________________
11880 [ 29371] By: rgs                                   on 2006/11/24  09:58:43
11881         Log: Un-TODO one test in pat.t ($1 kept safe after a /g match)
11882      Branch: perl
11883            ! t/op/pat.t
11884 ____________________________________________________________________________
11885 [ 29370] By: craigb                                on 2006/11/24  04:45:30
11886         Log: Even better configure.com handling for checkcfgvar.pl
11887      Branch: perl
11888            ! Porting/checkcfgvar.pl
11889 ____________________________________________________________________________
11890 [ 29369] By: craigb                                on 2006/11/24  04:42:43
11891         Log: Initialize targetarch in configure.com
11892      Branch: perl
11893            ! configure.com
11894 ____________________________________________________________________________
11895 [ 29368] By: nicholas                              on 2006/11/23  23:17:44
11896         Log: Subject: Re: [PATCH] Cleanup regexp flags and structure
11897              From: demerphq <demerphq@gmail.com>
11898              Message-ID: <9b18b3110611231021l561a9cb4te985db3f0648e097@mail.gmail.com>
11899              Date: Thu, 23 Nov 2006 19:21:38 +0100
11900              
11901              Attached patch completes the splitting out of the core from the regexp
11902              internal data.
11903      Branch: perl
11904            ! regcomp.c regexec.c regexp.h
11905 ____________________________________________________________________________
11906 [ 29367] By: stevep                                on 2006/11/23  20:51:11
11907         Log: Module::Pluggable diff had some hidden binary files in it.  I'm
11908              backing it out while Jos verifies whether those files are actually
11909              needed in the distribution or not.
11910      Branch: perl
11911            - lib/Module/Pluggable.pm lib/Module/Pluggable/Object.pm
11912            - lib/Module/Pluggable/t/01use.t
11913            - lib/Module/Pluggable/t/02alsoworks.t
11914            - lib/Module/Pluggable/t/02works.t
11915            - lib/Module/Pluggable/t/03diffname.t
11916            - lib/Module/Pluggable/t/04acmedir.t
11917            - lib/Module/Pluggable/t/04acmedir_single.t
11918            - lib/Module/Pluggable/t/04acmepath.t
11919            - lib/Module/Pluggable/t/04acmepath_single.t
11920            - lib/Module/Pluggable/t/05postpath.t
11921            - lib/Module/Pluggable/t/06multipath.t
11922            - lib/Module/Pluggable/t/07instantiate.t
11923            - lib/Module/Pluggable/t/08nothing.t
11924            - lib/Module/Pluggable/t/09require.t
11925            - lib/Module/Pluggable/t/10innerpack.t
11926            - lib/Module/Pluggable/t/10innerpack_inner.t
11927            - lib/Module/Pluggable/t/10innerpack_noinner.t
11928            - lib/Module/Pluggable/t/10innerpack_override.t
11929            - lib/Module/Pluggable/t/11usetwice.t
11930            - lib/Module/Pluggable/t/12only.t
11931            - lib/Module/Pluggable/t/12onlyarray.t
11932            - lib/Module/Pluggable/t/12onlyregex.t
11933            - lib/Module/Pluggable/t/13except.t
11934            - lib/Module/Pluggable/t/13exceptarray.t
11935            - lib/Module/Pluggable/t/13exceptregex.t
11936            - lib/Module/Pluggable/t/14package.t
11937            - lib/Module/Pluggable/t/15topicsafe.t
11938            - lib/Module/Pluggable/t/16different_extension.t
11939            - lib/Module/Pluggable/t/17devel_inner_package.t
11940            - lib/Module/Pluggable/t/18skipped_package.t
11941            - lib/Module/Pluggable/t/19can_ok_clobber.t
11942            - lib/Module/Pluggable/t/20dodgy_files.t
11943            - lib/Module/Pluggable/t/acme/Acme/MyTest/Plugin/Foo.pm
11944            - lib/Module/Pluggable/t/lib/Acme/MyTest/Plugin/Foo.pm
11945            - lib/Module/Pluggable/t/lib/ExtTest/Plugin/Bar.plugin
11946            - lib/Module/Pluggable/t/lib/ExtTest/Plugin/Foo.plugin
11947            - lib/Module/Pluggable/t/lib/ExtTest/Plugin/Quux/Foo.plugin
11948            - lib/Module/Pluggable/t/lib/InnerTest/Plugin/Foo.pm
11949            - lib/Module/Pluggable/t/lib/MyOtherTest/Plugin/Bar.pm
11950            - lib/Module/Pluggable/t/lib/MyOtherTest/Plugin/Foo.pm
11951            - lib/Module/Pluggable/t/lib/MyOtherTest/Plugin/Quux.pm
11952            - lib/Module/Pluggable/t/lib/MyOtherTest/Plugin/Quux/Foo.pm
11953            - lib/Module/Pluggable/t/lib/MyTest/Extend/Plugin/Bar.pm
11954            - lib/Module/Pluggable/t/lib/MyTest/Plugin/Bar.pm
11955            - lib/Module/Pluggable/t/lib/MyTest/Plugin/Foo.pm
11956            - lib/Module/Pluggable/t/lib/MyTest/Plugin/Quux/Foo.pm
11957            - lib/Module/Pluggable/t/lib/No/Middle.pm
11958            - lib/Module/Pluggable/t/lib/OddTest/Plugin/%23Dodgy.pm
11959            - lib/Module/Pluggable/t/lib/OddTest/Plugin/Foo.pm
11960            - lib/Module/Pluggable/t/lib/TA/C/A/I.pm
11961            ! MANIFEST
11962 ____________________________________________________________________________
11963 [ 29366] By: stevep                                on 2006/11/23  20:09:57
11964         Log: Subject: [PATCH] Add Module::Pluggable to the core
11965              From: "Jos Boumans" <kane@xs4all.net>
11966              Date: Sun, 19 Nov 2006 16:06:00 +0100 (CET)
11967              Message-ID: <4188.80.127.35.68.1163948760.squirrel@webmail.xs4all.nl>
11968      Branch: perl
11969            + lib/Devel/InnerPackage.pm lib/Module/Pluggable.pm
11970            + lib/Module/Pluggable/Object.pm lib/Module/Pluggable/t/01use.t
11971            + lib/Module/Pluggable/t/02alsoworks.t
11972            + lib/Module/Pluggable/t/02works.t
11973            + lib/Module/Pluggable/t/03diffname.t
11974            + lib/Module/Pluggable/t/04acmedir.t
11975            + lib/Module/Pluggable/t/04acmedir_single.t
11976            + lib/Module/Pluggable/t/04acmepath.t
11977            + lib/Module/Pluggable/t/04acmepath_single.t
11978            + lib/Module/Pluggable/t/05postpath.t
11979            + lib/Module/Pluggable/t/06multipath.t
11980            + lib/Module/Pluggable/t/07instantiate.t
11981            + lib/Module/Pluggable/t/08nothing.t
11982            + lib/Module/Pluggable/t/09require.t
11983            + lib/Module/Pluggable/t/10innerpack.t
11984            + lib/Module/Pluggable/t/10innerpack_inner.t
11985            + lib/Module/Pluggable/t/10innerpack_noinner.t
11986            + lib/Module/Pluggable/t/10innerpack_override.t
11987            + lib/Module/Pluggable/t/11usetwice.t
11988            + lib/Module/Pluggable/t/12only.t
11989            + lib/Module/Pluggable/t/12onlyarray.t
11990            + lib/Module/Pluggable/t/12onlyregex.t
11991            + lib/Module/Pluggable/t/13except.t
11992            + lib/Module/Pluggable/t/13exceptarray.t
11993            + lib/Module/Pluggable/t/13exceptregex.t
11994            + lib/Module/Pluggable/t/14package.t
11995            + lib/Module/Pluggable/t/15topicsafe.t
11996            + lib/Module/Pluggable/t/16different_extension.t
11997            + lib/Module/Pluggable/t/17devel_inner_package.t
11998            + lib/Module/Pluggable/t/18skipped_package.t
11999            + lib/Module/Pluggable/t/19can_ok_clobber.t
12000            + lib/Module/Pluggable/t/20dodgy_files.t
12001            + lib/Module/Pluggable/t/acme/Acme/MyTest/Plugin/Foo.pm
12002            + lib/Module/Pluggable/t/lib/Acme/MyTest/Plugin/Foo.pm
12003            + lib/Module/Pluggable/t/lib/ExtTest/Plugin/Bar.plugin
12004            + lib/Module/Pluggable/t/lib/ExtTest/Plugin/Foo.plugin
12005            + lib/Module/Pluggable/t/lib/ExtTest/Plugin/Quux/Foo.plugin
12006            + lib/Module/Pluggable/t/lib/InnerTest/Plugin/Foo.pm
12007            + lib/Module/Pluggable/t/lib/MyOtherTest/Plugin/Bar.pm
12008            + lib/Module/Pluggable/t/lib/MyOtherTest/Plugin/Foo.pm
12009            + lib/Module/Pluggable/t/lib/MyOtherTest/Plugin/Quux.pm
12010            + lib/Module/Pluggable/t/lib/MyOtherTest/Plugin/Quux/Foo.pm
12011            + lib/Module/Pluggable/t/lib/MyTest/Extend/Plugin/Bar.pm
12012            + lib/Module/Pluggable/t/lib/MyTest/Plugin/Bar.pm
12013            + lib/Module/Pluggable/t/lib/MyTest/Plugin/Foo.pm
12014            + lib/Module/Pluggable/t/lib/MyTest/Plugin/Quux/Foo.pm
12015            + lib/Module/Pluggable/t/lib/No/Middle.pm
12016            + lib/Module/Pluggable/t/lib/OddTest/Plugin/%23Dodgy.pm
12017            + lib/Module/Pluggable/t/lib/OddTest/Plugin/Foo.pm
12018            + lib/Module/Pluggable/t/lib/TA/C/A/I.pm
12019            ! MANIFEST
12020 ____________________________________________________________________________
12021 [ 29365] By: nicholas                              on 2006/11/23  19:29:57
12022         Log: Change 29364 forgot to turn the POK flag on.
12023      Branch: perl
12024            ! sv.c
12025 ____________________________________________________________________________
12026 [ 29364] By: nicholas                              on 2006/11/23  17:16:34
12027         Log: Assigning to a PVCV effectively just sets the prototype, so make this
12028              the exact behaviour. (Fixes bug #40681, which prevents mod_perl from
12029              building)
12030      Branch: perl
12031            ! sv.c
12032 ____________________________________________________________________________
12033 [ 29363] By: nicholas                              on 2006/11/23  16:59:04
12034         Log: Remove superfluous SvROK()
12035      Branch: perl
12036            ! sv.c
12037 ____________________________________________________________________________
12038 [ 29362] By: craigb                                on 2006/11/23  16:11:16
12039         Log: Tune configure.com checking to ignore trailing comments.
12040      Branch: perl
12041            ! Porting/checkcfgvar.pl
12042 ____________________________________________________________________________
12043 [ 29361] By: rgs                                   on 2006/11/23  15:55:47
12044         Log: Fix for bug #38631: tied variables don't work with .= <>
12045      Branch: perl
12046            ! pp_hot.c t/op/readline.t
12047 ____________________________________________________________________________
12048 [ 29360] By: rgs                                   on 2006/11/23  12:57:18
12049         Log: Subject: [PATCH] Cleanup regexp flags and structure
12050              From: demerphq <demerphq@gmail.com>
12051              Date: Thu, 23 Nov 2006 12:36:24 +0100
12052              Message-ID: <9b18b3110611230336p3ce3b16du47cd5398dea8d873@mail.gmail.com>
12053      Branch: perl
12054            ! dump.c ext/re/re.xs mg.c op.c op.h pp.c pp_hot.c regcomp.c
12055            ! regexec.c regexp.h
12056 ____________________________________________________________________________
12057 [ 29359] By: rgs                                   on 2006/11/23  11:28:28
12058         Log: More safety in free()s
12059      Branch: perl
12060            ! op.c
12061 ____________________________________________________________________________
12062 [ 29358] By: steveh                                on 2006/11/23  11:06:47
12063         Log: Silence VC8's warnings about "unsafe" CRT functions and POSIX CRT
12064              function names being deprecated, and add a note to perltodo to
12065              revisit this one day.
12066      Branch: perl
12067            ! pod/perltodo.pod win32/Makefile win32/makefile.mk
12068 ____________________________________________________________________________
12069 [ 29357] By: rgs                                   on 2006/11/23  10:05:43
12070         Log: Subject: [PATCH lib/ExtUtils/t/build_man.t] installman3dir is null
12071              From: "Robin Barker" <Robin.Barker@npl.co.uk>
12072              Date: Tue, 21 Nov 2006 16:48:35 -0000
12073              Message-ID: <2C2E01334A940D4792B3E115F95B7226120ABE@exchsvr1.npl.ad.local>
12074      Branch: perl
12075            ! lib/ExtUtils/t/build_man.t
12076 ____________________________________________________________________________
12077 [ 29356] By: stevep                                on 2006/11/23  03:09:08
12078         Log: Upgrade to PathTools-3.24.
12079      Branch: perl
12080            ! ext/Cwd/Changes lib/Cwd.pm lib/File/Spec.pm
12081            ! lib/File/Spec/Cygwin.pm lib/File/Spec/Unix.pm
12082 ____________________________________________________________________________
12083 [ 29355] By: steveh                                on 2006/11/22  17:20:05
12084         Log: Update makefile.mk as per Makefile w.r.t. #29308 and #29323
12085      Branch: perl
12086            ! win32/makefile.mk
12087 ____________________________________________________________________________
12088 [ 29354] By: rgs                                   on 2006/11/22  17:09:33
12089         Log: Subject: \G with /g results in infinite loop in 5.6 and later
12090              From: demerphq <demerphq@gmail.com>
12091              Date: Wed, 22 Nov 2006 17:11:02 +0100
12092              Message-ID: <9b18b3110611220811k1a54f650t1bd7c6a9450b0a7e@mail.gmail.com>
12093      Branch: perl
12094            ! pod/perldiag.pod pod/perlre.pod pp_hot.c regcomp.c regcomp.h
12095            ! regcomp.sym regexec.c regexp.h t/op/pat.t t/op/regmesg.t
12096 ____________________________________________________________________________
12097 [ 29353] By: stevep                                on 2006/11/22  17:00:54
12098         Log: Subject: POSIX::remove() and directories
12099              From: "Dintelmann, Peter" <Peter.Dintelmann@Dresdner-Bank.com>
12100              Date: Wed, 22 Nov 2006 17:41:55 +0100
12101              Message-ID: <3852726AFA94DE4F87E616F13F416A5F0A912F@naimucu1.ffz00k.rootdom.net>
12102      Branch: perl
12103            ! ext/POSIX/POSIX.pm
12104 ____________________________________________________________________________
12105 [ 29352] By: steveh                                on 2006/11/22  16:49:10
12106         Log: VC8 regards 60 seconds as an invalid parameter for strftime()
12107              so skip the test in that case.
12108      Branch: perl
12109            ! ext/POSIX/t/posix.t
12110 ____________________________________________________________________________
12111 [ 29351] By: rgs                                   on 2006/11/22  15:17:54
12112         Log: Don't AUTOLOAD DESTROY from Attribute::Handlers.
12113              (patch by Jerry D. Hedden for CPAN bug #1911)
12114      Branch: perl
12115            ! lib/Attribute/Handlers.pm
12116 ____________________________________________________________________________
12117 [ 29350] By: steveh                                on 2006/11/22  15:11:41
12118         Log: Fix infinite loop in Perl_my_strftime() for failing strftime()
12119      Branch: perl
12120            ! util.c
12121 ____________________________________________________________________________
12122 [ 29349] By: rgs                                   on 2006/11/22  14:30:19
12123         Log: More doc nits on Switch, and bump version to 2.11 for upcoming CPAN release.
12124      Branch: perl
12125            ! lib/Switch.pm
12126 ____________________________________________________________________________
12127 [ 29348] By: stevep                                on 2006/11/22  14:10:07
12128         Log: Subject: Re: [perl #40917] Benchmark fails under -Mbignum
12129              From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
12130              Date: Wed, 22 Nov 2006 22:32:46 +0900
12131              Message-Id: <20061122223227.193E.BQW10602@nifty.com>
12132      Branch: perl
12133            ! lib/Benchmark.pm
12134 ____________________________________________________________________________
12135 [ 29347] By: rgs                                   on 2006/11/22  13:57:12
12136         Log: Fix a number of documentation issues in Switch.pm (code examples
12137              that do not compile, typos, obscure examples)
12138      Branch: perl
12139            ! lib/Switch.pm
12140 ____________________________________________________________________________
12141 [ 29346] By: rgs                                   on 2006/11/22  10:03:51
12142         Log: Remove tests for POD or POD coverage -- they're always skipped.
12143      Branch: perl
12144            - ext/Compress/IO/Base/t/99pod.t ext/Compress/IO/Zlib/t/999pod.t
12145            - ext/Compress/Raw/Zlib/t/99pod.t ext/Compress/Zlib/t/99pod.t
12146            - ext/Digest/SHA/t/0-pod-coverage.t ext/Digest/SHA/t/0-pod.t
12147            - lib/Term/ANSIColor/t/pod.t lib/Test/Harness/t/pod.t
12148            - lib/Text/Balanced/t/pod-coverage.t lib/Text/Balanced/t/pod.t
12149            ! MANIFEST
12150 ____________________________________________________________________________
12151 [ 29345] By: rgs                                   on 2006/11/22  09:56:14
12152         Log: - Restore two Text::Balanced tests, more comprehensive in bleadperl than
12153              in CPAN.
12154              - Restore a local bugfix, tested by the above tests.
12155              - Fix a few typos in the POD for Text::Balanced
12156              - Bump version of Text::Balanced
12157      Branch: perl
12158            ! lib/Text/Balanced.pm lib/Text/Balanced/t/extmul.t
12159            ! lib/Text/Balanced/t/extqlk.t
12160 ____________________________________________________________________________
12161 [ 29344] By: rgs                                   on 2006/11/22  09:12:16
12162         Log: Sync Text::Balanced with the CPAN version (1.99.1)
12163      Branch: perl
12164            ! lib/Text/Balanced.pm lib/Text/Balanced/Changes
12165            ! lib/Text/Balanced/README lib/Text/Balanced/t/extmul.t
12166            ! lib/Text/Balanced/t/extqlk.t
12167 ____________________________________________________________________________
12168 [ 29343] By: rgs                                   on 2006/11/21  17:24:19
12169         Log: Remove assertions.pm review from perltodo
12170      Branch: perl
12171            ! pod/perltodo.pod
12172 ____________________________________________________________________________
12173 [ 29342] By: rgs                                   on 2006/11/21  16:32:42
12174         Log: Subject: [PATCH] threads 1.52
12175              From: "Jerry D. Hedden" <jdhedden@yahoo.com>
12176              Date: Tue, 21 Nov 2006 08:26:28 -0800 (PST)
12177              Message-ID: <204140.57721.qm@web30207.mail.mud.yahoo.com>
12178      Branch: perl
12179            ! ext/threads/Changes ext/threads/README ext/threads/t/exit.t
12180            ! ext/threads/t/thread.t ext/threads/threads.pm
12181            ! ext/threads/threads.xs
12182 ____________________________________________________________________________
12183 [ 29341] By: merijn                                on 2006/11/21  16:18:49
12184         Log: Upgrade warning should only be issued if upgrade happens
12185      Branch: perl
12186            ! hints/hpux.sh
12187 ____________________________________________________________________________
12188 [ 29340] By: rgs                                   on 2006/11/21  16:08:34
12189         Log: Regenerate Changes, add nits in perldelta
12190      Branch: perl
12191            ! Changes pod/perl595delta.pod
12192 ____________________________________________________________________________
12193 [ 29339] By: merijn                                on 2006/11/21  16:03:30
12194         Log: Silence some warnings during Configure
12195      Branch: perl
12196            ! hints/hpux.sh
12197 ____________________________________________________________________________
12198 [ 29338] By: merijn                                on 2006/11/21  15:16:46
12199         Log: No more 5005thread messages from Configure for 5.9.x and up
12200      Branch: perl
12201            ! Configure Porting/Glossary config_h.SH
12202 ____________________________________________________________________________
12203 [ 29336] By: rgs                                   on 2006/11/21  14:45:19
12204         Log: Invalidate the method lookup cache when assigning to a glob
12205              named "isa". (That happens when importing "isa" from UNIVERSAL,
12206              for example.) Fixes bug #24824.
12207      Branch: perl
12208            ! pp_hot.c t/op/universal.t
12209 ____________________________________________________________________________
12210 [ 29335] By: rgs                                   on 2006/11/21  10:22:21
12211         Log: Remove warnings against WHOA THERE warnings from the hints files.
12212      Branch: perl
12213            ! hints/machten.sh hints/machten_2.sh hints/sco.sh
12214            ! hints/solaris_2.sh hints/sunos_4_1.sh hints/ultrix_4.sh
12215            ! hints/umips.sh
12216 ____________________________________________________________________________
12217 [ 29334] By: rgs                                   on 2006/11/21  10:17:36
12218         Log: Remove description of WHOA THERE messages for recommended hint values,
12219              removed by change #29288.
12220      Branch: perl
12221            ! INSTALL
12222 ____________________________________________________________________________
12223 [ 29333] By: rgs                                   on 2006/11/21  09:15:43
12224         Log: Remove the test counter checker at the end of t/op/pat.t : it
12225              doesn't get updated correctly.
12226      Branch: perl
12227            ! t/op/pat.t
12228 ____________________________________________________________________________
12229 [ 29332] By: stevep                                on 2006/11/21  03:59:34
12230         Log: "This is going to be slow."  This change switches OpenBSD locale
12231              tests from the spaghetti doneness test to specifically testing
12232              locales in its /usr/share/locale.  Speeds up lib/locale.t to 
12233              13 minutes a run vs. the previous time of over two hours.
12234      Branch: perl
12235            ! lib/locale.t
12236 ____________________________________________________________________________
12237 [ 29331] By: nicholas                              on 2006/11/20  22:53:39
12238         Log: Correct typo in test description.
12239      Branch: perl
12240            ! t/op/pat.t
12241 ____________________________________________________________________________
12242 [ 29330] By: rgs                                   on 2006/11/20  18:03:43
12243         Log: Unify the two warnings "Can't declare %s in %s", in line with what's
12244              documented in perldiag.
12245      Branch: perl
12246            ! op.c t/op/attrs.t
12247 ____________________________________________________________________________
12248 [ 29329] By: rgs                                   on 2006/11/20  16:05:33
12249         Log: Subject: [PATCH] Re: thread free problem
12250              From: "Jerry D. Hedden" <jdhedden@yahoo.com>
12251              Date: Mon, 20 Nov 2006 07:32:36 -0800 (PST)
12252              Message-ID: <696736.39963.qm@web30204.mail.mud.yahoo.com>
12253      Branch: perl
12254            ! op.c
12255 ____________________________________________________________________________
12256 [ 29328] By: rgs                                   on 2006/11/20  15:31:03
12257         Log: Actually, undef $SIG{FOO} should restore the default signal
12258              handler. Else, once we exit a block where the signal handler was
12259              localized, it becomes ignored.
12260      Branch: perl
12261            ! mg.c
12262 ____________________________________________________________________________
12263 [ 29327] By: rgs                                   on 2006/11/20  15:19:36
12264         Log: Make undef $SIG{FOO} ignore the signal FOO
12265      Branch: perl
12266            ! mg.c
12267 ____________________________________________________________________________
12268 [ 29326] By: rgs                                   on 2006/11/20  14:51:46
12269         Log: Subject: [patch@29297] perl5db.pl detecting forked debugger on VMS.
12270              From: "John E. Malmberg" <wb8tyw@qsl.net>
12271              Date: Sat, 18 Nov 2006 23:07:17 -0500
12272              Message-ID: <455FD875.8050007@qsl.net>
12273      Branch: perl
12274            ! lib/perl5db.pl
12275 ____________________________________________________________________________
12276 [ 29325] By: rgs                                   on 2006/11/20  14:04:22
12277         Log: Fix precedence problem
12278      Branch: perl
12279            ! mg.c
12280 ____________________________________________________________________________
12281 [ 29324] By: rgs                                   on 2006/11/20  13:36:10
12282         Log: Patch by Yves Orton to fix the regression reported in :
12283              Subject: 28325/6 break DateTime::Format::Strptime
12284              From: andreas.koenig.gmwojprw@franz.ak.mind.de (Andreas J. Koenig)
12285              Date: Sun, 19 Nov 2006 05:41:53 +0100
12286              Message-ID: <877ixs6oa6.fsf@k75.linux.bogus>
12287      Branch: perl
12288            ! ext/re/t/lexical_debug.pl ext/re/t/lexical_debug.t
12289            ! ext/re/t/regop.t pp.sym pp_proto.h regcomp.c regexec.c
12290            ! t/op/pat.t
12291 ____________________________________________________________________________
12292 [ 29323] By: rgs                                   on 2006/11/20  11:19:29
12293         Log: Extend the test-reonly make target on windows (Yves Orton)
12294      Branch: perl
12295            ! win32/Makefile
12296 ____________________________________________________________________________
12297 [ 29322] By: rgs                                   on 2006/11/20  11:18:03
12298         Log: Un-TODO tests for bug #32840, plus some new tests,
12299              by Yves Orton
12300      Branch: perl
12301            ! t/op/rxcode.t
12302 ____________________________________________________________________________
12303 [ 29321] By: steveh                                on 2006/11/20  10:38:07
12304         Log: Revert #29307. It doesn't fix the XXX after all. Using "$(shell @type )"
12305              on a temporary file just inserts the contents of the file in question
12306              into the command-line, exactly like putting the data there in the first
12307              place would achieve. It doesn't avoid creating a long command-line as we
12308              would like to do.
12309      Branch: perl
12310            ! win32/makefile.mk
12311 ____________________________________________________________________________
12312 [ 29320] By: rgs                                   on 2006/11/20  09:54:10
12313         Log: Update Text::Tabs and Text::Wrap to version 2006.1117
12314      Branch: perl
12315            + lib/Text/TabsWrap/t/Jacobson.t lib/Text/TabsWrap/t/Jacobson2.t
12316            ! MANIFEST lib/Text/Tabs.pm lib/Text/TabsWrap/CHANGELOG
12317            ! lib/Text/TabsWrap/t/tabs.t lib/Text/TabsWrap/t/wrap.t
12318            ! lib/Text/Wrap.pm
12319 ____________________________________________________________________________
12320 [ 29319] By: rgs                                   on 2006/11/19  15:36:29
12321         Log: Subject: [PATCH] ExtUtils/typemap: better error messages + constant string optimization
12322              From: Alexey Tourbin <at@altlinux.ru>
12323              Date: Sat, 18 Nov 2006 05:06:47 +0300
12324              Message-ID: <20061118020647.GA23287@localhost.localdomain>
12325      Branch: perl
12326            ! lib/ExtUtils/typemap
12327 ____________________________________________________________________________
12328 [ 29318] By: rgs                                   on 2006/11/19  13:56:32
12329         Log: Subject: Re: [PATCH] Study SUSPEND (and recursion) properly
12330              From: demerphq <demerphq@gmail.com>
12331              Date: Fri, 17 Nov 2006 13:34:42 +0100
12332              Message-ID: <9b18b3110611170434w218b4e86x7d61df2d1166a746@mail.gmail.com>
12333      Branch: perl
12334            ! regcomp.c
12335 ____________________________________________________________________________
12336 [ 29317] By: craigb                                on 2006/11/18  17:02:38
12337         Log: Update skip count for VMS.
12338      Branch: perl
12339            ! t/uni/class.t
12340 ____________________________________________________________________________
12341 [ 29316] By: nicholas                              on 2006/11/18  16:14:18
12342         Log: Subject: [perl #40921] shellwords.pl cannot handle trailing backslash
12343              From: alexander_bluhm@genua.de (via RT) <perlbug-followup@perl.org>
12344              Message-ID: <rt-3.5.HEAD-32013-1163784707-1469.40921-75-0@perl.org>
12345              Date: Fri, 17 Nov 2006 09:31:48 -0800
12346              
12347              (and convert the example to a test)
12348      Branch: perl
12349            ! lib/Text/ParseWords.pm lib/Text/ParseWords.t
12350 ____________________________________________________________________________
12351 [ 29315] By: nicholas                              on 2006/11/18  15:32:04
12352         Log: Convert lib/Text/ParseWords.t to Test::More
12353      Branch: perl
12354            ! lib/Text/ParseWords.t
12355 ____________________________________________________________________________
12356 [ 29314] By: stevep                                on 2006/11/18  05:42:14
12357         Log: Sync up the function definitions for Perl_my_popen with the prototype.
12358      Branch: perl
12359            ! util.c
12360 ____________________________________________________________________________
12361 [ 29313] By: stevep                                on 2006/11/18  05:04:42
12362         Log: Tweaks needed to get Perl compiling with g++ on OpenBSD.
12363      Branch: perl
12364            ! perl.h perlio.c
12365 ____________________________________________________________________________
12366 [ 29312] By: merijn                                on 2006/11/17  20:46:20
12367         Log: Subject: [perl #18209] bug in regex s/\s$word\s/ /gi; and $& 
12368              From: "yves orton via RT" <perlbug-followup@perl.org>
12369              Date: Fri, 17 Nov 2006 10:17:48 -0800
12370              Message-ID: <rt-3.5.HEAD-1713-1163787467-1300.18209-15-0@perl.org>
12371      Branch: perl
12372            ! mg.c t/op/pat.t
12373 ____________________________________________________________________________
12374 [ 29311] By: merijn                                on 2006/11/17  20:28:27
12375         Log: Subject: [perl #18209] bug in regex s/\s$word\s/ /gi; and $& 
12376              From: "yves orton via RT" <perlbug-followup@perl.org>
12377              Date: Fri, 17 Nov 2006 10:17:48 -0800
12378              Message-ID: <rt-3.5.HEAD-1713-1163787467-1300.18209-15-0@perl.org>
12379      Branch: perl
12380            ! t/op/pat.t
12381 ____________________________________________________________________________
12382 [ 29310] By: merijn                                on 2006/11/17  20:25:27
12383         Log: Subject: [perl #22395] regexp /(.*)[bc]/ 10000 times slower in 5.8.0 vs 5.6.1 
12384              From: "yves orton via RT" <perlbug-followup@perl.org>
12385              Date: Fri, 17 Nov 2006 09:48:14 -0800
12386              Message-ID: <rt-3.5.HEAD-1666-1163785693-404.22395-15-0@perl.org>
12387      Branch: perl
12388            ! regcomp.c t/op/pat.t
12389 ____________________________________________________________________________
12390 [ 29309] By: merijn                                on 2006/11/17  20:12:20
12391         Log: Subject: [perl #17542] regex confusion 
12392              From: "yves orton via RT" <perlbug-followup@perl.org>
12393              Date: Fri, 17 Nov 2006 07:40:15 -0800
12394              Message-ID: <rt-3.5.HEAD-32013-1163778013-580.17542-15-0@perl.org>
12395      Branch: perl
12396            ! t/op/subst.t
12397 ____________________________________________________________________________
12398 [ 29308] By: merijn                                on 2006/11/17  19:54:49
12399         Log: Subject: [perl #36909] $^R undefined on matches involving backreferences
12400              From: yves orton via RT <bugs-perl5@bugs6.perl.org>
12401              Date: Nov 17, 2006 4:07 PM
12402      Branch: perl
12403            ! regcomp.c regexec.c t/op/pat.t t/op/subst.t win32/Makefile
12404 ____________________________________________________________________________
12405 [ 29307] By: steveh                                on 2006/11/17  17:07:33
12406         Log: Fix the XXX in #29303
12407      Branch: perl
12408            ! win32/makefile.mk
12409 ____________________________________________________________________________
12410 [ 29306] By: steveh                                on 2006/11/17  15:55:51
12411         Log: Tidy up Makefile part of #29260 and apply to makefile.mk too
12412      Branch: perl
12413            ! win32/Makefile win32/makefile.mk
12414 ____________________________________________________________________________
12415 [ 29305] By: steveh                                on 2006/11/17  15:45:26
12416         Log: Install perl-static.exe if it was built
12417              
12418              Perhaps this should be done via "installperl" so as to get, e.g.,
12419              perl5.9.5-static.exe and honour INST_VER and INST_ARCH?
12420              
12421              Just do it quick-and-dirty for now, as is done for wperl.exe. It
12422              can always be fixed later if anyone wants it.
12423      Branch: perl
12424            ! win32/Makefile win32/makefile.mk
12425 ____________________________________________________________________________
12426 [ 29304] By: rgs                                   on 2006/11/17  15:45:23
12427         Log: Subject: [patch@29297] d_printf_format_null needed in configure.com
12428              From: "John E. Malmberg" <wb8tyw@qsl.net>
12429              Date: Fri, 17 Nov 2006 10:22:50 -0500
12430              Message-ID: <455DD3CA.6050405@qsl.net>
12431      Branch: perl
12432            ! configure.com
12433 ____________________________________________________________________________
12434 [ 29303] By: steveh                                on 2006/11/17  15:12:12
12435         Log: Add perl-static.exe support to win32/makefile.mk
12436              
12437              This applies the same changes that were made in win32/Makefile by
12438              changes #29285 and #29296, plus a tweak to win32/runperl.c to fix
12439              a linker error when using MinGW/gcc
12440      Branch: perl
12441            ! win32/makefile.mk win32/runperl.c
12442 ____________________________________________________________________________
12443 [ 29302] By: nicholas                              on 2006/11/17  13:01:51
12444         Log: Change 29297 omitted a semicolon.
12445      Branch: perl
12446            ! t/op/taint.t
12447 ____________________________________________________________________________
12448 [ 29301] By: rgs                                   on 2006/11/17  11:06:48
12449         Log: Subject: [PATCH] Study SUSPEND (and recursion) properly
12450              From: demerphq <demerphq@gmail.com>
12451              Date: Thu, 16 Nov 2006 20:32:11 +0100
12452              Message-ID: <9b18b3110611161132j695ee86ata939a149b08efb11@mail.gmail.com>
12453      Branch: perl
12454            ! regcomp.c t/op/pat.t
12455 ____________________________________________________________________________
12456 [ 29300] By: rgs                                   on 2006/11/17  09:45:56
12457         Log: Doc nits to re.pm
12458      Branch: perl
12459            ! ext/re/re.pm
12460 ____________________________________________________________________________
12461 [ 29299] By: rgs                                   on 2006/11/17  09:38:56
12462         Log: Subject: [PATCH] add regmust() to re.pm/re.xs
12463              From: demerphq <demerphq@gmail.com>
12464              Date: Fri, 17 Nov 2006 00:54:13 +0100
12465              Message-ID: <9b18b3110611161554m222446bay7912ec1f778d3aaa@mail.gmail.com>
12466      Branch: perl
12467            ! ext/re/re.pm ext/re/re.xs ext/re/t/re_funcs.t pod/perltodo.pod
12468 ____________________________________________________________________________
12469 [ 29298] By: steveh                                on 2006/11/17  08:53:21
12470         Log: Add missing d_ctermid/HAS_CTERMID to Win32 canned configs
12471      Branch: perl
12472            ! win32/config.bc win32/config.gc win32/config.vc
12473            ! win32/config.vc64 win32/config_H.bc win32/config_H.gc
12474            ! win32/config_H.vc win32/config_H.vc64
12475 ____________________________________________________________________________
12476 [ 29297] By: stevep                                on 2006/11/17  04:20:01
12477         Log: Change #27951 added tests to t/op/taint.t involving taint, opening 
12478              "|-".  Unfortunately, this usually reacts badly on OpenBSD with
12479              threaded Perls, causing zombie processes nearly every time this is run.
12480              For now, skipping the test seem reasonable while working on a solution
12481              to the problem.
12482      Branch: perl
12483            ! t/op/taint.t
12484 ____________________________________________________________________________
12485 [ 29296] By: steveh                                on 2006/11/16  14:28:59
12486         Log: Fix Extensions_static dependencies to avoid relinking every time
12487              
12488              Subject: Re: [PATCH@29224] RE: [patch-at-29217] static linkage for perl.ex e fo r win32
12489              From: demerphq <demerphq@gmail.com>
12490              Date: Thu, 16 Nov 2006 13:58:32 +0100
12491              Message-ID: <9b18b3110611160458r6bebb7f6k8421abe68b474997@mail.gmail.com>
12492      Branch: perl
12493            ! win32/Makefile
12494 ____________________________________________________________________________
12495 [ 29295] By: rgs                                   on 2006/11/16  13:35:14
12496         Log: Remove duplicate declaration
12497      Branch: perl
12498            ! regexp.h
12499 ____________________________________________________________________________
12500 [ 29294] By: rgs                                   on 2006/11/16  11:55:07
12501         Log: Clarifications to close() docs, pointed out by Peter Dintelmann
12502      Branch: perl
12503            ! pod/perlfunc.pod
12504 ____________________________________________________________________________
12505 [ 29293] By: rgs                                   on 2006/11/16  10:24:47
12506         Log: Subject: [PATCH] threads 1.51
12507              From: "Jerry D. Hedden" <jdhedden@yahoo.com>
12508              Date: Wed, 15 Nov 2006 11:36:58 -0800 (PST)
12509              Message-ID: <71793.95536.qm@web30213.mail.mud.yahoo.com>
12510      Branch: perl
12511            ! ext/threads/Changes ext/threads/README ext/threads/t/exit.t
12512            ! ext/threads/t/thread.t ext/threads/threads.pm
12513            ! ext/threads/threads.xs
12514 ____________________________________________________________________________
12515 [ 29292] By: steveh                                on 2006/11/16  09:30:48
12516         Log: Update checkcfgvars.pl: config.ce is in win32/ in 5.9.x
12517              Leave wince/config.ce in the list as well, though, because that still
12518              exists in 5.8.x
12519      Branch: perl
12520            ! Porting/checkcfgvar.pl
12521 ____________________________________________________________________________
12522 [ 29291] By: merijn                                on 2006/11/16  09:13:08
12523         Log: Extended uconfig.sh based on Porting/checkcfgvar.pl findings
12524      Branch: perl
12525            ! uconfig.sh
12526 ____________________________________________________________________________
12527 [ 29289] By: merijn                                on 2006/11/16  08:07:33
12528         Log: Yet another step in generation a more reliable Glossary
12529      Branch: perl
12530            ! Porting/Glossary Porting/config.sh
12531 ____________________________________________________________________________
12532 [ 29288] By: merijn                                on 2006/11/15  21:36:30
12533         Log: 1. Less Whoa there, based on a suggestion by Andy Dougherty
12534              2. d_printf_format_null, based on a patch by Robin Barker
12535      Branch: perl
12536            ! Configure Porting/Glossary config_h.SH
12537 ____________________________________________________________________________
12538 [ 29285] By: steveh                                on 2006/11/15  18:07:44
12539         Log: Add support for building a perl-static.exe that doesn't depend on
12540              the perl59.dll. It currently can't load DLL extension modules, so
12541              any that are required must be statically linked too. This may be
12542              fixed sometime.  Changes to win32/makefile.mk also to follow.
12543              
12544              Subject: RE: [PATCH@29224] RE: [patch-at-29217] static linkage for perl.exe fo r win32
12545              From: "Konovalov, Vadim Vladimirovich (Vadim)** CTR **" <vkonovalov@Lucent.com>
12546              Date: Mon, 13 Nov 2006 19:45:05 +0100
12547              Message-ID: <E3FB32585BF1D411B9E900805FF51A080207FA41@ru0022exch001u.ru.lucent.com>
12548              
12549              (with minor tweaks for cleanup and embedding manifest file)
12550      Branch: perl
12551            ! win32/Makefile
12552 ____________________________________________________________________________
12553 [ 29284] By: steveh                                on 2006/11/15  17:32:24
12554         Log: Fix tests added by #29248 and #29249
12555      Branch: perl
12556            ! ext/XS/APItest/APItest.xs ext/XS/APItest/core_or_not.inc
12557 ____________________________________________________________________________
12558 [ 29283] By: rgs                                   on 2006/11/15  15:28:53
12559         Log: Subject: [perl #39026] Tie::Memoize::EXISTS not caching the value 
12560              From: Len Weisberg (via RT) <perlbug-followup@perl.org>
12561              Date: Fri, 28 Apr 2006 20:36:05 -0700
12562              Message-ID: <rt-3.0.11-39026-132847.17.5801704932685@perl.org>
12563      Branch: perl
12564            ! lib/Tie/Memoize.pm
12565 ____________________________________________________________________________
12566 [ 29282] By: rgs                                   on 2006/11/15  13:56:52
12567         Log: FAQ sync
12568      Branch: perl
12569            ! pod/perlfaq.pod pod/perlfaq1.pod pod/perlfaq2.pod
12570            ! pod/perlfaq4.pod pod/perlfaq5.pod pod/perlfaq7.pod
12571            ! pod/perlfaq9.pod
12572 ____________________________________________________________________________
12573 [ 29281] By: rgs                                   on 2006/11/15  13:03:34
12574         Log: Fix a signedness cast warning
12575      Branch: perl
12576            ! sv.c
12577 ____________________________________________________________________________
12578 [ 29280] By: rgs                                   on 2006/11/15  12:51:48
12579         Log: Tweaks to the debugger test by Richard Foley,
12580              plus fix auxiliary file path
12581      Branch: perl
12582            ! lib/perl5db.t
12583 ____________________________________________________________________________
12584 [ 29279] By: rgs                                   on 2006/11/15  12:41:24
12585         Log: Subject: Re: [PATCH] Fix RT#19049 and add relative backreferences
12586              From: demerphq <demerphq@gmail.com>
12587              Date: Wed, 15 Nov 2006 12:29:39 +0100
12588              Message-ID: <9b18b3110611150329l206e4552w887ae5f0a3f7ca80@mail.gmail.com>
12589      Branch: perl
12590            ! ext/re/re.xs pod/perl595delta.pod pod/perldiag.pod
12591            ! pod/perlre.pod pod/perlreguts.pod regcomp.c regexec.c regexp.h
12592            ! t/op/pat.t t/op/re_tests
12593 ____________________________________________________________________________
12594 [ 29278] By: rgs                                   on 2006/11/15  11:12:30
12595         Log: Move the test files for the debugger in a t/ subdirectory, so they
12596              don't get installed
12597      Branch: perl
12598           +> lib/perl5db/t/eval-line-bug
12599            - lib/perl5db/eval-line-bug
12600            ! MANIFEST
12601 ____________________________________________________________________________
12602 [ 29277] By: rgs                                   on 2006/11/15  10:37:58
12603         Log: Subject: Re: Fix linker error on Win32
12604              From: demerphq <demerphq@gmail.com>
12605              Date: Wed, 15 Nov 2006 10:36:34 +0100
12606              Message-ID: <9b18b3110611150136n7c90d187t5cf49847f153a537@mail.gmail.com>
12607      Branch: perl
12608            ! ext/XS/APItest/core_or_not.inc
12609 ____________________________________________________________________________
12610 [ 29276] By: stevep                                on 2006/11/15  04:33:20
12611         Log: Subject: [PATCH] Makefile.SH: lib/re.pm often messes restarted parallel makes
12612              From: jhi@cc.hut.fi (Jarkko Hietaniemi)
12613              Date: Wed, 15 Nov 2006 05:48:32 +0200 (EET)
12614              Message-Id: <20061115034832.43B7E8B3E7@seth.hut.fi>
12615      Branch: perl
12616            ! Makefile.SH
12617 ____________________________________________________________________________
12618 [ 29275] By: davem                                 on 2006/11/14  23:24:45
12619         Log: debugger test could hang if run with umask 0002
12620      Branch: perl
12621            ! lib/perl5db.t
12622 ____________________________________________________________________________
12623 [ 29274] By: rgs                                   on 2006/11/14  16:59:45
12624         Log: A first regression test for the debugger, by Shlomi Fish
12625              and Richard Foley.
12626      Branch: perl
12627            + lib/perl5db.t lib/perl5db/eval-line-bug
12628            ! MANIFEST
12629 ____________________________________________________________________________
12630 [ 29273] By: rgs                                   on 2006/11/14  14:19:46
12631         Log: Fix bug #39037: rcatline doesn't stringify references
12632      Branch: perl
12633            ! pp_hot.c t/op/readline.t
12634 ____________________________________________________________________________
12635 [ 29272] By: rgs                                   on 2006/11/14  12:36:15
12636         Log: Doc patch by Thomas O Smailus :
12637              Subject: Fwd: [perl #40866] Error on doc page? (File::Basename)
12638              From: "Adriano Rodrigues" <a.r.ferreira@gmail.com>
12639              Date: Tue, 14 Nov 2006 10:24:38 -0200
12640              Message-ID: <73ddeb6c0611140424t26b01d0aq667ca95e77f25e6@mail.gmail.com>
12641      Branch: perl
12642            ! lib/File/Basename.pm
12643 ____________________________________________________________________________
12644 [ 29271] By: rgs                                   on 2006/11/14  11:35:04
12645         Log: Assert that we don't access strings saved for $1 etc. out of bounds
12646      Branch: perl
12647            ! mg.c
12648 ____________________________________________________________________________
12649 [ 29270] By: rgs                                   on 2006/11/14  10:18:00
12650         Log: Subject: Re: Why aren't %Carp::Internal and %Carp::CarpInternal documented?
12651              From: "Ben Tilly" <btilly@gmail.com>
12652              Date: Sun, 22 Oct 2006 14:07:23 -0700
12653              Message-ID: <acc274b30610221407o39e0157gad44ad5828c2bc21@mail.gmail.com>
12654      Branch: perl
12655            ! lib/Carp.pm lib/Carp.t lib/Carp/Heavy.pm
12656 ____________________________________________________________________________
12657 [ 29269] By: rgs                                   on 2006/11/14  09:40:43
12658         Log: Subject: [PATCH] ParseXS.pm: small optimization for "Usage: ..." constant strings
12659              From: Alexey Tourbin <at@altlinux.ru>
12660              Date: Tue, 14 Nov 2006 05:45:40 +0300
12661              Message-ID: <20061114024540.GA21986@localhost.localdomain>
12662      Branch: perl
12663            ! lib/ExtUtils/ParseXS.pm
12664 ____________________________________________________________________________
12665 [ 29268] By: rgs                                   on 2006/11/14  09:36:17
12666         Log: Subject: Fwd: Memory leak with s/// and hashes
12667              From: demerphq <demerphq@gmail.com>
12668              Date: Tue, 14 Nov 2006 00:38:31 +0100
12669              Message-ID: <9b18b3110611131538kc00175ft4db7ff71df22e766@mail.gmail.com>
12670      Branch: perl
12671            ! regcomp.c regexec.c regexp.h
12672 ____________________________________________________________________________
12673 [ 29267] By: rgs                                   on 2006/11/14  06:59:03
12674         Log: Subject: [PATCH] Allow negative indexing in recursive patterns
12675              From: demerphq <demerphq@gmail.com>
12676              Date: Mon, 13 Nov 2006 18:59:32 +0100
12677              Message-ID: <9b18b3110611130959k1fdd2485yd8eb1cd428de570a@mail.gmail.com>
12678      Branch: perl
12679            ! pod/perlre.pod regcomp.c t/op/pat.t t/op/re_tests
12680 ____________________________________________________________________________
12681 [ 29266] By: steveh                                on 2006/11/13  18:09:58
12682         Log: Embed manifest files in EXEs and DLLs when building with VC++ 8.x
12683              
12684              See the thread starting here for details:
12685              http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2006-11/msg00398.html
12686              
12687              (Still need to do something for Module::Build somtime...)
12688      Branch: perl
12689            ! lib/ExtUtils/MM_Win32.pm lib/ExtUtils/MakeMaker.pm
12690            ! win32/Makefile win32/makefile.mk
12691 ____________________________________________________________________________
12692 [ 29265] By: rgs                                   on 2006/11/13  15:52:54
12693         Log: Todo (nice to have): an improvement to ~~
12694      Branch: perl
12695            ! pod/perltodo.pod
12696 ____________________________________________________________________________
12697 [ 29264] By: stevep                                on 2006/11/13  15:10:16
12698         Log: Upgrade to CPAN-1.88_62
12699      Branch: perl
12700            ! lib/CPAN.pm lib/CPAN/FirstTime.pm lib/CPAN/HandleConfig.pm
12701            ! lib/CPAN/SIGNATURE
12702 ____________________________________________________________________________
12703 [ 29263] By: rgs                                   on 2006/11/13  15:05:27
12704         Log: Fix a bug in the debugger tracing variables when one was eval'ing
12705              a string including a "#line" directive containing the actual
12706              name of the file already. (following-up change #25409)
12707      Branch: perl
12708            ! toke.c
12709 ____________________________________________________________________________
12710 [ 29262] By: rgs                                   on 2006/11/13  14:30:15
12711         Log: The latest regression test to Scalar::Util doesn't pass with threaded perls
12712      Branch: perl
12713            ! ext/List/Util/t/readonly.t
12714 ____________________________________________________________________________
12715 [ 29261] By: rgs                                   on 2006/11/13  14:15:33
12716         Log: A new regression test from:
12717              
12718              Subject: [PATHCH]  Scalar::Util::readonly &  compression (was RE: Change 29117: [PATCH] IO::Compress modules)
12719              From: "Paul Marquess" <paul.marquess@ntlworld.com>
12720              Date: Sun, 29 Oct 2006 21:03:21 -0000
12721              Message-ID: <02cf01c6fb9d$ade808a0$6501a8c0@myopwv.com>
12722      Branch: perl
12723            ! ext/List/Util/t/readonly.t
12724 ____________________________________________________________________________
12725 [ 29260] By: rgs                                   on 2006/11/13  14:00:41
12726         Log: Subject: Re: [PATCH] New regex syntax omnibus
12727              From: demerphq <demerphq@gmail.com>
12728              Date: Thu, 9 Nov 2006 17:09:34 +0100
12729              Message-ID: <9b18b3110611090809l667860c9t6c27453d7c86a21e@mail.gmail.com>
12730      Branch: perl
12731            ! pod/perl595delta.pod pod/perlre.pod regcomp.c regcomp.h
12732            ! regcomp.pl regcomp.sym regexec.c regexp.h regnodes.h
12733            ! t/op/pat.t win32/Makefile
12734 ____________________________________________________________________________
12735 [ 29259] By: rgs                                   on 2006/11/13  11:38:02
12736         Log: Subject: [PATCH] was RE: Perl_die() / Perl_croak()
12737              From: "Robin Barker" <Robin.Barker@npl.co.uk>
12738              Date: Mon, 13 Nov 2006 10:25:08 -0000
12739              Message-ID: <2C2E01334A940D4792B3E115F95B7226149377@exchsvr1.npl.ad.local>
12740      Branch: perl
12741            ! embed.fnc embed.pl perl.h proto.h
12742 ____________________________________________________________________________
12743 [ 29258] By: rgs                                   on 2006/11/13  11:17:10
12744         Log: Parsing fix: it wasn't possible to call a function with a (_) prototype
12745              (that is, a function mimicing an unary op) without parentheses.
12746              Bug reported by Ã†var Arnfjörð Bjarmason.
12747      Branch: perl
12748            ! madly.act madly.tab madly.y perly.act perly.tab perly.y
12749            ! t/comp/uproto.t
12750 ____________________________________________________________________________
12751 [ 29257] By: rgs                                   on 2006/11/13  10:13:52
12752         Log: Subject: Re: [perl #27053] /^/m doesn't match after a newline at the end of the string
12753              From: demerphq <demerphq@gmail.com>
12754              Date: Sat, 11 Nov 2006 16:25:17 +0100
12755              Message-ID: <9b18b3110611110725t3dc1e447v751ef5880363aa9b@mail.gmail.com>
12756      Branch: perl
12757            ! pod/perlre.pod
12758 ____________________________________________________________________________
12759 [ 29256] By: rgs                                   on 2006/11/13  10:12:34
12760         Log: Casting nit
12761      Branch: perl
12762            ! regcomp.c
12763 ____________________________________________________________________________
12764 [ 29255] By: rgs                                   on 2006/11/13  09:55:11
12765         Log: POD fixes and nits in re.pm
12766      Branch: perl
12767            ! ext/re/re.pm
12768 ____________________________________________________________________________
12769 [ 29254] By: rgs                                   on 2006/11/13  09:40:35
12770         Log: Subject: [PATCH DOC] minor nit in binmode docs
12771              From: Paul Johnson <paul@pjcj.net>
12772              Date: Fri, 10 Nov 2006 12:17:37 +0100
12773              Message-ID: <20061110111737.GP17047@pjcj.net>
12774      Branch: perl
12775            ! pod/perlfunc.pod
12776 ____________________________________________________________________________
12777 [ 29253] By: stevep                                on 2006/11/13  02:23:29
12778         Log: The DynaLoader test isn't happy with OpenBSD's libc.so.39.3.
12779      Branch: perl
12780            ! ext/DynaLoader/t/DynaLoader.t
12781 ____________________________________________________________________________
12782 [ 29252] By: stevep                                on 2006/11/13  02:19:12
12783         Log: Subject: [PATCH] Regex Utility Functions and Substituion Fix (XML::Twig core dump)
12784              From: demerphq <demerphq@gmail.com>
12785              Date: Sun, 12 Nov 2006 23:29:41 +0100
12786              Message-ID: <9b18b3110611121429g1fc9d6c1t4007dc711f9e8396@mail.gmail.com>
12787              
12788              Plus a couple tweaks to ext/re/re.pm and t/op/pat.t to those patches
12789              to apply cleanly.
12790      Branch: perl
12791            + ext/re/t/re_funcs.t
12792            ! MANIFEST embed.fnc embed.h ext/re/re.pm ext/re/re.xs
12793            ! ext/re/re_top.h lib/ExtUtils/ParseXS.pm perl.h
12794            ! pod/perlreguts.pod pp.c pp_hot.c proto.h regcomp.c regcomp.h
12795            ! regexp.h sv.c t/op/pat.t
12796 ____________________________________________________________________________
12797 [ 29251] By: nicholas                              on 2006/11/12  23:09:46
12798         Log: Re-order ops to the implementation order in pp_sys.c - this makes a
12799              branch table corresponding to a switch statement slightly smaller.
12800      Branch: perl
12801            ! opcode.h opcode.pl opnames.h
12802 ____________________________________________________________________________
12803 [ 29250] By: nicholas                              on 2006/11/12  22:17:30
12804         Log: Avoid ext/Safe/t/safeops.t needing to keep its tests in lockstep with
12805              opcode.pl OP order.
12806      Branch: perl
12807            ! ext/Safe/t/safeops.t
12808 ____________________________________________________________________________
12809 [ 29249] By: nicholas                              on 2006/11/12  21:57:22
12810         Log: Forgot to add the new files for 29248.
12811      Branch: perl
12812            + ext/XS/APItest/core.c ext/XS/APItest/core_or_not.inc
12813            + ext/XS/APItest/notcore.c ext/XS/APItest/t/svsetsv.t
12814 ____________________________________________________________________________
12815 [ 29248] By: nicholas                              on 2006/11/12  20:22:28
12816         Log: Change 24714 was arguably over-ambitious, in that non-core modules
12817              can't be expected to know that sv_setsv() may now not "really" copy a
12818              scalar. So arrange things so that COW of shared hash key scalars is
12819              only done for calls within the the PERL_CORE.
12820      Branch: perl
12821            ! MANIFEST ext/XS/APItest/APItest.pm ext/XS/APItest/APItest.xs
12822            ! ext/XS/APItest/MANIFEST ext/XS/APItest/Makefile.PL sv.c sv.h
12823 ____________________________________________________________________________
12824 [ 29247] By: nicholas                              on 2006/11/12  18:16:52
12825         Log: Looks like I didn't actually test the COW conditional code in
12826              change 27533. Perl now compiles, but
12827              ext/Compress/Raw/Zlib/t/07bufsize.t fails.
12828      Branch: perl
12829            ! pp_ctl.c regexec.c
12830 ____________________________________________________________________________
12831 [ 29246] By: rgs                                   on 2006/11/12  13:35:24
12832         Log: Subject: [PATCH] (2nd version) small tweaks based on smoke signs
12833              From: Jarkko Hietaniemi <jhi@cc.hut.fi>
12834              Date: Sat, 11 Nov 2006 06:18:56 +0200 (EET)
12835              Message-Id: <200611110418.kAB4Ium5350338@kosh.hut.fi>
12836      Branch: perl
12837            ! hv.c regcomp.c regexec.c
12838 ____________________________________________________________________________
12839 [ 29245] By: rgs                                   on 2006/11/12  13:11:07
12840         Log: Reinstate warning 'Useless use of "re" pragma'
12841      Branch: perl
12842            ! ext/re/re.pm
12843 ____________________________________________________________________________
12844 [ 29244] By: stevep                                on 2006/11/10  22:55:01
12845         Log: Upgrade to Test-Simple-0.65.
12846      Branch: perl
12847            ! lib/Test/Builder.pm lib/Test/Builder/Module.pm
12848            ! lib/Test/Builder/Tester.pm lib/Test/More.pm lib/Test/Simple.pm
12849            ! lib/Test/Simple/Changes
12850 ____________________________________________________________________________
12851 [ 29243] By: rgs                                   on 2006/11/09  15:58:11
12852         Log: Add to Attribute::Handlers the ability to report caller's file and line
12853              number. Based on:
12854              
12855              Subject: FW: Attribute::Handlers
12856              From: "David Feldman" <David.Feldman@tudor.com>
12857              Date: Wed, 25 Oct 2006 16:34:26 -0400
12858              Message-ID: <BA9AB162DD5CED46AC03DC5904B19C5B3736B4@tudor.com>
12859              
12860              plus docs and tests.
12861      Branch: perl
12862            + lib/Attribute/Handlers/t/linerep.t
12863            ! MANIFEST lib/Attribute/Handlers.pm
12864            ! lib/Attribute/Handlers/t/multi.t
12865 ____________________________________________________________________________
12866 [ 29242] By: rgs                                   on 2006/11/09  13:33:57
12867         Log: Silence warnings in Pod::Man
12868      Branch: perl
12869            ! lib/Pod/t/man.t
12870 ____________________________________________________________________________
12871 [ 29241] By: rgs                                   on 2006/11/09  12:32:41
12872         Log: Subject: [PATCH regexec.c regexp.h] ***speculative***  was RE: [PATCH] regexec.c - silence compiler warning
12873              From: "Robin Barker" <Robin.Barker@npl.co.uk>
12874              Date: Wed, 8 Nov 2006 15:29:47 -0000
12875              Message-ID: <2C2E01334A940D4792B3E115F95B7226120AA6@exchsvr1.npl.ad.local>
12876      Branch: perl
12877            ! regexec.c regexp.h
12878 ____________________________________________________________________________
12879 [ 29240] By: rgs                                   on 2006/11/09  11:05:24
12880         Log: Subject: [PATCH] regcomp.c: printf arg casts
12881              From: Jarkko Hietaniemi <jhi@cc.hut.fi>
12882              Date: Thu, 9 Nov 2006 06:47:53 +0200 (EET)
12883              Message-Id: <200611090447.kA94lreg223840@kosh.hut.fi>
12884      Branch: perl
12885            ! regcomp.c
12886 ____________________________________________________________________________
12887 [ 29239] By: davem                                 on 2006/11/08  19:13:57
12888         Log: perl parser bug leading to memory corruption
12889              quoted-string parser naughtily maintained a pointer into an SV
12890              which could get realloc()ed.
12891      Branch: perl
12892            ! toke.c
12893 ____________________________________________________________________________
12894 [ 29238] By: merijn                                on 2006/11/08  16:39:21
12895         Log: Subject: Configure patch to add detection for DIR.dd_fd member variable
12896              From: "Steve Peters" <steve.peters@gmail.com>
12897              Date: Sun, 5 Nov 2006 01:40:34 -0600
12898              Message-ID: <fd7a59d30611042340p5543442ctad306aeb748b6bfe@mail.gmail.com>
12899      Branch: perl
12900            ! Configure Cross/config.sh-arm-linux NetWare/config.wc
12901            ! Porting/Glossary config_h.SH configure.com epoc/config.sh
12902            ! handy.h plan9/config_sh.sample symbian/config.sh uconfig.sh
12903            ! win32/config.bc win32/config.gc win32/config.vc
12904            ! win32/config.vc64
12905 ____________________________________________________________________________
12906 [ 29236] By: rgs                                   on 2006/11/08  15:33:02
12907         Log: Subject: [PATCH t/op/inccode.t] fails under minitest
12908              From: "Robin Barker" <Robin.Barker@npl.co.uk>
12909              Date: Wed, 8 Nov 2006 15:18:23 -0000
12910              Message-ID: <2C2E01334A940D4792B3E115F95B7226120AA5@exchsvr1.npl.ad.local>
12911      Branch: perl
12912            ! t/op/inccode.t
12913 ____________________________________________________________________________
12914 [ 29235] By: rgs                                   on 2006/11/08  15:14:31
12915         Log: Change the documentation of the return values of @INC-hooks to match
12916              what is tested to work. (It's a bit confusing that optional values
12917              might appear at the middle, too.)
12918      Branch: perl
12919            ! pod/perlfunc.pod
12920 ____________________________________________________________________________
12921 [ 29234] By: rgs                                   on 2006/11/08  14:02:46
12922         Log: Subject: [PATCH] Supress df warning in stat.t on OS X
12923              From: Michael G Schwern <schwern@gmail.com>
12924              Date: Wed, 08 Nov 2006 08:51:50 -0500
12925              Message-ID: <4551E0F6.20108@gmail.com>
12926      Branch: perl
12927            ! t/op/stat.t
12928 ____________________________________________________________________________
12929 [ 29233] By: steveh                                on 2006/11/08  13:53:52
12930         Log: Don't use the PERL_MSVCRT_READFIX when using VC++ 7.x onwards.
12931              
12932              VC++ 7.x onwards use their own MSVCR7x.dll, MSVCR8x.dll, etc, rather
12933              than MSVCRT.dll, so they do not require the read() fix.
12934              
12935              Therefore, we also don't need to update the ioinfo struct used by the
12936              read() fix w.r.t. VC++ 8.x, so back out that part of change #29218
12937      Branch: perl
12938            ! win32/Makefile win32/makefile.mk win32/win32.h
12939 ____________________________________________________________________________
12940 [ 29232] By: rgs                                   on 2006/11/08  13:27:14
12941         Log: Type change to avoid signed/unsigned compiler warnings
12942              (thanks to Robin Barker)
12943      Branch: perl
12944            ! regexec.c
12945 ____________________________________________________________________________
12946 [ 29231] By: rgs                                   on 2006/11/08  13:14:20
12947         Log: Regenerate Changes; update perldelta
12948      Branch: perl
12949            ! Changes pod/perl595delta.pod
12950 ____________________________________________________________________________
12951 [ 29230] By: rgs                                   on 2006/11/08  11:23:13
12952         Log: Subject: Re: New version diagnostic breaks a bunch of modules.
12953              From: Glenn Linderman <perl@NevCal.com>
12954              Date: Mon, 30 Oct 2006 12:50:21 -0800
12955              Message-ID: <4546658D.6090507@NevCal.com>
12956      Branch: perl
12957            ! pod/perlfunc.pod
12958 ____________________________________________________________________________
12959 [ 29229] By: rgs                                   on 2006/11/08  10:43:52
12960         Log: Subject: [PATCH] Perl_die() / Perl_croak()
12961              From: "Philip M. Gollucci" <pgollucci@p6m7g8.com>
12962              Date: Tue, 07 Nov 2006 23:27:40 -0800
12963              Message-ID: <455186EC.8010906@p6m7g8.com>
12964              
12965              (backported to embed.fnc)
12966      Branch: perl
12967            ! embed.fnc proto.h
12968 ____________________________________________________________________________
12969 [ 29228] By: rgs                                   on 2006/11/08  10:28:49
12970         Log: Subject: Patch for bug in SelfLoader.pm
12971              From: Mike Schilli <m@perlmeister.com>
12972              Date: Tue, 7 Nov 2006 13:39:30 -0800 (PST)
12973              Message-ID: <20061107132809.I31331@spiral.corp.yahoo.com>
12974      Branch: perl
12975            ! lib/SelfLoader.pm
12976 ____________________________________________________________________________
12977 [ 29227] By: rgs                                   on 2006/11/07  17:31:02
12978         Log: Use $HOME/localperl as default prefix for installing perl
12979              in the terse installation instructions in README.
12980      Branch: perl
12981            ! README
12982 ____________________________________________________________________________
12983 [ 29226] By: rgs                                   on 2006/11/07  16:50:47
12984         Log: More notes in perldelta
12985      Branch: perl
12986            ! pod/perl595delta.pod
12987 ____________________________________________________________________________
12988 [ 29225] By: rgs                                   on 2006/11/07  14:23:08
12989         Log: Forbid using tainted formats in printf and sprintf
12990      Branch: perl
12991            ! pod/perl595delta.pod pp.c pp_sys.c t/op/taint.t
12992 ____________________________________________________________________________
12993 [ 29224] By: rgs                                   on 2006/11/07  11:16:54
12994         Log: Subject: Re: [PATCH] [perl #40668] Data::Dumper fails to dump all hash keys when itertaor is not at start
12995              From: "Jerry D. Hedden" <jdhedden@yahoo.com>
12996              Date: Mon, 6 Nov 2006 08:57:04 -0800 (PST)
12997              Message-ID: <20061106165704.939.qmail@web30214.mail.mud.yahoo.com>
12998      Branch: perl
12999            ! ext/Data/Dumper/Dumper.pm ext/Data/Dumper/t/bugs.t
13000 ____________________________________________________________________________
13001 [ 29223] By: rgs                                   on 2006/11/07  10:45:26
13002         Log: Subject: Because I like pain. An update to README
13003              From: Jesse Vincent <jesse@fsck.com>
13004              Date: Mon, 6 Nov 2006 19:52:35 -0500
13005              Message-Id: <7BF48AB1-5285-4A9D-929B-8DD697348664@fsck.com>
13006      Branch: perl
13007            ! README
13008 ____________________________________________________________________________
13009 [ 29222] By: rgs                                   on 2006/11/07  10:21:25
13010         Log: Subject: [PATCH] New regex syntax omnibus
13011              From: demerphq <demerphq@gmail.com>
13012              Date: Mon, 6 Nov 2006 13:06:28 +0100
13013              Message-ID: <9b18b3110611060406u2fa1572as57073949a5df9e62@mail.gmail.com>
13014              
13015              Plus a portability fix (in string comparison for regex verbs)
13016              and doc tweaks / podchecker fixes
13017      Branch: perl
13018            ! embed.fnc embed.h ext/re/t/regop.t pod/perl595delta.pod
13019            ! pod/perldiag.pod pod/perlre.pod proto.h regcomp.c regcomp.h
13020            ! regcomp.sym regexec.c regexp.h regnodes.h t/op/pat.t
13021            ! t/op/re_tests
13022 ____________________________________________________________________________
13023 [ 29221] By: nicholas                              on 2006/11/06  22:21:05
13024         Log: assert() that SvPV_set() isn't used on arrays.
13025      Branch: perl
13026            ! av.c cop.h mathoms.c pp.c pp_ctl.c pp_hot.c pp_sort.c sv.c
13027            ! sv.h
13028 ____________________________________________________________________________
13029 [ 29220] By: nicholas                              on 2006/11/06  21:05:59
13030         Log: assert() that SvPV_set() isn't used on hashes.
13031      Branch: perl
13032            ! sv.c sv.h
13033 ____________________________________________________________________________
13034 [ 29219] By: nicholas                              on 2006/11/06  20:02:38
13035         Log: assert() that scalars are of the correct type in *set macros.
13036      Branch: perl
13037            ! sv.h
13038 ____________________________________________________________________________
13039 [ 29218] By: steveh                                on 2006/11/06  16:26:48
13040         Log: Get Visual C++ 2005 (aka Visual C++ 8.x) support off the ground
13041              
13042              This is not a complete fix yet by any means (there are lots of compiler
13043              warnings and lots of test failures), but it's a step in the right
13044              direction.
13045              
13046              See the thread starting here:
13047              http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2006-10/msg00893.html
13048              and continuing here:
13049              http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2006-11/msg00102.html
13050              for further information
13051      Branch: perl
13052            ! win32/Makefile win32/makefile.mk win32/win32.c win32/win32.h
13053 ____________________________________________________________________________
13054 [ 29217] By: merijn                                on 2006/11/06  15:19:38
13055         Log: Subject: Re: [PATCH] Detecting bad /dev/null's in Configure
13056              From: Michael Cummings <mcummings@gentoo.org>
13057              Date: Fri, 25 Aug 2006 15:48:44 -0400
13058              Message-ID: <44EF541C.7050801@gentoo.org>
13059      Branch: perl
13060            ! Configure
13061 ____________________________________________________________________________
13062 [ 29215] By: rgs                                   on 2006/11/06  14:37:32
13063         Log: Subject: Re: [perl #26136] localtime(3) calls tzset(3), but localtime_r(3) may not.
13064              From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
13065              Date: Mon, 06 Nov 2006 23:31:50 +0900
13066              Message-Id: <20061106233139.A2BC.BQW10602@nifty.com>
13067      Branch: perl
13068            ! t/op/time.t
13069 ____________________________________________________________________________
13070 [ 29214] By: rgs                                   on 2006/11/06  14:05:41
13071         Log: Sync Pod::Usage with the CPAN version
13072      Branch: perl
13073            ! lib/Pod/Usage.pm
13074 ____________________________________________________________________________
13075 [ 29213] By: merijn                                on 2006/11/06  13:58:56
13076         Log: The non-unix parts for localtime_r_needs_tzset
13077              Plus forced Glossary entry. That is a TODO for automation
13078      Branch: perl
13079            ! Cross/config.sh-arm-linux NetWare/config.wc Porting/Glossary
13080            ! Porting/config_H config_h.SH configure.com epoc/config.sh
13081            ! handy.h plan9/config.plan9 plan9/config_h.sample
13082            ! plan9/config_sh.sample uconfig.sh win32/config.bc
13083            ! win32/config.ce win32/config.gc win32/config.vc
13084            ! win32/config.vc64 win32/config_H.bc win32/config_H.ce
13085            ! win32/config_H.gc win32/config_H.vc win32/config_H.vc64
13086 ____________________________________________________________________________
13087 [ 29212] By: rgs                                   on 2006/11/06  13:18:25
13088         Log: Subject: [PATCH] Re: the new t/run/cloexec.t failing in Solaris and Tru64
13089              From: Andrew Savige <ajsavige@yahoo.com.au>
13090              Date: Tue, 7 Nov 2006 00:06:46 +1100 (EST)
13091              Message-ID: <20061106130647.57891.qmail@web56411.mail.re3.yahoo.com>
13092      Branch: perl
13093            ! t/run/cloexec.t
13094 ____________________________________________________________________________
13095 [ 29211] By: rgs                                   on 2006/11/06  10:59:16
13096         Log: Upgrade to Test::Simple 0.64_03
13097      Branch: perl
13098            + lib/Test/Simple/t/carp.t
13099            ! MANIFEST lib/Test/Builder.pm lib/Test/Builder/Module.pm
13100            ! lib/Test/Builder/Tester.pm lib/Test/More.pm lib/Test/Simple.pm
13101            ! lib/Test/Simple/Changes
13102            ! lib/Test/Simple/t/00test_harness_check.t
13103            ! lib/Test/Simple/t/tbt_01basic.t
13104            ! lib/Test/Simple/t/tbt_02fhrestore.t
13105            ! lib/Test/Simple/t/tbt_03die.t
13106            ! lib/Test/Simple/t/tbt_04line_num.t
13107            ! lib/Test/Simple/t/tbt_05faildiag.t
13108            ! lib/Test/Simple/t/tbt_06errormess.t
13109            ! lib/Test/Simple/t/tbt_07args.t
13110 ____________________________________________________________________________
13111 [ 29210] By: rgs                                   on 2006/11/06  10:09:12
13112         Log: Change reentr.pl to generate reentr.h accordingly to change 29209
13113      Branch: perl
13114            ! reentr.pl
13115 ____________________________________________________________________________
13116 [ 29209] By: merijn                                on 2006/11/06  09:43:30
13117         Log: RE: [perl #26136] localtime(3) calls tzset(3), but localtime_r(3) may not.
13118              From: "Benjamin Holzman" <bholzman@longitude.com>
13119              Date: Wed, 19 Jul 2006 07:11:09 -0400
13120              Message-ID: <010801c6ab24$09b9ed30$ce0515ac@office.iseoptions.com>
13121      Branch: perl
13122            ! Configure Porting/Glossary config_h.SH reentr.h t/op/time.t
13123 ____________________________________________________________________________
13124 [ 29208] By: rgs                                   on 2006/11/06  09:30:41
13125         Log: Silence a cast warning
13126      Branch: perl
13127            ! regcomp.c
13128 ____________________________________________________________________________
13129 [ 29206] By: nicholas                              on 2006/11/06  08:13:09
13130         Log: PVCVs no longer allocate memory for the SvNVX slot, so assert that
13131              no-one is trying to access it.
13132      Branch: perl
13133            ! sv.h
13134 ____________________________________________________________________________
13135 [ 29205] By: craigb                                on 2006/11/06  01:37:13
13136         Log: In pipe_exit_routine in vms/vms.c, mark a subprocess we've deleted
13137              as done.  Courtesy of Scott Lepage.
13138      Branch: perl
13139            ! vms/vms.c
13140 ____________________________________________________________________________
13141 [ 29204] By: merijn                                on 2006/11/04  19:15:19
13142         Log: Subject: Re: [perl #40641] crash with unicode characters in regex comment
13143              From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
13144              Date: Sat, 04 Nov 2006 21:53:50 +0900
13145              Message-Id: <20061104215302.3325.BQW10602@nifty.com>
13146      Branch: perl
13147            + t/uni/greek.t t/uni/latin2.t
13148            ! MANIFEST embed.fnc embed.h global.sym pod/perldiag.pod proto.h
13149            ! regcomp.c t/uni/tr_utf8.t
13150 ____________________________________________________________________________
13151 [ 29203] By: nicholas                              on 2006/11/04  18:56:33
13152         Log: Change 27506 wasn't quite correct - the copy of the AMAGIC flag should
13153              be as part of RvDEEPCP() in gv.c (Perl_amagic_call())
13154      Branch: perl
13155            ! gv.c sv.c
13156 ____________________________________________________________________________
13157 [ 29202] By: stevep                                on 2006/11/04  15:39:57
13158         Log: Subject: [PATCH] New test for close-on-exec ($^F): t/run/cloexec.t
13159              From: Andrew Savige <ajsavige@yahoo.com.au>
13160              Date: Sat, 4 Nov 2006 21:24:14 +1100 (EST)
13161              Message-ID: <20061104102414.78987.qmail@web56403.mail.re3.yahoo.com>
13162      Branch: perl
13163            + t/run/cloexec.t
13164            ! MANIFEST
13165 ____________________________________________________________________________
13166 [ 29201] By: rgs                                   on 2006/11/03  16:04:48
13167         Log: Subject: [PATCH] replace S_sv_pos_b2u_forwards with utf8_length (was: sv_pos_b2u dislikes the extended UTF-8)
13168              From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
13169              Date: Sun, 21 May 2006 14:00:43 +0900
13170              Message-Id: <20060521140011.358D.BQW10602@nifty.com>
13171      Branch: perl
13172            ! embed.fnc embed.h proto.h sv.c t/op/index.t
13173 ____________________________________________________________________________
13174 [ 29200] By: rgs                                   on 2006/11/03  15:04:15
13175         Log: The assignment to $VERSION must be on its own line, for
13176              ExtUtils::MM_Unix::parse_version to be happy.
13177      Branch: perl
13178            ! ext/DynaLoader/DynaLoader_pm.PL
13179 ____________________________________________________________________________
13180 [ 29199] By: rgs                                   on 2006/11/03  14:01:30
13181         Log: Subject: [PATCH] threads 1.49
13182              From: "Jerry D. Hedden" <jdhedden@yahoo.com>
13183              Date: Fri, 3 Nov 2006 05:37:16 -0800 (PST)
13184              Message-ID: <20061103133716.95143.qmail@web30214.mail.mud.yahoo.com>
13185      Branch: perl
13186            ! ext/threads/Changes ext/threads/README ext/threads/t/exit.t
13187            ! ext/threads/t/thread.t ext/threads/threads.pm
13188            ! ext/threads/threads.xs
13189 ____________________________________________________________________________
13190 [ 29198] By: rgs                                   on 2006/11/03  13:32:31
13191         Log: Wrap the $VERSION initialization of DynaLoader in a BEGIN block
13192              
13193              Subject: [perl #40651] (Obscure) Bug in Dynaloader 
13194              From: gml4410@ggr.co.uk (via RT) <perlbug-followup@perl.org>
13195              Date: Thu, 02 Nov 2006 09:30:34 -0800
13196              Message-ID: <rt-3.5.HEAD-4979-1162488633-1267.40651-75-0@perl.org>
13197      Branch: perl
13198            ! ext/DynaLoader/DynaLoader_pm.PL
13199 ____________________________________________________________________________
13200 [ 29197] By: rgs                                   on 2006/11/03  10:09:19
13201         Log: When code is loaded through an @INC-hook, and when this hook
13202              has set a filename entry in %INC, make sure __FILE__ is set
13203              for this code accordingly to the contents of that %INC entry.
13204      Branch: perl
13205            ! pp_ctl.c t/op/inccode.t
13206 ____________________________________________________________________________
13207 [ 29196] By: gisle                                 on 2006/11/03  07:08:18
13208         Log: Typo fixes by Troy Topnik.
13209      Branch: perl
13210            ! pod/perlretut.pod
13211 ____________________________________________________________________________
13212 [ 29195] By: merijn                                on 2006/11/02  17:49:53
13213         Log: Change #29193 makes this addition unneeded
13214      Branch: perl
13215            ! t/lib/common.pl
13216 ____________________________________________________________________________
13217 [ 29194] By: davem                                 on 2006/11/02  17:36:33
13218         Log: add test that eval undef clears $@
13219      Branch: perl
13220            ! t/op/eval.t
13221 ____________________________________________________________________________
13222 [ 29193] By: davem                                 on 2006/11/02  17:07:00
13223         Log: eval $undef should emit one warning, not three.
13224              Also ensure that eval $undef clears $@ (it did, but only by luck)
13225      Branch: perl
13226            ! pp_ctl.c t/lib/warnings/9uninit toke.c
13227 ____________________________________________________________________________
13228 [ 29192] By: rgs                                   on 2006/11/02  16:45:13
13229         Log: Fix case in external pod link
13230      Branch: perl
13231            ! pod/perlop.pod
13232 ____________________________________________________________________________
13233 [ 29191] By: rgs                                   on 2006/11/02  13:51:21
13234         Log: say() has the same syntax than print(), so forbid to override it
13235              (like print())
13236      Branch: perl
13237            ! perl_keyword.pl t/op/cproto.t toke.c
13238 ____________________________________________________________________________
13239 [ 29190] By: rgs                                   on 2006/11/02  13:04:10
13240         Log: This volatile modifier is not on the referent, but on the pointer
13241              (see change 28606)
13242      Branch: perl
13243            ! op.c
13244 ____________________________________________________________________________
13245 [ 29189] By: rgs                                   on 2006/11/02  12:26:47
13246         Log: Subject: [PATCH] Add more backtracking control verbs to regex engine (?CUT), (?ERROR)
13247              From: demerphq <demerphq@gmail.com>
13248              Date: Thu, 2 Nov 2006 12:35:10 +0100
13249              Message-ID: <9b18b3110611020335h7ea469a8g28ca483f6832816d@mail.gmail.com>
13250      Branch: perl
13251            ! embed.fnc ext/re/re.pm pod/perl595delta.pod pod/perlre.pod
13252            ! proto.h regcomp.c regcomp.h regcomp.pl regcomp.sym regexec.c
13253            ! regexp.h regnodes.h t/op/pat.t
13254 ____________________________________________________________________________
13255 [ 29188] By: rgs                                   on 2006/11/02  11:59:23
13256         Log: Subject: [patch at 21983] factor out $^O eq 'darwin' from XSLoader.pm
13257              From: "Konovalov, Vadim Vladimirovich (Vadim)** CTR **" <vkonovalov@Lucent.com>
13258              Date: Thu, 2 Nov 2006 12:36:49 +0100 
13259              Message-ID: <E3FB32585BF1D411B9E900805FF51A080204E833@ru0022exch001u.ru.lucent.com>
13260      Branch: perl
13261            ! ext/DynaLoader/XSLoader_pm.PL
13262 ____________________________________________________________________________
13263 [ 29187] By: rgs                                   on 2006/11/02  11:14:42
13264         Log: Subject: Re: $, and say
13265              From: Gisle Aas <gisle@ActiveState.com>
13266              Date: 27 Jan 2006 14:46:00 -0800
13267              Message-ID: <lrek2t1e8n.fsf@caliper.activestate.com>
13268              
13269              with tweaks so "say;" continues to default to $_
13270              plus a regression test
13271      Branch: perl
13272            ! embed.fnc embed.h op.c opcode.h opcode.pl pod/perlfunc.pod
13273            ! pp.sym pp_hot.c pp_proto.h proto.h t/io/say.t
13274 ____________________________________________________________________________
13275 [ 29186] By: rgs                                   on 2006/11/02  11:01:29
13276         Log: Silence a gcc warning
13277      Branch: perl
13278            ! regexec.c
13279 ____________________________________________________________________________
13280 [ 29185] By: rgs                                   on 2006/11/02  10:32:18
13281         Log: More regression tests for the _ prototype
13282      Branch: perl
13283            ! t/comp/uproto.t
13284 ____________________________________________________________________________
13285 [ 29184] By: rgs                                   on 2006/11/02  10:06:37
13286         Log: More heuristics to make warnings.t pass under different
13287              combinations of PERL_UNICODE / locale
13288      Branch: perl
13289            ! t/lib/common.pl
13290 ____________________________________________________________________________
13291 [ 29183] By: rgs                                   on 2006/11/01  17:05:03
13292         Log: Subject: [PATCH] Add a commit verb to regex engine to allow fine tuning of backtracking control.
13293              From: demerphq <demerphq@gmail.com>
13294              Date: Tue, 31 Oct 2006 22:49:57 +0100
13295              Message-ID: <9b18b3110610311349n5947cc8fsf0b2e6ddd9a7ee01@mail.gmail.com>
13296      Branch: perl
13297            ! pod/perlre.pod regcomp.c regcomp.sym regexec.c regnodes.h
13298            ! t/op/pat.t
13299 ____________________________________________________________________________
13300 [ 29182] By: rgs                                   on 2006/11/01  16:29:05
13301         Log: Fix the failures in warnings tests when PERL_UNICODE is defined
13302              that show up in the smokes under UTF-8 locales. Based on :
13303              
13304              Subject: Re: UTF-8 Failures in smoke ($PERL_UNICODE)
13305              From: "H.Merijn Brand" <h.m.brand@xs4all.nl>
13306              Date: Wed, 1 Nov 2006 17:03:55 +0100
13307              Message-ID: <20061101170355.7c57b515@pc09>
13308      Branch: perl
13309            ! t/lib/common.pl t/lib/warnings/9uninit
13310 ____________________________________________________________________________
13311 [ 29181] By: steveh                                on 2006/11/01  13:22:16
13312         Log: Forgot to bump Time-HiRes $VERSION in change #29180
13313              (IO's $VERSION is bumped already)
13314      Branch: perl
13315            ! ext/Time/HiRes/HiRes.pm
13316 ____________________________________________________________________________
13317 [ 29180] By: steveh                                on 2006/11/01  13:07:37
13318         Log: Silence VC++ compiler warnings
13319              See: http://www.nntp.perl.org/group/perl.daily-build.reports/42208
13320      Branch: perl
13321            ! ext/IO/IO.xs ext/Time/HiRes/HiRes.xs regexec.c
13322 ____________________________________________________________________________
13323 [ 29179] By: rgs                                   on 2006/11/01  12:39:39
13324         Log: Subject: [PATCH] Remove beta status from compression modules
13325              From: "Paul Marquess" <paul.marquess@ntlworld.com>
13326              Date: Wed, 1 Nov 2006 10:34:52 -0000
13327              Message-ID: <02b301c6fda1$5d799950$4e3c140a@myopwv.com>
13328      Branch: perl
13329            ! ext/Compress/IO/Base/Changes ext/Compress/IO/Base/README
13330            ! ext/Compress/IO/Base/lib/IO/Compress/Base.pm
13331            ! ext/Compress/IO/Base/lib/IO/Compress/Base/Common.pm
13332            ! ext/Compress/IO/Base/lib/IO/Uncompress/AnyUncompress.pm
13333            ! ext/Compress/IO/Base/lib/IO/Uncompress/Base.pm
13334            ! ext/Compress/IO/Zlib/Changes ext/Compress/IO/Zlib/README
13335            ! ext/Compress/IO/Zlib/lib/IO/Compress/Adapter/Deflate.pm
13336            ! ext/Compress/IO/Zlib/lib/IO/Compress/Adapter/Identity.pm
13337            ! ext/Compress/IO/Zlib/lib/IO/Compress/Deflate.pm
13338            ! ext/Compress/IO/Zlib/lib/IO/Compress/Gzip.pm
13339            ! ext/Compress/IO/Zlib/lib/IO/Compress/Gzip/Constants.pm
13340            ! ext/Compress/IO/Zlib/lib/IO/Compress/RawDeflate.pm
13341            ! ext/Compress/IO/Zlib/lib/IO/Compress/Zip.pm
13342            ! ext/Compress/IO/Zlib/lib/IO/Compress/Zip/Constants.pm
13343            ! ext/Compress/IO/Zlib/lib/IO/Compress/Zlib/Constants.pm
13344            ! ext/Compress/IO/Zlib/lib/IO/Compress/Zlib/Extra.pm
13345            ! ext/Compress/IO/Zlib/lib/IO/Uncompress/Adapter/Identity.pm
13346            ! ext/Compress/IO/Zlib/lib/IO/Uncompress/Adapter/Inflate.pm
13347            ! ext/Compress/IO/Zlib/lib/IO/Uncompress/AnyInflate.pm
13348            ! ext/Compress/IO/Zlib/lib/IO/Uncompress/Gunzip.pm
13349            ! ext/Compress/IO/Zlib/lib/IO/Uncompress/Inflate.pm
13350            ! ext/Compress/IO/Zlib/lib/IO/Uncompress/RawInflate.pm
13351            ! ext/Compress/IO/Zlib/lib/IO/Uncompress/Unzip.pm
13352            ! ext/Compress/Raw/Zlib/Changes ext/Compress/Raw/Zlib/README
13353            ! ext/Compress/Raw/Zlib/lib/Compress/Raw/Zlib.pm
13354            ! ext/Compress/Zlib/Changes ext/Compress/Zlib/README
13355            ! ext/Compress/Zlib/lib/Compress/Zlib.pm
13356 ____________________________________________________________________________
13357 [ 29178] By: rgs                                   on 2006/11/01  10:44:58
13358         Log: Regression test by Yves Orton for : [perl #36046] Special var @-
13359              becomes arbitrarily large
13360      Branch: perl
13361            ! t/op/pat.t
13362 ____________________________________________________________________________
13363 [ 29177] By: nicholas                              on 2006/10/31  22:36:40
13364         Log: Missed a ) in a comment.
13365      Branch: perl
13366            ! perl.c
13367 ____________________________________________________________________________
13368 [ 29176] By: rgs                                   on 2006/10/31  16:28:33
13369         Log: Don't run ext/Sys/Syslog/t/constants.t with taint mode, so it's
13370              not systematically skipped
13371      Branch: perl
13372            ! ext/Sys/Syslog/t/constants.t
13373 ____________________________________________________________________________
13374 [ 29175] By: rgs                                   on 2006/10/31  16:02:03
13375         Log: Some diagnostic output was giving warnings in op/pack.t
13376              under UTF-8 locales, and warnings where fatal by default.
13377              Make them non-fatal for diagnostics.
13378      Branch: perl
13379            ! t/op/pack.t
13380 ____________________________________________________________________________
13381 [ 29174] By: rgs                                   on 2006/10/31  14:47:25
13382         Log: Fix a case of segfault in ithread destruction
13383      Branch: perl
13384            ! ext/threads/threads.xs
13385 ____________________________________________________________________________
13386 [ 29173] By: rgs                                   on 2006/10/31  14:29:07
13387         Log: Doc clarification for PerlIO::encoding
13388              (thanks to Steve Hay)
13389      Branch: perl
13390            ! ext/PerlIO/encoding/encoding.pm
13391 ____________________________________________________________________________
13392 [ 29172] By: rgs                                   on 2006/10/31  14:10:25
13393         Log: threads::shared doesn't use ppport.h in the core
13394      Branch: perl
13395            ! mkppport.lst
13396 ____________________________________________________________________________
13397 [ 29171] By: rgs                                   on 2006/10/31  14:03:30
13398         Log: Subject: [PATCH] threads 1.47
13399              From: "Jerry D. Hedden" <jdhedden@yahoo.com>
13400              Date: Tue, 31 Oct 2006 05:26:25 -0800 (PST)
13401              Message-ID: <20061031132626.18317.qmail@web30214.mail.mud.yahoo.com>
13402      Branch: perl
13403            ! ext/threads/Changes ext/threads/README ext/threads/t/exit.t
13404            ! ext/threads/t/stack.t ext/threads/t/thread.t
13405            ! ext/threads/threads.pm ext/threads/threads.xs
13406 ____________________________________________________________________________
13407 [ 29170] By: rgs                                   on 2006/10/31  13:51:38
13408         Log: Silence a warning and call readpipe_override() correctly.
13409      Branch: perl
13410            ! toke.c
13411 ____________________________________________________________________________
13412 [ 29169] By: rgs                                   on 2006/10/31  13:49:26
13413         Log: Make S_readpipe_override() compile with threads; regenerate perlapi.pod
13414      Branch: perl
13415            ! embed.fnc embed.h pod/perlapi.pod proto.h toke.c
13416 ____________________________________________________________________________
13417 [ 29168] By: rgs                                   on 2006/10/31  13:34:30
13418         Log: Make readpipe() overridable (and also `` and qx//)
13419      Branch: perl
13420            ! opcode.h opcode.pl pod/perlsub.pod pod/perltodo.pod pp.c
13421            ! t/op/cproto.t t/op/override.t toke.c
13422 ____________________________________________________________________________
13423 [ 29167] By: rgs                                   on 2006/10/31  10:59:02
13424         Log: Remove duplicated entries
13425      Branch: perl
13426            ! pod/perltodo.pod
13427 ____________________________________________________________________________
13428 [ 29166] By: gisle                                 on 2006/10/30  20:13:04
13429         Log: Improve documentation of av_len and av_fill.
13430      Branch: perl
13431            ! av.c
13432 ____________________________________________________________________________
13433 [ 29165] By: nicholas                              on 2006/10/30  18:37:41
13434         Log: Avoid Devel::DProf failing an assertion during global destruction.
13435      Branch: perl
13436            ! ext/Devel/DProf/DProf.xs
13437 ____________________________________________________________________________
13438 [ 29164] By: stevep                                on 2006/10/30  18:29:30
13439         Log: It seems only HWND__* is needed by MinGW g++.
13440      Branch: perl
13441            ! win32/win32.c
13442 ____________________________________________________________________________
13443 [ 29162] By: rgs                                   on 2006/10/30  17:56:33
13444         Log: The second patch from:
13445              Subject: [PATCH] regex engine optimiser should grok subroutine patterns, and, name subroutine regops more intuitively
13446              From: demerphq <demerphq@gmail.com>
13447              Date: Mon, 30 Oct 2006 19:15:13 +0200
13448              Message-ID: <9b18b3110610300915x3abf6cddu9c2071a70bea48e1@mail.gmail.com>
13449      Branch: perl
13450            ! pod/perldiag.pod regcomp.c regcomp.sym regexec.c regnodes.h
13451 ____________________________________________________________________________
13452 [ 29161] By: rgs                                   on 2006/10/30  17:36:18
13453         Log: The first patch from:
13454              Subject: [PATCH] regex engine optimiser should grok subroutine patterns, and, name subroutine regops more intuitively
13455              From: demerphq <demerphq@gmail.com>
13456              Date: Mon, 30 Oct 2006 19:15:13 +0200
13457              Message-ID: <9b18b3110610300915x3abf6cddu9c2071a70bea48e1@mail.gmail.com>
13458      Branch: perl
13459            ! embed.fnc embed.h proto.h regcomp.c regcomp.sym regexec.c
13460            ! regnodes.h
13461 ____________________________________________________________________________
13462 [ 29160] By: rgs                                   on 2006/10/30  17:07:46
13463         Log: Mention that field hashes are for inside-out objects
13464              (this will be useful for perl5100delta.)
13465      Branch: perl
13466            ! pod/perl594delta.pod
13467 ____________________________________________________________________________
13468 [ 29159] By: stevep                                on 2006/10/30  16:46:13
13469         Log: Subject: Patch 29155 breaks VC
13470              From: demerphq <demerphq@gmail.com>
13471              Date: Mon, 30 Oct 2006 18:08:17 +0200
13472              Message-ID: <9b18b3110610300808u39cc6cefxbee1468a149dc186@mail.gmail.com>
13473              
13474              Plus an additional casting.
13475      Branch: perl
13476            ! win32/win32.c
13477 ____________________________________________________________________________
13478 [ 29158] By: rgs                                   on 2006/10/30  16:29:35
13479         Log: Update perldelta with changes up to 28867
13480      Branch: perl
13481            ! pod/perl595delta.pod
13482 ____________________________________________________________________________
13483 [ 29157] By: stevep                                on 2006/10/30  15:53:50
13484         Log: VOL should be used instead of volatile in the core.
13485      Branch: perl
13486            ! op.c perl.c
13487 ____________________________________________________________________________
13488 [ 29156] By: merijn                                on 2006/10/30  14:14:25
13489         Log: $hex is already hex, so cannot be used in %X if starting with [A-F]
13490      Branch: perl
13491            ! lib/charnames.pm
13492 ____________________________________________________________________________
13493 [ 29155] By: stevep                                on 2006/10/30  13:58:15
13494         Log: Initial cleanups to support compiling Win32 with MinGW g++.
13495      Branch: perl
13496            ! perlio.c win32/win32.c
13497 ____________________________________________________________________________
13498 [ 29154] By: rgs                                   on 2006/10/30  11:25:39
13499         Log: Subject: Re: Closures with named subs
13500              From: Christian Winter <bitpoet@linux-config.de>
13501              Date: Sun, 29 Oct 2006 21:34:25 +0100
13502              Message-ID: <45451051.4080200@linux-config.de>
13503      Branch: perl
13504            ! pod/perlref.pod
13505 ____________________________________________________________________________
13506 [ 29153] By: rgs                                   on 2006/10/30  10:38:09
13507         Log: Subject: [PATCH] threads 1.46
13508              From: "Jerry D. Hedden" <jdhedden@yahoo.com>
13509              Date: Fri, 27 Oct 2006 17:01:11 -0700 (PDT)
13510              Message-ID: <20061028000111.23729.qmail@web30207.mail.mud.yahoo.com>
13511      Branch: perl
13512            ! ext/threads/Changes ext/threads/README ext/threads/t/thread.t
13513            ! ext/threads/threads.pm ext/threads/threads.xs
13514 ____________________________________________________________________________
13515 [ 29152] By: rgs                                   on 2006/10/30  10:13:22
13516         Log: Silence a g++ warning reported by Jarkko.
13517      Branch: perl
13518            ! ext/Data/Dumper/Dumper.xs
13519 ____________________________________________________________________________
13520 [ 29151] By: rgs                                   on 2006/10/30  10:08:24
13521         Log: Delete Encode's MANIFEST (or else the make process complains
13522              about the missing Encode's META.yml file)
13523      Branch: perl
13524            - ext/Encode/MANIFEST
13525            ! MANIFEST
13526 ____________________________________________________________________________
13527 [ 29150] By: steveh                                on 2006/10/30  10:02:35
13528         Log: Bump $VERSION in Term::UI following change #29120
13529      Branch: perl
13530            ! lib/Term/UI.pm
13531 ____________________________________________________________________________
13532 [ 29149] By: rgs                                   on 2006/10/30  09:52:05
13533         Log: Subject: [PATCH] Fwd: CPAN Upload: J/JP/JPEACOCK/version-0.68.tar.gz
13534              From: John Peacock <jpeacock@rowman.com>
13535              Date: Sun, 29 Oct 2006 14:47:51 -0500
13536              Message-ID: <45450567.7040609@rowman.com>
13537      Branch: perl
13538            ! lib/version.pm lib/version.t
13539 ____________________________________________________________________________
13540 [ 29148] By: rgs                                   on 2006/10/30  09:43:30
13541         Log: Subject: [patch] simplify optree test support
13542              From: Jim Cromie <jim.cromie@gmail.com>
13543              Date: Sun, 29 Oct 2006 14:50:02 -0700
13544              Message-ID: <4545220A.6060500@gmail.com>
13545      Branch: perl
13546            ! ext/B/t/OptreeCheck.pm
13547 ____________________________________________________________________________
13548 [ 29147] By: steveh                                on 2006/10/30  09:38:21
13549         Log: Add some missing targets to win32/makefile.mk
13550              
13551              This updates makefile.mk w.r.t. Makefile, following changes #28293,
13552              #28832, #28904 and #29131
13553      Branch: perl
13554            ! win32/makefile.mk
13555 ____________________________________________________________________________
13556 [ 29146] By: rgs                                   on 2006/10/30  09:33:33
13557         Log: In vim, modelines are not taken into account if they begin on the
13558              first character. Also, regenerate perlintern.pod.
13559      Branch: perl
13560            ! autodoc.pl pod/perlapi.pod pod/perlintern.pod
13561 ____________________________________________________________________________
13562 [ 29145] By: merijn                                on 2006/10/30  07:17:18
13563         Log: Subject: [PATCH@29157] wince patch
13564              From: Vadim <vadim@vkonovalov.ru>
13565              Date: Sat, 28 Oct 2006 23:48:46 +0400
13566              Message-ID: <4543B41E.3070006@vkonovalov.ru>
13567      Branch: perl
13568            ! README.ce win32/Makefile.ce
13569 ____________________________________________________________________________
13570 [ 29144] By: craigb                                on 2006/10/30  00:33:34
13571         Log: When we open a file and pass it along to PerlIO, be sure to enter the
13572              PerlIO world via Unix I/O.  If you start from stdio, a Unix I/O counter
13573              will get decremented on close even though it was never incremented (and 
13574              may not even exist).  Exposed by #29065.
13575      Branch: perl
13576            ! vms/ext/Stdio/Stdio.xs
13577 ____________________________________________________________________________
13578 [ 29143] By: craigb                                on 2006/10/30  00:23:35
13579         Log: Change the non-mkstemp, non-win32 code path of PerlIO_tmpfile
13580              to use PerlIO_fdopen so that when the tmpfile is closed we do
13581              not decrement a ref count that doesn't exist or is zero.
13582      Branch: perl
13583            ! perlio.c
13584 ____________________________________________________________________________
13585 [ 29142] By: stevep                                on 2006/10/30  00:22:00
13586         Log: Changes to get perl to compile with g++ on Cygwin.  Some additional
13587              changes will be needed to get it to link though.
13588      Branch: perl
13589            ! cygwin/cygwin.c malloc.c perl.h sv.c
13590 ____________________________________________________________________________
13591 [ 29140] By: nicholas                              on 2006/10/29  22:01:17
13592         Log: Subject: [PATHCH]  Scalar::Util::readonly &  compression (was RE: Change 29117: [PATCH] IO::Compress modules)
13593              From: "Paul Marquess" <paul.marquess@ntlworld.com>
13594              Message-ID: <02cf01c6fb9d$ade808a0$6501a8c0@myopwv.com>
13595              Date: Sun, 29 Oct 2006 21:03:21 -0000
13596      Branch: perl
13597            ! ext/Compress/IO/Base/t/01misc.t t/lib/compress/oneshot.pl
13598 ____________________________________________________________________________
13599 [ 29139] By: nicholas                              on 2006/10/29  21:54:29
13600         Log: Fix a typo in my description for change 26427.
13601      Branch: perl
13602            ! Changes
13603 ____________________________________________________________________________
13604 [ 29138] By: nicholas                              on 2006/10/29  21:23:12
13605         Log: Modify autodoc.pl to add read-only editor boilerplate for perlapi.pod
13606              and perlguts.pod
13607      Branch: perl
13608            ! autodoc.pl pod/perlapi.pod pod/perlguts.pod
13609 ____________________________________________________________________________
13610 [ 29133] By: nicholas                              on 2006/10/29  19:27:45
13611         Log: Subject: [PATCH] Re: Deparse bug?
13612              From: Stephen McCamant <smcc@mit.edu>
13613              Message-ID: <17732.55694.646895.706177@apocalypse.OCF.Berkeley.EDU>
13614              Date: Sun, 29 Oct 2006 08:40:46 -0800
13615      Branch: perl
13616            ! ext/B/B/Deparse.pm ext/B/t/deparse.t
13617 ____________________________________________________________________________
13618 [ 29131] By: merijn                                on 2006/10/29  18:32:55
13619         Log: Subject: [PATCH] Add a few useful developers maketargets to win32/Makefile
13620              From: demerphq <demerphq@gmail.com>
13621              Date: Sun, 29 Oct 2006 13:28:31 +0200
13622              Message-ID: <9b18b3110610290328v71956891s7df10e40efd2350c@mail.gmail.com>
13623      Branch: perl
13624            ! win32/Makefile
13625 ____________________________________________________________________________
13626 [ 29130] By: nicholas                              on 2006/10/29  18:30:25
13627         Log: Add the note from change 25773 about auditing for destruction ordering.
13628      Branch: perl
13629            ! pod/perltodo.pod
13630 ____________________________________________________________________________
13631 [ 29128] By: nicholas                              on 2006/10/29  18:23:01
13632         Log: I shrunk struct context, so remove it from perltodo.
13633      Branch: perl
13634            ! pod/perltodo.pod
13635 ____________________________________________________________________________
13636 [ 29127] By: nicholas                              on 2006/10/27  21:40:40
13637         Log: Change 27779 failed to free() memory in two places in Perl_magic_set(),
13638              and hence was leaking like the proverbial Jumblie maritime craft.
13639      Branch: perl
13640            ! mg.c
13641 ____________________________________________________________________________
13642 [ 29126] By: stevep                                on 2006/10/27  13:29:05
13643         Log: Upgrade to Pod-Parser-1.35.
13644      Branch: perl
13645            + t/pod/p2u_data.pl t/pod/twice.t
13646            ! MANIFEST lib/Pod/Checker.pm lib/Pod/ParseUtils.pm
13647            ! lib/Pod/Parser.pm lib/Pod/PlainText.pm lib/Pod/Select.pm
13648            ! lib/Pod/Usage.pm t/pod/testcmp.pl
13649 ____________________________________________________________________________
13650 [ 29125] By: rgs                                   on 2006/10/27  09:45:33
13651         Log: Document the limitation of Attribute::Handlers w.r.t. UNITCHECK blocks.
13652      Branch: perl
13653            ! lib/Attribute/Handlers.pm
13654 ____________________________________________________________________________
13655 [ 29124] By: rgs                                   on 2006/10/27  08:43:26
13656         Log: Subject: [PATCH] Change MY_CXT ref in perl.h
13657              From: "Jerry D. Hedden" <jdhedden@yahoo.com>
13658              Date: Thu, 26 Oct 2006 08:35:46 -0700 (PDT)
13659              Message-ID: <20061026153546.71547.qmail@web30214.mail.mud.yahoo.com>
13660      Branch: perl
13661            ! perl.h
13662 ____________________________________________________________________________
13663 [ 29123] By: rgs                                   on 2006/10/27  08:41:45
13664         Log: Subject: [PATCH] Make 'threads' conform to perlguts
13665              From: "Jerry D. Hedden" <jdhedden@yahoo.com>
13666              Date: Thu, 26 Oct 2006 11:10:57 -0700 (PDT)
13667              Message-ID: <20061026181057.74650.qmail@web30211.mail.mud.yahoo.com>
13668      Branch: perl
13669            ! ext/threads/threads.xs
13670 ____________________________________________________________________________
13671 [ 29122] By: stevep                                on 2006/10/27  04:48:43
13672         Log: Spelling fixes for re.pm.
13673      Branch: perl
13674            ! ext/re/re.pm
13675 ____________________________________________________________________________
13676 [ 29121] By: stevep                                on 2006/10/27  03:48:34
13677         Log: Spelling nits from Debian bug list...
13678              
13679              Subject: Bug#395426: perl: spelling errors
13680              From: Matt Taggart <taggart@debian.org>
13681              Date: Thu, 26 Oct 2006 15:23:29 -0700
13682              Message-Id: <20061026222329.8B8CF1AAC6D@cyrix.home.bogus>
13683      Branch: perl
13684            ! ext/Encode/bin/enc2xs lib/ExtUtils/xsubpp x2p/find2perl.PL
13685            ! x2p/s2p.PL
13686 ____________________________________________________________________________
13687 [ 29120] By: steveh                                on 2006/10/26  16:26:56
13688         Log: Close temporary test file before unlinking (for the sake of Win32)
13689      Branch: perl
13690            ! lib/Term/UI/t/02_ui.t
13691 ____________________________________________________________________________
13692 [ 29119] By: rgs                                   on 2006/10/26  16:11:26
13693         Log: Document the new (?FAIL) assertion (Yves Orton)
13694      Branch: perl
13695            ! pod/perlre.pod
13696 ____________________________________________________________________________
13697 [ 29118] By: rgs                                   on 2006/10/26  15:58:18
13698         Log: Subject: [PATCH] Fix a problem with jump-tries, add (?FAIL) pattern.
13699              From: demerphq <demerphq@gmail.com>
13700              Date: Thu, 26 Oct 2006 14:59:11 +0200
13701              Message-ID: <9b18b3110610260559k3efa98barc28987e88c581a8a@mail.gmail.com>
13702      Branch: perl
13703            ! regcomp.c regcomp.sym regexec.c regexp.h regnodes.h
13704            ! t/op/re_tests
13705 ____________________________________________________________________________
13706 [ 29117] By: rgs                                   on 2006/10/26  15:42:40
13707         Log: Subject: [PATCH] IO::Compress modules
13708              From: "Paul Marquess" <paul.marquess@ntlworld.com>
13709              Date: Thu, 26 Oct 2006 15:29:43 +0100
13710              Message-ID: <028201c6f90b$2de7a4b0$4e3c140a@myopwv.com>
13711      Branch: perl
13712            ! ext/Compress/IO/Base/Changes ext/Compress/IO/Base/Makefile.PL
13713            ! ext/Compress/IO/Base/README
13714            ! ext/Compress/IO/Base/lib/IO/Compress/Base.pm
13715            ! ext/Compress/IO/Base/lib/IO/Compress/Base/Common.pm
13716            ! ext/Compress/IO/Base/lib/IO/Uncompress/AnyUncompress.pm
13717            ! ext/Compress/IO/Base/lib/IO/Uncompress/Base.pm
13718            ! ext/Compress/IO/Base/private/MakeUtil.pm
13719            ! ext/Compress/IO/Base/t/01misc.t ext/Compress/IO/Zlib/Changes
13720            ! ext/Compress/IO/Zlib/README
13721            ! ext/Compress/IO/Zlib/lib/IO/Compress/Adapter/Deflate.pm
13722            ! ext/Compress/IO/Zlib/lib/IO/Compress/Adapter/Identity.pm
13723            ! ext/Compress/IO/Zlib/lib/IO/Compress/Deflate.pm
13724            ! ext/Compress/IO/Zlib/lib/IO/Compress/Gzip.pm
13725            ! ext/Compress/IO/Zlib/lib/IO/Compress/Gzip/Constants.pm
13726            ! ext/Compress/IO/Zlib/lib/IO/Compress/RawDeflate.pm
13727            ! ext/Compress/IO/Zlib/lib/IO/Compress/Zip.pm
13728            ! ext/Compress/IO/Zlib/lib/IO/Compress/Zip/Constants.pm
13729            ! ext/Compress/IO/Zlib/lib/IO/Compress/Zlib/Constants.pm
13730            ! ext/Compress/IO/Zlib/lib/IO/Compress/Zlib/Extra.pm
13731            ! ext/Compress/IO/Zlib/lib/IO/Uncompress/Adapter/Identity.pm
13732            ! ext/Compress/IO/Zlib/lib/IO/Uncompress/Adapter/Inflate.pm
13733            ! ext/Compress/IO/Zlib/lib/IO/Uncompress/AnyInflate.pm
13734            ! ext/Compress/IO/Zlib/lib/IO/Uncompress/Gunzip.pm
13735            ! ext/Compress/IO/Zlib/lib/IO/Uncompress/Inflate.pm
13736            ! ext/Compress/IO/Zlib/lib/IO/Uncompress/RawInflate.pm
13737            ! ext/Compress/IO/Zlib/lib/IO/Uncompress/Unzip.pm
13738            ! ext/Compress/IO/Zlib/private/MakeUtil.pm
13739            ! ext/Compress/Raw/Zlib/Changes
13740            ! ext/Compress/Raw/Zlib/Makefile.PL ext/Compress/Raw/Zlib/README
13741            ! ext/Compress/Raw/Zlib/Zlib.xs
13742            ! ext/Compress/Raw/Zlib/lib/Compress/Raw/Zlib.pm
13743            ! ext/Compress/Raw/Zlib/private/MakeUtil.pm
13744            ! ext/Compress/Zlib/Changes ext/Compress/Zlib/README
13745            ! ext/Compress/Zlib/lib/Compress/Zlib.pm
13746            ! ext/Compress/Zlib/private/MakeUtil.pm
13747            ! t/lib/compress/CompTestUtils.pm t/lib/compress/generic.pl
13748            ! t/lib/compress/multi.pl t/lib/compress/oneshot.pl
13749 ____________________________________________________________________________
13750 [ 29116] By: rgs                                   on 2006/10/26  15:30:52
13751         Log: Subject: Re: [perl #40583] sprintf "%#04X" also uppercases the 0x-prefix
13752              From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
13753              Date: Fri, 27 Oct 2006 00:19:34 +0900
13754              Message-Id: <20061027001924.B158.BQW10602@nifty.com>
13755      Branch: perl
13756            ! pod/perlfunc.pod sv.c t/op/sprintf.t
13757 ____________________________________________________________________________
13758 [ 29115] By: merijn                                on 2006/10/26  14:08:03
13759         Log: Subject: [PATCH] Fix typo in File::Find POD
13760              From: "Jerry D. Hedden" <jdhedden@yahoo.com>
13761              Date: Thu, 26 Oct 2006 06:50:04 -0700 (PDT)
13762              Message-ID: <20061026135004.79720.qmail@web30211.mail.mud.yahoo.com>
13763      Branch: perl
13764            ! lib/File/Find.pm
13765 ____________________________________________________________________________
13766 [ 29114] By: rgs                                   on 2006/10/26  12:22:07
13767         Log: Add Term::UI and Object::Accessor to the list of dual-life modules
13768      Branch: perl
13769            ! Porting/Maintainers.pl
13770 ____________________________________________________________________________
13771 [ 29113] By: rgs                                   on 2006/10/26  12:16:49
13772         Log: Subject: [PATCH] Add Object::Accessor to the core
13773              From: "Jos Boumans" <kane@xs4all.net>
13774              Date: Thu, 26 Oct 2006 14:04:44 +0200 (CEST)
13775              Message-ID: <18983.80.127.35.68.1161864284.squirrel@webmail.xs4all.nl>
13776      Branch: perl
13777            + lib/Object/Accessor.pm
13778            + lib/Object/Accessor/t/00_Object-Accessor.t
13779            + lib/Object/Accessor/t/01_Object-Accessor-Subclassed.t
13780            + lib/Object/Accessor/t/02_Object-Accessor-allow.t
13781            + lib/Object/Accessor/t/03_Object-Accessor-local.t
13782            + lib/Object/Accessor/t/04_Object-Accessor-lvalue.t
13783            + lib/Object/Accessor/t/05_Object-Accessor-callback.t
13784            ! MANIFEST
13785 ____________________________________________________________________________
13786 [ 29112] By: rgs                                   on 2006/10/26  12:13:59
13787         Log: Subject: [PATCH] Add Term::UI to the core
13788              From: "Jos Boumans" <kane@xs4all.net>
13789              Date: Mon, 23 Oct 2006 12:07:23 +0200 (CEST)
13790              Message-ID: <19689.80.127.35.68.1161598043.squirrel@webmail.xs4all.nl>
13791      Branch: perl
13792            + lib/Term/UI.pm lib/Term/UI/History.pm lib/Term/UI/t/00_load.t
13793            + lib/Term/UI/t/01_history.t lib/Term/UI/t/02_ui.t
13794            ! MANIFEST
13795 ____________________________________________________________________________
13796 [ 29111] By: rgs                                   on 2006/10/26  11:02:15
13797         Log: Fix a memory leak :
13798              Subject: Re: Valgrind findings
13799              From: demerphq <demerphq@gmail.com>
13800              Date: Thu, 26 Oct 2006 12:34:43 +0200
13801              Message-ID: <9b18b3110610260334t6b77c2dbu2ca8207d822402da@mail.gmail.com>
13802      Branch: perl
13803            ! regexec.c
13804 ____________________________________________________________________________
13805 [ 29110] By: rgs                                   on 2006/10/26  10:42:03
13806         Log: Subject: [PATCH] threads-shared 1.05
13807              From: "Jerry D. Hedden" <jdhedden@yahoo.com>
13808              Date: Wed, 25 Oct 2006 11:27:15 -0700 (PDT)
13809              Message-ID: <20061025182715.561.qmail@web30211.mail.mud.yahoo.com>
13810      Branch: perl
13811            ! ext/threads/shared/Changes ext/threads/shared/Makefile.PL
13812            ! ext/threads/shared/README ext/threads/shared/shared.pm
13813            ! ext/threads/shared/shared.xs
13814 ____________________________________________________________________________
13815 [ 29109] By: rgs                                   on 2006/10/26  10:37:43
13816         Log: Subject: [PATCH] threads 1.45
13817              From: "Jerry D. Hedden" <jdhedden@yahoo.com>
13818              Date: Wed, 25 Oct 2006 11:26:29 -0700 (PDT)
13819              Message-ID: <20061025182629.16434.qmail@web30209.mail.mud.yahoo.com>
13820      Branch: perl
13821            ! ext/threads/Changes ext/threads/Makefile.PL ext/threads/README
13822            ! ext/threads/t/thread.t ext/threads/threads.pm
13823 ____________________________________________________________________________
13824 [ 29108] By: rgs                                   on 2006/10/25  16:19:50
13825         Log: Fix small leak with -F at interpreter destruction
13826      Branch: perl
13827            ! perl.c
13828 ____________________________________________________________________________
13829 [ 29107] By: rgs                                   on 2006/10/25  13:51:55
13830         Log: Plug a memory leak in newCONSTSUB
13831      Branch: perl
13832            ! op.c
13833 ____________________________________________________________________________
13834 [ 29106] By: rgs                                   on 2006/10/25  12:16:08
13835         Log: I'll finally get it right. (thanks to Sadahiro Tomoyuki)
13836      Branch: perl
13837            ! pod/perlfunc.pod
13838 ____________________________________________________________________________
13839 [ 29105] By: rgs                                   on 2006/10/25  11:18:27
13840         Log: Fix nit in previous patch, spotted by Gisle
13841      Branch: perl
13842            ! pod/perlfunc.pod
13843 ____________________________________________________________________________
13844 [ 29104] By: rgs                                   on 2006/10/25  10:59:55
13845         Log: Add a %B sprintf format
13846              
13847              Subject: Re: [perl #40583] sprintf "%#04X" also uppercases the 0x-prefix
13848              From: Nicholas Clark <nick@ccl4.org>
13849              Date: Mon, 23 Oct 2006 18:19:51 +0100
13850              Message-ID: <20061023171951.GA3262@plum.flirble.org>
13851              (plus docs)
13852      Branch: perl
13853            ! pod/perlfunc.pod sv.c t/op/sprintf.t
13854 ____________________________________________________________________________
13855 [ 29103] By: rgs                                   on 2006/10/25  10:27:05
13856         Log: Subject: [PATCH] FindBin.pm: better fix for PATH entries
13857              From: Alexey Tourbin <at@altlinux.ru>
13858              Date: Wed, 25 Oct 2006 14:02:55 +0400
13859              Message-ID: <20061025100255.GE7821@localhost.localdomain>
13860      Branch: perl
13861            ! lib/FindBin.pm
13862 ____________________________________________________________________________
13863 [ 29102] By: rgs                                   on 2006/10/25  09:56:06
13864         Log: Document that warnings.pm doesn't load Carp anymore
13865      Branch: perl
13866            ! pod/perl595delta.pod
13867 ____________________________________________________________________________
13868 [ 29101] By: craigb                                on 2006/10/25  03:58:38
13869         Log: Initialize d_ctermid and i_gdbm in configure.com.
13870      Branch: perl
13871            ! configure.com
13872 ____________________________________________________________________________
13873 [ 29100] By: stevep                                on 2006/10/24  15:44:22
13874         Log: Upgrade to CPAN-1.88_57.
13875      Branch: perl
13876            ! lib/CPAN.pm lib/CPAN/FirstTime.pm lib/CPAN/HandleConfig.pm
13877            ! lib/CPAN/SIGNATURE
13878 ____________________________________________________________________________
13879 [ 29099] By: rgs                                   on 2006/10/24  14:42:13
13880         Log: Silence an expected warning (when playing with utf8ness and string overloading)
13881      Branch: perl
13882            ! t/uni/overload.t
13883 ____________________________________________________________________________
13884 [ 29098] By: rgs                                   on 2006/10/24  12:53:14
13885         Log: New UTF-8 warning : Variable length character upgraded in print.
13886              
13887              Subject: Re: Changing the internal encoding (was: Re: utf8 regexp performance problem)
13888              From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
13889              Date: Sun, 22 Oct 2006 14:32:34 +0900
13890              Message-Id: <20061022142512.A7D3.BQW10602@nifty.com>
13891              
13892              (but with ckWARN_d replaced by ckWARN)
13893      Branch: perl
13894            ! doio.c pod/perldiag.pod
13895 ____________________________________________________________________________
13896 [ 29097] By: rgs                                   on 2006/10/24  09:46:57
13897         Log: No warning was produced if perl failed to load PerlIO::scalar
13898              (contrary to other PerlIO layers.)
13899      Branch: perl
13900            ! perlio.c
13901 ____________________________________________________________________________
13902 [ 29096] By: merijn                                on 2006/10/23  15:43:15
13903         Log: Fix for RT#38169 & RT#38945
13904              Configure won't handle versions 5.10.0 or 5.8.10.
13905      Branch: perl
13906            ! Configure config_h.SH
13907 ____________________________________________________________________________
13908 [ 29093] By: rgs                                   on 2006/10/23  13:43:32
13909         Log: Document that the %#X printf format prefixes the output with 0X, not 0x.
13910      Branch: perl
13911            ! pod/perlfunc.pod
13912 ____________________________________________________________________________
13913 [ 29092] By: rgs                                   on 2006/10/23  09:33:26
13914         Log: Update Changes
13915      Branch: perl
13916            ! Changes
13917 ____________________________________________________________________________
13918 [ 29091] By: rgs                                   on 2006/10/23  09:22:05
13919         Log: Some notes about the recent changes in perldelta
13920      Branch: perl
13921            ! pod/perl595delta.pod
13922 ____________________________________________________________________________
13923 [ 29090] By: rgs                                   on 2006/10/23  08:51:02
13924         Log: Subject: [PATCH] base.pm
13925              From: Ovid <publiustemp-p5p3@yahoo.com>
13926              Date: Thu, 19 Oct 2006 08:47:48 -0700 (PDT)
13927              Message-ID: <20061019154748.87433.qmail@web60824.mail.yahoo.com>
13928      Branch: perl
13929            ! lib/base.pm lib/base/t/base.t
13930 ____________________________________________________________________________
13931 [ 29089] By: rgs                                   on 2006/10/23  08:28:08
13932         Log: Protection against overwriting defsubs.h via a symlink
13933              (by Jim Cromie)
13934      Branch: perl
13935            ! ext/B/defsubs_h.PL
13936 ____________________________________________________________________________
13937 [ 29088] By: rgs                                   on 2006/10/23  08:27:05
13938         Log: Subject: [patch] make test.valgrind capable of running cachegrind
13939              From: Jim Cromie <jim.cromie@gmail.com>
13940              Date: Fri, 20 Oct 2006 14:49:03 -0600
13941              Message-ID: <4539363F.9020205@gmail.com>
13942      Branch: perl
13943            ! t/TEST
13944 ____________________________________________________________________________
13945 [ 29086] By: nicholas                              on 2006/10/22  22:51:59
13946         Log: Fix the other bug introduced by change 29079
13947      Branch: perl
13948            ! sv.c
13949 ____________________________________________________________________________
13950 [ 29085] By: nicholas                              on 2006/10/22  22:35:42
13951         Log: Fix bug in change 27321 - Perl_ss_dup should also have been updated.
13952      Branch: perl
13953            ! sv.c
13954 ____________________________________________________________________________
13955 [ 29084] By: nicholas                              on 2006/10/22  22:12:57
13956         Log: Fix a bug introduced by change 29079
13957      Branch: perl
13958            ! sv.c
13959 ____________________________________________________________________________
13960 [ 29083] By: stevep                                on 2006/10/22  21:47:11
13961         Log: Removed typo that caused a variable to shadow an existing variable
13962              in an external scope.
13963      Branch: perl
13964            ! ext/threads/Makefile.PL
13965 ____________________________________________________________________________
13966 [ 29082] By: nicholas                              on 2006/10/22  21:02:28
13967         Log: Merge cases in Perl_ss_dup().
13968      Branch: perl
13969            ! sv.c
13970 ____________________________________________________________________________
13971 [ 29079] By: nicholas                              on 2006/10/22  19:06:14
13972         Log: const the variable used for the save stack type in Perl_ss_dup().
13973      Branch: perl
13974            ! sv.c
13975 ____________________________________________________________________________
13976 [ 29078] By: rgs                                   on 2006/10/22  13:15:39
13977         Log: Make the overrides of built-ins in the bytes pragma use the new prototype _.
13978      Branch: perl
13979            ! lib/bytes.pm lib/bytes_heavy.pl
13980 ____________________________________________________________________________
13981 [ 29077] By: nicholas                              on 2006/10/21  23:01:45
13982         Log: Add PERLIO_INIT and PERLIO_TERM to PERL_SYS_INIT* and PERL_SYS_TERM*
13983              in */*ish.h headers.
13984      Branch: perl
13985            ! epoc/epocish.h mpeix/mpeixish.h os2/os2ish.h plan9/plan9ish.h
13986            ! vms/vmsish.h
13987 ____________________________________________________________________________
13988 [ 29076] By: nicholas                              on 2006/10/21  22:40:28
13989         Log: Subject: Re: Change 29050: Memory leak fix, by Jarkko
13990              From: Jarkko Hietaniemi <jhi@iki.fi>
13991              Message-ID: <453A97FA.5090403@iki.fi>
13992              Date: Sat, 21 Oct 2006 17:58:18 -0400
13993              
13994              (Make AIX linker happy)
13995      Branch: perl
13996            ! makedef.pl
13997 ____________________________________________________________________________
13998 [ 29075] By: nicholas                              on 2006/10/21  21:53:48
13999         Log: Semicolon consistency between PERL_FPU_INIT and the other INITs.
14000      Branch: perl
14001            ! perl.h unixish.h
14002 ____________________________________________________________________________
14003 [ 29074] By: nicholas                              on 2006/10/21  21:31:20
14004         Log: Add PERLIO_INIT to PERL_SYS_INIT.
14005              I infer that this was accidentally omitted from change 29060
14006      Branch: perl
14007            ! dosish.h perl.h unixish.h
14008 ____________________________________________________________________________
14009 [ 29073] By: nicholas                              on 2006/10/21  21:02:53
14010         Log: Always defining PERLIO_TERM, even if it's empty, makes for a simpler
14011              PERL_SYS_TERM
14012      Branch: perl
14013            ! dosish.h perl.h unixish.h
14014 ____________________________________________________________________________
14015 [ 29072] By: stevep                                on 2006/10/21  18:16:53
14016         Log: Changes for threads::shared to all building with g++.
14017      Branch: perl
14018            ! ext/threads/shared/Makefile.PL ext/threads/shared/shared.xs
14019 ____________________________________________________________________________
14020 [ 29071] By: stevep                                on 2006/10/21  16:45:38
14021         Log: Fixes for Storable.xs when compiling a threaded Perl with g++.
14022      Branch: perl
14023            ! ext/Storable/Storable.xs
14024 ____________________________________________________________________________
14025 [ 29070] By: stevep                                on 2006/10/21  16:17:58
14026         Log: Fix in perl.h for compiling with g++.
14027      Branch: perl
14028            ! perl.h
14029 ____________________________________________________________________________
14030 [ 29069] By: stevep                                on 2006/10/21  13:28:13
14031         Log: Better solution to silencing prereq warnings from threads's
14032              Makefile.PL
14033      Branch: perl
14034            ! ext/threads/Makefile.PL
14035 ____________________________________________________________________________
14036 [ 29068] By: stevep                                on 2006/10/21  02:04:19
14037         Log: Quiet a warning in pp_sys.c on AIX.
14038      Branch: perl
14039            ! pp_sys.c
14040 ____________________________________________________________________________
14041 [ 29067] By: stevep                                on 2006/10/20  19:28:46
14042         Log: Comment out Hash::Util and IO::File from prereqs of threads, since
14043              they are both available in the core.
14044      Branch: perl
14045            ! ext/threads/Makefile.PL
14046 ____________________________________________________________________________
14047 [ 29066] By: rgs                                   on 2006/10/20  15:31:36
14048         Log: Adjustment to symbol lists after latest changes (by Jarkko)
14049      Branch: perl
14050            ! makedef.pl perlio.sym
14051 ____________________________________________________________________________
14052 [ 29065] By: rgs                                   on 2006/10/20  15:04:47
14053         Log: Enable perlio mutexes under threads (by Jarkko)
14054      Branch: perl
14055            ! perlio.c perlvars.h
14056 ____________________________________________________________________________
14057 [ 29064] By: rgs                                   on 2006/10/20  13:01:14
14058         Log: regen headers
14059      Branch: perl
14060            ! embedvar.h perlapi.h
14061 ____________________________________________________________________________
14062 [ 29063] By: davem                                 on 2006/10/20  13:00:52
14063         Log: only do \C hackery if \C is seen
14064              
14065              From: demerphq <demerphq@gmail.com>
14066              Date: Fri, 20 Oct 2006 12:38:13 +0200
14067              Subject: Re: utf8 regexp performance problem
14068              Message-ID: <9b18b3110610200338k5df1d3afpf829fbc0f3663a75@mail.gmail.com>
14069      Branch: perl
14070            ! mg.c
14071 ____________________________________________________________________________
14072 [ 29062] By: rgs                                   on 2006/10/20  11:51:57
14073         Log: Subject: [PATCH] B:: changes for UNITCHECK blocks
14074              From: Alex Gough <alex-p5p@earth.li>
14075              Date: Fri, 20 Oct 2006 02:05:20 +0100
14076              Message-ID: <20061020010520.GC12290@the.earth.li>
14077      Branch: perl
14078            ! ext/B/B.pm ext/B/B.xs ext/B/B/Concise.pm ext/B/B/Deparse.pm
14079            ! ext/B/t/concise-xs.t ext/B/t/optree_specials.t
14080 ____________________________________________________________________________
14081 [ 29061] By: rgs                                   on 2006/10/20  10:32:20
14082         Log: Let's undocument -Dusesfio in INSTALL.
14083      Branch: perl
14084            ! INSTALL
14085 ____________________________________________________________________________
14086 [ 29060] By: rgs                                   on 2006/10/20  10:20:18
14087         Log: More leak fixes, by Jarkko
14088      Branch: perl
14089            ! dosish.h perl.h perlio.c perliol.h perlvars.h unixish.h
14090 ____________________________________________________________________________
14091 [ 29059] By: davem                                 on 2006/10/20  10:06:57
14092         Log: zero length $1 took too long to detect utf8-ness
14093      Branch: perl
14094            ! mg.c
14095 ____________________________________________________________________________
14096 [ 29058] By: rgs                                   on 2006/10/20  09:04:49
14097         Log: Silence some warnings
14098      Branch: perl
14099            ! pp_ctl.c regcomp.c
14100 ____________________________________________________________________________
14101 [ 29057] By: nicholas                              on 2006/10/19  20:52:31
14102         Log: Subject: Re: Off by one in the trie code?
14103              From: demerphq <demerphq@gmail.com>
14104              Message-ID: <9b18b3110610181151i3ca438cdied769ebaa4255079@mail.gmail.com>
14105              Date: Wed, 18 Oct 2006 20:51:41 +0200
14106              
14107              1. code necessary to make patterns with interpolated vars behave
14108              correctly under lexical re 'debug', including additional tests.
14109              2. changes necessary to resolve the off by one error,
14110              3. tweaks to re.pm to document that re 'debug' is lexical,
14111      Branch: perl
14112            ! ext/re/re.pm ext/re/t/lexical_debug.pl
14113            ! ext/re/t/lexical_debug.t ext/re/t/regop.pl ext/re/t/regop.t
14114            ! pp_ctl.c regcomp.c regcomp.h
14115 ____________________________________________________________________________
14116 [ 29056] By: nicholas                              on 2006/10/19  20:47:53
14117         Log: Subject: Re: Off by one in the trie code?
14118              From: demerphq <demerphq@gmail.com>
14119              Date: Wed, 18 Oct 2006 20:51:41 +0200
14120              Message-ID: <9b18b3110610181151i3ca438cdied769ebaa4255079@mail.gmail.com>
14121              
14122              change test files that do a require "./test.pl"; without a BEGIN block
14123              to ensure prototypes are seen, plus fix any breakage this reveals.
14124      Branch: perl
14125            ! ext/Devel/Peek/t/Peek.t ext/POSIX/t/posix.t lib/vmsish.t
14126            ! t/comp/parser.t t/comp/utf.t t/io/argv.t t/io/utf8.t
14127            ! t/op/stash.t t/run/switchC.t t/run/switchd.t t/run/switches.t
14128 ____________________________________________________________________________
14129 [ 29055] By: merijn                                on 2006/10/19  16:40:08
14130         Log: <tr> isnb't the same as C<tr>, and <tr> looks so stupid in man
14131      Branch: perl
14132            ! pod/perlop.pod
14133 ____________________________________________________________________________
14134 [ 29054] By: rgs                                   on 2006/10/19  16:20:41
14135         Log: Trim perltodo.
14136      Branch: perl
14137            ! pod/perltodo.pod
14138 ____________________________________________________________________________
14139 [ 29053] By: rgs                                   on 2006/10/19  15:54:15
14140         Log: Subject: [PATCH] stab at UNITCHECK blocks
14141              From: Alex Gough <alex-p5p@earth.li>
14142              Date: Thu, 19 Oct 2006 13:04:12 +0100
14143              Message-ID: <20061019120412.GA12290@the.earth.li>
14144      Branch: perl
14145            + t/op/blocks.t
14146            ! MANIFEST cv.h embedvar.h intrpvar.h keywords.h keywords.pl
14147            ! madly.act madly.h madly.tab madly.y op.c perl.c
14148            ! perl_keyword.pl perlapi.h perly.act perly.tab perly.y
14149            ! pod/perldebug.pod pod/perldiag.pod pod/perlfunc.pod
14150            ! pod/perlmod.pod pod/perlrun.pod pod/perlsub.pod pp_ctl.c sv.c
14151            ! toke.c
14152 ____________________________________________________________________________
14153 [ 29052] By: stevep                                on 2006/10/19  13:49:56
14154         Log: Subject: [PATCH] Add Log::Message and Log::Message::Simple to the core
14155              From: "Jos Boumans" <kane@xs4all.net>
14156              Date: Fri, 13 Oct 2006 17:12:57 +0200 (CEST)
14157              Message-ID: <13003.80.127.35.68.1160752377.squirrel@webmail.xs4all.nl>
14158      Branch: perl
14159            + lib/Log/Message.pm lib/Log/Message/Config.pm
14160            + lib/Log/Message/Handlers.pm lib/Log/Message/Item.pm
14161            + lib/Log/Message/Simple.pm lib/Log/Message/Simple/t/01_use.t
14162            + lib/Log/Message/Simple/t/02_imports.t
14163            + lib/Log/Message/Simple/t/03_functions.t
14164            + lib/Log/Message/t/01_Log-Message-Config.t
14165            + lib/Log/Message/t/02_Log-Message.t
14166            + lib/Log/Message/t/conf/LoadMe.pl
14167            + lib/Log/Message/t/conf/config_file
14168            ! MANIFEST Porting/Maintainers.pl
14169 ____________________________________________________________________________
14170 [ 29051] By: rgs                                   on 2006/10/19  12:17:18
14171         Log: Make prototype("CORE::mkdir") work. That's a special case,
14172              since from the OA_* flags we can't figure out which parameter
14173              is going to default to $_.
14174      Branch: perl
14175            ! pp.c t/op/cproto.t
14176 ____________________________________________________________________________
14177 [ 29050] By: rgs                                   on 2006/10/19  12:08:24
14178         Log: Memory leak fix, by Jarkko
14179      Branch: perl
14180            ! perlio.c
14181 ____________________________________________________________________________
14182 [ 29049] By: rgs                                   on 2006/10/19  10:27:20
14183         Log: Adjust documentation for previous change
14184      Branch: perl
14185            ! pod/perlsub.pod
14186 ____________________________________________________________________________
14187 [ 29048] By: rgs                                   on 2006/10/19  10:26:54
14188         Log: Allow the _ prototype character to be followed by optional arguments
14189      Branch: perl
14190            ! op.c t/comp/uproto.t
14191 ____________________________________________________________________________
14192 [ 29047] By: rgs                                   on 2006/10/19  08:56:14
14193         Log: Make all JAPH tests pass
14194      Branch: perl
14195            ! t/japh/abigail.t
14196 ____________________________________________________________________________
14197 [ 29046] By: rgs                                   on 2006/10/19  08:04:04
14198         Log: Remove free() part of change #29045, which causes
14199              panics from miniperl in FreeBSD/multithreaded
14200      Branch: perl
14201            ! perlio.c
14202 ____________________________________________________________________________
14203 [ 29045] By: stevep                                on 2006/10/19  01:18:50
14204         Log: Subject: [PATCH] blead valgrind finding
14205              From: Jarkko Hietaniemi <jhi@iki.fi>
14206              Date: Wed, 18 Oct 2006 20:07:54 -0400
14207              Message-ID: <4536C1DA.4060600@iki.fi>
14208      Branch: perl
14209            ! perlio.c
14210 ____________________________________________________________________________
14211 [ 29044] By: rgs                                   on 2006/10/18  20:26:37
14212         Log: Make prototype("CORE::foo") return prototypes with _ when it should
14213              (except for mkdir)
14214      Branch: perl
14215            ! pp.c t/op/cproto.t
14216 ____________________________________________________________________________
14217 [ 29043] By: rgs                                   on 2006/10/18  19:37:01
14218         Log: Add a regression test for change #29041
14219      Branch: perl
14220            ! t/comp/uproto.t
14221 ____________________________________________________________________________
14222 [ 29042] By: nicholas                              on 2006/10/18  19:11:55
14223         Log: Using explicit printf-like APIs with a format of "%s" isn't the world's
14224              most efficient idea.
14225      Branch: perl
14226            ! XSUB.h dump.c
14227 ____________________________________________________________________________
14228 [ 29041] By: rgs                                   on 2006/10/18  17:40:57
14229         Log: Functions with a (_) prototype should behave as unary operators
14230              (which is not the case of functions with a (;$) prototype)
14231      Branch: perl
14232            ! toke.c
14233 ____________________________________________________________________________
14234 [ 29040] By: nicholas                              on 2006/10/18  17:35:06
14235         Log: panic if we attempt to sv_setsv to or from an already freed SV.
14236      Branch: perl
14237            ! sv.c
14238 ____________________________________________________________________________
14239 [ 29039] By: rgs                                   on 2006/10/18  14:41:26
14240         Log: Test for the interaction between ; and _ in prototypes
14241      Branch: perl
14242            ! t/comp/uproto.t
14243 ____________________________________________________________________________
14244 [ 29038] By: rgs                                   on 2006/10/18  14:34:26
14245         Log: Document _ prototype in perlsub
14246      Branch: perl
14247            ! pod/perlsub.pod
14248 ____________________________________________________________________________
14249 [ 29037] By: rgs                                   on 2006/10/18  14:30:57
14250         Log: Fix prototype to mimic built-in in perlsub examples
14251      Branch: perl
14252            ! pod/perlsub.pod
14253 ____________________________________________________________________________
14254 [ 29036] By: rgs                                   on 2006/10/18  14:01:59
14255         Log: The _ character is only allowed to be at the end of prototypes
14256      Branch: perl
14257            ! op.c t/comp/uproto.t
14258 ____________________________________________________________________________
14259 [ 29035] By: rgs                                   on 2006/10/18  12:54:34
14260         Log: Improvements and fixes to the _ prototype
14261      Branch: perl
14262            ! op.c t/comp/uproto.t
14263 ____________________________________________________________________________
14264 [ 29034] By: rgs                                   on 2006/10/18  08:49:01
14265         Log: FAQ sync
14266      Branch: perl
14267            ! pod/perlfaq.pod pod/perlfaq2.pod pod/perlfaq3.pod
14268            ! pod/perlfaq4.pod pod/perlfaq5.pod pod/perlfaq6.pod
14269            ! pod/perlfaq7.pod pod/perlfaq9.pod
14270 ____________________________________________________________________________
14271 [ 29033] By: rgs                                   on 2006/10/18  08:24:30
14272         Log: Subject: [perl #40557] regexec.c saves context stack position improperly 
14273              From: Dave Bailey (via RT) <perlbug-followup@perl.org>
14274              Date: Tue, 17 Oct 2006 09:37:28 -0700
14275              Message-ID: <rt-3.5.HEAD-4979-1161103047-337.40557-75-0@perl.org>
14276      Branch: perl
14277            ! regexec.c scope.c scope.h
14278 ____________________________________________________________________________
14279 [ 29032] By: rgs                                   on 2006/10/17  16:07:04
14280         Log: First attempt at implementing the _ prototype
14281      Branch: perl
14282            + t/comp/uproto.t
14283            ! MANIFEST op.c toke.c
14284 ____________________________________________________________________________
14285 [ 29031] By: stevep                                on 2006/10/17  15:43:05
14286         Log: Upgrade to Time-HiRes-1.94.
14287      Branch: perl
14288            ! ext/Time/HiRes/Changes ext/Time/HiRes/HiRes.pm
14289            ! ext/Time/HiRes/t/HiRes.t
14290 ____________________________________________________________________________
14291 [ 29030] By: rgs                                   on 2006/10/17  14:13:52
14292         Log: Subject: Re: [PATCH] remove leaveit from toke.c:scan_const
14293              From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
14294              Date: Tue, 17 Oct 2006 23:10:04 +0900
14295              Message-Id: <20061017230958.41A2.BQW10602@nifty.com>
14296      Branch: perl
14297            ! pod/perldiag.pod
14298 ____________________________________________________________________________
14299 [ 29029] By: stevep                                on 2006/10/17  12:42:04
14300         Log: Upgrade to CPAN-1.88_55.
14301      Branch: perl
14302            ! lib/CPAN.pm lib/CPAN/FirstTime.pm lib/CPAN/SIGNATURE
14303 ____________________________________________________________________________
14304 [ 29028] By: rgs                                   on 2006/10/17  07:44:09
14305         Log: Less brace nesting.
14306      Branch: perl
14307            ! toke.c
14308 ____________________________________________________________________________
14309 [ 29027] By: rgs                                   on 2006/10/16  12:59:07
14310         Log: The "Unrecognized escape" warning can now be emitted in category
14311              "regexp" after change 29026 
14312      Branch: perl
14313            ! pod/perldiag.pod
14314 ____________________________________________________________________________
14315 [ 29026] By: rgs                                   on 2006/10/16  12:55:28
14316         Log: Subject: [PATCH] remove leaveit from toke.c:scan_const
14317              From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
14318              Date: Sun, 15 Oct 2006 22:23:00 +0900
14319              Message-Id: <20061015222223.BC38.BQW10602@nifty.com>
14320      Branch: perl
14321            ! pod/perlop.pod t/lib/warnings/regcomp t/lib/warnings/toke
14322            ! t/op/pat.t t/op/regmesg.t toke.c
14323 ____________________________________________________________________________
14324 [ 29025] By: rgs                                   on 2006/10/16  09:26:17
14325         Log: Subject: [PATCH] Re: sprintf 64 test
14326              From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
14327              Date: Sun, 15 Oct 2006 16:51:34 +0900
14328              Message-Id: <20061015165052.77AD.BQW10602@nifty.com>
14329              
14330              1. nullify 0 flag in integer conversions when precision is given
14331              2. ignore space after a plus sign as a sign for a nonnegative number
14332              3. make a negative precision through * working as if the precision
14333              is omitted
14334      Branch: perl
14335            ! pod/perlfunc.pod sv.c t/op/sprintf.t t/op/sprintf2.t
14336 ____________________________________________________________________________
14337 [ 29024] By: nicholas                              on 2006/10/16  04:41:30
14338         Log: Fix change 28770 to cope with the strange 32 bit bool type on VMS.
14339              (I should have seen this one coming - the two structures weren't
14340              textually identical)
14341      Branch: perl
14342            ! cop.h
14343 ____________________________________________________________________________
14344 [ 29023] By: stevep                                on 2006/10/15  17:17:32
14345         Log: Upgrade to Time-HiRes-1.93.
14346      Branch: perl
14347            ! ext/Time/HiRes/Changes ext/Time/HiRes/HiRes.pm
14348            ! ext/Time/HiRes/t/HiRes.t
14349 ____________________________________________________________________________
14350 [ 29020] By: stevep                                on 2006/10/14  23:18:29
14351         Log: Upgrade to CPAN-1.88_54.
14352      Branch: perl
14353            ! lib/CPAN.pm lib/CPAN/FirstTime.pm lib/CPAN/HandleConfig.pm
14354 ____________________________________________________________________________
14355 [ 29019] By: stevep                                on 2006/10/14  23:11:23
14356         Log: Upgrade to Digest-SHA-5.44.
14357      Branch: perl
14358            ! ext/Digest/SHA/Changes ext/Digest/SHA/README
14359            ! ext/Digest/SHA/SHA.pm ext/Digest/SHA/SHA.xs
14360            ! ext/Digest/SHA/bin/shasum ext/Digest/SHA/src/hmac.c
14361            ! ext/Digest/SHA/src/hmac.h ext/Digest/SHA/src/sha.c
14362            ! ext/Digest/SHA/src/sha.h
14363 ____________________________________________________________________________
14364 [ 29018] By: nicholas                              on 2006/10/14  23:06:52
14365         Log: Avoid undefined behaviour for -DPERL_MEM_LOG by not using a
14366              dereference of member of the structure being reallocated as part of
14367              the size calculation. (This one was well hidden by macros)
14368      Branch: perl
14369            ! regcomp.c
14370 ____________________________________________________________________________
14371 [ 29017] By: stevep                                on 2006/10/14  23:00:35
14372         Log: Upgrade to XSLoader-0.07.
14373      Branch: perl
14374            ! ext/DynaLoader/XSLoader_pm.PL ext/DynaLoader/t/XSLoader.t
14375 ____________________________________________________________________________
14376 [ 29016] By: nicholas                              on 2006/10/14  22:40:00
14377         Log: Avoid undefined behaviour for -DPERL_MEM_LOG by not using a direct
14378              dereference of member of the structure being reallocated as part of
14379              the size calculation. (There may be other similar bugs).
14380      Branch: perl
14381            ! regcomp.c
14382 ____________________________________________________________________________
14383 [ 29015] By: nicholas                              on 2006/10/14  20:38:59
14384         Log: Use Perl_croak_nocontext() rather than Perl_croak() for the snprintf()
14385              and vsnprintf() macros.
14386      Branch: perl
14387            ! perl.h
14388 ____________________________________________________________________________
14389 [ 29012] By: nicholas                              on 2006/10/14  14:32:28
14390         Log: Fix typo.
14391      Branch: perl
14392            ! Changes
14393 ____________________________________________________________________________
14394 [ 29011] By: nicholas                              on 2006/10/13  20:35:44
14395         Log: Subject: Re: SVpvs vs SVpvn
14396              From: Jim Cromie <jim.cromie@gmail.com>
14397              Message-ID: <452FED1D.1000504@gmail.com>
14398              Date: Fri, 13 Oct 2006 13:46:37 -0600
14399              
14400              plus the last newSVpvn() in toke.c that his regexp missed.
14401      Branch: perl
14402            ! toke.c
14403 ____________________________________________________________________________
14404 [ 29010] By: stevep                                on 2006/10/13  14:11:04
14405         Log: Upgrade to Time-HiRes-1.92.
14406      Branch: perl
14407            + ext/Time/HiRes/hints/aix.pl
14408            ! MANIFEST ext/Time/HiRes/Changes ext/Time/HiRes/HiRes.pm
14409            ! ext/Time/HiRes/HiRes.xs ext/Time/HiRes/Makefile.PL
14410            ! ext/Time/HiRes/t/HiRes.t
14411 ____________________________________________________________________________
14412 [ 29009] By: nicholas                              on 2006/10/13  13:53:16
14413         Log: Correct one "parenthesis" to "parentheses".
14414      Branch: perl
14415            ! pod/perlre.pod
14416 ____________________________________________________________________________
14417 [ 29008] By: rgs                                   on 2006/10/13  12:12:04
14418         Log: Don't bother checking for bad characters in prototypes if we're not
14419              going to warn about them.
14420      Branch: perl
14421            ! toke.c
14422 ____________________________________________________________________________
14423 [ 29007] By: rgs                                   on 2006/10/13  11:27:54
14424         Log: Subject: [PATCH] compiler warning noreturn
14425              From: "Robin Barker" <Robin.Barker@npl.co.uk>
14426              Date: Fri, 13 Oct 2006 11:49:11 +0100
14427              Message-ID: <2C2E01334A940D4792B3E115F95B7226120A70@exchsvr1.npl.ad.local>
14428      Branch: perl
14429            ! doio.c
14430 ____________________________________________________________________________
14431 [ 29006] By: rgs                                   on 2006/10/13  09:15:43
14432         Log: Fix nit in possessive quantifier descriptions.
14433              Add some =head3 headings.
14434      Branch: perl
14435            ! pod/perlre.pod
14436 ____________________________________________________________________________
14437 [ 29005] By: rgs                                   on 2006/10/13  09:02:05
14438         Log: Subject: [PATCH] Add possessive quantifiers to regex engine.
14439              From: demerphq <demerphq@gmail.com>
14440              Date: Thu, 12 Oct 2006 21:23:15 +0200
14441              Message-ID: <9b18b3110610121223m191e47ddtce3398cb0e8ba320@mail.gmail.com>
14442              
14443              With doc tweaks
14444      Branch: perl
14445            ! pod/perl595delta.pod pod/perlre.pod pod/perltodo.pod regcomp.c
14446            ! regcomp.h t/op/re_tests t/op/regexp.t
14447 ____________________________________________________________________________
14448 [ 29004] By: stevep                                on 2006/10/12  15:07:17
14449         Log: Upgrade to PathTools-3.23.
14450      Branch: perl
14451            ! ext/Cwd/Changes lib/Cwd.pm lib/File/Spec.pm
14452            ! lib/File/Spec/Win32.pm lib/File/Spec/t/Spec.t
14453 ____________________________________________________________________________
14454 [ 29003] By: rgs                                   on 2006/10/12  14:52:42
14455         Log: Subject: [PATCH] threads::shared 1.04
14456              From: Jerry Hedden <jdhedden@yahoo.com>
14457              Date: Thu, 12 Oct 2006 07:47:37 -0700 (PDT)
14458              Message-ID: <20061012144737.56305.qmail@web30207.mail.mud.yahoo.com>
14459      Branch: perl
14460            ! ext/threads/Changes ext/threads/Makefile.PL ext/threads/README
14461            ! ext/threads/shared/shared.pm
14462 ____________________________________________________________________________
14463 [ 29002] By: rgs                                   on 2006/10/12  14:26:37
14464         Log: Subject: [PATCH] threads 1.44
14465              From: Jerry Hedden <jdhedden@yahoo.com>
14466              Date: Wed, 11 Oct 2006 05:57:43 -0700 (PDT)
14467              Message-ID: <20061011125743.68567.qmail@web30211.mail.mud.yahoo.com>
14468      Branch: perl
14469            ! ext/threads/Changes ext/threads/README ext/threads/t/thread.t
14470            ! ext/threads/threads.pm
14471 ____________________________________________________________________________
14472 [ 29001] By: rgs                                   on 2006/10/12  14:19:33
14473         Log: Subject: [PATCH] fix format errors; was RE: g++ compile and make test 100%
14474              From: "Robin Barker" <Robin.Barker@npl.co.uk>
14475              Date: Wed, 11 Oct 2006 17:02:01 +0100
14476              Message-ID: <2C2E01334A940D4792B3E115F95B7226120A69@exchsvr1.npl.ad.local>
14477      Branch: perl
14478            ! regcomp.c
14479 ____________________________________________________________________________
14480 [ 29000] By: rgs                                   on 2006/10/12  14:03:55
14481         Log: Subject: [PATCH] RE: g++ compile and make test 100%
14482              From: "Robin Barker" <Robin.Barker@npl.co.uk>
14483              Date: Wed, 11 Oct 2006 16:58:10 +0100
14484              Message-ID: <2C2E01334A940D4792B3E115F95B7226120A68@exchsvr1.npl.ad.local>
14485      Branch: perl
14486            ! ext/ODBM_File/t/odbm.t
14487 ____________________________________________________________________________
14488 [ 28999] By: rgs                                   on 2006/10/12  13:57:57
14489         Log: Subject: [PATCH] More regexp documentation
14490              From: demerphq <demerphq@gmail.com>
14491              Date: Thu, 12 Oct 2006 14:45:25 +0200
14492              Message-ID: <9b18b3110610120545m3002e17cqace30f908b0e2277@mail.gmail.com>
14493      Branch: perl
14494            ! pod/perlre.pod pod/perlreguts.pod regcomp.c
14495 ____________________________________________________________________________
14496 [ 28998] By: rgs                                   on 2006/10/12  08:43:20
14497         Log: Subject: [PATCH] Add Regex conditionals. Various bugfixes. More tests.
14498              From: demerphq <demerphq@gmail.com>
14499              Date: Thu, 12 Oct 2006 00:46:50 +0200
14500              Message-ID: <9b18b3110610111546j74ca490dg21bd9fd1e7e10d42@mail.gmail.com>
14501      Branch: perl
14502            ! embed.fnc embed.h pod/perlre.pod proto.h regcomp.c regcomp.sym
14503            ! regexec.c regnodes.h t/op/pat.t t/op/re_tests
14504 ____________________________________________________________________________
14505 [ 28997] By: rgs                                   on 2006/10/11  15:01:52
14506         Log: Subject: RE: g++ compile and make test 100%
14507              From: "Robin Barker" <Robin.Barker@npl.co.uk>
14508              Date: Wed, 11 Oct 2006 15:29:43 +0100
14509              Message-ID: <2C2E01334A940D4792B3E115F95B7226120A65@exchsvr1.npl.ad.local>
14510      Branch: perl
14511            ! ext/NDBM_File/typemap
14512 ____________________________________________________________________________
14513 [ 28996] By: stevep                                on 2006/10/11  14:48:45
14514         Log: Fix typo in NDBM_File.xs and bump up the version number.
14515      Branch: perl
14516            ! ext/NDBM_File/NDBM_File.pm ext/NDBM_File/NDBM_File.xs
14517 ____________________________________________________________________________
14518 [ 28995] By: rgs                                   on 2006/10/11  09:59:15
14519         Log: Fix aliasing to an non-existent element of %+
14520              (by Yves Orton)
14521      Branch: perl
14522            ! hv.c
14523 ____________________________________________________________________________
14524 [ 28994] By: rgs                                   on 2006/10/11  09:38:37
14525         Log: Update comment (by Yves Orton), plus POD fixes
14526      Branch: perl
14527            ! ext/re/re.pm
14528 ____________________________________________________________________________
14529 [ 28993] By: rgs                                   on 2006/10/11  08:03:03
14530         Log: Missing % in format string
14531      Branch: perl
14532            ! perl.h
14533 ____________________________________________________________________________
14534 [ 28992] By: merijn                                on 2006/10/11  07:02:56
14535         Log: Subject: [PATCH] ext re: C++: EXTERN_C needed, and where did sub install() go?
14536              From: jhi@cc.hut.fi (Jarkko Hietaniemi)
14537              Date: Wed, 11 Oct 2006 09:53:59 +0300 (EEST)
14538              Message-Id: <20061011065359.DFC4C8B3A1@seth.hut.fi>
14539      Branch: perl
14540            ! ext/re/re.pm ext/re/re.xs
14541 ____________________________________________________________________________
14542 [ 28991] By: stevep                                on 2006/10/11  00:52:58
14543         Log: Grrr...moved the files, but forgot to update Soundex.pm
14544      Branch: perl
14545            ! ext/Text/Soundex/Soundex.pm
14546 ____________________________________________________________________________
14547 [ 28990] By: rgs                                   on 2006/10/10  16:26:31
14548         Log: Subject: [PATCH] C++: class is a keyword
14549              From: jhi@cc.hut.fi (Jarkko Hietaniemi)
14550              Date: Tue, 10 Oct 2006 19:20:26 +0300 (EEST)
14551              Message-Id: <20061010162026.190BE8B37C@seth.hut.fi>
14552      Branch: perl
14553            ! lib/ExtUtils/ParseXS/t/XSTest.xs
14554 ____________________________________________________________________________
14555 [ 28989] By: rgs                                   on 2006/10/10  16:23:48
14556         Log: Adjust test count for ExtUtils::Command
14557      Branch: perl
14558            ! lib/ExtUtils/t/eu_command.t
14559 ____________________________________________________________________________
14560 [ 28988] By: stevep                                on 2006/10/10  15:04:09
14561         Log: Upgrade to ExtUtils-Manifest-1.49.
14562      Branch: perl
14563            ! lib/ExtUtils/Manifest.pm lib/ExtUtils/t/Manifest.t
14564 ____________________________________________________________________________
14565 [ 28987] By: stevep                                on 2006/10/10  15:01:21
14566         Log: Upgrade to ExtUtils-Command-1.12.
14567      Branch: perl
14568            ! lib/ExtUtils/Command.pm lib/ExtUtils/t/eu_command.t
14569 ____________________________________________________________________________
14570 [ 28986] By: stevep                                on 2006/10/10  14:49:47
14571         Log: Upgrade to CPAN-1.88_53.
14572      Branch: perl
14573            ! lib/CPAN.pm lib/CPAN/HandleConfig.pm lib/CPAN/Queue.pm
14574            ! lib/CPAN/SIGNATURE
14575 ____________________________________________________________________________
14576 [ 28985] By: rgs                                   on 2006/10/10  14:36:49
14577         Log: Subject: [perl #40473] sprintf width+precision fails on wide chars 
14578              From: Anatoly Vorobey (via RT) <perlbug-followup@perl.org>
14579              Date: Sun, 08 Oct 2006 17:58:16 -0700
14580              Message-ID: <rt-3.5.HEAD-31259-1160355496-1702.40473-75-0@perl.org>
14581      Branch: perl
14582            ! sv.c t/op/sprintf2.t
14583 ____________________________________________________________________________
14584 [ 28984] By: stevep                                on 2006/10/10  14:33:53
14585         Log: Upgrade to ExtUtils-Makemaker-6.31.
14586      Branch: perl
14587            ! lib/ExtUtils/Changes lib/ExtUtils/Command/MM.pm
14588            ! lib/ExtUtils/Liblist.pm lib/ExtUtils/Liblist/Kid.pm
14589            ! lib/ExtUtils/MM.pm lib/ExtUtils/MM_AIX.pm
14590            ! lib/ExtUtils/MM_Any.pm lib/ExtUtils/MM_BeOS.pm
14591            ! lib/ExtUtils/MM_Cygwin.pm lib/ExtUtils/MM_DOS.pm
14592            ! lib/ExtUtils/MM_MacOS.pm lib/ExtUtils/MM_NW5.pm
14593            ! lib/ExtUtils/MM_OS2.pm lib/ExtUtils/MM_QNX.pm
14594            ! lib/ExtUtils/MM_UWIN.pm lib/ExtUtils/MM_Unix.pm
14595            ! lib/ExtUtils/MM_VMS.pm lib/ExtUtils/MM_VOS.pm
14596            ! lib/ExtUtils/MM_Win32.pm lib/ExtUtils/MM_Win95.pm
14597            ! lib/ExtUtils/MY.pm lib/ExtUtils/MakeMaker.pm
14598            ! lib/ExtUtils/MakeMaker/Config.pm
14599            ! lib/ExtUtils/MakeMaker/bytes.pm
14600            ! lib/ExtUtils/MakeMaker/vmsish.pm lib/ExtUtils/Mkbootstrap.pm
14601            ! lib/ExtUtils/Mksymlists.pm lib/ExtUtils/README
14602            ! lib/ExtUtils/TODO lib/ExtUtils/t/basic.t
14603            ! lib/ExtUtils/testlib.pm
14604 ____________________________________________________________________________
14605 [ 28983] By: stevep                                on 2006/10/10  14:05:52
14606         Log: Update to PathTools-3.22.
14607      Branch: perl
14608            ! ext/Cwd/Changes ext/Text/Soundex/Soundex.xs lib/Cwd.pm
14609            ! lib/File/Spec.pm lib/File/Spec/Unix.pm lib/File/Spec/t/Spec.t
14610            ! lib/File/Spec/t/crossplatform.t
14611 ____________________________________________________________________________
14612 [ 28982] By: merijn                                on 2006/10/10  14:02:16
14613         Log: New shiny models
14614      Branch: perl
14615            ! README.hpux
14616 ____________________________________________________________________________
14617 [ 28981] By: rgs                                   on 2006/10/10  13:13:18
14618         Log: Subject: [PATCH] Regexp Recurse by name.
14619              From: demerphq <demerphq@gmail.com>
14620              Date: Mon, 9 Oct 2006 20:36:20 +0200
14621              Message-ID: <9b18b3110610091136g48e5b154tf16d00d38e80a6dc@mail.gmail.com>
14622              
14623              (with doc nits)
14624      Branch: perl
14625            ! embed.fnc embed.h ext/re/re.pm pod/perlre.pod proto.h
14626            ! regcomp.c t/op/re_tests
14627 ____________________________________________________________________________
14628 [ 28980] By: rgs                                   on 2006/10/10  11:25:58
14629         Log: Subject: [PATCH] enc2xs and C++: add extern "C" to  data
14630              From: Jarkko Hietaniemi <jhi@iki.fi>
14631              Date: Tue, 10 Oct 2006 13:52:57 +0300
14632              Message-ID: <452B7B89.201@iki.fi>
14633      Branch: perl
14634            ! ext/Encode/bin/enc2xs
14635 ____________________________________________________________________________
14636 [ 28979] By: rgs                                   on 2006/10/10  11:20:19
14637         Log: Subject: [PATCH] Linux and Solaris hints: C++ vs dlerror
14638              From: Jarkko Hietaniemi <jhi@iki.fi>
14639              Date: Tue, 10 Oct 2006 14:00:40 +0300
14640              Message-ID: <452B7D58.1090009@iki.fi>
14641      Branch: perl
14642            ! hints/linux.sh hints/solaris_2.sh
14643 ____________________________________________________________________________
14644 [ 28978] By: steveh                                on 2006/10/10  10:25:06
14645         Log: Updates for building on Win32 with Visual C++ 2005 Express Edition
14646              
14647              Add some instructions in README.win32, clarify macro comments and add
14648              missing macros to makefile.mk, and drop the GLOBEXEBUILD macro from
14649              Makefile--the Express Edition of Visual C++ 2005 is free and includes
14650              setargv.obj, so there is no need to support the .NET 2.0 SDK compiler
14651              which didn't include it.
14652              
14653              Unfortunately, the build still doesn't work yet--my attempt got as far
14654              as building extensions, but miniperl.exe crashed.  Hopefully this can
14655              be sorted out soon.
14656      Branch: perl
14657            ! README.win32 win32/Makefile win32/makefile.mk
14658 ____________________________________________________________________________
14659 [ 28977] By: craigb                                on 2006/10/10  03:29:50
14660         Log: fix a doc typo and a warning typo in VMS::DCLsym
14661      Branch: perl
14662            ! vms/ext/DCLsym/DCLsym.pm
14663 ____________________________________________________________________________
14664 [ 28976] By: stevep                                on 2006/10/09  20:17:07
14665         Log: Make g++ happy when compiling NDBM_File on a system that
14666              is likely using the GDBM compatibility headers that 
14667              g++ (and other C++ implementations) cannot handle.
14668      Branch: perl
14669            ! ext/NDBM_File/Makefile.PL ext/NDBM_File/NDBM_File.xs
14670 ____________________________________________________________________________
14671 [ 28975] By: davem                                 on 2006/10/09  16:35:02
14672         Log: fix bad free in do_exec3()
14673      Branch: perl
14674            ! doio.c
14675 ____________________________________________________________________________
14676 [ 28974] By: rgs                                   on 2006/10/09  14:29:52
14677         Log: Subject: [PATCH] Encode.xs: add an explicit cast to make g++ happier
14678              From: jhi@cc.hut.fi (Jarkko Hietaniemi)
14679              Date: Mon,  9 Oct 2006 16:54:12 +0300 (EEST)
14680              Message-Id: <20061009135412.47F7A8B3A0@seth.hut.fi>
14681      Branch: perl
14682            ! ext/Encode/Encode.xs
14683 ____________________________________________________________________________
14684 [ 28973] By: rgs                                   on 2006/10/09  14:13:25
14685         Log: Address update for Jerry D. Hedden
14686      Branch: perl
14687            ! AUTHORS
14688 ____________________________________________________________________________
14689 [ 28972] By: rgs                                   on 2006/10/09  12:53:40
14690         Log: Update perldelta for recent regexp changes, based on a text by Yves Orton.
14691      Branch: perl
14692            ! pod/perl595delta.pod
14693 ____________________________________________________________________________
14694 [ 28971] By: rgs                                   on 2006/10/09  12:28:11
14695         Log: Subject: [PATCH] Digest::SHA 5.43_01 - ANSIfy src/hmac.c
14696              From: Jarkko Hietaniemi <jhi@iki.fi>
14697              Date: Mon, 09 Oct 2006 14:24:09 +0300
14698              Message-ID: <452A3159.3060003@iki.fi>
14699      Branch: perl
14700            ! ext/Digest/SHA/SHA.pm ext/Digest/SHA/src/hmac.c
14701 ____________________________________________________________________________
14702 [ 28970] By: rgs                                   on 2006/10/09  10:32:06
14703         Log: Add perl595delta
14704      Branch: perl
14705            + pod/perl595delta.pod
14706            ! MANIFEST Makefile.SH pod.lst pod/perl.pod
14707            ! vms/descrip_mms.template win32/Makefile win32/makefile.mk
14708            ! win32/pod.mak
14709 ____________________________________________________________________________
14710 [ 28969] By: rgs                                   on 2006/10/09  10:11:09
14711         Log: Bump version to 5.9.5
14712      Branch: perl
14713            ! Cross/config.sh-arm-linux NetWare/Makefile NetWare/config_H.wc
14714            ! epoc/config.sh epoc/createpkg.pl patchlevel.h
14715            ! plan9/config.plan9 win32/Makefile win32/Makefile.ce
14716            ! win32/config_H.bc win32/config_H.ce win32/config_H.gc
14717            ! win32/config_H.vc win32/config_H.vc64 win32/makefile.mk
14718 ____________________________________________________________________________
14719 [ 28968] By: rgs                                   on 2006/10/09  10:02:08
14720         Log: Subject: Re: [PATCH] regexec.c: goto crossing initialization
14721              From: Jarkko Hietaniemi <jhi@iki.fi>
14722              Date: Mon, 09 Oct 2006 12:47:11 +0300
14723              Message-ID: <452A1A9F.4080103@iki.fi>
14724      Branch: perl
14725            ! regexec.c
14726 ____________________________________________________________________________
14727 [ 28967] By: rgs                                   on 2006/10/08  19:53:10
14728         Log: Subject: Re: [perl #40468] Not OK: perl 5.9.4 +patchaperlup: on i686-linux-64int 2.6.17-2-k7 (UNINSTALLED)
14729              From: demerphq <demerphq@gmail.com>
14730              Date: Sun, 8 Oct 2006 20:14:24 +0200
14731              Message-ID: <9b18b3110610081114g11dabafaw860181598ab54bd6@mail.gmail.com>
14732      Branch: perl
14733            ! hv.c regcomp.c t/op/pat.t
14734 ____________________________________________________________________________
14735 [ 28966] By: rgs                                   on 2006/10/08  19:39:00
14736         Log: Revert change 28962 (at least until a better solution is found)
14737      Branch: perl
14738            ! XSUB.h perl.h sv.c
14739 ____________________________________________________________________________
14740 [ 28965] By: rgs                                   on 2006/10/08  17:07:42
14741         Log: Clarifications on the usage of setlocale() and LC_NUMERIC to
14742              affect the decimal point in output, by Jarkko.
14743      Branch: perl
14744            ! pod/perldata.pod pod/perlfunc.pod pod/perllocale.pod
14745 ____________________________________________________________________________
14746 [ 28964] By: nicholas                              on 2006/10/08  00:25:07
14747         Log: Document the growth policy, and Yves suggested a better arbitary
14748              constant. (The original plan was add 80 if free space is less than 80,
14749              which wasn't a noticable improvement. Hence 40 was 80/2 for plan B)
14750      Branch: perl
14751            ! ext/Data/Dumper/Dumper.xs
14752 ____________________________________________________________________________
14753 [ 28963] By: nicholas                              on 2006/10/07  23:42:56
14754         Log: Yves said that the XS version of Data::Dumper was inefficient because
14755              it keeps triggering realloc() due to sv_cat(). Here's a rather brute
14756              force approach to pre-stretching the buffer - if there are less than
14757              40 bytes free, grow it by 50%.
14758              
14759              Surprisingly effective for my test program
14760              ./perl -Ilib -MData::Dumper -MStorable=retrieve -we \
14761              'print Dumper(retrieve(shift))' ~/.cpan/Metadata >/dev/null
14762              
14763              Before
14764              real    2m42.921s
14765              user    1m43.321s
14766              sys     0m55.611s
14767              
14768              
14769              After
14770              real    0m5.205s
14771              user    0m4.885s
14772              sys     0m0.255s
14773              
14774              Same 25M of output, byte for byte. :-)
14775      Branch: perl
14776            ! ext/Data/Dumper/Dumper.xs
14777 ____________________________________________________________________________
14778 [ 28962] By: nicholas                              on 2006/10/07  22:24:28
14779         Log: No need to create a new magic vtable if it's all 0 pointers.
14780              [And these are function pointers, so they're not NULL :-)]
14781      Branch: perl
14782            ! XSUB.h perl.h sv.c
14783 ____________________________________________________________________________
14784 [ 28961] By: nicholas                              on 2006/10/07  22:06:19
14785         Log: Make reference stringification (blessed and unblessed) about as fast as
14786              is possible, because I'm told it's used quite frequently.
14787      Branch: perl
14788            ! sv.c
14789 ____________________________________________________________________________
14790 [ 28960] By: nicholas                              on 2006/10/07  17:16:01
14791         Log: Use packed addresses for the seen tracking hash, rather than
14792              "stringified" references. These use less memory, and should be faster
14793              as there is no call to sprintf().
14794      Branch: perl
14795            ! ext/Data/Dumper/Dumper.pm ext/Data/Dumper/Dumper.xs
14796 ____________________________________________________________________________
14797 [ 28959] By: nicholas                              on 2006/10/07  16:08:04
14798         Log: Eliminate two more unneeded strlen()s from Dumper.xs
14799      Branch: perl
14800            ! ext/Data/Dumper/Dumper.xs
14801 ____________________________________________________________________________
14802 [ 28958] By: rgs                                   on 2006/10/07  16:01:55
14803         Log: Subject: [PATCH] threads 1.43 - stringify
14804              From: Jerry Hedden <jdhedden@yahoo.com>
14805              Date: Fri, 6 Oct 2006 12:19:41 -0700 (PDT)
14806              Message-ID: <20061006191941.22457.qmail@web30205.mail.mud.yahoo.com>
14807      Branch: perl
14808            - ext/threads/typemap
14809            ! MANIFEST ext/threads/Changes ext/threads/Makefile.PL
14810            ! ext/threads/README ext/threads/t/basic.t
14811            ! ext/threads/t/thread.t ext/threads/threads.pm
14812 ____________________________________________________________________________
14813 [ 28957] By: rgs                                   on 2006/10/07  14:30:32
14814         Log: Subject: Re: [PATCH] Initial attempt at named captures for perls regexp engine
14815              From: demerphq <demerphq@gmail.com>
14816              Date: Fri, 6 Oct 2006 19:16:01 +0200
14817              Message-ID: <9b18b3110610061016x5ddce965u30d9a821f632d450@mail.gmail.com>
14818      Branch: perl
14819            ! XSUB.h doop.c dump.c embed.fnc embed.h gv.c hv.c perl.h
14820            ! pod/perlre.pod pod/perltodo.pod pod/perlvar.pod pp.c proto.h
14821            ! regcomp.c regcomp.h regcomp.sym regexec.c regexp.h regnodes.h
14822            ! sv.c t/op/pat.t t/op/re_tests t/op/regexp.t toke.c
14823 ____________________________________________________________________________
14824 [ 28956] By: nicholas                              on 2006/10/07  13:53:36
14825         Log: Change sprintf() to my_sprintf(), and use the returned length from
14826              that and my_snprintf() to avoid calls to strlen()
14827      Branch: perl
14828            ! ext/Data/Dumper/Dumper.xs
14829 ____________________________________________________________________________
14830 [ 28955] By: merijn                                on 2006/10/07  11:56:31
14831         Log: Subject: [PATCH] cflags.SH: strip -std=c89 for g++
14832              From: Jarkko Hietaniemi <jhi@iki.fi>
14833              Date: Sat, 07 Oct 2006 13:37:04 +0300
14834              Message-ID: <45278350.8020707@iki.fi>
14835      Branch: perl
14836            ! cflags.SH
14837 ____________________________________________________________________________
14838 [ 28954] By: merijn                                on 2006/10/07  11:52:04
14839         Log: Subject: [PATCH] another g++ patch (Util.xs)
14840              From: "Paul Marquess" <paul.marquess@ntlworld.com>
14841              Date: Fri, 6 Oct 2006 11:14:03 +0100
14842              Message-ID: <00ea01c6e930$269f3d70$4e3c140a@myopwv.com>
14843      Branch: perl
14844            ! ext/List/Util/Util.xs
14845 ____________________________________________________________________________
14846 [ 28953] By: stevep                                on 2006/10/07  01:34:15
14847         Log: Upgrade to Test-Harness-2.64
14848      Branch: perl
14849            + lib/Test/Harness/Results.pm
14850            ! MANIFEST lib/Test/Harness.pm lib/Test/Harness/Changes
14851            ! lib/Test/Harness/Straps.pm lib/Test/Harness/Util.pm
14852            ! lib/Test/Harness/bin/prove lib/Test/Harness/t/00compile.t
14853            ! lib/Test/Harness/t/callback.t lib/Test/Harness/t/failure.t
14854            ! lib/Test/Harness/t/prove-switches.t
14855            ! lib/Test/Harness/t/strap-analyze.t
14856            ! lib/Test/Harness/t/test-harness.t
14857 ____________________________________________________________________________
14858 [ 28952] By: nicholas                              on 2006/10/06  21:56:46
14859         Log: Make the executable slightly smaller by using PL_hexdigit in
14860              Perl_sv_vcatpvfn.
14861      Branch: perl
14862            ! sv.c
14863 ____________________________________________________________________________
14864 [ 28951] By: nicholas                              on 2006/10/06  21:27:13
14865         Log: Fix typo spotted by Rafael. Close the file handle explicity and check
14866              for errors. Add overload.pl to regen.pl
14867      Branch: perl
14868            ! overload.pl regen.pl
14869 ____________________________________________________________________________
14870 [ 28950] By: nicholas                              on 2006/10/06  21:19:26
14871         Log: Generate the overload enum and names array programatically, which
14872              allows experimentation with the order. The new order shaves nearly
14873              900 bytes from gv.o, because the compiler can make smaller branch
14874              tables for switch statements.
14875      Branch: perl
14876            + overload.h overload.pl
14877            ! MANIFEST perl.h
14878 ____________________________________________________________________________
14879 [ 28949] By: nicholas                              on 2006/10/06  21:01:00
14880         Log: Reoder struct am_table and am_table_short to save 8 bytes on LP64
14881              systems, by placing the two U32 fields next to each other.
14882      Branch: perl
14883            ! perl.h
14884 ____________________________________________________________________________
14885 [ 28948] By: stevep                                on 2006/10/06  20:02:48
14886         Log: Upgrade to PathTools-3.21
14887      Branch: perl
14888            ! ext/Cwd/Changes lib/Cwd.pm lib/File/Spec.pm
14889            ! lib/File/Spec/Unix.pm lib/File/Spec/Win32.pm
14890            ! lib/File/Spec/t/Spec.t
14891 ____________________________________________________________________________
14892 [ 28947] By: nicholas                              on 2006/10/06  18:05:45
14893         Log: Don't bother generating the "Operation \"%s\": no method found..."
14894              message text if we're not going to use it.
14895      Branch: perl
14896            ! gv.c
14897 ____________________________________________________________________________
14898 [ 28946] By: davem                                 on 2006/10/05  18:16:19
14899         Log: Document the new regmatch() backtracking mechanism
14900      Branch: perl
14901            ! regexec.c
14902 ____________________________________________________________________________
14903 [ 28945] By: davem                                 on 2006/10/05  16:05:57
14904         Log: remove REGMATCH detritus and shrink the size of the backtrack structure
14905      Branch: perl
14906            ! regexec.c regexp.h
14907 ____________________________________________________________________________
14908 [ 28944] By: davem                                 on 2006/10/05  14:00:38
14909         Log: migrate CURLYX/WHILEM branch in regmatch() to new FSM-esque paradigm
14910      Branch: perl
14911            ! regcomp.sym regexec.c regexp.h regnodes.h t/op/pat.t
14912 ____________________________________________________________________________
14913 [ 28943] By: rgs                                   on 2006/10/05  12:39:53
14914         Log: Subject: Re: [perl #8835] fairly large regex optimization bug with 5.7.3
14915              From: demerphq <demerphq@gmail.com>
14916              Date: Wed, 4 Oct 2006 19:08:47 +0200
14917              Message-ID: <9b18b3110610041008v2bd63d14g9294f93804122dec@mail.gmail.com>
14918      Branch: perl
14919            ! regcomp.c regcomp.h
14920 ____________________________________________________________________________
14921 [ 28942] By: rgs                                   on 2006/10/05  12:23:24
14922         Log: Nit in regcomp, discovered by a gcc warning, fixed by Yves
14923      Branch: perl
14924            ! regcomp.c
14925 ____________________________________________________________________________
14926 [ 28941] By: rgs                                   on 2006/10/05  12:20:28
14927         Log: Fix a couple of casting warnings
14928      Branch: perl
14929            ! regcomp.c
14930 ____________________________________________________________________________
14931 [ 28940] By: stevep                                on 2006/10/05  11:30:56
14932         Log: Fix a few pod nits in perlre.
14933      Branch: perl
14934            ! pod/perlre.pod
14935 ____________________________________________________________________________
14936 [ 28939] By: rgs                                   on 2006/10/05  10:23:08
14937         Log: Subject: Re: [PATCH] Add recursive regexes similar to PCRE
14938              From: demerphq <demerphq@gmail.com>
14939              Date: Wed, 4 Oct 2006 15:45:15 +0200
14940              Message-ID: <9b18b3110610040645s563220a2id6f235494b497e90@mail.gmail.com>
14941              
14942              Subject: Re: [PATCH] Add recursive regexes similar to PCRE
14943              From: demerphq <demerphq@gmail.com>
14944              Date: Wed, 4 Oct 2006 21:05:10 +0200
14945              Message-ID: <9b18b3110610041205m2660eb43m1315cf4b0653db96@mail.gmail.com>
14946      Branch: perl
14947            ! embed.fnc embed.h pod/perlre.pod pod/perltodo.pod proto.h
14948            ! regcomp.c regcomp.h regcomp.pl regcomp.sym regexec.c regexp.h
14949            ! regnodes.h t/op/pat.t t/op/re_tests
14950 ____________________________________________________________________________
14951 [ 28938] By: rgs                                   on 2006/10/05  08:43:25
14952         Log: Upgrade to Module::CoreList 2.09:
14953              - make the dependency on version.pm optional
14954              - improve doc of corelist(1)
14955      Branch: perl
14956            ! lib/Module/CoreList.pm lib/Module/CoreList/bin/corelist
14957 ____________________________________________________________________________
14958 [ 28937] By: rgs                                   on 2006/10/05  08:00:57
14959         Log: Change md5sum of MD5.xs after change 28936 (on UNIX, might
14960              need adjustments on other platforms)
14961      Branch: perl
14962            ! ext/Digest/MD5/t/files.t
14963 ____________________________________________________________________________
14964 [ 28936] By: stevep                                on 2006/10/04  19:56:13
14965         Log: Change to sv_reftype return value caused compile for Digest::MD5
14966              with g++ to fail.
14967      Branch: perl
14968            ! ext/Digest/MD5/MD5.xs ext/Digest/MD5/t/files.t
14969 ____________________________________________________________________________
14970 [ 28935] By: stevep                                on 2006/10/04  19:44:58
14971         Log: Subject: [PATCH] Give zlib the ASNI C treatmant
14972              From: "Paul Marquess" <paul.marquess@ntlworld.com>
14973              Date: Wed, 4 Oct 2006 17:14:05 +0100
14974              Message-ID: <018901c6e7d0$1f06c8f0$7565140a@myopwv.com>
14975      Branch: perl
14976            ! ext/Compress/Raw/Zlib/zlib-src/adler32.c
14977            ! ext/Compress/Raw/Zlib/zlib-src/compress.c
14978            ! ext/Compress/Raw/Zlib/zlib-src/crc32.c
14979            ! ext/Compress/Raw/Zlib/zlib-src/deflate.c
14980            ! ext/Compress/Raw/Zlib/zlib-src/infback.c
14981            ! ext/Compress/Raw/Zlib/zlib-src/inffast.c
14982            ! ext/Compress/Raw/Zlib/zlib-src/inflate.c
14983            ! ext/Compress/Raw/Zlib/zlib-src/inftrees.c
14984            ! ext/Compress/Raw/Zlib/zlib-src/trees.c
14985            ! ext/Compress/Raw/Zlib/zlib-src/uncompr.c
14986            ! ext/Compress/Raw/Zlib/zlib-src/zutil.c
14987 ____________________________________________________________________________
14988 [ 28934] By: stevep                                on 2006/10/04  18:45:37
14989         Log: Fixes to compile Perl with g++ and DEBUGGING.
14990      Branch: perl
14991            ! regcomp.pl regnodes.h x2p/a2p.c
14992 ____________________________________________________________________________
14993 [ 28933] By: rgs                                   on 2006/10/04  07:16:04
14994         Log: Subject: [PATCH] Update Stratus VOS files.
14995              From: "Green, Paul" <Paul.Green@stratus.com>
14996              Date: Tue, 3 Oct 2006 17:40:03 -0400
14997              Message-ID: <F5F42E77A43DD944B6D664B00A5401CB022CA121@EXNA.corp.stratus.com>
14998      Branch: perl
14999            + vos/syslog.h
15000            ! MANIFEST vos/Changes vos/vos.c
15001 ____________________________________________________________________________
15002 [ 28932] By: rgs                                   on 2006/10/03  16:39:58
15003         Log: Text::Soundex is now dual-lived.
15004      Branch: perl
15005            ! Porting/Maintainers.pl
15006 ____________________________________________________________________________
15007 [ 28931] By: rgs                                   on 2006/10/03  15:52:33
15008         Log: Subject: [PATCH] threads-shared 1.03 - Changes, Makefile.PL
15009              From: Jerry Hedden <jdhedden@yahoo.com>
15010              Date: Tue, 3 Oct 2006 07:49:37 -0700 (PDT)
15011              Message-ID: <20061003144937.58522.qmail@web30202.mail.mud.yahoo.com>
15012      Branch: perl
15013            + ext/threads/shared/Changes
15014            ! MANIFEST ext/threads/shared/Makefile.PL
15015 ____________________________________________________________________________
15016 [ 28930] By: stevep                                on 2006/10/03  15:36:55
15017         Log: Upgrade to CGI.pm-3.25
15018      Branch: perl
15019            ! lib/CGI.pm lib/CGI/Changes lib/CGI/Util.pm
15020 ____________________________________________________________________________
15021 [ 28929] By: stevep                                on 2006/10/03  15:08:35
15022         Log: Quiet warnings in new test for ExtUtils::Command.
15023      Branch: perl
15024            ! lib/ExtUtils/t/eu_command.t
15025 ____________________________________________________________________________
15026 [ 28928] By: rgs                                   on 2006/10/03  14:53:33
15027         Log: Subject: PATCH: clarify docs for lib.pm
15028              From: Mark Stosberg <mark@summersault.com>
15029              Date: Mon, 25 Sep 2006 15:53:44 -0400
15030              Message-ID: <20060925195512.27418.qmail@lists.develooper.com>
15031              
15032              (further modified by Merijn)
15033      Branch: perl
15034            ! lib/lib_pm.PL
15035 ____________________________________________________________________________
15036 [ 28927] By: stevep                                on 2006/10/03  14:52:45
15037         Log: Move Text::Soundex from lib/ to ext/ and upgrade it to 
15038              Text-Soundex-3.02.
15039      Branch: perl
15040            + ext/Text/Soundex/Changes ext/Text/Soundex/Makefile.PL
15041            + ext/Text/Soundex/README ext/Text/Soundex/Soundex.pm
15042            + ext/Text/Soundex/Soundex.xs
15043           +> ext/Text/Soundex/t/Soundex.t
15044            - lib/Text/Soundex.pm lib/Text/Soundex.t
15045            ! MANIFEST
15046 ____________________________________________________________________________
15047 [ 28926] By: rgs                                   on 2006/10/03  14:36:59
15048         Log: Subject: [patch] convert spare debug flag to DEBUG_U, for Unofficial, User hacking.
15049              From: Jim Cromie <jim.cromie@gmail.com>
15050              Date: Fri, 29 Sep 2006 12:38:56 -0600
15051              Message-ID: <451D6840.3020408@gmail.com>
15052      Branch: perl
15053            ! perl.c perl.h
15054 ____________________________________________________________________________
15055 [ 28925] By: rgs                                   on 2006/10/03  14:29:48
15056         Log: Un-TODO some B tests
15057      Branch: perl
15058            ! ext/B/t/optree_constants.t
15059 ____________________________________________________________________________
15060 [ 28924] By: stevep                                on 2006/10/03  13:51:30
15061         Log: Upgrade to version-0.6701  
15062      Branch: perl
15063            ! lib/version.pm
15064 ____________________________________________________________________________
15065 [ 28923] By: stevep                                on 2006/10/03  13:46:26
15066         Log: Upgrade to threads-shared-1.03
15067      Branch: perl
15068            ! ext/threads/shared/README ext/threads/shared/shared.pm
15069            ! ext/threads/shared/shared.xs ext/threads/shared/t/0nothread.t
15070            ! ext/threads/shared/t/av_refs.t
15071            ! ext/threads/shared/t/av_simple.t
15072            ! ext/threads/shared/t/blessed.t ext/threads/shared/t/cond.t
15073            ! ext/threads/shared/t/disabled.t ext/threads/shared/t/hv_refs.t
15074            ! ext/threads/shared/t/hv_simple.t
15075            ! ext/threads/shared/t/no_share.t
15076            ! ext/threads/shared/t/shared_attr.t
15077            ! ext/threads/shared/t/sv_refs.t
15078            ! ext/threads/shared/t/sv_simple.t ext/threads/shared/t/wait.t
15079            ! mkppport.lst
15080 ____________________________________________________________________________
15081 [ 28922] By: stevep                                on 2006/10/03  13:28:30
15082         Log: Upgrade to threads-1.42
15083      Branch: perl
15084            ! ext/threads/Changes ext/threads/README ext/threads/t/libc.t
15085            ! ext/threads/t/thread.t ext/threads/threads.pm
15086 ____________________________________________________________________________
15087 [ 28921] By: stevep                                on 2006/10/03  13:19:48
15088         Log: Upgrade to ExtUtils-Manifest-1.48
15089      Branch: perl
15090            ! lib/ExtUtils/Manifest.pm lib/ExtUtils/t/Manifest.t
15091 ____________________________________________________________________________
15092 [ 28920] By: stevep                                on 2006/10/03  13:13:53
15093         Log: Upgrade to CPAN-1.88_52
15094      Branch: perl
15095            ! lib/CPAN.pm lib/CPAN/Debug.pm lib/CPAN/HandleConfig.pm
15096            ! lib/CPAN/SIGNATURE lib/CPAN/Tarzip.pm lib/CPAN/Version.pm
15097            ! lib/CPAN/t/10version.t
15098 ____________________________________________________________________________
15099 [ 28919] By: stevep                                on 2006/10/03  13:08:35
15100         Log: Upgrade to Time-HiRes-1.91
15101      Branch: perl
15102            ! ext/Time/HiRes/Changes ext/Time/HiRes/HiRes.pm
15103            ! ext/Time/HiRes/HiRes.xs
15104 ____________________________________________________________________________
15105 [ 28918] By: stevep                                on 2006/10/03  13:06:06
15106         Log: Update to ExtUtils-Command-1.11
15107      Branch: perl
15108            + lib/ExtUtils/t/eu_command.t
15109            - lib/ExtUtils/t/Command.t
15110            ! MANIFEST lib/ExtUtils/Command.pm
15111 ____________________________________________________________________________
15112 [ 28917] By: rgs                                   on 2006/10/03  11:58:46
15113         Log: Subject: [perl #40427] Segfault in pack 
15114              From: dgay@acm.org (via RT) <perlbug-followup@perl.org>
15115              Date: Thu, 28 Sep 2006 17:30:37 -0700
15116              Message-ID: <rt-3.5.HEAD-31259-1159489837-428.40427-75-0@perl.org>
15117      Branch: perl
15118            ! pp_pack.c
15119 ____________________________________________________________________________
15120 [ 28916] By: rgs                                   on 2006/10/03  07:51:03
15121         Log: Regenerate proto.h
15122      Branch: perl
15123            ! proto.h
15124 ____________________________________________________________________________
15125 [ 28915] By: merijn                                on 2006/10/03  06:56:41
15126         Log: Subject: [PATCH] const sv_reftype
15127              From: Jarkko Hietaniemi <jhi@iki.fi>
15128              Date: Tue, 03 Oct 2006 08:05:24 +0300
15129              Message-ID: <4521EF94.5080602@iki.fi>
15130      Branch: perl
15131            ! embed.fnc pod/perlapi.pod sv.c
15132 ____________________________________________________________________________
15133 [ 28914] By: merijn                                on 2006/10/02  20:50:18
15134         Log: Subject: Re: [PATCH] cflags.SH: rethink of the gcc -std=c89 and -pedantic
15135              From: Jarkko Hietaniemi <jhi@iki.fi>
15136              Date: Mon, 02 Oct 2006 13:04:14 +0300
15137              Message-ID: <4520E41E.8040300@iki.fi>
15138      Branch: perl
15139            ! cflags.SH
15140 ____________________________________________________________________________
15141 [ 28913] By: merijn                                on 2006/10/02  11:10:21
15142         Log: doc typo change on jhi's request
15143      Branch: perl
15144            ! pod/perldiag.pod
15145 ____________________________________________________________________________
15146 [ 28912] By: merijn                                on 2006/10/02  10:09:48
15147         Log: Subject: [PATCH] perldiag.pod: followup on the PerlIO::scalar patch
15148              From: Jarkko Hietaniemi <jhi@iki.fi>
15149              Date: Mon, 02 Oct 2006 12:58:18 +0300
15150              Message-ID: <4520E2BA.1000309@iki.fi>
15151      Branch: perl
15152            ! pod/perldiag.pod
15153 ____________________________________________________________________________
15154 [ 28911] By: nicholas                              on 2006/10/01  20:22:02
15155         Log: In PerlIO_debug(), if tainting or set*id, set PL_perlio_debug_fd to -1
15156              first time through to reduce the checks on subsequent calls.
15157      Branch: perl
15158            ! perlio.c
15159 ____________________________________________________________________________
15160 [ 28910] By: nicholas                              on 2006/10/01  19:29:50
15161         Log: In pp_binmode, call mode_from_discipline() once and remember the result.
15162      Branch: perl
15163            ! pp_sys.c
15164 ____________________________________________________________________________
15165 [ 28909] By: stevep                                on 2006/09/30  14:17:55
15166         Log: Subject: [PAUSE] CPAN Upload: A/AN/ANDK/CPAN-1.88_51.tar.gz
15167              From: andreas.koenig.gmwojprw@franz.ak.mind.de (Andreas J. Koenig)
15168              Date: Sat, 30 Sep 2006 13:44:02 +0200
15169              Message-ID: <87ejttmvel.fsf@k75.linux.bogus>
15170      Branch: perl
15171            + lib/CPAN/Queue.pm
15172            ! MANIFEST lib/CPAN.pm lib/CPAN/Debug.pm lib/CPAN/FirstTime.pm
15173            ! lib/CPAN/HandleConfig.pm lib/CPAN/SIGNATURE
15174            ! lib/CPAN/t/03pkgs.t
15175 ____________________________________________________________________________
15176 [ 28908] By: davem                                 on 2006/09/30  11:31:14
15177         Log: remove backing up outercc->cur in regmatch()/WHILEM
15178      Branch: perl
15179            ! regexec.c
15180 ____________________________________________________________________________
15181 [ 28907] By: davem                                 on 2006/09/30  00:29:10
15182         Log: assert that backing up outercc->cur in regmatch()/WHILEM is not needed
15183      Branch: perl
15184            ! regexec.c
15185 ____________________________________________________________________________
15186 [ 28906] By: davem                                 on 2006/09/30  00:22:20
15187         Log: add stress test for CURLYX/WHILEM regex ops
15188      Branch: perl
15189            ! t/op/pat.t
15190 ____________________________________________________________________________
15191 [ 28905] By: davem                                 on 2006/09/30  00:07:49
15192         Log: rationalise sayYES and sayNO code in regmatch()
15193      Branch: perl
15194            ! regexec.c regexp.h
15195 ____________________________________________________________________________
15196 [ 28904] By: merijn                                on 2006/09/29  17:54:12
15197         Log: Subject: [PATCH] Minor re 'Debug' tweaks, also fix a bug in dumping certain patterns.
15198              From: demerphq <demerphq@gmail.com>
15199              Date: Fri, 29 Sep 2006 17:39:16 +0200
15200              Message-ID: <9b18b3110609290839i58fa703u59259e4ec1d9f2d9@mail.gmail.com>
15201      Branch: perl
15202            ! ext/re/re.pm regcomp.c regcomp.h win32/Makefile
15203 ____________________________________________________________________________
15204 [ 28903] By: stevep                                on 2006/09/29  15:10:41
15205         Log: Subject: [PATCH] PerlIO::scalar (aka open(my $fh, >\$foo)): zero-filling seekand don't talk to negative strangers
15206              From: Jarkko Hietaniemi <jhi@iki.fi>
15207              Date: Fri, 29 Sep 2006 17:41:28 +0300
15208              Message-ID: <451D3098.1000305@iki.fi>
15209      Branch: perl
15210            ! ext/PerlIO/scalar/scalar.xs ext/PerlIO/t/scalar.t
15211            ! pod/perldiag.pod
15212 ____________________________________________________________________________
15213 [ 28902] By: merijn                                on 2006/09/29  15:05:22
15214         Log: Subject: Re: [PATCH] Add hook for re_dup() into regex engine as reg_dupe (make re pluggable under threads)
15215              From: demerphq <demerphq@gmail.com>
15216              Date: Fri, 29 Sep 2006 16:57:07 +0200
15217              Message-ID: <9b18b3110609290757n62b3484i7bb948f965524191@mail.gmail.com>
15218      Branch: perl
15219            ! perl.h regcomp.c regexp.h
15220 ____________________________________________________________________________
15221 [ 28901] By: stevep                                on 2006/09/29  13:55:55
15222         Log: Fix debug format in regcomp.c that was failing under
15223              -Doptimize="-g"
15224      Branch: perl
15225            ! regcomp.c
15226 ____________________________________________________________________________
15227 [ 28900] By: merijn                                on 2006/09/29  12:29:24
15228         Log: Subject: Re: [PATCH] Add hook for re_dup() into regex engine as reg_dupe (make re pluggable under threads)
15229              From: demerphq <demerphq@gmail.com>
15230              Date: Fri, 29 Sep 2006 12:41:26 +0200
15231              Message-ID: <9b18b3110609290341p11767110sec20a6fee2038a00@mail.gmail.com>
15232      Branch: perl
15233            + ext/re/t/lexical_debug.pl ext/re/t/lexical_debug.t
15234            ! MANIFEST embed.fnc embed.h embedvar.h ext/re/re.pm
15235            ! ext/re/re.xs ext/re/t/re.t op.c perl.h perlapi.h pp.c pp_ctl.c
15236            ! pp_hot.c proto.h regcomp.c regcomp.h regcomp.pl regexec.c
15237            ! regexp.h regnodes.h sv.c thrdvar.h
15238 ____________________________________________________________________________
15239 [ 28899] By: nicholas                              on 2006/09/28  22:15:57
15240         Log: Silence two warnings from gcc when being -pedantic
15241      Branch: perl
15242            ! perl.h
15243 ____________________________________________________________________________
15244 [ 28898] By: merijn                                on 2006/09/28  11:23:38
15245         Log: Subject: Re: reentr reshuffle
15246              From: Jarkko Hietaniemi <jhi@iki.fi>
15247              Date: Thu, 28 Sep 2006 14:15:45 +0300
15248              Message-ID: <451BAEE1.1070509@iki.fi>
15249      Branch: perl
15250            ! reentr.h reentr.pl
15251 ____________________________________________________________________________
15252 [ 28897] By: merijn                                on 2006/09/28  10:36:00
15253         Log: Regen for #28896
15254      Branch: perl
15255            ! reentr.c reentr.h
15256 ____________________________________________________________________________
15257 [ 28896] By: merijn                                on 2006/09/28  10:30:21
15258         Log: Subject: reentr reshuffle
15259              From: Jarkko Hietaniemi <jhi@iki.fi>
15260              Date: Thu, 28 Sep 2006 12:40:04 +0300
15261              Message-ID: <451B9874.7060000@iki.fi>
15262      Branch: perl
15263            ! pod/perlembed.pod pod/perlxs.pod reentr.pl
15264 ____________________________________________________________________________
15265 [ 28895] By: rgs                                   on 2006/09/27  08:45:02
15266         Log: Saddest patch I ever had to apply.
15267      Branch: perl
15268            ! Porting/Maintainers.pl
15269 ____________________________________________________________________________
15270 [ 28894] By: steveh                                on 2006/09/27  08:37:23
15271         Log: I think we need to skip PL_regdupe as well as Perl_regdupe
15272              when USE_ITHREADS is not defined
15273              
15274              See: http://www.nntp.perl.org/group/perl.daily-build.reports/41274
15275      Branch: perl
15276            ! makedef.pl
15277 ____________________________________________________________________________
15278 [ 28893] By: nicholas                              on 2006/09/26  22:29:09
15279         Log: Make Perl_regdupe only exist for threaded perls.
15280      Branch: perl
15281            ! embed.fnc embed.h ext/re/re.xs makedef.pl proto.h regcomp.c
15282            ! thrdvar.h
15283 ____________________________________________________________________________
15284 [ 28892] By: davem                                 on 2006/09/25  22:01:36
15285         Log: Automate generation of the regmatch() state constants
15286              
15287              Subject:  Re: Problem with EVAL handling in bleads iterative regex code.
15288              From:  demerphq <demerphq@gmail.com>
15289              Date:  Mon, 25 Sep 2006 20:09:07 +0200
15290              Message-Id:  <9b18b3110609251109t4cb1d443y87d7a7dc94fcfc24@mail.gmail.com>
15291      Branch: perl
15292            ! regcomp.c regcomp.pl regcomp.sym regexec.c regnodes.h
15293 ____________________________________________________________________________
15294 [ 28891] By: nicholas                              on 2006/09/25  20:47:34
15295         Log: Subject: [PATCH] Add hook for re_dup() into regex engine as reg_dupe (make re
15296              From: demerphq <demerphq@gmail.com>
15297              Message-ID: <9b18b3110609170557r73d94c18v90285bd57a38b876@mail.gmail.com>
15298              Date: Sun, 17 Sep 2006 14:57:57 +0200
15299      Branch: perl
15300            ! embed.fnc embed.h embedvar.h ext/re/re.xs ext/re/re_top.h
15301            ! global.sym perl.h perlapi.h proto.h regcomp.c sv.c thrdvar.h
15302 ____________________________________________________________________________
15303 [ 28890] By: rgs                                   on 2006/09/25  13:28:24
15304         Log: Remove three X<...> that cannot be handled by pod2text currently
15305              (spotted by David Landgren)
15306      Branch: perl
15307            ! pod/perlref.pod
15308 ____________________________________________________________________________
15309 [ 28889] By: rgs                                   on 2006/09/25  13:10:45
15310         Log: Subject: [PATCH] perlref clarification (was: Re: Is this a bug or a feature?)
15311              From: David Landgren <david@landgren.net>
15312              Date: Mon, 25 Sep 2006 15:03:33 +0200
15313              Message-ID: <4517D3A5.4010200@landgren.net>
15314      Branch: perl
15315            ! pod/perlref.pod
15316 ____________________________________________________________________________
15317 [ 28888] By: davem                                 on 2006/09/25  10:03:41
15318         Log: Fix re debug formatting nits
15319              
15320              From: demerphq <demerphq@gmail.com>
15321              Message-ID: <9b18b3110609250237h4dcf1784s487f1979b2b431b9@mail.gmail.com>
15322              Date: Mon, 25 Sep 2006 11:37:36 +0200
15323              Subject: Re: Problem with EVAL handling in bleads iterative regex code.
15324      Branch: perl
15325            ! regexec.c
15326 ____________________________________________________________________________
15327 [ 28887] By: rgs                                   on 2006/09/25  08:31:37
15328         Log: Typo fix in overload docs
15329      Branch: perl
15330            ! lib/overload.pm
15331 ____________________________________________________________________________
15332 [ 28886] By: nicholas                              on 2006/09/25  07:12:36
15333         Log: Subject: Re: Change 28877: [PATCH] deal with some gcc warnings
15334              From: Jarkko Hietaniemi <jhi@iki.fi>
15335              Message-ID: <45175CA4.3020900@iki.fi>
15336              Date: Mon, 25 Sep 2006 07:35:48 +0300
15337              
15338              remove casts that were causing failure on FreeBSD -Duse64bitint, and
15339              some other cleanups.
15340      Branch: perl
15341            ! doio.c reentr.c reentr.pl
15342 ____________________________________________________________________________
15343 [ 28885] By: davem                                 on 2006/09/25  01:23:31
15344         Log: eliminate PL_regindent and improve -Mre=Debug,STATE output
15345      Branch: perl
15346            ! perl.c regexec.c regexp.h
15347 ____________________________________________________________________________
15348 [ 28884] By: davem                                 on 2006/09/24  22:31:59
15349         Log: fix regression introduced in #27778: must backtrack into inner regex
15350              "aa" =~ /(??{"a+"})a/
15351      Branch: perl
15352            ! regexec.c regexp.h t/op/pat.t t/op/re_tests
15353 ____________________________________________________________________________
15354 [ 28883] By: davem                                 on 2006/09/24  22:03:05
15355         Log: in S_regmatch(), convert state var st->cc into local var cur_curlyx
15356      Branch: perl
15357            ! regexec.c regexp.h
15358 ____________________________________________________________________________
15359 [ 28882] By: davem                                 on 2006/09/24  21:23:28
15360         Log: allow fields in re_tests to include \x{nnn} etc
15361      Branch: perl
15362            ! t/op/re_tests t/op/regexp.t
15363 ____________________________________________________________________________
15364 [ 28881] By: stevep                                on 2006/09/23  16:58:17
15365         Log: Upgrade to CPAN-1.8801.
15366      Branch: perl
15367            ! lib/CPAN.pm lib/CPAN/FirstTime.pm lib/CPAN/Tarzip.pm
15368 ____________________________________________________________________________
15369 [ 28880] By: rgs                                   on 2006/09/21  15:08:54
15370         Log: Document the values that mad_key can hold
15371              (by Larry)
15372      Branch: perl
15373            ! op.h
15374 ____________________________________________________________________________
15375 [ 28879] By: rgs                                   on 2006/09/21  14:52:15
15376         Log: Subject: RE: Combining UTF-16 output with :crlf is awkward
15377              From: "Jan Dubois" <jand@ActiveState.com>
15378              Date: Thu, 6 Apr 2006 18:37:21 -0700
15379              Message-ID: <0bbe01c659e3$d0c334a0$2217a8c0@candy>
15380      Branch: perl
15381            ! perlio.c
15382 ____________________________________________________________________________
15383 [ 28878] By: merijn                                on 2006/09/21  12:02:14
15384         Log: Subject: Re: \N{...} in regular expression [PATCH]
15385              From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
15386              Date: Thu, 21 Sep 2006 20:47:02 +0900
15387              Message-Id: <20060921204520.80A6.BQW10602@nifty.com>
15388      Branch: perl
15389            ! pod/perlop.pod
15390 ____________________________________________________________________________
15391 [ 28877] By: rgs                                   on 2006/09/21  07:54:10
15392         Log: Subject: [PATCH] deal with some gcc warnings
15393              From: Jarkko Hietaniemi <jhi@iki.fi>
15394              Date: Thu, 21 Sep 2006 09:08:47 +0300
15395              Message-ID: <45122C6F.9080904@iki.fi>
15396      Branch: perl
15397            ! doio.c reentr.c reentr.pl regcomp.c regexec.c sv.c toke.c
15398            ! util.c
15399 ____________________________________________________________________________
15400 [ 28876] By: stevep                                on 2006/09/21  02:17:30
15401         Log: Subject: [perl #40369] File::Find mishandles non-dangling symlinks
15402              From: ammon@rhythm.com (via RT) <perlbug-followup@perl.org>
15403              Date: Tue, 19 Sep 2006 20:56:32 -0700
15404              Message-ID: <rt-3.5.HEAD-31258-1158724592-1714.40369-75-0@perl.org>
15405      Branch: perl
15406            ! lib/File/Find.pm
15407 ____________________________________________________________________________
15408 [ 28875] By: rgs                                   on 2006/09/20  16:12:14
15409         Log: Deliver SIGILL, SIGBUS and SIGSEGV always in an "unsafe" manner.
15410              
15411              Subject: Safe signals and SIGSEGV
15412              From: Rafael Garcia-Suarez <rgarciasuarez@mandriva.com>
15413              Date: Fri, 8 Sep 2006 17:43:41 +0200
15414              Message-ID: <20060908174341.0cc7988f@grubert.mandriva.com>
15415      Branch: perl
15416            ! mg.c
15417 ____________________________________________________________________________
15418 [ 28874] By: rgs                                   on 2006/09/20  15:22:22
15419         Log: prototype() wasn't working to get the prototype of optional core
15420              keywords (like say, err, given.) Fix this by adding a parameter to
15421              Perl_keyword to always get the keyword number, even if the feature
15422              isn't in effect.
15423      Branch: perl
15424            ! embed.fnc embed.h perl_keyword.pl pp.c proto.h t/op/cproto.t
15425            ! toke.c
15426 ____________________________________________________________________________
15427 [ 28873] By: rgs                                   on 2006/09/20  11:53:59
15428         Log: Subject: Re: [PATCH] Patch for win32.c to fix #38723 and #39531
15429              From: Andrew Savige <ajsavige@yahoo.com.au>
15430              Date: Tue, 19 Sep 2006 23:42:31 +1000 (EST)
15431              Message-ID: <20060919134231.87370.qmail@web56407.mail.re3.yahoo.com>
15432      Branch: perl
15433            ! win32/win32.c
15434 ____________________________________________________________________________
15435 [ 28872] By: merijn                                on 2006/09/19  19:09:36
15436         Log: Subject: Re: \N{...} in regular expression [PATCH]
15437              From: demerphq <demerphq@gmail.com>
15438              Date: Tue, 19 Sep 2006 20:36:17 +0200
15439              Message-ID: <9b18b3110609191136v4d595f37pa0a52b8c20851588@mail.gmail.com>
15440      Branch: perl
15441            ! regcomp.c
15442 ____________________________________________________________________________
15443 [ 28871] By: rgs                                   on 2006/09/19  14:05:48
15444         Log: Upgrade to podlators 2.0.5
15445      Branch: perl
15446            + lib/Pod/t/pod-parser.t
15447            ! MANIFEST lib/Pod/Man.pm lib/Pod/Text.pm lib/Pod/t/basic.man
15448            ! lib/Pod/t/basic.t lib/Pod/t/filehandle.t lib/Pod/t/man.t
15449 ____________________________________________________________________________
15450 [ 28870] By: merijn                                on 2006/09/19  11:16:11
15451         Log: Changed +DA2.0w to +DD64; Added notes about C ANSI C updates
15452              on HP-UX 11.00.
15453      Branch: perl
15454            ! README.hpux
15455 ____________________________________________________________________________
15456 [ 28869] By: rgs                                   on 2006/09/19  07:54:24
15457         Log: Subject: Re: [PATCH] lib/File/Copy.t - test descriptions and minor fixes
15458              From: "Adriano Ferreira" <a.r.ferreira@gmail.com>
15459              Date: Mon, 18 Sep 2006 17:36:50 -0300
15460              Message-ID: <73ddeb6c0609181336g53a90dceo9a29777f7686e372@mail.gmail.com>
15461      Branch: perl
15462            ! lib/File/Copy.t
15463 ____________________________________________________________________________
15464 [ 28868] By: merijn                                on 2006/09/19  06:56:36
15465         Log: Subject: Re: \N{...} in regular expression [PATCH]
15466              From: demerphq <demerphq@gmail.com>
15467              Date: Tue, 19 Sep 2006 01:37:19 +0200
15468              Message-ID: <9b18b3110609181637m796d6c16o1b2741edc5f09eb2@mail.gmail.com>
15469      Branch: perl
15470            + t/lib/Cname.pm
15471            ! MANIFEST embed.fnc embed.h pod/perldiag.pod proto.h regcomp.c
15472            ! regexec.c t/op/pat.t toke.c
15473 ____________________________________________________________________________
15474 [ 28867] By: merijn                                on 2006/09/19  06:45:26
15475         Log: Subject: [PATCH] C++: add -Wno-used-parameter, and drop ODBM_File
15476              From: Jarkko Hietaniemi <jhi@iki.fi>
15477              Date: Tue, 19 Sep 2006 09:19:22 +0300
15478              Message-ID: <450F8BEA.1010802@iki.fi>
15479      Branch: perl
15480            ! Makefile.SH cflags.SH
15481 ____________________________________________________________________________
15482 [ 28866] By: rgs                                   on 2006/09/18  09:04:02
15483         Log: Fix declaration-after-statement problem
15484              
15485              Subject: [bug] IO::Socket's IO.xs fails to compile
15486              From: Sebastian Steinlechner <steinlechner@gmx.net>
15487              Date: Mon, 18 Sep 2006 01:38:31 +0200
15488              Message-ID: <450DDC77.2060405@gmx.net>
15489      Branch: perl
15490            ! ext/IO/IO.xs
15491 ____________________________________________________________________________
15492 [ 28865] By: rgs                                   on 2006/09/18  08:37:21
15493         Log: Subject: [PATCH] bleed -  silence warning in sv.c
15494              From: "Philip M. Gollucci" <pgollucci@p6m7g8.com>
15495              Date: Mon, 18 Sep 2006 01:30:05 -0700
15496              Message-ID: <450E590D.1060205@p6m7g8.com>
15497      Branch: perl
15498            ! sv.c
15499 ____________________________________________________________________________
15500 [ 28864] By: rgs                                   on 2006/09/18  08:35:21
15501         Log: Subject: [PATCH] Re: [perl #37714] XSUB.h version check may fail due to locale
15502              From: John Peacock <jpeacock@rowman.com>
15503              Date: Sun, 17 Sep 2006 16:58:58 -0400
15504              Message-ID: <450DB712.4040703@rowman.com>
15505      Branch: perl
15506            ! universal.c util.c
15507 ____________________________________________________________________________
15508 [ 28863] By: nicholas                              on 2006/09/17  19:26:01
15509         Log: Fix one genuine unitialised code path spotted by gcc, and a signed/
15510              unsigned warning.
15511      Branch: perl
15512            ! doio.c
15513 ____________________________________________________________________________
15514 [ 28862] By: nicholas                              on 2006/09/17  18:52:00
15515         Log: Avoid compiler warning about a variable that isn't used when
15516              -DDEBUGGING is not in force.
15517      Branch: perl
15518            ! regcomp.c
15519 ____________________________________________________________________________
15520 [ 28861] By: rgs                                   on 2006/09/17  13:32:18
15521         Log: A better version of change #28847
15522      Branch: perl
15523            ! universal.c util.c
15524 ____________________________________________________________________________
15525 [ 28860] By: rgs                                   on 2006/09/17  12:07:27
15526         Log: Subject: [PATCH] util.c: restore Perl_my_setenv() to pre-28814
15527              From: Jarkko Hietaniemi <jhi@iki.fi>
15528              Date: Sun, 17 Sep 2006 10:29:08 +0300
15529              Message-ID: <450CF944.7000402@iki.fi>
15530      Branch: perl
15531            ! util.c
15532 ____________________________________________________________________________
15533 [ 28859] By: nicholas                              on 2006/09/17  10:39:27
15534         Log: Some notes about struct block_loop
15535      Branch: perl
15536            ! cop.h
15537 ____________________________________________________________________________
15538 [ 28858] By: nicholas                              on 2006/09/17  00:06:53
15539         Log: Store a pointer to the op in struct block_loop, rather than the 
15540              pointers to last and redo. (for ithreads also drop the next pointer,
15541              as pp_ctl.c doesn't re-write it for ithreads). This shrinks the struct
15542              to 40 bytes on ILP32 systems, and therefore struct block to 64 bytes.
15543      Branch: perl
15544            ! cop.h pp_ctl.c scope.c sv.c
15545 ____________________________________________________________________________
15546 [ 28857] By: stevep                                on 2006/09/16  20:19:08
15547         Log: Upgrade to CPAN-CPAN-1.87_64
15548      Branch: perl
15549            ! lib/CPAN/Debug.pm lib/CPAN/FirstTime.pm
15550            ! lib/CPAN/HandleConfig.pm lib/CPAN/Nox.pm lib/CPAN/SIGNATURE
15551            ! lib/CPAN/Tarzip.pm lib/CPAN/Version.pm
15552 ____________________________________________________________________________
15553 [ 28856] By: stevep                                on 2006/09/16  19:37:51
15554         Log: Upgrade to ExtUtils-ParseXS-2.16.  There actually are a couple of
15555              changes in bleadperl not in the new version, so version was bumped
15556              to 2.16_01.
15557      Branch: perl
15558            ! lib/ExtUtils/ParseXS.pm
15559 ____________________________________________________________________________
15560 [ 28855] By: nicholas                              on 2006/09/16  17:59:17
15561         Log: Shrink the interpreter structure by 4 bytes (usually) by making
15562              PL_in_eval a U8 and PL_delaymagic a U16. (And corresponding changes
15563              in struct block_eval in cop.h to avoid any possible compiler warnings)
15564      Branch: perl
15565            ! cop.h thrdvar.h
15566 ____________________________________________________________________________
15567 [ 28853] By: nicholas                              on 2006/09/16  17:07:03
15568         Log: Revert changes 28772, 28773, 28774 as they won't gain us anything - I
15569              failed to realise that struct block_sub is not the largest of the
15570              4 structures in the block.blk_u union. (It's actually block_loop)
15571      Branch: perl
15572            ! cop.h pp_ctl.c pp_hot.c scope.c sv.c
15573 ____________________________________________________________________________
15574 [ 28851] By: craigb                                on 2006/09/16  15:14:36
15575         Log: return value of -1 without errno set is ok in 
15576              ext/POSIX/t/sysconf.t (it just means the feature is
15577              not implemented, not defined, or has no limit)
15578      Branch: perl
15579            ! ext/POSIX/t/sysconf.t
15580 ____________________________________________________________________________
15581 [ 28850] By: rgs                                   on 2006/09/16  06:32:36
15582         Log: No declarations after statements ! (noticed by Sadahiro Tomoyuki)
15583      Branch: perl
15584            ! util.c
15585 ____________________________________________________________________________
15586 [ 28849] By: nicholas                              on 2006/09/15  22:03:53
15587         Log: Avoid warnings when $Config{d_cplusplus} is undefined.
15588      Branch: perl
15589            ! ext/Encode/bin/enc2xs
15590 ____________________________________________________________________________
15591 [ 28848] By: craigb                                on 2006/09/15  00:39:32
15592         Log: More hacking in util.c's ifdef jungle following 28844 to avoid
15593              duplicate definition of Perl_my_setenv on VMS.
15594      Branch: perl
15595            ! util.c
15596 ____________________________________________________________________________
15597 [ 28847] By: rgs                                   on 2006/09/14  15:31:22
15598         Log: Fix for bug #37714: XSUB.h version check may fail due to locale
15599              Always convert version to number under C locale settings
15600      Branch: perl
15601            ! util.c
15602 ____________________________________________________________________________
15603 [ 28846] By: stevep                                on 2006/09/14  15:24:04
15604         Log: Subject: [PATCH] C++ Encode
15605              From: Jarkko Hietaniemi <jhi@iki.fi>
15606              Date: Thu, 14 Sep 2006 09:05:10 +0300
15607              Message-ID: <4508F116.40606@iki.fi>
15608      Branch: perl
15609            ! ext/Encode/bin/enc2xs
15610 ____________________________________________________________________________
15611 [ 28845] By: rgs                                   on 2006/09/14  14:18:32
15612         Log: MakeMaker is being split in new sub-distributions on CPAN
15613      Branch: perl
15614            ! Porting/Maintainers.pl
15615 ____________________________________________________________________________
15616 [ 28844] By: rgs                                   on 2006/09/14  12:39:16
15617         Log: Subject: Re: Re: [PATCH] C++: Solaris CC now compiles "perl"
15618              From: demerphq <demerphq@gmail.com>
15619              Date: Thu, 14 Sep 2006 14:28:16 +0200
15620              Message-ID: <9b18b3110609140528x49e063aay724169d7f1e49531@mail.gmail.com>
15621      Branch: perl
15622            ! util.c
15623 ____________________________________________________________________________
15624 [ 28843] By: craigb                                on 2006/09/14  03:50:18
15625         Log: Define d_cplusplus on VMS when appropriate
15626      Branch: perl
15627            ! configure.com
15628 ____________________________________________________________________________
15629 [ 28842] By: stevep                                on 2006/09/14  01:36:13
15630         Log: Subject: [PATCH] (1) g++ 4.x (or Mac OS X) (2) Solaris g++ or CC
15631              From: Jarkko Hietaniemi <jhi@iki.fi>
15632              Date: Wed, 13 Sep 2006 20:19:04 +0300
15633              Message-ID: <45083D88.7050207@iki.fi>
15634              
15635              Plus a tweak to the name of CC.
15636      Branch: perl
15637            ! cflags.SH hints/solaris_2.sh perl.h
15638 ____________________________________________________________________________
15639 [ 28841] By: stevep                                on 2006/09/14  01:10:01
15640         Log: Regenerated mktables.lst per Yves Orton's suggestion.
15641      Branch: perl
15642            ! lib/unicore/mktables.lst
15643 ____________________________________________________________________________
15644 [ 28840] By: stevep                                on 2006/09/13  16:05:33
15645         Log: darwin also seems to be lacking a dl_unload_file() in its
15646              DynaLoader, so some additional skips are needed.  If I only
15647              had a NeXT to test with now...
15648      Branch: perl
15649            ! ext/DynaLoader/t/DynaLoader.t
15650 ____________________________________________________________________________
15651 [ 28839] By: stevep                                on 2006/09/13  15:34:46
15652         Log: Add darwin to the list of OS's that fail to pass test 
15653              op/sprintf.t #157.  Newer versions appear to be OK, 
15654              but Mac OS X 10.2.X regularly fail with this test.
15655      Branch: perl
15656            ! t/op/sprintf.t
15657 ____________________________________________________________________________
15658 [ 28838] By: stevep                                on 2006/09/13  14:59:01
15659         Log: Test cases for version cannot handle Test::More versions that
15660              end with _0X.  TODO-ing the failing test cases for now.
15661      Branch: perl
15662            ! lib/version.t
15663 ____________________________________________________________________________
15664 [ 28837] By: rgs                                   on 2006/09/13  14:23:38
15665         Log: Upgrade to CPAN 1.87_63
15666      Branch: perl
15667            ! lib/CPAN.pm lib/CPAN/FirstTime.pm lib/CPAN/HandleConfig.pm
15668            ! lib/CPAN/SIGNATURE
15669 ____________________________________________________________________________
15670 [ 28836] By: stevep                                on 2006/09/13  13:35:32
15671         Log: Upgrade to Test-Simple-0.64_02
15672      Branch: perl
15673            ! lib/Test/Builder.pm lib/Test/Builder/Module.pm
15674            ! lib/Test/Builder/Tester.pm lib/Test/More.pm lib/Test/Simple.pm
15675            ! lib/Test/Simple/Changes
15676            ! lib/Test/Simple/t/00test_harness_check.t
15677            ! lib/Test/Simple/t/diag.t lib/Test/Simple/t/extra.t
15678            ! lib/Test/Simple/t/fail-like.t lib/Test/Simple/t/fail-more.t
15679            ! lib/Test/Simple/t/fail.t lib/Test/Simple/t/fail_one.t
15680            ! lib/Test/Simple/t/harness_active.t
15681            ! lib/Test/Simple/t/is_deeply_fail.t lib/Test/Simple/t/is_fh.t
15682            ! lib/Test/Simple/t/missing.t lib/Test/Simple/t/no_plan.t
15683            ! lib/Test/Simple/t/plan.t lib/Test/Simple/t/plan_bad.t
15684            ! lib/Test/Simple/t/skip.t lib/Test/Simple/t/sort_bug.t
15685            ! lib/Test/Simple/t/threads.t
15686 ____________________________________________________________________________
15687 [ 28835] By: rgs                                   on 2006/09/13  13:27:05
15688         Log: Bump version and other misc. changes. 3rd patch from:
15689              
15690              Subject: [PATCH] thread 1.41 - A drama in three parts
15691              From: "Jerry D. Hedden" <jdhedden@cpan.org>
15692              Date: Sun, 10 Sep 2006 09:12:06 -0700
15693              Message-ID: <20060910091206.fb30e530d17747c2b054d625b8945d88.321c7cbc94.wbe@email.secureserver.net>
15694      Branch: perl
15695            ! ext/threads/Changes ext/threads/README ext/threads/t/state.t
15696            ! ext/threads/t/thread.t ext/threads/threads.pm
15697            ! ext/threads/threads.xs
15698 ____________________________________________________________________________
15699 [ 28834] By: rgs                                   on 2006/09/13  13:21:07
15700         Log: Statically allocate the main thread.
15701              2nd patch from:
15702              
15703              Subject: [PATCH] thread 1.41 - A drama in three parts
15704              From: "Jerry D. Hedden" <jdhedden@cpan.org>
15705              Date: Sun, 10 Sep 2006 09:12:06 -0700
15706              Message-ID: <20060910091206.fb30e530d17747c2b054d625b8945d88.321c7cbc94.wbe@email.secureserver.net>
15707      Branch: perl
15708            ! ext/threads/threads.xs
15709 ____________________________________________________________________________
15710 [ 28833] By: rgs                                   on 2006/09/13  13:15:44
15711         Log: Race condition fix in threads.pm
15712              First patch from:
15713              
15714              Subject: [PATCH] thread 1.41 - A drama in three parts
15715              From: "Jerry D. Hedden" <jdhedden@cpan.org>
15716              Date: Sun, 10 Sep 2006 09:12:06 -0700
15717              Message-ID: <20060910091206.fb30e530d17747c2b054d625b8945d88.321c7cbc94.wbe@email.secureserver.net>
15718      Branch: perl
15719            ! ext/threads/threads.xs
15720 ____________________________________________________________________________
15721 [ 28832] By: rgs                                   on 2006/09/13  09:55:09
15722         Log: Subject: mktables executes seven time per build sigh
15723              From: demerphq <demerphq@gmail.com>
15724              Date: Sun, 10 Sep 2006 17:52:10 +0200
15725              Message-ID: <9b18b3110609100852q2cfc2497ufceda5ff5d0875e3@mail.gmail.com>
15726              
15727              (Fix for Windows)
15728      Branch: perl
15729            ! lib/unicore/mktables win32/Makefile
15730 ____________________________________________________________________________
15731 [ 28831] By: rgs                                   on 2006/09/13  09:44:26
15732         Log: Subject: [perl #40328] B::Deparse pod does not list failure to grok outer lexical scopes in BUGS section 
15733              From: David Nicol (via RT) <perlbug-followup@perl.org>
15734              Date: Tue, 12 Sep 2006 13:21:24 -0700
15735              Message-ID: <rt-3.5.HEAD-31259-1158092484-244.40328-75-0@perl.org>
15736      Branch: perl
15737            ! ext/B/B/Deparse.pm
15738 ____________________________________________________________________________
15739 [ 28830] By: rgs                                   on 2006/09/13  09:36:11
15740         Log: Subject: [perl #40327] Doc patch for perlfunc.pod 
15741              From: merijnb@ms.com (via RT) <perlbug-followup@perl.org>
15742              Date: Tue, 12 Sep 2006 09:12:12 -0700
15743              Message-ID: <rt-3.5.HEAD-31259-1158077531-1067.40327-75-0@perl.org>
15744      Branch: perl
15745            ! pod/perlfunc.pod
15746 ____________________________________________________________________________
15747 [ 28829] By: merijn                                on 2006/09/13  06:51:55
15748         Log: Accumulated fixes from earlier backports, amongst of which:
15749              Subject: [PATCH] remove -Wdeclaration-after-statement scan from Configure
15750              From: Jarkko Hietaniemi <jhi@iki.fi>
15751              Date: Tue, 12 Sep 2006 07:19:32 +0300
15752              Message-ID: <45063554.1040301@iki.fi>
15753      Branch: perl
15754            ! Configure Porting/Glossary config_h.SH
15755 ____________________________________________________________________________
15756 [ 28827] By: rgs                                   on 2006/09/12  15:51:53
15757         Log: Disable study() for utf-8 strings
15758              
15759              Subject: Re: Re: [Fwd: Smoke [5.9.4] 28821 FAIL(XF) OSF1 V5.1 (EV6/4 cpu)]
15760              From: demerphq <demerphq@gmail.com>
15761              Date: Tue, 12 Sep 2006 17:08:55 +0200
15762              Message-ID: <9b18b3110609120808jceb84ces55ef29c2f2b73ebc@mail.gmail.com>
15763      Branch: perl
15764            ! pp.c
15765 ____________________________________________________________________________
15766 [ 28826] By: stevep                                on 2006/09/12  15:30:57
15767         Log: Upgrade to CPAN-1.87_62
15768      Branch: perl
15769            ! lib/CPAN.pm lib/CPAN/FirstTime.pm lib/CPAN/HandleConfig.pm
15770 ____________________________________________________________________________
15771 [ 28825] By: rgs                                   on 2006/09/12  14:49:21
15772         Log: Upgrade to MakeMaker 6.30_04
15773      Branch: perl
15774            + lib/ExtUtils/t/build_man.t lib/ExtUtils/t/pm.t
15775            ! MANIFEST lib/ExtUtils/Changes lib/ExtUtils/MM_Any.pm
15776            ! lib/ExtUtils/MM_NW5.pm lib/ExtUtils/MM_Unix.pm
15777            ! lib/ExtUtils/MM_VMS.pm lib/ExtUtils/MM_Win95.pm
15778            ! lib/ExtUtils/MakeMaker.pm lib/ExtUtils/MakeMaker/FAQ.pod
15779            ! lib/ExtUtils/t/Command.t lib/ExtUtils/t/MM_Win32.t
15780            ! lib/ExtUtils/t/Manifest.t lib/ExtUtils/t/revision.t
15781 ____________________________________________________________________________
15782 [ 28824] By: rgs                                   on 2006/09/12  14:04:54
15783         Log: More warnings silencing, including suggestions by Dominic Dunlop
15784      Branch: perl
15785            ! regcomp.c regexec.c
15786 ____________________________________________________________________________
15787 [ 28823] By: rgs                                   on 2006/09/12  07:26:46
15788         Log: Subject: [PATCH] Re: C++ status [Fwd: Smoke [5.9.4] 28776 FAIL(FM) OSF1 V5.1 (EV6/4 cpu)]
15789              From: Dominic Dunlop <domo@computer.org>
15790              Date: Tue, 12 Sep 2006 09:13:41 +0200
15791              Message-Id: <6FD7503D-349B-4BE4-B457-D79458900FA0@computer.org>
15792      Branch: perl
15793            ! sv.c
15794 ____________________________________________________________________________
15795 [ 28822] By: rgs                                   on 2006/09/12  07:22:40
15796         Log: Another warning-silencing cast
15797      Branch: perl
15798            ! regcomp.c
15799 ____________________________________________________________________________
15800 [ 28821] By: rgs                                   on 2006/09/11  13:05:16
15801         Log: POD fixes in perlce manpage
15802      Branch: perl
15803            ! README.ce
15804 ____________________________________________________________________________
15805 [ 28820] By: rgs                                   on 2006/09/11  12:32:35
15806         Log: FAQ sync
15807      Branch: perl
15808            ! pod/perlfaq.pod pod/perlfaq1.pod pod/perlfaq2.pod
15809            ! pod/perlfaq3.pod pod/perlfaq4.pod pod/perlfaq5.pod
15810            ! pod/perlfaq6.pod pod/perlfaq7.pod pod/perlfaq8.pod
15811            ! pod/perlfaq9.pod
15812 ____________________________________________________________________________
15813 [ 28819] By: rgs                                   on 2006/09/11  11:51:04
15814         Log: Fix a few more printf format warnings
15815      Branch: perl
15816            ! regexec.c
15817 ____________________________________________________________________________
15818 [ 28818] By: rgs                                   on 2006/09/11  10:19:20
15819         Log: Fix definition of macro HOP3 (spotted by a gcc warning)
15820      Branch: perl
15821            ! regexec.c
15822 ____________________________________________________________________________
15823 [ 28817] By: rgs                                   on 2006/09/11  10:12:32
15824         Log: Fix some compilation warnings
15825      Branch: perl
15826            ! regcomp.c
15827 ____________________________________________________________________________
15828 [ 28816] By: rgs                                   on 2006/09/11  10:04:19
15829         Log: Subject: [PATCH] Teach regex optimiser how to handle (?=) and (?<=) properly.
15830              From: demerphq <demerphq@gmail.com>
15831              Date: Sat, 9 Sep 2006 22:00:05 +0200
15832              Message-ID: <9b18b3110609091300x1fd0b15dt32932902a0a80674@mail.gmail.com>
15833      Branch: perl
15834            ! embed.fnc embed.h proto.h regcomp.c regcomp.h regcomp.sym
15835            ! regexec.c regnodes.h sv.c t/op/re_tests t/op/regexp.t
15836 ____________________________________________________________________________
15837 [ 28815] By: rgs                                   on 2006/09/11  09:14:58
15838         Log: Subject: Re: [perl #40302] sigtrap(3pm) man page is vague
15839              From: "David Nicol" <davidnicol@gmail.com>
15840              Date: Fri, 8 Sep 2006 11:19:23 -0500
15841              Message-ID: <934f64a20609080919g3d0add8cr1ca3d1c7ea9a5d32@mail.gmail.com>
15842      Branch: perl
15843            ! lib/sigtrap.pm
15844 ____________________________________________________________________________
15845 [ 28814] By: rgs                                   on 2006/09/11  08:56:21
15846         Log: Subject: [PATCH] C++: Solaris CC now compiles "perl"
15847              From: Jarkko Hietaniemi <jhi@iki.fi>
15848              Date: Sat, 09 Sep 2006 15:29:12 +0300
15849              Message-ID: <4502B398.6060505@iki.fi>
15850      Branch: perl
15851            ! hints/solaris_2.sh opcode.h opcode.pl perl.h perlio.c
15852            ! unixish.h util.c
15853 ____________________________________________________________________________
15854 [ 28813] By: rgs                                   on 2006/09/11  08:41:50
15855         Log: Subject: NULL and sv_setpv vs. newSVpv
15856              From: "Yitzchak Scott-Thoennes" <sthoenna@efn.org>
15857              Date: Sun, 10 Sep 2006 20:31:46 -0700 (PDT)
15858              Message-ID: <8750.24.19.24.170.1157945506.squirrel@24.19.24.170>
15859      Branch: perl
15860            ! sv.c
15861 ____________________________________________________________________________
15862 [ 28812] By: steveh                                on 2006/09/08  16:08:53
15863         Log: Update Porting/Maintainers.pl w.r.t. #28811
15864      Branch: perl
15865            ! Porting/Maintainers.pl
15866 ____________________________________________________________________________
15867 [ 28811] By: steveh                                on 2006/09/08  16:05:53
15868         Log: Subject: [PATCH] Add Params::Check to the core
15869              From: "Jos Boumans" <kane@dwim.org>
15870              Date: Fri, 8 Sep 2006 13:57:16 +0200 (CEST)
15871              Message-ID: <8319.80.127.35.68.1157716636.squirrel@webmail.xs4all.nl>
15872              
15873              (Just the Params-Check part: Locale-Maketext-Simple has already been
15874              added by change #28809)
15875      Branch: perl
15876            + lib/Params/Check.pm lib/Params/Check/t/01_Params-Check.t
15877            ! MANIFEST
15878 ____________________________________________________________________________
15879 [ 28810] By: steveh                                on 2006/09/08  15:33:18
15880         Log: Update Porting/Maintainers.pl w.r.t. #28809
15881      Branch: perl
15882            ! Porting/Maintainers.pl
15883 ____________________________________________________________________________
15884 [ 28809] By: steveh                                on 2006/09/08  15:19:50
15885         Log: Subject: Re: [PATCH] Add Locale::Maketext::Simple to the core
15886              From: kane@xs4all.nl
15887              Date: Sun, 13 Aug 2006 15:51:58 +0200 (CEST)
15888              Message-ID: <24406.80.127.35.68.1155477118.squirrel@webmail.xs4all.nl>
15889              
15890              Actually added 0.18, rather than 0.17 which this PATCH contained, for
15891              an updated licence statement.
15892      Branch: perl
15893            + lib/Locale/Maketext/Simple.pm
15894            + lib/Locale/Maketext/Simple/t/0-signature.t
15895            + lib/Locale/Maketext/Simple/t/1-basic.t
15896            ! MANIFEST
15897 ____________________________________________________________________________
15898 [ 28808] By: rgs                                   on 2006/09/08  08:36:32
15899         Log: Use %^H instead of $^H for the assertions pragma
15900      Branch: perl
15901            ! lib/assertions.pm op.c perl.h
15902 ____________________________________________________________________________
15903 [ 28807] By: rgs                                   on 2006/09/08  07:39:10
15904         Log: Remove empty typemap file
15905      Branch: perl
15906            - ext/threads/shared/typemap
15907            ! MANIFEST
15908 ____________________________________________________________________________
15909 [ 28806] By: craigb                                on 2006/09/08  02:07:30
15910         Log: declaration after code nit in vms/vms.c (from Martin Vorlaender)
15911      Branch: perl
15912            ! vms/vms.c
15913 ____________________________________________________________________________
15914 [ 28805] By: stevep                                on 2006/09/07  18:39:22
15915         Log: Clean up some comments.
15916      Branch: perl
15917            ! cygwin/ld2.in
15918 ____________________________________________________________________________
15919 [ 28804] By: rgs                                   on 2006/09/07  15:21:56
15920         Log: Typo fix in #ifdef
15921      Branch: perl
15922            ! toke.c
15923 ____________________________________________________________________________
15924 [ 28803] By: stevep                                on 2006/09/07  14:24:18
15925         Log: Fix to first problem causing Cygwin Perl to fail to build 
15926              in a path with spaces in it. 
15927      Branch: perl
15928            ! cygwin/Makefile.SHs
15929 ____________________________________________________________________________
15930 [ 28802] By: gisle                                 on 2006/09/07  14:12:14
15931         Log: Document mkpath() return value in scalar context.
15932              Document that rmtree() return value include deleted
15933              directories.
15934      Branch: perl
15935            ! lib/File/Path.pm
15936 ____________________________________________________________________________
15937 [ 28801] By: rgs                                   on 2006/09/07  13:16:12
15938         Log: Subject: Re: [perl #40262] kill( 0, ... ) does not return alive status of child process
15939              From: "David Nicol" <davidnicol@gmail.com>
15940              Date: Fri, 1 Sep 2006 17:26:34 -0500
15941              Message-ID: <934f64a20609011526odd7f5bta847a3be1f6fa5f0@mail.gmail.com>
15942      Branch: perl
15943            ! pod/perlfunc.pod
15944 ____________________________________________________________________________
15945 [ 28800] By: rgs                                   on 2006/09/07  13:13:05
15946         Log: Subject: [perl #40293] perlsec talks erroneously about "Non-Finite Automaton" 
15947              From: premchai21@yahoo.com (via RT) <perlbug-followup@perl.org>
15948              Date: Wed, 06 Sep 2006 23:11:10 -0700
15949              Message-ID: <rt-3.5.HEAD-31258-1157609470-1994.40293-75-0@perl.org>
15950      Branch: perl
15951            ! pod/perlsec.pod
15952 ____________________________________________________________________________
15953 [ 28799] By: rgs                                   on 2006/09/07  11:46:40
15954         Log: Bump version of PerlIO::scalar
15955      Branch: perl
15956            ! ext/PerlIO/scalar/scalar.pm
15957 ____________________________________________________________________________
15958 [ 28798] By: rgs                                   on 2006/09/07  11:45:36
15959         Log: Fix for [perl #40267] PerlIO::scalar doesn't respect readonly-ness
15960      Branch: perl
15961            ! ext/PerlIO/scalar/scalar.xs ext/PerlIO/t/scalar.t
15962 ____________________________________________________________________________
15963 [ 28797] By: rgs                                   on 2006/09/07  09:49:31
15964         Log: Invalidate ISA and method caches when calling a safe compartment
15965              (bug #39887)
15966              
15967              Remove XS_VERSION, make it equal to VERSION
15968      Branch: perl
15969            ! ext/Opcode/Makefile.PL ext/Opcode/Opcode.pm
15970            ! ext/Opcode/Opcode.xs
15971 ____________________________________________________________________________
15972 [ 28796] By: rgs                                   on 2006/09/07  09:25:18
15973         Log: Add Exporter in the dual-lived module list
15974      Branch: perl
15975            ! Porting/Maintainers.pl
15976 ____________________________________________________________________________
15977 [ 28795] By: rgs                                   on 2006/09/07  09:21:56
15978         Log: Subject: Dual life for Exporter
15979              From: "Adriano Ferreira" <a.r.ferreira@gmail.com>
15980              Date: Wed, 6 Sep 2006 16:40:28 -0300
15981              Message-ID: <73ddeb6c0609061240g34f60d9fodaf7727575778d8e@mail.gmail.com>
15982      Branch: perl
15983            ! lib/Exporter.t
15984 ____________________________________________________________________________
15985 [ 28794] By: stevep                                on 2006/09/07  02:07:57
15986         Log: Convert Errno.t to Test::More.  Increase the test coverage
15987              while in there as well. 
15988      Branch: perl
15989            ! ext/Errno/t/Errno.t
15990 ____________________________________________________________________________
15991 [ 28793] By: steveh                                on 2006/09/06  16:54:19
15992         Log: cxtype is a U16, not a U32 (Stops VC++ complaining)
15993      Branch: perl
15994            ! pp_ctl.c
15995 ____________________________________________________________________________
15996 [ 28792] By: stevep                                on 2006/09/06  14:33:06
15997         Log: Removed some leftover debugging accidentally added with
15998              change #28788.
15999      Branch: perl
16000            ! regexec.c
16001 ____________________________________________________________________________
16002 [ 28791] By: rgs                                   on 2006/09/06  14:11:09
16003         Log: Revert accidental file deletion
16004      Branch: perl
16005            + ext/threads/shared/typemap
16006 ____________________________________________________________________________
16007 [ 28790] By: rgs                                   on 2006/09/06  14:04:33
16008         Log: Remove perlcc and the byteloader
16009      Branch: perl
16010            - ext/B/B/Assembler.pm ext/B/B/Bblock.pm ext/B/B/Bytecode.pm
16011            - ext/B/B/C.pm ext/B/B/CC.pm ext/B/B/Disassembler.pm
16012            - ext/B/B/Stackobj.pm ext/B/B/Stash.pm ext/B/B/assemble
16013            - ext/B/B/cc_harness ext/B/B/disassemble ext/B/B/makeliblinks
16014            - ext/B/C/C.xs ext/B/C/Makefile.PL ext/B/NOTES ext/B/README
16015            - ext/B/TESTS ext/B/Todo ext/B/ramblings/cc.notes
16016            - ext/B/ramblings/curcop.runtime ext/B/ramblings/flip-flop
16017            - ext/B/ramblings/magic ext/B/ramblings/reg.alloc
16018            - ext/B/ramblings/runtime.porting ext/B/t/asmdata.t
16019            - ext/B/t/assembler.t ext/B/t/bblock.t ext/B/t/bytecode.t
16020            - ext/B/t/stash.t ext/ByteLoader/ByteLoader.pm
16021            - ext/ByteLoader/ByteLoader.xs ext/ByteLoader/Makefile.PL
16022            - ext/ByteLoader/bytecode.h ext/ByteLoader/byterun.c
16023            - ext/ByteLoader/byterun.h ext/ByteLoader/hints/sunos.pl
16024            - ext/threads/shared/typemap utils/perlcc.PL
16025            ! MANIFEST Makefile.SH NetWare/Makefile bytecode.pl
16026            ! configure.com ext/B/B/Asmdata.pm pod/Makefile.SH
16027            ! pod/perlcompile.pod regen.pl t/TEST t/harness
16028            ! t/lib/1_compile.t utils.lst utils/Makefile
16029            ! vms/descrip_mms.template win32/Makefile win32/makefile.mk
16030            ! win32/pod.mak x2p/Makefile.SH
16031 ____________________________________________________________________________
16032 [ 28789] By: rgs                                   on 2006/09/06  09:18:31
16033         Log: Remove JPL
16034      Branch: perl
16035            - jpl/ChangeLog jpl/JNI/Changes jpl/JNI/Closer.java
16036            - jpl/JNI/JNI.pm jpl/JNI/JNI.xs jpl/JNI/JNIConfig
16037            - jpl/JNI/JNIConfig.Win32 jpl/JNI/JNIConfig.kaffe
16038            - jpl/JNI/JNIConfig.noembed jpl/JNI/JNIConfig.standard
16039            - jpl/JNI/Makefile.PL jpl/JNI/test.pl jpl/JNI/typemap
16040            - jpl/JNI/typemap.gcc jpl/JNI/typemap.win32
16041            - jpl/JPL/AutoLoader.pm jpl/JPL/Class.pm jpl/JPL/Compile.pm
16042            - jpl/JPL/Makefile.PL jpl/JPL_Rolo/JPL_Rolo.jpl
16043            - jpl/JPL_Rolo/Makefile.PL jpl/JPL_Rolo/README
16044            - jpl/JPL_Rolo/cardfile jpl/PerlInterpreter/Makefile.PL
16045            - jpl/PerlInterpreter/PerlInterpreter.c
16046            - jpl/PerlInterpreter/PerlInterpreter.h
16047            - jpl/PerlInterpreter/PerlInterpreter.java jpl/README
16048            - jpl/README.JUST-JNI jpl/SETVARS.PL jpl/Sample/Makefile.PL
16049            - jpl/Sample/Sample.jpl jpl/Test/Makefile.PL jpl/Test/Test.jpl
16050            - jpl/bin/jpl jpl/docs/Tutorial.pod jpl/get_jdk/README
16051            - jpl/get_jdk/get_jdk.pl jpl/get_jdk/jdk_hosts jpl/install-jpl
16052            ! MANIFEST
16053 ____________________________________________________________________________
16054 [ 28788] By: stevep                                on 2006/09/06  00:35:15
16055         Log: Subject: [PATCH] UCD 5.0.0
16056              From: Jarkko Hietaniemi <jhi@iki.fi>
16057              Date: Tue, 05 Sep 2006 21:29:45 +0300
16058              Message-ID: <44FDC219.8010006@iki.fi>
16059      Branch: perl
16060            + lib/unicore/NamedSqProv.txt
16061            ! MANIFEST lib/Unicode/UCD.t lib/unicore/ArabicShaping.txt
16062            ! lib/unicore/BidiMirroring.txt lib/unicore/Blocks.txt
16063            ! lib/unicore/CaseFolding.txt
16064            ! lib/unicore/CompositionExclusions.txt
16065            ! lib/unicore/EastAsianWidth.txt
16066            ! lib/unicore/HangulSyllableType.txt lib/unicore/Index.txt
16067            ! lib/unicore/Jamo.txt lib/unicore/LineBreak.txt
16068            ! lib/unicore/NamedSequences.txt lib/unicore/NamesList.txt
16069            ! lib/unicore/NormalizationCorrections.txt
16070            ! lib/unicore/PropList.txt lib/unicore/PropValueAliases.txt
16071            ! lib/unicore/PropertyAliases.txt lib/unicore/README.perl
16072            ! lib/unicore/Scripts.txt lib/unicore/SpecialCasing.txt
16073            ! lib/unicore/StandardizedVariants.txt
16074            ! lib/unicore/UnicodeData.txt lib/unicore/version regexec.c
16075            ! t/uni/class.t
16076 ____________________________________________________________________________
16077 [ 28787] By: rgs                                   on 2006/09/05  11:09:03
16078         Log: Fix a few warnings
16079      Branch: perl
16080            ! regcomp.c regexec.c
16081 ____________________________________________________________________________
16082 [ 28786] By: rgs                                   on 2006/09/05  10:40:25
16083         Log: Subject: [PATCH perl-current]; was RE: [PATCH perlio.c pp.c regcomp.c] silence format and comparison warnings
16084              From: "Robin Barker" <Robin.Barker@npl.co.uk>
16085              Date: Fri, 1 Sep 2006 16:10:25 +0100
16086              Message-ID: <2C2E01334A940D4792B3E115F95B7226120A21@exchsvr1.npl.ad.local>
16087      Branch: perl
16088            ! dump.c perl.h perlio.c pp.c pp_pack.c sv.c utf8.c
16089 ____________________________________________________________________________
16090 [ 28785] By: rgs                                   on 2006/09/05  10:21:57
16091         Log: Subject: Re: [PATCH] Trie jumping
16092              From: demerphq <demerphq@gmail.com>
16093              Date: Sat, 2 Sep 2006 16:40:12 +0200
16094              Message-ID: <9b18b3110609020740y2eb9004cpab313c3353a437ca@mail.gmail.com>
16095      Branch: perl
16096            ! embed.fnc embed.h ext/re/re.pm opcode.h proto.h regcomp.c
16097            ! regcomp.h regcomp.sym regexec.c regexp.h regnodes.h t/op/pat.t
16098            ! t/op/re_tests
16099 ____________________________________________________________________________
16100 [ 28783] By: rgs                                   on 2006/09/04  16:54:36
16101         Log: Subject: [perl #40239] New hints file for MidnightBSD 
16102              From: Lucas Holt (via RT) <perlbug-followup@perl.org>
16103              Date: Fri, 25 Aug 2006 20:16:40 -0700
16104              Message-ID: <rt-3.5.HEAD-31263-1156562199-1390.40239-75-0@perl.org>
16105      Branch: perl
16106            + hints/midnightbsd.sh
16107            ! MANIFEST
16108 ____________________________________________________________________________
16109 [ 28782] By: rgs                                   on 2006/09/04  15:50:17
16110         Log: Upgrade to Sys::Syslog 0.18
16111      Branch: perl
16112            ! ext/Sys/Syslog/Changes ext/Sys/Syslog/README
16113            ! ext/Sys/Syslog/Syslog.pm ext/Sys/Syslog/t/syslog.t
16114 ____________________________________________________________________________
16115 [ 28781] By: rgs                                   on 2006/09/04  14:53:00
16116         Log: Subject: [perl #40272] subroutine call with & in perlop example 
16117              From: yath-perlbug@yath.de (via RT) <perlbug-followup@perl.org>
16118              Date: Sun, 03 Sep 2006 13:03:28 -0700
16119              Message-ID: <rt-3.5.HEAD-31251-1157313807-430.40272-75-0@perl.org>
16120      Branch: perl
16121            ! pod/perlop.pod
16122 ____________________________________________________________________________
16123 [ 28780] By: rgs                                   on 2006/09/04  13:12:20
16124         Log: Documentation nit, found by Dr Ruud.
16125      Branch: perl
16126            ! pod/perldsc.pod
16127 ____________________________________________________________________________
16128 [ 28779] By: rgs                                   on 2006/09/04  13:11:01
16129         Log: Subject: [PATCH] Correction to POD for FETCH_*_ATTRIBUTES 
16130              From: "Jerry D. Hedden" <jerry@hedden.us>
16131              Date: Fri, 01 Sep 2006 12:43:46 -0700
16132              Message-ID: <20060901124346.fb30e530d17747c2b054d625b8945d88.0cfdb87cb8.wbe@email.secureserver.net>
16133      Branch: perl
16134            ! lib/attributes.pm
16135 ____________________________________________________________________________
16136 [ 28778] By: rgs                                   on 2006/09/04  12:41:39
16137         Log: Subject: Re: AW: [PATCH pod/*] Use Direct Object Constructor Calls
16138              From: chromatic <chromatic@wgz.org>
16139              Date: Fri, 1 Sep 2006 09:12:45 -0700
16140              Message-Id: <200609010912.46314.chromatic@wgz.org>
16141      Branch: perl
16142            ! pod/perllexwarn.pod pod/perlmodlib.PL pod/perlop.pod
16143            ! pod/perlothrtut.pod pod/perlref.pod pod/perltie.pod
16144 ____________________________________________________________________________
16145 [ 28777] By: rgs                                   on 2006/09/04  12:30:36
16146         Log: Subject: [PATCH pod/perlfunc.pod] Add Index Numbers to caller() Docs
16147              From: chromatic <chromatic@wgz.org>
16148              Date: Fri, 1 Sep 2006 05:42:17 -0700
16149              Message-Id: <200609010542.17571.chromatic@wgz.org>
16150      Branch: perl
16151            ! pod/perlfunc.pod
16152 ____________________________________________________________________________
16153 [ 28776] By: rgs                                   on 2006/09/03  12:51:57
16154         Log: Remove dead code from sort.pm
16155      Branch: perl
16156            ! lib/sort.pm
16157 ____________________________________________________________________________
16158 [ 28774] By: nicholas                              on 2006/09/01  17:25:50
16159         Log: Merge lval and hasargs into one U8 in struct block_sub
16160      Branch: perl
16161            ! cop.h
16162 ____________________________________________________________________________
16163 [ 28773] By: nicholas                              on 2006/09/01  16:27:48
16164         Log: Access to cx->blk_sub.lval via macros (as it's about to move).
16165      Branch: perl
16166            ! cop.h pp_ctl.c pp_hot.c scope.c sv.c
16167 ____________________________________________________________________________
16168 [ 28772] By: nicholas                              on 2006/09/01  15:05:10
16169         Log: Access cx->blk_sub.hasargs via a pair of macros (as it's about to
16170              move)
16171      Branch: perl
16172            ! cop.h pp_ctl.c scope.c sv.c
16173 ____________________________________________________________________________
16174 [ 28771] By: nicholas                              on 2006/08/31  09:05:50
16175         Log: Change the generation of {} and [] from 3 ops to 1, and avoid 1 mortal
16176              on the tempstack, by augmenting pp_anonlist and pp_anonhash to accept
16177              OPf_SPECIAL to mean "return a reference to the aggregate" on the stack
16178              rather than the aggregate itself.
16179      Branch: perl
16180            ! ext/B/B/Deparse.pm ext/B/t/concise-xs.t ext/B/t/f_map.t
16181            ! ext/B/t/f_sort.t ext/Devel/Peek/t/Peek.t op.c op.h pp.c
16182 ____________________________________________________________________________
16183 [ 28770] By: nicholas                              on 2006/08/31  08:26:13
16184         Log: Save 4 bytes from struct context (on ILP32) by moving cx_type into
16185              struct block and struct subst.
16186      Branch: perl
16187            ! cop.h
16188 ____________________________________________________________________________
16189 [ 28769] By: steveh                                on 2006/08/30  15:57:13
16190         Log: Silence some more Borland compiler warnings
16191              (See: http://www.nntp.perl.org/group/perl.daily-build.reports/40471)
16192              
16193              - Change the cryptic pragma warn strings into numbers that are more
16194              easily recognized, and add a new one (8027).
16195              
16196              - Add a similar pragma warn line to fcrypt.c, which doesn't use
16197              win32.h.
16198      Branch: perl
16199            ! win32/fcrypt.c win32/win32.h
16200 ____________________________________________________________________________
16201 [ 28768] By: steveh                                on 2006/08/29  13:24:56
16202         Log: Silence Borland compiler warnings in XS::APItest and Win32
16203              (See: http://www.nntp.perl.org/group/perl.daily-build.reports/40471)
16204      Branch: perl
16205            ! ext/XS/APItest/APItest.xs win32/ext/Win32/Win32.pm
16206            ! win32/ext/Win32/Win32.xs
16207 ____________________________________________________________________________
16208 [ 28767] By: rgs                                   on 2006/08/28  12:52:00
16209         Log: Revert bogus change 28763.
16210      Branch: perl
16211            ! EXTERN.h INTERN.h
16212 ____________________________________________________________________________
16213 [ 28766] By: rgs                                   on 2006/08/28  09:26:52
16214         Log: Fix PerlIO::scalar fileno() documentation as suggested in:
16215              Subject: [perl #40245] POD error for PerlIO::scalar in 5.8.8 
16216              From: "Shawn Boyette" (via RT) <perlbug-followup@perl.org>
16217              Date: Mon, 28 Aug 2006 00:21:25 -0700
16218              Message-ID: <rt-3.5.HEAD-31263-1156749685-634.40245-75-0@perl.org>
16219      Branch: perl
16220            ! ext/PerlIO/scalar/scalar.pm
16221 ____________________________________________________________________________
16222 [ 28765] By: stevep                                on 2006/08/27  17:53:17
16223         Log: Added an additional #ifndef based on comments by Jarkko and
16224              John Malmberg.
16225      Branch: perl
16226            ! x2p/INTERN.h
16227 ____________________________________________________________________________
16228 [ 28764] By: rgs                                   on 2006/08/27  16:05:09
16229         Log: Subject: [PATCH DOC] perlsyn incomplete duplicate definition of truth
16230              From: Daniel Frederick Crisman <daniel@crisman.org>
16231              Date: Thu, 24 Aug 2006 17:29:57 -0400
16232              Message-ID: <20060824212957.GA32557@fury.crisman.org>
16233      Branch: perl
16234            ! pod/perlsyn.pod
16235 ____________________________________________________________________________
16236 [ 28763] By: rgs                                   on 2006/08/27  15:57:39
16237         Log: More conditional defines of EXTERN_C, by Jarkko
16238      Branch: perl
16239            ! EXTERN.h INTERN.h
16240 ____________________________________________________________________________
16241 [ 28762] By: rgs                                   on 2006/08/27  15:51:25
16242         Log: Subject: [PATCH] Change #24364 broke Data::Dumper::Seen()
16243              From: Marcus Holland-Moritz <mhx-perl@gmx.net>
16244              Date: Fri, 25 Aug 2006 22:35:33 +0200
16245              Message-ID: <20060825223533.04efdf2d@r2d2>
16246      Branch: perl
16247            ! ext/Data/Dumper/Dumper.pm
16248 ____________________________________________________________________________
16249 [ 28761] By: rgs                                   on 2006/08/27  15:46:54
16250         Log: Regression test for attributes 'reserved' warning,
16251              by Jerry D. Hedden
16252      Branch: perl
16253            ! t/op/attrs.t
16254 ____________________________________________________________________________
16255 [ 28760] By: rgs                                   on 2006/08/25  16:47:08
16256         Log: Put a plan in the last added test
16257      Branch: perl
16258            ! lib/SelfLoader-buggy.t
16259 ____________________________________________________________________________
16260 [ 28759] By: steveh                                on 2006/08/25  16:12:52
16261         Log: Silence a bunch of Borland compiler warnings in SDBM_File
16262              (See: http://www.nntp.perl.org/group/perl.daily-build.reports/40283)
16263      Branch: perl
16264            ! XSUB.h
16265 ____________________________________________________________________________
16266 [ 28758] By: rgs                                   on 2006/08/25  15:58:41
16267         Log: Subject: Re: [perl #40216] SelfLoader::croak doesn't protect $@ from being clobbered by require
16268              From: "Adriano Ferreira" <a.r.ferreira@gmail.com>
16269              Date: Thu, 24 Aug 2006 10:20:43 -0300
16270              Message-ID: <73ddeb6c0608240620s207124d1mc202aea6a4598576@mail.gmail.com>
16271      Branch: perl
16272            + lib/SelfLoader-buggy.t
16273            ! MANIFEST lib/SelfLoader.pm
16274 ____________________________________________________________________________
16275 [ 28757] By: rgs                                   on 2006/08/25  15:45:08
16276         Log: Following Jarkko's advice, it seems that ODBM_File cannot be
16277              compiled as C++ as-is.
16278      Branch: perl
16279            ! ext/ODBM_File/ODBM_File.xs
16280 ____________________________________________________________________________
16281 [ 28756] By: rgs                                   on 2006/08/25  15:24:28
16282         Log: Subject: [PATCH] RE: [perl #40227] 'reserved' warning not working
16283              From: "Jerry D. Hedden" <jdhedden@cpan.org>
16284              Date: Thu, 24 Aug 2006 09:04:12 -0700
16285              Message-ID: <20060824090412.fb30e530d17747c2b054d625b8945d88.e8ae12ccab.wbe@email.secureserver.net>
16286      Branch: perl
16287            ! lib/attributes.pm xsutils.c
16288 ____________________________________________________________________________
16289 [ 28755] By: stevep                                on 2006/08/24  15:07:58
16290         Log: Upgrade to File-Temp-0.17.  Also, a change to Tim Jenness's email.
16291      Branch: perl
16292            + lib/File/Temp/t/seekable.t
16293            ! AUTHORS MANIFEST lib/File/Temp.pm
16294 ____________________________________________________________________________
16295 [ 28754] By: rgs                                   on 2006/08/24  12:36:08
16296         Log: Subject: [PATCH ext/ODBM_File/ODBM_File.xs] change 28744 broke ODBM_File
16297              From: "Robin Barker" <Robin.Barker@npl.co.uk>
16298              Date: Thu, 24 Aug 2006 13:22:47 +0100
16299              Message-ID: <2C2E01334A940D4792B3E115F95B7226120A1A@exchsvr1.npl.ad.local>
16300      Branch: perl
16301            ! ext/ODBM_File/ODBM_File.xs
16302 ____________________________________________________________________________
16303 [ 28753] By: rgs                                   on 2006/08/24  12:23:15
16304         Log: Subject: [PATCH] Don't promulgate Perl attributes
16305              From: "Jerry D. Hedden" <jdhedden@cpan.org>
16306              Date: Wed, 23 Aug 2006 10:07:05 -0700
16307              Message-ID: <20060823100705.fb30e530d17747c2b054d625b8945d88.87c0ee9326.wbe@email.secureserver.net>
16308      Branch: perl
16309            ! lib/attributes.pm xsutils.c
16310 ____________________________________________________________________________
16311 [ 28752] By: stevep                                on 2006/08/24  01:27:08
16312         Log: Upgrade to CGI.pm-3.22.
16313      Branch: perl
16314            ! lib/CGI.pm lib/CGI/Changes
16315 ____________________________________________________________________________
16316 [ 28751] By: stevep                                on 2006/08/23  16:08:17
16317         Log: Subject: [perl #40161] ccversion fix for hpux
16318              From: smoketst@hp46t243.cup.hp.com (via RT) <perlbug-followup@perl.org>
16319              Date: Wed, 16 Aug 2006 23:10:52 -0700
16320              Message-ID: <rt-3.5.HEAD-31263-1155795052-1297.40161-75-0@perl.org>
16321      Branch: perl
16322            ! hints/hpux.sh
16323 ____________________________________________________________________________
16324 [ 28750] By: stevep                                on 2006/08/23  03:04:47
16325         Log: The previous change causes compile failures with threaded Perls.
16326      Branch: perl
16327            ! reentr.h reentr.pl
16328 ____________________________________________________________________________
16329 [ 28749] By: stevep                                on 2006/08/22  20:16:55
16330         Log: Part of one of Jarkko's g++ patches that was missed.
16331      Branch: perl
16332            ! reentr.h reentr.pl
16333 ____________________________________________________________________________
16334 [ 28748] By: stevep                                on 2006/08/22  17:41:33
16335         Log: Update to Time-HiRes-1.90.
16336      Branch: perl
16337            ! ext/Time/HiRes/Changes ext/Time/HiRes/HiRes.pm
16338            ! ext/Time/HiRes/HiRes.xs
16339 ____________________________________________________________________________
16340 [ 28747] By: stevep                                on 2006/08/22  16:43:52
16341         Log: Upgrade to Time-HiRes-1.89.
16342      Branch: perl
16343            ! ext/Time/HiRes/Changes ext/Time/HiRes/HiRes.pm
16344            ! ext/Time/HiRes/HiRes.xs
16345 ____________________________________________________________________________
16346 [ 28746] By: stevep                                on 2006/08/22  14:18:16
16347         Log: Upgrade to CGI.pm-3.21
16348      Branch: perl
16349            ! lib/CGI.pm lib/CGI/Changes lib/CGI/Cookie.pm
16350 ____________________________________________________________________________
16351 [ 28745] By: stevep                                on 2006/08/22  14:14:23
16352         Log: Upgrade to Time-HiRes-1.88.
16353      Branch: perl
16354            ! ext/Time/HiRes/Changes ext/Time/HiRes/HiRes.pm
16355            ! ext/Time/HiRes/HiRes.xs
16356 ____________________________________________________________________________
16357 [ 28744] By: stevep                                on 2006/08/22  14:07:13
16358         Log: Subject: [PATCH] g++: fix Digest::MD5, Math::BigInt::FastCalc, ODBM_File, XS::APItest (and Time::HiRes 1.88 in CPAN)
16359              From: Jarkko Hietaniemi <jhi@cc.hut.fi>
16360              Date: Tue, 22 Aug 2006 10:45:41 +0300 (EEST)
16361              Message-Id: <200608220745.k7M7jfjP050939@kosh.hut.fi>
16362              
16363              ...plus various version bumps and Digest::MD5 test file fixes.
16364      Branch: perl
16365            ! ext/Digest/MD5/MD5.pm ext/Digest/MD5/MD5.xs
16366            ! ext/Digest/MD5/t/files.t ext/Math/BigInt/FastCalc/FastCalc.pm
16367            ! ext/Math/BigInt/FastCalc/FastCalc.xs
16368            ! ext/ODBM_File/ODBM_File.pm ext/ODBM_File/ODBM_File.xs
16369            ! ext/XS/APItest/APItest.pm ext/XS/APItest/APItest.xs
16370 ____________________________________________________________________________
16371 [ 28743] By: stevep                                on 2006/08/22  02:12:16
16372         Log: Subject: [PATCH] perlhack.pod: small porta-tweaks (this time without pod2man :-)
16373              From: Jarkko Hietaniemi <jhi@cc.hut.fi>
16374              Date: Mon, 21 Aug 2006 22:39:35 +0300 (EEST)
16375              Message-Id: <200608211939.k7LJdZ9P170671@kosh.hut.fi>
16376      Branch: perl
16377            ! pod/perlhack.pod
16378 ____________________________________________________________________________
16379 [ 28742] By: stevep                                on 2006/08/22  01:03:05
16380         Log: Subject: [PATCH] g++/x2p (better version)
16381              From: Jarkko Hietaniemi <jhi@cc.hut.fi>
16382              Date: Mon, 21 Aug 2006 14:48:26 +0300 (EEST)
16383              Message-Id: <200608211148.k7LBmQGL161830@kosh.hut.fi>
16384      Branch: perl
16385            ! x2p/EXTERN.h x2p/INTERN.h x2p/hash.h
16386 ____________________________________________________________________________
16387 [ 28741] By: rgs                                   on 2006/08/21  10:15:30
16388         Log: Subject: [PATCH] g++/Tru64: got perl linking once got the linkage right
16389              From: Jarkko Hietaniemi <jhi@cc.hut.fi>
16390              Date: Fri, 18 Aug 2006 13:03:17 +0300 (EEST)
16391              Message-Id: <200608181003.k7IA3Hso276655@kosh.hut.fi>
16392      Branch: perl
16393            ! hints/dec_osf.sh perl.h pp_sys.c
16394 ____________________________________________________________________________
16395 [ 28740] By: rgs                                   on 2006/08/20  10:13:12
16396         Log: Amendment to change #28739
16397      Branch: perl
16398            ! ext/B/B/Assembler.pm
16399 ____________________________________________________________________________
16400 [ 28739] By: rgs                                   on 2006/08/20  09:25:59
16401         Log: Subject: [PATCH] bytecode.t failures in Tru64: svtype (enum) is int, not long
16402              From: Jarkko Hietaniemi <jhi@cc.hut.fi>
16403              Date: Sat, 19 Aug 2006 14:34:53 +0300 (EEST)
16404              Message-Id: <200608191134.k7JBYroK518962@kosh.hut.fi>
16405      Branch: perl
16406            ! ext/B/B/Assembler.pm
16407 ____________________________________________________________________________
16408 [ 28738] By: rgs                                   on 2006/08/20  09:15:21
16409         Log: perlthrtut update, by Jerry D. Hedden.
16410      Branch: perl
16411            ! pod/perlthrtut.pod
16412 ____________________________________________________________________________
16413 [ 28737] By: rgs                                   on 2006/08/20  08:46:33
16414         Log: Subject: [PATCH] g++/Solaris: force d_dlopen=define
16415              From: Jarkko Hietaniemi <jhi@cc.hut.fi>
16416              Date: Fri, 18 Aug 2006 15:48:34 +0300 (EEST)
16417              Message-Id: <200608181248.k7ICmY2W028375@vipunen.hut.fi>
16418      Branch: perl
16419            ! hints/solaris_2.sh
16420 ____________________________________________________________________________
16421 [ 28736] By: rgs                                   on 2006/08/18  16:22:18
16422         Log: Phrasing nit in perlxstut (by Ville Koskinen)
16423      Branch: perl
16424            ! pod/perlxstut.pod
16425 ____________________________________________________________________________
16426 [ 28735] By: rgs                                   on 2006/08/18  15:46:18
16427         Log: A type change that apparently works around a compiler bug
16428              (gcc 4.1.1 on Solaris) (by Robin Barker)
16429      Branch: perl
16430            ! pp_hot.c
16431 ____________________________________________________________________________
16432 [ 28734] By: stevep                                on 2006/08/17  20:28:36
16433         Log: Subject: [PATCH] Re: A large-ish C++ TODO (Re: [PATCH] g++ stage 1 reached)
16434              From: Jarkko Hietaniemi <jhi@iki.fi>
16435              Date: Thu, 17 Aug 2006 19:16:09 +0300
16436              Message-ID: <44E49649.9090307@iki.fi>
16437      Branch: perl
16438            ! XSUB.h mathoms.c op.h perl.h perlio.c utf8.c
16439 ____________________________________________________________________________
16440 [ 28733] By: stevep                                on 2006/08/17  17:57:33
16441         Log: syscall() declaration in perl.h needs to have an EXTERN_C prefixing
16442              it for some C++ compiles.  Might as well fix usleep()'s 
16443              declaration too.
16444      Branch: perl
16445            ! perl.h
16446 ____________________________________________________________________________
16447 [ 28732] By: stevep                                on 2006/08/17  15:28:36
16448         Log: Fix to problem where CGI can lose the filehandle during an upload.
16449              Patch posted to the Debian bug list by Eric Wong 
16450              <eric@petta-tech.com>.
16451      Branch: perl
16452            ! lib/CGI.pm
16453 ____________________________________________________________________________
16454 [ 28731] By: stevep                                on 2006/08/17  14:50:36
16455         Log: gcc-4.1.1 on Fedora optimized away NULL chacks in Perl_do_close(),
16456              which caused core dumps.
16457      Branch: perl
16458            ! embed.fnc proto.h
16459 ____________________________________________________________________________
16460 [ 28730] By: stevep                                on 2006/08/16  17:44:44
16461         Log: Cast needed to compile bsd_glob.c with C++
16462      Branch: perl
16463            ! ext/File/Glob/bsd_glob.c
16464 ____________________________________________________________________________
16465 [ 28729] By: stevep                                on 2006/08/16  13:11:15
16466         Log: Additional changes to get C++ a little closer to a clean compile
16467              of Perl.
16468      Branch: perl
16469            ! bytecode.pl ext/B/B/Asmdata.pm ext/ByteLoader/bytecode.h
16470            ! ext/ByteLoader/byterun.c ext/DB_File/DB_File.pm
16471            ! ext/DB_File/DB_File.xs ext/Hash/Util/FieldHash/FieldHash.xs
16472            ! ext/Hash/Util/FieldHash/lib/Hash/Util/FieldHash.pm
16473            ! ext/POSIX/POSIX.pm ext/POSIX/POSIX.xs
16474 ____________________________________________________________________________
16475 [ 28728] By: stevep                                on 2006/08/15  18:57:11
16476         Log: Additional floating point strictness is needed to get Intel cc to pass
16477              its tests.
16478      Branch: perl
16479            ! hints/linux.sh
16480 ____________________________________________________________________________
16481 [ 28727] By: rgs                                   on 2006/08/15  10:01:48
16482         Log: Update Changes
16483      Branch: perl
16484            ! Changes
16485 ____________________________________________________________________________
16486 [ 28726] By: rgs                                   on 2006/08/15  09:59:24
16487         Log: Update Module::CoreList data with 5.9.4
16488      Branch: perl
16489            ! lib/Module/CoreList.pm
16490 ____________________________________________________________________________
16491 [ 28725] By: rgs                                   on 2006/08/15  09:55:27
16492         Log: 5.9.4 is today.
16493      Branch: perl
16494            ! pod/perlhist.pod
16495 ____________________________________________________________________________
16496 [ 28724] By: rgs                                   on 2006/08/15  09:54:02
16497         Log: Actually, Richard Clamp doesn't maintain Module::CoreList anymore.
16498      Branch: perl
16499            ! Porting/Maintainers.pl
16500 ____________________________________________________________________________
16501 [ 28723] By: rgs                                   on 2006/08/15  09:43:40
16502         Log: Regenerate perlmodlib and perltoc
16503      Branch: perl
16504            ! pod/perlmodlib.pod pod/perltoc.pod
16505 ____________________________________________________________________________
16506 [ 28722] By: rgs                                   on 2006/08/15  09:40:08
16507         Log: POD formatting nit
16508      Branch: perl
16509            ! pod/perl594delta.pod
16510 ____________________________________________________________________________
16511 [ 28721] By: rgs                                   on 2006/08/15  09:29:03
16512         Log: Remove some of the known problems documented in perldelta, which were
16513              caused by change #28319, just backed out. Add some Windows news (by
16514              Steve Hay)
16515      Branch: perl
16516            ! pod/perl594delta.pod
16517 ____________________________________________________________________________
16518 [ 28720] By: rgs                                   on 2006/08/15  09:22:54
16519         Log: Revert change 28319, which may cause segfaults with threaded perls
16520              on eval("syntax error") statements
16521      Branch: perl
16522            ! perly.c
16523 ____________________________________________________________________________
16524 [ 28719] By: rgs                                   on 2006/08/15  07:57:54
16525         Log: More perldelta nits found by my reviewers
16526      Branch: perl
16527            ! pod/perl594delta.pod
16528 ____________________________________________________________________________
16529 [ 28718] By: rgs                                   on 2006/08/14  22:30:18
16530         Log: Spelling fixes, thanks to Nicholas and to Ronald Kimball
16531      Branch: perl
16532            ! pod/perl594delta.pod
16533 ____________________________________________________________________________
16534 [ 28717] By: rgs                                   on 2006/08/14  21:58:15
16535         Log: More perldelta entries and fixes
16536      Branch: perl
16537            ! pod/perl594delta.pod
16538 ____________________________________________________________________________
16539 [ 28716] By: rgs                                   on 2006/08/14  21:31:43
16540         Log: Typo fix in the documentation of source filters in @INC
16541      Branch: perl
16542            ! pod/perlfunc.pod
16543 ____________________________________________________________________________
16544 [ 28715] By: mhx                                   on 2006/08/14  20:29:57
16545         Log: Only copy ppport.h to destination if it is different.
16546              This avoids unneccessary rebuilds.
16547      Branch: perl
16548            ! mkppport
16549 ____________________________________________________________________________
16550 [ 28714] By: mhx                                   on 2006/08/14  19:43:23
16551         Log: Upgrade to Devel::PPPort 3.10
16552      Branch: perl
16553            ! ext/Devel/PPPort/Changes ext/Devel/PPPort/PPPort_pm.PL
16554            ! ext/Devel/PPPort/soak
16555 ____________________________________________________________________________
16556 [ 28713] By: rgs                                   on 2006/08/14  19:30:17
16557         Log: perldelta entry describing regexp work, by Yves Orton
16558      Branch: perl
16559            ! pod/perl594delta.pod
16560 ____________________________________________________________________________
16561 [ 28712] By: rgs                                   on 2006/08/14  15:27:51
16562         Log: Regenerate metafile
16563      Branch: perl
16564            ! META.yml
16565 ____________________________________________________________________________
16566 [ 28711] By: rgs                                   on 2006/08/14  14:24:19
16567         Log: New authors
16568      Branch: perl
16569            ! AUTHORS
16570 ____________________________________________________________________________
16571 [ 28710] By: rgs                                   on 2006/08/14  12:45:59
16572         Log: More perldelta entries; plus, credits.
16573      Branch: perl
16574            ! pod/perl594delta.pod
16575 ____________________________________________________________________________
16576 [ 28709] By: rgs                                   on 2006/08/14  12:35:13
16577         Log: Typo fix in perldiag
16578      Branch: perl
16579            ! pod/perldiag.pod
16580 ____________________________________________________________________________
16581 [ 28708] By: steveh                                on 2006/08/14  10:20:13
16582         Log: Update pod/perl594delta.pod w.r.t. #28706, and arrange list of modules
16583              alphabetically.
16584      Branch: perl
16585            ! pod/perl594delta.pod
16586 ____________________________________________________________________________
16587 [ 28707] By: steveh                                on 2006/08/14  10:15:04
16588         Log: Update Porting/Maintainers.pl w.r.t. #28695, #28703 and #28706.
16589      Branch: perl
16590            ! Porting/Maintainers.pl
16591 ____________________________________________________________________________
16592 [ 28706] By: steveh                                on 2006/08/14  10:10:07
16593         Log: Subject: [PATCH] Add Module::Loaded to the core
16594              From: kane@xs4all.nl
16595              Date: Sun, 13 Aug 2006 16:22:09 +0200 (CEST)
16596              Message-ID: <9310.80.127.35.68.1155478929.squirrel@webmail.xs4all.nl>
16597      Branch: perl
16598            + lib/Module/Loaded.pm lib/Module/Loaded/t/01_Module-Loaded.t
16599            ! MANIFEST
16600 ____________________________________________________________________________
16601 [ 28705] By: rgs                                   on 2006/08/14  09:30:38
16602         Log: More perldelta nits.
16603      Branch: perl
16604            ! pod/perl594delta.pod
16605 ____________________________________________________________________________
16606 [ 28704] By: rgs                                   on 2006/08/14  09:19:02
16607         Log: Make the NAME section of Package::Constants more conformant to
16608              man page conventions
16609      Branch: perl
16610            ! lib/Package/Constants.pm
16611 ____________________________________________________________________________
16612 [ 28703] By: steveh                                on 2006/08/14  09:09:40
16613         Log: Subject: [PATCH] Add Package::Constants to the core
16614              From: kane@xs4all.nl
16615              Date: Sat, 12 Aug 2006 23:57:58 +0200 (CEST)
16616              Message-ID: <9749.80.127.35.68.1155419878.squirrel@webmail.xs4all.nl>
16617      Branch: perl
16618            + lib/Package/Constants.pm lib/Package/Constants/t/01_list.t
16619            ! MANIFEST
16620 ____________________________________________________________________________
16621 [ 28702] By: nicholas                              on 2006/08/13  19:51:41
16622         Log: Regularise the indents of Changes to placate Porting/checkAUTHORS.pl
16623      Branch: perl
16624            ! Changes
16625 ____________________________________________________________________________
16626 [ 28701] By: rgs                                   on 2006/08/13  13:53:54
16627         Log: Fix URL of perlbug database
16628      Branch: perl
16629            ! pod/perl594delta.pod
16630 ____________________________________________________________________________
16631 [ 28700] By: rgs                                   on 2006/08/13  12:44:18
16632         Log: More perldelta entries
16633      Branch: perl
16634            ! pod/perl594delta.pod
16635 ____________________________________________________________________________
16636 [ 28699] By: rgs                                   on 2006/08/13  07:51:46
16637         Log: Fix a couple URLs in perlhack
16638      Branch: perl
16639            ! pod/perlhack.pod
16640 ____________________________________________________________________________
16641 [ 28698] By: rgs                                   on 2006/08/12  12:53:32
16642         Log: Subject: [PATCH] perlhack.pod: more portability pitfalls
16643              From: Jarkko Hietaniemi <jhi@cc.hut.fi>
16644              Date: Sat, 12 Aug 2006 10:33:38 +0300 (EEST)
16645              Message-Id: <200608120733.k7C7XcU0268432@kosh.hut.fi>
16646      Branch: perl
16647            ! pod/perlhack.pod
16648 ____________________________________________________________________________
16649 [ 28697] By: steveh                                on 2006/08/11  17:31:45
16650         Log: Resync win32/config_H.* and win32/config.* with config_h.SH
16651              and Porting/config.sh respectively
16652              
16653              No real changes except for the addition of the missing
16654              HAS_C99_VARIADIC_MACROS to win32/config_H.* and
16655              initialinstalllocation, madlyh, madlyobj and madlysrc to
16656              win32/config.*
16657      Branch: perl
16658            ! win32/config.bc win32/config.gc win32/config.vc
16659            ! win32/config.vc64 win32/config_H.bc win32/config_H.gc
16660            ! win32/config_H.vc win32/config_H.vc64
16661 ____________________________________________________________________________
16662 [ 28696] By: rgs                                   on 2006/08/11  16:02:32
16663         Log: More perldelta notes. Also, I did forget things
16664              in perl593delta...
16665      Branch: perl
16666            ! pod/perl593delta.pod pod/perl594delta.pod
16667 ____________________________________________________________________________
16668 [ 28695] By: steveh                                on 2006/08/11  12:52:51
16669         Log: Subject: [PATCH] Add Module::Load to 5.9.x
16670              From: kane@xs4all.nl
16671              Date: Wed, 9 Aug 2006 12:23:42 +0200 (CEST)
16672              Message-ID: <9866.194.109.0.185.1155119022.squirrel@webmail.xs4all.nl>
16673      Branch: perl
16674            + lib/Module/Load.pm lib/Module/Load/t/01_Module-Load.t
16675            + lib/Module/Load/t/to_load/LoadIt.pm
16676            + lib/Module/Load/t/to_load/LoadMe.pl
16677            + lib/Module/Load/t/to_load/Must/Be/Loaded.pm
16678            + lib/Module/Load/t/to_load/TestModule.pm
16679            + lib/Module/Load/t/to_load/ToBeLoaded
16680            + lib/Module/Load/t/to_load/config_file
16681            ! MANIFEST
16682 ____________________________________________________________________________
16683 [ 28694] By: steveh                                on 2006/08/11  12:49:00
16684         Log: Close file before unlinking (on Win32 at least!)
16685      Branch: perl
16686            ! t/op/stat.t
16687 ____________________________________________________________________________
16688 [ 28693] By: rgs                                   on 2006/08/10  16:46:07
16689         Log: Subject: [PATCH] Re: Smoke [5.9.4] 28683 FAIL(F) Solaris 2.11 (i386/1 cpu)
16690              From: Andrew Dougherty <doughera@lafayette.edu>
16691              Date: Thu, 10 Aug 2006 12:37:39 -0400 (EDT)
16692              Message-ID: <Pine.LNX.4.62.0608101230260.12531@fractal.phys.lafayette.edu>
16693      Branch: perl
16694            ! lib/open.t
16695 ____________________________________________________________________________
16696 [ 28692] By: rgs                                   on 2006/08/10  14:27:44
16697         Log: Update Changes
16698      Branch: perl
16699            ! Changes
16700 ____________________________________________________________________________
16701 [ 28691] By: rgs                                   on 2006/08/10  13:17:51
16702         Log: Some updates to the cross-compilation config script
16703      Branch: perl
16704            ! Cross/config.sh-arm-linux
16705 ____________________________________________________________________________
16706 [ 28690] By: rgs                                   on 2006/08/10  09:46:34
16707         Log: lstat on *GLOB{IO} with warnings on would segfault
16708              (noticed by Andrew Dougherty)
16709      Branch: perl
16710            ! pp_sys.c
16711 ____________________________________________________________________________
16712 [ 28689] By: rgs                                   on 2006/08/10  08:23:31
16713         Log: Subject: [PATCH] g++: gethostbyaddr, and more Tru64 defines
16714              From: Jarkko Hietaniemi <jhi@iki.fi>
16715              Date: Thu, 10 Aug 2006 09:00:44 +0300
16716              Message-ID: <44DACB8C.1080708@iki.fi>
16717      Branch: perl
16718            ! hints/dec_osf.sh pp_sys.c
16719 ____________________________________________________________________________
16720 [ 28688] By: rgs                                   on 2006/08/10  08:22:01
16721         Log: Subject: [PATCH] doio.c: vararg NULLs must be cast right
16722              From: Jarkko Hietaniemi <jhi@cc.hut.fi>
16723              Date: Thu, 10 Aug 2006 08:35:53 +0300 (EEST)
16724              Message-Id: <200608100535.k7A5Zr2Z156515@kosh.hut.fi>
16725      Branch: perl
16726            ! doio.c
16727 ____________________________________________________________________________
16728 [ 28687] By: rgs                                   on 2006/08/10  08:14:46
16729         Log: Upgrade to version.pm 0.67
16730      Branch: perl
16731            ! lib/version.pm lib/version.pod lib/version.t
16732 ____________________________________________________________________________
16733 [ 28686] By: stevep                                on 2006/08/09  21:54:08
16734         Log: A couple const's and a cast to get Sun CC to compile these files.
16735              Perl, however, still will not build with the Sun CC.  
16736      Branch: perl
16737            ! op.c pp_sort.c toke.c
16738 ____________________________________________________________________________
16739 [ 28685] By: stevep                                on 2006/08/09  19:45:06
16740         Log: Fix comment nit in config.h
16741      Branch: perl
16742            ! config_h.SH
16743 ____________________________________________________________________________
16744 [ 28684] By: rgs                                   on 2006/08/09  15:46:55
16745         Log: Subject: Re: [perl #37731] junk and uninit'ed values in tied scalars
16746              From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
16747              Date: Mon, 28 Nov 2005 01:26:31 -0800
16748              Message-ID: <20051128092605.GA2328@efn.org>
16749              
16750              plus a regression test
16751      Branch: perl
16752            ! sv.c t/op/tie.t
16753 ____________________________________________________________________________
16754 [ 28683] By: rgs                                   on 2006/08/09  12:43:19
16755         Log: Subject: PATCH: Sync Time::Local in blead to 1.13 on CPAN
16756              From: Dave Rolsky <autarch@urth.org>
16757              Date: Wed, 9 Aug 2006 04:38:28 -0500 (CDT)
16758              Message-ID: <Pine.LNX.4.64.0608090422450.8735@urth.org>
16759      Branch: perl
16760            ! lib/Time/Local.pm lib/Time/Local.t
16761 ____________________________________________________________________________
16762 [ 28682] By: rgs                                   on 2006/08/09  09:58:52
16763         Log: Add OS-specific core modules in Module::CoreList for 5.8.[78] and 5.9.[23]
16764      Branch: perl
16765            ! lib/Module/CoreList.pm
16766 ____________________________________________________________________________
16767 [ 28681] By: rgs                                   on 2006/08/09  09:52:38
16768         Log: Add OS-specific modules in Module::Corelist generation script
16769              (hinted by Steve Hay)
16770      Branch: perl
16771            ! Porting/corelist.pl
16772 ____________________________________________________________________________
16773 [ 28680] By: rgs                                   on 2006/08/09  09:42:34
16774         Log: Fix data for 5.9.2, 5.9.3, 5.8.7 and 5.8.8
16775      Branch: perl
16776            ! lib/Module/CoreList.pm
16777 ____________________________________________________________________________
16778 [ 28679] By: rgs                                   on 2006/08/09  09:23:02
16779         Log: More fixes in the Module::Corelist data generation process
16780      Branch: perl
16781            ! Porting/corelist.pl
16782 ____________________________________________________________________________
16783 [ 28678] By: rgs                                   on 2006/08/09  09:01:25
16784         Log: Really submit previous change
16785      Branch: perl
16786            ! Porting/corelist.pl
16787 ____________________________________________________________________________
16788 [ 28677] By: rgs                                   on 2006/08/09  08:34:42
16789         Log: Several fixes in Porting/corelist.pl
16790              - make it run with 5.8.x perls
16791              - make it handle new modules layout in bleadperl
16792      Branch: perl
16793            ! Porting/corelist.pl
16794 ____________________________________________________________________________
16795 [ 28676] By: rgs                                   on 2006/08/08  09:39:35
16796         Log: Subject: [PATCH] Small precision about $SIG{__WARN__}
16797              From: Sébastien Aperghis-Tramoni <maddingue@free.fr>
16798              Date: Tue, 08 Aug 2006 11:17:58 +0200
16799              Message-ID: <1155028678.44d856c64fa0d@imp6-g19.free.fr>
16800      Branch: perl
16801            ! pod/perlvar.pod
16802 ____________________________________________________________________________
16803 [ 28675] By: rgs                                   on 2006/08/08  09:22:27
16804         Log: Simplification in Perl_magic_clearsig, plus a fix similar and
16805              symmetrical to the one implemented in change #28669.
16806      Branch: perl
16807            ! mg.c
16808 ____________________________________________________________________________
16809 [ 28674] By: stevep                                on 2006/08/08  03:55:13
16810         Log: Subject: [PATCH] g++ stage 1 reached
16811              From: Jarkko Hietaniemi <jhi@iki.fi>
16812              Date: Tue, 08 Aug 2006 00:02:35 +0300
16813              Message-ID: <44D7AA6B.4040802@iki.fi>
16814      Branch: perl
16815            ! Configure NetWare/config.wc Porting/Glossary Porting/config.sh
16816            ! Porting/config_H cflags.SH config_h.SH configure.com deb.c
16817            ! dump.c epoc/config.sh gv.c mathoms.c mg.c op.c opcode.h
16818            ! plan9/config.plan9 plan9/config_h.sample symbian/config.sh
16819            ! uconfig.h uconfig.sh win32/config.bc win32/config.ce
16820            ! win32/config.gc win32/config.vc win32/config.vc64
16821            ! win32/config_H.bc win32/config_H.ce win32/config_H.gc
16822            ! win32/config_H.vc win32/config_H.vc64
16823 ____________________________________________________________________________
16824 [ 28673] By: stevep                                on 2006/08/07  19:54:51
16825         Log: Upgrade to Module-Build-0.2805
16826      Branch: perl
16827            ! lib/Module/Build.pm lib/Module/Build/API.pod
16828            ! lib/Module/Build/Authoring.pod lib/Module/Build/Base.pm
16829            ! lib/Module/Build/Changes lib/Module/Build/ModuleInfo.pm
16830            ! lib/Module/Build/Platform/MacOS.pm lib/Module/Build/Version.pm
16831            ! lib/Module/Build/t/moduleinfo.t
16832 ____________________________________________________________________________
16833 [ 28672] By: stevep                                on 2006/08/07  19:37:28
16834         Log: Upgrade to Digest-SHA-5.43
16835      Branch: perl
16836            ! ext/Digest/SHA/Changes ext/Digest/SHA/README
16837            ! ext/Digest/SHA/SHA.pm ext/Digest/SHA/bin/shasum
16838            ! ext/Digest/SHA/src/hmac.c ext/Digest/SHA/src/hmac.h
16839            ! ext/Digest/SHA/src/sha.c ext/Digest/SHA/src/sha.h
16840            ! ext/Digest/SHA/src/sha64bit.c
16841 ____________________________________________________________________________
16842 [ 28671] By: steveh                                on 2006/08/07  16:58:16
16843         Log: Subject: Define PERL_NO_DEV_RANDOM on Windows
16844              From: "Davies, Alex" <adavies@ptc.com>
16845              Date: Thu, 3 Aug 2006 13:31:14 -0400
16846              Message-ID: <A69AA663CE9BBC44AE1DA72483DE15DE04622D66@HQ-MAIL3.ptcnet.ptc.com>
16847              
16848              This stops perl from trying to read C:\dev\urandom on Windows
16849      Branch: perl
16850            ! dosish.h
16851 ____________________________________________________________________________
16852 [ 28670] By: steveh                                on 2006/08/07  16:21:40
16853         Log: Fixups for test failures caused by #28667 and #28668
16854      Branch: perl
16855            ! ext/B/B/Assembler.pm ext/B/t/assembler.t
16856 ____________________________________________________________________________
16857 [ 28669] By: rgs                                   on 2006/08/07  14:10:15
16858         Log: We shouldn't try to decrement the refcount of PL_warnhook
16859              if it has been set to PERL_WARNHOOK_FATAL.
16860      Branch: perl
16861            ! mg.c
16862 ____________________________________________________________________________
16863 [ 28668] By: steveh                                on 2006/08/07  10:24:39
16864         Log: Provide a BGET_svtype, required by #28667
16865      Branch: perl
16866            ! ext/ByteLoader/bytecode.h
16867 ____________________________________________________________________________
16868 [ 28667] By: rgs                                   on 2006/08/07  09:43:20
16869         Log: Try to reinstate the fix of change #28638 by patching bytecode.pl and
16870              not the file it generates
16871      Branch: perl
16872            ! bytecode.pl ext/B/B/Asmdata.pm ext/ByteLoader/byterun.c
16873 ____________________________________________________________________________
16874 [ 28666] By: rgs                                   on 2006/08/07  09:23:35
16875         Log: Restore modification in warnings.h from change 28662 by backporting it
16876              to warnings.pl
16877      Branch: perl
16878            ! warnings.h warnings.pl
16879 ____________________________________________________________________________
16880 [ 28665] By: rgs                                   on 2006/08/07  09:13:42
16881         Log: Subject: [PATCH] File::Basename add X<> tags, replace regex delimiters
16882              From: "Gabor Szabo" <szabgab@gmail.com>
16883              Date: Sat, 5 Aug 2006 23:00:14 +0300
16884              Message-ID: <d8a74af10608051300m4a1ebd93j491889b9b4e8523d@mail.gmail.com>
16885      Branch: perl
16886            ! lib/File/Basename.pm
16887 ____________________________________________________________________________
16888 [ 28664] By: rgs                                   on 2006/08/07  08:28:50
16889         Log: Subject: [PATCH] adding X<> to perlvar
16890              From: "Gabor Szabo" <szabgab@gmail.com>
16891              Date: Sun, 6 Aug 2006 13:59:28 +0300
16892              Message-ID: <d8a74af10608060359g7d4726dalf947f051a51c10e@mail.gmail.com>
16893      Branch: perl
16894            ! pod/perlvar.pod
16895 ____________________________________________________________________________
16896 [ 28663] By: rgs                                   on 2006/08/07  08:23:13
16897         Log: Regenerate files after previous change
16898      Branch: perl
16899            ! ext/ByteLoader/byterun.c warnings.h
16900 ____________________________________________________________________________
16901 [ 28662] By: rgs                                   on 2006/08/07  08:15:39
16902         Log: Subject: [PATCH] g++ large patch
16903              From: Jarkko Hietaniemi <jhi@iki.fi>
16904              Date: Fri, 04 Aug 2006 08:58:27 +0300
16905              Message-ID: <44D2E203.5050201@iki.fi>
16906      Branch: perl
16907            ! cflags.SH deb.c dump.c embed.fnc embed.h gv.c hv.c mathoms.c
16908            ! mg.c op.c perl.h perlio.c pp_ctl.c pp_hot.c pp_pack.c pp_sys.c
16909            ! proto.h regcomp.c regexec.c scope.c sv.c toke.c utf8.c util.c
16910            ! warnings.h
16911 ____________________________________________________________________________
16912 [ 28661] By: rgs                                   on 2006/08/05  15:46:34
16913         Log: Subject: [PATCH] perlfunc.pod - unite gmtime and localtime
16914              From: "Gabor Szabo" <szabgab@gmail.com>
16915              Date: Thu, 27 Jul 2006 09:25:02 +0300
16916              Message-ID: <d8a74af10607262325n472b424cr78c9591c31ffe190@mail.gmail.com>
16917      Branch: perl
16918            ! pod/perlfunc.pod
16919 ____________________________________________________________________________
16920 [ 28660] By: rgs                                   on 2006/08/05  15:28:39
16921         Log: Subject: [PATCH] add more X<> tags to perlfunc
16922              From: "Gabor Szabo" <szabgab@gmail.com>
16923              Date: Thu, 27 Jul 2006 00:27:06 +0300
16924              Message-ID: <d8a74af10607261427g142f0c6bge6f77c2f5e59da40@mail.gmail.com>
16925      Branch: perl
16926            ! pod/perlfunc.pod
16927 ____________________________________________________________________________
16928 [ 28659] By: rgs                                   on 2006/08/05  15:22:18
16929         Log: Subject: [PATCH] File::Copy pod updated adding X<>
16930              From: "Gabor Szabo" <szabgab@gmail.com>
16931              Date: Tue, 1 Aug 2006 08:55:37 +0200
16932              Message-ID: <d8a74af10607312355t7f3fed91g1459cb74b9b50fcd@mail.gmail.com>
16933      Branch: perl
16934            ! lib/File/Copy.pm
16935 ____________________________________________________________________________
16936 [ 28658] By: stevep                                on 2006/08/04  16:42:54
16937         Log: Sorting the MANIFEST
16938      Branch: perl
16939            ! MANIFEST
16940 ____________________________________________________________________________
16941 [ 28657] By: rgs                                   on 2006/08/04  09:45:37
16942         Log: Subject: [PATCH blead] Re: [perl #39882] inconsistent list slice behaviour
16943              From: Rick Delaney <rick@bort.ca>
16944              Date: Thu, 3 Aug 2006 21:48:07 -0400
16945              Message-ID: <20060804014807.GW21381@localhost.localdomain>
16946      Branch: perl
16947            ! pp.c t/op/list.t
16948 ____________________________________________________________________________
16949 [ 28656] By: rgs                                   on 2006/08/04  09:20:31
16950         Log: Subject: [PATCH blead] Re: [perl #40055] B::Deparse double do
16951              From: Rick Delaney <rick@bort.ca>
16952              Date: Thu, 3 Aug 2006 17:30:06 -0400
16953              Message-ID: <20060803213006.GU21381@localhost.localdomain>
16954      Branch: perl
16955            ! ext/B/B/Deparse.pm ext/B/t/deparse.t
16956 ____________________________________________________________________________
16957 [ 28655] By: stevep                                on 2006/08/03  20:18:28
16958         Log: Subject: [PATCH] Tru64 oops
16959              From: Jarkko Hietaniemi <jhi@cc.hut.fi>
16960              Date: Thu, 3 Aug 2006 22:59:37 +0300 (EEST)
16961              Message-Id: <200608031959.k73JxbsC395856@kosh.hut.fi>
16962      Branch: perl
16963            ! pp_sys.c
16964 ____________________________________________________________________________
16965 [ 28654] By: rgs                                   on 2006/08/03  08:15:51
16966         Log: Subject: [PATCH] more g++ in Tru64
16967              From: Jarkko Hietaniemi <jhi@iki.fi>
16968              Date: Thu, 03 Aug 2006 09:04:45 +0300
16969              Message-ID: <44D191FD.9030902@iki.fi>
16970      Branch: perl
16971            ! hints/dec_osf.sh perlio.c pp_sys.c
16972 ____________________________________________________________________________
16973 [ 28653] By: stevep                                on 2006/08/02  17:47:34
16974         Log: Upgrade to Archive-Tar-1.30.  Since change #27571 is not included,
16975              the bleadperl version is bumped to 1.30_01.
16976      Branch: perl
16977            ! lib/Archive/Tar.pm
16978 ____________________________________________________________________________
16979 [ 28652] By: rgs                                   on 2006/08/02  13:11:25
16980         Log: Cross-compilation makefile fails to copy Config_heavy.pl
16981              (noticed by Alexandre Jousset <mid@gtmp.org>)
16982      Branch: perl
16983            ! Cross/Makefile
16984 ____________________________________________________________________________
16985 [ 28651] By: merijn                                on 2006/08/02  11:21:30
16986         Log: Subject: [PATCH] g++ heavy shoveling
16987              From: Jarkko Hietaniemi <jhi@iki.fi>
16988              Date: Wed, 02 Aug 2006 00:04:42 +0300
16989              Message-ID: <44CFC1EA.2050702@iki.fi>
16990      Branch: perl
16991            ! Configure
16992 ____________________________________________________________________________
16993 [ 28649] By: rgs                                   on 2006/08/02  09:49:10
16994         Log: Subject: [PATCH blead] Re: [perl #39733] $AUTOLOAD is never tainted
16995              From: Rick Delaney <rick@bort.ca>
16996              Date: Sun, 9 Jul 2006 15:01:50 -0400
16997              Message-ID: <20060709190150.GA1922@localhost.localdomain>
16998              
16999              Plus a note in perldelta
17000      Branch: perl
17001            ! gv.c pod/perl594delta.pod t/op/taint.t
17002 ____________________________________________________________________________
17003 [ 28645] By: stevep                                on 2006/08/02  03:11:51
17004         Log: Subject: [PATCH] g++ heavy shoveling
17005              From: Jarkko Hietaniemi <jhi@iki.fi>
17006              Date: Wed, 02 Aug 2006 00:04:42 +0300
17007              Message-ID: <44CFC1EA.2050702@iki.fi>
17008      Branch: perl
17009            ! cflags.SH hints/linux.sh perl.h
17010 ____________________________________________________________________________
17011 [ 28644] By: rgs                                   on 2006/08/01  16:47:01
17012         Log: Subject: Re: New perltrap?
17013              From: Rick Delaney <rick@bort.ca>
17014              Date: Tue, 1 Aug 2006 08:43:36 -0400
17015              Message-ID: <20060801124336.GM21381@localhost.localdomain>
17016      Branch: perl
17017            ! pod/perlsec.pod
17018 ____________________________________________________________________________
17019 [ 28643] By: steveh                                on 2006/08/01  16:17:47
17020         Log: Silence a couple of Borland compiler warnings
17021      Branch: perl
17022            ! cop.h regexec.c win32/win32.h
17023 ____________________________________________________________________________
17024 [ 28642] By: rgs                                   on 2006/08/01  16:11:24
17025         Log: Subject: [PATCH] threads 1.38
17026              From: "Jerry D. Hedden" <jerry@hedden.us>
17027              Date: Tue, 01 Aug 2006 08:58:52 -0700
17028              Message-ID: <20060801085852.fb30e530d17747c2b054d625b8945d88.ad7fb0a136.wbe@email.secureserver.net>
17029      Branch: perl
17030            ! ext/threads/Changes ext/threads/README ext/threads/t/free.t
17031            ! ext/threads/t/free2.t ext/threads/t/thread.t
17032            ! ext/threads/threads.pm ext/threads/threads.xs
17033 ____________________________________________________________________________
17034 [ 28641] By: rgs                                   on 2006/08/01  15:11:15
17035         Log: Bump version of Module::CoreList
17036      Branch: perl
17037            ! lib/Module/CoreList.pm
17038 ____________________________________________________________________________
17039 [ 28640] By: rgs                                   on 2006/08/01  14:59:36
17040         Log: Patch by Marius Feraru <altblue@n0i.net> to handle dotted perl versions
17041              in the corelist utility, and to add an easy way to determine what was
17042              some module's version bundled with a specified Perl release.
17043      Branch: perl
17044            ! lib/Module/CoreList/bin/corelist
17045 ____________________________________________________________________________
17046 [ 28639] By: merijn                                on 2006/08/01  12:13:53
17047         Log: Subject: [PATCH] g++ dNOOP (luckily one can mix code and decls in C++)
17048              Somewhat modifies as per Steve Hay's comment
17049              From: Jarkko Hietaniemi <jhi@cc.hut.fi>
17050              Date: Tue, 1 Aug 2006 08:46:15 +0300 (EEST)
17051              Message-Id: <200608010546.k715kEdP017064@kosh.hut.fi>
17052      Branch: perl
17053            ! perl.h
17054 ____________________________________________________________________________
17055 [ 28638] By: steveh                                on 2006/08/01  11:20:47
17056         Log: Silence the VC7 compiler warning in the following smoke:
17057              http://www.nntp.perl.org/group/perl.daily-build.reports/39824
17058      Branch: perl
17059            ! ext/ByteLoader/byterun.c
17060 ____________________________________________________________________________
17061 [ 28637] By: merijn                                on 2006/08/01  08:44:58
17062         Log: ANSI-C headers in test snippets to please g++ (and the rest)
17063              Subject: [PATCH]  (back) towards g++ compilation (in Tru64, and elsewhere)
17064              From: Jarkko Hietaniemi <jhi@iki.fi>
17065              Date: Mon, 31 Jul 2006 23:44:55 +0300
17066              Message-ID: <44CE6BC7.8060805@iki.fi>
17067      Branch: perl
17068            ! Configure
17069 ____________________________________________________________________________
17070 [ 28635] By: steveh                                on 2006/08/01  08:10:07
17071         Log: Subject: [PATCH] op/stat.t: SKIP count fix in case of no dirfd()
17072              From: Jarkko Hietaniemi <jhi@cc.hut.fi>
17073              Date: Tue, 1 Aug 2006 08:04:26 +0300 (EEST)
17074              Message-Id: <200608010504.k7154QT3178692@kosh.hut.fi>
17075      Branch: perl
17076            ! t/op/stat.t
17077 ____________________________________________________________________________
17078 [ 28634] By: stevep                                on 2006/08/01  00:17:19
17079         Log: Subject: [PATCH] solution(?) to the "warning: comparison is always false dueto limited range of data type" with New*()
17080              From: Jarkko Hietaniemi <jhi@iki.fi>
17081              Date: Fri, 28 Jul 2006 09:00:28 +0300
17082              Message-ID: <44C9A7FC.1060801@iki.fi>
17083      Branch: perl
17084            ! handy.h
17085 ____________________________________________________________________________
17086 [ 28633] By: stevep                                on 2006/08/01  00:10:06
17087         Log: Subject: [PATCH] (back) towards g++ compilation (in Tru64, and elsewhere)
17088              From: Jarkko Hietaniemi <jhi@iki.fi>
17089              Date: Mon, 31 Jul 2006 23:44:55 +0300
17090              Message-ID: <44CE6BC7.8060805@iki.fi>
17091              
17092              Just the hints/dec_osf.sh changes from this set of patches.
17093      Branch: perl
17094            ! hints/dec_osf.sh
17095 ____________________________________________________________________________
17096 [ 28632] By: stevep                                on 2006/07/30  17:03:10
17097         Log: Tests to go with change #28628.
17098      Branch: perl
17099            ! t/op/stat.t
17100 ____________________________________________________________________________
17101 [ 28631] By: stevep                                on 2006/07/30  16:20:58
17102         Log: Subject: [PAUSE] CPAN Upload: A/AN/ANDK/CPAN-1.87_55.tar.gz
17103              From: andreas.koenig.gmwojprw@franz.ak.mind.de (Andreas J. Koenig)
17104              Date: Sat, 29 Jul 2006 22:06:31 +0200
17105              Message-ID: <877j1w2n20.fsf@k75.linux.bogus>
17106      Branch: perl
17107            ! lib/CPAN.pm lib/CPAN/FirstTime.pm lib/CPAN/HandleConfig.pm
17108            ! lib/CPAN/SIGNATURE lib/CPAN/Tarzip.pm
17109 ____________________________________________________________________________
17110 [ 28630] By: steveh                                on 2006/07/28  16:37:48
17111         Log: Remove a (UINT) cast to silence a VC6 compiler warning
17112              (this was added by #27352, but Digest-SHA-5.37 changed the
17113              loop variable to be signed so the cast now needs to go).
17114              Also bump the VERSION since #27482 has not yet been applied
17115              to the CPAN version.
17116      Branch: perl
17117            ! ext/Digest/SHA/SHA.pm ext/Digest/SHA/src/sha.c
17118 ____________________________________________________________________________
17119 [ 28629] By: merijn                                on 2006/07/28  08:04:01
17120         Log: Subject: [PATCH] z/OS: an easy test nit
17121              From: Jarkko Hietaniemi <jhi@cc.hut.fi>
17122              Date: Thu, 27 Jul 2006 20:00:02 +0300 (EEST)
17123              Message-Id: <200607271700.k6RH02V1355005@kosh.hut.fi>
17124      Branch: perl
17125            ! ext/PerlIO/t/encoding.t
17126 ____________________________________________________________________________
17127 [ 28628] By: stevep                                on 2006/07/28  00:42:04
17128         Log: Change stat() and -X filetests so that they treat *FILE{IO} 
17129              filehandles like *FILE filehandles.  This resolves RT #8244.
17130      Branch: perl
17131            ! doio.c pp_sys.c
17132 ____________________________________________________________________________
17133 [ 28627] By: stevep                                on 2006/07/27  21:17:10
17134         Log: Upgrade to Digest-SHA-5.42
17135      Branch: perl
17136            ! ext/Digest/SHA/Changes ext/Digest/SHA/README
17137            ! ext/Digest/SHA/SHA.pm ext/Digest/SHA/bin/shasum
17138            ! ext/Digest/SHA/src/hmac.c ext/Digest/SHA/src/hmac.h
17139            ! ext/Digest/SHA/src/sha.c ext/Digest/SHA/src/sha.h
17140            ! ext/Digest/SHA/t/1-exist.t ext/Digest/SHA/t/2-nist-sha-oo.t
17141            ! ext/Digest/SHA/t/2-nist-vectors-bit.t
17142            ! ext/Digest/SHA/t/2-nist-vectors-byte.t
17143            ! ext/Digest/SHA/t/3-gillogly-hard.t
17144            ! ext/Digest/SHA/t/6-dump-load.t ext/Digest/SHA/t/7-ireland.t
17145 ____________________________________________________________________________
17146 [ 28626] By: steveh                                on 2006/07/27  16:25:41
17147         Log: Clear up most of the VC6 compiler warnings in the following smoke:
17148              http://www.nntp.perl.org/group/perl.daily-build.reports/39733
17149      Branch: perl
17150            ! doio.c ext/B/B.xs ext/XS/APItest/APItest.xs hv.c op.c pp.c
17151            ! pp_pack.c utf8.c
17152 ____________________________________________________________________________
17153 [ 28625] By: merijn                                on 2006/07/27  15:33:07
17154         Log: #7217: config.h comments for HAS_POLL incorrect
17155              http://rt.perl.org/rt3/Ticket/Display.html?id=7217
17156              Date: Mon, 2 Jul 2001 14:58:27 -0700
17157              From: David Dyck <dcd@tc.fluke.com>
17158              Subject: config.h comments for HAS_POLL incorrect
17159      Branch: perl
17160            ! config_h.SH
17161 ____________________________________________________________________________
17162 [ 28623] By: craigb                                on 2006/07/27  13:54:55
17163         Log: Subject: Re: Silence/fix more warnings from the regex engine
17164              From: demerphq <demerphq@gmail.com>
17165              Date: Tue, 18 Jul 2006 21:57:15 +0200
17166              Message-ID: <9b18b3110607181257l28cc424aj1de28ebfc4c196d7@mail.gmail.com>
17167              
17168              REGCP_SET should only set a value, not check the previous value of its arg
17169      Branch: perl
17170            ! regexec.c
17171 ____________________________________________________________________________
17172 [ 28622] By: stevep                                on 2006/07/27  11:00:18
17173         Log: Subject: [perl #39835] Patch for perlipc.pod to update TCP server example wrt safe signals and accept()
17174              From: Andy Wardley (via RT) <perlbug-followup@perl.org>
17175              Date: Fri, 14 Jul 2006 10:11:44 -0700      
17176              Message-ID: <rt-3.6.HEAD-20371-1152897103-1865.39835-75-0@perl.org>
17177      Branch: perl
17178            ! pod/perlipc.pod
17179 ____________________________________________________________________________
17180 [ 28621] By: rgs                                   on 2006/07/26  20:36:19
17181         Log: Some notes in perl594delta.
17182      Branch: perl
17183            ! pod/perl594delta.pod
17184 ____________________________________________________________________________
17185 [ 28620] By: rgs                                   on 2006/07/26  20:32:08
17186         Log: Subject: interpolation of @- (and @+) in patterns ([perl #27940] comes back)
17187              From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
17188              Date: Tue, 25 Jul 2006 00:15:50 +0900
17189              Message-Id: <20060725001517.3C5D.BQW10602@nifty.com>
17190      Branch: perl
17191            ! pod/perlop.pod t/op/pat.t t/op/subst.t t/op/tr.t toke.c
17192 ____________________________________________________________________________
17193 [ 28619] By: stevep                                on 2006/07/26  13:54:28
17194         Log: Added tests from CGI.pm that had not been integrated into core.
17195      Branch: perl
17196            + lib/CGI/t/start_end_asterisk.t lib/CGI/t/start_end_end.t
17197            + lib/CGI/t/start_end_start.t
17198            ! MANIFEST
17199 ____________________________________________________________________________
17200 [ 28618] By: rgs                                   on 2006/07/26  06:41:56
17201         Log: Add a few links to standard modules in perlfunc, by Gabor Szabo.
17202      Branch: perl
17203            ! pod/perlfunc.pod
17204 ____________________________________________________________________________
17205 [ 28617] By: stevep                                on 2006/07/26  01:59:06
17206         Log: Subject: [PATCH] Re: [ID 20000816.012] *foo = *_ is broken
17207              From: Mike Guy <mjtg@cam.ac.uk>
17208              Date: Thu, 17 Aug 2000 16:26:56 +0100
17209              Message-Id: <E13PRZI-0007Ge-00@libra.cus.cam.ac.uk>
17210              
17211              Only part regarding @ARG missing from the documentation was applied.
17212      Branch: perl
17213            ! pod/perlvar.pod
17214 ____________________________________________________________________________
17215 [ 28616] By: mhx                                   on 2006/07/25  18:54:08
17216         Log: Upgrade to Devel::PPPort 3.09_02
17217      Branch: perl
17218            + ext/Devel/PPPort/parts/inc/strlfuncs
17219            + ext/Devel/PPPort/t/strlfuncs.t
17220            ! MANIFEST ext/Devel/PPPort/Changes
17221            ! ext/Devel/PPPort/PPPort_pm.PL ext/Devel/PPPort/TODO
17222            ! ext/Devel/PPPort/parts/apicheck.pl
17223            ! ext/Devel/PPPort/parts/base/5009004
17224            ! ext/Devel/PPPort/parts/embed.fnc
17225            ! ext/Devel/PPPort/parts/todo/5009004 ext/Devel/PPPort/soak
17226 ____________________________________________________________________________
17227 [ 28615] By: mhx                                   on 2006/07/25  18:42:26
17228         Log: Very recent development versions of gcc (4.2.0 20060715) seem
17229              to have switched from '<command line>' to '<command-line>'.
17230      Branch: perl
17231            ! makedepend.SH
17232 ____________________________________________________________________________
17233 [ 28614] By: stevep                                on 2006/07/24  17:30:38
17234         Log: Replace some sprintf()'s in Data::Dumper with my_snprintf()'s
17235      Branch: perl
17236            ! ext/Data/Dumper/Dumper.xs mkppport.lst
17237 ____________________________________________________________________________
17238 [ 28613] By: rgs                                   on 2006/07/23  20:32:33
17239         Log: Revert change 28603: this was a wrong fix, that didn't prevent
17240              a later crash. Reindent a bit of the same function.
17241      Branch: perl
17242            ! pp_hot.c
17243 ____________________________________________________________________________
17244 [ 28612] By: rgs                                   on 2006/07/23  19:59:55
17245         Log: Subject: [PATCH document] perlop: parsing quoted constructs 
17246              From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
17247              Date: Sun, 16 Jul 2006 20:06:33 +0900
17248              Message-Id: <20060716200218.2CE6.BQW10602@nifty.com>
17249      Branch: perl
17250            ! pod/perlop.pod
17251 ____________________________________________________________________________
17252 [ 28611] By: stevep                                on 2006/07/23  13:46:05
17253         Log: The rest of the changes for Sys-Syslog-0.17 which my new patch no
17254              longer automatically "p4 edits" for me.
17255      Branch: perl
17256            ! ext/Sys/Syslog/Changes ext/Sys/Syslog/Makefile.PL
17257            ! ext/Sys/Syslog/README ext/Sys/Syslog/t/syslog.t
17258 ____________________________________________________________________________
17259 [ 28610] By: stevep                                on 2006/07/23  13:42:55
17260         Log: Upgrade to Sys-Syslog-0.17
17261      Branch: perl
17262            ! ext/Sys/Syslog/Syslog.pm
17263 ____________________________________________________________________________
17264 [ 28609] By: stevep                                on 2006/07/23  13:20:07
17265         Log: Subject: [PATCH] Tru64: if cc given both -O and -g, -g must be -g3
17266              From: Jarkko Hietaniemi <jhi@cc.hut.fi>
17267              Date: Sun, 23 Jul 2006 10:18:11 +0300 (EEST)
17268              Message-Id: <200607230718.k6N7IB4u009170@kosh.hut.fi>
17269      Branch: perl
17270            ! hints/dec_osf.sh
17271 ____________________________________________________________________________
17272 [ 28608] By: rgs                                   on 2006/07/23  13:17:48
17273         Log: Revert part of last change, that was causing utf8 test failures
17274      Branch: perl
17275            ! toke.c
17276 ____________________________________________________________________________
17277 [ 28607] By: rgs                                   on 2006/07/23  13:04:10
17278         Log: Subject: [PATCH] z/OS: pp_sys.c, reg*.c, toke.c, utf8.c
17279              From: Jarkko Hietaniemi <jhi@iki.fi>
17280              Date: Sat, 22 Jul 2006 18:51:48 +0300
17281              Message-ID: <44C24994.6020008@iki.fi>
17282      Branch: perl
17283            ! pp_sys.c regcomp.c regexec.c toke.c utf8.c
17284 ____________________________________________________________________________
17285 [ 28606] By: rgs                                   on 2006/07/23  12:51:02
17286         Log: Add another volatile modifier to protect against longjmp clobbering
17287      Branch: perl
17288            ! op.c
17289 ____________________________________________________________________________
17290 [ 28605] By: mhx                                   on 2006/07/21  17:56:39
17291         Log: Upgrade to Devel::PPPort 3.09_01
17292      Branch: perl
17293            ! ext/Devel/PPPort/Changes ext/Devel/PPPort/HACKERS
17294            ! ext/Devel/PPPort/PPPort_pm.PL ext/Devel/PPPort/PPPort_xs.PL
17295            ! ext/Devel/PPPort/mktests.PL ext/Devel/PPPort/parts/ppptools.pl
17296            ! ext/Devel/PPPort/soak
17297 ____________________________________________________________________________
17298 [ 28604] By: rgs                                   on 2006/07/21  15:27:20
17299         Log: More tweaks to threads 1.37, by Jerry D. Hedden
17300      Branch: perl
17301            ! ext/threads/Changes ext/threads/t/exit.t
17302            ! ext/threads/t/thread.t ext/threads/threads.pm
17303            ! ext/threads/threads.xs
17304 ____________________________________________________________________________
17305 [ 28603] By: rgs                                   on 2006/07/20  22:03:59
17306         Log: In pp_entersub, accept to handle a CV with a NULL padlist.
17307              This fixes a crash with mod_perl 1.29.
17308      Branch: perl
17309            ! pp_hot.c
17310 ____________________________________________________________________________
17311 [ 28602] By: rgs                                   on 2006/07/20  21:36:25
17312         Log: Upgrade to threads 1.37, by Jerry D. Hedden
17313      Branch: perl
17314            ! ext/threads/Changes ext/threads/README ext/threads/t/exit.t
17315            ! ext/threads/t/thread.t ext/threads/threads.pm
17316            ! ext/threads/threads.xs
17317 ____________________________________________________________________________
17318 [ 28601] By: rgs                                   on 2006/07/19  21:34:05
17319         Log: Band-aid for segfault in ext/threads/t/blocks.t on SMP machines
17320      Branch: perl
17321            ! pp_hot.c
17322 ____________________________________________________________________________
17323 [ 28600] By: stevep                                on 2006/07/19  14:59:24
17324         Log: Subject: [perl #39876] Time::gmtime 1.02 examples patch
17325              From: Alexandr Ciornii (via RT) <perlbug-followup@perl.org>
17326              Date: Wed, 19 Jul 2006 05:46:36 -0700
17327              Message-ID: <rt-3.6.HEAD-25412-1153313196-897.39876-75-0@perl.org>
17328              
17329              Pod fixes for Time::gmtime.pm
17330      Branch: perl
17331            ! lib/Time/gmtime.pm
17332 ____________________________________________________________________________
17333 [ 28599] By: rgs                                   on 2006/07/18  21:43:52
17334         Log: Subject: [PATCH] make magic vtables const if PERL_GLOBAL_STRUCT_PRIVATE
17335              From: Jarkko Hietaniemi <jhi@iki.fi>
17336              Date: Mon, 17 Jul 2006 09:09:24 +0300
17337              Message-ID: <44BB2994.5090609@iki.fi>
17338      Branch: perl
17339            ! perl.h pod/perlguts.pod pod/perlhack.pod
17340 ____________________________________________________________________________
17341 [ 28598] By: rgs                                   on 2006/07/18  21:02:39
17342         Log: Subject: [PATCH] [Fwd: Smoke [5.9.4] 28575 FAIL(XF) OSF1 V5.1 (EV6/4 cpu)]
17343              From: "Jerry D. Hedden" <jerry@hedden.us>
17344              Date: Mon, 17 Jul 2006 05:00:01 -0700
17345              Message-ID: <20060717050001.fb30e530d17747c2b054d625b8945d88.b729fe881f.wbe@email.secureserver.net>
17346      Branch: perl
17347            ! ext/threads/t/basic.t ext/threads/t/free.t
17348 ____________________________________________________________________________
17349 [ 28597] By: steveh                                on 2006/07/18  12:11:36
17350         Log: Fix Borland problem with quoted pre-processor macros in response files
17351              
17352              This should clear up the errors from Module/Build/t/ppm.t and
17353              Module/Build/t/xs.t in the Borland smokes.
17354              
17355              Subject: Re: Smoke [5.9.4] 27656 FAIL(F) MSWin32 WinXP/.Net SP2 (x86/2 cpu)
17356              From: "Randy W. Sims" <ml-perl@thepierianspring.org>
17357              Date: Thu, 06 Apr 2006 22:33:04 -0400
17358              Message-ID: <4435CF60.1000707@thepierianspring.org>
17359              
17360              See the thread here for details:
17361              http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2006-04/msg00027.html
17362      Branch: perl
17363            ! lib/ExtUtils/CBuilder/Platform/Windows.pm
17364 ____________________________________________________________________________
17365 [ 28596] By: stevep                                on 2006/07/18  03:10:51
17366         Log: Additional reason for ssh passphrase failures.
17367      Branch: perl
17368            ! Porting/repository.pod
17369 ____________________________________________________________________________
17370 [ 28595] By: rgs                                   on 2006/07/17  21:11:52
17371         Log: Remove the C89 checking with gcc
17372              (but leave a note in perlhack)
17373      Branch: perl
17374            ! cflags.SH pod/perlhack.pod
17375 ____________________________________________________________________________
17376 [ 28594] By: steveh                                on 2006/07/17  14:32:19
17377         Log: Subject: Silence system warning during tests (only on win32 for now)
17378              From: demerphq <demerphq@gmail.com>
17379              Date: Sat, 15 Jul 2006 18:21:15 +0200
17380              Message-ID: <9b18b3110607150921p33be8e87wd51b2fd317a81587@mail.gmail.com>
17381      Branch: perl
17382            ! t/comp/opsubs.t
17383 ____________________________________________________________________________
17384 [ 28593] By: steveh                                on 2006/07/17  14:23:59
17385         Log: Avoid an error that VC++'s resource compiler seems to have
17386              with a reference to "perly.y" in "perly.h"
17387              
17388              See the thread here for details:
17389              http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2006-07/msg00460.html
17390      Branch: perl
17391            ! perly.h regen_perly.pl
17392 ____________________________________________________________________________
17393 [ 28592] By: merijn                                on 2006/07/17  06:51:54
17394         Log: Cygwin doesn't cope (yet) with gcc flags -std=c89
17395      Branch: perl
17396            ! cflags.SH
17397 ____________________________________________________________________________
17398 [ 28591] By: rgs                                   on 2006/07/16  21:42:59
17399         Log: Check for taintedness of PERL5SHELL on Windows
17400              (bug #39832)
17401      Branch: perl
17402            ! taint.c
17403 ____________________________________________________________________________
17404 [ 28590] By: stevep                                on 2006/07/16  19:18:27
17405         Log: Subject: [PATCH] MIME::Base64 quoted-print.t: z/OS (EBCDIC)
17406              From: Jarkko Hietaniemi <jhi@iki.fi>
17407              Date: Sun, 16 Jul 2006 13:11:15 +0300
17408              Message-ID: <44BA10C3.8040007@iki.fi>
17409      Branch: perl
17410            ! ext/MIME/Base64/t/quoted-print.t
17411 ____________________________________________________________________________
17412 [ 28589] By: stevep                                on 2006/07/16  19:12:28
17413         Log: Subject: Re: Fix loads of warnings from the last escaping patch...
17414              From: demerphq <demerphq@gmail.com>
17415              Date: Sun, 16 Jul 2006 19:59:02 +0200
17416              Message-ID: <9b18b3110607161059j276ac869p450aa178150044ae@mail.gmail.com>
17417      Branch: perl
17418            ! dump.c embed.fnc ext/re/re.pm pod/perlapi.pod proto.h
17419            ! regcomp.c regcomp.h
17420 ____________________________________________________________________________
17421 [ 28588] By: stevep                                on 2006/07/16  19:06:01
17422         Log: Subject: [PATCH] perlhack: advertise Configure -Dgccansipedantic
17423              From: Jarkko Hietaniemi <jhi@cc.hut.fi>
17424              Date: Sun, 16 Jul 2006 20:27:20 +0300 (EEST)
17425              Message-Id: <200607161727.k6GHRKFk069579@kosh.hut.fi>
17426      Branch: perl
17427            ! pod/perlhack.pod
17428 ____________________________________________________________________________
17429 [ 28587] By: stevep                                on 2006/07/16  15:40:29
17430         Log: Upgrade to Module-Build-0.2803
17431      Branch: perl
17432            ! lib/Module/Build.pm lib/Module/Build/Base.pm
17433            ! lib/Module/Build/Changes
17434 ____________________________________________________________________________
17435 [ 28586] By: stevep                                on 2006/07/16  14:54:58
17436         Log: Upgrade to Test-Simple-0.64
17437      Branch: perl
17438            ! lib/Test/Builder/Tester.pm lib/Test/More.pm lib/Test/Simple.pm
17439            ! lib/Test/Simple/Changes lib/Test/Simple/t/skip.t
17440            ! lib/Test/Simple/t/tbt_01basic.t
17441            ! lib/Test/Simple/t/tbt_05faildiag.t
17442            ! lib/Test/Simple/t/tbt_06errormess.t
17443            ! lib/Test/Simple/t/tbt_07args.t
17444 ____________________________________________________________________________
17445 [ 28585] By: stevep                                on 2006/07/16  13:46:35
17446         Log: various safety/portability tweaks
17447              From: Jarkko Hietaniemi <jhi@iki.fi>
17448              Date: Sat, 15 Jul 2006 22:15:29 +0300
17449              Message-ID: <44B93ED1.7080000@iki.fi>
17450              
17451              Fix for change #28578.
17452      Branch: perl
17453            ! util.c
17454 ____________________________________________________________________________
17455 [ 28584] By: davem                                 on 2006/07/16  00:20:25
17456         Log: run regen_headerds
17457      Branch: perl
17458            ! embed.h global.sym proto.h
17459 ____________________________________________________________________________
17460 [ 28583] By: davem                                 on 2006/07/15  22:14:46
17461         Log: Subject:  [PATCH] comment update for scan_const
17462              From:  SADAHIRO Tomoyuki <bqw10602@nifty.com>
17463              Date:  Sat, 15 Jul 2006 20:16:01 +0900
17464              Message-Id:  <20060715201552.9FA5.BQW10602@nifty.com>
17465      Branch: perl
17466            ! toke.c
17467 ____________________________________________________________________________
17468 [ 28582] By: davem                                 on 2006/07/15  21:59:43
17469         Log: Subject:  Updated escaping code. utf8 regex debug output improvements
17470              From:  demerphq <demerphq@gmail.com>
17471              Date:  Sat, 15 Jul 2006 18:56:03 +0200
17472              Message-Id:  <9b18b3110607150956o6273a16clb1518911d1945d4@mail.gmail.com>
17473      Branch: perl
17474            ! dump.c embed.fnc ext/re/re.pm perl.h regcomp.c regcomp.h
17475            ! regexec.c
17476 ____________________________________________________________________________
17477 [ 28581] By: stevep                                on 2006/07/15  18:57:39
17478         Log: Adding Module::Build::Version missed in upgrade.
17479      Branch: perl
17480            + lib/Module/Build/Version.pm
17481            ! MANIFEST
17482 ____________________________________________________________________________
17483 [ 28580] By: stevep                                on 2006/07/15  15:22:35
17484         Log: Upgrade to ANSIColor-1.11
17485      Branch: perl
17486            + lib/Term/ANSIColor/t/basic.t lib/Term/ANSIColor/t/pod.t
17487            - lib/Term/ANSIColor/test.pl
17488            ! MANIFEST lib/Term/ANSIColor.pm lib/Term/ANSIColor/ChangeLog
17489            ! lib/Term/ANSIColor/README
17490 ____________________________________________________________________________
17491 [ 28579] By: stevep                                on 2006/07/15  14:46:53
17492         Log: Upgrade to Module-Build-0.2802
17493      Branch: perl
17494            ! lib/Module/Build.pm lib/Module/Build/Base.pm
17495            ! lib/Module/Build/Changes lib/Module/Build/ModuleInfo.pm
17496            ! lib/Module/Build/t/moduleinfo.t
17497            ! lib/Module/Build/t/runthrough.t
17498 ____________________________________________________________________________
17499 [ 28578] By: merijn                                on 2006/07/15  11:53:36
17500         Log: Subject: [PATCH] various safety/portability tweaks
17501              From: Jarkko Hietaniemi <jhi@iki.fi>
17502              Date: Sat, 15 Jul 2006 13:14:32 +0300
17503              Message-ID: <44B8C008.4030300@iki.fi>
17504      Branch: perl
17505            ! pod/perlhack.pod pod/perltodo.pod pp_sys.c sv.c util.c
17506 ____________________________________________________________________________
17507 [ 28577] By: merijn                                on 2006/07/15  11:45:15
17508         Log: Subject: [PATCH] cflags.SH: add missing C files
17509              From: Jarkko Hietaniemi <jhi@iki.fi>
17510              Date: Sat, 15 Jul 2006 12:30:25 +0300
17511              Message-ID: <44B8B5B1.2050902@iki.fi>
17512      Branch: perl
17513            ! cflags.SH
17514 ____________________________________________________________________________
17515 [ 28576] By: merijn                                on 2006/07/15  11:41:59
17516         Log: Subject: [PATCH] Re: [PATCH] cflags.SH: add -std=c89
17517              From: Jarkko Hietaniemi <jhi@iki.fi>
17518              Date: Sat, 15 Jul 2006 12:19:45 +0300
17519              Message-ID: <44B8B331.8090009@iki.fi>
17520      Branch: perl
17521            ! cflags.SH
17522 ____________________________________________________________________________
17523 [ 28575] By: craigb                                on 2006/07/14  18:18:18
17524         Log: overload.t has same locale problem with VMS that it has with dec_osf
17525      Branch: perl
17526            ! t/uni/overload.t
17527 ____________________________________________________________________________
17528 [ 28574] By: craigb                                on 2006/07/14  18:09:40
17529         Log: Make sysconf tests handle unimplemented success indications
17530              for the benefit of Mac OS X and VMS.
17531      Branch: perl
17532            ! ext/POSIX/t/sysconf.t
17533 ____________________________________________________________________________
17534 [ 28573] By: steveh                                on 2006/07/14  14:42:57
17535         Log: Silence a compiler warning on Win32/VC++
17536              
17537              Subject: Re: Smoke [5.9.4] 28569 FAIL(F) MSWin32 WinXP/.Net SP2 (x86/2 cpu)
17538              From: Anno Siegel <anno4000@mailbox.tu-berlin.de>
17539              Date: Fri, 14 Jul 2006 16:33:01 +0200
17540              Message-Id: <8CC2FF7E-42EE-4B28-A9D2-4FCD8C745004@mailbox.tu-berlin.de>
17541      Branch: perl
17542            ! ext/Hash/Util/FieldHash/FieldHash.xs
17543 ____________________________________________________________________________
17544 [ 28572] By: stevep                                on 2006/07/14  14:38:28
17545         Log: Skip tests for pathconf() and fpathconf() on HP-UX for 
17546              _PC_CHOWN_RESTRICTED.  The HP-UX manpage suggests not trying
17547              to do it, and that the errno will not be set on failure.
17548      Branch: perl
17549            ! ext/POSIX/t/sysconf.t
17550 ____________________________________________________________________________
17551 [ 28571] By: davem                                 on 2006/07/14  11:50:37
17552         Log: remove regex postive super-linear cache code
17553              (it wasn't actually achieving anything)
17554      Branch: perl
17555            ! regexec.c t/op/re_tests
17556 ____________________________________________________________________________
17557 [ 28570] By: merijn                                on 2006/07/14  07:03:08
17558         Log: Subject: [PATCH] -DPERL_GLOBAL_STRUCT_PRIVATE tweaks (done_sanity_check global? yech!)
17559              From: Jarkko Hietaniemi <jhi@cc.hut.fi>
17560              Date: Fri, 14 Jul 2006 09:34:09 +0300 (EEST)
17561              Message-Id: <200607140634.k6E6Y9Ia471707@kosh.hut.fi>
17562      Branch: perl
17563            ! hv.c sv.c
17564 ____________________________________________________________________________
17565 [ 28569] By: stevep                                on 2006/07/13  20:31:59
17566         Log: Version bumps for z/OS fixes.
17567      Branch: perl
17568            ! ext/Encode/Encode.pm ext/MIME/Base64/Base64.pm
17569            ! ext/threads/shared/shared.pm
17570 ____________________________________________________________________________
17571 [ 28568] By: stevep                                on 2006/07/13  20:18:59
17572         Log: Subject: [PATCH] z/OS: CPAN-ized ext/ and lib/
17573              From: Jarkko Hietaniemi <jhi@iki.fi>
17574              Date: Thu, 13 Jul 2006 23:10:27 +0300
17575              Message-ID: <44B6A8B3.5070605@iki.fi>
17576      Branch: perl
17577            ! ext/Data/Dumper/Dumper.xs ext/Data/Dumper/t/dumper.t
17578            ! ext/Encode/Encode.xs ext/Encode/t/utf8strict.t
17579            ! ext/MIME/Base64/Base64.xs ext/Storable/t/downgrade.t
17580            ! ext/Storable/t/overload.t ext/threads/shared/shared.xs
17581            ! lib/CGI/t/util-58.t lib/Digest/t/base.t lib/Digest/t/file.t
17582            ! lib/Pod/t/pod2html-lib.pl lib/Tie/File/t/09_gen_rs.t
17583 ____________________________________________________________________________
17584 [ 28567] By: merijn                                on 2006/07/13  17:12:00
17585         Log: Subject: [PATCH] z/OS: non-CPAN ext and lib + main() without the third arg + Stephen McCamant's comment
17586              From: Jarkko Hietaniemi <jhi@iki.fi>
17587              Date: Thu, 13 Jul 2006 19:47:29 +0300
17588              Message-ID: <44B67921.6090901@iki.fi>
17589      Branch: perl
17590            ! ext/B/B/Deparse.pm lib/AutoLoader.t lib/DBM_Filter/t/encode.t
17591            ! lib/DBM_Filter/t/utf8.t lib/ExtUtils/Constant/Utils.pm
17592            ! lib/ExtUtils/Embed.pm lib/ExtUtils/t/Embed.t
17593            ! lib/PerlIO/via/t/QuotedPrint.t lib/bytes.t lib/dumpvar.pl
17594            ! lib/utf8.t miniperlmain.c perl.h
17595 ____________________________________________________________________________
17596 [ 28566] By: stevep                                on 2006/07/13  15:46:11
17597         Log: Keep Intel C++ from claiming that it is gcc.
17598      Branch: perl
17599            ! hints/linux.sh
17600 ____________________________________________________________________________
17601 [ 28565] By: stevep                                on 2006/07/13  14:04:18
17602         Log: Clear up a few more warnings from blead.
17603      Branch: perl
17604            ! op.c perl.c reentr.c reentr.pl regexec.c
17605 ____________________________________________________________________________
17606 [ 28564] By: rgs                                   on 2006/07/13  08:46:30
17607         Log: Not everybody has env
17608      Branch: perl
17609            ! pod/perlintro.pod
17610 ____________________________________________________________________________
17611 [ 28563] By: rgs                                   on 2006/07/13  08:40:12
17612         Log: Subject: Re: Misunderstanding escapes in heredocs?
17613              From: demerphq <demerphq@gmail.com>
17614              Date: Sun, 9 Jul 2006 16:42:45 +0200
17615              Message-ID: <9b18b3110607090742gc55b4ffl402d5fadc5bd231e@mail.gmail.com>
17616              
17617              with formatting nits
17618      Branch: perl
17619            ! pod/perlop.pod
17620 ____________________________________________________________________________
17621 [ 28562] By: rgs                                   on 2006/07/13  08:17:04
17622         Log: Additions to perlhack based on a patch by Gabor Szabo
17623      Branch: perl
17624            ! pod/perlhack.pod
17625 ____________________________________________________________________________
17626 [ 28561] By: rgs                                   on 2006/07/13  08:04:44
17627         Log: Nits to the perlintro safety net (by Gabor Szabo and Merijn)
17628      Branch: perl
17629            ! pod/perlintro.pod
17630 ____________________________________________________________________________
17631 [ 28560] By: merijn                                on 2006/07/13  06:50:55
17632         Log: Relink to use temp file forced on current dir in mpeix
17633              Subject: [PATCH] mpeix/relink: tweak from Donna Garverick
17634              From: Jarkko Hietaniemi <jhi@cc.hut.fi>
17635              Date: Thu, 13 Jul 2006 08:25:59 +0300 (EEST)
17636              Message-Id: <200607130525.k6D5PxFp251263@kosh.hut.fi>
17637      Branch: perl
17638            ! mpeix/relink
17639 ____________________________________________________________________________
17640 [ 28559] By: rgs                                   on 2006/07/12  13:19:04
17641         Log: Cleanup and conversion to t/test.pl
17642      Branch: perl
17643            ! ext/Devel/Peek/t/Peek.t
17644 ____________________________________________________________________________
17645 [ 28558] By: rgs                                   on 2006/07/12  12:29:58
17646         Log: I prefer array indexes that start from 0 in beginner docs
17647      Branch: perl
17648            ! pod/perlintro.pod
17649 ____________________________________________________________________________
17650 [ 28557] By: rgs                                   on 2006/07/12  12:28:34
17651         Log: Integration of strlcat is to-done (noticed by Yves)
17652      Branch: perl
17653            ! pod/perltodo.pod
17654 ____________________________________________________________________________
17655 [ 28556] By: steveh                                on 2006/07/12  10:28:39
17656         Log: Fix change #28552: VC++ doesn't like code before declarations
17657      Branch: perl
17658            ! ext/Hash/Util/FieldHash/FieldHash.xs
17659 ____________________________________________________________________________
17660 [ 28555] By: rgs                                   on 2006/07/12  09:56:04
17661         Log: Additions and removals in perltodo
17662      Branch: perl
17663            ! pod/perltodo.pod
17664 ____________________________________________________________________________
17665 [ 28554] By: merijn                                on 2006/07/12  09:40:14
17666         Log: Subject: [PATCH] more strictness in perlintro
17667              From: "Gabor Szabo" <szabgab@gmail.com>
17668              Date: Wed, 12 Jul 2006 10:30:06 +0300
17669              Message-ID: <d8a74af10607120030p1964b935y9493e29994a5b371@mail.gmail.com>
17670      Branch: perl
17671            ! pod/perlintro.pod
17672 ____________________________________________________________________________
17673 [ 28553] By: merijn                                on 2006/07/12  09:27:59
17674         Log: Subject: [PATCH] perlinro (use $fh filehandler + not to use built in function name in sub example)
17675              From: "Gabor Szabo" <szabgab@gmail.com>
17676              Date: Wed, 12 Jul 2006 10:51:03 +0300
17677              Message-ID: <d8a74af10607120051t10382a7fw95ce094f0f395490@mail.gmail.com>
17678      Branch: perl
17679            ! pod/perlintro.pod
17680 ____________________________________________________________________________
17681 [ 28552] By: rgs                                   on 2006/07/12  09:00:01
17682         Log: Subject: Re: [PATCH] FieldHash coverity-compliant
17683              From: Anno Siegel <anno4000@mailbox.tu-berlin.de>
17684              Date: Wed, 12 Jul 2006 00:45:44 +0200
17685              Message-Id: <7AEBF247-0AF7-46A8-9D61-D38B45FD21EA@mailbox.tu-berlin.de>
17686      Branch: perl
17687            ! ext/Hash/Util/FieldHash/FieldHash.xs
17688 ____________________________________________________________________________
17689 [ 28551] By: rgs                                   on 2006/07/12  08:49:17
17690         Log: Upgrade to PathTools 3.19
17691      Branch: perl
17692            ! ext/Cwd/Changes lib/Cwd.pm lib/File/Spec.pm
17693            ! lib/File/Spec/Unix.pm lib/File/Spec/t/Spec.t
17694 ____________________________________________________________________________
17695 [ 28550] By: merijn                                on 2006/07/12  06:53:22
17696         Log: Subject: [PATCH] z/OS: t/ - mostly EBCDIC fixes
17697              From: Jarkko Hietaniemi <jhi@cc.hut.fi>
17698              Date: Wed, 12 Jul 2006 00:01:29 +0300 (EEST)
17699              Message-Id: <200607112101.k6BL1TGr321715@kosh.hut.fi>
17700      Branch: perl
17701            ! t/comp/parser.t t/op/caller.t t/op/chop.t t/op/exec.t
17702            ! t/op/index.t t/op/pack.t t/op/pat.t t/op/sprintf.t
17703            ! t/op/utfhash.t t/run/fresh_perl.t t/uni/case.pl t/uni/class.t
17704 ____________________________________________________________________________
17705 [ 28549] By: rgs                                   on 2006/07/11  17:00:26
17706         Log: A few rough notes for the next perldelta
17707      Branch: perl
17708            ! pod/perl594delta.pod
17709 ____________________________________________________________________________
17710 [ 28548] By: rgs                                   on 2006/07/11  14:55:17
17711         Log: Revert bogus fix for bug #27940, which wasn't really a bug,
17712              and a new test item, as found and suggested by Sadahiro Tomoyuki.
17713      Branch: perl
17714            ! t/op/pat.t toke.c
17715 ____________________________________________________________________________
17716 [ 28547] By: rgs                                   on 2006/07/11  14:06:08
17717         Log: Subject: Re: Misunderstanding escapes in heredocs?
17718              From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
17719              Date: Sun, 09 Jul 2006 11:57:42 +0900
17720              Message-Id: <20060709115613.78FF.BQW10602@nifty.com>
17721      Branch: perl
17722            ! pod/perlop.pod
17723 ____________________________________________________________________________
17724 [ 28546] By: stevep                                on 2006/07/11  12:31:10
17725         Log: Upgrade to Text-Tabs+Wrap-2006.0711.  Keep the local changes from
17726              change #27541.  Also, leave out the test files Jacobson.t and 
17727              Jacobson2.t which both generated several warnings.
17728      Branch: perl
17729            + lib/Text/TabsWrap/t/37000.t lib/Text/TabsWrap/t/39548.t
17730            + lib/Text/TabsWrap/t/Jochen.t lib/Text/TabsWrap/t/belg4mit.t
17731            + lib/Text/TabsWrap/t/sep.t lib/Text/TabsWrap/t/sep2.t
17732            ! MANIFEST lib/Text/Tabs.pm lib/Text/TabsWrap/CHANGELOG
17733            ! lib/Text/TabsWrap/t/fill.t lib/Text/Wrap.pm
17734 ____________________________________________________________________________
17735 [ 28545] By: steveh                                on 2006/07/11  11:26:17
17736         Log: Fix change #28533: my_strlcpy does not return the dest str!
17737      Branch: perl
17738            ! util.c
17739 ____________________________________________________________________________
17740 [ 28544] By: rgs                                   on 2006/07/11  09:29:23
17741         Log: Adjust test count in threads test
17742      Branch: perl
17743            ! ext/threads/t/kill.t
17744 ____________________________________________________________________________
17745 [ 28543] By: rgs                                   on 2006/07/11  09:27:25
17746         Log: Subject: [PATCH] threads 1.36 - Signalling terminated threads core dumps
17747              From: "Jerry D. Hedden" <jerry@hedden.us>
17748              Date: Mon, 10 Jul 2006 13:28:25 -0700
17749              Message-ID: <20060710132825.fb30e530d17747c2b054d625b8945d88.5bdc82d2c0.wbe@email.secureserver.net>
17750      Branch: perl
17751            ! ext/threads/Changes ext/threads/README ext/threads/t/kill.t
17752            ! ext/threads/t/thread.t ext/threads/threads.pm
17753            ! ext/threads/threads.xs
17754 ____________________________________________________________________________
17755 [ 28542] By: rgs                                   on 2006/07/11  08:06:26
17756         Log: Subject: [PATCH] FieldHash coverity-compliant
17757              From: Anno Siegel <anno4000@mailbox.tu-berlin.de>
17758              Date: Mon, 10 Jul 2006 21:30:15 +0200
17759              Message-Id: <9C6C104C-8040-489A-BB35-40D22BC48AFC@mailbox.tu-berlin.de>
17760      Branch: perl
17761            ! ext/Hash/Util/FieldHash/FieldHash.xs
17762            ! ext/Hash/Util/FieldHash/lib/Hash/Util/FieldHash.pm
17763            ! ext/Hash/Util/FieldHash/t/02_function.t
17764            ! ext/Hash/Util/FieldHash/t/04_thread.t
17765 ____________________________________________________________________________
17766 [ 28541] By: rgs                                   on 2006/07/11  07:55:21
17767         Log: Subject: [PATCH] Re: [perl #39634] gcc 3.3 has problems with __attribute__((unused))
17768              From: Andy Dougherty <doughera@lafayette.edu>
17769              Date: Mon, 10 Jul 2006 13:16:27 -0400 (EDT)
17770              Message-ID: <Pine.LNX.4.62.0607101312540.24708@fractal.phys.lafayette.edu>
17771      Branch: perl
17772            ! perl.h
17773 ____________________________________________________________________________
17774 [ 28540] By: rgs                                   on 2006/07/11  07:48:24
17775         Log: Subject: [PATCH] sysconf.t: still failing in tru64, try harder to skip
17776              From: Jarkko Hietaniemi <jhi@cc.hut.fi>
17777              Date: Tue, 11 Jul 2006 09:23:08 +0300 (EEST)
17778              Message-Id: <200607110623.k6B6N8Ni488812@kosh.hut.fi>
17779      Branch: perl
17780            ! ext/POSIX/t/sysconf.t
17781 ____________________________________________________________________________
17782 [ 28539] By: rgs                                   on 2006/07/10  20:14:34
17783         Log: Subject: [PATCH] z/OS: hints/os390.sh and Makefile.SH
17784              From: Jarkko Hietaniemi <jhi@iki.fi>
17785              Date: Mon, 10 Jul 2006 22:55:33 +0300
17786              Message-ID: <44B2B0B5.3000008@iki.fi>
17787      Branch: perl
17788            ! Makefile.SH hints/os390.sh
17789 ____________________________________________________________________________
17790 [ 28538] By: rgs                                   on 2006/07/10  19:42:18
17791         Log: Update Changes
17792      Branch: perl
17793            ! Changes
17794 ____________________________________________________________________________
17795 [ 28537] By: stevep                                on 2006/07/10  19:28:54
17796         Log: Subject: [PATCH] perlhack: argh...
17797              From: Jarkko Hietaniemi <jhi@iki.fi>
17798              Date: Mon, 10 Jul 2006 21:07:35 +0300
17799              Message-ID: <44B29767.4040606@iki.fi>
17800      Branch: perl
17801            ! pod/perlhack.pod
17802 ____________________________________________________________________________
17803 [ 28536] By: stevep                                on 2006/07/10  19:12:07
17804         Log: Restoring change #28523 accidentilly reverted with change #28528.
17805      Branch: perl
17806            ! doio.c
17807 ____________________________________________________________________________
17808 [ 28535] By: stevep                                on 2006/07/10  18:26:25
17809         Log: Fix another empty if-statement warning
17810      Branch: perl
17811            ! sv.c
17812 ____________________________________________________________________________
17813 [ 28534] By: stevep                                on 2006/07/10  18:17:30
17814         Log: Silence empty if-statement warning.
17815      Branch: perl
17816            ! universal.c
17817 ____________________________________________________________________________
17818 [ 28533] By: stevep                                on 2006/07/10  17:23:02
17819         Log: Convert some low hanging fruit to my_strlcpy/my_strlcat.
17820      Branch: perl
17821            ! doio.c mg.c pp_sys.c toke.c util.c
17822 ____________________________________________________________________________
17823 [ 28532] By: rgs                                   on 2006/07/10  17:09:38
17824         Log: POD fixes in perlhack
17825      Branch: perl
17826            ! pod/perlhack.pod
17827 ____________________________________________________________________________
17828 [ 28531] By: rgs                                   on 2006/07/10  17:07:43
17829         Log: Typo found by Craig Berry
17830      Branch: perl
17831            ! pod/perlhack.pod
17832 ____________________________________________________________________________
17833 [ 28530] By: rgs                                   on 2006/07/10  17:05:12
17834         Log: More perlhack portability additions by Jarkko
17835      Branch: perl
17836            ! pod/perlhack.pod
17837 ____________________________________________________________________________
17838 [ 28529] By: rgs                                   on 2006/07/10  14:04:00
17839         Log: Subject: [PATCH] threads 1.35 - Borland compiler fix
17840              From: "Jerry D. Hedden" <jerry@hedden.us>
17841              Date: Mon, 10 Jul 2006 06:49:34 -0700
17842              Message-ID: <20060710064934.fb30e530d17747c2b054d625b8945d88.384e3b280c.wbe@email.secureserver.net>
17843      Branch: perl
17844            ! ext/threads/Changes ext/threads/README ext/threads/t/thread.t
17845            ! ext/threads/threads.pm ext/threads/threads.xs
17846 ____________________________________________________________________________
17847 [ 28528] By: stevep                                on 2006/07/10  13:55:39
17848         Log: Change existing uses of strlcpy()/strlcat() to use new my_strlcpy()/
17849              my_strlcat() API.  Convert ext/File/Glob/bsd_glob.c to use 
17850              my_strlcat().  Add to the strlcy()/strlcat() todo entry.
17851      Branch: perl
17852            ! doio.c ext/File/Glob/bsd_glob.c pod/perltodo.pod pp_ctl.c
17853            ! util.c
17854 ____________________________________________________________________________
17855 [ 28527] By: rgs                                   on 2006/07/10  12:46:41
17856         Log: Subject: [PATCH] perlhack: more portability musings
17857              From: Jarkko Hietaniemi <jhi@iki.fi>
17858              Date: Mon, 10 Jul 2006 15:41:10 +0300
17859              Message-ID: <44B24AE6.6030708@iki.fi>
17860      Branch: perl
17861            ! pod/perlhack.pod
17862 ____________________________________________________________________________
17863 [ 28526] By: rgs                                   on 2006/07/10  12:01:20
17864         Log: Subject: examples in the core documentation
17865              From: "Gabor Szabo" <szabgab@gmail.com>
17866              Date: Sun, 9 Jul 2006 15:44:47 +0200
17867              Message-ID: <d8a74af10607090644o5c1ee3b2p98f6aa9301898b44@mail.gmail.com>
17868      Branch: perl
17869            ! pod/perlfunc.pod
17870 ____________________________________________________________________________
17871 [ 28525] By: stevep                                on 2006/07/10  11:28:24
17872         Log: Add Russ Allbery's public domain implementations of strlcat and
17873              strlcpy as Perl_my_strlcat and Perl_my_strlcpy to the Perl core.
17874              Thanks Russ!
17875      Branch: perl
17876            ! embed.fnc embed.h global.sym perl.h proto.h util.c
17877 ____________________________________________________________________________
17878 [ 28524] By: rgs                                   on 2006/07/10  10:16:53
17879         Log: Add a macro to remove duplicated code
17880              
17881              Subject: Re: cut-and-paste findings for blead 28504
17882              From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
17883              Date: Sun, 09 Jul 2006 13:47:04 +0900
17884              Message-Id: <20060709134236.E51A.BQW10602@nifty.com>
17885      Branch: perl
17886            ! pp_sort.c
17887 ____________________________________________________________________________
17888 [ 28523] By: rgs                                   on 2006/07/10  10:11:22
17889         Log: Fix a signed/unsigned warning
17890      Branch: perl
17891            ! doio.c
17892 ____________________________________________________________________________
17893 [ 28522] By: rgs                                   on 2006/07/10  09:53:33
17894         Log: Pod cleanup in Shell.pm
17895      Branch: perl
17896            ! lib/Shell.pm
17897 ____________________________________________________________________________
17898 [ 28521] By: merijn                                on 2006/07/10  07:41:25
17899         Log: Even Jarkko's patches should go in only once
17900              Subject: [PATCH] undouble Jarkko's patch
17901              From: andy@petdance.com (Andy Lester)
17902              Date: Mon, 10 Jul 2006 00:22:18 -0500
17903              Message-ID: <20060710052218.GA7477@petdance.com>
17904      Branch: perl
17905            ! pod/perlhack.pod
17906 ____________________________________________________________________________
17907 [ 28520] By: stevep                                on 2006/07/10  03:07:59
17908         Log: Subject: [PATCH] Skip tests of a POSIX constant on Mac OS X because saved IDs are borked
17909              From: Dominic Dunlop <shouldbedomo@mac.com>
17910              Date: Sun, 9 Jul 2006 22:22:14 +0200
17911              Message-Id: <F1942C06-CDE3-47C6-AC5A-4358960E0F6E@mac.com>
17912      Branch: perl
17913            ! ext/POSIX/t/sysconf.t
17914 ____________________________________________________________________________
17915 [ 28519] By: stevep                                on 2006/07/10  00:29:02
17916         Log: Clear up test based on line number differences between the core and the
17917              Test-Simple version.
17918      Branch: perl
17919            ! lib/Test/Simple/t/tbt_01basic.t
17920 ____________________________________________________________________________
17921 [ 28518] By: nicholas                              on 2006/07/09  21:56:18
17922         Log: Tweak for Jarkko's addition to perlhack, suggested by Yves.
17923      Branch: perl
17924            ! pod/perlhack.pod
17925 ____________________________________________________________________________
17926 [ 28517] By: stevep                                on 2006/07/09  20:51:48
17927         Log: Hmmm...patch didn't warn about rejects in tbt_01basic.t.
17928      Branch: perl
17929            ! lib/Test/Simple/t/tbt_01basic.t
17930 ____________________________________________________________________________
17931 [ 28516] By: merijn                                on 2006/07/09  18:50:01
17932         Log: Subject: [PATCH] some coding guidelines/tips to perlhack (+ one perltodo)
17933              From: Jarkko Hietaniemi <jhi@iki.fi>
17934              Date: Sun, 09 Jul 2006 19:42:10 +0300
17935              Message-ID: <44B131E2.8050805@iki.fi>
17936      Branch: perl
17937            ! pod/perlhack.pod pod/perltodo.pod
17938 ____________________________________________________________________________
17939 [ 28515] By: stevep                                on 2006/07/09  13:57:25
17940         Log: Subject: [PATCH] perlhack.pod
17941              From: Jarkko Hietaniemi <jhi@iki.fi>
17942              Date: Sun, 09 Jul 2006 14:55:20 +0300
17943              Message-ID: <44B0EEA8.4080003@iki.fi>
17944      Branch: perl
17945            ! pod/perlhack.pod
17946 ____________________________________________________________________________
17947 [ 28514] By: stevep                                on 2006/07/09  13:51:37
17948         Log: Upgrade to Test-Simple-0.63
17949      Branch: perl
17950            ! lib/Test/Builder.pm lib/Test/Builder/Tester.pm
17951            ! lib/Test/More.pm lib/Test/Simple.pm lib/Test/Simple/Changes
17952            ! lib/Test/Simple/t/fail-more.t lib/Test/Simple/t/tbt_01basic.t
17953            ! lib/Test/Simple/t/tbt_05faildiag.t
17954 ____________________________________________________________________________
17955 [ 28513] By: mhx                                   on 2006/07/09  08:19:33
17956         Log: Integrate mkppport. All ppport.h files in the core will now
17957              be autogenerated at build time (and removed during cleanup).
17958      Branch: perl
17959            + mkppport mkppport.lst
17960            - ext/Compress/Raw/Zlib/ppport.h ext/Cwd/ppport.h
17961            - ext/Digest/SHA/ppport.h ext/Sys/Syslog/ppport.h
17962            - ext/Time/HiRes/ppport.h win32/ext/Win32API/File/ppport.h
17963            ! MANIFEST Makefile.SH vms/descrip_mms.template win32/Makefile
17964            ! win32/Makefile.ce win32/makefile.mk
17965 ____________________________________________________________________________
17966 [ 28512] By: stevep                                on 2006/07/08  18:08:07
17967         Log: Subject: [PATCH] Macroize vast tracks of duplicated code in regexec.c
17968              From: demerphq <demerphq@gmail.com>
17969              Date: Sat, 8 Jul 2006 17:48:34 +0200
17970              Message-ID: <9b18b3110607080848u663b114ag86f76ac5c9c9d5e@mail.gmail.com>
17971              
17972              Removing duplicated regexp trie-related code.
17973      Branch: perl
17974            ! regexec.c
17975 ____________________________________________________________________________
17976 [ 28511] By: stevep                                on 2006/07/08  18:00:17
17977         Log: Subject: [PATCH] optimisation for File::Spec::abs2rel where both args are relative
17978              From: Brendan O'Dea <bod@debian.org>
17979              Date: Thu, 6 Jul 2006 01:02:41 +1000
17980              Message-ID: <20060705150241.GA2244@londo.c47.org>
17981      Branch: perl
17982            ! lib/File/Spec/Unix.pm
17983 ____________________________________________________________________________
17984 [ 28510] By: stevep                                on 2006/07/08  17:51:43
17985         Log: Subject: [PATCH] perl5db.pl: read full lines from remote socket
17986              From: Brendan O'Dea <bod@debian.org>
17987              Date: Sat, 8 Jul 2006 13:27:50 +1000
17988              Message-ID: <20060708032750.GA20454@londo.c47.org>
17989      Branch: perl
17990            ! lib/perl5db.pl
17991 ____________________________________________________________________________
17992 [ 28509] By: stevep                                on 2006/07/08  17:47:24
17993         Log: Making encoding::warnings lexical is to-done.
17994      Branch: perl
17995            ! pod/perltodo.pod
17996 ____________________________________________________________________________
17997 [ 28508] By: stevep                                on 2006/07/08  17:28:36
17998         Log: Subject: Skip some POSIX tests when the thing they are testing is unimplemented
17999              From: demerphq <demerphq@gmail.com>
18000              Date: Sat, 8 Jul 2006 17:55:09 +0200
18001              Message-ID: <9b18b3110607080855g73407c4fx41a578815c2a6da2@mail.gmail.com>
18002      Branch: perl
18003            ! ext/POSIX/t/sysconf.t ext/POSIX/t/termios.t
18004 ____________________________________________________________________________
18005 [ 28507] By: mhx                                   on 2006/07/08  16:27:10
18006         Log: Upgrade to Devel::PPPort 3.09
18007      Branch: perl
18008            ! ext/Devel/PPPort/Changes ext/Devel/PPPort/HACKERS
18009            ! ext/Devel/PPPort/Makefile.PL ext/Devel/PPPort/PPPort_pm.PL
18010            ! ext/Devel/PPPort/parts/apidoc.fnc
18011            ! ext/Devel/PPPort/parts/base/5009004
18012            ! ext/Devel/PPPort/parts/embed.fnc
18013            ! ext/Devel/PPPort/parts/inc/podtest
18014            ! ext/Devel/PPPort/parts/todo/5009004 ext/Devel/PPPort/soak
18015            ! ext/Devel/PPPort/t/podtest.t
18016 ____________________________________________________________________________
18017 [ 28506] By: stevep                                on 2006/07/08  14:50:33
18018         Log: Update Audrey Tang's email throughout various files.
18019      Branch: perl
18020            ! AUTHORS Porting/Maintainers.pl Porting/checkAUTHORS.pl
18021 ____________________________________________________________________________
18022 [ 28505] By: merijn                                on 2006/07/08  09:04:56
18023         Log: POSIX test improvements on True64
18024              Subject: [PATCH] the new POSIX tests
18025              From: Jarkko Hietaniemi <jhi@iki.fi>
18026              Date: Sat, 08 Jul 2006 11:43:05 +0300
18027              Message-ID: <44AF7019.3070509@iki.fi>
18028      Branch: perl
18029            ! ext/POSIX/POSIX.pod ext/POSIX/t/sysconf.t
18030            ! ext/POSIX/t/termios.t
18031 ____________________________________________________________________________
18032 [ 28504] By: stevep                                on 2006/07/08  01:14:28
18033         Log: Upgrade to encoding-warnings-0.10
18034      Branch: perl
18035            + lib/encoding/warnings/t/4-lexical.t
18036            ! MANIFEST lib/encoding/warnings.pm
18037            ! lib/encoding/warnings/t/3-normal.t
18038 ____________________________________________________________________________
18039 [ 28503] By: stevep                                on 2006/07/07  18:38:01
18040         Log: Subject: [PATCH] Test scripts for I18N::Langinfo and POSIX
18041              From: Sébastien Aperghis-Tramoni <maddingue@free.fr>
18042              Date: Fri, 07 Jul 2006 11:02:31 +0200
18043              Message-ID: <1152262951.44ae23272ffa0@imp3-g19.free.fr>
18044              
18045              Only includes changes to:
18046              * ext/I18N/Langinfo/t/Langinfo.t
18047              * ext/POSIX/t/sysconf.t
18048              * ext/POSIX/t/termios.t
18049      Branch: perl
18050            + ext/POSIX/t/sysconf.t ext/POSIX/t/termios.t
18051            ! MANIFEST ext/I18N/Langinfo/t/Langinfo.t
18052 ____________________________________________________________________________
18053 [ 28502] By: rgs                                   on 2006/07/07  14:52:15
18054         Log: Subject: Re: Dual life for Shell.pm
18055              From: "Adriano Ferreira" <a.r.ferreira@gmail.com>
18056              Date: Thu, 6 Jul 2006 13:02:23 -0300
18057              Message-ID: <73ddeb6c0607060902tc471f84sf1bb841b6e9ecddf@mail.gmail.com>
18058      Branch: perl
18059            ! lib/Shell.pm lib/Shell.t
18060 ____________________________________________________________________________
18061 [ 28501] By: rgs                                   on 2006/07/07  14:12:59
18062         Log: Subject: [PATCH] threads 1.34 - state methods
18063              From: "Jerry D. Hedden" <jerry@hedden.us>
18064              Date: Thu, 06 Jul 2006 07:33:13 -0700
18065              Message-ID: <20060706073313.fb30e530d17747c2b054d625b8945d88.baa39d91bc.wbe@email.secureserver.net>
18066      Branch: perl
18067            + ext/threads/t/state.t
18068            ! MANIFEST ext/threads/Changes ext/threads/README
18069            ! ext/threads/t/context.t ext/threads/t/thread.t
18070            ! ext/threads/threads.pm ext/threads/threads.xs
18071 ____________________________________________________________________________
18072 [ 28500] By: rgs                                   on 2006/07/07  13:23:45
18073         Log: Subject: More escaping in the RE
18074              From: demerphq <demerphq@gmail.com>
18075              Date: Fri, 7 Jul 2006 10:40:40 +0200
18076              Message-ID: <9b18b3110607070140p5cb2c58ftcadbcd113a58c3af@mail.gmail.com>
18077              
18078              (with tweaks)
18079      Branch: perl
18080            ! regcomp.c regcomp.h regexec.c
18081 ____________________________________________________________________________
18082 [ 28499] By: rgs                                   on 2006/07/07  09:50:35
18083         Log: Fix the implementation of list assignment to state().
18084      Branch: perl
18085            ! op.c t/lib/warnings/op t/op/state.t
18086 ____________________________________________________________________________
18087 [ 28498] By: rgs                                   on 2006/07/06  16:55:57
18088         Log: The state() implementation is not yet perfect. Check in a new todo test
18089      Branch: perl
18090            ! t/op/state.t
18091 ____________________________________________________________________________
18092 [ 28497] By: rgs                                   on 2006/07/06  16:35:37
18093         Log: Error in the formulation of the new warning, spotted by Dominic Dunlop
18094      Branch: perl
18095            ! pod/perldiag.pod
18096 ____________________________________________________________________________
18097 [ 28496] By: rgs                                   on 2006/07/06  15:49:30
18098         Log: Add a new warning, "State variable %s will be reinitialized"
18099      Branch: perl
18100            ! op.c pod/perldiag.pod t/lib/warnings/op
18101 ____________________________________________________________________________
18102 [ 28495] By: stevep                                on 2006/07/06  15:38:51
18103         Log: Upgrade to Module-Build-0.2801.
18104      Branch: perl
18105            ! lib/Module/Build.pm lib/Module/Build/Base.pm
18106            ! lib/Module/Build/Changes lib/Module/Build/Compat.pm
18107            ! lib/Module/Build/Cookbook.pm lib/Module/Build/Platform/Unix.pm
18108            ! lib/Module/Build/Platform/Windows.pm lib/Module/Build/YAML.pm
18109            ! lib/Module/Build/t/extend.t lib/Module/Build/t/lib/MBTest.pm
18110            ! lib/Module/Build/t/mbyaml.t lib/Module/Build/t/runthrough.t
18111 ____________________________________________________________________________
18112 [ 28494] By: stevep                                on 2006/07/06  15:18:58
18113         Log: Math-Complex now dual-lived with Jarkko Hietaniemi as the maintainer.
18114              Also, sync'ing up with the CPAN version of the module.
18115      Branch: perl
18116            ! Porting/Maintainers.pl lib/Math/Complex.pm lib/Math/Complex.t
18117            ! lib/Math/Trig.pm lib/Math/Trig.t
18118 ____________________________________________________________________________
18119 [ 28493] By: rgs                                   on 2006/07/06  14:31:55
18120         Log: Document state() variables in perlsub
18121      Branch: perl
18122            ! pod/perlsub.pod
18123 ____________________________________________________________________________
18124 [ 28492] By: stevep                                on 2006/07/06  14:12:56
18125         Log: Alphabetizing function names in perlfunc lists. 
18126      Branch: perl
18127            ! pod/perlfunc.pod
18128 ____________________________________________________________________________
18129 [ 28491] By: rgs                                   on 2006/07/06  13:36:57
18130         Log: Mention state variables in perldiag. Add switch-related keywords
18131              in the keyword listing section in perlfunc. Add a summary of
18132              C<state> in perlfunc. Fix a typo in the synopsis for C<our>.
18133              Don't say that C<my $_> is illegal in perlsub.
18134      Branch: perl
18135            ! pod/perldiag.pod pod/perlfunc.pod pod/perlsub.pod
18136 ____________________________________________________________________________
18137 [ 28490] By: rgs                                   on 2006/07/06  09:01:16
18138         Log: Introduce a new function, pv_escape(), to display contents of PVs
18139              that might contain non printable chars.
18140              
18141              Subject: Re: [PATCH]: fix: [perl #39583] Pattern Match fails for specific length string
18142              From: demerphq <demerphq@gmail.com>
18143              Date: Wed, 5 Jul 2006 20:40:58 +0200
18144              Message-ID: <9b18b3110607051140n10c211a1jf17d3b7914d6f68b@mail.gmail.com>
18145      Branch: perl
18146            ! dump.c embed.fnc embed.h global.sym perl.h pod/perlapi.pod
18147            ! proto.h reentr.c regexec.c t/lib/warnings/9uninit
18148 ____________________________________________________________________________
18149 [ 28489] By: rgs                                   on 2006/07/05  21:00:31
18150         Log: Implement handling of state variables in list assignment
18151      Branch: perl
18152            ! ext/B/B/Concise.pm op.c pp_hot.c t/op/state.t
18153 ____________________________________________________________________________
18154 [ 28488] By: rgs                                   on 2006/07/05  20:00:10
18155         Log: Fix a bug on setting OPpASSIGN_COMMON on a AASSIGN op when the left
18156              side is made out a list declared with our(). In this case OPpLVAL_INTRO
18157              isn't set on the left op, so we just remove that check. Add new tests.
18158      Branch: perl
18159            ! op.c t/op/array.t
18160 ____________________________________________________________________________
18161 [ 28487] By: rgs                                   on 2006/07/05  19:49:36
18162         Log: Adjust test count after introducing new constants in POSIX
18163      Branch: perl
18164            ! ext/B/t/concise-xs.t
18165 ____________________________________________________________________________
18166 [ 28486] By: stevep                                on 2006/07/05  16:27:16
18167         Log: Add constants needed for recvmsg()/sendmsg() support.
18168      Branch: perl
18169            ! ext/POSIX/Makefile.PL
18170 ____________________________________________________________________________
18171 [ 28485] By: stevep                                on 2006/07/05  15:40:05
18172         Log: Skip lib/Memoize/t/tie_ndbm.t if $TMP is not writable.
18173      Branch: perl
18174            ! lib/Memoize/t/tie_ndbm.t
18175 ____________________________________________________________________________
18176 [ 28484] By: rgs                                   on 2006/07/05  14:10:18
18177         Log: Add a TODO test for list assignment to a list of state variables.
18178              Not sure yet how to encode in the optree the information that
18179              state($x, $y) and (state $x, state $y) must be treated differently.
18180      Branch: perl
18181            ! t/op/state.t
18182 ____________________________________________________________________________
18183 [ 28483] By: rgs                                   on 2006/07/05  12:48:57
18184         Log: Don't add extra warning flags for gcc versions < 3.
18185      Branch: perl
18186            ! cflags.SH
18187 ____________________________________________________________________________
18188 [ 28482] By: rgs                                   on 2006/07/05  08:53:56
18189         Log: Make the distclean target remove lib/Hash correctly
18190      Branch: perl
18191            ! Makefile.SH
18192 ____________________________________________________________________________
18193 [ 28481] By: craigb                                on 2006/07/05  02:31:06
18194         Log: Subject: [PATCH] RE: [PATCH] threads 1.33
18195              From: "Jerry D. Hedden" <jdhedden@cpan.org>
18196              Message-id: <20060704171845.fb30e530d17747c2b054d625b8945d88.f0db2cab53.wbe@email.secureserver.net>
18197              Date: Tue, 04 Jul 2006 17:18:45 -0700
18198              
18199              exiting from threads works differently on VMS
18200      Branch: perl
18201            ! ext/threads/t/exit.t
18202 ____________________________________________________________________________
18203 [ 28480] By: craigb                                on 2006/07/04  21:27:42
18204         Log: fix signed/unsigned nit in reentr.c
18205      Branch: perl
18206            ! reentr.c
18207 ____________________________________________________________________________
18208 [ 28479] By: craigb                                on 2006/07/04  19:08:16
18209         Log: fix type mismatch warning caused by return statement lurking in DIE macro
18210      Branch: perl
18211            ! doio.c
18212 ____________________________________________________________________________
18213 [ 28478] By: nicholas                              on 2006/07/04  18:58:10
18214         Log: Subject: [PATCH] more warning-silencing in FieldHash
18215              From: Anno Siegel <anno4000@mailbox.tu-berlin.de>
18216              Message-Id: <CE8BC13E-8BE5-4743-803C-6DF0D1FB2010@mailbox.tu-berlin.de>
18217              Date: Tue, 4 Jul 2006 19:42:12 +0200
18218      Branch: perl
18219            ! ext/Hash/Util/FieldHash/FieldHash.xs
18220            ! ext/Hash/Util/FieldHash/t/02_function.t
18221            ! ext/Hash/Util/FieldHash/t/05_perlhook.t
18222 ____________________________________________________________________________
18223 [ 28477] By: rgs                                   on 2006/07/04  12:04:58
18224         Log: Subject: [PATCH] consting and localizing in universal.c
18225              From: andy@petdance.com (Andy Lester)
18226              Date: Mon, 3 Jul 2006 17:41:48 -0500
18227              Message-ID: <20060703224148.GA14449@petdance.com>
18228      Branch: perl
18229            ! embed.fnc proto.h universal.c
18230 ____________________________________________________________________________
18231 [ 28476] By: rgs                                   on 2006/07/04  09:42:12
18232         Log: Subject: [PATCH] toke.c consting and localizing
18233              From: andy@petdance.com (Andy Lester)
18234              Date: Mon, 3 Jul 2006 17:42:50 -0500
18235              Message-ID: <20060703224250.GA14481@petdance.com>
18236      Branch: perl
18237            ! toke.c
18238 ____________________________________________________________________________
18239 [ 28475] By: rgs                                   on 2006/07/04  09:37:10
18240         Log: Subject: [PATCH] threads 1.33
18241              From: "Jerry D. Hedden" <jdhedden@cpan.org>
18242              Date: Mon, 03 Jul 2006 09:01:53 -0700
18243              Message-ID: <20060703090153.fb30e530d17747c2b054d625b8945d88.b26e047e0f.wbe@email.secureserver.net>
18244      Branch: perl
18245            + ext/threads/t/exit.t
18246            ! MANIFEST ext/threads/Changes ext/threads/README
18247            ! ext/threads/t/blocks.t ext/threads/t/context.t
18248            ! ext/threads/t/end.t ext/threads/t/free.t ext/threads/t/free2.t
18249            ! ext/threads/t/join.t ext/threads/t/thread.t
18250            ! ext/threads/threads.pm ext/threads/threads.xs
18251 ____________________________________________________________________________
18252 [ 28474] By: mhx                                   on 2006/07/03  21:40:58
18253         Log: Upgrade to Devel::PPPort 3.08_07
18254      Branch: perl
18255            + ext/Devel/PPPort/PPPort.xs
18256            ! MANIFEST ext/Devel/PPPort/Changes ext/Devel/PPPort/Makefile.PL
18257            ! ext/Devel/PPPort/PPPort_pm.PL ext/Devel/PPPort/PPPort_xs.PL
18258            ! ext/Devel/PPPort/parts/inc/ppphbin
18259            ! ext/Devel/PPPort/parts/inc/ppphdoc
18260            ! ext/Devel/PPPort/parts/inc/ppphtest ext/Devel/PPPort/soak
18261            ! ext/Devel/PPPort/t/ppphtest.t
18262 ____________________________________________________________________________
18263 [ 28473] By: stevep                                on 2006/07/03  18:09:01
18264         Log: Allow stat() and -X file tests work on dirhandles.
18265      Branch: perl
18266            ! doio.c pod/perlfunc.pod pp_sys.c t/op/stat.t
18267 ____________________________________________________________________________
18268 [ 28472] By: rgs                                   on 2006/07/03  16:51:05
18269         Log: Subject: [PATCH] embed.pl enhancements
18270              From: andy@petdance.com (Andy Lester)
18271              Date: Sun, 2 Jul 2006 12:11:39 -0500
18272              Message-ID: <20060702171139.GA20266@petdance.com>
18273              
18274              Add experimental (and optional) splint support
18275      Branch: perl
18276            ! embed.pl perlapi.c
18277 ____________________________________________________________________________
18278 [ 28471] By: rgs                                   on 2006/07/03  16:40:19
18279         Log: Subject: [PATCH] Makefile splint support
18280              From: andy@petdance.com (Andy Lester)
18281              Date: Sun, 2 Jul 2006 12:19:08 -0500
18282              Message-ID: <20060702171908.GA20443@petdance.com>
18283      Branch: perl
18284            ! Makefile.SH
18285 ____________________________________________________________________________
18286 [ 28470] By: rgs                                   on 2006/07/03  16:36:14
18287         Log: Subject: [PATCH] DProf.xs patch
18288              From: andy@petdance.com (Andy Lester)
18289              Date: Sun, 2 Jul 2006 12:17:08 -0500
18290              Message-ID: <20060702171708.GA20392@petdance.com>
18291      Branch: perl
18292            ! ext/Devel/DProf/DProf.xs
18293 ____________________________________________________________________________
18294 [ 28469] By: rgs                                   on 2006/07/03  09:39:42
18295         Log: Subject: [PATCH] mg.c cleanups
18296              From: andy@petdance.com (Andy Lester)
18297              Date: Sun, 2 Jul 2006 12:33:36 -0500
18298              Message-ID: <20060702173336.GA20641@petdance.com>
18299      Branch: perl
18300            ! mg.c
18301 ____________________________________________________________________________
18302 [ 28468] By: rgs                                   on 2006/07/03  09:34:44
18303         Log: Subject: [PATCH] Clean up mathoms.c
18304              From: andy@petdance.com (Andy Lester)
18305              Date: Sun, 2 Jul 2006 12:24:45 -0500
18306              Message-ID: <20060702172445.GA20521@petdance.com>
18307      Branch: perl
18308            ! mathoms.c
18309 ____________________________________________________________________________
18310 [ 28467] By: steveh                                on 2006/07/03  08:23:03
18311         Log: Subject: Re: Win32API::File now in core
18312              From: demerphq <demerphq@gmail.com>
18313              Date: Sun, 2 Jul 2006 15:19:58 +0200
18314              Message-ID: <9b18b3110607020619s4c4480d8ra3e681aee69a8d7@mail.gmail.com>
18315              
18316              Sync blead with Win32API-File-0.1001
18317              (plus change to sync README too)
18318      Branch: perl
18319            ! win32/ext/Win32API/File/Changes
18320            ! win32/ext/Win32API/File/File.pm win32/ext/Win32API/File/README
18321 ____________________________________________________________________________
18322 [ 28466] By: davem                                 on 2006/07/02  22:47:24
18323         Log: silence a compiler warning
18324      Branch: perl
18325            ! regexec.c
18326 ____________________________________________________________________________
18327 [ 28465] By: davem                                 on 2006/07/02  19:30:49
18328         Log: remove some unnecessary uses of WITH_THR
18329      Branch: perl
18330            ! mg.c op.c
18331 ____________________________________________________________________________
18332 [ 28464] By: craigb                                on 2006/07/02  18:06:36
18333         Log: s/have a more/have more/ typo fix in perlfaq4
18334      Branch: perl
18335            ! pod/perlfaq4.pod
18336 ____________________________________________________________________________
18337 [ 28463] By: davem                                 on 2006/07/02  16:31:10
18338         Log: Subject:  [PATCH] Synchronize ExtUtils::Instal 1.41
18339              From:  demerphq <demerphq@gmail.com>
18340              Date:  Sun, 2 Jul 2006 16:23:21 +0200
18341              Message-Id:  <9b18b3110607020723h1765f051hda802b6682a99df0@mail.gmail.com>
18342              
18343              Sync ExtUtils::Install with CPAN (just trivially change version nos)
18344      Branch: perl
18345            ! lib/ExtUtils/Install.pm lib/ExtUtils/Installed.pm
18346            ! lib/ExtUtils/Packlist.pm
18347 ____________________________________________________________________________
18348 [ 28462] By: davem                                 on 2006/07/02  15:34:23
18349         Log: 
18350              From: demerphq <demerphq@gmail.com>
18351              Date: Sun, 2 Jul 2006 15:13:20 +0200
18352              Subject: Re: [PATCH]: fix: [perl #39583] Pattern Match fails for specific length string
18353              Message-ID: <9b18b3110607020613u1ab782dam2c425da61deb1876@mail.gmail.com>
18354              
18355              add test for patch #28417
18356      Branch: perl
18357            ! t/op/pat.t
18358 ____________________________________________________________________________
18359 [ 28461] By: rgs                                   on 2006/06/30  16:33:57
18360         Log: Must not forget that.
18361      Branch: perl
18362            ! pod/perltodo.pod
18363 ____________________________________________________________________________
18364 [ 28460] By: steveh                                on 2006/06/30  13:46:06
18365         Log: Add Win32API::File to the core
18366              
18367              For discussions, see the thread starting here:
18368              http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2006-06/msg00710.html
18369      Branch: perl
18370            + win32/ext/Win32API/File/Changes
18371            + win32/ext/Win32API/File/ExtUtils/Myconst2perl.pm
18372            + win32/ext/Win32API/File/File.pm
18373            + win32/ext/Win32API/File/File.xs
18374            + win32/ext/Win32API/File/Makefile.PL
18375            + win32/ext/Win32API/File/README
18376            + win32/ext/Win32API/File/buffers.h
18377            + win32/ext/Win32API/File/cFile.h
18378            + win32/ext/Win32API/File/cFile.pc
18379            + win32/ext/Win32API/File/const2perl.h
18380            + win32/ext/Win32API/File/ppport.h
18381            + win32/ext/Win32API/File/t/file.t
18382            + win32/ext/Win32API/File/t/tie.t
18383            + win32/ext/Win32API/File/typemap
18384            ! MANIFEST Porting/Maintainers.pl t/TEST t/harness
18385            ! win32/Makefile win32/config_sh.PL win32/makefile.mk
18386 ____________________________________________________________________________
18387 [ 28459] By: rgs                                   on 2006/06/30  13:28:46
18388         Log: Fix casting warnings related to snprintf/vsnprintf
18389      Branch: perl
18390            ! perl.h util.c
18391 ____________________________________________________________________________
18392 [ 28458] By: merijn                                on 2006/06/30  13:17:59
18393         Log: Solaris' sh doesn't like empty if's
18394      Branch: perl
18395            ! hints/solaris_2.sh
18396 ____________________________________________________________________________
18397 [ 28457] By: rgs                                   on 2006/06/30  13:09:40
18398         Log: PERL_UNUSED_CONTEXT is not enough to silence warnings when pTHXx
18399              is used.
18400      Branch: perl
18401            ! perl.c
18402 ____________________________________________________________________________
18403 [ 28456] By: rgs                                   on 2006/06/30  12:56:59
18404         Log: Fix a couple of compilation warnings
18405      Branch: perl
18406            ! regcomp.c toke.c
18407 ____________________________________________________________________________
18408 [ 28455] By: davem                                 on 2006/06/30  12:07:01
18409         Log: migrate CURLY/PLUS/STAR branch in regmatch() to new FSM-esque paradigm
18410      Branch: perl
18411            ! regexec.c regexp.h
18412 ____________________________________________________________________________
18413 [ 28454] By: rgs                                   on 2006/06/30  08:13:24
18414         Log: Small adjustment to the Plan
18415      Branch: perl
18416            ! pod/perltodo.pod
18417 ____________________________________________________________________________
18418 [ 28453] By: merijn                                on 2006/06/30  05:00:22
18419         Log: HASATTRIBUTE_UNUSED works for gcc-3.3, but not for g++-3.3
18420              Subject: Re: [PATCH] Re: [perl #39634] gcc 3.3 has problems with __attribute__((unused))
18421              From: Andrew Dougherty <doughera@lafayette.edu>
18422              Date: Thu, 29 Jun 2006 13:41:28 -0400 (EDT)
18423              Message-ID: <Pine.LNX.4.62.0606291327130.16718@fractal.phys.lafayette.edu>
18424      Branch: perl
18425            ! perl.h
18426 ____________________________________________________________________________
18427 [ 28452] By: rgs                                   on 2006/06/29  16:47:32
18428         Log: Another typo fix.
18429      Branch: perl
18430            ! pod/perlre.pod
18431 ____________________________________________________________________________
18432 [ 28451] By: rgs                                   on 2006/06/29  16:12:05
18433         Log: Typo fix.
18434      Branch: perl
18435            ! pod/perlre.pod
18436 ____________________________________________________________________________
18437 [ 28450] By: rgs                                   on 2006/06/29  15:53:43
18438         Log: Subject: [PATCH] Small precision about \Q \E inside m//x
18439              From: Sébastien Aperghis-Tramoni <maddingue@free.fr>
18440              Date: Thu, 29 Jun 2006 17:46:57 +0200
18441              Message-ID: <1151596017.44a3f5f105205@imp1-g19.free.fr>
18442      Branch: perl
18443            ! pod/perlre.pod
18444 ____________________________________________________________________________
18445 [ 28449] By: rgs                                   on 2006/06/29  14:53:38
18446         Log: Subject: [PATCH] Cleanup in Hash::Util::FieldHash
18447              From: Anno Siegel <anno4000@mailbox.tu-berlin.de>
18448              Date: Wed, 28 Jun 2006 19:20:14 +0200
18449              Message-Id: <B45A1CCD-ECCA-44EB-97A6-1DA9F5E4DE81@mailbox.tu-berlin.de>
18450      Branch: perl
18451            ! ext/Hash/Util/FieldHash/FieldHash.xs
18452            ! ext/Hash/Util/FieldHash/Makefile.PL
18453            ! ext/Hash/Util/FieldHash/t/01_load.t
18454 ____________________________________________________________________________
18455 [ 28448] By: craigb                                on 2006/06/29  14:21:35
18456         Log: Updated handling of signal names and signals for VMS
18457      Branch: perl
18458            ! configure.com vms/vms.c
18459 ____________________________________________________________________________
18460 [ 28447] By: rgs                                   on 2006/06/29  12:12:00
18461         Log: Some CPP macro sanitization by Sadahiro Tomoyuki
18462      Branch: perl
18463            ! utfebcdic.h
18464 ____________________________________________________________________________
18465 [ 28446] By: merijn                                on 2006/06/28  17:51:28
18466         Log: Solaris hints: gcc flags confuse Configure
18467              Subject: [PATCH] (Was Re: [perl #39636] Configure fails)
18468              From: Andy Dougherty <doughera@lafayette.edu>
18469              Date: Wed, 28 Jun 2006 13:37:54 -0400 (EDT)
18470              Message-ID: <Pine.LNX.4.62.0606281331350.3867@fractal.phys.lafayette.edu>
18471      Branch: perl
18472            ! hints/solaris_2.sh
18473 ____________________________________________________________________________
18474 [ 28445] By: rgs                                   on 2006/06/28  14:37:03
18475         Log: Subject: [PATCH] Update for IO::Uncompress::Base
18476              From: "Paul Marquess" <paul.marquess@ntlworld.com>
18477              Date: Wed, 28 Jun 2006 14:22:46 +0100
18478              Message-ID: <001701c69ab5$f4d5d3d0$2405140a@myopwv.com>
18479      Branch: perl
18480            ! ext/Compress/IO/Base/lib/IO/Uncompress/AnyUncompress.pm
18481            ! ext/Compress/IO/Base/lib/IO/Uncompress/Base.pm
18482            ! ext/Compress/IO/Zlib/lib/IO/Uncompress/AnyInflate.pm
18483            ! t/lib/compress/CompTestUtils.pm t/lib/compress/any.pl
18484            ! t/lib/compress/anyunc.pl t/lib/compress/multi.pl
18485            ! t/lib/compress/oneshot.pl
18486 ____________________________________________________________________________
18487 [ 28444] By: rgs                                   on 2006/06/28  08:42:09
18488         Log: Subject: [perl #39639] perldoc -f waitpid has wrong code example 
18489              From: Alexander_Gernler@genua.de (via RT) <perlbug-followup@perl.org>
18490              Date: Tue, 27 Jun 2006 07:23:59 -0700
18491              Message-ID: <rt-3.0.11-39639-135396.19.0765391798804@perl.org>
18492      Branch: perl
18493            ! pod/perlfunc.pod
18494 ____________________________________________________________________________
18495 [ 28435] By: rgs                                   on 2006/06/27  14:01:30
18496         Log: Nits in the perlpragma manpage
18497      Branch: perl
18498            ! pod/perlpragma.pod
18499 ____________________________________________________________________________
18500 [ 28434] By: rgs                                   on 2006/06/27  08:48:45
18501         Log: Subject: [PATCH] cflags.SH: scan the gcc warning flags only once, during .SH expansion
18502              From: jhi@cc.hut.fi (Jarkko Hietaniemi)
18503              Date: Mon, 26 Jun 2006 22:12:37 +0300 (EEST)
18504              Message-Id: <20060626191237.8A0936CF04@seth.hut.fi>
18505      Branch: perl
18506            ! cflags.SH
18507 ____________________________________________________________________________
18508 [ 28433] By: rgs                                   on 2006/06/26  17:17:57
18509         Log: Adjust test preamble for Hash::Util tests too.
18510      Branch: perl
18511            ! ext/Hash/Util/t/Util.t
18512 ____________________________________________________________________________
18513 [ 28432] By: rgs                                   on 2006/06/26  16:50:58
18514         Log: Adjust test preambles for Hash::Util::FieldHash tests to change
18515              the @INC path only when testing inside the core
18516      Branch: perl
18517            ! ext/Hash/Util/FieldHash/t/01_load.t
18518            ! ext/Hash/Util/FieldHash/t/02_function.t
18519            ! ext/Hash/Util/FieldHash/t/03_class.t
18520            ! ext/Hash/Util/FieldHash/t/04_thread.t
18521            ! ext/Hash/Util/FieldHash/t/05_perlhook.t
18522            ! ext/Hash/Util/FieldHash/t/10_hash.t
18523            ! ext/Hash/Util/FieldHash/t/11_hashassign.t
18524            ! ext/Hash/Util/FieldHash/t/12_hashwarn.t
18525 ____________________________________________________________________________
18526 [ 28431] By: rgs                                   on 2006/06/26  16:32:16
18527         Log: Subject: Re: [PATCH] Hash::Util::FieldHash
18528              From: Anno Siegel <anno4000@mailbox.tu-berlin.de>
18529              Date: Mon, 26 Jun 2006 18:05:53 +0200
18530              Message-Id: <133195AB-599D-49EC-8CFE-D67299D947EB@mailbox.tu-berlin.de>
18531      Branch: perl
18532            ! ext/Hash/Util/FieldHash/Changes
18533            ! ext/Hash/Util/FieldHash/FieldHash.xs
18534            ! ext/Hash/Util/FieldHash/Makefile.PL
18535 ____________________________________________________________________________
18536 [ 28430] By: rgs                                   on 2006/06/26  16:29:06
18537         Log: Remove notes about removed 5005-threads from perlguts.
18538      Branch: perl
18539            ! pod/perlguts.pod
18540 ____________________________________________________________________________
18541 [ 28429] By: rgs                                   on 2006/06/26  12:31:19
18542         Log: Subject: [patch@28427] vms.c - null termination of string missing.
18543              From: "John E. Malmberg" <wb8tyw@qsl.net>
18544              Date: Mon, 26 Jun 2006 08:24:57 -0400
18545              Message-ID: <449FD219.5060900@qsl.net>
18546      Branch: perl
18547            ! vms/vms.c
18548 ____________________________________________________________________________
18549 [ 28428] By: rgs                                   on 2006/06/26  08:55:56
18550         Log: More perlreguts nits by Dominic Dunlop,
18551              plus fix a broken internal POD link
18552      Branch: perl
18553            ! pod/perlreguts.pod
18554 ____________________________________________________________________________
18555 [ 28427] By: rgs                                   on 2006/06/25  22:23:46
18556         Log: Nits about lock() in perlthrtut by Daniel Frederick Crisman,
18557              plus other nits by rgs
18558      Branch: perl
18559            ! pod/perlthrtut.pod
18560 ____________________________________________________________________________
18561 [ 28426] By: rgs                                   on 2006/06/25  21:57:30
18562         Log: Compilation fixes for VMS by John E. Malmberg
18563      Branch: perl
18564            ! ext/Hash/Util/FieldHash/FieldHash.xs
18565 ____________________________________________________________________________
18566 [ 28425] By: rgs                                   on 2006/06/25  21:12:06
18567         Log: Nits to perlreguts.pod by Dominic Dunlop
18568      Branch: perl
18569            ! pod/perlreguts.pod
18570 ____________________________________________________________________________
18571 [ 28424] By: mhx                                   on 2006/06/25  08:13:33
18572         Log: Upgrade to Devel::PPPort 3.08_06
18573      Branch: perl
18574            ! ext/Devel/PPPort/Changes ext/Devel/PPPort/Makefile.PL
18575            ! ext/Devel/PPPort/PPPort_pm.PL ext/Devel/PPPort/mktests.PL
18576            ! ext/Devel/PPPort/ppport_h.PL ext/Devel/PPPort/soak
18577            ! ext/Devel/PPPort/t/MY_CXT.t ext/Devel/PPPort/t/SvPV.t
18578            ! ext/Devel/PPPort/t/SvREFCNT.t ext/Devel/PPPort/t/Sv_set.t
18579            ! ext/Devel/PPPort/t/call.t ext/Devel/PPPort/t/cop.t
18580            ! ext/Devel/PPPort/t/exception.t ext/Devel/PPPort/t/grok.t
18581            ! ext/Devel/PPPort/t/limits.t ext/Devel/PPPort/t/mPUSH.t
18582            ! ext/Devel/PPPort/t/magic.t ext/Devel/PPPort/t/memory.t
18583            ! ext/Devel/PPPort/t/misc.t ext/Devel/PPPort/t/newCONSTSUB.t
18584            ! ext/Devel/PPPort/t/newRV.t ext/Devel/PPPort/t/podtest.t
18585            ! ext/Devel/PPPort/t/ppphtest.t ext/Devel/PPPort/t/pvs.t
18586            ! ext/Devel/PPPort/t/snprintf.t ext/Devel/PPPort/t/sv_xpvf.t
18587            ! ext/Devel/PPPort/t/threads.t ext/Devel/PPPort/t/uv.t
18588            ! ext/Devel/PPPort/t/variables.t ext/Devel/PPPort/t/warn.t
18589 ____________________________________________________________________________
18590 [ 28423] By: stevep                                on 2006/06/25  01:45:51
18591         Log: Re: [PATCH] Hash::Util::FieldHash
18592              From: demerphq <demerphq@gmail.com>
18593              Date: Sat, 24 Jun 2006 13:19:35 +0200
18594              Message-ID: <9b18b3110606240419p1b5a2072t3867306925a3ce46@mail.gmail.com>
18595      Branch: perl
18596            ! ext/Hash/Util/FieldHash/Makefile.PL
18597 ____________________________________________________________________________
18598 [ 28422] By: davem                                 on 2006/06/24  23:31:33
18599         Log: quieten warning by avoiding a comment-within-a-comment
18600      Branch: perl
18601            ! regcomp.c
18602 ____________________________________________________________________________
18603 [ 28421] By: davem                                 on 2006/06/23  22:26:02
18604         Log: migrate TRIE branch in regmatch() to new FSM-esque paradigm
18605      Branch: perl
18606            ! regexec.c regexp.h
18607 ____________________________________________________________________________
18608 [ 28420] By: mhx                                   on 2006/06/23  19:06:43
18609         Log: Upgrade to Devel::PPPort 3.08_05
18610      Branch: perl
18611            - ext/Devel/PPPort/PPPort.pm ext/Devel/PPPort/PPPort.xs
18612            ! MANIFEST ext/Devel/PPPort/Changes ext/Devel/PPPort/Makefile.PL
18613            ! ext/Devel/PPPort/PPPort_pm.PL ext/Devel/PPPort/soak
18614 ____________________________________________________________________________
18615 [ 28419] By: rgs                                   on 2006/06/23  16:28:03
18616         Log: Subject: Re: [PATCH] Hash::Util::FieldHash
18617              From: Anno Siegel <anno4000@mailbox.tu-berlin.de>
18618              Date: Wed, 21 Jun 2006 22:39:51 +0200
18619              Message-Id: <974A5B4B-7614-4F3F-BA7C-828960D82C55@mailbox.tu-berlin.de>
18620      Branch: perl
18621            + ext/Hash/Util/FieldHash/Changes
18622            + ext/Hash/Util/FieldHash/FieldHash.xs
18623            + ext/Hash/Util/FieldHash/Makefile.PL
18624            + ext/Hash/Util/FieldHash/lib/Hash/Util/FieldHash.pm
18625            + ext/Hash/Util/FieldHash/t/01_load.t
18626            + ext/Hash/Util/FieldHash/t/02_function.t
18627            + ext/Hash/Util/FieldHash/t/03_class.t
18628            + ext/Hash/Util/FieldHash/t/04_thread.t
18629            + ext/Hash/Util/FieldHash/t/05_perlhook.t
18630            + ext/Hash/Util/FieldHash/t/10_hash.t
18631            + ext/Hash/Util/FieldHash/t/11_hashassign.t
18632            + ext/Hash/Util/FieldHash/t/12_hashwarn.t
18633            ! MANIFEST embed.fnc embed.h ext/Hash/Util/Changes
18634            ! ext/Hash/Util/Makefile.PL ext/Hash/Util/lib/Hash/Util.pm hv.c
18635            ! mg.c pod/perlapi.pod pod/perlguts.pod proto.h sv.c
18636 ____________________________________________________________________________
18637 [ 28418] By: rgs                                   on 2006/06/23  14:00:59
18638         Log: Subject: Re: [PATCH] perlhack.pod
18639              From: "Dr.Ruud" <rvtol+news@isolution.nl>
18640              Date: Thu, 22 Jun 2006 23:42:53 +0200
18641              Message-ID: <20060622215407.9605.qmail@lists.develooper.com>
18642      Branch: perl
18643            ! pod/perlhack.pod
18644 ____________________________________________________________________________
18645 [ 28417] By: rgs                                   on 2006/06/23  10:50:29
18646         Log: Subject: [PATCH]: fix: [perl #39583] Pattern Match fails for specific length string
18647              From: demerphq <demerphq@gmail.com>
18648              Date: Fri, 23 Jun 2006 11:54:19 +0200
18649              Message-ID: <9b18b3110606230254m6afd620bjde6322aefda6f199@mail.gmail.com>
18650      Branch: perl
18651            ! regexec.c
18652 ____________________________________________________________________________
18653 [ 28416] By: rgs                                   on 2006/06/23  09:41:36
18654         Log: perltodo additions by Vadim Konovalov
18655      Branch: perl
18656            ! pod/perltodo.pod
18657 ____________________________________________________________________________
18658 [ 28415] By: stevep                                on 2006/06/22  11:34:20
18659         Log: Subject: [PATCH] IO::Compress::Base
18660              From: "Paul Marquess" <paul.marquess@ntlworld.com>
18661              Date: Thu, 22 Jun 2006 11:40:10 +0100
18662              Message-ID: <01f701c695e8$3d035e20$2405140a@myopwv.com>
18663      Branch: perl
18664            ! ext/Compress/IO/Base/lib/IO/Compress/Base.pm
18665            ! t/lib/compress/merge.pl
18666 ____________________________________________________________________________
18667 [ 28414] By: steveh                                on 2006/06/22  08:05:14
18668         Log: Subject: Re: Smoke [5.9.4] 28410 FAIL(Fm) MSWin32 WinXP/.Net SP2 (x86/2 cpu)
18669              From: demerphq <demerphq@gmail.com>
18670              Date: Wed, 21 Jun 2006 22:51:03 +0200
18671              Message-ID: <9b18b3110606211351v5b052103i4d727ad464a162e@mail.gmail.com>
18672      Branch: perl
18673            ! regcomp.c
18674 ____________________________________________________________________________
18675 [ 28413] By: rgs                                   on 2006/06/21  08:15:38
18676         Log: Subject: [PATCH] <toke.c> isALNUM(*s) && *s != '_'
18677              From: "Dr.Ruud" <rvtol+news@isolution.nl>
18678              Date: Wed, 21 Jun 2006 01:58:19 +0200
18679              Message-ID: <20060621000237.24398.qmail@lists.develooper.com>
18680      Branch: perl
18681            ! toke.c
18682 ____________________________________________________________________________
18683 [ 28412] By: steveh                                on 2006/06/21  08:07:21
18684         Log: Fix code before declaration error introduced by #28405
18685      Branch: perl
18686            ! regcomp.c
18687 ____________________________________________________________________________
18688 [ 28411] By: rgs                                   on 2006/06/21  07:44:24
18689         Log: Subject: [PATCH] Re: [PATCH] Re: [perl #39530] printf: bad formatting of hexadecimal conversion of binary string using vector flag
18690              From: Dominic Dunlop <shouldbedomo@mac.com>
18691              Date: Tue, 20 Jun 2006 21:49:07 +0200
18692              Message-Id: <C48A3CD4-DDA5-43AD-8DDC-20375A187EFD@mac.com>
18693      Branch: perl
18694            ! t/op/sprintf.t
18695 ____________________________________________________________________________
18696 [ 28410] By: rgs                                   on 2006/06/20  22:01:16
18697         Log: Upgrade to Sys::Syslog 0.16
18698      Branch: perl
18699            ! ext/Sys/Syslog/Changes ext/Sys/Syslog/Syslog.pm
18700            ! ext/Sys/Syslog/t/syslog.t
18701 ____________________________________________________________________________
18702 [ 28409] By: rgs                                   on 2006/06/20  17:22:15
18703         Log: Change 28404 broke the construct s/foo/<<BAR/e. So, try to be more
18704              clever. If the right hand side of s///e contains a #, then maybe
18705              it's a comment, so add a \n after it. Obviously, this is fast, but
18706              won't cover all possible cases.
18707      Branch: perl
18708            ! toke.c
18709 ____________________________________________________________________________
18710 [ 28408] By: rgs                                   on 2006/06/20  14:18:28
18711         Log: Subject: [PATCH] Re: [perl #39530] printf: bad formatting of hexadecimal conversion of binary string using vector flag
18712              From: Dominic Dunlop <shouldbedomo@mac.com>
18713              Date: Tue, 20 Jun 2006 16:02:38 +0200
18714              Message-Id: <D223CF35-9AC3-4351-A0C9-F4E224AAC19E@mac.com>
18715      Branch: perl
18716            ! sv.c t/op/sprintf.t
18717 ____________________________________________________________________________
18718 [ 28407] By: rgs                                   on 2006/06/20  12:51:31
18719         Log: Subject: [PATCH] IO::Compress::* 2.000_13
18720              From: "Paul Marquess" <paul.marquess@ntlworld.com>
18721              Date: Tue, 20 Jun 2006 13:40:47 +0100
18722              Message-ID: <00b101c69466$c18f0af0$2405140a@myopwv.com>
18723      Branch: perl
18724            ! ext/Compress/IO/Base/Changes ext/Compress/IO/Base/README
18725            ! ext/Compress/IO/Base/lib/IO/Compress/Base.pm
18726            ! ext/Compress/IO/Base/lib/IO/Compress/Base/Common.pm
18727            ! ext/Compress/IO/Base/lib/IO/Uncompress/AnyUncompress.pm
18728            ! ext/Compress/IO/Base/lib/IO/Uncompress/Base.pm
18729            ! ext/Compress/IO/Base/t/01misc.t ext/Compress/IO/Zlib/Changes
18730            ! ext/Compress/IO/Zlib/README
18731            ! ext/Compress/IO/Zlib/lib/IO/Compress/Adapter/Deflate.pm
18732            ! ext/Compress/IO/Zlib/lib/IO/Compress/Adapter/Identity.pm
18733            ! ext/Compress/IO/Zlib/lib/IO/Compress/Deflate.pm
18734            ! ext/Compress/IO/Zlib/lib/IO/Compress/Gzip.pm
18735            ! ext/Compress/IO/Zlib/lib/IO/Compress/Gzip/Constants.pm
18736            ! ext/Compress/IO/Zlib/lib/IO/Compress/RawDeflate.pm
18737            ! ext/Compress/IO/Zlib/lib/IO/Compress/Zip.pm
18738            ! ext/Compress/IO/Zlib/lib/IO/Compress/Zip/Constants.pm
18739            ! ext/Compress/IO/Zlib/lib/IO/Compress/Zlib/Constants.pm
18740            ! ext/Compress/IO/Zlib/lib/IO/Compress/Zlib/Extra.pm
18741            ! ext/Compress/IO/Zlib/lib/IO/Uncompress/Adapter/Identity.pm
18742            ! ext/Compress/IO/Zlib/lib/IO/Uncompress/Adapter/Inflate.pm
18743            ! ext/Compress/IO/Zlib/lib/IO/Uncompress/AnyInflate.pm
18744            ! ext/Compress/IO/Zlib/lib/IO/Uncompress/Gunzip.pm
18745            ! ext/Compress/IO/Zlib/lib/IO/Uncompress/Inflate.pm
18746            ! ext/Compress/IO/Zlib/lib/IO/Uncompress/RawInflate.pm
18747            ! ext/Compress/IO/Zlib/lib/IO/Uncompress/Unzip.pm
18748            ! ext/Compress/IO/Zlib/t/105oneshot-zip-only.t
18749            ! ext/Compress/Raw/Zlib/README
18750            ! ext/Compress/Raw/Zlib/lib/Compress/Raw/Zlib.pm
18751            ! ext/Compress/Zlib/Changes ext/Compress/Zlib/README
18752            ! ext/Compress/Zlib/lib/Compress/Zlib.pm t/lib/compress/multi.pl
18753            ! t/lib/compress/oneshot.pl
18754 ____________________________________________________________________________
18755 [ 28406] By: rgs                                   on 2006/06/20  12:44:27
18756         Log: Upgrade to Unicode::Normalize 1.01
18757      Branch: perl
18758            + ext/Unicode/Normalize/t/tie.t
18759            ! MANIFEST ext/Unicode/Normalize/Changes
18760            ! ext/Unicode/Normalize/Normalize.pm
18761            ! ext/Unicode/Normalize/Normalize.xs
18762            ! ext/Unicode/Normalize/README ext/Unicode/Normalize/t/func.t
18763            ! ext/Unicode/Normalize/t/illegal.t
18764 ____________________________________________________________________________
18765 [ 28405] By: stevep                                on 2006/06/20  12:14:27
18766         Log: Clean up a few warnings in regcomp.c under -Dgccansipedantic.
18767      Branch: perl
18768            ! regcomp.c
18769 ____________________________________________________________________________
18770 [ 28404] By: rgs                                   on 2006/06/20  08:52:12
18771         Log: Subject: [perl #39365] Bug in toke.c (eval in subst) 
18772              From: bcarter@gumdrop.flyinganvil.org (via RT) <perlbug-followup@perl.org>
18773              Date: Fri, 09 Jun 2006 02:08:44 -0700
18774              Message-ID: <rt-3.0.11-39365-134716.18.9775670722527@perl.org>
18775              
18776              plus a regression test.
18777      Branch: perl
18778            ! t/comp/parser.t toke.c
18779 ____________________________________________________________________________
18780 [ 28403] By: rgs                                   on 2006/06/20  08:16:58
18781         Log: Subject: [PATCH lib/UNIVERSAL.pm] Add Documentation for DOES()
18782              From: chromatic <chromatic@wgz.org>
18783              Date: Sat, 17 Jun 2006 17:24:03 -0700
18784              Message-Id: <200606171724.04302.chromatic@wgz.org>
18785      Branch: perl
18786            ! lib/UNIVERSAL.pm
18787 ____________________________________________________________________________
18788 [ 28402] By: rgs                                   on 2006/06/19  11:27:03
18789         Log: Subject: RE: [PATCH] cflags.SH: rework the gcc warnings selection
18790              From: "Green, Paul" <Paul.Green@stratus.com>
18791              Date: Sun, 18 Jun 2006 19:41:50 -0400
18792              Message-ID: <F5F42E77A43DD944B6D664B00A5401CB02026106@EXNA.corp.stratus.com>
18793      Branch: perl
18794            ! cflags.SH
18795 ____________________________________________________________________________
18796 [ 28401] By: davem                                 on 2006/06/18  09:58:08
18797         Log: Subject:  [PATCH] Re: blead trie problems in tru64 with -DDEBUGGING
18798              From:  Jarkko Hietaniemi <jhi@iki.fi>
18799              Date:  Sun, 18 Jun 2006 01:04:46 +0300
18800              Message-Id:  <44947C7E.7090100@iki.fi>
18801      Branch: perl
18802            ! regexec.c
18803 ____________________________________________________________________________
18804 [ 28400] By: davem                                 on 2006/06/17  20:01:38
18805         Log: Subject:  [PATCH] Comply with the 0x80th commandment
18806              From:  demerphq <demerphq@gmail.com>
18807              Date:  Sat, 17 Jun 2006 16:44:17 +0200
18808              Message-Id:  <9b18b3110606170744x60f4074bg11bf0f4c87eeb6c1@mail.gmail.com>
18809              
18810              add some (U8) casts
18811      Branch: perl
18812            ! regcomp.h
18813 ____________________________________________________________________________
18814 [ 28399] By: davem                                 on 2006/06/17  16:39:53
18815         Log: dont warn at exit of detatched threads still running
18816      Branch: perl
18817            ! ext/threads/t/blocks.t ext/threads/threads.xs
18818 ____________________________________________________________________________
18819 [ 28398] By: davem                                 on 2006/06/16  23:25:51
18820         Log: start turning regmatch() main loop into a FSM
18821              also make BRANCH use the state stack rather than its own unwind struct
18822      Branch: perl
18823            ! regcomp.pl regexec.c regexp.h regnodes.h t/op/re_tests
18824 ____________________________________________________________________________
18825 [ 28397] By: rgs                                   on 2006/06/15  10:01:14
18826         Log: Subject: [PATCH] cflags.SH: rework the gcc warnings selection
18827              From: Jarkko Hietaniemi <jhi@iki.fi>
18828              Date: Thu, 15 Jun 2006 09:12:53 +0300
18829              Message-ID: <4490FA65.70006@iki.fi>
18830      Branch: perl
18831            ! cflags.SH
18832 ____________________________________________________________________________
18833 [ 28396] By: craigb                                on 2006/06/15  03:20:48
18834         Log: only use NAML$M_OPEN_SPECIAL where it exists
18835      Branch: perl
18836            ! vms/vms.c
18837 ____________________________________________________________________________
18838 [ 28395] By: craigb                                on 2006/06/15  03:16:34
18839         Log: signedness nit in Unicode::Normalize::decompose
18840      Branch: perl
18841            ! ext/Unicode/Normalize/Normalize.xs
18842 ____________________________________________________________________________
18843 [ 28394] By: rgs                                   on 2006/06/14  14:58:14
18844         Log: Subject: Re: [PATCH] fix re debug segvs in global destruction, and a tweak to Benchmark to prevent infinite loops. (Re: ext/re/t/regop.pl SEGV)
18845              From: demerphq <demerphq@gmail.com>
18846              Date: Wed, 14 Jun 2006 14:33:24 +0200
18847              Message-ID: <9b18b3110606140533k583fdd3bh6c4b292e7ff4cf13@mail.gmail.com>
18848      Branch: perl
18849            ! regcomp.c regcomp.h
18850 ____________________________________________________________________________
18851 [ 28393] By: rgs                                   on 2006/06/14  12:11:13
18852         Log: Subject: [PATCH] fix re debug segvs in global destruction, and a tweak to Benchmark to prevent infinite loops. (Re: ext/re/t/regop.pl SEGV)
18853              From: demerphq <demerphq@gmail.com>
18854              Date: Wed, 14 Jun 2006 13:54:04 +0200
18855              Message-ID: <9b18b3110606140454p19f4241exae6528f1c7bb32d7@mail.gmail.com>
18856      Branch: perl
18857            ! ext/re/t/regop.pl lib/Benchmark.pm regcomp.c regcomp.h
18858            ! regexec.c
18859 ____________________________________________________________________________
18860 [ 28392] By: rgs                                   on 2006/06/13  09:23:23
18861         Log: I thought I had fixed the spelling of DOES() in universal.t, but
18862              apparently no.
18863      Branch: perl
18864            ! t/op/universal.t
18865 ____________________________________________________________________________
18866 [ 28391] By: rgs                                   on 2006/06/13  08:32:04
18867         Log: Subject: Guard clause should happen first, otherwise its not a guard clause.
18868              From: demerphq <demerphq@gmail.com>
18869              Date: Tue, 13 Jun 2006 09:39:42 +0200
18870              Message-ID: <9b18b3110606130039v1c6a3fe6s448e92ab2a05888a@mail.gmail.com>
18871      Branch: perl
18872            ! regcomp.c regexec.c
18873 ____________________________________________________________________________
18874 [ 28390] By: stevep                                on 2006/06/13  01:15:21
18875         Log: Upgrade to Digest-SHA-5.41
18876      Branch: perl
18877            ! ext/Digest/SHA/Changes ext/Digest/SHA/README
18878            ! ext/Digest/SHA/SHA.pm ext/Digest/SHA/bin/shasum
18879            ! ext/Digest/SHA/src/hmac.c ext/Digest/SHA/src/hmac.h
18880            ! ext/Digest/SHA/src/sha.c ext/Digest/SHA/src/sha.h
18881            ! ext/Digest/SHA/t/2-nist-sha-oo.t
18882 ____________________________________________________________________________
18883 [ 28389] By: stevep                                on 2006/06/13  01:00:02
18884         Log: Upgrade to Unicode-Normalize-1.00
18885      Branch: perl
18886            ! ext/Unicode/Normalize/Changes
18887            ! ext/Unicode/Normalize/Normalize.pm
18888            ! ext/Unicode/Normalize/Normalize.xs
18889            ! ext/Unicode/Normalize/README ext/Unicode/Normalize/mkheader
18890            ! ext/Unicode/Normalize/t/fcdc.t ext/Unicode/Normalize/t/func.t
18891            ! ext/Unicode/Normalize/t/norm.t ext/Unicode/Normalize/t/null.t
18892            ! ext/Unicode/Normalize/t/test.t
18893 ____________________________________________________________________________
18894 [ 28388] By: rgs                                   on 2006/06/12  17:21:22
18895         Log: Subject: Re: Segv from new regex code when under threads.
18896              From: demerphq <demerphq@gmail.com>
18897              Date: Mon, 12 Jun 2006 19:17:30 +0200
18898              Message-ID: <9b18b3110606121017t3af81484t4fb13015fac74592@mail.gmail.com>
18899      Branch: perl
18900            ! regcomp.c win32/vmem.h
18901 ____________________________________________________________________________
18902 [ 28387] By: rgs                                   on 2006/06/12  16:41:44
18903         Log: Add the new method UNIVERSAL::DOES() and the API function sv_does()
18904              
18905              Subject: Re: [PROPOSED PATCH: universal.c, t/op/universal.t] Add does()
18906              From: chromatic <chromatic@wgz.org>
18907              Date: Tue, 30 May 2006 17:41:08 -0700
18908              Message-Id: <200605301741.08363.chromatic@wgz.org>
18909      Branch: perl
18910            ! embed.fnc embed.h global.sym pod/perlapi.pod proto.h
18911            ! t/op/universal.t universal.c
18912 ____________________________________________________________________________
18913 [ 28386] By: rgs                                   on 2006/06/12  14:35:22
18914         Log: Adapt the new Test::Harness test to the core
18915      Branch: perl
18916            ! lib/Test/Harness/t/failure.t
18917 ____________________________________________________________________________
18918 [ 28385] By: rgs                                   on 2006/06/12  14:12:18
18919         Log: Subject: [PATCH] Static cleanup in pp_sort.c
18920              From: andy@petdance.com (Andy Lester)
18921              Date: Mon, 12 Jun 2006 08:59:34 -0500
18922              Message-ID: <20060612135934.GA2202@petdance.com>
18923      Branch: perl
18924            ! embed.fnc embed.h pp_sort.c proto.h
18925 ____________________________________________________________________________
18926 [ 28384] By: rgs                                   on 2006/06/12  14:08:09
18927         Log: Upgrade to Test::Harness 2.62
18928      Branch: perl
18929            + lib/Test/Harness/t/failure.t
18930            ! MANIFEST lib/Test/Harness.pm lib/Test/Harness/Changes
18931 ____________________________________________________________________________
18932 [ 28383] By: rgs                                   on 2006/06/12  13:01:43
18933         Log: Subject: Fw: CPAN Upload: S/SA/SAPER/Sys-Syslog-0.15.tar.gz
18934              From: Sébastien Aperghis-Tramoni <maddingue@free.fr>
18935              Date: Sun, 11 Jun 2006 02:30:54 +0200
18936              Message-ID: <1149985854.448b643e27a1f@imp5-g19.free.fr>
18937      Branch: perl
18938            + ext/Sys/Syslog/ppport.h
18939            ! MANIFEST ext/Sys/Syslog/Changes ext/Sys/Syslog/README
18940            ! ext/Sys/Syslog/Syslog.pm ext/Sys/Syslog/Syslog.xs
18941            ! ext/Sys/Syslog/t/syslog.t
18942 ____________________________________________________________________________
18943 [ 28382] By: rgs                                   on 2006/06/12  12:08:54
18944         Log: Subject: Re: [PATCH DOC] Three minor fixes related to perlop
18945              From: Daniel Frederick Crisman <daniel@crisman.org>
18946              Date: Sat, 10 Jun 2006 10:49:29 -0400
18947              Message-ID: <20060610144929.GA10201@fury.crisman.org>
18948      Branch: perl
18949            ! pod/perldiag.pod pod/perlop.pod
18950 ____________________________________________________________________________
18951 [ 28381] By: rgs                                   on 2006/06/12  10:07:18
18952         Log: Subject: [PATCH] Proper use of enums
18953              From: andy@petdance.com (Andy Lester)
18954              Date: Sun, 11 Jun 2006 22:44:34 -0500
18955              Message-ID: <20060612034434.GA21588@petdance.com>
18956      Branch: perl
18957            ! embed.fnc gv.c op.c perlio.c pod/perlapi.pod pp.c proto.h sv.c
18958            ! sv.h
18959 ____________________________________________________________________________
18960 [ 28380] By: rgs                                   on 2006/06/11  23:08:32
18961         Log: Subject: Re: [PATCH] regexec/regcomp.c cleanups
18962              From: demerphq <demerphq@gmail.com>
18963              Date: Sun, 11 Jun 2006 23:01:14 +0200
18964              Message-ID: <9b18b3110606111401o143b2f57rd17bf117979853e7@mail.gmail.com>
18965      Branch: perl
18966            ! ext/re/re.pm pod/perlreguts.pod regcomp.c regcomp.h regexec.c
18967            ! regexp.h sv.c
18968 ____________________________________________________________________________
18969 [ 28379] By: rgs                                   on 2006/06/11  22:00:03
18970         Log: Subject: Re: [PATCH] Better version of the Aho-Corasick patch and lots of benchmarks.
18971              From: demerphq <demerphq@gmail.com>
18972              Date: Fri, 9 Jun 2006 19:48:11 +0200
18973              Message-ID: <9b18b3110606091048n4d1f3b17vc608943044d4532a@mail.gmail.com>
18974      Branch: perl
18975            ! ext/re/re.pm regcomp.c regexec.c regexp.h
18976 ____________________________________________________________________________
18977 [ 28378] By: nicholas                              on 2006/06/11  20:52:36
18978         Log: A little more work needed to get ext/re/t/re.t test 14 (no segv) passing
18979              with PERL_DESTRUCT_LEVEL=2.
18980      Branch: perl
18981            ! gv.c regcomp.h
18982 ____________________________________________________________________________
18983 [ 28377] By: rgs                                   on 2006/06/09  16:40:52
18984         Log: Mark the 1st argument to S_exec_failed as non null
18985      Branch: perl
18986            ! embed.fnc proto.h
18987 ____________________________________________________________________________
18988 [ 28376] By: rgs                                   on 2006/06/09  16:15:08
18989         Log: Subject: [PATCH] Add error checks after execing PL_cshname or PL_sh_path
18990              From: "Jan Dubois" <jand@activestate.com>
18991              Date: Wed, 7 Jun 2006 15:53:02 -0700
18992              Message-ID: <002301c68a85$21aa7320$d045a8c0@candy>
18993      Branch: perl
18994            ! doio.c embed.fnc embed.h proto.h
18995 ____________________________________________________________________________
18996 [ 28375] By: rgs                                   on 2006/06/09  16:03:03
18997         Log: Subject: [patch] Fwd: CPAN Upload: J/JP/JPEACOCK/version-0.64.tar.gz
18998              From: John Peacock <jpeacock@rowman.com>
18999              Date: Thu, 08 Jun 2006 21:14:04 -0400
19000              Message-ID: <4488CB5C.4070702@rowman.com>
19001      Branch: perl
19002            ! lib/version.pm lib/version.pod lib/version.t universal.c
19003            ! util.c
19004 ____________________________________________________________________________
19005 [ 28374] By: rgs                                   on 2006/06/09  14:39:31
19006         Log: Subject: [PATCH] sv_dup
19007              From: andy@petdance.com (Andy Lester)
19008              Date: Fri, 9 Jun 2006 00:39:25 -0500
19009              Message-ID: <20060609053925.GA30698@petdance.com>
19010      Branch: perl
19011            ! sv.c
19012 ____________________________________________________________________________
19013 [ 28373] By: rgs                                   on 2006/06/09  14:06:24
19014         Log: Subject: Re: [PATCH] Better version of the Aho-Corasick patch and lots of benchmarks.
19015              From: demerphq <demerphq@gmail.com>
19016              Date: Fri, 9 Jun 2006 00:56:37 +0200
19017              Message-ID: <9b18b3110606081556t779de698r82f361d82a05fbc8@mail.gmail.com>
19018              
19019              (with tweaks)
19020      Branch: perl
19021            ! embed.fnc embed.h ext/re/t/re.t ext/re/t/regop.pl
19022            ! ext/re/t/regop.t proto.h regcomp.c regcomp.h regexec.c sv.c
19023 ____________________________________________________________________________
19024 [ 28372] By: rgs                                   on 2006/06/08  14:11:29
19025         Log: Add the perlreguts manpage, by Yves Orton
19026      Branch: perl
19027            + pod/perlreguts.pod
19028            ! MANIFEST pod.lst pod/perl.pod pod/perltoc.pod
19029            ! vms/descrip_mms.template win32/pod.mak
19030 ____________________________________________________________________________
19031 [ 28371] By: rgs                                   on 2006/06/08  13:00:18
19032         Log: Subject: [PATCH] Re: range operator vs. unicode
19033              From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
19034              Date: Thu, 8 Jun 2006 02:33:43 -0700
19035              Message-ID: <20060608093343.GD2676@efn.org>
19036              
19037              with tweaks
19038      Branch: perl
19039            ! pod/perlop.pod
19040 ____________________________________________________________________________
19041 [ 28370] By: rgs                                   on 2006/06/07  20:47:20
19042         Log: Revert change #20462 (except the regression test),
19043              since the bug has been really fixed by change #22074,
19044              as explained in :
19045              Subject: Re: [perl #39247] defined-ness of substrings disappear over repeated calls
19046              From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
19047              Date: Thu, 01 Jun 2006 08:16:51 +0900
19048              Message-Id: <20060601081304.7A39.BQW10602@nifty.com>
19049      Branch: perl
19050            ! pp.c
19051 ____________________________________________________________________________
19052 [ 28369] By: nicholas                              on 2006/06/07  17:36:32
19053         Log: The binmode in t/iop/utf8.t doesn't need to be conditional on ${^OPEN}
19054      Branch: perl
19055            ! t/io/utf8.t
19056 ____________________________________________________________________________
19057 [ 28368] By: craigb                                on 2006/06/07  12:29:32
19058         Log: autosplit one level deeper so we don't miss anything
19059              on a second pass (where lib/auto already exists)
19060      Branch: perl
19061            ! vms/descrip_mms.template
19062 ____________________________________________________________________________
19063 [ 28367] By: craigb                                on 2006/06/07  12:14:39
19064         Log: Subject: [patch@28349] vmsify - full EFS charset support
19065              From: "John E. Malmberg" <wb8tyw@qsl.net>
19066              Date: Mon, 05 Jun 2006 23:39:32 -0400
19067              Message-id: <4484F8F4.7040902@qsl.net>
19068
19069      Branch: perl
19070            ! vms/vms.c vms/vmsish.h
19071 ____________________________________________________________________________
19072 [ 28366] By: rgs                                   on 2006/06/07  09:13:51
19073         Log: Add a regression test to ensure that charnames pragma
19074              is propagated to eval("")
19075      Branch: perl
19076            ! lib/charnames.t
19077 ____________________________________________________________________________
19078 [ 28365] By: rgs                                   on 2006/06/07  08:47:49
19079         Log: Make "use feature 'dor'" an alias for "use feature 'err'"
19080      Branch: perl
19081            ! lib/feature.pm
19082 ____________________________________________________________________________
19083 [ 28364] By: rgs                                   on 2006/06/07  08:33:35
19084         Log: Subject: [PATCH] exhausting <> in BEGIN{} gets ARGVOUT used only once warning
19085              From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
19086              Date: Tue, 6 Jun 2006 22:24:46 -0700
19087              Message-ID: <20060607052446.GA3240@efn.org>
19088      Branch: perl
19089            ! gv.c t/op/readline.t
19090 ____________________________________________________________________________
19091 [ 28363] By: rgs                                   on 2006/06/07  08:30:03
19092         Log: Subject: [PATCH] dump.c patches
19093              From: andy@petdance.com (Andy Lester)
19094              Date: Tue, 6 Jun 2006 10:01:37 -0500
19095              Message-ID: <20060606150137.GA4434@petdance.com>
19096      Branch: perl
19097            ! doop.c dump.c
19098 ____________________________________________________________________________
19099 [ 28362] By: merijn                                on 2006/06/06  18:33:52
19100         Log: Subject: [PATCH]Teach Configure that icc is not gcc
19101              From: Steve Peters <steve@fisharerojo.org>
19102              Date: Tue, 6 Jun 2006 10:33:12 -0500
19103              Message-ID: <20060606153312.GA5542@fisharerojo.org>
19104      Branch: perl
19105            ! Configure
19106 ____________________________________________________________________________
19107 [ 28360] By: rgs                                   on 2006/06/06  16:30:36
19108         Log: Upgrade to Module::CoreList 2.05
19109              (contains a patch by Adriano Ferreira to make corelist accept
19110              regexps as arguments)
19111      Branch: perl
19112            + lib/Module/CoreList/t/find_modules.t
19113            ! MANIFEST lib/Module/CoreList.pm
19114            ! lib/Module/CoreList/bin/corelist
19115 ____________________________________________________________________________
19116 [ 28359] By: rgs                                   on 2006/06/06  12:37:34
19117         Log: Upgrade to Encode 2.18
19118      Branch: perl
19119            ! ext/Encode/Byte/Byte.pm ext/Encode/CN/CN.pm ext/Encode/Changes
19120            ! ext/Encode/EBCDIC/EBCDIC.pm ext/Encode/Encode.pm
19121            ! ext/Encode/Encode.xs ext/Encode/JP/JP.pm ext/Encode/KR/KR.pm
19122            ! ext/Encode/Symbol/Symbol.pm ext/Encode/TW/TW.pm
19123            ! ext/Encode/bin/enc2xs ext/Encode/encoding.pm
19124            ! ext/Encode/lib/Encode/Alias.pm
19125            ! ext/Encode/lib/Encode/CJKConstants.pm
19126            ! ext/Encode/lib/Encode/CN/HZ.pm ext/Encode/lib/Encode/Config.pm
19127            ! ext/Encode/lib/Encode/Encoding.pm
19128            ! ext/Encode/lib/Encode/Guess.pm ext/Encode/lib/Encode/JP/H2Z.pm
19129            ! ext/Encode/lib/Encode/JP/JIS7.pm
19130            ! ext/Encode/lib/Encode/KR/2022_KR.pm
19131            ! ext/Encode/lib/Encode/MIME/Header.pm
19132            ! ext/Encode/lib/Encode/MIME/Header/ISO_2022_JP.pm
19133            ! ext/Encode/lib/Encode/Unicode/UTF7.pm
19134 ____________________________________________________________________________
19135 [ 28358] By: rgs                                   on 2006/06/06  11:27:19
19136         Log: Subject: [PATCH] more accumulated cleanups
19137              From: andy@petdance.com (Andy Lester)
19138              Date: Tue, 6 Jun 2006 00:25:01 -0500
19139              Message-ID: <20060606052501.GA30469@petdance.com>
19140      Branch: perl
19141            ! av.c doio.c utf8.c util.c
19142 ____________________________________________________________________________
19143 [ 28357] By: rgs                                   on 2006/06/06  11:17:22
19144         Log: Subject: [PATCH] Accumulated toke.c cleanups
19145              From: andy@petdance.com (Andy Lester)
19146              Date: Tue, 6 Jun 2006 00:07:36 -0500
19147              Message-ID: <20060606050736.GA30291@petdance.com>
19148      Branch: perl
19149            ! toke.c
19150 ____________________________________________________________________________
19151 [ 28356] By: rgs                                   on 2006/06/06  11:05:46
19152         Log: Subject: [PATCH] random thread test failure
19153              From: "Jerry D. Hedden" <jerry@hedden.us>
19154              Date: Mon, 05 Jun 2006 13:28:51 -0700
19155              Message-ID: <20060605132851.fb30e530d17747c2b054d625b8945d88.65486bb40b.wbe@email.secureserver.net>
19156      Branch: perl
19157            ! ext/threads/t/thread.t
19158 ____________________________________________________________________________
19159 [ 28355] By: rgs                                   on 2006/06/06  11:02:14
19160         Log: Subject: [PATCH] threads 1.32
19161              From: "Jerry D. Hedden" <jerry@hedden.us>
19162              Date: Mon, 05 Jun 2006 06:34:56 -0700
19163              Message-ID: <20060605063456.fb30e530d17747c2b054d625b8945d88.21396dde59.wbe@email.secureserver.net>
19164      Branch: perl
19165            + ext/threads/hints/hpux.pl
19166            ! MANIFEST ext/threads/Changes ext/threads/README
19167            ! ext/threads/t/blocks.t ext/threads/t/context.t
19168            ! ext/threads/t/end.t ext/threads/t/free.t ext/threads/t/free2.t
19169            ! ext/threads/t/join.t ext/threads/t/kill.t ext/threads/t/libc.t
19170            ! ext/threads/t/problems.t ext/threads/t/thread.t
19171            ! ext/threads/threads.pm ext/threads/threads.xs
19172 ____________________________________________________________________________
19173 [ 28354] By: nicholas                              on 2006/06/05  21:39:40
19174         Log: Eliminate most of the UTF-8 black smoke by skipping optree tests when
19175              ${^OPEN} is set, and tweaking hints.t to understand that $^H is
19176              different when -C has been used.
19177      Branch: perl
19178            ! ext/B/t/optree_check.t ext/B/t/optree_concise.t
19179            ! ext/B/t/optree_constants.t ext/B/t/optree_misc.t
19180            ! ext/B/t/optree_samples.t ext/B/t/optree_sort.t
19181            ! ext/B/t/optree_specials.t ext/B/t/optree_varinit.t
19182            ! t/comp/hints.t
19183 ____________________________________________________________________________
19184 [ 28353] By: nicholas                              on 2006/06/05  21:38:38
19185         Log: Add the missing ${^OPEN} hints flag to B::Concise
19186      Branch: perl
19187            ! ext/B/B/Concise.pm
19188 ____________________________________________________________________________
19189 [ 28352] By: rgs                                   on 2006/06/05  16:22:46
19190         Log: Subject: [DOCPATCH perlunicode.pod] paragraphing nit
19191              From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
19192              Date: Sun, 04 Jun 2006 15:52:54 +0900
19193              Message-Id: <20060604155149.0913.BQW10602@nifty.com>
19194      Branch: perl
19195            ! pod/perlunicode.pod
19196 ____________________________________________________________________________
19197 [ 28351] By: rgs                                   on 2006/06/05  08:35:45
19198         Log: Subject: [PATCH] mg.c: using #ifdef inside a macro call ENONPORTABLE (causes e.g. AIX to barf)
19199              From: Jarkko Hietaniemi <jhi@cc.hut.fi>
19200              Date: Sun, 4 Jun 2006 11:21:30 +0300 (EEST)
19201              Message-Id: <200606040821.k548LUYu010965@vipunen.hut.fi>
19202      Branch: perl
19203            ! mg.c
19204 ____________________________________________________________________________
19205 [ 28350] By: rgs                                   on 2006/06/05  07:50:12
19206         Log: Use POSIX::_exit instead of exit in IPC::Open when exiting after an
19207              exec() failure, as suggested by Salvador Fandino after change #28347
19208      Branch: perl
19209            ! lib/IPC/Open3.pm
19210 ____________________________________________________________________________
19211 [ 28349] By: rgs                                   on 2006/06/04  22:32:50
19212         Log: The smart match table was duplicated in source code and in perlsyn,
19213              so remove the one in the source code
19214      Branch: perl
19215            ! pod/perlsyn.pod pp_ctl.c
19216 ____________________________________________________________________________
19217 [ 28348] By: craigb                                on 2006/06/02  23:18:08
19218         Log: It's all relative -- better handling of tainted directories
19219              in PATH on VMS (and scrubbing them in t/test.pl).
19220      Branch: perl
19221            ! mg.c t/test.pl
19222 ____________________________________________________________________________
19223 [ 28347] By: davem                                 on 2006/06/02  19:53:52
19224         Log: IPC::Open3 handled exec failure badly
19225              When you're in the child, don't croak - you may get trapped by
19226              eval. Also clarify the documentation
19227      Branch: perl
19228            ! lib/IPC/Open3.pm
19229 ____________________________________________________________________________
19230 [ 28346] By: stevep                                on 2006/06/01  19:11:38
19231         Log: Subject: [perl #39178] IO::Socket::connect returns wrong errno on timeout
19232              From: "mlelstv@serpens.de (via RT)" <perlbug-followup@perl.org>
19233              Date: Sun, 21 May 2006 04:23:38 -0700
19234              Message-ID: <rt-3.0.11-39178-133695.13.7935957232893@perl.org>
19235      Branch: perl
19236            ! ext/IO/lib/IO/Socket.pm
19237 ____________________________________________________________________________
19238 [ 28345] By: rgs                                   on 2006/06/01  14:50:50
19239         Log: Add the perlunitut manpage, by Juerd Waalboer
19240      Branch: perl
19241            + pod/perlunitut.pod
19242            ! MANIFEST pod.lst pod/perl.pod pod/perltoc.pod
19243            ! vms/descrip_mms.template win32/pod.mak
19244 ____________________________________________________________________________
19245 [ 28344] By: rgs                                   on 2006/06/01  12:16:09
19246         Log: Subject: [PATCH: installperl] Was: Bug#369481: perl-base: 5.8.4-8sarge4 seemed to trigger "weak references not implemented"
19247              From: Brendan O'Dea <bod@debian.org>
19248              Date: Wed, 31 May 2006 22:51:48 +1000
19249              Message-ID: <20060531125148.GA20658@londo.c47.org>
19250      Branch: perl
19251            ! installperl
19252 ____________________________________________________________________________
19253 [ 28343] By: rgs                                   on 2006/06/01  11:40:34
19254         Log: Add a few more built-in types in perlfunc/ref()
19255      Branch: perl
19256            ! pod/perlfunc.pod
19257 ____________________________________________________________________________
19258 [ 28342] By: rgs                                   on 2006/06/01  07:08:36
19259         Log: Remove duplicate file in manifest
19260      Branch: perl
19261            ! MANIFEST
19262 ____________________________________________________________________________
19263 [ 28341] By: rgs                                   on 2006/06/01  07:07:43
19264         Log: Add missing file to MANIFEST
19265      Branch: perl
19266            ! MANIFEST
19267 ____________________________________________________________________________
19268 [ 28340] By: craigb                                on 2006/05/31  03:31:54
19269         Log: Teach incfilter.t some DCL.
19270      Branch: perl
19271            ! t/op/incfilter.t
19272 ____________________________________________________________________________
19273 [ 28339] By: craigb                                on 2006/05/31  03:19:27
19274         Log: Make VMS-specific device name encoding routine say no more politely.
19275      Branch: perl
19276            ! vms/vms.c
19277 ____________________________________________________________________________
19278 [ 28338] By: rgs                                   on 2006/05/30  12:21:17
19279         Log: Subject: Re: B::Lint changes
19280              From: "Joshua ben Jore" <twists@gmail.com>
19281              Date: Thu, 18 May 2006 08:45:30 -0500
19282              Message-ID: <dc5c751d0605180645q63ddba5fga354d2660a4877f5@mail.gmail.com>
19283      Branch: perl
19284            ! ext/B/B/Lint.pm ext/B/t/lint.t
19285 ____________________________________________________________________________
19286 [ 28337] By: nicholas                              on 2006/05/30  11:59:26
19287         Log: Fix bugs in the bytecode system caused by the abolition of cop_io.
19288      Branch: perl
19289            ! ext/B/B.xs ext/B/B/Bytecode.pm
19290 ____________________________________________________________________________
19291 [ 28336] By: rgs                                   on 2006/05/30  08:32:00
19292         Log: Subject: C is not perl, AV's dont just magically free themselves...
19293              From: demerphq <demerphq@gmail.com>
19294              Date: Tue, 30 May 2006 10:23:19 +0200
19295              Message-ID: <9b18b3110605300123t467f14eerf30a149f253be281@mail.gmail.com>
19296      Branch: perl
19297            ! regcomp.c
19298 ____________________________________________________________________________
19299 [ 28335] By: nicholas                              on 2006/05/29  22:58:46
19300         Log: Comprehensive regression tests for Perl_refcounted_he_fetch().
19301              Fix a bug due to the fact that Perl's typedef'd "bool" type isn't
19302              actually boolean.
19303      Branch: perl
19304            + ext/XS/APItest/t/op.t t/op/caller.pl
19305            ! MANIFEST ext/XS/APItest/APItest.xs hv.c t/op/caller.t
19306 ____________________________________________________________________________
19307 [ 28334] By: craigb                                on 2006/05/29  22:34:23
19308         Log: Subject: [PATCH] redo part of change 27374
19309              From: Abe Timmerman <abe@ztreet.demon.nl>
19310              Date: Mon, 29 May 2006 23:24:51 +0200
19311              Message-id: <200605292324.51714.abe@ztreet.demon.nl>
19312
19313      Branch: perl
19314            ! configure.com
19315 ____________________________________________________________________________
19316 [ 28333] By: craigb                                on 2006/05/29  19:37:41
19317         Log: And some more DynaLoader things that should not be tested on
19318              VMS since they are not part of the implementation.
19319      Branch: perl
19320            ! ext/DynaLoader/t/DynaLoader.t
19321 ____________________________________________________________________________
19322 [ 28332] By: mhx                                   on 2006/05/29  17:50:48
19323         Log: Upgrade to Devel::PPPort 3.08_04
19324      Branch: perl
19325            ! ext/Devel/PPPort/Changes ext/Devel/PPPort/HACKERS
19326            ! ext/Devel/PPPort/Makefile.PL ext/Devel/PPPort/PPPort.pm
19327            ! ext/Devel/PPPort/PPPort_pm.PL ext/Devel/PPPort/TODO
19328            ! ext/Devel/PPPort/apicheck_c.PL
19329            ! ext/Devel/PPPort/devel/buildperl.pl
19330            ! ext/Devel/PPPort/devel/devtools.pl
19331            ! ext/Devel/PPPort/devel/mktodo ext/Devel/PPPort/devel/mktodo.pl
19332            ! ext/Devel/PPPort/devel/regenerate
19333            ! ext/Devel/PPPort/parts/apicheck.pl
19334            ! ext/Devel/PPPort/parts/base/5004000
19335            ! ext/Devel/PPPort/parts/base/5004050
19336            ! ext/Devel/PPPort/parts/base/5005000
19337            ! ext/Devel/PPPort/parts/base/5005030
19338            ! ext/Devel/PPPort/parts/base/5006000
19339            ! ext/Devel/PPPort/parts/base/5006001
19340            ! ext/Devel/PPPort/parts/base/5007001
19341            ! ext/Devel/PPPort/parts/base/5007002
19342            ! ext/Devel/PPPort/parts/base/5007003
19343            ! ext/Devel/PPPort/parts/base/5008000
19344            ! ext/Devel/PPPort/parts/base/5008001
19345            ! ext/Devel/PPPort/parts/base/5009000
19346            ! ext/Devel/PPPort/parts/base/5009001
19347            ! ext/Devel/PPPort/parts/base/5009002
19348            ! ext/Devel/PPPort/parts/base/5009003
19349            ! ext/Devel/PPPort/parts/base/5009004
19350            ! ext/Devel/PPPort/parts/inc/podtest
19351            ! ext/Devel/PPPort/parts/todo/5004000
19352            ! ext/Devel/PPPort/parts/todo/5005000
19353            ! ext/Devel/PPPort/parts/todo/5005030
19354            ! ext/Devel/PPPort/parts/todo/5006000
19355            ! ext/Devel/PPPort/parts/todo/5006001
19356            ! ext/Devel/PPPort/parts/todo/5007001
19357            ! ext/Devel/PPPort/parts/todo/5007002
19358            ! ext/Devel/PPPort/parts/todo/5007003
19359            ! ext/Devel/PPPort/parts/todo/5008000
19360            ! ext/Devel/PPPort/parts/todo/5008001
19361            ! ext/Devel/PPPort/parts/todo/5009000
19362            ! ext/Devel/PPPort/parts/todo/5009001
19363            ! ext/Devel/PPPort/parts/todo/5009002
19364            ! ext/Devel/PPPort/parts/todo/5009003
19365            ! ext/Devel/PPPort/parts/todo/5009004 ext/Devel/PPPort/soak
19366            ! ext/Devel/PPPort/t/podtest.t
19367 ____________________________________________________________________________
19368 [ 28331] By: davem                                 on 2006/05/29  15:27:02
19369         Log: make require report too many open files error
19370              ie don't continue searching the rest of @INC
19371      Branch: perl
19372            ! pp_ctl.c
19373 ____________________________________________________________________________
19374 [ 28330] By: davem                                 on 2006/05/29  14:12:13
19375         Log: ensure failure to load Carp::Heavy gets reported
19376      Branch: perl
19377            ! lib/Carp.pm
19378 ____________________________________________________________________________
19379 [ 28329] By: rgs                                   on 2006/05/29  14:08:42
19380         Log: Revert change 28322, which makes ithreads panic
19381      Branch: perl
19382            ! perlio.c
19383 ____________________________________________________________________________
19384 [ 28328] By: rgs                                   on 2006/05/29  13:41:24
19385         Log: Subject: Re: [perl #39126] possible memory related bug when using sprintf with an utf-8 encoded format-string and iso-8859-1 encoded string variables. 
19386              From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
19387              Date: Sun, 21 May 2006 19:33:21 +0900
19388              Message-Id: <20060521193259.81E5.BQW10602@nifty.com>
19389              
19390              with test tweaks further suggested by the same
19391      Branch: perl
19392            ! sv.c t/op/sprintf2.t
19393 ____________________________________________________________________________
19394 [ 28327] By: rgs                                   on 2006/05/29  13:10:45
19395         Log: Silence a warning
19396      Branch: perl
19397            ! regcomp.c
19398 ____________________________________________________________________________
19399 [ 28326] By: rgs                                   on 2006/05/29  12:40:15
19400         Log: Regen headers following change 28325. Also, make it compile
19401              with gcc by forward-declaring struct _reg_trie_data; and
19402              tweak the new re test to use test.pl, in order to portably
19403              run a new interpreter
19404      Branch: perl
19405            ! embed.h ext/re/t/regop.t perl.h proto.h regcomp.c regcomp.h
19406            ! regexec.c regnodes.h
19407 ____________________________________________________________________________
19408 [ 28325] By: rgs                                   on 2006/05/29  12:38:09
19409         Log: Subject: Re: [PATCH] More regex optimisations and debug enhancements (including Andys stuff too)
19410              From: demerphq <demerphq@gmail.com>
19411              Date: Sun, 28 May 2006 16:24:59 +0200
19412              Message-ID: <9b18b3110605280724u54a9c53bn3b20692b6fe4f1c3@mail.gmail.com>
19413      Branch: perl
19414            + ext/re/t/regop.pl ext/re/t/regop.t
19415            ! MANIFEST embed.fnc ext/re/re.pm regcomp.c regcomp.h regcomp.pl
19416            ! regcomp.sym regexec.c t/op/re_tests
19417 ____________________________________________________________________________
19418 [ 28324] By: rgs                                   on 2006/05/29  09:39:06
19419         Log: Subject: [PATCH] skip t/op/incfilter.t for "make clean;make miniperl;make minitest"
19420              From: Jarkko Hietaniemi <jhi@cc.hut.fi>
19421              Date: Sun, 28 May 2006 14:11:02 +0300 (EEST)
19422              Message-Id: <200605281111.k4SBB2jc133843@kosh.hut.fi>
19423      Branch: perl
19424            ! t/op/incfilter.t
19425 ____________________________________________________________________________
19426 [ 28323] By: rgs                                   on 2006/05/29  08:20:36
19427         Log: Subject: [PATCH] gv.c consting
19428              From: andy@petdance.com (Andy Lester)
19429              Date: Sun, 28 May 2006 12:24:25 -0500
19430              Message-ID: <20060528172425.GA8291@petdance.com>
19431              
19432              Subject: [PATCH] mg.c consting
19433              From: andy@petdance.com (Andy Lester)
19434              Date: Sun, 28 May 2006 11:34:33 -0500
19435              Message-ID: <20060528163433.GA5518@petdance.com>
19436      Branch: perl
19437            ! embed.fnc gv.c mg.c proto.h
19438 ____________________________________________________________________________
19439 [ 28322] By: rgs                                   on 2006/05/29  08:00:04
19440         Log: Subject: [PATCH] perlio.c: nobody was freeing PL_perlio_fd_refcnt, now PerlIO_cleanup() is
19441              From: jhi@cc.hut.fi (Jarkko Hietaniemi)
19442              Date: Sun, 28 May 2006 18:15:35 +0300 (EEST)
19443              Message-Id: <20060528151535.BEA3E6D08C@seth.hut.fi>
19444      Branch: perl
19445            ! perlio.c
19446 ____________________________________________________________________________
19447 [ 28321] By: nicholas                              on 2006/05/28  10:55:17
19448         Log: Subject: [PATCH] DynaLoader.t: less assumptions
19449              From: Jarkko Hietaniemi <jhietaniemi@gmail.com>
19450              Message-ID: <44796AF2.8060903@gmail.com>
19451              Date: Sun, 28 May 2006 12:18:42 +0300
19452      Branch: perl
19453            ! ext/DynaLoader/t/DynaLoader.t
19454 ____________________________________________________________________________
19455 [ 28320] By: nicholas                              on 2006/05/28  10:40:48
19456         Log: Perl_refcounted_he_chain_2hv()'s code to skip duplicate keys was far
19457              too lax.
19458      Branch: perl
19459            ! hv.c t/op/caller.t
19460 ____________________________________________________________________________
19461 [ 28319] By: davem                                 on 2006/05/27  21:16:30
19462         Log: fix eval qw(BEGIN{die}) style leaks.
19463              death while exdcuting code while parsing meant that the current
19464              parse stack got quiety abandonded, thus leaking a bunch of OPs.
19465              Register a destructor to be called when this happens.
19466      Branch: perl
19467            ! perly.c
19468 ____________________________________________________________________________
19469 [ 28318] By: craigb                                on 2006/05/27  18:00:31
19470         Log: use the same arg names everyone else does and handle undef filename
19471      Branch: perl
19472            ! ext/DynaLoader/dl_vms.xs
19473 ____________________________________________________________________________
19474 [ 28317] By: davem                                 on 2006/05/27  15:05:30
19475         Log: Subject:  RE: perlhack.pod confused about POPSTACK
19476              From:  "Jan Dubois" <jand@activestate.com>
19477              Date:  Thu, 25 May 2006 18:20:25 -0700
19478              Message-Id:  <059101c68062$9143d550$2217a8c0@candy>
19479              
19480              more fixing of the PUSHMARK example
19481      Branch: perl
19482            ! pod/perlhack.pod
19483 ____________________________________________________________________________
19484 [ 28316] By: davem                                 on 2006/05/27  00:54:18
19485         Log: make -Dpv display OP names ons the parser stack
19486      Branch: perl
19487            ! perly.c
19488 ____________________________________________________________________________
19489 [ 28315] By: davem                                 on 2006/05/27  00:31:33
19490         Log: stop OPs leaking in eval "syntax error"
19491              When bison pops states during error recovery, any states holding
19492              an OP would leak the OP. Create an extra YY table that tells us
19493              which states are of type opval, and when popping one of those,
19494              free the op.
19495      Branch: perl
19496            ! madly.tab perly.c perly.tab regen_perly.pl
19497 ____________________________________________________________________________
19498 [ 28314] By: davem                                 on 2006/05/26  18:50:34
19499         Log: stop eval "sub{" leaking
19500      Branch: perl
19501            ! madly.act madly.h madly.tab madly.y perly.act perly.h
19502            ! perly.tab perly.y
19503 ____________________________________________________________________________
19504 [ 28313] By: stevep                                on 2006/05/26  15:03:12
19505         Log: Subject: [PATCH] SysV IPC
19506              From: Jarkko Hietaniemi <jhietaniemi@gmail.com>
19507              Date: Thu, 25 May 2006 18:49:33 +0300
19508              Message-ID: <4475D20D.9010600@gmail.com>
19509      Branch: perl
19510            ! ext/IPC/SysV/Msg.pm ext/IPC/SysV/Semaphore.pm
19511            ! ext/IPC/SysV/SysV.pm pod/perlipc.pod
19512 ____________________________________________________________________________
19513 [ 28312] By: stevep                                on 2006/05/26  14:45:01
19514         Log: Upgrade to Sys-Syslog-0.14
19515      Branch: perl
19516            ! ext/Sys/Syslog/Changes ext/Sys/Syslog/Makefile.PL
19517            ! ext/Sys/Syslog/Syslog.pm ext/Sys/Syslog/fallback/const-c.inc
19518            ! ext/Sys/Syslog/t/constants.t ext/Sys/Syslog/t/syslog.t
19519 ____________________________________________________________________________
19520 [ 28311] By: stevep                                on 2006/05/26  13:39:06
19521         Log: Fix pod nit in perltodo.
19522      Branch: perl
19523            ! pod/perltodo.pod
19524 ____________________________________________________________________________
19525 [ 28310] By: stevep                                on 2006/05/26  13:38:16
19526         Log: Stop a warning generated from thread's Makefile.PL
19527      Branch: perl
19528            ! ext/threads/Makefile.PL
19529 ____________________________________________________________________________
19530 [ 28309] By: stevep                                on 2006/05/26  13:33:54
19531         Log: Sun C on Linux doesn't complain about the attributes sprinkled 
19532              through the code in all cases, even though attributes are not
19533              supported.  In some cases, however, it does.  
19534      Branch: perl
19535            ! hints/linux.sh
19536 ____________________________________________________________________________
19537 [ 28308] By: rgs                                   on 2006/05/26  13:01:35
19538         Log: Subject: Re: [PATCH] Test script for DynaLoader
19539              From: demerphq <demerphq@gmail.com>
19540              Date: Thu, 25 May 2006 13:20:53 +0200
19541              Message-ID: <9b18b3110605250420m7431bfbeve44aada2025264f7@mail.gmail.com>
19542      Branch: perl
19543            ! ext/DynaLoader/t/DynaLoader.t
19544 ____________________________________________________________________________
19545 [ 28307] By: mhx                                   on 2006/05/25  15:52:02
19546         Log: Upgrade to Devel::PPPort 3.08_03
19547      Branch: perl
19548            + ext/Devel/PPPort/devel/devtools.pl
19549            + ext/Devel/PPPort/devel/regenerate
19550            ! MANIFEST ext/Devel/PPPort/Changes ext/Devel/PPPort/HACKERS
19551            ! ext/Devel/PPPort/PPPort.pm ext/Devel/PPPort/PPPort_pm.PL
19552            ! ext/Devel/PPPort/TODO ext/Devel/PPPort/apicheck_c.PL
19553            ! ext/Devel/PPPort/devel/mktodo ext/Devel/PPPort/devel/mktodo.pl
19554            ! ext/Devel/PPPort/parts/apicheck.pl
19555            ! ext/Devel/PPPort/parts/apidoc.fnc
19556            ! ext/Devel/PPPort/parts/base/5006000
19557            ! ext/Devel/PPPort/parts/base/5009003
19558            ! ext/Devel/PPPort/parts/base/5009004
19559            ! ext/Devel/PPPort/parts/embed.fnc
19560            ! ext/Devel/PPPort/parts/inc/podtest
19561            ! ext/Devel/PPPort/parts/inc/ppphtest
19562            ! ext/Devel/PPPort/parts/todo/5009003
19563            ! ext/Devel/PPPort/parts/todo/5009004 ext/Devel/PPPort/soak
19564            ! ext/Devel/PPPort/t/podtest.t ext/Devel/PPPort/t/ppphtest.t
19565 ____________________________________________________________________________
19566 [ 28306] By: stevep                                on 2006/05/25  13:48:56
19567         Log: Upgrade to Digest-SHA-5.38.
19568      Branch: perl
19569            ! ext/Digest/SHA/Changes ext/Digest/SHA/README
19570            ! ext/Digest/SHA/SHA.pm ext/Digest/SHA/bin/shasum
19571            ! ext/Digest/SHA/src/hmac.c ext/Digest/SHA/src/hmac.h
19572            ! ext/Digest/SHA/src/sha.c ext/Digest/SHA/src/sha.h
19573            ! ext/Digest/SHA/t/2-nist-sha-oo.t
19574 ____________________________________________________________________________
19575 [ 28305] By: gisle                                 on 2006/05/25  07:09:15
19576         Log: Subject: Pod::Html should not convert "foo" in `foo''
19577              From: Gisle Aas <gisle@ActiveState.com>
19578              Date: 24 May 2006 14:09:49 -0700
19579              Message-ID: <lr1wujqgde.fsf@caliper.activestate.com>
19580      Branch: perl
19581            ! lib/Pod/Html.pm
19582 ____________________________________________________________________________
19583 [ 28304] By: stevep                                on 2006/05/25  02:17:21
19584         Log: Upgrade to Test-Harness-2.60
19585      Branch: perl
19586            ! lib/Test/Harness.pm lib/Test/Harness/Changes
19587 ____________________________________________________________________________
19588 [ 28303] By: davem                                 on 2006/05/25  00:21:21
19589         Log: Subject:  RE: perlhack.pod confused about POPSTACK
19590              From:  "Jan Dubois" <jand@activestate.com>
19591              Date:  Wed, 24 May 2006 16:35:14 -0700
19592              Message-Id:  <03ee01c67f8a$b4d6aca0$2217a8c0@candy>
19593              
19594              clean up davem's doc thinko of change #28292
19595      Branch: perl
19596            ! pod/perlhack.pod
19597 ____________________________________________________________________________
19598 [ 28302] By: mhx                                   on 2006/05/24  17:44:20
19599         Log: Run 'make regen' for changes 28299, 28300, 28301.
19600      Branch: perl
19601            ! pod/perlapi.pod proto.h
19602 ____________________________________________________________________________
19603 [ 28301] By: mhx                                   on 2006/05/24  17:40:01
19604         Log: The sv_catpvs() and sv_setpvs() macros also return void.
19605      Branch: perl
19606            ! handy.h
19607 ____________________________________________________________________________
19608 [ 28300] By: mhx                                   on 2006/05/24  17:38:08
19609         Log: The SvREFCNT_*void* macros return void, not SV*.
19610      Branch: perl
19611            ! sv.h
19612 ____________________________________________________________________________
19613 [ 28299] By: mhx                                   on 2006/05/24  17:31:28
19614         Log: The 'f' flag was missing for my_snprintf().
19615      Branch: perl
19616            ! embed.fnc
19617 ____________________________________________________________________________
19618 [ 28298] By: rgs                                   on 2006/05/24  13:34:45
19619         Log: Fix segfault in SDBM_File when the destructor is called multiple times
19620      Branch: perl
19621            ! ext/SDBM_File/SDBM_File.pm ext/SDBM_File/SDBM_File.xs
19622 ____________________________________________________________________________
19623 [ 28297] By: rgs                                   on 2006/05/24  12:39:31
19624         Log: Subject: [PATCH] Stop harness from printing summary table header for each row in table
19625              From: demerphq <demerphq@gmail.com>
19626              Date: Tue, 23 May 2006 22:27:40 +0200
19627              Message-ID: <9b18b3110605231327t316104caoce301668178ee442@mail.gmail.com>
19628      Branch: perl
19629            ! lib/Test/Harness.pm
19630 ____________________________________________________________________________
19631 [ 28296] By: rgs                                   on 2006/05/24  12:24:27
19632         Log: Subject: [PATCH] Refactoring in av.c
19633              From: andy@petdance.com (Andy Lester)
19634              Date: Wed, 24 May 2006 00:16:40 -0500
19635              Message-ID: <20060524051640.GA4713@petdance.com>
19636      Branch: perl
19637            ! av.c cop.h
19638 ____________________________________________________________________________
19639 [ 28295] By: rgs                                   on 2006/05/24  07:27:47
19640         Log: Subject: [PATCH lib/AutoLoader.pm lib/AutoLoader.t] Export can() with AUTOLOAD()
19641              From: chromatic <chromatic@wgz.org>
19642              Date: Sat, 20 May 2006 11:40:27 -0700
19643              Message-Id: <200605201140.27789.chromatic@wgz.org>
19644              
19645              With tweaks: use built-in ref() instead of Scalar::Util::blessed
19646      Branch: perl
19647            ! lib/AutoLoader.pm lib/AutoLoader.t
19648 ____________________________________________________________________________
19649 [ 28294] By: stevep                                on 2006/05/24  02:56:23
19650         Log: Subject: [PATCH] Make t/TEST more helpful
19651              From: andy@petdance.com (Andy Lester)
19652              Date: Tue, 23 May 2006 21:07:48 -0500
19653              Message-ID: <20060524020748.GA16729@petdance.com>
19654      Branch: perl
19655            ! t/TEST
19656 ____________________________________________________________________________
19657 [ 28293] By: stevep                                on 2006/05/24  02:53:38
19658         Log: Subject: Re: [patch] win32/buildext.pl to handle inclusions and not just exclusions
19659              From: demerphq <demerphq@gmail.com>
19660              Date: Sun, 21 May 2006 12:20:12 +0200
19661              Message-ID: <9b18b3110605210320h5adc9df4hbee2302722b3dd6e@mail.gmail.com>
19662      Branch: perl
19663            ! win32/Makefile win32/buildext.pl
19664 ____________________________________________________________________________
19665 [ 28292] By: davem                                 on 2006/05/23  22:16:28
19666         Log: correct POPSTACK/POPMARK confusion in perlhack.pod
19667      Branch: perl
19668            ! pod/perlhack.pod
19669 ____________________________________________________________________________
19670 [ 28291] By: rgs                                   on 2006/05/23  08:05:56
19671         Log: Typo fix
19672      Branch: perl
19673            ! ext/threads/threads.pm
19674 ____________________________________________________________________________
19675 [ 28290] By: rgs                                   on 2006/05/23  08:03:08
19676         Log: Subject: [PATCH] Explicit thread context
19677              From: "Jerry D. Hedden" <jerry@hedden.us>
19678              Date: Fri, 19 May 2006 13:42:50 -0700
19679              Message-ID: <20060519134250.fb30e530d17747c2b054d625b8945d88.933b701674.wbe@email.secureserver.net>
19680      Branch: perl
19681            + ext/threads/t/context.t
19682            ! MANIFEST ext/threads/Changes ext/threads/README
19683            ! ext/threads/threads.pm ext/threads/threads.xs
19684 ____________________________________________________________________________
19685 [ 28289] By: rgs                                   on 2006/05/23  07:27:11
19686         Log: Subject: [PATCH] clean some lint findings
19687              From: andy@petdance.com (Andy Lester)
19688              Date: Sun, 21 May 2006 00:02:40 -0500
19689              Message-ID: <20060521050240.GA21051@petdance.com>
19690      Branch: perl
19691            ! embed.fnc embed.h hv.c perlio.c pp_pack.c proto.h
19692 ____________________________________________________________________________
19693 [ 28288] By: rgs                                   on 2006/05/23  07:23:48
19694         Log: Subject: Re: [PATCH - DUH] Synchronize bleadperl with version-0.60
19695              From: John Peacock <jpeacock@rowman.com>
19696              Date: Mon, 22 May 2006 19:08:03 -0400
19697              Message-ID: <44724453.5090606@rowman.com>
19698      Branch: perl
19699            ! lib/version.pm lib/version.t
19700 ____________________________________________________________________________
19701 [ 28287] By: rgs                                   on 2006/05/23  07:20:15
19702         Log: Fix a syntax error in test
19703      Branch: perl
19704            ! lib/Text/Balanced/t/00-load.t
19705 ____________________________________________________________________________
19706 [ 28286] By: merijn                                on 2006/05/23  06:17:26
19707         Log: HAS_HAS WAS NOW HAS
19708      Branch: perl
19709            ! handy.h
19710 ____________________________________________________________________________
19711 [ 28285] By: stevep                                on 2006/05/22  20:30:14
19712         Log: Subject: [PATCH] IO::Compress::Base::Common
19713              From: "Paul Marquess" <paul.marquess@openwave.com>
19714              Date: Sat, 20 May 2006 11:55:21 +0100
19715              Message-ID: <3F2DD0FCF1E2EA4D974C6195B482FD8801C339EF@bfs-exch-prd1.myopwv.com>
19716      Branch: perl
19717            ! ext/Compress/IO/Base/lib/IO/Compress/Base/Common.pm
19718 ____________________________________________________________________________
19719 [ 28284] By: merijn                                on 2006/05/22  17:39:47
19720         Log: If I needed this now, I'll probably need it next time too :)
19721      Branch: perl
19722            ! handy.h
19723 ____________________________________________________________________________
19724 [ 28283] By: merijn                                on 2006/05/22  17:37:33
19725         Log: Re-generation after backports of
19726              #28188 Only ask about MAD for 5.9.0 and greater. Otherwise silently
19727              #28189 A Configure probe for C99 variadic macros, based on code from
19728              #28202 Take advantage of the bug that binexp ignores the Configure
19729              #28263 Oops. Fix bad #! lines when not using userelocatableinc
19730              One small cleanup fix added. Some small re-ordering. Some whitespace.
19731      Branch: perl
19732            ! Configure Porting/Glossary Porting/config.sh config_h.SH
19733 ____________________________________________________________________________
19734 [ 28280] By: rgs                                   on 2006/05/22  16:51:36
19735         Log: Amend version.pm so it correctly loads the XS version of qv()
19736      Branch: perl
19737            ! lib/version.pm
19738 ____________________________________________________________________________
19739 [ 28279] By: rgs                                   on 2006/05/22  16:41:56
19740         Log: Subject: [PATCH] pp_sys cleanup again
19741              From: andy@petdance.com (Andy Lester)
19742              Date: Sat, 20 May 2006 16:20:20 -0500
19743              Message-ID: <20060520212020.GA30688@petdance.com>
19744      Branch: perl
19745            ! pp_sys.c
19746 ____________________________________________________________________________
19747 [ 28277] By: steveh                                on 2006/05/22  15:18:33
19748         Log: Fix Win32 linker error
19749              
19750              See:
19751              http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2006-05/msg00758.html
19752      Branch: perl
19753            ! embed.fnc embed.h global.sym
19754 ____________________________________________________________________________
19755 [ 28276] By: rgs                                   on 2006/05/22  15:02:08
19756         Log: Upgrade to version.pm 0.60
19757      Branch: perl
19758            ! lib/version.pm lib/version.t universal.c util.c
19759 ____________________________________________________________________________
19760 [ 28275] By: rgs                                   on 2006/05/22  14:49:05
19761         Log: Subject: Perl_PerlIO_context_layers and PerlIO_apply_layers, as well as other unexported/undefined entities... (patch 28258/28264 incomplete?)
19762              From: demerphq <demerphq@gmail.com>
19763              Date: Sun, 21 May 2006 15:06:20 +0200
19764              Message-ID: <9b18b3110605210606l441b69b3lf6934a15d9a26e4b@mail.gmail.com>
19765              
19766              (only the makedef.pl and perlio.c patches)
19767      Branch: perl
19768            ! makedef.pl perlio.c
19769 ____________________________________________________________________________
19770 [ 28274] By: merijn                                on 2006/05/22  14:42:47
19771         Log: Better handling for error-checking
19772              From: IRC/#p5p/Maddingue (Sebastien Aperghis-Tramoni)
19773      Branch: perl
19774            ! ext/DynaLoader/t/DynaLoader.t
19775 ____________________________________________________________________________
19776 [ 28273] By: rgs                                   on 2006/05/22  13:58:45
19777         Log: Subject: [PATCH] literal string macros
19778              From: Marcus Holland-Moritz <mhx-perl@gmx.net>
19779              Date: Mon, 22 May 2006 13:39:33 +0200
19780              Message-ID: <20060522133933.65ea93ce@r2d2>
19781      Branch: perl
19782            ! handy.h pod/perlapi.pod
19783 ____________________________________________________________________________
19784 [ 28272] By: stevep                                on 2006/05/22  13:57:54
19785         Log: Additional perlpragma.pod nits.
19786      Branch: perl
19787            ! pod/perlpragma.pod
19788 ____________________________________________________________________________
19789 [ 28271] By: rgs                                   on 2006/05/22  13:47:19
19790         Log: More nits in perlpragma, and remove the warning about %^H being
19791              strictly internal in perlvar.
19792      Branch: perl
19793            ! pod/perlpragma.pod pod/perlvar.pod
19794 ____________________________________________________________________________
19795 [ 28270] By: stevep                                on 2006/05/22  13:46:30
19796         Log: Silence Text::Balanced's 00-load.t when PERL_CORE is defined.
19797      Branch: perl
19798            ! lib/Text/Balanced/t/00-load.t
19799 ____________________________________________________________________________
19800 [ 28269] By: rgs                                   on 2006/05/22  13:09:12
19801         Log: Subject: Re: [PATCH] optimize /[x]/ to /x/.
19802              From: demerphq <demerphq@gmail.com>
19803              Date: Sun, 21 May 2006 19:32:15 +0200
19804              Message-ID: <9b18b3110605211032n5035d2cfne703514d8271e181@mail.gmail.com>
19805              
19806              New tests.
19807      Branch: perl
19808            ! t/op/re_tests
19809 ____________________________________________________________________________
19810 [ 28268] By: rgs                                   on 2006/05/22  12:55:13
19811         Log: Fix two nits in perlpragma.pod
19812      Branch: perl
19813            ! pod/perlpragma.pod
19814 ____________________________________________________________________________
19815 [ 28267] By: mhx                                   on 2006/05/22  11:31:57
19816         Log: Upgrade to Devel::PPPort 3.08_02
19817      Branch: perl
19818            + ext/Devel/PPPort/parts/inc/SvREFCNT
19819            + ext/Devel/PPPort/parts/inc/podtest
19820            + ext/Devel/PPPort/t/SvREFCNT.t ext/Devel/PPPort/t/podtest.t
19821            ! MANIFEST ext/Devel/PPPort/Changes ext/Devel/PPPort/PPPort.pm
19822            ! ext/Devel/PPPort/PPPort.xs ext/Devel/PPPort/PPPort_pm.PL
19823            ! ext/Devel/PPPort/TODO ext/Devel/PPPort/mktests.PL
19824            ! ext/Devel/PPPort/parts/apidoc.fnc
19825            ! ext/Devel/PPPort/parts/base/5009004
19826            ! ext/Devel/PPPort/parts/embed.fnc
19827            ! ext/Devel/PPPort/parts/inc/memory
19828            ! ext/Devel/PPPort/parts/inc/misc
19829            ! ext/Devel/PPPort/parts/inc/ppphbin
19830            ! ext/Devel/PPPort/parts/inc/ppphdoc
19831            ! ext/Devel/PPPort/parts/inc/pvs
19832            ! ext/Devel/PPPort/parts/todo/5009004 ext/Devel/PPPort/soak
19833            ! ext/Devel/PPPort/t/MY_CXT.t ext/Devel/PPPort/t/SvPV.t
19834            ! ext/Devel/PPPort/t/Sv_set.t ext/Devel/PPPort/t/call.t
19835            ! ext/Devel/PPPort/t/cop.t ext/Devel/PPPort/t/exception.t
19836            ! ext/Devel/PPPort/t/grok.t ext/Devel/PPPort/t/limits.t
19837            ! ext/Devel/PPPort/t/mPUSH.t ext/Devel/PPPort/t/magic.t
19838            ! ext/Devel/PPPort/t/memory.t ext/Devel/PPPort/t/misc.t
19839            ! ext/Devel/PPPort/t/newCONSTSUB.t ext/Devel/PPPort/t/newRV.t
19840            ! ext/Devel/PPPort/t/ppphtest.t ext/Devel/PPPort/t/pvs.t
19841            ! ext/Devel/PPPort/t/snprintf.t ext/Devel/PPPort/t/sv_xpvf.t
19842            ! ext/Devel/PPPort/t/testutil.pl ext/Devel/PPPort/t/threads.t
19843            ! ext/Devel/PPPort/t/uv.t ext/Devel/PPPort/t/variables.t
19844            ! ext/Devel/PPPort/t/warn.t
19845 ____________________________________________________________________________
19846 [ 28266] By: mhx                                   on 2006/05/21  22:34:29
19847         Log: Remove duplicate documentation for SvREFCNT_inc().
19848              Add documentation for SvREFCNT_inc_simple_void_NN().
19849              Wrap SvREFCNT_inc_simple_void() in STMT_START/STMT_END.
19850      Branch: perl
19851            ! sv.h
19852 ____________________________________________________________________________
19853 [ 28265] By: mhx                                   on 2006/05/21  22:20:48
19854         Log: Document PoisonFree() instead of documenting Poison() twice.
19855      Branch: perl
19856            ! handy.h
19857 ____________________________________________________________________________
19858 [ 28264] By: stevep                                on 2006/05/21  03:47:18
19859         Log: Add Perl_PerlIO_context_layers() to the public API to fix Win32 builds.
19860              Also, picked up a missed change for pod/perlapi.pod.
19861      Branch: perl
19862            ! embed.fnc embed.h global.sym pod/perlapi.pod
19863 ____________________________________________________________________________
19864 [ 28263] By: nicholas                              on 2006/05/20  23:08:40
19865         Log: Oops. Fix bad #! lines when not using userelocatableinc
19866      Branch: perl
19867            ! Configure
19868 ____________________________________________________________________________
19869 [ 28262] By: davem                                 on 2006/05/20  22:23:21
19870         Log: Subject:  [PATCH] optimize /[x]/ to /x/.
19871              From:  demerphq <demerphq@gmail.com>
19872              Date:  Sat, 20 May 2006 23:16:33 +0200
19873              Message-Id:  <9b18b3110605201416i3dc44c39k86cd9b2f47f5cda0@mail.gmail.com>
19874      Branch: perl
19875            ! regcomp.c
19876 ____________________________________________________________________________
19877 [ 28261] By: nicholas                              on 2006/05/20  22:17:07
19878         Log: Fix bug in change 28258. So how come I thought I'd passed all tests?
19879      Branch: perl
19880            ! ext/B/B.xs
19881 ____________________________________________________________________________
19882 [ 28260] By: davem                                 on 2006/05/20  21:07:34
19883         Log: don't try to dump GVish parts of an LV if it hasn't got GVish parts
19884      Branch: perl
19885            ! dump.c
19886 ____________________________________________________________________________
19887 [ 28259] By: mhx                                   on 2006/05/20  18:22:00
19888         Log: Upgrade to Devel::PPPort 3.08_01
19889      Branch: perl
19890            + ext/Devel/PPPort/parts/base/5008008
19891            + ext/Devel/PPPort/parts/base/5009004
19892            + ext/Devel/PPPort/parts/inc/pvs
19893            + ext/Devel/PPPort/parts/inc/snprintf
19894            + ext/Devel/PPPort/parts/inc/warn
19895            + ext/Devel/PPPort/parts/todo/5008008
19896            + ext/Devel/PPPort/parts/todo/5009004 ext/Devel/PPPort/t/pvs.t
19897            + ext/Devel/PPPort/t/snprintf.t ext/Devel/PPPort/t/warn.t
19898            - ext/Devel/PPPort/MANIFEST
19899            ! MANIFEST ext/Devel/PPPort/Changes ext/Devel/PPPort/HACKERS
19900            ! ext/Devel/PPPort/PPPort.pm ext/Devel/PPPort/PPPort.xs
19901            ! ext/Devel/PPPort/PPPort_pm.PL ext/Devel/PPPort/TODO
19902            ! ext/Devel/PPPort/parts/apicheck.pl
19903            ! ext/Devel/PPPort/parts/apidoc.fnc
19904            ! ext/Devel/PPPort/parts/base/5004050
19905            ! ext/Devel/PPPort/parts/base/5006000
19906            ! ext/Devel/PPPort/parts/base/5006001
19907            ! ext/Devel/PPPort/parts/base/5007002
19908            ! ext/Devel/PPPort/parts/base/5007003
19909            ! ext/Devel/PPPort/parts/base/5008000
19910            ! ext/Devel/PPPort/parts/base/5008001
19911            ! ext/Devel/PPPort/parts/base/5009000
19912            ! ext/Devel/PPPort/parts/base/5009003
19913            ! ext/Devel/PPPort/parts/embed.fnc
19914            ! ext/Devel/PPPort/parts/inc/Sv_set
19915            ! ext/Devel/PPPort/parts/inc/magic
19916            ! ext/Devel/PPPort/parts/inc/misc
19917            ! ext/Devel/PPPort/parts/todo/5004000
19918            ! ext/Devel/PPPort/parts/todo/5005000
19919            ! ext/Devel/PPPort/parts/todo/5006000
19920            ! ext/Devel/PPPort/parts/todo/5006001
19921            ! ext/Devel/PPPort/parts/todo/5007003
19922            ! ext/Devel/PPPort/parts/todo/5009003 ext/Devel/PPPort/soak
19923            ! ext/Devel/PPPort/t/Sv_set.t ext/Devel/PPPort/t/magic.t
19924            ! ext/Devel/PPPort/t/misc.t
19925 ____________________________________________________________________________
19926 [ 28258] By: nicholas                              on 2006/05/20  17:29:52
19927         Log: Abolish cop_io (the simple way) by storing the value in cop_hints_hash.
19928              Todo - store the in and out values under 2 keys, and avoid the need to
19929              create a temporary mortal SV while checking it.
19930      Branch: perl
19931            ! bytecode.pl cop.h embed.fnc embed.h ext/B/B.xs
19932            ! ext/B/B/Asmdata.pm ext/ByteLoader/byterun.c
19933            ! ext/ByteLoader/byterun.h mg.c op.c perl.c perl.h perlio.c
19934            ! perlio.h pp_ctl.c pp_sys.c proto.h sv.c
19935 ____________________________________________________________________________
19936 [ 28257] By: nicholas                              on 2006/05/20  15:27:28
19937         Log: Move the hints from op_private into cop_hints. This allows all 32 bits
19938              to be stored. Make B::Concise display the new hints field, and modify
19939              B::Deparse to use it.
19940      Branch: perl
19941            ! cop.h ext/B/B.pm ext/B/B.xs ext/B/B/Concise.pm
19942            ! ext/B/B/Deparse.pm ext/B/t/f_map.t ext/B/t/f_sort.t
19943            ! ext/B/t/optree_check.t ext/B/t/optree_concise.t
19944            ! ext/B/t/optree_constants.t ext/B/t/optree_misc.t
19945            ! ext/B/t/optree_samples.t ext/B/t/optree_sort.t
19946            ! ext/B/t/optree_specials.t ext/B/t/optree_varinit.t
19947            ! ext/ByteLoader/bytecode.h op.c perl.h
19948 ____________________________________________________________________________
19949 [ 28255] By: merijn                                on 2006/05/20  15:16:29
19950         Log: Small typo correction
19951      Branch: perl
19952            ! INSTALL
19953 ____________________________________________________________________________
19954 [ 28254] By: davem                                 on 2006/05/20  14:30:50
19955         Log: eval { s/$foo/die/e } leaked a scalar
19956      Branch: perl
19957            ! pp_ctl.c pp_hot.c
19958 ____________________________________________________________________________
19959 [ 28253] By: merijn                                on 2006/05/20  13:26:51
19960         Log: Subject: Re: Over-pious message from Configure?
19961              From: Dominic Dunlop <shouldbedomo@mac.com>
19962              Date: Thu, 18 May 2006 15:47:27 +0200
19963              Message-Id: <90C6E6BF-D1B1-4346-A893-1708E8E50534@mac.com>
19964      Branch: perl
19965            ! INSTALL
19966 ____________________________________________________________________________
19967 [ 28252] By: nicholas                              on 2006/05/20  12:31:09
19968         Log: Rename cop_hints to cop_hints_hash
19969      Branch: perl
19970            ! cop.h mg.c op.c perl.c pod/perlintern.pod pp_ctl.c scope.c
19971            ! scope.h sv.c
19972 ____________________________________________________________________________
19973 [ 28251] By: davem                                 on 2006/05/20  11:58:07
19974         Log: Perl segfaults; test case available
19975              sub f { s/$var/f()/e } could free the wrong RE
19976      Branch: perl
19977            ! cop.h pp_ctl.c pp_hot.c
19978 ____________________________________________________________________________
19979 [ 28250] By: nicholas                              on 2006/05/20  11:29:26
19980         Log: Abolish cop_arybase. Signal a non zero $[ with a hint flag, and store
19981              the value in the hints structure used for %^H.
19982      Branch: perl
19983            ! cop.h embed.fnc embed.h global.sym hv.c op.c perl.h proto.h
19984 ____________________________________________________________________________
19985 [ 28249] By: nicholas                              on 2006/05/20  10:27:23
19986         Log: Solaris was happy, but change 28247 removed the wrong dTHX as far as
19987              some other operating systems were concerned.
19988      Branch: perl
19989            ! perlio.c
19990 ____________________________________________________________________________
19991 [ 28248] By: davem                                 on 2006/05/20  00:43:42
19992         Log: SEGV with complicated regexp and long string
19993              PL_reg_maxiter was wrapping to a negative value
19994      Branch: perl
19995            ! op.c regexec.c
19996 ____________________________________________________________________________
19997 [ 28247] By: nicholas                              on 2006/05/19  22:48:38
19998         Log: Perl_croak() needs an aTHX_ in PerlIO_vsprintf().
19999      Branch: perl
20000            ! perlio.c
20001 ____________________________________________________________________________
20002 [ 28246] By: mhx                                   on 2006/05/19  22:11:44
20003         Log: There is no STASH type.
20004      Branch: perl
20005            ! sv.h
20006 ____________________________________________________________________________
20007 [ 28245] By: nicholas                              on 2006/05/19  21:44:14
20008         Log: Correct Perl_refcounted_he_chain_2hv() and its caller - it doesn't
20009              store a reference to the value, so don't pass it in a new SV.
20010      Branch: perl
20011            ! hv.c mg.c pod/perlintern.pod
20012 ____________________________________________________________________________
20013 [ 28244] By: stevep                                on 2006/05/19  20:15:10
20014         Log: Grrr...Perforce decided not to add the MANIFEST changes for change
20015              #28243.  Hateful indeed!
20016      Branch: perl
20017            ! MANIFEST
20018 ____________________________________________________________________________
20019 [ 28243] By: stevep                                on 2006/05/19  20:12:23
20020         Log: Shortening name of a Pod::Simple test case to allow the test to be 
20021              run on the VOS operating system.  Fixes "RT #38645: Test case name
20022              is too long".
20023      Branch: perl
20024           +> lib/Pod/Simple/t/search_25_glob_squaa.t
20025            - lib/Pod/Simple/t/search_25_glob_squaa_coloncolon_kleene.t
20026 ____________________________________________________________________________
20027 [ 28242] By: nicholas                              on 2006/05/19  20:11:57
20028         Log: Rebuild perltoc.pod.
20029      Branch: perl
20030            ! pod/perltoc.pod
20031 ____________________________________________________________________________
20032 [ 28241] By: nicholas                              on 2006/05/19  20:10:47
20033         Log: Add perlpragma.pod, which describes how to implement user pragmata.
20034      Branch: perl
20035            + pod/perlpragma.pod
20036            ! MANIFEST pod.lst pod/perl.pod vms/descrip_mms.template
20037            ! win32/pod.mak
20038 ____________________________________________________________________________
20039 [ 28239] By: nicholas                              on 2006/05/19  20:08:46
20040         Log: Add README.riscos to pod.lst
20041      Branch: perl
20042            ! pod.lst pod/perl.pod vms/descrip_mms.template win32/Makefile
20043            ! win32/makefile.mk
20044 ____________________________________________________________________________
20045 [ 28238] By: nicholas                              on 2006/05/19  20:08:21
20046         Log: pod/buildtoc has fussy ideas about the order of MANIFEST
20047      Branch: perl
20048            ! MANIFEST
20049 ____________________________________________________________________________
20050 [ 28237] By: stevep                                on 2006/05/19  18:36:13
20051         Log: Subject: [PATCH] strlcat aaargh
20052              From: Jarkko Hietaniemi <jhietaniemi@gmail.com>
20053              Date: Fri, 19 May 2006 20:44:46 +0300
20054              Message-ID: <446E040E.8030205@gmail.com>
20055      Branch: perl
20056            ! doio.c
20057 ____________________________________________________________________________
20058 [ 28236] By: nicholas                              on 2006/05/19  16:31:35
20059         Log: strlen(foo) rather than strchr(foo, 0) makes simpler code, and is
20060              likely to be a more efficient implementation.
20061      Branch: perl
20062            ! perlio.c
20063 ____________________________________________________________________________
20064 [ 28235] By: davem                                 on 2006/05/19  16:06:58
20065         Log: give a more useful example for $^V
20066      Branch: perl
20067            ! pod/perlvar.pod
20068 ____________________________________________________________________________
20069 [ 28234] By: rgs                                   on 2006/05/19  15:17:00
20070         Log: Subject: [PATCH] Re: [PATCH] Re: Change 28183 has broken 64-bit builds?
20071              From: Jarkko Hietaniemi <jhietaniemi@gmail.com>
20072              Date: Thu, 18 May 2006 22:44:14 +0300
20073              Message-ID: <446CCE8E.8010407@gmail.com>
20074      Branch: perl
20075            ! perl.h perlio.c util.c
20076 ____________________________________________________________________________
20077 [ 28232] By: rgs                                   on 2006/05/19  08:46:09
20078         Log: Adjust test following change #28225
20079      Branch: perl
20080            ! t/lib/h2ph.pht
20081 ____________________________________________________________________________
20082 [ 28231] By: davem                                 on 2006/05/19  00:14:15
20083         Log: lots of warnings with diagnostics and (warn or die)
20084              stop C<use diagnostics; warn "\n">  outputing lots of 'uninit'
20085              warnings.
20086      Branch: perl
20087            ! lib/diagnostics.pm
20088 ____________________________________________________________________________
20089 [ 28230] By: davem                                 on 2006/05/18  23:50:51
20090         Log: test some die codepaths in pp_enterwrite
20091      Branch: perl
20092            ! t/op/write.t
20093 ____________________________________________________________________________
20094 [ 28229] By: davem                                 on 2006/05/18  23:16:16
20095         Log: Subject:  [PATCH] threads core dump in BEGIN
20096              From:  "Jerry D. Hedden" <jerry@hedden.us>
20097              Date:  Thu, 18 May 2006 13:22:20 -0700
20098              Message-Id:  <20060518132220.fb30e530d17747c2b054d625b8945d88.f45de90925.wbe@email.secureserver.net>
20099      Branch: perl
20100            + ext/threads/t/blocks.t
20101            ! MANIFEST ext/threads/Changes ext/threads/README
20102            ! ext/threads/threads.pm ext/threads/threads.xs
20103 ____________________________________________________________________________
20104 [ 28228] By: rgs                                   on 2006/05/18  15:45:49
20105         Log: We can now remove DynaLoader from 1_compile.t
20106      Branch: perl
20107            ! t/lib/1_compile.t
20108 ____________________________________________________________________________
20109 [ 28227] By: rgs                                   on 2006/05/18  15:43:25
20110         Log: Nits in the DynaLoader test: make it warning-clean,
20111              and avoid checking OS- and locale-specific messages
20112      Branch: perl
20113            ! ext/DynaLoader/t/DynaLoader.t
20114 ____________________________________________________________________________
20115 [ 28226] By: stevep                                on 2006/05/18  15:16:40
20116         Log: Subject: [PATCH] Test script for DynaLoader
20117              From: Sébastien Aperghis-Tramoni <maddingue@free.fr>
20118              Date: Thu, 18 May 2006 16:46:00 +0200
20119              Message-ID: <1147963560.446c88a8891e1@imp1-g19.free.fr>
20120      Branch: perl
20121            + ext/DynaLoader/t/DynaLoader.t
20122            ! MANIFEST
20123 ____________________________________________________________________________
20124 [ 28225] By: rgs                                   on 2006/05/18  12:52:34
20125         Log: Subject: [perl #39130] h2ph generates incorrect code for '#if defined A || defined B' 
20126              From: Jason Vas Dias (via RT) <perlbug-followup@perl.org>
20127              Date: Thu, 11 May 2006 11:00:42 -0700
20128              Message-ID: <rt-3.0.11-39130-133411.1.91055283125046@perl.org>
20129      Branch: perl
20130            ! utils/h2ph.PL
20131 ____________________________________________________________________________
20132 [ 28224] By: rgs                                   on 2006/05/18  12:34:35
20133         Log: Subject: Re: [perl #39152] diagnostics.pm: "-traceonly" vs "-trace"
20134              From: "Fergal Daly" <fergal@esatclear.ie>
20135              Date: Wed, 17 May 2006 18:59:50 +0100
20136              Message-ID: <875029960605171059y286fe449nd39d6830ef2b229a@mail.gmail.com>
20137      Branch: perl
20138            ! lib/diagnostics.pm
20139 ____________________________________________________________________________
20140 [ 28223] By: rgs                                   on 2006/05/18  11:38:00
20141         Log: Subject: [PATCH] threads 1.28
20142              From: "Jerry D. Hedden" <jerry@hedden.us>
20143              Date: Wed, 17 May 2006 11:45:32 -0700
20144              Message-ID: <20060517114532.fb30e530d17747c2b054d625b8945d88.ca725822fc.wbe@email.secureserver.net>
20145      Branch: perl
20146            ! ext/threads/Changes ext/threads/README ext/threads/t/kill.t
20147            ! ext/threads/threads.pm ext/threads/threads.xs
20148 ____________________________________________________________________________
20149 [ 28222] By: rgs                                   on 2006/05/18  06:30:09
20150         Log: Adjust calling of Perl_va_copy(), noticed by Jarkko
20151      Branch: perl
20152            ! util.c
20153 ____________________________________________________________________________
20154 [ 28221] By: nicholas                              on 2006/05/17  23:13:51
20155         Log: Another SvVOK(). I believe that this is the last.
20156      Branch: perl
20157            ! util.c
20158 ____________________________________________________________________________
20159 [ 28219] By: rgs                                   on 2006/05/17  21:01:54
20160         Log: Oops, missed a SvVOK.
20161      Branch: perl
20162            ! util.c
20163 ____________________________________________________________________________
20164 [ 28218] By: rgs                                   on 2006/05/17  20:54:23
20165         Log: Add a new macro SvVSTRING_mg that returns vstring magic, if any.
20166              SvVOK used to do that, in stealth mode, but now it returns a
20167              boolean like it used to. Patch suggested by John Peacock.
20168      Branch: perl
20169            ! sv.c sv.h
20170 ____________________________________________________________________________
20171 [ 28217] By: rgs                                   on 2006/05/17  19:55:30
20172         Log: Parenthesize uses of macro arguments
20173      Branch: perl
20174            ! perl.h
20175 ____________________________________________________________________________
20176 [ 28216] By: rgs                                   on 2006/05/17  19:50:54
20177         Log: Subject: Re: Change 28183 has broken 64-bit builds?
20178              From: Jarkko Hietaniemi <jhietaniemi@gmail.com>
20179              Date: Wed, 17 May 2006 22:19:51 +0300
20180              Message-ID: <446B7757.8030301@gmail.com>
20181      Branch: perl
20182            ! perl.h perlio.c pod/perlapi.pod util.c
20183 ____________________________________________________________________________
20184 [ 28215] By: steveh                                on 2006/05/17  17:06:26
20185         Log: Subject: Re: [perl #39145] win32, @_ and fork crashing in dounwind
20186              From: Dave Mitchell <davem@iabyn.com>
20187              Date: Wed, 17 May 2006 17:38:16 +0100
20188              Message-ID: <20060517163816.GN17109@iabyn.com>
20189              
20190              (Dave's fix, plus a test taken from [perl #39145])
20191      Branch: perl
20192            ! sv.c t/op/fork.t
20193 ____________________________________________________________________________
20194 [ 28214] By: stevep                                on 2006/05/17  15:02:45
20195         Log: Subject: [PATCH] IO::Compress* 2.000_12
20196              From: "Paul Marquess" <paul.marquess@ntlworld.com>
20197              Date: Wed, 17 May 2006 13:45:16 +0100
20198              Message-ID: <00c101c679af$c0305af0$2405140a@myopwv.com>
20199      Branch: perl
20200            + ext/Compress/IO/Zlib/lib/IO/Compress/Zlib/Extra.pm
20201            + ext/Compress/Raw/Zlib/Changes
20202            ! MANIFEST ext/Compress/IO/Base/README
20203            ! ext/Compress/IO/Base/lib/IO/Compress/Base.pm
20204            ! ext/Compress/IO/Base/lib/IO/Compress/Base/Common.pm
20205            ! ext/Compress/IO/Base/lib/IO/Uncompress/AnyUncompress.pm
20206            ! ext/Compress/IO/Base/lib/IO/Uncompress/Base.pm
20207            ! ext/Compress/IO/Base/t/01misc.t ext/Compress/IO/Zlib/Changes
20208            ! ext/Compress/IO/Zlib/README
20209            ! ext/Compress/IO/Zlib/lib/IO/Compress/Adapter/Deflate.pm
20210            ! ext/Compress/IO/Zlib/lib/IO/Compress/Adapter/Identity.pm
20211            ! ext/Compress/IO/Zlib/lib/IO/Compress/Deflate.pm
20212            ! ext/Compress/IO/Zlib/lib/IO/Compress/Gzip.pm
20213            ! ext/Compress/IO/Zlib/lib/IO/Compress/Gzip/Constants.pm
20214            ! ext/Compress/IO/Zlib/lib/IO/Compress/RawDeflate.pm
20215            ! ext/Compress/IO/Zlib/lib/IO/Compress/Zip.pm
20216            ! ext/Compress/IO/Zlib/lib/IO/Compress/Zip/Constants.pm
20217            ! ext/Compress/IO/Zlib/lib/IO/Compress/Zlib/Constants.pm
20218            ! ext/Compress/IO/Zlib/lib/IO/Uncompress/Adapter/Identity.pm
20219            ! ext/Compress/IO/Zlib/lib/IO/Uncompress/Adapter/Inflate.pm
20220            ! ext/Compress/IO/Zlib/lib/IO/Uncompress/AnyInflate.pm
20221            ! ext/Compress/IO/Zlib/lib/IO/Uncompress/Gunzip.pm
20222            ! ext/Compress/IO/Zlib/lib/IO/Uncompress/Inflate.pm
20223            ! ext/Compress/IO/Zlib/lib/IO/Uncompress/RawInflate.pm
20224            ! ext/Compress/IO/Zlib/lib/IO/Uncompress/Unzip.pm
20225            ! ext/Compress/IO/Zlib/t/004gziphdr.t
20226            ! ext/Compress/IO/Zlib/t/101truncate-zip.t
20227            ! ext/Compress/Raw/Zlib/README
20228            ! ext/Compress/Raw/Zlib/lib/Compress/Raw/Zlib.pm
20229            ! ext/Compress/Zlib/Changes ext/Compress/Zlib/README
20230            ! ext/Compress/Zlib/lib/Compress/Zlib.pm
20231            ! t/lib/compress/CompTestUtils.pm x2p/find2perl.PL
20232 ____________________________________________________________________________
20233 [ 28210] By: nicholas                              on 2006/05/16  16:41:45
20234         Log: Revert change 27513
20235              [Make the original versions of relocated paths available from
20236              %Config::Config with the prefix "raw_". Not sure if "raw_" is the
20237              best choice.]
20238      Branch: perl
20239            ! configpm
20240 ____________________________________________________________________________
20241 [ 28209] By: rgs                                   on 2006/05/16  16:14:46
20242         Log: Subject: Re: [PATCH]  upgrade bytes_to_uni
20243              From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
20244              Date: Mon, 15 May 2006 22:39:58 +0900
20245              Message-Id: <20060515223901.F3B0.BQW10602@nifty.com>
20246      Branch: perl
20247            ! pp_pack.c
20248 ____________________________________________________________________________
20249 [ 28206] By: rgs                                   on 2006/05/16  13:14:12
20250         Log: Subject: [PATCH] Refactoring reghops
20251              From: andy@petdance.com (Andy Lester)
20252              Date: Mon, 15 May 2006 08:54:24 -0500
20253              Message-ID: <20060515135424.GA31585@petdance.com>
20254      Branch: perl
20255            ! embed.fnc proto.h regexec.c
20256 ____________________________________________________________________________
20257 [ 28205] By: rgs                                   on 2006/05/16  13:09:17
20258         Log: Subject: [PATCH] refactoring out S_regoptail
20259              From: andy@petdance.com (Andy Lester)
20260              Date: Sun, 14 May 2006 23:15:18 -0500
20261              Message-ID: <20060515041518.GA15745@petdance.com>
20262      Branch: perl
20263            ! embed.fnc embed.h proto.h regcomp.c
20264 ____________________________________________________________________________
20265 [ 28202] By: nicholas                              on 2006/05/16  10:00:55
20266         Log: Take advantage of the bug that binexp ignores the Configure
20267              installprefix, by using initialinstalllocation rather than binexp
20268              to determine the #! line for installed scripts. This way they are at
20269              least correct initially for a relocatable @INC perl, rather than
20270              starting as .../../bin/perl
20271      Branch: perl
20272            ! Configure
20273 ____________________________________________________________________________
20274 [ 28200] By: stevep                                on 2006/05/15  16:43:44
20275         Log: Clarification on what Perl does to floating points in the modulus 
20276              operation.
20277      Branch: perl
20278            ! pod/perlop.pod
20279 ____________________________________________________________________________
20280 [ 28198] By: nicholas                              on 2006/05/15  15:11:15
20281         Log: Encode run-time relocation of file names in packlist with a relocate_as
20282              attribute. With this, unmodified instmodsh correctly verifies installed
20283              modules even after relocation.
20284      Branch: perl
20285            ! lib/ExtUtils/Packlist.pm
20286 ____________________________________________________________________________
20287 [ 28197] By: stevep                                on 2006/05/15  14:13:46
20288         Log: Upgrade to Digest-SHA-5.37
20289      Branch: perl
20290            ! ext/Digest/SHA/Changes ext/Digest/SHA/README
20291            ! ext/Digest/SHA/SHA.pm ext/Digest/SHA/bin/shasum
20292            ! ext/Digest/SHA/src/hmac.c ext/Digest/SHA/src/hmac.h
20293            ! ext/Digest/SHA/src/sha.c ext/Digest/SHA/src/sha.h
20294 ____________________________________________________________________________
20295 [ 28196] By: nicholas                              on 2006/05/15  13:57:25
20296         Log: Simplify the implementation in ExtUtils::Packlist::read.
20297      Branch: perl
20298            ! lib/ExtUtils/Packlist.pm
20299 ____________________________________________________________________________
20300 [ 28195] By: rgs                                   on 2006/05/15  11:29:59
20301         Log: Subject: [REPATCH universal.c] Make sv_derived_from Documentation Clearer
20302              From: chromatic <chromatic@wgz.org>
20303              Date: Sun, 14 May 2006 16:51:36 -0700
20304              Message-Id: <200605141651.37181.chromatic@wgz.org>
20305      Branch: perl
20306            ! pod/perlapi.pod universal.c
20307 ____________________________________________________________________________
20308 [ 28194] By: rgs                                   on 2006/05/15  09:43:02
20309         Log: Subject: [PATCH] S_reguni should return its length
20310              From: andy@petdance.com (Andy Lester)
20311              Date: Sun, 14 May 2006 09:46:32 -0500
20312              Message-ID: <20060514144632.GA20935@petdance.com>
20313      Branch: perl
20314            ! embed.fnc embed.h proto.h regcomp.c
20315 ____________________________________________________________________________
20316 [ 28193] By: rgs                                   on 2006/05/15  08:33:53
20317         Log: Subject: [PATCH] strange encodings upsets pp_chr
20318              From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
20319              Date: Sun, 14 May 2006 19:57:28 +0900
20320              Message-Id: <20060514195532.5422.BQW10602@nifty.com>
20321      Branch: perl
20322            + t/uni/chr.t
20323            ! MANIFEST pp.c t/op/chr.t t/op/ord.t
20324 ____________________________________________________________________________
20325 [ 28192] By: nicholas                              on 2006/05/14  12:27:19
20326         Log: TEST needs to binmode the file handle that is reading the TAP, else it
20327              can get killed if TEST's environment has made it default all opens to
20328              UTF-8 but the TAP is not UTF-8.
20329      Branch: perl
20330            ! t/TEST
20331 ____________________________________________________________________________
20332 [ 28190] By: nicholas                              on 2006/05/14  10:33:39
20333         Log: Upgrade to Test::Harness 2.58.
20334      Branch: perl
20335            ! lib/Test/Harness.pm
20336 ____________________________________________________________________________
20337 [ 28189] By: nicholas                              on 2006/05/13  15:48:24
20338         Log: A Configure probe for C99 variadic macros, based on code from Jarkko.
20339      Branch: perl
20340            ! Configure Cross/config.sh-arm-linux NetWare/config.wc
20341            ! Porting/Glossary config_h.SH configure.com epoc/config.sh
20342            ! plan9/config_sh.sample symbian/config.sh uconfig.sh
20343            ! win32/config.bc win32/config.gc win32/config.vc
20344            ! win32/config.vc64
20345 ____________________________________________________________________________
20346 [ 28188] By: nicholas                              on 2006/05/13  12:57:50
20347         Log: Only ask about MAD for 5.9.0 and greater. Otherwise silently select
20348              'n'.
20349      Branch: perl
20350            ! Configure
20351 ____________________________________________________________________________
20352 [ 28187] By: nicholas                              on 2006/05/13  11:26:04
20353         Log: Subject: t/uni/overload.t
20354              From: Jarkko Hietaniemi <jhietaniemi@gmail.com>
20355              Message-ID: <4465988C.9080407@gmail.com>
20356              Date: Sat, 13 May 2006 11:27:56 +0300
20357      Branch: perl
20358            ! t/uni/overload.t
20359 ____________________________________________________________________________
20360 [ 28186] By: nicholas                              on 2006/05/13  10:36:49
20361         Log: Subject: [PATCH] sv.c: printf %d wants int not size_t
20362              From: Jarkko Hietaniemi <jhi@cc.hut.fi>
20363              Message-Id: <200605130715.k4D7FWg3089581@kosh.hut.fi>
20364              Date: Sat, 13 May 2006 10:15:32 +0300 (EEST)
20365      Branch: perl
20366            ! sv.c
20367 ____________________________________________________________________________
20368 [ 28185] By: nicholas                              on 2006/05/13  10:36:18
20369         Log: Can't do require Foo if $tainted; because taint tunnels.
20370              (Documented, but I regard this as a serious practical deficiency in
20371              tainting) 
20372      Branch: perl
20373            ! lib/Tie/RefHash.pm
20374 ____________________________________________________________________________
20375 [ 28183] By: rgs                                   on 2006/05/12  20:57:07
20376         Log: Subject: Re: [PATCH] my_snprintf
20377              From: Jarkko Hietaniemi <jhietaniemi@gmail.com>
20378              Date: Fri, 12 May 2006 22:28:49 +0300
20379              Message-ID: <4464E1F1.9010706@gmail.com>
20380      Branch: perl
20381            ! embed.fnc global.sym perl.h perlio.c pod/perlapi.pod pp_ctl.c
20382            ! proto.h regcomp.c sv.c toke.c universal.c util.c
20383 ____________________________________________________________________________
20384 [ 28181] By: rgs                                   on 2006/05/12  16:55:36
20385         Log: Subject: AW: question on "len item/string item" with unpack()
20386              From: "Dintelmann, Peter" <Peter.Dintelmann@Dresdner-Bank.com>
20387              Date: Fri, 5 May 2006 13:20:24 +0200 
20388              Message-ID: <E9A2605289D8D7468B1A21EC24E59D2104979424@naimucx5.muc.allianz>
20389      Branch: perl
20390            ! pod/perlfunc.pod
20391 ____________________________________________________________________________
20392 [ 28180] By: rgs                                   on 2006/05/12  15:48:43
20393         Log: Subject: [PATCH]  upgrade bytes_to_uni
20394              From: andy@petdance.com (Andy Lester)
20395              Date: Fri, 12 May 2006 00:21:23 -0500
20396              Message-ID: <20060512052123.GA21648@petdance.com>
20397      Branch: perl
20398            ! embed.fnc embed.h pp_pack.c proto.h
20399 ____________________________________________________________________________
20400 [ 28179] By: rgs                                   on 2006/05/12  14:33:40
20401         Log: Subject: [PATCH] Proper use of static funcs in toke.c and pp_sys.c
20402              From: andy@petdance.com (Andy Lester)
20403              Date: Tue, 9 May 2006 12:27:30 -0500
20404              Message-ID: <20060509172730.GA5272@petdance.com>
20405      Branch: perl
20406            ! embed.fnc embed.h pp_sys.c proto.h toke.c
20407 ____________________________________________________________________________
20408 [ 28178] By: nicholas                              on 2006/05/12  14:08:45
20409         Log: The upgrade/croak order in Perl_sv_utf8_encode() seemed utterly
20410              backwards. It now checks for readonly *first*.
20411      Branch: perl
20412            ! sv.c
20413 ____________________________________________________________________________
20414 [ 28177] By: rgs                                   on 2006/05/12  13:09:29
20415         Log: Upgrade to Tie::RefHash 1.34, by Yuval Kogman
20416      Branch: perl
20417            + lib/Tie/RefHash/rebless.t lib/Tie/RefHash/storable.t
20418            ! MANIFEST lib/Tie/RefHash.pm lib/Tie/RefHash/refhash.t
20419            ! lib/Tie/RefHash/threaded.t
20420 ____________________________________________________________________________
20421 [ 28176] By: rgs                                   on 2006/05/12  12:23:03
20422         Log: Subject: [PATCH] Speed up utf8.c a bit
20423              From: andy@petdance.com (Andy Lester)
20424              Date: Thu, 11 May 2006 22:41:01 -0500
20425              Message-ID: <20060512034101.GA10709@petdance.com>
20426      Branch: perl
20427            ! utf8.c
20428 ____________________________________________________________________________
20429 [ 28175] By: rgs                                   on 2006/05/12  12:13:03
20430         Log: Subject: [PATCH] Fixing embed.fnc
20431              From: andy@petdance.com (Andy Lester)
20432              Date: Thu, 11 May 2006 21:54:10 -0500
20433              Message-ID: <20060512025410.GA32709@petdance.com>
20434      Branch: perl
20435            ! embed.fnc proto.h
20436 ____________________________________________________________________________
20437 [ 28174] By: nicholas                              on 2006/05/12  11:47:40
20438         Log: Threads and signals. Delicious. Tweak change 28168 to add a local
20439              signal handler in the sleeping thread, because some operating systems
20440              deliver the SIGINT to that thread rather than the signalling thread.
20441      Branch: perl
20442            ! ext/threads/t/kill.t
20443 ____________________________________________________________________________
20444 [ 28173] By: rgs                                   on 2006/05/12  11:40:51
20445         Log: Subject: [PATCH] Better unsafe signals info in threads.pm
20446              From: "Jerry D. Hedden" <jerry@hedden.us>
20447              Date: Thu, 11 May 2006 11:50:15 -0700
20448              Message-ID: <20060511115015.fb30e530d17747c2b054d625b8945d88.8b4855700b.wbe@email.secureserver.net>
20449      Branch: perl
20450            ! ext/threads/threads.pm
20451 ____________________________________________________________________________
20452 [ 28172] By: nicholas                              on 2006/05/12  09:47:29
20453         Log: Fix concise-xs.t following the changes to B::Deparse.
20454      Branch: perl
20455            ! ext/B/t/concise-xs.t
20456 ____________________________________________________________________________
20457 [ 28171] By: nicholas                              on 2006/05/11  21:44:06
20458         Log: Tk spots that S_glob_2pv might be called from *_nolen, so we need to
20459              check that len is non-NULL before assigning to it.
20460      Branch: perl
20461            ! sv.c
20462 ____________________________________________________________________________
20463 [ 28168] By: rgs                                   on 2006/05/11  16:47:33
20464         Log: Subject: [PATCH] Thread signalling [REVISED]
20465              From: "Jerry D. Hedden" <jerry@hedden.us>
20466              Date: Thu, 11 May 2006 08:55:39 -0700
20467              Message-ID: <20060511085539.fb30e530d17747c2b054d625b8945d88.a90037f085.wbe@email.secureserver.net>
20468      Branch: perl
20469            + ext/threads/t/kill.t
20470            ! MANIFEST ext/threads/Changes ext/threads/Makefile.PL
20471            ! ext/threads/threads.pm ext/threads/threads.xs
20472 ____________________________________________________________________________
20473 [ 28166] By: rgs                                   on 2006/05/11  16:06:06
20474         Log: Deparse state variables.
20475      Branch: perl
20476            ! ext/B/B/Deparse.pm
20477 ____________________________________________________________________________
20478 [ 28156] By: stevep                                on 2006/05/11  00:09:53
20479         Log: Adding a mention of STDIN processing by qx// as requested by 
20480              RT #34288: perlop: qx/STRING/: mention STDIN
20481      Branch: perl
20482            ! pod/perlop.pod
20483 ____________________________________________________________________________
20484 [ 28155] By: stevep                                on 2006/05/10  23:02:20
20485         Log: Add -fno-delete-null-pointer-checks to ccflags on Itaniums when 
20486              compiling with gcc's 3.2, 3.3, or 3.4.  This fixes RT #37156.
20487      Branch: perl
20488            ! hints/linux.sh
20489 ____________________________________________________________________________
20490 [ 28152] By: stevep                                on 2006/05/10  15:03:03
20491         Log: Upgrade to Encode-2.17
20492      Branch: perl
20493            ! ext/Encode/Changes ext/Encode/Encode.pm ext/Encode/encoding.pm
20494 ____________________________________________________________________________
20495 [ 28150] By: nicholas                              on 2006/05/10  14:08:43
20496         Log: no 5.9.4; should fail in version 5.9.4.
20497              Improve the diagnostics and test names in t/comp/use.t
20498      Branch: perl
20499            ! pp_ctl.c t/comp/use.t
20500 ____________________________________________________________________________
20501 [ 28149] By: nicholas                              on 2006/05/10  13:08:49
20502         Log: Convert use.t to an inlined is/isnt/like implementation, to give better
20503              diagnostics.
20504      Branch: perl
20505            ! t/comp/use.t
20506 ____________________________________________________________________________
20507 [ 28148] By: davem                                 on 2006/05/10  01:32:10
20508         Log: disable WARN and DIE hooks during constant folding
20509      Branch: perl
20510            ! op.c t/comp/fold.t util.c warnings.h warnings.pl
20511 ____________________________________________________________________________
20512 [ 28146] By: nicholas                              on 2006/05/09  21:42:18
20513         Log: Change 28145 means that Perl_allocmy() can take a const char *name.
20514      Branch: perl
20515            ! embed.fnc op.c proto.h
20516 ____________________________________________________________________________
20517 [ 28145] By: nicholas                              on 2006/05/09  20:42:03
20518         Log: Simplify the non-printable name error reporting code in Perl_allocmy().
20519      Branch: perl
20520            ! op.c
20521 ____________________________________________________________________________
20522 [ 28144] By: nicholas                              on 2006/05/09  20:10:12
20523         Log: In Perl_Gv_AMupdate(), there's no need to call sv_unmagic() if we know
20524              the magic isn't there.
20525      Branch: perl
20526            ! gv.c
20527 ____________________________________________________________________________
20528 [ 28143] By: nicholas                              on 2006/05/09  19:31:04
20529         Log: Gv_AMupdate() always creates magic, so mg can never be NULL.
20530      Branch: perl
20531            ! gv.c
20532 ____________________________________________________________________________
20533 [ 28142] By: nicholas                              on 2006/05/09  16:35:25
20534         Log: Two signed array indicies that Coverity spots should be unsigned.
20535      Branch: perl
20536            ! ext/POSIX/POSIX.xs
20537 ____________________________________________________________________________
20538 [ 28141] By: nicholas                              on 2006/05/09  16:04:25
20539         Log: Ressurect change 27824, which plugs a resource leak in uncalled code.
20540      Branch: perl
20541            ! ext/Encode/Encode.xs
20542 ____________________________________________________________________________
20543 [ 28140] By: rgs                                   on 2006/05/09  15:23:55
20544         Log: Subject: wince crosscompile patch for 28132
20545              From: Vadim <vadim@vkonovalov.ru>
20546              Date: Tue, 09 May 2006 15:09:43 +0400
20547              Message-ID: <44607877.90603@vkonovalov.ru>
20548      Branch: perl
20549            ! INSTALL perl.h perlio.c win32/Makefile.ce win32/config.ce
20550            ! win32/config_H.ce
20551 ____________________________________________________________________________
20552 [ 28139] By: rgs                                   on 2006/05/09  14:03:30
20553         Log: POD fixes
20554      Branch: perl
20555            ! lib/DBM_Filter/compress.pm lib/DBM_Filter/encode.pm
20556            ! lib/DBM_Filter/int32.pm lib/DBM_Filter/null.pm
20557            ! lib/DBM_Filter/utf8.pm
20558 ____________________________________________________________________________
20559 [ 28138] By: rgs                                   on 2006/05/09  13:45:43
20560         Log: Subject: Re: [PATCH] ext/IPC/SysV/t/ipcsysv.t using test.pl
20561              From: David Landgren <david@landgren.net>
20562              Date: Tue, 09 May 2006 13:03:22 +0200
20563              Message-ID: <446076FA.6010409@landgren.net>
20564      Branch: perl
20565            ! ext/IPC/SysV/t/sem.t
20566 ____________________________________________________________________________
20567 [ 28137] By: rgs                                   on 2006/05/09  13:18:34
20568         Log: Fix another Coverity problem by adding an assert that says that
20569              some string we got from the lexer is null-terminated
20570      Branch: perl
20571            ! op.c
20572 ____________________________________________________________________________
20573 [ 28136] By: rgs                                   on 2006/05/09  13:10:01
20574         Log: Fix a logic error in conditional found by Coverity
20575      Branch: perl
20576            ! op.c
20577 ____________________________________________________________________________
20578 [ 28135] By: davem                                 on 2006/05/09  11:43:55
20579         Log: allow exit during fold_constants
20580              eg BEGIN { $SIG{__WARN__} = sub{exit};} "a" == "b" 
20581      Branch: perl
20582            ! op.c
20583 ____________________________________________________________________________
20584 [ 28134] By: steveh                                on 2006/05/09  08:04:29
20585         Log: Subject: [PATCH] 'threads' patch to fix threaded build on Win32
20586              From: "Jerry D. Hedden" <jerry@hedden.us>
20587              Date: Mon, 08 May 2006 10:23:33 -0700
20588              Message-ID: <20060508102333.fb30e530d17747c2b054d625b8945d88.1e447744fc.wbe@email.secureserver.net>
20589      Branch: perl
20590            ! ext/threads/Changes ext/threads/README ext/threads/threads.pm
20591            ! ext/threads/threads.xs
20592 ____________________________________________________________________________
20593 [ 28133] By: rgs                                   on 2006/05/09  07:27:37
20594         Log: Subject: perlop.pod doc patch: I/O operators
20595              From: Ash Berlin <ash@cpan.org>
20596              Date: Sat, 06 May 2006 14:16:00 +0100
20597              Message-ID: <445CA190.1070105@cpan.org>
20598      Branch: perl
20599            ! pod/perlop.pod
20600 ____________________________________________________________________________
20601 [ 28132] By: stevep                                on 2006/05/09  02:16:18
20602         Log: Subject: [PATCH] PERL_MEM_LOG enhancements
20603              From: Jarkko Hietaniemi <jhietaniemi@gmail.com>
20604              Date: Sat, 06 May 2006 11:21:02 +0300
20605              Message-ID: <445C5C6E.6070201@gmail.com>
20606      Branch: perl
20607            ! util.c
20608 ____________________________________________________________________________
20609 [ 28131] By: nicholas                              on 2006/05/08  21:11:37
20610         Log: Subject: [PATCH] ext/IPC/SysV/t/ipcsysv.t using test.pl
20611              From: David Landgren <david@landgren.net>
20612              Message-ID: <445B694B.8060901@landgren.net>
20613              Date: Fri, 05 May 2006 17:03:39 +0200
20614              
20615              Subject: Re: [PATCH] ext/IPC/SysV/t/sem.t using test.pl
20616              From: David Landgren <david@landgren.net>
20617              Message-ID: <445B75EF.3000100@landgren.net>
20618              Date: Fri, 05 May 2006 17:57:35 +0200
20619      Branch: perl
20620            ! ext/IPC/SysV/t/ipcsysv.t ext/IPC/SysV/t/sem.t
20621 ____________________________________________________________________________
20622 [ 28127] By: stevep                                on 2006/05/08  19:01:56
20623         Log: Rename lib/Text/Balanced/t/00.load.t to 
20624              lib/Text/Balanced/t/00-load.t and restore a test to 
20625              lib/Text/Balanced/t/extmul.t.
20626      Branch: perl
20627           +> lib/Text/Balanced/t/00-load.t
20628            - lib/Text/Balanced/t/00.load.t
20629            ! MANIFEST lib/Text/Balanced/t/extmul.t
20630 ____________________________________________________________________________
20631 [ 28126] By: stevep                                on 2006/05/08  18:46:16
20632         Log: Version bump and typo fix from change #28125.
20633      Branch: perl
20634            ! lib/Text/Balanced.pm
20635 ____________________________________________________________________________
20636 [ 28125] By: stevep                                on 2006/05/08  18:37:47
20637         Log: Rollback two changes in Text::Balanced which cause test failures in the
20638              CPAN and bleadperl version of the tests.  Also, the previous bleadperl
20639              version of one test file is a bit more comprehensive than what was in
20640              CPAN, so it has been completely restored.
20641      Branch: perl
20642            ! lib/Text/Balanced.pm lib/Text/Balanced/t/extqlk.t
20643 ____________________________________________________________________________
20644 [ 28122] By: stevep                                on 2006/05/08  16:47:39
20645         Log: Upgrade to Digest-SHA-5.36.  Actually bumped to 5.36_01 as
20646              change #27352 has not yet been applied to the CPAN version.
20647      Branch: perl
20648            ! ext/Digest/SHA/Changes ext/Digest/SHA/Makefile.PL
20649            ! ext/Digest/SHA/README ext/Digest/SHA/SHA.pm
20650            ! ext/Digest/SHA/bin/shasum ext/Digest/SHA/src/hmac.c
20651            ! ext/Digest/SHA/src/hmac.h ext/Digest/SHA/src/sha.c
20652            ! ext/Digest/SHA/src/sha.h ext/Digest/SHA/t/nist/Readme.txt
20653            ! ext/Digest/SHA/t/nist/bit-hashes.sha1
20654            ! ext/Digest/SHA/t/nist/bit-messages.sha1
20655            ! ext/Digest/SHA/t/nist/byte-hashes.sha1
20656            ! ext/Digest/SHA/t/nist/byte-messages.sha1
20657 ____________________________________________________________________________
20658 [ 28118] By: nicholas                              on 2006/05/08  11:23:15
20659         Log: Tie::RefHash is now dual life, maintained by Yuval Kogman.
20660      Branch: perl
20661            ! Porting/Maintainers.pl
20662 ____________________________________________________________________________
20663 [ 28116] By: merijn                                on 2006/05/07  14:18:45
20664         Log: Remvove code that gets undone in the next line.
20665              Keep the documentation part.
20666      Branch: perl
20667            ! hints/hpux.sh
20668 ____________________________________________________________________________
20669 [ 28108] By: stevep                                on 2006/05/05  16:26:48
20670         Log: These Module::Build tests depended on STDIN.  Unfortunately, cron
20671              closes STDIN, so these build failures were only seen while 
20672              running smokes through cron.
20673      Branch: perl
20674            ! lib/Module/Build/t/extend.t
20675 ____________________________________________________________________________
20676 [ 28106] By: rgs                                   on 2006/05/05  12:48:19
20677         Log: Implement state array and state hashes. Initialisation assignment
20678              to state arrays or hashes is not implemented yet.
20679      Branch: perl
20680            ! ext/B/B/Concise.pm pp.c t/op/state.t
20681 ____________________________________________________________________________
20682 [ 28105] By: stevep                                on 2006/05/05  12:40:41
20683         Log: Upgrade to Text-Balanced-1.98
20684      Branch: perl
20685            + lib/Text/Balanced/t/00.load.t
20686            + lib/Text/Balanced/t/pod-coverage.t lib/Text/Balanced/t/pod.t
20687            ! MANIFEST lib/Text/Balanced.pm lib/Text/Balanced/Changes
20688            ! lib/Text/Balanced/t/extcbk.t lib/Text/Balanced/t/extmul.t
20689            ! lib/Text/Balanced/t/extqlk.t lib/Text/Balanced/t/exttag.t
20690            ! lib/Text/Balanced/t/extvar.t lib/Text/Balanced/t/gentag.t
20691 ____________________________________________________________________________
20692 [ 28104] By: rgs                                   on 2006/05/05  11:32:36
20693         Log: Subject: [PATCH] threads - stack size support
20694              From: "Jerry D. Hedden" <jerry@hedden.us>
20695              Date: Thu, 04 May 2006 10:07:58 -0700
20696              Message-ID: <20060504100758.fb30e530d17747c2b054d625b8945d88.1ee893a99c.wbe@email.secureserver.net>
20697      Branch: perl
20698            + ext/threads/t/stack.t ext/threads/t/stack_env.t
20699            ! MANIFEST ext/threads/Changes ext/threads/README
20700            ! ext/threads/threads.pm ext/threads/threads.xs
20701 ____________________________________________________________________________
20702 [ 28103] By: stevep                                on 2006/05/05  01:26:08
20703         Log: Teach checkAUTHORS.pl about Sarathy's new email address.
20704      Branch: perl
20705            ! Porting/checkAUTHORS.pl
20706 ____________________________________________________________________________
20707 [ 28102] By: stevep                                on 2006/05/05  01:12:41
20708         Log: Subject: [PATCH] Email address changes
20709              From: "Jan Dubois" <jand@activestate.com>
20710              Date: Thu, 4 May 2006 15:28:19 -0700
20711              Message-ID: <007101c66fca$0b651a50$2217a8c0@candy>
20712      Branch: perl
20713            ! AUTHORS
20714 ____________________________________________________________________________
20715 [ 28101] By: stevep                                on 2006/05/04  20:03:42
20716         Log: Upgrade to ExtUtils-Install-1.40
20717      Branch: perl
20718            ! lib/ExtUtils/Install.pm
20719 ____________________________________________________________________________
20720 [ 28100] By: rgs                                   on 2006/05/04  16:37:28
20721         Log: Subject: RE: [PATCH-for-28089] wince yet another step
20722              From: "Konovalov, Vadim Vladimirovich (Vadim)** CTR **" <vkonovalov@Lucent.com>
20723              Date: Thu, 4 May 2006 17:32:12 +0200 
20724              Message-ID: <E3FB32585BF1D411B9E900805FF51A0801BCB454@ru0022exch001u.ru.lucent.com>
20725      Branch: perl
20726            ! README.ce win32/perllib.c win32/vmem.h win32/win32.h
20727 ____________________________________________________________________________
20728 [ 28099] By: rgs                                   on 2006/05/04  12:51:51
20729         Log: Subject: [PATCH] threads - formatting [REVISED]
20730              From: "Jerry D. Hedden" <jerry@hedden.us>
20731              Date: Wed, 03 May 2006 12:34:34 -0700
20732              Message-ID: <20060503123433.fb30e530d17747c2b054d625b8945d88.d352e5da51.wbe@email.secureserver.net>
20733      Branch: perl
20734            ! ext/threads/README ext/threads/t/basic.t ext/threads/t/end.t
20735            ! ext/threads/t/join.t ext/threads/t/libc.t ext/threads/t/list.t
20736            ! ext/threads/t/problems.t ext/threads/t/stress_cv.t
20737            ! ext/threads/t/stress_re.t ext/threads/t/stress_string.t
20738            ! ext/threads/t/thread.t ext/threads/threads.pm
20739            ! ext/threads/threads.xs
20740 ____________________________________________________________________________
20741 [ 28098] By: rgs                                   on 2006/05/04  12:06:33
20742         Log: Upgrade to Encode 2.16
20743      Branch: perl
20744            ! ext/Encode/Byte/Byte.pm ext/Encode/Byte/Makefile.PL
20745            ! ext/Encode/CN/CN.pm ext/Encode/CN/Makefile.PL
20746            ! ext/Encode/Changes ext/Encode/EBCDIC/EBCDIC.pm
20747            ! ext/Encode/EBCDIC/Makefile.PL ext/Encode/Encode.pm
20748            ! ext/Encode/Encode.xs ext/Encode/Encode/Makefile_PL.e2x
20749            ! ext/Encode/Encode/encode.h ext/Encode/JP/JP.pm
20750            ! ext/Encode/JP/Makefile.PL ext/Encode/KR/KR.pm
20751            ! ext/Encode/KR/Makefile.PL ext/Encode/Makefile.PL
20752            ! ext/Encode/Symbol/Makefile.PL ext/Encode/Symbol/Symbol.pm
20753            ! ext/Encode/TW/Makefile.PL ext/Encode/TW/TW.pm
20754            ! ext/Encode/Unicode/Makefile.PL ext/Encode/Unicode/Unicode.pm
20755            ! ext/Encode/Unicode/Unicode.xs ext/Encode/bin/enc2xs
20756            ! ext/Encode/bin/piconv ext/Encode/bin/ucm2table
20757            ! ext/Encode/bin/ucmlint ext/Encode/bin/ucmsort
20758            ! ext/Encode/bin/unidump ext/Encode/encengine.c
20759            ! ext/Encode/encoding.pm ext/Encode/lib/Encode/Alias.pm
20760            ! ext/Encode/lib/Encode/CJKConstants.pm
20761            ! ext/Encode/lib/Encode/CN/HZ.pm ext/Encode/lib/Encode/Config.pm
20762            ! ext/Encode/lib/Encode/Encoder.pm
20763            ! ext/Encode/lib/Encode/Encoding.pm
20764            ! ext/Encode/lib/Encode/Guess.pm ext/Encode/lib/Encode/JP/H2Z.pm
20765            ! ext/Encode/lib/Encode/JP/JIS7.pm
20766            ! ext/Encode/lib/Encode/KR/2022_KR.pm
20767            ! ext/Encode/lib/Encode/MIME/Header.pm
20768            ! ext/Encode/lib/Encode/MIME/Header/ISO_2022_JP.pm
20769            ! ext/Encode/lib/Encode/PerlIO.pod
20770            ! ext/Encode/lib/Encode/Unicode/UTF7.pm ext/Encode/t/Aliases.t
20771            ! ext/Encode/t/CJKT.t ext/Encode/t/Encode.t
20772            ! ext/Encode/t/Unicode.t ext/Encode/t/at-cn.t
20773            ! ext/Encode/t/at-tw.t ext/Encode/t/enc_data.t
20774            ! ext/Encode/t/enc_eucjp.t ext/Encode/t/enc_module.t
20775            ! ext/Encode/t/enc_utf8.t ext/Encode/t/encoding.t
20776            ! ext/Encode/t/fallback.t ext/Encode/t/guess.t
20777            ! ext/Encode/t/jperl.t ext/Encode/t/mime-header.t
20778            ! ext/Encode/t/mime_header_iso2022jp.t ext/Encode/t/perlio.t
20779            ! ext/Encode/t/rt.pl ext/Encode/t/unibench.pl
20780            ! ext/Encode/t/utf8strict.t
20781 ____________________________________________________________________________
20782 [ 28097] By: rgs                                   on 2006/05/04  11:32:05
20783         Log: Resubmit change #28095
20784      Branch: perl
20785            ! t/op/grep.t
20786 ____________________________________________________________________________
20787 [ 28096] By: steveh                                on 2006/05/04  11:22:04
20788         Log: Subject: [PATCH-for-28089] wince yet another step
20789              From: "Konovalov, Vadim Vladimirovich (Vadim)** CTR **" <vkonovalov@Lucent.com>
20790              Date: Thu, 4 May 2006 13:04:45 +0200 
20791              Message-ID: <E3FB32585BF1D411B9E900805FF51A0801BCB1EE@ru0022exch001u.ru.lucent.com>
20792      Branch: perl
20793            ! win32/Makefile.ce
20794 ____________________________________________________________________________
20795 [ 28095] By: rgs                                   on 2006/05/04  10:00:14
20796         Log: Subject: [PATCH] t/op/grep.t using test.pl
20797              From: David Landgren <david@landgren.net>
20798              Date: Wed, 03 May 2006 15:53:38 +0200
20799              Message-ID: <4458B5E2.7090103@landgren.net>
20800      Branch: perl
20801            ! t/op/grep.t
20802 ____________________________________________________________________________
20803 [ 28094] By: rgs                                   on 2006/05/04  09:58:28
20804         Log: Subject: [PATCH] t/op/context.t using test.pl
20805              From: David Landgren <david@landgren.net>
20806              Date: Wed, 03 May 2006 16:20:40 +0200
20807              Message-ID: <4458BC38.6050600@landgren.net>
20808      Branch: perl
20809            ! t/op/context.t
20810 ____________________________________________________________________________
20811 [ 28093] By: rgs                                   on 2006/05/04  09:56:56
20812         Log: Subject: [PATCH] t/op/list.t using test.pl
20813              From: David Landgren <david@landgren.net>
20814              Date: Wed, 03 May 2006 19:40:40 +0200
20815              Message-ID: <4458EB18.8070904@landgren.net>
20816      Branch: perl
20817            ! t/op/list.t
20818 ____________________________________________________________________________
20819 [ 28092] By: rgs                                   on 2006/05/04  09:43:51
20820         Log: Document order of evaluation for the comma operator
20821              
20822              Subject: [PATCH] Re: Kill select((select(OUTPUT_HANDLE), $| = 1)[0]);
20823              From: Paul Johnson <paul@pjcj.net>
20824              Date: Wed, 26 Apr 2006 22:38:43 +0200
20825              Message-ID: <20060426203843.GE21543@pjcj.net>
20826      Branch: perl
20827            ! pod/perlop.pod
20828 ____________________________________________________________________________
20829 [ 28091] By: steveh                                on 2006/05/04  08:24:06
20830         Log: Subject: RE: [PATCH] Implement ${^WIN32_SLOPPY_STAT}
20831              From: "Jan Dubois" <jand@activestate.com>
20832              Date: Wed, 3 May 2006 12:41:23 -0700
20833              Message-ID: <013f01c66ee9$8f1437a0$d045a8c0@candy>
20834      Branch: perl
20835            ! pod/perlport.pod
20836 ____________________________________________________________________________
20837 [ 28090] By: rgs                                   on 2006/05/04  07:42:27
20838         Log: Another test for state variables and closures,
20839              adapted from a Perl 6 example, pointed out by
20840              Joshua "Limbic_Region" Gatcomb
20841      Branch: perl
20842            ! t/op/state.t
20843 ____________________________________________________________________________
20844 [ 28089] By: rgs                                   on 2006/05/03  22:49:14
20845         Log: Ensure that C<(state $x) = $y> is not a state assignment
20846              (due to the parentheses that make it a regular assignment
20847              to a variable declared inside a list)
20848      Branch: perl
20849            ! t/op/state.t
20850 ____________________________________________________________________________
20851 [ 28088] By: rgs                                   on 2006/05/03  22:40:28
20852         Log: New test case for state variables with ties, suggested by Nicholas
20853      Branch: perl
20854            ! t/op/state.t
20855 ____________________________________________________________________________
20856 [ 28087] By: rgs                                   on 2006/05/03  22:01:41
20857         Log: Add "state" feature
20858      Branch: perl
20859            ! lib/feature.pm perl_keyword.pl t/op/state.t toke.c
20860 ____________________________________________________________________________
20861 [ 28086] By: rgs                                   on 2006/05/03  21:46:02
20862         Log: Introduce a new keyword, state, for state variables.
20863      Branch: perl
20864            + t/op/state.t
20865            ! MANIFEST dump.c embed.fnc embed.h ext/B/B/Concise.pm
20866            ! ext/B/t/concise-xs.t keywords.h keywords.pl op.c op.h pad.c
20867            ! perl.h perl_keyword.pl pod/perlintern.pod pp_hot.c proto.h
20868            ! sv.h toke.c
20869 ____________________________________________________________________________
20870 [ 28085] By: rgs                                   on 2006/05/03  19:15:00
20871         Log: Subject: [PATCH] wince another step
20872              From: "Konovalov, Vadim Vladimirovich (Vadim)** CTR **"
20873              Date: Wed, 3 May 2006 20:11:11 +0200 
20874              Message-ID: <E3FB32585BF1D411B9E900805FF51A0801BCAE1F@ru0022exch001u.ru.lucent.com>
20875      Branch: perl
20876            - win32/xconfig.h
20877            ! MANIFEST win32/Makefile.ce
20878 ____________________________________________________________________________
20879 [ 28084] By: rgs                                   on 2006/05/03  19:10:29
20880         Log: Subject: [PATCH] Clarify hard link support on Windows
20881              From: "Jan Dubois" <jand@activestate.com>
20882              Date: Wed, 3 May 2006 11:30:03 -0700
20883              Message-ID: <013a01c66edf$982ebcc0$d045a8c0@candy>
20884      Branch: perl
20885            ! pod/perlport.pod
20886 ____________________________________________________________________________
20887 [ 28083] By: rgs                                   on 2006/05/03  19:06:26
20888         Log: Subject: RE: [PATCH] Implement ${^WIN32_SLOPPY_STAT}
20889              From: "Jan Dubois" <jand@activestate.com>
20890              Date: Wed, 3 May 2006 11:18:30 -0700
20891              Message-ID: <013901c66edd$fb8ae750$d045a8c0@candy>
20892      Branch: perl
20893            ! pod/perlvar.pod
20894 ____________________________________________________________________________
20895 [ 28082] By: stevep                                on 2006/05/03  17:56:37
20896         Log: Upgrade to CGI-3.20
20897      Branch: perl
20898            ! lib/CGI.pm lib/CGI/Changes lib/CGI/Cookie.pm
20899            ! lib/CGI/t/cookie.t lib/CGI/t/function.t
20900 ____________________________________________________________________________
20901 [ 28081] By: rgs                                   on 2006/05/03  16:24:04
20902         Log: Subject: [PATCH] more logic localizations
20903              From: andy@petdance.com (Andy Lester)
20904              Date: Tue, 11 Apr 2006 14:14:45 -0500
20905              Message-ID: <20060411191445.GA4938@petdance.com>
20906      Branch: perl
20907            ! mg.c
20908 ____________________________________________________________________________
20909 [ 28080] By: rgs                                   on 2006/05/03  16:09:48
20910         Log: Subject: -Dmad breaks a few tests
20911              From: Sébastien Aperghis-Tramoni <maddingue@free.fr>
20912              Date: Tue, 2 May 2006 01:37:03 +0200
20913              Message-Id: <64F8ECEA-D96B-11DA-AA80-000502F3279F@free.fr>
20914              
20915              (part of, with tweaks)
20916      Branch: perl
20917            ! t/op/incfilter.t
20918 ____________________________________________________________________________
20919 [ 28079] By: rgs                                   on 2006/05/03  09:04:30
20920         Log: Subject: [PATCH] Remove an unnecessary goto
20921              From: andy@petdance.com (Andy Lester)
20922              Date: Wed, 3 May 2006 00:54:30 -0500
20923              Message-ID: <20060503055430.GA4922@petdance.com>
20924      Branch: perl
20925            ! op.c
20926 ____________________________________________________________________________
20927 [ 28078] By: rgs                                   on 2006/05/03  09:00:39
20928         Log: Subject: [PATCH] optimize S_find_array_subscript
20929              From: andy@petdance.com (Andy Lester)
20930              Date: Tue, 2 May 2006 21:09:08 -0500
20931              Message-ID: <20060503020908.GA2234@petdance.com>
20932      Branch: perl
20933            ! sv.c
20934 ____________________________________________________________________________
20935 [ 28077] By: rgs                                   on 2006/05/03  08:57:45
20936         Log: Subject: [PATCH] clean up loops in doio.c and dump.c
20937              From: andy@petdance.com (Andy Lester)
20938              Date: Tue, 2 May 2006 13:38:15 -0500
20939              Message-ID: <20060502183815.GA7979@petdance.com>
20940      Branch: perl
20941            ! doio.c dump.c embed.fnc embed.h proto.h
20942 ____________________________________________________________________________
20943 [ 28076] By: rgs                                   on 2006/05/03  08:52:01
20944         Log: Subject: [PATCH] pp_sys.c: U8* cast
20945              From: Jarkko Hietaniemi <jhi@cc.hut.fi>
20946              Date: Tue, 2 May 2006 20:04:33 +0300 (EEST)
20947              Message-Id: <200605021704.k42H4XIh255652@kosh.hut.fi>
20948      Branch: perl
20949            ! pp_sys.c
20950 ____________________________________________________________________________
20951 [ 28075] By: rgs                                   on 2006/05/03  08:51:14
20952         Log: Subject: [PATCH] hv.c: do zeroing via mem wrap check
20953              From: Jarkko Hietaniemi <jhi@cc.hut.fi>
20954              Date: Tue, 2 May 2006 20:03:01 +0300 (EEST)
20955              Message-Id: <200605021703.k42H31PF216868@kosh.hut.fi>
20956      Branch: perl
20957            ! hv.c
20958 ____________________________________________________________________________
20959 [ 28074] By: rgs                                   on 2006/05/03  08:38:39
20960         Log: Subject: [PATCH] microperl update
20961              From: Jarkko Hietaniemi <jhietaniemi@gmail.com>
20962              Date: Wed, 03 May 2006 08:20:31 +0300
20963              Message-ID: <44583D9F.8060401@gmail.com>
20964      Branch: perl
20965            ! Makefile.micro README.micro uconfig.h uconfig.sh
20966 ____________________________________________________________________________
20967 [ 28073] By: steveh                                on 2006/05/03  08:25:27
20968         Log: Make Perl_unshare_hek visible to core extensions without being public
20969              
20970              See the comments in:
20971              http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2006-04/msg00480.html
20972              (which were put into practice in changes #27800 and #27848)
20973      Branch: perl
20974            ! embed.fnc embed.h
20975 ____________________________________________________________________________
20976 [ 28072] By: steveh                                on 2006/05/03  08:03:50
20977         Log: Subject: Re: Smoke [5.9.4] 28069 FAIL(M) MSWin32 WinXP/.Net SP2 (x86/2 cpu)
20978              From: Vadim <vadim@vkonovalov.ru>
20979              Date: Wed, 03 May 2006 06:10:59 +0400
20980              Message-ID: <44581133.8080100@vkonovalov.ru>
20981      Branch: perl
20982           +> win32/perlmaince.c
20983            - win32/perlmain.c
20984            ! MANIFEST
20985 ____________________________________________________________________________
20986 [ 28071] By: stevep                                on 2006/05/03  01:46:27
20987         Log: Subject: Re: Smoke [5.9.4] 28069 FAIL(M) MSWin32 WinXP/.Net SP2 (x86/2 cpu)
20988              From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
20989              Date: Wed, 03 May 2006 10:00:03 +0900
20990              Message-Id: <20060503095420.0357.BQW10602@nifty.com>
20991      Branch: perl
20992            ! embed.fnc embed.h global.sym
20993 ____________________________________________________________________________
20994 [ 28070] By: nicholas                              on 2006/05/02  22:38:52
20995         Log: Remove a variable left unused since change 28065.
20996      Branch: perl
20997            ! sv.c
20998 ____________________________________________________________________________
20999 [ 28069] By: nicholas                              on 2006/05/02  22:19:56
21000         Log: Add a new hash key flag HVhek_UNSHARED, to mark all unshared hash keys.
21001              Otherwise Perl_newSVhek(), called by Perl_hv_iterkeysv(), naively
21002              assumes that it can share any hash key directly.
21003      Branch: perl
21004            ! hv.c hv.h sv.c
21005 ____________________________________________________________________________
21006 [ 28068] By: nicholas                              on 2006/05/02  22:16:25
21007         Log: cumulative totals and list reverse for checkAUTHORS.pl
21008      Branch: perl
21009            ! Porting/checkAUTHORS.pl
21010 ____________________________________________________________________________
21011 [ 28067] By: stevep                                on 2006/05/02  18:03:57
21012         Log: Another place where Intel C++ pretending to be gcc is a really
21013              bad thing.
21014      Branch: perl
21015            ! gv.h
21016 ____________________________________________________________________________
21017 [ 28066] By: nicholas                              on 2006/05/02  17:46:38
21018         Log: *static* pointers to newXSUB(), dammit!
21019      Branch: perl
21020            ! writemain.SH xsutils.c
21021 ____________________________________________________________________________
21022 [ 28065] By: nicholas                              on 2006/05/02  17:00:56
21023         Log: Assert that SvMAGIC() isn't being called on PVMGs which are using the
21024              same union to store the stash for our.
21025      Branch: perl
21026            ! sv.c sv.h
21027 ____________________________________________________________________________
21028 [ 28064] By: nicholas                              on 2006/05/02  16:24:14
21029         Log: Change 28063 forgot 1 key line - acutally use the correct filename
21030              storage.
21031      Branch: perl
21032            ! op.c
21033 ____________________________________________________________________________
21034 [ 28063] By: nicholas                              on 2006/05/02  15:55:25
21035         Log: Fix bug in DynaLoader, which has been passing a filename in dynamic
21036              storage to newXS() seemingly forever. This involves creating
21037              newXS_flags(), with the first flag being "arrange to copy the 
21038              filename and free it at the right time".
21039      Branch: perl
21040            ! XSUB.h cv.h embed.fnc embed.h ext/DynaLoader/dl_aix.xs
21041            ! ext/DynaLoader/dl_beos.xs ext/DynaLoader/dl_dld.xs
21042            ! ext/DynaLoader/dl_dllload.xs ext/DynaLoader/dl_dlopen.xs
21043            ! ext/DynaLoader/dl_dyld.xs ext/DynaLoader/dl_hpux.xs
21044            ! ext/DynaLoader/dl_mac.xs ext/DynaLoader/dl_mpeix.xs
21045            ! ext/DynaLoader/dl_next.xs ext/DynaLoader/dl_symbian.xs
21046            ! ext/DynaLoader/dl_vmesa.xs ext/DynaLoader/dl_vms.xs op.c
21047            ! pod/perlapi.pod proto.h
21048 ____________________________________________________________________________
21049 [ 28062] By: rgs                                   on 2006/05/02  15:37:35
21050         Log: Move some scripts under win32/ce-helpers.
21051              
21052              Subject: RE: Merge WinCE into Win32 directory and remove the the WinCE dir ectory
21053              From: "Konovalov, Vadim Vladimirovich (Vadim)** CTR **" <vkonovalov@Lucent.com>
21054              Date: Tue, 2 May 2006 17:30:59 +0200 
21055              Message-ID: <E3FB32585BF1D411B9E900805FF51A0801BB3F03@ru0022exch001u.ru.lucent.com>
21056      Branch: perl
21057           +> win32/ce-helpers/cecopy-lib.pl win32/ce-helpers/comp.pl
21058           +> win32/ce-helpers/compile-all.bat win32/ce-helpers/compile.bat
21059           +> win32/ce-helpers/makedist.pl win32/ce-helpers/registry.bat
21060            - win32/cecopy-lib.pl win32/comp.pl win32/compile-all.bat
21061            - win32/compile.bat win32/makedist.pl win32/registry.bat
21062            - win32/win32-d.h
21063            ! MANIFEST win32/Makefile.ce
21064 ____________________________________________________________________________
21065 [ 28061] By: rgs                                   on 2006/05/02  14:28:31
21066         Log: Subject: Re: Merge WinCE into Win32 directory and remove the the WinCE directory
21067              From: demerphq <demerphq@gmail.com>
21068              Date: Mon, 1 May 2006 19:02:09 +0200
21069              Message-ID: <9b18b3110605011002m56c0db99n169ae677efb6d059@mail.gmail.com>
21070              
21071              Plus adjustements to MANIFEST. Also, perlmain.c seemed to be missing
21072              from the patch.
21073      Branch: perl
21074            + win32/Makefile.ce win32/cecopy-lib.pl win32/comp.pl
21075            + win32/compile-all.bat win32/compile.bat win32/config.ce
21076            + win32/config_H.ce win32/makedist.pl win32/perl.rc
21077            + win32/perlmain.c win32/registry.bat win32/win32-d.h
21078            + win32/win32ceio.c win32/win32iop-o.h win32/wince.c
21079            + win32/wince.h win32/wincesck.c win32/xconfig.h
21080            - wince/Makefile.ce wince/bin/exetype.pl wince/bin/perlglob.pl
21081            - wince/bin/pl2bat.pl wince/bin/runperl.pl wince/bin/search.pl
21082            - wince/cecopy-lib.pl wince/comp.pl wince/compile-all.bat
21083            - wince/compile.bat wince/config.ce wince/config_H.ce
21084            - wince/config_h.PL wince/config_sh.PL wince/dl_win32.xs
21085            - wince/include/arpa/inet.h wince/include/sys/socket.h
21086            - wince/makedist.pl wince/makeico.pl wince/perl.rc
21087            - wince/perlhost.h wince/perllib.c wince/perlmain.c
21088            - wince/registry.bat wince/runperl.c wince/splittree.pl
21089            - wince/vdir.h wince/vmem.h wince/win32.h wince/win32io.c
21090            - wince/win32iop.h wince/win32thread.c wince/win32thread.h
21091            - wince/wince.c wince/wince.h wince/wincesck.c
21092            ! MANIFEST win32/include/sys/socket.h win32/win32.h
21093            ! win32/win32thread.h
21094 ____________________________________________________________________________
21095 [ 28060] By: nicholas                              on 2006/05/02  12:41:43
21096         Log: GvFILE() cannot be a pointer to the memory owned by the COP, because
21097              COPs created by use can be freed along this memory, but the GP
21098              remains. Given that several GVs may refer to the same file, use a
21099              shared string rather than an individual allocation per GP.
21100      Branch: perl
21101            ! bytecode.pl ext/ByteLoader/bytecode.h ext/ByteLoader/byterun.c
21102            ! gv.c gv.h sv.c
21103 ____________________________________________________________________________
21104 [ 28059] By: nicholas                              on 2006/05/02  12:02:32
21105         Log: Change 28037 broke t/op/each.t when running with TEST.
21106      Branch: perl
21107            ! t/test.pl
21108 ____________________________________________________________________________
21109 [ 28058] By: nicholas                              on 2006/05/02  11:15:26
21110         Log: De-duplicate the code that creates new GPs into Perl_newGP().
21111      Branch: perl
21112            ! embed.fnc embed.h gv.c proto.h scope.c
21113 ____________________________________________________________________________
21114 [ 28057] By: rgs                                   on 2006/05/02  10:39:01
21115         Log: Subject: Re: [PATCH] t/op/glob.t using test.pl
21116              From: David Landgren <david@landgren.net>
21117              Date: Sat, 29 Apr 2006 15:32:07 +0200
21118              Message-ID: <44536AD7.4060608@landgren.net>
21119      Branch: perl
21120            ! t/op/glob.t
21121 ____________________________________________________________________________
21122 [ 28056] By: rgs                                   on 2006/05/02  10:36:39
21123         Log: Subject: [PATCH] t/op/hashwarn.t using test.pl
21124              From: David Landgren <david@landgren.net>
21125              Date: Sat, 29 Apr 2006 17:51:28 +0200
21126              Message-ID: <44538B80.2060503@landgren.net>
21127      Branch: perl
21128            ! t/op/hashwarn.t
21129 ____________________________________________________________________________
21130 [ 28055] By: rgs                                   on 2006/05/02  10:16:23
21131         Log: Subject: [PATCH] toke.c: function pointer to data pointer
21132              From: Jarkko Hietaniemi <jhi@cc.hut.fi>
21133              Date: Tue, 2 May 2006 08:25:55 +0300 (EEST)
21134              Message-Id: <200605020525.k425Ptik165705@kosh.hut.fi>
21135      Branch: perl
21136            ! toke.c
21137 ____________________________________________________________________________
21138 [ 28054] By: rgs                                   on 2006/05/02  10:11:10
21139         Log: Subject: [DOC PATCH] chop warning in perlport
21140              From: Xavier Noria <fxn@hashref.com>
21141              Date: Tue, 2 May 2006 12:08:34 +0200
21142              Message-Id: <E06C0594-CAF6-4822-8EB4-8E06EAD4A889@hashref.com>
21143      Branch: perl
21144            ! pod/perlport.pod
21145 ____________________________________________________________________________
21146 [ 28053] By: steveh                                on 2006/05/02  09:59:23
21147         Log: Sigh. Third time lucky.
21148      Branch: perl
21149            ! win32/win32.h
21150 ____________________________________________________________________________
21151 [ 28052] By: steveh                                on 2006/05/02  09:46:41
21152         Log: Ahem. And here's the rest of #28051...
21153      Branch: perl
21154            ! win32/win32.h
21155 ____________________________________________________________________________
21156 [ 28051] By: steveh                                on 2006/05/02  09:39:01
21157         Log: Subject: RE: [PATCH] fix 27987 for MSVC (was Re: Smoke [5.9.4] 28020 FAIL(m) MSWin32 Win2000 SP4 (x86/1 cpu))
21158              From: "Jan Dubois" <jand@ActiveState.com>
21159              Date: Mon, 1 May 2006 18:55:11 -0700
21160              Message-ID: <08ff01c66d8b$7282e320$2217a8c0@candy>
21161              
21162              Subject: Re: [PATCH] fix 27987 for MSVC (was Re: Smoke [5.9.4] 28020 FAIL(m)
21163              From: "H.Merijn Brand" <h.m.brand@xs4all.nl>
21164              Date: Tue, 2 May 2006 09:23:51 +0200
21165              Message-ID: <20060502092351.7bae0896@pc09>
21166      Branch: perl
21167            ! win32/config.vc win32/config.vc64 win32/config_H.vc
21168            ! win32/config_H.vc64
21169 ____________________________________________________________________________
21170 [ 28050] By: rgs                                   on 2006/05/02  09:13:19
21171         Log: Subject: [PATCH] pp.c casting, take two
21172              From: andy@petdance.com (Andy Lester)
21173              Date: Sun, 30 Apr 2006 19:48:26 -0500
21174              Message-ID: <20060501004826.GA4744@petdance.com>
21175              
21176              (with adjustements, some of the code has already
21177              been touched since)
21178      Branch: perl
21179            ! pp.c
21180 ____________________________________________________________________________
21181 [ 28049] By: rgs                                   on 2006/05/02  08:50:05
21182         Log: Subject: [PATCH] Some more SvREFCNT_inc updates
21183              From: andy@petdance.com (Andy Lester)
21184              Date: Sun, 30 Apr 2006 13:24:14 -0500
21185              Message-ID: <20060430182414.GA18094@petdance.com>
21186      Branch: perl
21187            ! cop.h pp_ctl.c
21188 ____________________________________________________________________________
21189 [ 28048] By: rgs                                   on 2006/05/02  08:48:04
21190         Log: Subject: [PATCH] quiet some perlio.c warnings
21191              From: andy@petdance.com (Andy Lester)
21192              Date: Sun, 30 Apr 2006 13:23:22 -0500
21193              Message-ID: <20060430182322.GA18064@petdance.com>
21194      Branch: perl
21195            ! perlio.c
21196 ____________________________________________________________________________
21197 [ 28047] By: rgs                                   on 2006/05/02  08:45:26
21198         Log: Subject: [PATCH] More tweaking of SvREFCNT_inc calls
21199              From: andy@petdance.com (Andy Lester)
21200              Date: Sun, 30 Apr 2006 12:06:21 -0500
21201              Message-ID: <20060430170621.GA4054@petdance.com>
21202      Branch: perl
21203            ! mg.c
21204 ____________________________________________________________________________
21205 [ 28046] By: stevep                                on 2006/05/02  02:50:33
21206         Log: One too many ('s in change #28043. 
21207      Branch: perl
21208            ! ext/Errno/Errno_pm.PL
21209 ____________________________________________________________________________
21210 [ 28045] By: stevep                                on 2006/05/02  02:47:43
21211         Log: Escape prompts with #'s to avoid causing tests to fail from
21212              the unexpected output.
21213      Branch: perl
21214            ! lib/Module/Build/t/extend.t
21215 ____________________________________________________________________________
21216 [ 28044] By: stevep                                on 2006/05/02  01:55:53
21217         Log: Fix for RT #25366: h2xs 1.23 from "Aaron Kaplan".
21218      Branch: perl
21219            ! utils/h2xs.PL
21220 ____________________________________________________________________________
21221 [ 28043] By: stevep                                on 2006/05/02  00:23:05
21222         Log: Fix for RT #7916: perl 5.6.1 with Intel's icc on RedHat 
21223              Linux 7.2.  The original fix, change #13053, added a check
21224              for $Config{gccversion} which is now populated by newer
21225              Intel compilers.  This additional change checks to see
21226              if Intel is in $Config{gccversion}.  If it is, its not
21227              a gcc.
21228      Branch: perl
21229            ! ext/Errno/Errno_pm.PL
21230 ____________________________________________________________________________
21231 [ 28042] By: stevep                                on 2006/05/01  23:30:59
21232         Log: Subject: [PATCH] signed vs unsigned char * nit
21233              From: Jarkko Hietaniemi <jhi@cc.hut.fi>
21234              Date: Sat, 29 Apr 2006 20:59:29 +0300 (EEST)
21235              Message-Id: <200604291759.k3THxTji032009@kosh.hut.fi>
21236      Branch: perl
21237            ! pp.c
21238 ____________________________________________________________________________
21239 [ 28041] By: stevep                                on 2006/05/01  23:25:30
21240         Log: Reverting context removal from change #27992.  This should
21241              clear up threaded builds on Win32 and VMS. 
21242      Branch: perl
21243            ! embed.fnc embed.h pp_ctl.c proto.h
21244 ____________________________________________________________________________
21245 [ 28040] By: rgs                                   on 2006/05/01  20:25:17
21246         Log: Add a BUGS section to Fatal.pm, see bug #38790
21247      Branch: perl
21248            ! lib/Fatal.pm
21249 ____________________________________________________________________________
21250 [ 28039] By: nicholas                              on 2006/05/01  19:07:06
21251         Log: Disable SIGRTMAX and SIGRTMIN in POSIX if Configure's probes found that
21252              they aren't viable. (Certain glibcs are "interesting")
21253      Branch: perl
21254            ! ext/POSIX/Makefile.PL
21255 ____________________________________________________________________________
21256 [ 28038] By: nicholas                              on 2006/05/01  17:28:43
21257         Log: Allow a macro of "0" to mean "#if 0" for convenient elimination of
21258              constants.
21259      Branch: perl
21260            ! lib/ExtUtils/Constant/Base.pm
21261 ____________________________________________________________________________
21262 [ 28037] By: merijn                                on 2006/05/01  14:18:16
21263         Log: Subject: Re: [PATCH] provide diag() and don't use ++ in test.pl
21264              From: David Landgren <david@landgren.net>
21265              Date: Mon, 01 May 2006 15:50:03 +0200
21266              Message-ID: <4456120B.3000302@landgren.net>
21267              
21268              Plus some additional comment (also from David) about WHY not to
21269              use ++ in test.pl
21270      Branch: perl
21271            ! t/test.pl
21272 ____________________________________________________________________________
21273 [ 28036] By: merijn                                on 2006/05/01  12:56:54
21274         Log: Subject: Re: [PATCH] fix 27987 for MSVC (was Re: Smoke [5.9.4] 28020 FAIL(m) MSWin32 Win2000 SP4 (x86/1 cpu))
21275              From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
21276              Date: Mon, 01 May 2006 21:34:33 +0900
21277              Message-Id: <20060501213249.814E.BQW10602@nifty.com>
21278      Branch: perl
21279            ! win32/config.vc64
21280 ____________________________________________________________________________
21281 [ 28035] By: nicholas                              on 2006/05/01  11:16:13
21282         Log: Re-order one DO_UTF8 to be after the SvPV.
21283      Branch: perl
21284            ! ext/Data/Dumper/Dumper.xs
21285 ____________________________________________________________________________
21286 [ 28034] By: nicholas                              on 2006/04/30  23:08:17
21287         Log: Fix two errors found by Coverity.
21288      Branch: perl
21289            ! pp_sys.c
21290 ____________________________________________________________________________
21291 [ 28033] By: nicholas                              on 2006/04/30  23:02:46
21292         Log: Add a --percentage option to checkAUTHORS.pl to show rankings as
21293              percentages.
21294      Branch: perl
21295            ! Porting/checkAUTHORS.pl
21296 ____________________________________________________________________________
21297 [ 28032] By: nicholas                              on 2006/04/30  22:00:34
21298         Log: Replace a STRLEN no_len; with a _nolen macro call.
21299      Branch: perl
21300            ! pp_pack.c
21301 ____________________________________________________________________________
21302 [ 28031] By: nicholas                              on 2006/04/30  21:27:20
21303         Log: Perl_pack_cat() is a mathom too!
21304      Branch: perl
21305            ! mathoms.c pod/perlapi.pod pp_pack.c
21306 ____________________________________________________________________________
21307 [ 28030] By: nicholas                              on 2006/04/30  20:41:29
21308         Log: One part of pp_pack couldn't correctly handle surprises from UTF-8
21309              overloading.
21310      Branch: perl
21311            ! pp_pack.c t/uni/overload.t
21312 ____________________________________________________________________________
21313 [ 28029] By: nicholas                              on 2006/04/30  19:07:43
21314         Log: do_vop() couldn't correctly handle surprises from UTF-8 overloading.
21315      Branch: perl
21316            ! doop.c t/uni/overload.t
21317 ____________________________________________________________________________
21318 [ 28028] By: nicholas                              on 2006/04/30  17:58:53
21319         Log: We had no tests that covered the grow paths in pp_uc and pp_lc.
21320      Branch: perl
21321            ! t/op/lc.t
21322 ____________________________________________________________________________
21323 [ 28027] By: nicholas                              on 2006/04/30  17:23:44
21324         Log: Dave noticed that change 28022 was wrong - should read is_index
21325              rather than just index.
21326      Branch: perl
21327            ! pp.c
21328 ____________________________________________________________________________
21329 [ 28026] By: merijn                                on 2006/04/30  15:22:12
21330         Log: Subject: [PATCH] fix 27987 for MSVC (was Re: Smoke [5.9.4] 28020 FAIL(m) MSWin32 Win2000 SP4 (x86/1 cpu))
21331              From: Abe Timmerman <abe@ztreet.demon.nl>
21332              Date: Sun, 30 Apr 2006 15:15:24 +0200
21333              Message-Id: <200604301515.24580.abe@ztreet.demon.nl>
21334      Branch: perl
21335            ! win32/config.vc win32/config_H.vc
21336 ____________________________________________________________________________
21337 [ 28025] By: stevep                                on 2006/04/30  14:27:08
21338         Log: I was mistaken.  Borland and gcc do have snprintf() and vsnprintf()
21339              on Win32.
21340      Branch: perl
21341            ! win32/config_H.bc win32/config_H.gc win32/config_H.vc
21342            ! win32/config_H.vc64
21343 ____________________________________________________________________________
21344 [ 28024] By: stevep                                on 2006/04/30  13:14:25
21345         Log: OK, Win32 must no have snprintf()/vsnprintf 
21346      Branch: perl
21347            ! win32/config_H.bc win32/config_H.gc win32/config_H.vc
21348            ! win32/config_H.vc64
21349 ____________________________________________________________________________
21350 [ 28023] By: davem                                 on 2006/04/30  12:32:09
21351         Log: remove a compiler warning by making HOPBACKc only hop *back*
21352      Branch: perl
21353            ! regexec.c
21354 ____________________________________________________________________________
21355 [ 28022] By: nicholas                              on 2006/04/30  11:14:04
21356         Log: index and rindex couldn't correctly handle surprises from UTF-8
21357              overloading.
21358      Branch: perl
21359            ! pp.c t/lib/warnings/9uninit t/uni/overload.t
21360 ____________________________________________________________________________
21361 [ 28021] By: nicholas                              on 2006/04/30  10:58:11
21362         Log: Document SvGAMAGIC(), and its significance w.r.t. the side effects of
21363              inadvertently calling magic and overloading too often.
21364      Branch: perl
21365            ! pod/perlapi.pod sv.h
21366 ____________________________________________________________________________
21367 [ 28020] By: nicholas                              on 2006/04/29  23:35:52
21368         Log: Coverity disliked us passing a negative length to vsnprintf().
21369      Branch: perl
21370            ! perlio.c
21371 ____________________________________________________________________________
21372 [ 28019] By: nicholas                              on 2006/04/29  23:33:36
21373         Log: syswrite couldn't correctly handle surprises from UTF-8 overloading.
21374              As part of fixing this, syswrite now tries to take advantage of the
21375              UTF-8 cache logic for lengths and offsets on regular scalars.
21376      Branch: perl
21377            ! pp_sys.c t/lib/warnings/9uninit t/uni/overload.t
21378 ____________________________________________________________________________
21379 [ 28018] By: nicholas                              on 2006/04/29  23:32:06
21380         Log: More tests for syswrite with UTF-8 data.
21381      Branch: perl
21382            ! lib/open.t
21383 ____________________________________________________________________________
21384 [ 28017] By: nicholas                              on 2006/04/29  21:54:38
21385         Log: It should never be possible for SvGMAGICAL() to be true on SVt_IV.
21386      Branch: perl
21387            ! doio.c
21388 ____________________________________________________________________________
21389 [ 28016] By: nicholas                              on 2006/04/29  17:38:08
21390         Log: print couldn't correctly handle surprises from UTF-8 overloading.
21391      Branch: perl
21392            ! doio.c t/uni/overload.t
21393 ____________________________________________________________________________
21394 [ 28015] By: nicholas                              on 2006/04/29  17:31:27
21395         Log: Add a cross reference to bytes_from_utf8() in the documentation for
21396              utf8_to_bytes(). Regenerate perlapi.pod.
21397      Branch: perl
21398            ! pod/perlapi.pod utf8.c
21399 ____________________________________________________________________________
21400 [ 28014] By: nicholas                              on 2006/04/29  16:07:31
21401         Log: There were more ways to break uc/lc/ucfirst/lcfirst even without
21402              use 'locale'; so test for them too. Correct the skip count.
21403      Branch: perl
21404            ! t/uni/overload.t
21405 ____________________________________________________________________________
21406 [ 28013] By: nicholas                              on 2006/04/29  15:55:51
21407         Log: lcfirst/ucfist plus an 8 bit locale could mangle UTF-8 values
21408              returned by overloaded stringification.
21409      Branch: perl
21410            ! pp.c t/uni/overload.t
21411 ____________________________________________________________________________
21412 [ 28012] By: nicholas                              on 2006/04/29  14:05:55
21413         Log: uc plus an 8 bit locale could get confused by UTF-8 values returned by
21414              overloaded stringification.
21415      Branch: perl
21416            ! pp.c t/uni/overload.t
21417 ____________________________________________________________________________
21418 [ 28011] By: nicholas                              on 2006/04/29  13:43:26
21419         Log: lc plus an 8 bit locale could mangle UTF-8 values returned by
21420              overloaded stringification.
21421      Branch: perl
21422            ! pp.c t/uni/overload.t
21423 ____________________________________________________________________________
21424 [ 28010] By: stevep                                on 2006/04/29  13:09:18
21425         Log: Subject: [PATCH] more -ansi -pedantic cleanliness
21426              From: Jarkko Hietaniemi <jhietaniemi@gmail.com>
21427              Date: Sat, 29 Apr 2006 11:13:24 +0300
21428              Message-ID: <44532024.9070303@gmail.com>
21429      Branch: perl
21430            ! cop.h gv.c regcomp.c regexec.c sv.c toke.c
21431 ____________________________________________________________________________
21432 [ 28009] By: stevep                                on 2006/04/28  20:53:07
21433         Log: Subject: Re: [ANNOUNCE] Module::Build 0.28 -> CPAN
21434              From: "Randy W. Sims" <ml-perl@thepierianspring.org>
21435              Date: Fri, 28 Apr 2006 15:31:55 -0400
21436              Message-ID: <44526DAB.8070408@thepierianspring.org>
21437      Branch: perl
21438            ! lib/Module/Build/ConfigData.pm
21439 ____________________________________________________________________________
21440 [ 28008] By: stevep                                on 2006/04/28  20:40:41
21441         Log: Subject: [PATCH] reduce gcc -ansi -pedantic noise plus a suggestion
21442              From: Jarkko Hietaniemi <jhietaniemi@gmail.com>
21443              Date: Fri, 28 Apr 2006 22:58:58 +0300
21444              Message-ID: <44527402.8000506@gmail.com>
21445      Branch: perl
21446            ! doio.c gv.c hv.c op.c pad.c perl.c perl.h perlio.c pp.c
21447            ! pp_ctl.c pp_hot.c pp_pack.c pp_sort.c pp_sys.c sv.c toke.c
21448            ! universal.c utf8.c
21449 ____________________________________________________________________________
21450 [ 28007] By: stevep                                on 2006/04/28  19:14:22
21451         Log: Subject: two [PATCH]es: dVAR for malloc.c, and a signed/unsigned char*
21452              From: Jarkko Hietaniemi <jhietaniemi@gmail.com>
21453              Date: Fri, 28 Apr 2006 21:04:59 +0300
21454              Message-ID: <4452594B.4040609@gmail.com>
21455      Branch: perl
21456            ! malloc.c pp.c
21457 ____________________________________________________________________________
21458 [ 28006] By: nicholas                              on 2006/04/28  16:34:14
21459         Log: Fix bug 34297 (length of overloaded UTF-8 strings)
21460      Branch: perl
21461            + t/uni/overload.t
21462            ! MANIFEST pp.c
21463 ____________________________________________________________________________
21464 [ 28005] By: stevep                                on 2006/04/28  16:15:25
21465         Log: Typo in MANIFEST from change #27997.  Mustn't touch Perl before coffee.
21466      Branch: perl
21467            ! MANIFEST
21468 ____________________________________________________________________________
21469 [ 28004] By: stevep                                on 2006/04/28  15:35:37
21470         Log: Added Changes file left out from change #28001.
21471      Branch: perl
21472            ! ext/Cwd/Changes
21473 ____________________________________________________________________________
21474 [ 28003] By: rgs                                   on 2006/04/28  15:29:30
21475         Log: Subject: Merge WinCE and Win32 directories -- Initial patch
21476              From: demerphq <demerphq@gmail.com>
21477              Date: 27-Apr-2006 23:30
21478              Message-ID: <9b18b3110604271430k4de84685jec6535ded195ed94@mail.gmail.com>
21479      Branch: perl
21480            ! win32/config_h.PL win32/dl_win32.xs win32/include/sys/socket.h
21481            ! win32/makeico.pl win32/perlhost.h win32/perllib.c win32/vdir.h
21482            ! win32/vmem.h win32/win32.h
21483 ____________________________________________________________________________
21484 [ 28001] By: stevep                                on 2006/04/28  13:34:39
21485         Log: Upgrade to Pathtools-3.18
21486      Branch: perl
21487            ! ext/Cwd/Changes lib/Cwd.pm lib/File/Spec.pm
21488            ! lib/File/Spec/VMS.pm lib/File/Spec/t/Spec.t
21489 ____________________________________________________________________________
21490 [ 28000] By: rgs                                   on 2006/04/28  13:33:37
21491         Log: Subject: [PATCH] t/op/defins.pl using test.pl
21492              From: David Landgren <david@landgren.net>
21493              Date: Fri, 28 Apr 2006 14:27:39 +0200
21494              Message-ID: <44520A3B.1080707@landgren.net>
21495      Branch: perl
21496            ! t/op/defins.t
21497 ____________________________________________________________________________
21498 [ 27999] By: rgs                                   on 2006/04/28  13:33:11
21499         Log: Subject: [PATCH] t/op/delete.t using test.pl
21500              From: David Landgren <david@landgren.net>
21501              Date: Fri, 28 Apr 2006 15:03:39 +0200
21502              Message-ID: <445212AB.4080404@landgren.net>
21503      Branch: perl
21504            ! t/op/delete.t
21505 ____________________________________________________________________________
21506 [ 27998] By: rgs                                   on 2006/04/28  13:32:53
21507         Log: Subject: [PATCH] t/op/auto.pl using test.pl
21508              From: David Landgren <david@landgren.net>
21509              Date: Fri, 28 Apr 2006 13:56:30 +0200
21510              Message-ID: <445202EE.6000604@landgren.net>
21511      Branch: perl
21512            ! t/op/auto.t
21513 ____________________________________________________________________________
21514 [ 27997] By: stevep                                on 2006/04/28  13:29:41
21515         Log: Upgrade to Module-Build-0.28
21516      Branch: perl
21517            + lib/Module/Build/API.pod
21518            ! MANIFEST lib/Module/Build.pm lib/Module/Build/Authoring.pod
21519            ! lib/Module/Build/Base.pm lib/Module/Build/Changes
21520            ! lib/Module/Build/Compat.pm lib/Module/Build/Cookbook.pm
21521            ! lib/Module/Build/ModuleInfo.pm
21522            ! lib/Module/Build/Platform/MacOS.pm
21523            ! lib/Module/Build/Platform/VMS.pm
21524            ! lib/Module/Build/Platform/Windows.pm
21525            ! lib/Module/Build/Platform/os2.pm lib/Module/Build/YAML.pm
21526            ! lib/Module/Build/t/bundled/Tie/CPHash.pm
21527            ! lib/Module/Build/t/destinations.t lib/Module/Build/t/extend.t
21528            ! lib/Module/Build/t/mbyaml.t
21529 ____________________________________________________________________________
21530 [ 27995] By: nicholas                              on 2006/04/28  12:48:27
21531         Log: Anton Berezin says that on FreeBSD we're wrong to be using -lc_r, and
21532              should just be using -pthread on the linker line.
21533              This stops the new taint tests looping infinitely. It also seems to
21534              cure the TODO test in posix.t - masked SIGINT is now received.
21535      Branch: perl
21536            ! hints/freebsd.sh
21537 ____________________________________________________________________________
21538 [ 27994] By: rgs                                   on 2006/04/28  12:10:24
21539         Log: Subject: [PATCH] threads - miscellaneous
21540              From: "Jerry D. Hedden" <jerry@hedden.us>
21541              Date: Wed, 26 Apr 2006 11:24:05 -0700
21542              Message-ID: <20060426112405.fb30e530d17747c2b054d625b8945d88.4331e666e7.wbe@email.secureserver.net>
21543      Branch: perl
21544            ! ext/threads/Changes ext/threads/Makefile.PL
21545            ! ext/threads/t/end.t ext/threads/t/join.t ext/threads/t/libc.t
21546            ! ext/threads/t/problems.t ext/threads/threads.xs
21547 ____________________________________________________________________________
21548 [ 27993] By: rgs                                   on 2006/04/28  09:14:17
21549         Log: Subject: [PATCH] t/op/sort.t using test.pl
21550              From: David Landgren <david@landgren.net>
21551              Date: Thu, 27 Apr 2006 18:25:56 +0200
21552              Message-ID: <4450F094.2010907@landgren.net>
21553      Branch: perl
21554            ! t/op/sort.t
21555 ____________________________________________________________________________
21556 [ 27992] By: rgs                                   on 2006/04/28  09:04:36
21557         Log: Subject: [PATCH] Removing another context parm
21558              From: andy@petdance.com (Andy Lester)
21559              Date: Thu, 27 Apr 2006 10:31:56 -0500
21560              Message-ID: <20060427153156.GA11445@petdance.com>
21561      Branch: perl
21562            ! embed.fnc embed.h pp_ctl.c proto.h
21563 ____________________________________________________________________________
21564 [ 27991] By: rgs                                   on 2006/04/28  08:53:51
21565         Log: Subject: [PATCH] t/op/loopctl.t using test.pl
21566              From: David Landgren <david@landgren.net>
21567              Date: Thu, 27 Apr 2006 19:13:28 +0200
21568              Message-ID: <4450FBB8.8070203@landgren.net>
21569      Branch: perl
21570            ! t/op/loopctl.t
21571 ____________________________________________________________________________
21572 [ 27990] By: rgs                                   on 2006/04/28  08:51:09
21573         Log: Subject: [PATCH] dVAR (-DPERL_GLOBAL_STRUCT_PRIVATE) update
21574              From: Jarkko Hietaniemi <jhietaniemi@gmail.com>
21575              Date: Thu, 27 Apr 2006 21:18:30 +0300
21576              Message-ID: <44510AF6.6040603@gmail.com>
21577      Branch: perl
21578            ! hv.c perl.h perlio.c sv.c
21579 ____________________________________________________________________________
21580 [ 27989] By: rgs                                   on 2006/04/28  08:41:25
21581         Log: Typo fix in perlretut by Simon Taylor
21582      Branch: perl
21583            ! pod/perlretut.pod
21584 ____________________________________________________________________________
21585 [ 27988] By: rgs                                   on 2006/04/28  07:58:16
21586         Log: Fix typo in function call
21587      Branch: perl
21588            ! perlio.c
21589 ____________________________________________________________________________
21590 [ 27987] By: stevep                                on 2006/04/28  02:12:03
21591         Log: Subject: Re: [PATCH] use snprintf/strlcpy/strlcat when useful
21592              From: Jarkko Hietaniemi <jhietaniemi@gmail.com>
21593              Date: Tue, 25 Apr 2006 18:23:39 +0300
21594              Message-ID: <444E3EFB.8020503@gmail.com>
21595      Branch: perl
21596            ! op.c perl.h perlio.c pp_ctl.c regcomp.c sv.c toke.c
21597            ! universal.c util.c
21598 ____________________________________________________________________________
21599 [ 27986] By: davem                                 on 2006/04/27  23:15:02
21600         Log: another REIFY bug
21601      Branch: perl
21602            ! scope.c t/op/local.t
21603 ____________________________________________________________________________
21604 [ 27983] By: stevep                                on 2006/04/27  18:06:12
21605         Log: Upgrade to ExtUtils-Install-1.39
21606      Branch: perl
21607            ! lib/ExtUtils/Install.pm lib/ExtUtils/Installed.pm
21608            ! lib/ExtUtils/Packlist.pm lib/ExtUtils/t/Install.t
21609            ! lib/ExtUtils/t/Installed.t lib/ExtUtils/t/Packlist.t
21610 ____________________________________________________________________________
21611 [ 27982] By: stevep                                on 2006/04/27  17:53:11
21612         Log: Upgrade to Encode-2.15
21613      Branch: perl
21614            ! ext/Encode/Changes ext/Encode/Encode.pm ext/Encode/Encode.xs
21615            ! ext/Encode/Unicode/Unicode.xs
21616            ! ext/Encode/lib/Encode/Unicode/UTF7.pm
21617 ____________________________________________________________________________
21618 [ 27976] By: rgs                                   on 2006/04/27  12:29:47
21619         Log: Subject: [PATCH] Removing unused context
21620              From: andy@petdance.com (Andy Lester)
21621              Date: Thu, 27 Apr 2006 00:32:15 -0500
21622              Message-ID: <20060427053215.GA31445@petdance.com>
21623      Branch: perl
21624            ! embed.fnc embed.h proto.h sv.c
21625 ____________________________________________________________________________
21626 [ 27968] By: mhx                                   on 2006/04/26  19:18:09
21627         Log: Change type of temporary padoff_du used in dUNDERBAR
21628              from I32 to PADOFFSET, which is more correct (and fixes
21629              a warning in Devel::PPPort).
21630      Branch: perl
21631            ! XSUB.h
21632 ____________________________________________________________________________
21633 [ 27962] By: rgs                                   on 2006/04/26  07:53:36
21634         Log: Subject: Re: [PATCH] cleanup 212 warnings emitted by gcc-4.2
21635              From: Marcus Holland-Moritz <mhx-perl@gmx.net>
21636              Date: Mon, 24 Apr 2006 23:20:38 +0200
21637              Message-ID: <20060424232038.7550f9b6@r2d2>
21638      Branch: perl
21639            ! deb.c doio.c doop.c dump.c gv.c handy.h
21640            ! lib/ExtUtils/Constant/ProxySubs.pm mg.c op.c patchlevel.h
21641            ! perl.c perlio.c pp.c pp_ctl.c pp_hot.c pp_sys.c regcomp.c
21642            ! regexec.c scope.h sv.c toke.c util.c
21643 ____________________________________________________________________________
21644 [ 27961] By: rgs                                   on 2006/04/26  07:38:38
21645         Log: Subject: [PATCH] threads - consolidate XS functions
21646              From: "Jerry D. Hedden" <jerry@hedden.us>
21647              Date: Tue, 25 Apr 2006 07:50:05 -0700
21648              Message-ID: <20060425075005.fb30e530d17747c2b054d625b8945d88.e23f2fed42.wbe@email.secureserver.net>
21649      Branch: perl
21650            ! ext/threads/threads.pm ext/threads/threads.xs
21651 ____________________________________________________________________________
21652 [ 27960] By: steveh                                on 2006/04/25  16:23:38
21653         Log: Make Module-Build aware of new Test-Harness output
21654              
21655              See also:
21656              http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2006-04/msg00755.html
21657      Branch: perl
21658            ! lib/Module/Build/t/compat.t
21659 ____________________________________________________________________________
21660 [ 27959] By: nicholas                              on 2006/04/25  12:51:40
21661         Log: Coverity has started to notice another inconsistency in our NULL
21662              pointer checking.
21663      Branch: perl
21664            ! pp_ctl.c
21665 ____________________________________________________________________________
21666 [ 27958] By: rgs                                   on 2006/04/25  08:41:38
21667         Log: Subject: [PATCH] use NOOP macro
21668              From: andy@petdance.com (Andy Lester)
21669              Date: Mon, 24 Apr 2006 13:44:51 -0500
21670              Message-ID: <20060424184451.GA1479@petdance.com>
21671      Branch: perl
21672            ! gv.c gv.h hv.c op.c pad.c perl.h perlio.c pp.c pp_ctl.c
21673            ! pp_hot.c regcomp.c regexec.c sv.c toke.c utf8.c
21674 ____________________________________________________________________________
21675 [ 27957] By: rgs                                   on 2006/04/25  08:35:22
21676         Log: Subject: [PATCH] Continuing threads sync
21677              From: "Jerry D. Hedden" <jerry@hedden.us>
21678              Date: Mon, 24 Apr 2006 13:00:23 -0700
21679              Message-ID: <20060424130023.fb30e530d17747c2b054d625b8945d88.969ed54130.wbe@email.secureserver.net>
21680      Branch: perl
21681            ! ext/threads/t/free.t ext/threads/threads.pm
21682            ! ext/threads/threads.xs
21683 ____________________________________________________________________________
21684 [ 27956] By: nicholas                              on 2006/04/24  16:38:09
21685         Log: Perl_unpack_str() is a mathom!
21686      Branch: perl
21687            ! mathoms.c pp_pack.c
21688 ____________________________________________________________________________
21689 [ 27955] By: stevep                                on 2006/04/24  16:31:24
21690         Log: Really bump the version of File::Find.
21691      Branch: perl
21692            ! lib/File/Find.pm
21693 ____________________________________________________________________________
21694 [ 27954] By: stevep                                on 2006/04/24  16:29:59
21695         Log: Reverting change #27953, as it appears that File::Find has 
21696              localized the C<$_> usable by the wanted function since 
21697              version 1.04 (change #18501, to be exact).  Update the 
21698              docs to express this change.  Finally, bump the version.
21699      Branch: perl
21700            ! lib/File/Find.pm
21701 ____________________________________________________________________________
21702 [ 27953] By: stevep                                on 2006/04/24  15:27:39
21703         Log: Subject: Re: [perl #38965] File::Find documentation - is "Don't modify thesevariables" still valid?
21704              From: David Landgren <david@landgren.net>
21705              Date: Mon, 24 Apr 2006 13:02:02 +0200
21706              Message-ID: <444CB02A.2000604@landgren.net>
21707      Branch: perl
21708            ! lib/File/Find.pm
21709 ____________________________________________________________________________
21710 [ 27952] By: nicholas                              on 2006/04/24  13:21:09
21711         Log: Subject: Re: recursion now removed from the regex engine
21712              From: demerphq <demerphq@gmail.com>
21713              Message-ID: <9b18b3110604231210w5deff59el3a1a79c98f34e0fd@mail.gmail.com>
21714              Date: Sun, 23 Apr 2006 21:10:34 +0200
21715      Branch: perl
21716            ! regcomp.sym regnodes.h
21717 ____________________________________________________________________________
21718 [ 27951] By: rgs                                   on 2006/04/24  12:15:58
21719         Log: Subject: [perl #38709] Opening '|-' triggers unjustified taint check 
21720              From: mhasch@cpan.org (via RT) <perlbug-followup@perl.org>
21721              Date: Fri, 10 Mar 2006 20:10:49 -0800
21722              Message-ID: <rt-3.0.11-38709-130993.2.89182805885773@perl.org>
21723      Branch: perl
21724            ! doio.c t/op/taint.t
21725 ____________________________________________________________________________
21726 [ 27950] By: rgs                                   on 2006/04/24  11:59:25
21727         Log: Add regression test for bug #38475
21728      Branch: perl
21729            + t/op/attrhand.t
21730            ! MANIFEST
21731 ____________________________________________________________________________
21732 [ 27949] By: nicholas                              on 2006/04/24  10:52:09
21733         Log: Change 27947 forgot to remove one now-unneeded cast.
21734      Branch: perl
21735            ! sv.c
21736 ____________________________________________________________________________
21737 [ 27948] By: rgs                                   on 2006/04/24  10:33:34
21738         Log: Subject: [perl #38475] attribute multiline fix (in tokenizer) 
21739              From: bas@quarantainenet.nl (via RT) <perlbug-followup@perl.org>
21740              Date: Thu, 09 Feb 2006 06:33:51 -0800
21741              Message-ID: <rt-3.0.11-38475-129844.11.5904582303176@perl.org>
21742      Branch: perl
21743            ! toke.c
21744 ____________________________________________________________________________
21745 [ 27947] By: nicholas                              on 2006/04/24  09:40:58
21746         Log: Following change 27942 it's clear that the return type of
21747              glob_2inpuv_number() should change. Rename it and glob_2inpuv() to
21748              reflect what they do.
21749      Branch: perl
21750            ! embed.fnc embed.h proto.h sv.c
21751 ____________________________________________________________________________
21752 [ 27946] By: rgs                                   on 2006/04/24  08:08:03
21753         Log: Cleanup some gcc warnings
21754              Third and fourth patches from:
21755              Subject: Re: [PATCH] cleanup 212 warnings emitted by gcc-4.2
21756              From: Marcus Holland-Moritz <mhx-perl@gmx.net>
21757              Date: Sun, 23 Apr 2006 04:47:04 +0200
21758              Message-ID: <20060423044704.6a383ee8@r2d2>
21759      Branch: perl
21760            ! mg.c perl.h toke.c
21761 ____________________________________________________________________________
21762 [ 27945] By: rgs                                   on 2006/04/24  08:04:11
21763         Log: A couple of casts to PADOFFSET.
21764              2nd patch from :
21765              Subject: Re: [PATCH] cleanup 212 warnings emitted by gcc-4.2
21766              From: Marcus Holland-Moritz <mhx-perl@gmx.net>
21767              Date: Sun, 23 Apr 2006 04:47:04 +0200
21768              Message-ID: <20060423044704.6a383ee8@r2d2>
21769      Branch: perl
21770            ! op.c pad.c pp.c toke.c
21771 ____________________________________________________________________________
21772 [ 27944] By: rgs                                   on 2006/04/24  08:01:32
21773         Log: Ensure GvNAME doesn't return NULL
21774              First patch from :
21775              Subject: Re: [PATCH] cleanup 212 warnings emitted by gcc-4.2
21776              From: Marcus Holland-Moritz <mhx-perl@gmx.net>
21777              Date: Sun, 23 Apr 2006 04:47:04 +0200
21778              Message-ID: <20060423044704.6a383ee8@r2d2>
21779      Branch: perl
21780            ! embed.fnc gv.c gv.h proto.h
21781 ____________________________________________________________________________
21782 [ 27943] By: rgs                                   on 2006/04/24  07:39:23
21783         Log: Subject: [PATCH] doop.c consting, take 2
21784              From: andy@petdance.com (Andy Lester)
21785              Date: Sun, 23 Apr 2006 20:45:09 -0500
21786              Message-ID: <20060424014509.GA29642@petdance.com>
21787      Branch: perl
21788            ! doop.c embed.fnc proto.h
21789 ____________________________________________________________________________
21790 [ 27942] By: rgs                                   on 2006/04/24  07:27:33
21791         Log: Subject: [PATCH] Refactor S_glob_2inpuv
21792              From: andy@petdance.com (Andy Lester)
21793              Date: Sun, 23 Apr 2006 21:12:39 -0500
21794              Message-ID: <20060424021239.GA5449@petdance.com>
21795      Branch: perl
21796            ! embed.fnc embed.h proto.h sv.c
21797 ____________________________________________________________________________
21798 [ 27941] By: rgs                                   on 2006/04/24  07:14:49
21799         Log: Subject: [PATCH] Inlining static funcs in perl.c
21800              From: andy@petdance.com (Andy Lester)
21801              Date: Sun, 23 Apr 2006 21:50:27 -0500
21802              Message-ID: <20060424025027.GA25998@petdance.com>
21803      Branch: perl
21804            ! embed.fnc embed.h perl.c proto.h
21805 ____________________________________________________________________________
21806 [ 27940] By: nicholas                              on 2006/04/23  20:48:25
21807         Log: Assimilate Test::Harness 2.57_06
21808      Branch: perl
21809            ! lib/Test/Harness.pm lib/Test/Harness/Changes
21810            ! lib/Test/Harness/Straps.pm lib/Test/Harness/bin/prove
21811            ! lib/Test/Harness/t/version.t
21812 ____________________________________________________________________________
21813 [ 27939] By: stevep                                on 2006/04/22  23:08:50
21814         Log: Subject: Update to AUTHORS file
21815              From: Joshua Rodd <joshua@rodd.us>
21816              Date: Sat, 22 Apr 2006 14:39:11 -0400
21817              Message-ID: <20060422183911.GA19435@rodd.us>
21818      Branch: perl
21819            ! AUTHORS
21820 ____________________________________________________________________________
21821 [ 27938] By: nicholas                              on 2006/04/22  09:31:16
21822         Log: "Don't Repeat Yourself" on the "We *really* need to overwrite these
21823              symbols" section.
21824              Minor tweaks to make it possible to use the code unchanged with 5.8.x
21825      Branch: perl
21826            + ext/re/re_comp.h ext/re/re_top.h
21827            ! MANIFEST regcomp.c regexec.c
21828 ____________________________________________________________________________
21829 [ 27937] By: nicholas                              on 2006/04/21  23:08:59
21830         Log: Remove the enable_debugging member from the structure, and instead
21831              decree that state & 1 indicates debugging. This is simpler.
21832      Branch: perl
21833            ! ext/re/re.xs
21834 ____________________________________________________________________________
21835 [ 27936] By: nicholas                              on 2006/04/21  21:40:49
21836         Log: Use a struct to hold the regexp engine state information, to make
21837              swapping possible between more two alternatives.
21838      Branch: perl
21839            ! ext/re/re.xs
21840 ____________________________________________________________________________
21841 [ 27935] By: nicholas                              on 2006/04/21  21:01:42
21842         Log: Merge the install and uninstall routines.
21843      Branch: perl
21844            ! ext/re/re.pm ext/re/re.xs
21845 ____________________________________________________________________________
21846 [ 27934] By: nicholas                              on 2006/04/21  20:38:15
21847         Log: Refactor re.pm slightly. This has no change to documented behaviour,
21848              but anyone mad enought to set ${^RE_DEBUG_FLAGS} and then do
21849              no re 'Debug'; will now find that it will load the debuging version of
21850              the regexp engine.
21851      Branch: perl
21852            ! ext/re/re.pm
21853 ____________________________________________________________________________
21854 [ 27933] By: rgs                                   on 2006/04/21  15:55:38
21855         Log: Subject: [PATCH] Rework threads destruct call
21856              From: "Jerry D. Hedden" <jerry@hedden.us>
21857              Date: Thu, 20 Apr 2006 13:53:20 -0700
21858              Message-ID: <20060420135320.fb30e530d17747c2b054d625b8945d88.ef565d84db.wbe@email.secureserver.net>
21859      Branch: perl
21860            + ext/threads/t/free.t ext/threads/t/free2.t
21861            ! MANIFEST ext/threads/threads.xs
21862 ____________________________________________________________________________
21863 [ 27932] By: rgs                                   on 2006/04/21  13:01:09
21864         Log: Subject: Re: [perl #38904] Text::ParseWords doesn't always handle backslashes correctly 
21865              From: Alexey Toptygin <alexeyt@freeshell.org>
21866              Date: Thu, 20 Apr 2006 15:42:20 +0000 (UTC)
21867              Message-ID: <Pine.NEB.4.62.0604201539380.20332@otaku.freeshell.org>
21868      Branch: perl
21869            ! lib/Text/ParseWords.pm lib/Text/ParseWords.t
21870 ____________________________________________________________________________
21871 [ 27931] By: nicholas                              on 2006/04/21  12:46:43
21872         Log: Why hide functions (and duplicate them) when you can just avoid
21873              compiling them in the first place?
21874      Branch: perl
21875            ! regcomp.c regexec.c
21876 ____________________________________________________________________________
21877 [ 27930] By: nicholas                              on 2006/04/21  11:38:24
21878         Log: Given that use re 'debug' can turn on DEBUGGING even on a non-DEBUGGING
21879              build, we cannot assume that PL_reg_starttry isn't needed. So copy it
21880              in Perl_ss_dup.
21881      Branch: perl
21882            ! sv.c
21883 ____________________________________________________________________________
21884 [ 27927] By: nicholas                              on 2006/04/20  21:27:21
21885         Log: Remove the last traces of explicitly setting HINT_LOCALIZE_HH from
21886              perl modules.
21887      Branch: perl
21888            ! lib/charnames.pm lib/open.pm lib/open.t lib/overload.pm
21889 ____________________________________________________________________________
21890 [ 27925] By: stevep                                on 2006/04/20  20:55:09
21891         Log: Subject: Re: TODO tests and test::harness
21892              From: demerphq <demerphq@gmail.com>
21893              Date: Thu, 20 Apr 2006 22:36:08 +0200
21894              Message-ID: <9b18b3110604201336k5a974f28h732a2819853b995@mail.gmail.com>
21895      Branch: perl
21896            ! lib/Test/Harness.pm lib/Test/Harness/t/version.t
21897 ____________________________________________________________________________
21898 [ 27923] By: rgs                                   on 2006/04/20  20:24:46
21899         Log: Add test boilerplate and use test.pl instead of Test::More
21900      Branch: perl
21901            ! t/op/rxcode.t
21902 ____________________________________________________________________________
21903 [ 27922] By: rgs                                   on 2006/04/20  20:22:23
21904         Log: Add new tests for bug #32840 provided by David Landgren,
21905              as a new file rxcode.t (they mostly test $^R for now)
21906      Branch: perl
21907            + t/op/rxcode.t
21908            ! MANIFEST
21909 ____________________________________________________________________________
21910 [ 27919] By: nicholas                              on 2006/04/20  18:51:02
21911         Log: Tweak change 23256 to continue passing on 5.8.x
21912      Branch: perl
21913            ! lib/base/t/fields.t
21914 ____________________________________________________________________________
21915 [ 27918] By: nicholas                              on 2006/04/20  17:37:31
21916         Log: Convert two ok()s to better constructions.
21917      Branch: perl
21918            ! lib/base/t/fields.t
21919 ____________________________________________________________________________
21920 [ 27917] By: rgs                                   on 2006/04/20  17:25:43
21921         Log: Subject: [REPOST] [PATCH] Remove superfluous counter in threads
21922              From: "Jerry D. Hedden" <jerry@hedden.us>
21923              Date: Wed, 19 Apr 2006 05:32:14 -0700
21924              Message-ID: <20060419053214.fb30e530d17747c2b054d625b8945d88.4606123135.wbe@email.secureserver.net>
21925      Branch: perl
21926            ! ext/threads/threads.pm ext/threads/threads.xs
21927 ____________________________________________________________________________
21928 [ 27913] By: nicholas                              on 2006/04/20  13:54:45
21929         Log: Fix typo in the description of change 21323.
21930      Branch: perl
21931            ! Changes
21932 ____________________________________________________________________________
21933 [ 27912] By: rgs                                   on 2006/04/20  12:59:50
21934         Log: New test for the "Assignment to both a list and a scalar" error,
21935              suggested by Stephen McCamant
21936      Branch: perl
21937            ! t/comp/parser.t
21938 ____________________________________________________________________________
21939 [ 27911] By: davem                                 on 2006/04/20  12:33:09
21940         Log: regmatch(): replace magic value -1000 with symbolic CHRTEST_VOID
21941      Branch: perl
21942            ! regexec.c
21943 ____________________________________________________________________________
21944 [ 27910] By: rgs                                   on 2006/04/20  10:02:25
21945         Log: Subject: [PATCH] op_type shrinking
21946              From: andy@petdance.com (Andy Lester)
21947              Date: Wed, 19 Apr 2006 23:16:53 -0500
21948              Message-ID: <20060420041653.GA28523@petdance.com>
21949      Branch: perl
21950            ! dump.c sv.c
21951 ____________________________________________________________________________
21952 [ 27909] By: rgs                                   on 2006/04/20  09:35:00
21953         Log: Subject: [PATCH] regexec consting & localizing
21954              From: andy@petdance.com (Andy Lester)
21955              Date: Wed, 19 Apr 2006 12:35:43 -0500
21956              Message-ID: <20060419173543.GA8268@petdance.com>
21957      Branch: perl
21958            ! regexec.c
21959 ____________________________________________________________________________
21960 [ 27908] By: rgs                                   on 2006/04/20  09:04:46
21961         Log: Subject: [PATCH] Localizing vars
21962              From: andy@petdance.com (Andy Lester)
21963              Date: Wed, 19 Apr 2006 23:44:01 -0500
21964              Message-ID: <20060420044401.GA2792@petdance.com>
21965      Branch: perl
21966            ! util.c
21967 ____________________________________________________________________________
21968 [ 27907] By: davem                                 on 2006/04/20  00:30:53
21969         Log: regmatch: merge the greedy and non-greedy branches of CURLYM
21970      Branch: perl
21971            ! regexec.c regexp.h
21972 ____________________________________________________________________________
21973 [ 27906] By: stevep                                on 2006/04/19  16:40:56
21974         Log: Subject: [perl #38892] PATCH: remove spurious warning from Benchmark.pm
21975              From: Linda Walsh (via RT) <perlbug-followup@perl.org>
21976              Date: Mon, 10 Apr 2006 18:53:46 -0700
21977              Message-ID: <rt-3.0.11-38892-132143.0.516271519365361@perl.org>
21978      Branch: perl
21979            ! lib/Benchmark.pm
21980 ____________________________________________________________________________
21981 [ 27905] By: stevep                                on 2006/04/19  16:32:26
21982         Log: Changes to perlfaq8 "How do I find out if I'm running interactively 
21983              or not?" suggested by Slaven Rezic in RT #38901: perlfaq8 correction
21984      Branch: perl
21985            ! pod/perlfaq8.pod
21986 ____________________________________________________________________________
21987 [ 27904] By: stevep                                on 2006/04/19  14:57:36
21988         Log: Add a TODO test for RT #1085: "what should be output of perl -we
21989              'print do { foreach (1, 2) { 1; } }'"
21990      Branch: perl
21991            ! t/cmd/for.t
21992 ____________________________________________________________________________
21993 [ 27903] By: davem                                 on 2006/04/19  13:56:07
21994         Log: regmatch(): make IFMATCH use PUSH_STACK rather than fake recursion
21995      Branch: perl
21996            ! regexec.c regexp.h t/op/re_tests
21997 ____________________________________________________________________________
21998 [ 27902] By: rgs                                   on 2006/04/19  11:38:11
21999         Log: Upgrade to Test::Harness 2.57_05
22000      Branch: perl
22001            + lib/Test/Harness/Util.pm
22002            ! MANIFEST lib/Test/Harness.pm lib/Test/Harness/Assert.pm
22003            ! lib/Test/Harness/Changes lib/Test/Harness/Point.pm
22004            ! lib/Test/Harness/Straps.pm lib/Test/Harness/TAP.pod
22005            ! lib/Test/Harness/bin/prove lib/Test/Harness/t/inc_taint.t
22006            ! lib/Test/Harness/t/prove-globbing.t
22007            ! lib/Test/Harness/t/prove-switches.t lib/Test/Harness/t/strap.t
22008            ! lib/Test/Harness/t/test-harness.t
22009 ____________________________________________________________________________
22010 [ 27901] By: nicholas                              on 2006/04/19  11:20:08
22011         Log: newCONSTSUB needs to be robust in case CopFILE is NULL.
22012      Branch: perl
22013            ! op.c
22014 ____________________________________________________________________________
22015 [ 27900] By: nicholas                              on 2006/04/19  09:58:19
22016         Log: Oops. Need a macro to convert cv_ckproto() to cv_ckproto_len().
22017      Branch: perl
22018            ! op.h
22019 ____________________________________________________________________________
22020 [ 27899] By: rgs                                   on 2006/04/19  09:34:48
22021         Log: There's a macro to get ${^RE_DEBUG_FLAGS} when debugging,
22022              so use it (and this fixes a valgrind memory access error)
22023      Branch: perl
22024            ! regcomp.c
22025 ____________________________________________________________________________
22026 [ 27898] By: nicholas                              on 2006/04/19  09:22:03
22027         Log: Avoid temporarily writing over the prototype when reporting an error.
22028              (And beef up the relevant tests to really check that it all works).
22029      Branch: perl
22030            ! op.c t/comp/proto.t
22031 ____________________________________________________________________________
22032 [ 27897] By: rgs                                   on 2006/04/19  09:09:14
22033         Log: Replace some Copy() by Move() calls, because valgrind reports
22034              we can have overlapping memory areas here
22035      Branch: perl
22036            ! doop.c
22037 ____________________________________________________________________________
22038 [ 27896] By: nicholas                              on 2006/04/19  08:42:18
22039         Log: Calling cv_undef() on the CV created by newCONSTSUB() would leak like
22040              a Jumblie's preferred maritime craft. To free CvFILE for this case,
22041              take advantage of the 0 length prototype that will also be there,
22042              and hang it from the prototype. To do this properly means changing
22043              code to actually pay attention to SvCUR() on prototypes. It turns out
22044              that we always know the length of the prototype string, so this may
22045              be faster. Certainly, it's a memory saving (even ignoring the leak).
22046      Branch: perl
22047            ! dump.c embed.fnc embed.h global.sym mathoms.c op.c
22048            ! pod/perlapi.pod proto.h sv.c util.c
22049 ____________________________________________________________________________
22050 [ 27895] By: nicholas                              on 2006/04/19  07:55:18
22051         Log: Fix compilation of microperl, which doesn't have INT_MAX.
22052      Branch: perl
22053            ! toke.c
22054 ____________________________________________________________________________
22055 [ 27894] By: nicholas                              on 2006/04/18  19:52:19
22056         Log: Revert 27869 at Jarkko's request.
22057      Branch: perl
22058            ! regcomp.c
22059 ____________________________________________________________________________
22060 [ 27893] By: davem                                 on 2006/04/18  17:03:15
22061         Log: regmatch: fix a || vs | typo in CACHEsayYES and add a test from Hugo.
22062              Also defer altering the cache bit until CACHEsayYES/NO is called
22063      Branch: perl
22064            ! regexec.c t/op/re_tests
22065 ____________________________________________________________________________
22066 [ 27892] By: stevep                                on 2006/04/18  16:47:58
22067         Log: Add a TODO regarding merging the win32 and wince codebases.
22068      Branch: perl
22069            ! pod/perltodo.pod
22070 ____________________________________________________________________________
22071 [ 27891] By: rgs                                   on 2006/04/18  16:05:15
22072         Log: When checking whether perl is built with -g in optimisation
22073              flags, use a more tolerant regexp, because we can now have
22074              things like '-O2 -g'.
22075      Branch: perl
22076            ! Makefile.SH
22077 ____________________________________________________________________________
22078 [ 27890] By: nicholas                              on 2006/04/18  16:03:10
22079         Log: Expand "am I hot or not" into a more general "Profile Perl" section.
22080      Branch: perl
22081            ! pod/perltodo.pod
22082 ____________________________________________________________________________
22083 [ 27889] By: stevep                                on 2006/04/18  15:47:48
22084         Log: A fix to change #27845 to get it to compile with -DPERL_MAD.
22085      Branch: perl
22086            ! dump.c
22087 ____________________________________________________________________________
22088 [ 27888] By: steveh                                on 2006/04/18  15:17:52
22089         Log: Subject: [PATCH] win32/Makefile changes for Windows 64 bit
22090              From: "Jan Dubois" <jand@ActiveState.com>
22091              Date: Mon, 17 Apr 2006 01:48:34 -0700
22092              Message-ID: <036401c661fb$bc7a1200$2217a8c0@candy>
22093              
22094              and make similar changes to win32/makefile.mk
22095              and delete a spurious extra line from that file
22096      Branch: perl
22097            ! win32/Makefile win32/makefile.mk
22098 ____________________________________________________________________________
22099 [ 27887] By: rgs                                   on 2006/04/18  14:02:23
22100         Log: Addition to README.riscos suggested by Nicholas
22101      Branch: perl
22102            ! README.riscos
22103 ____________________________________________________________________________
22104 [ 27886] By: nicholas                              on 2006/04/18  13:18:27
22105         Log: Note that Rafael has done the first cut of state variables.
22106              Document that UTF-8 cleansing the tokeniser and the pads is TODO.
22107      Branch: perl
22108            ! pod/perltodo.pod
22109 ____________________________________________________________________________
22110 [ 27885] By: nicholas                              on 2006/04/18  13:10:35
22111         Log: Relocatable @INC and parallel builds pretty much work now.
22112      Branch: perl
22113            ! pod/perltodo.pod
22114 ____________________________________________________________________________
22115 [ 27884] By: rgs                                   on 2006/04/18  12:48:31
22116         Log: Subject: [PATCH] Support compiling for RISC OS
22117              From: Alex Waugh <alex@alexwaugh.com>
22118              Date: Mon, 17 Apr 2006 00:14:26 +0100
22119              Message-ID: <2498b2184e.ajw498@caramel.cp15.org>
22120      Branch: perl
22121            + README.riscos hints/riscos.sh
22122            ! MANIFEST ext/Errno/Errno_pm.PL hv.c util.c
22123 ____________________________________________________________________________
22124 [ 27883] By: nicholas                              on 2006/04/18  11:18:12
22125         Log: Coverity still thinks that there is a route through do_vop that can
22126              leak resources. I believe that it's spotted that you can skip all the
22127              cases in the switch. Plug that hole.
22128      Branch: perl
22129            ! doop.c
22130 ____________________________________________________________________________
22131 [ 27882] By: nicholas                              on 2006/04/18  10:54:15
22132         Log: Coverity insists that if we deference a pointer without checking, and
22133              subsequently check that same pointer before deferencing it, something
22134              in our code or our logic is bogus. So assert() that it's safe the
22135              first time and remove the second check.
22136      Branch: perl
22137            ! regcomp.c
22138 ____________________________________________________________________________
22139 [ 27881] By: nicholas                              on 2006/04/17  20:50:34
22140         Log: Fix an error, spotted by Tim Bunce.
22141      Branch: perl
22142            ! pod/perlfunc.pod
22143 ____________________________________________________________________________
22144 [ 27880] By: nicholas                              on 2006/04/17  20:41:00
22145         Log: Coderefs in @INC are done and documented.
22146      Branch: perl
22147            ! pod/perltodo.pod
22148 ____________________________________________________________________________
22149 [ 27879] By: nicholas                              on 2006/04/17  20:35:52
22150         Log: Document all the return values that code references in @INC can return.
22151      Branch: perl
22152            ! pod/perlfunc.pod
22153 ____________________________________________________________________________
22154 [ 27878] By: stevep                                on 2006/04/17  20:05:03
22155         Log: Patch to fix RT #31227: perldoc -f, -q ignores extra arguments with no notice.
22156              Never made it to the mailing list though, so, was never found.  Patch
22157              previously provided to the Pod-Perldoc CPAN RT queue.
22158      Branch: perl
22159            ! lib/Pod/Perldoc.pm
22160 ____________________________________________________________________________
22161 [ 27877] By: nicholas                              on 2006/04/17  19:12:23
22162         Log: Coverity is upset about a signed int in ext/Filter/Util/Call/Call.xs,
22163              but the real problem is down in Perl_filter_read() in toke.c.
22164      Branch: perl
22165            ! toke.c
22166 ____________________________________________________________________________
22167 [ 27876] By: nicholas                              on 2006/04/17  18:30:59
22168         Log: Coverity is a persistent beast. Hot on the tails of fixing one leak,
22169              it notices a slightly earlier leak.
22170              (Which also suggests that marking bugs as RESOLVED isn't a great plan,
22171              as it's not clear whether that calls off the dogs of war. I'd much
22172              prefer it to be forced to scan again, and give a positve "all clear"
22173              (or more accurately "nowt wrong I can see with that"))
22174      Branch: perl
22175            ! ext/Storable/Storable.xs
22176 ____________________________________________________________________________
22177 [ 27875] By: nicholas                              on 2006/04/17  16:52:54
22178         Log: Turn on UTF8 cache assertions with -Ca
22179      Branch: perl
22180            ! locale.c perl.c perl.h pod/perlrun.pod util.c
22181 ____________________________________________________________________________
22182 [ 27874] By: nicholas                              on 2006/04/17  16:52:07
22183         Log: Oops. Change 27826 had an error in the definition of BGET_PADOFFSET().
22184      Branch: perl
22185            ! ext/ByteLoader/bytecode.h
22186 ____________________________________________________________________________
22187 [ 27873] By: stevep                                on 2006/04/17  16:49:51
22188         Log: Upgrade to CGI.pm-3.19.
22189      Branch: perl
22190            ! lib/CGI.pm lib/CGI/Changes
22191 ____________________________________________________________________________
22192 [ 27872] By: nicholas                              on 2006/04/17  15:33:21
22193         Log: Note that PVIOs probably aren't worth shrinking. Note 3 possible
22194              subflags for -C if the two Unicode TODOs are done.
22195      Branch: perl
22196            ! pod/perlrun.pod pod/perltodo.pod
22197 ____________________________________________________________________________
22198 [ 27871] By: nicholas                              on 2006/04/17  15:11:03
22199         Log: Subject: Re: [PATCH] update to pp_complement() via Coverity
22200              From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
22201              Message-Id: <20060416184044.4ADB.BQW10602@nifty.com>
22202              Date: Sun, 16 Apr 2006 18:45:37 +0900
22203              
22204              Subject: Re: [PATCH] update to pp_complement() via Coverity
22205              From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
22206              Message-Id: <20060417230614.20A5.BQW10602@nifty.com>
22207              Date: Mon, 17 Apr 2006 23:06:21 +0900
22208      Branch: perl
22209            ! pp.c t/op/bop.t
22210 ____________________________________________________________________________
22211 [ 27870] By: nicholas                              on 2006/04/17  14:48:13
22212         Log: In Change 27764 I forgot to at PL_hints_mutex to the list of symbols to
22213              exclude when not compiling with ithreads. It would be good to automate
22214              the processing of this.
22215      Branch: perl
22216            ! makedef.pl
22217 ____________________________________________________________________________
22218 [ 27869] By: nicholas                              on 2006/04/17  13:38:30
22219         Log: Subject: [PATCH] (tentative) regcomp.c: try convincing Coverity that data ptr in study_chunk is non-NULL when needed
22220              From: jhi@cc.hut.fi (Jarkko Hietaniemi)
22221              Message-Id: <20060416092648.812D36CF2D@aprikoosi.hut.fi>
22222              Date: Sun, 16 Apr 2006 12:26:48 +0300 (EEST)
22223      Branch: perl
22224            ! regcomp.c
22225 ____________________________________________________________________________
22226 [ 27868] By: nicholas                              on 2006/04/17  13:15:34
22227         Log: Note in av_store() that S_regclass relies on being able to pass NULL.
22228      Branch: perl
22229            ! av.c
22230 ____________________________________________________________________________
22231 [ 27867] By: nicholas                              on 2006/04/17  13:14:55
22232         Log: Add assertions to cover cases where the Coverity scanner thinks we
22233              could are deferencing a NULL pointer, but we think it missed something
22234              it should have been capable of figuring out.
22235      Branch: perl
22236            ! hv.c op.c
22237 ____________________________________________________________________________
22238 [ 27866] By: nicholas                              on 2006/04/17  12:48:43
22239         Log: Add Dave's explainations of why certain pointers are always non-NULL,
22240              and assert() that it is true.
22241      Branch: perl
22242            ! regexec.c
22243 ____________________________________________________________________________
22244 [ 27865] By: stevep                                on 2006/04/17  12:30:08
22245         Log: Subject: [PATCH] fix cygwin build
22246              From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
22247              Date: Sun, 16 Apr 2006 18:05:20 -0700
22248              Message-ID: <20060417010520.GA2888@efn.org>
22249      Branch: perl
22250            ! cygwin/Makefile.SHs
22251 ____________________________________________________________________________
22252 [ 27863] By: merijn                                on 2006/04/17  12:18:07
22253         Log: Support for -DDEBUGGING and its alias -DEBUGGING
22254      Branch: perl
22255            ! Configure INSTALL config_h.SH
22256 ____________________________________________________________________________
22257 [ 27862] By: nicholas                              on 2006/04/17  12:07:23
22258         Log: Revert change 27818, as change 27853 fixes the real bug.
22259      Branch: perl
22260            ! sv.c
22261 ____________________________________________________________________________
22262 [ 27861] By: stevep                                on 2006/04/17  11:53:04
22263         Log: Subject: [PATCH] Compress::Zlib
22264              From: "Paul Marquess" <Paul.Marquess@ntlworld.com>
22265              Date: Mon, 17 Apr 2006 10:58:30 +0100
22266              Message-ID: <019b01c66205$7dc7ea50$6601a8c0@myopwv.com>
22267      Branch: perl
22268            ! ext/Compress/Zlib/lib/Compress/Zlib.pm
22269            ! ext/Compress/Zlib/t/14gzopen.t
22270 ____________________________________________________________________________
22271 [ 27860] By: nicholas                              on 2006/04/17  11:39:27
22272         Log: Subject: [PATCH] pp_ctl.c caching
22273              From: andy@petdance.com (Andy Lester)
22274              Message-ID: <20060417044035.GA28818@petdance.com>
22275              Date: Sun, 16 Apr 2006 23:40:35 -0500
22276      Branch: perl
22277            ! pp_ctl.c
22278 ____________________________________________________________________________
22279 [ 27859] By: nicholas                              on 2006/04/17  11:37:38
22280         Log: Subject: [PATCH] dooop.c: the strong asserts in Sv* macros could cause memory leakage -- move the macro calls earlier (Coverity CID 84)
22281              From: jhi@cc.hut.fi (Jarkko Hietaniemi)
22282              Message-Id: <20060417071937.C13346CF2D@aprikoosi.hut.fi>
22283              Date: Mon, 17 Apr 2006 10:19:37 +0300 (EEST)
22284      Branch: perl
22285            ! doop.c
22286 ____________________________________________________________________________
22287 [ 27857] By: nicholas                              on 2006/04/17  10:28:40
22288         Log: Revert 27856.
22289      Branch: perl
22290            ! doop.c
22291 ____________________________________________________________________________
22292 [ 27856] By: nicholas                              on 2006/04/17  10:24:58
22293         Log: The danger of piping an mbox to patch is that it contains more than
22294              one message. So both:
22295              
22296              Subject: [PATCH] doop.c: one more code path where memory could leak (Coverity)
22297              From: jhi@cc.hut.fi (Jarkko Hietaniemi)
22298              Message-Id: <20060416081925.680336CF2D@aprikoosi.hut.fi>
22299              Date: Sun, 16 Apr 2006 11:19:25 +0300 (EEST)
22300              
22301              and
22302              
22303              Subject: [PATCH] doop.c: one more code path where memory could leak (Coverity)
22304              From: jhi@cc.hut.fi (Jarkko Hietaniemi)
22305              Message-Id: <20060416081925.680336CF2D@aprikoosi.hut.fi>
22306              Date: Sun, 16 Apr 2006 11:19:25 +0300 (EEST)
22307      Branch: perl
22308            ! doop.c
22309 ____________________________________________________________________________
22310 [ 27855] By: davem                                 on 2006/04/16  23:30:36
22311         Log: generalize the 'continue on success' mechanism of deferred REs
22312      Branch: perl
22313            ! regexec.c regexp.h
22314 ____________________________________________________________________________
22315 [ 27854] By: davem                                 on 2006/04/16  23:12:31
22316         Log: abstract regmatch slab access with SLAB_FIRST and SLAB_LAST macros
22317      Branch: perl
22318            ! regexec.c
22319 ____________________________________________________________________________
22320 [ 27853] By: davem                                 on 2006/04/16  23:07:13
22321         Log: stop PL_op and PL_curpad referring to different pads at start of doeval
22322              (this could make find_uninit_var do Bad Things)
22323      Branch: perl
22324            ! pp_ctl.c
22325 ____________________________________________________________________________
22326 [ 27852] By: nicholas                              on 2006/04/16  21:44:59
22327         Log: Fix bug introduced with change 27841. (len + 1, not just len).
22328      Branch: perl
22329            ! sv.c
22330 ____________________________________________________________________________
22331 [ 27851] By: nicholas                              on 2006/04/16  19:06:19
22332         Log: Coverity is flagging a potential problem because it sees a check for
22333              NULL and assumes that this means that the variable host could be
22334              NULL. It can't, and the check added in change 13291 was a little bit
22335              more than the minimal solution needed for the bug report
22336              [ID 20011126.148]
22337              Hence remove the NULL check.
22338      Branch: perl
22339            ! ext/Socket/Socket.xs
22340 ____________________________________________________________________________
22341 [ 27850] By: nicholas                              on 2006/04/16  18:09:33
22342         Log: Subject: [PATCH] op.c patch, 2nd version
22343              From: andy@petdance.com (Andy Lester)
22344              Message-ID: <20060415042924.GA1786@petdance.com>
22345              Date: Fri, 14 Apr 2006 23:29:24 -0500
22346      Branch: perl
22347            ! op.c
22348 ____________________________________________________________________________
22349 [ 27849] By: nicholas                              on 2006/04/16  15:04:36
22350         Log: A scalar reference returned from a coderef in @INC is treated as the
22351              initial "content" of the file. When it is exhausted input is taken
22352              from a real file handle, or a generator sub, if either exists.
22353      Branch: perl
22354            ! pp_ctl.c t/op/incfilter.t
22355 ____________________________________________________________________________
22356 [ 27848] By: stevep                                on 2006/04/16  14:03:59
22357         Log: Subject: [PATCH] remove some cruft from makedef.pl
22358              From: "Jan Dubois" <jand@ActiveState.com>
22359              Date: Sun, 16 Apr 2006 02:05:00 -0700
22360              Message-ID: <022e01c66134$d7a8dec0$2217a8c0@candy>
22361      Branch: perl
22362            ! embed.fnc global.sym makedef.pl
22363 ____________________________________________________________________________
22364 [ 27847] By: stevep                                on 2006/04/16  13:52:47
22365         Log: Subject: [PATCH] testcase for change #27832
22366              From: "Jan Dubois" <jand@ActiveState.com>
22367              Date: Sun, 16 Apr 2006 00:57:00 -0700
22368              Message-ID: <022a01c6612b$575cb7e0$2217a8c0@candy>
22369      Branch: perl
22370            ! lib/Pod/Html.pm lib/Pod/t/htmllink.pod
22371 ____________________________________________________________________________
22372 [ 27846] By: stevep                                on 2006/04/16  13:44:47
22373         Log: Stray pod/perlapi.pod change found after a regen.
22374      Branch: perl
22375            ! pod/perlapi.pod
22376 ____________________________________________________________________________
22377 [ 27845] By: stevep                                on 2006/04/16  13:43:01
22378         Log: Subject: [PATCH] dump.c patch redux
22379              From: andy@petdance.com (Andy Lester)
22380              Date: Sun, 16 Apr 2006 00:29:36 -0500
22381              Message-ID: <20060416052936.GA19143@petdance.com>
22382      Branch: perl
22383            ! dump.c embed.fnc embed.h proto.h
22384 ____________________________________________________________________________
22385 [ 27843] By: nicholas                              on 2006/04/16  13:25:18
22386         Log: Perl_do_vop can profitably use Perl_sv_usepvn_flags, as it has
22387              allocated space for an initialised a trailing NUL.
22388      Branch: perl
22389            ! doop.c
22390 ____________________________________________________________________________
22391 [ 27842] By: nicholas                              on 2006/04/16  12:06:57
22392         Log: In Perl_sv_usepvn_flags, assert() that the caller has RTFM.
22393      Branch: perl
22394            ! sv.c
22395 ____________________________________________________________________________
22396 [ 27841] By: nicholas                              on 2006/04/16  11:35:38
22397         Log: Provide a new flag for sv_usepvn_flags, SV_HAS_TRAILING_NUL, which
22398              signals that the buffer passed in is already well-formed for use as
22399              SvPVX (i.e. it is followed by a trailing NUL), and hence the realloc()
22400              to add a NUL can be skipped.
22401      Branch: perl
22402            ! pp.c sv.c sv.h
22403 ____________________________________________________________________________
22404 [ 27840] By: nicholas                              on 2006/04/16  11:03:28
22405         Log: Merge sv_usepvn and sv_usepvn_mg into sv_usepvn_flags. "Promote" the
22406              other two to mathoms.c
22407      Branch: perl
22408            ! embed.fnc embed.h global.sym mathoms.c proto.h sv.c sv.h
22409 ____________________________________________________________________________
22410 [ 27839] By: nicholas                              on 2006/04/16  10:37:46
22411         Log: In Perl_sv_usepvn(), force a move under DEBUGGING to shake out caller
22412              bugs.
22413      Branch: perl
22414            ! sv.c
22415 ____________________________________________________________________________
22416 [ 27838] By: nicholas                              on 2006/04/16  10:37:04
22417         Log: Fix htmllink.t to cater for the case where perladmin isn't an empty
22418              string.
22419      Branch: perl
22420            ! lib/Pod/t/htmllink.t
22421 ____________________________________________________________________________
22422 [ 27837] By: nicholas                              on 2006/04/16  09:36:18
22423         Log: Coverity notes that we might be dereferencing fgv before a check that
22424              it's not NULL. In fact, the code ordering meant that one "if (fgv)"
22425              would always be true. So fix this.
22426      Branch: perl
22427            ! pp_sys.c
22428 ____________________________________________________________________________
22429 [ 27836] By: stevep                                on 2006/04/16  05:24:04
22430         Log: Subject: [PATCH] update to pp_complement() via Coverity
22431              From: andy@petdance.com (Andy Lester)
22432              Date: Sun, 16 Apr 2006 00:14:23 -0500
22433              Message-ID: <20060416051423.GA17063@petdance.com>
22434      Branch: perl
22435            ! pp.c
22436 ____________________________________________________________________________
22437 [ 27835] By: stevep                                on 2006/04/16  05:17:57
22438         Log: Subject: [PATCH] clean up hv_assert()
22439              From: andy@petdance.com (Andy Lester)
22440              Date: Sat, 15 Apr 2006 23:18:27 -0500
22441              Message-ID: <20060416041827.GA3031@petdance.com>
22442      Branch: perl
22443            ! hv.c
22444 ____________________________________________________________________________
22445 [ 27834] By: stevep                                on 2006/04/16  05:12:56
22446         Log: Subject: [PATCH] Removed unused var in a macro
22447              From: andy@petdance.com (Andy Lester)
22448              Date: Sat, 15 Apr 2006 23:32:53 -0500
22449              Message-ID: <20060416043253.GA3438@petdance.com>
22450      Branch: perl
22451            ! thread.h
22452 ____________________________________________________________________________
22453 [ 27833] By: stevep                                on 2006/04/16  04:59:19
22454         Log: Subject: [PATCH] Change anchor generation in Pod::Html for "=item item 2"
22455              From: "Jan Dubois" <jand@ActiveState.com>
22456              Date: Fri, 14 Apr 2006 13:13:20 -0700
22457              Message-ID: <017a01c65fff$dfd0f370$2217a8c0@candy>
22458      Branch: perl
22459            ! lib/Pod/Html.pm lib/Pod/t/htmllink.t
22460 ____________________________________________________________________________
22461 [ 27832] By: stevep                                on 2006/04/16  04:50:15
22462         Log: Subject: [PATCH] Pod::Html::depod() doesn't work correctly for multi-line strings
22463              From: "Jan Dubois" <jand@ActiveState.com>
22464              Date: Mon, 10 Apr 2006 15:32:23 -0700
22465              Message-ID: <017b01c65cee$a2f5fe00$6062a8c0@candy>
22466      Branch: perl
22467            ! lib/Pod/Html.pm
22468 ____________________________________________________________________________
22469 [ 27831] By: stevep                                on 2006/04/16  04:41:34
22470         Log: Subject: [PATCH] Missing part of change 25186
22471              From: "Jan Dubois" <jand@ActiveState.com>
22472              Date: Thu, 13 Apr 2006 18:26:29 -0700
22473              Message-ID: <009401c65f62$74fded70$2217a8c0@candy>
22474      Branch: perl
22475            ! lib/Pod/t/htmllink.t
22476 ____________________________________________________________________________
22477 [ 27830] By: stevep                                on 2006/04/16  04:37:46
22478         Log: Subject: [PATCH] Missing part of change 25676
22479              From: "Jan Dubois" <jand@ActiveState.com>
22480              Date: Thu, 13 Apr 2006 18:19:26 -0700
22481              Message-ID: <009001c65f61$78866d60$2217a8c0@candy>
22482      Branch: perl
22483            ! lib/Pod/t/htmllink.t
22484 ____________________________________________________________________________
22485 [ 27829] By: nicholas                              on 2006/04/15  23:51:10
22486         Log: Subject: [PATCH] Handle null io in leavewrite (not possible?) (Coverity)
22487              From: bah@longitude.com
22488              Message-ID: <1661.38.96.138.153.1145124821.squirrel@mail.longitude.com>
22489              Date: Sat, 15 Apr 2006 14:13:41 -0400 (EDT)
22490      Branch: perl
22491            ! pp_sys.c
22492 ____________________________________________________________________________
22493 [ 27828] By: nicholas                              on 2006/04/15  23:41:23
22494         Log: Subject: [PATCH] Potential (?) memory leak in Storable.xs (Coverity)
22495              From: bah@longitude.com
22496              Message-ID: <1561.38.96.138.153.1145123650.squirrel@mail.longitude.com>
22497              Date: Sat, 15 Apr 2006 13:54:10 -0400 (EDT)
22498      Branch: perl
22499            ! ext/Storable/Storable.xs
22500 ____________________________________________________________________________
22501 [ 27827] By: nicholas                              on 2006/04/15  22:44:30
22502         Log: Teach Perl_do_sv_dump how to cope with IOs that have bogus things in
22503              GV slots. (Which source filters are prone to do to them).
22504      Branch: perl
22505            ! dump.c
22506 ____________________________________________________________________________
22507 [ 27826] By: nicholas                              on 2006/04/15  21:50:12
22508         Log: Coverity was getting upset about an assignment from a function
22509              returning int to a U8 variable. Curiously it was only getting upset
22510              about the first of many.
22511              However, we are doing NO ERROR CHECKING on whether we read in the
22512              requested number of bytes of bytecode. All except BGET_op_tr_array
22513              will now croak on a short read.
22514      Branch: perl
22515            ! ext/ByteLoader/bytecode.h
22516 ____________________________________________________________________________
22517 [ 27825] By: nicholas                              on 2006/04/15  21:43:13
22518         Log: Coverity reports that Storable can potentially cause a NULL pointer
22519              dereference while iterating a hash. This should never happen unless
22520              the hash lies about how many keys it has, so croak if a fib is spotted.
22521      Branch: perl
22522            ! ext/Storable/Storable.xs
22523 ____________________________________________________________________________
22524 [ 27824] By: nicholas                              on 2006/04/15  21:11:44
22525         Log: Coverity notes that resource are leaked in the unfinished and never
22526              called function _utf8_to_bytes.
22527      Branch: perl
22528            ! ext/Encode/Encode.xs
22529 ____________________________________________________________________________
22530 [ 27823] By: nicholas                              on 2006/04/15  20:55:20
22531         Log: Coverity correctly reports that gv might (just) be NULL. So don't
22532              derefernece it if it is.
22533      Branch: perl
22534            ! ext/IO/IO.pm ext/IO/IO.xs
22535 ____________________________________________________________________________
22536 [ 27822] By: nicholas                              on 2006/04/15  20:54:44
22537         Log: Update the assertion to a croak "Out of range special SV number"
22538              to give ByteLoader more meaningful failure diagnostics.
22539      Branch: perl
22540            ! ext/ByteLoader/bytecode.h
22541 ____________________________________________________________________________
22542 [ 27821] By: nicholas                              on 2006/04/15  20:19:22
22543         Log: I believe that it makes little sense for the simple user filters
22544              provided by coderefs to be run in block mode. Hence always read from
22545              the upstream filter in line mode, and always call the user's filter
22546              with 1 line.
22547      Branch: perl
22548            ! pp_ctl.c
22549 ____________________________________________________________________________
22550 [ 27820] By: nicholas                              on 2006/04/15  20:01:58
22551         Log: Fix a bug - the introduction of the caching code means that we should
22552              initialise the SV upstream after it.
22553              assert that filter_sub is always non-null now.
22554      Branch: perl
22555            ! pp_ctl.c
22556 ____________________________________________________________________________
22557 [ 27819] By: nicholas                              on 2006/04/15  19:37:32
22558         Log: Augment the user filter caching code so that if the user filter returns
22559              multiple lines, only one line at a time is returned.
22560              Rename the variable len to status, as it is the status value.
22561      Branch: perl
22562            ! pp_ctl.c t/op/incfilter.t
22563 ____________________________________________________________________________
22564 [ 27818] By: nicholas                              on 2006/04/15  19:17:51
22565         Log: Deep in the bowels of creating new and exciting bugs, I managed to
22566              segfault the uninitialised value reporting code. This protects against
22567              the segfault.
22568      Branch: perl
22569            ! sv.c
22570 ____________________________________________________________________________
22571 [ 27817] By: nicholas                              on 2006/04/15  18:08:04
22572         Log: $foo .= $bar doesn't warn if $foo is undefined, so simplify code.
22573      Branch: perl
22574            ! t/op/incfilter.t
22575 ____________________________________________________________________________
22576 [ 27816] By: nicholas                              on 2006/04/15  18:05:12
22577         Log: If the downstream caller wants block mode, and we're in line mode,
22578              then don't return more bytes than they asked for. Hold bytes over
22579              until next time if necessary.
22580      Branch: perl
22581            ! pp_ctl.c t/op/incfilter.t
22582 ____________________________________________________________________________
22583 [ 27815] By: nicholas                              on 2006/04/15  17:00:54
22584         Log: Eliminate the filter_child_proc hack from pp_require.
22585      Branch: perl
22586            ! pp_ctl.c
22587 ____________________________________________________________________________
22588 [ 27814] By: nicholas                              on 2006/04/15  16:43:22
22589         Log: If you return void from a filter subroutine, the caller's status is
22590              used. If not, your last statement is the return value, and if it keeps
22591              being +ve you'll never hit EOF.
22592              The probably should be a sanity check for this in toke.c, but I'm not
22593              sure how.
22594      Branch: perl
22595            ! t/op/incfilter.t
22596 ____________________________________________________________________________
22597 [ 27813] By: nicholas                              on 2006/04/15  16:42:23
22598         Log: Tests for having multiple pipes open simultaneously.
22599              (See comment added in change 3771 about this apparently being buggy)
22600      Branch: perl
22601            ! t/op/inccode.t
22602 ____________________________________________________________________________
22603 [ 27812] By: nicholas                              on 2006/04/15  13:45:13
22604         Log: Add more tests for the builtin source filter implementation, and fix
22605              two bugs - it would loop infinitely if data were already in the read
22606              buffer, and it would process those data twice.
22607      Branch: perl
22608            ! pp_ctl.c t/op/incfilter.t
22609 ____________________________________________________________________________
22610 [ 27811] By: nicholas                              on 2006/04/15  11:59:26
22611         Log: Add a test for source filters returned from code references in @INC.
22612      Branch: perl
22613            + t/op/incfilter.t
22614            ! MANIFEST
22615 ____________________________________________________________________________
22616 [ 27810] By: nicholas                              on 2006/04/15  11:22:29
22617         Log: Bump the expect file count in readdir.t. We keep writing more tests.
22618      Branch: perl
22619            ! t/op/readdir.t
22620 ____________________________________________________________________________
22621 [ 27809] By: nicholas                              on 2006/04/15  10:51:48
22622         Log: Subject: [PATCH] perlio.c: layer data might be allocated and unused (Coverity)
22623              From: jhi@cc.hut.fi (Jarkko Hietaniemi)
22624              Message-Id: <20060415082417.24F0A6D08C@ugli.hut.fi>
22625              Date: Sat, 15 Apr 2006 11:24:17 +0300 (EEST)
22626              
22627              (with a correction)
22628      Branch: perl
22629            ! perlio.c
22630 ____________________________________________________________________________
22631 [ 27808] By: craigb                                on 2006/04/15  06:05:44
22632         Log: Fix bug in prime_env_iter where the terms of a comparison were reversed
22633              so we thought we didn't have a logical name table when we did.  Reported as:
22634              Subject: LWP::Simple crashes on VMSperl
22635              From: "juna" <ggl.20.jj...@spamgourmet.com>
22636              Date: 24 Mar 2006 13:52:41 -0800
22637              Newsgroups: comp.os.vms,comp.lang.perl.misc
22638              Message-ID: <1143237161.931669.48370@t31g2000cwb.googlegroups.com>
22639      Branch: perl
22640            ! vms/vms.c
22641 ____________________________________________________________________________
22642 [ 27807] By: craigb                                on 2006/04/15  00:45:26
22643         Log: Honor READALL privilege in cando_by_name (from Scott
22644              Lepage of HP OpenVMS Engineering)
22645      Branch: perl
22646            ! vms/vms.c
22647 ____________________________________________________________________________
22648 [ 27806] By: craigb                                on 2006/04/15  00:42:41
22649         Log: Don't die after SS$_NOPRIV in Perl_vmssetenv, courtesy
22650              of Scott Lepage at HP.
22651      Branch: perl
22652            ! vms/vms.c
22653 ____________________________________________________________________________
22654 [ 27805] By: nicholas                              on 2006/04/14  20:44:27
22655         Log: Change SAVECOPWARNINGS(c) to SAVECOMPILEWARNINGS() - it's only used to
22656              save the warnings on PL_compiling, so constraining its use to what we
22657              can test seems to make sense. Particularly as testing Perl_ss_dup is
22658              tricky.
22659      Branch: perl
22660            ! op.c pp_ctl.c scope.c scope.h sv.c
22661 ____________________________________________________________________________
22662 [ 27804] By: nicholas                              on 2006/04/14  19:44:34
22663         Log: In the description of require, clarify the file handle return and why
22664              C<INC> must be qualified.
22665      Branch: perl
22666            ! pod/perlfunc.pod
22667 ____________________________________________________________________________
22668 [ 27803] By: nicholas                              on 2006/04/14  16:43:03
22669         Log: S_glob_2inpuv() did not check if lenp was NULL. Oops.
22670      Branch: perl
22671            ! sv.c
22672 ____________________________________________________________________________
22673 [ 27802] By: nicholas                              on 2006/04/14  16:18:30
22674         Log: Replace explict "/dev/null" with BIT_BUCKET, which varies by platform.
22675      Branch: perl
22676            ! pp_ctl.c
22677 ____________________________________________________________________________
22678 [ 27801] By: rgs                                   on 2006/04/14  16:11:19
22679         Log: Subject: [PATCH] doop.c: (Coverity) found a bug but not quite what Coverity thought it did (try valgrind on the new bop.t without the doop.c patch)
22680              From: jhi@cc.hut.fi (Jarkko Hietaniemi)
22681              Date: Thu, 13 Apr 2006 19:20:46 +0300 (EEST)
22682              Message-Id: <20060413162046.5F9636D08C@ugli.hut.fi>
22683      Branch: perl
22684            ! doop.c pod/perlapi.pod sv.c t/op/bop.t
22685 ____________________________________________________________________________
22686 [ 27800] By: nicholas                              on 2006/04/14  14:45:04
22687         Log: Mark new_warnings_bitfield as XE, and add it to __DATA__ in makedef.pl
22688              Remove a reference to the deleted function Perl_refcounted_he_dup.
22689      Branch: perl
22690            ! embed.fnc embed.h global.sym makedef.pl
22691 ____________________________________________________________________________
22692 [ 27799] By: stevep                                on 2006/04/14  12:16:01
22693         Log: Subject: [PATCH] IO::Compress::*
22694              From: Paul Marquess <paul.marquess@ntlworld.com>
22695              Date: Fri, 14 Apr 2006 09:05:39 +0100
22696              Message-ID: <004f01c65f9a$3871eb30$2405140a@myopwv.com>
22697      Branch: perl
22698            ! ext/Compress/IO/Base/Changes
22699            ! ext/Compress/IO/Base/lib/IO/Compress/Base.pm
22700            ! ext/Compress/IO/Base/lib/IO/Compress/Base/Common.pm
22701            ! ext/Compress/IO/Base/lib/IO/Uncompress/AnyUncompress.pm
22702            ! ext/Compress/IO/Base/lib/IO/Uncompress/Base.pm
22703            ! ext/Compress/IO/Zlib/Changes ext/Compress/IO/Zlib/README
22704            ! ext/Compress/IO/Zlib/lib/IO/Compress/Adapter/Deflate.pm
22705            ! ext/Compress/IO/Zlib/lib/IO/Compress/Adapter/Identity.pm
22706            ! ext/Compress/IO/Zlib/lib/IO/Compress/Deflate.pm
22707            ! ext/Compress/IO/Zlib/lib/IO/Compress/Gzip.pm
22708            ! ext/Compress/IO/Zlib/lib/IO/Compress/Gzip/Constants.pm
22709            ! ext/Compress/IO/Zlib/lib/IO/Compress/RawDeflate.pm
22710            ! ext/Compress/IO/Zlib/lib/IO/Compress/Zip.pm
22711            ! ext/Compress/IO/Zlib/lib/IO/Compress/Zip/Constants.pm
22712            ! ext/Compress/IO/Zlib/lib/IO/Compress/Zlib/Constants.pm
22713            ! ext/Compress/IO/Zlib/lib/IO/Uncompress/Adapter/Identity.pm
22714            ! ext/Compress/IO/Zlib/lib/IO/Uncompress/Adapter/Inflate.pm
22715            ! ext/Compress/IO/Zlib/lib/IO/Uncompress/AnyInflate.pm
22716            ! ext/Compress/IO/Zlib/lib/IO/Uncompress/Gunzip.pm
22717            ! ext/Compress/IO/Zlib/lib/IO/Uncompress/Inflate.pm
22718            ! ext/Compress/IO/Zlib/lib/IO/Uncompress/RawInflate.pm
22719            ! ext/Compress/IO/Zlib/lib/IO/Uncompress/Unzip.pm
22720            ! ext/Compress/IO/Zlib/t/105oneshot-zip-only.t
22721            ! ext/Compress/Raw/Zlib/README
22722            ! ext/Compress/Raw/Zlib/lib/Compress/Raw/Zlib.pm
22723            ! ext/Compress/Zlib/README
22724            ! ext/Compress/Zlib/lib/Compress/Zlib.pm
22725            ! t/lib/compress/generic.pl
22726 ____________________________________________________________________________
22727 [ 27798] By: nicholas                              on 2006/04/14  11:50:56
22728         Log: Subject: [PATCH] perlio.c: (Coverity) eliminate temp ptr that confuses Coverity into thinking there is a resource leak
22729              From: jhi@cc.hut.fi (Jarkko Hietaniemi)
22730              Message-Id: <20060414085644.94A076D08C@ugli.hut.fi>
22731              Date: Fri, 14 Apr 2006 11:56:44 +0300 (EEST)
22732      Branch: perl
22733            ! perlio.c
22734 ____________________________________________________________________________
22735 [ 27797] By: stevep                                on 2006/04/14  11:26:59
22736         Log: Reverting change #27791 which may cause corruption addition corruption
22737              within a regular expression.
22738      Branch: perl
22739            ! regexec.c
22740 ____________________________________________________________________________
22741 [ 27796] By: rgs                                   on 2006/04/14  08:42:27
22742         Log: Fix implementation of threads->_handle on unixes.
22743              See :
22744              Subject: RE: [PATCH] 2nd patch to sync blead 'threads' with CPAN [REPOST]
22745              From: "Jerry D. Hedden" <jerry@hedden.us>
22746              Date: Tue, 04 Apr 2006 09:25:20 -0700
22747              Message-ID: <20060404092520.fb30e530d17747c2b054d625b8945d88.4a8a6b16c9.wbe@email.email.secureserver.net>
22748      Branch: perl
22749            ! ext/threads/threads.xs
22750 ____________________________________________________________________________
22751 [ 27795] By: nicholas                              on 2006/04/13  21:59:52
22752         Log: (Hopefully) fix coredumps in ByteLoader, which were a side effect of
22753              fixing a bug in B, and non-robust autogenerated code. When
22754              autogenerating initialiser statements for an array, it's a bad plan to
22755              have the size of that array hard coded.
22756      Branch: perl
22757            ! bytecode.pl ext/ByteLoader/bytecode.h ext/ByteLoader/byterun.c
22758 ____________________________________________________________________________
22759 [ 27794] By: davem                                 on 2006/04/13  18:31:54
22760         Log: eliminate PL_regbol PL_regtill PL_regnarrate PL_reg_ganch PL_reg_sv
22761              (only another 434 to go ...)
22762      Branch: perl
22763            ! embed.fnc proto.h regexec.c regexp.h sv.c
22764 ____________________________________________________________________________
22765 [ 27793] By: davem                                 on 2006/04/13  17:16:41
22766         Log: disable 'split /(?{ split "" })/' test until recursive split is fixed
22767      Branch: perl
22768            ! t/op/pat.t
22769 ____________________________________________________________________________
22770 [ 27792] By: nicholas                              on 2006/04/13  16:14:23
22771         Log: Remove SAVEt_FREESHAREDPV, as nothing is using it, and it isn't catered
22772              for in Perl_ss_dup, hence nothing is testing it and nothing will alert
22773              us if it breaks.
22774      Branch: perl
22775            ! scope.c scope.h
22776 ____________________________________________________________________________
22777 [ 27791] By: stevep                                on 2006/04/13  15:08:04
22778         Log: Add another NULL check thanks to Coverity.
22779      Branch: perl
22780            ! regexec.c
22781 ____________________________________________________________________________
22782 [ 27790] By: nicholas                              on 2006/04/13  14:14:57
22783         Log: For duping SAVEHINTS it rather helps if you pay attention to what is
22784              actually being pushed onto the save stack.
22785      Branch: perl
22786            ! sv.c
22787 ____________________________________________________________________________
22788 [ 27789] By: nicholas                              on 2006/04/13  13:53:55
22789         Log: Subject: [PATCH] regexec.c: (Coverity) add NULL check
22790              From: Jarkko Hietaniemi <jhi@cc.hut.fi>
22791              Message-Id: <200604131252.k3DCqFUL497781@kosh.hut.fi>
22792              Date: Thu, 13 Apr 2006 15:52:15 +0300 (EEST)
22793      Branch: perl
22794            ! regexec.c
22795 ____________________________________________________________________________
22796 [ 27788] By: nicholas                              on 2006/04/13  13:28:50
22797         Log: Subject: [PATCH] regexec.c: (Coverity) move NULL check even earlier
22798              From: Jarkko Hietaniemi <jhi@cc.hut.fi>
22799              Message-Id: <200604131239.k3DCdXhe124107@kosh.hut.fi>
22800              Date: Thu, 13 Apr 2006 15:39:33 +0300 (EEST)
22801      Branch: perl
22802            ! regexec.c
22803 ____________________________________________________________________________
22804 [ 27787] By: nicholas                              on 2006/04/13  13:02:30
22805         Log: Add a break; to the end of the SAVEt_COP_WARNINGS case, and don't try
22806              to dereference cop_hints if it's NULL.
22807      Branch: perl
22808            ! sv.c
22809 ____________________________________________________________________________
22810 [ 27786] By: nicholas                              on 2006/04/13  12:40:24
22811         Log: Fix B and ByteLoader to cope with cop_warnings no longer being an SV.
22812      Branch: perl
22813            ! bytecode.pl ext/B/B.xs ext/B/B/Asmdata.pm
22814            ! ext/ByteLoader/bytecode.h ext/ByteLoader/byterun.c
22815 ____________________________________________________________________________
22816 [ 27785] By: nicholas                              on 2006/04/13  10:46:32
22817         Log: Add SAVEt_COP_WARNINGS to ss_dup.
22818      Branch: perl
22819            ! sv.c
22820 ____________________________________________________________________________
22821 [ 27784] By: nicholas                              on 2006/04/13  10:09:20
22822         Log: Subject: Re: [PATCH] add pTHX_ parameter to new_warnings_bitfield()
22823              From: Steve Hay <steve.hay@uk.radan.com>
22824              Message-ID: <443E1998.9090909@uk.radan.com>
22825              Date: Thu, 13 Apr 2006 10:27:52 +0100
22826      Branch: perl
22827            ! embed.fnc mg.c perl.c pp_ctl.c proto.h util.c
22828 ____________________________________________________________________________
22829 [ 27783] By: davem                                 on 2006/04/13  02:20:33
22830         Log: eliminate PL_reg_re
22831              (only another 439 to go ...)
22832      Branch: perl
22833            ! embed.fnc embed.h pod/perlintern.pod proto.h regcomp.c
22834            ! regexec.c regexp.h sv.c
22835 ____________________________________________________________________________
22836 [ 27782] By: davem                                 on 2006/04/12  23:51:57
22837         Log: Subject: [perl #38906] Regex engine does not release MINMOD
22838              From: "Animator via RT" <perlbug-followup@perl.org>
22839              Message-ID: <rt-3.0.11-38906-132222.3.24032491323436@perl.org>
22840              Date: Wed, 12 Apr 2006 15:27:41 -0700
22841              
22842              zero-length minimum matches that failed could leak into a following
22843              maximal match
22844      Branch: perl
22845            ! regexec.c t/op/re_tests
22846 ____________________________________________________________________________
22847 [ 27781] By: nicholas                              on 2006/04/12  23:17:18
22848         Log: D'oh! Don't try to do #ifdefs inside "functions" that are actually
22849              macros.
22850      Branch: perl
22851            ! hv.c
22852 ____________________________________________________________________________
22853 [ 27780] By: nicholas                              on 2006/04/12  22:49:58
22854         Log: Add tests for all the other types that %^H serialisation is supposed
22855              to support. In the process, found and corrected a bug.
22856              Tests are good, m'kay.
22857      Branch: perl
22858            ! hv.c t/op/caller.t
22859 ____________________________________________________________________________
22860 [ 27779] By: nicholas                              on 2006/04/12  22:45:12
22861         Log: Change cop_warnings from an SV holding the warnings bitmask to a
22862              directly (shared) malloc()ed buffer holding the warnings bitmask.
22863              This avoids bugs/crashes when the interpreter that created an optree
22864              is freed but the optree remains in use by other interpreters.
22865      Branch: perl
22866            ! cop.h embed.fnc embed.h mg.c op.c perl.c pp_ctl.c proto.h
22867            ! scope.c scope.h sv.c util.c warnings.h warnings.pl
22868 ____________________________________________________________________________
22869 [ 27778] By: davem                                 on 2006/04/12  22:43:03
22870         Log: Remove the final recursion path from S_regmatch:  (??{...})
22871              Also put PUSH/POP_STATE infastructure in place
22872              Also eliminate PL_reg_call_cc
22873              (only another 440 global vars to go ...)
22874      Branch: perl
22875            ! regexec.c regexp.h sv.c
22876 ____________________________________________________________________________
22877 [ 27777] By: nicholas                              on 2006/04/12  16:18:30
22878         Log: Test that we can do embedded 0 bytes in hints.
22879      Branch: perl
22880            ! t/op/caller.t
22881 ____________________________________________________________________________
22882 [ 27776] By: nicholas                              on 2006/04/12  16:01:08
22883         Log: Store cop_hints as a shared structure without using any SVs (on
22884              ithreads).
22885      Branch: perl
22886            ! hv.c hv.h
22887 ____________________________________________________________________________
22888 [ 27775] By: nicholas                              on 2006/04/12  14:14:50
22889         Log: Remove Perl_refcounted_he_copy and Perl_refcounted_he_dup.
22890      Branch: perl
22891            ! embed.fnc embed.h hv.c proto.h
22892 ____________________________________________________________________________
22893 [ 27774] By: nicholas                              on 2006/04/12  12:31:29
22894         Log: Newxz() can use calloc() rather than malloc(), as the implementation
22895              of calloc() may know that it has fresh pages from the OS, and so
22896              doesn't need to zero them itself. Plus our object code should be
22897              slightly smaller.
22898      Branch: perl
22899            ! handy.h
22900 ____________________________________________________________________________
22901 [ 27773] By: nicholas                              on 2006/04/12  12:01:38
22902         Log: As OPs are shared between threads, they should be using
22903              PerlMemShared_*alloc functions, rather than per-thread *alloc()s.
22904      Branch: perl
22905            ! op.c op.h
22906 ____________________________________________________________________________
22907 [ 27772] By: nicholas                              on 2006/04/11  22:17:25
22908         Log: Subject: [PATCH] regexec.c: move NULL check earlier to make Coverity happier
22909              From: Jarkko Hietaniemi <jhi@cc.hut.fi>
22910              Message-Id: <200604112004.k3BK4mV3097400@kosh.hut.fi>
22911              Date: Tue, 11 Apr 2006 23:04:48 +0300 (EEST)
22912      Branch: perl
22913            ! regexec.c
22914 ____________________________________________________________________________
22915 [ 27771] By: nicholas                              on 2006/04/11  21:53:33
22916         Log: Subject: [PATCH] regcomp.c (try II): use &PL_sv_undef for listsv as suggested by Nick
22917              From: Jarkko Hietaniemi <jhi@cc.hut.fi>
22918              Message-Id: <200604112053.k3BKrPgk310001@kosh.hut.fi>
22919              Date: Tue, 11 Apr 2006 23:53:25 +0300 (EEST)
22920      Branch: perl
22921            ! regcomp.c
22922 ____________________________________________________________________________
22923 [ 27770] By: nicholas                              on 2006/04/11  21:03:48
22924         Log: Subject: [PATCH] perlio.c: false Coverity finding (it cannot see that two pointers are the same): but help Coverity by removing the temp ptr
22925              From: Jarkko Hietaniemi <jhi@cc.hut.fi>
22926              Message-Id: <200604112039.k3BKdWix334525@kosh.hut.fi>
22927              Date: Tue, 11 Apr 2006 23:39:32 +0300 (EEST)
22928      Branch: perl
22929            ! perlio.c
22930 ____________________________________________________________________________
22931 [ 27769] By: nicholas                              on 2006/04/11  19:47:15
22932         Log: Subject: [PATCH] locale.c: more Safefree() (Coverity finding)
22933              From: Jarkko Hietaniemi <jhi@cc.hut.fi>
22934              Message-Id: <200604111908.k3BJ8ewn030950@kosh.hut.fi>
22935              Date: Tue, 11 Apr 2006 22:08:40 +0300 (EEST)
22936      Branch: perl
22937            ! locale.c
22938 ____________________________________________________________________________
22939 [ 27768] By: nicholas                              on 2006/04/11  19:26:48
22940         Log: First stab at using the pad to store the serialised hints data.
22941              This approach is almost certainly not only wrong, but also doomed.
22942              But it's needed to build a correct solution.
22943      Branch: perl
22944            ! hv.c hv.h op.c pp_ctl.c scope.h sv.c
22945 ____________________________________________________________________________
22946 [ 27767] By: nicholas                              on 2006/04/11  18:06:30
22947         Log: Within Perl_newSVhek, inline most of newSVpvn_share(), because
22948              share_hek_hek() is far more efficient than sharepvn().
22949      Branch: perl
22950            ! sv.c
22951 ____________________________________________________________________________
22952 [ 27766] By: nicholas                              on 2006/04/11  16:17:13
22953         Log: Stop Perl_newSVpvn_share() potentially leaking the return result from
22954              bytes_from_utf8().
22955      Branch: perl
22956            ! sv.c
22957 ____________________________________________________________________________
22958 [ 27764] By: nicholas                              on 2006/04/11  13:47:05
22959         Log: Need to migrate the refcounted_he structure to be properly shared.
22960              Add a mutex for manipulated their reference counts.
22961              Unwrap the structure, so that for ithreads it can store SVs in pads.
22962      Branch: perl
22963            ! dosish.h embedvar.h hv.c hv.h perl.c perlapi.h perlvars.h
22964            ! symbian/symbianish.h unixish.h vms/vmsish.h win32/win32.c
22965            ! wince/wince.c
22966 ____________________________________________________________________________
22967 [ 27763] By: rgs                                   on 2006/04/11  07:54:23
22968         Log: Subject: [PATCH] Quiet a coverity problem
22969              From: andy@petdance.com (Andy Lester)
22970              Date: Mon, 10 Apr 2006 23:51:50 -0500
22971              Message-ID: <20060411045150.GA1422@petdance.com>
22972      Branch: perl
22973            ! pp.c
22974 ____________________________________________________________________________
22975 [ 27762] By: nicholas                              on 2006/04/10  19:55:49
22976         Log: All S_dumpuntil()'s regnode pointer arguments can be const.
22977      Branch: perl
22978            ! embed.fnc proto.h regcomp.c
22979 ____________________________________________________________________________
22980 [ 27761] By: nicholas                              on 2006/04/10  17:48:04
22981         Log: Perl_unsharepvn() was no longer being used in core, and changes to
22982              S_unshare_hek_or_pvn() had broken it. Now fixed and tested.
22983      Branch: perl
22984            ! ext/XS/APItest/APItest.xs ext/XS/APItest/t/hash.t hv.c
22985 ____________________________________________________________________________
22986 [ 27760] By: merijn                                on 2006/04/10  16:35:30
22987         Log: config_H being the last part of my mkglossary work
22988      Branch: perl
22989            ! Porting/config_H
22990 ____________________________________________________________________________
22991 [ 27758] By: merijn                                on 2006/04/10  16:14:32
22992         Log: Regeneration of Glossary and the underlying tools.
22993      Branch: perl
22994            ! Porting/Glossary Porting/config.sh
22995 ____________________________________________________________________________
22996 [ 27757] By: rgs                                   on 2006/04/10  15:46:27
22997         Log: Subject: [PATCH] Fix coverity warning in utf8.c
22998              From: Andy Dougherty <doughera@lafayette.edu>
22999              Date: Mon, 10 Apr 2006 11:18:35 -0400 (EDT)
23000              Message-ID: <Pine.SOC.4.62.0604101117450.22851@maxwell.phys.lafayette.edu>
23001      Branch: perl
23002            ! utf8.c
23003 ____________________________________________________________________________
23004 [ 27756] By: nicholas                              on 2006/04/10  12:21:34
23005         Log: Subject: [PATCH] pp_sys.c: some Coverity findings: NULL guards for format cv
23006              From: jhi@cc.hut.fi (Jarkko Hietaniemi)
23007              Message-Id: <20060408155541.46B796D08C@ugli.hut.fi>
23008              Date: Sat,  8 Apr 2006 18:55:41 +0300 (EEST)
23009      Branch: perl
23010            ! pp_sys.c t/op/write.t
23011 ____________________________________________________________________________
23012 [ 27755] By: nicholas                              on 2006/04/10  11:56:21
23013         Log: Subject: [PATCH] pp_sys.c: some Coverity findings: NULL guards for io pointers
23014              From: jhi@cc.hut.fi (Jarkko Hietaniemi)
23015              Message-Id: <20060408155232.4C9726D08C@ugli.hut.fi>
23016              Date: Sat,  8 Apr 2006 18:52:32 +0300 (EEST)
23017      Branch: perl
23018            ! pp_sys.c
23019 ____________________________________________________________________________
23020 [ 27754] By: nicholas                              on 2006/04/10  11:12:26
23021         Log: Subject: [PATCH]es: quiet some warnings (with a free AIX cpp insanity avoidance tip)
23022              From: Jarkko Hietaniemi <jhietaniemi@gmail.com>
23023              Message-ID: <44375F23.6030900@gmail.com>
23024              Date: Sat, 08 Apr 2006 09:58:43 +0300
23025      Branch: perl
23026            ! op.c pad.h pp_sys.c
23027 ____________________________________________________________________________
23028 [ 27753] By: davem                                 on 2006/04/10  09:10:37
23029         Log: Subject:  [PATCH] True consting goodness in regexes
23030              From:  andy@petdance.com (Andy Lester)
23031              Date:  Mon, 10 Apr 2006 02:15:58 -0500
23032              Message-Id:  <20060410071558.GA24756@petdance.com>
23033      Branch: perl
23034            ! embed.fnc proto.h regcomp.c regexec.c
23035 ____________________________________________________________________________
23036 [ 27752] By: nicholas                              on 2006/04/09  21:07:48
23037         Log: Fix pointer error in change 27741, spotted by John E. Malmberg.
23038      Branch: perl
23039            ! sv.c
23040 ____________________________________________________________________________
23041 [ 27751] By: stevep                                on 2006/04/09  19:28:35
23042         Log: Subject: Re: [PATCH] perlio.c: Coverity finding: finding false (Coverity notable to follow vtable logic) but adding an assert
23043              From: Jarkko Hietaniemi <jhietaniemi@gmail.com>
23044              Date: Sun, 09 Apr 2006 10:18:52 +0300
23045              Message-ID: <4438B55C.9010604@gmail.com>
23046      Branch: perl
23047            ! perlio.c
23048 ____________________________________________________________________________
23049 [ 27750] By: stevep                                on 2006/04/09  18:55:07
23050         Log: Subject: Re: [PATCH] locale.c: Coverity finding
23051              From: Jarkko Hietaniemi <jhietaniemi@gmail.com>
23052              Date: Sun, 09 Apr 2006 10:31:32 +0300
23053              Message-ID: <4438B854.6040301@gmail.com>
23054      Branch: perl
23055            ! locale.c
23056 ____________________________________________________________________________
23057 [ 27749] By: stevep                                on 2006/04/09  18:44:17
23058         Log: Subject: [PATCH] Rename variables in some mg_* funcs
23059              From: andy@petdance.com (Andy Lester)
23060              Date: Sun, 9 Apr 2006 00:20:12 -0500
23061              Message-ID: <20060409052012.GA15887@petdance.com>
23062      Branch: perl
23063            ! mg.c
23064 ____________________________________________________________________________
23065 [ 27746] By: davem                                 on 2006/04/08  23:58:51
23066         Log: fix potential null deref introduced by change #27716
23067      Branch: perl
23068            ! regexec.c
23069 ____________________________________________________________________________
23070 [ 27745] By: nicholas                              on 2006/04/08  22:37:29
23071         Log: Subject: [PATCH] perlio.c: Coverity finding: finding false (Coverity not able to follow vtable logic) but adding an assert
23072              From: jhi@cc.hut.fi (Jarkko Hietaniemi)
23073              Message-Id: <20060408161136.CEAC86D08C@ugli.hut.fi>
23074              Date: Sat,  8 Apr 2006 19:11:36 +0300 (EEST)
23075      Branch: perl
23076            ! perlio.c
23077 ____________________________________________________________________________
23078 [ 27744] By: nicholas                              on 2006/04/08  22:23:26
23079         Log: Subject: [PATCH] sv.c, rs.t, perlvar.pod (Coverity finding: did you know what happens with $/=\0?)
23080              From: jhi@cc.hut.fi (Jarkko Hietaniemi)
23081              Message-Id: <20060408152533.C4D5F6D08C@ugli.hut.fi>
23082              Date: Sat,  8 Apr 2006 18:25:33 +0300 (EEST)
23083              
23084              (although I should add that this version of Coverity is actually
23085              raising a false positive here, albeit something still interesting)
23086      Branch: perl
23087            ! pod/perlvar.pod sv.c t/base/rs.t
23088 ____________________________________________________________________________
23089 [ 27741] By: nicholas                              on 2006/04/08  15:14:13
23090         Log: As av_dup, gv_dup and hv_dup are the same as sv_dup, code in various
23091              branches of Perl_ss_dup() is actually duplicated, so can be merged.
23092      Branch: perl
23093            ! sv.c
23094 ____________________________________________________________________________
23095 [ 27740] By: nicholas                              on 2006/04/08  14:46:53
23096         Log: By swapping the order of pushes onto the save stack for
23097              SAVEt_GENERIC_PVREF, we can merge it with SAVEt_PPTR in Perl_ss_dup().
23098      Branch: perl
23099            ! scope.c sv.c
23100 ____________________________________________________________________________
23101 [ 27739] By: nicholas                              on 2006/04/08  13:43:46
23102         Log: Teach ss_dup about SAVEt_RE_STATE. (As correctly as it ever was before)
23103      Branch: perl
23104            ! sv.c
23105 ____________________________________________________________________________
23106 [ 27738] By: nicholas                              on 2006/04/08  12:50:13
23107         Log: ss_dup of SAVEt_COP_ARYBASE can use the same code as SAVEt_I8.
23108      Branch: perl
23109            ! sv.c
23110 ____________________________________________________________________________
23111 [ 27737] By: nicholas                              on 2006/04/07  21:24:35
23112         Log: Give more information in the panic in ss_dup. (Although I'm not sure
23113              if croak() works at this point, given PerlIO's dependency on a
23114              functional interpreter.)
23115      Branch: perl
23116            ! sv.c
23117 ____________________________________________________________________________
23118 [ 27736] By: gisle                                 on 2006/04/07  16:08:26
23119         Log: Make perl_fini() run when compiling perl with
23120              the Sun WorkShop compiler.
23121      Branch: perl
23122            ! perl.c
23123 ____________________________________________________________________________
23124 [ 27735] By: steveh                                on 2006/04/07  14:55:41
23125         Log: Patch from Jarkko to fix breakage caused by change #27649
23126              see: http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2006-04/msg00144.html
23127      Branch: perl
23128            ! malloc.c perl.h
23129 ____________________________________________________________________________
23130 [ 27734] By: nicholas                              on 2006/04/07  12:49:11
23131         Log: Oops. Being too terse for my own good - it's not a great idea to chain
23132              assignment of char * to struct pmop *, even when the value is NULL.
23133      Branch: perl
23134            ! perl.c
23135 ____________________________________________________________________________
23136 [ 27733] By: craigb                                on 2006/04/07  02:53:52
23137         Log: Subject: [patch@27694] VMS RMSEXPAND/PERL_CANDO fixes
23138              From: "John E. Malmberg" <wb8tyw@qsl.net>
23139              Date: Mon, 03 Apr 2006 07:39:10 -0400
23140              Message-id: <4431095E.8030003@qsl.net>
23141      Branch: perl
23142            ! vms/vms.c vms/vmsish.h
23143 ____________________________________________________________________________
23144 [ 27732] By: nicholas                              on 2006/04/06  15:52:37
23145         Log: Move all the regexp state variables into a single structure.
23146              This allows it to be saved, restored and cloned with a single Copy()
23147              (but inevitably still some fixup)
23148      Branch: perl
23149            ! embedvar.h perl.c perlapi.h regcomp.c regexp.h scope.c sv.c
23150            ! thrdvar.h
23151 ____________________________________________________________________________
23152 [ 27731] By: steveh                                on 2006/04/06  14:55:40
23153         Log: Subject: Re: Smoke [5.9.4] 27728 FAIL(F) MSWin32 WinXP/.Net SP2 (x86/2 cpu)
23154              From: Rafael Garcia-Suarez <rgarciasuarez@mandriva.com>
23155              Date: Thu, 6 Apr 2006 14:32:50 +0200
23156              Message-ID: <20060406143250.5a7de4b8@grubert.mandriva.com>
23157      Branch: perl
23158            ! mg.c
23159 ____________________________________________________________________________
23160 [ 27729] By: steveh                                on 2006/04/06  12:16:53
23161         Log: Fix skip count in ext\B\t\lint.t
23162      Branch: perl
23163            ! ext/B/t/lint.t
23164 ____________________________________________________________________________
23165 [ 27728] By: nicholas                              on 2006/04/05  21:40:11
23166         Log: Save the regexp engine state as 1 block on the save stack.
23167      Branch: perl
23168            ! regcomp.c regexp.h scope.c scope.h
23169 ____________________________________________________________________________
23170 [ 27727] By: rgs                                   on 2006/04/05  20:59:53
23171         Log: Subject: Re: expr foreach (...) isn't a B::Lint warning anymore
23172              From: "Joshua ben Jore" <twists@gmail.com>
23173              Date: Wed, 5 Apr 2006 01:11:11 -0500
23174              Message-ID: <dc5c751d0604042311v354547aanf482b3259e56ebb8@mail.gmail.com>
23175      Branch: perl
23176            ! ext/B/B/Lint.pm ext/B/t/lint.t
23177 ____________________________________________________________________________
23178 [ 27726] By: nicholas                              on 2006/04/05  20:19:34
23179         Log: Perl_save_alloc can use the new(er) SSGROW rather than looping.
23180      Branch: perl
23181            ! scope.c
23182 ____________________________________________________________________________
23183 [ 27725] By: rgs                                   on 2006/04/05  19:45:42
23184         Log: Assigning undef to an entry in %ENV shouldn't produce warnings, even
23185              though it's silently converted to ""
23186      Branch: perl
23187            ! mg.c t/lib/warnings/mg
23188 ____________________________________________________________________________
23189 [ 27724] By: stevep                                on 2006/04/05  16:15:41
23190         Log: Try not to use negative values when accessing arrays in C.  Yet another
23191              Coverity catch.
23192      Branch: perl
23193            ! util.c
23194 ____________________________________________________________________________
23195 [ 27723] By: stevep                                on 2006/04/05  15:31:18
23196         Log: Initializing variables is good.  This is another Coverity catch.
23197      Branch: perl
23198            ! gv.c
23199 ____________________________________________________________________________
23200 [ 27722] By: rgs                                   on 2006/04/05  14:44:11
23201         Log: Subject: perlio.c breaks on Solaris/gcc when > 256 FDs are available
23202              From: Alan Burlison <Alan.Burlison@sun.com>
23203              Date: Wed, 05 Apr 2006 15:52:14 +0100
23204              Message-ID: <4433D99E.40800@sun.com>
23205      Branch: perl
23206            ! perlio.c
23207 ____________________________________________________________________________
23208 [ 27721] By: rgs                                   on 2006/04/05  12:56:10
23209         Log: There should be only one META.yml file
23210      Branch: perl
23211            - ext/Devel/PPPort/META.yml ext/Encode/META.yml
23212            ! MANIFEST
23213 ____________________________________________________________________________
23214 [ 27720] By: rgs                                   on 2006/04/05  12:19:11
23215         Log: Fix test portability on non-ASCII platforms
23216              
23217              Subject: Re: lib/ExtUtils/t/Constant.t problem on z/OS
23218              From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
23219              Date: Wed, 05 Apr 2006 21:13:02 +0900
23220              Message-Id: <20060405210426.F99D.BQW10602@nifty.com>
23221      Branch: perl
23222            ! lib/ExtUtils/t/Constant.t
23223 ____________________________________________________________________________
23224 [ 27719] By: stevep                                on 2006/04/05  11:49:23
23225         Log: Document the functions htmlify() and anchorify() in Pod::Html.
23226      Branch: perl
23227            ! lib/Pod/Html.pm
23228 ____________________________________________________________________________
23229 [ 27718] By: steveh                                on 2006/04/05  10:35:58
23230         Log: Simplify tests for fork() capabilities
23231              
23232              Jarkko pointed out that change #27710 was causing some
23233              black smoke so makes the tests for fork() simpler, as
23234              per lib\Test\Simple\t\fork.t for now. (Ideally we want
23235              a $Config{d_pseudofork}, as suggested by Andy Dougherty,
23236              but that'll have to wait until I get some more tuits.)
23237      Branch: perl
23238            ! ext/IO/t/io_multihomed.t ext/IO/t/io_pipe.t ext/IO/t/io_sock.t
23239 ____________________________________________________________________________
23240 [ 27717] By: davem                                 on 2006/04/05  03:17:50
23241         Log: (??{...}) didn't always restore PL_reg_re.
23242              Also trie debugging output was using a var that was no longer
23243              valid
23244      Branch: perl
23245            ! regexec.c
23246 ____________________________________________________________________________
23247 [ 27716] By: davem                                 on 2006/04/05  01:50:33
23248         Log: eliminate PL_regprecomp, PL_regprogram, PL_regnpar and PL_regdata
23249              (only another 441 global vars to go ...)
23250      Branch: perl
23251            ! embed.fnc embed.h embedvar.h perlapi.h proto.h regcomp.c
23252            ! regexec.c sv.c thrdvar.h
23253 ____________________________________________________________________________
23254 [ 27715] By: davem                                 on 2006/04/05  01:26:59
23255         Log: restructure the EVAL branch of regmatch() to minimise local var scope
23256              (no changes to functionality)
23257      Branch: perl
23258            ! regexec.c
23259 ____________________________________________________________________________
23260 [ 27714] By: rgs                                   on 2006/04/04  15:15:19
23261         Log: Subject: Re: Making IO::Socket pass test on Win32
23262              From: Jim Cromie <jim.cromie@gmail.com>
23263              Date: Tue, 04 Apr 2006 11:07:03 -0400
23264              Message-ID: <44328B97.2060903@gmail.com>
23265      Branch: perl
23266            ! ext/B/t/concise-xs.t
23267 ____________________________________________________________________________
23268 [ 27713] By: rgs                                   on 2006/04/04  12:42:44
23269         Log: FEATURE_IS_ENABLED takes only one parameter now, so reflect that in
23270              perl_keyword.pl
23271      Branch: perl
23272            ! perl_keyword.pl
23273 ____________________________________________________________________________
23274 [ 27712] By: rgs                                   on 2006/04/04  11:42:05
23275         Log: Subject: [PATCH] threads.pm should overload != operator
23276              From: "Jan Dubois" <jand@ActiveState.com>
23277              Date: Mon, 3 Apr 2006 18:06:24 -0700
23278              Message-ID: <02fc01c65783$fe4820f0$2217a8c0@candy>
23279      Branch: perl
23280            ! ext/threads/t/basic.t ext/threads/threads.pm
23281 ____________________________________________________________________________
23282 [ 27711] By: rgs                                   on 2006/04/04  11:14:27
23283         Log: Fix syntax error in io_pipe test
23284      Branch: perl
23285            ! ext/IO/t/io_pipe.t
23286 ____________________________________________________________________________
23287 [ 27710] By: steveh                                on 2006/04/04  10:34:10
23288         Log: Subject: Re: Making IO::Socket pass test on Win32
23289              From: demerphq <demerphq@gmail.com>
23290              Date: Sun, 2 Apr 2006 11:07:19 +0200
23291              Message-ID: <9b18b3110604020107o6a0b594cwfc2344a172c360b0@mail.gmail.com>
23292              
23293              plus extra $Config{d_fork} changes to io_pipe.t and io_multihomed.t
23294      Branch: perl
23295            ! ext/IO/lib/IO/Socket.pm ext/IO/t/io_multihomed.t
23296            ! ext/IO/t/io_pipe.t ext/IO/t/io_sock.t ext/IO/t/io_unix.t
23297 ____________________________________________________________________________
23298 [ 27709] By: rgs                                   on 2006/04/04  08:54:05
23299         Log: Subject: [PATCH] Move conditional SOCKS5 code into #ifdefs
23300              From: andy@petdance.com (Andy Lester)
23301              Date: Mon, 3 Apr 2006 08:28:18 -0500
23302              Message-ID: <20060403132818.GA7820@petdance.com>
23303      Branch: perl
23304            ! perlio.c
23305 ____________________________________________________________________________
23306 [ 27708] By: gisle                                 on 2006/04/04  08:36:02
23307         Log: Change 27592 disabled the building of manpages for non core-extensions
23308              The init_MAN3PODS method need to be called when no INSTALLMAN3DIR is
23309              present in the first place.
23310      Branch: perl
23311            ! lib/ExtUtils/MM_Unix.pm
23312 ____________________________________________________________________________
23313 [ 27707] By: rgs                                   on 2006/04/04  07:39:59
23314         Log: Subject: [PATCH] "smart match" description in overload.pm is in the middle of "fallback" section
23315              From: "Jan Dubois" <jand@ActiveState.com>
23316              Date: Mon, 3 Apr 2006 18:11:55 -0700
23317              Message-ID: <02fd01c65784$c3f3c430$2217a8c0@candy>
23318      Branch: perl
23319            ! lib/overload.pm
23320 ____________________________________________________________________________
23321 [ 27706] By: craigb                                on 2006/04/04  03:12:34
23322         Log: sort out some utime() issues on VMS
23323      Branch: perl
23324            ! vms/perlvms.pod vms/vms.c
23325 ____________________________________________________________________________
23326 [ 27705] By: rgs                                   on 2006/04/03  16:21:57
23327         Log: Subject: [PATCH] 2nd patch to sync blead 'threads' with CPAN [REPOST]
23328              From: "Jerry D. Hedden" <jerry@hedden.us>
23329              Date: Mon, 03 Apr 2006 06:10:35 -0700
23330              Message-ID: <20060403061035.fb30e530d17747c2b054d625b8945d88.7482c755b8.wbe@email.email.secureserver.net>
23331      Branch: perl
23332            ! ext/threads/Changes ext/threads/README ext/threads/t/basic.t
23333            ! ext/threads/t/join.t ext/threads/t/list.t
23334            ! ext/threads/t/problems.t ext/threads/t/thread.t
23335            ! ext/threads/threads.pm ext/threads/threads.xs
23336 ____________________________________________________________________________
23337 [ 27704] By: nicholas                              on 2006/04/03  11:32:44
23338         Log: Two modules in ext/ have dependencies that are post-miniperl.
23339              Encode this information in the Makefile for now.
23340      Branch: perl
23341            ! Makefile.SH
23342 ____________________________________________________________________________
23343 [ 27703] By: merijn                                on 2006/04/03  10:02:37
23344         Log: Regeneration after backports of #27447, #27484, #27485, #27488,
23345              #27489, #27490, #27491, and #27632
23346      Branch: perl
23347            ! Configure config_h.SH
23348 ____________________________________________________________________________
23349 [ 27702] By: davem                                 on 2006/04/03  09:56:29
23350         Log: undo #27700 and add a missing Safefree()
23351      Branch: perl
23352            ! regexec.c
23353 ____________________________________________________________________________
23354 [ 27701] By: rgs                                   on 2006/04/03  09:50:45
23355         Log: Subject: [PATCH] SvREFCNT_inc tweaks
23356              From: andy@petdance.com (Andy Lester)
23357              Date: Sat, 1 Apr 2006 02:01:30 -0600
23358              Message-ID: <20060401080130.GA19372@petdance.com>
23359      Branch: perl
23360            ! op.c pad.c perlio.c
23361 ____________________________________________________________________________
23362 [ 27700] By: rgs                                   on 2006/04/03  09:07:20
23363         Log: Subject: [PATCH] Removed unused code in regexec.c
23364              From: andy@petdance.com (Andy Lester)
23365              Date: Mon, 3 Apr 2006 00:00:50 -0500
23366              Message-ID: <20060403050050.GA19055@petdance.com>
23367      Branch: perl
23368            ! regexec.c
23369 ____________________________________________________________________________
23370 [ 27699] By: rgs                                   on 2006/04/03  08:57:57
23371         Log: Subject: [PATCH] ext/IO/t/io_unix.t
23372              From: Jarkko Hietaniemi <jhietaniemi@gmail.com>
23373              Date: Sun, 02 Apr 2006 21:57:19 +0300
23374              Message-ID: <44301E8F.2060503@gmail.com>
23375      Branch: perl
23376            ! ext/IO/t/io_unix.t
23377 ____________________________________________________________________________
23378 [ 27698] By: rgs                                   on 2006/04/03  08:50:28
23379         Log: Subject: revisited: pow.t test failures on AIX 5.1 perl588 with -Duselongdouble
23380              From: "John L. Allen" <allen@grumman.com>
23381              Date: Thu, 30 Mar 2006 17:53:13 -0500 (EST)
23382              Message-ID: <Pine.GSO.4.53.0603301710140.24672@gateway.northropgrumman.com>
23383      Branch: perl
23384            ! pp.c
23385 ____________________________________________________________________________
23386 [ 27697] By: rgs                                   on 2006/04/03  08:30:27
23387         Log: Document that the regexp engine is not currently reentrant
23388              
23389              Subject: Re: [perl #33936] segment fault when using split() in regexp with (??{...})
23390              From: Dominic Dunlop <domo@computer.org>
23391              Date: Sun, 2 Apr 2006 21:13:59 +0200
23392              Message-Id: <AD104FE7-2BD6-49B6-A845-46458179A4B1@computer.org>
23393      Branch: perl
23394            ! pod/perlre.pod
23395 ____________________________________________________________________________
23396 [ 27696] By: rgs                                   on 2006/04/03  08:22:15
23397         Log: Take splint into account for PERL_UNUSED_ARG (patch by Jarkko)
23398      Branch: perl
23399            ! XSUB.h perl.h
23400 ____________________________________________________________________________
23401 [ 27694] By: davem                                 on 2006/04/03  01:31:12
23402         Log: anonymous unions aren't legal ANSI c
23403      Branch: perl
23404            ! regexec.c regexp.h
23405 ____________________________________________________________________________
23406 [ 27693] By: nicholas                              on 2006/04/03  00:25:45
23407         Log: The make_ext script should pass MAKE=$MAKE to submakes it invokes for
23408              extentions, as they in turn may invoke $MAKE, and should invoke the
23409              same $MAKE as at the top level, which may not be $Config{make}
23410      Branch: perl
23411            ! ext/util/make_ext
23412 ____________________________________________________________________________
23413 [ 27692] By: davem                                 on 2006/04/02  23:50:25
23414         Log: whoops, change 27691 blew away the regexec.c changes from 27688
23415      Branch: perl
23416            ! regexec.c
23417 ____________________________________________________________________________
23418 [ 27691] By: davem                                 on 2006/04/02  22:37:57
23419         Log: subsume CURCUR (current curly) struct within the main regmatch_state
23420      Branch: perl
23421            ! regexec.c regexp.h
23422 ____________________________________________________________________________
23423 [ 27690] By: rgs                                   on 2006/04/02  21:41:28
23424         Log: Subject: [PATCH] Removed unnecessary pointers checks
23425              From: andy@petdance.com (Andy Lester)
23426              Date: Sat, 1 Apr 2006 01:01:32 -0600
23427              Message-ID: <20060401070132.GA6616@petdance.com>
23428      Branch: perl
23429            ! gv.c
23430 ____________________________________________________________________________
23431 [ 27689] By: rgs                                   on 2006/04/02  21:13:16
23432         Log: Subject: [PATCH] Prevent "use sort 'stable'" from reversing the order
23433              From: Robin Houston <robin@cpan.org>
23434              Date: Sun, 2 Apr 2006 17:20:24 +0100
23435              Message-ID: <20060402162024.GA3854@rpc142.cs.man.ac.uk>
23436      Branch: perl
23437            ! lib/sort.t pp_sort.c
23438 ____________________________________________________________________________
23439 [ 27688] By: rgs                                   on 2006/04/02  20:58:59
23440         Log: Subject: Re: [perl #38293] chr(65535) should be allowed in regexes
23441              From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
23442              Date: Sun, 02 Apr 2006 22:48:44 +0900
23443              Message-Id: <20060402224657.B942.BQW10602@nifty.com>
23444      Branch: perl
23445            ! doop.c op.c regcomp.c regexec.c t/op/pat.t t/op/tr.t utf8.h
23446 ____________________________________________________________________________
23447 [ 27687] By: nicholas                              on 2006/04/02  20:27:24
23448         Log: Change 27677 missed two direct accesses to op_private in COPs.
23449              I believe that all are now found, as redefining CopHINTS_get(c)
23450              to (~(c)->op_private) (with corresponding changes to CopHINTS_set()
23451              and the initialisation of PL_compiling) works.
23452      Branch: perl
23453            ! perl.h pp_ctl.c utf8.h
23454 ____________________________________________________________________________
23455 [ 27686] By: merijn                                on 2006/04/02  19:10:55
23456         Log: First stab at a more reliable Glossary. This now is (again)
23457              mostly generated. (Well, It's a repair to the existing version
23458              "based on" a generated version, which is now well sorted, but
23459              still incomplete for less obvious reasons).
23460      Branch: perl
23461            ! Porting/Glossary
23462 ____________________________________________________________________________
23463 [ 27685] By: davem                                 on 2006/04/02  18:32:32
23464         Log: make parts of struct regmatch_state unions
23465              This reduces its size from 120 to 72 bytes
23466      Branch: perl
23467            ! regexec.c regexp.h
23468 ____________________________________________________________________________
23469 [ 27681] By: nicholas                              on 2006/04/02  17:05:34
23470         Log: Better failure diagnostics from switch.t.
23471      Branch: perl
23472            ! t/op/switch.t
23473 ____________________________________________________________________________
23474 [ 27680] By: nicholas                              on 2006/04/02  16:51:53
23475         Log: Subject: Re: recent changes have some unmatching of parameters and types
23476              From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
23477              Message-Id: <20060402122547.0037.BQW10602@nifty.com>
23478              Date: Sun, 02 Apr 2006 12:32:53 +0900
23479      Branch: perl
23480            ! embed.fnc pod/perlintern.pod proto.h
23481 ____________________________________________________________________________
23482 [ 27679] By: davem                                 on 2006/04/02  16:32:10
23483         Log: use slabs to allocate save state space in regmatch() 
23484      Branch: perl
23485            ! embedvar.h perl.c perl.h perlapi.h regcomp.h regexec.c
23486            ! regexp.h sv.c thrdvar.h
23487 ____________________________________________________________________________
23488 [ 27677] By: nicholas                              on 2006/04/02  11:17:58
23489         Log: Abstract all reads/writes of the hints in COPs with 2 new macros,
23490              CopHINTS_get() and CopHINTS_set().
23491      Branch: perl
23492            ! cop.h op.c pp_ctl.c utf8.c
23493 ____________________________________________________________________________
23494 [ 27676] By: nicholas                              on 2006/04/02  10:55:36
23495         Log: 'SvIOK(sv) ? SvIVX(sv) : sv_2iv(sv)' is 'SvIV(sv)' so write it as such.
23496      Branch: perl
23497            ! mg.c
23498 ____________________________________________________________________________
23499 [ 27674] By: nicholas                              on 2006/04/02  10:41:30
23500         Log: Convert ByteLoader to use CopARYBASE_set().
23501      Branch: perl
23502            ! bytecode.pl ext/ByteLoader/bytecode.h ext/ByteLoader/byterun.c
23503 ____________________________________________________________________________
23504 [ 27671] By: nicholas                              on 2006/04/02  10:08:04
23505         Log: Abstract all the accesses to cop_arybase (apart from ByteLoader)
23506      Branch: perl
23507            ! cop.h ext/B/B.xs mg.c op.c pp.c pp_ctl.c pp_hot.c scope.c
23508            ! scope.h toke.c
23509 ____________________________________________________________________________
23510 [ 27669] By: craigb                                on 2006/04/02  01:09:38
23511         Log: fix typo in vms/gen_shrfls.pl itanium detector
23512      Branch: perl
23513            ! vms/gen_shrfls.pl
23514 ____________________________________________________________________________
23515 [ 27668] By: nicholas                              on 2006/04/01  23:34:10
23516         Log: If the passed in target rv for Perl_newSVrv() was already a reference
23517              to something, it would leak the reference count on that thing.
23518      Branch: perl
23519            ! sv.c
23520 ____________________________________________________________________________
23521 [ 27667] By: nicholas                              on 2006/04/01  23:09:34
23522         Log: Test no mypragma;
23523      Branch: perl
23524            ! t/lib/mypragma.t
23525 ____________________________________________________________________________
23526 [ 27666] By: nicholas                              on 2006/04/01  21:17:46
23527         Log: Automatically set HINT_LOCALIZE_HH whenever %^H is modified.
23528      Branch: perl
23529            ! embed.fnc embed.h hv.c lib/feature.pm lib/sort.pm mg.c op.c
23530            ! proto.h scope.c scope.h t/lib/mypragma.pm
23531 ____________________________________________________________________________
23532 [ 27665] By: nicholas                              on 2006/04/01  19:38:31
23533         Log: The call to Perl_hv_assert(aTHX_ hv) should be wrapped in a DEBUG_A().
23534      Branch: perl
23535            ! hv.c
23536 ____________________________________________________________________________
23537 [ 27664] By: nicholas                              on 2006/04/01  15:26:48
23538         Log: Test that user pragmas work inside string eval.
23539      Branch: perl
23540            ! t/lib/mypragma.t
23541 ____________________________________________________________________________
23542 [ 27663] By: nicholas                              on 2006/04/01  15:22:54
23543         Log: Add Rafael's example user pragma, and convert his demo to a test.
23544      Branch: perl
23545            + t/lib/mypragma.pm t/lib/mypragma.t
23546            ! MANIFEST
23547 ____________________________________________________________________________
23548 [ 27662] By: nicholas                              on 2006/04/01  15:21:56
23549         Log: If the comment says "(and not ours)" then it should be tested.
23550      Branch: perl
23551            ! t/op/getppid.t
23552 ____________________________________________________________________________
23553 [ 27660] By: nicholas                              on 2006/04/01  15:11:11
23554         Log: Rewrite t/op/getppid.t to remove the assumption that init has PID of 1.
23555      Branch: perl
23556            ! t/op/getppid.t
23557 ____________________________________________________________________________
23558 [ 27659] By: nicholas                              on 2006/04/01  14:31:37
23559         Log: Propagate cop_hints inside string evals. For the unthreaded case this
23560              is easy. For the threaded case it's not, because the current OP may
23561              be shared with another thread, so solve this by copying the hints
23562              chain.
23563      Branch: perl
23564            ! embed.fnc embed.h hv.c pod/perlintern.pod pp_ctl.c proto.h
23565            ! t/op/caller.t
23566 ____________________________________________________________________________
23567 [ 27657] By: nicholas                              on 2006/04/01  12:32:23
23568         Log: Inconsistencies in paramter const-ness noticed by SADAHIRO Tomoyuki.
23569      Branch: perl
23570            ! embed.fnc proto.h sv.c
23571 ____________________________________________________________________________
23572 [ 27656] By: rgs                                   on 2006/03/31  21:53:22
23573         Log: Subject: [PATCH] Re: recursion now removed from the regex engine
23574              From: Dominic Dunlop <shouldbedomo@mac.com>
23575              Date: Thu, 30 Mar 2006 10:31:55 +0200
23576              Message-Id: <C4D69F9F-FB90-4564-8C46-E51765EB0440@mac.com>
23577      Branch: perl
23578            ! t/op/pat.t
23579 ____________________________________________________________________________
23580 [ 27653] By: rgs                                   on 2006/03/31  20:02:40
23581         Log: Updated version of the grumpy comment deleted by change #27649,
23582              by Jarkko
23583      Branch: perl
23584            ! perl.h
23585 ____________________________________________________________________________
23586 [ 27652] By: merijn                                on 2006/03/31  19:36:44
23587         Log: Glossary part for #27447 (madlyh, madlyobj, madlysrc)
23588      Branch: perl
23589            ! Porting/Glossary
23590 ____________________________________________________________________________
23591 [ 27650] By: nicholas                              on 2006/03/31  19:30:09
23592         Log: Need to dup any hints HV stored on the save stack.
23593      Branch: perl
23594            ! sv.c
23595 ____________________________________________________________________________
23596 [ 27649] By: rgs                                   on 2006/03/31  16:59:53
23597         Log: Subject: [PATCH] Redo PERL_UNUSED_DECL
23598              From: andy@petdance.com (Andy Lester)
23599              Date: Fri, 31 Mar 2006 00:54:58 -0600
23600              Message-ID: <20060331065458.GA28571@petdance.com>
23601      Branch: perl
23602            ! malloc.c perl.h
23603 ____________________________________________________________________________
23604 [ 27648] By: craigb                                on 2006/03/31  16:31:28
23605         Log: Subject: [patch@27638] Enable standard stat for VMS >=8.2
23606              From: "John E. Malmberg" <wb8tyw@qsl.net>
23607              Date: Fri, 31 Mar 2006 00:39:23 -0500
23608              Message-id: <442CC08A.30409@qsl.net>
23609      Branch: perl
23610            ! configure.com vms/vms.c vms/vmsish.h
23611 ____________________________________________________________________________
23612 [ 27647] By: nicholas                              on 2006/03/31  16:22:13
23613         Log: Note future possible flexibility for Perl_magic_sethint().
23614      Branch: perl
23615            ! mg.c
23616 ____________________________________________________________________________
23617 [ 27646] By: nicholas                              on 2006/03/31  16:19:38
23618         Log: Test that entries in %^H are actually independant.
23619      Branch: perl
23620            ! t/op/caller.t
23621 ____________________________________________________________________________
23622 [ 27645] By: nicholas                              on 2006/03/31  14:10:39
23623         Log: I can't spell.
23624      Branch: perl
23625            ! op.c
23626 ____________________________________________________________________________
23627 [ 27644] By: rgs                                   on 2006/03/31  14:08:12
23628         Log: Document new magic types in perlguts. Fix a comment about sort hints.
23629      Branch: perl
23630            ! perl.h pod/perlguts.pod
23631 ____________________________________________________________________________
23632 [ 27643] By: nicholas                              on 2006/03/31  13:45:57
23633         Log: Serialise changes to %^H onto the current COP. Return the compile time
23634              state of %^H as an eleventh value from caller. This allows users to
23635              write pragmas.
23636      Branch: perl
23637            ! cop.h dump.c embed.fnc embed.h gv.c hv.c hv.h makedef.pl mg.c
23638            ! op.c perl.c perl.h pod/perlfunc.pod pod/perlintern.pod
23639            ! pp_ctl.c proto.h scope.c scope.h sv.c t/op/caller.t
23640 ____________________________________________________________________________
23641 [ 27642] By: rgs                                   on 2006/03/31  13:22:00
23642         Log: Upgrade to Time::Local 1.12_01
23643      Branch: perl
23644            ! lib/Time/Local.pm lib/Time/Local.t
23645 ____________________________________________________________________________
23646 [ 27641] By: rgs                                   on 2006/03/31  12:30:31
23647         Log: Subject: [PATCH] Random accumulated patches
23648              From: andy@petdance.com (Andy Lester)
23649              Date: Thu, 30 Mar 2006 23:42:28 -0600
23650              Message-ID: <20060331054228.GA18940@petdance.com>
23651      Branch: perl
23652            ! cop.h doio.c dump.c embed.fnc gv.c gv.h hv.c mg.c op.c perl.c
23653            ! perl.h pp.c pp_ctl.c pp_hot.c pp_sort.c proto.h regcomp.c sv.c
23654            ! sv.h toke.c utf8.c
23655 ____________________________________________________________________________
23656 [ 27640] By: rgs                                   on 2006/03/31  12:10:57
23657         Log: Subject: [PATCH] IO::Compress::Zip
23658              From: "Paul Marquess" <paul.marquess@ntlworld.com>
23659              Date: Fri, 31 Mar 2006 09:48:36 +0100
23660              Message-ID: <005201c6549f$e7374490$2405140a@myopwv.com>
23661      Branch: perl
23662            ! ext/Compress/IO/Zlib/t/105oneshot-zip-only.t
23663 ____________________________________________________________________________
23664 [ 27639] By: rgs                                   on 2006/03/31  08:00:08
23665         Log: Test for fileno definedness instead of truth
23666              Don't load Config.pm, which isn't used
23667      Branch: perl
23668            ! lib/FileCache.pm
23669 ____________________________________________________________________________
23670 [ 27638] By: nicholas                              on 2006/03/30  20:55:17
23671         Log: Localising hash slices with UTF-8 encoded keys was also buggy.
23672              (See also change 27637)
23673      Branch: perl
23674            ! pp.c t/op/local.t
23675 ____________________________________________________________________________
23676 [ 27637] By: nicholas                              on 2006/03/30  20:37:03
23677         Log: Fix bug #38815 (localising keys which are UTF-8 encoded didn't delete
23678              them correctly on scope exit)
23679      Branch: perl
23680            ! pp_hot.c scope.c t/op/local.t
23681 ____________________________________________________________________________
23682 [ 27636] By: nicholas                              on 2006/03/30  18:18:27
23683         Log: Fix bug 36267 - assigning to a tied hash shouldn't change the
23684              underlying hash. (It used to, if the underlying hash had had storage
23685              allocated). This has the side effect of changing the return value from
23686              hv_store and hv_store_ent for some tied hash scenarios. But *to*
23687              something consistent (ly crazy)
23688      Branch: perl
23689            ! ext/XS/APItest/t/hash.t hv.c t/op/tie.t
23690 ____________________________________________________________________________
23691 [ 27635] By: stevep                                on 2006/03/30  12:49:28
23692         Log: Pod nit mentioned in Debian bug #358455.
23693      Branch: perl
23694            ! pod/perlsec.pod
23695 ____________________________________________________________________________
23696 [ 27634] By: gisle                                 on 2006/03/30  12:31:26
23697         Log: Populate pre-canned config.sh files with
23698              d_archlib and d_inc_version_list.
23699              Ref change 27632.
23700      Branch: perl
23701            ! configure.com symbian/config.sh win32/config.bc
23702            ! win32/config.gc win32/config.vc win32/config.vc64
23703            ! wince/config.ce
23704 ____________________________________________________________________________
23705 [ 27633] By: rgs                                   on 2006/03/30  12:15:35
23706         Log: Subject: PATCH t/op/tie.t
23707              From: Robin Barker <Robin.Barker@npl.co.uk>
23708              Date: Thu, 30 Mar 2006 13:07:47 +0100
23709              Message-ID: <533D273D4014D411AB1D00062938C4D90849C9CA@hotel.npl.ad.local>
23710      Branch: perl
23711            ! t/op/tie.t
23712 ____________________________________________________________________________
23713 [ 27632] By: gisle                                 on 2006/03/30  12:13:54
23714         Log: Introduce d_sitearch and d_inc_version_list config.sh variables.
23715              These allow me to set sitearch and sitelib to be the same without
23716              ending up with duplicate entries in @INC.
23717              
23718              Basically the same way the old d_archlib variable is used.
23719      Branch: perl
23720            ! Configure Porting/Glossary config_h.SH perl.c
23721 ____________________________________________________________________________
23722 [ 27631] By: rgs                                   on 2006/03/30  08:28:38
23723         Log: Subject: Re: New Module::Build released
23724              From: "Randy W. Sims" <ml-perl@thepierianspring.org>
23725              Date: Wed, 29 Mar 2006 14:10:32 -0500
23726              Message-ID: <442ADBA8.4000203@thepierianspring.org>
23727      Branch: perl
23728            + lib/Module/Build/YAML.pm lib/Module/Build/t/mbyaml.t
23729            ! MANIFEST lib/ExtUtils/CBuilder.pm
23730            ! lib/ExtUtils/CBuilder/Changes
23731            ! lib/ExtUtils/CBuilder/Platform/VMS.pm lib/Module/Build.pm
23732            ! lib/Module/Build/Authoring.pod lib/Module/Build/Base.pm
23733            ! lib/Module/Build/Changes lib/Module/Build/Platform/MacOS.pm
23734            ! lib/Module/Build/Platform/VMS.pm
23735            ! lib/Module/Build/Platform/Windows.pm
23736            ! lib/Module/Build/Platform/os2.pm
23737            ! lib/Module/Build/t/bundled/Tie/CPHash.pm
23738            ! lib/Module/Build/t/lib/DistGen.pm
23739            ! lib/Module/Build/t/metadata.t
23740 ____________________________________________________________________________
23741 [ 27630] By: rgs                                   on 2006/03/30  08:17:12
23742         Log: Subject: [PATCH] Clean up regexec.c, and remove two functions
23743              From: andy@petdance.com (Andy Lester)
23744              Date: Wed, 29 Mar 2006 10:13:36 -0600
23745              Message-ID: <20060329161336.GA12456@petdance.com>
23746      Branch: perl
23747            ! embed.fnc embed.h proto.h regexec.c
23748 ____________________________________________________________________________
23749 [ 27629] By: rgs                                   on 2006/03/29  12:30:56
23750         Log: Subject: child's processor time
23751              From: hv@crypt.org <hv@crypt.org>
23752              Date: Mar 29, 2006 2:34 PM
23753              Message-Id: <200603291234.k2TCY6r29535@zen.crypt.org>
23754      Branch: perl
23755            ! pod/perlfunc.pod
23756 ____________________________________________________________________________
23757 [ 27628] By: rgs                                   on 2006/03/29  09:26:01
23758         Log: Subject: CLONE for Tie::RefHash
23759              From: Yuval Kogman <nothingmuch@woobling.org>
23760              Date: Mon, 27 Mar 2006 15:34:07 +0200
23761              Message-ID: <20060327133407.GA16901@woobling.org>
23762              
23763              (also rename old Tie::RefHash test, so several test files
23764              are allowed.)
23765      Branch: perl
23766            + lib/Tie/RefHash/threaded.t
23767           +> lib/Tie/RefHash/refhash.t
23768            - lib/Tie/RefHash.t
23769            ! MANIFEST lib/Tie/RefHash.pm
23770 ____________________________________________________________________________
23771 [ 27627] By: rgs                                   on 2006/03/29  09:01:21
23772         Log: Subject: [PATCH] Devel::DProf consting
23773              From: andy@petdance.com (Andy Lester)
23774              Date: Sat, 25 Mar 2006 23:32:13 -0600
23775              Message-ID: <20060326053213.GA10401@petdance.com>
23776      Branch: perl
23777            ! ext/Devel/DProf/DProf.xs
23778 ____________________________________________________________________________
23779 [ 27626] By: rgs                                   on 2006/03/29  08:55:21
23780         Log: Subject: re-[PATCH] Re: [PATCH] Poison now in two different flavours!
23781              From: Jarkko Hietaniemi <jhietaniemi@gmail.com>
23782              Date: Sun, 26 Mar 2006 14:53:56 +0300
23783              Message-ID: <442680D4.3000809@gmail.com>
23784      Branch: perl
23785            ! handy.h pod/perlapi.pod pod/perlclib.pod pod/perlhack.pod
23786            ! pp_ctl.c scope.c sv.c util.c
23787 ____________________________________________________________________________
23788 [ 27625] By: rgs                                   on 2006/03/29  08:42:28
23789         Log: Subject: [doc-patch] clarify -Accflags in INSTALL
23790              From: Jim Cromie <jim.cromie@gmail.com>
23791              Date: Sun, 26 Mar 2006 20:33:23 -0500
23792              Message-ID: <442740E3.8030006@gmail.com>
23793      Branch: perl
23794            ! INSTALL
23795 ____________________________________________________________________________
23796 [ 27622] By: nicholas                              on 2006/03/28  15:43:59
23797         Log: Only compile Perl_hv_assert with DEBUGGING.
23798      Branch: perl
23799            ! hv.c makedef.pl
23800 ____________________________________________________________________________
23801 [ 27621] By: nicholas                              on 2006/03/28  15:17:06
23802         Log: Having tested IPv6 support in all builtins for TCP and UDP, it all
23803              seem to work perfectly. So remove from perltodo.pod.
23804      Branch: perl
23805            ! pod/perltodo.pod
23806 ____________________________________________________________________________
23807 [ 27620] By: gisle                                 on 2006/03/28  11:18:52
23808         Log: Improved description of the tmon.out format.
23809              The / lines where undocumented.
23810      Branch: perl
23811            ! ext/Devel/DProf/DProf.pm
23812 ____________________________________________________________________________
23813 [ 27619] By: steveh                                on 2006/03/28  10:38:52
23814         Log: Subject: [PATCH lib/Term/ReadLine] Re: [cpan #17773] Bug in Term::ReadKey being trigger by a bug in Term::ReadLine
23815              From: Jonathan Stowe <jns@gellyfish.com>
23816              Date: Mon, 13 Mar 2006 16:09:44 +0000
23817              Message-Id: <1142266184.5811.141.camel@orpheus.gellyfish.com>
23818      Branch: perl
23819            ! lib/Term/ReadLine.pm
23820 ____________________________________________________________________________
23821 [ 27618] By: craigb                                on 2006/03/28  04:01:21
23822         Log: Subject: [patch@27613] VMS long file path support active.
23823              From: "John E. Malmberg" <wb8tyw@qsl.net>
23824              Date: Mon, 27 Mar 2006 08:05:33 -0500
23825              Message-id: <4427E31D.2030801@qsl.net>
23826
23827      Branch: perl
23828            ! vms/vms.c vms/vmsish.h
23829 ____________________________________________________________________________
23830 [ 27617] By: nicholas                              on 2006/03/27  21:04:58
23831         Log: Merge the cut & paste code from Perl_call_sv/Perl_fold_constants with
23832              the near identical code in pp_entertry into Perl_create_eval_scope.
23833              Move the cut & paste code from Perl_call_sv/Perl_fold_constants into
23834              Perl_delete_eval_scope.
23835      Branch: perl
23836            ! cop.h embed.fnc embed.h ext/B/t/concise-xs.t op.c perl.c
23837            ! pp_ctl.c proto.h
23838 ____________________________________________________________________________
23839 [ 27616] By: nicholas                              on 2006/03/27  20:31:52
23840         Log: It helps to actually add the files you add to MANIFEST. (Thanks Dave
23841              for spotting my mistake).
23842      Branch: perl
23843            + t/comp/fold.t
23844 ____________________________________________________________________________
23845 [ 27615] By: nicholas                              on 2006/03/27  19:25:02
23846         Log: If constant folding fails, don't fold constants, rather than reporting
23847              the error at compile time. This allows illegal constant expressions in
23848              dead code to be ignored.
23849      Branch: perl
23850            ! MANIFEST op.c pod/perldiag.pod pod/perltodo.pod
23851 ____________________________________________________________________________
23852 [ 27613] By: craigb                                on 2006/03/27  00:04:10
23853         Log: EU::MM::MM_VMS::one_liner must quote "--" argument
23854      Branch: perl
23855            ! lib/ExtUtils/MM_VMS.pm
23856 ____________________________________________________________________________
23857 [ 27612] By: nicholas                              on 2006/03/26  22:12:57
23858         Log: Replace all sv_mortalcopy(&PL_sv_no); sv_set*(...) with
23859              sv2mortal(newSV*(...)) to avoid needless upgrades to PVNV and needless
23860              allocation of a copy of "".
23861      Branch: perl
23862            ! pp_sys.c
23863 ____________________________________________________________________________
23864 [ 27611] By: craigb                                on 2006/03/26  21:58:49
23865         Log: Subject: [patch@27609] vms pool corruption fix for _NLA0:
23866              From: "John E. Malmberg" <wb8tyw@qsl.net>
23867              Date: Sun, 26 Mar 2006 14:32:30 -0500
23868              Message-id: <4426EC4E.8030801@qsl.net>
23869      Branch: perl
23870            ! vms/vms.c
23871 ____________________________________________________________________________
23872 [ 27610] By: gisle                                 on 2006/03/26  09:15:01
23873         Log: REXEC_ML is unused.
23874      Branch: perl
23875            ! regexp.h
23876 ____________________________________________________________________________
23877 [ 27609] By: gbarr                                 on 2006/03/26  02:49:11
23878         Log: Update to IO-1.23
23879      Branch: perl
23880            ! ext/IO/ChangeLog ext/IO/IO.pm ext/IO/lib/IO/Dir.pm
23881            ! ext/IO/lib/IO/File.pm ext/IO/lib/IO/Handle.pm
23882            ! ext/IO/lib/IO/Socket.pm ext/IO/lib/IO/Socket/INET.pm
23883            ! ext/IO/lib/IO/Socket/UNIX.pm ext/IO/t/io_multihomed.t
23884            ! ext/IO/t/io_pipe.t ext/IO/t/io_sock.t ext/IO/t/io_taint.t
23885            ! ext/IO/t/io_tell.t ext/IO/t/io_udp.t ext/IO/t/io_unix.t
23886 ____________________________________________________________________________
23887 [ 27608] By: nicholas                              on 2006/03/25  22:45:34
23888         Log: Add S_space_join_names_mortal() which joins a char** array with " "s,
23889              replacing 5 instances of the same code.
23890      Branch: perl
23891            ! embed.fnc embed.h pp_sys.c proto.h
23892 ____________________________________________________________________________
23893 [ 27607] By: nicholas                              on 2006/03/25  22:10:27
23894         Log: Silence 3 (spurious) gcc warnings about "maybe used uninitialized".
23895      Branch: perl
23896            ! regexec.c sv.c
23897 ____________________________________________________________________________
23898 [ 27603] By: davem                                 on 2006/03/25  14:57:19
23899         Log: make configpm only update Config.pm, Config_heavy.pl if changed.
23900              Should stop spurious rebuilding of extensions.
23901              Also add documentation and copyright to top of file.
23902      Branch: perl
23903            ! configpm
23904 ____________________________________________________________________________
23905 [ 27602] By: nicholas                              on 2006/03/25  14:46:09
23906         Log: PL_multiline isn't referenced, and can be removed.
23907      Branch: perl
23908            ! embedvar.h intrpvar.h perl.c perlapi.h sv.c
23909 ____________________________________________________________________________
23910 [ 27601] By: rgs                                   on 2006/03/25  13:42:38
23911         Log: Subject: [PATCH] ext/Compress/IO/Zlib/t/050interop-gzip.t
23912              From: "Paul Marquess" <paul.marquess@ntlworld.com>
23913              Date: Fri, 24 Mar 2006 16:19:05 -0000
23914              Message-ID: <001b01c64f5e$ad8284d0$6b65140a@myopwv.com>
23915      Branch: perl
23916            ! ext/Compress/IO/Zlib/t/050interop-gzip.t
23917 ____________________________________________________________________________
23918 [ 27600] By: nicholas                              on 2006/03/25  11:35:33
23919         Log: Free the regexp state when exiting "recursion".
23920      Branch: perl
23921            ! regexec.c
23922 ____________________________________________________________________________
23923 [ 27599] By: davem                                 on 2006/03/24  23:21:52
23924         Log: remove unused PL_regcc variable
23925      Branch: perl
23926            ! embedvar.h perlapi.h regcomp.c sv.c thrdvar.h
23927 ____________________________________________________________________________
23928 [ 27598] By: davem                                 on 2006/03/24  23:05:11
23929         Log: make S_regmatch() iterative rather than recursive.
23930              Goodbye stack-bustng regexes!
23931      Branch: perl
23932            ! regexec.c
23933 ____________________________________________________________________________
23934 [ 27597] By: craigb                                on 2006/03/24  21:05:45
23935         Log: restore EU::MM test fixes from 26079, 26813, and 26919
23936              that were lost in 27590
23937      Branch: perl
23938            ! lib/ExtUtils/t/Command.t lib/ExtUtils/t/FIRST_MAKEFILE.t
23939            ! lib/ExtUtils/t/Manifest.t lib/ExtUtils/t/basic.t
23940 ____________________________________________________________________________
23941 [ 27596] By: rgs                                   on 2006/03/24  13:51:15
23942         Log: Bump version number of ExtUtils::MM_Win32
23943      Branch: perl
23944            ! lib/ExtUtils/MM_Win32.pm
23945 ____________________________________________________________________________
23946 [ 27595] By: steveh                                on 2006/03/24  13:01:32
23947         Log: Fix broken MM_Win32.t tests following 27590
23948              
23949              Test 31 was failing because 27590 had undone part of 25627.
23950              Test 41 was failing because the change to pasthru() in MM_Win32.pm
23951              means that $self->{MAKE} now needs to be initialized.
23952      Branch: perl
23953            ! lib/ExtUtils/t/MM_Win32.t
23954 ____________________________________________________________________________
23955 [ 27594] By: rgs                                   on 2006/03/24  11:01:01
23956         Log: Subject: [PATCH] (2nd revised) 1st patch to sync blead 'threads' with CPAN
23957              From: "Jerry D. Hedden" <jerry@hedden.us>
23958              Date: Thu, 23 Mar 2006 09:19:54 -0700
23959              Message-ID: <20060323091954.fb30e530d17747c2b054d625b8945d88.884826707f.wbe@email.email.secureserver.net>
23960      Branch: perl
23961            ! ext/threads/Changes ext/threads/Makefile.PL ext/threads/README
23962            ! ext/threads/t/basic.t ext/threads/t/end.t ext/threads/t/join.t
23963            ! ext/threads/t/libc.t ext/threads/t/list.t
23964            ! ext/threads/t/problems.t ext/threads/t/stress_cv.t
23965            ! ext/threads/t/stress_re.t ext/threads/t/stress_string.t
23966            ! ext/threads/t/thread.t ext/threads/threads.pm
23967            ! ext/threads/threads.xs
23968 ____________________________________________________________________________
23969 [ 27593] By: craigb                                on 2006/03/23  23:19:38
23970         Log: improve thread linking options on VMS
23971      Branch: perl
23972            ! configure.com vms/descrip_mms.template
23973 ____________________________________________________________________________
23974 [ 27592] By: rgs                                   on 2006/03/23  22:13:13
23975         Log: When MAN3PODS is forced to {} in a Makefile.PL, manpages should not be
23976              built from pods. This change fixes bleadperl compilation -- trying to
23977              build manpages with miniperl causes a bootstrapping problem.
23978      Branch: perl
23979            ! lib/ExtUtils/MM_Unix.pm
23980 ____________________________________________________________________________
23981 [ 27591] By: rgs                                   on 2006/03/23  17:50:29
23982         Log: No reason to ship MakeMaker's META.yml
23983      Branch: perl
23984            - lib/ExtUtils/META.yml
23985            ! MANIFEST
23986 ____________________________________________________________________________
23987 [ 27590] By: rgs                                   on 2006/03/23  17:43:26
23988         Log: Merge changes from CPAN's EU:MM 6.30_01.
23989              The modules that have local changes have superior
23990              version numbers than the CPAN counterparts.
23991      Branch: perl
23992            + lib/ExtUtils/t/INSTALL_BASE.t lib/ExtUtils/t/make.t
23993            + lib/ExtUtils/t/revision.t
23994            - lib/ExtUtils/t/installbase.t
23995            ! MANIFEST lib/ExtUtils/Changes lib/ExtUtils/META.yml
23996            ! lib/ExtUtils/MM_Any.pm lib/ExtUtils/MM_NW5.pm
23997            ! lib/ExtUtils/MM_Unix.pm lib/ExtUtils/MM_VMS.pm
23998            ! lib/ExtUtils/MM_Win32.pm lib/ExtUtils/MM_Win95.pm
23999            ! lib/ExtUtils/MakeMaker.pm lib/ExtUtils/MakeMaker/FAQ.pod
24000            ! lib/ExtUtils/PATCHING lib/ExtUtils/t/Command.t
24001            ! lib/ExtUtils/t/FIRST_MAKEFILE.t lib/ExtUtils/t/MM_NW5.t
24002            ! lib/ExtUtils/t/MM_Win32.t lib/ExtUtils/t/Manifest.t
24003            ! lib/ExtUtils/t/basic.t
24004 ____________________________________________________________________________
24005 [ 27589] By: nicholas                              on 2006/03/23  16:27:42
24006         Log: Document the values for ${^UTF8CACHE}
24007      Branch: perl
24008            ! pod/perlvar.pod
24009 ____________________________________________________________________________
24010 [ 27588] By: nicholas                              on 2006/03/23  16:25:51
24011         Log: Rejig the location of the cache assertion code in Perl_sv_pos_b2u().
24012      Branch: perl
24013            ! sv.c
24014 ____________________________________________________________________________
24015 [ 27587] By: rgs                                   on 2006/03/23  15:27:15
24016         Log: Get version numbers in line with what's in the CPAN
24017              EU::MM 6.30_01 tarball. (ExtUtils::Install has local changes,
24018              so bump its version number.)
24019      Branch: perl
24020            ! lib/ExtUtils/Install.pm lib/ExtUtils/Installed.pm
24021            ! lib/ExtUtils/Manifest.pm lib/ExtUtils/Mkbootstrap.pm
24022            ! lib/ExtUtils/Mksymlists.pm lib/ExtUtils/Packlist.pm
24023 ____________________________________________________________________________
24024 [ 27586] By: nicholas                              on 2006/03/23  14:31:28
24025         Log: Move orphaned documentation back to its functions
24026              Document the new static functions, and how the cache works.
24027      Branch: perl
24028            ! pod/perltodo.pod sv.c
24029 ____________________________________________________________________________
24030 [ 27585] By: nicholas                              on 2006/03/23  14:09:33
24031         Log: Make S_sv_pos_u2b_cached use both cache pairs.
24032      Branch: perl
24033            ! sv.c
24034 ____________________________________________________________________________
24035 [ 27584] By: nicholas                              on 2006/03/23  13:47:41
24036         Log: Use both cache entries for Perl_sv_pos_b2u().
24037      Branch: perl
24038            ! sv.c
24039 ____________________________________________________________________________
24040 [ 27583] By: nicholas                              on 2006/03/23  13:16:53
24041         Log: Complete the other 2 arms of the cache update code.
24042      Branch: perl
24043            ! sv.c
24044 ____________________________________________________________________________
24045 [ 27582] By: nicholas                              on 2006/03/23  12:44:35
24046         Log: Pass the (byte) length of the entire string into
24047              utf8_mg_pos_cache_update()
24048              Start to use the cache to store two pairs of byte/utf-8 pairs.
24049              Add the first third of the cache update code.
24050      Branch: perl
24051            ! embed.fnc embed.h proto.h sv.c
24052 ____________________________________________________________________________
24053 [ 27581] By: rgs                                   on 2006/03/23  12:30:39
24054         Log: Upgrade to Time::Local 1.12
24055      Branch: perl
24056            ! lib/Time/Local.pm lib/Time/Local.t
24057 ____________________________________________________________________________
24058 [ 27580] By: nicholas                              on 2006/03/23  11:33:48
24059         Log: Add all new static functions to embed.fnc
24060              Remove old unused static functions.
24061              Remove references to cache[2] and cache[3].
24062      Branch: perl
24063            ! embed.fnc embed.h proto.h sv.c
24064 ____________________________________________________________________________
24065 [ 27579] By: nicholas                              on 2006/03/23  11:06:52
24066         Log: Use the cache in S_sv_pos_u2b_cached() when the desired offset is
24067              between the start of the string and the cached location.
24068              Remove unneccesary else from Perl_sv_pos_b2u().
24069      Branch: perl
24070            ! sv.c
24071 ____________________________________________________________________________
24072 [ 27578] By: nicholas                              on 2006/03/23  10:42:26
24073         Log: Use the cache in S_sv_pos_u2b_cached when the sought offset is after
24074              the first cache entry.
24075      Branch: perl
24076            ! sv.c
24077 ____________________________________________________________________________
24078 [ 27577] By: rgs                                   on 2006/03/23  10:01:48
24079         Log: Further adjustement to change #27576 by Jan Dubois
24080              (this change being blead-specific, while #27576 is
24081              integrable to maint)
24082      Branch: perl
24083            ! sv.c
24084 ____________________________________________________________________________
24085 [ 27576] By: rgs                                   on 2006/03/23  09:58:22
24086         Log: Subject: RE: [PATCH, no, really!] Re: [perl #38779] NAN's on Win32
24087              From: "Jan Dubois" <jand@ActiveState.com>
24088              Date: Wed, 22 Mar 2006 22:49:11 -0800
24089              Message-ID: <060201c64e45$e4ca7020$2217a8c0@candy>
24090              
24091              Also, back out change #27567.
24092      Branch: perl
24093            ! README.win32 pp.c pp_hot.c sv.c win32/win32.h
24094 ____________________________________________________________________________
24095 [ 27575] By: nicholas                              on 2006/03/23  00:14:53
24096         Log: Call S_utf8_mg_pos_cache_update() from S_sv_pos_u2b_cached().
24097              S_utf8_mg_pos_cache_update() can't use S_sv_pos_b2u_forwards() in the
24098              cache assertion code as it triggers warnings about surrogates.
24099      Branch: perl
24100            ! sv.c
24101 ____________________________________________________________________________
24102 [ 27574] By: nicholas                              on 2006/03/22  22:49:42
24103         Log: Take advantage of uoffset >= uoffset0, to simplify some logic.
24104      Branch: perl
24105            ! sv.c
24106 ____________________________________________________________________________
24107 [ 27573] By: nicholas                              on 2006/03/22  21:19:50
24108         Log: Add S_sv_pos_u2b_midway for when we know the utf-8/bytes offsets on
24109              both sides of the desired offset, so could count either way.
24110              Use cached utf-8 length in S_sv_pos_u2b_cached.
24111              Check the results if PL_utf8cache < 0.
24112      Branch: perl
24113            ! sv.c
24114 ____________________________________________________________________________
24115 [ 27572] By: nicholas                              on 2006/03/22  20:38:20
24116         Log: Create S_sv_pos_u2b_cached, which abstracts away utf-8 to byte
24117              conversions, hiding the complexity of any cache lookup.
24118      Branch: perl
24119            ! sv.c
24120 ____________________________________________________________________________
24121 [ 27571] By: rgs                                   on 2006/03/22  20:33:56
24122         Log: Subject: Uninitialized value in Archive::Tar
24123              From: "Randy W. Sims" <ml-perl@thepierianspring.org>
24124              Date: Mon, 20 Mar 2006 06:37:31 -0500
24125              Message-ID: <441E93FB.3050906@thepierianspring.org>
24126      Branch: perl
24127            ! lib/Archive/Tar.pm
24128 ____________________________________________________________________________
24129 [ 27570] By: nicholas                              on 2006/03/22  18:13:06
24130         Log: The simplest way to start on Perl_sv_pos_u2b seems to be to take out
24131              all of the caching code.
24132      Branch: perl
24133            ! sv.c
24134 ____________________________________________________________________________
24135 [ 27569] By: davem                                 on 2006/03/22  16:05:16
24136         Log: remove idential code branch from regmatch()
24137      Branch: perl
24138            ! regexec.c
24139 ____________________________________________________________________________
24140 [ 27568] By: stevep                                on 2006/03/22  15:59:07
24141         Log: Fix some test failures in t/op/cmp.t when compiling with the Intel
24142              C++ Compiler on Linux.
24143      Branch: perl
24144            ! hints/linux.sh
24145 ____________________________________________________________________________
24146 [ 27567] By: rgs                                   on 2006/03/22  14:27:21
24147         Log: Subject: [PATCH] Re: [perl #38779] NAN's on Win32
24148              From: Dominic Dunlop <shouldbedomo@mac.com>
24149              Date: Wed, 22 Mar 2006 15:18:33 +0100
24150              Message-Id: <E44A2151-DE7F-4C5D-8A4B-DDA0412229C2@mac.com>
24151      Branch: perl
24152            ! README.win32
24153 ____________________________________________________________________________
24154 [ 27566] By: gisle                                 on 2006/03/22  13:37:19
24155         Log: Adjust docs to reflect that DynaLoader, as of change 27549,
24156              is part of libperl.
24157      Branch: perl
24158            ! lib/ExtUtils/Embed.pm
24159 ____________________________________________________________________________
24160 [ 27565] By: stevep                                on 2006/03/22  02:18:58
24161         Log: Increase the length of content compressed as a kludge to get 
24162              around incompatibilities in OpenBSD's gzip.
24163      Branch: perl
24164            ! ext/Compress/IO/Zlib/t/050interop-gzip.t
24165 ____________________________________________________________________________
24166 [ 27564] By: nicholas                              on 2006/03/21  22:09:51
24167         Log: (Hopefully) make VMS happy.
24168      Branch: perl
24169            ! sv.c
24170 ____________________________________________________________________________
24171 [ 27563] By: craigb                                on 2006/03/21  13:01:47
24172         Log: Subject: [patch@27529] thread.h - VMS needs more stack
24173              From: "John E. Malmberg" <wb8tyw@qsl.net>
24174              Date: Fri, 17 Mar 2006 11:05:33 -0500
24175              Message-id: <441ADE4D.2090207@qsl.net>
24176
24177      Branch: perl
24178            ! thread.h
24179 ____________________________________________________________________________
24180 [ 27562] By: gisle                                 on 2006/03/21  11:34:38
24181         Log: Upgrade to Digest-1.15
24182      Branch: perl
24183            ! lib/Digest.pm lib/Digest/Changes
24184 ____________________________________________________________________________
24185 [ 27561] By: rgs                                   on 2006/03/21  10:49:14
24186         Log: Subject: [patch@27538] utime patch for VMS
24187              From: "John E. Malmberg" <wb8tyw@qsl.net>
24188              Date: Mon, 20 Mar 2006 08:12:19 -0500
24189              Message-ID: <441EAA33.6010603@qsl.net>
24190      Branch: perl
24191            ! configure.com vms/vms.c vms/vmsish.h
24192 ____________________________________________________________________________
24193 [ 27560] By: gisle                                 on 2006/03/21  10:16:43
24194         Log: Test croak(NULL)
24195      Branch: perl
24196            ! ext/XS/APItest/APItest.xs ext/XS/APItest/t/exception.t
24197 ____________________________________________________________________________
24198 [ 27559] By: nicholas                              on 2006/03/20  19:30:48
24199         Log: Extend change 27558 - if we know the character offset of the end, but
24200              don't have a cache for intermediate offsets, we can still use the end
24201              offset.
24202      Branch: perl
24203            ! sv.c
24204 ____________________________________________________________________________
24205 [ 27558] By: nicholas                              on 2006/03/20  18:54:32
24206         Log: In Perl_sv_pos_b2u, if we know the character offset of the end, we
24207              can take advantage of this to count backwards if close.
24208              Remove some now unnecessary casts.
24209      Branch: perl
24210            ! sv.c
24211 ____________________________________________________________________________
24212 [ 27557] By: nicholas                              on 2006/03/20  18:17:39
24213         Log: Abstract the string walking functionality from Perl_sv_pos_b2u into
24214              static functions, and make it respect PL_utf8cache.
24215      Branch: perl
24216            ! sv.c
24217 ____________________________________________________________________________
24218 [ 27556] By: steveh                                on 2006/03/20  17:32:25
24219         Log: Merge some more changes from ActivePerl 5.8.8.816
24220              
24221              See (again):
24222              http://downloads.activestate.com/ActivePerl/src/5.8/AP816_diff.txt
24223              
24224              These changes improve support for the MS 64-bit compiler in
24225              win32/Makefile (and tentatively make the same changes to
24226              win32/makefile.mk), and also switches the now deprecated -Gf switch to
24227              -GF for all flavours of VC++ instead of just the latest ones.
24228              
24229              (See:
24230              http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2006-02/msg00353.html
24231              for a comment on the s/-Gf/-GF/ change.)
24232      Branch: perl
24233            ! win32/Makefile win32/makefile.mk
24234 ____________________________________________________________________________
24235 [ 27555] By: steveh                                on 2006/03/20  17:21:15
24236         Log: Merge some changes from ActivePerl 5.8.8.816
24237              
24238              See:
24239              http://downloads.activestate.com/ActivePerl/src/5.8/AP816_diff.txt
24240              
24241              These changes provide better support for building XS extension modules
24242              using VC++ or MinGW when perl itself was built with the opposite of
24243              those two compilers.
24244      Branch: perl
24245            ! win32/config_H.gc win32/config_H.vc
24246 ____________________________________________________________________________
24247 [ 27554] By: rgs                                   on 2006/03/20  13:03:07
24248         Log: Revert part of change 27546 related to a /dev/null bug
24249              workaround on VMS, as requested by John E. Malmberg
24250      Branch: perl
24251            ! vms/vms.c
24252 ____________________________________________________________________________
24253 [ 27553] By: nicholas                              on 2006/03/20  12:37:22
24254         Log: Perl_utf8_distance can be implemented as a call to Perl_utf8_length.
24255      Branch: perl
24256            ! utf8.c
24257 ____________________________________________________________________________
24258 [ 27552] By: nicholas                              on 2006/03/20  12:13:46
24259         Log: The two loops in Perl_utf8_distance can be merged.
24260      Branch: perl
24261            ! utf8.c
24262 ____________________________________________________________________________
24263 [ 27551] By: gisle                                 on 2006/03/20  10:51:36
24264         Log: Avoid "uninitialized value" warnings during 'make test'.
24265              My system is set up with a few PATH entries I'm not allowed
24266              to access, so stat() fails for these.
24267      Branch: perl
24268            ! t/test.pl
24269 ____________________________________________________________________________
24270 [ 27550] By: gisle                                 on 2006/03/20  10:44:08
24271         Log: Also strip $ENV{PATH} dirs writable by world.
24272              The stripping was introduced in change 27364 to improve taint handling.
24273      Branch: perl
24274            ! t/test.pl
24275 ____________________________________________________________________________
24276 [ 27549] By: gisle                                 on 2006/03/20  10:21:50
24277         Log: Move DynaLoader.o into libperl.so.
24278              
24279              This avoids the need to statically link DynaLoader into the stub perl
24280              executable and make libperl.so provide all the code needed to get a
24281              functional embedded perl interpreter up running.  As a side effect
24282              this also moves DynaLoader into libperl.a for non-useshrplib builds.
24283              
24284              Fixes [perl #32539]
24285      Branch: perl
24286            ! Makefile.SH ext/DynaLoader/Makefile.PL ext/util/make_ext
24287            ! writemain.SH
24288 ____________________________________________________________________________
24289 [ 27548] By: nicholas                              on 2006/03/20  10:13:38
24290         Log: If the scalar has just been upgraded to SVt_RV, there's no way SvPVX
24291              can be non-NULL, so no need to check.
24292      Branch: perl
24293            ! pp.c
24294 ____________________________________________________________________________
24295 [ 27547] By: rgs                                   on 2006/03/20  10:11:21
24296         Log: Subject: [PATCH blead] Re: [perl #38710] localised stash slice
24297              From: Rick Delaney <rick@bort.ca>
24298              Date: Sat, 18 Mar 2006 19:52:11 -0500
24299              Message-ID: <20060319005211.GM25733@localhost.localdomain>
24300              
24301              One can now localize slices.
24302      Branch: perl
24303            ! pp.c t/op/local.t
24304 ____________________________________________________________________________
24305 [ 27546] By: rgs                                   on 2006/03/20  09:53:17
24306         Log: Subject: [patch@27538] Misc vms.c fixes for buffer sizes.
24307              From: "John E. Malmberg" <wb8tyw@qsl.net>
24308              Date: Sun, 19 Mar 2006 20:08:34 -0500
24309              Message-ID: <441E0092.2010405@qsl.net>
24310      Branch: perl
24311            ! vms/vms.c
24312 ____________________________________________________________________________
24313 [ 27545] By: steveh                                on 2006/03/20  09:34:57
24314         Log: Subject: [PATCH] win32_async_check must *always* check for pending signals
24315              From: "Jan Dubois" <jand@ActiveState.com>
24316              Date: Fri, 17 Mar 2006 12:23:01 -0800
24317              Message-ID: <00d401c64a00$96af8ae0$2217a8c0@candy>
24318      Branch: perl
24319            ! win32/win32.c
24320 ____________________________________________________________________________
24321 [ 27544] By: davem                                 on 2006/03/20  00:52:09
24322         Log: merge the TRIEF/TRIEFL and TRIE branches in regmatch(),
24323              expunge a couple of macros, and move some variable declarations
24324              inwards
24325      Branch: perl
24326            ! regexec.c
24327 ____________________________________________________________________________
24328 [ 27543] By: nicholas                              on 2006/03/19  19:26:05
24329         Log: Remove a redundant test on mg->mg_ptr. (It had to be non-NULL to get
24330              into this block).
24331      Branch: perl
24332            ! sv.c
24333 ____________________________________________________________________________
24334 [ 27542] By: stevep                                on 2006/03/19  16:38:11
24335         Log: Subject: [PATCH] Change the semantics of S_isa_lookup
24336              From: Andy Lester <andy@petdance.com>
24337              Date: Sat, 18 Mar 2006 00:28:45 -0600
24338              Message-ID: <20060318062845.GA11607@petdance.com>
24339      Branch: perl
24340            ! embed.fnc proto.h universal.c
24341 ____________________________________________________________________________
24342 [ 27541] By: stevep                                on 2006/03/19  16:32:16
24343         Log: Subject: [PATCH] a bit 'use strict' cleanliness
24344              From: Jarkko Hietaniemi <jhietaniemi@gmail.com>
24345              Date: Sun, 19 Mar 2006 13:21:37 +0200
24346              Message-ID: <441D3EC1.20902@gmail.com>
24347      Branch: perl
24348            ! lib/English.pm lib/Text/Tabs.pm lib/Tie/Hash.pm
24349            ! lib/Tie/Scalar.pm
24350 ____________________________________________________________________________
24351 [ 27540] By: stevep                                on 2006/03/19  16:24:22
24352         Log: Subject: [PATCH] Data::Dumper consting
24353              From: Andy Lester <andy@petdance.com>
24354              Date: Sun, 19 Mar 2006 01:22:04 -0600
24355              Message-ID: <20060319072204.GB5596@petdance.com>
24356      Branch: perl
24357            ! ext/Data/Dumper/Dumper.xs
24358 ____________________________________________________________________________
24359 [ 27539] By: stevep                                on 2006/03/19  16:21:29
24360         Log: Subject: [PATCH] Cleanups in op.c
24361              From: Andy Lester <andy@petdance.com>
24362              Date: Sun, 19 Mar 2006 00:30:29 -0600
24363              Message-ID: <20060319063029.GA5077@petdance.com>
24364      Branch: perl
24365            ! op.c
24366 ____________________________________________________________________________
24367 [ 27538] By: nicholas                              on 2006/03/17  22:12:27
24368         Log: Make Perl_sv_len_utf8 honour the new ${^UTF8CACHE}.
24369              If PERL_UTF8_CACHE_ASSERT is defined, default ${^UTF8CACHE} to -1
24370              (assertion mode). Need a way to turn this on with existing command
24371              line flags.
24372      Branch: perl
24373            ! intrpvar.h sv.c
24374 ____________________________________________________________________________
24375 [ 27537] By: nicholas                              on 2006/03/17  20:39:47
24376         Log: Remove a duplicated conditional test by putting everything for the
24377              not readonly case inside one block.
24378      Branch: perl
24379            ! sv.c
24380 ____________________________________________________________________________
24381 [ 27536] By: nicholas                              on 2006/03/17  19:37:41
24382         Log: Properly set/reset the UTF-8 length cache in regcomp.c.
24383      Branch: perl
24384            ! regcomp.c sv.c
24385 ____________________________________________________________________________
24386 [ 27535] By: nicholas                              on 2006/03/17  16:46:44
24387         Log: Restore a bit of change 27533 that change 27534 inadvertently unwound.
24388      Branch: perl
24389            ! regexec.c
24390 ____________________________________________________________________________
24391 [ 27534] By: davem                                 on 2006/03/17  15:58:45
24392         Log: inline, then delete, S_regrepeat_hard()
24393      Branch: perl
24394            ! embed.fnc embed.h proto.h regexec.c
24395 ____________________________________________________________________________
24396 [ 27533] By: nicholas                              on 2006/03/17  13:38:34
24397         Log: sv_find() returning false, followed by sv_magic() to add the magic,
24398              followed immediately by sv_find() to find it, is somewhat wasteful.
24399              So use sv_magicext(). (All cases are also correct w.r.t. SvREADONLY())
24400      Branch: perl
24401            ! mg.c pp_ctl.c pp_hot.c regexec.c sv.c
24402 ____________________________________________________________________________
24403 [ 27532] By: steveh                                on 2006/03/17  13:20:11
24404         Log: Make "distclean" target on Win32 clean up temporary HTML directory
24405              that gets left behind after running the "install" target.
24406              Also clean up a couple of leftover pod2html cache files.
24407      Branch: perl
24408            ! win32/Makefile win32/makefile.mk
24409 ____________________________________________________________________________
24410 [ 27531] By: rgs                                   on 2006/03/17  13:18:38
24411         Log: Upgrade to ExtUtils::CBuilder 0.17
24412      Branch: perl
24413            + lib/ExtUtils/CBuilder/Changes
24414            ! MANIFEST lib/ExtUtils/CBuilder.pm
24415            ! lib/ExtUtils/CBuilder/Base.pm
24416            ! lib/ExtUtils/CBuilder/Platform/VMS.pm
24417            ! lib/ExtUtils/CBuilder/Platform/Windows.pm
24418 ____________________________________________________________________________
24419 [ 27530] By: steveh                                on 2006/03/17  11:10:41
24420         Log: Install POD files into "lib\pods" rather than "lib\pod" on Win32
24421              to avoid clashing with "lib\Pod" (cf. perl change #26363)
24422              
24423              Also remove a couple of unused macros from the makefiles
24424      Branch: perl
24425            ! installperl win32/Makefile win32/makefile.mk
24426 ____________________________________________________________________________
24427 [ 27529] By: stevep                                on 2006/03/17  04:40:24
24428         Log: Subject: [PATCH] threads.xs broken under PERL_IMPLICIT_SYS; 5.8.8 regression 
24429              From: Jan Dubois <jand@ActiveState.com> 
24430              Date: Thu, 16 Mar 2006 19:34:00 -0800
24431              Message-ID: <02e601c64973$a1960cf0$6062a8c0@candy> 
24432              
24433              Also includes a version bump to ext/threads/threads.pm.
24434      Branch: perl
24435            ! ext/threads/threads.pm ext/threads/threads.xs
24436 ____________________________________________________________________________
24437 [ 27528] By: stevep                                on 2006/03/17  04:29:30
24438         Log: Subject: [PATCH] win32_pclose() error exit doesn't unlock mutex
24439              From: Jan Dubois <jand@ActiveState.com>
24440              Date: Thu, 16 Mar 2006 16:30:23 -0800
24441              Message-ID: <02c701c64959$fac63ad0$6062a8c0@candy>
24442      Branch: perl
24443            ! win32/win32.c wince/wince.c
24444 ____________________________________________________________________________
24445 [ 27527] By: stevep                                on 2006/03/17  04:19:01
24446         Log: Subject: [PATCH] win32_async_check() can loop indefinitely; 5.8.8 regression
24447              From: Jan Dubois <jand@ActiveState.com>
24448              Date: Thu, 16 Mar 2006 16:11:48 -0800
24449              Message-ID: <02ab01c64957$62142e70$6062a8c0@candy>
24450      Branch: perl
24451            ! win32/win32.c
24452 ____________________________________________________________________________
24453 [ 27526] By: davem                                 on 2006/03/17  02:57:45
24454         Log: reduce S_regrepeat_hard() callers from 3 to 1
24455      Branch: perl
24456            ! regexec.c
24457 ____________________________________________________________________________
24458 [ 27525] By: nicholas                              on 2006/03/16  23:11:11
24459         Log: Add a new per-interpeter variable PL_utf8cache, which will be used to
24460              control the UTF-8 offset caching code. Make this visible as
24461              ${^UTF8CACHE}
24462      Branch: perl
24463            ! embedvar.h gv.c intrpvar.h mg.c perlapi.h pod/perlvar.pod
24464 ____________________________________________________________________________
24465 [ 27524] By: nicholas                              on 2006/03/16  22:20:57
24466         Log: Note that it's worth looking to downsize variables in the interpreter
24467              structure.
24468      Branch: perl
24469            ! pod/perltodo.pod
24470 ____________________________________________________________________________
24471 [ 27523] By: nicholas                              on 2006/03/16  21:52:49
24472         Log: Correct the macros in the comments in hv.c. Given the improvements in
24473              compiler optimisation, and the almost irrelevance of instructions
24474              executed over cache misses, maybe we should just remove the comments
24475              by putting their code back in place of the o{ptimis,bfuscat}ed version.
24476      Branch: perl
24477            ! hv.c
24478 ____________________________________________________________________________
24479 [ 27522] By: gisle                                 on 2006/03/16  21:27:00
24480         Log: Avoid hardcoded $(OBJ_EXT)
24481      Branch: perl
24482            ! ext/DynaLoader/Makefile.PL
24483 ____________________________________________________________________________
24484 [ 27521] By: gisle                                 on 2006/03/16  21:20:46
24485         Log: Change 27520 was a bit too aggressive.  Let's keep the warning.
24486      Branch: perl
24487            ! ext/util/make_ext
24488 ____________________________________________________________________________
24489 [ 27520] By: gisle                                 on 2006/03/16  21:14:26
24490         Log: Remove unused code. No extension use Makefile.SH any more.
24491      Branch: perl
24492            ! ext/util/make_ext
24493 ____________________________________________________________________________
24494 [ 27519] By: gisle                                 on 2006/03/16  20:32:27
24495         Log: Fix up miniperl dependency.
24496              Depend on $(obj) when we use that to build miniperl.
24497      Branch: perl
24498            ! Makefile.SH
24499 ____________________________________________________________________________
24500 [ 27518] By: gisle                                 on 2006/03/16  20:24:08
24501         Log: Simplify; make perl.o included in $(obj)
24502      Branch: perl
24503            ! Makefile.SH
24504 ____________________________________________________________________________
24505 [ 27517] By: rgs                                   on 2006/03/16  16:17:38
24506         Log: Add a couple of regression tests for the untested
24507              "Bad name after %s" parsing error
24508      Branch: perl
24509            ! t/comp/parser.t
24510 ____________________________________________________________________________
24511 [ 27516] By: rgs                                   on 2006/03/16  15:19:03
24512         Log: Subject: [PATCH] Compress::Raw::Zlib, Compress::Zlib, IO::Compress::Zlib 2.000_10
24513              From: "Paul Marquess" <paul.marquess@ntlworld.com>
24514              Date: Thu, 16 Mar 2006 14:38:52 -0000
24515              Message-ID: <009401c64907$5a6ed710$4c05140a@myopwv.com>
24516      Branch: perl
24517            ! ext/Compress/IO/Base/Changes ext/Compress/IO/Base/README
24518            ! ext/Compress/IO/Base/lib/IO/Compress/Base.pm
24519            ! ext/Compress/IO/Base/lib/IO/Compress/Base/Common.pm
24520            ! ext/Compress/IO/Base/lib/IO/Uncompress/AnyUncompress.pm
24521            ! ext/Compress/IO/Base/lib/IO/Uncompress/Base.pm
24522            ! ext/Compress/IO/Zlib/Changes ext/Compress/IO/Zlib/Makefile.PL
24523            ! ext/Compress/IO/Zlib/README
24524            ! ext/Compress/IO/Zlib/lib/IO/Compress/Adapter/Deflate.pm
24525            ! ext/Compress/IO/Zlib/lib/IO/Compress/Adapter/Identity.pm
24526            ! ext/Compress/IO/Zlib/lib/IO/Compress/Deflate.pm
24527            ! ext/Compress/IO/Zlib/lib/IO/Compress/Gzip.pm
24528            ! ext/Compress/IO/Zlib/lib/IO/Compress/Gzip/Constants.pm
24529            ! ext/Compress/IO/Zlib/lib/IO/Compress/RawDeflate.pm
24530            ! ext/Compress/IO/Zlib/lib/IO/Compress/Zip.pm
24531            ! ext/Compress/IO/Zlib/lib/IO/Compress/Zip/Constants.pm
24532            ! ext/Compress/IO/Zlib/lib/IO/Compress/Zlib/Constants.pm
24533            ! ext/Compress/IO/Zlib/lib/IO/Uncompress/Adapter/Identity.pm
24534            ! ext/Compress/IO/Zlib/lib/IO/Uncompress/Adapter/Inflate.pm
24535            ! ext/Compress/IO/Zlib/lib/IO/Uncompress/AnyInflate.pm
24536            ! ext/Compress/IO/Zlib/lib/IO/Uncompress/Gunzip.pm
24537            ! ext/Compress/IO/Zlib/lib/IO/Uncompress/Inflate.pm
24538            ! ext/Compress/IO/Zlib/lib/IO/Uncompress/RawInflate.pm
24539            ! ext/Compress/IO/Zlib/lib/IO/Uncompress/Unzip.pm
24540            ! ext/Compress/IO/Zlib/t/010examples.t
24541            ! ext/Compress/IO/Zlib/t/050interop-gzip.t
24542            ! ext/Compress/Raw/Zlib/Makefile.PL ext/Compress/Raw/Zlib/README
24543            ! ext/Compress/Raw/Zlib/Zlib.xs
24544            ! ext/Compress/Raw/Zlib/lib/Compress/Raw/Zlib.pm
24545            ! ext/Compress/Raw/Zlib/t/02zlib.t ext/Compress/Zlib/Changes
24546            ! ext/Compress/Zlib/Makefile.PL ext/Compress/Zlib/README
24547            ! ext/Compress/Zlib/examples/gzcat
24548            ! ext/Compress/Zlib/examples/gzstream
24549            ! ext/Compress/Zlib/lib/Compress/Zlib.pm
24550            ! ext/Compress/Zlib/t/14gzopen.t t/lib/compress/generic.pl
24551            ! t/lib/compress/tied.pl
24552 ____________________________________________________________________________
24553 [ 27515] By: gisle                                 on 2006/03/16  12:01:10
24554         Log: require should ignore directories found when searching @INC not just
24555              die as soon as it finds one.  It should for instance be possible to
24556              for require "File" to read the file "./File" even if there happens to
24557              be a "File" directory in perl's standard library.
24558              
24559              This fixes the RT #24404 fix in change 26373.
24560      Branch: perl
24561            ! pp_ctl.c t/comp/require.t
24562 ____________________________________________________________________________
24563 [ 27514] By: rgs                                   on 2006/03/16  08:32:28
24564         Log: Make the threads tests silent with regard to the new :unique deprecation warning
24565      Branch: perl
24566            ! ext/threads/t/problems.t
24567 ____________________________________________________________________________
24568 [ 27513] By: nicholas                              on 2006/03/15  23:02:49
24569         Log: Make the original versions of relocated paths available from
24570              %Config::Config with the prefix "raw_". Not sure if "raw_" is the
24571              best choice.
24572      Branch: perl
24573            ! configpm
24574 ____________________________________________________________________________
24575 [ 27511] By: nicholas                              on 2006/03/15  19:47:02
24576         Log: Correct the non gcc-brace-group definition of SvAMAGIC_off
24577      Branch: perl
24578            ! sv.h
24579 ____________________________________________________________________________
24580 [ 27510] By: nicholas                              on 2006/03/15  18:47:32
24581         Log: D'oh! 27508 wasn't quite testing what I wanted it to test. This does.
24582      Branch: perl
24583            ! lib/overload.t
24584 ____________________________________________________________________________
24585 [ 27508] By: nicholas                              on 2006/03/15  17:57:14
24586         Log: Test for reblessing objects with weak references.
24587      Branch: perl
24588            ! lib/overload.t
24589 ____________________________________________________________________________
24590 [ 27507] By: nicholas                              on 2006/03/15  17:21:00
24591         Log: Expunge references to HV_AMAGIC, HV_AMAGICbad and HV_AMAGICmb which
24592              have been unused since revision 1.
24593      Branch: perl
24594            ! hv.h sv.h
24595 ____________________________________________________________________________
24596 [ 27506] By: nicholas                              on 2006/03/15  15:08:49
24597         Log: Moving the overloading flag from the reference to the referant allows
24598              (re)?blessing of overloaded objects to work correctly.
24599      Branch: perl
24600            ! dump.c lib/overload.t sv.c sv.h
24601 ____________________________________________________________________________
24602 [ 27505] By: nicholas                              on 2006/03/15  13:13:19
24603         Log: Finish converting overload.t to Test::More
24604      Branch: perl
24605            ! lib/overload.t
24606 ____________________________________________________________________________
24607 [ 27504] By: nicholas                              on 2006/03/15  12:43:15
24608         Log: Further conversion of overload.t
24609      Branch: perl
24610            ! lib/overload.t
24611 ____________________________________________________________________________
24612 [ 27503] By: stevep                                on 2006/03/15  12:34:10
24613         Log: Additions to README.win32 and win32/Makefile based on comments from
24614              Steve Hay.
24615      Branch: perl
24616            ! README.win32 win32/Makefile
24617 ____________________________________________________________________________
24618 [ 27502] By: nicholas                              on 2006/03/15  12:29:01
24619         Log: Further conversion of overload.t
24620      Branch: perl
24621            ! lib/overload.t
24622 ____________________________________________________________________________
24623 [ 27501] By: nicholas                              on 2006/03/15  12:05:27
24624         Log: Partially convert overload.t to Test::More
24625      Branch: perl
24626            ! lib/overload.t
24627 ____________________________________________________________________________
24628 [ 27500] By: stevep                                on 2006/03/15  11:06:34
24629         Log: The first step in supporting VC++ 8.0.  Added macros for the free .NET 2.0 SDK and Visual Studio
24630              2005.  Added these macros to "if" conditions that were appropriate.  Added a fix to prevent
24631              the .NET 1.1 and 2.0 SDK compilers from attempting to build perlglob.exe (they are both missing
24632              the setargv.obj file necessary to do it).
24633      Branch: perl
24634            ! win32/Makefile
24635 ____________________________________________________________________________
24636 [ 27499] By: rgs                                   on 2006/03/14  17:32:48
24637         Log: Deprecate :unique even with threads
24638      Branch: perl
24639            ! toke.c
24640 ____________________________________________________________________________
24641 [ 27498] By: rgs                                   on 2006/03/14  17:02:38
24642         Log: Make usage of :unique emit a deprecation warning.
24643              Remove its outdated documentation.
24644      Branch: perl
24645            ! cv.h pod/perldiag.pod pod/perlfunc.pod t/lib/warnings/toke
24646            ! toke.c
24647 ____________________________________________________________________________
24648 [ 27497] By: rgs                                   on 2006/03/14  16:02:35
24649         Log: Subject: [PATCH] perl @ 27483 fix lib/Pod/Simple/t/corpustest.t to work on VMS ODS-2
24650              From: Peter Prymmer <PPrymmer@factset.com>
24651              Date: Tue, 14 Mar 2006 10:38:00 -0500
24652              Message-ID: <OF85EC8E5E.4DF3A439-ON85257131.0055870A-85257131.0055E07C@factset.com>
24653      Branch: perl
24654            ! lib/Pod/Simple/t/corpustest.t
24655 ____________________________________________________________________________
24656 [ 27496] By: nicholas                              on 2006/03/14  15:21:54
24657         Log: SVphv_REHASH can use the same flag bit as SVf_FAKE. This allows
24658              0x10000000 (SVf_AMAGIC) to be set on all 16 SV types, which seems to
24659              be necessary to fix subtle bugs involving reblessing and overloading. 
24660      Branch: perl
24661            ! sv.h
24662 ____________________________________________________________________________
24663 [ 27495] By: rgs                                   on 2006/03/14  09:55:17
24664         Log: Subject: [perl #38710] localised stash slice 
24665              From: Hugo van der Sanden (via RT) <perlbug-followup@perl.org>
24666              Date: Sat, 11 Mar 2006 02:47:56 -0800
24667              Message-ID: <rt-3.0.11-38710-131000.18.015529928953@perl.org>
24668              
24669              (new TODO tests)
24670      Branch: perl
24671            ! t/op/local.t
24672 ____________________________________________________________________________
24673 [ 27494] By: rgs                                   on 2006/03/14  08:53:07
24674         Log: threads and threads::shared are now dual-lived modules
24675      Branch: perl
24676            ! Porting/Maintainers.pl
24677 ____________________________________________________________________________
24678 [ 27493] By: rgs                                   on 2006/03/14  08:38:45
24679         Log: Subject: [PATCH] Do nothing in a GCC-friendly way
24680              From: andy@petdance.com (Andy Lester)
24681              Date: Mon, 13 Mar 2006 12:48:50 -0600
24682              Message-ID: <20060313184850.GA16905@petdance.com>
24683      Branch: perl
24684            ! perl.h
24685 ____________________________________________________________________________
24686 [ 27492] By: rgs                                   on 2006/03/14  08:35:24
24687         Log: Subject: [PATCH] looks_like_bool can be const
24688              From: andy@petdance.com (Andy Lester)
24689              Date: Mon, 13 Mar 2006 09:31:52 -0600
24690              Message-ID: <20060313153152.GA13254@petdance.com>
24691      Branch: perl
24692            ! embed.fnc op.c proto.h
24693 ____________________________________________________________________________
24694 [ 27491] By: nicholas                              on 2006/03/13  23:13:23
24695         Log: Somewhat less shaky relocatable @INC support. You can install things
24696              to the current location of the perl tree, move it, install more things,
24697              move it again, lather rinse repeat.
24698              Configure with -Duserelocatableinc
24699      Branch: perl
24700            ! Configure configpm installperl
24701 ____________________________________________________________________________
24702 [ 27490] By: nicholas                              on 2006/03/13  20:49:55
24703         Log: First stab at rather shaky Configure support for relocatable @INC.
24704              Seems to be installing rather more that it's supposed to be.
24705      Branch: perl
24706            ! Configure configpm
24707 ____________________________________________________________________________
24708 [ 27489] By: nicholas                              on 2006/03/13  18:59:27
24709         Log: Split break out the installprefix code from setprefixvar, which allows
24710              the remaining 8 places to call the common prefix conversion code.
24711      Branch: perl
24712            ! Configure
24713 ____________________________________________________________________________
24714 [ 27488] By: nicholas                              on 2006/03/13  18:01:11
24715         Log: Refactor most of the cut & paste for setting prefix/prefixexp variables
24716              and the "Change installation prefix, if necessary" into a new
24717              "function" setprefixvar (which I assume will become Setprefixvar.U)
24718              How many platforms still have Bourne shells that can't do shell
24719              functions? Someone's going to say Irix?
24720      Branch: perl
24721            ! Configure
24722 ____________________________________________________________________________
24723 [ 27487] By: rgs                                   on 2006/03/13  17:35:59
24724         Log: Forgot the ending \. Why did it still compile ?
24725      Branch: perl
24726            ! ext/List/Util/multicall.h
24727 ____________________________________________________________________________
24728 [ 27486] By: rgs                                   on 2006/03/13  17:34:09
24729         Log: Subject: [PATCH] Automatically SPAGAIN in the poor-man's-multicall API
24730              From: Robin Houston <robin@cpan.org>
24731              Date: Mon, 13 Mar 2006 12:48:21 +0000
24732              Message-ID: <20060313124821.GA11203@rpc142.cs.man.ac.uk>
24733      Branch: perl
24734            ! ext/List/Util/multicall.h
24735 ____________________________________________________________________________
24736 [ 27485] By: nicholas                              on 2006/03/13  17:10:14
24737         Log: The existing order of the checks for whether man1dir and man3dir were
24738              ' ' were obviously buggy, because they set installman[13]dir only for
24739              the next if block to set it again. Reordering removes that daftness.
24740      Branch: perl
24741            ! Configure
24742 ____________________________________________________________________________
24743 [ 27484] By: nicholas                              on 2006/03/13  15:50:04
24744         Log: The "Change installation prefix, if necessary." code needs to use
24745              the ~ expanded prefix and installprefix in the substitution.
24746      Branch: perl
24747            ! Configure
24748 ____________________________________________________________________________
24749 [ 27483] By: rgs                                   on 2006/03/12  15:12:29
24750         Log: Load .pmc always, even if they are older than a matching .pm file.
24751              (This trick is going to be used by pugs.)
24752      Branch: perl
24753            ! pod/perlfunc.pod pp_ctl.c
24754 ____________________________________________________________________________
24755 [ 27482] By: stevep                                on 2006/03/12  14:07:17
24756         Log: Subject: [PATCH] Removed unnecessary NULL check in Digest::SHA
24757              From: Andy Lester <andy@petdance.com>
24758              Date: Tue, 7 Mar 2006 12:12:35 -0600
24759              Message-ID: <20060307181235.GA25688@petdance.com>
24760      Branch: perl
24761            ! ext/Digest/SHA/src/hmac.c
24762 ____________________________________________________________________________
24763 [ 27481] By: stevep                                on 2006/03/12  13:48:10
24764         Log: Upgrade to Module-Build-0.27_09
24765      Branch: perl
24766            ! Porting/Maintainers.pl lib/Module/Build.pm
24767            ! lib/Module/Build/Authoring.pod lib/Module/Build/Base.pm
24768            ! lib/Module/Build/Changes lib/Module/Build/Compat.pm
24769            ! lib/Module/Build/Cookbook.pm
24770 ____________________________________________________________________________
24771 [ 27480] By: nicholas                              on 2006/03/11  23:40:34
24772         Log: isSPACE('\0') is false, so can simplify the condition in the for
24773              loop. As the for loop is basically a while loop, write it as one, to
24774              make its intentions clearer.
24775      Branch: perl
24776            ! toke.c
24777 ____________________________________________________________________________
24778 [ 27479] By: nicholas                              on 2006/03/11  22:51:26
24779         Log: Fix the last 2 perly.y specific parts of regen_perly.pl, and make
24780              the regen_perly target call it for both perly.y and madly.y.
24781      Branch: perl
24782            - regen_madly.pl
24783            ! MANIFEST Makefile.SH regen_perly.pl
24784 ____________________________________________________________________________
24785 [ 27478] By: nicholas                              on 2006/03/11  22:29:56
24786         Log: NNs and NULLOKs for MAD's new functions.
24787      Branch: perl
24788            ! embed.fnc proto.h
24789 ____________________________________________________________________________
24790 [ 27477] By: stevep                                on 2006/03/11  22:08:34
24791         Log: Perl_newWHILEOP() had exactly the same lack of a NULL pointer check
24792              that Perl_newLOOPOP() had and fixed in change #27476.  Maybe some 
24793              refactoring is needed?
24794      Branch: perl
24795            ! op.c
24796 ____________________________________________________________________________
24797 [ 27476] By: stevep                                on 2006/03/11  21:41:20
24798         Log: Possible NULL pointer reference found by Coverity checks.
24799      Branch: perl
24800            ! op.c
24801 ____________________________________________________________________________
24802 [ 27475] By: stevep                                on 2006/03/11  20:57:26
24803         Log: Keep from using a variable in S_my_kid() before it is initialized.  This        was introduced with the MAD changes.
24804      Branch: perl
24805            ! op.c
24806 ____________________________________________________________________________
24807 [ 27474] By: craigb                                on 2006/03/11  17:26:00
24808         Log: Subject: [PATCH] perl@27437 fix File::Path::mkpath so that perl installs on VMS
24809              From: Peter Prymmer <PPrymmer@factset.com>
24810              Date: Fri, 10 Mar 2006 15:24:23 -0500
24811              Message-id: <OFBE8F84F1.A708DA4A-ON8525712D.006E4BF7-8525712D.007018C6@factset.com>
24812      Branch: perl
24813            ! lib/File/Path.pm
24814 ____________________________________________________________________________
24815 [ 27473] By: merijn                                on 2006/03/11  11:03:55
24816         Log: Subject: [PATCH] Reapply change 24432
24817              From: "Jan Dubois" <jand@ActiveState.com>
24818              Date: Fri, 10 Mar 2006 18:21:39 -0800
24819              Message-ID: <01b001c644b2$879a1f50$6062a8c0@candy>
24820      Branch: perl
24821            ! config_h.SH
24822 ____________________________________________________________________________
24823 [ 27471] By: nicholas                              on 2006/03/11  10:21:27
24824         Log: Missed the hunk that adds regen_madly.pl to the regen_perl target.
24825      Branch: perl
24826            ! Makefile.SH
24827 ____________________________________________________________________________
24828 [ 27470] By: nicholas                              on 2006/03/11  10:16:04
24829         Log: Subject: [PATCH] Sync up embed.fnc and doio.c
24830              From: andy@petdance.com (Andy Lester)
24831              Message-ID: <20060311071338.GA12490@petdance.com>
24832              Date: Sat, 11 Mar 2006 01:13:38 -0600
24833      Branch: perl
24834            ! embed.fnc proto.h
24835 ____________________________________________________________________________
24836 [ 27469] By: nicholas                              on 2006/03/11  09:55:43
24837         Log: Subject: [PATCH] Localizing some vars in S_checkcomma
24838              From: andy@petdance.com (Andy Lester)
24839              Message-ID: <20060310223100.GA13455@petdance.com>
24840              Date: Fri, 10 Mar 2006 16:31:00 -0600
24841      Branch: perl
24842            ! toke.c
24843 ____________________________________________________________________________
24844 [ 27468] By: nicholas                              on 2006/03/11  09:32:18
24845         Log: Remove the obsolete mad/P5RE.pm
24846      Branch: perl
24847            - mad/P5RE.pm
24848            ! MANIFEST
24849 ____________________________________________________________________________
24850 [ 27467] By: craigb                                on 2006/03/11  01:52:37
24851         Log: null terminate command string -- broken in #27438
24852      Branch: perl
24853            ! vms/vms.c
24854 ____________________________________________________________________________
24855 [ 27466] By: nicholas                              on 2006/03/10  21:54:18
24856         Log: Move the 12 static MAD variables from toke.c into the interpeter
24857              structure.
24858      Branch: perl
24859            ! embedvar.h intrpvar.h makedef.pl perl.c perlapi.h sv.c toke.c
24860 ____________________________________________________________________________
24861 [ 27465] By: nicholas                              on 2006/03/10  20:58:23
24862         Log: Rename the 12 static variables in toke.c to PL_*
24863      Branch: perl
24864            ! toke.c
24865 ____________________________________________________________________________
24866 [ 27464] By: nicholas                              on 2006/03/10  19:47:11
24867         Log: gozer took over from gsar (some time ago).
24868      Branch: perl
24869            ! Porting/repository.pod
24870 ____________________________________________________________________________
24871 [ 27463] By: nicholas                              on 2006/03/10  18:53:01
24872         Log: All the autogenerated files from change 27462.
24873      Branch: perl
24874            ! madly.act madly.h madly.tab
24875 ____________________________________________________________________________
24876 [ 27462] By: nicholas                              on 2006/03/10  18:52:40
24877         Log: Merge perly.y changes from 5.9.2 to now into madly.y.
24878      Branch: perl
24879            ! madly.y
24880 ____________________________________________________________________________
24881 [ 27461] By: nicholas                              on 2006/03/10  12:57:18
24882         Log: Teaching embed.pl about conditional symbols is a TODO.
24883      Branch: perl
24884            ! pod/perltodo.pod
24885 ____________________________________________________________________________
24886 [ 27460] By: nicholas                              on 2006/03/10  12:09:39
24887         Log: Tweak change 27457 - make PL_lasttoke MAD only, but teach makedef.pl
24888              about MADness (and unMADness - maybe there is a special word for that)
24889      Branch: perl
24890            ! intrpvar.h makedef.pl
24891 ____________________________________________________________________________
24892 [ 27459] By: nicholas                              on 2006/03/10  11:31:14
24893         Log: Summon constman! S_checkcomma now has all 3 arguments const char.
24894      Branch: perl
24895            ! embed.fnc proto.h toke.c
24896 ____________________________________________________________________________
24897 [ 27458] By: nicholas                              on 2006/03/10  10:50:29
24898         Log: Tease apart the keyword/subroutine test in S_checkcomma.
24899      Branch: perl
24900            ! toke.c
24901 ____________________________________________________________________________
24902 [ 27457] By: stevep                                on 2006/03/10  02:17:43
24903         Log: Move PL_lasttoke out of its PERL_MAD define in intrpvar.h.
24904              Otherwise, Win32 does not compile.
24905      Branch: perl
24906            ! intrpvar.h
24907 ____________________________________________________________________________
24908 [ 27456] By: nicholas                              on 2006/03/09  23:23:19
24909         Log: Correct another gv_fetchpv() - it takes a bitmask of flags, not simply
24910              TRUE/FALSE.
24911      Branch: perl
24912            ! gv.c
24913 ____________________________________________________________________________
24914 [ 27455] By: nicholas                              on 2006/03/09  22:50:23
24915         Log: Remove two NEWSV()s in the non-ithread dump code that got missed.
24916      Branch: perl
24917            ! dump.c
24918 ____________________________________________________________________________
24919 [ 27454] By: mhx                                   on 2006/03/09  22:07:01
24920         Log: Subject: Re: [PATCH pod/perlfunc.pd] Re: truncate needs seek on filehandle
24921              From: Ronald J Kimball <rjk-perl-p5p@tamias.net>
24922              Date: Thu, 9 Mar 2006 16:29:12 -0500
24923              Message-ID: <20060309212912.GF22682@penkwe.pair.com>
24924      Branch: perl
24925            ! pod/perlfunc.pod
24926 ____________________________________________________________________________
24927 [ 27453] By: nicholas                              on 2006/03/09  22:03:55
24928         Log: Add the Perl 5 to Perl 5 convertor scripts.
24929      Branch: perl
24930            + mad/P5AST.pm mad/P5RE.pm mad/P5re.pm mad/PLXML.pm mad/nomad
24931            + mad/p55
24932            ! MANIFEST
24933 ____________________________________________________________________________
24934 [ 27452] By: nicholas                              on 2006/03/09  22:01:28
24935         Log: Superior *printf-fu lets us avoid modifying source code.
24936      Branch: perl
24937            ! toke.c
24938 ____________________________________________________________________________
24939 [ 27451] By: nicholas                              on 2006/03/09  21:49:20
24940         Log: Avoid scribbling on the passed in command line string for -i in 
24941              moreswitches.
24942      Branch: perl
24943            ! perl.c
24944 ____________________________________________________________________________
24945 [ 27450] By: nicholas                              on 2006/03/09  21:24:04
24946         Log: -Dmad works, albeit with some test failures:
24947              ext/B/t/f_sort.t                       20    5  25.00%  2 4-6 16
24948              ext/B/t/optree_samples.t               20    1   5.00%  18
24949              ext/List/Util/t/weak.t      1   256    22    1   4.55%  22
24950              ext/Safe/t/safeops.t        0   134   354  288  81.36%  211-354
24951              lib/warnings.t                        561    2   0.36%  3 10
24952      Branch: perl
24953            ! toke.c
24954 ____________________________________________________________________________
24955 [ 27449] By: nicholas                              on 2006/03/09  20:53:11
24956         Log: Oops. Failed to add madly.c
24957      Branch: perl
24958            + madly.c
24959 ____________________________________________________________________________
24960 [ 27448] By: stevep                                on 2006/03/09  20:48:50
24961         Log: The Coverity audit is upset that the scream_olds variable is not
24962              directly initialized, although it is likely initialized after 
24963              another variable takes a reference to it.
24964      Branch: perl
24965            ! regexec.c
24966 ____________________________________________________________________________
24967 [ 27447] By: nicholas                              on 2006/03/09  20:48:18
24968         Log: Add the madly parser. I believe that this is all the C code. Now to
24969              find the bugs that stowed away.
24970      Branch: perl
24971            + madly.act madly.h madly.tab madly.y regen_madly.pl
24972            ! Configure MANIFEST Makefile.SH embed.fnc embed.h perly.c
24973            ! proto.h
24974 ____________________________________________________________________________
24975 [ 27446] By: nicholas                              on 2006/03/09  19:53:53
24976         Log: It helps to run embed.pl in the correct directory. (not the symlink
24977              tree)
24978      Branch: perl
24979            ! embed.h embedvar.h perlapi.h proto.h
24980 ____________________________________________________________________________
24981 [ 27445] By: nicholas                              on 2006/03/09  19:22:10
24982         Log: The remainder of the toke.c MAD changes. Now to investigate why MAD
24983              no longer builds.
24984      Branch: perl
24985            ! embed.fnc intrpvar.h sv.c toke.c
24986 ____________________________________________________________________________
24987 [ 27444] By: nicholas                              on 2006/03/09  19:00:26
24988         Log: Another refactoring from Larry implicit in the MAD patch.
24989      Branch: perl
24990            ! toke.c
24991 ____________________________________________________________________________
24992 [ 27443] By: nicholas                              on 2006/03/09  18:08:52
24993         Log: Refactoring from Larry implicit in the MAD patch.
24994      Branch: perl
24995            ! toke.c
24996 ____________________________________________________________________________
24997 [ 27442] By: nicholas                              on 2006/03/09  17:06:46
24998         Log: Replace PL_nextval[PL_nexttoke].opval with the macro NEXTVAL_NEXTTOKE
24999              as MAD conditionally changes this consistently in 27 places.
25000      Branch: perl
25001            ! toke.c
25002 ____________________________________________________________________________
25003 [ 27441] By: stevep                                on 2006/03/09  16:14:20
25004         Log: Need to update test count from change #27440.
25005      Branch: perl
25006            ! ext/POSIX/t/sigaction.t
25007 ____________________________________________________________________________
25008 [ 27440] By: stevep                                on 2006/03/09  16:03:21
25009         Log: croak in POSIX::sigaction() when passed a negative signal instead
25010              dumping core.
25011      Branch: perl
25012            ! ext/POSIX/POSIX.xs ext/POSIX/t/sigaction.t
25013 ____________________________________________________________________________
25014 [ 27439] By: nicholas                              on 2006/03/09  15:13:49
25015         Log: MAD changes for bare skipspace()
25016      Branch: perl
25017            ! embed.fnc embed.h proto.h toke.c
25018 ____________________________________________________________________________
25019 [ 27438] By: craigb                                on 2006/03/09  14:49:45
25020         Log: Subject: patch@27385 - VMS thread fixes (was: threads and VMS)
25021              From: "John E. Malmberg" <wb8tyw@qsl.net>
25022              Date: Wed, 08 Mar 2006 23:34:05 -0500
25023              Message-id: <440FB03D.8010409@qsl.net>
25024
25025      Branch: perl
25026            ! vms/vms.c
25027 ____________________________________________________________________________
25028 [ 27437] By: nicholas                              on 2006/03/09  13:45:30
25029         Log: Add the MAD change to perly.y, which brings a new PEG token.
25030      Branch: perl
25031            ! perly.act perly.h perly.tab perly.y
25032 ____________________________________________________________________________
25033 [ 27436] By: mhx                                   on 2006/03/09  12:54:19
25034         Log: Fix a memory leak in ck_grep(), spotted by coverity:
25035              perl -e'eval "grep" while 1'
25036      Branch: perl
25037            ! op.c
25038 ____________________________________________________________________________
25039 [ 27435] By: nicholas                              on 2006/03/09  12:41:40
25040         Log: Tweaking the order of op creation/op free in Perl_ck_require to Larry's
25041              order doesn't make tests pass :-(. Nor does it make them fail.
25042      Branch: perl
25043            ! op.c
25044 ____________________________________________________________________________
25045 [ 27434] By: nicholas                              on 2006/03/09  12:17:41
25046         Log: Fix C99ism in dump.c
25047      Branch: perl
25048            ! dump.c
25049 ____________________________________________________________________________
25050 [ 27433] By: nicholas                              on 2006/03/09  12:01:36
25051         Log: Unroll 27425 - keeping Larry's order in op.c means that exactly the
25052              same sequence of pad usage is generated with and without MAD.
25053      Branch: perl
25054            ! ext/B/t/f_map.t op.c
25055 ____________________________________________________________________________
25056 [ 27432] By: nicholas                              on 2006/03/09  11:20:14
25057         Log: Note the weakref.t failure that commenting out this code caused.
25058              Pesky waterbeds.
25059      Branch: perl
25060            ! op.c
25061 ____________________________________________________________________________
25062 [ 27431] By: nicholas                              on 2006/03/09  11:04:23
25063         Log: Note the cause of another MAD test failure - an explicit abort trap
25064              for saving PL_formfeed is being hit.
25065      Branch: perl
25066            ! scope.c
25067 ____________________________________________________________________________
25068 [ 27430] By: nicholas                              on 2006/03/09  10:53:25
25069         Log: Bodge MAD code to get pack.t and ext/Encode/t/Encode.t passing.
25070      Branch: perl
25071            ! op.c
25072 ____________________________________________________________________________
25073 [ 27429] By: nicholas                              on 2006/03/08  23:33:05
25074         Log: Make MAD at least compile and link once more. Although it's now failing
25075              6 regression tests.
25076      Branch: perl
25077            ! op.c perly.c
25078 ____________________________________________________________________________
25079 [ 27428] By: nicholas                              on 2006/03/08  22:36:30
25080         Log: Further MAD changes.
25081      Branch: perl
25082            ! perl.c perly.c pp_ctl.c scope.c
25083 ____________________________________________________________________________
25084 [ 27427] By: nicholas                              on 2006/03/08  21:53:06
25085         Log: Oops. Didn't mean to commit 27426 to maint first. Integrate it:
25086              Avoid writing over the input string in the case 'F' in moreswitches.
25087      Branch: perl
25088           !> perl.c
25089 ____________________________________________________________________________
25090 [ 27425] By: nicholas                              on 2006/03/08  21:18:58
25091         Log: The last MAD change to op.c changes the pad offsets of the test that
25092              ext/B/t/f_map.t is using.
25093      Branch: perl
25094            ! ext/B/t/f_map.t op.c
25095 ____________________________________________________________________________
25096 [ 27424] By: nicholas                              on 2006/03/08  20:34:16
25097         Log: Almost all the MAD changes for op.c
25098      Branch: perl
25099            ! embed.fnc embed.h op.c perl.h proto.h
25100 ____________________________________________________________________________
25101 [ 27423] By: nicholas                              on 2006/03/08  18:17:09
25102         Log: Change from Larry in the MAD code which seems to be unrelated to MAD.
25103      Branch: perl
25104            ! op.c
25105 ____________________________________________________________________________
25106 [ 27422] By: nicholas                              on 2006/03/08  16:29:26
25107         Log: MAD changes to dump.c
25108      Branch: perl
25109            ! dump.c embed.fnc embed.h global.sym makedef.pl proto.h
25110 ____________________________________________________________________________
25111 [ 27421] By: steveh                                on 2006/03/08  16:25:23
25112         Log: Get rid of unnecessary "rmdir /s" calls in Win32 makefiles
25113              
25114              They only existed for the benefit of old shells that didn't
25115              understand "rmdir /s /q", but since change #27195 effectively
25116              drops support for old shells that don't understand "xcopy /y"
25117              it seems unnecessary now.
25118              
25119              Windows NT4, 2000, XP and onwards all support "rmdir /s /q", so
25120              it's probably only the Windows 9x shells that lose out.
25121      Branch: perl
25122            ! win32/Makefile win32/makefile.mk
25123 ____________________________________________________________________________
25124 [ 27420] By: steveh                                on 2006/03/08  15:20:28
25125         Log: Sort the ext/ and lib/ tests when running under t/harness
25126              
25127              Unless they are sorted then they are run in the same order in which
25128              they are listed in MANIFEST, which is not always ideal. In particular,
25129              the ext/Compress/IO/Zlib/t/*.t tests are not run in the correct order,
25130              which causes some files to be left behind afterwards.
25131              
25132              ExtUtils::Command::MM::test_harness() sorts test files, so it seems
25133              sensible for t/harness to do likewise, rather than relying on the
25134              ordering in MANIFEST.
25135      Branch: perl
25136            ! t/harness
25137 ____________________________________________________________________________
25138 [ 27419] By: nicholas                              on 2006/03/08  13:40:48
25139         Log: Add MAD changes to pad code (new function Perl_pad_peg)
25140      Branch: perl
25141            ! embed.fnc embed.h makedef.pl pad.c pad.h proto.h
25142 ____________________________________________________________________________
25143 [ 27418] By: steveh                                on 2006/03/08  13:37:28
25144         Log: Adjust Win32 distclean as per changes #27411 and #27417
25145      Branch: perl
25146            ! win32/Makefile win32/makefile.mk
25147 ____________________________________________________________________________
25148 [ 27417] By: rgs                                   on 2006/03/08  13:29:26
25149         Log: "make distclean" fix noticed by Steve Hay
25150      Branch: perl
25151            ! Makefile.SH
25152 ____________________________________________________________________________
25153 [ 27416] By: steveh                                on 2006/03/08  12:15:04
25154         Log: Cleanup Archive-Tar temporary test files
25155              
25156              I've done this twice before already (changes #25043 and #26785),
25157              but it keeps getting accidentally removed. Third time lucky?
25158      Branch: perl
25159            ! lib/Archive/Tar.pm lib/Archive/Tar/t/02_methods.t
25160 ____________________________________________________________________________
25161 [ 27415] By: rgs                                   on 2006/03/08  10:31:24
25162         Log: Subject: [PATCH] Re: [perl #38684] O::Deparse not working as expected 
25163              From: Stephen McCamant <smcc@mit.edu>
25164              Date: Tue, 7 Mar 2006 20:00:30 -0800
25165              Message-ID: <17422.22238.570532.2771@apocalypse.OCF.Berkeley.EDU>
25166      Branch: perl
25167            ! ext/B/B/Deparse.pm ext/B/t/deparse.t
25168 ____________________________________________________________________________
25169 [ 27414] By: rgs                                   on 2006/03/08  10:25:26
25170         Log: Subject: [PATCH] Removed unused check and assignment in pp_hot.c
25171              From: andy@petdance.com (Andy Lester)
25172              Date: Wed, 8 Mar 2006 00:45:29 -0600
25173              Message-ID: <20060308064529.GA16499@petdance.com>
25174      Branch: perl
25175            ! pp_hot.c
25176 ____________________________________________________________________________
25177 [ 27413] By: steveh                                on 2006/03/08  09:36:50
25178         Log: Don't try to export PL_madskills/PL_xmlfp when they're not defined
25179              (Fixes Win32 linker error introduced by change #27408)
25180      Branch: perl
25181            ! makedef.pl
25182 ____________________________________________________________________________
25183 [ 27412] By: steveh                                on 2006/03/08  08:42:44
25184         Log: Complete change #27407/27410 on Win32 and tidy up change #27372
25185      Branch: perl
25186            ! win32/config_H.bc win32/config_H.gc win32/config_H.vc
25187            ! win32/config_H.vc64
25188 ____________________________________________________________________________
25189 [ 27411] By: rgs                                   on 2006/03/08  08:23:54
25190         Log: "make distclean" adjustments for the new Compress modules
25191      Branch: perl
25192            ! Makefile.SH
25193 ____________________________________________________________________________
25194 [ 27410] By: merijn                                on 2006/03/08  08:10:25
25195         Log: Backport #27407
25196              Add a Configure question for mad (Misc Attribute Decoration - Larry's
25197              perl5 to perl[56] convertor), which if set defines PERL_MAD in config.h
25198      Branch: perl
25199            ! Configure Porting/Glossary config_h.SH
25200 ____________________________________________________________________________
25201 [ 27408] By: nicholas                              on 2006/03/07  23:24:55
25202         Log: Some of the MAD structures in headers, plus PL_madskills and PL_xmlfp,
25203              and default definitions for the 2 variables. (Which will save a lot of
25204              conditional complilation, by instead letting the C compiler optimiser
25205              remove dead code.)
25206      Branch: perl
25207            ! XSUB.h embedvar.h intrpvar.h op.h perl.h perlapi.h
25208 ____________________________________________________________________________
25209 [ 27407] By: nicholas                              on 2006/03/07  22:16:55
25210         Log: Add a Configure question for mad (Misc Attribute Decoration - Larry's
25211              perl5 to perl[56] convertor), which if set defines PERL_MAD in config.h
25212      Branch: perl
25213            ! Configure Cross/config.sh-arm-linux NetWare/config.wc
25214            ! Porting/Glossary config_h.SH configure.com epoc/config.sh
25215            ! perl.c plan9/config_sh.sample symbian/config.sh uconfig.sh
25216            ! win32/config.bc win32/config.gc win32/config.vc
25217            ! win32/config.vc64 wince/config.ce
25218 ____________________________________________________________________________
25219 [ 27406] By: nicholas                              on 2006/03/07  19:31:49
25220         Log: Two more TODOs for those with C knowledge.
25221      Branch: perl
25222            ! pod/perltodo.pod
25223 ____________________________________________________________________________
25224 [ 27405] By: nicholas                              on 2006/03/07  19:27:28
25225         Log: Remove the #define - ARENASETS are always on now.
25226      Branch: perl
25227            ! perl.h sv.c
25228 ____________________________________________________________________________
25229 [ 27404] By: nicholas                              on 2006/03/07  19:23:14
25230         Log: TPF++ # http://www.perlfoundation.org/gc/grants/2006-perl5-improve.html
25231              Shrinking PVGVs, PVLVs, PVCVs and PVFMs is TODOne.
25232      Branch: perl
25233            ! pod/perltodo.pod
25234 ____________________________________________________________________________
25235 [ 27403] By: rgs                                   on 2006/03/07  17:09:54
25236         Log: This looks like a memory leak.
25237      Branch: perl
25238            ! op.c
25239 ____________________________________________________________________________
25240 [ 27402] By: rgs                                   on 2006/03/07  16:49:58
25241         Log: $[ = 2 should not warn.
25242      Branch: perl
25243            ! op.c t/lib/warnings/op
25244 ____________________________________________________________________________
25245 [ 27401] By: steveh                                on 2006/03/07  14:58:20
25246         Log: Fix lib/Module/Build/t/compat.t
25247              (e.g. see http://www.nntp.perl.org/group/perl.daily-build.reports/36431)
25248      Branch: perl
25249            ! lib/Module/Build/t/compat.t
25250 ____________________________________________________________________________
25251 [ 27400] By: rgs                                   on 2006/03/07  14:36:00
25252         Log: Make report on bad filenames easier to read
25253      Branch: perl
25254            ! Porting/check83.pl
25255 ____________________________________________________________________________
25256 [ 27399] By: rgs                                   on 2006/03/07  14:15:46
25257         Log: FAQ sync. (FAQ now moved to svn)
25258      Branch: perl
25259            ! pod/perlfaq.pod pod/perlfaq1.pod pod/perlfaq2.pod
25260            ! pod/perlfaq3.pod pod/perlfaq4.pod pod/perlfaq5.pod
25261            ! pod/perlfaq6.pod pod/perlfaq7.pod pod/perlfaq8.pod
25262            ! pod/perlfaq9.pod
25263 ____________________________________________________________________________
25264 [ 27398] By: stevep                                on 2006/03/07  04:48:29
25265         Log: Upgrade to PathTools-3.17
25266      Branch: perl
25267            ! ext/Cwd/Cwd.xs ext/Cwd/t/cwd.t lib/Cwd.pm lib/File/Spec.pm
25268 ____________________________________________________________________________
25269 [ 27397] By: stevep                                on 2006/03/06  23:31:21
25270         Log: Subject:  Re: [PATCH] Removed a redundant o->op_type
25271              From: Paul Johnson <paul@pjcj.net>
25272              Date: Tue, 28 Feb 2006 20:17:31 +0100
25273              Message-ID: <20060228191731.GD20933@pjcj.net>
25274      Branch: perl
25275            ! op.c
25276 ____________________________________________________________________________
25277 [ 27396] By: mhx                                   on 2006/03/06  22:18:52
25278         Log: Don't free thread memory if PERL_DESTRUCT_LEVEL is set to a non-zero
25279              value as we're probably hunting memory leaks then
25280      Branch: perl
25281            ! perl.c
25282 ____________________________________________________________________________
25283 [ 27393] By: nicholas                              on 2006/03/06  20:44:02
25284         Log: Update David Dyck's e-mail address.
25285      Branch: perl
25286            ! AUTHORS Porting/checkAUTHORS.pl
25287 ____________________________________________________________________________
25288 [ 27390] By: rgs                                   on 2006/03/06  17:26:43
25289         Log: Add all new utilities in the perlutil man page.
25290              Includes lots of work by Zsban Ambrus.
25291      Branch: perl
25292            ! pod/perlutil.pod
25293 ____________________________________________________________________________
25294 [ 27389] By: rgs                                   on 2006/03/06  16:09:50
25295         Log: Subject: [PATCH] add Module::Build 0.27_08
25296              From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
25297              Date: Sun, 5 Mar 2006 12:08:30 -0800
25298              Message-ID: <20060305200830.GA2660@efn.org>
25299      Branch: perl
25300            + lib/Module/Build.pm lib/Module/Build/Authoring.pod
25301            + lib/Module/Build/Base.pm lib/Module/Build/Changes
25302            + lib/Module/Build/Compat.pm lib/Module/Build/ConfigData.pm
25303            + lib/Module/Build/Cookbook.pm lib/Module/Build/ModuleInfo.pm
25304            + lib/Module/Build/Notes.pm lib/Module/Build/PPMMaker.pm
25305            + lib/Module/Build/Platform/Amiga.pm
25306            + lib/Module/Build/Platform/Default.pm
25307            + lib/Module/Build/Platform/EBCDIC.pm
25308            + lib/Module/Build/Platform/MPEiX.pm
25309            + lib/Module/Build/Platform/MacOS.pm
25310            + lib/Module/Build/Platform/RiscOS.pm
25311            + lib/Module/Build/Platform/Unix.pm
25312            + lib/Module/Build/Platform/VMS.pm
25313            + lib/Module/Build/Platform/VOS.pm
25314            + lib/Module/Build/Platform/Windows.pm
25315            + lib/Module/Build/Platform/aix.pm
25316            + lib/Module/Build/Platform/cygwin.pm
25317            + lib/Module/Build/Platform/darwin.pm
25318            + lib/Module/Build/Platform/os2.pm lib/Module/Build/PodParser.pm
25319            + lib/Module/Build/scripts/config_data
25320            + lib/Module/Build/t/basic.t
25321            + lib/Module/Build/t/bundled/Tie/CPHash.pm
25322            + lib/Module/Build/t/compat.t lib/Module/Build/t/destinations.t
25323            + lib/Module/Build/t/ext.t lib/Module/Build/t/extend.t
25324            + lib/Module/Build/t/files.t lib/Module/Build/t/install.t
25325            + lib/Module/Build/t/lib/DistGen.pm
25326            + lib/Module/Build/t/lib/MBTest.pm
25327            + lib/Module/Build/t/manifypods.t lib/Module/Build/t/metadata.t
25328            + lib/Module/Build/t/metadata2.t lib/Module/Build/t/moduleinfo.t
25329            + lib/Module/Build/t/notes.t lib/Module/Build/t/parents.t
25330            + lib/Module/Build/t/pod_parser.t lib/Module/Build/t/ppm.t
25331            + lib/Module/Build/t/runthrough.t lib/Module/Build/t/signature.t
25332            + lib/Module/Build/t/tilde.t lib/Module/Build/t/versions.t
25333            + lib/Module/Build/t/xs.t utils/config_data.PL
25334            ! MANIFEST Porting/Maintainers.pl installperl pod/perlutil.pod
25335            ! utils.lst utils/Makefile vms/descrip_mms.template
25336            ! win32/Makefile win32/makefile.mk
25337 ____________________________________________________________________________
25338 [ 27388] By: rgs                                   on 2006/03/06  14:52:48
25339         Log: Upgrade to Archive::Tar 1.29
25340      Branch: perl
25341            ! lib/Archive/Tar.pm lib/Archive/Tar/t/00_setup.t
25342            ! lib/Archive/Tar/t/02_methods.t lib/Archive/Tar/t/99_clean.t
25343 ____________________________________________________________________________
25344 [ 27387] By: rgs                                   on 2006/03/06  10:06:53
25345         Log: Add and remove files forgotten in change #27384
25346      Branch: perl
25347            + ext/Compress/IO/Zlib/lib/IO/Uncompress/Adapter/Identity.pm
25348            + ext/Compress/IO/Zlib/lib/IO/Uncompress/Adapter/Inflate.pm
25349            + ext/Compress/IO/Zlib/lib/IO/Uncompress/AnyInflate.pm
25350            + ext/Compress/IO/Zlib/lib/IO/Uncompress/Gunzip.pm
25351            + ext/Compress/IO/Zlib/lib/IO/Uncompress/Inflate.pm
25352            + ext/Compress/IO/Zlib/lib/IO/Uncompress/RawInflate.pm
25353            + ext/Compress/IO/Zlib/lib/IO/Uncompress/Unzip.pm
25354            - (delete 110 files)
25355            ! MANIFEST
25356 ____________________________________________________________________________
25357 [ 27386] By: craigb                                on 2006/03/06  03:42:19
25358         Log: Subject: PATCH: 2 vms specific build files in perl @ 27383
25359              From: Peter Prymmer <PPrymmer@factset.com>
25360              Date: Sun, 05 Mar 2006 20:30:09 -0500
25361              Message-id: <OFF0B19477.39D9ABEB-ON85257129.00070590-85257129.000840D3@factset.com>
25362      Branch: perl
25363            ! configure.com vms/gen_shrfls.pl
25364 ____________________________________________________________________________
25365 [ 27385] By: craigb                                on 2006/03/06  03:26:39
25366         Log: Subject: Re: threads and VMS
25367              From: "John E. Malmberg" <wb8tyw@qsl.net>
25368              Date: Sun, 05 Mar 2006 00:32:27 -0500
25369              Message-id: <440A77EB.2030205@qsl.net>
25370      Branch: perl
25371            ! vms/vms.c
25372 ____________________________________________________________________________
25373 [ 27384] By: stevep                                on 2006/03/06  02:06:04
25374         Log: Subject: [PATCH] Compress::Zlib
25375              From: "Paul Marquess" <paul.marquess@ntlworld.com>
25376              Date: Fri, 3 Mar 2006 10:25:48 -0000
25377              Message-ID: <007101c63eac$d919c6c0$4c05140a@myopwv.com>
25378      Branch: perl
25379            + (add 129 files)
25380            ! MANIFEST ext/Compress/Zlib/Changes
25381            ! ext/Compress/Zlib/Makefile.PL ext/Compress/Zlib/README
25382            ! ext/Compress/Zlib/examples/filtdef
25383            ! ext/Compress/Zlib/examples/filtinf
25384            ! ext/Compress/Zlib/examples/gzcat
25385            ! ext/Compress/Zlib/examples/gzgrep
25386            ! ext/Compress/Zlib/examples/gzstream
25387            ! ext/Compress/Zlib/t/01version.t
25388            ! ext/Compress/Zlib/t/03zlib-v1.t
25389            ! ext/Compress/Zlib/t/05examples.t
25390            ! ext/Compress/Zlib/t/06gzsetp.t
25391            ! ext/Compress/Zlib/t/08encoding.t
25392            ! ext/Compress/Zlib/t/14gzopen.t ext/Compress/Zlib/t/99pod.t
25393            ! t/lib/compress/any.pl t/lib/compress/anyunc.pl
25394            ! t/lib/compress/destroy.pl t/lib/compress/generic.pl
25395            ! t/lib/compress/merge.pl t/lib/compress/multi.pl
25396            ! t/lib/compress/newtied.pl t/lib/compress/oneshot.pl
25397            ! t/lib/compress/prime.pl t/lib/compress/tied.pl
25398            ! t/lib/compress/truncate.pl t/lib/compress/zlib-generic.pl
25399 ____________________________________________________________________________
25400 [ 27383] By: nicholas                              on 2006/03/05  21:21:10
25401         Log: Change 27380 (HEK into the IV union failed to convert the code in the
25402              non-gcc-debugging ifdef. Whoops. Very lax of me)
25403      Branch: perl
25404            ! gv.h
25405 ____________________________________________________________________________
25406 [ 27382] By: nicholas                              on 2006/03/05  19:07:12
25407         Log: Perl_gv_name_set should not leak the old HEK. Allow the flag GV_ADD
25408              to simplify GV initialisation.
25409      Branch: perl
25410            ! gv.c gv.h sv.c
25411 ____________________________________________________________________________
25412 [ 27381] By: nicholas                              on 2006/03/05  18:40:59
25413         Log: Change hv_name_set to take U32 length and flags parameters.
25414      Branch: perl
25415            ! embed.fnc hv.c proto.h
25416 ____________________________________________________________________________
25417 [ 27380] By: nicholas                              on 2006/03/05  18:13:42
25418         Log: Move the GvNAME HEK into the IV union - every GV is now 1 pointer
25419              smaller.
25420      Branch: perl
25421            ! av.h cv.h gv.c gv.h hv.h sv.h
25422 ____________________________________________________________________________
25423 [ 27379] By: nicholas                              on 2006/03/05  17:47:23
25424         Log: Use a HEK to store the GV's name, rather than a malloc()ed string.
25425              Saves 1 word in each GV (no more strlen), and will also save the memory
25426              used by the string itself, as the HEK will exist already due to the
25427              key used by the symbol table for this GV.
25428      Branch: perl
25429            ! gv.c gv.h sv.c sv.h
25430 ____________________________________________________________________________
25431 [ 27378] By: nicholas                              on 2006/03/05  12:12:56
25432         Log: Only #define PERL_DONT_CREATE_GVSV if it wasn't already defined.
25433      Branch: perl
25434            ! perl.h
25435 ____________________________________________________________________________
25436 [ 27377] By: nicholas                              on 2006/03/05  11:53:55
25437         Log: Provide Perl_gv_name_set to replace LVALUE use of GvNAME and GvNAMESET.
25438      Branch: perl
25439            ! embed.fnc embed.h global.sym gv.c gv.h proto.h sv.c
25440 ____________________________________________________________________________
25441 [ 27376] By: craigb                                on 2006/03/05  00:03:31
25442         Log: Subject: Re: threads and VMS
25443              From: "John E. Malmberg" <wb8tyw@qsl.net>
25444              Date: Sat, 04 Mar 2006 18:29:22 -0500
25445              Message-id: <440A22D2.30009@qsl.net>
25446      Branch: perl
25447            ! doio.c
25448 ____________________________________________________________________________
25449 [ 27375] By: merijn                                on 2006/03/04  06:48:13
25450         Log: Subject: patch@27373 VMS build fix + more long pathname stuff
25451              From: "John E. Malmberg" <wb8tyw@qsl.net>
25452              Date: Sat, 04 Mar 2006 00:36:03 -0500
25453              Message-ID: <44092743.4030607@qsl.net>
25454      Branch: perl
25455            ! vms/vms.c
25456 ____________________________________________________________________________
25457 [ 27374] By: merijn                                on 2006/03/04  06:44:10
25458         Log: Subject: Re: [PATCH] include configure.com in Porting/checkcfgvar.pl
25459              From: Abe Timmerman <abe@ztreet.demon.nl>
25460              Date: Fri, 3 Mar 2006 22:56:47 +0100
25461              Message-Id: <200603032256.47170.abe@ztreet.demon.nl>
25462      Branch: perl
25463            ! Porting/checkcfgvar.pl configure.com
25464 ____________________________________________________________________________
25465 [ 27373] By: stevep                                on 2006/03/03  18:40:22
25466         Log: Add d_builtin_choose_expr and d_builtin_expect to configure.com as
25467              'undef'.
25468      Branch: perl
25469            ! configure.com
25470 ____________________________________________________________________________
25471 [ 27372] By: stevep                                on 2006/03/03  18:34:18
25472         Log: Make Win32 configuration changes for HAS_BUILTIN_CHOOSE_EXPR and
25473              HAS_BUILTIN_EXPECT.
25474      Branch: perl
25475            ! win32/config.bc win32/config.gc win32/config.vc
25476            ! win32/config.vc64 win32/config_H.bc win32/config_H.gc
25477            ! win32/config_H.vc win32/config_H.vc64
25478 ____________________________________________________________________________
25479 [ 27371] By: stevep                                on 2006/03/03  17:49:01
25480         Log: Subject: [PATCH] include configure.com in Porting/checkcfgvar.pl
25481              From: Abe Timmerman <abe@ztreet.demon.nl>
25482              Date: Fri, 3 Mar 2006 18:43:24 +0100
25483              Message-Id: <200603031843.24250.abe@ztreet.demon.nl>
25484      Branch: perl
25485            ! Porting/checkcfgvar.pl
25486 ____________________________________________________________________________
25487 [ 27370] By: merijn                                on 2006/03/03  16:40:57
25488         Log: Subject: [PATCH] Support for __builtin_expect and __builtin_choose_expr
25489              From: Andy Lester <andy@petdance.com>
25490              Date: Wed, 28 Dec 2005 15:34:08 -0600
25491              Message-ID: <20051228213408.GB26033@petdance.com>
25492      Branch: perl
25493            ! Configure Porting/Glossary config_h.SH perl.h
25494 ____________________________________________________________________________
25495 [ 27368] By: rgs                                   on 2006/03/03  15:45:32
25496         Log: Subject: [PATCH] Re: [perl #38657] -d:Foo=bar broke in 5.8.8
25497              From: Jarkko Hietaniemi <jhietaniemi@gmail.com>
25498              Date: Thu, 02 Mar 2006 20:21:26 +0200
25499              Message-ID: <440737A6.4060606@gmail.com>
25500      Branch: perl
25501            ! t/lib/Devel/switchd.pm t/run/switchd.t
25502 ____________________________________________________________________________
25503 [ 27367] By: merijn                                on 2006/03/03  07:35:51
25504         Log: #27363 broke HP-UX (and others). if [[ ... ]] syntax not supported
25505      Branch: perl
25506            ! Configure
25507 ____________________________________________________________________________
25508 [ 27365] By: stevep                                on 2006/03/03  00:18:40
25509         Log: Subject: Re: [PATCH] Re: [perl #38612] Data::Dumper core dump in 5.8.6, fixed by 5.8.7
25510              From: Jarkko Hietaniemi <jhietaniemi@gmail.com>
25511              Date: Thu, 02 Mar 2006 22:46:14 +0200
25512              Message-ID: <44075996.1000002@gmail.com>
25513      Branch: perl
25514            ! ext/Data/Dumper/t/bugs.t
25515 ____________________________________________________________________________
25516 [ 27364] By: merijn                                on 2006/03/02  20:14:50
25517         Log: Taint handling for runperl:
25518              - better taint detection (switch -T in command)
25519              - $ENV{PATH} stripping of writeable directories on unix/linux
25520      Branch: perl
25521            ! t/test.pl
25522 ____________________________________________________________________________
25523 [ 27363] By: merijn                                on 2006/03/02  20:07:51
25524         Log: Subject: [perl #38385] _h2ph_pre.ph / $Config{cppsymbols} omits gcc-3.4+ cpp "predefined macros" 
25525              Date: Tue, 31 Jan 2006 09:50:32 -0800
25526              From: Jason Vas Dias (via RT) <perlbug-followup@perl.org>
25527      Branch: perl
25528            ! Configure utils/h2ph.PL
25529 ____________________________________________________________________________
25530 [ 27361] By: rgs                                   on 2006/03/02  09:11:35
25531         Log: Subject: [PATCH] mgvtbl initialization
25532              From: andy@petdance.com (Andy Lester)
25533              Date: Wed, 1 Mar 2006 22:52:20 -0600
25534              Message-ID: <20060302045220.GA15985@petdance.com>
25535      Branch: perl
25536            ! perl.h
25537 ____________________________________________________________________________
25538 [ 27360] By: rgs                                   on 2006/03/02  09:08:30
25539         Log: Subject: [PATCH] Non-null optimizations
25540              From: andy@petdance.com (Andy Lester)
25541              Date: Wed, 1 Mar 2006 22:13:45 -0600
25542              Message-ID: <20060302041345.GA13731@petdance.com>
25543      Branch: perl
25544            ! embed.fnc pod/perlapi.pod proto.h sv.c
25545 ____________________________________________________________________________
25546 [ 27359] By: rgs                                   on 2006/03/01  22:39:24
25547         Log: Don't put strings with embedded NULs in the environment.
25548              This makes things like -d:Foo=bar work again.
25549      Branch: perl
25550            ! perl.c
25551 ____________________________________________________________________________
25552 [ 27358] By: stevep                                on 2006/03/01  20:15:27
25553         Log: Grammar nit in Locale::Maketext::TPJ13.pod, found by Justin Pryzby.
25554      Branch: perl
25555            ! lib/Locale/Maketext/TPJ13.pod
25556 ____________________________________________________________________________
25557 [ 27357] By: stevep                                on 2006/03/01  16:53:49
25558         Log: Upgrade to podlators-2.04
25559      Branch: perl
25560            + lib/Pod/t/filehandle.t
25561            ! MANIFEST lib/Pod/Man.pm lib/Pod/Text.pm
25562 ____________________________________________________________________________
25563 [ 27356] By: stevep                                on 2006/03/01  16:29:37
25564         Log: Upgrade to assertions-0.03
25565      Branch: perl
25566            ! lib/assertions.pm lib/assertions/activate.pm
25567            ! lib/assertions/compat.pm t/comp/assertions.t
25568            ! t/comp/asstcompat.t
25569 ____________________________________________________________________________
25570 [ 27355] By: rgs                                   on 2006/03/01  16:13:56
25571         Log: Subject: [PATCH] a buglet in fakesdio.h
25572              From: Anton Berezin <tobez@tobez.org>
25573              Date: Wed, 1 Mar 2006 16:56:13 +0100
25574              Message-ID: <20060301155613.GA30368@heechee.tobez.org>
25575      Branch: perl
25576            ! fakesdio.h
25577 ____________________________________________________________________________
25578 [ 27354] By: stevep                                on 2006/03/01  16:08:17
25579         Log: Upgrade to CGI.pm-3.17, but continuing the version bump for 
25580              unintegrated changes.
25581      Branch: perl
25582            ! lib/CGI.pm lib/CGI/Carp.pm lib/CGI/Cookie.pm lib/CGI/Fast.pm
25583 ____________________________________________________________________________
25584 [ 27353] By: rgs                                   on 2006/03/01  09:08:46
25585         Log: Subject: Re: Patch lint for grep { /.../ } and grep /.../,
25586              From: "Joshua ben Jore" <twists@gmail.com>
25587              Date: Wed, 1 Mar 2006 01:14:14 -0600
25588              Message-ID: <dc5c751d0602282314o19c54a3av92d1a3addbc895fb@mail.gmail.com>
25589      Branch: perl
25590            ! ext/B/B/Lint.pm ext/B/t/lint.t
25591 ____________________________________________________________________________
25592 [ 27352] By: steveh                                on 2006/02/28  12:51:55
25593         Log: Silence another VC++ warning
25594              (signed/unsigned mismatch)
25595      Branch: perl
25596            ! ext/Digest/SHA/SHA.pm ext/Digest/SHA/src/sha.c
25597 ____________________________________________________________________________
25598 [ 27351] By: steveh                                on 2006/02/28  12:40:06
25599         Log: Silence a VC++ warning with DEBUGGING builds
25600              (signed/unsigned mismatch)
25601      Branch: perl
25602            ! sv.c
25603 ____________________________________________________________________________
25604 [ 27350] By: nicholas                              on 2006/02/27  21:41:58
25605         Log: In Perl_sv_setsv_flags, swap the default in the type based switch to
25606              the "Bizarre copy" failure case.
25607      Branch: perl
25608            ! sv.c
25609 ____________________________________________________________________________
25610 [ 27349] By: nicholas                              on 2006/02/27  21:10:21
25611         Log: Subject: [PATCH] Removed a redundant o->op_type
25612              From: andy@petdance.com (Andy Lester)
25613              Message-ID: <20060227202043.GA7783@petdance.com>
25614              Date: Mon, 27 Feb 2006 14:20:43 -0600
25615      Branch: perl
25616            ! op.c
25617 ____________________________________________________________________________
25618 [ 27348] By: steveh                                on 2006/02/27  17:48:55
25619         Log: Silence a GCC warning
25620              (assignment from incompatible pointer type)
25621      Branch: perl
25622            ! sv.h
25623 ____________________________________________________________________________
25624 [ 27347] By: steveh                                on 2006/02/27  17:24:37
25625         Log: Silence a VC++ warning
25626              (conversion from 'long ' to 'char ', possible loss of data)
25627      Branch: perl
25628            ! sv.c
25629 ____________________________________________________________________________
25630 [ 27346] By: rgs                                   on 2006/02/27  17:00:37
25631         Log: Upgrade to CPAN 1.87
25632      Branch: perl
25633            ! lib/CPAN.pm lib/CPAN/FirstTime.pm lib/CPAN/HandleConfig.pm
25634            ! lib/CPAN/SIGNATURE lib/CPAN/Tarzip.pm
25635 ____________________________________________________________________________
25636 [ 27345] By: nicholas                              on 2006/02/27  16:13:05
25637         Log: Move all the de-tainting logic for runperl into test.pl.
25638      Branch: perl
25639            ! t/op/utftaint.t t/test.pl
25640 ____________________________________________________________________________
25641 [ 27344] By: rgs                                   on 2006/02/27  15:43:41
25642         Log: Subject: [PATCH] fix up gv.c and gv.h
25643              From: andy@petdance.com (Andy Lester)
25644              Date: Sat, 25 Feb 2006 20:52:16 -0600
25645              Message-ID: <20060226025216.GA12758@petdance.com>
25646      Branch: perl
25647            ! gv.h
25648 ____________________________________________________________________________
25649 [ 27343] By: rgs                                   on 2006/02/27  15:36:46
25650         Log: Subject: [PATCH] PERL_TRACK_MEMPOOL cripples environment after exit()
25651              From: Marcus Holland-Moritz <mhx-perl@gmx.net>
25652              Date: Sun, 26 Feb 2006 20:47:21 +0100
25653              Message-ID: <20060226204721.00be2bff@r2d2>
25654      Branch: perl
25655            ! miniperlmain.c
25656 ____________________________________________________________________________
25657 [ 27342] By: rgs                                   on 2006/02/27  14:45:00
25658         Log: Subject: [patch] dumping tied globs without FILENO method on the debugger fails
25659              From: Salvador Fandino <sfandino@yahoo.com>
25660              Date: Sat, 25 Feb 2006 11:14:20 +0100
25661              Message-ID: <20060225101254.726.qmail@lists.develooper.com>
25662      Branch: perl
25663            ! lib/dumpvar.pl
25664 ____________________________________________________________________________
25665 [ 27341] By: steveh                                on 2006/02/27  14:39:46
25666         Log: Fix op/utftaint.t on Win32 following change #27248
25667              (Don't remove PATH completely because it'll break on Unix if you
25668              have . in the PATH)
25669      Branch: perl
25670            ! t/op/utftaint.t
25671 ____________________________________________________________________________
25672 [ 27340] By: nicholas                              on 2006/02/27  14:19:32
25673         Log: There is now the potential for an upgrade from something without an
25674              offset (PVNV or PVMG) to something with one (PVCV, PVFM). Deal with
25675              this correctly.
25676      Branch: perl
25677            ! sv.c
25678 ____________________________________________________________________________
25679 [ 27339] By: rgs                                   on 2006/02/27  13:40:44
25680         Log: ptr_table_find() is only defined with ithreads
25681      Branch: perl
25682            ! embed.fnc embed.h proto.h sv.c
25683 ____________________________________________________________________________
25684 [ 27338] By: merijn                                on 2006/02/27  13:28:04
25685         Log: Workaround for initialization errors on HP's pre-compiler
25686              Do not ask me to explain. This re-definition works on AIX
25687              and HP-UX. Let's await the smokes.
25688      Branch: perl
25689            ! sv.c
25690 ____________________________________________________________________________
25691 [ 27337] By: steveh                                on 2006/02/27  12:21:14
25692         Log: Fix code-before-declaration error (under VC++) from change #27334
25693      Branch: perl
25694            ! perlio.c
25695 ____________________________________________________________________________
25696 [ 27336] By: nicholas                              on 2006/02/27  12:00:12
25697         Log: Change 27330 failed to decontaminate SvCUR/GvFLAGS when upgrading an
25698              SvPV acting as a prototype placeholder to a full typeglob.
25699      Branch: perl
25700            ! gv.c
25701 ____________________________________________________________________________
25702 [ 27335] By: rgs                                   on 2006/02/27  11:26:58
25703         Log: Subject: Testing hash key stringification
25704              From: Anno Siegel <anno4000@mailbox.tu-berlin.de>
25705              Date: Sun, 26 Feb 2006 23:30:01 +0100
25706              Message-Id: <4871E87D-4B59-40A3-A091-A7A3CFA221CF@mailbox.tu-berlin.de>
25707      Branch: perl
25708            ! t/op/hashassign.t
25709 ____________________________________________________________________________
25710 [ 27334] By: rgs                                   on 2006/02/27  11:06:30
25711         Log: Subject: [PATCH] Speedups and shrinkages of SvREFCNT_inc
25712              From: andy@petdance.com (Andy Lester)
25713              Date: Fri, 24 Feb 2006 14:54:35 -0600
25714              Message-ID: <20060224205434.GA17867@petdance.com>
25715      Branch: perl
25716            ! av.c cop.h doio.c doop.c gv.c hv.c mg.c op.c pad.c perl.c
25717            ! perl.h perlio.c pod/perlapi.pod pod/perlintern.pod pp.c
25718            ! pp_ctl.c pp_hot.c pp_sort.c pp_sys.c regcomp.c scope.c sv.c
25719            ! sv.h toke.c
25720 ____________________________________________________________________________
25721 [ 27333] By: rgs                                   on 2006/02/27  10:33:59
25722         Log: Subject: [PATCH] Suppress System V IPC for 64-bit Darwin builds
25723              From: Dominic Dunlop <shouldbedomo@mac.com>
25724              Date: Fri, 24 Feb 2006 17:22:54 +0100
25725              Message-Id: <A685C5DB-23CE-430E-95F1-CC7A9480DDF9@mac.com>
25726      Branch: perl
25727            ! README.macosx hints/darwin.sh
25728 ____________________________________________________________________________
25729 [ 27332] By: rgs                                   on 2006/02/27  10:30:35
25730         Log: Subject: [perl #38633] doc patch: perlfunc "new" section lacks lock and qr 
25731              From: Zsban Ambrus (via RT) <perlbug-followup@perl.org>
25732              Date: Sat, 25 Feb 2006 05:11:03 -0800
25733              Message-ID: <rt-3.0.11-38633-130596.7.22367548359067@perl.org>
25734      Branch: perl
25735            ! pod/perlfunc.pod
25736 ____________________________________________________________________________
25737 [ 27331] By: rgs                                   on 2006/02/27  07:33:53
25738         Log: Fix argument grouping for some macros
25739      Branch: perl
25740            ! gv.h
25741 ____________________________________________________________________________
25742 [ 27330] By: nicholas                              on 2006/02/25  17:16:24
25743         Log: GvFLAGS can be overlaid with SvCUR.
25744      Branch: perl
25745            ! gv.h sv.h
25746 ____________________________________________________________________________
25747 [ 27329] By: nicholas                              on 2006/02/25  16:51:34
25748         Log: Subject: Re: [perl #38619] Bug in lc and uc (interaction between UTF-8, substr, and lc/uc)
25749              From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
25750              Date: Sat, 25 Feb 2006 18:16:45 +0900
25751              Message-Id: <20060225180934.FCC3.BQW10602@nifty.com>
25752      Branch: perl
25753            ! pp.c t/op/lc.t
25754 ____________________________________________________________________________
25755 [ 27328] By: nicholas                              on 2006/02/25  16:50:15
25756         Log: Use xpv_len rather than xpv_cur in GVs to store GvASSIGN_GENERATION.
25757              Assert that GVs do not access SvCUR or SvLEN.
25758      Branch: perl
25759            ! gv.h sv.h
25760 ____________________________________________________________________________
25761 [ 27327] By: nicholas                              on 2006/02/25  16:48:46
25762         Log: Abstract the specific use of SvCUR in GVs for detecting variables on
25763              both sides of an assignment using GvASSIGN_GENERATION() and
25764              GvASSIGN_GENERATION_set().
25765      Branch: perl
25766            ! gv.h op.c
25767 ____________________________________________________________________________
25768 [ 27326] By: nicholas                              on 2006/02/25  15:38:25
25769         Log: xgv_stash can be stored as a union with the NV, reducing the size of
25770              PVGVs by another pointer.
25771      Branch: perl
25772            ! av.h cv.h gv.h hv.h sv.h
25773 ____________________________________________________________________________
25774 [ 27325] By: nicholas                              on 2006/02/25  15:11:28
25775         Log: Curiously none of the macros SvIVX, SvUVX or SvNVX are used on
25776              typeglobs.
25777      Branch: perl
25778            ! dump.c ext/Devel/Peek/t/Peek.t sv.h
25779 ____________________________________________________________________________
25780 [ 27324] By: nicholas                              on 2006/02/25  14:50:38
25781         Log: Amazingly, it seems that none of the other GV specific macros are
25782              accessed unless the GV thinks that it is a GV.
25783      Branch: perl
25784            ! gv.h sv.c
25785 ____________________________________________________________________________
25786 [ 27323] By: nicholas                              on 2006/02/25  00:39:30
25787         Log: Store GvGP in the SV head union. For all the common lookups [eg GvCV()]
25788              this avoids 1 pointer dereference and the associated risk of a CPU
25789              cache miss. Although this patch looks deceptively small, I fear its
25790              CBV(*) might be rather high.
25791              (* Crack By Volume)
25792      Branch: perl
25793            ! dump.c ext/Devel/Peek/t/Peek.t gv.c gv.h pp.c pp_hot.c sv.c
25794            ! sv.h
25795 ____________________________________________________________________________
25796 [ 27322] By: nicholas                              on 2006/02/24  23:30:50
25797         Log: With PERL_DONT_CREATE_GVSV, don't need to create a new GvSV in
25798              Perl_save_scalar.
25799      Branch: perl
25800            ! scope.c
25801 ____________________________________________________________________________
25802 [ 27321] By: nicholas                              on 2006/02/24  22:43:14
25803         Log: Given that SvPV on a typeglob is now irrelevant, really we only need
25804              to store the GvGP.
25805      Branch: perl
25806            ! scope.c
25807 ____________________________________________________________________________
25808 [ 27320] By: nicholas                              on 2006/02/24  21:42:33
25809         Log: Given that Perl_gp_free() is refcount-dec-and-maybe-free for the glob
25810              pointer, it's inconsistent that it only sets this GV's GvGP to 0 if
25811              this GV happened to have the last reference. Why should this GV care if
25812              it had the last reference? So always set it to 0. It's free. Gone.
25813      Branch: perl
25814            ! gv.c
25815 ____________________________________________________________________________
25816 [ 27319] By: nicholas                              on 2006/02/24  19:32:11
25817         Log: Avoid special case SvMAGIC macros just to cope with Perl_sv_unmagic.
25818      Branch: perl
25819            ! sv.c sv.h
25820 ____________________________________________________________________________
25821 [ 27313] By: nicholas                              on 2006/02/24  14:19:37
25822         Log: Use PVMGs rather than PVGVs to store the names of our variables in the
25823              pad.
25824      Branch: perl
25825            ! pad.c sv.c sv.h
25826 ____________________________________________________________________________
25827 [ 27312] By: nicholas                              on 2006/02/24  13:59:57
25828         Log: Store the stash for our in the magic slot. This will allow us to use
25829              PVMGs in pad names where previously PVGVs were used. In turn, this
25830              gives much greater flexibility for the layout of PVGVs.
25831      Branch: perl
25832            ! av.h cv.h hv.h pad.c sv.c sv.h
25833 ____________________________________________________________________________
25834 [ 27311] By: stevep                                on 2006/02/24  13:55:23
25835         Log: Upgrade to CPAN-1.86
25836      Branch: perl
25837            ! lib/CPAN.pm lib/CPAN/SIGNATURE
25838 ____________________________________________________________________________
25839 [ 27309] By: rgs                                   on 2006/02/24  12:52:01
25840         Log: Skip unportable test on VMS
25841      Branch: perl
25842            ! t/comp/opsubs.t
25843 ____________________________________________________________________________
25844 [ 27307] By: nicholas                              on 2006/02/24  11:52:53
25845         Log: Assert that GvSTASH is only called on PVGVs and PVLVs.
25846      Branch: perl
25847            ! gv.h
25848 ____________________________________________________________________________
25849 [ 27306] By: nicholas                              on 2006/02/24  11:52:28
25850         Log: Replace usage of GvSTASH for storing the stash of C<our> with
25851              OURSTASH. Set the stash with OURSTASH_SET.
25852      Branch: perl
25853            ! pad.c pad.h sv.h
25854 ____________________________________________________________________________
25855 [ 27304] By: nicholas                              on 2006/02/24  11:21:06
25856         Log: assert that SvMAGIC is never non-NULL for any PVMG used as a pad name.
25857      Branch: perl
25858            ! sv.h
25859 ____________________________________________________________________________
25860 [ 27302] By: nicholas                              on 2006/02/24  10:56:00
25861         Log: Redo previous sv.h change.
25862      Branch: perl
25863            ! sv.h
25864 ____________________________________________________________________________
25865 [ 27301] By: stevep                                on 2006/02/24  10:54:14
25866         Log: Subject: [PATCH] Perl_save_aelem can't be const
25867              From: Andy Lester <andy@petdance.com>
25868              Date: Thu, 23 Feb 2006 22:53:40 -0600
25869              Message-ID: <20060224045340.GA6318@petdance.com>
25870      Branch: perl
25871            ! embed.fnc proto.h scope.c
25872 ____________________________________________________________________________
25873 [ 27300] By: stevep                                on 2006/02/24  10:41:53
25874         Log: Subject: [PATCH] unused context warnings
25875              From: andy@petdance.com (Andy Lester)
25876              Date: Tue, 21 Feb 2006 00:27:11 -0600
25877              Message-ID: <20060221062711.GA16160@petdance.com>
25878      Branch: perl
25879            ! deb.c embed.pl hv.c locale.c mathoms.c mg.c miniperlmain.c
25880            ! numeric.c op.c perl.c perl.h perlapi.c perlio.c pp_ctl.c
25881            ! regcomp.c scope.c sv.c toke.c universal.c utf8.c util.c
25882 ____________________________________________________________________________
25883 [ 27297] By: nicholas                              on 2006/02/24  10:29:48
25884         Log: As SVs can't both be in a pad, and the name of a variable in the pad,
25885              overlay SVs_PADTMP with SVpad_TYPED and SVs_PADMY with SVpad_OUR.
25886      Branch: perl
25887            ! pad.h
25888 ____________________________________________________________________________
25889 [ 27296] By: stevep                                on 2006/02/24  02:56:02
25890         Log: Revert change #27295, which I thought fixed builds on Win32.
25891              Instead remove &PL_vtbl_glob from globvar.sym.
25892      Branch: perl
25893            ! XSUB.h globvar.sym
25894 ____________________________________________________________________________
25895 [ 27295] By: stevep                                on 2006/02/24  02:02:14
25896         Log: Last instance of PL_vtbl_glob removed.  It was missed change #27289.
25897      Branch: perl
25898            ! XSUB.h
25899 ____________________________________________________________________________
25900 [ 27294] By: nicholas                              on 2006/02/23  23:45:39
25901         Log: Replace direct flags tests & manipulations for SVpad_TYPED and
25902              SVpad_OUR with macros SvPAD_TYPED(), SvPAD_OUR() etc, to abstract
25903              away the flags bits acutally used to store this information.
25904      Branch: perl
25905            ! XSUB.h dump.c op.c pad.c pad.h pp.c sv.c sv.h toke.c
25906 ____________________________________________________________________________
25907 [ 27293] By: nicholas                              on 2006/02/23  22:17:07
25908         Log: Document a sixth use for SVf_FAKE
25909      Branch: perl
25910            ! sv.h
25911 ____________________________________________________________________________
25912 [ 27292] By: nicholas                              on 2006/02/23  20:28:34
25913         Log: We have sufficient spare bits to store the SV type in body_details,
25914              so add a small sanity check to ensure that we have the array in the
25915              correct order.
25916      Branch: perl
25917            ! sv.c
25918 ____________________________________________________________________________
25919 [ 27291] By: nicholas                              on 2006/02/23  19:40:23
25920         Log: Shrink struct body_details and hence sv.o slightly further by using
25921              bitfields.
25922      Branch: perl
25923            ! sv.c
25924 ____________________________________________________________________________
25925 [ 27290] By: nicholas                              on 2006/02/23  19:15:48
25926         Log: Using U8 rather than size type shrinks the body_details table.
25927      Branch: perl
25928            ! sv.c
25929 ____________________________________________________________________________
25930 [ 27289] By: nicholas                              on 2006/02/23  18:00:19
25931         Log: Remove set magic from typeglobs. Remove typeglob magic entirely.
25932              Typeglobs now never access the SvPVX, SvIVX or SvNVX when holding a
25933              valid GvGP().
25934      Branch: perl
25935            ! dump.c ext/Devel/Peek/t/Peek.t gv.c perl.h pod/perlguts.pod
25936            ! sv.c util.c
25937 ____________________________________________________________________________
25938 [ 27288] By: nicholas                              on 2006/02/23  17:45:55
25939         Log: In XS_attributes__guess_stash, attempting to call Gv* on a PVMG is
25940              bad and wrong.
25941      Branch: perl
25942            ! xsutils.c
25943 ____________________________________________________________________________
25944 [ 27287] By: stevep                                on 2006/02/23  17:42:09
25945         Log: Add test for RT #2166: foreach spuriously autovivifies
25946      Branch: perl
25947            ! t/cmd/for.t
25948 ____________________________________________________________________________
25949 [ 27286] By: stevep                                on 2006/02/23  16:24:19
25950         Log: Converted t/op/pos.t to use test.pl and added TODO test for 
25951              RT #1716 - search position reset after 'local' save/restore
25952      Branch: perl
25953            ! t/op/pos.t
25954 ____________________________________________________________________________
25955 [ 27283] By: rgs                                   on 2006/02/23  14:07:13
25956         Log: Subject: [PATCH] Implement ${^WIN32_SLOPPY_STAT}
25957              From: "Jan Dubois" <jand@ActiveState.com>
25958              Date: Tue, 21 Feb 2006 12:36:31 -0800
25959              Message-ID: <019601c63726$7fcca200$6062a8c0@candy>
25960      Branch: perl
25961            ! win32/win32.c
25962 ____________________________________________________________________________
25963 [ 27282] By: nicholas                              on 2006/02/23  13:42:29
25964         Log: Recalculate dstr in Perl_sv_setsv_flags, as dstr may have been upgraded.
25965      Branch: perl
25966            ! sv.c
25967 ____________________________________________________________________________
25968 [ 27279] By: nicholas                              on 2006/02/23  13:07:54
25969         Log: Remove un-needed case in Perl_sv_setsv_flags (sv_upgrade will cover
25970              this one for us).
25971      Branch: perl
25972            ! sv.c
25973 ____________________________________________________________________________
25974 [ 27278] By: nicholas                              on 2006/02/23  11:11:12
25975         Log: Remove get magic from typeglobs. This means that PVGVs holding
25976              typeglobs never need to use SvPVX. This comes at price - typeglobs
25977              were using magic get for their stringificiation, and to pass SvOK(),
25978              so need to make typeglobs SvOK by default (by sucking SVp_SCREAM into
25979              SVf_OK - it's the only flag left), tweak SvSCREAM() to also check
25980              SVp_POK, and teach sv_2[inpu]v how to convert globs.
25981              However, it should free up SvPVX for the next part of the plan to
25982              pointer indirections, and therefore CPU cache pressure.
25983      Branch: perl
25984            ! embed.fnc embed.h ext/Devel/Peek/t/Peek.t gv.c mg.c perl.h
25985            ! proto.h sv.c sv.h
25986 ____________________________________________________________________________
25987 [ 27276] By: nicholas                              on 2006/02/23  00:29:04
25988         Log: Fix the copy sizes for PVFM and PVCV back to sanity.
25989      Branch: perl
25990            ! sv.c
25991 ____________________________________________________________________________
25992 [ 27274] By: nicholas                              on 2006/02/22  23:43:10
25993         Log: Fix typos and a missing bracket.
25994      Branch: perl
25995            ! pp.c t/op/studytied.t
25996 ____________________________________________________________________________
25997 [ 27273] By: nicholas                              on 2006/02/22  22:30:19
25998         Log: Avoid C<study>ing any strings that might change underneath us, such
25999              as tied scalars and scalars with overloaded stringification.
26000      Branch: perl
26001            ! pp.c t/op/studytied.t
26002 ____________________________________________________________________________
26003 [ 27272] By: rgs                                   on 2006/02/22  22:09:41
26004         Log: Mark some new study tests as TODO
26005      Branch: perl
26006            ! t/op/studytied.t
26007 ____________________________________________________________________________
26008 [ 27271] By: rgs                                   on 2006/02/22  21:04:33
26009         Log: Add a test for study() on tied scalars, by Andy Lester after
26010              Rick Delaney
26011      Branch: perl
26012            + t/op/studytied.t
26013            ! MANIFEST
26014 ____________________________________________________________________________
26015 [ 27270] By: rgs                                   on 2006/02/22  20:28:41
26016         Log: Turn on match string copying when /e flag is set on a substitution.
26017              
26018              Subject: [PATCH] dodge a valgrind error (for maint or blead)
26019              From: Jarkko Hietaniemi <jhietaniemi@gmail.com>
26020              Date: Feb 22, 2006 8:16 PM
26021              Message-ID: <43FCB896.7060106@gmail.com>
26022      Branch: perl
26023            ! pp_hot.c
26024 ____________________________________________________________________________
26025 [ 27269] By: nicholas                              on 2006/02/22  18:21:30
26026         Log: sv_dump should report the PV for PVGVs, as it can get set.
26027              (Typeglobs stringify via a call to GET magic, which uses the PV slot.)
26028      Branch: perl
26029            ! dump.c ext/Devel/Peek/t/Peek.t
26030 ____________________________________________________________________________
26031 [ 27268] By: nicholas                              on 2006/02/22  16:50:25
26032         Log: Test warnings for converting globs to other forms.
26033      Branch: perl
26034            ! t/op/gv.t
26035 ____________________________________________________________________________
26036 [ 27267] By: nicholas                              on 2006/02/22  00:23:49
26037         Log: Change 24643 made the mistake of assuming that CvCONST can only be true
26038              on XSUBs. Somehow it can also end up on perl subs. Bug spotted by and
26039              test case from Marcus Holland-Moritz.
26040      Branch: perl
26041            ! sv.c t/op/threads.t
26042 ____________________________________________________________________________
26043 [ 27265] By: nicholas                              on 2006/02/21  20:09:25
26044         Log: Can merge the two arms of Perl_magic_getglob to save space.
26045      Branch: perl
26046            ! mg.c
26047 ____________________________________________________________________________
26048 [ 27264] By: nicholas                              on 2006/02/21  19:04:39
26049         Log: Reorder the SV flags so that SVp_?OK and SVf_?OK occupy 8 contiguous
26050              bits (0x0000XX00). This makes perl 3K smaller with -Os on x86 FreeBSD,
26051              and might also help on other architectures (eg with 8 contiguous bits,
26052              the SvOK() test on ARM won't need an intermediate constant).
26053      Branch: perl
26054            ! sv.h
26055 ____________________________________________________________________________
26056 [ 27263] By: stevep                                on 2006/02/21  18:44:21
26057         Log: Additional hints needed to build threaded Perls on NetBSD.
26058      Branch: perl
26059            ! hints/netbsd.sh
26060 ____________________________________________________________________________
26061 [ 27262] By: nicholas                              on 2006/02/21  18:00:57
26062         Log: PL_body_arenas should be set to NULL when the interpreter is cleared.
26063      Branch: perl
26064            ! sv.c
26065 ____________________________________________________________________________
26066 [ 27261] By: nicholas                              on 2006/02/21  16:28:02
26067         Log: Teach B about CVf_ISXSUB
26068      Branch: perl
26069            ! ext/B/defsubs_h.PL ext/B/t/concise-xs.t
26070 ____________________________________________________________________________
26071 [ 27260] By: nicholas                              on 2006/02/21  16:12:37
26072         Log: Goodbye PERL_XSUB_OLDSTYLE.
26073      Branch: perl
26074            ! cv.h ext/B/defsubs_h.PL ext/B/t/concise-xs.t
26075            ! ext/Devel/Peek/t/Peek.t pp_ctl.c pp_hot.c
26076 ____________________________________________________________________________
26077 [ 27259] By: nicholas                              on 2006/02/21  15:40:04
26078         Log: Re-order the definitions of the private bits in SvFLAGS by value, so
26079              that we can see where we're already double-booked.
26080      Branch: perl
26081            ! sv.h
26082 ____________________________________________________________________________
26083 [ 27258] By: nicholas                              on 2006/02/21  15:23:21
26084         Log: Document the many uses of SVf_FAKE.
26085      Branch: perl
26086            ! sv.h
26087 ____________________________________________________________________________
26088 [ 27257] By: stevep                                on 2006/02/21  15:18:58
26089         Log: Add tests for the previously untested Hash::Util::all_keys().
26090      Branch: perl
26091            ! ext/Hash/Util/t/Util.t
26092 ____________________________________________________________________________
26093 [ 27256] By: stevep                                on 2006/02/21  00:43:43
26094         Log: $ExtUtils::MM_Unix::VERSION needs to stay numeric to avoid test
26095              warnings.
26096      Branch: perl
26097            ! lib/ExtUtils/MM_Unix.pm
26098 ____________________________________________________________________________
26099 [ 27255] By: stevep                                on 2006/02/21  00:40:23
26100         Log: Subject: Patches: B, CGI, ExtUtils::MM_Unix
26101              From: "Joshua ben Jore" <twists@gmail.com>
26102              Date: Sun, 19 Feb 2006 02:58:10 -0600
26103              Message-ID: <dc5c751d0602190058t78d915fv78c6318370307b63@mail.gmail.com>
26104      Branch: perl
26105            ! AUTHORS lib/CGI.pm
26106 ____________________________________________________________________________
26107 [ 27254] By: stevep                                on 2006/02/21  00:02:46
26108         Log: Subject: Re: Patches: B, CGI, ExtUtils::MM_Unix
26109              From: "Joshua ben Jore" <twists@gmail.com>
26110              Date: Mon, 20 Feb 2006 09:50:15 -0600
26111              Message-ID: <dc5c751d0602200750j21447031m86ea670b04ac27ed@mail.gmail.com>
26112              
26113              Includes changes to increment test count in ext/B/t/concise-xs.t and
26114              uses "no warnings 'once';" in ext/B/t/b.t rather than kludging to 
26115              avoid the warning.
26116      Branch: perl
26117            ! ext/B/B.pm ext/B/B.xs ext/B/t/b.t ext/B/t/concise-xs.t
26118 ____________________________________________________________________________
26119 [ 27252] By: stevep                                on 2006/02/20  23:01:41
26120         Log: Subject: [PATCH] op/magic failure on cygwin after 1.5.19-4
26121              From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
26122              Date: Mon, 20 Feb 2006 11:09:33 -0800
26123              Message-ID: <20060220190933.GA1316@efn.org>
26124      Branch: perl
26125            ! t/op/magic.t
26126 ____________________________________________________________________________
26127 [ 27251] By: nicholas                              on 2006/02/20  20:32:09
26128         Log: Steal code from maint, and use PERL_ARENA_ROOTS_SIZE to size the arena
26129              arrays, rather than SVt_LAST, so that SVt_LAST can truthfully remain
26130              the number of genuine SV types, unclouded by implementation details.
26131      Branch: perl
26132            ! intrpvar.h sv.c sv.h
26133 ____________________________________________________________________________
26134 [ 27250] By: rgs                                   on 2006/02/20  20:03:37
26135         Log: Subject: [PATCH] Make SDBM_File work with -Duse64bitall on Darwin (Mac OS X)
26136              From: Dominic Dunlop <shouldbedomo@mac.com>
26137              Date: Feb 20, 2006 1:46 PM
26138              Message-Id: <B699DDDE-EC4E-495D-AFF5-3D7399332A24@mac.com>
26139      Branch: perl
26140            ! ext/SDBM_File/Makefile.PL hints/darwin.sh
26141 ____________________________________________________________________________
26142 [ 27249] By: nicholas                              on 2006/02/20  19:00:22
26143         Log: PVCVs don't need XNVs either.
26144              (And actually remove xcv_depth)
26145              (And fix the copy lengths in bodies_by_type)
26146      Branch: perl
26147            ! cv.h dump.c ext/B/B/Bytecode.pm ext/Devel/Peek/t/Peek.t sv.c
26148 ____________________________________________________________________________
26149 [ 27248] By: rgs                                   on 2006/02/20  17:59:42
26150         Log: Subject: [PATCH] Trouble with $ENV{CDPATH} after change #27236
26151              From: Dominic Dunlop <shouldbedomo@mac.com>
26152              Date: Feb 20, 2006 2:49 PM
26153              Message-Id: <6393FA5A-6B84-46E9-A557-DED3BB0AD7EE@mac.com>
26154      Branch: perl
26155            ! t/op/utftaint.t
26156 ____________________________________________________________________________
26157 [ 27247] By: nicholas                              on 2006/02/20  17:48:21
26158         Log: PVFMs don't need CvDEPTH, and PVCVs don't use SvIVX, so moving
26159              xcv_depth into the IV union saves 4(ish) bytes per CV and format.
26160              "ish" because it was a long, but has been changed to I32 (along with
26161              the corresponding field in struct block_sub) so as not to enlarge the
26162              IV union on platforms where sizeof(long) > sizeof(IV), or struct
26163              block_sub where sizeof(long) > sizeof(I32)
26164      Branch: perl
26165            ! cop.h cv.h dump.c ext/B/B/Bytecode.pm ext/Devel/Peek/t/Peek.t
26166            ! op.c sv.c sv.h
26167 ____________________________________________________________________________
26168 [ 27245] By: nicholas                              on 2006/02/20  14:01:59
26169         Log: Fix sv_dump to dump formats without the (non-existent) NVX.
26170      Branch: perl
26171            ! dump.c
26172 ____________________________________________________________________________
26173 [ 27244] By: nicholas                              on 2006/02/20  13:42:47
26174         Log: xcv_root and xcv_xsub can also be merged into a union, providing a new
26175              flag is added to denote whether the PVCV is perl or XSUB.
26176      Branch: perl
26177            ! cv.h dump.c ext/B/B.xs ext/Devel/Peek/t/Peek.t op.c sv.c sv.h
26178 ____________________________________________________________________________
26179 [ 27243] By: nicholas                              on 2006/02/20  11:54:38
26180         Log: xcv_start and xcv_xsubany can be merged into a union, as they are never
26181              both needed.
26182      Branch: perl
26183            ! cv.h dump.c ext/B/B.xs ext/Devel/Peek/t/Peek.t sv.h
26184 ____________________________________________________________________________
26185 [ 27242] By: nicholas                              on 2006/02/20  11:54:03
26186         Log: Need to clear CvXSUBANY() too to turn a constant sub into a prototype.
26187      Branch: perl
26188            ! lib/ExtUtils/Constant/ProxySubs.pm
26189 ____________________________________________________________________________
26190 [ 27241] By: nicholas                              on 2006/02/20  10:40:59
26191         Log: Add a new CvISXSUB() macro, for abstracting the test as to whether a
26192              PVCV is perl or XS.
26193      Branch: perl
26194            ! cv.h dump.c ext/Devel/Peek/Peek.xs gv.c op.c pad.c pp_ctl.c
26195            ! pp_hot.c pp_sort.c sv.c
26196 ____________________________________________________________________________
26197 [ 27240] By: nicholas                              on 2006/02/20  10:10:11
26198         Log: Abolish BROKEN_UNION_INIT in B::C, as it works around problems in
26199              pre-ANSI C compilers, but pays in code duplication.
26200      Branch: perl
26201            ! cv.h ext/B/B/C.pm
26202 ____________________________________________________________________________
26203 [ 27239] By: rgs                                   on 2006/02/20  09:31:03
26204         Log: Subject: patch@27236 vms glob/readdir/chdir EFS/long filename support
26205              From: John E. Malmberg <wb8tyw@qsl.net>
26206              Date: Feb 20, 2006 3:43 AM
26207              Message-ID: <43F92CE6.5040704@qsl.net>
26208      Branch: perl
26209            ! doio.c t/io/fs.t vms/vms.c
26210 ____________________________________________________________________________
26211 [ 27238] By: rgs                                   on 2006/02/20  09:26:15
26212         Log: More NullXXX macro removal from Andy Lester
26213      Branch: perl
26214            ! cop.h deb.c doio.c doop.c hv.c intrpvar.h mg.h pad.c pad.h
26215            ! perl.c pp_ctl.c pp_hot.c pp_sys.c scope.c sv.c toke.c
26216            ! universal.c util.c
26217 ____________________________________________________________________________
26218 [ 27237] By: rgs                                   on 2006/02/20  08:54:22
26219         Log: Yitzchak points out that the perldiag entry for "Integer overflow in
26220              division" is no longer useful.
26221      Branch: perl
26222            ! pod/perldiag.pod
26223 ____________________________________________________________________________
26224 [ 27236] By: nicholas                              on 2006/02/20  00:36:34
26225         Log: utftaint.t won't be able to run tests with -T if you have
26226              Insecure directory in $ENV{PATH}
26227              so skip them. (Probably this means you have . in your PATH)
26228      Branch: perl
26229            ! t/op/utftaint.t
26230 ____________________________________________________________________________
26231 [ 27235] By: nicholas                              on 2006/02/20  00:21:09
26232         Log: Remove the last (U16) cast for CV depths, missed by change 17835.
26233      Branch: perl
26234            ! pp_ctl.c
26235 ____________________________________________________________________________
26236 [ 27234] By: nicholas                              on 2006/02/20  00:02:53
26237         Log: Re-order CV flags to bring the 4 CVf_BUILTIN_ATTRS into adjacent bits,
26238              and make other flag bits that are paired in the code adjacent.
26239              Will produce tighter code on ARM; might help on other platforms too.
26240      Branch: perl
26241            ! cv.h ext/Devel/Peek/t/Peek.t
26242 ____________________________________________________________________________
26243 [ 27233] By: nicholas                              on 2006/02/19  23:59:52
26244         Log: Ministry of Truth removes typo in description of Change 26166.
26245              Change 26166 was correct from the start.
26246              Nothing to see. Move along.
26247              We thank Big Brother for raising the chocolate ration to 20g per week.
26248      Branch: perl
26249            ! Changes
26250 ____________________________________________________________________________
26251 [ 27231] By: nicholas                              on 2006/02/19  22:35:24
26252         Log: Shave sizeof(NV) bytes from formats, by using the same offset
26253              manoeuvre as PVs, PVIVs, PVAVs and PVHVs.
26254      Branch: perl
26255            ! sv.c sv.h
26256 ____________________________________________________________________________
26257 [ 27230] By: nicholas                              on 2006/02/19  20:30:24
26258         Log: AVs and HVs don't have IVXs or NVXs, so assert this too.
26259      Branch: perl
26260            ! sv.h
26261 ____________________________________________________________________________
26262 [ 27229] By: nicholas                              on 2006/02/19  20:10:34
26263         Log: Under -DDEBUGGING, assert that SvIVX, SvUVX and SvNVX aren't being
26264              used on scalars that don't have the memory allocated. Correct
26265              SvSTASH and SvMAGIC to only evaluate the sv argument once.
26266      Branch: perl
26267            ! sv.h
26268 ____________________________________________________________________________
26269 [ 27228] By: nicholas                              on 2006/02/19  18:57:35
26270         Log: To make arithmetic on tainted dualvars work properly requires that
26271              sv_2nv uses SvIVX in preference to SvPVX, if SVp_IOK is true.
26272      Branch: perl
26273            ! sv.c t/op/taint.t
26274 ____________________________________________________________________________
26275 [ 27227] By: nicholas                              on 2006/02/19  12:14:15
26276         Log: SvROK(sv) will never be true when SvIOKp() or SvNOKp() is true, so the
26277              code inside the if() test in sv_2pv_flags is dead and can be removed.
26278      Branch: perl
26279            ! sv.c
26280 ____________________________________________________________________________
26281 [ 27223] By: rgs                                   on 2006/02/18  20:13:51
26282         Log: As Anno Siegel points out, mtime/ctime test should be skipped
26283              on OS X on HFS+.
26284      Branch: perl
26285            ! t/op/stat.t
26286 ____________________________________________________________________________
26287 [ 27222] By: nicholas                              on 2006/02/18  19:01:48
26288         Log: save_re_context() and even errsv_save = newSVsv(ERRSV); can turn
26289              PL_tainted back on, so defer turning if off as late as possible.
26290              This gets lib/locale.t working once more.
26291      Branch: perl
26292            ! utf8.c
26293 ____________________________________________________________________________
26294 [ 27221] By: nicholas                              on 2006/02/18  18:23:43
26295         Log: Turn of tainting locally inside swash_init(), as the internal
26296              implementation of the regexp engine has nothing to do with user data,
26297              so when and where it happens to call require is agnostic of the current
26298              expression's taintedness.
26299      Branch: perl
26300            ! t/op/utftaint.t utf8.c
26301 ____________________________________________________________________________
26302 [ 27220] By: nicholas                              on 2006/02/18  18:22:13
26303         Log: Assume that if runperl is called under tainting, that the caller really
26304              really wanted to run perl, so brute force untaint everything.
26305      Branch: perl
26306            ! t/test.pl
26307 ____________________________________________________________________________
26308 [ 27219] By: nicholas                              on 2006/02/18  17:38:38
26309         Log: Convert utftaint.t to test.pl (from Test.pm) and provide it with
26310              tainted() from taint.t to remove the dependency on Scalar::Util.
26311              (So it will now work with miniperl)
26312      Branch: perl
26313            ! t/op/utftaint.t
26314 ____________________________________________________________________________
26315 [ 27218] By: stevep                                on 2006/02/18  12:58:49
26316         Log: Upgrade to Digest-SHA-5.34.
26317      Branch: perl
26318            ! ext/Digest/SHA/Changes ext/Digest/SHA/README
26319            ! ext/Digest/SHA/SHA.pm ext/Digest/SHA/bin/shasum
26320            ! ext/Digest/SHA/ppport.h ext/Digest/SHA/src/hmac.c
26321            ! ext/Digest/SHA/src/hmac.h ext/Digest/SHA/src/sha.c
26322            ! ext/Digest/SHA/src/sha.h ext/Digest/SHA/t/0-pod-coverage.t
26323            ! ext/Digest/SHA/t/0-pod.t ext/Digest/SHA/t/1-exist.t
26324            ! ext/Digest/SHA/t/1-hello-world.t
26325            ! ext/Digest/SHA/t/2-nist-sha-1.t
26326            ! ext/Digest/SHA/t/2-nist-sha-224.t
26327            ! ext/Digest/SHA/t/2-nist-sha-256.t
26328            ! ext/Digest/SHA/t/2-nist-sha-384.t
26329            ! ext/Digest/SHA/t/2-nist-sha-512.t
26330            ! ext/Digest/SHA/t/2-nist-sha-base64.t
26331            ! ext/Digest/SHA/t/2-nist-sha-oo.t
26332            ! ext/Digest/SHA/t/2-nist-vectors-bit.t
26333            ! ext/Digest/SHA/t/2-nist-vectors-byte.t
26334            ! ext/Digest/SHA/t/3-gillogly-easy.t
26335            ! ext/Digest/SHA/t/3-gillogly-hard.t
26336            ! ext/Digest/SHA/t/4-bitstr-increasing.t
26337            ! ext/Digest/SHA/t/4-bitstr-large.t
26338            ! ext/Digest/SHA/t/4-bitstr-random.t
26339            ! ext/Digest/SHA/t/5-hmac-fips198.t
26340            ! ext/Digest/SHA/t/5-hmac-rfc2202.t
26341            ! ext/Digest/SHA/t/5-hmac-sha-256.t
26342            ! ext/Digest/SHA/t/5-hmac-woodbury.t
26343            ! ext/Digest/SHA/t/6-dump-load.t ext/Digest/SHA/t/7-ireland.t
26344 ____________________________________________________________________________
26345 [ 27215] By: nicholas                              on 2006/02/18  00:11:07
26346         Log: Subject: arena-rework : consolidated patch
26347              From: Jim Cromie <jim.cromie@gmail.com>
26348              Message-ID: <43F0F649.9040205@gmail.com>
26349              Date: Mon, 13 Feb 2006 14:12:41 -0700
26350              
26351              Tweaked somewhat to split the arena boolean from the arena_size,
26352              and with the PTE still doubling-up with one of the SV types in the
26353              array.
26354      Branch: perl
26355            ! embed.fnc embed.h hv.c perl.h pod/perlapi.pod proto.h sv.c
26356            ! sv.h
26357 ____________________________________________________________________________
26358 [ 27214] By: nicholas                              on 2006/02/17  23:26:58
26359         Log: Subject: Re: Smoke [5.9.4] 27195 FAIL(m) irix 6.2 (IP22/1 cpu)
26360              From: Abe Timmerman <abe@ztreet.demon.nl>
26361              Message-Id: <200602172358.23977.abe@ztreet.demon.nl>
26362              Date: Fri, 17 Feb 2006 23:58:23 +0100
26363      Branch: perl
26364            ! Makefile.SH
26365 ____________________________________________________________________________
26366 [ 27213] By: nicholas                              on 2006/02/17  22:40:31
26367         Log: The two whitespace changes from
26368              
26369              Subject: arena-rework : consolidated patch
26370              From: Jim Cromie <jim.cromie@gmail.com>
26371              Message-ID: <43F0F649.9040205@gmail.com>
26372              Date: Mon, 13 Feb 2006 14:12:41 -0700
26373      Branch: perl
26374            ! sv.c
26375 ____________________________________________________________________________
26376 [ 27212] By: gisle                                 on 2006/02/17  21:21:05
26377         Log: Don't add -fPIC if already present.
26378              
26379              Subject: [PATCH] 5.8.8: Debian patches
26380              From: "Brendan O'Dea" <bod@debian.org>
26381              Date: Sat, 11 Feb 2006 00:37:15 +1100
26382              Message-ID: <20060210133715.GA6826@londo.c47.org>
26383      Branch: perl
26384            ! hints/linux.sh
26385 ____________________________________________________________________________
26386 [ 27211] By: gisle                                 on 2006/02/17  21:19:03
26387         Log: Fix precedence.
26388              
26389              Subject: [PATCH] 5.8.8: Debian patches
26390              From: "Brendan O'Dea" <bod@debian.org>
26391              Date: Sat, 11 Feb 2006 00:37:15 +1100
26392              Message-ID: <20060210133715.GA6826@londo.c47.org>
26393      Branch: perl
26394            ! lib/Net/NNTP.pm
26395 ____________________________________________________________________________
26396 [ 27210] By: gisle                                 on 2006/02/17  20:54:46
26397         Log: Fix quote typo.
26398              
26399              Subject: [PATCH] 5.8.8: Debian patches
26400              From: "Brendan O'Dea" <bod@debian.org>
26401              Date: Sat, 11 Feb 2006 00:37:15 +1100
26402              Message-ID: <20060210133715.GA6826@londo.c47.org>
26403      Branch: perl
26404            ! utils/c2ph.PL
26405 ____________________________________________________________________________
26406 [ 27209] By: rgs                                   on 2006/02/17  15:48:59
26407         Log: In TODO: make encoding.pm lexical ?
26408      Branch: perl
26409            ! pod/perltodo.pod
26410 ____________________________________________________________________________
26411 [ 27208] By: rgs                                   on 2006/02/17  15:09:11
26412         Log: Subject: [PATCH] cleaning up perly.c
26413              From: andy@petdance.com (Andy Lester)
26414              Date: Sun, 12 Feb 2006 23:04:56 -0600
26415              Message-ID: <20060213050455.GA27993@petdance.com>
26416      Branch: perl
26417            ! perly.c
26418 ____________________________________________________________________________
26419 [ 27207] By: rgs                                   on 2006/02/17  14:27:22
26420         Log: Subject: Re: Perl_sighandler voodoo (was Re: Smoke [5.8.7] 26127 FAIL(XF) MSWin32 WinXP/.Net SP2 (x86/2 cpu))
26421              From: Robin Houston <robin@cpan.org>
26422              Date: Sun, 27 Nov 2005 00:43:13 +0000
26423              Message-ID: <20051127004313.GA7007@rpc142.cs.man.ac.uk>
26424              
26425              Simplification of the code in my_exit_jump() that unwinds context
26426              stacks
26427      Branch: perl
26428            ! perl.c
26429 ____________________________________________________________________________
26430 [ 27205] By: rgs                                   on 2006/02/17  08:50:27
26431         Log: Subject: Re: [perl #38485] use integer; 0x80000000/-1; # coredump
26432              From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
26433              Date: Mon, 13 Feb 2006 01:39:25 -0800
26434              Message-ID: <20060213093925.GA3476@efn.org>
26435      Branch: perl
26436            ! lib/integer.t pp.c
26437 ____________________________________________________________________________
26438 [ 27204] By: rgs                                   on 2006/02/16  14:44:10
26439         Log: Subject: Re: how to build with -DPERL_MEM_LOG ?
26440              From: Andy Dougherty <doughera@lafayette.edu>
26441              Date: Fri, 3 Feb 2006 11:55:58 -0500 (EST)
26442              Message-ID: <Pine.SOC.4.62.0602031129530.9630@maxwell.phys.lafayette.edu>
26443      Branch: perl
26444            ! x2p/a2p.h
26445 ____________________________________________________________________________
26446 [ 27203] By: rgs                                   on 2006/02/16  14:15:53
26447         Log: Subject: Problem compiling swigged c++ code with 5.8.8
26448              From: Merijn Broeren <merijnb@iloquent.com>
26449              Date: Wed, 15 Feb 2006 13:51:49 +0100
26450              Message-ID: <20060215125148.GA12535@brugman.iloquent.nl>
26451      Branch: perl
26452            ! XSUB.h perl.h
26453 ____________________________________________________________________________
26454 [ 27202] By: stevep                                on 2006/02/16  12:54:08
26455         Log: Upgrade to CGI-3.16, with version bump on CGI.pm for documentation
26456              fixes not yet integrated.
26457      Branch: perl
26458            ! lib/CGI.pm lib/CGI/Carp.pm lib/CGI/Changes lib/CGI/Cookie.pm
26459            ! lib/CGI/Fast.pm lib/CGI/t/cookie.t lib/CGI/t/function.t
26460            ! lib/CGI/t/html.t
26461 ____________________________________________________________________________
26462 [ 27201] By: rgs                                   on 2006/02/16  12:47:13
26463         Log: Remove lib/Hash directory when doing make distclean
26464      Branch: perl
26465            ! Makefile.SH
26466 ____________________________________________________________________________
26467 [ 27200] By: rgs                                   on 2006/02/16  11:46:51
26468         Log: Subject: [PATCH] stat() on Windows doesn't handle trailing slashes/backslashes correctly
26469              From: "Jan Dubois" <jand@ActiveState.com>
26470              Date: Wed, 15 Feb 2006 17:19:29 -0800
26471              Message-ID: <017901c63297$08e1e3f0$2217a8c0@candy>
26472      Branch: perl
26473            ! win32/win32.c
26474 ____________________________________________________________________________
26475 [ 27199] By: rgs                                   on 2006/02/16  11:43:09
26476         Log: Subject: [patch] t/lib/warnings/pp_sys
26477              From: "Green, Paul" <Paul.Green@stratus.com>
26478              Date: Wed, 15 Feb 2006 11:09:57 -0500
26479              Message-ID: <F5F42E77A43DD944B6D664B00A5401CB011A19AF@EXNA.corp.stratus.com>
26480      Branch: perl
26481            ! t/lib/warnings/pp_sys
26482 ____________________________________________________________________________
26483 [ 27198] By: rgs                                   on 2006/02/16  11:40:42
26484         Log: CPAN::FirstTime can go as well from the untested module list
26485      Branch: perl
26486            ! t/lib/1_compile.t
26487 ____________________________________________________________________________
26488 [ 27197] By: rgs                                   on 2006/02/16  11:38:00
26489         Log: Pod::Plainer is tested, actually (spotted by chromatic)
26490      Branch: perl
26491            ! t/lib/1_compile.t
26492 ____________________________________________________________________________
26493 [ 27195] By: rgs                                   on 2006/02/16  09:10:38
26494         Log: Subject: [PATCH] Make XCOPY not prompt every two seconds when rebuilding on Win32
26495              From: demerphq <demerphq@gmail.com>
26496              Date: Mon, 13 Feb 2006 09:41:37 +0100
26497              Message-ID: <9b18b3110602130041q2d64122am5c83392dd75e0413@mail.gmail.com>
26498      Branch: perl
26499            ! win32/Makefile win32/makefile.mk
26500 ____________________________________________________________________________
26501 [ 27194] By: gisle                                 on 2006/02/15  15:25:36
26502         Log: Get perl_fini() running on HP-UX again.
26503              It was effectively disabled by change 24667 since
26504              __ux_version is only available under DCE threads
26505              which isn't used when perl is built on HP-UX 11
26506              and later.
26507      Branch: perl
26508            ! perl.c
26509 ____________________________________________________________________________
26510 [ 27193] By: rgs                                   on 2006/02/15  13:22:27
26511         Log: Fix to run this test in the core
26512      Branch: perl
26513            ! lib/CPAN/t/03pkgs.t
26514 ____________________________________________________________________________
26515 [ 27192] By: stevep                                on 2006/02/15  13:11:06
26516         Log: Subject:  [PAUSE] CPAN Upload: A/AN/ANDK/CPAN-1.84.tar.gz
26517              From: andreas.koenig.gmwojprw@franz.ak.mind.de (Andreas J. Koenig)
26518              Date: Wed, 15 Feb 2006 09:19:56 +0100
26519              Message-ID: <87oe19owyb.fsf@k75.linux.bogus>
26520      Branch: perl
26521            + lib/CPAN/t/01loadme.t lib/CPAN/t/02nox.t lib/CPAN/t/03pkgs.t
26522            + lib/CPAN/t/10version.t lib/CPAN/t/11mirroredby.t
26523            - lib/CPAN/t/Nox.t lib/CPAN/t/loadme.t lib/CPAN/t/mirroredby.t
26524            - lib/CPAN/t/vcmp.t lib/CPAN/t/version.t
26525            ! MANIFEST lib/CPAN.pm lib/CPAN/Debug.pm lib/CPAN/FirstTime.pm
26526            ! lib/CPAN/HandleConfig.pm lib/CPAN/Nox.pm lib/CPAN/SIGNATURE
26527            ! lib/CPAN/Tarzip.pm lib/CPAN/Version.pm
26528 ____________________________________________________________________________
26529 [ 27190] By: merijn                                on 2006/02/15  09:11:12
26530         Log: Added hints/dragonfly.sh for #27189
26531      Branch: perl
26532            ! MANIFEST
26533 ____________________________________________________________________________
26534 [ 27189] By: merijn                                on 2006/02/15  09:07:43
26535         Log: Subject: Patch for perl to compile/work on DragonFlyBSD
26536              From: Robert Sebastian Gerus <arachnist@gmail.com>
26537              Date: Tue, 14 Feb 2006 17:27:52 +0100
26538              Message-ID: <4a1e16420602140827w17fd6595w@mail.gmail.com>
26539      Branch: perl
26540            + hints/dragonfly.sh
26541            ! Configure Makefile.SH
26542 ____________________________________________________________________________
26543 [ 27187] By: craigb                                on 2006/02/15  04:32:14
26544         Log: Subject: patch@27162 long path name support in readdir / cando_by_name
26545              From: "John E. Malmberg" <wb8tyw@qsl.net>
26546              Date: Sun, 12 Feb 2006 15:24:58 -0500
26547              Message-id: <43EF999A.1020500@qsl.net>
26548      Branch: perl
26549            ! vms/vms.c vms/vmsish.h
26550 ____________________________________________________________________________
26551 [ 27186] By: stevep                                on 2006/02/15  02:55:13
26552         Log: Version bump to go along with change #27185
26553      Branch: perl
26554            ! lib/Getopt/Long.pm
26555 ____________________________________________________________________________
26556 [ 27185] By: stevep                                on 2006/02/15  02:53:10
26557         Log: Subject: Getopt::Long::Configure 'no_getopt_compat'
26558              From: Abigail <abigail@abigail.nl>
26559              Date: Tue, 14 Feb 2006 23:58:07 +0100
26560              Message-ID: <20060214225806.GA4120@abigail.nl>
26561      Branch: perl
26562            ! lib/Getopt/Long.pm
26563 ____________________________________________________________________________
26564 [ 27184] By: nicholas                              on 2006/02/14  23:42:45
26565         Log: Back out change change 10214 (drop SVp_IOK from >> PRIVSHIFT) as it
26566              never felt quite correct, and other parts of the SV conversion
26567              implementation have improved such that the symptoms 10214 covered
26568              over are gone even without it.
26569      Branch: perl
26570            ! mg.c scope.c sv.c
26571 ____________________________________________________________________________
26572 [ 27182] By: stevep                                on 2006/02/14  17:50:06
26573         Log: Upgrade to Time-HiRes-1.87
26574      Branch: perl
26575            ! ext/Time/HiRes/Changes ext/Time/HiRes/HiRes.pm
26576            ! ext/Time/HiRes/t/HiRes.t
26577 ____________________________________________________________________________
26578 [ 27181] By: stevep                                on 2006/02/14  17:41:02
26579         Log: Hash::Util tests should check if Hash::Util has been built, not
26580              List::Util (spotted by Rafael).
26581      Branch: perl
26582            ! ext/Hash/Util/t/Util.t
26583 ____________________________________________________________________________
26584 [ 27180] By: stevep                                on 2006/02/14  17:08:08
26585         Log: Subject: [Patch] Enhance Hash::Util
26586              From: demerphq <demerphq@gmail.com>
26587              Date: Mon, 13 Feb 2006 11:39:33 +0100
26588              Message-ID: <9b18b3110602130239w311d05fcr776ae8333776ca2e@mail.gmail.com>
26589      Branch: perl
26590            + ext/Hash/Util/Changes ext/Hash/Util/Makefile.PL
26591            + ext/Hash/Util/Util.xs ext/Hash/Util/lib/Hash/Util.pm
26592            + ext/Hash/Util/t/Util.t
26593            - lib/Hash/Util.pm lib/Hash/Util.t
26594            ! MANIFEST win32/Makefile win32/makefile.mk
26595 ____________________________________________________________________________
26596 [ 27179] By: rgs                                   on 2006/02/14  13:23:04
26597         Log: One shouldn't be able to dereference a GLOB as a SCALAR.
26598              
26599              Subject: Re: [perl #38484] Data::Dumper only warns on unhandled reference types
26600              From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
26601              Date: Sun, 12 Feb 2006 09:18:39 -0800
26602              Message-ID: <20060212171839.GA3604@efn.org>
26603              
26604              plus regression tests.
26605      Branch: perl
26606            ! pp.c t/op/ref.t
26607 ____________________________________________________________________________
26608 [ 27178] By: rgs                                   on 2006/02/14  10:18:48
26609         Log: Remove a my_perl that slipped in
26610      Branch: perl
26611            ! perlio.c
26612 ____________________________________________________________________________
26613 [ 27177] By: rgs                                   on 2006/02/14  10:00:36
26614         Log: Subject: [PATCH] Sun Studio lint patches
26615              From: andy@petdance.com (Andy Lester)
26616              Date: Mon, 13 Feb 2006 23:46:17 -0600
26617              Message-ID: <20060214054617.GA8824@petdance.com>
26618      Branch: perl
26619            ! Makefile.SH gv.c hv.c op.c pad.c perlio.c pp.c pp_ctl.c
26620            ! pp_hot.c regcomp.c sv.c toke.c utf8.c
26621 ____________________________________________________________________________
26622 [ 27176] By: nicholas                              on 2006/02/13  21:46:13
26623         Log: Ensure that public I, N and P flags are off when SvTAINT is called on
26624              something that already has taint magic.
26625      Branch: perl
26626            ! sv.c
26627 ____________________________________________________________________________
26628 [ 27174] By: rgs                                   on 2006/02/13  17:27:59
26629         Log: Subject: [PATCH] perldiag.pod patching re: integer overflow
26630              From: andy@petdance.com (Andy Lester)
26631              Date: Sun, 12 Feb 2006 23:08:48 -0600
26632              Message-ID: <20060213050848.GB27993@petdance.com>
26633      Branch: perl
26634            ! pod/perldiag.pod pod/perlop.pod
26635 ____________________________________________________________________________
26636 [ 27173] By: rgs                                   on 2006/02/13  17:17:40
26637         Log: Subject: [perl #38346] [PATCH] Re: B::Deparse's bug?
26638              From: Stephen McCamant <smcc@mit.edu>
26639              Date: Wed, 8 Feb 2006 17:48:49 -0800
26640              Message-ID: <17386.40833.64309.454938@conquest.OCF.Berkeley.EDU>
26641      Branch: perl
26642            ! ext/B/B/Deparse.pm
26643 ____________________________________________________________________________
26644 [ 27172] By: steveh                                on 2006/02/13  16:46:14
26645         Log: Teach checkAUTHORS.pl about Changelogs with leading tabs
26646              in the log entries, and fix a malformed log entry in Changes5.005
26647      Branch: perl
26648            ! Changes5.005 Porting/checkAUTHORS.pl
26649 ____________________________________________________________________________
26650 [ 27171] By: steveh                                on 2006/02/13  16:03:23
26651         Log: Revert an assert() fix in the light of change #27152
26652              
26653              The MinGW problem described here:
26654              http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2006-01/msg00146.html
26655              was fixed by change #26664. This is no longer relevant in the light of
26656              change #27152, so revert it.
26657              
26658              (The other problems with VC++ 6 and BCC, fixed by change #26634, have
26659              not gone away, however.)
26660      Branch: perl
26661            ! gv.h
26662 ____________________________________________________________________________
26663 [ 27169] By: nicholas                              on 2006/02/13  15:12:58
26664         Log: All the bits of clone_params.flags need to be initialised, not just
26665              CLONEf_JOIN_IN.
26666      Branch: perl
26667            ! ext/threads/threads.xs
26668 ____________________________________________________________________________
26669 [ 27166] By: nicholas                              on 2006/02/12  19:03:47
26670         Log: Fix change 27059 so that it actually works with >16 file descriptors.
26671              With programmers like these, we need Stadler & Waldorf on code review.
26672      Branch: perl
26673            ! perlio.c
26674 ____________________________________________________________________________
26675 [ 27162] By: nicholas                              on 2006/02/11  22:52:40
26676         Log: In perldiag.pod add an entry for the error message that change 27155
26677              introduced.
26678      Branch: perl
26679            ! pod/perldiag.pod
26680 ____________________________________________________________________________
26681 [ 27161] By: nicholas                              on 2006/02/11  16:10:22
26682         Log: Remove SOFT_CAST() as it no longer does anything useful.
26683      Branch: perl
26684            ! perl.h scope.h
26685 ____________________________________________________________________________
26686 [ 27159] By: nicholas                              on 2006/02/11  15:10:32
26687         Log: Coalesce 2 if blocks with duplicated conditions in Perl_sv_dup.
26688      Branch: perl
26689            ! sv.c
26690 ____________________________________________________________________________
26691 [ 27158] By: stevep                                on 2006/02/11  14:16:45
26692         Log: Test to go with change #27155.
26693      Branch: perl
26694            ! lib/integer.t
26695 ____________________________________________________________________________
26696 [ 27155] By: stevep                                on 2006/02/11  06:14:02
26697         Log: Die when integer overflow condition is detected in division under
26698              C<use integer>.  Hopefully fixes RT #38485.
26699      Branch: perl
26700            ! pp.c
26701 ____________________________________________________________________________
26702 [ 27154] By: nicholas                              on 2006/02/11  00:40:04
26703         Log: assert() that we can't reach two unreachable code paths
26704              (in Perl_magic_get and Perl_pp_shift).
26705      Branch: perl
26706            ! mg.c pp.c
26707 ____________________________________________________________________________
26708 [ 27153] By: nicholas                              on 2006/02/10  22:37:23
26709         Log: The return value from S_hv_auxinit can be ignored, as it's also stored
26710              within the passed in hv parameter.
26711      Branch: perl
26712            ! embed.fnc proto.h
26713 ____________________________________________________________________________
26714 [ 27152] By: steveh                                on 2006/02/10  17:46:35
26715         Log: A better fix than 27148
26716              
26717              Subject: Win32 assert (was Re: Smoke [5.9.4] 27145 FAIL(M) MSWin32 WinXP/.Net SP2 (x86/2 cpu))
26718              From: Nicholas Clark <nick@ccl4.org>
26719              Date: Fri, 10 Feb 2006 14:58:47 +0000
26720              Message-ID: <20060210145847.GA85020@plum.flirble.org>
26721              
26722              Subject: RE: Win32 assert (was Re: Smoke [5.9.4] 27145 FAIL(M) MSWin32 WinXP/.Net SP2 (x86/2 cpu))
26723              From: "Jan Dubois" <jand@ActiveState.com>
26724              Date: Fri, 10 Feb 2006 09:03:41 -0800
26725              Message-ID: <024401c62e63$f1e53c10$6062a8c0@candy>
26726      Branch: perl
26727            ! embed.fnc embed.h hv.c perl.h proto.h sv.c
26728 ____________________________________________________________________________
26729 [ 27151] By: nicholas                              on 2006/02/10  14:25:33
26730         Log: With PERL_POISON defined, ensure freshly malloc()ed memory isn't zeros,
26731              and when PERL_TRACK_MEMPOOL is also defined scribble on any extension
26732              added by realloc().
26733      Branch: perl
26734            ! util.c
26735 ____________________________________________________________________________
26736 [ 27148] By: steveh                                on 2006/02/10  11:20:23
26737         Log: Fix the effects of 27136 on Win32 with DEBUGGING and PERL_IMPLICIT_SYS
26738      Branch: perl
26739            ! embed.fnc embed.h hv.c proto.h sv.c
26740 ____________________________________________________________________________
26741 [ 27145] By: nicholas                              on 2006/02/09  23:23:59
26742         Log: Change 27136 seems to have inadvertently upset some compilers,
26743              presumably where NULL was defined as 0, not (void *)0
26744      Branch: perl
26745            ! op.c
26746 ____________________________________________________________________________
26747 [ 27140] By: stevep                                on 2006/02/09  18:25:02
26748         Log: Fix breakage in S_set_csh() from change #27136.
26749      Branch: perl
26750            ! toke.c
26751 ____________________________________________________________________________
26752 [ 27139] By: gisle                                 on 2006/02/09  18:09:01
26753         Log: Document incompatible interpretation of chdir FOO.
26754              Ref change 27125.
26755      Branch: perl
26756            ! pod/perl594delta.pod
26757 ____________________________________________________________________________
26758 [ 27138] By: rgs                                   on 2006/02/09  17:49:18
26759         Log: Really regenerate headers
26760      Branch: perl
26761            ! embed.h proto.h
26762 ____________________________________________________________________________
26763 [ 27137] By: stevep                                on 2006/02/09  17:40:02
26764         Log: Regenerated headers for change #27136.
26765      Branch: perl
26766            ! embed.h proto.h
26767 ____________________________________________________________________________
26768 [ 27136] By: stevep                                on 2006/02/09  16:49:32
26769         Log: Subject: [PATCH] Trying my "remove the pTHXes" patch again
26770              From: Andy Lester <andy@petdance.com>
26771              Date: Thu, 9 Feb 2006 09:40:18 -0600
26772              Message-ID: <20060209154018.GA14610@petdance.com>
26773      Branch: perl
26774            ! Makefile.SH cc_runtime.h cop.h deb.c embed.fnc hv.c mg.c op.c
26775            ! op.h perl.c pp.c pp_ctl.c pp_sort.c regcomp.c regexec.c sv.c
26776            ! toke.c utf8.c util.c
26777 ____________________________________________________________________________
26778 [ 27135] By: rgs                                   on 2006/02/09  12:38:35
26779         Log: Skip new chdir warning test if fchdir is not available
26780      Branch: perl
26781            ! t/lib/warnings/pp_sys
26782 ____________________________________________________________________________
26783 [ 27134] By: nicholas                              on 2006/02/09  12:37:13
26784         Log: Avoid calling all the scanning code in gv_fetchpvn_flags when saving
26785              $1 etc, as we can perfom a hash lookup on %:: directly.
26786      Branch: perl
26787            ! regcomp.c
26788 ____________________________________________________________________________
26789 [ 27133] By: nicholas                              on 2006/02/08  20:57:24
26790         Log: lastparen in the regexp structure is never initialised, and so will
26791              still be uninitialised after a failed match, yet various points in
26792              mg.c read it come what may. Should fix bug 38461.
26793      Branch: perl
26794            ! regcomp.c
26795 ____________________________________________________________________________
26796 [ 27132] By: gisle                                 on 2006/02/08  17:52:16
26797         Log: Bareword file handles not supported for chown/chmod/utime.
26798      Branch: perl
26799            ! pod/perlfunc.pod
26800 ____________________________________________________________________________
26801 [ 27131] By: rgs                                   on 2006/02/08  16:57:48
26802         Log: Wave hands about encoding::warnings
26803      Branch: perl
26804            ! pod/perltodo.pod
26805 ____________________________________________________________________________
26806 [ 27130] By: rgs                                   on 2006/02/08  13:15:51
26807         Log: Subject: [perl #38464] chdir() on closed handles 
26808              From: Peter Dintelmann (via RT) <perlbug-followup@perl.org>
26809              Date: Wed, 08 Feb 2006 01:33:54 -0800
26810              Message-ID: <rt-3.0.11-38464-129771.3.46114092925276@perl.org>
26811              
26812              Plus a regression test.
26813      Branch: perl
26814            ! pp_sys.c t/lib/warnings/pp_sys
26815 ____________________________________________________________________________
26816 [ 27129] By: stevep                                on 2006/02/08  03:23:27
26817         Log: Subject: [PATCH] Handle unused args
26818              From: andy@petdance.com (Andy Lester)
26819              Date: Tue, 7 Feb 2006 16:36:56 -0600
26820              Message-ID: <20060207223656.GA5177@petdance.com>
26821      Branch: perl
26822            ! doio.c pad.c perl.c pp_sys.c
26823 ____________________________________________________________________________
26824 [ 27128] By: stevep                                on 2006/02/08  03:04:05
26825         Log: Subject: [patch] several broken make *.valgrind targets
26826              From: Jim Cromie <jim.cromie@gmail.com>
26827              Date: Tue, 07 Feb 2006 15:11:54 -0700
26828              Message-ID: <43E91B2A.4060700@gmail.com>
26829      Branch: perl
26830            ! Makefile.SH
26831 ____________________________________________________________________________
26832 [ 27127] By: nicholas                              on 2006/02/08  00:05:44
26833         Log: Borland's C compiler warns that the & is unnecessary.
26834      Branch: perl
26835            ! pp.c
26836 ____________________________________________________________________________
26837 [ 27126] By: nicholas                              on 2006/02/07  18:01:26
26838         Log: Merging pp_bit_or and pp_bit_xor shrinks the object code by about .7K.
26839              The overloading tests are not free.
26840      Branch: perl
26841            ! mathoms.c opcode.h opcode.pl pp.c pp.h
26842 ____________________________________________________________________________
26843 [ 27125] By: gisle                                 on 2006/02/07  17:32:50
26844         Log: Allow bareword file handle as argument to chdir().
26845              This copies the mechanism used by truncate().
26846              Fixes bug #38457.
26847      Branch: perl
26848            ! embed.h op.c opcode.h opcode.pl pp.sym pp_proto.h pp_sys.c
26849            ! t/op/chdir.t
26850 ____________________________________________________________________________
26851 [ 27124] By: nicholas                              on 2006/02/07  17:12:08
26852         Log: All the trancendental unary operators can be merged into PP_sin
26853              (cos, exp, log, sqrt)
26854      Branch: perl
26855            ! mathoms.c opcode.h opcode.pl pp.c
26856 ____________________________________________________________________________
26857 [ 27123] By: nicholas                              on 2006/02/07  15:52:18
26858         Log: Avoid gcc warning about possibly uninitialised variables.
26859      Branch: perl
26860            ! pp.c
26861 ____________________________________________________________________________
26862 [ 27122] By: nicholas                              on 2006/02/07  15:28:41
26863         Log: Create new macros AMG_CALLun_var, AMG_CALLun_var and tryAMAGICun_var
26864              which don't do the pre-processor string manipulation internally.
26865      Branch: perl
26866            ! pp.c pp.h
26867 ____________________________________________________________________________
26868 [ 27121] By: nicholas                              on 2006/02/07  14:57:36
26869         Log: pp_pop can be implemented by pp_shift.
26870      Branch: perl
26871            ! mathoms.c opcode.h opcode.pl pp.c
26872 ____________________________________________________________________________
26873 [ 27120] By: rgs                                   on 2006/02/07  14:37:15
26874         Log: Subject: Re: [PATCH] Documentation patch for overload
26875              From: Steffen Mueller <dtr8sin02@sneakemail.com>
26876              Date: Mon, 06 Feb 2006 10:58:44 +0100
26877              Message-ID: <43E71DD4.5010108@sneakemail.com>
26878      Branch: perl
26879            ! lib/overload.pm
26880 ____________________________________________________________________________
26881 [ 27119] By: nicholas                              on 2006/02/07  14:11:42
26882         Log: pp_hex can be implemented trivially by pp_oct, making pp_hex a mathom.
26883      Branch: perl
26884            ! mathoms.c opcode.h opcode.pl pp.c
26885 ____________________________________________________________________________
26886 [ 27118] By: nicholas                              on 2006/02/07  13:13:44
26887         Log: Merge pp_index and pp_rindex - we have another mathom.
26888      Branch: perl
26889            ! mathoms.c opcode.h opcode.pl pp.c
26890 ____________________________________________________________________________
26891 [ 27117] By: nicholas                              on 2006/02/07  12:41:27
26892         Log: Some refactoring to converge pp_index and pp_rindex
26893      Branch: perl
26894            ! pp.c
26895 ____________________________________________________________________________
26896 [ 27116] By: nicholas                              on 2006/02/07  12:19:17
26897         Log: Fix bug 38454 (rindex corrects for $[ on bytes rather than UTF-8)
26898      Branch: perl
26899            ! pp.c t/op/index.t
26900 ____________________________________________________________________________
26901 [ 27115] By: craigb                                on 2006/02/07  04:46:47
26902         Log: Subject: Re: Configure.com issue, more quoting needed.
26903              From: Peter Prymmer <PPrymmer@factset.com>
26904              Date: Mon, 06 Feb 2006 13:27:14 -0500
26905              Message-id:  <OF3536E719.A8B8D167-ON8525710D.0065011E-8525710D.00655ED0@factset.com>
26906      Branch: perl
26907            ! configure.com
26908 ____________________________________________________________________________
26909 [ 27114] By: craigb                                on 2006/02/07  04:39:09
26910         Log: Subject: patch@27082 Allow fatal exceptions to bring up VMS debugger
26911              From: "John E. Malmberg" <wb8tyw@qsl.net>
26912              Date: Sat, 04 Feb 2006 16:04:32 -0500
26913              Message-id: <43E516E0.1000508@qsl.net>
26914
26915      Branch: perl
26916            ! vms/perlvms.pod vms/vms.c
26917 ____________________________________________________________________________
26918 [ 27113] By: nicholas                              on 2006/02/06  22:28:41
26919         Log: Optimise index so that if the big string is ISO-8859-1 but the little
26920              string is UTF-8, it tries to downgrade the little string, rather than
26921              upgrade the big string. For half-meg big strings this is a fourfold
26922              speed gain.
26923      Branch: perl
26924            ! pp.c
26925 ____________________________________________________________________________
26926 [ 27112] By: nicholas                              on 2006/02/06  21:40:57
26927         Log: Given that the memory allocated in Perl_bytes_from_utf8 and
26928              Perl_bytes_to_utf8 will immediately be written to, I see no need to
26929              allocate it zeroed.
26930      Branch: perl
26931            ! utf8.c
26932 ____________________________________________________________________________
26933 [ 27111] By: nicholas                              on 2006/02/06  20:52:41
26934         Log: Rename S_glob_assign to S_glob_assign_glob
26935              Rename S_pvgv_assign to S_glob_assign_ref
26936              
26937              I don't think that they share enough common code to merge them.
26938      Branch: perl
26939            ! sv.c
26940 ____________________________________________________________________________
26941 [ 27110] By: nicholas                              on 2006/02/06  20:12:58
26942         Log: I think that "merge Perl_sv_2[inpu]v" and "reduce duplication in
26943              sv_setsv_flags" are about as done as they can be.
26944      Branch: perl
26945            ! pod/perltodo.pod
26946 ____________________________________________________________________________
26947 [ 27109] By: nicholas                              on 2006/02/06  20:04:35
26948         Log: In Perl_sv_upgrade, the assignment to new_type_details only needs to
26949              be done once.
26950      Branch: perl
26951            ! sv.c
26952 ____________________________________________________________________________
26953 [ 27108] By: stevep                                on 2006/02/06  19:43:17
26954         Log: Document the limitations of calling exit() (instead of _exit()) from
26955              a child process on Solaris.
26956      Branch: perl
26957            ! pod/perlfork.pod
26958 ____________________________________________________________________________
26959 [ 27107] By: nicholas                              on 2006/02/06  18:45:35
26960         Log: Remove a duplicate flag copy line from Perl_sv_setsv_flags.
26961      Branch: perl
26962            ! sv.c
26963 ____________________________________________________________________________
26964 [ 27106] By: nicholas                              on 2006/02/06  18:07:28
26965         Log: Move Perl_save_long, Perl_save_I16, Perl_save_I8, Perl_save_iv,
26966              Perl_save_nogv, Perl_save_list, Perl_save_destructor to mathoms.c
26967              Perl_save_svref can't actually move because it calls a static function.
26968      Branch: perl
26969            ! mathoms.c scope.c
26970 ____________________________________________________________________________
26971 [ 27105] By: nicholas                              on 2006/02/06  16:50:22
26972         Log: Expunge USE_5005THREADS from perl.c
26973      Branch: perl
26974            ! perl.c
26975 ____________________________________________________________________________
26976 [ 27104] By: nicholas                              on 2006/02/06  13:08:34
26977         Log: Fix bug #38439 - reference to typeglob assignment needs to be based
26978              on SvROK(sstr) rather than SvTYPE(sstr) == SVt_RV.
26979      Branch: perl
26980            ! sv.c t/op/gv.t
26981 ____________________________________________________________________________
26982 [ 27103] By: rgs                                   on 2006/02/06  09:42:33
26983         Log: Subject: [PATCH] 5.8.8: Unicos test skip (and for the record: config.sh and harness results)
26984              From: Jarkko Hietaniemi <jhietaniemi@gmail.com>
26985              Date: Sun, 05 Feb 2006 12:16:37 +0200
26986              Message-ID: <43E5D085.90400@iki.fi>
26987      Branch: perl
26988            ! lib/Math/BigInt/t/bigintc.t
26989 ____________________________________________________________________________
26990 [ 27102] By: stevep                                on 2006/02/06  04:48:04
26991         Log: Subject: [PATCH] Cleaning up shadowed variables
26992              From: Andy Lester <andy@petdance.com>
26993              Date: Sun, 5 Feb 2006 21:56:43 -0600
26994              Message-Id: <B375E848-FA07-479D-9571-FA3925106D16@petdance.com>
26995      Branch: perl
26996            ! op.c pp_ctl.c
26997 ____________________________________________________________________________
26998 [ 27101] By: nicholas                              on 2006/02/05  23:44:12
26999         Log: Merge the PVCV case into the common code in S_pvgv_assign.
27000      Branch: perl
27001            ! sv.c
27002 ____________________________________________________________________________
27003 [ 27100] By: nicholas                              on 2006/02/05  23:20:21
27004         Log: Merge the PVAV and PVHV clauses into the common code of S_pvgv_assign.
27005      Branch: perl
27006            ! sv.c
27007 ____________________________________________________________________________
27008 [ 27099] By: nicholas                              on 2006/02/05  23:02:58
27009         Log: Merge the default case (GvSV) with the common code in S_pvgv_assign.
27010      Branch: perl
27011            ! sv.c
27012 ____________________________________________________________________________
27013 [ 27098] By: nicholas                              on 2006/02/05  22:41:42
27014         Log: Start to merge the 6 arms of S_pvgv_assign into one.
27015      Branch: perl
27016            ! sv.c
27017 ____________________________________________________________________________
27018 [ 27097] By: nicholas                              on 2006/02/05  22:00:11
27019         Log: Subject: [patch] rework arenas - repair arenasets
27020              From: Jim Cromie <jim.cromie@gmail.com>
27021              Message-ID: <43E5F012.1080203@gmail.com>
27022              Date: Sun, 05 Feb 2006 05:31:14 -0700
27023      Branch: perl
27024            ! hv.c sv.c
27025 ____________________________________________________________________________
27026 [ 27096] By: rgs                                   on 2006/02/05  21:22:03
27027         Log: Subject: [PATCH] Documentation patch for overload
27028              From: Steffen Mueller <dtr8sin02@sneakemail.com>
27029              Date: Feb 5, 2006 12:26 PM
27030              Message-ID: <43E5E0E9.1070707@sneakemail.com>
27031      Branch: perl
27032            ! lib/overload.pm
27033 ____________________________________________________________________________
27034 [ 27095] By: nicholas                              on 2006/02/05  20:51:43
27035         Log: The message "Can't upgrade that kind of scalar" can be far more
27036              informative.
27037      Branch: perl
27038            ! pod/perldiag.pod sv.c
27039 ____________________________________________________________________________
27040 [ 27094] By: nicholas                              on 2006/02/05  20:33:57
27041         Log: new_body_type doesn't need to subtract the offset, that's what
27042              new_body_allocated is for.
27043      Branch: perl
27044            ! sv.c
27045 ____________________________________________________________________________
27046 [ 27093] By: nicholas                              on 2006/02/05  20:26:40
27047         Log: Yes, I broke Win32 with change 27089 by having a { in the wrong place.
27048      Branch: perl
27049            ! perl.c
27050 ____________________________________________________________________________
27051 [ 27092] By: nicholas                              on 2006/02/05  19:52:50
27052         Log: Remove "Can't upgrade to undef" from perldiag, as the corresponding
27053              code is now gone from sv_upgrade.
27054      Branch: perl
27055            ! pod/perldiag.pod
27056 ____________________________________________________________________________
27057 [ 27091] By: nicholas                              on 2006/02/05  19:45:37
27058         Log: Merge and refactor the PVAV and PVHV code in Perl_sv_upgrade, which
27059              reduces the object size by about 80 bytes.
27060      Branch: perl
27061            ! sv.c
27062 ____________________________________________________________________________
27063 [ 27090] By: nicholas                              on 2006/02/05  18:51:17
27064         Log: Eliminate a croak we can't get to.
27065      Branch: perl
27066            ! sv.c
27067 ____________________________________________________________________________
27068 [ 27089] By: nicholas                              on 2006/02/05  11:15:34
27069         Log: Without this Windows and Netware compilers should be complaining 
27070              about perl.c having code before a declaration, *but only if compiling
27071              with PERL_TRACK_MEMPOOL*. So, will it fix the smoke failures? Place
27072              bets now.
27073      Branch: perl
27074            ! perl.c
27075 ____________________________________________________________________________
27076 [ 27088] By: stevep                                on 2006/02/05  05:08:02
27077         Log: Don't export PL_memory_debug_header to Win32 (and others) unless 
27078              PERL_TRACK_MEMPOOL is defined.
27079      Branch: perl
27080            ! makedef.pl
27081 ____________________________________________________________________________
27082 [ 27087] By: stevep                                on 2006/02/05  04:13:27
27083         Log: Fixed embed.fnc entry for S_forbid_setid() and picked up a change in 
27084              pod/perlapi.pod for good measure when regenerating files.
27085      Branch: perl
27086            ! embed.fnc pod/perlapi.pod proto.h
27087 ____________________________________________________________________________
27088 [ 27086] By: nicholas                              on 2006/02/04  22:51:17
27089         Log: bcc was issuing a warning about this line in Perl_sv_2cv, so tweak it
27090              to keep it happy.
27091      Branch: perl
27092            ! sv.c
27093 ____________________________________________________________________________
27094 [ 27085] By: nicholas                              on 2006/02/04  22:13:08
27095         Log: Add regression tests to lib/charnames.t to ensure that unicore/Names.pl
27096              is 100% 7 bit ASCII.
27097      Branch: perl
27098            ! lib/charnames.t
27099 ____________________________________________________________________________
27100 [ 27084] By: nicholas                              on 2006/02/04  19:09:17
27101         Log: Enhance PERL_TRACK_MEMPOOL so that it also emulates the PerlHost
27102              behaviour of freeing up all memory at thread exit. With this and
27103              tools such as valgrind you will now get warnings as soon as you
27104              read from the deallocated memory, rather than just a warning much
27105              later about freeing to the wrong pool.
27106      Branch: perl
27107            ! embedvar.h intrpvar.h perl.c perl.h perlapi.h pod/perltodo.pod
27108            ! sv.c util.c
27109 ____________________________________________________________________________
27110 [ 27083] By: nicholas                              on 2006/02/04  18:48:09
27111         Log: The TODO 'Tidy up global variables' can go, replaced with a second
27112              paragraph on 'Ordering of "global" variables'.
27113      Branch: perl
27114            ! pod/perltodo.pod
27115 ____________________________________________________________________________
27116 [ 27082] By: nicholas                              on 2006/02/04  17:11:54
27117         Log: I believe that mathoms have been completely TODOne.
27118      Branch: perl
27119            ! pod/perltodo.pod
27120 ____________________________________________________________________________
27121 [ 27081] By: nicholas                              on 2006/02/04  13:27:00
27122         Log: Rejig the definition of ARENAS_PER_SET to maximise the size of the
27123              array whilst keeping the structure within PERL_ARENA_SIZE.
27124      Branch: perl
27125            ! sv.c
27126 ____________________________________________________________________________
27127 [ 27080] By: nicholas                              on 2006/02/04  13:00:06
27128         Log: Tweak arena sets to avoid assignment between different pointers.
27129      Branch: perl
27130            ! sv.c
27131 ____________________________________________________________________________
27132 [ 27079] By: nicholas                              on 2006/02/04  12:28:03
27133         Log: Subject: [patch] arena rework - arena sets
27134              From: Jim Cromie <jim.cromie@gmail.com>
27135              Message-ID: <43DF4F66.4080808@gmail.com>
27136              Date: Tue, 31 Jan 2006 04:52:06 -0700
27137      Branch: perl
27138            ! embed.fnc embed.h hv.c proto.h sv.c
27139 ____________________________________________________________________________
27140 [ 27078] By: nicholas                              on 2006/02/04  11:10:52
27141         Log: warnings.h does some evil(*) pointer arithmetic on (SV *)0, so a
27142              simple replace of Nullsv with NULL turns out to be a bad idea.
27143              * Technically undefined behaviour, I believe.
27144      Branch: perl
27145            ! warnings.h warnings.pl
27146 ____________________________________________________________________________
27147 [ 27077] By: nicholas                              on 2006/02/04  10:37:08
27148         Log: Remove obsolete comment.
27149      Branch: perl
27150            ! perl.c
27151 ____________________________________________________________________________
27152 [ 27076] By: nicholas                              on 2006/02/03  23:21:37
27153         Log: S_find_beginning is only called from one place, so by hoisting the
27154              forbid_setid check for -x into the caller, we can eliminate the
27155              suidscript parameter from S_find_beginning.
27156      Branch: perl
27157            ! embed.fnc embed.h perl.c proto.h
27158 ____________________________________________________________________________
27159 [ 27075] By: nicholas                              on 2006/02/03  22:41:55
27160         Log: And as we've now got to the point where all calls to Perl_moreswitches
27161              have -1 as the second argument, we can remove the second argument,
27162              which gets us back to where we started, only with the elimination of
27163              a per-thread variable.
27164      Branch: perl
27165            ! embed.fnc embed.h perl.c proto.h toke.c
27166 ____________________________________________________________________________
27167 [ 27074] By: nicholas                              on 2006/02/03  22:18:45
27168         Log: The MSDOS-only call to moreswitches will never reach forbid_setid, so
27169              it can have a parameter of -1 without changing any behaviour.
27170              I see no reason to forbid "command line" switches when they are
27171              actually coming from the #! line of the script itself (as read by perl)
27172              as they must have been written by the owner of the script, rather than
27173              being crafted by the user manipulating the command line, and therefore
27174              cannot be subverted. (Or alternatively, can be subverted as easily as
27175              the rest of the script, and we're permitting *that* to be run)
27176      Branch: perl
27177            ! perl.c
27178 ____________________________________________________________________________
27179 [ 27073] By: nicholas                              on 2006/02/03  21:47:04
27180         Log: Pull the variables fdscript and suidscript into a much smaller scope.
27181              Replace suidscript with literal -1 where it could only have been -1.
27182              (Re-indent the other code inside the new block creating the scope.
27183              Rejig the indentation of the conditionals)
27184      Branch: perl
27185            ! perl.c
27186 ____________________________________________________________________________
27187 [ 27072] By: nicholas                              on 2006/02/03  21:23:21
27188         Log: Change 27070 failed to initialise a variable. (But despite that still
27189              passed all tests locally.)
27190      Branch: perl
27191            ! perl.c
27192 ____________________________________________________________________________
27193 [ 27071] By: nicholas                              on 2006/02/03  20:12:10
27194         Log: Silence a warning about "statement not reached" from the Sun C compiler.
27195              It was accurate - the conditional code used to give 2 return statements.
27196      Branch: perl
27197            ! mathoms.c
27198 ____________________________________________________________________________
27199 [ 27070] By: nicholas                              on 2006/02/03  20:10:07
27200         Log: Eliminating PL_suidscript is more tricky, and requires changing the
27201              prototype of Perl_moreswitches.
27202      Branch: perl
27203            ! embed.fnc embed.h embedvar.h intrpvar.h perl.c perlapi.h
27204            ! proto.h toke.c
27205 ____________________________________________________________________________
27206 [ 27069] By: nicholas                              on 2006/02/03  18:27:52
27207         Log: Passing the flag to S_forbit_setid as a single char rather than a
27208              string is a slight space optimisation.
27209      Branch: perl
27210            ! embed.fnc intrpvar.h perl.c proto.h
27211 ____________________________________________________________________________
27212 [ 27068] By: nicholas                              on 2006/02/03  18:10:45
27213         Log: Oops. I *thought* that I had checked that all changed files were open.
27214              Clearly not. (Fixes change 27066)
27215      Branch: perl
27216            ! embed.h embedvar.h perlapi.h proto.h
27217 ____________________________________________________________________________
27218 [ 27067] By: nicholas                              on 2006/02/03  17:06:43
27219         Log: Oops. When changing warnings.pl one should re-run it. Well spotted
27220              Rafael.
27221      Branch: perl
27222            ! warnings.h
27223 ____________________________________________________________________________
27224 [ 27066] By: nicholas                              on 2006/02/03  17:06:04
27225         Log: It's actually easier to get rid of PL_fdscript than we thought.
27226      Branch: perl
27227            ! embed.fnc intrpvar.h perl.c
27228 ____________________________________________________________________________
27229 [ 27065] By: nicholas                              on 2006/02/03  16:03:01
27230         Log: Subject: Re: [PATCH] s/Null(gv|hv|sv)/NULL/g
27231              From: Steven Schubiger <schubiger@cpan.org>
27232              Message-ID: <20060203152449.GI12591@accognoscere.homeunix.org>
27233              Date: Fri, 3 Feb 2006 16:24:49 +0100
27234      Branch: perl
27235            ! cop.h doio.c doop.c dump.c embed.pl gv.c hv.c hv.h intrpvar.h
27236            ! locale.c mathoms.c mg.c op.c pad.c pad.h perl.c perlio.c
27237            ! perlio.h pp_ctl.c pp_hot.c pp_pack.c pp_sort.c pp_sys.c
27238            ! regexec.c scope.c sv.c sv.h thrdvar.h toke.c utf8.c util.c
27239            ! warnings.pl
27240 ____________________________________________________________________________
27241 [ 27064] By: rgs                                   on 2006/02/03  15:18:18
27242         Log: Fix file where internal XS functions are defined
27243      Branch: perl
27244            ! universal.c
27245 ____________________________________________________________________________
27246 [ 27063] By: rgs                                   on 2006/02/03  14:06:40
27247         Log: Help to compile on VMS with UNLINK_ALL_VERSIONS
27248              See :
27249              Subject: bug@26347 embed.fnc/embed.h with unlnk macro
27250              From: "John E. Malmberg" <wb8tyw@qsl.net>
27251              Date: Tue, 13 Dec 2005 22:18:56 -0500
27252              Message-ID: <439F8F20.4050207@qsl.net>
27253      Branch: perl
27254            ! perl.h
27255 ____________________________________________________________________________
27256 [ 27062] By: rgs                                   on 2006/02/03  13:46:46
27257         Log: Subject: [PAUSE] CPAN Upload: A/AN/ANDK/CPAN-1.83_64.tar.gz
27258              From: andreas.koenig.gmwojprw@franz.ak.mind.de (Andreas J. Koenig)
27259              Date: Thu, 02 Feb 2006 12:35:41 +0100
27260              Message-ID: <87acda0z8y.fsf@k75.linux.bogus>
27261      Branch: perl
27262            ! lib/CPAN.pm lib/CPAN/FirstTime.pm lib/CPAN/HandleConfig.pm
27263            ! lib/CPAN/SIGNATURE
27264 ____________________________________________________________________________
27265 [ 27061] By: rgs                                   on 2006/02/03  13:35:44
27266         Log: Subject: L<PerlIO> and Pod::Html
27267              From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
27268              Date: Mon, 09 Jan 2006 12:53:15 +0900
27269              Message-Id: <20060109125220.3BB0.BQW10602@nifty.com>
27270      Branch: perl
27271            ! lib/Pod/Html.pm
27272 ____________________________________________________________________________
27273 [ 27060] By: nicholas                              on 2006/02/03  13:21:46
27274         Log: Subject: [PATCH] s/Nullcv/NULL/g
27275              From: Steven Schubiger <schubiger@cpan.org>
27276              Message-ID: <20060202150241.GF12591@accognoscere.homeunix.org>
27277              Date: Thu, 2 Feb 2006 16:02:41 +0100
27278      Branch: perl
27279            ! cop.h dump.c gv.c gv.h mg.c op.c pad.c perl.c pp_ctl.c sv.c
27280 ____________________________________________________________________________
27281 [ 27059] By: nicholas                              on 2006/02/03  13:06:00
27282         Log: Change PL_perlio_fd_refcnt from a fixed size static array to a pointer
27283              to a dynamic array.
27284      Branch: perl
27285            ! embedvar.h perlapi.h perlio.c perlvars.h
27286 ____________________________________________________________________________
27287 [ 27057] By: stevep                                on 2006/02/02  20:57:01
27288         Log: It would be nice to have tests in B for the functions getting changed.
27289      Branch: perl
27290            ! ext/B/t/b.t
27291 ____________________________________________________________________________
27292 [ 27056] By: stevep                                on 2006/02/02  20:42:56
27293         Log: Death to magic characters!  No pun intended.
27294      Branch: perl
27295            ! ext/B/B.xs
27296 ____________________________________________________________________________
27297 [ 27054] By: rgs                                   on 2006/02/02  14:24:03
27298         Log: Subject: Re: [PATCH] s/Null(av|ch)/NULL/g
27299              From: Steven Schubiger <schubiger@cpan.org>
27300              Date: Thu, 2 Feb 2006 10:38:49 +0100
27301              Message-ID: <20060202093849.GD12591@accognoscere.homeunix.org>
27302      Branch: perl
27303            ! XSUB.h cop.h doio.c doop.c dump.c gv.c hv.c hv.h locale.c
27304            ! malloc.c mathoms.c mg.c op.c op.h pad.c perl.c perl.h perlio.c
27305            ! perlsdio.h pod/perlapi.pod pp_sort.c pp_sys.c regcomp.h
27306            ! regexec.c sv.c sv.h thrdvar.h toke.c util.c
27307 ____________________________________________________________________________
27308 [ 27053] By: nicholas                              on 2006/02/02  12:31:30
27309         Log: gv_fetchpvn_flags ranks highly in the profile, and the ::/' scanning
27310              loop is iterated over millions of times. Add a flag GV_NOTQUAL purely
27311              as an optimisation, when the caller is passing in a string that is
27312              known not to contain any package separators.
27313      Branch: perl
27314            ! doio.c gv.c gv.h op.c perl.c pp_ctl.c pp_sort.c pp_sys.c
27315            ! toke.c util.c
27316 ____________________________________________________________________________
27317 [ 27052] By: rgs                                   on 2006/02/02  11:22:43
27318         Log: Update to Module::CoreList 3.04.
27319              Cleanup corelist manpage.
27320              Remove -w in corelist shebang to avoid spurious warnings.
27321      Branch: perl
27322            ! lib/Module/CoreList.pm lib/Module/CoreList/bin/corelist
27323 ____________________________________________________________________________
27324 [ 27051] By: gisle                                 on 2006/02/02  10:05:32
27325         Log: perl-5.8.8 also contained change 27040.
27326      Branch: perl
27327            ! lib/Module/CoreList.pm
27328 ____________________________________________________________________________
27329 [ 27050] By: nicholas                              on 2006/02/02  00:36:38
27330         Log: Yet more instances of gv_fetchpv... that should be GV_ADD rather than
27331              TRUE.
27332              Convert two gv_fetchpvn_flags to gv_fetchpvs.
27333      Branch: perl
27334            ! doio.c gv.c perl.c pp_ctl.c pp_sort.c util.c
27335 ____________________________________________________________________________
27336 [ 27049] By: nicholas                              on 2006/02/02  00:24:06
27337         Log: And another assumption.
27338      Branch: perl
27339            ! gv.c
27340 ____________________________________________________________________________
27341 [ 27048] By: nicholas                              on 2006/02/01  23:38:53
27342         Log: Since PERL_COPY_ON_WRITE becamse PERL_OLD_COPY_ON_WRITE it seems that
27343              no-one has been testing it, as there was a const too far.
27344      Branch: perl
27345            ! sv.c
27346 ____________________________________________________________________________
27347 [ 27047] By: stevep                                on 2006/02/01  23:34:47
27348         Log: Doc nit found by Stephen Gordon.
27349      Branch: perl
27350            ! pod/perlfunc.pod
27351 ____________________________________________________________________________
27352 [ 27046] By: nicholas                              on 2006/02/01  23:03:11
27353         Log: doubleplusoops. Apart from the documented NUL termination assumption.
27354              Now removed.
27355      Branch: perl
27356            ! gv.c
27357 ____________________________________________________________________________
27358 [ 27045] By: nicholas                              on 2006/02/01  22:39:29
27359         Log: References can't have SVp_IOK or SVp_NOK set, so no need for all the
27360              conditional code to copy IVX and NVX if true. "You cannot get here".
27361      Branch: perl
27362            ! sv.c
27363 ____________________________________________________________________________
27364 [ 27044] By: nicholas                              on 2006/02/01  22:03:37
27365         Log: Oops. 1 NUL termination assumption remains in Perl_gv_fetchpvn_flags
27366      Branch: perl
27367            ! gv.c
27368 ____________________________________________________________________________
27369 [ 27043] By: nicholas                              on 2006/02/01  20:26:46
27370         Log: Correct my comment, so that it's actually useful. :-)
27371      Branch: perl
27372            ! sv.c
27373 ____________________________________________________________________________
27374 [ 27042] By: nicholas                              on 2006/02/01  19:30:52
27375         Log: , tweaked from
27376              Subject: Re: [:...:] and \p{...} character class equivalence in utf8 regexps
27377              From: Steve Purkis <Steve.Purkis@multimap.com>
27378              Message-Id: <0DAE5956-3ECC-4692-A0C9-C62C8F790C97@multimap.com>
27379              Date: Fri, 20 Jan 2006 12:35:06 -0500
27380      Branch: perl
27381            ! pod/perlre.pod
27382 ____________________________________________________________________________
27383 [ 27039] By: rgs                                   on 2006/02/01  18:07:26
27384         Log: Improve a bit the documentation for kill() with SIGNAL==0
27385      Branch: perl
27386            ! pod/perlfunc.pod
27387 ____________________________________________________________________________
27388 [ 27038] By: nicholas                              on 2006/02/01  18:05:20
27389         Log: Mmm, it looks like it's a bad plan to rebuild the TOC from a tree that
27390              has other modules in ext/
27391              TODO - fix buildtoc to cross check with MANIFEST.
27392      Branch: perl
27393            ! pod/perltoc.pod
27394 ____________________________________________________________________________
27395 [ 27037] By: nicholas                              on 2006/02/01  17:53:28
27396         Log: Integrate perl588delta.pod from maint, and re-run pod/buildtoc.
27397      Branch: perl
27398           +> pod/perl588delta.pod
27399            ! pod/perl.pod vms/descrip_mms.template
27400           !> MANIFEST Makefile.SH pod.lst pod/perltoc.pod win32/Makefile
27401           !> win32/makefile.mk win32/pod.mak
27402 ____________________________________________________________________________
27403 [ 27036] By: rgs                                   on 2006/02/01  17:49:53
27404         Log: Doc nit by Andy Dougherty
27405      Branch: perl
27406            ! README.aix
27407 ____________________________________________________________________________
27408 [ 27035] By: rgs                                   on 2006/02/01  16:14:07
27409         Log: autouse actually requires perl 5.6 at least.
27410      Branch: perl
27411            ! lib/autouse.pm
27412 ____________________________________________________________________________
27413 [ 27034] By: rgs                                   on 2006/02/01  15:51:35
27414         Log: Avoid "Prototype mismatch" warnings with autouse.
27415      Branch: perl
27416            ! lib/autouse.pm
27417 ____________________________________________________________________________
27418 [ 27033] By: rgs                                   on 2006/02/01  13:22:26
27419         Log: Fix corelist data for 5.8.8
27420      Branch: perl
27421            ! lib/Module/CoreList.pm
27422 ____________________________________________________________________________
27423 [ 27032] By: rgs                                   on 2006/02/01  12:41:37
27424         Log: More history
27425      Branch: perl
27426            ! pod/perlhist.pod
27427 ____________________________________________________________________________
27428 [ 27031] By: rgs                                   on 2006/02/01  12:30:14
27429         Log: Update to Module::CoreList 2.03 (includes 5.8.8 and 5.9.3)
27430      Branch: perl
27431            ! lib/Module/CoreList.pm lib/Module/CoreList/bin/corelist
27432 ____________________________________________________________________________
27433 [ 27030] By: nicholas                              on 2006/02/01  11:53:04
27434         Log: Subject: [patch] arena rework - unify arenaroots
27435              From: Jim Cromie <jim.cromie@gmail.com>
27436              Message-ID: <43DF3D0A.3040102@gmail.com>
27437              Date: Tue, 31 Jan 2006 03:33:46 -0700
27438      Branch: perl
27439            ! embedvar.h hv.c intrpvar.h perlapi.h sv.c
27440 ____________________________________________________________________________
27441 [ 27028] By: nicholas                              on 2006/01/31  22:59:27
27442         Log: Make Perl_gv_fetchpvn_flags actually heed the passed in length.
27443              This means that \0 bytes in symbolic references now work.
27444      Branch: perl
27445            ! doio.c gv.c perl.c t/op/ref.t toke.c
27446 ____________________________________________________________________________
27447 [ 27027] By: stevep                                on 2006/01/31  18:42:31
27448         Log: Intel C Compiler 9.0 hatefully defines __GNUC__.  Unfortunately, 
27449              icc does not support gcc built-ins like __attribiute__.
27450      Branch: perl
27451            ! perl.h
27452 ____________________________________________________________________________
27453 [ 27022] By: nicholas                              on 2006/01/31  15:33:15
27454         Log: Subject: [perl #38380] Typo in perlfunc.pod 
27455              From: p.boven@sara.nl (via RT) <perlbug-followup@perl.org>
27456              Message-ID: <rt-3.0.11-38380-129047.11.4217468041333@perl.org>
27457              Date: Tue, 31 Jan 2006 05:22:28 -0800
27458      Branch: perl
27459            ! pod/perlfunc.pod
27460 ____________________________________________________________________________
27461 [ 27021] By: nicholas                              on 2006/01/31  15:10:37
27462         Log: Eliminate save_threadsv, as it is never linked to, and all it does
27463              post 5005 threads is croak().
27464      Branch: perl
27465            ! embed.fnc embed.h global.sym proto.h scope.c
27466 ____________________________________________________________________________
27467 [ 27016] By: rgs                                   on 2006/01/31  10:07:00
27468         Log: Subject: Re: [PATCH] Re: replacing "inuse" Win files (was Re: Help with a Cwd.pm build error)
27469              From: demerphq <demerphq@gmail.com>
27470              Date: Tue, 31 Jan 2006 09:55:25 +0100
27471              Message-ID: <9b18b3110601310055h7aeb9aa1gdc2d63cc56d97768@mail.gmail.com>
27472      Branch: perl
27473            ! lib/ExtUtils/Install.pm
27474 ____________________________________________________________________________
27475 [ 27015] By: craigb                                on 2006/01/31  04:37:27
27476         Log: Subject: patch@26996 - patch around stat("_NLA0:") bug
27477              From: "John E. Malmberg" <wb8tyw@qsl.net>Date: Mon, 30 Jan 2006 23:21:34 -0500
27478              Message-id: <43DEE5CE.7060108@qsl.net>
27479
27480      Branch: perl
27481            ! vms/vms.c vms/vmsish.h
27482 ____________________________________________________________________________
27483 [ 27014] By: nicholas                              on 2006/01/31  00:15:26
27484         Log: Silence a warning from the MS compiler about signed/unsigned mismatch.
27485      Branch: perl
27486            ! util.c
27487 ____________________________________________________________________________
27488 [ 27010] By: rgs                                   on 2006/01/30  17:47:56
27489         Log: Add perl594delta
27490      Branch: perl
27491            + pod/perl594delta.pod
27492            ! MANIFEST Makefile.SH pod.lst pod/perl.pod
27493            ! vms/descrip_mms.template win32/Makefile win32/makefile.mk
27494            ! win32/pod.mak
27495 ____________________________________________________________________________
27496 [ 27009] By: nicholas                              on 2006/01/30  17:12:54
27497         Log: Change the author aliasing to reflect updates to AUTHORS.
27498      Branch: perl
27499            ! Porting/checkAUTHORS.pl
27500 ____________________________________________________________________________
27501 [ 27007] By: rgs                                   on 2006/01/30  16:58:47
27502         Log: Bump version number to 5.9.4
27503              Regenerate template config in Porting
27504      Branch: perl
27505            ! NetWare/Makefile NetWare/config_H.wc Porting/config.sh
27506            ! Porting/config_H epoc/config.sh epoc/createpkg.pl patchlevel.h
27507            ! plan9/config.plan9 win32/Makefile win32/config_H.bc
27508            ! win32/config_H.gc win32/config_H.vc win32/config_H.vc64
27509            ! win32/makefile.mk wince/Makefile.ce wince/config_H.ce
27510 ____________________________________________________________________________
27511 [ 27006] By: nicholas                              on 2006/01/30  16:50:38
27512         Log: Silence another Irix compiler warning.
27513      Branch: perl
27514            ! toke.c
27515 ____________________________________________________________________________
27516 [ 27005] By: nicholas                              on 2006/01/30  16:29:38
27517         Log: Avoid a warning from the Irix C compiler.
27518      Branch: perl
27519            ! hv.c
27520 ____________________________________________________________________________
27521 [ 27004] By: stevep                                on 2006/01/30  15:04:50
27522         Log: Teach the Makefile how to cleanup config.over.
27523      Branch: perl
27524            ! Makefile.SH
27525 ____________________________________________________________________________
27526 [ 27002] By: nicholas                              on 2006/01/30  13:42:56
27527         Log: Code assumes that *FOO{SCALAR} will always return a scalar reference,
27528              so make it so, creating $FOO if necessary.
27529              (Effectively this is a policy decision that PERL_DONT_CREATE_GVSV is
27530              visible to XS code, but isn't visible to Perl code)
27531      Branch: perl
27532            ! pp.c t/op/gv.t
27533 ____________________________________________________________________________
27534 [ 27001] By: stevep                                on 2006/01/30  13:25:04
27535         Log: Add -DPTR_IS_LONG when building with -Duse64bitint on Solaris/i386.  
27536              Otherwise, the build fails in POSIX.
27537      Branch: perl
27538            ! hints/solaris_2.sh
27539 ____________________________________________________________________________
27540 [ 27000] By: nicholas                              on 2006/01/30  12:59:12
27541         Log: Use a union for storing the shared hash key reference count, rather
27542              than messy pointer hacks.
27543      Branch: perl
27544            ! ext/XS/APItest/APItest.xs hv.c hv.h perl.c
27545 ____________________________________________________________________________
27546 [ 26999] By: rgs                                   on 2006/01/30  09:52:06
27547         Log: Subject: [DOC PATCH] $^X isn't necessarily argv[0]
27548              From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
27549              Date: Mon, 30 Jan 2006 01:06:24 -0800
27550              Message-ID: <20060130090624.GA3760@efn.org>
27551      Branch: perl
27552            ! pod/perlvar.pod
27553 ____________________________________________________________________________
27554 [ 26998] By: merijn                                on 2006/01/30  09:10:53
27555         Log: Subject: [PATCH] maint and blead: unicos.sh hints
27556              From: Jarkko Hietaniemi <jhi@cc.hut.fi>
27557              Date: Sun, 29 Jan 2006 23:45:03 +0200 (EET)
27558              Message-Id: <200601292145.k0TLj3mW320311@kosh.hut.fi>
27559      Branch: perl
27560            ! hints/unicos.sh
27561 ____________________________________________________________________________
27562 [ 26997] By: nicholas                              on 2006/01/30  00:18:52
27563         Log: Assert that IVs and NVs can never be tainted.
27564      Branch: perl
27565            ! sv.c
27566 ____________________________________________________________________________
27567 [ 26996] By: nicholas                              on 2006/01/29  22:00:11
27568         Log: Solaris seems not to enjoy initialising constants from SIG_??? on 64
27569              bit builds.
27570      Branch: perl
27571            ! ext/POSIX/Makefile.PL
27572 ____________________________________________________________________________
27573 [ 26995] By: stevep                                on 2006/01/29  20:43:44
27574         Log: Upgrade to podlators-2.0.3
27575      Branch: perl
27576            ! lib/Pod/t/basic.t lib/Pod/t/color.t lib/Pod/t/man.t
27577            ! lib/Pod/t/termcap.t lib/Pod/t/text-options.t lib/Pod/t/text.t
27578 ____________________________________________________________________________
27579 [ 26994] By: rgs                                   on 2006/01/29  18:31:52
27580         Log: Email change for Steven Schubiger
27581      Branch: perl
27582            ! AUTHORS
27583 ____________________________________________________________________________
27584 [ 26993] By: merijn                                on 2006/01/29  10:14:09
27585         Log: Subject: Re: [patch] s/ar ts/ar s/g
27586              From: "Philippe M. Chiasson" <gozer@ActiveState.com>
27587              Date: Thu, 26 Jan 2006 13:53:07 -0800
27588              Message-ID: <43D944C3.60101@ActiveState.com>
27589      Branch: perl
27590            ! Configure
27591 ____________________________________________________________________________
27592 [ 26991] By: nicholas                              on 2006/01/29  00:25:04
27593         Log: C compilers don't let you return void. Pay attention gcc, and
27594              stop aping Shildt.
27595      Branch: perl
27596            ! sv.c
27597 ____________________________________________________________________________
27598 [ 26990] By: nicholas                              on 2006/01/29  00:09:10
27599         Log: Avoid using space to create 2 functions just to force mathoms to be
27600              linked. Instead, force the link via the perl interpreter structure
27601              via a function pointer that gets replaced at run time anyway.
27602      Branch: perl
27603            ! embed.fnc embed.h intrpvar.h mathoms.c perl.c proto.h
27604 ____________________________________________________________________________
27605 [ 26989] By: nicholas                              on 2006/01/28  17:46:56
27606         Log: Call gv_fetchpvn_flags where we already know the length.
27607      Branch: perl
27608            ! doio.c toke.c
27609 ____________________________________________________________________________
27610 [ 26988] By: stevep                                on 2006/01/28  17:25:03
27611         Log: Upgrade to podlators-2.0.2
27612      Branch: perl
27613            ! lib/Pod/Man.pm lib/Pod/Text.pm lib/Pod/Text/Color.pm
27614            ! lib/Pod/Text/Termcap.pm lib/Pod/t/basic.t lib/Pod/t/color.t
27615            ! lib/Pod/t/man.t lib/Pod/t/termcap.t lib/Pod/t/text-options.t
27616            ! lib/Pod/t/text.t pod/pod2man.PL pod/pod2text.PL
27617 ____________________________________________________________________________
27618 [ 26987] By: nicholas                              on 2006/01/28  17:15:21
27619         Log: Squeeze more flag manipulations together in sv_setsv_flags.
27620      Branch: perl
27621            ! sv.c
27622 ____________________________________________________________________________
27623 [ 26986] By: stevep                                on 2006/01/28  16:50:32
27624         Log: Upgrade to CPAN-1.83_59
27625      Branch: perl
27626            ! lib/CPAN.pm lib/CPAN/FirstTime.pm lib/CPAN/HandleConfig.pm
27627            ! lib/CPAN/SIGNATURE
27628 ____________________________________________________________________________
27629 [ 26985] By: stevep                                on 2006/01/28  16:43:43
27630         Log: Upgrade to Archive-Tar-1.28
27631      Branch: perl
27632            ! lib/Archive/Tar.pm lib/Archive/Tar/bin/ptardiff
27633            ! lib/Archive/Tar/t/02_methods.t
27634            ! lib/Archive/Tar/t/04_resolved_issues.t
27635 ____________________________________________________________________________
27636 [ 26983] By: nicholas                              on 2006/01/28  15:44:04
27637         Log: Add gv_fetchpvs, which uses STR_WITH_LEN to call gv_fetchpvn_flags.
27638              Many strlen()s saved.
27639      Branch: perl
27640            ! doio.c handy.h op.c perl.c pp_ctl.c pp_sort.c pp_sys.c toke.c
27641            ! util.c
27642 ____________________________________________________________________________
27643 [ 26982] By: nicholas                              on 2006/01/28  14:46:35
27644         Log: Merge the IOK and NOK clauses together in sv_setsv_flags.
27645      Branch: perl
27646            ! sv.c
27647 ____________________________________________________________________________
27648 [ 26981] By: nicholas                              on 2006/01/28  14:23:49
27649         Log: The flags manipulation in sv_setsv_flags can be more efficient.
27650      Branch: perl
27651            ! sv.c
27652 ____________________________________________________________________________
27653 [ 26980] By: nicholas                              on 2006/01/28  14:02:10
27654         Log: PERL_DONT_CREATE_GVSV wasn't as effective as it should have been.
27655      Branch: perl
27656            ! gv.c
27657 ____________________________________________________________________________
27658 [ 26979] By: nicholas                              on 2006/01/28  13:38:28
27659         Log: By changing SvVOK() from returning 0/1 to 0/pointer-to-magic we can
27660              save duplicating mg_find calls, without changing the semantics in any
27661              boolean context.
27662      Branch: perl
27663            ! sv.c sv.h util.c
27664 ____________________________________________________________________________
27665 [ 26978] By: nicholas                              on 2006/01/28  12:49:15
27666         Log: Pull the other large chunk of PVGV assignment code into S_pvgv_assign.
27667              There seems to be some duplication with S_glob_assign.
27668      Branch: perl
27669            ! sv.c
27670 ____________________________________________________________________________
27671 [ 26977] By: nicholas                              on 2006/01/28  12:26:47
27672         Log: Remove goto glob_assign;
27673      Branch: perl
27674            ! sv.c
27675 ____________________________________________________________________________
27676 [ 26976] By: nicholas                              on 2006/01/28  12:08:01
27677         Log: Pull glob_assign out from sv_setsv_flags into a static function.
27678      Branch: perl
27679            ! sv.c
27680 ____________________________________________________________________________
27681 [ 26975] By: rgs                                   on 2006/01/28  11:00:30
27682         Log: Update Changes
27683      Branch: perl
27684            ! Changes
27685 ____________________________________________________________________________
27686 [ 26974] By: rgs                                   on 2006/01/28  10:57:04
27687         Log: Add perl 5.9.3 in release list
27688      Branch: perl
27689            ! pod/perlhist.pod
27690 ____________________________________________________________________________
27691 [ 26970] By: gisle                                 on 2006/01/27  19:48:28
27692         Log: Subject: Re: Make Passive mode the default for Net::FTP
27693              From: Gisle Aas <gisle@ActiveState.com>
27694              Date: 27 Jan 2006 07:21:16 -0800
27695              Message-ID: <lrslr91ytv.fsf@caliper.activestate.com>
27696      Branch: perl
27697            ! lib/Net/Config.pm lib/Net/FTP.pm
27698 ____________________________________________________________________________
27699 [ 26969] By: rgs                                   on 2006/01/27  18:27:22
27700         Log: Oops. Forgot to add this file.
27701      Branch: perl
27702            + utils/ptardiff.PL
27703 ____________________________________________________________________________
27704 [ 26968] By: rgs                                   on 2006/01/27  18:07:54
27705         Log: Regenerate META.yml
27706      Branch: perl
27707            ! META.yml
27708 ____________________________________________________________________________
27709 [ 26967] By: rgs                                   on 2006/01/27  18:04:17
27710         Log: Regenerate Changes; remove ^M chars in Changes
27711      Branch: perl
27712            ! Changes
27713 ____________________________________________________________________________
27714 [ 26966] By: rgs                                   on 2006/01/27  17:47:32
27715         Log: Remove patch number
27716      Branch: perl
27717            ! patchlevel.h
27718 ____________________________________________________________________________
27719 [ 26965] By: rgs                                   on 2006/01/27  17:44:48
27720         Log: Mention ptardiff in perldelta.
27721      Branch: perl
27722            ! pod/perl593delta.pod
27723 ____________________________________________________________________________
27724 [ 26964] By: rgs                                   on 2006/01/27  17:37:27
27725         Log: Don't install ptardiff in the module tree
27726      Branch: perl
27727            ! installperl
27728 ____________________________________________________________________________
27729 [ 26963] By: rgs                                   on 2006/01/27  17:19:52
27730         Log: Install the ptardiff utility that comes with Archive::Tar
27731      Branch: perl
27732            ! MANIFEST utils.lst utils/Makefile vms/descrip_mms.template
27733            ! win32/Makefile win32/makefile.mk
27734 ____________________________________________________________________________
27735 [ 26962] By: rgs                                   on 2006/01/27  17:04:35
27736         Log: Install nit : README.e2x should be installed, the other READMEs shouldn't
27737      Branch: perl
27738            ! installperl
27739 ____________________________________________________________________________
27740 [ 26961] By: rgs                                   on 2006/01/27  16:31:33
27741         Log: Regenerate PODs
27742      Branch: perl
27743            ! pod/perlmodlib.pod pod/perltoc.pod
27744 ____________________________________________________________________________
27745 [ 26960] By: rgs                                   on 2006/01/27  15:35:01
27746         Log: Some spelling fixes by David Landgren.
27747              Mention perltodo.
27748      Branch: perl
27749            ! pod/perl593delta.pod
27750 ____________________________________________________________________________
27751 [ 26959] By: rgs                                   on 2006/01/27  15:26:05
27752         Log: Revert change 24461, now that change 26757 allows TEST
27753              to accept extra output from module tests
27754      Branch: perl
27755            ! cygwin/perlld.in
27756 ____________________________________________________________________________
27757 [ 26958] By: rgs                                   on 2006/01/27  13:54:06
27758         Log: Subject: [PATCH] quiet gcc Info message in cygwin
27759              From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
27760              Date: Wed, 25 Jan 2006 19:16:09 -0800
27761              Message-ID: <20060126031608.GA2588@efn.org>
27762      Branch: perl
27763            ! hints/cygwin.sh
27764 ____________________________________________________________________________
27765 [ 26957] By: rgs                                   on 2006/01/27  13:08:12
27766         Log: Remove note about #elif, see :
27767              Subject: Re: Change 26954: Simplify nested '#ifdef' by replacing it with '#elif defined()'
27768              From: Steve Hay <steve.hay@uk.radan.com>
27769              Date: Fri, 27 Jan 2006 11:09:02 +0000
27770              Message-ID: <43D9FF4E.6010501@uk.radan.com>
27771      Branch: perl
27772            ! Porting/pumpkin.pod
27773 ____________________________________________________________________________
27774 [ 26955] By: nicholas                              on 2006/01/27  10:36:05
27775         Log: A description of the new constants.
27776      Branch: perl
27777            ! pod/perl593delta.pod
27778 ____________________________________________________________________________
27779 [ 26954] By: gisle                                 on 2006/01/27  08:54:04
27780         Log: Simplify nested '#ifdef' by replacing it with '#elif defined()'
27781      Branch: perl
27782            ! mg.c
27783 ____________________________________________________________________________
27784 [ 26953] By: gisle                                 on 2006/01/27  08:49:34
27785         Log: Safer implementation of RTRIM().
27786              Don't rely on SvCUR to be sane unless SvPOK.
27787      Branch: perl
27788            ! mg.c
27789 ____________________________________________________________________________
27790 [ 26952] By: nicholas                              on 2006/01/26  22:03:19
27791         Log: Subject: [PATCH] Change 26781/26830 (SvRTRIM should also write a new '\0' at the end) can cause segfaults
27792              From: "Philippe M. Chiasson" <gozer@ActiveState.com>
27793              Message-ID: <43D941AF.1060503@ActiveState.com>
27794              Date: Thu, 26 Jan 2006 13:39:59 -0800
27795      Branch: perl
27796            ! mg.c
27797 ____________________________________________________________________________
27798 [ 26951] By: stevep                                on 2006/01/26  19:23:48
27799         Log: Fix a few nits in perl593delta
27800      Branch: perl
27801            ! pod/perl593delta.pod
27802 ____________________________________________________________________________
27803 [ 26950] By: rgs                                   on 2006/01/26  18:48:27
27804         Log: miniperl isn't enough anymore to run pod2man.
27805      Branch: perl
27806            ! pod/Makefile.SH
27807 ____________________________________________________________________________
27808 [ 26949] By: nicholas                              on 2006/01/26  18:35:56
27809         Log: 2 spelling corrections, and rephrase the entry on perlivp (better
27810              grammer, more succinct)
27811      Branch: perl
27812            ! pod/perl593delta.pod
27813 ____________________________________________________________________________
27814 [ 26948] By: rgs                                   on 2006/01/26  18:14:26
27815         Log: More work on perldelta
27816      Branch: perl
27817            ! pod/perl593delta.pod
27818 ____________________________________________________________________________
27819 [ 26947] By: steveh                                on 2006/01/26  16:25:20
27820         Log: Make dump and -u croak on Win32 and Cygwin to avoid confusion
27821              such as was seen here:
27822              
27823              Subject: Weird Win32 error: "This application has requested the Runtime to terminate it in an unusual way."
27824              From: demerphq <demerphq@gmail.com>
27825              Date: Thu, 26 Jan 2006 15:40:42 +0100
27826              Message-ID: <9b18b3110601260640x34b2442cnf5379d2f83b74187@mail.gmail.com>
27827      Branch: perl
27828            ! perl.c pod/perldiag.pod pod/perlport.pod
27829 ____________________________________________________________________________
27830 [ 26946] By: nicholas                              on 2006/01/26  14:57:42
27831         Log: SvREADONLY_off inside the magic routines is also dangerous on shared
27832              hash key scalars, so decompose them to normal scalars if they ever
27833              get here.
27834      Branch: perl
27835            ! mg.c
27836 ____________________________________________________________________________
27837 [ 26945] By: rgs                                   on 2006/01/26  11:49:22
27838         Log: assertions.pm is dual-lived
27839      Branch: perl
27840            ! Porting/Maintainers.pl
27841 ____________________________________________________________________________
27842 [ 26943] By: rgs                                   on 2006/01/25  17:12:11
27843         Log: Subject: aelemfast optimization opclass problem (c.f. [perl #38279])
27844              From: Stephen McCamant <smcc@mit.edu>
27845              Date: Jan 24, 2006 7:23 AM
27846              Message-ID: <17365.51166.604020.571992@conquest.OCF.Berkeley.EDU>
27847      Branch: perl
27848            + ext/B/t/optree_misc.t
27849            ! MANIFEST ext/B/B.xs
27850 ____________________________________________________________________________
27851 [ 26941] By: gisle                                 on 2006/01/24  15:37:25
27852         Log: Subject: Simplify &IO::Handle::say
27853              From: Gisle Aas <gisle@ActiveState.com>
27854              Date: 24 Jan 2006 05:01:28 -0800
27855              Message-ID: <lrzmll7pav.fsf@caliper.activestate.com>
27856      Branch: perl
27857            ! ext/IO/lib/IO/Handle.pm
27858 ____________________________________________________________________________
27859 [ 26940] By: rgs                                   on 2006/01/24  15:10:27
27860         Log: Fix a regression on suidperl : the error message "No #! line" was
27861              produced in erroneous cases, because we used to read values in a
27862              string buffer that pointed to nothing.
27863      Branch: perl
27864            ! perl.c
27865 ____________________________________________________________________________
27866 [ 26936] By: steveh                                on 2006/01/24  12:13:15
27867         Log: Remove d_nanosleep from win32 configs
27868              Change 19899 removed them before, but they have accidentally crept back.
27869      Branch: perl
27870            ! win32/config.bc win32/config.gc win32/config.vc
27871            ! win32/config.vc64
27872 ____________________________________________________________________________
27873 [ 26935] By: steveh                                on 2006/01/24  09:22:44
27874         Log: Subject: SPRINTF_RETURNS_STRLEN isn't really a compile-time option 
27875              From: Gisle Aas <gisle@ActiveState.com>
27876              Date: 23 Jan 2006 02:12:04 -0800
27877              Message-ID: <lr3bjfb6dn.fsf@caliper.activestate.com>
27878              
27879              Subject: RE: SPRINTF_RETURNS_STRLEN isn't really a compile-time option
27880              From: "Jan Dubois" <jand@ActiveState.com>
27881              Date: Mon, 23 Jan 2006 11:30:51 -0800
27882              Message-ID: <008001c62053$86adf680$2217a8c0@candy>
27883      Branch: perl
27884            ! makedef.pl perl.c
27885 ____________________________________________________________________________
27886 [ 26933] By: rgs                                   on 2006/01/23  19:24:06
27887         Log: More work on perldelta
27888      Branch: perl
27889            ! pod/perl593delta.pod
27890 ____________________________________________________________________________
27891 [ 26932] By: nicholas                              on 2006/01/23  19:06:41
27892         Log: constant_add_symbol needs to be static, else static builds can fail at
27893              link time. (*How* many meanings is "static" overloaded with?)
27894      Branch: perl
27895            ! lib/ExtUtils/Constant/ProxySubs.pm
27896 ____________________________________________________________________________
27897 [ 26930] By: stevep                                on 2006/01/23  18:40:08
27898         Log: Subject: [PATCH] Tru64: -Uusedl: lib/ExtUtils/t/Embed.t
27899              From: Jarkko Hietaniemi <jhietaniemi@gmail.com>
27900              Date: Mon, 23 Jan 2006 20:34:18 +0200
27901              Message-ID: <43D521AA.7030008@gmail.com>
27902      Branch: perl
27903            ! lib/ExtUtils/t/Embed.t
27904 ____________________________________________________________________________
27905 [ 26929] By: stevep                                on 2006/01/23  15:56:34
27906         Log: Upgrade to Pod-Simple-3.04
27907      Branch: perl
27908            ! lib/Pod/Simple.pm lib/Pod/Simple/BlackBox.pm
27909            ! lib/Pod/Simple/Search.pm
27910 ____________________________________________________________________________
27911 [ 26928] By: rgs                                   on 2006/01/23  15:28:51
27912         Log: Now that change #26410 is reverted, mark as TODO the tests added
27913              by change #26925.
27914      Branch: perl
27915            ! t/op/pat.t
27916 ____________________________________________________________________________
27917 [ 26927] By: rgs                                   on 2006/01/23  15:18:30
27918         Log: Missing chunk in change #26926
27919      Branch: perl
27920            ! t/op/taint.t
27921 ____________________________________________________________________________
27922 [ 26926] By: rgs                                   on 2006/01/23  15:18:10
27923         Log: Revert change 26410, marking the test that was added there as TODO.
27924              See the thread :
27925              Subject: LVALUE m//g (was Re: au revoir ...)
27926              From: Nicholas Clark <nick@ccl4.org>
27927              Date: Jan 18, 2006 9:30 PM
27928              Message-ID: <20060118203058.GQ616@plum.flirble.org>
27929      Branch: perl
27930            ! op.c
27931 ____________________________________________________________________________
27932 [ 26925] By: nicholas                              on 2006/01/23  15:11:11
27933         Log: Change the regression test added by 26410 to use test.pl; this makes
27934              it easier to TODO if needed.
27935              Add the TODO test provided by Rick Delaney, but not as TODO, because
27936              change 26410 also made pos on LVALUE subroutines work for the first
27937              time.
27938      Branch: perl
27939            ! t/op/pat.t t/op/taint.t
27940 ____________________________________________________________________________
27941 [ 26924] By: rgs                                   on 2006/01/23  14:44:59
27942         Log: Un-const magic virtual tables; this consting breaks the nasty
27943              things done by Swig, as noticed by Audrey.
27944      Branch: perl
27945            ! embed.fnc mg.c mg.h perl.h pod/perlapi.pod proto.h sv.c
27946 ____________________________________________________________________________
27947 [ 26923] By: stevep                                on 2006/01/23  14:35:52
27948         Log: Upgrade to CPAN-1.83_58
27949      Branch: perl
27950            ! lib/CPAN.pm lib/CPAN/Debug.pm lib/CPAN/FirstTime.pm
27951            ! lib/CPAN/HandleConfig.pm lib/CPAN/SIGNATURE
27952            ! lib/CPAN/Version.pm lib/CPAN/t/vcmp.t
27953 ____________________________________________________________________________
27954 [ 26922] By: gisle                                 on 2006/01/23  12:33:02
27955         Log: Avoid warning with MS Visual C compiler.
27956              Encode.xs(443) : warning C4761: integral size mismatch in argument; conversion supplied
27957      Branch: perl
27958            ! ext/Encode/Encode.xs
27959 ____________________________________________________________________________
27960 [ 26921] By: gisle                                 on 2006/01/23  09:57:10
27961         Log: Subject: Avoid most getprotobyname/number calls in IO::Socket::INET
27962              From: Gisle Aas <gisle@ActiveState.com>
27963              Date: 18 Jan 2006 09:28:24 -0800
27964              Message-ID: <lr3bjlbg3r.fsf@caliper.activestate.com>
27965      Branch: perl
27966            ! ext/IO/lib/IO/Socket/INET.pm
27967 ____________________________________________________________________________
27968 [ 26919] By: craigb                                on 2006/01/21  17:05:07
27969         Log: Make Manifest.t do what is says it's doing.
27970      Branch: perl
27971            ! lib/ExtUtils/t/Manifest.t
27972 ____________________________________________________________________________
27973 [ 26918] By: mhx                                   on 2006/01/21  15:31:06
27974         Log: Remove wrong cast to (void *), which fixes a gcc warning, and use
27975              the return value of upg_version() at least once in the core.
27976      Branch: perl
27977            ! pp_ctl.c util.c
27978 ____________________________________________________________________________
27979 [ 26915] By: nicholas                              on 2006/01/20  10:12:12
27980         Log: Note 5.8.8-RC1
27981      Branch: perl
27982            ! pod/perlhist.pod
27983 ____________________________________________________________________________
27984 [ 26914] By: mhx                                   on 2006/01/19  18:44:34
27985         Log: Upgrade to Devel::PPPort 3.08
27986      Branch: perl
27987            ! ext/Devel/PPPort/Changes ext/Devel/PPPort/META.yml
27988            ! ext/Devel/PPPort/Makefile.PL ext/Devel/PPPort/PPPort.pm
27989            ! ext/Devel/PPPort/PPPort_pm.PL
27990            ! ext/Devel/PPPort/parts/inc/ppphtest ext/Devel/PPPort/soak
27991 ____________________________________________________________________________
27992 [ 26913] By: craigb                                on 2006/01/19  04:55:19
27993         Log: find_perl() must be after environment initialization
27994      Branch: perl
27995            ! ext/Devel/PPPort/t/ppphtest.t
27996 ____________________________________________________________________________
27997 [ 26912] By: stevep                                on 2006/01/19  02:58:37
27998         Log: Fix hardcoded "/" in a filepath that causes ext/List/Util/t/p_tainted.t
27999              to fail on VMS.
28000      Branch: perl
28001            ! ext/List/Util/t/p_tainted.t
28002 ____________________________________________________________________________
28003 [ 26911] By: stevep                                on 2006/01/19  02:32:06
28004         Log: Fix another concatenated filepath in a test for Digest::SHA.
28005      Branch: perl
28006            ! ext/Digest/SHA/t/6-dump-load.t
28007 ____________________________________________________________________________
28008 [ 26910] By: nicholas                              on 2006/01/18  23:52:20
28009         Log: Integrate 26847 from maint.
28010              [Whoops, that was never the plan. Didn't realise which directory I was
28011              in]
28012      Branch: perl
28013           !> AUTHORS Porting/Maintainers.pl
28014 ____________________________________________________________________________
28015 [ 26904] By: nicholas                              on 2006/01/18  18:02:17
28016         Log: Change 26410 caused a regression, with the RVALUE return value of
28017              method calls now failing if bound to a global match. Add a TODO test.
28018      Branch: perl
28019            ! t/op/pat.t
28020 ____________________________________________________________________________
28021 [ 26903] By: gisle                                 on 2006/01/18  14:43:14
28022         Log: Allow IPPROTO_ICMP and IPPROTO_UDP to be exported.
28023              These were introduced in change 26897.
28024      Branch: perl
28025            ! ext/Socket/Socket.pm
28026 ____________________________________________________________________________
28027 [ 26902] By: gisle                                 on 2006/01/18  14:41:17
28028         Log: Use the IPPROTO_TCP constant instead of 6.
28029      Branch: perl
28030            ! ext/Socket/t/Socket.t
28031 ____________________________________________________________________________
28032 [ 26901] By: steveh                                on 2006/01/18  14:23:09
28033         Log: Change all NEWSV() to newSV() in the core and non-dual-lived modules.
28034              Keep NEWSV() itself for backwards-compatibility outside of the core,
28035              but don't advertise it any more.
28036              (cf. change #25101).
28037      Branch: perl
28038            ! av.c doio.c dump.c ext/ByteLoader/bytecode.h
28039            ! ext/Opcode/Opcode.xs ext/POSIX/POSIX.xs gv.c handy.h hv.c
28040            ! mathoms.c op.c os2/OS2/REXX/REXX.xs pad.c perl.c perly.c
28041            ! pod/perlapi.pod pod/perlembed.pod pp.c pp_ctl.c pp_hot.c
28042            ! pp_pack.c pp_sys.c regexec.c scope.c sv.c toke.c
28043            ! vms/ext/Stdio/Stdio.xs
28044 ____________________________________________________________________________
28045 [ 26900] By: stevep                                on 2006/01/18  13:32:09
28046         Log: Digest::SHA's t/2-nist-sha-oo.t has some path related problems on
28047              VMS as well.
28048      Branch: perl
28049            ! ext/Digest/SHA/t/2-nist-sha-oo.t
28050 ____________________________________________________________________________
28051 [ 26899] By: stevep                                on 2006/01/18  13:09:10
28052         Log: Fixes for Digest::SHA.  Replaced old ppport.h file with a new one
28053              generated from Devel::PPPort 3.07.  Also, fixed a UNIX-based path
28054              element that caused test failures on VMS (reported by John E. Malmberg
28055              <wb8tyw@qsl.net>).
28056      Branch: perl
28057            ! ext/Digest/SHA/ppport.h ext/Digest/SHA/t/6-dump-load.t
28058 ____________________________________________________________________________
28059 [ 26897] By: gisle                                 on 2006/01/18  11:57:07
28060         Log: Make sure the most common IPPROTO_* constants are always available.
28061              These are well known numbers so it should not be a problem to
28062              hardcode values when no constant is provided by the C library.
28063              Ref <http://www.iana.org/assignments/protocol-numbers>.
28064              
28065              On some old glibc systems (eg Redhat 6) IPPROTO_TCP is an enum only
28066              and this change workaround that problem as well.
28067      Branch: perl
28068            ! ext/Socket/Makefile.PL
28069 ____________________________________________________________________________
28070 [ 26893] By: gisle                                 on 2006/01/18  10:12:14
28071         Log: Suppress "statement not reached" warning from the Sun C compiler.
28072      Branch: perl
28073            ! doio.c
28074 ____________________________________________________________________________
28075 [ 26892] By: rgs                                   on 2006/01/18  10:06:24
28076         Log: Explain better how that test count works.
28077      Branch: perl
28078            ! t/comp/require.t
28079 ____________________________________________________________________________
28080 [ 26891] By: nicholas                              on 2006/01/18  10:02:19
28081         Log: New t/comp/require.t tests should go before the conditional exit.
28082      Branch: perl
28083            ! t/comp/require.t
28084 ____________________________________________________________________________
28085 [ 26889] By: craigb                                on 2006/01/18  05:12:10
28086         Log: special VMS handling no longer needed since we now close the file
28087      Branch: perl
28088            ! lib/File/Compare.t
28089 ____________________________________________________________________________
28090 [ 26885] By: rgs                                   on 2006/01/17  21:45:37
28091         Log: Gisle points out that it's ok to ignore the return value of newSVrv.
28092              Due to how embed.pl is implemented, this also has the unfortunate
28093              side-effect of removing __attribute__malloc__ from the attributes of
28094              this function, but given that the new pointer is stored elsewhere
28095              anyway, this shouldn't impact what gcc could have optimized.
28096      Branch: perl
28097            ! embed.fnc proto.h
28098 ____________________________________________________________________________
28099 [ 26883] By: rgs                                   on 2006/01/17  21:22:38
28100         Log: Regression test for change #26881
28101      Branch: perl
28102            ! t/comp/require.t
28103 ____________________________________________________________________________
28104 [ 26881] By: rgs                                   on 2006/01/17  19:03:51
28105         Log: The current OP that is tested in doeval() can be a require(), an
28106              eval() or a do(). When we test whether OPf_SPECIAL is set on it, be
28107              sure to take into account that it's the eval-related meaning of
28108              OPf_SPECIAL we're testing for, not the require-related one.
28109      Branch: perl
28110            ! pp_ctl.c
28111 ____________________________________________________________________________
28112 [ 26878] By: rgs                                   on 2006/01/17  16:15:15
28113         Log: Make the description of $^M in perlvar a bit more clear
28114              w.r.t. cross-references to the INSTALL document. (spotted
28115              by Stas Bekman)
28116      Branch: perl
28117            ! pod/perlvar.pod
28118 ____________________________________________________________________________
28119 [ 26877] By: rgs                                   on 2006/01/17  16:08:47
28120         Log: Subject: Re: [PATCH] Updated README.macosx
28121              From: Sherm Pendley <sherm@dot-app.org>
28122              Date: Mon, 16 Jan 2006 16:53:23 -0500
28123              Message-Id: <619C9A5D-972F-4B90-A99A-B4B6D04C584D@dot-app.org>
28124      Branch: perl
28125            ! README.macosx
28126 ____________________________________________________________________________
28127 [ 26871] By: gisle                                 on 2006/01/17  11:37:54
28128         Log: More readable MEM_WRAP_CHECK_1() macro.
28129              This form also avoids the "dead part of constant expression is nonconstant"
28130              warning from the Sun Studio 10 compiler.
28131      Branch: perl
28132            ! README.solaris handy.h
28133 ____________________________________________________________________________
28134 [ 26870] By: craigb                                on 2006/01/17  04:03:01
28135         Log: Dots in directory names aren't nice on VMS.
28136      Branch: perl
28137            ! lib/Archive/Tar/t/04_resolved_issues.t
28138 ____________________________________________________________________________
28139 [ 26869] By: craigb                                on 2006/01/17  03:28:20
28140         Log: more case tolerance for vms/ext/filespec.t
28141      Branch: perl
28142            ! vms/ext/filespec.t
28143 ____________________________________________________________________________
28144 [ 26868] By: stevep                                on 2006/01/16  22:31:52
28145         Log: Don't warn about a directory being closed in the DESTROY for
28146              IO::Dir.
28147      Branch: perl
28148            ! ext/IO/lib/IO/Dir.pm
28149 ____________________________________________________________________________
28150 [ 26867] By: rgs                                   on 2006/01/16  19:16:58
28151         Log: defined %foo::bar:: wasn't working like it used to do in evals
28152              (and, consequently, when require'ing modules.)
28153      Branch: perl
28154            ! t/op/stash.t toke.c
28155 ____________________________________________________________________________
28156 [ 26866] By: mhx                                   on 2006/01/16  18:13:28
28157         Log: Upgrade to Devel::PPPort 3.07
28158      Branch: perl
28159            + ext/Devel/PPPort/parts/base/5008007
28160            + ext/Devel/PPPort/parts/base/5009003
28161            + ext/Devel/PPPort/parts/inc/Sv_set
28162            + ext/Devel/PPPort/parts/inc/memory
28163            + ext/Devel/PPPort/parts/inc/variables
28164            + ext/Devel/PPPort/parts/todo/5008007
28165            + ext/Devel/PPPort/parts/todo/5009003
28166            + ext/Devel/PPPort/t/Sv_set.t ext/Devel/PPPort/t/memory.t
28167            + ext/Devel/PPPort/t/variables.t
28168            ! MANIFEST ext/Devel/PPPort/Changes ext/Devel/PPPort/HACKERS
28169            ! ext/Devel/PPPort/MANIFEST ext/Devel/PPPort/META.yml
28170            ! ext/Devel/PPPort/Makefile.PL ext/Devel/PPPort/PPPort.pm
28171            ! ext/Devel/PPPort/PPPort.xs ext/Devel/PPPort/PPPort_pm.PL
28172            ! ext/Devel/PPPort/PPPort_xs.PL ext/Devel/PPPort/README
28173            ! ext/Devel/PPPort/TODO ext/Devel/PPPort/apicheck_c.PL
28174            ! ext/Devel/PPPort/devel/buildperl.pl
28175            ! ext/Devel/PPPort/devel/mkapidoc.sh
28176            ! ext/Devel/PPPort/devel/mktodo ext/Devel/PPPort/devel/mktodo.pl
28177            ! ext/Devel/PPPort/devel/scanprov ext/Devel/PPPort/mktests.PL
28178            ! ext/Devel/PPPort/module2.c ext/Devel/PPPort/module3.c
28179            ! ext/Devel/PPPort/parts/apicheck.pl
28180            ! ext/Devel/PPPort/parts/apidoc.fnc
28181            ! ext/Devel/PPPort/parts/base/5004000
28182            ! ext/Devel/PPPort/parts/base/5004050
28183            ! ext/Devel/PPPort/parts/base/5006000
28184            ! ext/Devel/PPPort/parts/base/5007001
28185            ! ext/Devel/PPPort/parts/base/5008001
28186            ! ext/Devel/PPPort/parts/embed.fnc
28187            ! ext/Devel/PPPort/parts/inc/MY_CXT
28188            ! ext/Devel/PPPort/parts/inc/SvPV
28189            ! ext/Devel/PPPort/parts/inc/call ext/Devel/PPPort/parts/inc/cop
28190            ! ext/Devel/PPPort/parts/inc/exception
28191            ! ext/Devel/PPPort/parts/inc/format
28192            ! ext/Devel/PPPort/parts/inc/grok
28193            ! ext/Devel/PPPort/parts/inc/limits
28194            ! ext/Devel/PPPort/parts/inc/mPUSH
28195            ! ext/Devel/PPPort/parts/inc/magic
28196            ! ext/Devel/PPPort/parts/inc/misc
28197            ! ext/Devel/PPPort/parts/inc/newCONSTSUB
28198            ! ext/Devel/PPPort/parts/inc/newRV
28199            ! ext/Devel/PPPort/parts/inc/ppphbin
28200            ! ext/Devel/PPPort/parts/inc/ppphdoc
28201            ! ext/Devel/PPPort/parts/inc/ppphtest
28202            ! ext/Devel/PPPort/parts/inc/sv_xpvf
28203            ! ext/Devel/PPPort/parts/inc/threads
28204            ! ext/Devel/PPPort/parts/inc/uv
28205            ! ext/Devel/PPPort/parts/inc/version
28206            ! ext/Devel/PPPort/parts/ppptools.pl
28207            ! ext/Devel/PPPort/parts/todo/5004000
28208            ! ext/Devel/PPPort/parts/todo/5007001
28209            ! ext/Devel/PPPort/parts/todo/5008001
28210            ! ext/Devel/PPPort/ppport_h.PL ext/Devel/PPPort/soak
28211            ! ext/Devel/PPPort/t/misc.t ext/Devel/PPPort/t/ppphtest.t
28212            ! ext/Devel/PPPort/t/testutil.pl ext/Devel/PPPort/typemap
28213 ____________________________________________________________________________
28214 [ 26863] By: rgs                                   on 2006/01/16  14:09:29
28215         Log: Upgrade to Encode 2.14
28216      Branch: perl
28217            + ext/Encode/t/from_to.t
28218            ! MANIFEST ext/Encode/AUTHORS ext/Encode/Changes
28219            ! ext/Encode/Encode.pm ext/Encode/Encode.xs ext/Encode/MANIFEST
28220            ! ext/Encode/META.yml ext/Encode/bin/enc2xs
28221            ! ext/Encode/encoding.pm ext/Encode/lib/Encode/CN/HZ.pm
28222            ! ext/Encode/lib/Encode/MIME/Header.pm
28223            ! ext/Encode/t/mime-header.t ext/Encode/ucm/8859-7.ucm
28224 ____________________________________________________________________________
28225 [ 26861] By: nicholas                              on 2006/01/16  13:10:06
28226         Log: Teach checkAUTHORS about all the authors in 5.8.2-5.8.8, and any others
28227              whose e-mail address I recognise.
28228      Branch: perl
28229            ! Porting/checkAUTHORS.pl
28230 ____________________________________________________________________________
28231 [ 26859] By: rgs                                   on 2006/01/16  12:07:34
28232         Log: Add new directories from C::Zlib to make clean
28233      Branch: perl
28234            ! Makefile.SH
28235 ____________________________________________________________________________
28236 [ 26858] By: rgs                                   on 2006/01/16  11:13:54
28237         Log: Subject: [PAUSE] CPAN Upload: A/AN/ANDK/CPAN-1.83_55.tar.gz
28238              From: andreas.koenig.gmwojprw@franz.ak.mind.de (Andreas J. Koenig)
28239              Date: Sat, 14 Jan 2006 12:57:48 +0100
28240              Message-ID: <87u0c7yqbn.fsf@k75.linux.bogus>
28241      Branch: perl
28242            ! lib/CPAN.pm lib/CPAN/FirstTime.pm lib/CPAN/HandleConfig.pm
28243            ! lib/CPAN/SIGNATURE lib/CPAN/bin/cpan
28244 ____________________________________________________________________________
28245 [ 26857] By: craigb                                on 2006/01/14  16:45:56
28246         Log: Give up on through.t on VMS for now -- no can do with current 
28247              pipe implementation.
28248      Branch: perl
28249            ! t/io/through.t
28250 ____________________________________________________________________________
28251 [ 26856] By: nicholas                              on 2006/01/14  12:49:31
28252         Log: Can now count the patches committed with --thanks-applied.
28253              Changes5.8's top 3:
28254              3332:   jhi
28255              321:    ams
28256              60:     nick
28257      Branch: perl
28258            ! Porting/checkAUTHORS.pl
28259 ____________________________________________________________________________
28260 [ 26855] By: nicholas                              on 2006/01/14  12:35:58
28261         Log: Oops. When the e-mail address came first, or there was no name with it,
28262              checkAUTHORS.pl wasn't recognising it, which caused the change to be
28263              attributed to the committer rather than the author. This now reveals
28264              several people "missing" from the AUTHORS file.
28265      Branch: perl
28266            ! Porting/checkAUTHORS.pl
28267 ____________________________________________________________________________
28268 [ 26854] By: nicholas                              on 2006/01/14  12:25:15
28269         Log: Some reordering and one new address for Stéphane Payrard
28270      Branch: perl
28271            ! Porting/checkAUTHORS.pl
28272 ____________________________________________________________________________
28273 [ 26853] By: nicholas                              on 2006/01/14  12:20:19
28274         Log: Teach checkAUTHORS.pl about everyone in Changes5.8.[2-8], adding to
28275              AUTHORS where necessary.
28276      Branch: perl
28277            ! AUTHORS Porting/checkAUTHORS.pl
28278 ____________________________________________________________________________
28279 [ 26852] By: nicholas                              on 2006/01/14  11:54:09
28280         Log: Add Ken Hirsch to AUTHORS.
28281      Branch: perl
28282            ! AUTHORS
28283 ____________________________________________________________________________
28284 [ 26850] By: nicholas                              on 2006/01/14  11:39:42
28285         Log: e-mail update from Phil Lobbes
28286      Branch: perl
28287            ! AUTHORS Porting/checkAUTHORS.pl
28288 ____________________________________________________________________________
28289 [ 26849] By: rgs                                   on 2006/01/14  10:26:15
28290         Log: Perldelta nits by Jim Cromie
28291      Branch: perl
28292            ! pod/perl593delta.pod
28293 ____________________________________________________________________________
28294 [ 26846] By: rgs                                   on 2006/01/14  08:49:12
28295         Log: Adapt test.valgrind make target to recent valgrinds (3.x)
28296              by Jim Cromie
28297      Branch: perl
28298            ! t/TEST
28299 ____________________________________________________________________________
28300 [ 26845] By: craigb                                on 2006/01/14  05:16:27
28301         Log: Friday the 13th, Part II.  Don't call SYS$GETJPI with fancy case
28302              lookup stuff on older systems that don't know what it means (broken
28303              in #25306).
28304      Branch: perl
28305            ! vms/vms.c
28306 ____________________________________________________________________________
28307 [ 26844] By: craigb                                on 2006/01/14  05:02:38
28308         Log: Eek.  #25783 broke all pre-v8.2 VMS builds.  Undo all the bits
28309              having to do with dirent, opendir, etc.  Must be Friday the 13th.
28310      Branch: perl
28311            ! configure.com vms/vms.c vms/vmsish.h
28312 ____________________________________________________________________________
28313 [ 26838] By: nicholas                              on 2006/01/13  21:44:47
28314         Log: checkAUTHORS.pl --rank would loop infinitely on an empty results array.
28315      Branch: perl
28316            ! Porting/checkAUTHORS.pl
28317 ____________________________________________________________________________
28318 [ 26835] By: stevep                                on 2006/01/13  19:31:19
28319         Log: Additional tests for RT #38207: "Useless localization of constant ($[)
28320              in getopts.pl".
28321      Branch: perl
28322            ! t/op/local.t
28323 ____________________________________________________________________________
28324 [ 26831] By: nicholas                              on 2006/01/13  18:10:55
28325         Log: Subject: Re: Today's compiling adventure
28326              From: Ken Hirsch <kenhirsch@ftml.net>
28327              Message-ID: <43C69F48.7090600@ftml.net>
28328              Date: Thu, 12 Jan 2006 13:26:16 -0500
28329      Branch: perl
28330            ! pp_sys.c
28331 ____________________________________________________________________________
28332 [ 26826] By: rgs                                   on 2006/01/13  17:32:31
28333         Log: More perldelta work
28334      Branch: perl
28335            ! pod/perl593delta.pod
28336 ____________________________________________________________________________
28337 [ 26824] By: nicholas                              on 2006/01/13  17:08:13
28338         Log: $utf8::VERSION++ # Documentation.
28339      Branch: perl
28340            ! lib/utf8.pm
28341 ____________________________________________________________________________
28342 [ 26819] By: rgs                                   on 2006/01/13  14:50:32
28343         Log: Fix internal links in POD.
28344      Branch: perl
28345            ! lib/utf8.pm
28346 ____________________________________________________________________________
28347 [ 26817] By: nicholas                              on 2006/01/13  14:02:00
28348         Log: More $VERSION bumps.
28349      Branch: perl
28350            ! ext/PerlIO/via/via.pm lib/Attribute/Handlers.pm lib/Switch.pm
28351 ____________________________________________________________________________
28352 [ 26816] By: rgs                                   on 2006/01/13  13:47:52
28353         Log: Better wording for change 26796. Plus, make podchecker happy.
28354      Branch: perl
28355            ! lib/PerlIO.pm
28356 ____________________________________________________________________________
28357 [ 26815] By: gisle                                 on 2006/01/13  12:10:28
28358         Log: Fix [perl #38223]; _IOC_SIZE() not always safe.
28359      Branch: perl
28360            ! perl.h
28361 ____________________________________________________________________________
28362 [ 26814] By: rgs                                   on 2006/01/13  09:22:14
28363         Log: Add a link to the Opcode doc in Safe.
28364              (see RT CPAN ticket #8579)
28365      Branch: perl
28366            ! ext/Opcode/Safe.pm
28367 ____________________________________________________________________________
28368 [ 26813] By: craigb                                on 2006/01/13  01:12:44
28369         Log: Assorted VMS-only MakeMaker fixes for blead
28370      Branch: perl
28371            ! lib/ExtUtils/MM_Unix.pm lib/ExtUtils/MM_VMS.pm
28372            ! lib/ExtUtils/t/FIRST_MAKEFILE.t lib/ExtUtils/t/basic.t
28373 ____________________________________________________________________________
28374 [ 26812] By: rgs                                   on 2006/01/12  23:11:16
28375         Log: Make h2ph recognize (and skip) const and __const__ in C function
28376              prototypes. This makes it produce better files on linux-sparc64.
28377      Branch: perl
28378            ! utils/h2ph.PL
28379 ____________________________________________________________________________
28380 [ 26809] By: nicholas                              on 2006/01/12  20:03:51
28381         Log: Upgrade to Devel::PPPort 3.06_01
28382      Branch: perl
28383            ! ext/Devel/PPPort/Changes ext/Devel/PPPort/HACKERS
28384            ! ext/Devel/PPPort/META.yml ext/Devel/PPPort/PPPort.pm
28385            ! ext/Devel/PPPort/PPPort.xs ext/Devel/PPPort/PPPort_pm.PL
28386            ! ext/Devel/PPPort/devel/buildperl.pl
28387            ! ext/Devel/PPPort/devel/mkapidoc.sh ext/Devel/PPPort/mktests.PL
28388            ! ext/Devel/PPPort/parts/apicheck.pl
28389            ! ext/Devel/PPPort/parts/apidoc.fnc
28390            ! ext/Devel/PPPort/parts/base/5006000
28391            ! ext/Devel/PPPort/parts/base/5009002
28392            ! ext/Devel/PPPort/parts/embed.fnc
28393            ! ext/Devel/PPPort/parts/inc/MY_CXT
28394            ! ext/Devel/PPPort/parts/inc/SvPV
28395            ! ext/Devel/PPPort/parts/inc/format
28396            ! ext/Devel/PPPort/parts/inc/grok
28397            ! ext/Devel/PPPort/parts/inc/misc
28398            ! ext/Devel/PPPort/parts/inc/newCONSTSUB
28399            ! ext/Devel/PPPort/parts/inc/ppphbin
28400            ! ext/Devel/PPPort/parts/inc/ppphdoc
28401            ! ext/Devel/PPPort/parts/inc/ppphtest
28402            ! ext/Devel/PPPort/parts/inc/version
28403            ! ext/Devel/PPPort/parts/ppptools.pl
28404            ! ext/Devel/PPPort/parts/todo/5004040
28405            ! ext/Devel/PPPort/parts/todo/5005000
28406            ! ext/Devel/PPPort/parts/todo/5006000
28407            ! ext/Devel/PPPort/ppport_h.PL ext/Devel/PPPort/soak
28408            ! ext/Devel/PPPort/t/newCONSTSUB.t ext/Devel/PPPort/t/ppphtest.t
28409 ____________________________________________________________________________
28410 [ 26808] By: merijn                                on 2006/01/12  19:54:57
28411         Log: Add new mpeix file from #26807
28412      Branch: perl
28413            ! MANIFEST
28414 ____________________________________________________________________________
28415 [ 26807] By: merijn                                on 2006/01/12  19:52:01
28416         Log: Subject: Re: Today's compiling adventure
28417              From: Ken Hirsch <kenhirsch@ftml.net>
28418              Date: Thu, 12 Jan 2006 13:26:16 -0500
28419              Message-ID: <43C69F48.7090600@ftml.net>
28420      Branch: perl
28421            + mpeix/mpeix_setjmp.c
28422            ! README.mpeix hints/mpeix.sh mpeix/mpeix.c mpeix/mpeixish.h
28423            ! pp_sys.c
28424 ____________________________________________________________________________
28425 [ 26805] By: nicholas                              on 2006/01/12  19:09:19
28426         Log: $Socket::VERSION++; # You always miss one.
28427      Branch: perl
28428            ! ext/Socket/Socket.pm
28429 ____________________________________________________________________________
28430 [ 26804] By: nicholas                              on 2006/01/12  18:44:49
28431         Log: Bump $VERSION in many modules that have changed.
28432      Branch: perl
28433            ! ext/File/Glob/Glob.pm ext/GDBM_File/GDBM_File.pm
28434            ! ext/NDBM_File/NDBM_File.pm ext/ODBM_File/ODBM_File.pm
28435            ! ext/Opcode/Opcode.pm ext/Opcode/ops.pm
28436            ! ext/SDBM_File/SDBM_File.pm ext/XS/Typemap/Typemap.pm
28437            ! ext/attrs/attrs.pm ext/re/re.pm ext/threads/shared/shared.pm
28438            ! lib/DB.pm lib/Dumpvalue.pm lib/English.pm lib/File/Copy.pm
28439            ! lib/FileCache.pm lib/Pod/Functions.pm lib/Pod/Html.pm
28440            ! lib/Term/ReadLine.pm lib/Tie/Hash.pm lib/Unicode/UCD.pm
28441            ! lib/User/grent.pm lib/blib.pm lib/diagnostics.pm
28442            ! lib/overload.pm lib/vmsish.pm lib/warnings.pm
28443            ! lib/warnings/register.pm os2/OS2/PrfDB/PrfDB.pm
28444            ! os2/OS2/Process/Process.pm os2/OS2/REXX/REXX.pm warnings.pl
28445 ____________________________________________________________________________
28446 [ 26803] By: rgs                                   on 2006/01/12  15:40:53
28447         Log: Don't warn when localizing $[
28448      Branch: perl
28449            ! op.c t/lib/warnings/op
28450 ____________________________________________________________________________
28451 [ 26802] By: rgs                                   on 2006/01/12  13:47:59
28452         Log: Subject: [perl #38205] misleading typo in perlfaq8
28453              From: erik@cs.uni-jena.de (via RT) <perlbug-followup@perl.org>
28454              Date: Wed, 11 Jan 2006 14:56:28 -0800
28455              Message-ID: <rt-3.0.11-38205-127890.10.340635502974@perl.org>
28456      Branch: perl
28457            ! pod/perlfaq8.pod
28458 ____________________________________________________________________________
28459 [ 26801] By: rgs                                   on 2006/01/12  13:36:05
28460         Log: FAQ sync.
28461      Branch: perl
28462            ! pod/perlfaq.pod pod/perlfaq2.pod
28463 ____________________________________________________________________________
28464 [ 26800] By: rgs                                   on 2006/01/12  13:25:15
28465         Log: Subject: [PATCH] Compress::Zlib
28466              From: "Paul Marquess" <paul.marquess@ntlworld.com>
28467              Date: Thu, 12 Jan 2006 13:20:58 -0000
28468              Message-ID: <020d01c6177b$087b1c60$4c05140a@myopwv.com>
28469      Branch: perl
28470            ! ext/Compress/Zlib/t/16oneshot-gzip-only.t
28471            ! ext/Compress/Zlib/t/16oneshot-zip-only.t
28472 ____________________________________________________________________________
28473 [ 26799] By: rgs                                   on 2006/01/12  11:20:27
28474         Log: Subject: Re: cloning and foo_dup functions
28475              From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
28476              Date: Thu, 12 Jan 2006 01:41:18 -0800
28477              Message-ID: <20060112094118.GA1432@efn.org>
28478      Branch: perl
28479            ! embed.fnc pod/perltodo.pod proto.h
28480 ____________________________________________________________________________
28481 [ 26798] By: rgs                                   on 2006/01/12  11:02:45
28482         Log: Test comment fix by Dominic Dunlop
28483      Branch: perl
28484            ! lib/locale.t
28485 ____________________________________________________________________________
28486 [ 26797] By: rgs                                   on 2006/01/12  10:13:27
28487         Log: Typo fix.
28488      Branch: perl
28489            ! pod/perlvar.pod
28490 ____________________________________________________________________________
28491 [ 26796] By: nicholas                              on 2006/01/11  22:41:04
28492         Log: Subject: [PATCH] fix for :crlf example 
28493              From: Xavier Noria <fxn@hashref.com> 
28494              Message-Id: <0F64C146-3A80-4FDF-8149-AFB35B3C4D3B@hashref.com> 
28495              Date: Wed, 11 Jan 2006 23:11:49 +0100 
28496              
28497              plus bump its $VERSION
28498      Branch: perl
28499            ! lib/PerlIO.pm
28500 ____________________________________________________________________________
28501 [ 26795] By: gisle                                 on 2006/01/11  21:09:19
28502         Log: A few more places that can use hv_fetchs().
28503              Ref change 26676.
28504      Branch: perl
28505            ! ext/POSIX/POSIX.xs gv.c mg.c pp_ctl.c toke.c universal.c
28506            ! utf8.c util.c
28507 ____________________________________________________________________________
28508 [ 26793] By: merijn                                on 2006/01/11  21:02:14
28509         Log: Cygwin issue (26792) and patchlevel (26790)
28510              
28511              Subject: Re: Cygwin status, maint and blead
28512              From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
28513              Date: Fri, 6 Jan 2006 13:47:10 -0800
28514              Message-ID: <20060106214710.GA592@efn.org>
28515              
28516              Subject: Re: Cygwin status, maint and blead
28517              From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
28518              Date: Thu, 10 Nov 2005 00:46:33 -0800
28519              Message-ID: <20051110084633.GA3364@efn.org>
28520      Branch: perl
28521            ! Configure
28522 ____________________________________________________________________________
28523 [ 26791] By: gisle                                 on 2006/01/11  20:50:30
28524         Log: Make $( and $) list the groups in the order they
28525              are returned from the OS.  Linux seems to return
28526              the gids sorted and it seemed wrong for perl to
28527              reverse this order.
28528      Branch: perl
28529            ! mg.c
28530 ____________________________________________________________________________
28531 [ 26789] By: stevep                                on 2006/01/11  19:07:04
28532         Log: Subject: Re: [PATCH] Mac OS X 10.4.4 (Darwin 8.4.0) still does not fix locale issue
28533              From: Dominic Dunlop <domo@computer.org>
28534              Date: Wed, 11 Jan 2006 19:52:20 +0100
28535              Message-Id: <FD99F9D3-16DB-484C-BC0A-702F60DAACA4@computer.org>
28536      Branch: perl
28537            ! lib/locale.t
28538 ____________________________________________________________________________
28539 [ 26787] By: nicholas                              on 2006/01/11  14:47:04
28540         Log: Refactor S_vdie_common so that Perl_vwarn can use it too.
28541      Branch: perl
28542            ! embed.fnc embed.h proto.h util.c
28543 ____________________________________________________________________________
28544 [ 26786] By: gisle                                 on 2006/01/11  14:23:28
28545         Log: Get rid of the following gcc format warnings by    simplifying the
28546              getgroups implementation:
28547              
28548              mg.c: In function Perl_magic_get':
28549              mg.c:1008: warning: long unsigned int format, gid_t arg (arg 3)
28550              mg.c:1014: warning: long unsigned int format, gid_t arg (arg 3)
28551              mg.c:1025: warning: long unsigned int format, unsigned int arg (arg 3)
28552              
28553              Since we already cast the numeric Gid_t values to an IV it should not
28554              be too risky to also cast the Group_t values.  Converting these values
28555              with Gid_t_f wasn't quite right anyway.
28556      Branch: perl
28557            ! mg.c
28558 ____________________________________________________________________________
28559 [ 26785] By: steveh                                on 2006/01/11  14:07:47
28560         Log: Clean up temp files/dirs left by Archive-Tar tests
28561              
28562              Part of this reinstates change 25043 which was mistakenly removed
28563              by change 25312
28564      Branch: perl
28565            ! lib/Archive/Tar/t/02_methods.t lib/Archive/Tar/t/99_clean.t
28566 ____________________________________________________________________________
28567 [ 26784] By: rgs                                   on 2006/01/11  12:52:27
28568         Log: Make description of new warning introduced in change 26780 more precise
28569      Branch: perl
28570            ! pod/perldiag.pod
28571 ____________________________________________________________________________
28572 [ 26783] By: steveh                                on 2006/01/11  12:31:26
28573         Log: Clean up libdirs left behind by new Compress-Zlib
28574      Branch: perl
28575            ! win32/Makefile win32/makefile.mk
28576 ____________________________________________________________________________
28577 [ 26782] By: stevep                                on 2006/01/11  12:25:24
28578         Log: Subject: Fw: CPAN Upload: S/SA/SAPER/Sys-Syslog-0.13.tar.gz
28579              From: Sébastien Aperghis-Tramoni <maddingue@free.fr>
28580              Date: Wed, 11 Jan 2006 02:13:31 +0100
28581              Message-ID: <1136942011.43c45bbb82dce@imp1-g19.free.fr>
28582      Branch: perl
28583            ! ext/Sys/Syslog/Changes ext/Sys/Syslog/Syslog.pm
28584 ____________________________________________________________________________
28585 [ 26781] By: nicholas                              on 2006/01/11  12:11:03
28586         Log: Gisle notes that SvRTRIM should also write a new '\0' at the end.
28587      Branch: perl
28588            ! mg.c
28589 ____________________________________________________________________________
28590 [ 26780] By: stevep                                on 2006/01/11  11:53:07
28591         Log: Fix the new warning created with version-0.53
28592      Branch: perl
28593            ! pod/perldiag.pod util.c
28594 ____________________________________________________________________________
28595 [ 26779] By: gisle                                 on 2006/01/11  09:52:18
28596         Log: Make setting 'PL_origalen = 1' before perl_parse() disable
28597              argv[0] munging when $0 is assigned to.
28598      Branch: perl
28599            ! mg.c perl.c pod/perlembed.pod
28600 ____________________________________________________________________________
28601 [ 26778] By: steveh                                on 2006/01/11  09:04:38
28602         Log: Bleadperl's Win32::Win32 is more recent than the current CPAN release
28603              of libwin32 (0.26), so bump the $VERSION a little
28604      Branch: perl
28605            ! win32/ext/Win32/Win32.pm
28606 ____________________________________________________________________________
28607 [ 26777] By: stevep                                on 2006/01/11  03:22:57
28608         Log: Upgrade to version-0.53
28609      Branch: perl
28610            ! lib/version.pm lib/version.t util.c
28611 ____________________________________________________________________________
28612 [ 26774] By: nicholas                              on 2006/01/10  17:46:15
28613         Log: s/superceded/superseded/g
28614      Branch: perl
28615            ! Changes5.004 Changes5.6 handy.h pod/perlapi.pod
28616 ____________________________________________________________________________
28617 [ 26773] By: nicholas                              on 2006/01/10  16:59:25
28618         Log: Subject: Re: Sys::Syslog blows up rather spectacularly on Solaris
28619              From: Alan Burlison <Alan.Burlison@sun.com>
28620              Message-ID: <43C3D80E.20704@sun.com>
28621              Date: Tue, 10 Jan 2006 15:51:42 +0000
28622      Branch: perl
28623            ! ext/Sys/Syslog/Syslog.pm ext/Sys/Syslog/t/constants.t
28624 ____________________________________________________________________________
28625 [ 26772] By: nicholas                              on 2006/01/10  16:36:03
28626         Log: Gisle is correct - $host needs to stay in case the user sets it
28627              themselves. But if the user doesn't, default to INADDR_LOOPBACK.
28628      Branch: perl
28629            ! ext/Sys/Syslog/Syslog.pm
28630 ____________________________________________________________________________
28631 [ 26770] By: merijn                                on 2006/01/10  15:16:03
28632         Log: 1. Make HP C-ANSI-C work on Itanium2 (HP-UX 11.23)
28633              broken optimizer
28634              2. Remove a compiler warning in a try program
28635      Branch: perl
28636            ! hints/hpux.sh
28637 ____________________________________________________________________________
28638 [ 26769] By: nicholas                              on 2006/01/10  15:09:07
28639         Log: Why should Syslog jump through hoops to look up the hostname so it can
28640              immediately convert it to an IP address, when all it really wants is
28641              a connection to the loopback device?
28642      Branch: perl
28643            ! ext/Sys/Syslog/Syslog.pm
28644 ____________________________________________________________________________
28645 [ 26768] By: gisle                                 on 2006/01/10  14:32:43
28646         Log: If getservbyname fails tell what service the lookup
28647              attempt tried to use.
28648      Branch: perl
28649            ! ext/Sys/Syslog/Syslog.pm
28650 ____________________________________________________________________________
28651 [ 26767] By: nicholas                              on 2006/01/10  13:24:26
28652         Log: Missing an initialisation, as spotted by Merijn's HP compiler.
28653      Branch: perl
28654            ! toke.c
28655 ____________________________________________________________________________
28656 [ 26766] By: rgs                                   on 2006/01/10  13:20:52
28657         Log: Remove Syslog tests that use external modules
28658      Branch: perl
28659            - ext/Sys/Syslog/t/distchk.t ext/Sys/Syslog/t/pod.t
28660            - ext/Sys/Syslog/t/podcover.t ext/Sys/Syslog/t/podspell.t
28661            - ext/Sys/Syslog/t/portfs.t
28662            ! MANIFEST
28663 ____________________________________________________________________________
28664 [ 26765] By: gisle                                 on 2006/01/10  11:41:24
28665         Log: Move initialization of old values prior to moreswitches()
28666              closer to their use and together with 'switches_done'.
28667      Branch: perl
28668            ! toke.c
28669 ____________________________________________________________________________
28670 [ 26764] By: rgs                                   on 2006/01/10  10:51:16
28671         Log: Subject: [PATCH] It's the Barbie bus patch
28672              From: Andy Lester <andy@petdance.com>
28673              Date: Mon, 9 Jan 2006 23:42:43 -0600
28674              Message-ID: <20060110054243.GA26165@petdance.com>
28675      Branch: perl
28676            ! av.c doio.c embed.fnc embed.h gv.c hv.c mg.c op.c pad.c
28677            ! pp_ctl.c pp_hot.c pp_sys.c proto.h reentr.c reentr.h regcomp.c
28678            ! regexec.c sv.c toke.c uconfig.sh util.c
28679 ____________________________________________________________________________
28680 [ 26762] By: gisle                                 on 2006/01/10  10:10:10
28681         Log: Remove stale date.
28682      Branch: perl
28683            ! pod/perlembed.pod
28684 ____________________________________________________________________________
28685 [ 26761] By: rgs                                   on 2006/01/10  10:05:26
28686         Log: Subject: [PATCH] Compress::Zlib  becomes zlib agnostic
28687              From: "Paul Marquess" <Paul.Marquess@ntlworld.com>
28688              Date: Mon, 9 Jan 2006 20:25:00 -0000
28689              Message-ID: <002101c6155a$c5886c90$1340100a@myopwv.com>
28690      Branch: perl
28691            + ext/Compress/Zlib/lib/Compress/Zip/Constants.pm
28692            + ext/Compress/Zlib/lib/CompressPlugin/Deflate.pm
28693            + ext/Compress/Zlib/lib/CompressPlugin/Identity.pm
28694            + ext/Compress/Zlib/lib/IO/Compress/Base.pm
28695            + ext/Compress/Zlib/lib/IO/Compress/Zip.pm
28696            + ext/Compress/Zlib/lib/IO/Uncompress/AnyUncompress.pm
28697            + ext/Compress/Zlib/lib/IO/Uncompress/Base.pm
28698            + ext/Compress/Zlib/lib/IO/Uncompress/Unzip.pm
28699            + ext/Compress/Zlib/lib/UncompressPlugin/Identity.pm
28700            + ext/Compress/Zlib/lib/UncompressPlugin/Inflate.pm
28701            + ext/Compress/Zlib/t/04generic-deflate.t
28702            + ext/Compress/Zlib/t/04generic-gzip.t
28703            + ext/Compress/Zlib/t/04generic-rawdeflate.t
28704            + ext/Compress/Zlib/t/04generic-zip.t
28705            + ext/Compress/Zlib/t/04zlib-generic-deflate.t
28706            + ext/Compress/Zlib/t/04zlib-generic-gzip.t
28707            + ext/Compress/Zlib/t/04zlib-generic-rawdeflate.t
28708            + ext/Compress/Zlib/t/04zlib-generic-zip.t
28709            + ext/Compress/Zlib/t/12any-deflate.t
28710            + ext/Compress/Zlib/t/12any-gzip.t
28711            + ext/Compress/Zlib/t/12any-rawdeflate.t
28712            + ext/Compress/Zlib/t/12any-transparent.t
28713            + ext/Compress/Zlib/t/12any-zip.t
28714            + ext/Compress/Zlib/t/13prime-deflate.t
28715            + ext/Compress/Zlib/t/13prime-gzip.t
28716            + ext/Compress/Zlib/t/13prime-rawdeflate.t
28717            + ext/Compress/Zlib/t/13prime-zip.t
28718            + ext/Compress/Zlib/t/15multi-deflate.t
28719            + ext/Compress/Zlib/t/15multi-gzip.t
28720            + ext/Compress/Zlib/t/15multi-rawdeflate.t
28721            + ext/Compress/Zlib/t/15multi-zip.t
28722            + ext/Compress/Zlib/t/16oneshot-deflate.t
28723            + ext/Compress/Zlib/t/16oneshot-gzip-only.t
28724            + ext/Compress/Zlib/t/16oneshot-gzip.t
28725            + ext/Compress/Zlib/t/16oneshot-rawdeflate.t
28726            + ext/Compress/Zlib/t/16oneshot-zip-only.t
28727            + ext/Compress/Zlib/t/16oneshot-zip.t
28728            + ext/Compress/Zlib/t/19destroy-deflate.t
28729            + ext/Compress/Zlib/t/19destroy-gzip.t
28730            + ext/Compress/Zlib/t/19destroy-rawdeflate.t
28731            + ext/Compress/Zlib/t/19destroy-zip.t
28732            + ext/Compress/Zlib/t/20tied-deflate.t
28733            + ext/Compress/Zlib/t/20tied-gzip.t
28734            + ext/Compress/Zlib/t/20tied-rawdeflate.t
28735            + ext/Compress/Zlib/t/20tied-zip.t
28736            + ext/Compress/Zlib/t/21newtied-deflate.t
28737            + ext/Compress/Zlib/t/21newtied-gzip.t
28738            + ext/Compress/Zlib/t/21newtied-rawdeflate.t
28739            + ext/Compress/Zlib/t/21newtied-zip.t
28740            + ext/Compress/Zlib/t/22merge-deflate.t
28741            + ext/Compress/Zlib/t/22merge-gzip.t
28742            + ext/Compress/Zlib/t/22merge-rawdeflate.t
28743            + ext/Compress/Zlib/t/22merge-zip.t
28744            + ext/Compress/Zlib/t/25anyunc-deflate.t
28745            + ext/Compress/Zlib/t/25anyunc-gzip.t
28746            + ext/Compress/Zlib/t/25anyunc-rawdeflate.t
28747            + ext/Compress/Zlib/t/25anyunc-transparent.t
28748            + ext/Compress/Zlib/t/25anyunc-zip.t ext/Compress/Zlib/t/99pod.t
28749            + t/lib/compress/ZlibTestUtils.pm t/lib/compress/any.pl
28750            + t/lib/compress/anyunc.pl t/lib/compress/destroy.pl
28751            + t/lib/compress/generic.pl t/lib/compress/merge.pl
28752            + t/lib/compress/multi.pl t/lib/compress/newtied.pl
28753            + t/lib/compress/oneshot.pl t/lib/compress/prime.pl
28754            + t/lib/compress/tied.pl t/lib/compress/truncate.pl
28755            + t/lib/compress/zlib-generic.pl
28756            - ext/Compress/Zlib/t/04def.t ext/Compress/Zlib/t/12any.t
28757            - ext/Compress/Zlib/t/13prime.t ext/Compress/Zlib/t/15multi.t
28758            - ext/Compress/Zlib/t/16oneshot.t
28759            - ext/Compress/Zlib/t/19destroy.t ext/Compress/Zlib/t/20tied.t
28760            - ext/Compress/Zlib/t/21newtied.t ext/Compress/Zlib/t/22merge.t
28761            - t/lib/ZlibTestUtils.pm
28762            ! MANIFEST ext/Compress/Zlib/Changes
28763            ! ext/Compress/Zlib/Makefile.PL ext/Compress/Zlib/README
28764            ! ext/Compress/Zlib/Zlib.pm ext/Compress/Zlib/Zlib.xs
28765            ! ext/Compress/Zlib/lib/Compress/Gzip/Constants.pm
28766            ! ext/Compress/Zlib/lib/Compress/Zlib/Common.pm
28767            ! ext/Compress/Zlib/lib/Compress/Zlib/FileConstants.pm
28768            ! ext/Compress/Zlib/lib/Compress/Zlib/ParseParameters.pm
28769            ! ext/Compress/Zlib/lib/File/GlobMapper.pm
28770            ! ext/Compress/Zlib/lib/IO/Compress/Deflate.pm
28771            ! ext/Compress/Zlib/lib/IO/Compress/Gzip.pm
28772            ! ext/Compress/Zlib/lib/IO/Compress/RawDeflate.pm
28773            ! ext/Compress/Zlib/lib/IO/Uncompress/AnyInflate.pm
28774            ! ext/Compress/Zlib/lib/IO/Uncompress/Gunzip.pm
28775            ! ext/Compress/Zlib/lib/IO/Uncompress/Inflate.pm
28776            ! ext/Compress/Zlib/lib/IO/Uncompress/RawInflate.pm
28777            ! ext/Compress/Zlib/pod/FAQ.pod ext/Compress/Zlib/ppport.h
28778            ! ext/Compress/Zlib/t/01version.t ext/Compress/Zlib/t/02zlib.t
28779            ! ext/Compress/Zlib/t/03zlib-v1.t
28780            ! ext/Compress/Zlib/t/05examples.t
28781            ! ext/Compress/Zlib/t/06gzsetp.t ext/Compress/Zlib/t/07bufsize.t
28782            ! ext/Compress/Zlib/t/08encoding.t
28783            ! ext/Compress/Zlib/t/09gziphdr.t ext/Compress/Zlib/t/10defhdr.t
28784            ! ext/Compress/Zlib/t/11truncate.t
28785            ! ext/Compress/Zlib/t/14gzopen.t ext/Compress/Zlib/t/17isize.t
28786            ! ext/Compress/Zlib/t/18lvalue.t ext/Compress/Zlib/t/23misc.t
28787            ! ext/Compress/Zlib/t/globmapper.t
28788 ____________________________________________________________________________
28789 [ 26760] By: gisle                                 on 2006/01/10  08:58:21
28790         Log: Avoid possible dereference of NULL in the initialization of PL_origalen.
28791              This can only happen when perlparse is called with no argv.
28792              Don't try to update PL_origargv unless PL_origalen is at least 2.
28793      Branch: perl
28794            ! mg.c perl.c
28795 ____________________________________________________________________________
28796 [ 26759] By: craigb                                on 2006/01/10  04:28:25
28797         Log: Make FAKE,READONLY optional on VMS in test 21
28798      Branch: perl
28799            ! ext/Devel/Peek/t/Peek.t
28800 ____________________________________________________________________________
28801 [ 26758] By: rgs                                   on 2006/01/09  14:58:57
28802         Log: Add Digest::SHA to the Win32 makefiles
28803      Branch: perl
28804            ! win32/Makefile win32/makefile.mk
28805 ____________________________________________________________________________
28806 [ 26757] By: rgs                                   on 2006/01/09  14:42:18
28807         Log: Subject: Re: relaxing TEST restrictions (was: Re: 5.9.3 approaches)
28808              From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
28809              Date: Mon, 9 Jan 2006 06:38:25 -0800
28810              Message-ID: <20060109143825.GB4132@efn.org>
28811      Branch: perl
28812            ! t/TEST
28813 ____________________________________________________________________________
28814 [ 26756] By: rgs                                   on 2006/01/09  14:28:20
28815         Log: Subject: [patch] more about embed.fnc in perlguts
28816              From: Jim Cromie <jim.cromie@gmail.com>
28817              Date: Sun, 08 Jan 2006 11:35:46 -0700
28818              Message-ID: <43C15B82.9090309@gmail.com>
28819              
28820              (with a few nits)
28821      Branch: perl
28822            ! embed.fnc pod/perlguts.pod
28823 ____________________________________________________________________________
28824 [ 26755] By: stevep                                on 2006/01/09  14:27:07
28825         Log: Added standard core header to test cases for Digest::SHA
28826      Branch: perl
28827            ! ext/Digest/SHA/t/0-pod-coverage.t ext/Digest/SHA/t/0-pod.t
28828            ! ext/Digest/SHA/t/1-exist.t ext/Digest/SHA/t/1-hello-world.t
28829            ! ext/Digest/SHA/t/2-nist-sha-1.t
28830            ! ext/Digest/SHA/t/2-nist-sha-224.t
28831            ! ext/Digest/SHA/t/2-nist-sha-256.t
28832            ! ext/Digest/SHA/t/2-nist-sha-384.t
28833            ! ext/Digest/SHA/t/2-nist-sha-512.t
28834            ! ext/Digest/SHA/t/2-nist-sha-base64.t
28835            ! ext/Digest/SHA/t/2-nist-sha-oo.t
28836            ! ext/Digest/SHA/t/2-nist-vectors-bit.t
28837            ! ext/Digest/SHA/t/2-nist-vectors-byte.t
28838            ! ext/Digest/SHA/t/3-gillogly-easy.t
28839            ! ext/Digest/SHA/t/3-gillogly-hard.t
28840            ! ext/Digest/SHA/t/4-bitstr-increasing.t
28841            ! ext/Digest/SHA/t/4-bitstr-large.t
28842            ! ext/Digest/SHA/t/4-bitstr-random.t
28843            ! ext/Digest/SHA/t/5-hmac-fips198.t
28844            ! ext/Digest/SHA/t/5-hmac-rfc2202.t
28845            ! ext/Digest/SHA/t/5-hmac-sha-256.t
28846            ! ext/Digest/SHA/t/5-hmac-woodbury.t
28847            ! ext/Digest/SHA/t/6-dump-load.t ext/Digest/SHA/t/7-ireland.t
28848 ____________________________________________________________________________
28849 [ 26754] By: nicholas                              on 2006/01/09  14:10:34
28850         Log: POSIX and Fcntl both export the same constants derived from the same
28851              C macros. Given that constants are now real inline and *defined*,
28852              rather than merely declared and AUTOLOADed as needed, it is best that
28853              POSIX quite litereally re-exports the constants defined by Fcntl.
28854      Branch: perl
28855            ! ext/POSIX/Makefile.PL ext/POSIX/POSIX.pm
28856 ____________________________________________________________________________
28857 [ 26753] By: gisle                                 on 2006/01/09  13:59:48
28858         Log: Restore hardcoded PERL_PATCHNUM removed in change 26672.
28859              This is actually needed for the current Configure logic
28860              to pick up the real patchnum from the .patch file.
28861      Branch: perl
28862            ! patchlevel.h
28863 ____________________________________________________________________________
28864 [ 26752] By: rgs                                   on 2006/01/09  13:44:20
28865         Log: Upgrade to Sys::Syslog 0.12
28866      Branch: perl
28867            ! ext/Sys/Syslog/Changes ext/Sys/Syslog/README
28868            ! ext/Sys/Syslog/Syslog.pm ext/Sys/Syslog/t/constants.t
28869            ! ext/Sys/Syslog/t/podspell.t
28870 ____________________________________________________________________________
28871 [ 26751] By: rgs                                   on 2006/01/09  10:16:23
28872         Log: Subject: [PATCH] RE: Failing tests on VMS blead@26652
28873              From: "Paul Marquess" <Paul.Marquess@ntlworld.com>
28874              Date: Sun, 8 Jan 2006 23:47:33 -0000
28875              Message-ID: <00cd01c614ad$e815d340$6401a8c0@myopwv.com>
28876      Branch: perl
28877            ! ext/Compress/Zlib/t/03zlib-v1.t ext/Compress/Zlib/t/04def.t
28878            ! ext/Compress/Zlib/t/05examples.t
28879            ! ext/Compress/Zlib/t/06gzsetp.t
28880            ! ext/Compress/Zlib/t/08encoding.t
28881            ! ext/Compress/Zlib/t/09gziphdr.t ext/Compress/Zlib/t/10defhdr.t
28882            ! ext/Compress/Zlib/t/11truncate.t ext/Compress/Zlib/t/13prime.t
28883            ! ext/Compress/Zlib/t/14gzopen.t ext/Compress/Zlib/t/15multi.t
28884            ! ext/Compress/Zlib/t/16oneshot.t
28885            ! ext/Compress/Zlib/t/19destroy.t ext/Compress/Zlib/t/20tied.t
28886            ! ext/Compress/Zlib/t/21newtied.t ext/Compress/Zlib/t/22merge.t
28887            ! ext/Compress/Zlib/t/23misc.t t/lib/ZlibTestUtils.pm
28888 ____________________________________________________________________________
28889 [ 26750] By: rgs                                   on 2006/01/09  08:20:00
28890         Log: Revert change 26749
28891      Branch: perl
28892            ! pod/perlvar.pod
28893 ____________________________________________________________________________
28894 [ 26749] By: davem                                 on 2006/01/09  02:20:51
28895         Log: Subject:  [PATCH] identifiers always in main (was: defining a _ function breaks File::Find)
28896              From:  Xavier Noria <fxn@hashref.com>
28897              Date:  Sun, 23 Oct 2005 09:47:37 +0200
28898              Message-Id:  <D3867DED-313E-4D39-A85F-1178FE7F7A5E@hashref.com>
28899              
28900              clarify which variables are always forced into main::
28901      Branch: perl
28902            ! pod/perlvar.pod
28903 ____________________________________________________________________________
28904 [ 26747] By: nicholas                              on 2006/01/08  22:43:15
28905         Log: Cope with change entries that are \r terminated
28906      Branch: perl
28907            ! Porting/genlog
28908 ____________________________________________________________________________
28909 [ 26745] By: craigb                                on 2006/01/08  22:37:47
28910         Log: follow-up to 26740, shasum --> shasum.com
28911      Branch: perl
28912            ! vms/descrip_mms.template
28913 ____________________________________________________________________________
28914 [ 26744] By: craigb                                on 2006/01/08  22:19:39
28915         Log: Grr.  #26690 broke handling of old ODS-2 style names
28916              on current versions of VMS
28917      Branch: perl
28918            ! configure.com
28919 ____________________________________________________________________________
28920 [ 26743] By: craigb                                on 2006/01/08  22:14:13
28921         Log: VMS needs the meta-quoted version of $0
28922      Branch: perl
28923            ! lib/Test/Simple/t/is_deeply_fail.t
28924 ____________________________________________________________________________
28925 [ 26740] By: rgs                                   on 2006/01/08  21:42:59
28926         Log: Install shasum on Windows and VMS too
28927      Branch: perl
28928            ! vms/descrip_mms.template win32/Makefile win32/makefile.mk
28929 ____________________________________________________________________________
28930 [ 26739] By: rgs                                   on 2006/01/08  21:34:22
28931         Log: Subject: Re: [perl #38181] Default IO Layer is ignored in 3-argument open call 
28932              From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
28933              Date: Mon, 09 Jan 2006 01:29:30 +0900
28934              Message-Id: <20060109012103.F20A.BQW10602@nifty.com>
28935      Branch: perl
28936            ! lib/open.pm pod/perlfunc.pod
28937 ____________________________________________________________________________
28938 [ 26737] By: nicholas                              on 2006/01/08  21:13:05
28939         Log: Update copyright with the 2 years where changes were made.
28940      Branch: perl
28941            ! pad.h
28942 ____________________________________________________________________________
28943 [ 26736] By: nicholas                              on 2006/01/08  20:41:25
28944         Log: Update the copyright years in the generated files, and nostdio.h
28945      Branch: perl
28946            ! keywords.h keywords.pl nostdio.h opcode.pl opnames.h
28947 ____________________________________________________________________________
28948 [ 26735] By: davem                                 on 2006/01/08  20:41:16
28949         Log: document svt_copy, svt_dup and svt_local vtable slots
28950      Branch: perl
28951            ! pod/perlguts.pod
28952 ____________________________________________________________________________
28953 [ 26733] By: rgs                                   on 2006/01/08  20:16:06
28954         Log: Add shasum (from Digest::SHA) to utils.lst
28955      Branch: perl
28956            ! utils.lst
28957 ____________________________________________________________________________
28958 [ 26732] By: nicholas                              on 2006/01/08  19:53:11
28959         Log: Update copyright years (including some years where we made changes but
28960              did not update)
28961      Branch: perl
28962            ! av.c deb.c mathoms.c mg.h numeric.c pad.c patchlevel.h perl.h
28963            ! perlvars.h perly.c run.c scope.c taint.c thread.h
28964 ____________________________________________________________________________
28965 [ 26726] By: nicholas                              on 2006/01/08  18:27:27
28966         Log: run pod/buildtoc --build-all
28967      Branch: perl
28968            ! MANIFEST pod/perltoc.pod vms/descrip_mms.template
28969            ! win32/Makefile win32/makefile.mk
28970 ____________________________________________________________________________
28971 [ 26725] By: nicholas                              on 2006/01/08  18:25:20
28972         Log: With VMS moving from [lib.pod] to [lib.pods] then pod/buildtoc needs
28973              tweaking
28974      Branch: perl
28975            ! pod/buildtoc
28976 ____________________________________________________________________________
28977 [ 26713] By: nicholas                              on 2006/01/08  15:24:53
28978         Log: Add an option 'opened' which reports on the maintainers of all files
28979              perforce currently has open.
28980      Branch: perl
28981            ! Porting/Maintainers.pm
28982 ____________________________________________________________________________
28983 [ 26710] By: craigb                                on 2006/01/08  13:33:43
28984         Log: pod2usage2.t is not readily portable to VMS either
28985      Branch: perl
28986            ! t/pod/pod2usage2.t
28987 ____________________________________________________________________________
28988 [ 26709] By: nicholas                              on 2006/01/08  13:15:30
28989         Log: Tweak the code that generates unique entries in @POSIX::EXPORT so that
28990              the array ends up with shared hash key scalars, for a memory saving.
28991      Branch: perl
28992            ! ext/POSIX/POSIX.pm
28993 ____________________________________________________________________________
28994 [ 26708] By: merijn                                on 2006/01/08  12:27:29
28995         Log: Subject: [PATCH] blead: format warnings
28996              Date: Sat, 07 Jan 2006 21:42:08 +0200
28997              From: Jarkko Hietaniemi <jhietaniemi@gmail.com>
28998              Message-ID: <43C01990.6020207@gmail.com>
28999      Branch: perl
29000            ! mg.c regcomp.c sv.c
29001 ____________________________________________________________________________
29002 [ 26707] By: merijn                                on 2006/01/08  09:53:56
29003         Log: Subject: [PATCH] hints/dec_osf.sh (Re: blead@26701 compilation warning from tru64 cc)
29004              From: Jarkko Hietaniemi <jhietaniemi@gmail.com>
29005              Date: Sun, 08 Jan 2006 11:38:34 +0200
29006              Message-ID: <43C0DD9A.9080809@gmail.com>
29007      Branch: perl
29008            ! hints/dec_osf.sh
29009 ____________________________________________________________________________
29010 [ 26706] By: nicholas                              on 2006/01/08  08:33:46
29011         Log: Add utils/shasum.PL to MANIFEST
29012      Branch: perl
29013            ! MANIFEST
29014 ____________________________________________________________________________
29015 [ 26705] By: nicholas                              on 2006/01/08  08:28:29
29016         Log: Add missing files in ext/Digest/SHA/src that somehow escaped the net.
29017      Branch: perl
29018            + ext/Digest/SHA/src/hmac.c ext/Digest/SHA/src/hmac.h
29019            + ext/Digest/SHA/src/hmacxtra.c ext/Digest/SHA/src/sha.c
29020            + ext/Digest/SHA/src/sha.h ext/Digest/SHA/src/sha64bit.c
29021            + ext/Digest/SHA/src/sha64bit.h ext/Digest/SHA/src/shaxtra.c
29022 ____________________________________________________________________________
29023 [ 26704] By: stevep                                on 2006/01/08  04:17:08
29024         Log: Add Digest-SHA-5.32 for SHA-256 support for CPAN.
29025      Branch: perl
29026            + ext/Digest/SHA/Changes ext/Digest/SHA/Makefile.PL
29027            + ext/Digest/SHA/README ext/Digest/SHA/SHA.pm
29028            + ext/Digest/SHA/SHA.xs ext/Digest/SHA/bin/shasum
29029            + ext/Digest/SHA/ppport.h ext/Digest/SHA/t/0-pod-coverage.t
29030            + ext/Digest/SHA/t/0-pod.t ext/Digest/SHA/t/1-exist.t
29031            + ext/Digest/SHA/t/1-hello-world.t
29032            + ext/Digest/SHA/t/2-nist-sha-1.t
29033            + ext/Digest/SHA/t/2-nist-sha-224.t
29034            + ext/Digest/SHA/t/2-nist-sha-256.t
29035            + ext/Digest/SHA/t/2-nist-sha-384.t
29036            + ext/Digest/SHA/t/2-nist-sha-512.t
29037            + ext/Digest/SHA/t/2-nist-sha-base64.t
29038            + ext/Digest/SHA/t/2-nist-sha-oo.t
29039            + ext/Digest/SHA/t/2-nist-vectors-bit.t
29040            + ext/Digest/SHA/t/2-nist-vectors-byte.t
29041            + ext/Digest/SHA/t/3-gillogly-easy.t
29042            + ext/Digest/SHA/t/3-gillogly-hard.t
29043            + ext/Digest/SHA/t/4-bitstr-increasing.t
29044            + ext/Digest/SHA/t/4-bitstr-large.t
29045            + ext/Digest/SHA/t/4-bitstr-random.t
29046            + ext/Digest/SHA/t/5-hmac-fips198.t
29047            + ext/Digest/SHA/t/5-hmac-rfc2202.t
29048            + ext/Digest/SHA/t/5-hmac-sha-256.t
29049            + ext/Digest/SHA/t/5-hmac-woodbury.t
29050            + ext/Digest/SHA/t/6-dump-load.t ext/Digest/SHA/t/7-ireland.t
29051            + ext/Digest/SHA/t/gillogly/state.011
29052            + ext/Digest/SHA/t/gillogly/state.110
29053            + ext/Digest/SHA/t/nist/COPYRIGHT
29054            + ext/Digest/SHA/t/nist/Readme.txt
29055            + ext/Digest/SHA/t/nist/bit-hashes.sha1
29056            + ext/Digest/SHA/t/nist/bit-messages.sha1
29057            + ext/Digest/SHA/t/nist/byte-hashes.sha1
29058            + ext/Digest/SHA/t/nist/byte-messages.sha1
29059            + ext/Digest/SHA/t/state/state.1
29060            + ext/Digest/SHA/t/state/state.256
29061            + ext/Digest/SHA/t/state/state.384
29062            + ext/Digest/SHA/t/state/state.512 ext/Digest/SHA/typemap
29063            + utils/shasum.PL
29064            ! MANIFEST Porting/Maintainers.pl utils/Makefile
29065 ____________________________________________________________________________
29066 [ 26703] By: craigb                                on 2006/01/07  22:12:16
29067         Log: Make v?snprintf available on VMS v7.3-2 and later and clean up
29068              some other version-dependency checks.
29069      Branch: perl
29070            ! configure.com
29071 ____________________________________________________________________________
29072 [ 26702] By: nicholas                              on 2006/01/07  20:42:57
29073         Log: Remove the greedy quantifier from inside the grouping (?:) so that it
29074              and the greedy quantifier on the (?:) don't fight each other until the
29075              C stack is exhausted.
29076      Branch: perl
29077            ! lib/Pod/Simple/BlackBox.pm
29078 ____________________________________________________________________________
29079 [ 26701] By: nicholas                              on 2006/01/07  17:19:29
29080         Log: Reorder Fcntl's bootstrapping so that the constants actually get
29081              inlined within the functions that Fcntl defines.
29082      Branch: perl
29083            ! ext/Fcntl/Fcntl.pm
29084 ____________________________________________________________________________
29085 [ 26695] By: davem                                 on 2006/01/07  03:13:08
29086         Log: preserve the referent associated with a shared RV.
29087              its faster, and the user doesn't see a different address each time
29088              for ref($sharedref).
29089      Branch: perl
29090            ! ext/threads/shared/shared.xs
29091 ____________________________________________________________________________
29092 [ 26694] By: stevep                                on 2006/01/07  03:13:05
29093         Log: Additional const prototype fixes.
29094      Branch: perl
29095            ! os2/os2.c wince/wince.c
29096 ____________________________________________________________________________
29097 [ 26693] By: davem                                 on 2006/01/07  01:24:37
29098         Log: fix coredump on 'local $shared[N]' introduced by change #24942
29099      Branch: perl
29100            ! ext/threads/shared/shared.xs
29101 ____________________________________________________________________________
29102 [ 26691] By: nicholas                              on 2006/01/06  23:57:55
29103         Log: Don't code the absolute number of tests for the UTF8/EBCDIC case; much
29104              better to subtract the number of tests that don't get run.
29105      Branch: perl
29106            ! t/comp/require.t
29107 ____________________________________________________________________________
29108 [ 26690] By: craigb                                on 2006/01/06  23:16:30
29109         Log: Make VMS manifest checker handle multi-dot filenames on ODS-5
29110      Branch: perl
29111            ! configure.com
29112 ____________________________________________________________________________
29113 [ 26687] By: nicholas                              on 2006/01/06  22:19:47
29114         Log: Correct the typo in the description of change 24253
29115      Branch: perl
29116            ! Changes
29117 ____________________________________________________________________________
29118 [ 26685] By: stevep                                on 2006/01/06  21:59:00
29119         Log: Upgrade to version-0.52
29120      Branch: perl
29121            ! lib/version.pm lib/version.pod lib/version.t sv.c
29122            ! t/op/sprintf.t util.c
29123 ____________________________________________________________________________
29124 [ 26684] By: davem                                 on 2006/01/06  21:13:12
29125         Log: make ithreads shared vars smaller/quicker by eliminating shared_sv
29126              struct. Also document how it works.
29127      Branch: perl
29128            ! ext/threads/shared/shared.xs ext/threads/shared/typemap
29129 ____________________________________________________________________________
29130 [ 26680] By: stevep                                on 2006/01/06  18:59:54
29131         Log: const'ing parameters killed the builds for djgpp.  Changes get the 
29132              Perl core, but not the modules, to compile cleanly. 
29133      Branch: perl
29134            ! djgpp/djgpp.c djgpp/djgpp.h
29135 ____________________________________________________________________________
29136 [ 26679] By: nicholas                              on 2006/01/06  18:29:57
29137         Log: Negating an unsigned value generates warnings for some compilers, so
29138              cast it first.
29139      Branch: perl
29140            ! lib/ExtUtils/Constant/ProxySubs.pm
29141 ____________________________________________________________________________
29142 [ 26677] By: steveh                                on 2006/01/06  17:20:47
29143         Log: DBL_MAX and FLT_MAX are not constants in Borland C++
29144              
29145              (Fixes BCC compilation error in POSIX introduced by change 26455)
29146      Branch: perl
29147            ! ext/POSIX/Makefile.PL
29148 ____________________________________________________________________________
29149 [ 26676] By: rgs                                   on 2006/01/06  16:58:14
29150         Log: Subject: [PATCH] hv_fetchs() support
29151              From: Andy Lester <andy@petdance.com>
29152              Date: Fri, 6 Jan 2006 09:57:19 -0600
29153              Message-ID: <20060106155719.GB9035@petdance.com>
29154      Branch: perl
29155            ! doop.c handy.h hv.c malloc.c op.c pp_sys.c taint.c
29156 ____________________________________________________________________________
29157 [ 26675] By: rgs                                   on 2006/01/06  15:50:34
29158         Log: Subject: [PATCH] sprinkle dVAR
29159              From: Jarkko Hietaniemi <jhietaniemi@gmail.com>
29160              Date: Fri, 06 Jan 2006 16:18:53 +0200
29161              Message-ID: <43BE7C4D.1010302@gmail.com>
29162      Branch: perl
29163            ! av.c deb.c doio.c doop.c dump.c ext/threads/threads.xs gv.c
29164            ! hv.c lib/ExtUtils/ParseXS.pm locale.c mathoms.c mg.c numeric.c
29165            ! op.c opcode.h opcode.pl pad.c perl.c perl.h perl_keyword.pl
29166            ! perlio.c perlvars.h perly.c pp.c pp_ctl.c pp_hot.c pp_pack.c
29167            ! pp_sort.c pp_sys.c regcomp.c regexec.c run.c scope.c sv.c
29168            ! taint.c toke.c universal.c utf8.c util.c xsutils.c
29169 ____________________________________________________________________________
29170 [ 26674] By: rgs                                   on 2006/01/06  14:35:38
29171         Log: Subject: [PATCH] performance tweaking op.c
29172              From: Andy Lester <andy@petdance.com>
29173              Date: Fri, 6 Jan 2006 01:44:48 -0600
29174              Message-ID: <20060106074448.GB3401@petdance.com>
29175      Branch: perl
29176            ! op.c
29177 ____________________________________________________________________________
29178 [ 26673] By: gisle                                 on 2006/01/06  14:00:14
29179         Log: Remove code duplicated a few lines above by change 19695.
29180      Branch: perl
29181            ! toke.c
29182 ____________________________________________________________________________
29183 [ 26672] By: gisle                                 on 2006/01/06  13:57:27
29184         Log: Move "DEVEL####" marker to the 'perl -v' output.
29185              This avoids problem with using STRINGIFY in patchlevel.h
29186              (ref msg <43BE4BAC.6010701@uk.radan.com> posted to p5p).
29187      Branch: perl
29188            ! patchlevel.h perl.c t/run/switches.t utils/perlbug.PL
29189 ____________________________________________________________________________
29190 [ 26671] By: stevep                                on 2006/01/06  13:04:44
29191         Log: Replacing broken call to savepvn() with savepvs() to get threaded
29192              Cygwin to compile again.
29193      Branch: perl
29194            ! perl.c
29195 ____________________________________________________________________________
29196 [ 26670] By: gisle                                 on 2006/01/06  10:54:18
29197         Log: Make '-s' on the shebang line able to parse -foo=bar switches again.
29198              This feature was broken by change 19695 some years ago
29199              and integrated into perl-5.8.1.  perl-5.8.0 was fine.
29200              Ref http://bugs.activestate.com/show_bug.cgi?id=43483
29201      Branch: perl
29202            ! perl.c t/run/switches.t
29203 ____________________________________________________________________________
29204 [ 26669] By: gisle                                 on 2006/01/06  10:38:37
29205         Log: Improve description of the -s switch.
29206              I found the "This means you can have switches
29207              with two leading dashes." sentence introduced by
29208              change 7144 really confusing.  The note after
29209              the example should make it clear enough that double
29210              dash switches can be used for those that insist.
29211      Branch: perl
29212            ! pod/perlrun.pod
29213 ____________________________________________________________________________
29214 [ 26668] By: merijn                                on 2006/01/05  21:04:32
29215         Log: Test if the probed availability of v?snprintf () is
29216              actually usable. Thanks to Russ and Jarkko.
29217      Branch: perl
29218            ! Configure
29219 ____________________________________________________________________________
29220 [ 26666] By: rgs                                   on 2006/01/05  17:39:07
29221         Log: Upgrade to CPAN.pm 1.83
29222      Branch: perl
29223            ! lib/CPAN.pm lib/CPAN/FirstTime.pm lib/CPAN/HandleConfig.pm
29224            ! lib/CPAN/SIGNATURE lib/CPAN/Tarzip.pm
29225 ____________________________________________________________________________
29226 [ 26665] By: rgs                                   on 2006/01/05  17:27:28
29227         Log: Regenerate PODs
29228      Branch: perl
29229            ! pod/perlmodlib.pod pod/perltoc.pod
29230 ____________________________________________________________________________
29231 [ 26664] By: steveh                                on 2006/01/05  17:24:44
29232         Log: Workaround another problem following change 26395
29233              
29234              MinGW doesn't like 26395 either! (ref: change 26634)
29235      Branch: perl
29236            ! gv.h
29237 ____________________________________________________________________________
29238 [ 26663] By: rgs                                   on 2006/01/05  17:19:27
29239         Log: Really commit change 26662 (duh)
29240      Branch: perl
29241            ! pod.lst pod/perl.pod
29242 ____________________________________________________________________________
29243 [ 26662] By: rgs                                   on 2006/01/05  17:17:52
29244         Log: Let table of contents know about perllinux man page
29245      Branch: perl
29246            ! pod.lst pod/perl.pod
29247 ____________________________________________________________________________
29248 [ 26661] By: rgs                                   on 2006/01/05  16:58:51
29249         Log: Update Changes
29250      Branch: perl
29251            ! Changes
29252 ____________________________________________________________________________
29253 [ 26659] By: steveh                                on 2006/01/05  16:22:50
29254         Log: Subject: MinGW and lib/CORE/Win32.h
29255              From: "Sisyphus" <sisyphus1@optusnet.com.au>
29256              Date: Wed, 4 Jan 2006 21:29:19 +1100
29257              Message-ID: <024301c61119$bca4a840$e201140a@desktop>
29258      Branch: perl
29259            ! win32/win32.h
29260 ____________________________________________________________________________
29261 [ 26658] By: rgs                                   on 2006/01/05  15:33:32
29262         Log: Install less README files
29263      Branch: perl
29264            ! installperl
29265 ____________________________________________________________________________
29266 [ 26657] By: rgs                                   on 2006/01/05  14:36:40
29267         Log: Remove old Pod::Man parser creation.
29268              Fix a run-time warning.
29269      Branch: perl
29270            ! installman
29271 ____________________________________________________________________________
29272 [ 26656] By: stevep                                on 2006/01/05  14:33:16
29273         Log: Change installman to instantiate a new Pod::Man instance for each
29274              file processed.  This is now required with podlators-2.0.
29275      Branch: perl
29276            ! installman
29277 ____________________________________________________________________________
29278 [ 26655] By: steveh                                on 2006/01/05  09:21:52
29279         Log: Reorder changes made in change 26630
29280              
29281              (Keep the order in win32/config.* and win32/config_H.* the same as in
29282              Configure and config_H.SH for easier diffing)
29283      Branch: perl
29284            ! win32/config.bc win32/config.gc win32/config.vc
29285            ! win32/config.vc64 win32/config_H.bc win32/config_H.gc
29286            ! win32/config_H.vc win32/config_H.vc64
29287 ____________________________________________________________________________
29288 [ 26654] By: steveh                                on 2006/01/04  17:57:14
29289         Log: Run regen.pl (Just updating copyright years)
29290      Branch: perl
29291            ! embed.h embedvar.h global.sym opcode.h perlapi.c perlapi.h
29292            ! proto.h
29293 ____________________________________________________________________________
29294 [ 26653] By: steveh                                on 2006/01/04  17:49:38
29295         Log: Don't try to export PL_my_ctx_mutex and PL_my_cxt_* when
29296              PERL_IMPLICIT_CONTEXT is not defined
29297              
29298              Fixes non-threaded build errors on Win32 following change 26523
29299      Branch: perl
29300            ! makedef.pl
29301 ____________________________________________________________________________
29302 [ 26652] By: rgs                                   on 2006/01/04  17:19:37
29303         Log: More copyright updates
29304      Branch: perl
29305            ! cop.h dump.c gv.c gv.h handy.h locale.c op.c perlio.c
29306            ! pp_pack.c sv.h thread.h universal.c xsutils.c
29307 ____________________________________________________________________________
29308 [ 26651] By: rgs                                   on 2006/01/04  16:50:47
29309         Log: Subject: Re: [patch] optimized constant subs are cool, teach B::Concise about them
29310              From: Jim Cromie <jim.cromie@gmail.com>
29311              Date: Tue, 03 Jan 2006 23:18:09 -0700
29312              Message-ID: <43BB68A1.7060708@gmail.com>
29313              
29314              With syntactic tweaks to the test file
29315      Branch: perl
29316            ! ext/B/B/Concise.pm ext/B/t/concise-xs.t
29317            ! ext/B/t/optree_constants.t
29318 ____________________________________________________________________________
29319 [ 26650] By: gisle                                 on 2006/01/04  16:42:03
29320         Log: Move all the xxxpvs() macros to handy.h.
29321              This brings them closer to STR_WITH_LEN.  Besides only half
29322              of them were sv-related after change 26649.
29323      Branch: perl
29324            ! handy.h sv.h
29325 ____________________________________________________________________________
29326 [ 26649] By: gisle                                 on 2006/01/04  16:15:34
29327         Log: Make the new STR_WITH_LEN() affected compile under -Dusethreads.
29328              Can't use STR_WITH_LEN() as argument to a macro :-(
29329      Branch: perl
29330            ! gv.c locale.c mg.c perl.c perlio.c pp_sys.c sv.c sv.h toke.c
29331 ____________________________________________________________________________
29332 [ 26648] By: gisle                                 on 2006/01/04  14:23:20
29333         Log: Add an extra NUL so that we can use sv_catpvs()
29334              for "our @F=split..." and get rid of 15 and the
29335              explaination for why it's there.
29336      Branch: perl
29337            ! toke.c
29338 ____________________________________________________________________________
29339 [ 26647] By: gisle                                 on 2006/01/04  14:10:34
29340         Log: Get rid of hardcoded string length.
29341      Branch: perl
29342            ! thread.h
29343 ____________________________________________________________________________
29344 [ 26646] By: gisle                                 on 2006/01/04  14:04:16
29345         Log: Introduce newSVpvs_share() macro.
29346              Gets rid of some hardcoded string lengths.
29347      Branch: perl
29348            ! op.c perl.c sv.h
29349 ____________________________________________________________________________
29350 [ 26645] By: gisle                                 on 2006/01/04  13:53:16
29351         Log: Get rid of a few more hardcoded string lengths.
29352      Branch: perl
29353            ! locale.c mg.c perl.c perlio.c sv.c
29354 ____________________________________________________________________________
29355 [ 26644] By: stevep                                on 2006/01/04  13:13:50
29356         Log: Update copyright year.
29357      Branch: perl
29358            ! pp_sys.c
29359 ____________________________________________________________________________
29360 [ 26643] By: rgs                                   on 2006/01/04  13:02:18
29361         Log: Fix some compilation warnings
29362      Branch: perl
29363            ! pp_hot.c
29364 ____________________________________________________________________________
29365 [ 26642] By: gisle                                 on 2006/01/04  13:00:45
29366         Log: Get rid of a few more hardcoded string lengths.
29367      Branch: perl
29368            ! gv.c perl.c perlio.c pp_sys.c
29369 ____________________________________________________________________________
29370 [ 26641] By: gisle                                 on 2006/01/04  12:48:34
29371         Log: Introduce the macros newSVpvs(str) and sv_catpvs(sv, str).
29372              Gets rid of many hardcoded string lengths.
29373      Branch: perl
29374            ! dump.c gv.c op.c perl.c perlio.c pp.c pp_ctl.c pp_pack.c
29375            ! pp_sys.c regcomp.c sv.c sv.h toke.c universal.c utf8.c util.c
29376            ! xsutils.c
29377 ____________________________________________________________________________
29378 [ 26640] By: gisle                                 on 2006/01/04  12:35:45
29379         Log: Removed unused part of string passed to sv_catpvn().
29380      Branch: perl
29381            ! toke.c
29382 ____________________________________________________________________________
29383 [ 26639] By: stevep                                on 2006/01/04  12:31:17
29384         Log: Updates to various configurations courtesy of Jarkko.
29385      Branch: perl
29386            ! Cross/config.sh-arm-linux NetWare/config.wc epoc/config.sh
29387            ! plan9/config_sh.sample symbian/config.sh uconfig.sh
29388            ! wince/config.ce
29389 ____________________________________________________________________________
29390 [ 26638] By: stevep                                on 2006/01/04  12:19:49
29391         Log: Don't warn about invalid dirhandles in DirHandle::DESTROY().
29392      Branch: perl
29393            ! lib/DirHandle.pm
29394 ____________________________________________________________________________
29395 [ 26637] By: steveh                                on 2006/01/04  11:10:36
29396         Log: Make Borland and MinGW happy with change 26379
29397              
29398              (They both complain "invalid conversion from `void*' to `HWND__*'"
29399              otherwise)
29400      Branch: perl
29401            ! win32/perlhost.h
29402 ____________________________________________________________________________
29403 [ 26636] By: gisle                                 on 2006/01/04  10:46:42
29404         Log: Fix typo in comment.
29405      Branch: perl
29406            ! handy.h
29407 ____________________________________________________________________________
29408 [ 26635] By: gisle                                 on 2006/01/04  10:44:48
29409         Log: Introduce STR_WITH_LEN macro in the form suggested by Chip.
29410      Branch: perl
29411            ! handy.h toke.c
29412 ____________________________________________________________________________
29413 [ 26634] By: steveh                                on 2006/01/04  10:39:13
29414         Log: Workaround Win32 compiler bugs following change 26395
29415              
29416              Can't understand what VC++ 6 and Borland don't like about it.  There
29417              is similar code for SvMAGIC and SvSTASH already in sv.h.  Must be
29418              compiler bugs since VC++ 7 and MinGW (and compilers on other platforms)
29419              are all happy.
29420      Branch: perl
29421            ! gv.h
29422 ____________________________________________________________________________
29423 [ 26633] By: gisle                                 on 2006/01/04  10:25:42
29424         Log: Silence compiler warning; ref change 26598
29425      Branch: perl
29426            ! op.c
29427 ____________________________________________________________________________
29428 [ 26632] By: stevep                                on 2006/01/04  03:43:20
29429         Log: Added snprintf() and vsnprintf() to configure.com as 'undef'. 
29430      Branch: perl
29431            ! configure.com
29432 ____________________________________________________________________________
29433 [ 26631] By: stevep                                on 2006/01/04  03:31:08
29434         Log: Add warnings for the various other *dir() functions when attempted
29435              on invalid dirhandles.
29436      Branch: perl
29437            ! pod/perldiag.pod pp_sys.c
29438 ____________________________________________________________________________
29439 [ 26630] By: stevep                                on 2006/01/04  02:47:39
29440         Log: Add snprintf() and vsnprintf() to the various Win32 configuration 
29441              files.
29442      Branch: perl
29443            ! win32/config.bc win32/config.gc win32/config.vc
29444            ! win32/config.vc64 win32/config_H.bc win32/config_H.gc
29445            ! win32/config_H.vc win32/config_H.vc64
29446 ____________________________________________________________________________
29447 [ 26625] By: stevep                                on 2006/01/03  20:03:49
29448         Log: Subject: Re: [perl #38034] A combination eval, DESTROY method and $@ - dangerous - bug
29449              From: Mike Guy <mjtg@cam.ac.uk>
29450              Date: Tue, 03 Jan 2006 19:18:41 +0000 
29451              Message-Id: <E1Etrg9-0005XE-LZ@libra.cus.cam.ac.uk> 
29452      Branch: perl
29453            ! pod/perlobj.pod
29454 ____________________________________________________________________________
29455 [ 26623] By: nicholas                              on 2006/01/03  19:38:24
29456         Log: If NV_ZERO_IS_ALLBITS_ZERO is not true, then it's important to inialise
29457              the NV only if the new body has an NV. (D'oh!)
29458      Branch: perl
29459            ! sv.c
29460 ____________________________________________________________________________
29461 [ 26617] By: stevep                                on 2006/01/03  18:14:27
29462         Log: Attemting to readdir() something that isn't a dirhandle should cause
29463              a warning.
29464      Branch: perl
29465            ! pod/perldiag.pod pp_sys.c
29466 ____________________________________________________________________________
29467 [ 26608] By: steveh                                on 2006/01/03  15:57:18
29468         Log: Fix release mode builds following change 26598
29469      Branch: perl
29470            ! cop.h
29471 ____________________________________________________________________________
29472 [ 26607] By: stevep                                on 2006/01/03  15:56:19
29473         Log: perldiag.pod additions to go with change #26602.
29474      Branch: perl
29475            ! pod/perldiag.pod
29476 ____________________________________________________________________________
29477 [ 26606] By: merijn                                on 2006/01/03  15:46:10
29478         Log: Add probe for snprintf () and vsnprintf ()
29479              
29480              Subject: [PATCH] snprintf() and vsnprintf() (was Re: [PATCH] Configure: stdio char (un)signedness)
29481              From: Steve Peters <steve@fisharerojo.org>
29482              Date: Mon, 2 Jan 2006 09:37:27 -0600
29483              Message-ID: <20060102153727.GA14247@mccoy.peters.homeunix.org>
29484      Branch: perl
29485            ! Configure Porting/Glossary config_h.SH handy.h
29486 ____________________________________________________________________________
29487 [ 26605] By: rgs                                   on 2006/01/03  15:42:19
29488         Log: Update perldelta, up to change 25344 more or less.
29489      Branch: perl
29490            ! pod/perl593delta.pod
29491 ____________________________________________________________________________
29492 [ 26602] By: stevep                                on 2006/01/03  14:58:21
29493         Log: Bad symbols that are pretending to be dirhandles, should say they 
29494              are dirhandles in their error messages.
29495      Branch: perl
29496            ! gv.c
29497 ____________________________________________________________________________
29498 [ 26601] By: rgs                                   on 2006/01/03  14:10:04
29499         Log: Sync perlfaq.
29500      Branch: perl
29501            ! pod/perlfaq.pod pod/perlfaq1.pod pod/perlfaq2.pod
29502            ! pod/perlfaq3.pod pod/perlfaq4.pod pod/perlfaq5.pod
29503            ! pod/perlfaq6.pod pod/perlfaq7.pod pod/perlfaq8.pod
29504            ! pod/perlfaq9.pod
29505 ____________________________________________________________________________
29506 [ 26598] By: davem                                 on 2006/01/03  12:29:38
29507         Log: silence some compiler warnings
29508      Branch: perl
29509            ! cop.h toke.c
29510 ____________________________________________________________________________
29511 [ 26595] By: rgs                                   on 2006/01/03  10:09:39
29512         Log: Subject: Re: [patch] optimized constant subs are cool, teach B::Concise about them
29513              From: Jim Cromie <jim.cromie@gmail.com>
29514              Date: Mon, 02 Jan 2006 15:06:48 -0700
29515              Message-ID: <43B9A3F8.8060609@gmail.com>
29516      Branch: perl
29517            ! ext/B/B/Concise.pm ext/B/t/concise-xs.t
29518            ! ext/B/t/optree_constants.t
29519 ____________________________________________________________________________
29520 [ 26594] By: rgs                                   on 2006/01/03  09:33:59
29521         Log: Subject: [PATCH] Re: [perl #36837] B::Deparse fails when it comes to ByteLoader programs
29522              From: Stephen McCamant <smcc@mit.edu>
29523              Date: Mon, 2 Jan 2006 18:52:24 -0800
29524              Message-ID: <17337.59112.502009.496275@conquest.OCF.Berkeley.EDU>
29525      Branch: perl
29526            ! ext/B/B/Deparse.pm
29527 ____________________________________________________________________________
29528 [ 26593] By: rgs                                   on 2006/01/03  09:23:24
29529         Log: Subject: [patch@26561] utf8.c const issue.
29530              From: "John E. Malmberg" <wb8tyw@qsl.net>
29531              Date: Mon, 02 Jan 2006 14:16:02 -0500
29532              Message-ID: <43B97BF2.2050201@qsl.net>
29533      Branch: perl
29534            ! utf8.c
29535 ____________________________________________________________________________
29536 [ 26592] By: rgs                                   on 2006/01/03  09:02:04
29537         Log: Subject: [PAUSE] CPAN Upload: A/AN/ANDK/CPAN-1.81.tar.gz
29538              From: andreas.koenig.gmwojprw@franz.ak.mind.de (Andreas J. Koenig)
29539              Date: Tue, 03 Jan 2006 00:33:27 +0100
29540              Message-ID: <87u0cm433s.fsf@k75.linux.bogus>
29541      Branch: perl
29542            ! lib/CPAN.pm lib/CPAN/FirstTime.pm
29543 ____________________________________________________________________________
29544 [ 26591] By: davem                                 on 2006/01/03  02:20:28
29545         Log: ithreads: SVs that were only on the tmps stack leaked
29546      Branch: perl
29547            ! sv.c
29548 ____________________________________________________________________________
29549 [ 26589] By: nicholas                              on 2006/01/02  22:52:03
29550         Log: The two never used NOTYET switch ops can go.
29551      Branch: perl
29552            ! pp_ctl.c
29553 ____________________________________________________________________________
29554 [ 26587] By: davem                                 on 2006/01/02  21:50:55
29555         Log: stop DEBUG_LEAKING_SCALARS producing spurious memory pool errors
29556              (change #25775 wasn't complete)
29557      Branch: perl
29558            ! sv.c
29559 ____________________________________________________________________________
29560 [ 26586] By: nicholas                              on 2006/01/02  20:48:30
29561         Log: More missing AUTHORS
29562      Branch: perl
29563            ! AUTHORS Porting/checkAUTHORS.pl
29564 ____________________________________________________________________________
29565 [ 26581] By: craigb                                on 2006/01/02  19:22:52
29566         Log: Subject: patch@26561 & earlier - buffer overrun in VMS.C
29567              From: "John E. Malmberg" <wb8tyw@qsl.net>
29568              Date: Mon, 02 Jan 2006 14:05:43 -0500
29569              Message-id: <43B97987.70201@qsl.net>
29570      Branch: perl
29571            ! vms/vms.c
29572 ____________________________________________________________________________
29573 [ 26580] By: nicholas                              on 2006/01/02  18:48:13
29574         Log: Erk! craigb's changes come out of p4 with ^Ms as line endings.
29575              Long term, need to fix the update changes script to cope.
29576      Branch: perl
29577            ! Changes
29578 ____________________________________________________________________________
29579 [ 26579] By: nicholas                              on 2006/01/02  18:44:14
29580         Log: More missing AUTHORS
29581      Branch: perl
29582            ! AUTHORS Porting/checkAUTHORS.pl
29583 ____________________________________________________________________________
29584 [ 26578] By: nicholas                              on 2006/01/02  17:04:55
29585         Log: Fix up missing and duplicate AUTHORS
29586      Branch: perl
29587            ! AUTHORS Porting/checkAUTHORS.pl
29588 ____________________________________________________________________________
29589 [ 26576] By: rgs                                   on 2006/01/02  15:54:25
29590         Log: Subject: Re: [patch] optimized constant subs are cool, teach B::Concise about them
29591              From: Jim Cromie <jim.cromie@gmail.com>
29592              Date: Sun, 01 Jan 2006 23:05:00 -0700
29593              Message-ID: <43B8C28C.20502@gmail.com>
29594      Branch: perl
29595            + ext/B/t/optree_constants.t
29596            ! MANIFEST ext/B/B/Concise.pm ext/B/t/concise-xs.t
29597 ____________________________________________________________________________
29598 [ 26574] By: rgs                                   on 2006/01/02  15:19:59
29599         Log: Since we no longer autovivify stashes (change #26370), we need
29600              to turn off strict-refs on them, or we'll have a stricture
29601              error the first time we'd try to access them (when they'll be
29602              actually autovivified).
29603      Branch: perl
29604            ! op.c t/op/stash.t
29605 ____________________________________________________________________________
29606 [ 26573] By: rgs                                   on 2006/01/02  14:57:18
29607         Log: Documentation fix for File::Temp::new
29608              
29609              Subject: [perl #38127] Bug in perldoc File::Temp 
29610              From: pm@capmon.dk (via RT) <perlbug-followup@perl.org>
29611              Date: Mon, 02 Jan 2006 02:48:41 -0800
29612              Message-ID: <rt-3.0.11-38127-126764.0.578515622359532@perl.org>
29613      Branch: perl
29614            ! lib/File/Temp.pm
29615 ____________________________________________________________________________
29616 [ 26572] By: nicholas                              on 2006/01/02  14:43:37
29617         Log: Happy New Year. (It's not just embed.pl).
29618      Branch: perl
29619            ! README opcode.pl perl.c reentr.pl
29620 ____________________________________________________________________________
29621 [ 26571] By: stevep                                on 2006/01/02  14:24:58
29622         Log: Note that the "unlink"ing directories is attempted when running as a
29623              superuser, and that some operating systems may not support it.
29624      Branch: perl
29625            ! pod/perlfunc.pod pod/perlrun.pod
29626 ____________________________________________________________________________
29627 [ 26570] By: nicholas                              on 2006/01/02  12:19:51
29628         Log: Typo fix in the description of change 26370.
29629              (Also corrected in the repository) 
29630      Branch: perl
29631            ! Changes
29632 ____________________________________________________________________________
29633 [ 26569] By: davem                                 on 2006/01/02  12:09:37
29634         Log: add svt_local slot to magic vtable, and fix local $shared
29635      Branch: perl
29636            ! ext/threads/shared/shared.xs mg.c mg.h
29637 ____________________________________________________________________________
29638 [ 26565] By: nicholas                              on 2006/01/02  11:48:28
29639         Log: Add 2006 to the copyright years in the header generated by embed.pl
29640      Branch: perl
29641            ! embed.pl
29642 ____________________________________________________________________________
29643 [ 26564] By: rgs                                   on 2006/01/02  11:20:25
29644         Log: Subject: [patch] comment grammar and indentation, spurious tab
29645              From: Jim Cromie <jim.cromie@gmail.com>
29646              Date: Fri, 30 Dec 2005 22:45:55 -0700
29647              Message-ID: <43B61B13.3050704@gmail.com>
29648      Branch: perl
29649            ! sv.c
29650 ____________________________________________________________________________
29651 [ 26563] By: rgs                                   on 2006/01/02  11:04:37
29652         Log: Subject: [PAUSE] CPAN Upload: A/AN/ANDK/CPAN-1.80_58.tar.gz
29653              From: andreas.koenig.gmwojprw@franz.ak.mind.de (Andreas J. Koenig)
29654              Date: Sun, 01 Jan 2006 10:12:46 +0100
29655              Message-ID: <87zmmgnwfl.fsf@k75.linux.bogus>
29656      Branch: perl
29657            ! lib/CPAN.pm
29658 ____________________________________________________________________________
29659 [ 26562] By: rgs                                   on 2006/01/02  10:56:05
29660         Log: Update copyrights for files modified in 2006
29661      Branch: perl
29662            ! doio.c doop.c hv.c mg.c pp.c pp_ctl.c pp_hot.c pp_sort.c
29663            ! regcomp.c regexec.c sv.c toke.c utf8.c util.c
29664 ____________________________________________________________________________
29665 [ 26561] By: gisle                                 on 2006/01/01  20:43:00
29666         Log: Get rid of length argument for the FEATURE_IS_ENABLED() macro.
29667      Branch: perl
29668            ! toke.c
29669 ____________________________________________________________________________
29670 [ 26558] By: merijn                                on 2006/01/01  10:42:16
29671         Log: Subject: [PATCH] Making 0 pointers to NULLs
29672              From: Andy Lester <andy@petdance.com>
29673              Date: Fri, 30 Dec 2005 23:05:58 -0600
29674              Message-ID: <20051231050558.GA29093@petdance.com>
29675      Branch: perl
29676            ! doio.c doop.c hv.c mg.c pp.c pp_ctl.c pp_hot.c pp_sort.c
29677            ! regcomp.c regexec.c sv.c toke.c utf8.c util.c
29678 ____________________________________________________________________________
29679 [ 26556] By: merijn                                on 2006/01/01  10:23:19
29680         Log: Subject: [PATCH] Making 0 pointers to NULLs
29681              From: Andy Lester <andy@petdance.com>
29682              Date: Fri, 30 Dec 2005 23:05:58 -0600
29683              Message-ID: <20051231050558.GA29093@petdance.com>
29684      Branch: perl
29685            ! doio.c doop.c hv.c mg.c pp.c pp_ctl.c pp_hot.c pp_sort.c
29686            ! regcomp.c regexec.c sv.c toke.c utf8.c util.c
29687 ____________________________________________________________________________
29688 [ 26555] By: davem                                 on 2005/12/31  23:24:26
29689         Log: make threads use MY_CXT API rather than using PL_modglobal
29690      Branch: perl
29691            ! ext/threads/threads.xs
29692 ____________________________________________________________________________
29693 [ 26554] By: davem                                 on 2005/12/31  21:36:05
29694         Log: tidy index arrangements in new MY_CXT code
29695      Branch: perl
29696            ! intrpvar.h sv.c util.c
29697 ____________________________________________________________________________
29698 [ 26553] By: stevep                                on 2005/12/31  18:45:37
29699         Log: Upgrade to CPAN-1.80_57
29700      Branch: perl
29701            ! lib/CPAN.pm lib/CPAN/Debug.pm lib/CPAN/HandleConfig.pm
29702            ! lib/CPAN/Tarzip.pm lib/CPAN/t/mirroredby.t
29703 ____________________________________________________________________________
29704 [ 26552] By: nicholas                              on 2005/12/31  17:24:34
29705         Log: Turn a for loop that's almost a while into an honest-to-goodness while.
29706      Branch: perl
29707            ! hv.c
29708 ____________________________________________________________________________
29709 [ 26551] By: nicholas                              on 2005/12/31  16:57:32
29710         Log: Calling Perl_hv_clear_placeholders while the hash iterator was active
29711              would turn lazy delete on, causing the hash to become corrupted at the
29712              next iterator change.
29713      Branch: perl
29714            ! hv.c lib/Hash/Util.t
29715 ____________________________________________________________________________
29716 [ 26550] By: nicholas                              on 2005/12/31  16:42:08
29717         Log: Remove unneeded test in Perl_hv_clear_placeholders.
29718              Rejig S_hfreeentries to a double loop, which is clearer and smaller.
29719      Branch: perl
29720            ! hv.c
29721 ____________________________________________________________________________
29722 [ 26549] By: rgs                                   on 2005/12/31  15:24:48
29723         Log: Subject: [PATCH] op/pack.t failure on Win64
29724              From: Jan Dubois <jand@activestate.com>
29725              Date: Dec 30, 2005 9:55 PM
29726              Message-ID: <017a01c60d83$5dc73110$2217a8c0@candy>
29727      Branch: perl
29728            ! pp_pack.c
29729 ____________________________________________________________________________
29730 [ 26548] By: nicholas                              on 2005/12/31  15:07:16
29731         Log: Add a test for change 26547. (We no longer expect to see errors about
29732              unbalanced string table reference counts.)
29733      Branch: perl
29734            ! t/op/stash.t
29735 ____________________________________________________________________________
29736 [ 26547] By: nicholas                              on 2005/12/31  14:57:27
29737         Log: Re-attempt to clear the hash in S_hfreeentries if anything adds to it.
29738              Panic if we seem to be looping forever.
29739      Branch: perl
29740            ! hv.c pod/perldiag.pod
29741 ____________________________________________________________________________
29742 [ 26546] By: nicholas                              on 2005/12/31  13:16:06
29743         Log: Stop 'sub a { // }; %::=()' panicing because the backreference array
29744              became lost.
29745      Branch: perl
29746            ! hv.c
29747 ____________________________________________________________________________
29748 [ 26545] By: nicholas                              on 2005/12/30  22:44:06
29749         Log: Marcus Holland-Moritz suggested that assert should 
29750              Perl_croak_nocontext rather than Perl_croak.
29751      Branch: perl
29752            ! perl.h
29753 ____________________________________________________________________________
29754 [ 26544] By: nicholas                              on 2005/12/30  20:02:56
29755         Log: Tweak S_init_main_stash so as allocate PL_curstname as a shared string
29756              scalar, and hence avoid thrashing the shared string table for "main".
29757      Branch: perl
29758            ! perl.c
29759 ____________________________________________________________________________
29760 [ 26543] By: stevep                                on 2005/12/30  17:47:45
29761         Log: Convert t/op/sleep.t to using test.pl
29762      Branch: perl
29763            ! t/op/sleep.t
29764 ____________________________________________________________________________
29765 [ 26542] By: nicholas                              on 2005/12/30  16:53:39
29766         Log: Document why it's a bad plan to move the backreferences array from
29767              the magic structure to the hv_aux structure during backreference
29768              deletion. Add an optimisation for an empty backreference array.
29769      Branch: perl
29770            ! hv.c sv.c
29771 ____________________________________________________________________________
29772 [ 26541] By: nicholas                              on 2005/12/30  15:55:05
29773         Log: Now that the backreference array has no NULL entries, and is correctly
29774              marked as AvREAL_off(), there's no reason not to use sv_dup to clone
29775              it.
29776      Branch: perl
29777            ! sv.c
29778 ____________________________________________________________________________
29779 [ 26540] By: nicholas                              on 2005/12/30  15:39:53
29780         Log: POSIX now declares missing constants as sub ... ();, so Net::Ping
29781              needs to define them with a prototype to match.
29782      Branch: perl
29783            ! lib/Net/Ping.pm
29784 ____________________________________________________________________________
29785 [ 26539] By: rgs                                   on 2005/12/30  15:10:41
29786         Log: Update perltodo. First shot at perl593delta.
29787      Branch: perl
29788            ! pod/perl593delta.pod pod/perltodo.pod
29789 ____________________________________________________________________________
29790 [ 26538] By: nicholas                              on 2005/12/30  14:57:00
29791         Log: In the shared string table, if we add new entries to the head of the
29792              linked list chain, then we don't need as much bookkeeping in the loop.
29793      Branch: perl
29794            ! hv.c
29795 ____________________________________________________________________________
29796 [ 26537] By: stevep                                on 2005/12/30  14:39:49
29797         Log: Subject: [PATCH] Differences from Perl 6
29798              From: Robin Houston <robin@cpan.org> 
29799              Date: Fri, 30 Dec 2005 13:45:34 +0000 
29800              Message-ID: <20051230134534.GA18675@rpc142.cs.man.ac.uk>
29801      Branch: perl
29802            ! pod/perlsyn.pod
29803 ____________________________________________________________________________
29804 [ 26536] By: rgs                                   on 2005/12/30  12:25:24
29805         Log: Subject: Re: [PATCH] Re: INSTALLSCRIPT versus INSTALLDIRS
29806              From: Rafael Garcia-Suarez <rgarciasuarez@mandriva.com>
29807              Date: Mon, 12 Dec 2005 19:22:32 +0100
29808              Message-ID: <20051212192232.39cd0c1e@grubert.mandrakesoft.com>
29809      Branch: perl
29810            ! lib/ExtUtils/MM_Any.pm lib/ExtUtils/MM_Unix.pm
29811            ! lib/ExtUtils/MakeMaker.pm
29812 ____________________________________________________________________________
29813 [ 26535] By: davem                                 on 2005/12/30  12:21:05
29814         Log: fix errors in new MY_CTX code
29815      Branch: perl
29816            ! perl.c sv.c
29817 ____________________________________________________________________________
29818 [ 26534] By: rgs                                   on 2005/12/30  11:57:14
29819         Log: Reduce size of buffers for identifier names, as suggested in
29820              
29821              Subject: Stack usage (in gv_stashpvn and others)
29822              From: Tels <nospam-abuse@bloodgate.com>
29823              Date: Thu, 29 Dec 2005 18:40:49 +0100
29824              Message-Id: <200512291840.50765@bloodgate.com>
29825      Branch: perl
29826            ! gv.c
29827 ____________________________________________________________________________
29828 [ 26533] By: rgs                                   on 2005/12/30  11:43:42
29829         Log: Subject: [PATCH] perlio.c - gv_stashpvn() vs gv_stashpv()
29830              From: Tels <nospam-abuse@bloodgate.com>
29831              Date: Thu, 29 Dec 2005 18:57:43 +0100
29832              Message-Id: <200512291857.59458@bloodgate.com>
29833      Branch: perl
29834            ! perlio.c
29835 ____________________________________________________________________________
29836 [ 26532] By: rgs                                   on 2005/12/30  10:40:31
29837         Log: Subject: [PATCH] Perl_gv_fetchpv vs. gv_fetchpvn
29838              From: Tels <nospam-abuse@bloodgate.com>
29839              Date: Thu, 29 Dec 2005 18:32:10 +0100
29840              Message-Id: <200512291832.20651@bloodgate.com>
29841      Branch: perl
29842            ! gv.c
29843 ____________________________________________________________________________
29844 [ 26531] By: rgs                                   on 2005/12/30  09:53:54
29845         Log: Skip my_cxt_init if PERL_IMPLICIT_CONTEXT isn't defined
29846              (spotted by Jan Dubois)
29847      Branch: perl
29848            ! makedef.pl
29849 ____________________________________________________________________________
29850 [ 26530] By: nicholas                              on 2005/12/30  01:08:46
29851         Log: RMAGIC on symbol tables is bad, m'kay.
29852              Allow hashes (and therefore all symbol tables) to store the
29853              backreference array in the hv_aux structure, and thereby undo the
29854              performance damage of 24966, which resulted in 60% of all hash lookups
29855              trying to mg_find tiehash magic.
29856      Branch: perl
29857            ! dump.c embed.fnc embed.h hv.c hv.h mg.c proto.h sv.c
29858 ____________________________________________________________________________
29859 [ 26529] By: davem                                 on 2005/12/30  01:06:05
29860         Log: change #26523 didn't make my_cxt_init public
29861      Branch: perl
29862            ! embed.fnc embed.h global.sym
29863 ____________________________________________________________________________
29864 [ 26528] By: rgs                                   on 2005/12/29  17:32:21
29865         Log: Subject: [PATCH] $a = \$a oddity
29866              From: Tels <nospam-abuse@bloodgate.com>
29867              Date: Thu, 29 Dec 2005 18:01:42 +0100
29868              Message-Id: <200512291802.00742@bloodgate.com>
29869              
29870              plus trim some whitespace
29871      Branch: perl
29872            ! pod/perlreftut.pod
29873 ____________________________________________________________________________
29874 [ 26527] By: rgs                                   on 2005/12/29  15:59:30
29875         Log: Subject: [PATCH] Actual real consting of parms
29876              From: Andy Lester <andy@petdance.com>
29877              Date: Thu, 29 Dec 2005 01:15:09 -0600
29878              Message-ID: <20051229071509.GA32653@petdance.com>
29879      Branch: perl
29880            ! embed.fnc proto.h sv.c
29881 ____________________________________________________________________________
29882 [ 26526] By: rgs                                   on 2005/12/29  15:32:42
29883         Log: Subject: [PATCH] av.c cleanup, plus!
29884              From: Andy Lester <andy@petdance.com>
29885              Date: Wed, 28 Dec 2005 15:44:14 -0600
29886              Message-ID: <20051228214414.GD26033@petdance.com>
29887      Branch: perl
29888            ! av.c dump.c embed.fnc gv.c perl.c proto.h sv.c toke.c
29889 ____________________________________________________________________________
29890 [ 26525] By: rgs                                   on 2005/12/29  14:32:09
29891         Log: Fix test for perl version number in Makefile.PL
29892      Branch: perl
29893            ! ext/Sys/Syslog/Makefile.PL
29894 ____________________________________________________________________________
29895 [ 26524] By: rgs                                   on 2005/12/29  14:17:38
29896         Log: Subject: [PATCH] Fixing the SVREFCNT macro
29897              From: Andy Lester <andy@petdance.com>
29898              Date: Wed, 28 Dec 2005 13:30:51 -0600
29899              Message-ID: <20051228193051.GD23207@petdance.com>
29900      Branch: perl
29901            ! sv.h
29902 ____________________________________________________________________________
29903 [ 26523] By: davem                                 on 2005/12/29  12:00:29
29904         Log: re-implement MY_CXT API more efficiently, and add explicit
29905              interpeter arg variant
29906      Branch: perl
29907            ! embed.fnc embed.h embedvar.h ext/XS/APItest/APItest.xs
29908            ! intrpvar.h perl.h perlapi.h perlvars.h pod/perlxs.pod proto.h
29909            ! sv.c util.c
29910 ____________________________________________________________________________
29911 [ 26522] By: davem                                 on 2005/12/29  11:35:04
29912         Log: add tests for MY_CXT API and improve its documentation
29913      Branch: perl
29914            + ext/XS/APItest/t/my_cxt.t
29915            ! MANIFEST ext/XS/APItest/APItest.pm ext/XS/APItest/APItest.xs
29916            ! pod/perlxs.pod
29917 ____________________________________________________________________________
29918 [ 26521] By: rgs                                   on 2005/12/29  10:21:23
29919         Log: Subject: [PATCH] Test that constant overloading is propagated into eval
29920              From: Robin Houston <robin@cpan.org>
29921              Date: Mon, 26 Dec 2005 17:56:48 +0000
29922              Message-ID: <20051226175648.GA28402@rpc142.cs.man.ac.uk>
29923      Branch: perl
29924            ! lib/overload.t
29925 ____________________________________________________________________________
29926 [ 26520] By: rgs                                   on 2005/12/29  10:11:56
29927         Log: Subject: [DOC PATCH] rindex clarification
29928              From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
29929              Date: Mon, 26 Dec 2005 18:42:40 -0800
29930              Message-ID: <20051227024240.GA2940@efn.org>
29931              
29932              plus another formatting nit
29933      Branch: perl
29934            ! pod/perlfunc.pod
29935 ____________________________________________________________________________
29936 [ 26519] By: craigb                                on 2005/12/29  03:49:58
29937         Log: Subject: [PATCH] fortify Pod::Simple::Search against non-case-preserving filesystems
29938              From: "Craig A. Berry" <craigberry@mac.com>
29939              Date: Tue, 27 Dec 2005 17:59:35 -0600
29940              Message-id: <43B1D567.9080504@mac.com>
29941      Branch: perl
29942            ! lib/Pod/Simple/Search.pm
29943            ! lib/Pod/Simple/t/other_test_lib/squaa/Wowo.pod
29944 ____________________________________________________________________________
29945 [ 26518] By: nicholas                              on 2005/12/29  00:19:01
29946         Log: A GVs stash can be NULL, so don't call macros that assume otherwise
29947              without checking.
29948      Branch: perl
29949            ! pp.c
29950 ____________________________________________________________________________
29951 [ 26517] By: nicholas                              on 2005/12/28  19:40:26
29952         Log: As the backreferences AV doesn't hold references on its contents,
29953              surely it should have AvREAL turned off?
29954      Branch: perl
29955            ! sv.c
29956 ____________________________________________________________________________
29957 [ 26516] By: nicholas                              on 2005/12/28  13:35:03
29958         Log: PL_amagic_generation is always non-zero, so remove the test for this.
29959              (Since change 17990 added version object overloading)
29960      Branch: perl
29961            ! pp.h
29962 ____________________________________________________________________________
29963 [ 26515] By: stevep                                on 2005/12/28  13:31:02
29964         Log: Upgrade to Sys-Syslog-0.11
29965      Branch: perl
29966            ! ext/Sys/Syslog/Changes ext/Sys/Syslog/README
29967            ! ext/Sys/Syslog/Syslog.pm ext/Sys/Syslog/t/podspell.t
29968            ! ext/Sys/Syslog/t/syslog.t
29969 ____________________________________________________________________________
29970 [ 26514] By: gisle                                 on 2005/12/28  13:25:30
29971         Log: Cleanup; replace a croak("panic: ...") with assert().
29972      Branch: perl
29973            ! av.c
29974 ____________________________________________________________________________
29975 [ 26513] By: gisle                                 on 2005/12/28  13:12:30
29976         Log: assert(av);  Cleanup the way that the av_*() functions check
29977              that they are really passed an av argument.
29978              Should improve the test coverage a bit.
29979      Branch: perl
29980            ! av.c pod/perldiag.pod
29981 ____________________________________________________________________________
29982 [ 26512] By: gisle                                 on 2005/12/28  12:38:03
29983         Log: Use memchr() instead of ninstr() to locate the end-of-line.
29984              The call to memchr() will faster.
29985      Branch: perl
29986            ! toke.c
29987 ____________________________________________________________________________
29988 [ 26511] By: gisle                                 on 2005/12/28  12:18:58
29989         Log: Leaner ninstr().
29990              The compiled function ended up 37% smaller on Linux/gcc.
29991              I ought to be faster as well, but I did not try to measure that.
29992      Branch: perl
29993            ! util.c
29994 ____________________________________________________________________________
29995 [ 26510] By: gisle                                 on 2005/12/28  11:01:46
29996         Log: Remove test for NUL ending in r?instr().
29997              This test is actually harmful because we will search
29998              for any garbage found past the empty search string.
29999              Ref change 26509.
30000      Branch: perl
30001            ! util.c
30002 ____________________________________________________________________________
30003 [ 26509] By: gisle                                 on 2005/12/28  10:57:46
30004         Log: Fix 2 off-by-one errors in the call to ninstr().
30005              This code managed to still work because of a bug
30006              in how ninstr() treats empty search strings.
30007      Branch: perl
30008            ! ext/Filter/Util/Call/Call.xs
30009 ____________________________________________________________________________
30010 [ 26508] By: stevep                                on 2005/12/28  03:27:13
30011         Log: Upgrade to PathTools-3.15
30012      Branch: perl
30013            ! ext/Cwd/Changes lib/Cwd.pm lib/File/Spec.pm
30014 ____________________________________________________________________________
30015 [ 26507] By: nicholas                              on 2005/12/27  23:39:42
30016         Log: s/%/%%/ in the package name so that it can be used safely in the
30017              sprintf format string (and hence not need runtime %s interpolation)
30018      Branch: perl
30019            ! lib/ExtUtils/Constant.pm lib/ExtUtils/Constant/ProxySubs.pm
30020 ____________________________________________________________________________
30021 [ 26506] By: nicholas                              on 2005/12/27  22:19:28
30022         Log: Pass in the full arguments to ExtUtils::Constant::ProxySubs
30023              Prototype all the missing constants, so that parsing doesn't depend on
30024              the phase of the moon. (Well, the system headers)
30025              Add an option for making missing constants generate errors at read time
30026              (which can be during constant folding). This isn't the default.
30027      Branch: perl
30028            ! lib/ExtUtils/Constant.pm lib/ExtUtils/Constant/ProxySubs.pm
30029 ____________________________________________________________________________
30030 [ 26505] By: stevep                                on 2005/12/27  22:07:44
30031         Log: Subject: [PATCH] pre-likely cleanup
30032              From: Andy Lester <andy@petdance.com> 
30033              Date: Tue, 27 Dec 2005 14:39:39 -0600
30034              Message-ID: <20051227203939.GC1781@petdance.com> 
30035              
30036              Includes a small fix to the changes in tryAMAGICbinW_var() in pp.h.
30037      Branch: perl
30038            ! av.c doop.c handy.h hv.c mg.c pp.c pp.h sv.c util.c
30039 ____________________________________________________________________________
30040 [ 26504] By: stevep                                on 2005/12/27  18:36:19
30041         Log: It'd be nice if I hadn't broken corecpan.pl.  Its fixed now, though.
30042      Branch: perl
30043            ! Porting/Maintainers.pl
30044 ____________________________________________________________________________
30045 [ 26503] By: nicholas                              on 2005/12/27  17:33:13
30046         Log: gv_fetch_flags in newATTRSUB can actually be const.
30047              Comment the logic behind the terms in the ternary that chooses the
30048              flags value.
30049      Branch: perl
30050            ! op.c
30051 ____________________________________________________________________________
30052 [ 26502] By: nicholas                              on 2005/12/27  17:24:11
30053         Log: As what we're doing is generating subroutines, which are methods, we
30054              need to invalidate cached methods. For constant.pm we need to create
30055              &Internals::inc_sub_generation
30056      Branch: perl
30057            ! lib/ExtUtils/Constant/ProxySubs.pm lib/constant.pm universal.c
30058 ____________________________________________________________________________
30059 [ 26501] By: stevep                                on 2005/12/27  14:10:20
30060         Log: Subject: [patch] ext/b/t/lint.t fails on win32
30061              From: demerphq <demerphq@gmail.com>
30062              Date: Fri, 23 Dec 2005 20:06:52 +0100 
30063              Message-ID: <9b18b3110512231106k7ad395bfp8a0c05cd0f87fc61@mail.gmail.com>
30064      Branch: perl
30065            ! ext/B/t/lint.t
30066 ____________________________________________________________________________
30067 [ 26500] By: nicholas                              on 2005/12/27  12:02:57
30068         Log: Refactor the require failure message generation to use 1 less temporary
30069              SV, and to build as much text as possible with newSVpvf
30070      Branch: perl
30071            ! pp_ctl.c
30072 ____________________________________________________________________________
30073 [ 26499] By: nicholas                              on 2005/12/27  00:29:33
30074         Log: Removing MAKE_JOBS_FIFO from %ENV causes FreeBSD make to forget about
30075              any -j flags. (And their implied disabling of backwards compatibility,
30076              which is the real cause of the make disttest failure).
30077      Branch: perl
30078            ! lib/ExtUtils/t/basic.t
30079 ____________________________________________________________________________
30080 [ 26498] By: nicholas                              on 2005/12/26  23:52:44
30081         Log: tabs, not spaces, in MANIFEST. No, I can't remember why this is.
30082              Or whether it could be relaxed.
30083      Branch: perl
30084            ! MANIFEST
30085 ____________________________________________________________________________
30086 [ 26497] By: nicholas                              on 2005/12/26  23:50:14
30087         Log: Remove the hard wired test numbers in the generated test script for
30088              simple tests. Use this script twice, firstly for testing the old style
30089              autoloaded constants, then for testing the ProxySubs.
30090              Make testing the dogfood/regeneration code optional, as the ProxySubs
30091              output doesn't contain it.
30092      Branch: perl
30093            ! lib/ExtUtils/t/Constant.t
30094 ____________________________________________________________________________
30095 [ 26496] By: nicholas                              on 2005/12/26  23:48:00
30096         Log: Support type UNDEF, and correct a bug in the macro generation by using
30097              macro_from_item.
30098      Branch: perl
30099            ! lib/ExtUtils/Constant/ProxySubs.pm
30100 ____________________________________________________________________________
30101 [ 26495] By: nicholas                              on 2005/12/26  23:47:01
30102         Log: Add method macro_from_item to encapsulate the entire logic for getting
30103              the correct macro direct from the item hash.
30104      Branch: perl
30105            ! lib/ExtUtils/Constant/Base.pm lib/ExtUtils/Constant/XS.pm
30106 ____________________________________________________________________________
30107 [ 26494] By: nicholas                              on 2005/12/26  23:10:53
30108         Log: Don't try to store PL_sv_undef in pads. (For now)
30109      Branch: perl
30110            ! op.c
30111 ____________________________________________________________________________
30112 [ 26493] By: stevep                                on 2005/12/26  22:01:49
30113         Log: Upgrade to CPAN-1.80_56
30114      Branch: perl
30115            + lib/CPAN/Debug.pm lib/CPAN/HandleConfig.pm lib/CPAN/Tarzip.pm
30116            ! MANIFEST lib/CPAN.pm lib/CPAN/FirstTime.pm lib/CPAN/SIGNATURE
30117            ! lib/CPAN/bin/cpan
30118 ____________________________________________________________________________
30119 [ 26492] By: stevep                                on 2005/12/26  17:29:13
30120         Log: In this, the last tale of the NGROUPS saga, a former pumpking prods
30121              a mere committer to remove the last of the NGROUPS-sized arrays...
30122              
30123              Perl_magic_set() was using the last of these arrays to do the 
30124              lvalue work on $).  Instead of an array, a pointer is used and 
30125              re-sized as needed.  
30126      Branch: perl
30127            ! mg.c
30128 ____________________________________________________________________________
30129 [ 26491] By: nicholas                              on 2005/12/26  17:01:35
30130         Log: Add a couple of newlines for tidier regen output, consistent with the
30131              code generated by WriteConstants()
30132      Branch: perl
30133            ! lib/ExtUtils/Constant/XS.pm
30134 ____________________________________________________________________________
30135 [ 26490] By: nicholas                              on 2005/12/26  16:13:57
30136         Log: Add C_FH and XS_FH arguments to ExtUtils::Constant::WriteConstants,
30137              to allow the caller to pass in file handles. Use this in Contant.t
30138              with tied file handles to capture the output, rather than calling
30139              the lower level routines directly.
30140      Branch: perl
30141            ! lib/ExtUtils/Constant.pm lib/ExtUtils/t/Constant.t
30142 ____________________________________________________________________________
30143 [ 26489] By: stevep                                on 2005/12/26  16:08:49
30144         Log: Subject: chg 26486 removes last use of NGROUPS, so remove the macro-def
30145              From: Jim Cromie <jim.cromie@gmail.com>
30146              Date: Mon, 26 Dec 2005 07:57:51 -0700
30147              Message-ID: <43B004EF.8060500@gmail.com>
30148      Branch: perl
30149            ! doio.c
30150 ____________________________________________________________________________
30151 [ 26488] By: nicholas                              on 2005/12/26  12:48:10
30152         Log: The values for proxy constant subroutines need to be read only.
30153      Branch: perl
30154            ! lib/ExtUtils/Constant/ProxySubs.pm
30155 ____________________________________________________________________________
30156 [ 26487] By: nicholas                              on 2005/12/26  12:31:01
30157         Log: Rework constant.pm to take advantage of the space savings of proxy
30158              constant subroutines whenever it can.
30159      Branch: perl
30160            ! lib/constant.pm
30161 ____________________________________________________________________________
30162 [ 26486] By: stevep                                on 2005/12/26  03:51:24
30163         Log: Obviously, Perl_ingroup() is also using 256k of stack memory on Linux.
30164              Adapt change #26480 to reduce memory usage here as well.
30165      Branch: perl
30166            ! doio.c
30167 ____________________________________________________________________________
30168 [ 26485] By: nicholas                              on 2005/12/24  16:27:28
30169         Log: The value from caller doesn't change, so my $pkg = caller;
30170              should be moved out of the loop.
30171      Branch: perl
30172            ! lib/constant.pm
30173 ____________________________________________________________________________
30174 [ 26484] By: nicholas                              on 2005/12/24  16:06:10
30175         Log: Tests for creating constants where prototypes or other symbols of the
30176              same name already exist.
30177      Branch: perl
30178            ! lib/constant.t
30179 ____________________________________________________________________________
30180 [ 26483] By: nicholas                              on 2005/12/24  15:09:28
30181         Log: Using a hash reference rather than a hash can save a hash copy.
30182      Branch: perl
30183            ! lib/constant.pm
30184 ____________________________________________________________________________
30185 [ 26482] By: nicholas                              on 2005/12/24  14:48:42
30186         Log: Unless the peephole optimiser already knows that we're in void context,
30187              avoid even attempting the whole proxy constant sub copying
30188              optimisation.
30189      Branch: perl
30190            ! op.c
30191 ____________________________________________________________________________
30192 [ 26481] By: nicholas                              on 2005/12/24  14:09:56
30193         Log: Given that IO::Socket is documented as exporting all of Socket's
30194              exports, there's no need for IO::Socket::INET or IO::Socket::UNIX to
30195              use both. (And re-exporting removes some of the efficiency of the new
30196              constants implementation)
30197      Branch: perl
30198            ! ext/IO/lib/IO/Socket/INET.pm ext/IO/lib/IO/Socket/UNIX.pm
30199 ____________________________________________________________________________
30200 [ 26480] By: stevep                                on 2005/12/24  03:30:02
30201         Log: Subject: Re: [perl #37907] Perl_magic_get reqires ridiculous amounts of stackmemory
30202              From: Jim Cromie <jim.cromie@gmail.com>
30203              Date: Fri, 23 Dec 2005 13:24:29 -0700
30204              Message-ID: <43AC5CFD.3060200@gmail.com>
30205              
30206              Includes a change in variable names from "j" to "num_groups".
30207      Branch: perl
30208            ! mg.c
30209 ____________________________________________________________________________
30210 [ 26479] By: nicholas                              on 2005/12/24  00:01:50
30211         Log: Looks like the macro CLK_TCK is not actually a constant on Solaris.
30212      Branch: perl
30213            ! ext/POSIX/Makefile.PL
30214 ____________________________________________________________________________
30215 [ 26478] By: nicholas                              on 2005/12/23  17:30:19
30216         Log: For PERL_TRACK_MEMPOOL with PERL_POISON, Poison the end of any block
30217              being shrunk in realloc()
30218      Branch: perl
30219            ! util.c
30220 ____________________________________________________________________________
30221 [ 26477] By: nicholas                              on 2005/12/23  17:24:44
30222         Log: For the rare case of EMFILE during require, save object code space
30223              by using newSVpvf
30224              (Would it be worth using it for all require failures?)
30225      Branch: perl
30226            ! pp_ctl.c
30227 ____________________________________________________________________________
30228 [ 26476] By: nicholas                              on 2005/12/23  16:55:35
30229         Log: If PERL_TRACK_MEMPOOL and PERL_POISON are in use, then scribble all
30230              over memory to invalidate it just before free()ing it.
30231      Branch: perl
30232            ! perl.h util.c
30233 ____________________________________________________________________________
30234 [ 26475] By: nicholas                              on 2005/12/23  16:20:53
30235         Log: Provide support for types PVN and UNDEF in
30236              ExtUtils::Constant::ProxySubs
30237      Branch: perl
30238            ! lib/ExtUtils/Constant/ProxySubs.pm
30239 ____________________________________________________________________________
30240 [ 26474] By: nicholas                              on 2005/12/23  15:27:10
30241         Log: Create a struct to use as the header with PERL_TRACK_MEMPOOL, so that
30242              other information can be stored in it.
30243      Branch: perl
30244            ! perl.h util.c
30245 ____________________________________________________________________________
30246 [ 26473] By: nicholas                              on 2005/12/23  13:54:37
30247         Log: ExtUtils::ParseXS needs to stack $filepathname to make #line directives
30248              in #INCLUDEs work.
30249      Branch: perl
30250            ! lib/ExtUtils/ParseXS.pm
30251 ____________________________________________________________________________
30252 [ 26472] By: nicholas                              on 2005/12/23  12:21:19
30253         Log: Add support for PV to ExtUtils::Constant::ProxySubs, and enable its
30254              use in Sys::Syslog
30255      Branch: perl
30256            ! ext/Sys/Syslog/Makefile.PL lib/ExtUtils/Constant/ProxySubs.pm
30257 ____________________________________________________________________________
30258 [ 26471] By: nicholas                              on 2005/12/23  12:01:29
30259         Log: inlining autoloaded constants is TODOne.
30260      Branch: perl
30261            ! pod/perltodo.pod
30262 ____________________________________________________________________________
30263 [ 26470] By: nicholas                              on 2005/12/23  11:36:43
30264         Log: Now that proxy subroutines can be unproxied in 2 places without
30265              becoming the same newCONSTSUB, need an explicit check to avoid a
30266              warning about subroutines being redefined, as there has never been
30267              a warning when you assing the same subroutine to a glob's GvCV()
30268      Branch: perl
30269            ! sv.c t/op/gv.t
30270 ____________________________________________________________________________
30271 [ 26469] By: nicholas                              on 2005/12/23  11:35:21
30272         Log: like and unlike weren't reporting failure where correctly in test.pl
30273      Branch: perl
30274            ! t/test.pl
30275 ____________________________________________________________________________
30276 [ 26468] By: rgs                                   on 2005/12/23  11:06:34
30277         Log: Fix build of Compress::Zlib on MVS (by Paul Marquess)
30278      Branch: perl
30279            ! ext/Compress/Zlib/zlib-src/zconf.h
30280 ____________________________________________________________________________
30281 [ 26467] By: rgs                                   on 2005/12/23  10:13:30
30282         Log: Clarify example of .. in perlop
30283              to fix [perl #38008] Documentation bug: perlop
30284              plus some minor formatting nits
30285      Branch: perl
30286            ! pod/perlop.pod
30287 ____________________________________________________________________________
30288 [ 26466] By: rgs                                   on 2005/12/23  09:21:09
30289         Log: Subject: [REPATCH lib/UNIVERSAL.pm] Recommend Against Using Methods as Functions
30290              From: chromatic <chromatic@wgz.org>
30291              Date: Dec 22, 2005 8:58 PM
30292              Message-Id: <200512221158.54474.chromatic@wgz.org>
30293      Branch: perl
30294            ! lib/UNIVERSAL.pm
30295 ____________________________________________________________________________
30296 [ 26465] By: nicholas                              on 2005/12/23  01:38:01
30297         Log: Need to be more careful with the symbol table manipulation - if there
30298              is already an entry in place, back off and generate a real constant
30299              subroutine. (fixes lib/Net/hostent.t failure)
30300              Fix a bug with how hv_store was being called.
30301      Branch: perl
30302            ! lib/ExtUtils/Constant/ProxySubs.pm
30303 ____________________________________________________________________________
30304 [ 26464] By: nicholas                              on 2005/12/23  01:09:05
30305         Log: SIGRTMAX, SIGRTMIN, LDBL_MAX, LDBL_MIN, LDBL_EPSILON and HUGE_VAL
30306              aren't constants on (at least some) Linux.
30307              And more evil than that, HUGE_VAL likes to use the C preprocessor
30308              in its value, necessitating use of a temporary.
30309      Branch: perl
30310            ! ext/POSIX/Makefile.PL lib/ExtUtils/Constant/ProxySubs.pm
30311 ____________________________________________________________________________
30312 [ 26463] By: nicholas                              on 2005/12/23  00:37:04
30313         Log: Use inlineable proxy constant subs for Socket
30314      Branch: perl
30315            ! ext/Socket/Makefile.PL lib/ExtUtils/Constant/ProxySubs.pm
30316 ____________________________________________________________________________
30317 [ 26462] By: stevep                                on 2005/12/23  00:28:54
30318         Log: ctime_r() and asctime_r() seem to have some problems before HP-UX 11.
30319      Branch: perl
30320            ! hints/hpux.sh
30321 ____________________________________________________________________________
30322 [ 26461] By: nicholas                              on 2005/12/23  00:27:50
30323         Log: Subject: [PATCH] Speed up Perl_sv_derived_from
30324              From: Andy Lester <andy@petdance.com>
30325              Message-ID: <20051222220044.GH4370@petdance.com>
30326              Date: Thu, 22 Dec 2005 16:00:44 -0600
30327      Branch: perl
30328            ! universal.c
30329 ____________________________________________________________________________
30330 [ 26460] By: nicholas                              on 2005/12/23  00:18:49
30331         Log: Create a sub LC_ALL with the correct prototype.
30332      Branch: perl
30333            ! lib/locale.t
30334 ____________________________________________________________________________
30335 [ 26459] By: nicholas                              on 2005/12/23  00:18:27
30336         Log: De-duplicate the items in @EXPORT. (@EXPORT is built from all the tags,
30337              and some constants are mentioned in multiple tags).
30338              Should this logic be in Exporter::Heavy?
30339      Branch: perl
30340            ! ext/POSIX/POSIX.pm
30341 ____________________________________________________________________________
30342 [ 26458] By: stevep                                on 2005/12/23  00:10:25
30343         Log: Make hostname.t deal with undefined or blank hostnames and domain 
30344              names.
30345      Branch: perl
30346            ! lib/Net/t/hostname.t
30347 ____________________________________________________________________________
30348 [ 26457] By: stevep                                on 2005/12/23  00:06:58
30349         Log: Fix for pod2man() in ExtUtils::Command::MM to work with 
30350              the Pod::Man 2.04.
30351      Branch: perl
30352            ! lib/ExtUtils/Command/MM.pm
30353 ____________________________________________________________________________
30354 [ 26456] By: nicholas                              on 2005/12/23  00:06:52
30355         Log: Subject: [PATCH] Speedup (rn|n)?instr
30356              From: Andy Lester <andy@petdance.com>
30357              Message-ID: <20051222223839.GI4370@petdance.com>
30358              Date: Thu, 22 Dec 2005 16:38:39 -0600
30359      Branch: perl
30360            ! util.c
30361 ____________________________________________________________________________
30362 [ 26455] By: nicholas                              on 2005/12/22  23:57:27
30363         Log: Use inlineable proxy constant subs for POSIX.
30364              There may be trouble ahead, as it seems that not all POSIX "constants"
30365              are. I wonder if too many systems are going to have too many
30366              variations to make this viable.
30367      Branch: perl
30368            ! ext/POSIX/Makefile.PL lib/ExtUtils/Constant/Base.pm
30369            ! lib/ExtUtils/Constant/ProxySubs.pm
30370 ____________________________________________________________________________
30371 [ 26454] By: nicholas                              on 2005/12/22  23:43:22
30372         Log: Missing ; in Tie::File
30373      Branch: perl
30374            ! lib/Tie/File.pm lib/Tie/File/t/00_version.t
30375 ____________________________________________________________________________
30376 [ 26453] By: nicholas                              on 2005/12/22  21:02:19
30377         Log: Make ExtUtils::Constant generate the inlineable proxy constant subs.
30378              So far just enough to make Fcntl work.
30379      Branch: perl
30380            + lib/ExtUtils/Constant/ProxySubs.pm
30381            ! MANIFEST ext/Fcntl/Makefile.PL lib/ExtUtils/Constant.pm
30382 ____________________________________________________________________________
30383 [ 26452] By: rgs                                   on 2005/12/22  19:37:42
30384         Log: Compilation help for EBCDIC platforms, from Jarkko,
30385              tested by Rajarshi Das
30386      Branch: perl
30387            ! utf8.h
30388 ____________________________________________________________________________
30389 [ 26451] By: nicholas                              on 2005/12/22  19:00:52
30390         Log: Break out the code to generate #ifdef/#endif into new methods
30391              macro_to_ifdef and macro_to_endif
30392              Add an args hashref to normalise_items; provide a
30393              disable_utf8_duplication argument to disable the utf8 duplication code.
30394      Branch: perl
30395            ! lib/ExtUtils/Constant/Base.pm
30396 ____________________________________________________________________________
30397 [ 26450] By: rgs                                   on 2005/12/22  17:09:59
30398         Log: Subject: [PATCH] Ho! Ho! Ho!  Santa brings consting!
30399              From: Andy Lester <andy@petdance.com>
30400              Date: Thu, 22 Dec 2005 10:57:17 -0600
30401              Message-ID: <20051222165717.GA2874@petdance.com>
30402      Branch: perl
30403            ! dump.c embed.fnc embed.h gv.c hv.c op.c pp.c pp_ctl.c pp_hot.c
30404            ! pp_sys.c proto.h regcomp.c sv.c toke.c universal.c
30405 ____________________________________________________________________________
30406 [ 26449] By: nicholas                              on 2005/12/22  17:01:33
30407         Log: Break out the item normalisation code into a method normalise_items.
30408      Branch: perl
30409            ! lib/ExtUtils/Constant/Base.pm
30410 ____________________________________________________________________________
30411 [ 26448] By: nicholas                              on 2005/12/22  15:43:20
30412         Log: Regression tests for proxy subroutine glob assignment.
30413              Fix a bug (it turns out that a typeglob isn't SvOK())
30414              Remove stray debugging code.
30415      Branch: perl
30416            ! pp_hot.c t/op/gv.t
30417 ____________________________________________________________________________
30418 [ 26447] By: rgs                                   on 2005/12/22  14:55:52
30419         Log: Subject: [PATCH] eliminate HINT_HH_FOR_EVAL
30420              From: Robin Houston <robin@cpan.org>
30421              Date: Thu, 22 Dec 2005 11:54:55 +0000
30422              Message-ID: <20051222115455.GB30301@rpc142.cs.man.ac.uk>
30423      Branch: perl
30424            ! lib/feature.pm lib/overload.pm lib/sort.pm op.c perl.h
30425            ! t/comp/hints.t
30426 ____________________________________________________________________________
30427 [ 26446] By: nicholas                              on 2005/12/22  11:23:34
30428         Log: Add an optimisation to allow proxy constant subroutines to be copied
30429              as proxy constant subroutines in a new symbol table where possible.
30430              (Rather than converting them to full blown constant subroutines and
30431              instantiating 2 typeglobs)
30432      Branch: perl
30433            ! ext/B/t/concise-xs.t gv.c gv.h op.c op.h pp.c pp_hot.c sv.c
30434 ____________________________________________________________________________
30435 [ 26445] By: rgs                                   on 2005/12/22  11:13:25
30436         Log: Regenerate Changes
30437      Branch: perl
30438            ! Changes
30439 ____________________________________________________________________________
30440 [ 26444] By: gisle                                 on 2005/12/22  10:42:36
30441         Log: Remove unused variable 'stash' since change 26437.
30442      Branch: perl
30443            ! pp_hot.c
30444 ____________________________________________________________________________
30445 [ 26443] By: rgs                                   on 2005/12/22  10:32:17
30446         Log: Regenerate perlapi.pod.
30447              Fix indentation of code examples in perlsyn.
30448      Branch: perl
30449            ! pod/perlapi.pod pod/perlsyn.pod
30450 ____________________________________________________________________________
30451 [ 26442] By: rgs                                   on 2005/12/22  10:10:04
30452         Log: Subject: [PATCH] switch / ~~ doccos
30453              From: Robin Houston <robin@cpan.org>
30454              Date: Wed, 21 Dec 2005 13:51:18 +0000
30455              Message-ID: <20051221135118.GC26527@rpc142.cs.man.ac.uk>
30456      Branch: perl
30457            ! pod/perlsyn.pod
30458 ____________________________________________________________________________
30459 [ 26441] By: merijn                                on 2005/12/22  07:02:37
30460         Log: Subject: [PATCH] wrong setting in canned win32/config.vc64 file
30461              From: "Jan Dubois" <jand@ActiveState.com>
30462              Date: Wed, 21 Dec 2005 15:04:30 -0800
30463              Message-ID: <06c701c60682$e650adc0$d563a8c0@candy>
30464      Branch: perl
30465            ! win32/config.vc64
30466 ____________________________________________________________________________
30467 [ 26440] By: stevep                                on 2005/12/22  03:08:59
30468         Log: Add documentation for method domainname() in Net::Domain.  Add some
30469              additional tests for Net::Domain.  Also, since it is tested, remove 
30470              test case from lib/1_compile.t.  One step closer to $500.
30471      Branch: perl
30472            ! lib/Net/Domain.pm lib/Net/t/hostname.t t/lib/1_compile.t
30473 ____________________________________________________________________________
30474 [ 26439] By: nicholas                              on 2005/12/21  22:40:04
30475         Log: Avoid negating an unsigned value. (The offset in the SV body table)
30476      Branch: perl
30477            ! sv.c
30478 ____________________________________________________________________________
30479 [ 26438] By: nicholas                              on 2005/12/21  21:20:23
30480         Log: For consistency sv_2cv should not leave the stash pointer uninitialised
30481              for some cases. Although it seems that only pp_sort pays any attention
30482              to it, of all the code on CPAN.
30483      Branch: perl
30484            ! sv.c
30485 ____________________________________________________________________________
30486 [ 26437] By: nicholas                              on 2005/12/21  20:38:42
30487         Log: Localise the stash variable in pp_entersub().
30488      Branch: perl
30489            ! pp_hot.c
30490 ____________________________________________________________________________
30491 [ 26436] By: nicholas                              on 2005/12/21  19:37:48
30492         Log: Undo my goto spaghetti from change 18340 - what we really need are
30493              hints to compilers about likey/unlikely branches.
30494      Branch: perl
30495            ! pp_hot.c
30496 ____________________________________________________________________________
30497 [ 26435] By: stevep                                on 2005/12/21  19:04:37
30498         Log: Add tests for untested math functions in POSIX
30499      Branch: perl
30500            + ext/POSIX/t/math.t
30501            ! MANIFEST
30502 ____________________________________________________________________________
30503 [ 26434] By: nicholas                              on 2005/12/21  18:34:03
30504         Log: The lref argument of sv_2cv is actually passed onwards to gv_fetchsv,
30505              so it is a bitmap of flag bits rather than simple TRUE/FALSE.
30506      Branch: perl
30507            ! mg.c pp.c pp_hot.c sv.c
30508 ____________________________________________________________________________
30509 [ 26433] By: rgs                                   on 2005/12/21  17:07:05
30510         Log: Remove switch from perltodo
30511      Branch: perl
30512            ! pod/perltodo.pod
30513 ____________________________________________________________________________
30514 [ 26432] By: rgs                                   on 2005/12/21  16:16:19
30515         Log: Subject: [PATCH] Feature bundle is now :5.10, and add -E switch
30516              From: Robin Houston <robin@cpan.org>
30517              Date: Wed, 21 Dec 2005 11:00:08 +0000
30518              Message-ID: <20051221110008.GB25877@rpc142.cs.man.ac.uk>
30519      Branch: perl
30520            + t/lib/feature/err
30521            ! MANIFEST embedvar.h global.sym intrpvar.h lib/feature.pm
30522            ! perl.c perl_keyword.pl perlapi.h pod/perlop.pod
30523            ! pod/perlrun.pod sv.c t/lib/feature/nonesuch t/lib/warnings/op
30524            ! t/op/dor.t t/run/switches.t toke.c
30525 ____________________________________________________________________________
30526 [ 26431] By: rgs                                   on 2005/12/21  11:12:32
30527         Log: Fix for [perl #37999] lc() + Latin-1 chars is failing erratically
30528              based on copying part of change #22196 from do_chomp() to do_chop().
30529      Branch: perl
30530            ! doop.c
30531 ____________________________________________________________________________
30532 [ 26430] By: rgs                                   on 2005/12/21  09:23:05
30533         Log: Subject: [PATCH] Fix bug in change #26379
30534              From: "Jan Dubois" <jand@ActiveState.com>
30535              Date: Tue, 20 Dec 2005 16:42:24 -0800
30536              Message-ID: <046001c605c7$69470290$d563a8c0@candy>
30537      Branch: perl
30538            ! win32/win32.c
30539 ____________________________________________________________________________
30540 [ 26429] By: nicholas                              on 2005/12/20  23:12:17
30541         Log: rv_2av, rv_2cv and rv_2hv also make use of OPf_SPECIAL, so update the
30542              descriptive comment to include them.
30543      Branch: perl
30544            ! op.h
30545 ____________________________________________________________________________
30546 [ 26428] By: rgs                                   on 2005/12/20  20:50:26
30547         Log: Remove some hardcoded references to ./perl in tests
30548      Branch: perl
30549            ! t/op/closure.t t/op/magic.t t/run/runenv.t
30550 ____________________________________________________________________________
30551 [ 26427] By: nicholas                              on 2005/12/20  20:13:12
30552         Log: Take care in toke.c not to convert constant subroutine reference
30553              proxies into full blown PVGVs with PVCVs, and recognise them and inline
30554              their values. Adds a new function gv_const_sv(gv) to return the value
30555              of the constant subroutine from a GV, and adds a cv parameter to
30556              S_intuit_method.
30557      Branch: perl
30558            ! embed.fnc embed.h gv.c proto.h toke.c
30559 ____________________________________________________________________________
30560 [ 26426] By: merijn                                on 2005/12/20  19:56:58
30561         Log: Small update on using threads on HP-UX 10.20
30562              64bit is far beyond experimental by now
30563      Branch: perl
30564            ! README.hpux
30565 ____________________________________________________________________________
30566 [ 26425] By: nicholas                              on 2005/12/20  19:55:46
30567         Log: Add a GV_NOADD_NOINIT flag to gv_fetch{pv,pvn,sv} that disables
30568              addition of new typeglobs, and also disables initialisation of any
30569              typeglob placeholders. Needed to make the new constant subroutine
30570              proxy references work efficiently.
30571      Branch: perl
30572            ! gv.c gv.h
30573 ____________________________________________________________________________
30574 [ 26424] By: rgs                                   on 2005/12/20  19:37:26
30575         Log: Fix typos in regular expressions
30576      Branch: perl
30577            ! ext/POSIX/t/time.t
30578 ____________________________________________________________________________
30579 [ 26423] By: nicholas                              on 2005/12/20  16:34:27
30580         Log: Get the "cv" from the "gv" once, and be more careful so that we can
30581              cope if either aren't their regular types.
30582              cv_const_sv should verify the type of SV passed, instead of assuming
30583              that it's a viable CV.
30584      Branch: perl
30585            ! op.c toke.c
30586 ____________________________________________________________________________
30587 [ 26422] By: nicholas                              on 2005/12/20  15:11:09
30588         Log: Croak if gv_init doesn't know how to create a typeglob from that type
30589              of referant. Test that ARRAY, HASH, PVIO, CODE and FORMAT croak.
30590              Globs are actually first class assignable objects, so test that you
30591              can create a constant subroutine that returns one.
30592      Branch: perl
30593            ! gv.c pod/perldiag.pod t/op/gv.t
30594 ____________________________________________________________________________
30595 [ 26421] By: rgs                                   on 2005/12/20  14:54:10
30596         Log: POD nits on B::Lint
30597      Branch: perl
30598            ! ext/B/B/Lint.pm
30599 ____________________________________________________________________________
30600 [ 26420] By: rgs                                   on 2005/12/20  14:48:34
30601         Log: Subject: Re: Pluggable lint patch
30602              From: Joshua ben Jore <twists@gmail.com>
30603              Date: Mon, 19 Dec 2005 09:22:04 -0600
30604              Message-ID: <dc5c751d0512190722s1e73ef88l5ae82bd7aa075c51@mail.gmail.com>
30605      Branch: perl
30606            ! ext/B/B/Lint.pm ext/B/t/lint.t
30607 ____________________________________________________________________________
30608 [ 26419] By: gisle                                 on 2005/12/20  14:39:22
30609         Log: Make perlivp skip the *.ph tests by default, since these
30610              files are normally not generated.
30611              The -a option is now needed for it to run all tests.
30612      Branch: perl
30613            ! utils/perlivp.PL
30614 ____________________________________________________________________________
30615 [ 26418] By: rgs                                   on 2005/12/20  14:24:06
30616         Log: Subject: [TEST PATCH] %^H can now propagate into eval
30617              From: Robin Houston <robin@cpan.org>
30618              Date: Tue, 20 Dec 2005 12:06:15 +0000
30619              Message-ID: <20051220120615.GA21794@rpc142.cs.man.ac.uk>
30620      Branch: perl
30621            ! t/comp/hints.t
30622 ____________________________________________________________________________
30623 [ 26417] By: nicholas                              on 2005/12/20  14:10:39
30624         Log: Verify that the code for initialising typeglobs from other types works.
30625      Branch: perl
30626            ! t/op/gv.t
30627 ____________________________________________________________________________
30628 [ 26416] By: rgs                                   on 2005/12/20  13:55:19
30629         Log: Use PTR2IV instead of casting directly
30630      Branch: perl
30631            ! pp_ctl.c
30632 ____________________________________________________________________________
30633 [ 26415] By: nicholas                              on 2005/12/20  13:39:01
30634         Log: gv_fetchpv, gv_fetchpvn and gv_fetchsv take a bitmask of flags, rather
30635              than a simple boolean, so passing FALSE or TRUE is bogus.
30636      Branch: perl
30637            ! doio.c gv.c mg.c op.c pp.c pp_hot.c pp_sys.c regcomp.c sv.c
30638            ! toke.c universal.c
30639 ____________________________________________________________________________
30640 [ 26414] By: nicholas                              on 2005/12/20  12:51:21
30641         Log: In Perl_yylex, move the declaration of orig_keyword, gv and gvp down to
30642              the block labelled keylookup.
30643      Branch: perl
30644            ! toke.c
30645 ____________________________________________________________________________
30646 [ 26413] By: rgs                                   on 2005/12/20  10:25:01
30647         Log: Subject: [PATCH] make failing cygwin test TODO'd
30648              From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
30649              Date: Mon, 19 Dec 2005 03:41:12 -0800
30650              Message-ID: <20051219114112.GA5568@efn.org>
30651      Branch: perl
30652            ! lib/File/Compare.t
30653 ____________________________________________________________________________
30654 [ 26412] By: nicholas                              on 2005/12/19  23:47:26
30655         Log: In Perl_yylex, make tmp a temporary variable local to the blocks in
30656              which it is used.
30657      Branch: perl
30658            ! toke.c
30659 ____________________________________________________________________________
30660 [ 26411] By: nicholas                              on 2005/12/19  22:38:54
30661         Log: Assert that orig_keyword, gv and gvp aren't used before the main
30662              keyword parser of Perl_yylex.
30663      Branch: perl
30664            ! toke.c
30665 ____________________________________________________________________________
30666 [ 26410] By: davem                                 on 2005/12/19  22:07:49
30667         Log: //g loops infinitely on tainted data
30668              make the LHS of expr =~ /foo/g an lvalue, so that any pos magic
30669              attached to it stays attached.
30670      Branch: perl
30671            ! op.c t/op/taint.t
30672 ____________________________________________________________________________
30673 [ 26409] By: nicholas                              on 2005/12/19  20:57:40
30674         Log: Make gv_init recognise a reference-to-something in a symbol table as
30675              meaning a constant subroutine with that thing as it value
30676      Branch: perl
30677            ! gv.c
30678 ____________________________________________________________________________
30679 [ 26408] By: rgs                                   on 2005/12/19  19:27:09
30680         Log: Fix internal broken link ; reindent code examples
30681      Branch: perl
30682            ! pod/perlsyn.pod
30683 ____________________________________________________________________________
30684 [ 26407] By: rgs                                   on 2005/12/19  19:21:47
30685         Log: Fix typo.
30686              Add empty lines after =items.
30687      Branch: perl
30688            ! pod/perldiag.pod
30689 ____________________________________________________________________________
30690 [ 26406] By: rgs                                   on 2005/12/19  19:18:48
30691         Log: A note on say() and ORS grabbed from Damian's Perl6::Say.
30692      Branch: perl
30693            ! pod/perlfunc.pod
30694 ____________________________________________________________________________
30695 [ 26405] By: rgs                                   on 2005/12/19  18:43:04
30696         Log: Attempt at making IO::Handle backwards compatible again
30697      Branch: perl
30698            ! ext/IO/lib/IO/Handle.pm
30699 ____________________________________________________________________________
30700 [ 26404] By: nicholas                              on 2005/12/19  18:28:03
30701         Log: Make sv_dump (and therefore Devel::Peek) report the value of the
30702              constant in inlineable constant subroutines.
30703      Branch: perl
30704            ! dump.c ext/Devel/Peek/t/Peek.t
30705 ____________________________________________________________________________
30706 [ 26403] By: rgs                                   on 2005/12/19  18:20:48
30707         Log: sort.pm deserves a new version number
30708      Branch: perl
30709            ! lib/sort.pm
30710 ____________________________________________________________________________
30711 [ 26402] By: rgs                                   on 2005/12/19  18:17:19
30712         Log: Subject: Re: [PATCH] Make the 'sort' pragma lexically scoped
30713              From: Robin Houston <robin@cpan.org>
30714              Date: Dec 19, 2005 6:46 PM
30715              Message-ID: <20051219174620.GA17940@rpc142.cs.man.ac.uk>
30716      Branch: perl
30717            ! embed.fnc embed.h ext/B/B/Concise.pm ext/B/t/concise-xs.t
30718            ! ext/B/t/f_sort.t global.sym lib/feature.pm lib/sort.pm
30719            ! lib/sort.t op.c op.h pod/perlapi.pod pp_sort.c proto.h toke.c
30720 ____________________________________________________________________________
30721 [ 26401] By: rgs                                   on 2005/12/19  16:39:44
30722         Log: Missing file from last change
30723      Branch: perl
30724            + t/lib/common.pl
30725 ____________________________________________________________________________
30726 [ 26400] By: rgs                                   on 2005/12/19  16:26:15
30727         Log: Subject: [PATCH] latest switch/say/~~
30728              From: Robin Houston <robin@cpan.org>
30729              Date: Sat, 17 Dec 2005 20:44:31 +0000
30730              Message-Id: <20051217204431.GB28940@rpc142.cs.man.ac.uk>
30731      Branch: perl
30732            + lib/feature.pm lib/feature.t t/io/say.t t/lib/feature/nonesuch
30733            + t/lib/feature/say t/lib/feature/smartmatch
30734            + t/lib/feature/switch t/op/smartmatch.t t/op/switch.t
30735            ! MANIFEST cop.h embed.fnc embed.h ext/B/B/Deparse.pm
30736            ! ext/B/t/concise-xs.t ext/B/t/f_map.t ext/B/t/optree_samples.t
30737            ! ext/IO/lib/IO/Handle.pm ext/Opcode/Opcode.pm global.sym
30738            ! keywords.h keywords.pl lib/overload.pm lib/warnings.t op.c
30739            ! op.h opcode.h opcode.pl opnames.h perl.h perl_keyword.pl
30740            ! perly.act perly.h perly.tab perly.y pod/perldiag.pod
30741            ! pod/perlfunc.pod pod/perlop.pod pod/perlsyn.pod pp.sym
30742            ! pp_ctl.c pp_proto.h proto.h t/op/cproto.t toke.c
30743 ____________________________________________________________________________
30744 [ 26399] By: rgs                                   on 2005/12/19  09:52:42
30745         Log: Un-TODO a fixed test
30746              
30747              Subject: Re: Change 26165 broke ext/threads/t/stress_re.t test on Win32 (and patch to t/test.pl and/or Test::Harness)
30748              From: demerphq <demerphq@gmail.com>
30749              Date: Sat, 17 Dec 2005 17:23:23 +0100
30750              Message-ID: <9b18b3110512170823q1bb2cd27h838b4d4dcdba72c9@mail.gmail.com>
30751      Branch: perl
30752            ! t/op/pat.t
30753 ____________________________________________________________________________
30754 [ 26398] By: rgs                                   on 2005/12/19  09:52:03
30755         Log: TODO-SKIP tests must be "not ok", or else the test harness will think
30756              it's an unexpected success
30757              
30758              Subject: Re: Change 26165 broke ext/threads/t/stress_re.t test on Win32 (and patch to t/test.pl and/or Test::Harness)
30759              From: demerphq <demerphq@gmail.com>
30760              Date: Sat, 17 Dec 2005 17:23:23 +0100
30761              Message-ID: <9b18b3110512170823q1bb2cd27h838b4d4dcdba72c9@mail.gmail.com>
30762      Branch: perl
30763            ! t/test.pl
30764 ____________________________________________________________________________
30765 [ 26397] By: rgs                                   on 2005/12/18  10:23:55
30766         Log: Subject: [PATCH] Make script embedded in patchlevel.h work on win32.
30767              From: demerphq <demerphq@gmail.com> Mailed-By: perl.org
30768              Date: Dec 17, 2005 7:52 PM
30769              Message-ID: <9b18b3110512171052h2052d598rdf038f1d38560317@mail.gmail.com>
30770      Branch: perl
30771            ! patchlevel.h
30772 ____________________________________________________________________________
30773 [ 26396] By: craigb                                on 2005/12/18  00:16:42
30774         Log: Two test workarounds for VMS
30775      Branch: perl
30776            ! lib/File/Copy.t t/op/goto.t
30777 ____________________________________________________________________________
30778 [ 26395] By: nicholas                              on 2005/12/17  23:22:31
30779         Log: Add some paranoia to check that GP accesses aren't being done on the
30780              wrong types of SV.
30781      Branch: perl
30782            ! gv.h
30783 ____________________________________________________________________________
30784 [ 26394] By: stevep                                on 2005/12/17  19:21:35
30785         Log: Upgrade to Time-HiRes-1.86
30786      Branch: perl
30787            ! ext/Time/HiRes/Changes ext/Time/HiRes/HiRes.pm
30788            ! ext/Time/HiRes/t/HiRes.t
30789 ____________________________________________________________________________
30790 [ 26393] By: nicholas                              on 2005/12/17  18:50:08
30791         Log: Two it's => its grammar fixes.
30792      Branch: perl
30793            ! op.c perl.h
30794 ____________________________________________________________________________
30795 [ 26392] By: nicholas                              on 2005/12/17  18:25:59
30796         Log: Move and const some definitions of variables used to save errno.
30797      Branch: perl
30798            ! doio.c perlio.c
30799 ____________________________________________________________________________
30800 [ 26391] By: nicholas                              on 2005/12/17  17:46:06
30801         Log: Add t/op/negate.t to MANIFEST.
30802      Branch: perl
30803            ! MANIFEST
30804 ____________________________________________________________________________
30805 [ 26390] By: nicholas                              on 2005/12/17  17:40:44
30806         Log: Pull the definition of olderrno in sv_2pv_flags into the block where
30807              it's used.
30808      Branch: perl
30809            ! sv.c
30810 ____________________________________________________________________________
30811 [ 26389] By: stevep                                on 2005/12/17  15:47:39
30812         Log: Subject: [PATCH] Correct typo in Time::HiRes tests introduced by patch 26383
30813              From: Dominic Dunlop <shouldbedomo@mac.com>
30814              Date: Sat, 17 Dec 2005 15:57:54 +0100
30815              Message-Id: <B364C747-F2BB-446F-887E-06EA2989888C@mac.com>
30816      Branch: perl
30817            ! ext/Time/HiRes/t/HiRes.t
30818 ____________________________________________________________________________
30819 [ 26388] By: stevep                                on 2005/12/17  15:41:38
30820         Log: Fix a typo and add some clarification to change #26387.
30821      Branch: perl
30822            ! pod/perlop.pod
30823 ____________________________________________________________________________
30824 [ 26387] By: stevep                                on 2005/12/17  15:35:45
30825         Log: Addition documentation explaining aritmetic negation on strings.  Also,
30826              additional test cases based partially on code by Piotr Fusik in 
30827              RT #36675: -'-10' eq '+10'.
30828      Branch: perl
30829            + t/op/negate.t
30830            ! pod/perlop.pod
30831 ____________________________________________________________________________
30832 [ 26386] By: nicholas                              on 2005/12/17  12:00:51
30833         Log: The IV/UV choice can be made inside uiv_2buf rather than sv_2pv_flags.
30834      Branch: perl
30835            ! sv.c
30836 ____________________________________________________________________________
30837 [ 26385] By: nicholas                              on 2005/12/17  11:44:47
30838         Log: The THINKFIRST check after the GMAGICAL check in sv_2iv_flags and
30839              sv_2uv_flags should have been else if.
30840      Branch: perl
30841            ! sv.c
30842 ____________________________________________________________________________
30843 [ 26384] By: stevep                                on 2005/12/17  04:03:05
30844         Log: Fix for ext/POSIX/t/time.t so the strftime() test works on systems
30845              that aren't quite up to SUS3.  Based on a patch by David Dyck in
30846              RT #37960: POSIX/t/time fails bleadperl
30847      Branch: perl
30848            ! ext/POSIX/t/time.t
30849 ____________________________________________________________________________
30850 [ 26383] By: stevep                                on 2005/12/17  01:46:58
30851         Log: Upgrade to Time-HiRes-1.85
30852      Branch: perl
30853            ! ext/Time/HiRes/Changes ext/Time/HiRes/HiRes.pm
30854            ! ext/Time/HiRes/HiRes.xs ext/Time/HiRes/Makefile.PL
30855            ! ext/Time/HiRes/fallback/const-c.inc
30856            ! ext/Time/HiRes/fallback/const-xs.inc ext/Time/HiRes/t/HiRes.t
30857 ____________________________________________________________________________
30858 [ 26382] By: nicholas                              on 2005/12/16  22:41:01
30859         Log: Typo fixes from Robin Houston in
30860              <20051216201446.GA24709@rpc142.cs.man.ac.uk>
30861      Branch: perl
30862            ! sv.h
30863 ____________________________________________________________________________
30864 [ 26381] By: nicholas                              on 2005/12/16  21:54:13
30865         Log: s/Nullhv/NULL/g;
30866              # Although I see that Robin is proposing to add some :-)
30867      Branch: perl
30868            ! cop.h ext/Data/Dumper/Dumper.xs ext/DynaLoader/dlutils.c gv.c
30869            ! op.c op.h pad.c perl.c sv.c toke.c universal.c xsutils.c
30870 ____________________________________________________________________________
30871 [ 26380] By: nicholas                              on 2005/12/16  21:30:34
30872         Log: s/Nullav/NULL/g
30873      Branch: perl
30874            ! cop.h ext/Data/Dumper/Dumper.xs gv.c intrpvar.h pad.c perl.c
30875            ! pp.c pp_ctl.c pp_sort.c scope.c sv.c
30876 ____________________________________________________________________________
30877 [ 26379] By: rgs                                   on 2005/12/16  21:13:37
30878         Log: Subject: [PATCH] RE: PeekMessage() call in win32\win32.c win32_async_check
30879              From: Jan Dubois <jand@activestate.com>
30880              Date: Dec 16, 2005 7:12 AM
30881              Message-ID: <015901c60207$abd64210$d563a8c0@candy>
30882              
30883              (Without the proposed alarm.t test)
30884      Branch: perl
30885            ! t/op/fork.t win32/perlhost.h win32/win32.c win32/win32.h
30886 ____________________________________________________________________________
30887 [ 26378] By: nicholas                              on 2005/12/16  18:12:26
30888         Log: Perl_sv_dup should be allocating bodies based on *size*, not the
30889              length to copy.
30890      Branch: perl
30891            ! sv.c
30892 ____________________________________________________________________________
30893 [ 26377] By: nicholas                              on 2005/12/16  15:55:51
30894         Log: comp/require.t exits early for the case of UTF-8 or EBCDIC, so need to
30895              add "new" tests before the end.
30896      Branch: perl
30897            ! t/comp/require.t
30898 ____________________________________________________________________________
30899 [ 26376] By: davem                                 on 2005/12/15  22:03:57
30900         Log: change #26373 broke threaded builds (aTHX_ now superfluous)
30901      Branch: perl
30902            ! pp_ctl.c
30903 ____________________________________________________________________________
30904 [ 26375] By: stevep                                on 2005/12/15  18:16:20
30905         Log: Added test for change #26373.
30906      Branch: perl
30907            ! t/comp/require.t
30908 ____________________________________________________________________________
30909 [ 26374] By: rgs                                   on 2005/12/15  18:00:34
30910         Log: Fix for [perl #37886] strict 'refs' doesn't apply inside defined
30911      Branch: perl
30912            ! pod/perl593delta.pod pp.c t/lib/strict/refs
30913 ____________________________________________________________________________
30914 [ 26373] By: stevep                                on 2005/12/15  17:48:42
30915         Log: Prevent require() from attempting to open directories and block 
30916              devices.  This fixes RT #24404.
30917      Branch: perl
30918            ! embed.fnc embed.h pp_ctl.c proto.h
30919 ____________________________________________________________________________
30920 [ 26372] By: nicholas                              on 2005/12/15  17:26:52
30921         Log: Use PL_op_desc rather than literal strings in pp_ioctl
30922      Branch: perl
30923            ! pp_sys.c
30924 ____________________________________________________________________________
30925 [ 26371] By: nicholas                              on 2005/12/15  17:26:22
30926         Log: Expand the comment describing the intent of change 26370, and how it
30927              relates to change 24660.
30928      Branch: perl
30929            ! toke.c
30930 ____________________________________________________________________________
30931 [ 26370] By: rgs                                   on 2005/12/15  17:12:01
30932         Log: Don't autovivify stashes as soon as the lexer sees them.
30933              This makes defined %foo::bar:: work again.
30934              Add tests for it, remove note in perldelta about having broken it.
30935      Branch: perl
30936            ! pod/perl593delta.pod t/op/stash.t toke.c
30937 ____________________________________________________________________________
30938 [ 26369] By: nicholas                              on 2005/12/15  16:24:21
30939         Log: In Perl_apply, the name of the op can be found from PL_op_name, instead
30940              of using local string constants.
30941      Branch: perl
30942            ! doio.c
30943 ____________________________________________________________________________
30944 [ 26368] By: rgs                                   on 2005/12/15  15:11:15
30945         Log: More general fix for bug [perl #37915]
30946              Make Net::Ping::mselect return undef on error instead of -1.
30947      Branch: perl
30948            ! lib/Net/Ping.pm
30949 ____________________________________________________________________________
30950 [ 26367] By: rgs                                   on 2005/12/15  14:44:51
30951         Log: Subject: [perl #37915] Bad select error handling in Net::Ping 
30952              From: alexander_bluhm@genua.de (via RT) <perlbug-followup@perl.org>
30953              Date: Tue, 13 Dec 2005 10:44:47 -0800
30954              Message-ID: <rt-3.0.11-37915-125655.19.2646201463531@perl.org>
30955      Branch: perl
30956            ! lib/Net/Ping.pm
30957 ____________________________________________________________________________
30958 [ 26366] By: gisle                                 on 2005/12/15  12:34:12
30959         Log: Silence test output to STDERR
30960              because it makes the 'make test' output look ugly.
30961      Branch: perl
30962            ! ext/Sys/Syslog/t/00-load.t
30963 ____________________________________________________________________________
30964 [ 26365] By: gisle                                 on 2005/12/15  10:42:03
30965         Log: Subject: Re: [perl #37897] sprintf of version objects
30966              From: John Peacock <jpeacock@rowman.com>
30967              Date: Wed, 14 Dec 2005 10:12:56 -0500
30968              Message-ID: <43A03678.2060700@rowman.com>
30969              
30970              (with some formatting tweaks and extra test cases)
30971      Branch: perl
30972            ! sv.c t/op/sprintf.t
30973 ____________________________________________________________________________
30974 [ 26364] By: rgs                                   on 2005/12/15  10:04:36
30975         Log: Some cleanups by Jarkko (and one by myself) to check83.pl
30976      Branch: perl
30977            ! Porting/check83.pl
30978 ____________________________________________________________________________
30979 [ 26363] By: craigb                                on 2005/12/15  03:59:21
30980         Log: On VMS, put pods in [.lib.pods] rather than [.lib.pod]
30981              in order to avoid collisions with [.lib.Pod]
30982      Branch: perl
30983            ! configure.com installperl vms/descrip_mms.template
30984 ____________________________________________________________________________
30985 [ 26362] By: stevep                                on 2005/12/15  02:33:11
30986         Log: Reverting change #26360 and #26361 since it appears that the bugs I
30987              thought I fixed had been previously fixed with change #25953.
30988      Branch: perl
30989            ! pp_sort.c
30990 ____________________________________________________________________________
30991 [ 26361] By: stevep                                on 2005/12/15  02:02:25
30992         Log: Again, FREETMPS not SAVETMPS!
30993      Branch: perl
30994            ! pp_sort.c
30995 ____________________________________________________________________________
30996 [ 26360] By: stevep                                on 2005/12/15  02:00:19
30997         Log: Add a missing FREETMPS to match up with a SAVETMPS.  This change
30998              fixes problems with nested sorts.  (RTs #7063 and #36430).
30999      Branch: perl
31000            ! pp_sort.c
31001 ____________________________________________________________________________
31002 [ 26359] By: stevep                                on 2005/12/15  00:36:25
31003         Log: Upgrade to Getopt-Long-2.35
31004      Branch: perl
31005            ! lib/Getopt/Long.pm
31006 ____________________________________________________________________________
31007 [ 26358] By: craigb                                on 2005/12/14  22:03:28
31008         Log: Using the system's utime() requires a patch to vms/vmsish.h
31009              that has not been submitted yet.
31010      Branch: perl
31011            ! vms/vms.c
31012 ____________________________________________________________________________
31013 [ 26357] By: nicholas                              on 2005/12/14  16:41:33
31014         Log: lib/Pod/t/man.t should use TODO with not ok to express its intentions
31015              correctly in TAP. (or alternatively if it really wants to skip, it
31016              needs to print ok)
31017      Branch: perl
31018            ! lib/Pod/t/man.t
31019 ____________________________________________________________________________
31020 [ 26355] By: nicholas                              on 2005/12/14  15:25:39
31021         Log: Duplicate the AMAGIC temporary variable consting from sv_2iv_flags into
31022              sv_2uv_flags, sv_2nv and sv_2pv_flags.
31023      Branch: perl
31024            ! sv.c
31025 ____________________________________________________________________________
31026 [ 26354] By: nicholas                              on 2005/12/14  14:59:18
31027         Log: Simplify the SvGMAGIC code in sv_[ipu]v_flags.
31028      Branch: perl
31029            ! sv.c
31030 ____________________________________________________________________________
31031 [ 26353] By: nicholas                              on 2005/12/14  14:08:24
31032         Log: Simplify the SvGMAGIC code in sv_2nv, removing duplicated checks to
31033              warn for uninitialized values.
31034      Branch: perl
31035            ! sv.c
31036 ____________________________________________________________________________
31037 [ 26352] By: nicholas                              on 2005/12/14  13:22:14
31038         Log: The logic to use SVt_NV or SVt_PVNV is in sv_upgrade, so no need to
31039              dupliate it in sv_2nv. Also, the final sv_upgrade is never called.
31040      Branch: perl
31041            ! sv.c
31042 ____________________________________________________________________________
31043 [ 26351] By: davem                                 on 2005/12/14  12:46:29
31044         Log: forgot to add new file to change #26350
31045      Branch: perl
31046            + ext/threads/shared/t/blessed.t
31047 ____________________________________________________________________________
31048 [ 26350] By: davem                                 on 2005/12/14  12:44:20
31049         Log: Subject:  [perl #37919] Blessed scalar refs with threads::shared 
31050              From:  "Jerry D. Hedden" (via RT) <perlbug-followup@perl.org>
31051              Date:  Tue, 13 Dec 2005 15:11:20 -0800
31052              Message-Id:  <rt-3.0.11-37919-125690.15.3722450337035@perl.org>
31053              
31054              Unlike arrays and hashes, coping blessed refs to shared scalars left
31055              the copy unblessed
31056      Branch: perl
31057            ! MANIFEST ext/threads/shared/shared.xs
31058 ____________________________________________________________________________
31059 [ 26349] By: steveh                                on 2005/12/14  12:41:02
31060         Log: Fix compilation error when building with -DPERL_MEM_LOG_STDERR
31061      Branch: perl
31062            ! util.c
31063 ____________________________________________________________________________
31064 [ 26347] By: nicholas                              on 2005/12/13  22:07:30
31065         Log: Convert range.t to test.pl
31066      Branch: perl
31067            ! t/op/range.t
31068 ____________________________________________________________________________
31069 [ 26346] By: nicholas                              on 2005/12/13  20:05:31
31070         Log: Update embed.fnc and headers after change 26345 (spotted by Rafael)
31071      Branch: perl
31072            ! embed.fnc embed.h proto.h
31073 ____________________________________________________________________________
31074 [ 26345] By: nicholas                              on 2005/12/13  19:44:22
31075         Log: Inline asIV and asUV, as each is only used once, and it distracts from
31076              the patterns of repeated code in sv_2iv_flags, sv_2uv_flags, sv_2nv
31077              and sv_2pv_flags. Add a comment noting the return path from the end of
31078              the SvGMAGICAL case to all 4.
31079      Branch: perl
31080            ! sv.c
31081 ____________________________________________________________________________
31082 [ 26344] By: craigb                                on 2005/12/13  17:27:48
31083         Log: Don't include utime.h in vms.c -- it collides with 
31084              homegroun definitions in vmsish.h.
31085      Branch: perl
31086            ! vms/vms.c
31087 ____________________________________________________________________________
31088 [ 26343] By: rgs                                   on 2005/12/13  14:07:12
31089         Log: Fix realclean target for Sys::Syslog
31090      Branch: perl
31091            ! ext/Sys/Syslog/Makefile.PL
31092 ____________________________________________________________________________
31093 [ 26342] By: gisle                                 on 2005/12/13  13:54:44
31094         Log: Remove tests that were not portable to 64bit ints.
31095      Branch: perl
31096            ! t/op/sprintf2.t
31097 ____________________________________________________________________________
31098 [ 26341] By: stevep                                on 2005/12/13  12:17:57
31099         Log: Renaming of some of Pod::Simple's test files to make it more 8.3 
31100              friendly.
31101      Branch: perl
31102           +> lib/Pod/Simple/t/junk1.pod lib/Pod/Simple/t/junk1_out.txt
31103           +> lib/Pod/Simple/t/junk2.pod lib/Pod/Simple/t/junk2_out.txt
31104           +> lib/Pod/Simple/t/perlcyg.pod lib/Pod/Simple/t/perlcyg_out.txt
31105           +> lib/Pod/Simple/t/perlfaq3.pod
31106           +> lib/Pod/Simple/t/perlfaq3_out.txt lib/Pod/Simple/t/perlvar.pod
31107           +> lib/Pod/Simple/t/perlvar_out.txt
31108            - lib/Pod/Simple/t/test_junk1.pod
31109            - lib/Pod/Simple/t/test_junk1_out.txt
31110            - lib/Pod/Simple/t/test_junk2.pod
31111            - lib/Pod/Simple/t/test_junk2_out.txt
31112            - lib/Pod/Simple/t/test_old_perlcygwin.pod
31113            - lib/Pod/Simple/t/test_old_perlcygwin_out.txt
31114            - lib/Pod/Simple/t/test_old_perlfaq3.pod
31115            - lib/Pod/Simple/t/test_old_perlfaq3_out.txt
31116            - lib/Pod/Simple/t/test_old_perlvar.pod
31117            - lib/Pod/Simple/t/test_old_perlvar_out.txt
31118            ! MANIFEST lib/Pod/Simple/t/render.t
31119 ____________________________________________________________________________
31120 [ 26340] By: stevep                                on 2005/12/13  11:54:54
31121         Log: Changes to Pod::Simple's tests to get rid of the "^"s in the 
31122              directory names.
31123      Branch: perl
31124            + lib/Pod/Simple/t/other_test_lib/Sizzlesuzzle.pm
31125            + lib/Pod/Simple/t/other_test_lib/hink_honk/Glunk.pod
31126            + lib/Pod/Simple/t/other_test_lib/hink_honk/Vliff.pm
31127            + lib/Pod/Simple/t/other_test_lib/hink_honk/readme.txt
31128            + lib/Pod/Simple/t/other_test_lib/pod/perlthang.pod
31129            + lib/Pod/Simple/t/other_test_lib/pod/perlzuk.pod
31130            + lib/Pod/Simple/t/other_test_lib/squaa/Vliff.pm
31131            + lib/Pod/Simple/t/other_test_lib/squaa/Wowo.pod
31132            + lib/Pod/Simple/t/test_lib/Blorm.pm
31133            + lib/Pod/Simple/t/test_lib/Zonk/Fiddle.txt
31134            + lib/Pod/Simple/t/test_lib/Zonk/Pronk.pm
31135            + lib/Pod/Simple/t/test_lib/Zonk/Veng.pm
31136            + lib/Pod/Simple/t/test_lib/hink_honk/Glunk.pod
31137            + lib/Pod/Simple/t/test_lib/hink_honk/Vliff.pm
31138            + lib/Pod/Simple/t/test_lib/hink_honk/readme.txt
31139            + lib/Pod/Simple/t/test_lib/pod/perlfliff.pod
31140            + lib/Pod/Simple/t/test_lib/pod/perlthang.pod
31141            + lib/Pod/Simple/t/test_lib/squaa.pm
31142            + lib/Pod/Simple/t/test_lib/squaa/Glunk.pod
31143            + lib/Pod/Simple/t/test_lib/squaa/Vliff.pm
31144            + lib/Pod/Simple/t/test_lib/zikzik.pod
31145            + lib/Pod/Simple/t/yet_another_test_lib/squaa/Vliff.pm
31146            - lib/Pod/Simple/t/other^test^lib/Sizzlesuzzle.pm
31147            - lib/Pod/Simple/t/other^test^lib/hink^honk/Glunk.pod
31148            - lib/Pod/Simple/t/other^test^lib/hink^honk/Vliff.pm
31149            - lib/Pod/Simple/t/other^test^lib/hink^honk/readme.txt
31150            - lib/Pod/Simple/t/other^test^lib/pod/perlthang.pod
31151            - lib/Pod/Simple/t/other^test^lib/pod/perlzuk.pod
31152            - lib/Pod/Simple/t/other^test^lib/squaa/Vliff.pm
31153            - lib/Pod/Simple/t/other^test^lib/squaa/Wowo.pod
31154            - lib/Pod/Simple/t/test^lib/Blorm.pm
31155            - lib/Pod/Simple/t/test^lib/Zonk/Fiddle.txt
31156            - lib/Pod/Simple/t/test^lib/Zonk/Pronk.pm
31157            - lib/Pod/Simple/t/test^lib/Zonk/Veng.pm
31158            - lib/Pod/Simple/t/test^lib/hink^honk/Glunk.pod
31159            - lib/Pod/Simple/t/test^lib/hink^honk/Vliff.pm
31160            - lib/Pod/Simple/t/test^lib/hink^honk/readme.txt
31161            - lib/Pod/Simple/t/test^lib/pod/perlfliff.pod
31162            - lib/Pod/Simple/t/test^lib/pod/perlthang.pod
31163            - lib/Pod/Simple/t/test^lib/squaa.pm
31164            - lib/Pod/Simple/t/test^lib/squaa/Glunk.pod
31165            - lib/Pod/Simple/t/test^lib/squaa/Vliff.pm
31166            - lib/Pod/Simple/t/test^lib/zikzik.pod
31167            - lib/Pod/Simple/t/yet^another^test^lib/squaa/Vliff.pm
31168            ! MANIFEST lib/Pod/Simple/t/htmlbatch_01.t
31169            ! lib/Pod/Simple/t/search_10survey_specific.t
31170            ! lib/Pod/Simple/t/search_12survey_cwd.t
31171            ! lib/Pod/Simple/t/search_20survey_two.t
31172            ! lib/Pod/Simple/t/search_22survey_two_shadowing.t
31173            ! lib/Pod/Simple/t/search_25_glob_squaa_coloncolon_kleene.t
31174            ! lib/Pod/Simple/t/search_26_glob_kleene_k.t
31175            ! lib/Pod/Simple/t/search_27_glob_squaa_kleene.t
31176            ! lib/Pod/Simple/t/search_28_glob_z_kleene_k.t
31177            ! lib/Pod/Simple/t/search_29_glob_z_qmark_k.t
31178 ____________________________________________________________________________
31179 [ 26339] By: gisle                                 on 2005/12/13  11:40:26
31180         Log: Add overflow check to EXPECT_NUMBER() used by sv_vcatpvfn().
31181              sprintf() or printf() will now croak if any of the indexes and
31182              widths specified in the format string are too large.
31183      Branch: perl
31184            ! pod/perldiag.pod sv.c t/op/sprintf.t t/op/sprintf2.t
31185 ____________________________________________________________________________
31186 [ 26338] By: rgs                                   on 2005/12/13  11:20:16
31187         Log: Subject: Re: check83.pl
31188              From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
31189              Date: Sun, 11 Dec 2005 07:19:58 -0800
31190              Message-ID: <20051211151958.GA6188@efn.org>
31191      Branch: perl
31192            ! Porting/check83.pl
31193 ____________________________________________________________________________
31194 [ 26337] By: steveh                                on 2005/12/13  09:41:29
31195         Log: Fix lib/File/Compare.t test failures on Win32
31196              
31197              Change 26225, updated by 26245, added a test for another filename with
31198              a trailing space but failed to open the new filehandle in binary mode
31199              
31200              To compound matters, creating a file called "foo " on Win32 "succeeds"
31201              but actually creates a file called just "foo", so we have actually
31202              overwritten the original file with this non-binary mode version, and
31203              hence some of the original tests started failing too!
31204              
31205              (And because of this the new test doesn't actually add anything new on
31206              Win32 at the moment, but right now I can't think of a filename that
31207              would have failed under 2-arg open but succeeds with 3-arg open, which
31208              was the purpose of this test)
31209      Branch: perl
31210            ! lib/File/Compare.t
31211 ____________________________________________________________________________
31212 [ 26336] By: steveh                                on 2005/12/13  08:54:45
31213         Log: Don't try to export Perl_pad_sv when it isn't defined
31214              
31215              Fixes a Win32 linker error in non-DEBUGGING builds following 26316
31216      Branch: perl
31217            ! makedef.pl
31218 ____________________________________________________________________________
31219 [ 26334] By: rgs                                   on 2005/12/12  16:03:00
31220         Log: A suggestion by Yamashina Hio to speed up substitutions
31221              with right-hand side expressions by freeing temporaries.
31222              See :
31223              
31224              Subject: s///ge; consumes PL_tmps_stack in its loop
31225              From: YAMASHINA Hio <hio@hio.jp>
31226              Date: Tue, 30 Aug 2005 17:17:23 +0900
31227              Message-Id: <20050830160113.9716.HIO@ymir.co.jp>
31228      Branch: perl
31229            ! pp_ctl.c
31230 ____________________________________________________________________________
31231 [ 26332] By: nicholas                              on 2005/12/12  15:24:06
31232         Log: Check that %v$foo does not crash.
31233      Branch: perl
31234            ! t/op/sprintf2.t
31235 ____________________________________________________________________________
31236 [ 26330] By: gisle                                 on 2005/12/12  13:55:14
31237         Log: Use load_module() instead of perl_eval_sv("require $mod") to
31238              load modules.  This is safer since $mod comes from an external
31239              source.
31240      Branch: perl
31241            ! ext/Storable/Storable.xs
31242 ____________________________________________________________________________
31243 [ 26329] By: stevep                                on 2005/12/12  13:21:03
31244         Log: Pod::Man's tests aren't Unicode friendly.  Let's skip the unfriendly
31245              test for now.
31246      Branch: perl
31247            ! lib/Pod/t/man.t
31248 ____________________________________________________________________________
31249 [ 26328] By: rgs                                   on 2005/12/12  13:18:21
31250         Log: Robin Houston points out a better way to replace
31251              the C<defined %foo::bar::> construct.
31252      Branch: perl
31253            ! pod/perl593delta.pod
31254 ____________________________________________________________________________
31255 [ 26327] By: gisle                                 on 2005/12/12  12:21:39
31256         Log: Oops, change 26326 broke t/run/switches.t
31257              Reverting change 24912 fixes it.
31258      Branch: perl
31259            ! t/run/switches.t
31260 ____________________________________________________________________________
31261 [ 26326] By: gisle                                 on 2005/12/12  10:41:04
31262         Log: Drop "v" prefix from sprintf("%vd", $^V).
31263              
31264              The sprintf documentation has this example:
31265              
31266              printf "version is v%vd\n", $^V;
31267              
31268              and it printed 'version is vv5.9.3\n'.
31269      Branch: perl
31270            ! sv.c t/op/sprintf.t
31271 ____________________________________________________________________________
31272 [ 26325] By: nicholas                              on 2005/12/11  22:37:40
31273         Log: Fix *printf %*vd with mixed Latin 1/UTF-8. (Fixes bug 37889)
31274      Branch: perl
31275            ! sv.c t/uni/sprintf.t
31276 ____________________________________________________________________________
31277 [ 26324] By: nicholas                              on 2005/12/11  20:34:33
31278         Log: Move the rest of the data munging into the test preparation loop.
31279      Branch: perl
31280            ! t/op/sprintf.t
31281 ____________________________________________________________________________
31282 [ 26323] By: nicholas                              on 2005/12/11  19:49:53
31283         Log: Move the $data and $result munging into the test preparation loop.
31284      Branch: perl
31285            ! t/op/sprintf.t
31286 ____________________________________________________________________________
31287 [ 26321] By: gisle                                 on 2005/12/11  18:14:24
31288         Log: Disallow sprintf's vector handling for non-integer formats.
31289              Avoids core dump for printf("%vs") and similar.
31290      Branch: perl
31291            ! sv.c t/op/sprintf.t
31292 ____________________________________________________________________________
31293 [ 26320] By: nicholas                              on 2005/12/11  12:54:14
31294         Log: Quench the other 2 ways obscure ways of abusing positional parameters
31295              to generate bogus array indexes. These two are inside the vector
31296              formatting code.
31297      Branch: perl
31298            ! sv.c t/op/sprintf.t
31299 ____________________________________________________________________________
31300 [ 26319] By: nicholas                              on 2005/12/10  18:13:33
31301         Log: Re-instate the old perl getcwd as _perl_getcwd, and use it if loading
31302              the XS fails. (Needed to bootstrap the core build)
31303      Branch: perl
31304            ! lib/Cwd.pm
31305 ____________________________________________________________________________
31306 [ 26318] By: stevep                                on 2005/12/10  15:42:39
31307         Log: Upgrade to PathTools-3.14_01
31308      Branch: perl
31309            ! ext/Cwd/Changes ext/Cwd/Cwd.xs lib/Cwd.pm lib/File/Spec.pm
31310            ! lib/File/Spec/Unix.pm lib/File/Spec/VMS.pm
31311            ! lib/File/Spec/t/Spec.t
31312 ____________________________________________________________________________
31313 [ 26317] By: stevep                                on 2005/12/10  15:21:37
31314         Log: Subject: [PATCH] Code tweaks in sv.c
31315              From: Andy Lester <andy@petdance.com>
31316              Date: Fri, 9 Dec 2005 11:09:21 -0600
31317              Message-ID: <20051209170921.GC16943@petdance.com>
31318              
31319              Includes a minor change the patch to account for code that moved
31320              elsewhere.
31321      Branch: perl
31322            ! sv.c
31323 ____________________________________________________________________________
31324 [ 26316] By: stevep                                on 2005/12/10  15:14:37
31325         Log: Subject: [PATCH] Excluding pad funcs when not debugging
31326              From: Andy Lester <andy@petdance.com>
31327              Date: Wed, 7 Dec 2005 21:58:05 -0600
31328              Message-ID: <20051208035805.GA23007@petdance.com>
31329      Branch: perl
31330            ! pad.c
31331 ____________________________________________________________________________
31332 [ 26315] By: nicholas                              on 2005/12/09  23:09:42
31333         Log: A better hash for PTR_TABLE_HASH (?)
31334      Branch: perl
31335            ! sv.c
31336 ____________________________________________________________________________
31337 [ 26314] By: craigb                                on 2005/12/09  21:13:50
31338         Log: Subject: patch@26310 - Major step for > 256 char paths on VMS
31339              From: "John E. Malmberg" <wb8tyw@qsl.net>
31340              Date: Fri, 09 Dec 2005 14:08:53 -0500
31341              Message-id: <4399D645.8070803@qsl.net>
31342      Branch: perl
31343            ! vms/vms.c
31344 ____________________________________________________________________________
31345 [ 26313] By: nicholas                              on 2005/12/09  19:18:32
31346         Log: An alternative way of structuring ptr_table_clear so that the variables
31347              can be assigned to at declaration time.
31348      Branch: perl
31349            ! sv.c
31350 ____________________________________________________________________________
31351 [ 26312] By: nicholas                              on 2005/12/09  18:46:17
31352         Log: A more efficient way to loop in ptr_table_clear
31353      Branch: perl
31354            ! sv.c
31355 ____________________________________________________________________________
31356 [ 26311] By: stevep                                on 2005/12/09  13:22:33
31357         Log: Subject: Re: Pod::Simple integration
31358              From: andreas.koenig.gmwojprw@franz.ak.mind.de (Andreas J. Koenig)
31359              Date: Fri, 09 Dec 2005 07:06:00 +0100
31360              Message-ID: <87k6ee7qk7.fsf@k75.linux.bogus>
31361              
31362              These files are still giving problems after attempting to convert
31363              them to text in p4.  The tests pass without them, so we'll remove them
31364              from the Perl distribution.
31365      Branch: perl
31366            - lib/Pod/Simple/t/corpus/haiku-iso2202jp.txt
31367            - lib/Pod/Simple/t/corpus/haiku-iso2202jpx.txt
31368            - lib/Pod/Simple/t/corpus/haiku-iso2202jpy.txt
31369            - lib/Pod/Simple/t/corpus_not_yet_impl/polish_utf16be_bom.txt
31370            - lib/Pod/Simple/t/corpus_not_yet_impl/polish_utf16le_bom.txt
31371            ! MANIFEST
31372 ____________________________________________________________________________
31373 [ 26310] By: stevep                                on 2005/12/09  03:39:17
31374         Log: Fixes compile errors introduce with change #26301 when compiling
31375              with ithreads and DEBUGGING.
31376      Branch: perl
31377            ! sv.c
31378 ____________________________________________________________________________
31379 [ 26309] By: stevep                                on 2005/12/09  02:07:32
31380         Log: Upgrade to Sys-Syslog-0.10
31381      Branch: perl
31382            + ext/Sys/Syslog/Changes ext/Sys/Syslog/README
31383            + ext/Sys/Syslog/fallback/const-c.inc
31384            + ext/Sys/Syslog/fallback/const-xs.inc
31385            + ext/Sys/Syslog/t/00-load.t ext/Sys/Syslog/t/constants.t
31386            + ext/Sys/Syslog/t/distchk.t ext/Sys/Syslog/t/pod.t
31387            + ext/Sys/Syslog/t/podcover.t ext/Sys/Syslog/t/podspell.t
31388            + ext/Sys/Syslog/t/portfs.t
31389            ! MANIFEST ext/Sys/Syslog/Makefile.PL ext/Sys/Syslog/Syslog.pm
31390            ! ext/Sys/Syslog/t/syslog.t
31391 ____________________________________________________________________________
31392 [ 26308] By: stevep                                on 2005/12/09  01:41:44
31393         Log: Upgrade to CGI.pm-3.15
31394      Branch: perl
31395            ! lib/CGI.pm lib/CGI/Changes
31396 ____________________________________________________________________________
31397 [ 26307] By: stevep                                on 2005/12/08  19:40:33
31398         Log: Add pointer to Pod::Simple for the Pod -> HTML task.
31399      Branch: perl
31400            ! pod/perltodo.pod
31401 ____________________________________________________________________________
31402 [ 26306] By: stevep                                on 2005/12/08  19:21:25
31403         Log: One final Pod::Usage yak to shave...
31404      Branch: perl
31405            ! lib/Pod/Usage.pm
31406 ____________________________________________________________________________
31407 [ 26305] By: stevep                                on 2005/12/08  19:07:38
31408         Log: Version bump for Pod::Usage
31409      Branch: perl
31410            ! lib/Pod/Usage.pm
31411 ____________________________________________________________________________
31412 [ 26304] By: stevep                                on 2005/12/08  19:04:59
31413         Log: Further yak-shaving on Pod::Usage.  Now, t/pod/pod2usage2.t tests 
31414              pass.
31415      Branch: perl
31416            ! lib/Pod/Usage.pm t/pod/pod2usage2.t
31417 ____________________________________________________________________________
31418 [ 26303] By: stevep                                on 2005/12/08  15:53:36
31419         Log: Fix to Pod::Usage to work with all recent Pod::Text versions.  Also
31420              includes a change to the Pod::Usage test file for compatibility
31421              purposes.
31422      Branch: perl
31423            ! lib/Pod/Usage.pm lib/Pod/t/Usage.t
31424 ____________________________________________________________________________
31425 [ 26302] By: craigb                                on 2005/12/08  14:47:57
31426         Log: On VMS, do not use Perl's memory allocator for the home-grown pipe
31427              structures.  They may be allocated during start-up and are torn down
31428              in an exit handler, where thread context and other Perlish support
31429              are iffy.
31430      Branch: perl
31431            ! vms/vms.c
31432 ____________________________________________________________________________
31433 [ 26301] By: nicholas                              on 2005/12/08  14:06:37
31434         Log: Merge common code from ptr_table_fetch and ptr_table_store into
31435              S_ptr_table_find.
31436      Branch: perl
31437            ! sv.c
31438 ____________________________________________________________________________
31439 [ 26300] By: gisle                                 on 2005/12/08  09:56:22
31440         Log: Fixup the setsockopt usage message; missing OPTVAL.
31441      Branch: perl
31442            ! ext/IO/lib/IO/Socket.pm
31443 ____________________________________________________________________________
31444 [ 26299] By: gisle                                 on 2005/12/08  09:53:35
31445         Log: Improve the setsockopt description.
31446              Removed claim that OPTVAL might be undef as it is just treated
31447              the same as 0 and give the usual use-of-uninitialized-value
31448              warning.  Added an example.
31449      Branch: perl
31450            ! pod/perlfunc.pod
31451 ____________________________________________________________________________
31452 [ 26298] By: craigb                                on 2005/12/08  04:34:42
31453         Log: Subject: patch@26253 Allow embedded new lines passed through to commands
31454              From: "John E. Malmberg" <wb8tyw@qsl.net>
31455              Date: Wed, 07 Dec 2005 22:26:21 -0500
31456              Message-id: <4397A7DD.8030403@qsl.net>
31457      Branch: perl
31458            ! vms/vms.c
31459 ____________________________________________________________________________
31460 [ 26297] By: stevep                                on 2005/12/07  20:39:24
31461         Log: One quick fix to the test for differences in error output.
31462      Branch: perl
31463            ! lib/Pod/t/Usage.t
31464 ____________________________________________________________________________
31465 [ 26296] By: rgs                                   on 2005/12/07  15:46:46
31466         Log: Subject: [PATCH] All args in embed.fnc should be named
31467              From: Andy Lester <andy@petdance.com>
31468              Date: Wed, 7 Dec 2005 10:08:18 -0600
31469              Message-ID: <20051207160818.GA13465@petdance.com>
31470      Branch: perl
31471            ! embed.fnc embed.pl pod/perlapi.pod proto.h
31472 ____________________________________________________________________________
31473 [ 26295] By: rgs                                   on 2005/12/07  15:13:03
31474         Log: Don't build manpages for Encode and Unicode::Normalize
31475              (when compiling perl manpages are built afterwards, not
31476              by MakeMaker like when installing modules.) This fix a
31477              bootstrap problem (now that Pod::Man uses POSIX.)
31478      Branch: perl
31479            ! ext/Encode/Makefile.PL ext/Unicode/Normalize/Makefile.PL
31480 ____________________________________________________________________________
31481 [ 26294] By: rgs                                   on 2005/12/07  13:22:39
31482         Log: Check in those files as text, not binary
31483      Branch: perl
31484            ! lib/Pod/Simple/t/corpus/haiku-iso2202jp.txt
31485            ! lib/Pod/Simple/t/corpus/haiku-iso2202jpx.txt
31486            ! lib/Pod/Simple/t/corpus/haiku-iso2202jpy.txt
31487            ! lib/Pod/Simple/t/corpus_not_yet_impl/polish_utf16be_bom.txt
31488            ! lib/Pod/Simple/t/corpus_not_yet_impl/polish_utf16le_bom.txt
31489 ____________________________________________________________________________
31490 [ 26293] By: rgs                                   on 2005/12/07  13:01:00
31491         Log: Remove space
31492      Branch: perl
31493            ! MANIFEST
31494 ____________________________________________________________________________
31495 [ 26292] By: stevep                                on 2005/12/07  12:36:59
31496         Log: Upgrade to podlators-2.00
31497      Branch: perl
31498            + lib/Pod/t/color.t lib/Pod/t/termcap.t
31499            - lib/Pod/t/text-errors.t
31500            ! MANIFEST lib/Pod/Man.pm lib/Pod/Text.pm lib/Pod/Text/Color.pm
31501            ! lib/Pod/Text/Overstrike.pm lib/Pod/Text/Termcap.pm
31502            ! lib/Pod/t/basic.cap lib/Pod/t/basic.clr lib/Pod/t/basic.man
31503            ! lib/Pod/t/basic.ovr lib/Pod/t/basic.pod lib/Pod/t/basic.t
31504            ! lib/Pod/t/basic.txt lib/Pod/t/man.t lib/Pod/t/text-options.t
31505            ! lib/Pod/t/text.t pod/pod2man.PL pod/pod2text.PL
31506 ____________________________________________________________________________
31507 [ 26291] By: stevep                                on 2005/12/07  11:38:00
31508         Log: Assimilate Pod-Simple-3.03 to the Perl core
31509      Branch: perl
31510            + (add 170 files)
31511            ! MANIFEST Porting/Maintainers.pl
31512 ____________________________________________________________________________
31513 [ 26290] By: nicholas                              on 2005/12/07  08:53:03
31514         Log: Pull the regexp stringification code out into S_stringify_regexp, to
31515              make sv_2pv_flags clearer.
31516      Branch: perl
31517            ! sv.c
31518 ____________________________________________________________________________
31519 [ 26289] By: nicholas                              on 2005/12/07  08:30:26
31520         Log: 3 instances of SvIsUV_on(sv); can be replaced with one.
31521      Branch: perl
31522            ! sv.c
31523 ____________________________________________________________________________
31524 [ 26288] By: stevep                                on 2005/12/07  02:10:26
31525         Log: Upgrade to CGI-3.14.
31526              
31527              Mmm...pi.  Oh, also including some Pod fixes in bleadperl that haven't
31528              yet been applied to the actual CGI distribution yet.
31529      Branch: perl
31530            ! lib/CGI.pm lib/CGI/Changes lib/CGI/t/form.t
31531 ____________________________________________________________________________
31532 [ 26287] By: nicholas                              on 2005/12/06  21:55:29
31533         Log: Add a ; that 26281 was lacking.
31534              (Dear Mark, please can I have back one of the two that I sent you after
31535              change 23614)
31536      Branch: perl
31537            ! util.c
31538 ____________________________________________________________________________
31539 [ 26286] By: nicholas                              on 2005/12/06  21:39:24
31540         Log: Move vast swathes of common code from sv_2iv_flags and sv_2uv_flags
31541              into S_sv_2iuv_common.
31542      Branch: perl
31543            ! sv.c
31544 ____________________________________________________________________________
31545 [ 26285] By: nicholas                              on 2005/12/06  19:41:43
31546         Log: The early return for SvIOKp(sv) in sv_2[iu]v_flags is actually code
31547              duplication.
31548      Branch: perl
31549            ! sv.c
31550 ____________________________________________________________________________
31551 [ 26281] By: rgs                                   on 2005/12/06  17:23:09
31552         Log: Subject: [PATCH] More consting, and putting stuff in embed.fnc
31553              From: Andy Lester <andy@petdance.com>
31554              Date: Mon, 5 Dec 2005 13:46:13 -0600
31555              Message-ID: <20051205194613.GB7791@petdance.com>
31556      Branch: perl
31557            ! deb.c doio.c dump.c embed.fnc embed.h hv.c hv.h locale.c mg.c
31558            ! op.c op.h pp.c pp_ctl.c pp_hot.c pp_pack.c pp_sort.c pp_sys.c
31559            ! proto.h regcomp.c sv.c taint.c toke.c utf8.c util.c
31560 ____________________________________________________________________________
31561 [ 26280] By: nicholas                              on 2005/12/06  16:53:46
31562         Log: Subject: Re: stringification of v-string references
31563              From: John Peacock <jpeacock@rowman.com>
31564              Message-ID: <439592B4.2050101@rowman.com>
31565              Date: Tue, 06 Dec 2005 08:31:32 -0500
31566      Branch: perl
31567            ! t/op/ref.t
31568 ____________________________________________________________________________
31569 [ 26279] By: gisle                                 on 2005/12/06  16:42:31
31570         Log: Fix typo spotted by Ronald J Kimball.
31571      Branch: perl
31572            ! ext/Sys/Syslog/Syslog.pm
31573 ____________________________________________________________________________
31574 [ 26278] By: rgs                                   on 2005/12/06  14:56:28
31575         Log: Subject: Re: Perl PR: "Security holes in Sys::Syslog"
31576              From: Ronald J Kimball <rjk-perl-p5p@tamias.net>
31577              Date: Tue, 6 Dec 2005 09:56:12 -0500
31578              Message-ID: <20051206145612.GA94530@penkwe.pair.com>
31579      Branch: perl
31580            ! ext/Sys/Syslog/Syslog.pm
31581 ____________________________________________________________________________
31582 [ 26277] By: gisle                                 on 2005/12/06  14:45:30
31583         Log: Document why syslog($priority, "%s", $message) is a good idea
31584              if the code might be running with older versions of Sys::Syslog.
31585      Branch: perl
31586            ! ext/Sys/Syslog/Syslog.pm
31587 ____________________________________________________________________________
31588 [ 26276] By: merijn                                on 2005/12/06  14:30:53
31589         Log: Itanium blade servers added to the model list
31590      Branch: perl
31591            ! README.hpux
31592 ____________________________________________________________________________
31593 [ 26275] By: nicholas                              on 2005/12/06  13:56:15
31594         Log: Don't use Copy for 1 and 2 character string constants.
31595      Branch: perl
31596            ! sv.c
31597 ____________________________________________________________________________
31598 [ 26274] By: nicholas                              on 2005/12/06  13:40:07
31599         Log: Eliminate an unneeded local variable.
31600      Branch: perl
31601            ! sv.c
31602 ____________________________________________________________________________
31603 [ 26273] By: nicholas                              on 2005/12/06  13:08:57
31604         Log: Eliminate all the gotos in sv_2pv_flags, by moving the tokensave*
31605              code into the GMAGIC block.
31606      Branch: perl
31607            ! sv.c
31608 ____________________________________________________________________________
31609 [ 26272] By: nicholas                              on 2005/12/06  12:19:23
31610         Log: sv_2pv_flags shouldn't return a constant string "NULLREF" - it was the
31611              only constant non-"" string returned.
31612      Branch: perl
31613            ! sv.c
31614 ____________________________________________________________________________
31615 [ 26271] By: nicholas                              on 2005/12/05  23:57:51
31616         Log: Make all the return statements closer to the final calcuation of the
31617              returned value in the reference stringification code. Pull variables
31618              into tigher scope which also allows some to become const.
31619      Branch: perl
31620            ! sv.c
31621 ____________________________________________________________________________
31622 [ 26270] By: nicholas                              on 2005/12/05  23:29:46
31623         Log: Move the scope of origsv inwards, and rename variables to avoid the
31624              need to re-assign to sv.
31625      Branch: perl
31626            ! sv.c
31627 ____________________________________________________________________________
31628 [ 26269] By: nicholas                              on 2005/12/05  23:12:33
31629         Log: Clone the brief return logic and thereby remove a goto.
31630      Branch: perl
31631            ! sv.c
31632 ____________________________________________________________________________
31633 [ 26268] By: nicholas                              on 2005/12/05  22:44:32
31634         Log: As they are now the same, can fold the entire switch statement for
31635              reference type in sv_2pv_flags into a call to sv_reftype.
31636      Branch: perl
31637            ! sv.c
31638 ____________________________________________________________________________
31639 [ 26267] By: nicholas                              on 2005/12/05  22:20:31
31640         Log: Untease the regexp stringification from the reference naming in
31641              sv_2pv_flags. (Lots of re-indentation, little real change)
31642      Branch: perl
31643            ! sv.c
31644 ____________________________________________________________________________
31645 [ 26266] By: nicholas                              on 2005/12/05  21:58:20
31646         Log: References to version objects should stringify as VSTRING. This makes
31647              stringification consistent with the output of ref().
31648      Branch: perl
31649            ! sv.c
31650 ____________________________________________________________________________
31651 [ 26265] By: nicholas                              on 2005/12/05  20:37:11
31652         Log: The extra return is actually a duplicated code path, and can go.
31653      Branch: perl
31654            ! sv.c
31655 ____________________________________________________________________________
31656 [ 26264] By: nicholas                              on 2005/12/05  20:09:23
31657         Log: Fix typo in description.
31658      Branch: perl
31659            ! MANIFEST
31660 ____________________________________________________________________________
31661 [ 26263] By: nicholas                              on 2005/12/05  19:56:43
31662         Log: Add ext/MIME/Base64/README to MANIFEST
31663      Branch: perl
31664            ! MANIFEST
31665 ____________________________________________________________________________
31666 [ 26262] By: stevep                                on 2005/12/05  16:35:14
31667         Log: Upgrade to MIME-Base64-3.07
31668      Branch: perl
31669            + ext/MIME/Base64/README
31670            ! ext/MIME/Base64/Base64.pm ext/MIME/Base64/Changes
31671            ! ext/MIME/Base64/QuotedPrint.pm
31672 ____________________________________________________________________________
31673 [ 26261] By: stevep                                on 2005/12/05  16:29:46
31674         Log: Upgrade to Digest-MD5-2.36
31675      Branch: perl
31676            ! ext/Digest/MD5/Changes ext/Digest/MD5/MD5.pm
31677            ! ext/Digest/MD5/README ext/Digest/MD5/t/files.t
31678 ____________________________________________________________________________
31679 [ 26260] By: stevep                                on 2005/12/05  16:20:17
31680         Log: Upgrade to CGI.pm-3.13
31681      Branch: perl
31682            + lib/CGI/t/no_tabindex.t
31683            ! MANIFEST lib/CGI.pm lib/CGI/Carp.pm lib/CGI/Changes
31684            ! lib/CGI/Cookie.pm lib/CGI/t/form.t
31685 ____________________________________________________________________________
31686 [ 26259] By: rgs                                   on 2005/12/05  16:19:35
31687         Log: "Malformed UTF-8 character" was a severe warning, and can now be
31688              also a fatal error (since change #26258)
31689      Branch: perl
31690            ! pod/perldiag.pod
31691 ____________________________________________________________________________
31692 [ 26258] By: rgs                                   on 2005/12/05  16:04:16
31693         Log: Subject: Re: [perl #37836] Simple Regex causes SEGV when run on specific data
31694              From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
31695              Date: Tue, 06 Dec 2005 00:35:52 +0900
31696              Message-Id: <20051206003221.5AD9.BQW10602@nifty.com>
31697      Branch: perl
31698            ! regexec.c
31699 ____________________________________________________________________________
31700 [ 26257] By: rgs                                   on 2005/12/05  15:25:00
31701         Log: Better variable names make code clearer
31702              
31703              Subject: Re: XS-assisted SWASHGET (esp. for t/uni/class.t speedup)
31704              From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
31705              Date: Sun, 04 Dec 2005 16:24:29 +0900
31706              Message-Id: <20051204162412.D720.BQW10602@nifty.com>
31707      Branch: perl
31708            ! embed.fnc proto.h utf8.c
31709 ____________________________________________________________________________
31710 [ 26256] By: rgs                                   on 2005/12/05  15:20:32
31711         Log: Rework the error messages from the swashget code.
31712              
31713              Subject: Re: XS-assisted SWASHGET (esp. for t/uni/class.t speedup)
31714              From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
31715              Date: Sun, 04 Dec 2005 16:24:59 +0900
31716              Message-Id: <20051204162431.D723.BQW10602@nifty.com>
31717      Branch: perl
31718            ! pod/perldiag.pod utf8.c
31719 ____________________________________________________________________________
31720 [ 26255] By: rgs                                   on 2005/12/05  15:15:53
31721         Log: Clarification and cleanup of the XS SWASHGET code
31722              
31723              Subject: Re: XS-assisted SWASHGET (esp. for t/uni/class.t speedup)
31724              From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
31725              Date: Sun, 04 Dec 2005 16:28:35 +0900
31726              Message-Id: <20051204162508.D726.BQW10602@nifty.com>
31727      Branch: perl
31728            ! lib/utf8_heavy.pl regexec.c t/op/pat.t utf8.c
31729 ____________________________________________________________________________
31730 [ 26254] By: rgs                                   on 2005/12/05  09:58:02
31731         Log: Subject: [PAUSE] CPAN Upload: A/AN/ANDK/CPAN-1.80.tar.gz
31732              From: andreas.koenig.gmwojprw@franz.ak.mind.de (Andreas J. Koenig)
31733              Date: Sat, 03 Dec 2005 12:24:05 +0100
31734              Message-ID: <87mzji8luy.fsf@k75.linux.bogus>
31735      Branch: perl
31736            ! lib/CPAN.pm lib/CPAN/SIGNATURE lib/CPAN/Version.pm
31737 ____________________________________________________________________________
31738 [ 26253] By: mhx                                   on 2005/12/04  19:37:58
31739         Log: NULL is a legal value for newXS()'s name parameter.
31740              (This caused strange build failures with gcc4 -O3)
31741      Branch: perl
31742            ! embed.fnc proto.h
31743 ____________________________________________________________________________
31744 [ 26252] By: stevep                                on 2005/12/04  15:30:55
31745         Log: Fix handling of author's names that had apostrophes.  Based on a patch
31746              by Sean O'Rourke <sorourke@cs.ucsd.edu> in RT bug #22950.
31747      Branch: perl
31748            ! utils/h2xs.PL
31749 ____________________________________________________________________________
31750 [ 26251] By: davem                                 on 2005/12/03  15:20:24
31751         Log: clarify description of vector (v) sprintf format modifier
31752      Branch: perl
31753            ! pod/perlfunc.pod
31754 ____________________________________________________________________________
31755 [ 26250] By: craigb                                on 2005/12/03  15:15:47
31756         Log: In vms/vms.c, don't use the thread-specific Newx() during
31757              startup before threads are initialized.  
31758      Branch: perl
31759            ! vms/vms.c
31760 ____________________________________________________________________________
31761 [ 26249] By: stevep                                on 2005/12/03  12:31:02
31762         Log: Update perlhack.pod with the updated, permanent ActiveState URLs
31763      Branch: perl
31764            ! pod/perlhack.pod
31765 ____________________________________________________________________________
31766 [ 26248] By: rgs                                   on 2005/12/03  12:16:54
31767         Log: Missing chunk in change #26247.
31768      Branch: perl
31769            ! ext/Sys/Syslog/Syslog.pm
31770 ____________________________________________________________________________
31771 [ 26247] By: rgs                                   on 2005/12/03  11:23:29
31772         Log: Sys::Syslog::syslog can accept a message without printf
31773              escapes and arguments.
31774              
31775              Subject: Re: Perl PR: "Security holes in Sys::Syslog"
31776              From: Gisle Aas <gisle@activestate.com>
31777              Date: 03 Dec 2005 03:35:32 -0800
31778              Message-ID: <lracfi2z23.fsf@caliper.activestate.com>
31779      Branch: perl
31780            ! ext/Sys/Syslog/Syslog.pm
31781 ____________________________________________________________________________
31782 [ 26246] By: stevep                                on 2005/12/03  03:30:00
31783         Log: Upgrade to version-0.50
31784      Branch: perl
31785            ! lib/version.pm lib/version.pod lib/version.t util.c
31786 ____________________________________________________________________________
31787 [ 26245] By: rgs                                   on 2005/12/02  23:00:55
31788         Log: Replace ^M by a space in test for bug #37716, to make
31789              Cygwin happy (found by Yitzchak)
31790      Branch: perl
31791            ! lib/File/Compare.t
31792 ____________________________________________________________________________
31793 [ 26244] By: nicholas                              on 2005/12/02  17:15:27
31794         Log: Address Hugo's comment on Dave's change (26240)
31795      Branch: perl
31796            ! sv.c
31797 ____________________________________________________________________________
31798 [ 26243] By: rgs                                   on 2005/12/02  10:37:05
31799         Log: Subject: Storable retrieve_lscalar fails for empty strings [PATCH]
31800              From: Gisle Aas <gisle@ActiveState.com>
31801              Date: 28 Nov 2005 04:48:18 -0800
31802              Message-ID: <lr3blhndkd.fsf@caliper.activestate.com>
31803              
31804              and
31805              Message-ID: <lrwtisn062.fsf@caliper.activestate.com>
31806      Branch: perl
31807            ! ext/Storable/Storable.xs ext/Storable/t/malice.t
31808 ____________________________________________________________________________
31809 [ 26242] By: rgs                                   on 2005/12/02  09:26:48
31810         Log: Subject: [PATCH] Signs, signs, everywhere a sign
31811              From: Andy Lester <andy@petdance.com>
31812              Date: Thu, 1 Dec 2005 14:24:51 -0600
31813              Message-ID: <20051201202451.GI22713@petdance.com>
31814      Branch: perl
31815            ! pp_pack.c
31816 ____________________________________________________________________________
31817 [ 26241] By: stevep                                on 2005/12/01  20:27:34
31818         Log: Nit from change #26232 noticed by H. Merijn Brand
31819      Branch: perl
31820            ! pod/perlop.pod
31821 ____________________________________________________________________________
31822 [ 26240] By: davem                                 on 2005/12/01  16:40:29
31823         Log: sprintf %NNN$ check for large values wrapping to negative
31824      Branch: perl
31825            ! sv.c t/op/sprintf2.t
31826 ____________________________________________________________________________
31827 [ 26239] By: rgs                                   on 2005/12/01  15:40:11
31828         Log: Always define PL_memory_wrap, and use it for the new sprintf checks
31829      Branch: perl
31830            ! makedef.pl perl.h sv.c
31831 ____________________________________________________________________________
31832 [ 26238] By: rgs                                   on 2005/12/01  15:26:09
31833         Log: Missing #ifdef, noticed by Jan Dubois
31834      Branch: perl
31835            ! sv.c
31836 ____________________________________________________________________________
31837 [ 26237] By: rgs                                   on 2005/12/01  14:25:34
31838         Log: Subject: [PATCH] Re: Perl PR: "Security holes in Sys::Syslog"
31839              From: Gisle Aas <gisle@ActiveState.com>
31840              Date: 01 Dec 2005 06:20:14 -0800
31841              Message-ID: <lroe406grl.fsf_-_@caliper.activestate.com>
31842              
31843              Subject: [PATCH] Suppress "0b" prefix for sprintf("%#b", 0)
31844              From: Gisle Aas <gisle@ActiveState.com>
31845              Date: 01 Dec 2005 06:11:44 -0800
31846              Message-ID: <lrsltc6h5r.fsf_-_@caliper.activestate.com>
31847      Branch: perl
31848            ! sv.c t/op/sprintf.t
31849 ____________________________________________________________________________
31850 [ 26236] By: rgs                                   on 2005/12/01  11:52:24
31851         Log: Subject: [PATCH] Disable constant folding of sprintf
31852              From: Gisle Aas <gisle@ActiveState.com>
31853              Date: 01 Dec 2005 03:22:10 -0800
31854              Message-ID: <lr8xv56p0d.fsf_-_@caliper.activestate.com>
31855      Branch: perl
31856            ! op.c opcode.h opcode.pl t/lib/warnings/sv t/op/sprintf2.t
31857 ____________________________________________________________________________
31858 [ 26235] By: rgs                                   on 2005/12/01  09:26:01
31859         Log: Subject: [patch] Re: Perl PR: "Security holes in Sys::Syslog"
31860              From: "Philippe M. Chiasson" <gozer@ActiveState.com>
31861              Date: Wed, 30 Nov 2005 20:17:31 -0800
31862              Message-ID: <438E795B.9060805@ActiveState.com>
31863      Branch: perl
31864            ! sv.c
31865 ____________________________________________________________________________
31866 [ 26234] By: rgs                                   on 2005/12/01  08:34:42
31867         Log: Revert change #26110 (already reverted in maintperl by change 26182)
31868      Branch: perl
31869            ! op.c
31870 ____________________________________________________________________________
31871 [ 26233] By: rgs                                   on 2005/11/30  21:15:21
31872         Log: Jan Dubois notices that sitecustomize.pl is to be found in sitelib,
31873              not siteperl
31874      Branch: perl
31875            ! pod/perlrun.pod
31876 ____________________________________________________________________________
31877 [ 26232] By: stevep                                on 2005/11/30  19:09:17
31878         Log: dor-assign (//=) was missing from perlop.pod
31879      Branch: perl
31880            ! pod/perlop.pod
31881 ____________________________________________________________________________
31882 [ 26231] By: rgs                                   on 2005/11/30  17:57:16
31883         Log: Subject: [PATCH] Remove redundant SvUTF8_on() calls
31884              From: Gisle Aas <gisle@ActiveState.com>
31885              Date: 30 Nov 2005 09:28:54 -0800
31886              Message-ID: <lrhd9uhwo9.fsf@caliper.activestate.com>
31887      Branch: perl
31888            ! pp.c sv.c
31889 ____________________________________________________________________________
31890 [ 26229] By: rgs                                   on 2005/11/30  14:29:23
31891         Log: Subject: Re: XS-assisted SWASHGET (esp. for t/uni/class.t speedup)
31892              From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
31893              Date: Sun, 27 Nov 2005 17:02:02 +0900
31894              Message-Id: <20051127170016.A786.BQW10602@nifty.com>
31895      Branch: perl
31896            ! embed.fnc embed.h lib/utf8_heavy.pl pod/perlapi.pod
31897            ! pod/perlintern.pod proto.h universal.c utf8.c utf8.h
31898            ! utfebcdic.h
31899 ____________________________________________________________________________
31900 [ 26228] By: nicholas                              on 2005/11/30  13:55:05
31901         Log: The regexp engine should check SV flags rather than SV type for
31902              determining if something is a reference, because under the debugger
31903              the value returned by the swash code is SVt_PVMG.
31904              Not doing this has the side effect of repeatedly reassigning the
31905              same array element, which causes destructors to fire on the reassignment
31906              which in turn causes &utf8::DESTROY to run outside of the pseudo-safety
31907              of save_re_context, which under the debugger involves re-entering the
31908              regexp engine, which causes corruption of the regexp engine's global
31909              state.
31910      Branch: perl
31911            ! regexec.c
31912 ____________________________________________________________________________
31913 [ 26227] By: rgs                                   on 2005/11/30  12:30:47
31914         Log: Fix B::Concise tests after change #26226
31915      Branch: perl
31916            ! ext/B/t/optree_varinit.t
31917 ____________________________________________________________________________
31918 [ 26226] By: rgs                                   on 2005/11/30  09:53:11
31919         Log: Revert change #22520 (optimise away my $foo = undef and similar
31920              constructs), in order to fix bug perl #37776
31921      Branch: perl
31922            ! op.c t/op/my.t
31923 ____________________________________________________________________________
31924 [ 26225] By: rgs                                   on 2005/11/29  17:40:16
31925         Log: Subject: Re: [perl #37716] Re: File::Compare broken for filenames with whitespace
31926              From: andreas.koenig.gmwojprw@franz.ak.mind.de (Andreas J. Koenig)
31927              Date: Tue, 29 Nov 2005 08:07:19 +0100
31928              Message-ID: <878xv89bko.fsf@k75.linux.bogus>
31929      Branch: perl
31930            ! lib/File/Compare.pm lib/File/Compare.t
31931 ____________________________________________________________________________
31932 [ 26224] By: stevep                                on 2005/11/29  12:36:46
31933         Log: Assimilate Pod-Escapes-1.04.  This is a prereq for Pod::Simple, 
31934              which is now a prereq for podlators.
31935      Branch: perl
31936            + lib/Pod/Escapes.pm lib/Pod/Escapes/ChangeLog
31937            + lib/Pod/Escapes/README lib/Pod/Escapes/t/01_about_verbose.t
31938            + lib/Pod/Escapes/t/10_main.t
31939            + lib/Pod/Escapes/t/15_name2charnum.t
31940            ! MANIFEST Porting/Maintainers.pl
31941 ____________________________________________________________________________
31942 [ 26223] By: rgs                                   on 2005/11/28  18:43:51
31943         Log: Typo fix, by Olivier Blin
31944      Branch: perl
31945            ! lib/Getopt/Long.pm
31946 ____________________________________________________________________________
31947 [ 26222] By: steveh                                on 2005/11/28  17:07:25
31948         Log: Fix ext/POSIX/t/time.t on Win32
31949              
31950              According to MSDN, "The string result produced by ctime contains
31951              exactly 26 characters and has the form: Wed Jan 02 02:03:55 1980\n\0"
31952              so we *do* want the leading zero on the day returned by strftime
31953      Branch: perl
31954            ! ext/POSIX/t/time.t
31955 ____________________________________________________________________________
31956 [ 26221] By: stevep                                on 2005/11/28  14:11:23
31957         Log: Mac OS X/Darwin seems to have problems with tzname().
31958      Branch: perl
31959            ! ext/POSIX/t/time.t
31960 ____________________________________________________________________________
31961 [ 26220] By: rgs                                   on 2005/11/28  11:00:37
31962         Log: FAQ sync.
31963      Branch: perl
31964            ! pod/perlfaq.pod pod/perlfaq3.pod pod/perlfaq4.pod
31965            ! pod/perlfaq5.pod pod/perlfaq7.pod pod/perlfaq9.pod
31966 ____________________________________________________________________________
31967 [ 26219] By: stevep                                on 2005/11/28  02:48:18
31968         Log: Subject: [PATCH] Math::Trig: blead and maint (doc patch only): s/Bay/Gulf/ and do away with bad quotes
31969              From: jhi@cc.hut.fi (Jarkko Hietaniemi)
31970              Date: Sun, 27 Nov 2005 23:04:31 +0200 (EET)
31971              Message-Id: <20051127210431.F1D2C6CF55@ugli.hut.fi>
31972      Branch: perl
31973            ! lib/Math/Trig.pm
31974 ____________________________________________________________________________
31975 [ 26218] By: stevep                                on 2005/11/28  02:34:49
31976         Log: Mention of possible use of a scalar variable on the rhs of an arrow "->" 
31977              operator added to close two tickets.
31978      Branch: perl
31979            ! pod/perlobj.pod
31980 ____________________________________________________________________________
31981 [ 26217] By: rgs                                   on 2005/11/27  23:18:38
31982         Log: Don't let MakeMaker install doc for MIME::Base64
31983              (since installpod does it already)
31984      Branch: perl
31985            ! ext/MIME/Base64/Makefile.PL
31986 ____________________________________________________________________________
31987 [ 26216] By: rgs                                   on 2005/11/27  22:42:42
31988         Log: Upgrade to Getopt::Long 2.34_04
31989      Branch: perl
31990            ! lib/Getopt/Long.pm lib/Getopt/Long/CHANGES
31991            ! lib/Getopt/Long/README lib/Getopt/Long/t/gol-basic.t
31992            ! lib/Getopt/Long/t/gol-compat.t lib/Getopt/Long/t/gol-linkage.t
31993            ! lib/Getopt/Long/t/gol-oo.t
31994 ____________________________________________________________________________
31995 [ 26215] By: rgs                                   on 2005/11/27  21:43:17
31996         Log: Subject: [PATCH] fix wrong pool error in cygwin build
31997              From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
31998              Date: Nov 27, 2005 9:29 AM
31999              Message-ID: <20051127082918.GA2556@efn.org>
32000      Branch: perl
32001            ! cygwin/cygwin.c
32002 ____________________________________________________________________________
32003 [ 26214] By: stevep                                on 2005/11/27  02:35:25
32004         Log: Upgrade to MIME-Base64-3.06
32005      Branch: perl
32006            ! ext/MIME/Base64/Base64.pm ext/MIME/Base64/Base64.xs
32007            ! ext/MIME/Base64/Changes ext/MIME/Base64/Makefile.PL
32008            ! ext/MIME/Base64/QuotedPrint.pm
32009 ____________________________________________________________________________
32010 [ 26213] By: stevep                                on 2005/11/26  12:48:42
32011         Log: Deal with differences in what clock() does between POSIX and BSD.
32012      Branch: perl
32013            ! ext/POSIX/t/time.t
32014 ____________________________________________________________________________
32015 [ 26212] By: stevep                                on 2005/11/26  12:04:00
32016         Log: Upgrade to Scalar-List-Utils-1.18
32017      Branch: perl
32018            + ext/List/Util/t/00version.t
32019            ! MANIFEST ext/List/Util/Changes
32020 ____________________________________________________________________________
32021 [ 26211] By: stevep                                on 2005/11/26  11:50:17
32022         Log: Upgrade to Digest-MD5-2.35
32023      Branch: perl
32024            ! ext/Digest/MD5/Changes ext/Digest/MD5/MD5.pm
32025            ! ext/Digest/MD5/MD5.xs ext/Digest/MD5/Makefile.PL
32026            ! ext/Digest/MD5/t/files.t
32027 ____________________________________________________________________________
32028 [ 26210] By: stevep                                on 2005/11/26  11:40:57
32029         Log: Actually update one of the files from the previous change.
32030      Branch: perl
32031            ! lib/Digest.pm
32032 ____________________________________________________________________________
32033 [ 26209] By: stevep                                on 2005/11/26  11:38:02
32034         Log: Upgrade to Digest-1.14
32035      Branch: perl
32036            ! lib/Digest.pm lib/Digest/Changes
32037 ____________________________________________________________________________
32038 [ 26208] By: stevep                                on 2005/11/26  02:56:26
32039         Log: Just be explicit about $TZ.  
32040      Branch: perl
32041            ! ext/POSIX/t/time.t
32042 ____________________________________________________________________________
32043 [ 26207] By: stevep                                on 2005/11/26  02:32:10
32044         Log: Hmmm...strftime() does work on Win32, but tzset() is having problems
32045              on OpenBSD.
32046      Branch: perl
32047            ! ext/POSIX/t/time.t
32048 ____________________________________________________________________________
32049 [ 26206] By: stevep                                on 2005/11/26  01:31:24
32050         Log: Additional tests for B and POSIX.  The POSIX ones concern me a bit,
32051              but I don't expect any black smokes because of testing on OpenBSD,
32052              Linux, Win32, an Cygwin.
32053      Branch: perl
32054            + ext/POSIX/t/time.t
32055            ! MANIFEST ext/B/t/b.t
32056 ____________________________________________________________________________
32057 [ 26205] By: nicholas                              on 2005/11/25  15:12:02
32058         Log: Move report_uninit() and its static supporting functions to the end of
32059              sv.c, so that they are not sandwiched between the two halves of the
32060              SV allocation code. However, the diff looks far more evil than it
32061              should given that this is just moving a single albeit large hunk.
32062      Branch: perl
32063            ! sv.c
32064 ____________________________________________________________________________
32065 [ 26204] By: rgs                                   on 2005/11/25  12:40:34
32066         Log: Subject: [PATCH] perlpod documentation discrepancy in 5.8.6 ( and maybe later? )
32067              From: demerphq <demerphq@gmail.com>
32068              Date: Fri, 25 Nov 2005 13:57:38 +0100
32069              Message-ID: <9b18b3110511250457k6c196c4fu167badd045c2d9e6@mail.gmail.com>
32070      Branch: perl
32071            ! pod/perlpod.pod
32072 ____________________________________________________________________________
32073 [ 26203] By: rgs                                   on 2005/11/24  16:09:48
32074         Log: Subject: Re: XS-assisted SWASHGET (esp. for t/uni/class.t speedup)
32075              From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
32076              Date: Fri, 25 Nov 2005 00:19:35 +0900
32077              Message-Id: <20051125001031.24E3.BQW10602@nifty.com>
32078              
32079              Date: Fri, 25 Nov 2005 01:18:17 +0900
32080              Message-Id: <20051125011410.24E9.BQW10602@nifty.com>
32081      Branch: perl
32082            ! universal.c utf8.c
32083 ____________________________________________________________________________
32084 [ 26202] By: rgs                                   on 2005/11/24  15:38:05
32085         Log: Document new perldoc -L switch
32086              
32087              Subject: Re: Pod::Perldoc patch (Fw: [ANNOUNCE] POD2::IT 0.10)
32088              From: Enrico Sorcinelli <bepi@perl.it>
32089              Date: Thu, 24 Nov 2005 16:04:03 +0100
32090              Message-Id: <20051124160403.568a194b.bepi@perl.it>
32091      Branch: perl
32092            ! pod/perldoc.pod
32093 ____________________________________________________________________________
32094 [ 26201] By: rgs                                   on 2005/11/24  08:52:35
32095         Log: Delete a README made redundant by change 26200.
32096      Branch: perl
32097            - wince/README.perlce
32098 ____________________________________________________________________________
32099 [ 26200] By: rgs                                   on 2005/11/23  20:45:44
32100         Log: Subject: [PATCH @26198] perlce touches
32101              From: Konovalov, Vadim <vkonovalov@spb.lucent.com>
32102              Date: Nov 23, 2005 8:55 PM
32103              Message-ID: <7DD1BE2C50259746ABB8683672D2089E12DDC3@itotest-1.spb.lucent.com>
32104      Branch: perl
32105            ! INSTALL MANIFEST README.ce makedef.pl wince/Makefile.ce
32106            ! wince/wince.c
32107 ____________________________________________________________________________
32108 [ 26199] By: rgs                                   on 2005/11/23  15:34:54
32109         Log: Subject: XS-assisted SWASHGET (esp. for t/uni/class.t speedup)
32110              From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
32111              Date: Wed, 23 Nov 2005 17:57:34 +0900
32112              Message-Id: <20051123175603.FFD5.BQW10602@nifty.com>
32113              
32114              And :
32115              Message-Id: <20051123202935.4D9D.BQW10602@nifty.com>
32116              
32117              with some nits to use U8 instead of char more consistently
32118      Branch: perl
32119            ! lib/utf8_heavy.pl t/op/pat.t universal.c utf8.c
32120 ____________________________________________________________________________
32121 [ 26198] By: rgs                                   on 2005/11/22  21:24:19
32122         Log: Notes in perlstyle about POD formatting, by Sébastien
32123              Aperghis-Tramoni, with nits by chromatic and Randy W. Sims.
32124      Branch: perl
32125            ! pod/perlstyle.pod
32126 ____________________________________________________________________________
32127 [ 26197] By: nicholas                              on 2005/11/22  20:23:34
32128         Log: Note the URL describing the vast riches awaiting us.
32129      Branch: perl
32130            ! t/lib/1_compile.t
32131 ____________________________________________________________________________
32132 [ 26196] By: davem                                 on 2005/11/22  16:52:24
32133         Log: include PERL_TRACK_MEMPOOL in perl -V output
32134      Branch: perl
32135            ! perl.c
32136 ____________________________________________________________________________
32137 [ 26195] By: davem                                 on 2005/11/22  16:32:42
32138         Log: perl segfaults on reversed array reference
32139              
32140              The 'for (reverse @a)' optimisation got its index wrong when
32141              create LVALUE SVs for undef elements
32142      Branch: perl
32143            ! pp_ctl.c pp_hot.c t/op/loopctl.t
32144 ____________________________________________________________________________
32145 [ 26194] By: rgs                                   on 2005/11/22  16:16:00
32146         Log: Subject: [DOC PATCH] Sort subs *can* now be recursive
32147              From: Robin Houston <robin@cpan.org>
32148              Date: Tue, 22 Nov 2005 13:28:17 +0000
32149              Message-ID: <20051122132817.GA20895@rpc142.cs.man.ac.uk>
32150      Branch: perl
32151            ! pod/perlfunc.pod
32152 ____________________________________________________________________________
32153 [ 26193] By: rgs                                   on 2005/11/22  16:10:00
32154         Log: Use the system's free to dealloc a PV allocated by the system
32155              (more precisely by libgdbm.) See :
32156              
32157              Subject: GDBM_file realloc failures
32158              From: Rafael Garcia-Suarez <rgarciasuarez@mandriva.com>
32159              Date: Mon, 21 Nov 2005 18:22:00 +0100
32160              Message-ID: <20051121182200.0b3d2454@grubert.mandrakesoft.com>
32161      Branch: perl
32162            ! ext/GDBM_File/GDBM_File.xs
32163 ____________________________________________________________________________
32164 [ 26192] By: rgs                                   on 2005/11/22  15:54:16
32165         Log: Subject: Re: [PATCH] concat interacts badly with magic
32166              From: Robin Houston <robin@cpan.org>
32167              Date: Tue, 22 Nov 2005 14:07:27 +0000
32168              Message-ID: <20051122140727.GA29861@rpc142.cs.man.ac.uk>
32169              
32170              (new version of patch for bug #37722)
32171      Branch: perl
32172            ! pp_hot.c t/lib/warnings/9uninit t/lib/warnings/pp_hot
32173            ! t/op/tie.t
32174 ____________________________________________________________________________
32175 [ 26191] By: rgs                                   on 2005/11/22  14:16:05
32176         Log: Subject: Pod::Perldoc patch (Fw: [ANNOUNCE] POD2::IT 0.10)
32177              From: Enrico Sorcinelli <bepi@perl.it>
32178              Date: Sun, 20 Nov 2005 10:20:51 +0100
32179              Message-Id: <20051120102051.23ef095d.bepi@perl.it>
32180              
32181              Also, bump version number of Perldoc.
32182      Branch: perl
32183            ! lib/Pod/Perldoc.pm
32184 ____________________________________________________________________________
32185 [ 26190] By: rgs                                   on 2005/11/22  11:29:03
32186         Log: Revert change #26185, which could have some unwanted side-effects.
32187              (lib/warnings.t had failures due to this patch.)
32188              Moreover Dave Mitchell correctly pointed out that [perl #37722]
32189              wasn't really a bug.
32190      Branch: perl
32191            ! pp_hot.c t/op/tie.t
32192 ____________________________________________________________________________
32193 [ 26189] By: merijn                                on 2005/11/22  06:33:05
32194         Log: Subject: RE: [perl #37708] [PATCH] wrong IP_ constants on Win32 
32195              From: "Jan Dubois" <jand@ActiveState.com>
32196              Date: Mon, 21 Nov 2005 21:35:51 -0800
32197              Message-ID: <062401c5ef26$99b3a490$2217a8c0@candy>
32198      Branch: perl
32199            ! win32/include/sys/socket.h
32200 ____________________________________________________________________________
32201 [ 26188] By: stevep                                on 2005/11/22  03:41:17
32202         Log: Subject: [PATCH] ff_chop.patch redux
32203              From: Andy Lester <andy@petdance.com>
32204              Date: Mon, 21 Nov 2005 21:16:14 -0600
32205              Message-ID: <20051122031614.GB19424@petdance.com>
32206      Branch: perl
32207            ! pp_ctl.c
32208 ____________________________________________________________________________
32209 [ 26187] By: stevep                                on 2005/11/22  03:37:30
32210         Log: Subject: patch@26180 - t/op/pat.t : Can't reset %ENV on VMS
32211              From: "John E. Malmberg" <wb8tyw@qsl.net>
32212              Date: Mon, 21 Nov 2005 22:09:17 -0500
32213              Message-ID: <43828BDD.7080302@qsl.net>
32214      Branch: perl
32215            ! t/op/pat.t
32216 ____________________________________________________________________________
32217 [ 26186] By: stevep                                on 2005/11/22  03:32:04
32218         Log: Subject: patch@26180 - t/op/array.t : Can't reset %ENV on VMS
32219              From: "John E. Malmberg" <wb8tyw@qsl.net>
32220              Date: Mon, 21 Nov 2005 21:19:31 -0500
32221              Message-ID: <43828033.9040708@qsl.net>
32222      Branch: perl
32223            ! t/op/array.t
32224 ____________________________________________________________________________
32225 [ 26185] By: rgs                                   on 2005/11/21  17:19:34
32226         Log: Subject: [PATCH] concat interacts badly with magic
32227              From: Robin Houston <robin@cpan.org>
32228              Date: Mon, 21 Nov 2005 17:03:39 +0000
32229              Message-ID: <20051121170339.GA8214@rpc142.cs.man.ac.uk>
32230      Branch: perl
32231            ! pp_hot.c t/op/tie.t
32232 ____________________________________________________________________________
32233 [ 26184] By: nicholas                              on 2005/11/21  14:18:03
32234         Log: Flip the sign of the value in body details offset, and change its type
32235              to size_t.
32236      Branch: perl
32237            ! sv.c
32238 ____________________________________________________________________________
32239 [ 26183] By: merijn                                on 2005/11/21  14:11:28
32240         Log: Thread failures on AIX (and others) caused by interleaved output
32241              
32242              Subject: Smoke [5.9.3] 26168 FAIL(X) AIX 4.3.3.0/ML11 (PPC/1 cpu)
32243              From: "H.Merijn Brand" <h.m.brand@xs4all.nl>
32244              Date: Sun, 20 Nov 2005 14:36 +0100
32245              Message-Id: <200511201337.jAKDbc1O066213@smtp-vbr6.xs4all.nl>
32246      Branch: perl
32247            ! t/op/threads.t
32248 ____________________________________________________________________________
32249 [ 26181] By: rgs                                   on 2005/11/21  08:58:59
32250         Log: Upgrade to Time::HiRes 1.83
32251      Branch: perl
32252            ! ext/Time/HiRes/Changes ext/Time/HiRes/HiRes.pm
32253            ! ext/Time/HiRes/Makefile.PL ext/Time/HiRes/t/HiRes.t
32254 ____________________________________________________________________________
32255 [ 26180] By: nicholas                              on 2005/11/20  20:39:50
32256         Log: Eliminate two more strlen()s, by using the return value of sprintf().
32257      Branch: perl
32258            ! pp_ctl.c
32259 ____________________________________________________________________________
32260 [ 26179] By: rgs                                   on 2005/11/20  12:10:15
32261         Log: Declarations must come first, or some compilers aren't happy.
32262              (spotted by Jarkko)
32263      Branch: perl
32264            ! ext/B/B.xs
32265 ____________________________________________________________________________
32266 [ 26178] By: stevep                                on 2005/11/20  02:41:01
32267         Log: Subject: [PATCH] Pulling ancient RCS comments
32268              From: Andy Lester <andy@petdance.com>
32269              Date: Sat, 19 Nov 2005 00:16:39 -0600
32270              Message-ID: <20051119061639.GA25086@petdance.com>
32271      Branch: perl
32272            ! lib/AnyDBM_File.t lib/importenv.pl lib/stat.pl lib/validate.pl
32273            ! t/base/cond.t t/base/if.t t/base/pat.t t/base/term.t
32274            ! t/cmd/elsif.t t/cmd/mod.t t/cmd/subval.t t/cmd/switch.t
32275            ! t/comp/cmdopt.t t/comp/cpp.t t/comp/decl.t t/io/inplace.t
32276            ! t/io/read.t t/io/tell.t t/op/append.t t/op/auto.t t/op/cond.t
32277            ! t/op/do.t t/op/flip.t t/op/goto_xs.t t/op/my.t t/op/push.t
32278            ! t/op/read.t t/op/time.t t/op/unshift.t
32279 ____________________________________________________________________________
32280 [ 26177] By: stevep                                on 2005/11/20  02:31:10
32281         Log: Subject: Reworked PERL_TRACK_MEMPOOL patch
32282              From: "Jan Dubois" <jand@ActiveState.com>
32283              Date: Fri, 18 Nov 2005 11:38:24 -0800
32284              Message-ID: <003601c5ec77$a45eb260$2217a8c0@candy>
32285      Branch: perl
32286            ! perl.h util.c
32287 ____________________________________________________________________________
32288 [ 26176] By: stevep                                on 2005/11/19  19:14:42
32289         Log: Down with "warning: code has no effect"
32290      Branch: perl
32291            ! XSUB.h
32292 ____________________________________________________________________________
32293 [ 26175] By: stevep                                on 2005/11/19  18:06:14
32294         Log: Cleaning up some warnings generated by "gcc -W"
32295      Branch: perl
32296            ! deb.c ext/B/B.xs ext/Data/Dumper/Dumper.xs
32297            ! ext/PerlIO/encoding/encoding.xs mg.c op.c regcomp.c scope.c
32298 ____________________________________________________________________________
32299 [ 26174] By: stevep                                on 2005/11/19  13:46:27
32300         Log: Upgrade to PathTools-3.14
32301      Branch: perl
32302            + lib/File/Spec/t/tmpdir.t
32303            ! MANIFEST ext/Cwd/Changes lib/Cwd.pm lib/File/Spec.pm
32304            ! lib/File/Spec/Cygwin.pm lib/File/Spec/Unix.pm
32305            ! lib/File/Spec/VMS.pm lib/File/Spec/Win32.pm
32306            ! lib/File/Spec/t/Spec.t
32307 ____________________________________________________________________________
32308 [ 26173] By: nicholas                              on 2005/11/19  11:21:15
32309         Log: Norman observed that a couple of macros could make the body defintion
32310              table a lot more readable.
32311      Branch: perl
32312            ! sv.c
32313 ____________________________________________________________________________
32314 [ 26172] By: nicholas                              on 2005/11/19  00:50:33
32315         Log: With -DPURFIY we change the flags so that everything is allocated
32316              directly. (Don't use arenas at all.) This seems a rather elegant way
32317              to simplify some of the code in sv.c by removing conditional
32318              compilation.
32319      Branch: perl
32320            ! sv.c
32321 ____________________________________________________________________________
32322 [ 26171] By: nicholas                              on 2005/11/19  00:21:58
32323         Log: Map the HE arena onto SV type 0 (SVt_NULL).
32324              Abolish PL_he_root and PL_he_arenaroot.
32325      Branch: perl
32326            ! embedvar.h ext/XS/APItest/APItest.xs hv.c intrpvar.h perlapi.h
32327            ! sv.c sv.h
32328 ____________________________________________________________________________
32329 [ 26170] By: nicholas                              on 2005/11/18  23:44:32
32330         Log: Remove all the now unused new_XFOO()/del_XFOO() macros
32331      Branch: perl
32332            ! sv.c
32333 ____________________________________________________________________________
32334 [ 26169] By: nicholas                              on 2005/11/18  23:28:59
32335         Log: sv_clear can manipulate the arena array directly too.
32336              Also, I think that we may have been "leaking" NV bodies in blead since
32337              25051. Oops. (Will not have been detectable except with -DPURIFY as
32338              the leak is not returning them as free to the arena)
32339      Branch: perl
32340            ! sv.c
32341 ____________________________________________________________________________
32342 [ 26168] By: nicholas                              on 2005/11/18  21:25:23
32343         Log: We only need to zero new bodies for upgrades. sv_dup doesn't need to
32344              zero as it's copying over the same sized structure. So change
32345              new_NOARENA to malloc(), and add new_NOARENAZ() to calloc()
32346      Branch: perl
32347            ! sv.c
32348 ____________________________________________________________________________
32349 [ 26167] By: nicholas                              on 2005/11/18  21:02:34
32350         Log: Merge the arms of the switch. The decision about what comes from an
32351              arena and what comes from malloc is now solely in the table.
32352      Branch: perl
32353            ! sv.c
32354 ____________________________________________________________________________
32355 [ 26166] By: nicholas                              on 2005/11/18  20:38:26
32356         Log: Eliminate new_body_length from sv_dup. Replace SvTYPE(sstr) with
32357              sv_type, which is a constant variable with the same value.
32358      Branch: perl
32359            ! sv.c
32360 ____________________________________________________________________________
32361 [ 26165] By: nicholas                              on 2005/11/18  19:50:24
32362         Log: Eliminate new_body_offset from sv_dup()
32363      Branch: perl
32364            ! sv.c
32365 ____________________________________________________________________________
32366 [ 26164] By: nicholas                              on 2005/11/18  17:37:39
32367         Log: Merge the last remaining case duplication in sv_upgrade
32368      Branch: perl
32369            ! sv.c
32370 ____________________________________________________________________________
32371 [ 26163] By: nicholas                              on 2005/11/18  16:18:38
32372         Log: Eliminate new_body_length from sv_upgrade
32373      Branch: perl
32374            ! sv.c
32375 ____________________________________________________________________________
32376 [ 26162] By: nicholas                              on 2005/11/18  15:51:10
32377         Log: Eliminate new_body_offset from sv_upgrade
32378      Branch: perl
32379            ! sv.c
32380 ____________________________________________________________________________
32381 [ 26161] By: nicholas                              on 2005/11/18  15:03:01
32382         Log: new_body_inline doesn't need to be passed the root, as it's already
32383              inferring the arenaroot directly from the passed-in type.
32384      Branch: perl
32385            ! sv.c
32386 ____________________________________________________________________________
32387 [ 26160] By: rgs                                   on 2005/11/18  12:40:16
32388         Log: Tabs are still required in the MANIFEST
32389      Branch: perl
32390            ! MANIFEST
32391 ____________________________________________________________________________
32392 [ 26159] By: nicholas                              on 2005/11/18  12:06:06
32393         Log: Add a flag to the body details of which types come from arenas.
32394              Update the allocation information for all the types.
32395              Add a new macro new_NOARENA() for allocating the non-arena types.
32396              Use calloc rather than malloc for the new_NOARENA so that the Zero()
32397              can be skipped.
32398      Branch: perl
32399            ! sv.c
32400 ____________________________________________________________________________
32401 [ 26158] By: nicholas                              on 2005/11/18  11:20:10
32402         Log: Simplify the expression for the upgrade logic for SVt_IV.
32403              Replace the "can't happen" comment for SVt_PVIV with assertions
32404              that it didn't happen.
32405      Branch: perl
32406            ! sv.c
32407 ____________________________________________________________________________
32408 [ 26157] By: stevep                                on 2005/11/18  11:07:34
32409         Log: Adding README.linux to the MANIFEST
32410      Branch: perl
32411            ! MANIFEST
32412 ____________________________________________________________________________
32413 [ 26156] By: nicholas                              on 2005/11/18  10:30:12
32414         Log: const and static for the const static private table.
32415              Replace the "upgrade" special case for SVt_PV with assertions as it's
32416              not been needed since we forced *up*grades.
32417      Branch: perl
32418            ! sv.c
32419 ____________________________________________________________________________
32420 [ 26155] By: nicholas                              on 2005/11/18  10:13:31
32421         Log: Rename sv_upgrade's parameter mt to new_type.
32422      Branch: perl
32423            ! sv.c
32424 ____________________________________________________________________________
32425 [ 26154] By: rgs                                   on 2005/11/18  08:30:18
32426         Log: Subject: Dumpvalue doc patch
32427              From: andreas.koenig.gmwojprw@franz.ak.mind.de (Andreas J. Koenig)
32428              Date: Fri, 18 Nov 2005 03:42:52 +0100
32429              Message-ID: <87br0ibrrn.fsf@k75.linux.bogus>
32430      Branch: perl
32431            ! lib/Dumpvalue.pm
32432 ____________________________________________________________________________
32433 [ 26153] By: stevep                                on 2005/11/18  00:54:53
32434         Log: Initial, albeit hackish, support for the alpha version of Sun Studio
32435              compilers of Linux.
32436      Branch: perl
32437            + README.linux
32438            ! hints/linux.sh
32439 ____________________________________________________________________________
32440 [ 26152] By: nicholas                              on 2005/11/17  23:27:59
32441         Log: All that can be in the first switch statement of sv_upgrade is now
32442              table driven. The shrinking continues on the morrow.
32443      Branch: perl
32444            ! sv.c
32445 ____________________________________________________________________________
32446 [ 26151] By: nicholas                              on 2005/11/17  22:50:07
32447         Log: "Can you see what it is yet?"
32448              Next steps towards making as much as possible table driven.
32449      Branch: perl
32450            ! sv.c
32451 ____________________________________________________________________________
32452 [ 26150] By: nicholas                              on 2005/11/17  21:58:58
32453         Log: Add the size of the structure to copy as a field in the per type
32454              data table.
32455      Branch: perl
32456            ! sv.c
32457 ____________________________________________________________________________
32458 [ 26149] By: nicholas                              on 2005/11/17  16:33:05
32459         Log: Merge sizeof_body_by_svtype and offset_by_svtype into a single array
32460              of structures.
32461      Branch: perl
32462            ! sv.c
32463 ____________________________________________________________________________
32464 [ 26148] By: nicholas                              on 2005/11/17  14:36:39
32465         Log: Move the location of the definition of the arena slot used for pte
32466              into sv.h, to keep it in one central place.
32467              Change it to use SVt_RV. (Having SVt_IV for real use will be useful.
32468              SVt_RV has no body, and doesn't pretend to have one, so it is spare.)
32469      Branch: perl
32470            ! sv.c sv.h
32471 ____________________________________________________________________________
32472 [ 26147] By: rgs                                   on 2005/11/17  14:09:10
32473         Log: Subject: [PATCH] Sort subs now in embed.fnc
32474              From: Andy Lester <andy@petdance.com>
32475              Date: Thu, 17 Nov 2005 07:53:38 -0600
32476              Message-ID: <20051117135338.GA31715@petdance.com>
32477      Branch: perl
32478            ! embed.fnc embed.h pp_sort.c proto.h
32479 ____________________________________________________________________________
32480 [ 26146] By: nicholas                              on 2005/11/17  13:51:01
32481         Log: s/SvTYPE(sv)/old_type/ in sv_upgrade because we already have that value
32482              in that variable.
32483              Don't compile S_new_body with -DPURIFY
32484      Branch: perl
32485            ! sv.c
32486 ____________________________________________________________________________
32487 [ 26145] By: rgs                                   on 2005/11/17  09:06:33
32488         Log: It's clearer to use "morphing" than "polymorphing" when
32489              describing what exec() does
32490      Branch: perl
32491            ! pod/perlmod.pod
32492 ____________________________________________________________________________
32493 [ 26144] By: stevep                                on 2005/11/17  00:18:31
32494         Log: Subject: [perl #37694] segfault with PerlIO::get_layers()
32495              From: Peter Dintelmann (via RT) <perlbug-followup@perl.org>
32496              Date: Wed, 16 Nov 2005 07:11:41 -0800
32497              Message-ID: <rt-3.0.11-37694-124556.15.9755707729767@perl.org>
32498      Branch: perl
32499            ! universal.c
32500 ____________________________________________________________________________
32501 [ 26143] By: nicholas                              on 2005/11/16  23:40:55
32502         Log: Oi gcc, No! sizeof(void) is an error. *Not* 1.
32503              Wanting sizeof(void) isn't even a compilation error with -ansi
32504              -pedantic. Just a warning. Lame! I'm going to send it back for a full
32505              refund. Hateful software.
32506      Branch: perl
32507            ! sv.c
32508 ____________________________________________________________________________
32509 [ 26142] By: nicholas                              on 2005/11/16  20:18:58
32510         Log: PL_pte_root and PL_pte_arenaroot can be exterminated. Which reveals
32511              an erroneous remaining reference to PL_pte_root to correct.
32512      Branch: perl
32513            ! embedvar.h intrpvar.h perlapi.h sv.c
32514 ____________________________________________________________________________
32515 [ 26141] By: nicholas                              on 2005/11/16  19:26:17
32516         Log: Subject: Re: eliminate discreet arenaroots
32517              From: Jim Cromie <jim.cromie@gmail.com>
32518              Message-ID: <4378E5B0.3010708@gmail.com>
32519              Date: Mon, 14 Nov 2005 12:29:52 -0700
32520      Branch: perl
32521            ! embedvar.h intrpvar.h perlapi.h sv.c sv.h
32522 ____________________________________________________________________________
32523 [ 26140] By: merijn                                on 2005/11/16  19:26:13
32524         Log: Subject: [PATCH @26137] for wince
32525              From: "Konovalov, Vadim" <vkonovalov@spb.lucent.com>
32526              Date: Wed, 16 Nov 2005 20:57:13 +0300
32527              Message-ID: <7DD1BE2C50259746ABB8683672D2089E12DC9F@itotest-1.spb.lucent.com>
32528      Branch: perl
32529            ! makedef.pl wince/Makefile.ce wince/config.ce wince/config_H.ce
32530            ! wince/wince.c
32531 ____________________________________________________________________________
32532 [ 26137] By: rgs                                   on 2005/11/16  15:06:10
32533         Log: Subject: Re: [perl #37688] Unexpected regex failure. 
32534              From: hv@crypt.org
32535              Date: Wed, 16 Nov 2005 14:54:55 +0000
32536              Message-Id: <200511161454.jAGEst117787@zen.crypt.org>
32537      Branch: perl
32538            ! regexec.c t/op/re_tests
32539 ____________________________________________________________________________
32540 [ 26136] By: rgs                                   on 2005/11/15  16:33:02
32541         Log: Subject: Re: [perl #37616] Bug in &= (string) and/or m//
32542              From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
32543              Date: Wed, 09 Nov 2005 02:12:00 +0900
32544              Message-Id: <20051109021035.69D8.BQW10602@nifty.com>
32545      Branch: perl
32546            ! doop.c t/op/bop.t
32547 ____________________________________________________________________________
32548 [ 26135] By: rgs                                   on 2005/11/15  13:30:00
32549         Log: Subject: [PATCH] Re: Cygwin status, maint and blead
32550              From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
32551              Date: Sun, 13 Nov 2005 16:01:02 -0800
32552              Message-ID: <20051114000102.GA5556@efn.org>
32553      Branch: perl
32554            ! Makefile.SH
32555 ____________________________________________________________________________
32556 [ 26134] By: nicholas                              on 2005/11/14  22:48:02
32557         Log: Remove the two register keywords from auto variables that PERL_POSION
32558              wants to take the address of.
32559      Branch: perl
32560            ! hv.c scope.c
32561 ____________________________________________________________________________
32562 [ 26133] By: nicholas                              on 2005/11/14  22:32:14
32563         Log: More PERL_POISON - poison SvANY() and SvREFCNT() in freed SV heads.
32564              (by using the union pointer to chain the freed heads together)
32565      Branch: perl
32566            ! sv.c
32567 ____________________________________________________________________________
32568 [ 26132] By: nicholas                              on 2005/11/14  22:31:14
32569         Log: Mark all places where perl needs to look at a possibly-freed scalar
32570              with a macro SvIS_FREED(sv)
32571      Branch: perl
32572            ! av.c mg.c op.c pad.c pp_hot.c sv.h
32573 ____________________________________________________________________________
32574 [ 26131] By: stevep                                on 2005/11/14  17:31:59
32575         Log: Removed reference to the non-existent C<Opcode::Custom>.
32576      Branch: perl
32577            ! pod/perlguts.pod
32578 ____________________________________________________________________________
32579 [ 26130] By: rgs                                   on 2005/11/14  16:32:33
32580         Log: The warning "Field too wide in 'u' format in pack" was emitted even
32581              when pack warnings were not enabled
32582      Branch: perl
32583            ! pp_pack.c
32584 ____________________________________________________________________________
32585 [ 26129] By: nicholas                              on 2005/11/14  16:22:26
32586         Log: Provide a crude way for specifying the command line for
32587              make test.valgrind
32588      Branch: perl
32589            ! Makefile.SH t/TEST
32590 ____________________________________________________________________________
32591 [ 26128] By: rgs                                   on 2005/11/14  15:40:08
32592         Log: A better fix for [perl #35847] File::Find not performing as documented,
32593              suggested by Darren Dunham. Includes a fix to the code example that
32594              uses File::Find in perlfaq3.
32595      Branch: perl
32596            ! lib/File/Find.pm pod/perlfaq3.pod
32597 ____________________________________________________________________________
32598 [ 26126] By: rgs                                   on 2005/11/14  12:43:29
32599         Log: Don't warn about lack of docs for functions that appear twice in embed.fnc.
32600      Branch: perl
32601            ! autodoc.pl
32602 ____________________________________________________________________________
32603 [ 26124] By: rgs                                   on 2005/11/14  10:45:25
32604         Log: Fix indentation of apidoc for sv_2pvutf8
32605              (so perlapi.pod is correctly generated)
32606      Branch: perl
32607            ! pod/perlapi.pod sv.c
32608 ____________________________________________________________________________
32609 [ 26123] By: rgs                                   on 2005/11/14  10:24:58
32610         Log: Suppress gcc warnings when ignoring the return value of io_close(),
32611              as suggested by Gisle Aas.
32612      Branch: perl
32613            ! embed.fnc proto.h
32614 ____________________________________________________________________________
32615 [ 26122] By: rgs                                   on 2005/11/14  10:13:41
32616         Log: Subject: [PATCH] Missing ; in Storable.xs
32617              From: Gisle Aas <gisle@ActiveState.com>
32618              Date: 14 Nov 2005 02:32:14 -0800
32619              Message-ID: <lrhdafy0y9.fsf_-_@caliper.activestate.com>
32620      Branch: perl
32621            ! ext/Storable/Storable.xs
32622 ____________________________________________________________________________
32623 [ 26120] By: steveh                                on 2005/11/14  09:39:48
32624         Log: Subject: [PATCH] Compress::Zlib
32625              From: "Paul Marquess" <Paul.Marquess@ntlworld.com>
32626              Date: Sun, 13 Nov 2005 17:09:08 -0000
32627              Message-ID: <00d101c5e874$f865f910$6d1c140a@myopwv.com>
32628      Branch: perl
32629            ! ext/Compress/Zlib/Zlib.pm
32630            ! ext/Compress/Zlib/lib/Compress/Zlib/Common.pm
32631            ! ext/Compress/Zlib/lib/IO/Compress/Gzip.pm
32632            ! ext/Compress/Zlib/lib/IO/Uncompress/Gunzip.pm
32633            ! ext/Compress/Zlib/t/09gziphdr.t
32634 ____________________________________________________________________________
32635 [ 26119] By: steveh                                on 2005/11/14  09:39:02
32636         Log: Fix code-before-declaration in boot_Storable added by 26107
32637      Branch: perl
32638            ! ext/Storable/Storable.xs
32639 ____________________________________________________________________________
32640 [ 26118] By: stevep                                on 2005/11/14  01:13:16
32641         Log: Subject: [PATCH] consting perlbug breaking in blead & maint
32642              From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
32643              Date: Sun, 13 Nov 2005 16:00:49 -0800
32644              Message-ID: <20051114000049.GA7676@efn.org>
32645      Branch: perl
32646            ! utils/perlbug.PL
32647 ____________________________________________________________________________
32648 [ 26112] By: nicholas                              on 2005/11/13  18:47:27
32649         Log: Fix breakages that prevended -DPERL_POISON from compiling.
32650      Branch: perl
32651            ! handy.h sv.h
32652 ____________________________________________________________________________
32653 [ 26110] By: nicholas                              on 2005/11/13  11:44:30
32654         Log: Integrate:
32655              [ 26108]
32656              BEGIN blocks should start a new stack, as they can be called as a
32657              side effect of "regular" Perl API calls within subroutines that have
32658              already cached the current stack's address. If they don't, any stack
32659              extension during the call may move the stack, rendering that cached
32660              value invalid without the cachee realising. (For example, PP code
32661              calling gv_fetchpv() which triggers a load of Errno.pm)
32662      Branch: perl
32663           !> op.c
32664 ____________________________________________________________________________
32665 [ 26107] By: stevep                                on 2005/11/13  00:40:25
32666         Log: Subject: Re: [PATCH] Enhanced Storable::read_magic()
32667              From: Gisle Aas <gisle@ActiveState.com>
32668              Date: 12 Nov 2005 13:13:23 -0800
32669              Message-ID: <lrhdah7eoc.fsf@caliper.activestate.com>
32670      Branch: perl
32671            + ext/Storable/t/file_magic.t
32672            ! MANIFEST ext/Storable/MANIFEST ext/Storable/Storable.pm
32673            ! ext/Storable/Storable.xs
32674 ____________________________________________________________________________
32675 [ 26103] By: stevep                                on 2005/11/12  20:44:16
32676         Log: Upgrade to Locale-Maketext-1.10.  As change #25547 did not make it
32677              into the module release, I bumped the version number and added the
32678              missing code.
32679      Branch: perl
32680            ! lib/Locale/Maketext.pm lib/Locale/Maketext/ChangeLog
32681 ____________________________________________________________________________
32682 [ 26101] By: stevep                                on 2005/11/12  19:46:18
32683         Log: Subject: [perl #37657] segfault with binmode ":pop"
32684              From: Peter Dintelmann (via RT) <perlbug-followup@perl.org>
32685              Date: Fri, 11 Nov 2005 06:36:20 -0800
32686              Message-ID: <rt-3.0.11-37657-124293.6.03947871136576@perl.org>
32687      Branch: perl
32688            ! perlio.c
32689 ____________________________________________________________________________
32690 [ 26100] By: nicholas                              on 2005/11/12  18:48:29
32691         Log: Make B's tests skip correctly when PerlIO is not configured.
32692      Branch: perl
32693            ! ext/B/t/concise-xs.t ext/B/t/concise.t
32694 ____________________________________________________________________________
32695 [ 26099] By: stevep                                on 2005/11/12  16:59:49
32696         Log: Subject: [PATCH] mathoms prototypes aren't prototypes
32697              From: Andy Lester <andy@petdance.com>
32698              Date: Fri, 11 Nov 2005 17:20:30 -0600
32699              Message-ID: <20051111232030.GA882@petdance.com>
32700      Branch: perl
32701            ! mathoms.c perl.c
32702 ____________________________________________________________________________
32703 [ 26096] By: stevep                                on 2005/11/12  15:41:09
32704         Log: Andy Lester maintains Locale::Maketext now.
32705      Branch: perl
32706            ! Porting/Maintainers.pl
32707 ____________________________________________________________________________
32708 [ 26093] By: nicholas                              on 2005/11/12  10:21:50
32709         Log: Change 26063 got one conditional the wrong way round.
32710      Branch: perl
32711            ! ext/B/B/Bytecode.pm
32712 ____________________________________________________________________________
32713 [ 26091] By: nicholas                              on 2005/11/12  09:15:32
32714         Log: Make the removal of references to AvFLAGS in the B modules conditional
32715              on perl version.
32716      Branch: perl
32717            ! ext/B/B/C.pm ext/B/B/Debug.pm
32718 ____________________________________________________________________________
32719 [ 26090] By: stevep                                on 2005/11/11  22:47:06
32720         Log: const'ing Netdb_host_t broke HP-UX and created warnings on gcc for a double const.  
32721              Netdb_host_t is a macro that for a const pointer.
32722      Branch: perl
32723            ! pp_sys.c
32724 ____________________________________________________________________________
32725 [ 26089] By: nicholas                              on 2005/11/11  21:52:20
32726         Log: 26085 was wrong. Undo it.
32727              (I suspect that I got this wrong because more changes have been made
32728              in blead subsequent to the change I was attempting to merge in, and
32729              and jiggled around with the number of tests)
32730      Branch: perl
32731            ! ext/B/t/concise-xs.t
32732 ____________________________________________________________________________
32733 [ 26088] By: stevep                                on 2005/11/11  16:44:39
32734         Log: Subject: [PATCH] DB_File 1.814
32735              From: Paul Marquess <Paul.Marquess@ntlworld.com>
32736              Date: Fri, 11 Nov 2005 12:09:55 -0000
32737              Message-ID: <00e301c5e6b8$d5a357f0$241c140a@myopwv.com>
32738      Branch: perl
32739            ! ext/DB_File/Changes ext/DB_File/DB_File.pm
32740            ! ext/DB_File/DB_File.xs ext/DB_File/t/db-btree.t
32741 ____________________________________________________________________________
32742 [ 26087] By: stevep                                on 2005/11/11  16:17:03
32743         Log: Subject: [PATCH] Storable 0.1 compatibility
32744              From: Gisle Aas <gisle@ActiveState.com> 
32745              Date: 11 Nov 2005 05:42:29 -0800 
32746              Message-ID: <lry83v712y.fsf@caliper.activestate.com>
32747              
32748              Also added an entry in the main MANIFEST file for the new test and 
32749              a version bump in Storable.pm.
32750      Branch: perl
32751            + ext/Storable/t/compat01.t
32752            ! MANIFEST ext/Storable/MANIFEST ext/Storable/Storable.pm
32753            ! ext/Storable/Storable.xs
32754 ____________________________________________________________________________
32755 [ 26085] By: nicholas                              on 2005/11/11  14:16:30
32756         Log: Correct the version-dependant expression for the number of tests, as it
32757              is now giving the wrong number for 5.8.x
32758      Branch: perl
32759            ! ext/B/t/concise-xs.t
32760 ____________________________________________________________________________
32761 [ 26082] By: stevep                                on 2005/11/11  04:55:56
32762         Log: Subject: [PATCH] Const & local: Special Victims Unit
32763              From: Andy Lester <andy@petdance.com>
32764              Date: Thu, 10 Nov 2005 22:47:00 -0600
32765              Message-ID: <20051111044700.GA24161@petdance.com>
32766      Branch: perl
32767            ! cop.h doio.c doop.c pp_hot.c pp_pack.c pp_sort.c pp_sys.c sv.c
32768            ! util.c
32769 ____________________________________________________________________________
32770 [ 26081] By: stevep                                on 2005/11/11  03:27:35
32771         Log: Pod nit in Encode.pm, found by Marc Lehmann in RT #36949. 
32772      Branch: perl
32773            ! ext/Encode/Encode.pm
32774 ____________________________________________________________________________
32775 [ 26080] By: stevep                                on 2005/11/11  03:18:11
32776         Log: Fix for RT #37654.  Added $COMPILING to list of variables exported.
32777      Branch: perl
32778            ! lib/English.pm
32779 ____________________________________________________________________________
32780 [ 26079] By: rgs                                   on 2005/11/10  16:59:15
32781         Log: Subject: [PATCH] Suppress leaked warnings in ExtUtils tests
32782              From: Dominic Dunlop <domo@computer.org>
32783              Date: Thu, 10 Nov 2005 18:10:00 +0100
32784              Message-Id: <D2949A21-7EE3-449F-BEF2-38FAD7B4A483@computer.org>
32785      Branch: perl
32786            ! lib/ExtUtils/t/Command.t lib/ExtUtils/t/Manifest.t
32787 ____________________________________________________________________________
32788 [ 26078] By: rgs                                   on 2005/11/10  16:36:12
32789         Log: Patch by Ilya Zakharevich to give more meaningful error
32790              messages from if.pm when invoked with a condition in list
32791              context. Also bump if's VERSION.
32792      Branch: perl
32793            ! lib/if.pm
32794 ____________________________________________________________________________
32795 [ 26077] By: rgs                                   on 2005/11/10  15:10:42
32796         Log: Define PERL_DEFAULT_DO_EXEC3_IMPLEMENTATION earlier in perl.h
32797              (that is, before embed.h, that uses this symbol, is included)
32798      Branch: perl
32799            ! perl.h
32800 ____________________________________________________________________________
32801 [ 26076] By: rgs                                   on 2005/11/10  14:26:12
32802         Log: Subject: [perl #35847] File::Find not performing as documented 
32803              From: "jms@mathras.comcast.net (via RT)" <perlbug-followup@perl.org>
32804              Date: 17 May 2005 10:40:08 -0000
32805              Message-ID: <rt-3.0.11-35847-113088.7.09182163210095@perl.org>
32806      Branch: perl
32807            ! lib/File/Find.pm
32808 ____________________________________________________________________________
32809 [ 26075] By: rgs                                   on 2005/11/10  13:03:20
32810         Log: Subject: [perl #37648] segfault with PERLIO_DEBUG 
32811              From: Peter Dintelmann (via RT) <perlbug-followup@perl.org>
32812              Date: Thu, 10 Nov 2005 04:31:39 -0800
32813              Message-ID: <rt-3.0.11-37648-124187.17.2251402270294@perl.org>
32814      Branch: perl
32815            ! perlio.c
32816 ____________________________________________________________________________
32817 [ 26074] By: stevep                                on 2005/11/10  12:22:43
32818         Log: Subject: [perl #37582] [PATCH] h2ph inc_dirs() fails to prepend gcc include search path, resulting in missing C standard headers on Linux
32819              From: Jason Vas Dias (via RT) <perlbug-followup@perl.org>
32820              Date: Tue, 01 Nov 2005 15:22:45 -0800
32821              Message-ID: <rt-3.0.11-37582-123738.12.3509768746337@perl.org>
32822      Branch: perl
32823            ! utils/h2ph.PL
32824 ____________________________________________________________________________
32825 [ 26073] By: rgs                                   on 2005/11/10  10:52:51
32826         Log: Subject: [PATCH] remove whitespace preceding semicolon in docs
32827              From: Steven Schubiger <schubiger@cpan.org>
32828              Date: Mon, 31 Oct 2005 22:48:27 +0100
32829              Message-ID: <20051031214827.GH24416@accognoscere.homeunix.org>
32830      Branch: perl
32831            ! pod/perl561delta.pod pod/perl56delta.pod pod/perlcall.pod
32832            ! pod/perldbmfilter.pod pod/perldiag.pod pod/perlfaq5.pod
32833            ! pod/perlfilter.pod pod/perlipc.pod pod/perllexwarn.pod
32834            ! pod/perlop.pod pod/perlre.pod pod/perlsub.pod pod/perltrap.pod
32835            ! pod/perlxs.pod
32836 ____________________________________________________________________________
32837 [ 26072] By: rgs                                   on 2005/11/10  10:37:42
32838         Log: Really apply change #26071.
32839      Branch: perl
32840            ! configpm ext/Cwd/Cwd.xs wince/Makefile.ce wince/config_h.PL
32841            ! wince/config_sh.PL
32842 ____________________________________________________________________________
32843 [ 26071] By: rgs                                   on 2005/11/10  10:35:57
32844         Log: Subject: [PATCH @26062] wince patch
32845              From: "Konovalov, Vadim" <vkonovalov@spb.lucent.com>
32846              Date: Wed, 9 Nov 2005 20:22:52 +0300 
32847              Message-ID: <7DD1BE2C50259746ABB8683672D2089E12DC02@itotest-1.spb.lucent.com>
32848      Branch: perl
32849            ! configpm ext/Cwd/Cwd.xs wince/Makefile.ce wince/config_h.PL
32850            ! wince/config_sh.PL
32851 ____________________________________________________________________________
32852 [ 26070] By: rgs                                   on 2005/11/10  09:11:26
32853         Log: Add tests for two untested syntax error messages about \N
32854      Branch: perl
32855            ! t/comp/parser.t
32856 ____________________________________________________________________________
32857 [ 26069] By: steveh                                on 2005/11/10  08:41:53
32858         Log: Make Perl_seed public
32859              
32860              Fixes Win32 linker error in List::Util introduced by change #26054
32861      Branch: perl
32862            ! embed.fnc embed.h global.sym
32863 ____________________________________________________________________________
32864 [ 26068] By: rgs                                   on 2005/11/10  08:36:13
32865         Log: Subject: [PATCH] blead@26052 Symbian update
32866              From: <jarkko.hietaniemi@nokia.com>
32867              Date: Wed, 9 Nov 2005 17:45:07 +0200
32868              Message-ID: <B356D8F434D20B40A8CEDAEC305A1F24E7A73D@esebe105.NOE.Nokia.com>
32869      Branch: perl
32870            ! README.symbian symbian/TODO symbian/config.pl symbian/port.pl
32871            ! symbian/sdk.pl symbian/sisify.pl
32872 ____________________________________________________________________________
32873 [ 26067] By: nicholas                              on 2005/11/09  21:52:03
32874         Log: As using -C to turn on utf8 IO is equivalent to the open pragma,
32875              change 25925 had the side effect of breaking ext/Encode/t/perlio.t
32876              Fixed by opening with :bytes.
32877      Branch: perl
32878            ! ext/Encode/t/perlio.t
32879 ____________________________________________________________________________
32880 [ 26066] By: nicholas                              on 2005/11/09  21:30:02
32881         Log: I/O is UTF-8, not "UNICODE"
32882      Branch: perl
32883            ! t/io/layers.t
32884 ____________________________________________________________________________
32885 [ 26065] By: nicholas                              on 2005/11/09  20:53:29
32886         Log: As using -C to turn on utf8 IO is equivalent to the open pragma,
32887              change 25925 had the side effect of breaking t/io/utf8.t
32888              Fixed by adding the missing binmode()s.
32889      Branch: perl
32890            ! t/io/utf8.t
32891 ____________________________________________________________________________
32892 [ 26064] By: nicholas                              on 2005/11/09  20:23:28
32893         Log: Better diagnostics from io/utf8.t
32894      Branch: perl
32895            ! t/io/utf8.t
32896 ____________________________________________________________________________
32897 [ 26063] By: nicholas                              on 2005/11/09  17:29:44
32898         Log: Make the Bytecode changes conditional on perl version.
32899      Branch: perl
32900            ! ext/B/B/Bytecode.pm
32901 ____________________________________________________________________________
32902 [ 26062] By: rgs                                   on 2005/11/09  11:56:04
32903         Log: Subject: Re: [PATCH] Re: [perl #32383] DProf breaks List::Util::shuffle
32904              From: Graham Barr <gbarr@pobox.com>
32905              Date: Wed, 9 Nov 2005 06:09:48 -0600
32906              Message-Id: <6CAD749E-AE29-415A-9ACB-BA8F6FB8279E@pobox.com>
32907      Branch: perl
32908            ! ext/List/Util/Util.xs ext/List/Util/lib/Scalar/Util.pm
32909            ! ext/List/Util/t/lln.t ext/List/Util/t/p_blessed.t
32910            ! ext/List/Util/t/p_first.t ext/List/Util/t/p_lln.t
32911            ! ext/List/Util/t/p_max.t ext/List/Util/t/p_maxstr.t
32912            ! ext/List/Util/t/p_min.t ext/List/Util/t/p_minstr.t
32913            ! ext/List/Util/t/p_openhan.t ext/List/Util/t/p_readonly.t
32914            ! ext/List/Util/t/p_reduce.t ext/List/Util/t/p_refaddr.t
32915            ! ext/List/Util/t/p_reftype.t ext/List/Util/t/p_shuffle.t
32916            ! ext/List/Util/t/p_sum.t ext/List/Util/t/p_tainted.t
32917 ____________________________________________________________________________
32918 [ 26061] By: nicholas                              on 2005/11/09  11:21:10
32919         Log: Simplify Perl_allocmy slightly, and cope better with the name is ""
32920              case.
32921      Branch: perl
32922            ! op.c
32923 ____________________________________________________________________________
32924 [ 26060] By: nicholas                              on 2005/11/09  11:17:17
32925         Log: Add a comment about possible future refactoring of the pad code.
32926      Branch: perl
32927            ! pad.c
32928 ____________________________________________________________________________
32929 [ 26059] By: nicholas                              on 2005/11/09  10:56:28
32930         Log: Remove superfluous strlen() from pp_require().
32931      Branch: perl
32932            ! pp_ctl.c
32933 ____________________________________________________________________________
32934 [ 26058] By: stevep                                on 2005/11/09  10:45:57
32935         Log: Patch from Gisle to add NO_MATHOMS to the Compile-time options.
32936      Branch: perl
32937            ! perl.c
32938 ____________________________________________________________________________
32939 [ 26057] By: rgs                                   on 2005/11/09  10:31:35
32940         Log: Don't declare a function inside another function
32941      Branch: perl
32942            ! perl.c
32943 ____________________________________________________________________________
32944 [ 26056] By: merijn                                on 2005/11/09  09:54:28
32945         Log: Subject: Configure setting patchlevel broken
32946              From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
32947              Date: Fri, 14 Oct 2005 00:33:29 -0700
32948              Message-ID: <20051014073329.GA3236@efn.org>
32949      Branch: perl
32950            ! Configure
32951 ____________________________________________________________________________
32952 [ 26054] By: rgs                                   on 2005/11/09  09:15:04
32953         Log: Subject: [PATCH] Re: [perl #32383] DProf breaks List::Util::shuffle
32954              From: Robin Houston <robin@cpan.org>
32955              Date: Tue, 8 Nov 2005 19:02:34 +0000
32956              Message-ID: <20051108190234.GA25953@rpc142.cs.man.ac.uk>
32957      Branch: perl
32958            ! cop.h ext/List/Util/Util.xs ext/List/Util/lib/List/Util.pm
32959            ! ext/List/Util/multicall.h ext/List/Util/t/first.t
32960            ! ext/List/Util/t/reduce.t pod/perlcall.pod
32961 ____________________________________________________________________________
32962 [ 26053] By: rgs                                   on 2005/11/09  08:57:10
32963         Log: Subject: patch@26052 - compile rule for mathoms.c
32964              From: "John E. Malmberg" <wb8tyw@qsl.net>
32965              Date: Tue, 08 Nov 2005 23:09:03 -0500
32966              Message-ID: <4371765F.1000900@qsl.net>
32967      Branch: perl
32968            ! vms/descrip_mms.template
32969 ____________________________________________________________________________
32970 [ 26052] By: nicholas                              on 2005/11/08  22:05:57
32971         Log: It helps to actually *remove* the now-superfluous strlen().
32972              (An addendum to 26050.)
32973      Branch: perl
32974            ! toke.c
32975 ____________________________________________________________________________
32976 [ 26051] By: nicholas                              on 2005/11/08  21:55:40
32977         Log: Moving the 4 writes of PL_no_mem followed by exit(1) to a static
32978              function makes the object code slightly smaller.
32979      Branch: perl
32980            ! util.c
32981 ____________________________________________________________________________
32982 [ 26050] By: nicholas                              on 2005/11/08  21:37:52
32983         Log: Eliminate some unnecessary strlen()s
32984      Branch: perl
32985            ! doio.c op.c perl.c perlio.c sv.c toke.c util.c
32986 ____________________________________________________________________________
32987 [ 26049] By: nicholas                              on 2005/11/08  20:43:11
32988         Log: Eliminate duplicate strlen()s by explicitly calling it.
32989              Note two places for future audit with FIXME.
32990              Convert a SvPVX_const to SvPVX_const_nolen, where the length is unused.
32991      Branch: perl
32992            ! pp_ctl.c
32993 ____________________________________________________________________________
32994 [ 26048] By: nicholas                              on 2005/11/08  20:35:11
32995         Log: 3 calls to strlen() we can avoid.
32996      Branch: perl
32997            ! doio.c
32998 ____________________________________________________________________________
32999 [ 26047] By: rgs                                   on 2005/11/08  17:35:58
33000         Log: Subject: [DOC PATCH] mention @-, @+ in perl56delta.pod
33001              From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
33002              Date: Tue, 8 Nov 2005 08:46:42 -0800
33003              Message-ID: <20051108164642.GD7972@efn.org>
33004      Branch: perl
33005            ! pod/perl561delta.pod pod/perl56delta.pod
33006 ____________________________________________________________________________
33007 [ 26046] By: nicholas                              on 2005/11/08  16:30:18
33008         Log: Probaby a good idea to include DEBUG_LEAKING_SCALARS in -V output, as
33009              its presence changes structure sizes.
33010      Branch: perl
33011            ! perl.c
33012 ____________________________________________________________________________
33013 [ 26045] By: stevep                                on 2005/11/08  14:24:39
33014         Log: From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
33015              Subject: Re: A surprising segfault
33016              Date: Tue, 08 Nov 2005 23:36:13 +0900
33017              Message-Id: <20051108233535.735D.BQW10602@nifty.com>
33018      Branch: perl
33019            ! t/io/fs.t t/io/print.t t/op/chop.t t/op/sort.t
33020 ____________________________________________________________________________
33021 [ 26044] By: steveh                                on 2005/11/08  10:16:56
33022         Log: Remove an unused variable left over from change #26041
33023      Branch: perl
33024            ! win32/win32.c
33025 ____________________________________________________________________________
33026 [ 26043] By: rgs                                   on 2005/11/08  10:11:55
33027         Log: Subject: Re: C<undef %::> considered harmful
33028              From: Benjamin Sugars <bsugars@canoe.ca>
33029              Date: Fri, 20 Apr 2001 10:30:20 -0400 (EDT)
33030              Message-ID: <Pine.LNX.4.21.0104201022040.1722-100000@marmot.rim.canoe.ca>
33031              
33032              except the part that increases the refcount of PL_stderrgv, already
33033              fixed separately.
33034      Branch: perl
33035            ! perl.c
33036 ____________________________________________________________________________
33037 [ 26042] By: rgs                                   on 2005/11/08  09:57:10
33038         Log: Upgrade to CPAN 1.76_65
33039      Branch: perl
33040            - lib/CPAN/Admin.pm
33041            ! MANIFEST lib/CPAN.pm lib/CPAN/SIGNATURE lib/CPAN/bin/cpan
33042            ! lib/CPAN/t/version.t
33043 ____________________________________________________________________________
33044 [ 26041] By: merijn                                on 2005/11/08  06:29:56
33045         Log: Subject: [PATCH] Remove unused USING_WIDE code from win32 and wince branches
33046              From: "Jan Dubois" <jand@ActiveState.com>
33047              Date: Mon, 7 Nov 2005 20:39:02 -0800
33048              Message-ID: <078001c5e41e$585c4140$6401a8c0@candy>
33049      Branch: perl
33050            ! win32/ext/Win32/Win32.xs win32/perlhost.h win32/win32.c
33051            ! win32/win32.h wince/perlhost.h wince/win32.h wince/wince.c
33052 ____________________________________________________________________________
33053 [ 26040] By: stevep                                on 2005/11/08  00:41:51
33054         Log: Updated perldiag.pod entry for "Can't use subscript..."
33055      Branch: perl
33056            ! pod/perldiag.pod
33057 ____________________________________________________________________________
33058 [ 26039] By: nicholas                              on 2005/11/07  21:31:16
33059         Log: Merge pp_slt, pp_sgt and pp_sge into pp_sle. (The most commonly used
33060              of the 4. Not that any are that popular.)
33061      Branch: perl
33062            ! mathoms.c opcode.h opcode.pl pp.c
33063 ____________________________________________________________________________
33064 [ 26038] By: stevep                                on 2005/11/07  18:35:47
33065         Log: Subject: [PATCH] Re: [perl #36061] Not OK: perl v5.8.7 on darwin-2level 8.1.0 (UNINSTALLED)
33066              From: shouldbedomo@mac.com (Dominic Dunlop)
33067              Date: Mon, 7 Nov 2005 18:24:50 +0100
33068              Message-ID: <B9D07EB3-DF78-48A9-90C4-AF3A89AAB7C6@mac.com>
33069              
33070              README.macosx updates
33071      Branch: perl
33072            ! README.macosx
33073 ____________________________________________________________________________
33074 [ 26037] By: nicholas                              on 2005/11/07  15:21:01
33075         Log: s/Nick Clark/Nicholas Clark/
33076      Branch: perl
33077            ! Changes Changes5.8 doio.c t/op/lc.t
33078 ____________________________________________________________________________
33079 [ 26036] By: nicholas                              on 2005/11/07  15:18:51
33080         Log: For each test function, test it as is, and with extra data appended
33081              after each test character.
33082      Branch: perl
33083            ! t/uni/case.pl
33084 ____________________________________________________________________________
33085 [ 26035] By: nicholas                              on 2005/11/07  14:05:25
33086         Log: The rarely used lcfirst and ucfirst share almost all their code.
33087              Merge the two as pp_ucfirst.
33088      Branch: perl
33089            ! mathoms.c opcode.h opcode.pl pp.c
33090 ____________________________________________________________________________
33091 [ 26034] By: nicholas                              on 2005/11/07  13:22:35
33092         Log: Fix bug #37628 (both lcfirst and ucfirst)
33093      Branch: perl
33094            ! pp.c t/uni/case.pl t/uni/lower.t t/uni/title.t t/uni/upper.t
33095 ____________________________________________________________________________
33096 [ 26033] By: rgs                                   on 2005/11/07  12:26:29
33097         Log: Subject: [PATCH] Cleaning up x2p directory
33098              From: Andy Lester <andy@petdance.com>
33099              Date: Fri, 4 Nov 2005 15:13:55 -0600
33100              Message-ID: <20051104211355.GB12651@petdance.com>
33101      Branch: perl
33102            - x2p/proto.h
33103            ! MANIFEST x2p/EXTERN.h x2p/INTERN.h x2p/a2p.h x2p/a2py.c
33104            ! x2p/hash.c x2p/hash.h x2p/str.c x2p/str.h x2p/util.c
33105            ! x2p/util.h x2p/walk.c
33106 ____________________________________________________________________________
33107 [ 26032] By: rgs                                   on 2005/11/07  12:20:59
33108         Log: Subject: [PATCH] Missing static declarations 
33109              From: Gisle Aas <gisle@ActiveState.com>
33110              Date: 05 Nov 2005 05:08:03 -0800
33111              Message-ID: <lracgj1bv0.fsf@caliper.activestate.com>
33112      Branch: perl
33113            ! genpacksizetables.pl pp_pack.c
33114 ____________________________________________________________________________
33115 [ 26031] By: rgs                                   on 2005/11/07  11:49:46
33116         Log: Remove CPAN.pm's META.yml.
33117              Add CPAN.pm's SIGNATURE in MANIFEST.
33118      Branch: perl
33119            - lib/CPAN/META.yml
33120            ! MANIFEST
33121 ____________________________________________________________________________
33122 [ 26030] By: rgs                                   on 2005/11/07  11:39:57
33123         Log: Subject: [PATCH] Symbian update blead@26025
33124              From: <jarkko.hietaniemi@nokia.com>
33125              Date: Mon, 7 Nov 2005 13:32:15 +0200
33126              Message-ID: <B356D8F434D20B40A8CEDAEC305A1F24E7A70C@esebe105.NOE.Nokia.com>
33127      Branch: perl
33128            + symbian/PerlUi.cpp symbian/PerlUi.h symbian/PerlUi.hrh
33129            + symbian/PerlUiS60.rss symbian/PerlUiS80.rss
33130            + symbian/PerlUiUIQ.rss symbian/ext/Moped/Msg/Msg.mmp
33131            + symbian/ext/Moped/Msg/Msg.pkg symbian/ext/Moped/Msg/Msg.pm
33132            + symbian/ext/Moped/Msg/Msg.xs symbian/ext/Moped/Msg/README
33133            + symbian/ext/Moped/Msg/bld.inf
33134            + symbian/ext/Moped/Msg/location.pl
33135            - symbian/PerlAppS60.rss symbian/PerlAppS80.rss
33136            - symbian/PerlAppUIQ.rss
33137            ! MANIFEST doio.c perl.c symbian/PerlApp.cpp symbian/PerlApp.h
33138            ! symbian/PerlApp.hrh symbian/PerlBase.h symbian/TODO
33139            ! symbian/config.pl symbian/config.sh symbian/sanity.pl
33140            ! symbian/sdk.pl symbian/sisify.pl symbian/symbian_proto.h
33141            ! symbian/symbian_utils.cpp symbian/symbianish.h
33142            ! symbian/xsbuild.pl
33143 ____________________________________________________________________________
33144 [ 26029] By: nicholas                              on 2005/11/07  10:52:08
33145         Log: Add lib/CPAN/Admin.pm from CPAN to make version.t pass.
33146      Branch: perl
33147            + lib/CPAN/Admin.pm
33148            ! MANIFEST
33149 ____________________________________________________________________________
33150 [ 26028] By: rgs                                   on 2005/11/07  10:24:54
33151         Log: Subject: [PATCH] Consting and localizing: Part LXVIII
33152              From: Andy Lester <andy@petdance.com>
33153              Date: Fri, 4 Nov 2005 15:12:56 -0600
33154              Message-ID: <20051104211256.GA12651@petdance.com>
33155      Branch: perl
33156            ! deb.c embed.fnc embed.h locale.c pp_sys.c proto.h scope.c
33157            ! universal.c utf8.c util.c
33158 ____________________________________________________________________________
33159 [ 26027] By: rgs                                   on 2005/11/07  09:58:26
33160         Log: Subject: [perl #24254] Attempt to free unreferenced scalar 
33161              From: "Chris Heath via RT" <perlbug-followup@perl.org>
33162              Date: Sun, 06 Nov 2005 20:08:05 -0800
33163              Message-ID: <rt-3.0.11-24254-123984.4.44134155985068@perl.org>
33164      Branch: perl
33165            ! cop.h
33166 ____________________________________________________________________________
33167 [ 26026] By: merijn                                on 2005/11/07  08:14:59
33168         Log: Subject: [PATCH] follow up on 25969 for VMS
33169              From: Abe Timmerman <abe@ztreet.demon.nl>
33170              Date: Sat, 5 Nov 2005 13:29:58 +0200
33171              Message-Id: <200511051229.58297.abe@ztreet.demon.nl>
33172      Branch: perl
33173            ! vms/vms.c vms/vmsish.h
33174 ____________________________________________________________________________
33175 [ 26025] By: stevep                                on 2005/11/07  03:42:53
33176         Log: Added note to README.macosx regarding failures from broken locale
33177              files.
33178      Branch: perl
33179            ! README.macosx
33180 ____________________________________________________________________________
33181 [ 26024] By: stevep                                on 2005/11/07  02:58:31
33182         Log: Fix documentation for gmtime().
33183      Branch: perl
33184            ! pod/perlfunc.pod
33185 ____________________________________________________________________________
33186 [ 26023] By: stevep                                on 2005/11/06  20:18:23
33187         Log: Upgrade to CPAN-1.76_61
33188      Branch: perl
33189            + lib/CPAN/PAUSE2005.pub
33190            ! MANIFEST lib/CPAN.pm lib/CPAN/FirstTime.pm lib/CPAN/META.yml
33191            ! lib/CPAN/Nox.pm lib/CPAN/SIGNATURE lib/CPAN/Version.pm
33192            ! lib/CPAN/bin/cpan lib/CPAN/t/Nox.t lib/CPAN/t/vcmp.t
33193            ! lib/CPAN/t/version.t
33194 ____________________________________________________________________________
33195 [ 26022] By: stevep                                on 2005/11/06  19:16:54
33196         Log: Nits in the pp_defined code spotted by Jarkko.
33197      Branch: perl
33198            ! pp_hot.c
33199 ____________________________________________________________________________
33200 [ 26021] By: stevep                                on 2005/11/06  18:38:02
33201         Log: Upgrade to Time-HiRes-1.82
33202      Branch: perl
33203            ! ext/Time/HiRes/Changes ext/Time/HiRes/HiRes.pm
33204            ! ext/Time/HiRes/HiRes.xs ext/Time/HiRes/Makefile.PL
33205            ! ext/Time/HiRes/t/HiRes.t
33206 ____________________________________________________________________________
33207 [ 26020] By: merijn                                on 2005/11/06  07:23:15
33208         Log: Subject: Re: [PATCH configure.com] add the new d_futimes as undef
33209              From: "John E. Malmberg" <wb8tyw@qsl.net>
33210              Date: Sat, 05 Nov 2005 21:28:33 -0500
33211              Message-ID: <436D6A51.5040700@qsl.net>
33212      Branch: perl
33213            ! configure.com
33214 ____________________________________________________________________________
33215 [ 26019] By: nicholas                              on 2005/11/05  16:47:31
33216         Log: Make the 5.9 changes to B conditional on perl version.
33217      Branch: perl
33218            ! ext/B/B.pm ext/B/B.xs
33219 ____________________________________________________________________________
33220 [ 26018] By: nicholas                              on 2005/11/05  16:28:09
33221         Log: '[at]' should be '@'
33222              Suck in CPAN/Nox.pm from CPAN, so that version.t passes.
33223      Branch: perl
33224            ! lib/CPAN.pm lib/CPAN/Nox.pm lib/CPAN/Version.pm
33225            ! lib/CPAN/t/version.t
33226 ____________________________________________________________________________
33227 [ 26017] By: stevep                                on 2005/11/05  14:49:11
33228         Log: Kill warnings and add a panic to pp_defined() in case the wrong op
33229              is passed in.
33230      Branch: perl
33231            ! pp_hot.c
33232 ____________________________________________________________________________
33233 [ 26016] By: stevep                                on 2005/11/05  13:44:10
33234         Log: Upgrade to CPAN-1.76_60.
33235      Branch: perl
33236            + lib/CPAN/Version.pm lib/CPAN/t/version.t
33237            ! MANIFEST lib/CPAN.pm lib/CPAN/FirstTime.pm lib/CPAN/t/Nox.t
33238            ! lib/CPAN/t/loadme.t lib/CPAN/t/mirroredby.t lib/CPAN/t/vcmp.t
33239 ____________________________________________________________________________
33240 [ 26015] By: nicholas                              on 2005/11/05  12:57:40
33241         Log: Allow passing of the full enum name into the tryAMAGICbin family of
33242              macros, to avoid needing C pre-processor string concatenation within
33243              the lowest level expansion.
33244      Branch: perl
33245            ! pp.c pp.h
33246 ____________________________________________________________________________
33247 [ 26014] By: stevep                                on 2005/11/05  12:55:47
33248         Log: Upgrade to Time-HiRes-1.81
33249      Branch: perl
33250            ! ext/Time/HiRes/Changes ext/Time/HiRes/HiRes.pm
33251            ! ext/Time/HiRes/HiRes.xs ext/Time/HiRes/t/HiRes.t
33252 ____________________________________________________________________________
33253 [ 26013] By: merijn                                on 2005/11/05  11:38:32
33254         Log: Subject: [PATCH configure.com] add the new d_futimes as undef
33255              From: Abe Timmerman <abe@ztreet.demon.nl>
33256              Date: Sat, 5 Nov 2005 11:26:33 +0200
33257              Message-Id: <200511051026.33940.abe@ztreet.demon.nl>
33258      Branch: perl
33259            ! configure.com
33260 ____________________________________________________________________________
33261 [ 26012] By: rgs                                   on 2005/11/05  10:13:56
33262         Log: Remove the obsolete KNOWN PROBLEMS sections from perlcall.pod
33263              (noticed by Robin Houston)
33264      Branch: perl
33265            ! pod/perlcall.pod
33266 ____________________________________________________________________________
33267 [ 26011] By: rgs                                   on 2005/11/05  10:10:09
33268         Log: Subject: Re: A surprising segfault
33269              From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
33270              Date: Nov 5, 2005 5:54 AM
33271              Message-Id: <20051105135053.27D7.BQW10602@nifty.com>
33272      Branch: perl
33273            ! pp.c pp_sort.c pp_sys.c
33274 ____________________________________________________________________________
33275 [ 26010] By: nicholas                              on 2005/11/05  08:32:39
33276         Log: dorassign doesn't need --SP;
33277      Branch: perl
33278            ! pp_hot.c
33279 ____________________________________________________________________________
33280 [ 26009] By: davem                                 on 2005/11/05  01:57:23
33281         Log: pp_print didn't extend the stack before pushing its return value
33282      Branch: perl
33283            ! pp_hot.c
33284 ____________________________________________________________________________
33285 [ 26008] By: stevep                                on 2005/11/05  01:39:51
33286         Log: Typos in opcode.pl this time.
33287      Branch: perl
33288            ! opcode.h opcode.pl
33289 ____________________________________________________________________________
33290 [ 26007] By: stevep                                on 2005/11/05  01:36:17
33291         Log: Merge pp_andassign, pp_orassign, and pp_dorassign into pp_and,
33292              pp_or, and pp_defined, respectively.
33293      Branch: perl
33294            ! mathoms.c opcode.h opcode.pl pp_ctl.c pp_hot.c
33295 ____________________________________________________________________________
33296 [ 26006] By: nicholas                              on 2005/11/04  22:50:22
33297         Log: s/printf/my_printf/ because we're using the return value.
33298              My mistake spotted by Gisle.
33299      Branch: perl
33300            ! regcomp.c
33301 ____________________________________________________________________________
33302 [ 26005] By: stevep                                on 2005/11/04  21:41:43
33303         Log: s/pp_dor/pp_defined/
33304      Branch: perl
33305            ! mathoms.c
33306 ____________________________________________________________________________
33307 [ 26004] By: stevep                                on 2005/11/04  21:39:44
33308         Log: I barely knew ya pp_dor.  Merged into pp_defined from whence you came.
33309              This change has also caused pp_defined to be promoted to being a hot
33310              op.
33311      Branch: perl
33312            ! mathoms.c opcode.h opcode.pl pp.c pp_hot.c
33313 ____________________________________________________________________________
33314 [ 26003] By: nicholas                              on 2005/11/04  21:22:46
33315         Log: Use the return value of sprintf in sv_2pv_flags. Remove dead code.
33316      Branch: perl
33317            ! sv.c
33318 ____________________________________________________________________________
33319 [ 26002] By: nicholas                              on 2005/11/04  21:03:58
33320         Log: You can't there from here. (Dead code in sv_2pv_flags)
33321      Branch: perl
33322            ! sv.c
33323 ____________________________________________________________________________
33324 [ 26001] By: nicholas                              on 2005/11/04  20:47:34
33325         Log: Use the return value from sprintf().
33326      Branch: perl
33327            ! regcomp.c taint.c universal.c util.c
33328 ____________________________________________________________________________
33329 [ 26000] By: nicholas                              on 2005/11/04  20:20:56
33330         Log: pp_semop can fit within Perl_pp_shmwrite().
33331      Branch: perl
33332            ! mathoms.c opcode.h opcode.pl pp_sys.c
33333 ____________________________________________________________________________
33334 [ 25999] By: nicholas                              on 2005/11/04  19:53:33
33335         Log: The remaining special logic in pp_syswrite can be moved into pp_send,
33336              which is actually already 50% syswrite.
33337      Branch: perl
33338            ! mathoms.c opcode.h opcode.pl pp_sys.c
33339 ____________________________________________________________________________
33340 [ 25998] By: rgs                                   on 2005/11/04  18:38:34
33341         Log: Revert patch #25993.
33342      Branch: perl
33343            ! regexec.c t/op/pat.t
33344 ____________________________________________________________________________
33345 [ 25997] By: steveh                                on 2005/11/04  17:23:49
33346         Log: Fix a Win32 linker error following change #25972
33347      Branch: perl
33348            ! pp_sys.c
33349 ____________________________________________________________________________
33350 [ 25996] By: rgs                                   on 2005/11/04  16:35:17
33351         Log: Subject: [PATCH] use clearenv if available
33352              From: Alan Burlison <Alan.Burlison@sun.com>
33353              Date: Fri, 04 Nov 2005 16:33:30 +0000
33354              Message-ID: <436B8D5A.4010502@sun.com>
33355      Branch: perl
33356            ! embed.fnc embed.h mg.c proto.h sv.c util.c
33357 ____________________________________________________________________________
33358 [ 25995] By: merijn                                on 2005/11/04  16:30:03
33359         Log: Subject: Re: futimes [PATCH]
33360              From: Steve Peters <steve@fisharerojo.org>
33361              Date: Fri, 4 Nov 2005 09:00:25 -0600
33362              Message-ID: <20051104150025.GA3873@mccoy.peters.homeunix.org>
33363      Branch: perl
33364            ! Configure
33365 ____________________________________________________________________________
33366 [ 25993] By: rgs                                   on 2005/11/04  16:26:08
33367         Log: Subject: [perl #19049] Incorrect $` after replacement
33368              From: andreas.koenig.gmwojprw@franz.ak.mind.de (Andreas J. Koenig)
33369              Date: Fri, 04 Nov 2005 08:17:25 +0100
33370              Message-ID: <87fyqc51bu.fsf@k75.linux.bogus>
33371      Branch: perl
33372            ! regexec.c t/op/pat.t
33373 ____________________________________________________________________________
33374 [ 25992] By: rgs                                   on 2005/11/04  15:41:21
33375         Log: Subject: Re: [PATCH] sort/multicall patch
33376              From: Robin Houston <robin@cpan.org>
33377              Date: Fri, 4 Nov 2005 15:20:29 +0000
33378              Message-ID: <20051104152029.GA17169@rpc142.cs.man.ac.uk>
33379      Branch: perl
33380            ! pp_ctl.c t/op/sort.t
33381 ____________________________________________________________________________
33382 [ 25991] By: stevep                                on 2005/11/04  15:10:44
33383         Log: Subject: Re: Configure -Dno_mathoms
33384              From: gisle@ActiveState.com (Gisle Aas)
33385              Date: 01 Nov 2005 03:27:49 -0800
33386              Message-ID: <lrslug7glm.fsf@caliper.activestate.com>
33387      Branch: perl
33388            ! mathoms.c perl.c
33389 ____________________________________________________________________________
33390 [ 25990] By: nicholas                              on 2005/11/04  14:47:49
33391         Log: Merge msgsnd, msgrcv with Perl_pp_shmwrite().
33392              "Perfection is achieved not when there's nothing more to add,
33393              but when there's nothing left to remove" (Antoine de Saint-Exupéry)
33394      Branch: perl
33395            ! mathoms.c opcode.h opcode.pl pp_sys.c
33396 ____________________________________________________________________________
33397 [ 25989] By: nicholas                              on 2005/11/04  14:21:19
33398         Log: Once more, with feeling.
33399              [Mmm, has someone been swapping the coffee for decaf?]
33400              [Actual cause - make sure the edited version of the file is in the
33401              correct directory]
33402      Branch: perl
33403            ! pod/perldiag.pod
33404 ____________________________________________________________________________
33405 [ 25988] By: nicholas                              on 2005/11/04  14:18:14
33406         Log: Meta-oops. Change 25987 was not the change you were looking for.
33407      Branch: perl
33408            ! pod/perldiag.pod
33409 ____________________________________________________________________________
33410 [ 25987] By: nicholas                              on 2005/11/04  14:09:11
33411         Log: Oops. This new panic was meant to be added to the documented
33412              diagnostics.
33413      Branch: perl
33414            ! pod/perldiag.pod
33415 ____________________________________________________________________________
33416 [ 25986] By: nicholas                              on 2005/11/04  13:02:42
33417         Log: ftrwrite, ftrexec, fteread, ftewrite and fteexec can all be merged
33418              with Perl_pp_ftrread().
33419      Branch: perl
33420            ! mathoms.c opcode.h opcode.pl pod/perldiag.pod pod/perltodo.pod
33421            ! pp_sys.c
33422 ____________________________________________________________________________
33423 [ 25985] By: stevep                                on 2005/11/04  12:02:51
33424         Log: Upgrade to Time-HiRes-1.80
33425      Branch: perl
33426            ! ext/Time/HiRes/Changes ext/Time/HiRes/HiRes.pm
33427            ! ext/Time/HiRes/HiRes.xs
33428 ____________________________________________________________________________
33429 [ 25984] By: nicholas                              on 2005/11/04  11:36:24
33430         Log: PERL_EFF_ACCESS_[RWX]_OK can go.
33431      Branch: perl
33432            ! pp_sys.c
33433 ____________________________________________________________________________
33434 [ 25983] By: nicholas                              on 2005/11/04  11:16:08
33435         Log: The PERL_EFF_ACCESS_[RWX]_OK macros are all defined as triples, so
33436              can be refactored to a single platform dependent PERL_EFF_ACCESS macro
33437              with the other 3 implemented in terms of it.
33438      Branch: perl
33439            ! pp_sys.c
33440 ____________________________________________________________________________
33441 [ 25982] By: merijn                                on 2005/11/04  09:16:53
33442         Log: Subject: [PATCH] bad semicolon in pp_ftrowned
33443              From: Andy Lester <andy@petdance.com>
33444              Date: Fri, 4 Nov 2005 00:37:54 -0600
33445              Message-ID: <20051104063753.GA3863@petdance.com>
33446      Branch: perl
33447            ! pp_sys.c
33448 ____________________________________________________________________________
33449 [ 25981] By: stevep                                on 2005/11/04  00:10:21
33450         Log: Upgrade to Time-HiRes 1.79
33451      Branch: perl
33452            ! ext/Time/HiRes/Changes ext/Time/HiRes/HiRes.pm
33453            ! ext/Time/HiRes/HiRes.xs ext/Time/HiRes/t/HiRes.t
33454 ____________________________________________________________________________
33455 [ 25980] By: stevep                                on 2005/11/03  21:23:48
33456         Log: Reverting the reversion.  va_end() goes with va_start().
33457      Branch: perl
33458            ! mg.c
33459 ____________________________________________________________________________
33460 [ 25979] By: rgs                                   on 2005/11/03  21:07:54
33461         Log: Fix test failures introduced by the change of flags on op_sort
33462      Branch: perl
33463            ! ext/B/t/f_sort.t
33464 ____________________________________________________________________________
33465 [ 25978] By: stevep                                on 2005/11/03  20:28:20
33466         Log: Upgrade to Time-HiRes-1.78
33467      Branch: perl
33468            ! ext/Time/HiRes/Changes ext/Time/HiRes/HiRes.pm
33469            ! ext/Time/HiRes/t/HiRes.t
33470 ____________________________________________________________________________
33471 [ 25977] By: stevep                                on 2005/11/03  17:27:58
33472         Log: Change #25976 seemed to cause test failures in ext/B/t/f_sort.t.  What
33473              was that line about Jenga again?
33474      Branch: perl
33475            ! mg.c
33476 ____________________________________________________________________________
33477 [ 25976] By: stevep                                on 2005/11/03  17:14:17
33478         Log: Missing va_end(args) from SA_SIGINFO related code.
33479      Branch: perl
33480            ! mg.c
33481 ____________________________________________________________________________
33482 [ 25975] By: stevep                                on 2005/11/03  16:00:12
33483         Log: Test for the right signal should use the constant for that signal.
33484      Branch: perl
33485            ! ext/POSIX/t/sigaction.t
33486 ____________________________________________________________________________
33487 [ 25974] By: stevep                                on 2005/11/03  15:07:26
33488         Log: Add appropriate skips to t/io/fs.t to fix test failures on Cygwin.
33489      Branch: perl
33490            ! t/io/fs.t
33491 ____________________________________________________________________________
33492 [ 25973] By: stevep                                on 2005/11/03  14:56:25
33493         Log: More core test cleanups.  Mainly fixes to remove code that caused 
33494              warnings, but there were a few bug fixes that were hidden by 
33495              no using warnings.
33496      Branch: perl
33497            ! t/io/nargv.t t/io/openpid.t t/io/pipe.t t/io/print.t
33498            ! t/io/read.t t/io/tell.t
33499 ____________________________________________________________________________
33500 [ 25972] By: nicholas                              on 2005/11/03  14:19:34
33501         Log: Perl_pp_symlink and Perl_pp_link can be merged. The diff looks evil,
33502              but the actual finished code is not as bad as it seems.
33503      Branch: perl
33504            ! mathoms.c opcode.h opcode.pl pp_sys.c
33505 ____________________________________________________________________________
33506 [ 25971] By: rgs                                   on 2005/11/03  12:29:18
33507         Log: Document some bogus compiler warnings in README.solaris
33508              
33509              Subject: Re: Why is malloc_wrap now the default?
33510              From: Alan Burlison <Alan.Burlison@sun.com>
33511              Date: Thu, 03 Nov 2005 12:54:16 +0000
33512              Message-ID: <436A0878.1030703@sun.com>
33513      Branch: perl
33514            ! README.solaris
33515 ____________________________________________________________________________
33516 [ 25970] By: stevep                                on 2005/11/03  11:37:31
33517         Log: Upgrade to Time-HiRes-1.77
33518      Branch: perl
33519            ! ext/Time/HiRes/Changes ext/Time/HiRes/HiRes.pm
33520            ! ext/Time/HiRes/HiRes.xs ext/Time/HiRes/Makefile.PL
33521            ! ext/Time/HiRes/fallback/const-c.inc
33522            ! ext/Time/HiRes/fallback/const-xs.inc ext/Time/HiRes/t/HiRes.t
33523 ____________________________________________________________________________
33524 [ 25969] By: nicholas                              on 2005/11/03  11:09:39
33525         Log: Patch 3945 was a bit overkeen - the effective parameter to cando() and
33526              ingroup() is a boolean flag, not a GID or UID.
33527      Branch: perl
33528            ! doio.c embed.fnc proto.h
33529 ____________________________________________________________________________
33530 [ 25968] By: nicholas                              on 2005/11/03  09:51:56
33531         Log: Avoiding source code duplication for the lstat() on filehandle %s
33532              warning also makes the object code slightly smaller.
33533      Branch: perl
33534            ! pp_sys.c
33535 ____________________________________________________________________________
33536 [ 25967] By: stevep                                on 2005/11/03  02:09:30
33537         Log: Clean up some test files.
33538      Branch: perl
33539            ! t/io/argv.t t/io/crlf_through.t t/io/dup.t t/io/layers.t
33540            ! t/io/through.t
33541 ____________________________________________________________________________
33542 [ 25966] By: stevep                                on 2005/11/03  01:45:45
33543         Log: Make harness warning-free when running with -Mdiagnostics
33544      Branch: perl
33545            ! t/harness
33546 ____________________________________________________________________________
33547 [ 25965] By: stevep                                on 2005/11/02  22:37:48
33548         Log: Test case should not execute /no_such_process if it does exist.
33549      Branch: perl
33550            ! t/io/pipe.t
33551 ____________________________________________________________________________
33552 [ 25964] By: nicholas                              on 2005/11/02  21:27:58
33553         Log: unlink chmod utime kill can be merged into Perl_pp_chown().
33554      Branch: perl
33555            ! mathoms.c opcode.h opcode.pl pp_sys.c
33556 ____________________________________________________________________________
33557 [ 25963] By: nicholas                              on 2005/11/02  20:59:52
33558         Log: Move the conditonal compiles that report absence of kill and chown
33559              from pp_kill() and pp_chown() into apply().
33560      Branch: perl
33561            ! doio.c pp_sys.c
33562 ____________________________________________________________________________
33563 [ 25962] By: nicholas                              on 2005/11/02  20:13:24
33564         Log: Move ftsuid ftsgid ftsvtx into Perl_pp_ftrowned.
33565      Branch: perl
33566            ! mathoms.c opcode.h opcode.pl pp_sys.c
33567 ____________________________________________________________________________
33568 [ 25961] By: nicholas                              on 2005/11/02  19:04:10
33569         Log: Merge ftzero ftsock ftchr ftblk ftfile ftdir ftpipe into
33570              Perl_pp_ftrowned
33571      Branch: perl
33572            ! mathoms.c opcode.h opcode.pl pp_sys.c
33573 ____________________________________________________________________________
33574 [ 25960] By: nicholas                              on 2005/11/02  17:24:35
33575         Log: Avoid a pad panic by attempting to use dTARGET; in an op that didn't
33576              flag that it needed a target (OP_FTIS)
33577      Branch: perl
33578            ! pp_sys.c
33579 ____________________________________________________________________________
33580 [ 25959] By: nicholas                              on 2005/11/02  16:35:42
33581         Log: Correct error in 25958 for threaded builds.
33582      Branch: perl
33583            ! mathoms.c
33584 ____________________________________________________________________________
33585 [ 25958] By: nicholas                              on 2005/11/02  15:59:30
33586         Log: Merge ftsize ftmtime ftatime ftctime into Perl_pp_ftis
33587      Branch: perl
33588            ! mathoms.c opcode.h opcode.pl pp_sys.c
33589 ____________________________________________________________________________
33590 [ 25957] By: rgs                                   on 2005/11/02  14:33:32
33591         Log: Remove last sort test, that was failing with and without threads.
33592              Silence some warnings.
33593      Branch: perl
33594            ! t/op/sort.t
33595 ____________________________________________________________________________
33596 [ 25956] By: rgs                                   on 2005/11/02  14:10:54
33597         Log: Adjust test count
33598      Branch: perl
33599            ! ext/B/t/concise-xs.t
33600 ____________________________________________________________________________
33601 [ 25955] By: rgs                                   on 2005/11/02  13:39:35
33602         Log: Add missing file from change 25953
33603      Branch: perl
33604            + ext/List/Util/multicall.h
33605 ____________________________________________________________________________
33606 [ 25954] By: rgs                                   on 2005/11/02  13:14:19
33607         Log: Regen headers
33608      Branch: perl
33609            ! global.sym opcode.h pod/perlapi.pod pod/perldiag.pod
33610 ____________________________________________________________________________
33611 [ 25953] By: merijn                                on 2005/11/02  12:49:54
33612         Log: Subject: [PATCH] sort/multicall patch
33613              From: Robin Houston <robin@cpan.org>
33614              Date: Sat, 29 Oct 2005 21:33:07 +0100
33615              Message-ID: <20051029203307.GA8869@rpc142.cs.man.ac.uk>
33616      Branch: perl
33617            ! AUTHORS MANIFEST cop.h embed.fnc embedvar.h
33618            ! ext/List/Util/Util.xs ext/List/Util/lib/List/Util.pm
33619            ! ext/List/Util/lib/Scalar/Util.pm ext/List/Util/t/first.t
33620            ! ext/List/Util/t/p_first.t ext/List/Util/t/p_reduce.t
33621            ! ext/List/Util/t/p_tainted.t ext/List/Util/t/reduce.t
33622            ! ext/List/Util/t/refaddr.t ext/List/Util/t/tainted.t makedef.pl
33623            ! op.c opcode.pl perlapi.h pod/perlcall.pod pod/perldiag.pod
33624            ! pp_ctl.c pp_hot.c pp_sort.c sv.c t/op/sort.t t/op/threads.t
33625            ! thrdvar.h
33626 ____________________________________________________________________________
33627 [ 25952] By: steveh                                on 2005/11/02  09:41:25
33628         Log: Subject: [PATCH] RE: [perl #37571] -z FH broken with Borland  build   
33629              From: "Paul Marquess" <paul.marquess@ntlworld.com>
33630              Date: Tue, 1 Nov 2005 17:05:38 -0000
33631              Message-ID: <003501c5df06$7d63fdb0$0505140a@myopwv.com>
33632      Branch: perl
33633            ! t/op/stat.t win32/win32.c
33634 ____________________________________________________________________________
33635 [ 25951] By: rgs                                   on 2005/11/02  08:57:52
33636         Log: Subject: Re: futimes [PATCH]
33637              From: Gisle Aas <gisle@ActiveState.com>
33638              Date: 01 Nov 2005 00:02:37 -0800
33639              Message-ID: <lrbr1494o2.fsf@caliper.activestate.com>
33640      Branch: perl
33641            ! t/io/fs.t
33642 ____________________________________________________________________________
33643 [ 25950] By: stevep                                on 2005/11/02  04:59:47
33644         Log: Ambiguous test cases may be hazardous to your health.
33645      Branch: perl
33646            ! t/op/list.t
33647 ____________________________________________________________________________
33648 [ 25949] By: stevep                                on 2005/11/02  04:54:52
33649         Log: Lowercase barewords considered harmful to your health.
33650      Branch: perl
33651            ! t/io/fs.t
33652 ____________________________________________________________________________
33653 [ 25948] By: rgs                                   on 2005/11/01  19:23:23
33654         Log: Subject: [PATCH] perlio.c consting
33655              From: Andy Lester <andy@petdance.com>
33656              Date: Oct 31, 2005 6:54 PM
33657              Message-ID: <20051031175411.GA18480@petdance.com>
33658      Branch: perl
33659            ! op.c perlio.c
33660 ____________________________________________________________________________
33661 [ 25947] By: steveh                                on 2005/11/01  17:20:18
33662         Log: This *really* should clear up Win32's Perl_do_exec undefined warnings
33663      Branch: perl
33664            ! perl.h
33665 ____________________________________________________________________________
33666 [ 25946] By: nicholas                              on 2005/11/01  16:38:31
33667         Log: This should clear up 'Perl_do_exec' undefined; warnings on win32
33668      Branch: perl
33669            ! embed.fnc embed.h proto.h
33670 ____________________________________________________________________________
33671 [ 25945] By: steveh                                on 2005/11/01  10:33:48
33672         Log: Make PerlLIOUtime()'s filename const
33673              
33674              Fixes a warning brought about by change #25941 (which made the
33675              filename argument const).
33676              The various implementations of PerlLIOUtime() (in NetWare/, win32/
33677              and wince/) already take a const filename.
33678      Branch: perl
33679            ! NetWare/nwperlhost.h NetWare/nwperlsys.h iperlsys.h
33680            ! win32/perlhost.h wince/perlhost.h
33681 ____________________________________________________________________________
33682 [ 25944] By: steveh                                on 2005/11/01  08:45:09
33683         Log: Fix nit in pod nit fix
33684      Branch: perl
33685            ! pod/perlhack.pod
33686 ____________________________________________________________________________
33687 [ 25943] By: steveh                                on 2005/11/01  08:39:32
33688         Log: Update win32 config files w.r.t. change #25935
33689      Branch: perl
33690            ! win32/config.bc win32/config.gc win32/config.vc
33691            ! win32/config.vc64 win32/config_H.bc win32/config_H.gc
33692            ! win32/config_H.vc win32/config_H.vc64
33693 ____________________________________________________________________________
33694 [ 25942] By: stevep                                on 2005/10/31  23:46:01
33695         Log: Upgrade to DB_File 1.813.
33696      Branch: perl
33697            ! ext/DB_File/Changes ext/DB_File/DB_File.pm
33698            ! ext/DB_File/DB_File.xs ext/DB_File/t/db-recno.t
33699 ____________________________________________________________________________
33700 [ 25941] By: merijn                                on 2005/10/31  22:15:01
33701         Log: Subject: futimes [PATCH]
33702              From: Gisle Aas <gisle@ActiveState.com>
33703              Date: 31 Oct 2005 13:53:53 -0800
33704              Message-ID: <lrk6ft8ia6.fsf_-_@caliper.activestate.com>
33705      Branch: perl
33706            ! doio.c handy.h pod/perlfunc.pod t/io/fs.t
33707 ____________________________________________________________________________
33708 [ 25940] By: nicholas                              on 2005/10/31  20:36:36
33709         Log: All the ops that are simply C<return some_other_op();> can be bypassed
33710              in the op dispatch table, and the bodies retired.
33711      Branch: perl
33712            ! mathoms.c opcode.h opcode.pl pp.c pp_ctl.c pp_sys.c
33713 ____________________________________________________________________________
33714 [ 25939] By: nicholas                              on 2005/10/31  19:55:18
33715         Log: Simplify the implementation of the "unimplemented" message in the
33716              conditionally compiled ops.
33717      Branch: perl
33718            ! pp_sys.c
33719 ____________________________________________________________________________
33720 [ 25938] By: nicholas                              on 2005/10/31  19:14:47
33721         Log: Further pod nit spotted by Jarkko
33722      Branch: perl
33723            ! pod/perlhack.pod
33724 ____________________________________________________________________________
33725 [ 25937] By: nicholas                              on 2005/10/31  18:34:59
33726         Log: Replace the 3 currently "unreachable" ops with a single op body
33727              unimplemented_op() that panics descriptively if ever reached.
33728      Branch: perl
33729            ! opcode.h opcode.pl pod/perldiag.pod pp.c
33730 ____________________________________________________________________________
33731 [ 25936] By: nicholas                              on 2005/10/31  18:29:05
33732         Log: Add "moving common filetest code to a static function" to the todo.
33733      Branch: perl
33734            ! pod/perltodo.pod
33735 ____________________________________________________________________________
33736 [ 25935] By: merijn                                on 2005/10/31  17:50:05
33737         Log: revive probe for futimes ()
33738      Branch: perl
33739            ! Configure Porting/Glossary config_h.SH handy.h
33740 ____________________________________________________________________________
33741 [ 25934] By: rgs                                   on 2005/10/31  17:00:44
33742         Log: A B::Deparse fix from :
33743              Subject: Re: [perl #37527] regular-expression parser does not see '(' character
33744              From: Bas van Sisseren <bas@quarantainenet.nl>
33745              Date: Wed, 26 Oct 2005 13:59:42 +0200
33746              Message-ID: <435F6FAE.4060502@quarantainenet.nl>
33747      Branch: perl
33748            ! ext/B/B/Deparse.pm
33749 ____________________________________________________________________________
33750 [ 25933] By: merijn                                on 2005/10/31  16:25:23
33751         Log: Subject: [PATCH] Symbian port 0.3.0 as of blead@25911
33752              From: <jarkko.hietaniemi@nokia.com>
33753              Date: Mon, 31 Oct 2005 18:38:42 +0200
33754              Message-ID: <B356D8F434D20B40A8CEDAEC305A1F24E7A6D6@esebe105.NOE.Nokia.com>
33755      Branch: perl
33756            + symbian/PerlAppUIQ.rss
33757            ! MANIFEST README.symbian symbian/PerlApp.cpp symbian/PerlApp.h
33758            ! symbian/PerlApp.hrh symbian/PerlAppAif.rss symbian/config.pl
33759            ! symbian/port.pl symbian/sanity.pl symbian/sdk.pl
33760            ! symbian/sisify.pl symbian/symbian_utils.cpp symbian/xsbuild.pl
33761 ____________________________________________________________________________
33762 [ 25932] By: rgs                                   on 2005/10/31  16:24:31
33763         Log: Avoid corruption when calling mg_get to retrieve the value
33764              of a $digit variable. This is done by ensuring it's not
33765              tainted.
33766              See http://bugs.debian.org/303308
33767              Patch by Chris Heath <chris.heath@autoweb.net>
33768      Branch: perl
33769            ! mg.c
33770 ____________________________________________________________________________
33771 [ 25931] By: nicholas                              on 2005/10/31  16:24:29
33772         Log: maddingue prefers this e-mail address.
33773      Branch: perl
33774            ! AUTHORS
33775 ____________________________________________________________________________
33776 [ 25930] By: merijn                                on 2005/10/31  16:18:03
33777         Log: Try to preserve the lost opcode alias info in comments
33778              extent to change #25929
33779      Branch: perl
33780            ! opcode.h opcode.pl
33781 ____________________________________________________________________________
33782 [ 25929] By: nicholas                              on 2005/10/31  15:52:50
33783         Log: It appears that it's trivially easy to alias opcode functions in
33784              the opcode table. We should be able to get both a speed and size
33785              saving here. Time will tell how much.
33786      Branch: perl
33787            ! opcode.h opcode.pl
33788 ____________________________________________________________________________
33789 [ 25928] By: nicholas                              on 2005/10/31  15:13:06
33790         Log: Add maddingue to AUTHORS
33791      Branch: perl
33792            ! AUTHORS
33793 ____________________________________________________________________________
33794 [ 25927] By: nicholas                              on 2005/10/31  15:09:54
33795         Log: Subject: [PATCH] Making ExtUtils::Constant compatible with Perl 5.004
33796              From: Sébastien Aperghis-Tramoni <maddingue@free.fr>
33797              Message-ID: <1130712761.43654eb9cd9f7@imp4-g19.free.fr>
33798              Date: Sun, 30 Oct 2005 23:52:41 +0100
33799              
33800              with tweaks by chromatic and me.
33801      Branch: perl
33802            ! lib/ExtUtils/Constant.pm
33803 ____________________________________________________________________________
33804 [ 25926] By: nicholas                              on 2005/10/31  14:51:48
33805         Log: A more elegant way to deal with utf8n_to_uvchr() and utf8n_to_uvuni().
33806      Branch: perl
33807            ! embed.fnc embed.h proto.h utf8.c utf8.h
33808 ____________________________________________________________________________
33809 [ 25925] By: rgs                                   on 2005/10/31  14:27:32
33810         Log: Fix [perl #37533] open pragma ignored for all 3-arg opens
33811              Also, correct the documentation in open.pm that stated
33812              that open() did not override open.pm-given default encodings.
33813      Branch: perl
33814            ! lib/open.pm perlio.c
33815 ____________________________________________________________________________
33816 [ 25924] By: nicholas                              on 2005/10/31  14:18:59
33817         Log: Perl_csighandler was in global.sym twice.
33818      Branch: perl
33819            ! global.sym
33820 ____________________________________________________________________________
33821 [ 25923] By: nicholas                              on 2005/10/31  14:18:14
33822         Log: Arrange to only output each symbol once into global.sym
33823      Branch: perl
33824            ! embed.pl
33825 ____________________________________________________________________________
33826 [ 25922] By: rgs                                   on 2005/10/31  13:45:06
33827         Log: Tests for index/rindex with empty search string,
33828              adapted from a patch by Rick Delaney
33829      Branch: perl
33830            ! t/op/index.t
33831 ____________________________________________________________________________
33832 [ 25921] By: nicholas                              on 2005/10/31  13:22:01
33833         Log: uvchr_to_utf8() and utf8n_to_uvchr() are mathoms on ASCII based
33834              systems, and not on EBCDIC, so some more thinking is going to be
33835              needed here.
33836      Branch: perl
33837            ! mathoms.c utf8.c
33838 ____________________________________________________________________________
33839 [ 25920] By: stevep                                on 2005/10/31  11:58:08
33840         Log: Coverage stats showed that there were no tests for taking a slice
33841              from ().
33842      Branch: perl
33843            ! t/op/list.t
33844 ____________________________________________________________________________
33845 [ 25919] By: steveh                                on 2005/10/31  11:53:05
33846         Log: Change some spaces to tabs for easier diffing against config_h.SH
33847      Branch: perl
33848            ! win32/config_H.bc win32/config_H.gc win32/config_H.vc
33849            ! win32/config_H.vc64
33850 ____________________________________________________________________________
33851 [ 25918] By: steveh                                on 2005/10/31  11:30:15
33852         Log: Fixed threaded builds following change 25916
33853      Branch: perl
33854            ! pp_hot.c
33855 ____________________________________________________________________________
33856 [ 25917] By: nicholas                              on 2005/10/31  11:29:43
33857         Log: POD nit spotted by Jarkko
33858      Branch: perl
33859            ! pod/perlhack.pod
33860 ____________________________________________________________________________
33861 [ 25916] By: rgs                                   on 2005/10/31  10:44:32
33862         Log: is_utf8_string_loc() is now a macro, don't use its Perl_-prefixed form
33863      Branch: perl
33864            ! pp_hot.c
33865 ____________________________________________________________________________
33866 [ 25915] By: rgs                                   on 2005/10/31  10:28:32
33867         Log: Subject: [PATCH] Etta James presents: More consting
33868              From: Andy Lester <andy@petdance.com>
33869              Date: Sun, 30 Oct 2005 23:44:13 -0600
33870              Message-ID: <20051031054413.GA10767@petdance.com>
33871      Branch: perl
33872            ! cop.h doop.c hv.c numeric.c op.c perl.c perlio.c pp_hot.c
33873            ! pp_sys.c sv.c toke.c universal.c util.c
33874 ____________________________________________________________________________
33875 [ 25914] By: rgs                                   on 2005/10/31  10:18:15
33876         Log: Subject: [PATCH] S_tokereport's unused parm
33877              From: Andy Lester <andy@petdance.com>
33878              Date: Mon, 31 Oct 2005 00:04:59 -0600
33879              Message-ID: <20051031060459.GC10767@petdance.com>
33880      Branch: perl
33881            ! embed.fnc embed.h proto.h toke.c
33882 ____________________________________________________________________________
33883 [ 25913] By: rgs                                   on 2005/10/31  08:54:18
33884         Log: Regenerate perlapi.pod
33885      Branch: perl
33886            ! pod/perlapi.pod
33887 ____________________________________________________________________________
33888 [ 25912] By: rgs                                   on 2005/10/31  08:40:23
33889         Log: Robin Houston remarks that mention of a context is missing from the
33890              threads.pm documentation.
33891      Branch: perl
33892            ! ext/threads/threads.pm
33893 ____________________________________________________________________________
33894 [ 25911] By: stevep                                on 2005/10/31  03:51:08
33895         Log: perlsio_binmode() is pretty much a mathom on UNIX platforms, but it is
33896              used on Cygwin, at least.
33897      Branch: perl
33898            ! mathoms.c perlio.c
33899 ____________________________________________________________________________
33900 [ 25910] By: nicholas                              on 2005/10/30  21:53:03
33901         Log: const const bad bad.
33902              gcc bad bad too, because it didn't grumble one bit. (or two, for that
33903              matter).
33904      Branch: perl
33905            ! utf8.c
33906 ____________________________________________________________________________
33907 [ 25909] By: nicholas                              on 2005/10/30  21:38:29
33908         Log: is_utf8_alnum() and is_utf8_alnumc() can use is_utf8_common() too.
33909      Branch: perl
33910            ! utf8.c
33911 ____________________________________________________________________________
33912 [ 25908] By: nicholas                              on 2005/10/30  21:24:29
33913         Log: Jarkko and I think that Perl_is_utf8_alnumc should be initialising
33914              and using PL_utf8_alnum*c*, not PL_utf8_alnum.
33915      Branch: perl
33916            ! utf8.c
33917 ____________________________________________________________________________
33918 [ 25907] By: nicholas                              on 2005/10/30  21:10:39
33919         Log: Perl_is_utf8_* share a lot of common code. Pull that out into a new
33920              function S_is_utf8_common.
33921      Branch: perl
33922            ! utf8.c
33923 ____________________________________________________________________________
33924 [ 25906] By: nicholas                              on 2005/10/30  18:31:25
33925         Log: Given that sv_nosharing performs the same function as sv_nolocking
33926              and sv_unnolocking (ie sweet FA), we might as well use the 1 function
33927              to initialise all 3 variables, and elimiate the other two.
33928              For some reason all 3 are listed as being in the public API. Daft.
33929      Branch: perl
33930            ! embed.fnc embed.h intrpvar.h mathoms.c proto.h util.c
33931 ____________________________________________________________________________
33932 [ 25905] By: nicholas                              on 2005/10/30  18:04:17
33933         Log: Replace uvuni_to_utf8() with a macro that passes the extra 0 argument
33934              to uvuni_to_utf8_flags(). Move the old body to mathoms.c
33935      Branch: perl
33936            ! embed.fnc embed.h mathoms.c proto.h utf8.c utf8.h
33937 ____________________________________________________________________________
33938 [ 25904] By: nicholas                              on 2005/10/30  17:59:08
33939         Log: global.sym appears to have become out of date. Oops.
33940      Branch: perl
33941            ! global.sym
33942 ____________________________________________________________________________
33943 [ 25903] By: nicholas                              on 2005/10/30  17:49:27
33944         Log: Replace is_utf8_string_loc() with a macro that passes the extra 0
33945              argument to is_utf8_string_loc(). Correct the description of its
33946              parameters in its POD.
33947      Branch: perl
33948            ! embed.fnc embed.h mathoms.c proto.h utf8.c utf8.h
33949 ____________________________________________________________________________
33950 [ 25902] By: nicholas                              on 2005/10/30  17:14:08
33951         Log: Fix typos in comments.
33952      Branch: perl
33953            ! utf8.c
33954 ____________________________________________________________________________
33955 [ 25901] By: nicholas                              on 2005/10/30  17:08:39
33956         Log: Functions that die aren't exactly well used code.
33957              (ck_retarget, oopsCV, pp_padany, pp_threadsv, pp_mapstart)
33958      Branch: perl
33959            ! mathoms.c op.c pp.c pp_ctl.c
33960 ____________________________________________________________________________
33961 [ 25900] By: nicholas                              on 2005/10/30  16:45:34
33962         Log: save_hints is a mathom.
33963      Branch: perl
33964            ! mathoms.c op.c
33965 ____________________________________________________________________________
33966 [ 25899] By: nicholas                              on 2005/10/30  16:41:02
33967         Log: I infer that change 25891 as-is would break OS2. This should fix it.
33968      Branch: perl
33969            ! perl.h
33970 ____________________________________________________________________________
33971 [ 25898] By: nicholas                              on 2005/10/30  16:36:22
33972         Log: init_i18nl14n is a mathom.
33973      Branch: perl
33974            ! locale.c mathoms.c
33975 ____________________________________________________________________________
33976 [ 25897] By: nicholas                              on 2005/10/30  16:24:37
33977         Log: Replace hv_magic() with a macro to call sv_magic() directly. Move the
33978              old body to mathoms.c
33979      Branch: perl
33980            ! embed.fnc embed.h hv.c hv.h mathoms.c proto.h
33981 ____________________________________________________________________________
33982 [ 25896] By: nicholas                              on 2005/10/30  16:07:58
33983         Log: Fix win32 breakage inadvertently introduced by 25889
33984      Branch: perl
33985            ! perl.h
33986 ____________________________________________________________________________
33987 [ 25895] By: nicholas                              on 2005/10/30  10:31:01
33988         Log: Replace hv_iternext() with a macro that calls hv_iternext_flags with
33989              an extra 0 argument. Move the old body to mathoms.c
33990      Branch: perl
33991            ! embed.fnc embed.h hv.c hv.h mathoms.c proto.h
33992 ____________________________________________________________________________
33993 [ 25894] By: nicholas                              on 2005/10/30  10:00:42
33994         Log: Fix typo in comment.
33995      Branch: perl
33996            ! hv.c
33997 ____________________________________________________________________________
33998 [ 25893] By: nicholas                              on 2005/10/30  09:59:41
33999         Log: Replace gv_fetchmethod() with a macro to call gv_fetchmethod_autoload()
34000              with the extra TRUE argument.
34001      Branch: perl
34002            ! embed.fnc embed.h gv.c gv.h mathoms.c proto.h
34003 ____________________________________________________________________________
34004 [ 25892] By: nicholas                              on 2005/10/30  08:51:52
34005         Log: I think we have a winner. do_pipe hasn't been called since 4.036.
34006              Maybe we should just remove this appendix.
34007      Branch: perl
34008            ! doio.c mathoms.c
34009 ____________________________________________________________________________
34010 [ 25891] By: nicholas                              on 2005/10/30  08:38:07
34011         Log: Replace do_aexec() with a macro to call do_aexec5() with the two extra
34012              0 arguments. Move the old body to mathoms.c
34013      Branch: perl
34014            ! doio.c embed.fnc embed.h mathoms.c perl.h proto.h
34015 ____________________________________________________________________________
34016 [ 25890] By: nicholas                              on 2005/10/30  08:23:29
34017         Log: Replace do_exec() with a macro to call do_exec3() with the extra two
34018              0 arguments. Move the old body to mathoms.c
34019      Branch: perl
34020            ! doio.c embed.fnc embed.h mathoms.c perl.h proto.h
34021 ____________________________________________________________________________
34022 [ 25889] By: nicholas                              on 2005/10/30  08:05:32
34023         Log: Replace do_open() with a macro to call do_openn() with the extra two
34024              0 paramters. Move the old body to mathoms.c.
34025      Branch: perl
34026            ! doio.c embed.fnc embed.h mathoms.c perl.h proto.h
34027 ____________________________________________________________________________
34028 [ 25888] By: stevep                                on 2005/10/30  04:20:45
34029         Log: Subject: [PATCH] warnings.pl/pm: Croaker function: bug (perl v5.8, v5.9)
34030              From: Bram <perl-rt@wizbit.be>
34031              Date: Thu, 04 Aug 2005 23:55:33 +0200
34032              Message-Id: <42F28ED5.CFFDCCFD@wizbit.be>
34033      Branch: perl
34034            ! lib/warnings.pm warnings.pl
34035 ____________________________________________________________________________
34036 [ 25887] By: stevep                                on 2005/10/29  22:37:50
34037         Log: Subject: Re: [PATCH] predecrement vs postdecrement
34038              From: Jarkko Hietaniemi <jhietaniemi@gmail.com>
34039              Date: Sat, 29 Oct 2005 23:24:33 +0300
34040              Message-ID: <4363DA81.6060600@gmail.com>
34041              
34042              Nit in pod/perlhack.pod
34043      Branch: perl
34044            ! pod/perlhack.pod
34045 ____________________________________________________________________________
34046 [ 25886] By: nicholas                              on 2005/10/29  17:31:01
34047         Log: Replace the body of the rarely used sv_setpviv_mg with a call to
34048              sv_setpviv followed by SvSETMAGIC.
34049      Branch: perl
34050            ! sv.c
34051 ____________________________________________________________________________
34052 [ 25885] By: nicholas                              on 2005/10/29  17:21:24
34053         Log: Replace sv_catsv_mg and sv_catpvn_mg, and move the obsolete bodies to
34054              mathoms.c
34055      Branch: perl
34056            ! embed.fnc embed.h mathoms.c proto.h sv.c sv.h
34057 ____________________________________________________________________________
34058 [ 25884] By: nicholas                              on 2005/10/29  17:02:49
34059         Log: Add a new SMAGIC flag, to signal a call to SvSETMAGIC. Add it to
34060              sv_catpvn_flags and sv_catsv_flags, and then re-implement sv_catpvn_mg
34061              and sv_catsv_mg as calls to sv_catpvn_flags and sv_catsv_flags
34062              respectively.
34063      Branch: perl
34064            ! sv.c sv.h
34065 ____________________________________________________________________________
34066 [ 25883] By: nicholas                              on 2005/10/29  16:25:38
34067         Log: sv_2pv_nolen, sv_2pvbyte_nolen and sv_2pvutf8_nolen can all be replaced
34068              with terse macros, and the function bodies retired.
34069      Branch: perl
34070            ! embed.fnc embed.h mathoms.c proto.h sv.c sv.h
34071 ____________________________________________________________________________
34072 [ 25882] By: nicholas                              on 2005/10/29  16:06:39
34073         Log: All the private implementations of @foo for compilers that can't do
34074              complex macro expansions became dead wood sometime around 5.7.3
34075              (Don't tell Otava this)
34076      Branch: perl
34077            ! mathoms.c sv.c
34078 ____________________________________________________________________________
34079 [ 25881] By: stevep                                on 2005/10/29  15:34:22
34080         Log: Subject: [perl #30563] [PATCH] Storable::dclone fails for tied elements
34081              From: perlbug-followup@perl.org (Srezic@Iconmobile.Com)
34082              Date: 2 Jul 2004 11:32:12 -0000
34083              Message-ID: <rt-3.0.11-30563-91788.4.94870186951744@perl.org>
34084              
34085              Also, a version bump to Storable.pm.
34086      Branch: perl
34087            ! ext/Storable/Storable.pm ext/Storable/Storable.xs
34088            ! ext/Storable/t/dclone.t
34089 ____________________________________________________________________________
34090 [ 25880] By: nicholas                              on 2005/10/29  15:07:42
34091         Log: sv_utf8_upgrade declares itself to be a mathom, so off it goes.
34092              Remove duplicate declaration of Perl_sv_2uv
34093      Branch: perl
34094            ! mathoms.c sv.c
34095 ____________________________________________________________________________
34096 [ 25879] By: nicholas                              on 2005/10/29  14:51:32
34097         Log: Replace sv_force_normal with a macro that calls sv_force_normal_flags.
34098      Branch: perl
34099            ! embed.fnc embed.h mathoms.c proto.h sv.c sv.h
34100 ____________________________________________________________________________
34101 [ 25878] By: nicholas                              on 2005/10/29  14:39:37
34102         Log: Replace sv_unref with a macro that calls sv_unref_flags
34103      Branch: perl
34104            ! embed.fnc embed.h mathoms.c proto.h sv.c sv.h
34105 ____________________________________________________________________________
34106 [ 25877] By: stevep                                on 2005/10/29  14:33:30
34107         Log: Oops, missed an sv_force_normal()
34108      Branch: perl
34109            ! mg.c
34110 ____________________________________________________________________________
34111 [ 25876] By: nicholas                              on 2005/10/29  14:25:55
34112         Log: sv_taint() can easily be replaced by a macro.
34113      Branch: perl
34114            ! embed.fnc embed.h mathoms.c proto.h sv.c sv.h
34115 ____________________________________________________________________________
34116 [ 25875] By: stevep                                on 2005/10/29  14:14:25
34117         Log: Change to use sv_force_normal_flags() directly, rather than calling
34118              sv_force_normal() to call sv_force_normal_flags().
34119      Branch: perl
34120            ! NetWare/sv_nw.c mg.c
34121 ____________________________________________________________________________
34122 [ 25874] By: nicholas                              on 2005/10/29  11:50:29
34123         Log: A terser implementation of S_varname, by using and post-processing
34124              gv_fullname4
34125      Branch: perl
34126            ! sv.c
34127 ____________________________________________________________________________
34128 [ 25873] By: stevep                                on 2005/10/29  11:47:55
34129         Log: Additional mathoms from doio.c
34130      Branch: perl
34131            ! doio.c mathoms.c
34132 ____________________________________________________________________________
34133 [ 25872] By: stevep                                on 2005/10/29  11:36:26
34134         Log: Coverage stats say av_fake() is a mathom too.
34135      Branch: perl
34136            ! av.c mathoms.c
34137 ____________________________________________________________________________
34138 [ 25871] By: nicholas                              on 2005/10/29  11:14:40
34139         Log: gv_fullname3 and gv_efullname3 are definately mathoms. They even say so.
34140      Branch: perl
34141            ! gv.c mathoms.c
34142 ____________________________________________________________________________
34143 [ 25870] By: stevep                                on 2005/10/29  11:02:12
34144         Log: Subject: Re: [PATCH] predecrement vs postdecrement
34145              From: Jarkko Hietaniemi <jhietaniemi@gmail.com>
34146              Date: Sat, 29 Oct 2005 11:52:25 +0300
34147              Message-ID: <43633849.6060809@gmail.com>
34148      Branch: perl
34149            ! regcomp.c
34150 ____________________________________________________________________________
34151 [ 25869] By: nicholas                              on 2005/10/29  10:53:40
34152         Log: gv_fullname and gv_efullname are definately mathoms.
34153      Branch: perl
34154            ! gv.c mathoms.c
34155 ____________________________________________________________________________
34156 [ 25868] By: stevep                                on 2005/10/28  23:38:35
34157         Log: Subject: [PATCH] perl5db.pl incorrect instructions in termination message
34158              From: Brendan O'Dea <bod@debian.org>
34159              Date: Sat, 29 Oct 2005 07:14:40 +1000
34160              Message-ID: <20051028211440.GA23305@londo.c47.org>
34161      Branch: perl
34162            ! lib/perl5db.pl
34163 ____________________________________________________________________________
34164 [ 25867] By: stevep                                on 2005/10/28  21:12:35
34165         Log: Makefiles like tabs, not spaces.
34166      Branch: perl
34167            ! win32/Makefile win32/makefile.mk
34168 ____________________________________________________________________________
34169 [ 25866] By: stevep                                on 2005/10/28  21:09:31
34170         Log: Add a new file, mathoms.c, to hold old code kept around for binary
34171              compatability with previous versions of Perl.  Change also includes
34172              various Makefile changes to compile the new file and link it into 
34173              libperl.
34174      Branch: perl
34175            + mathoms.c
34176            ! MANIFEST Makefile.SH Makefile.micro NetWare/Makefile globals.c
34177            ! numeric.c op.c perlio.c plan9/mkfile sv.c utf8.c
34178            ! vms/descrip_mms.template win32/Makefile win32/makefile.mk
34179            ! wince/Makefile.ce
34180 ____________________________________________________________________________
34181 [ 25865] By: stevep                                on 2005/10/28  11:30:51
34182         Log: Check for changes in IO on CPAN.
34183      Branch: perl
34184            ! Porting/Maintainers.pl
34185 ____________________________________________________________________________
34186 [ 25864] By: stevep                                on 2005/10/28  11:21:48
34187         Log: gbarr is maintaining IO.
34188      Branch: perl
34189            ! Porting/Maintainers.pl
34190 ____________________________________________________________________________
34191 [ 25863] By: stevep                                on 2005/10/28  10:48:32
34192         Log: Add SPRINTF_RETURNS_STRLEN to the various Win32 config_H.* files.
34193      Branch: perl
34194            ! win32/config_H.bc win32/config_H.gc win32/config_H.vc
34195            ! win32/config_H.vc64
34196 ____________________________________________________________________________
34197 [ 25862] By: nicholas                              on 2005/10/28  10:24:43
34198         Log: Use the return value from sprintf and avoid a call to strlen
34199      Branch: perl
34200            ! sv.c
34201 ____________________________________________________________________________
34202 [ 25861] By: stevep                                on 2005/10/27  11:13:50
34203         Log: Subject: Re: IO::File performace issue
34204              From: gisle@ActiveState.com (Gisle Aas)
34205              Date: 27 Oct 2005 01:00:39 -0700
34206              Message-ID: <lrvezjv17c.fsf@caliper.activestate.com>
34207              
34208              Also includes a version bump for IO::File.
34209      Branch: perl
34210            ! ext/IO/lib/IO/File.pm
34211 ____________________________________________________________________________
34212 [ 25860] By: nicholas                              on 2005/10/27  08:53:03
34213         Log: Change 25850 failed to include all changed headers
34214      Branch: perl
34215            ! embed.h proto.h
34216 ____________________________________________________________________________
34217 [ 25859] By: stevep                                on 2005/10/27  01:55:08
34218         Log: Win32 fix for change #25850.  I don't know if this define will ever
34219              be used on Win32, but it does fix the problem at hand.
34220      Branch: perl
34221            ! win32/perlhost.h
34222 ____________________________________________________________________________
34223 [ 25858] By: rgs                                   on 2005/10/26  13:27:31
34224         Log: Subject: [patch@25854]vms.c rmsexpand and memmove fixes
34225              From: "John E. Malmberg" <wb8tyw@qsl.net>
34226              Date: Wed, 26 Oct 2005 08:08:05 -0400
34227              Message-ID: <435F71A5.6030809@qsl.net>
34228      Branch: perl
34229            ! vms/vms.c
34230 ____________________________________________________________________________
34231 [ 25857] By: rgs                                   on 2005/10/26  12:52:37
34232         Log: FAQ sync.
34233      Branch: perl
34234            ! pod/perlfaq.pod pod/perlfaq2.pod pod/perlfaq3.pod
34235            ! pod/perlfaq4.pod pod/perlfaq5.pod pod/perlfaq6.pod
34236            ! pod/perlfaq7.pod pod/perlfaq9.pod
34237 ____________________________________________________________________________
34238 [ 25856] By: merijn                                on 2005/10/26  12:37:47
34239         Log: Subject: [PATCH] Symbian: better Series 80 support
34240              From: <jarkko.hietaniemi@nokia.com>
34241              Date: Wed, 26 Oct 2005 15:50:08 +0300
34242              Message-ID: <B356D8F434D20B40A8CEDAEC305A1F24E7A6AA@esebe105.NOE.Nokia.com>
34243      Branch: perl
34244            + symbian/hexdump.pl
34245            ! MANIFEST symbian/PerlApp.cpp symbian/PerlApp.h
34246            ! symbian/PerlAppS80.rss symbian/config.pl symbian/makesis.pl
34247            ! symbian/sisify.pl
34248 ____________________________________________________________________________
34249 [ 25855] By: stevep                                on 2005/10/26  11:52:46
34250         Log: Multiple versions of OpenBSD fail this test, not just 3.7.
34251      Branch: perl
34252            ! t/op/sprintf.t
34253 ____________________________________________________________________________
34254 [ 25854] By: rgs                                   on 2005/10/26  10:21:30
34255         Log: Subject: Re: [PATCH] minor speed-up for pp_push()
34256              From: Tassilo von Parseval <tassilo.von.parseval@rwth-aachen.de>
34257              Date: Tue, 25 Oct 2005 08:11:42 +0200
34258              Message-id: <20051025061141.GA2256@ethan>
34259      Branch: perl
34260            ! pp.c
34261 ____________________________________________________________________________
34262 [ 25853] By: nicholas                              on 2005/10/26  10:06:37
34263         Log: Store the raw bytes of the pid in PL_pidstatus, rather than the
34264              stringification, as removing the conversions saves time and code.
34265      Branch: perl
34266            ! util.c
34267 ____________________________________________________________________________
34268 [ 25852] By: rgs                                   on 2005/10/26  09:37:25
34269         Log: Subject: [perl #37535] [PATCH] ioctl IOCPARM_LEN(x) should be _IOC_SIZE(x) on Linux, not 256 
34270              From: Jason Vas Dias (via RT) <perlbug-followup@perl.org>
34271              Date: Tue, 25 Oct 2005 15:27:28 -0700
34272              Message-ID: <rt-3.0.11-37535-123290.14.118037538994@perl.org>
34273      Branch: perl
34274            ! perl.h
34275 ____________________________________________________________________________
34276 [ 25851] By: rgs                                   on 2005/10/26  08:58:42
34277         Log: Subject: Re: [patch@25838]Hopefully the last VMS exit/error fixes needed.
34278              From: "John E. Malmberg" <wb8tyw@qsl.net>
34279              Date: Tue, 25 Oct 2005 13:36:20 -0400
34280              Message-ID: <435E6D14.7000104@qsl.net>
34281      Branch: perl
34282            ! perl.h vms/perlvms.pod
34283 ____________________________________________________________________________
34284 [ 25850] By: nicholas                              on 2005/10/26  08:31:20
34285         Log: Most platforms don't actually need PL_pidstatus, or the associated
34286              .5K of code.
34287      Branch: perl
34288            ! embed.fnc intrpvar.h makedef.pl perl.c perl.h perlapi.h
34289            ! pp_sys.c sv.c util.c
34290 ____________________________________________________________________________
34291 [ 25849] By: rgs                                   on 2005/10/25  15:26:20
34292         Log: Back out change #25839, and apply :
34293              
34294              Subject: [patch@25838]Hopefully the last VMS exit/error fixes needed.
34295              From: "John E. Malmberg" <wb8tyw@qsl.net>
34296              Date: Tue, 25 Oct 2005 11:09:37 -0400
34297              Message-ID: <435E4AB1.1000106@qsl.net>
34298      Branch: perl
34299            ! perl.c perl.h vms/perlvms.pod
34300 ____________________________________________________________________________
34301 [ 25848] By: nicholas                              on 2005/10/25  12:54:18
34302         Log: Code in wait4pid was calling hv_delete with the hash iterator
34303              currently on that entry. On aggregate this does more work, beacuse
34304              the next call to hv_iterinit() would spot the flag, and have to call
34305              the delete routine, while in the meantime any new entries can't
34306              re-use that memory.
34307      Branch: perl
34308            ! util.c
34309 ____________________________________________________________________________
34310 [ 25847] By: rgs                                   on 2005/10/25  12:35:29
34311         Log: t/TEST should require Time::HiRes only when it uses it.
34312              This fixes minitest.
34313      Branch: perl
34314            ! t/TEST
34315 ____________________________________________________________________________
34316 [ 25846] By: rgs                                   on 2005/10/25  12:17:33
34317         Log: Rediff the Makefile.SH patch for cross-compilation.
34318              (this doesn't mean it works, though.)
34319      Branch: perl
34320            ! Cross/Makefile.SH.patch
34321 ____________________________________________________________________________
34322 [ 25845] By: stevep                                on 2005/10/25  11:56:53
34323         Log: Upgrade to Time-HiRes-1.76
34324      Branch: perl
34325            ! ext/Time/HiRes/Changes ext/Time/HiRes/HiRes.pm
34326            ! ext/Time/HiRes/HiRes.xs ext/Time/HiRes/Makefile.PL
34327            ! ext/Time/HiRes/t/HiRes.t
34328 ____________________________________________________________________________
34329 [ 25844] By: rgs                                   on 2005/10/25  11:19:44
34330         Log: Remove remaining references to mv-if-diff
34331      Branch: perl
34332            ! os2/Makefile.SHs pod/Makefile.SH pod/perlmodlib.PL
34333 ____________________________________________________________________________
34334 [ 25843] By: nicholas                              on 2005/10/25  10:55:27
34335         Log: Oops. the trick is to edit Makefile.SH
34336      Branch: perl
34337            ! Makefile.SH
34338 ____________________________________________________________________________
34339 [ 25842] By: nicholas                              on 2005/10/25  10:36:39
34340         Log: Subject: [PATCH] remove mv-if-diff
34341              From: Rafael Garcia-Suarez <rgarciasuarez@mandriva.com>
34342              Message-ID: <20051024193257.2022ea0d@grubert.mandrakesoft.com>
34343              Date: Mon, 24 Oct 2005 19:32:57 +0200
34344              
34345              (with tweak to add rm for opmini.c, remove mv-if-diff, and reflect
34346              this removal in MANIFEST)
34347      Branch: perl
34348            - mv-if-diff
34349            ! MANIFEST Makefile.SH
34350 ____________________________________________________________________________
34351 [ 25841] By: nicholas                              on 2005/10/25  09:09:49
34352         Log: Replace all the strlen()s related to PL_pidstatus with the return
34353              value of my_sprintf
34354      Branch: perl
34355            ! util.c
34356 ____________________________________________________________________________
34357 [ 25840] By: nicholas                              on 2005/10/25  08:32:25
34358         Log: Whoops. The Windows build is going to need to know that this symbol is
34359              defined.
34360      Branch: perl
34361            ! perl.c
34362 ____________________________________________________________________________
34363 [ 25839] By: rgs                                   on 2005/10/25  08:14:33
34364         Log: Subject: VMS exit handling still broken, need some help.
34365              From: "John E. Malmberg" <wb8tyw@qsl.net>
34366              Date: Mon, 24 Oct 2005 01:34:41 -0400
34367              Message-ID: <435C7271.8070403@qsl.net>
34368      Branch: perl
34369            ! perl.c perl.h vms/vms.c
34370 ____________________________________________________________________________
34371 [ 25838] By: merijn                                on 2005/10/25  05:58:00
34372         Log: Subject: [patch@25837] Change 25831: sprintf returns the length of the buffer.
34373              From: "John E. Malmberg" <wb8tyw@qsl.net>
34374              Date: Mon, 24 Oct 2005 23:37:46 -0400
34375              Message-ID: <435DA88A.90201@qsl.net>
34376      Branch: perl
34377            ! configure.com
34378 ____________________________________________________________________________
34379 [ 25837] By: merijn                                on 2005/10/24  23:35:40
34380         Log: Backport of changes #25831 and #25832. Re-order needed
34381              
34382              Subject: [PATCH] Re: Configure question about format of cc/cppsymbols
34383              From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
34384              Date: Mon, 24 Oct 2005 13:04:58 -0700
34385              Message-ID: <20051024200458.GC2312@efn.org>
34386      Branch: perl
34387            ! Configure config_h.SH
34388 ____________________________________________________________________________
34389 [ 25833] By: merijn                                on 2005/10/24  22:44:22
34390         Log: Subject: [PATCH] Compress::Zlib
34391              From: "Paul Marquess" <Paul.Marquess@ntlworld.com>
34392              Date: Mon, 24 Oct 2005 23:19:48 +0100
34393              Message-ID: <00ab01c5d8e9$0ef31b40$02f0440a@myopwv.com>
34394      Branch: perl
34395            ! ext/Compress/Zlib/Zlib.pm
34396            ! ext/Compress/Zlib/lib/Compress/Zlib/Common.pm
34397            ! ext/Compress/Zlib/lib/IO/Compress/Gzip.pm
34398            ! ext/Compress/Zlib/lib/IO/Uncompress/Gunzip.pm
34399            ! ext/Compress/Zlib/t/03zlib-v1.t
34400            ! ext/Compress/Zlib/t/16oneshot.t ext/Compress/Zlib/t/22merge.t
34401 ____________________________________________________________________________
34402 [ 25832] By: nicholas                              on 2005/10/24  21:20:21
34403         Log: Add my_sprintf, which is usually just a macro for sprintf, for those
34404              places where we want to use the return value of sprintf. This allows
34405              a wrapper to be used for platforms where the C library isn't ANSI-
34406              conformant.
34407      Branch: perl
34408            ! config_h.SH embed.fnc embed.h global.sym makedef.pl perl.h
34409            ! proto.h util.c
34410 ____________________________________________________________________________
34411 [ 25831] By: nicholas                              on 2005/10/24  20:03:38
34412         Log: Add a probe for whether sprintf returns the length of the buffer.
34413              Update all the canned config.sh files.
34414              Assume that symbian and Win32 are all ANSI conformant, note that ARM
34415              Linux (ie glibc) will be, don't assume that any other platform is.
34416      Branch: perl
34417            ! Configure Cross/config.sh-arm-linux NetWare/config.wc
34418            ! Porting/Glossary configure.com epoc/config.sh
34419            ! plan9/config_sh.sample symbian/config.sh uconfig.sh
34420            ! win32/config.bc win32/config.gc win32/config.vc
34421            ! win32/config.vc64 wince/config.ce
34422 ____________________________________________________________________________
34423 [ 25830] By: rgs                                   on 2005/10/24  16:18:41
34424         Log: Fix path in code example
34425      Branch: perl
34426            ! pod/perlfunc.pod
34427 ____________________________________________________________________________
34428 [ 25829] By: rgs                                   on 2005/10/24  15:21:28
34429         Log: Subject: Re: do { EXPR for EXPR }
34430              From: Robin Houston <robin@cpan.org>
34431              Date: Sat, 22 Oct 2005 16:56:27 +0100
34432              Message-ID: <20051022155627.GA22420@rpc142.cs.man.ac.uk>
34433      Branch: perl
34434            ! op.c t/cmd/mod.t
34435 ____________________________________________________________________________
34436 [ 25828] By: stevep                                on 2005/10/24  14:16:32
34437         Log: Update one of merijn's previous emails.
34438      Branch: perl
34439            ! Porting/checkAUTHORS.pl
34440 ____________________________________________________________________________
34441 [ 25827] By: craigb                                on 2005/10/23  22:17:44
34442         Log: Subject: [patch@25825] Fix st_ino compare to use real data.
34443              From: "John E. Malmberg" <wb8tyw@qsl.net>
34444              Date: Sun, 23 Oct 2005 17:46:46 -0400
34445              Message-id: <435C04C6.2090405@qsl.net>
34446      Branch: perl
34447            ! vms/vms.c
34448 ____________________________________________________________________________
34449 [ 25825] By: mhx                                   on 2005/10/23  10:16:45
34450         Log: Fix mismatched braces in S_fd_on_nosuid_fs().
34451      Branch: perl
34452            ! perl.c
34453 ____________________________________________________________________________
34454 [ 25824] By: craigb                                on 2005/10/22  16:43:40
34455         Log: VMS threaded build fixes for things broken in #25783
34456      Branch: perl
34457            ! vms/vms.c vms/vmsish.h
34458 ____________________________________________________________________________
34459 [ 25823] By: nicholas                              on 2005/10/22  13:12:48
34460         Log: use more 'const' in the Encode data structures.
34461      Branch: perl
34462            ! ext/Encode/Encode/encode.h ext/Encode/bin/enc2xs
34463 ____________________________________________________________________________
34464 [ 25822] By: mhx                                   on 2005/10/22  13:02:02
34465         Log: Turn NN to NULLOK for functions that have code to handle
34466              the ptr == NULL case and are currently called with NULL
34467              pointers. Having parameters tagged NN can make gcc optimize
34468              away the code for the NULL case, causing segfaults.
34469      Branch: perl
34470            ! embed.fnc proto.h
34471 ____________________________________________________________________________
34472 [ 25821] By: nicholas                              on 2005/10/22  12:08:34
34473         Log: Mark more static Encode data structures as const.
34474      Branch: perl
34475            ! ext/Encode/Encode.xs ext/Encode/Encode/encode.h
34476            ! ext/Encode/bin/enc2xs ext/Encode/encengine.c
34477 ____________________________________________________________________________
34478 [ 25820] By: stevep                                on 2005/10/21  21:54:01
34479         Log: Documentation on getting a FORMAT ref from a GLOB was missing from
34480              perlref.pod.  Thanks for David Wheeler for starting the discussion
34481              and Paul Johnson for confirming that it could actually be done.
34482      Branch: perl
34483            ! pod/perlref.pod
34484 ____________________________________________________________________________
34485 [ 25819] By: merijn                                on 2005/10/21  15:49:00
34486         Log: Subject: [PATCH] Symbian/beginnings of Series 80 support
34487              From: <jarkko.hietaniemi@nokia.com>
34488              Date: Fri, 21 Oct 2005 17:15:23 +0300
34489              Message-ID: <B356D8F434D20B40A8CEDAEC305A1F24E7A67E@esebe105.NOE.Nokia.com>
34490      Branch: perl
34491            + symbian/PerlAppS60.rss symbian/PerlAppS80.rss
34492            ! MANIFEST
34493 ____________________________________________________________________________
34494 [ 25818] By: rgs                                   on 2005/10/21  15:44:38
34495         Log: Subject: allow "" as select bitmask [PATCH]
34496              From: Gisle Aas <gisle@ActiveState.com>
34497              Date: 21 Oct 2005 08:04:40 -0700
34498              Message-ID: <lrach229o7.fsf_-_@caliper.activestate.com>
34499      Branch: perl
34500            ! pp_sys.c t/op/sselect.t
34501 ____________________________________________________________________________
34502 [ 25816] By: rgs                                   on 2005/10/21  15:06:13
34503         Log: Rewording of doc change #25812
34504      Branch: perl
34505            ! pod/perlsub.pod
34506 ____________________________________________________________________________
34507 [ 25815] By: merijn                                on 2005/10/21  14:12:37
34508         Log: Subject: [PATCH] Symbian/beginnings of Series 80 support
34509              From: <jarkko.hietaniemi@nokia.com>
34510              Date: Fri, 21 Oct 2005 17:15:23 +0300
34511              Message-ID: <B356D8F434D20B40A8CEDAEC305A1F24E7A67E@esebe105.NOE.Nokia.com>
34512      Branch: perl
34513            - symbian/PerlApp.rss
34514 ____________________________________________________________________________
34515 [ 25814] By: merijn                                on 2005/10/21  14:12:10
34516         Log: Subject: [PATCH] Symbian/beginnings of Series 80 support
34517              From: <jarkko.hietaniemi@nokia.com>
34518              Date: Fri, 21 Oct 2005 17:15:23 +0300
34519              Message-ID: <B356D8F434D20B40A8CEDAEC305A1F24E7A67E@esebe105.NOE.Nokia.com>
34520      Branch: perl
34521            ! MANIFEST README.symbian symbian/PerlApp.cpp symbian/PerlApp.h
34522            ! symbian/PerlApp.hrh symbian/config.pl symbian/config.sh
34523            ! symbian/makesis.pl symbian/sdk.pl symbian/sisify.pl
34524            ! symbian/xsbuild.pl
34525 ____________________________________________________________________________
34526 [ 25813] By: rgs                                   on 2005/10/21  13:24:30
34527         Log: Subject: wrong maxlen in sselect [PATCH]
34528              From: Gisle Aas <gisle@ActiveState.com>
34529              Date: 21 Oct 2005 05:24:30 -0700
34530              Message-ID: <lrzmp312ip.fsf@caliper.activestate.com>
34531              
34532              Plus a regression test for the new warning.
34533      Branch: perl
34534            ! pod/perldiag.pod pp_sys.c t/lib/warnings/pp_sys
34535 ____________________________________________________________________________
34536 [ 25812] By: rgs                                   on 2005/10/21  13:01:26
34537         Log: Subject: Re: [PATCH] return values reworded in perlsub.pod
34538              From: Xavier Noria <fxn@hashref.com>
34539              Date: Fri, 21 Oct 2005 08:43:12 +0200
34540              Message-Id: <1C8D7C5C-986C-4336-8C4F-8B965CE1AD17@hashref.com>
34541              
34542              (with minor tweaks)
34543      Branch: perl
34544            ! pod/perlsub.pod
34545 ____________________________________________________________________________
34546 [ 25811] By: rgs                                   on 2005/10/21  09:31:52
34547         Log: Remove last remaining reference to vax11c
34548      Branch: perl
34549            ! x2p/a2p.h
34550 ____________________________________________________________________________
34551 [ 25810] By: craigb                                on 2005/10/20  22:38:36
34552         Log: Subject: [patch@25809]restore documented exit behavior
34553              From: "John E. Malmberg" <wb8tyw@qsl.net>
34554              Date: Thu, 20 Oct 2005 18:21:20 -0400
34555              Message-id: <43581860.3020108@qsl.net>
34556      Branch: perl
34557            ! mg.c perl.c perl.h t/op/exec.t vms/perlvms.pod vms/vms.c
34558 ____________________________________________________________________________
34559 [ 25809] By: rgs                                   on 2005/10/19  21:15:53
34560         Log: Fix doc typo, by Gisle Aas
34561      Branch: perl
34562            ! lib/User/grent.pm
34563 ____________________________________________________________________________
34564 [ 25808] By: rgs                                   on 2005/10/19  20:46:50
34565         Log: Subject: Re: [PATCH] Re: [perl #37350] $#{@$aref} in debugger gives: Bizarre copy of ARRAY in leave
34566              From: Robin Houston <robin@cpan.org>
34567              Date: Oct 14, 2005 1:54 AM
34568              Message-ID: <20051013235457.GA23386@rpc142.cs.man.ac.uk>
34569      Branch: perl
34570            ! embed.fnc embed.h global.sym op.c op.h proto.h t/op/array.t
34571 ____________________________________________________________________________
34572 [ 25805] By: rgs                                   on 2005/10/19  13:19:17
34573         Log: Forgotten chunk by jhi
34574      Branch: perl
34575            ! symbian/makesis.pl
34576 ____________________________________________________________________________
34577 [ 25804] By: rgs                                   on 2005/10/19  13:09:09
34578         Log: Subject: [PATCH] blead 25801: Symbian batch of today
34579              From: <jarkko.hietaniemi@nokia.com>
34580              Date: Wed, 19 Oct 2005 16:19:23 +0300
34581              Message-ID: <B356D8F434D20B40A8CEDAEC305A1F24E7A663@esebe105.NOE.Nokia.com>
34582      Branch: perl
34583            ! perl.h pp_sys.c symbian/config.sh symbian/symbianish.h
34584            ! symbian/xsbuild.pl
34585 ____________________________________________________________________________
34586 [ 25803] By: rgs                                   on 2005/10/19  08:18:30
34587         Log: Subject: [PATCH] More consting, and DRY leads to shrinking object code
34588              From: Andy Lester <andy@petdance.com>
34589              Date: Tue, 18 Oct 2005 09:57:23 -0500
34590              Message-ID: <20051018145723.GA4964@petdance.com>
34591      Branch: perl
34592            ! av.c gv.c hv.c mg.c pp_ctl.c pp_hot.c sv.c
34593 ____________________________________________________________________________
34594 [ 25802] By: rgs                                   on 2005/10/19  07:52:20
34595         Log: Subject: [PATCH] Adding documentation index to perlapi.pod and perlintern.pod
34596              From: Sébastien Aperghis-Tramoni <maddingue@free.fr>
34597              Date: Tue, 18 Oct 2005 22:22:57 +0200
34598              Message-ID: <1129666977.435559a10cb95@imp5-g19.free.fr>
34599              
34600              (tweaked to remove trailing whitespace to doc entries)
34601              Plus, regenerate doc and headers
34602      Branch: perl
34603            ! autodoc.pl embed.h pod/perlapi.pod pod/perlintern.pod proto.h
34604 ____________________________________________________________________________
34605 [ 25801] By: craigb                                on 2005/10/19  00:29:00
34606         Log: Subject: [patch@25784] enable open(FOO, "child.pl foo|") on VMS
34607              From: "John E. Malmberg" <wb8tyw@qsl.net>
34608              Date: Tue, 18 Oct 2005 14:43:29 -0400
34609              Message-id: <43554251.5020704@qsl.net>
34610      Branch: perl
34611            ! vms/vms.c vms/vmsish.h
34612 ____________________________________________________________________________
34613 [ 25800] By: rgs                                   on 2005/10/18  21:22:17
34614         Log: Add notes about -f _ and defined %foo:: in perldelta
34615      Branch: perl
34616            ! pod/perl593delta.pod
34617 ____________________________________________________________________________
34618 [ 25799] By: rgs                                   on 2005/10/18  20:57:43
34619         Log: Force _ to be always a bareword after filetest operators
34620      Branch: perl
34621            ! t/op/filetest.t toke.c
34622 ____________________________________________________________________________
34623 [ 25798] By: nicholas                              on 2005/10/18  19:52:27
34624         Log: Add Rafael's 5.10 roadmap to perltodo.
34625              Add state variables.
34626              Remove xsubpp entry, as that had been done already.
34627      Branch: perl
34628            ! pod/perltodo.pod
34629 ____________________________________________________________________________
34630 [ 25797] By: rgs                                   on 2005/10/18  19:24:55
34631         Log: Fix tokenizer debugging trace for file tests
34632      Branch: perl
34633            ! toke.c
34634 ____________________________________________________________________________
34635 [ 25796] By: stevep                                on 2005/10/18  19:15:40
34636         Log: Upgrade to Digest-1.13
34637      Branch: perl
34638            ! lib/Digest.pm lib/Digest/Changes lib/Digest/file.pm
34639 ____________________________________________________________________________
34640 [ 25795] By: merijn                                on 2005/10/18  16:30:54
34641         Log: VMS does not have clearenv () according to John E. Malmberg
34642              Followup to 25793
34643      Branch: perl
34644            ! configure.com
34645 ____________________________________________________________________________
34646 [ 25794] By: steveh                                on 2005/10/18  15:03:50
34647         Log: Update win32 config files w.r.t. change #25793
34648      Branch: perl
34649            ! win32/config.bc win32/config.gc win32/config.vc
34650            ! win32/config.vc64 win32/config_H.bc win32/config_H.gc
34651            ! win32/config_H.vc win32/config_H.vc64
34652 ____________________________________________________________________________
34653 [ 25793] By: merijn                                on 2005/10/18  13:50:15
34654         Log: Add probe for clearenv (), like #25733 for unsetenv ()
34655      Branch: perl
34656            ! Configure Porting/Glossary config_h.SH handy.h
34657 ____________________________________________________________________________
34658 [ 25790] By: rgs                                   on 2005/10/18  12:48:17
34659         Log: Subject: [PATCH] missed some SYMBIAN ifdefs
34660              From: <jarkko.hietaniemi@nokia.com>
34661              Date: Tue, 18 Oct 2005 16:07:28 +0300
34662              Message-ID: <B356D8F434D20B40A8CEDAEC305A1F24E7A64D@esebe105.NOE.Nokia.com>
34663      Branch: perl
34664            ! perl.h util.h
34665 ____________________________________________________________________________
34666 [ 25789] By: stevep                                on 2005/10/18  10:52:01
34667         Log: Upgrade to Time-HiRes-1.75
34668      Branch: perl
34669            ! ext/Time/HiRes/Changes ext/Time/HiRes/HiRes.pm
34670            ! ext/Time/HiRes/Makefile.PL
34671 ____________________________________________________________________________
34672 [ 25788] By: rgs                                   on 2005/10/18  09:29:05
34673         Log: Subject: [PATCH] Symbian: New vs New
34674              From: <jarkko.hietaniemi@nokia.com>
34675              Date: Tue, 18 Oct 2005 12:53:16 +0300
34676              Message-ID: <B356D8F434D20B40A8CEDAEC305A1F24E7A640@esebe105.NOE.Nokia.com>
34677      Branch: perl
34678            ! symbian/PerlUtil.cpp
34679 ____________________________________________________________________________
34680 [ 25786] By: rgs                                   on 2005/10/18  08:01:12
34681         Log: Subject: [patch@25783] vmsish.h fix for lstat() definition
34682              From: "John E. Malmberg" <wb8tyw@qsl.net>
34683              Date: Mon, 17 Oct 2005 17:08:19 -0400
34684              Message-ID: <435412C3.3080504@qsl.net>
34685      Branch: perl
34686            ! vms/vmsish.h
34687 ____________________________________________________________________________
34688 [ 25784] By: steveh                                on 2005/10/17  15:48:24
34689         Log: Silence gcc complaints about comments in config.h
34690              
34691              This suppresses dozens of lines of warnings seen, e.g. here:
34692              http://www.nntp.perl.org/group/perl.daily-build.reports/32231
34693      Branch: perl
34694            ! ext/Compress/Zlib/Makefile.PL ext/Compress/Zlib/Zlib.pm
34695 ____________________________________________________________________________
34696 [ 25783] By: rgs                                   on 2005/10/17  15:13:35
34697         Log: Subject: [patch@25775] VMS prep for symbolic links and long filename
34698              From: "John E. Malmberg" <wb8tyw@qsl.net>
34699              Date: Mon, 17 Oct 2005 08:12:37 -0400
34700              Message-ID: <43539535.70609@qsl.net>
34701      Branch: perl
34702            ! vms/vms.c vms/vmsish.h
34703 ____________________________________________________________________________
34704 [ 25782] By: rgs                                   on 2005/10/17  15:05:23
34705         Log: Subject: [PATCH] even more Symbian
34706              From: <jarkko.hietaniemi@nokia.com>
34707              Date: Mon, 17 Oct 2005 18:27:57 +0300
34708              Message-ID: <B356D8F434D20B40A8CEDAEC305A1F24E7A61F@esebe105.NOE.Nokia.com>
34709      Branch: perl
34710            ! ext/Storable/Storable.xs symbian/TODO
34711            ! symbian/find_writeable_data.pl symbian/xsbuild.pl
34712 ____________________________________________________________________________
34713 [ 25781] By: nicholas                              on 2005/10/17  14:44:59
34714         Log: Correct precedence from and to && in an expression with assignment.
34715      Branch: perl
34716            ! ext/IO/t/io_sock.t
34717 ____________________________________________________________________________
34718 [ 25780] By: rgs                                   on 2005/10/17  10:16:30
34719         Log: Subject: Re: small addition to $, and $\ in perlvar.pod
34720              From: Xavier Noria <fxn@hashref.com>
34721              Date: Sun, 16 Oct 2005 12:27:30 +0200
34722              Message-Id: <7CA83392-70CD-4AC8-AA44-D94F508BB028@hashref.com>
34723      Branch: perl
34724            ! pod/perlvar.pod
34725 ____________________________________________________________________________
34726 [ 25779] By: steveh                                on 2005/10/17  10:14:46
34727         Log: Make some casts explicit to keep VC++ 7 happy
34728              
34729              Specifically, this silences the warnings from the following smoke:
34730              http://www.nntp.perl.org/group/perl.daily-build.reports/32258
34731              (Hmm. Looks like you need to decode the base64 yourself before you
34732              can read that.)
34733      Branch: perl
34734            ! numeric.c op.c pp_pack.c toke.c
34735 ____________________________________________________________________________
34736 [ 25778] By: rgs                                   on 2005/10/17  09:57:24
34737         Log: Subject: [PATCH] another Symbian update: Alan's fault :-)
34738              From: <jarkko.hietaniemi@nokia.com>
34739              Date: Mon, 17 Oct 2005 13:19:34 +0300
34740              Message-ID: <B356D8F434D20B40A8CEDAEC305A1F24E7A611@esebe105.NOE.Nokia.com>
34741      Branch: perl
34742            + symbian/find_writeable_data.pl
34743            ! MANIFEST XSUB.h doio.c embed.fnc embed.h mg.c perl.c perl.h
34744            ! perlio.c pp_ctl.c pp_sys.c symbian/config.pl symbian/sisify.pl
34745            ! util.c
34746 ____________________________________________________________________________
34747 [ 25777] By: rgs                                   on 2005/10/17  08:46:31
34748         Log: Doc/style fixes pointed out by Gisle
34749      Branch: perl
34750            ! lib/warnings/register.pm
34751 ____________________________________________________________________________
34752 [ 25776] By: rgs                                   on 2005/10/17  08:28:15
34753         Log: Subject: [PATCH] blead@25775 Symbian update
34754              From: <jarkko.hietaniemi@nokia.com>
34755              Date: Mon, 17 Oct 2005 11:49:20 +0300
34756              Message-ID: <B356D8F434D20B40A8CEDAEC305A1F24E7A60A@esebe105.NOE.Nokia.com>
34757      Branch: perl
34758            + symbian/PerlUtil.cpp symbian/PerlUtil.h symbian/PerlUtil.pod
34759            ! MANIFEST README.symbian symbian/PerlBase.pod symbian/TODO
34760            ! symbian/config.pl symbian/sdk.pl symbian/sisify.pl
34761            ! symbian/symbian_proto.h symbian/xsbuild.pl
34762 ____________________________________________________________________________
34763 [ 25775] By: davem                                 on 2005/10/16  23:05:44
34764         Log: DEBUG_LEAKING_SCALARS doesn't need shared memory to store filenames
34765      Branch: perl
34766            ! sv.c
34767 ____________________________________________________________________________
34768 [ 25774] By: rgs                                   on 2005/10/16  21:47:57
34769         Log: Subject: [PATCH] Keys of %INC always use forward slashes
34770              From: Jan Dubois <jand@activestate.com>
34771              Date: Oct 16, 2005 8:24 PM
34772              Message-ID: <006e01c5d27e$d722c6e0$2217a8c0@candy>
34773      Branch: perl
34774            ! lib/CPAN.pm
34775 ____________________________________________________________________________
34776 [ 25772] By: craigb                                on 2005/10/16  19:10:56
34777         Log: Subject: [patch@25763] Fix VMS error/exit handling, update kill function
34778              From: "John E. Malmberg" <wb8tyw@qsl.net>
34779              Message-id: <4351F393.8030809@qsl.net>
34780              Date: Sun, 16 Oct 2005 02:30:43 -0400
34781      Branch: perl
34782            ! perl.c perl.h t/run/exit.t vms/vms.c vms/vmsish.h
34783 ____________________________________________________________________________
34784 [ 25771] By: davem                                 on 2005/10/16  17:46:10
34785         Log: an assert in av_undef was leaking memory
34786      Branch: perl
34787            ! av.c
34788 ____________________________________________________________________________
34789 [ 25770] By: davem                                 on 2005/10/16  17:39:20
34790         Log: static functions should be prefixed S_
34791      Branch: perl
34792            ! ext/threads/threads.xs
34793 ____________________________________________________________________________
34794 [ 25769] By: davem                                 on 2005/10/16  14:53:45
34795         Log: free a thread's interpreter after $t->join() rather than after undef $t
34796              This should fix some ithreads memory leaks.
34797      Branch: perl
34798            ! ext/threads/threads.xs
34799 ____________________________________________________________________________
34800 [ 25768] By: stevep                                on 2005/10/16  13:53:00
34801         Log: Upgrade to version-0.49
34802      Branch: perl
34803            ! lib/version.pm lib/version.pod
34804 ____________________________________________________________________________
34805 [ 25767] By: stevep                                on 2005/10/16  13:24:23
34806         Log: No more attempting to edit Pod before the first coffee of the morning.
34807      Branch: perl
34808            ! ext/DynaLoader/XSLoader_pm.PL
34809 ____________________________________________________________________________
34810 [ 25766] By: stevep                                on 2005/10/16  13:10:02
34811         Log: Upgrade to XSLoader-0.06 (plus a minor doc nit found by podchecker).
34812      Branch: perl
34813            ! ext/DynaLoader/XSLoader_pm.PL ext/DynaLoader/t/XSLoader.t
34814 ____________________________________________________________________________
34815 [ 25765] By: stevep                                on 2005/10/16  13:02:19
34816         Log: Upgrade to Pod-Parser-1.34 (with some changes to get the new test file
34817              to work within the core).
34818      Branch: perl
34819            + lib/Pod/t/contains_pod.t t/lib/contains_pod.xr
34820            ! MANIFEST lib/Pod/Find.pm
34821 ____________________________________________________________________________
34822 [ 25764] By: stevep                                on 2005/10/16  12:36:37
34823         Log: Upgrade to ExtUtils-ParseXS-2.15.
34824      Branch: perl
34825            ! lib/ExtUtils/ParseXS.pm
34826 ____________________________________________________________________________
34827 [ 25763] By: nicholas                              on 2005/10/15  21:35:29
34828         Log: Subject: pre{inc,dec} is faster, even with integers
34829              From: hv@crypt.org
34830              Message-Id: <200510141722.j9EHMfa25945@zen.crypt.org>
34831              Date: Fri, 14 Oct 2005 18:22:41 +0100
34832      Branch: perl
34833            ! op.c t/op/inc.t
34834 ____________________________________________________________________________
34835 [ 25761] By: craigb                                on 2005/10/15  03:59:44
34836         Log: Subject: [patch@blead] perlport.pod
34837              From: "John E. Malmberg" <wb8tyw@qsl.net>
34838              Date: Fri, 14 Oct 2005 23:48:20 -0400
34839              Message-id: <43507C04.8050003@qsl.net>
34840      Branch: perl
34841            ! pod/perlport.pod
34842 ____________________________________________________________________________
34843 [ 25760] By: craigb                                on 2005/10/15  03:43:30
34844         Log: Subject: patch for blead - Perlvms.pod update
34845              From: "John E. Malmberg" <wb8tyw@qsl.net>
34846              Date: Fri, 14 Oct 2005 21:15:26 -0400
34847              Message-id: <4350582E.4070209@qsl.net>
34848      Branch: perl
34849            ! vms/perlvms.pod
34850 ____________________________________________________________________________
34851 [ 25759] By: craigb                                on 2005/10/14  15:31:33
34852         Log: Grab enough room from the outset in do_tovmsspec()
34853      Branch: perl
34854            ! vms/vms.c
34855 ____________________________________________________________________________
34856 [ 25758] By: steveh                                on 2005/10/14  08:00:58
34857         Log: Subject: [PATCH] Compress::Zlib - fix for win32
34858              From: "Paul Marquess" <Paul.Marquess@ntlworld.com>
34859              Date: Thu, 13 Oct 2005 23:06:25 +0100
34860              Message-ID: <002a01c5d042$5c25fea0$1a1c140a@myopwv.com>
34861      Branch: perl
34862            ! ext/Compress/Zlib/Zlib.xs
34863 ____________________________________________________________________________
34864 [ 25757] By: stevep                                on 2005/10/14  03:46:24
34865         Log: gcc complains when it sees variables declared
34866              
34867              const register ...
34868              
34869              switched them all to 
34870              
34871              register const ...
34872      Branch: perl
34873            ! av.c pp.c pp_hot.c regexec.c sv.c toke.c util.c
34874 ____________________________________________________________________________
34875 [ 25756] By: stevep                                on 2005/10/14  01:20:21
34876         Log: Upgrade to Unicode-Collate-0.52
34877      Branch: perl
34878            ! lib/Unicode/Collate.pm lib/Unicode/Collate/Changes
34879            ! lib/Unicode/Collate/README lib/Unicode/Collate/t/test.t
34880 ____________________________________________________________________________
34881 [ 25755] By: stevep                                on 2005/10/13  23:31:03
34882         Log: Add PERL_USE_SAFE_PUTENV to the compile time options in perl -V
34883      Branch: perl
34884            ! perl.c
34885 ____________________________________________________________________________
34886 [ 25754] By: stevep                                on 2005/10/13  23:03:46
34887         Log: Subject: [PATCH] Stas' croak patch and then some
34888              From: Andy Lester <andy@petdance.com>
34889              Date: Thu, 13 Oct 2005 16:42:12 -0500
34890              Message-ID: <20051013214212.GA1122@petdance.com>
34891      Branch: perl
34892            ! embed.fnc gv.c op.c pad.c perl.c pp_sort.c proto.h regcomp.c
34893            ! sv.c t/TEST toke.c utf8.c
34894 ____________________________________________________________________________
34895 [ 25753] By: rgs                                   on 2005/10/13  15:53:39
34896         Log: If /dev/null is not readable, perl -e fails with
34897              an obscure error message. Make it more understandable.
34898      Branch: perl
34899            ! perl.c
34900 ____________________________________________________________________________
34901 [ 25752] By: rgs                                   on 2005/10/13  14:18:50
34902         Log: Subject: [patch@25744] t/op/local.t - change 25514 broke VMS
34903              From: "John E. Malmberg" <wb8tyw@qsl.net>
34904              Date: Thu, 13 Oct 2005 10:28:23 -0400
34905              Message-ID: <434E6F07.5020108@qsl.net>
34906      Branch: perl
34907            ! t/op/local.t
34908 ____________________________________________________________________________
34909 [ 25751] By: rgs                                   on 2005/10/13  12:38:21
34910         Log: Subject: SvPVutf8_nolen crashes [PATCH]
34911              From: Gisle Aas <gisle@ActiveState.com>
34912              Date: 13 Oct 2005 06:00:49 -0700
34913              Message-ID: <lrslv56072.fsf@caliper.activestate.com>
34914      Branch: perl
34915            ! sv.c
34916 ____________________________________________________________________________
34917 [ 25750] By: rgs                                   on 2005/10/13  12:22:24
34918         Log: Better cleanup of directories created by C::Zlib
34919      Branch: perl
34920            ! Makefile.SH
34921 ____________________________________________________________________________
34922 [ 25749] By: merijn                                on 2005/10/13  12:17:41
34923         Log: PL_use_safe_putenv needs to be in the export lists
34924      Branch: perl
34925            ! makedef.pl
34926 ____________________________________________________________________________
34927 [ 25748] By: rgs                                   on 2005/10/13  11:20:23
34928         Log: Subject: [PATCH] POD index entries with X<>
34929              From: Ivan Tubert-Brohman <itub@cpan.org>
34930              Date: Wed, 12 Oct 2005 19:20:18 -0400
34931              Message-ID: <434D9A32.4050305@cpan.org>
34932      Branch: perl
34933            ! pod/perldata.pod pod/perldebug.pod pod/perldsc.pod
34934            ! pod/perlfaq5.pod pod/perlfaq6.pod pod/perlform.pod
34935            ! pod/perlfunc.pod pod/perllexwarn.pod pod/perlmod.pod
34936            ! pod/perlobj.pod pod/perlop.pod pod/perlpod.pod pod/perlre.pod
34937            ! pod/perlref.pod pod/perlrun.pod pod/perlsub.pod
34938            ! pod/perlsyn.pod pod/perltie.pod
34939 ____________________________________________________________________________
34940 [ 25747] By: rgs                                   on 2005/10/13  09:43:46
34941         Log: Subject: Accidental interpolation of $@ in Pod::Html [PATCH]
34942              From: Gisle Aas <gisle@ActiveState.com>
34943              Date: 13 Oct 2005 01:42:32 -0700
34944              Message-ID: <lr7jch95af.fsf@caliper.activestate.com>
34945      Branch: perl
34946            ! lib/Pod/Html.pm
34947 ____________________________________________________________________________
34948 [ 25746] By: rgs                                   on 2005/10/13  09:05:42
34949         Log: The new REQUIRE token introduced by change 25599 must be
34950              nonassoc, just like the UNIOP token it's patterned after.
34951              (While we're at it, allow to use bison 2.1 to regenerate
34952              the parser files.)
34953      Branch: perl
34954            ! perly.act perly.h perly.tab perly.y regen_perly.pl
34955 ____________________________________________________________________________
34956 [ 25745] By: rgs                                   on 2005/10/13  08:14:32
34957         Log: Document that -F doesn't accept whitespace in patterns.
34958              (fixes bug #37366)
34959      Branch: perl
34960            ! pod/perlrun.pod
34961 ____________________________________________________________________________
34962 [ 25744] By: merijn                                on 2005/10/13  06:10:27
34963         Log: Subject: RE: [PATCH] Compress::Zlib
34964              From: "Paul Marquess" <Paul.Marquess@ntlworld.com>
34965              Date: Wed, 12 Oct 2005 22:41:41 +0100
34966              Message-ID: <004c01c5cf75$bd368fc0$0e1c140a@myopwv.com>
34967      Branch: perl
34968            ! ext/Compress/Zlib/lib/Compress/Zlib/Common.pm
34969 ____________________________________________________________________________
34970 [ 25743] By: stevep                                on 2005/10/12  23:28:04
34971         Log: Subject: [PATCH pp_sort.c 5.8.7]  Typo in comment.
34972              From: Abigail <abigail@abigail.nl>
34973              Date: Thu, 13 Oct 2005 01:25:10 +0200
34974              Message-ID: <20051012232509.GA1018@abigail.nl>
34975      Branch: perl
34976            ! pp_sort.c
34977 ____________________________________________________________________________
34978 [ 25742] By: rgs                                   on 2005/10/12  15:55:21
34979         Log: Subject: [PATCH] Symbian blead update: Symbian port 0.2.0
34980              From: <jarkko.hietaniemi@nokia.com>
34981              Date: Wed, 12 Oct 2005 19:12:57 +0300
34982              Message-ID: <B356D8F434D20B40A8CEDAEC305A1F24E7A5E6@esebe105.NOE.Nokia.com>
34983      Branch: perl
34984            + symbian/sisify.pl
34985            ! MANIFEST README.symbian symbian/PerlApp.cpp symbian/PerlApp.h
34986            ! symbian/TODO symbian/config.pl symbian/port.pl
34987 ____________________________________________________________________________
34988 [ 25741] By: rgs                                   on 2005/10/12  11:37:49
34989         Log: Update to the config boilerplates, by Jarkko
34990      Branch: perl
34991            ! Cross/config.sh-arm-linux NetWare/config.wc epoc/config.sh
34992            ! plan9/config_sh.sample symbian/config.sh uconfig.h uconfig.sh
34993            ! wince/config.ce
34994 ____________________________________________________________________________
34995 [ 25740] By: craigb                                on 2005/10/11  23:58:26
34996         Log: disarm unsetenv() on VMS for now (function is present
34997              but %ENV is more complicated)
34998      Branch: perl
34999            ! configure.com
35000 ____________________________________________________________________________
35001 [ 25739] By: stevep                                on 2005/10/11  22:27:18
35002         Log: Subject: [PATCH] Compress::Zlib
35003              From: Paul Marquess <Paul.Marquess@ntlworld.com>
35004              Date: Tue, 11 Oct 2005 22:54:25 +0100
35005              
35006              This silences a few warnings on AIX
35007      Branch: perl
35008            ! ext/Compress/Zlib/lib/Compress/Zlib/Common.pm
35009            ! ext/Compress/Zlib/t/04def.t
35010 ____________________________________________________________________________
35011 [ 25738] By: rgs                                   on 2005/10/11  21:14:49
35012         Log: Comment fix
35013      Branch: perl
35014            ! perl.c
35015 ____________________________________________________________________________
35016 [ 25737] By: merijn                                on 2005/10/11  15:15:37
35017         Log: Subject: [PATCH] environ fixup
35018              From: Alan Burlison <Alan.Burlison@sun.com>
35019              Date: Tue, 11 Oct 2005 16:29:54 +0100
35020              Message-ID: <434BDA72.4090109@sun.com>
35021      Branch: perl
35022            ! handy.h hints/solaris_2.sh perl.c util.c
35023 ____________________________________________________________________________
35024 [ 25736] By: merijn                                on 2005/10/11  11:30:22
35025         Log: Subject: [PATCH] Symbian blead fix
35026              From: <jarkko.hietaniemi@nokia.com>
35027              Date: Tue, 11 Oct 2005 14:48:49 +0300
35028              Message-ID: <B356D8F434D20B40A8CEDAEC305A1F24E7A5D4@esebe105.NOE.Nokia.com>
35029      Branch: perl
35030            ! symbian/PerlApp.cpp
35031 ____________________________________________________________________________
35032 [ 25735] By: merijn                                on 2005/10/11  11:25:46
35033         Log: Subject: [PATCH] Compress::Zlib
35034              From: "Paul Marquess" <Paul.Marquess@ntlworld.com>
35035              Date: Tue, 11 Oct 2005 12:35:22 +0100
35036              Message-ID: <013e01c5ce57$dee62af0$671c140a@myopwv.com>
35037      Branch: perl
35038            ! ext/Compress/Zlib/lib/Compress/Zlib/Common.pm
35039            ! ext/Compress/Zlib/t/16oneshot.t
35040 ____________________________________________________________________________
35041 [ 25734] By: steveh                                on 2005/10/11  10:09:48
35042         Log: Update win32 config files w.r.t. change #25733
35043      Branch: perl
35044            ! win32/config.bc win32/config.gc win32/config.vc
35045            ! win32/config.vc64 win32/config_H.bc win32/config_H.gc
35046            ! win32/config_H.vc win32/config_H.vc64
35047 ____________________________________________________________________________
35048 [ 25733] By: merijn                                on 2005/10/10  13:47:17
35049         Log: Add probe for unsetenv ()
35050              Subject: Re: Perl's handling of environ breaks on Solaris 10
35051              From: Steve Peters <steve@fisharerojo.org>
35052              Date: Mon, 10 Oct 2005 07:51:17 -0500
35053              Message-ID: <20051010125117.GA27566@mccoy.peters.homeunix.org>
35054      Branch: perl
35055            ! Configure Porting/Glossary config_h.SH handy.h
35056 ____________________________________________________________________________
35057 [ 25731] By: stevep                                on 2005/10/10  13:14:50
35058         Log: Subject: Re: Win32::GetShortPathName() does not always return a short name [DOC PATCH]
35059              From: Gisle Aas <gisle@ActiveState.com>
35060              Date: 10 Oct 2005 06:20:23 -0700
35061              
35062              Change to remove a call to Win32::GetShortPathName() from 
35063              Test::Harness::Straps.
35064      Branch: perl
35065            ! lib/Test/Harness/Straps.pm
35066 ____________________________________________________________________________
35067 [ 25730] By: rgs                                   on 2005/10/10  11:22:08
35068         Log: Subject: [PATCH] Symbian bleadperl@25725 update
35069              From: <jarkko.hietaniemi@nokia.com>
35070              Date: Mon, 10 Oct 2005 14:28:31 +0300
35071              Message-ID: <B356D8F434D20B40A8CEDAEC305A1F24E7A5C4@esebe105.NOE.Nokia.com>
35072      Branch: perl
35073            ! ext/Compress/Zlib/Zlib.xs ext/Compress/Zlib/zlib-src/trees.c
35074            ! symbian/PerlApp.cpp symbian/TODO symbian/symbian_utils.cpp
35075            ! symbian/xsbuild.pl
35076 ____________________________________________________________________________
35077 [ 25729] By: rgs                                   on 2005/10/10  11:16:24
35078         Log: Subject: RE: [PATCH] Compress::Zlib
35079              From: "Paul Marquess" <Paul.Marquess@ntlworld.com>
35080              Date: Mon, 10 Oct 2005 12:24:29 +0100
35081              Message-ID: <013501c5cd8d$2f5d3e90$291c140a@myopwv.com>
35082      Branch: perl
35083            ! ext/Compress/Zlib/Makefile.PL ext/Compress/Zlib/Zlib.xs
35084 ____________________________________________________________________________
35085 [ 25728] By: merijn                                on 2005/10/10  10:36:51
35086         Log: Subject: Win32::GetShortPathName() does not always return a short name [DOC PATCH]
35087              From: Gisle Aas <gisle@ActiveState.com>
35088              Date: 10 Oct 2005 03:58:09 -0700
35089              Message-ID: <lrk6glej0e.fsf@caliper.activestate.com>
35090      Branch: perl
35091            ! win32/ext/Win32/Win32.pm
35092 ____________________________________________________________________________
35093 [ 25727] By: merijn                                on 2005/10/10  10:27:12
35094         Log: Making t/14gzopen.t a bit more robust.
35095              Subject: [PATCH] Compress::Zlib
35096              From: "Paul Marquess" <Paul.Marquess@ntlworld.com>
35097              Date: Mon, 10 Oct 2005 11:40:00 +0100
35098              Message-ID: <012101c5cd86$f895b640$291c140a@myopwv.com>
35099      Branch: perl
35100            ! ext/Compress/Zlib/Makefile.PL ext/Compress/Zlib/Zlib.xs
35101            ! ext/Compress/Zlib/t/14gzopen.t
35102 ____________________________________________________________________________
35103 [ 25726] By: merijn                                on 2005/10/10  06:14:30
35104         Log: Compress::Zlib should not ask under Cygwin in CORE
35105      Branch: perl
35106            ! ext/Compress/Zlib/Makefile.PL
35107 ____________________________________________________________________________
35108 [ 25725] By: stevep                                on 2005/10/10  01:18:58
35109         Log: From: Paul Marquess <Paul.Marquess@ntlworld.com>
35110              Subject: RE: [PATCH] DB_File 1.1812
35111              Date: Sun, 9 Oct 2005 23:25:38 +0100
35112              
35113              Patch to ext/Compress/Zlib/Zlib.xs from Paul Marquess.
35114      Branch: perl
35115            ! ext/Compress/Zlib/Zlib.xs
35116 ____________________________________________________________________________
35117 [ 25724] By: rgs                                   on 2005/10/09  21:27:57
35118         Log: Upgrade to DB_File 1.1812, by Paul Marquess
35119      Branch: perl
35120            ! ext/DB_File/Changes ext/DB_File/DB_File.pm
35121            ! ext/DB_File/DB_File.xs ext/DB_File/t/db-btree.t
35122            ! ext/DB_File/t/db-hash.t
35123 ____________________________________________________________________________
35124 [ 25723] By: stevep                                on 2005/10/09  18:53:02
35125         Log: Tweaks to get Test::Builder::Tester's tests to work in the core.
35126      Branch: perl
35127            ! lib/Test/Simple/t/tbt_01basic.t
35128            ! lib/Test/Simple/t/tbt_04line_num.t
35129 ____________________________________________________________________________
35130 [ 25722] By: stevep                                on 2005/10/09  18:06:13
35131         Log: Upgraded to ExtUtils-ParseXS-2.14.
35132      Branch: perl
35133            ! lib/ExtUtils/ParseXS.pm
35134 ____________________________________________________________________________
35135 [ 25721] By: rgs                                   on 2005/10/09  16:42:26
35136         Log: Don't use a regexp in DB::sub().
35137              This should work around perlbug #37102.
35138      Branch: perl
35139            ! lib/DB.pm
35140 ____________________________________________________________________________
35141 [ 25720] By: stevep                                on 2005/10/09  15:37:41
35142         Log: It would be nice to upgrade the right file.   Double grrrrr.
35143      Branch: perl
35144            ! lib/ExtUtils/CBuilder.pm
35145 ____________________________________________________________________________
35146 [ 25719] By: stevep                                on 2005/10/09  15:32:29
35147         Log: Add standard core test header to Test::Builder::Tester tests.
35148      Branch: perl
35149            ! lib/Test/Simple/t/tbt_01basic.t
35150            ! lib/Test/Simple/t/tbt_02fhrestore.t
35151            ! lib/Test/Simple/t/tbt_03die.t
35152            ! lib/Test/Simple/t/tbt_04line_num.t
35153            ! lib/Test/Simple/t/tbt_05faildiag.t
35154            ! lib/Test/Simple/t/tbt_06errormess.t
35155            ! lib/Test/Simple/t/tbt_07args.t
35156 ____________________________________________________________________________
35157 [ 25718] By: stevep                                on 2005/10/09  15:24:43
35158         Log: Upgrade to Test-Simple-0.62.
35159      Branch: perl
35160            + lib/Test/Builder/Tester.pm lib/Test/Builder/Tester/Color.pm
35161            + lib/Test/Simple/t/tbt_01basic.t
35162            + lib/Test/Simple/t/tbt_02fhrestore.t
35163            + lib/Test/Simple/t/tbt_03die.t
35164            + lib/Test/Simple/t/tbt_04line_num.t
35165            + lib/Test/Simple/t/tbt_05faildiag.t
35166            + lib/Test/Simple/t/tbt_06errormess.t
35167            + lib/Test/Simple/t/tbt_07args.t
35168            ! MANIFEST lib/Test/Builder.pm lib/Test/Builder/Module.pm
35169            ! lib/Test/More.pm lib/Test/Simple.pm lib/Test/Simple/Changes
35170            ! lib/Test/Simple/t/More.t lib/Test/Simple/t/bail_out.t
35171            ! lib/Test/Simple/t/is_deeply_fail.t
35172 ____________________________________________________________________________
35173 [ 25717] By: stevep                                on 2005/10/09  14:51:12
35174         Log: Missed files in upgrading modules.  Grrrr
35175      Branch: perl
35176            ! lib/Cwd.pm lib/ExtUtils/ParseXS.pm
35177 ____________________________________________________________________________
35178 [ 25716] By: rgs                                   on 2005/10/09  14:31:47
35179         Log: Subject: [PATCH with testsuite] undef IS_UTF8_CHAR() on EBCDIC
35180              From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
35181              Date: Oct 8, 2005 9:59 AM
35182              Message-Id: <20051008165752.348A.BQW10602@nifty.com>
35183      Branch: perl
35184            ! lib/utf8.t utf8.c utf8.h
35185 ____________________________________________________________________________
35186 [ 25712] By: stevep                                on 2005/10/07  15:41:32
35187         Log: Documentation nit in INSTALL found by Alan Burlison.
35188      Branch: perl
35189            ! INSTALL
35190 ____________________________________________________________________________
35191 [ 25711] By: stevep                                on 2005/10/07  03:29:37
35192         Log: Upgrade to Pathtools-3.12
35193      Branch: perl
35194            ! ext/Cwd/Changes ext/Cwd/t/cwd.t lib/File/Spec.pm
35195            ! lib/File/Spec/Win32.pm
35196 ____________________________________________________________________________
35197 [ 25710] By: craigb                                on 2005/10/07  02:41:03
35198         Log: Parse symbols for the linker when more than one declaration
35199              on the same line (the way PERLVARISC now throws at us).
35200      Branch: perl
35201            ! vms/gen_shrfls.pl
35202 ____________________________________________________________________________
35203 [ 25709] By: nicholas                              on 2005/10/06  21:31:39
35204         Log: Avoid a cast
35205      Branch: perl
35206            ! perl.c
35207 ____________________________________________________________________________
35208 [ 25708] By: stevep                                on 2005/10/06  19:23:59
35209         Log: Convert lvalue usage of SvNVX() and SvIVX() to SvNV_set() and
35210              SvIV_set().  Otherwise, compiling with -DPERL_DEBUG_COW fails.
35211      Branch: perl
35212            ! ext/Compress/Zlib/Zlib.xs
35213 ____________________________________________________________________________
35214 [ 25707] By: rgs                                   on 2005/10/06  13:42:00
35215         Log: Be nice with subversion hidden directories
35216      Branch: perl
35217            ! ext/Compress/Zlib/Makefile.PL
35218 ____________________________________________________________________________
35219 [ 25706] By: rgs                                   on 2005/10/06  13:24:24
35220         Log: Update with new files from C::Zlib
35221      Branch: perl
35222            ! Porting/Maintainers.pl
35223 ____________________________________________________________________________
35224 [ 25705] By: rgs                                   on 2005/10/06  13:23:20
35225         Log: Move ZlibTestUtils.pm under t/
35226      Branch: perl
35227            + t/lib/ZlibTestUtils.pm
35228            - lib/ZlibTestUtils.pm
35229            ! MANIFEST ext/Compress/Zlib/t/01version.t
35230            ! ext/Compress/Zlib/t/02zlib.t ext/Compress/Zlib/t/03zlib-v1.t
35231            ! ext/Compress/Zlib/t/04def.t ext/Compress/Zlib/t/05examples.t
35232            ! ext/Compress/Zlib/t/06gzsetp.t ext/Compress/Zlib/t/07bufsize.t
35233            ! ext/Compress/Zlib/t/08encoding.t
35234            ! ext/Compress/Zlib/t/09gziphdr.t ext/Compress/Zlib/t/10defhdr.t
35235            ! ext/Compress/Zlib/t/11truncate.t ext/Compress/Zlib/t/12any.t
35236            ! ext/Compress/Zlib/t/13prime.t ext/Compress/Zlib/t/14gzopen.t
35237            ! ext/Compress/Zlib/t/15multi.t ext/Compress/Zlib/t/16oneshot.t
35238            ! ext/Compress/Zlib/t/17isize.t ext/Compress/Zlib/t/18lvalue.t
35239            ! ext/Compress/Zlib/t/19destroy.t ext/Compress/Zlib/t/20tied.t
35240            ! ext/Compress/Zlib/t/21newtied.t ext/Compress/Zlib/t/22merge.t
35241            ! ext/Compress/Zlib/t/23misc.t ext/Compress/Zlib/t/globmapper.t
35242 ____________________________________________________________________________
35243 [ 25704] By: rgs                                   on 2005/10/06  09:09:06
35244         Log: Don't install pods via MakeMaker for C::Zlib,
35245              as suggested by Robin Barker
35246      Branch: perl
35247            ! ext/Compress/Zlib/Makefile.PL
35248 ____________________________________________________________________________
35249 [ 25703] By: merijn                                on 2005/10/06  08:42:56
35250         Log: Add -C to allowed $PERL5OPT options
35251              Add -C to the $PERL5OPT documentation (and added the missing -A too)
35252              t/run/runenv.t Could use some more tests about how supported
35253              and unsupported options in $PERL5OPT are handled
35254      Branch: perl
35255            ! perl.c pod/perldiag.pod pod/perlrun.pod
35256 ____________________________________________________________________________
35257 [ 25702] By: rgs                                   on 2005/10/06  07:27:39
35258         Log: Remove the getprotobynumber test, for portability concerns
35259      Branch: perl
35260            - t/op/getprotobynumber.t
35261            ! MANIFEST
35262 ____________________________________________________________________________
35263 [ 25701] By: nicholas                              on 2005/10/05  23:22:27
35264         Log: Fix Compress::Zlib test boilerplate
35265      Branch: perl
35266            ! ext/Compress/Zlib/t/01version.t ext/Compress/Zlib/t/02zlib.t
35267            ! ext/Compress/Zlib/t/03zlib-v1.t ext/Compress/Zlib/t/04def.t
35268            ! ext/Compress/Zlib/t/05examples.t
35269            ! ext/Compress/Zlib/t/06gzsetp.t ext/Compress/Zlib/t/07bufsize.t
35270            ! ext/Compress/Zlib/t/08encoding.t
35271            ! ext/Compress/Zlib/t/09gziphdr.t ext/Compress/Zlib/t/10defhdr.t
35272            ! ext/Compress/Zlib/t/11truncate.t ext/Compress/Zlib/t/12any.t
35273            ! ext/Compress/Zlib/t/13prime.t ext/Compress/Zlib/t/14gzopen.t
35274            ! ext/Compress/Zlib/t/15multi.t ext/Compress/Zlib/t/16oneshot.t
35275            ! ext/Compress/Zlib/t/17isize.t ext/Compress/Zlib/t/18lvalue.t
35276            ! ext/Compress/Zlib/t/19destroy.t ext/Compress/Zlib/t/20tied.t
35277            ! ext/Compress/Zlib/t/21newtied.t ext/Compress/Zlib/t/22merge.t
35278            ! ext/Compress/Zlib/t/23misc.t ext/Compress/Zlib/t/globmapper.t
35279 ____________________________________________________________________________
35280 [ 25699] By: rgs                                   on 2005/10/05  21:26:57
35281         Log: Compress::Zlib's Makefile.PL shouldn't create .bak files when building the core
35282      Branch: perl
35283            ! ext/Compress/Zlib/Makefile.PL
35284 ____________________________________________________________________________
35285 [ 25698] By: rgs                                   on 2005/10/05  21:03:29
35286         Log: Add test preambles to Compress::Zlib.
35287              Remove 99pod.t, useless in the core
35288      Branch: perl
35289            - ext/Compress/Zlib/t/99pod.t
35290            ! MANIFEST ext/Compress/Zlib/t/01version.t
35291            ! ext/Compress/Zlib/t/02zlib.t ext/Compress/Zlib/t/03zlib-v1.t
35292            ! ext/Compress/Zlib/t/04def.t ext/Compress/Zlib/t/05examples.t
35293            ! ext/Compress/Zlib/t/06gzsetp.t ext/Compress/Zlib/t/07bufsize.t
35294            ! ext/Compress/Zlib/t/08encoding.t
35295            ! ext/Compress/Zlib/t/09gziphdr.t ext/Compress/Zlib/t/10defhdr.t
35296            ! ext/Compress/Zlib/t/11truncate.t ext/Compress/Zlib/t/12any.t
35297            ! ext/Compress/Zlib/t/13prime.t ext/Compress/Zlib/t/14gzopen.t
35298            ! ext/Compress/Zlib/t/15multi.t ext/Compress/Zlib/t/16oneshot.t
35299            ! ext/Compress/Zlib/t/17isize.t ext/Compress/Zlib/t/18lvalue.t
35300            ! ext/Compress/Zlib/t/19destroy.t ext/Compress/Zlib/t/20tied.t
35301            ! ext/Compress/Zlib/t/21newtied.t ext/Compress/Zlib/t/22merge.t
35302            ! ext/Compress/Zlib/t/23misc.t ext/Compress/Zlib/t/globmapper.t
35303 ____________________________________________________________________________
35304 [ 25697] By: stevep                                on 2005/10/05  18:20:54
35305         Log: Subject: proposal [perl #34301]:  IO::Socket calls getpeername far too often
35306              From: Peter.Dintelmann@Dresdner-Bank.com (Peter Dintelmann)
35307              Date: Thu, 2 Jun 2005 13:34:49 +0200
35308              Message-ID: <E9A2605289D8D7468B1A21EC24E59D2101852447@naimucx5.muc.allianz>
35309      Branch: perl
35310            ! ext/IO/lib/IO/Socket.pm ext/IO/lib/IO/Socket/INET.pm
35311 ____________________________________________________________________________
35312 [ 25696] By: steveh                                on 2005/10/05  16:04:26
35313         Log: Subject: [PATCH] Re: Untested builtins
35314              From: Steven Schubiger <sts@accognoscere.org>
35315              Date: Wed, 28 Sep 2005 15:46:45 +0200
35316              Message-ID: <20050928134645.GD11546@accognoscere.homeunix.org>
35317      Branch: perl
35318            + t/op/getprotobynumber.t
35319            ! MANIFEST
35320 ____________________________________________________________________________
35321 [ 25695] By: rgs                                   on 2005/10/05  15:53:34
35322         Log: Upgrade to Compress::Zlib 2.000_05
35323      Branch: perl
35324            + ext/Compress/Zlib/examples/gzcat.zlib
35325            + ext/Compress/Zlib/fallback/constants.h
35326            + ext/Compress/Zlib/fallback/constants.xs
35327            + ext/Compress/Zlib/lib/Compress/Gzip/Constants.pm
35328            + ext/Compress/Zlib/lib/Compress/Zlib/Common.pm
35329            + ext/Compress/Zlib/lib/Compress/Zlib/FileConstants.pm
35330            + ext/Compress/Zlib/lib/Compress/Zlib/ParseParameters.pm
35331            + ext/Compress/Zlib/lib/File/GlobMapper.pm
35332            + ext/Compress/Zlib/lib/IO/Compress/Deflate.pm
35333            + ext/Compress/Zlib/lib/IO/Compress/Gzip.pm
35334            + ext/Compress/Zlib/lib/IO/Compress/RawDeflate.pm
35335            + ext/Compress/Zlib/lib/IO/Uncompress/AnyInflate.pm
35336            + ext/Compress/Zlib/lib/IO/Uncompress/Gunzip.pm
35337            + ext/Compress/Zlib/lib/IO/Uncompress/Inflate.pm
35338            + ext/Compress/Zlib/lib/IO/Uncompress/RawInflate.pm
35339            + ext/Compress/Zlib/pod/FAQ.pod ext/Compress/Zlib/ppport.h
35340            + ext/Compress/Zlib/t/03zlib-v1.t ext/Compress/Zlib/t/04def.t
35341            + ext/Compress/Zlib/t/05examples.t
35342            + ext/Compress/Zlib/t/06gzsetp.t ext/Compress/Zlib/t/07bufsize.t
35343            + ext/Compress/Zlib/t/08encoding.t
35344            + ext/Compress/Zlib/t/09gziphdr.t ext/Compress/Zlib/t/10defhdr.t
35345            + ext/Compress/Zlib/t/11truncate.t ext/Compress/Zlib/t/12any.t
35346            + ext/Compress/Zlib/t/13prime.t ext/Compress/Zlib/t/14gzopen.t
35347            + ext/Compress/Zlib/t/15multi.t ext/Compress/Zlib/t/16oneshot.t
35348            + ext/Compress/Zlib/t/17isize.t ext/Compress/Zlib/t/18lvalue.t
35349            + ext/Compress/Zlib/t/19destroy.t ext/Compress/Zlib/t/20tied.t
35350            + ext/Compress/Zlib/t/21newtied.t ext/Compress/Zlib/t/22merge.t
35351            + ext/Compress/Zlib/t/23misc.t ext/Compress/Zlib/t/99pod.t
35352            + ext/Compress/Zlib/t/globmapper.t lib/ZlibTestUtils.pm
35353            - ext/Compress/Zlib/ANNOUNCE ext/Compress/Zlib/fallback.h
35354            - ext/Compress/Zlib/fallback.xs ext/Compress/Zlib/t/03examples.t
35355            - ext/Compress/Zlib/t/04encoding.t
35356            - ext/Compress/Zlib/t/05gzsetp.t ext/Compress/Zlib/t/06gzdopen.t
35357            - ext/Compress/Zlib/zlib-src/gzio.c
35358            ! MANIFEST ext/Compress/Zlib/Changes
35359            ! ext/Compress/Zlib/Makefile.PL ext/Compress/Zlib/README
35360            ! ext/Compress/Zlib/Zlib.pm ext/Compress/Zlib/Zlib.xs
35361            ! ext/Compress/Zlib/config.in ext/Compress/Zlib/examples/filtdef
35362            ! ext/Compress/Zlib/examples/filtinf
35363            ! ext/Compress/Zlib/examples/gzcat
35364            ! ext/Compress/Zlib/examples/gzgrep
35365            ! ext/Compress/Zlib/examples/gzstream
35366            ! ext/Compress/Zlib/t/01version.t ext/Compress/Zlib/t/02zlib.t
35367            ! ext/Compress/Zlib/typemap
35368 ____________________________________________________________________________
35369 [ 25694] By: steveh                                on 2005/10/05  15:34:18
35370         Log: Fix $Config{ccflags} for Win32 perls built with dmake
35371              
35372              The nmake makefile (win32/Makefile) currently adds -nologo, $(STRPOOL)
35373              and -W3 to the ccflags in CFG_VARS, but the dmake makefile
35374              (win32/makefile.mk) doesn't.  This means that extensions built with
35375              perls built with VC++ and dmake spit out damn M$ logo messages and use
35376              a lower warning level.
35377              
35378              The reason for the difference is probably that the dmake makefile
35379              supports multiple compilers.  Therefore, put the extra ccflags into a
35380              new macro, and set it appropriately for each compiler.  Add the new
35381              macro to the nmake makefile too for orthogonality.
35382      Branch: perl
35383            ! win32/Makefile win32/makefile.mk
35384 ____________________________________________________________________________
35385 [ 25693] By: merijn                                on 2005/10/05  15:34:09
35386         Log: Subject: Re: [PATCH] Random constings and printf cleanup
35387              From: Andy Lester <andy@petdance.com>
35388              Date: Tue, 4 Oct 2005 15:16:05 -0500
35389              Message-ID: <20051004201605.GA31682@petdance.com>
35390      Branch: perl
35391            ! malloc.c pad.c perl.c perl.h pp_ctl.c sv.c utf8.c xsutils.c
35392 ____________________________________________________________________________
35393 [ 25691] By: stevep                                on 2005/10/04  16:24:28
35394         Log: Fixes to Pod errors found by podchecker.
35395      Branch: perl
35396            ! README.os2 pod/perlfunc.pod
35397 ____________________________________________________________________________
35398 [ 25690] By: stevep                                on 2005/10/04  12:02:04
35399         Log: Upgrade to ExtUtils-ParseXS-2.13
35400      Branch: perl
35401            ! lib/ExtUtils/ParseXS.pm
35402 ____________________________________________________________________________
35403 [ 25689] By: stevep                                on 2005/10/04  11:01:11
35404         Log: Upgrade to ExtUtils-CBuilder-0.15 (with a small edit to 
35405              ExtUtils::CBuilder::Pltaform::dec_osf.pm to add a $VERSION)
35406      Branch: perl
35407            ! lib/ExtUtils/CBuilder.pm lib/ExtUtils/CBuilder/Base.pm
35408            ! lib/ExtUtils/CBuilder/Platform/Windows.pm
35409            ! lib/ExtUtils/CBuilder/Platform/dec_osf.pm
35410            ! lib/ExtUtils/CBuilder/Platform/os2.pm
35411            ! lib/ExtUtils/CBuilder/t/02-link.t
35412 ____________________________________________________________________________
35413 [ 25688] By: merijn                                on 2005/10/04  10:10:41
35414         Log: Subject: Re: $^CHILD_ERROR_NATIVE issues (with attachment)
35415              From: Gisle Aas <gisle@ActiveState.com>
35416              Date: 04 Oct 2005 02:18:27 -0700
35417              Message-ID: <lrd5ml7i8s.fsf@caliper.activestate.com>
35418      Branch: perl
35419            ! cop.h doio.c perl.c perl.h pp_sys.c win32/perlhost.h
35420            ! wince/perlhost.h
35421 ____________________________________________________________________________
35422 [ 25687] By: rgs                                   on 2005/10/03  16:16:21
35423         Log: Subject: Clone PL_statusvalue_posix [PATCH]
35424              From: Gisle Aas <gisle@ActiveState.com>
35425              Date: 03 Oct 2005 09:37:57 -0700
35426              Message-ID: <lr3bni8ska.fsf_-_@caliper.activestate.com>
35427      Branch: perl
35428            ! sv.c
35429 ____________________________________________________________________________
35430 [ 25686] By: rgs                                   on 2005/10/03  15:42:45
35431         Log: Pod::Usage documentation fix, suggested by :
35432              
35433              Subject: [perl #37322] Pod::Usage implementation of -sections disagrees with its documentation 
35434              From: "Steven Schubiger via RT" <perlbug-followup@perl.org>
35435              Date: Sun, 02 Oct 2005 07:25:37 -0700
35436              Message-ID: <rt-3.0.11-37322-121918.15.4257995782182@perl.org>
35437      Branch: perl
35438            ! lib/Pod/Usage.pm
35439 ____________________________________________________________________________
35440 [ 25685] By: rgs                                   on 2005/10/03  15:17:09
35441         Log: Yitzchak points out that this function argument is NULLOK
35442      Branch: perl
35443            ! embed.fnc proto.h
35444 ____________________________________________________________________________
35445 [ 25684] By: rgs                                   on 2005/10/03  11:27:31
35446         Log: Spaces to tabs
35447      Branch: perl
35448            ! MANIFEST
35449 ____________________________________________________________________________
35450 [ 25683] By: craigb                                on 2005/10/03  03:43:31
35451         Log: We lied about strtoq way back in #8120
35452      Branch: perl
35453            ! configure.com
35454 ____________________________________________________________________________
35455 [ 25682] By: stevep                                on 2005/10/03  03:10:05
35456         Log: Upgrade to Digest-1.12
35457      Branch: perl
35458            ! lib/Digest.pm lib/Digest/Changes
35459 ____________________________________________________________________________
35460 [ 25681] By: craigb                                on 2005/10/03  00:20:30
35461         Log: fix bug introduced by #25507 that kept ccflags from
35462              making it into config.sh
35463      Branch: perl
35464            ! configure.com
35465 ____________________________________________________________________________
35466 [ 25680] By: craigb                                on 2005/10/02  21:45:20
35467         Log: assorted blead build help for VMS (mostly ithreads-related)
35468      Branch: perl
35469            ! configure.com pp_sys.c vms/gen_shrfls.pl vms/vmsish.h
35470 ____________________________________________________________________________
35471 [ 25679] By: stevep                                on 2005/10/02  12:50:02
35472         Log: Subject: [perl #37233] [PATCH] Test::Harness and Devel::Cover combine with overloading to cause infinite recursion in Carp.pm 
35473              From: perlbug-followup[at]perl.org (Yves Orton)
35474              Date: Thu, 22 Sep 2005 11:31:02 -0700
35475              Message-ID: <rt-3.0.11-37233-121233.2.25543632691242[at]perl.org>
35476      Branch: perl
35477            ! lib/Carp/Heavy.pm
35478 ____________________________________________________________________________
35479 [ 25678] By: stevep                                on 2005/10/02  04:42:46
35480         Log: Clarify the documentation regarding the return value from C<push>.
35481      Branch: perl
35482            ! pod/perlfunc.pod
35483 ____________________________________________________________________________
35484 [ 25677] By: stevep                                on 2005/10/02  04:32:48
35485         Log: If a 'use' or 'require' fails due to too many open files (EMFILE),
35486              give an appropriate error message rather than saying the module
35487              cannot be found in @INC.
35488      Branch: perl
35489            ! pp_ctl.c
35490 ____________________________________________________________________________
35491 [ 25676] By: stevep                                on 2005/10/02  03:30:55
35492         Log: Missed test changes and a bit of debugging code that should 
35493              have been removed.
35494      Branch: perl
35495            ! lib/Pod/Html.pm lib/Pod/t/htmlescp.t lib/Pod/t/htmlview.t
35496 ____________________________________________________________________________
35497 [ 25675] By: stevep                                on 2005/10/02  02:24:12
35498         Log: Fix some of the XHTML issues in Pod::Html.  The call for some time
35499              with a debugger to figure out what is going on.
35500      Branch: perl
35501            ! lib/Pod/Html.pm
35502 ____________________________________________________________________________
35503 [ 25674] By: davem                                 on 2005/10/01  23:51:40
35504         Log: Improve -DT output and fix wild buffer pointer error
35505      Branch: perl
35506            ! toke.c
35507 ____________________________________________________________________________
35508 [ 25672] By: steveh                                on 2005/09/30  15:52:30
35509         Log: Make building perl on Win32 with the free VC++ toolkit easier
35510              
35511              Introduce new CCTYPE's MSVC70FREE and MSVC70 for the free and the full
35512              versions of MS VC++ 7.x respectively.  Perl can now be built with the
35513              free VC++ toolkit simply by running "nmake CCTYPE=MSVC70FREE" with no
35514              hacking of the win32/Makefile required.  Update README.win32 with
35515              these changes.
35516              
35517              Also add the CCTYPE MSVC to win32/Makefile.  This is already supported
35518              in win32/makefile.mk and is useful for avoiding the use of -DELAYLOAD
35519              for MS VC++ 3.x through 5.x.  Update README.win32 for this too.
35520      Branch: perl
35521            ! README.win32 win32/Makefile win32/makefile.mk
35522 ____________________________________________________________________________
35523 [ 25666] By: rgs                                   on 2005/09/30  08:59:14
35524         Log: Upgrade to XSLoader 0.05, plus a few doc nits,
35525              by Sébastien Aperghis-Tramoni <maddingue@free.fr>
35526      Branch: perl
35527            ! ext/DynaLoader/XSLoader_pm.PL ext/DynaLoader/t/XSLoader.t
35528 ____________________________________________________________________________
35529 [ 25665] By: davem                                 on 2005/09/29  22:57:44
35530         Log: PL_defoutgv could be used after being freed
35531              Was giving "use of freed value" warnings in t/io/through.t
35532              and t/io/crlf_through.t
35533      Branch: perl
35534            ! perl.c
35535 ____________________________________________________________________________
35536 [ 25664] By: davem                                 on 2005/09/29  21:01:54
35537         Log: the return value of start_subparse() can legally be ignored
35538      Branch: perl
35539            ! embed.fnc gv.c proto.h
35540 ____________________________________________________________________________
35541 [ 25663] By: stevep                                on 2005/09/29  20:43:52
35542         Log: Added new flag (--use-xsloader) to use XSLoader when in backward
35543              compatibility mode.
35544      Branch: perl
35545            ! utils/h2xs.PL
35546 ____________________________________________________________________________
35547 [ 25662] By: stevep                                on 2005/09/29  18:04:29
35548         Log: With XSLoader on CPAN now, add XSLoader as a prerequisite in Makefile.PL
35549              if the compatible version is less than 5.006 (the first version with 
35550              XSLoader).
35551      Branch: perl
35552            ! utils/h2xs.PL
35553 ____________________________________________________________________________
35554 [ 25660] By: nicholas                              on 2005/09/29  13:00:18
35555         Log: 2 more e-mail addresses that map to rgs
35556      Branch: perl
35557            ! Porting/checkAUTHORS.pl
35558 ____________________________________________________________________________
35559 [ 25659] By: nicholas                              on 2005/09/29  12:54:00
35560         Log: checkAUTHORS.pl wasn't aware of one of Merijn's e-mail addresses
35561      Branch: perl
35562            ! Porting/checkAUTHORS.pl
35563 ____________________________________________________________________________
35564 [ 25658] By: nicholas                              on 2005/09/29  12:50:40
35565         Log: Correct/tweak Changes so that checkAUTHORS.pl parses it.
35566      Branch: perl
35567            ! Changes
35568 ____________________________________________________________________________
35569 [ 25657] By: nicholas                              on 2005/09/29  11:01:53
35570         Log: Teach the alias mapping about new committers.
35571      Branch: perl
35572            ! Porting/checkAUTHORS.pl
35573 ____________________________________________________________________________
35574 [ 25656] By: nicholas                              on 2005/09/29  10:54:56
35575         Log: Cope with completely empty lines within the Changes file.
35576              Better diagnostics on "malformed" lines.
35577      Branch: perl
35578            ! Porting/checkAUTHORS.pl
35579 ____________________________________________________________________________
35580 [ 25652] By: steveh                                on 2005/09/29  08:47:26
35581         Log: Clean up CBuilder and ParseXS test files
35582              
35583              This was done once already in change 25222, but then modified in change
35584              25225.  The new versions of CBuilder and ParseXS that sync'ed those
35585              changes and have now been integrated back into bleadperl missed some
35586              bits of change 25225.  Try again.
35587      Branch: perl
35588            ! lib/ExtUtils/CBuilder.pm lib/ExtUtils/CBuilder/t/01-basic.t
35589            ! lib/ExtUtils/CBuilder/t/02-link.t lib/ExtUtils/ParseXS.pm
35590            ! lib/ExtUtils/ParseXS/t/basic.t
35591 ____________________________________________________________________________
35592 [ 25651] By: nicholas                              on 2005/09/29  06:52:35
35593         Log: Attempting to do too many things simultaneously with the C pre-
35594              processor considered harmful.
35595      Branch: perl
35596            ! perl.c
35597 ____________________________________________________________________________
35598 [ 25650] By: stevep                                on 2005/09/29  00:23:44
35599         Log: Upgrade to ExtUtils::CBuilder 0.14
35600      Branch: perl
35601            ! lib/ExtUtils/CBuilder.pm lib/ExtUtils/CBuilder/Base.pm
35602            ! lib/ExtUtils/CBuilder/Platform/VMS.pm
35603            ! lib/ExtUtils/CBuilder/t/01-basic.t
35604            ! lib/ExtUtils/CBuilder/t/02-link.t
35605 ____________________________________________________________________________
35606 [ 25649] By: stevep                                on 2005/09/28  22:59:08
35607         Log: Upgrade to Test::Harness 2.56
35608      Branch: perl
35609            + t/lib/sample-tests/bignum_many
35610            ! MANIFEST lib/Test/Harness.pm lib/Test/Harness/Changes
35611            ! lib/Test/Harness/Straps.pm lib/Test/Harness/TAP.pod
35612            ! lib/Test/Harness/bin/prove lib/Test/Harness/t/test-harness.t
35613            ! t/lib/sample-tests/bignum
35614 ____________________________________________________________________________
35615 [ 25640] By: nicholas                              on 2005/09/28  19:56:53
35616         Log: savepv and savepvn are actually NULLOK
35617      Branch: perl
35618            ! embed.fnc proto.h
35619 ____________________________________________________________________________
35620 [ 25638] By: nicholas                              on 2005/09/28  18:51:15
35621         Log: Forgot to run embed.pl after change 25637
35622      Branch: perl
35623            ! proto.h
35624 ____________________________________________________________________________
35625 [ 25637] By: nicholas                              on 2005/09/28  18:31:04
35626         Log: Subject: [PATCH] embed.fnc now requires NN/NULLOK
35627              From: Andy Lester <andy@petdance.com>
35628              Message-ID: <20050928172254.GE20201@petdance.com>
35629              Date: Wed, 28 Sep 2005 12:22:54 -0500
35630      Branch: perl
35631            ! embed.fnc embed.pl
35632 ____________________________________________________________________________
35633 [ 25634] By: nicholas                              on 2005/09/28  15:56:45
35634         Log: We can use the C pre-processor to build a single, longer string
35635              constant which makes the object code slightly smaller.
35636      Branch: perl
35637            ! perl.c
35638 ____________________________________________________________________________
35639 [ 25627] By: steveh                                on 2005/09/28  08:23:01
35640         Log: Improve File::Spec::Win32->path() and fix MM_Win32.t
35641              
35642              Subject: Improved File::Spec::Win32->path [PATCH]
35643              From: Gisle Aas <gisle@ActiveState.com>
35644              Date: 17 Sep 2005 00:13:41 -0700
35645              Message-ID: <lrk6hgrwt6.fsf@caliper.activestate.com>
35646              
35647              Subject: Re: Improved File::Spec::Win32->path [PATCH]
35648              From: Michael G Schwern <schwern@pobox.com>
35649              Date: Tue, 27 Sep 2005 13:05:54 -0700
35650              Message-ID: <20050927200554.GC20908@windhund.schwern.org>
35651      Branch: perl
35652            ! lib/ExtUtils/t/MM_Win32.t lib/File/Spec/Win32.pm
35653 ____________________________________________________________________________
35654 [ 25626] By: stevep                                on 2005/09/28  00:06:29
35655         Log: Upgrade to CGI-3.11, with some modifications for Pod differences in
35656              bleadperl.
35657      Branch: perl
35658            ! lib/CGI.pm lib/CGI/Changes lib/CGI/Cookie.pm
35659 ____________________________________________________________________________
35660 [ 25625] By: rgs                                   on 2005/09/27  20:07:32
35661         Log: Comment nit by Vadim Konovalov
35662              And while we're at it, reindent consistently.
35663      Branch: perl
35664            ! t/io/crlf.t
35665 ____________________________________________________________________________
35666 [ 25624] By: rgs                                   on 2005/09/27  20:04:07
35667         Log: POD nit by Yitzchak
35668      Branch: perl
35669            ! pod/perlfunc.pod
35670 ____________________________________________________________________________
35671 [ 25623] By: rgs                                   on 2005/09/27  17:02:42
35672         Log: Clarify what -MFoo=number does on the command-line
35673      Branch: perl
35674            ! pod/perlrun.pod
35675 ____________________________________________________________________________
35676 [ 25621] By: stevep                                on 2005/09/27  15:05:18
35677         Log: Subject: AW: [perl #36291] incorrect $! from open ">&nr" with too many open files
35678              From: "Dintelmann, Peter" <Peter.Dintelmann@Dresdner-Bank.com>
35679              Date: Tue, 27 Sep 2005 15:18:00 +0200
35680      Branch: perl
35681            ! doio.c
35682 ____________________________________________________________________________
35683 [ 25619] By: rgs                                   on 2005/09/27  14:25:53
35684         Log: Fix by Rick Delaney for [perl #3269] no warnings "bareword" turns off
35685              too many warnings.
35686      Branch: perl
35687            ! mg.c t/io/binmode.t t/lib/warnings/2use
35688 ____________________________________________________________________________
35689 [ 25618] By: rgs                                   on 2005/09/27  12:53:49
35690         Log: Subject: [PATCH] Re: [BUG 5.8.7] Another major bug in PerlIO layer
35691              From: Ilya Zakharevich <nospam-abuse@ilyaz.org>
35692              Date: Tue, 27 Sep 2005 02:07:35 -0700
35693              Message-ID: <20050927090734.GB3687@math.berkeley.edu>
35694      Branch: perl
35695            + t/io/crlf_through.t t/io/through.t
35696            ! MANIFEST perlio.c
35697 ____________________________________________________________________________
35698 [ 25617] By: rgs                                   on 2005/09/27  11:06:23
35699         Log: OPpRUNTIME can be set on OP_QR too
35700      Branch: perl
35701            ! ext/B/B/Concise.pm
35702 ____________________________________________________________________________
35703 [ 25616] By: rgs                                   on 2005/09/27  10:09:46
35704         Log: Fix the overriding of CORE::do, just like change 25599
35705              was fixing the overriding of CORE::require
35706      Branch: perl
35707            ! embed.fnc embed.h op.c perly.act perly.y proto.h toke.c
35708 ____________________________________________________________________________
35709 [ 25615] By: rgs                                   on 2005/09/27  09:18:42
35710         Log: Micro-optimisation: use PL_globalstash instead of looking up
35711              CORE::GLOBAL::require by name
35712      Branch: perl
35713            ! op.c
35714 ____________________________________________________________________________
35715 [ 25614] By: rgs                                   on 2005/09/27  09:04:50
35716         Log: Addition to change 25612
35717      Branch: perl
35718            ! symbian/PerlApp.cpp
35719 ____________________________________________________________________________
35720 [ 25613] By: rgs                                   on 2005/09/27  08:36:24
35721         Log: Subject: [PATCH] mark cannot be const because MEXTEND() modifies it, and tkGlue.c uses MEXTEND()
35722              From: "Jan Dubois" <jand@ActiveState.com>
35723              Date: Mon, 26 Sep 2005 21:19:51 -0700
35724              Message-Id: <200509270419.j8R4JtVw026876@smtp3.ActiveState.com>
35725      Branch: perl
35726            ! XSUB.h
35727 ____________________________________________________________________________
35728 [ 25612] By: rgs                                   on 2005/09/27  08:33:36
35729         Log: Subject: [PATCH] 5.9.x@25609 Symbian update
35730              From: <jarkko.hietaniemi@nokia.com>
35731              Date: Tue, 27 Sep 2005 11:54:00 +0300
35732              Message-ID: <B356D8F434D20B40A8CEDAEC305A1F24E7A55C@esebe105.NOE.Nokia.com>
35733      Branch: perl
35734            ! symbian/PerlApp.cpp symbian/config.sh
35735 ____________________________________________________________________________
35736 [ 25611] By: rgs                                   on 2005/09/27  07:42:52
35737         Log: Test for OPpCONST_NOVER only on OP_CONST ops.
35738              Plus a regression test by Schwern.
35739      Branch: perl
35740            ! pp_ctl.c t/op/override.t
35741 ____________________________________________________________________________
35742 [ 25610] By: rgs                                   on 2005/09/27  06:40:09
35743         Log: Subject: Warnings in tests @25605 due to cmp_ok behavior change.
35744              From: Michael G Schwern <schwern@pobox.com>
35745              Date: Mon, 26 Sep 2005 14:21:09 -0700
35746              Message-ID: <20050926212109.GA11036@windhund.schwern.org>
35747      Branch: perl
35748            ! lib/AutoSplit.t lib/Pod/t/InputObjects.t
35749 ____________________________________________________________________________
35750 [ 25609] By: stevep                                on 2005/09/27  02:45:50
35751         Log: Upgrade to Encode 2.12
35752      Branch: perl
35753            ! ext/Encode/AUTHORS ext/Encode/Changes ext/Encode/Encode.pm
35754            ! ext/Encode/Encode.xs ext/Encode/META.yml
35755            ! ext/Encode/encoding.pm ext/Encode/lib/Encode/Supported.pod
35756            ! ext/Encode/t/fallback.t ext/Encode/ucm/8859-7.ucm
35757 ____________________________________________________________________________
35758 [ 25608] By: stevep                                on 2005/09/26  23:09:44
35759         Log: Upgrade to Digest 1.11 with a minor Pod fix.  Also my first commit :)
35760      Branch: perl
35761            ! lib/Digest.pm lib/Digest/Changes
35762 ____________________________________________________________________________
35763 [ 25605] By: nicholas                              on 2005/09/26  17:54:06
35764         Log: const sausage const const bacon const tomato and const
35765              The search_ext parameter to find_script can be a little more const.
35766      Branch: perl
35767            ! embed.fnc proto.h util.c
35768 ____________________________________________________________________________
35769 [ 25604] By: rgs                                   on 2005/09/26  16:31:43
35770         Log: Upgrade to Test::Simple 0.61
35771      Branch: perl
35772            + lib/Test/Builder/Module.pm lib/Test/Simple/t/bail_out.t
35773            + t/lib/Test/Simple/sample_tests/too_few_fail.plx
35774            ! MANIFEST lib/Test/Builder.pm lib/Test/More.pm
35775            ! lib/Test/Simple.pm lib/Test/Simple/Changes
35776            ! lib/Test/Simple/t/00test_harness_check.t
35777            ! lib/Test/Simple/t/create.t lib/Test/Simple/t/eq_set.t
35778            ! lib/Test/Simple/t/exit.t lib/Test/Simple/t/extra.t
35779            ! lib/Test/Simple/t/extra_one.t lib/Test/Simple/t/fail-like.t
35780            ! lib/Test/Simple/t/fail-more.t lib/Test/Simple/t/fail.t
35781            ! lib/Test/Simple/t/fail_one.t
35782            ! lib/Test/Simple/t/harness_active.t
35783            ! lib/Test/Simple/t/has_plan2.t
35784            ! lib/Test/Simple/t/is_deeply_fail.t lib/Test/Simple/t/missing.t
35785            ! lib/Test/Simple/t/no_diag.t lib/Test/Simple/t/overload.t
35786            ! lib/Test/Simple/t/plan_no_plan.t lib/Test/Simple/t/todo.t
35787            ! lib/Test/Simple/t/undef.t
35788            ! t/lib/Test/Simple/sample_tests/too_few.plx
35789 ____________________________________________________________________________
35790 [ 25602] By: rgs                                   on 2005/09/26  14:45:53
35791         Log: Fix change 25597 for non-Windows platforms
35792      Branch: perl
35793            ! lib/File/Find.pm
35794 ____________________________________________________________________________
35795 [ 25601] By: rgs                                   on 2005/09/26  14:24:20
35796         Log: Make B::Deparse handle correctly CORE::require
35797      Branch: perl
35798            ! ext/B/B/Deparse.pm
35799 ____________________________________________________________________________
35800 [ 25600] By: rgs                                   on 2005/09/26  14:22:43
35801         Log: Document the new meaning of OPf_SPECIAL on OP_REQUIRE
35802      Branch: perl
35803            ! op.h
35804 ____________________________________________________________________________
35805 [ 25599] By: rgs                                   on 2005/09/26  14:04:21
35806         Log: CORE::require was always parsed as require().
35807              That's because require() isn't overridable at tokenizer-level
35808              like other overridable built-ins, but is handled by the optree
35809              builder. So, find a way to pass the information that require()
35810              was written as CORE::require() to Perl_ck_require. This is
35811              done by adding a new token type REQUIRE and by adding OPf_SPECIAL
35812              to OP_REQUIRE when it's saw as CORE::require in the program text.
35813              This fixes bug [perl #37274] The "CORE" in CORE::require is ignored.
35814      Branch: perl
35815            ! op.c perly.act perly.h perly.tab perly.y toke.c
35816 ____________________________________________________________________________
35817 [ 25597] By: steveh                                on 2005/09/26  08:54:13
35818         Log: Subject: [perl #37223] [PATCH] File::Find::find fails on Win32 with follow => 1 
35819              From: "Steve Peters via RT" <perlbug-followup@perl.org>
35820              Date: Sun, 25 Sep 2005 14:41:03 -0700
35821              Message-ID: <rt-3.0.11-37223-121392.15.8703994486314@perl.org>
35822              
35823              and update docs
35824      Branch: perl
35825            ! lib/File/Find.pm
35826 ____________________________________________________________________________
35827 [ 25591] By: rgs                                   on 2005/09/23  20:46:04
35828         Log: Upgrade to Compress::Zlib 1.40
35829      Branch: perl
35830            ! ext/Compress/Zlib/Changes ext/Compress/Zlib/README
35831            ! ext/Compress/Zlib/Zlib.pm ext/Compress/Zlib/Zlib.xs
35832            ! ext/Compress/Zlib/t/03examples.t
35833 ____________________________________________________________________________
35834 [ 25590] By: rgs                                   on 2005/09/23  19:06:31
35835         Log: Subject: [PATCH] Fix to PERL_DEBUG_COW
35836              From: Steve Peters <steve@fisharerojo.org>
35837              Date: Sep 23, 2005 8:11 PM
35838              Message-ID: <20050923181109.GA1350@mccoy.peters.homeunix.org>
35839      Branch: perl
35840            ! sv.h
35841 ____________________________________________________________________________
35842 [ 25588] By: rgs                                   on 2005/09/23  15:54:02
35843         Log: Subject: Re: pod/pod2usage2.t
35844              From: "H.Merijn Brand" <h.m.brand@xs4all.nl>
35845              Date: Thu, 22 Sep 2005 12:12:49 +0200
35846              Message-ID: <20050922121249.5077ee3e@pc09>
35847              
35848              Also, skip all tests on Windows until we find a way
35849              to write them portably
35850      Branch: perl
35851            ! t/pod/pod2usage2.t
35852 ____________________________________________________________________________
35853 [ 25586] By: rgs                                   on 2005/09/23  15:12:03
35854         Log: Subject: [PATCH] quiet a few warnings
35855              From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
35856              Date: Wed, 21 Sep 2005 18:45:56 -0700
35857              Message-ID: <20050922014555.GA2852@efn.org>
35858      Branch: perl
35859            ! cygwin/cygwin.c embed.fnc proto.h
35860 ____________________________________________________________________________
35861 [ 25582] By: rgs                                   on 2005/09/23  13:49:24
35862         Log: Subject: [PATCH] Changes for hints/linux.sh for Purify
35863              From: Steve Peters <steve@fisharerojo.org>
35864              Date: Fri, 23 Sep 2005 08:38:58 -0500
35865              Message-ID: <20050923133858.GA29475@mccoy.peters.homeunix.org>
35866      Branch: perl
35867            ! hints/linux.sh
35868 ____________________________________________________________________________
35869 [ 25581] By: steveh                                on 2005/09/23  13:46:40
35870         Log: Extend 25579 to cover vc64 too
35871      Branch: perl
35872            ! Porting/checkcfgvar.pl
35873 ____________________________________________________________________________
35874 [ 25579] By: rgs                                   on 2005/09/23  13:08:14
35875         Log: Add Porting/checkcfgvar.pl by Jarkko
35876      Branch: perl
35877            + Porting/checkcfgvar.pl
35878            ! MANIFEST
35879 ____________________________________________________________________________
35880 [ 25578] By: rgs                                   on 2005/09/23  12:35:30
35881         Log: SAPER is the new maintainer of XSLoader
35882      Branch: perl
35883            ! Porting/Maintainers.pl
35884 ____________________________________________________________________________
35885 [ 25573] By: steveh                                on 2005/09/23  08:40:58
35886         Log: Change 25226 should have done this too
35887      Branch: perl
35888            ! win32/config.bc
35889 ____________________________________________________________________________
35890 [ 25571] By: nicholas                              on 2005/09/22  14:35:52
35891         Log: As SvPVX_mutable and SvPVX_const are new, they don't need to be LVALUEs
35892      Branch: perl
35893            ! sv.h
35894 ____________________________________________________________________________
35895 [ 25570] By: nicholas                              on 2005/09/22  14:09:37
35896         Log: The New*() compatibility macros aren't needed inside the perl core.
35897      Branch: perl
35898            ! handy.h
35899 ____________________________________________________________________________
35900 [ 25563] By: steveh                                on 2005/09/22  07:26:20
35901         Log: Forgot to update MANIFEST in change 25547
35902      Branch: perl
35903            ! MANIFEST
35904 ____________________________________________________________________________
35905 [ 25560] By: rgs                                   on 2005/09/21  21:10:50
35906         Log: Add an option --ignore to installhtml
35907              and use it to avoid to install doc in Porting/.
35908              Skip also test modules.
35909      Branch: perl
35910            ! Makefile.SH installhtml
35911 ____________________________________________________________________________
35912 [ 25547] By: steveh                                on 2005/09/21  16:19:03
35913         Log: Localize $@ in Locale::Maketext::maketext()
35914              so that $lh->maketext("Error: [_1]\n", $@) works as expected
35915              
35916              Also added a new test for this fix
35917      Branch: perl
35918            + lib/Locale/Maketext/t/30_local.t
35919            ! lib/Locale/Maketext.pm
35920 ____________________________________________________________________________
35921 [ 25544] By: rgs                                   on 2005/09/21  15:53:33
35922         Log: A few POD fixes
35923      Branch: perl
35924            ! Porting/pumpkin.pod ext/B/B/Concise.pm
35925            ! ext/Data/Dumper/Dumper.pm lib/FileCache.pm
35926 ____________________________________________________________________________
35927 [ 25543] By: rgs                                   on 2005/09/21  15:31:02
35928         Log: Upgrade to Pod::Parser 1.33
35929      Branch: perl
35930            + t/pod/pod2usage2.t
35931            ! MANIFEST lib/Pod/Checker.pm lib/Pod/InputObjects.pm
35932            ! lib/Pod/ParseUtils.pm lib/Pod/Parser.pm lib/Pod/Select.pm
35933            ! lib/Pod/Usage.pm t/pod/find.t t/pod/poderrs.xr
35934 ____________________________________________________________________________
35935 [ 25537] By: rgs                                   on 2005/09/21  14:20:14
35936         Log: PodParser is now Pod-Parser on CPAN
35937      Branch: perl
35938            ! Porting/Maintainers.pl
35939 ____________________________________________________________________________
35940 [ 25534] By: rgs                                   on 2005/09/21  13:12:33
35941         Log: Subject: [PATCH 5.8.7] misc a2p fixes
35942              From: Brendan O'Dea <bod@debian.org>
35943              Date: Sun, 11 Sep 2005 19:43:14 +1000
35944              Message-ID: <20050911094314.GA15155@londo.c47.org>
35945              
35946              and remove the check_byacc target from the x2p makefile
35947      Branch: perl
35948            ! x2p/Makefile.SH x2p/a2p.c x2p/a2p.y x2p/a2py.c x2p/walk.c
35949 ____________________________________________________________________________
35950 [ 25533] By: rgs                                   on 2005/09/21  11:25:54
35951         Log: Upgrade to ExtUtils::ParseXS 2.12
35952      Branch: perl
35953            ! lib/ExtUtils/ParseXS.pm lib/ExtUtils/ParseXS/t/basic.t
35954 ____________________________________________________________________________
35955 [ 25532] By: rgs                                   on 2005/09/21  11:15:43
35956         Log: Upgrade to Time::HiRes 1.74
35957      Branch: perl
35958            ! ext/Time/HiRes/Changes ext/Time/HiRes/HiRes.pm
35959            ! ext/Time/HiRes/HiRes.xs ext/Time/HiRes/Makefile.PL
35960 ____________________________________________________________________________
35961 [ 25530] By: nicholas                              on 2005/09/21  10:53:56
35962         Log: Remove the last STRLEN n_a;s that my compiler can reach.
35963      Branch: perl
35964            ! doop.c ext/Devel/DProf/DProf.xs ext/Opcode/Opcode.xs perly.act
35965            ! perly.y pp_pack.c sv.h
35966 ____________________________________________________________________________
35967 [ 25526] By: rgs                                   on 2005/09/21  09:37:27
35968         Log: Integrate changes from Text::Tabs and Text::Wrap on CPAN
35969              (Text-Tabs+Wrap-2005.0824). Keep local changes.
35970      Branch: perl
35971            ! lib/Text/Tabs.pm lib/Text/TabsWrap/CHANGELOG lib/Text/Wrap.pm
35972 ____________________________________________________________________________
35973 [ 25523] By: rgs                                   on 2005/09/20  19:12:28
35974         Log: Yitzchak says that Tim says that we can distribute
35975              the perl glossary under the same terms as Perl itself.
35976      Branch: perl
35977            ! pod/perlglossary.pod
35978 ____________________________________________________________________________
35979 [ 25515] By: rgs                                   on 2005/09/20  11:09:48
35980         Log: Subject: [PATCH blead] Re: [perl #36733] %SIG not properly local-ized
35981              From: Rick Delaney <rick@bort.ca>
35982              Date: Thu, 8 Sep 2005 08:55:16 -0400
35983              Message-ID: <20050908125516.GA18184@localhost.localdomain>
35984      Branch: perl
35985            ! hv.c t/op/local.t
35986 ____________________________________________________________________________
35987 [ 25513] By: steveh                                on 2005/09/20  09:20:16
35988         Log: Resolve [perl #37110]: Update README.win32
35989              
35990              I give up trying to keep the Platform SDK links up-to-date. They seem
35991              to have changed every time that I look at them, so make the
35992              instructions more general.
35993      Branch: perl
35994            ! README.win32
35995 ____________________________________________________________________________
35996 [ 25512] By: rgs                                   on 2005/09/20  09:15:17
35997         Log: Upgrade to Compress::Zlib 1.39
35998      Branch: perl
35999            ! ext/Compress/Zlib/Changes ext/Compress/Zlib/README
36000            ! ext/Compress/Zlib/Zlib.pm ext/Compress/Zlib/Zlib.xs
36001 ____________________________________________________________________________
36002 [ 25511] By: rgs                                   on 2005/09/20  09:02:17
36003         Log: Subject: PATCH for #37138: using XSUB as DB::DB causes perl to crash
36004              From: Salvador "FandiXo" <sfandino@yahoo.com>
36005              Date: Mon, 19 Sep 2005 06:56:39 -0700 (PDT)
36006              Message-ID: <20050919135639.96726.qmail@web52701.mail.yahoo.com>
36007              
36008              (adapted to bleadperl)
36009      Branch: perl
36010            ! pp_ctl.c
36011 ____________________________________________________________________________
36012 [ 25507] By: merijn                                on 2005/09/20  06:51:38
36013         Log: Subject: [patch@25502] Add hard link and V8.2 crtl support to VMS.
36014              From: "John E. Malmberg" <wb8tyw@qsl.net>
36015              Date: Tue, 20 Sep 2005 01:22:24 -0400
36016              Message-ID: <432F9C90.7080702@qsl.net>
36017      Branch: perl
36018            ! configure.com vms/descrip_mms.template x2p/s2p.PL
36019 ____________________________________________________________________________
36020 [ 25502] By: nicholas                              on 2005/09/19  21:02:02
36021         Log: The second argument to Move() is the destination, so cannot possibly
36022              be const. Pesky casting in handy.h. Getting in the way of correctness.
36023      Branch: perl
36024            ! sv.c
36025 ____________________________________________________________________________
36026 [ 25499] By: nicholas                              on 2005/09/19  19:44:07
36027         Log: Add parallel testing to TODO
36028      Branch: perl
36029            ! pod/perltodo.pod
36030 ____________________________________________________________________________
36031 [ 25497] By: nicholas                              on 2005/09/19  18:48:10
36032         Log: First argument to he_dup is actually a const HE *
36033      Branch: perl
36034            ! embed.fnc hv.c proto.h sv.c
36035 ____________________________________________________________________________
36036 [ 25493] By: nicholas                              on 2005/09/19  15:59:44
36037         Log: All Perl_hv_name_set()s need to be plain hv_name_set if they are to
36038              work with a macro version.
36039      Branch: perl
36040            ! ext/ByteLoader/bytecode.h
36041 ____________________________________________________________________________
36042 [ 25488] By: steveh                                on 2005/09/19  14:18:40
36043         Log: Update win32 config files w.r.t. change #25387
36044      Branch: perl
36045            ! win32/config.bc win32/config.gc win32/config.vc
36046            ! win32/config.vc64 win32/config_H.bc win32/config_H.gc
36047            ! win32/config_H.vc win32/config_H.vc64
36048 ____________________________________________________________________________
36049 [ 25486] By: rgs                                   on 2005/09/19  12:38:26
36050         Log: Subject: bleadperl DProf.xs:140: warning: `unused' attribute ignored
36051              From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
36052              Date: Sun, 18 Sep 2005 19:46:37 -0700
36053              Message-ID: <20050919024637.GA2860@efn.org>
36054      Branch: perl
36055            ! ext/Devel/DProf/DProf.xs
36056 ____________________________________________________________________________
36057 [ 25480] By: nicholas                              on 2005/09/19  07:11:38
36058         Log: Improve failure case diagnostics from comp/package.t
36059      Branch: perl
36060            ! t/comp/package.t
36061 ____________________________________________________________________________
36062 [ 25476] By: nicholas                              on 2005/09/18  21:54:18
36063         Log: Should have been embed.h, not proto.h, in 25475
36064      Branch: perl
36065            ! embed.h
36066 ____________________________________________________________________________
36067 [ 25475] By: nicholas                              on 2005/09/18  21:52:25
36068         Log: It looks like the only way to reliably make Perl_hv_name_set a pure
36069              macro in 5.8.x is to make it available as hv_name_set.
36070              [Otherwise when and where aTHX_ hv gets expanded to foo, hv causes
36071              warnings or other games when Perl_hv_name_set() is a macro]
36072      Branch: perl
36073            ! embed.fnc ext/Opcode/Opcode.xs gv.c hv.c perl.c proto.h
36074 ____________________________________________________________________________
36075 [ 25474] By: merijn                                on 2005/09/18  18:36:15
36076         Log: Subject: [patch@25452] VMS fix required by Change 25387
36077              From: "John E. Malmberg" <wb8tyw@qsl.net>
36078              Date: Sun, 18 Sep 2005 14:53:09 -0400
36079              Message-ID: <432DB795.8050801@qsl.net>
36080      Branch: perl
36081            ! configure.com
36082 ____________________________________________________________________________
36083 [ 25463] By: nicholas                              on 2005/09/18  11:07:51
36084         Log: Tidying up the unused or unneeded global variables would be good.
36085      Branch: perl
36086            ! pod/perltodo.pod
36087 ____________________________________________________________________________
36088 [ 25459] By: nicholas                              on 2005/09/18  10:12:51
36089         Log: Controlling what the GNU linker exports from a shared library would
36090              be a useful thing TODO
36091      Branch: perl
36092            ! pod/perltodo.pod
36093 ____________________________________________________________________________
36094 [ 25457] By: nicholas                              on 2005/09/18  09:38:59
36095         Log: Detail the minimal rewards programme we have on offer.
36096              Hoik relocatable perl to the top of its section.
36097              Some other formatting tweaks.
36098      Branch: perl
36099            ! pod/perltodo.pod
36100 ____________________________________________________________________________
36101 [ 25452] By: nicholas                              on 2005/09/17  19:50:47
36102         Log: 
36103              refactoring xsubpp should have been in the "just perl" section.
36104      Branch: perl
36105            ! pod/perltodo.pod
36106 ____________________________________________________________________________
36107 [ 25451] By: nicholas                              on 2005/09/17  19:49:27
36108         Log: Add "refactor xsubpp to be a thin wrapper around ExtUtils::ParseXS"
36109              to the TODO
36110      Branch: perl
36111            ! pod/perltodo.pod
36112 ____________________________________________________________________________
36113 [ 25448] By: nicholas                              on 2005/09/17  19:11:33
36114         Log: Add shrinking GVs and CVs to the TODO
36115      Branch: perl
36116            ! pod/perltodo.pod
36117 ____________________________________________________________________________
36118 [ 25446] By: nicholas                              on 2005/09/17  18:59:37
36119         Log: Add reduce duplication in sv_setsv_flags to TODO
36120      Branch: perl
36121            ! pod/perltodo.pod
36122 ____________________________________________________________________________
36123 [ 25445] By: nicholas                              on 2005/09/17  18:53:39
36124         Log: Missing DO_BO_PACK_PC and DO_BO_UNPACK_PC for the 5.8.x case
36125              (and the don't know the pointer size case)
36126      Branch: perl
36127            ! pp_pack.c
36128 ____________________________________________________________________________
36129 [ 25444] By: nicholas                              on 2005/09/17  18:40:29
36130         Log: vv5.9.3 is clearly a bug.
36131      Branch: perl
36132            ! utils/perlbug.PL
36133 ____________________________________________________________________________
36134 [ 25443] By: nicholas                              on 2005/09/17  18:34:37
36135         Log: Add ordering of "global" variables to TODO
36136      Branch: perl
36137            ! pod/perltodo.pod
36138 ____________________________________________________________________________
36139 [ 25442] By: nicholas                              on 2005/09/17  18:05:30
36140         Log: Holding a mutex then croak()ing strikes me as deadlock.
36141      Branch: perl
36142            ! ext/threads/threads.xs
36143 ____________________________________________________________________________
36144 [ 25439] By: nicholas                              on 2005/09/17  17:09:25
36145         Log: Add emulate the per-thread memory pool on Unix to the TODO
36146      Branch: perl
36147            ! pod/perltodo.pod
36148 ____________________________________________________________________________
36149 [ 25436] By: nicholas                              on 2005/09/17  15:42:51
36150         Log: Add suggestion to profile to find a better set of hot ops for pp_hot.
36151      Branch: perl
36152            ! pod/perltodo.pod
36153 ____________________________________________________________________________
36154 [ 25434] By: nicholas                              on 2005/09/17  15:32:36
36155         Log: add merge Perl_sv_2[inpu]v to TODO
36156      Branch: perl
36157            ! pod/perltodo.pod
36158 ____________________________________________________________________________
36159 [ 25431] By: nicholas                              on 2005/09/17  14:36:14
36160         Log: Making make -j... work is a TODO
36161      Branch: perl
36162            ! pod/perltodo.pod
36163 ____________________________________________________________________________
36164 [ 25430] By: nicholas                              on 2005/09/17  14:33:33
36165         Log: Add "automating coverage tests" as a TODO
36166      Branch: perl
36167            ! pod/perltodo.pod
36168 ____________________________________________________________________________
36169 [ 25429] By: nicholas                              on 2005/09/17  14:19:54
36170         Log: Re-order the TODO tasks based on the skills they need, putting the
36171              easist tasks first. I've categorised them as
36172              
36173              =head1 Tasks that only need Perl knowledge
36174              =head1 Tasks that need a little sysadmin-type knowledge
36175              =head1 Tasks that need a little C knowledge
36176              =head1 Tasks that need a knowledge of XS
36177              =head1 Tasks that need a knowledge of the interpreter
36178              =head1 Big projects
36179              
36180              Lets see if we get any takers.
36181      Branch: perl
36182            ! pod/perltodo.pod
36183 ____________________________________________________________________________
36184 [ 25418] By: rgs                                   on 2005/09/16  12:54:43
36185         Log: Revert change #24223 : select() will continue
36186              to return -1 on error, like in previous versions, and
36187              like other system builtins.
36188      Branch: perl
36189            ! pod/perl593delta.pod pod/perlfunc.pod pp_sys.c
36190 ____________________________________________________________________________
36191 [ 25417] By: rgs                                   on 2005/09/15  14:48:37
36192         Log: Fix obsolete identifiers in comment
36193      Branch: perl
36194            ! av.h
36195 ____________________________________________________________________________
36196 [ 25416] By: rgs                                   on 2005/09/15  14:19:19
36197         Log: Upgrade to version.pm 0.48
36198      Branch: perl
36199            + lib/version.pod
36200            ! MANIFEST lib/version.pm lib/version.t util.c
36201 ____________________________________________________________________________
36202 [ 25414] By: rgs                                   on 2005/09/14  12:49:58
36203         Log: Subject: [PATCH] Math::Complex and Math::Trig updates (Re: [perl #37117] Math::Complex atan2 bug)
36204              From: Jarkko Hietaniemi <jhietaniemi@gmail.com>
36205              Date: Wed, 14 Sep 2005 09:26:11 +0300
36206              Message-ID: <4327C283.80706@gmail.com>
36207      Branch: perl
36208            ! lib/Math/Complex.pm lib/Math/Complex.t lib/Math/Trig.pm
36209            ! lib/Math/Trig.t pod/perlfunc.pod
36210 ____________________________________________________________________________
36211 [ 25413] By: rgs                                   on 2005/09/14  08:58:04
36212         Log: Subject: [perl #37163] dprofpp array subscript error 
36213              From: scott@perlcode.org (via RT) <perlbug-followup@perl.org>
36214              Date: Tue, 13 Sep 2005 12:11:46 -0700
36215              Message-ID: <rt-3.0.11-37163-120724.9.33005980359667@perl.org>
36216      Branch: perl
36217            ! utils/dprofpp.PL
36218 ____________________________________________________________________________
36219 [ 25411] By: rgs                                   on 2005/09/14  08:11:08
36220         Log: Change 25409 wasn't necessary for threaded perls
36221      Branch: perl
36222            ! toke.c
36223 ____________________________________________________________________________
36224 [ 25409] By: rgs                                   on 2005/09/14  01:08:22
36225         Log: The debugger wasn't tracing correctly execution in eval("")'ed
36226              code containing #line directives
36227      Branch: perl
36228            ! toke.c
36229 ____________________________________________________________________________
36230 [ 25406] By: rgs                                   on 2005/09/13  20:58:38
36231         Log: Subject: [PATCH] Re: [MAINT24637] fails "make test" on OSX 10.4 (lib/locale.t)
36232              From: Dominic Dunlop <shouldbedomo@mac.com>
36233              Date: Sep 13, 2005 11:13 PM
36234              Message-Id: <456439EA-CE2E-49A0-97FF-1B003CF8AFDE@mac.com>
36235      Branch: perl
36236            ! lib/locale.t
36237 ____________________________________________________________________________
36238 [ 25403] By: nicholas                              on 2005/09/13  18:16:55
36239         Log: Add Luke Closs to AUTHORS
36240      Branch: perl
36241            ! AUTHORS
36242 ____________________________________________________________________________
36243 [ 25402] By: nicholas                              on 2005/09/13  17:54:09
36244         Log: Subject: [perl #36448] configuring ranlib for perl on osx with xcode 2.1
36245              From: Luke Closs (via RT) <perlbug-followup@perl.org>
36246              Message-ID: <rt-3.0.11-36448-116486.6.06308221656583@perl.org>
36247              Date: 1 Jul 2005 21:56:31 -0000
36248      Branch: perl
36249            ! Configure hints/darwin.sh
36250 ____________________________________________________________________________
36251 [ 25399] By: rgs                                   on 2005/09/13  13:25:23
36252         Log: Allow non-arrowed form of chained subscripts after slices
36253              
36254              Subject: Re: [perl #37039] perlref documentation about optional -> is too vague
36255              From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
36256              Date: Thu, 1 Sep 2005 17:41:36 -0700
36257              Message-ID: <20050902004136.GA2656@efn.org>
36258              
36259              Date: Mon, 5 Sep 2005 08:10:20 -0700
36260              Message-ID: <20050905151020.GA3556@efn.org>
36261      Branch: perl
36262            ! perly.act perly.h perly.tab perly.y t/op/ref.t
36263 ____________________________________________________________________________
36264 [ 25398] By: merijn                                on 2005/09/13  06:22:58
36265         Log: Subject: [patch@25388] vms/vms.c Perl_cando fix.
36266              From: "John E. Malmberg" <wb8tyw@qsl.net>
36267              Date: Mon, 12 Sep 2005 23:56:36 -0400
36268              Message-ID: <43264DF4.6090403@qsl.net>
36269      Branch: perl
36270            ! vms/vms.c
36271 ____________________________________________________________________________
36272 [ 25397] By: merijn                                on 2005/09/13  06:18:46
36273         Log: Subject: [PATCH] The return of the consting
36274              From: Andy Lester <andy@petdance.com>
36275              Date: Tue, 13 Sep 2005 01:08:36 -0500
36276              Message-ID: <20050913060835.GA1037@petdance.com>
36277      Branch: perl
36278            ! embed.fnc lib/overload.pm pp_pack.c proto.h util.c
36279 ____________________________________________________________________________
36280 [ 25388] By: rgs                                   on 2005/09/12  14:32:29
36281         Log: Subject: [perl #37142] h2xs skips enums with negative values 
36282              From: Aaron Kaplan (via RT) <perlbug-followup@perl.org>
36283              Date: Sun, 11 Sep 2005 13:33:44 -0700
36284              Message-ID: <rt-3.0.11-37142-120585.5.90517066191047@perl.org>
36285      Branch: perl
36286            ! utils/h2xs.PL
36287 ____________________________________________________________________________
36288 [ 25387] By: merijn                                on 2005/09/12  13:26:31
36289         Log: Detection of malloc_size and malloc_good_size
36290      Branch: perl
36291            ! Configure Porting/Glossary config_h.SH handy.h
36292 ____________________________________________________________________________
36293 [ 25383] By: merijn                                on 2005/09/11  13:50:53
36294         Log: Reverted 25364 on authors request
36295      Branch: perl
36296            ! lib/ExtUtils/CBuilder/Base.pm
36297            ! lib/ExtUtils/CBuilder/Platform/VMS.pm
36298 ____________________________________________________________________________
36299 [ 25374] By: nicholas                              on 2005/09/10  17:07:04
36300         Log: Experiment with putting the F<.patch>level into patchlevel.h
36301              (a sure way to accelerate any change to subversion)
36302      Branch: perl
36303            ! cflags.SH patchlevel.h
36304 ____________________________________________________________________________
36305 [ 25366] By: rgs                                   on 2005/09/09  09:35:01
36306         Log: Minor comment fix
36307      Branch: perl
36308            ! hv.h
36309 ____________________________________________________________________________
36310 [ 25365] By: merijn                                on 2005/09/08  07:20:19
36311         Log: Subject: [PATCH blead] Make t/op/local.t use test.pl.
36312              From: Rick Delaney <rick@bort.ca>
36313              Date: Wed, 7 Sep 2005 22:45:44 -0400
36314              Message-ID: <20050908024544.GA4058@localhost.localdomain>
36315      Branch: perl
36316            ! t/op/local.t
36317 ____________________________________________________________________________
36318 [ 25364] By: merijn                                on 2005/09/08  06:07:53
36319         Log: Subject: [patch@cbuilder_0.13] VMS fixes for cbuilder
36320              From: "John E. Malmberg" <wb8tyw@qsl.net>
36321              Date: Wed, 07 Sep 2005 19:59:36 -0400
36322              Message-ID: <431F7EE8.3040908@qsl.net>
36323      Branch: perl
36324            ! lib/ExtUtils/CBuilder/Base.pm
36325            ! lib/ExtUtils/CBuilder/Platform/VMS.pm
36326 ____________________________________________________________________________
36327 [ 25363] By: rgs                                   on 2005/09/07  11:09:10
36328         Log: The formatting function of Carp::Heavy has problem with utf8 strings.
36329              Work around it.
36330      Branch: perl
36331            ! lib/Carp/Heavy.pm
36332 ____________________________________________________________________________
36333 [ 25362] By: rgs                                   on 2005/09/07  10:31:47
36334         Log: Subject: [perl #37091] File::Path::mkpath resets errno 
36335              From: kvr@centrum.cz (via RT) <perlbug-followup@perl.org>
36336              Date: Tue, 06 Sep 2005 08:07:14 -0700
36337              Message-ID: <rt-3.0.11-37091-120348.17.8280334480876@perl.org>
36338      Branch: perl
36339            ! lib/File/Path.pm
36340 ____________________________________________________________________________
36341 [ 25361] By: rgs                                   on 2005/09/06  19:06:38
36342         Log: Upgrade to Compress::Zlib 1.38
36343      Branch: perl
36344            ! ext/Compress/Zlib/Changes ext/Compress/Zlib/Makefile.PL
36345            ! ext/Compress/Zlib/README ext/Compress/Zlib/Zlib.pm
36346            ! ext/Compress/Zlib/Zlib.xs ext/Compress/Zlib/t/03examples.t
36347 ____________________________________________________________________________
36348 [ 25360] By: nicholas                              on 2005/09/06  17:46:33
36349         Log: Add a TODO test for bug #37038 - assigning to the match variable
36350              should not corrupt match vars such as $1 and $2
36351      Branch: perl
36352            ! t/op/pat.t
36353 ____________________________________________________________________________
36354 [ 25359] By: rgs                                   on 2005/09/06  16:06:44
36355         Log: Revert Makefile.PL change from #25355
36356      Branch: perl
36357            ! ext/IO/Makefile.PL
36358 ____________________________________________________________________________
36359 [ 25358] By: rgs                                   on 2005/09/06  14:50:18
36360         Log: Subject: Re: Fw: Tied hash numeric values are rounded off under Perl v5.8.6
36361              From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
36362              Date: Fri, 2 Sep 2005 00:05:52 -0700
36363              Message-ID: <20050902070552.GA3992@efn.org>
36364      Branch: perl
36365            ! mg.c t/op/tie.t
36366 ____________________________________________________________________________
36367 [ 25357] By: merijn                                on 2005/09/06  14:10:28
36368         Log: Added amd64 and x86_64 to recognized predefined cpp syms
36369      Branch: perl
36370            ! Configure
36371 ____________________________________________________________________________
36372 [ 25355] By: rgs                                   on 2005/09/06  08:46:37
36373         Log: Upgrade to IO 1.22 from gbarr
36374              - Adjust the regression tests to use t/test.pl from bleadperl
36375              when $ENV{PERL_CORE} is defined
36376              - Add can_ok and isa_ok to t/test.pl from the implementation
36377              found in the IO CPAN distribution
36378      Branch: perl
36379            ! ext/IO/ChangeLog ext/IO/IO.pm ext/IO/IO.xs ext/IO/Makefile.PL
36380            ! ext/IO/README ext/IO/lib/IO/Dir.pm ext/IO/lib/IO/File.pm
36381            ! ext/IO/lib/IO/Handle.pm ext/IO/lib/IO/Pipe.pm
36382            ! ext/IO/lib/IO/Poll.pm ext/IO/lib/IO/Seekable.pm
36383            ! ext/IO/lib/IO/Select.pm ext/IO/lib/IO/Socket.pm
36384            ! ext/IO/lib/IO/Socket/INET.pm ext/IO/lib/IO/Socket/UNIX.pm
36385            ! ext/IO/t/IO.t ext/IO/t/io_file.t ext/IO/t/io_linenum.t
36386            ! ext/IO/t/io_pipe.t ext/IO/t/io_sel.t ext/IO/t/io_sock.t
36387            ! ext/IO/t/io_utf8.t t/test.pl
36388 ____________________________________________________________________________
36389 [ 25354] By: rgs                                   on 2005/09/05  11:12:14
36390         Log: Subject: regression test for 25352
36391              From: Jim Cromie <jim.cromie@gmail.com>
36392              Date: Sat, 03 Sep 2005 22:38:13 -0600
36393              Message-ID: <431A7A35.6050705@gmail.com>
36394      Branch: perl
36395            ! ext/B/t/optree_specials.t
36396 ____________________________________________________________________________
36397 [ 25353] By: davem                                 on 2005/09/04  09:40:05
36398         Log: Subject:  Re: [perl #37039] perlref documentation about optional -> is too vague
36399              From:  Yitzchak Scott-Thoennes <sthoenna@efn.org>
36400              Date:  Thu, 1 Sep 2005 17:41:36 -0700
36401              Message-Id:  <20050902004136.GA2656@efn.org>
36402              
36403              Allow any variant of bison 1.875 to be used
36404      Branch: perl
36405            ! regen_perly.pl
36406 ____________________________________________________________________________
36407 [ 25352] By: rgs                                   on 2005/09/02  20:18:01
36408         Log: Subject: Re: Optree Generation
36409              From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
36410              Date: Aug 31, 2005 2:18 PM
36411              Message-ID: <20050831121822.GA3464@efn.org>
36412      Branch: perl
36413            ! ext/B/B/Concise.pm
36414 ____________________________________________________________________________
36415 [ 25351] By: rgs                                   on 2005/09/02  19:57:21
36416         Log: Subject: document index() with out of bounds POSITION
36417              From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
36418              Date: Sep 2, 2005 2:23 PM
36419              Message-ID: <20050902122311.GA3104@efn.org>
36420      Branch: perl
36421            ! pod/perlfunc.pod
36422 ____________________________________________________________________________
36423 [ 25350] By: rgs                                   on 2005/09/02  17:35:31
36424         Log: Really fix the Archive::Tar setup test.
36425              p4 and svn don't behave similarly concerning removal
36426              of empty directories...
36427      Branch: perl
36428            ! lib/Archive/Tar/t/00_setup.t
36429 ____________________________________________________________________________
36430 [ 25349] By: rgs                                   on 2005/09/02  16:45:31
36431         Log: Once again, fix Archive::Tar setup test with -Dmksymlinks
36432      Branch: perl
36433            ! lib/Archive/Tar/t/00_setup.t
36434 ____________________________________________________________________________
36435 [ 25348] By: rgs                                   on 2005/09/02  13:19:48
36436         Log: Subject: RE: [ANNOUNCE] Archive::Tar 1.25
36437              From: Robin Barker <Robin.Barker@npl.co.uk>
36438              Date: Thu, 1 Sep 2005 20:09:43 +0100 
36439              Message-ID: <533D273D4014D411AB1D00062938C4D90849C7A9@hotel.npl.co.uk>
36440      Branch: perl
36441            - lib/Archive/Tar/t/src/long/b lib/Archive/Tar/t/src/short/b
36442            ! MANIFEST lib/Archive/Tar/t/00_setup.t
36443            ! lib/Archive/Tar/t/02_methods.t lib/Archive/Tar/t/99_clean.t
36444 ____________________________________________________________________________
36445 [ 25347] By: rgs                                   on 2005/09/02  12:53:49
36446         Log: Regression test for the fix in change #25308,
36447              based on code by Troy Loveday
36448      Branch: perl
36449            + ext/Data/Dumper/t/bugs.t
36450            ! MANIFEST
36451 ____________________________________________________________________________
36452 [ 25346] By: rgs                                   on 2005/09/01  15:00:15
36453         Log: Oops, fix threaded build
36454      Branch: perl
36455            ! toke.c
36456 ____________________________________________________________________________
36457 [ 25345] By: rgs                                   on 2005/09/01  14:50:24
36458         Log: Don't list test modules when listing cpan versions
36459      Branch: perl
36460            ! Porting/corecpan.pl
36461 ____________________________________________________________________________
36462 [ 25344] By: rgs                                   on 2005/09/01  14:45:23
36463         Log: Add the "no 6" / "no v6" syntax.
36464      Branch: perl
36465            ! embed.fnc embed.h ext/B/t/concise-xs.t op.c op.h pp_ctl.c
36466            ! proto.h t/comp/use.t toke.c
36467 ____________________________________________________________________________
36468 [ 25343] By: rgs                                   on 2005/09/01  14:43:19
36469         Log: Remove no 6 from the todo list
36470      Branch: perl
36471            ! embed.fnc embed.h ext/B/t/concise-xs.t op.c op.h
36472            ! pod/perltodo.pod pp_ctl.c proto.h t/comp/use.t toke.c
36473 ____________________________________________________________________________
36474 [ 25342] By: rgs                                   on 2005/08/31  15:14:28
36475         Log: Document that Sys::Syslog::openlog might die.
36476              Fixes [perl #36848] Sys::Syslog::syslog kills program if syslogd not running 
36477      Branch: perl
36478            ! ext/Sys/Syslog/Syslog.pm
36479 ____________________________________________________________________________
36480 [ 25341] By: rgs                                   on 2005/08/31  14:14:21
36481         Log: Fix for [perl #37036] perl segfault at 'compile'-time
36482      Branch: perl
36483            ! op.c
36484 ____________________________________________________________________________
36485 [ 25340] By: rgs                                   on 2005/08/31  08:07:37
36486         Log: Subject: [patch@25339] ext/Dev/Peek/t/peek.t fix for VMS
36487              From: "John E. Malmberg" <wb8tyw@qsl.net>
36488              Date: Tue, 30 Aug 2005 22:17:42 -0400
36489              Message-ID: <43151346.4010001@qsl.net>
36490      Branch: perl
36491            ! ext/Devel/Peek/t/Peek.t
36492 ____________________________________________________________________________
36493 [ 25339] By: rgs                                   on 2005/08/30  18:55:46
36494         Log: Clarify the cases where system() returns 1,
36495              per a suggestion of Rick Delaney (bug #36976)
36496      Branch: perl
36497            ! pod/perlfunc.pod
36498 ____________________________________________________________________________
36499 [ 25338] By: rgs                                   on 2005/08/30  09:38:54
36500         Log: Upgrade to PathTools 3.11
36501              (no real changes)
36502      Branch: perl
36503            ! ext/Cwd/Changes lib/Cwd.pm lib/File/Spec.pm
36504 ____________________________________________________________________________
36505 [ 25337] By: rgs                                   on 2005/08/30  09:34:54
36506         Log: Subject: sv-head refactor
36507              From: Jim Cromie <jim.cromie@gmail.com>
36508              Date: Thu, 25 Aug 2005 21:42:44 -0600
36509              Message-ID: <cfe85dfa05082520425f7a7738@mail.gmail.com>
36510      Branch: perl
36511            ! sv.h
36512 ____________________________________________________________________________
36513 [ 25336] By: rgs                                   on 2005/08/30  09:09:22
36514         Log: Subject: [patch@25334] t/op/magic.t - Last 3 tests invalid on VMS
36515              From: "John E. Malmberg" <wb8tyw@qsl.net>
36516              Date: Sat, 27 Aug 2005 19:54:26 -0400
36517              Message-ID: <4310FD32.70809@qsl.net>
36518      Branch: perl
36519            ! t/op/magic.t
36520 ____________________________________________________________________________
36521 [ 25335] By: rgs                                   on 2005/08/30  09:08:31
36522         Log: Subject: [patch@25334] hv.c vms environment fix.
36523              From: "John E. Malmberg" <wb8tyw@qsl.net>
36524              Date: Sat, 27 Aug 2005 19:20:50 -0400
36525              Message-ID: <4310F552.8050401@qsl.net>
36526      Branch: perl
36527            ! hv.c
36528 ____________________________________________________________________________
36529 [ 25334] By: rgs                                   on 2005/08/27  16:59:02
36530         Log: Upgrade to PathTools 3.10
36531      Branch: perl
36532            ! ext/Cwd/Changes lib/Cwd.pm lib/File/Spec.pm
36533            ! lib/File/Spec/Unix.pm lib/File/Spec/VMS.pm
36534            ! lib/File/Spec/Win32.pm lib/File/Spec/t/Spec.t
36535 ____________________________________________________________________________
36536 [ 25333] By: rgs                                   on 2005/08/27  16:28:27
36537         Log: Fix failure in Archive::Tar tests when perl is built
36538              with -Dmksymlinks
36539      Branch: perl
36540            ! lib/Archive/Tar/t/02_methods.t
36541 ____________________________________________________________________________
36542 [ 25332] By: nicholas                              on 2005/08/25  14:53:23
36543         Log: Revert 25331 (except for the typo fix).
36544      Branch: perl
36545            ! sv.c
36546 ____________________________________________________________________________
36547 [ 25331] By: nicholas                              on 2005/08/25  14:06:43
36548         Log: To make the current implementation of sv_replace sane, we should
36549              assert that the reference count of the target is also 1.
36550              (Given that we're splatting an SV with a reference count of 1 onto
36551              the target)
36552      Branch: perl
36553            ! sv.c
36554 ____________________________________________________________________________
36555 [ 25330] By: nicholas                              on 2005/08/25  13:46:31
36556         Log: Promote the warning about reference miscount in sv_replace to a panic.
36557              TODO - document the panics
36558      Branch: perl
36559            ! sv.c
36560 ____________________________________________________________________________
36561 [ 25329] By: nicholas                              on 2005/08/25  13:15:17
36562         Log: No need to manually set the reference count of a new IO to 1.
36563      Branch: perl
36564            ! gv.c
36565 ____________________________________________________________________________
36566 [ 25328] By: rgs                                   on 2005/08/25  09:29:43
36567         Log: Don't mention redundant usethreads in -V output
36568              Be more consistent in using commas
36569      Branch: perl
36570            ! myconfig.SH
36571 ____________________________________________________________________________
36572 [ 25327] By: rgs                                   on 2005/08/25  09:13:07
36573         Log: Subject: update B::Concise pod to reflect previous changes
36574              From: Jim Cromie <jcromie@divsol.com>
36575              Date: Wed, 24 Aug 2005 11:05:47 -0600
36576              Message-ID: <430CA8EB.3010904@divsol.com>
36577      Branch: perl
36578            ! ext/B/B/Concise.pm
36579 ____________________________________________________________________________
36580 [ 25326] By: rgs                                   on 2005/08/25  08:45:04
36581         Log: Fix miniperl build with threaded perl
36582      Branch: perl
36583            ! util.c
36584 ____________________________________________________________________________
36585 [ 25325] By: rgs                                   on 2005/08/24  15:53:01
36586         Log: Subject: [Fwd: CPAN Upload: J/JP/JPEACOCK/version-0.47.tar.gz]
36587              From: "John Peacock" <jpeacock@rowman.com>
36588              Date: Tue, 23 Aug 2005 20:41:11 +0300 (IDT)
36589              Message-ID: <2444.85.65.24.143.1124818871.squirrel@webmail.rowman.com>
36590      Branch: perl
36591            ! embed.fnc embed.h global.sym lib/version.pm lib/version.t
36592            ! pod/perlapi.pod proto.h t/comp/use.t util.c
36593 ____________________________________________________________________________
36594 [ 25324] By: rgs                                   on 2005/08/24  07:28:27
36595         Log: Unmatched parentheses (thanks to Steve Peters)
36596      Branch: perl
36597            ! pod/perlvar.pod
36598 ____________________________________________________________________________
36599 [ 25323] By: rgs                                   on 2005/08/23  13:52:17
36600         Log: My system produces core.$$ files
36601      Branch: perl
36602            ! Makefile.SH
36603 ____________________________________________________________________________
36604 [ 25322] By: rgs                                   on 2005/08/23  13:25:15
36605         Log: Subject: [PATCH blead] Use SvGETMAGIC more often
36606              From: Rick Delaney <rick@bort.ca>
36607              Date: Mon, 22 Aug 2005 13:00:33 -0400
36608              Message-ID: <20050822170033.GH7674@localhost.localdomain>
36609      Branch: perl
36610            ! doio.c pp.c pp_ctl.c pp_hot.c sv.c universal.c xsutils.c
36611 ____________________________________________________________________________
36612 [ 25321] By: rgs                                   on 2005/08/23  13:11:34
36613         Log: Subject: [PATCH] Add Windows Vista support to Win32::GetOSName()
36614              From: "Jan Dubois" <jand@ActiveState.com>
36615              Date: Mon, 22 Aug 2005 15:37:09 -0700
36616              Message-Id: <200508222237.j7MMbFPA027764@smtp3.ActiveState.com>
36617      Branch: perl
36618            ! win32/ext/Win32/Win32.pm
36619 ____________________________________________________________________________
36620 [ 25320] By: rgs                                   on 2005/08/22  15:41:15
36621         Log: Subject: Re: Documentation change for IPC::Open*.pm
36622              From: Ben Tilly <btilly@gmail.com>
36623              Date: Mon, 22 Aug 2005 08:30:14 -0700
36624              Message-ID: <acc274b3050822083093357fe@mail.gmail.com>
36625      Branch: perl
36626            ! lib/IPC/Open2.pm lib/IPC/Open3.pm
36627 ____________________________________________________________________________
36628 [ 25319] By: rgs                                   on 2005/08/22  14:48:43
36629         Log: Subject: [PATCH blead] Re: [perl #36959] List Constructor Operator - Undefined Values
36630              From: Rick Delaney <rick@bort.ca>
36631              Date: Sun, 21 Aug 2005 15:09:57 -0400
36632              Message-ID: <20050821190957.GE7674@localhost.localdomain>
36633      Branch: perl
36634            ! pp_ctl.c t/op/range.t
36635 ____________________________________________________________________________
36636 [ 25318] By: rgs                                   on 2005/08/22  13:41:10
36637         Log: Upgrade to Term::ANSIColor 1.10
36638      Branch: perl
36639            ! lib/Term/ANSIColor.pm lib/Term/ANSIColor/ChangeLog
36640            ! lib/Term/ANSIColor/README lib/Term/ANSIColor/test.pl
36641 ____________________________________________________________________________
36642 [ 25317] By: rgs                                   on 2005/08/22  13:24:09
36643         Log: Subject: [PATCH lib/CPAN.pm] Make curl follow redirects
36644              From: Michael G Schwern <schwern@pobox.com>
36645              Date: Sun, 21 Aug 2005 00:16:26 -0700
36646              Message-ID: <20050821071625.GA29394@windhund.schwern.org>
36647      Branch: perl
36648            ! lib/CPAN.pm
36649 ____________________________________________________________________________
36650 [ 25316] By: rgs                                   on 2005/08/22  12:59:27
36651         Log: Argh. I've overwritten local changes to ptar with change 25312
36652      Branch: perl
36653            ! lib/Archive/Tar/bin/ptar
36654 ____________________________________________________________________________
36655 [ 25315] By: rgs                                   on 2005/08/22  11:47:45
36656         Log: Subject: Re: Building 25309 on VAX (OpenVMS 7.2) not ok
36657              From: Abe Timmerman <abe@ztreet.demon.nl>
36658              Date: Sun, 21 Aug 2005 16:28:42 +0200
36659              Message-Id: <200508211628.42409.abe@ztreet.demon.nl>
36660      Branch: perl
36661            ! configure.com
36662 ____________________________________________________________________________
36663 [ 25314] By: rgs                                   on 2005/08/22  11:14:59
36664         Log: Don't install ptar in module tree
36665      Branch: perl
36666            ! installperl
36667 ____________________________________________________________________________
36668 [ 25313] By: rgs                                   on 2005/08/22  10:29:45
36669         Log: Fix typo in file name
36670      Branch: perl
36671            ! MANIFEST
36672 ____________________________________________________________________________
36673 [ 25312] By: rgs                                   on 2005/08/22  10:09:40
36674         Log: Upgrade to Archive::Tar 1.26
36675              Preserve some local typo fixes
36676              Don't load Data::Dumper
36677      Branch: perl
36678            + lib/Archive/Tar/bin/ptardiff
36679            + lib/Archive/Tar/t/04_resolved_issues.t
36680            ! MANIFEST lib/Archive/Tar.pm lib/Archive/Tar/Constant.pm
36681            ! lib/Archive/Tar/File.pm lib/Archive/Tar/bin/ptar
36682            ! lib/Archive/Tar/t/02_methods.t
36683 ____________________________________________________________________________
36684 [ 25311] By: nicholas                              on 2005/08/21  16:19:12
36685         Log: Subject: [patch@25305] t/op/arith.t fix for VMS with IEEE float
36686              From: "John E. Malmberg" <wb8tyw@qsl.net>
36687              Message-ID: <4307F348.70603@qsl.net>
36688              Date: Sat, 20 Aug 2005 23:21:44 -0400
36689      Branch: perl
36690            ! t/op/arith.t
36691 ____________________________________________________________________________
36692 [ 25310] By: nicholas                              on 2005/08/21  16:05:22
36693         Log: Subject: [patch@25305] lib/ExtUtils/t/Constant.t VMS fixes
36694              From: "John E. Malmberg" <wb8tyw@qsl.net>
36695              Message-ID: <43080395.50807@qsl.net>
36696              Date: Sun, 21 Aug 2005 00:31:17 -0400
36697      Branch: perl
36698            ! lib/ExtUtils/t/Constant.t
36699 ____________________________________________________________________________
36700 [ 25309] By: nicholas                              on 2005/08/19  21:19:37
36701         Log: Subject: [PATCH ext/POSIX/POSIX.xs] Whitespace
36702              From: Abigail <abigail@abigail.nl>
36703              Message-ID: <20050723003235.GJ15093@abigail.nl>
36704              Date: Sat, 23 Jul 2005 02:32:35 +0200
36705      Branch: perl
36706            ! ext/POSIX/POSIX.xs
36707 ____________________________________________________________________________
36708 [ 25308] By: rgs                                   on 2005/08/19  12:54:46
36709         Log: Subject: Re: Data::Dumper bug?
36710              From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
36711              Date: Mon, 8 Aug 2005 20:33:02 -0700
36712              Message-ID: <20050809033301.GA3804@efn.org>
36713      Branch: perl
36714            ! ext/Data/Dumper/Dumper.pm ext/Data/Dumper/Dumper.xs
36715 ____________________________________________________________________________
36716 [ 25307] By: rgs                                   on 2005/08/19  12:44:12
36717         Log: Subject: [PATCH] make threads.xs emit warnings properly
36718              From: Tassilo von Parseval <tassilo.von.parseval@rwth-aachen.de>
36719              Date: Aug 7, 2005 7:10 AM
36720              Message-id: <20050807051041.GA3924@ethan>
36721      Branch: perl
36722            ! ext/threads/threads.pm ext/threads/threads.xs pod/perldiag.pod
36723 ____________________________________________________________________________
36724 [ 25306] By: rgs                                   on 2005/08/19  06:10:28
36725         Log: Subject: [patch@25305] fixes to const fixes + Case Preserved start
36726              From: "John E. Malmberg" <wb8tyw@qsl.net>
36727              Date: Thu, 18 Aug 2005 21:18:27 -0400
36728              Message-ID: <43053363.8090809@qsl.net>
36729      Branch: perl
36730            ! vms/vms.c
36731 ____________________________________________________________________________
36732 [ 25305] By: rgs                                   on 2005/08/18  13:47:41
36733         Log: Subject: make test of perl 5.8.7 failed on icc9
36734              From: YAMASHINA Hio <hio@ymir.co.jp>
36735              Date: Thu, 18 Aug 2005 20:36:57 +0900
36736              Message-Id: <20050818165213.BDF1.HIO@ymir.co.jp>
36737      Branch: perl
36738            ! hints/linux.sh
36739 ____________________________________________________________________________
36740 [ 25304] By: rgs                                   on 2005/08/18  11:10:27
36741         Log: Subject: [PATCH] 5.9.x (and 5.8.x): Symbian update
36742              From: <jarkko.hietaniemi@nokia.com>
36743              Date: Thu, 18 Aug 2005 13:43:46 +0300
36744              Message-ID: <B356D8F434D20B40A8CEDAEC305A1F24E7A41B@esebe105.NOE.Nokia.com>
36745      Branch: perl
36746            ! README.symbian ext/Compress/Zlib/Zlib.xs numeric.c
36747            ! symbian/TODO symbian/config.pl symbian/config.sh
36748            ! symbian/install.cfg symbian/symbian_stubs.c symbian/xsbuild.pl
36749 ____________________________________________________________________________
36750 [ 25303] By: rgs                                   on 2005/08/18  08:58:54
36751         Log: Subject: [PATCH] Re: Transliteration operator(tr//)on EBCDIC platform
36752              From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
36753              Date: Fri, 12 Aug 2005 00:20:39 +0900
36754              Message-Id: <20050812001541.EA69.BQW10602@nifty.com>
36755      Branch: perl
36756            ! t/op/tr.t toke.c
36757 ____________________________________________________________________________
36758 [ 25302] By: rgs                                   on 2005/08/18  08:00:53
36759         Log: Subject: autouse.pm: remove unneeded eval
36760              From: Alexey Tourbin <at@altlinux.ru>
36761              Date: Thu, 18 Aug 2005 08:13:24 +0400
36762              Message-ID: <20050818041324.GO19097@solemn.turbinal.org>
36763              
36764              Subject: autouse.pm: check stub, use goto in stub
36765              From: Alexey Tourbin <at@altlinux.ru>
36766              Date: Thu, 18 Aug 2005 09:06:20 +0400
36767              Message-ID: <20050818050620.GP19097@solemn.turbinal.org>
36768      Branch: perl
36769            ! lib/autouse.pm
36770 ____________________________________________________________________________
36771 [ 25301] By: rgs                                   on 2005/08/17  15:57:09
36772         Log: FAQ sync
36773      Branch: perl
36774            ! pod/perlfaq.pod pod/perlfaq2.pod pod/perlfaq3.pod
36775            ! pod/perlfaq4.pod pod/perlfaq5.pod pod/perlfaq6.pod
36776            ! pod/perlfaq7.pod pod/perlfaq8.pod pod/perlfaq9.pod
36777 ____________________________________________________________________________
36778 [ 25300] By: steveh                                on 2005/08/17  14:33:00
36779         Log: Subject: Your bug reports for Time::Local
36780              From: Dave Rolsky <autarch@urth.org>
36781              Date: Tue, 16 Aug 2005 11:22:20 -0500 (CDT)
36782              Message-ID: <Pine.LNX.4.61.0508161120520.26270@urth.org>
36783              
36784              An improvement on change 25287 from Dave Rolsky
36785      Branch: perl
36786            ! lib/Time/Local.t
36787 ____________________________________________________________________________
36788 [ 25299] By: rgs                                   on 2005/08/17  12:33:18
36789         Log: Subject: Re: [perl #36654] Inconsistent treatment of NaN
36790              From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
36791              Date: Aug 7, 2005 8:03 PM
36792              Message-ID: <20050807180308.GA2112@efn.org>
36793              
36794              Subject: Re: [perl #36654] Inconsistent treatment of NaN
36795              From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
36796              Date: Wed, 10 Aug 2005 22:53:51 -0700
36797              Message-ID: <20050811055351.GA2296@efn.org>
36798      Branch: perl
36799            ! numeric.c pod/perlop.pod
36800 ____________________________________________________________________________
36801 [ 25298] By: rgs                                   on 2005/08/17  09:35:32
36802         Log: Upgrade to Time::HiRes 1.73
36803      Branch: perl
36804            ! ext/Time/HiRes/Changes ext/Time/HiRes/HiRes.pm
36805 ____________________________________________________________________________
36806 [ 25297] By: nicholas                              on 2005/08/17  09:06:33
36807         Log: Given that we now have a union, there's no need for all the HvARRAY()
36808              casting games.
36809      Branch: perl
36810            ! hv.h sv.h
36811 ____________________________________________________________________________
36812 [ 25296] By: rgs                                   on 2005/08/16  17:57:27
36813         Log: Fix for [perl #36853] -Dx can crash bleadperl
36814              The PL_op_sequence global hash wasn't initialized
36815      Branch: perl
36816            ! dump.c
36817 ____________________________________________________________________________
36818 [ 25295] By: merijn                                on 2005/08/16  07:36:58
36819         Log: Subject: Time::HiRes::nanosleep support for Solaris [PATCH]
36820              From: Gisle Aas <gisle@ActiveState.com>
36821              Date: 15 Aug 2005 21:05:22 -0700
36822              Message-ID: <lrk6imy1a5.fsf@caliper.activestate.com>
36823      Branch: perl
36824            ! ext/Time/HiRes/hints/solaris.pl
36825 ____________________________________________________________________________
36826 [ 25294] By: merijn                                on 2005/08/15  09:36:30
36827         Log: Subject: Re: [PATCH@25292] add nonxs_ext to configure.com
36828              From: "John E. Malmberg" <wb8tyw@qsl.net>
36829              Date: Sat, 13 Aug 2005 12:20:34 -0400
36830              Message-ID: <42FE1DD2.8050803@qsl.net>
36831      Branch: perl
36832            ! configure.com
36833 ____________________________________________________________________________
36834 [ 25293] By: merijn                                on 2005/08/15  09:34:28
36835         Log: Subject: [PATCH configure.com] Make "prove" available on VMS
36836              From: Abe Timmerman <abe@ztreet.demon.nl>
36837              Date: Sat, 13 Aug 2005 18:16:29 +0200
36838              Message-Id: <200508131816.29092.abe@ztreet.demon.nl>
36839      Branch: perl
36840            ! configure.com
36841 ____________________________________________________________________________
36842 [ 25292] By: merijn                                on 2005/08/13  07:38:54
36843         Log: Subject: [PATCH @ 24148] Compress::Zlib 1.37
36844              From: "Paul Marquess" <Paul.Marquess@ntlworld.com>
36845              Date: Fri, 12 Aug 2005 16:31:42 +0100
36846              Message-Id: <20050812153145.PWIR17166.aamta12-winn.ispmail.ntl.com@MARQUESSPT21>
36847      Branch: perl
36848            ! ext/Compress/Zlib/Changes ext/Compress/Zlib/Makefile.PL
36849            ! ext/Compress/Zlib/README ext/Compress/Zlib/Zlib.pm
36850            ! ext/Compress/Zlib/t/03examples.t
36851 ____________________________________________________________________________
36852 [ 25291] By: merijn                                on 2005/08/13  07:33:46
36853         Log: Subject: [patch@25289] Add sig_count to CONFIGURE.COM
36854              From: "John E. Malmberg" <wb8tyw@qsl.net>
36855              Date: Fri, 12 Aug 2005 13:39:25 -0400
36856              Message-ID: <42FCDECD.8090009@qsl.net>
36857      Branch: perl
36858            ! configure.com
36859 ____________________________________________________________________________
36860 [ 25290] By: merijn                                on 2005/08/13  07:30:05
36861         Log: Subject: Re: [patch@25289] bninfnan.t setting include path to file.
36862              From: "John E. Malmberg" <wb8tyw@qsl.net>
36863              Date: Fri, 12 Aug 2005 23:17:39 -0400
36864              Message-ID: <42FD6653.6010605@qsl.net>
36865      Branch: perl
36866            ! lib/bignum/t/bninfnan.t
36867 ____________________________________________________________________________
36868 [ 25289] By: steveh                                on 2005/08/12  16:13:11
36869         Log: Supply same libs for bcc32 builds as cl and gcc builds have
36870              
36871              It makes life easier for third-party extensions if perl provides a
36872              decent set of libs to link against. cl and gcc builds already have
36873              this (except that gcc was missing one lib), but bcc32 builds only
36874              have one or two libs supplied.  In particular, the ODBC libs
36875              required for building libwin32 were not specified.  One of these
36876              doesn't exist in the Borland lib dirs by default, so generate it
36877              from the DLL if it is missing.
36878      Branch: perl
36879            ! win32/makefile.mk
36880 ____________________________________________________________________________
36881 [ 25288] By: steveh                                on 2005/08/12  15:26:11
36882         Log: Make change 25286 better
36883              
36884              Thanks to John E. Malmberg <wb8tyw@qsl.net> for pointing this out.
36885      Branch: perl
36886            ! win32/win32.c
36887 ____________________________________________________________________________
36888 [ 25287] By: steveh                                on 2005/08/11  11:56:26
36889         Log: Fix lib/Time/Local.t for bcc32 in non GMT time zones
36890              
36891              See comments at:
36892              http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2005-08/msg00115.html
36893      Branch: perl
36894            ! lib/Time/Local.t
36895 ____________________________________________________________________________
36896 [ 25286] By: steveh                                on 2005/08/11  10:56:12
36897         Log: Silence Win32 compiler warnings following change 25280
36898      Branch: perl
36899            ! win32/win32.c
36900 ____________________________________________________________________________
36901 [ 25285] By: steveh                                on 2005/08/11  09:21:37
36902         Log: Run regen.pl
36903      Branch: perl
36904            ! pod/perlapi.pod proto.h
36905 ____________________________________________________________________________
36906 [ 25284] By: merijn                                on 2005/08/11  07:35:27
36907         Log: Subject: [patch] blead@25282 - VMS specific fixes. [2nd try]
36908              From: "John E. Malmberg" <wb8tyw@qsl.net>
36909              Date: Wed, 10 Aug 2005 23:26:03 -0400
36910              Message-ID: <42FAC54B.2050207@qsl.net>
36911      Branch: perl
36912            ! lib/Test/Harness/Straps.pm lib/vmsish.t t/lib/warnings/doio
36913            ! t/op/anonsub.t t/op/chdir.t t/op/closure.t t/op/lex_assign.t
36914            ! t/op/runlevel.t t/op/stat.t t/pod/find.t t/x2p/s2p.t
36915            ! utils/c2ph.PL vms/ext/Stdio/test.pl
36916 ____________________________________________________________________________
36917 [ 25283] By: merijn                                on 2005/08/11  07:25:32
36918         Log: Subject: [patch] blead@25282
36919              From: "John E. Malmberg" <wb8tyw@qsl.net>
36920              Date: Wed, 10 Aug 2005 23:47:47 -0400
36921              Message-ID: <42FACA63.4030805@qsl.net>
36922      Branch: perl
36923            ! t/op/exec.t t/run/exit.t
36924 ____________________________________________________________________________
36925 [ 25282] By: merijn                                on 2005/08/10  20:34:03
36926         Log: Subject: [PATCH] Re: [perl #36235] perl + gcc-4.0.0 + solaris + gnu binutils
36927              From: Andy Dougherty <doughera@lafayette.edu>
36928              Date: Tue, 26 Jul 2005 12:03:37 -0400 (EDT)
36929              Message-ID: <Pine.SOC.4.62.0507261131300.8774@maxwell.phys.lafayette.edu>
36930      Branch: perl
36931            ! hints/solaris_2.sh
36932 ____________________________________________________________________________
36933 [ 25281] By: merijn                                on 2005/08/10  11:45:11
36934         Log: Subject: conflicting types for 'Perl_my_popen'
36935              From: Alexey Tourbin <at@altlinux.ru>
36936              Date: Wed, 10 Aug 2005 15:19:15 +0400
36937              Message-ID: <20050810111915.GK19097@solemn.turbinal.org>
36938      Branch: perl
36939            ! util.c
36940 ____________________________________________________________________________
36941 [ 25280] By: merijn                                on 2005/08/10  09:14:23
36942         Log: Subject: patch@25279 VMS error handling and const fixes
36943              From: "John E. Malmberg" <wb8tyw@qsl.net>
36944              Date: Wed, 10 Aug 2005 00:37:13 -0400
36945              Message-ID: <42F98479.6030207@qsl.net>
36946      Branch: perl
36947            ! doio.c embed.fnc perl.h pp_sys.c proto.h vms/vms.c
36948            ! vms/vmsish.h
36949 ____________________________________________________________________________
36950 [ 25279] By: merijn                                on 2005/08/09  11:24:54
36951         Log: Subject: [PATCH] Fix a couple of random warnings
36952              From: Steve Peters <steve@fisharerojo.org>
36953              Date: Tue, 9 Aug 2005 06:21:48 -0500
36954              Message-ID: <20050809112148.GA4902@mccoy.peters.homeunix.org>
36955      Branch: perl
36956            ! nostdio.h perl.c
36957 ____________________________________________________________________________
36958 [ 25278] By: steveh                                on 2005/08/08  16:12:12
36959         Log: Update Porting/repository.pod to recommend Cygwin's ssh on Win32
36960              
36961              Cygwin's ssh client seems to be superior to MSYS's ssh client in that
36962              it supports the ServerAliveInterval config setting which prevents the
36963              ssh client from timing out every so often
36964      Branch: perl
36965            ! Porting/repository.pod
36966 ____________________________________________________________________________
36967 [ 25277] By: merijn                                on 2005/08/08  06:22:38
36968         Log: Subject: [PATCH] Post-OSCON NN/NULLOK-ing
36969              From: Andy Lester <andy@petdance.com>
36970              Date: Sun, 7 Aug 2005 00:59:11 -0500
36971              Message-ID: <20050807055911.GA6384@petdance.com>
36972      Branch: perl
36973            ! embed.fnc op.c
36974 ____________________________________________________________________________
36975 [ 25276] By: merijn                                on 2005/08/08  06:17:33
36976         Log: Subject: Re: [PATCH] undup
36977              From: Jarkko Hietaniemi <jhietaniemi@gmail.com>
36978              Date: Sun, 07 Aug 2005 14:49:40 +0300
36979              Message-ID: <42F5F554.5020701@gmail.com>
36980      Branch: perl
36981            ! pod/perldoc.pod pod/perltodo.pod pod/perlunicode.pod
36982 ____________________________________________________________________________
36983 [ 25275] By: davem                                 on 2005/08/07  11:15:32
36984         Log: run regen.pl after change #25274
36985      Branch: perl
36986            ! pod/perlintern.pod
36987 ____________________________________________________________________________
36988 [ 25274] By: merijn                                on 2005/08/07  10:10:12
36989         Log: Subject: [PATCH] undup 
36990              From: Jarkko Hietaniemi <jhietaniemi@gmail.com>
36991              Date: Sun, 07 Aug 2005 13:28:19 +0300
36992              Message-ID: <42F5E243.80500@gmail.com>
36993      Branch: perl
36994            ! ext/Encode/lib/Encode/Supported.pod lib/Test/Harness/TAP.pod
36995            ! pad.c pod/perl573delta.pod pod/perl58delta.pod
36996            ! pod/perlfaq7.pod pod/perlglossary.pod pod/perlvar.pod pp_ctl.c
36997 ____________________________________________________________________________
36998 [ 25273] By: rgs                                   on 2005/08/06  23:07:46
36999         Log: Add files missed in change 25271
37000      Branch: perl
37001            + ext/Encode/lib/Encode/MIME/Header/ISO_2022_JP.pm
37002            + ext/Encode/t/mime_header_iso2022jp.t
37003 ____________________________________________________________________________
37004 [ 25272] By: rgs                                   on 2005/08/06  22:46:06
37005         Log: Clarify docs
37006      Branch: perl
37007            ! ext/PerlIO/encoding/encoding.pm
37008 ____________________________________________________________________________
37009 [ 25271] By: rgs                                   on 2005/08/06  22:15:14
37010         Log: Upgrade to Encode 2.11, plus a patch to PerlIO::encoding
37011              by Dan Kogai to fix encoding(utf-8-strict) with partial
37012              characters.
37013      Branch: perl
37014            ! MANIFEST ext/Encode/AUTHORS ext/Encode/Changes
37015            ! ext/Encode/Encode.pm ext/Encode/Encode.xs
37016            ! ext/Encode/Encode/encode.h ext/Encode/MANIFEST
37017            ! ext/Encode/META.yml ext/Encode/lib/Encode/Alias.pm
37018            ! ext/Encode/lib/Encode/Config.pm
37019            ! ext/Encode/lib/Encode/MIME/Header.pm
37020            ! ext/PerlIO/encoding/encoding.pm
37021 ____________________________________________________________________________
37022 [ 25270] By: merijn                                on 2005/08/06  15:54:55
37023         Log: Subject: [PATCH] Re: [PATCH] Re: [perl #36819] perlbug AutoReply: Bleadperl: abs() busted outside integer range
37024              From: Dominic Dunlop <shouldbedomo@mac.com>
37025              Date: Sat, 6 Aug 2005 17:47:40 +0200
37026              Message-Id: <EF62D3CF-8B54-4C7B-973E-C259F487AE32@mac.com>
37027      Branch: perl
37028            ! pp.c t/op/arith.t
37029 ____________________________________________________________________________
37030 [ 25269] By: rgs                                   on 2005/08/05  16:31:44
37031         Log: Subject: [patch]vms.c - buffer highwater overrun in vmsify
37032              From: John E. Malmberg <wb8tyw@qsl.net>
37033              Date: Mon, 01 Aug 2005 19:54:22 -0400
37034              Message-ID: <42EEB62E.3020108@qsl.net>
37035      Branch: perl
37036            ! vms/vms.c
37037 ____________________________________________________________________________
37038 [ 25268] By: rgs                                   on 2005/08/05  15:01:19
37039         Log: "thread failed to start" is a severe warning, not a fatal error
37040              as reported by Tassilo von Parseval.
37041      Branch: perl
37042            ! pod/perldiag.pod
37043 ____________________________________________________________________________
37044 [ 25267] By: merijn                                on 2005/08/05  14:13:26
37045         Log: ASCIZ is not a typo
37046      Branch: perl
37047            ! pod/perlfunc.pod
37048 ____________________________________________________________________________
37049 [ 25266] By: merijn                                on 2005/08/05  07:50:40
37050         Log: Subject: [PATCH] Typos in *.p[lm]
37051              From: "Piotr Fusik" <pfusik@op.pl>
37052              Date: Sun, 31 Jul 2005 12:50:04 +0200
37053              Message-ID: <001401c595bd$dccb5d80$0bd34dd5@piec>
37054      Branch: perl
37055            ! ext/Encode/lib/Encode/PerlIO.pod
37056            ! ext/Encode/lib/Encode/Supported.pod lib/ExtUtils/MM_Win95.pm
37057            ! lib/ExtUtils/MakeMaker/FAQ.pod lib/Net/libnetFAQ.pod
37058            ! lib/Test/Harness/TAP.pod lib/Test/Tutorial.pod
37059            ! pod/perlfunc.pod pod/perltoc.pod
37060 ____________________________________________________________________________
37061 [ 25265] By: rgs                                   on 2005/08/04  16:45:37
37062         Log: VMS debugging help, by John E. Malmberg
37063      Branch: perl
37064            ! vms/descrip_mms.template
37065 ____________________________________________________________________________
37066 [ 25264] By: merijn                                on 2005/08/03  10:30:54
37067         Log: Subject: [PATCH] Re: Smoke [5.9.3] 25248 FAIL(F) openbsd 3.7 (i386/1 cpu)
37068              From: Dominic Dunlop <shouldbedomo@mac.com>
37069              Date: Wed, 3 Aug 2005 12:19:03 +0200
37070              Message-Id: <8D595B69-4489-4395-BFA4-07DF5859D556@mac.com>
37071      Branch: perl
37072            ! t/op/sprintf.t
37073 ____________________________________________________________________________
37074 [ 25263] By: merijn                                on 2005/08/02  13:59:49
37075         Log: The typo changes from 25261 (of course) altered the MD5's
37076      Branch: perl
37077            ! ext/Digest/MD5/t/files.t
37078 ____________________________________________________________________________
37079 [ 25262] By: merijn                                on 2005/08/02  13:45:35
37080         Log: Typoes from 25261 also in expected for tests
37081      Branch: perl
37082            ! t/pod/pod2usage.xr
37083 ____________________________________________________________________________
37084 [ 25261] By: merijn                                on 2005/08/02  10:39:51
37085         Log: Subject: [PATCH] Typos in *.p[lm]
37086              From: "Piotr Fusik" <pfusik@op.pl>
37087              Date: Sun, 31 Jul 2005 12:50:04 +0200
37088              Message-ID: <001401c595bd$dccb5d80$0bd34dd5@piec>
37089      Branch: perl
37090            ! bytecode.pl ext/B/B/Asmdata.pm ext/B/B/Bblock.pm ext/B/B/CC.pm
37091            ! ext/B/B/Concise.pm ext/B/B/Deparse.pm ext/B/B/Terse.pm
37092            ! ext/B/t/OptreeCheck.pm ext/Compress/Zlib/Zlib.pm
37093            ! ext/DB_File/DB_File.pm ext/Digest/MD5/MD5.pm
37094            ! ext/Encode/Encode.pm ext/Encode/encoding.pm
37095            ! ext/Encode/lib/Encode/Alias.pm ext/IO/lib/IO/Dir.pm
37096            ! ext/IO/lib/IO/Poll.pm ext/IO/lib/IO/Socket/INET.pm
37097            ! ext/NDBM_File/NDBM_File.pm ext/ODBM_File/ODBM_File.pm
37098            ! ext/Opcode/Opcode.pm ext/Opcode/ops.pm
37099            ! ext/SDBM_File/SDBM_File.pm ext/Storable/Storable.pm
37100            ! ext/XS/APItest/APItest.pm ext/re/re.pm lib/Archive/Tar.pm
37101            ! lib/Archive/Tar/Constant.pm lib/Attribute/Handlers.pm
37102            ! lib/CGI.pm lib/CGI/Carp.pm lib/CPAN.pm lib/Digest.pm
37103            ! lib/ExtUtils/CBuilder/Platform/Windows.pm
37104            ! lib/ExtUtils/MM_Any.pm lib/ExtUtils/MM_Unix.pm
37105            ! lib/ExtUtils/MM_VMS.pm lib/ExtUtils/MakeMaker.pm
37106            ! lib/ExtUtils/ParseXS.pm lib/File/Basename.pm
37107            ! lib/File/Spec/Mac.pm lib/File/Temp.pm lib/Filter/Simple.pm
37108            ! lib/Getopt/Long.pm lib/I18N/LangTags.pm
37109            ! lib/I18N/LangTags/List.pm lib/Math/BigFloat.pm
37110            ! lib/Math/BigInt.pm lib/Math/BigInt/Calc.pm lib/Math/BigRat.pm
37111            ! lib/NEXT.pm lib/Net/Cmd.pm lib/Net/Config.pm lib/Net/FTP.pm
37112            ! lib/Net/NNTP.pm lib/Net/POP3.pm lib/Net/Ping.pm
37113            ! lib/Net/SMTP.pm lib/PerlIO.pm lib/Pod/Checker.pm
37114            ! lib/Pod/Functions.pm lib/Pod/Html.pm lib/Pod/InputObjects.pm
37115            ! lib/Pod/LaTeX.pm lib/Pod/Parser.pm lib/Pod/Select.pm
37116            ! lib/Pod/Usage.pm lib/Switch.pm lib/Term/ANSIColor.pm
37117            ! lib/Test.pm lib/Test/More.pm lib/Text/Balanced.pm
37118            ! lib/Text/Wrap.pm lib/Tie/File.pm lib/Tie/Hash.pm
37119            ! lib/Unicode/UCD.pm lib/base.pm lib/bigint.pm lib/bignum.pm
37120            ! lib/bigrat.pm lib/blib.pm lib/diagnostics.pm lib/perl5db.pl
37121            ! lib/version.pm lib/vmsish.pm os2/OS2/PrfDB/PrfDB.pm
37122            ! os2/OS2/Process/Process.pm pod/checkpods.PL pod/pod2usage.PL
37123            ! utils/h2xs.PL win32/bin/pl2bat.pl wince/bin/pl2bat.pl
37124            ! wince/comp.pl
37125 ____________________________________________________________________________
37126 [ 25260] By: rgs                                   on 2005/08/01  15:14:48
37127         Log: Document where to find maintainers of dual live modules
37128      Branch: perl
37129            ! pod/perlhack.pod
37130 ____________________________________________________________________________
37131 [ 25259] By: rgs                                   on 2005/08/01  15:12:07
37132         Log: More typo fixes (damn generated pod files)
37133      Branch: perl
37134            ! pad.c
37135 ____________________________________________________________________________
37136 [ 25258] By: rgs                                   on 2005/08/01  14:45:22
37137         Log: Subject: Re: [perl #36616] bug or feature? foreach (sort @array) {y/a-z/A-Z/;} # @array modified!
37138              From: Michael G Schwern <schwern@pobox.com>
37139              Date: Sat, 23 Jul 2005 19:59:29 -0700
37140              Message-ID: <20050724025929.GA6574@windhund.schwern.org>
37141      Branch: perl
37142            ! pod/perlfunc.pod
37143 ____________________________________________________________________________
37144 [ 25257] By: rgs                                   on 2005/08/01  13:58:04
37145         Log: Various patches by John E. Malmberg to fix data
37146              corruption issues on VMS. Back out change 25218 and
37147              the parts of change 25217 that affect pp_ctl.c and
37148              pp_sys.c.
37149      Branch: perl
37150            ! doio.c ext/Compress/Zlib/Makefile.PL mg.c pp_ctl.c pp_sys.c
37151            ! vms/vms.c vms/vmsish.h
37152 ____________________________________________________________________________
37153 [ 25256] By: rgs                                   on 2005/08/01  13:54:52
37154         Log: Various patches by John E. Malmberg to fix data
37155              corruption issues on VMS. Back out change 25218 and
37156              the parts of change 25217 that affect pp_ctl.c and
37157              pp_sys.c.
37158      Branch: perl
37159            ! doio.c ext/Compress/Zlib/Makefile.PL mg.c pp_ctl.c pp_sys.c
37160            ! vms/vms.c vms/vmsish.h
37161 ____________________________________________________________________________
37162 [ 25255] By: rgs                                   on 2005/08/01  13:15:25
37163         Log: Subject: [patch] blead@25226 on OpenVMS/vms.c - fopen bug.
37164              From: "John E. Malmberg" <wb8tyw@qsl.net>
37165              Date: Fri, 29 Jul 2005 10:24:15 -0400
37166              Message-ID: <42EA3C0F.9040900@qsl.net>
37167      Branch: perl
37168            ! vms/vms.c
37169 ____________________________________________________________________________
37170 [ 25254] By: rgs                                   on 2005/08/01  08:14:27
37171         Log: Another typo fix
37172      Branch: perl
37173            ! XSUB.h pod/perlapi.pod
37174 ____________________________________________________________________________
37175 [ 25253] By: rgs                                   on 2005/08/01  08:13:10
37176         Log: Subject: [PATCH] POD typos
37177              From: "Piotr Fusik" <pfusik@op.pl>
37178              Date: Sat, 30 Jul 2005 21:54:19 +0200
37179              Message-ID: <00ef01c59542$3198ba00$26d34dd5@piec>
37180      Branch: perl
37181            ! Porting/pumpkin.pod Porting/repository.pod ext/POSIX/POSIX.pod
37182            ! pod/perl593delta.pod pod/perlapio.pod pod/perldebug.pod
37183            ! pod/perldiag.pod pod/perlfaq2.pod pod/perlfaq3.pod
37184            ! pod/perlfaq4.pod pod/perlfaq6.pod pod/perlglossary.pod
37185            ! pod/perlguts.pod pod/perlintern.pod pod/perltodo.pod
37186            ! pod/perlxs.pod symbian/PerlBase.pod vms/perlvms.pod
37187 ____________________________________________________________________________
37188 [ 25252] By: rgs                                   on 2005/08/01  07:49:58
37189         Log: Subject: Re: [perl #36622] y/// at end of file
37190              From: Michael G Schwern <schwern@pobox.com>
37191              Date: Fri, 22 Jul 2005 11:51:15 -0700
37192              Message-ID: <20050722185115.GB28829@windhund.schwern.org>
37193      Branch: perl
37194            ! t/op/tr.t t/test.pl
37195 ____________________________________________________________________________
37196 [ 25251] By: rgs                                   on 2005/08/01  07:23:08
37197         Log: Subject: Re: blead@25210 on OpenVMS (not good)
37198              From: "John E. Malmberg" <wb8tyw@qsl.net>
37199              Date: Sun, 24 Jul 2005 19:09:01 -0400
37200              Message-ID: <42E41F8D.3040306@qsl.net>
37201              
37202              constify Perl_unlnk
37203      Branch: perl
37204            ! embed.fnc perl.h proto.h util.c
37205 ____________________________________________________________________________
37206 [ 25250] By: rgs                                   on 2005/08/01  07:03:36
37207         Log: Subject: blead@25226 - ext/Compress/Zlib on VMS.
37208              From: "John E. Malmberg" <wb8tyw@qsl.net>
37209              Date: Sun, 31 Jul 2005 23:19:51 -0400
37210              Message-ID: <42ED94D6.7020104@qsl.net>
37211      Branch: perl
37212            ! ext/Compress/Zlib/t/03examples.t
37213 ____________________________________________________________________________
37214 [ 25249] By: rgs                                   on 2005/08/01  06:57:09
37215         Log: Subject: [patch] blead@25226 - t/op/pack.t undefined value fix
37216              From: "John E. Malmberg" <wb8tyw@qsl.net>
37217              Date: Sun, 31 Jul 2005 22:18:19 -0400
37218              Message-ID: <42ED866B.3000308@qsl.net>
37219      Branch: perl
37220            ! t/op/pack.t
37221 ____________________________________________________________________________
37222 [ 25248] By: merijn                                on 2005/07/31  15:50:45
37223         Log: SIGRTMIN & SIGRTMAX on Cygwin both 32. sig_count = 33, but
37224              POSIX::SigRt is not available on use
37225      Branch: perl
37226            ! ext/POSIX/t/sigaction.t
37227 ____________________________________________________________________________
37228 [ 25247] By: merijn                                on 2005/07/31  15:47:51
37229         Log: Subject: [PATCH] Re: Smoke [5.9.3] 25237 FAIL(F) linux 2.6.12-4-686 [debian] (i686/1 cpu)
37230              From: Dominic Dunlop <shouldbedomo@mac.com>
37231              Date: Fri, 29 Jul 2005 17:41:59 +0200
37232              Message-Id: <33378322-189C-4D70-AC0B-1AF589DD56E7@mac.com>
37233      Branch: perl
37234            ! sv.h
37235 ____________________________________________________________________________
37236 [ 25246] By: rgs                                   on 2005/07/31  15:15:35
37237         Log: Remove the documentation for $#, which has been removed
37238      Branch: perl
37239            ! pod/perlvar.pod
37240 ____________________________________________________________________________
37241 [ 25245] By: rgs                                   on 2005/07/29  15:36:09
37242         Log: Update Changes
37243      Branch: perl
37244            ! Changes
37245 ____________________________________________________________________________
37246 [ 25244] By: steveh                                on 2005/07/29  09:41:38
37247         Log: Skip op/sprintf.t test 147 on MSWin32
37248              ... and fix the skip code so that it actually works ;-)
37249      Branch: perl
37250            ! t/op/sprintf.t
37251 ____________________________________________________________________________
37252 [ 25243] By: rgs                                   on 2005/07/29  08:31:51
37253         Log: Subject: [PATCH] More embed.fnc goodness
37254              From: Andy Lester <andy@petdance.com>
37255              Date: Thu, 28 Jul 2005 14:09:56 -0500
37256              Message-ID: <20050728190956.GB607@petdance.com>
37257      Branch: perl
37258            ! doio.c embed.fnc embed.h op.c pp_ctl.c proto.h regcomp.c
37259            ! regexec.c sv.c util.c
37260 ____________________________________________________________________________
37261 [ 25242] By: rgs                                   on 2005/07/29  07:19:11
37262         Log: Subject: [PATCH] Fix English error in overload.pm
37263              From: Andy Lester <andy@petdance.com>
37264              Date: Thu, 28 Jul 2005 14:10:43 -0500
37265              Message-ID: <20050728191043.GC607@petdance.com>
37266      Branch: perl
37267            ! lib/overload.pm
37268 ____________________________________________________________________________
37269 [ 25241] By: rgs                                   on 2005/07/28  17:34:36
37270         Log: Clarification to the syntax of loop modifiers
37271              by Piotr Fusik
37272      Branch: perl
37273            ! pod/perlfunc.pod
37274 ____________________________________________________________________________
37275 [ 25240] By: rgs                                   on 2005/07/28  17:29:47
37276         Log: Subject: RE: [PATCH] Re: [PATCH] support POSIX SA_SIGINFO
37277              From: "Green, Paul" <Paul.Green@stratus.com>
37278              Date: Mon, 25 Jul 2005 12:39:32 -0400
37279              Message-ID: <F5F42E77A43DD944B6D664B00A5401CB8A9F67@EXNA.corp.stratus.com>
37280      Branch: perl
37281            ! mg.c
37282 ____________________________________________________________________________
37283 [ 25239] By: rgs                                   on 2005/07/28  17:18:13
37284         Log: Subject: [PATCH fresh_perl.t] Being more careful about newlines
37285              From: Michael G Schwern <schwern@pobox.com>
37286              Date: Fri, 22 Jul 2005 12:53:34 -0700
37287              Message-ID: <20050722195334.GA12431@windhund.schwern.org>
37288      Branch: perl
37289            ! t/run/fresh_perl.t
37290 ____________________________________________________________________________
37291 [ 25238] By: rgs                                   on 2005/07/28  16:11:23
37292         Log: Subject: [PATCH] perl.h, use STRINGIFY in 25171
37293              From: Robin Barker <Robin.Barker@npl.co.uk>
37294              Date: Thu, 28 Jul 2005 12:13:13 +0100
37295              Message-ID: <533D273D4014D411AB1D00062938C4D90849C75A@hotel.npl.co.uk>
37296      Branch: perl
37297            ! perl.h
37298 ____________________________________________________________________________
37299 [ 25237] By: merijn                                on 2005/07/28  13:03:09
37300         Log: Subject: [PATCH] tidy up DieNull and DIE_NULL
37301              From: Robin Barker <Robin.Barker@npl.co.uk>
37302              Date: Thu, 28 Jul 2005 14:05:51 +0100
37303              Message-ID: <533D273D4014D411AB1D00062938C4D90849C75C@hotel.npl.co.uk>
37304      Branch: perl
37305            ! embed.fnc mg.c perl.h pp.h pp_sys.c proto.h
37306 ____________________________________________________________________________
37307 [ 25236] By: rgs                                   on 2005/07/28  12:59:55
37308         Log: Subject: [PATCH] silence compiler warning in mg.c POSIX.xs
37309              From: Robin Barker <Robin.Barker@npl.co.uk>
37310              Date: Thu, 28 Jul 2005 13:57:31 +0100
37311              Message-ID: <533D273D4014D411AB1D00062938C4D90849C75B@hotel.npl.co.uk>
37312      Branch: perl
37313            ! ext/POSIX/POSIX.xs mg.c perl.h
37314 ____________________________________________________________________________
37315 [ 25235] By: merijn                                on 2005/07/28  12:22:27
37316         Log: sprintf now has all but two tests enabled.
37317              the list supports skipping of expected fails
37318              new test for %.0g from Dominic Dunlop
37319      Branch: perl
37320            ! t/op/sprintf.t
37321 ____________________________________________________________________________
37322 [ 25234] By: steveh                                on 2005/07/28  09:10:41
37323         Log: Subject: [PATCH] perlfunc.pod grammar fixes
37324              From: Steve Peters <steve@fisharerojo.org>
37325              Date: Wed, 27 Jul 2005 22:02:13 -0500
37326              Message-ID: <20050728030213.GA11330@mccoy.peters.homeunix.org>
37327              
37328              (with minor tweaks)
37329      Branch: perl
37330            ! pod/perlfunc.pod
37331 ____________________________________________________________________________
37332 [ 25233] By: rgs                                   on 2005/07/28  09:07:57
37333         Log: Sync change 25229 to .h source files
37334      Branch: perl
37335            ! cv.h pad.h
37336 ____________________________________________________________________________
37337 [ 25232] By: rgs                                   on 2005/07/28  08:53:55
37338         Log: Subject: [perl #36672] Swapped warnings for -o and -O file tests 
37339              From: "Piotr Fusik" (via RT) <perlbug-followup@perl.org>
37340              Date: Wed, 27 Jul 2005 15:43:17 -0700
37341              Message-ID: <rt-3.0.11-36672-118371.6.12458378853063@perl.org>
37342              
37343              (except the redundant test)
37344      Branch: perl
37345            ! opcode.h opcode.pl t/lib/warnings/9uninit
37346 ____________________________________________________________________________
37347 [ 25231] By: merijn                                on 2005/07/28  06:48:14
37348         Log: Subject: Re: [PATCH] Tru64: use -c99 for ccflags if available
37349              From: Jarkko Hietaniemi <jhietaniemi@gmail.com>
37350              Date: Thu, 28 Jul 2005 10:01:51 +0300
37351              Message-ID: <42E882DF.6020100@gmail.com>
37352              Message-ID: <42E86DE9.6090709@gmail.com>
37353      Branch: perl
37354            ! handy.h hints/dec_osf.sh
37355 ____________________________________________________________________________
37356 [ 25230] By: merijn                                on 2005/07/27  16:28:58
37357         Log: Some signals are more real than others
37358              Also added comment about why the tests are there
37359      Branch: perl
37360            ! ext/POSIX/t/sigaction.t
37361 ____________________________________________________________________________
37362 [ 25229] By: merijn                                on 2005/07/27  16:26:16
37363         Log: Subject: [PATCH] id est is i.e.
37364              From: Steve Peters <steve@fisharerojo.org>
37365              Date: Tue, 26 Jul 2005 20:42:38 -0500
37366              Message-ID: <20050727014238.GA2582@mccoy.peters.homeunix.org>
37367      Branch: perl
37368            ! pod/perlfunc.pod pod/perlguts.pod pod/perlhack.pod
37369            ! pod/perlintern.pod
37370 ____________________________________________________________________________
37371 [ 25228] By: merijn                                on 2005/07/26  13:23:10
37372         Log: Use the correct gcc when more than one gcc is installed
37373              Thanks to Campo
37374      Branch: perl
37375            ! hints/aix.sh
37376 ____________________________________________________________________________
37377 [ 25227] By: rgs                                   on 2005/07/26  09:20:11
37378         Log: Subject: [perl #36658] Typo in perlfunc.pod 
37379              From: "John W. Krahn" (via RT) <perlbug-followup@perl.org>
37380              Date: Tue, 26 Jul 2005 01:07:18 -0700
37381              Message-ID: <rt-3.0.11-36658-118300.18.7320750032131@perl.org>
37382      Branch: perl
37383            ! pod/perlfunc.pod
37384 ____________________________________________________________________________
37385 [ 25226] By: steveh                                on 2005/07/25  14:37:41
37386         Log: Reinstate PERL_MALLOC_WRAP for bcc32 on Win32
37387              
37388              This was disabled by change 22689 because it was severely broken
37389              at the time.  See the thread starting here:
37390              
37391              http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2004-04/msg00370.html
37392              
37393              The PERL_MALLOC_WRAP code in handy.h has since changed along the
37394              lines of what was discussed in that thread (in particular, by change
37395              25034) and I find that everything is now fine with PERL_MALLOC_WRAP
37396              re-enabled.
37397      Branch: perl
37398            ! win32/config_H.bc
37399 ____________________________________________________________________________
37400 [ 25225] By: steveh                                on 2005/07/25  14:34:12
37401         Log: Ken pointed out that CBuilder's cleanup is too agrressive
37402              
37403              The Windows compile() and link() methods bizarrely include their own
37404              output files in the list of files to be cleaned up.  Now that they
37405              actually are being cleaned up, this isn't ideal ;-)
37406              
37407              Stop compile() and link() from cleaning up their own output, and
37408              reinstate the explicit deletion of those output files in the test
37409              scripts.
37410      Branch: perl
37411            ! lib/ExtUtils/CBuilder/Platform/Windows.pm
37412            ! lib/ExtUtils/CBuilder/t/01-basic.t
37413            ! lib/ExtUtils/CBuilder/t/02-link.t
37414            ! lib/ExtUtils/ParseXS/t/basic.t
37415 ____________________________________________________________________________
37416 [ 25224] By: steveh                                on 2005/07/25  11:53:44
37417         Log: Silence uninitialized value warnings in Net::Cmd
37418              
37419              (Suppresses 20 such warnings emitted by lib/Net/t/datasend.t)
37420      Branch: perl
37421            ! lib/Net/Cmd.pm
37422 ____________________________________________________________________________
37423 [ 25223] By: merijn                                on 2005/07/25  11:47:03
37424         Log: use POSIX might not throw an error. Check for useful values also
37425      Branch: perl
37426            ! ext/POSIX/t/sigaction.t
37427 ____________________________________________________________________________
37428 [ 25222] By: steveh                                on 2005/07/25  11:11:29
37429         Log: Make CBuilder and ParseXS clean up their temp test files
37430      Branch: perl
37431            ! lib/ExtUtils/CBuilder.pm lib/ExtUtils/CBuilder/Base.pm
37432            ! lib/ExtUtils/CBuilder/t/01-basic.t
37433            ! lib/ExtUtils/CBuilder/t/02-link.t lib/ExtUtils/ParseXS.pm
37434            ! lib/ExtUtils/ParseXS/t/basic.t
37435 ____________________________________________________________________________
37436 [ 25221] By: rgs                                   on 2005/07/25  09:49:39
37437         Log: Increment the version number of version.pm
37438              (no code changes on CPAN)
37439      Branch: perl
37440            ! lib/version.pm
37441 ____________________________________________________________________________
37442 [ 25220] By: merijn                                on 2005/07/25  08:53:34
37443         Log: Subject: [PATCH perlfunc.pod/crypt] crypt() digests, not encrypts
37444              From: Michael G Schwern <schwern@pobox.com>
37445              Date: Sat, 23 Jul 2005 17:25:18 -0700
37446              Message-ID: <20050724002518.GB4918@windhund.schwern.org>
37447              
37448              Subject: Re: [PATCH perlfunc.pod/crypt] crypt() digests, not encrypts
37449              From: Michael G Schwern <schwern@pobox.com>
37450              Date: Sun, 24 Jul 2005 13:49:25 -0700
37451              Message-ID: <20050724204925.GC13275@windhund.schwern.org>
37452      Branch: perl
37453            ! pod/perlfunc.pod
37454 ____________________________________________________________________________
37455 [ 25219] By: merijn                                on 2005/07/25  08:39:08
37456         Log: Subject: [PATCH] perlfunc.pod: s/definetely/definitely/
37457              From: "Piotr Fusik" <pfusik@op.pl>
37458              Date: Sun, 24 Jul 2005 12:55:09 +0200
37459              Message-ID: <004e01c5903e$2affb3a0$60d24dd5@piec>
37460      Branch: perl
37461            ! pod/perlfunc.pod
37462 ____________________________________________________________________________
37463 [ 25218] By: nicholas                              on 2005/07/24  22:35:56
37464         Log: Subject: [PATCH] Re: blead@25210 on OpenVMS (not good)
37465              From: "Craig A. Berry" <craigberry@mac.com>
37466              Message-Id: <p06230906bf09caa9618b@[172.16.52.1]>
37467              Date: Sun, 24 Jul 2005 17:47:26 -0500
37468      Branch: perl
37469            ! doio.c
37470 ____________________________________________________________________________
37471 [ 25217] By: nicholas                              on 2005/07/24  20:52:13
37472         Log: Subject: [PATCH] blead help for VMS
37473              From: "Craig A. Berry" <craigberry@mac.com>
37474              Message-ID: <42E3FABB.1020900@mac.com>
37475              Date: Sun, 24 Jul 2005 15:31:55 -0500
37476      Branch: perl
37477           +> ext/Compress/Zlib/zlib-src/adler32.c
37478           +> ext/Compress/Zlib/zlib-src/compress.c
37479           +> ext/Compress/Zlib/zlib-src/crc32.c
37480           +> ext/Compress/Zlib/zlib-src/crc32.h
37481           +> ext/Compress/Zlib/zlib-src/deflate.c
37482           +> ext/Compress/Zlib/zlib-src/deflate.h
37483           +> ext/Compress/Zlib/zlib-src/gzio.c
37484           +> ext/Compress/Zlib/zlib-src/infback.c
37485           +> ext/Compress/Zlib/zlib-src/inffast.c
37486           +> ext/Compress/Zlib/zlib-src/inffast.h
37487           +> ext/Compress/Zlib/zlib-src/inffixed.h
37488           +> ext/Compress/Zlib/zlib-src/inflate.c
37489           +> ext/Compress/Zlib/zlib-src/inflate.h
37490           +> ext/Compress/Zlib/zlib-src/inftrees.c
37491           +> ext/Compress/Zlib/zlib-src/inftrees.h
37492           +> ext/Compress/Zlib/zlib-src/trees.c
37493           +> ext/Compress/Zlib/zlib-src/trees.h
37494           +> ext/Compress/Zlib/zlib-src/uncompr.c
37495           +> ext/Compress/Zlib/zlib-src/zconf.h
37496           +> ext/Compress/Zlib/zlib-src/zlib.h
37497           +> ext/Compress/Zlib/zlib-src/zutil.c
37498           +> ext/Compress/Zlib/zlib-src/zutil.h
37499            - ext/Compress/Zlib/zlib-src-1.2.3/adler32.c
37500            - ext/Compress/Zlib/zlib-src-1.2.3/compress.c
37501            - ext/Compress/Zlib/zlib-src-1.2.3/crc32.c
37502            - ext/Compress/Zlib/zlib-src-1.2.3/crc32.h
37503            - ext/Compress/Zlib/zlib-src-1.2.3/deflate.c
37504            - ext/Compress/Zlib/zlib-src-1.2.3/deflate.h
37505            - ext/Compress/Zlib/zlib-src-1.2.3/gzio.c
37506            - ext/Compress/Zlib/zlib-src-1.2.3/infback.c
37507            - ext/Compress/Zlib/zlib-src-1.2.3/inffast.c
37508            - ext/Compress/Zlib/zlib-src-1.2.3/inffast.h
37509            - ext/Compress/Zlib/zlib-src-1.2.3/inffixed.h
37510            - ext/Compress/Zlib/zlib-src-1.2.3/inflate.c
37511            - ext/Compress/Zlib/zlib-src-1.2.3/inflate.h
37512            - ext/Compress/Zlib/zlib-src-1.2.3/inftrees.c
37513            - ext/Compress/Zlib/zlib-src-1.2.3/inftrees.h
37514            - ext/Compress/Zlib/zlib-src-1.2.3/trees.c
37515            - ext/Compress/Zlib/zlib-src-1.2.3/trees.h
37516            - ext/Compress/Zlib/zlib-src-1.2.3/uncompr.c
37517            - ext/Compress/Zlib/zlib-src-1.2.3/zconf.h
37518            - ext/Compress/Zlib/zlib-src-1.2.3/zlib.h
37519            - ext/Compress/Zlib/zlib-src-1.2.3/zutil.c
37520            - ext/Compress/Zlib/zlib-src-1.2.3/zutil.h
37521            ! MANIFEST ext/Compress/Zlib/config.in mg.c pp_ctl.c pp_sys.c
37522            ! vms/gen_shrfls.pl
37523 ____________________________________________________________________________
37524 [ 25216] By: steveh                                on 2005/07/22  16:53:11
37525         Log: Fix USE_LARGE_FILES with bcc32 on Win32?
37526              
37527              Trawling through all these config files, I think I've found the
37528              reason why bcc32 builds with USE_LARGE_FILES were failing (e.g.
37529              (see http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2005-06/msg00809.html):
37530              lseeksize and lseektype were set to 8 and __int64, but Borland's
37531              <io.h> suggests that they should be 4 and long respectively.
37532              
37533              Changing them accordingly makes all tests pass. And I see that
37534              win32/win32.c has special handling for __BORLANDC__ + USE_LARGE_FILES,
37535              presumably to cope with this difference?
37536      Branch: perl
37537            ! win32/config.bc
37538 ____________________________________________________________________________
37539 [ 25215] By: steveh                                on 2005/07/22  16:36:41
37540         Log: Tweak the canned win32/config.* files
37541              
37542              uselargefiles, usemultiplicity, useperlio and useithreads are now
37543              off in the canned win32/config_H.* files, so change these to match.
37544              
37545              Also scrap the misleading ~USE_PERLIO~ and ~USE_SITECUST~ tags
37546              which don't actually work since no such CFG_VARS are passed in to
37547              config_sh.PL. (The useperlio and usesitecustomize entries actually
37548              get substituted by the more general "if (/^([\w_]+)=(.*)$/)" case.)
37549      Branch: perl
37550            ! win32/config.bc win32/config.gc win32/config.vc
37551            ! win32/config.vc64
37552 ____________________________________________________________________________
37553 [ 25214] By: steveh                                on 2005/07/22  14:22:38
37554         Log: Add missing entries to win32/config.*
37555              
37556              No existing entries changed, just adding some missing ones based
37557              on Porting/config.sh
37558      Branch: perl
37559            ! win32/config.bc win32/config.gc win32/config.vc
37560            ! win32/config.vc64
37561 ____________________________________________________________________________
37562 [ 25213] By: rgs                                   on 2005/07/22  12:23:35
37563         Log: Subject: [perl #36612] [PATCH] Misleading shift docs about @ARGV
37564              From: Michael G Schwern (via RT) <perlbug-followup@perl.org>
37565              Date: Wed, 20 Jul 2005 18:26:23 -0700
37566              Message-ID: <rt-3.0.11-36612-118070.2.49212485540788@perl.org>
37567      Branch: perl
37568            ! pod/perlfunc.pod
37569 ____________________________________________________________________________
37570 [ 25212] By: steveh                                on 2005/07/22  10:32:02
37571         Log: Tidy up options / defines output from makedef.pl
37572              and change Win32-specific comments to say "On Win32 ..." now
37573              that AIX is using the same code too
37574      Branch: perl
37575            ! makedef.pl
37576 ____________________________________________________________________________
37577 [ 25211] By: steveh                                on 2005/07/22  10:29:51
37578         Log: Silence Win32 warnings when not using USE_LARGE_FILES
37579      Branch: perl
37580            ! win32/win32.c
37581 ____________________________________________________________________________
37582 [ 25210] By: merijn                                on 2005/07/21  17:40:06
37583         Log: I *DO* have AIX, and extending #25209 like this make it happy again
37584              Thank you Steve!
37585      Branch: perl
37586            ! makedef.pl
37587 ____________________________________________________________________________
37588 [ 25209] By: steveh                                on 2005/07/21  17:01:33
37589         Log: Make makedef.pl read "miniperl -V" on Win32
37590              
37591              Perhaps other platforms that use makedef.pl also need a similar
37592              change (currently required to pick up PERL_DONT_CREATE_GVSV),
37593              but it also requires them to have minimal canned configs (if they
37594              are using canned configs like Win32 does) and I don't have any
37595              of the affected platforms (AIX, WinCE, OS/2, MacOS Classic and
37596              NetWare) for testing, so play it safe instead
37597      Branch: perl
37598            ! makedef.pl
37599 ____________________________________________________________________________
37600 [ 25208] By: steveh                                on 2005/07/21  16:50:27
37601         Log: Make the canned config.h files used on Win32 more minimal
37602              
37603              These are used in their unedited form to build miniperl, so should
37604              represent a minimal configuration
37605              
37606              The plan is to use miniperl's "-V" output in makedef.pl, so it is
37607              important that it doesn't include any of the optional things in the
37608              makefiles that the user might have chosen to disable
37609              
37610              (The actual config.h used to build perl itself is, of course, an
37611              edited version of these canned configs produced by using miniperl
37612              to run config_h.PL so these changes won't affect perl itself)
37613      Branch: perl
37614            ! win32/config_H.bc win32/config_H.gc win32/config_H.vc
37615            ! win32/config_H.vc64
37616 ____________________________________________________________________________
37617 [ 25207] By: merijn                                on 2005/07/21  15:41:39
37618         Log: Subject: [PATCH] Re: [PATCH] support POSIX SA_SIGINFO
37619              From: Jarkko Hietaniemi <jhietaniemi@gmail.com>
37620              Date: Thu, 21 Jul 2005 18:33:22 +0300
37621              Message-ID: <42DFC042.1090201@gmail.com>
37622      Branch: perl
37623            ! ext/POSIX/POSIX.pod ext/POSIX/t/sigaction.t mg.c
37624 ____________________________________________________________________________
37625 [ 25206] By: steveh                                on 2005/07/21  14:20:06
37626         Log: Rearrange win32/config_H.* to match config_h.SH
37627              
37628              No actual changes, just reordering the contents of the files so that
37629              diff works better.
37630      Branch: perl
37631            ! win32/config_H.bc win32/config_H.gc win32/config_H.vc
37632            ! win32/config_H.vc64
37633 ____________________________________________________________________________
37634 [ 25205] By: rgs                                   on 2005/07/21  12:39:43
37635         Log: Subject: [PATCH perl@24148] Compress::Zlib 1.35
37636              From: "Paul Marquess" <paul.marquess@ntlworld.com>
37637              Date: Thu, 21 Jul 2005 10:06:06 +0100
37638              Message-Id: <20050721090634.CA4E61F0003@mx1.mandriva.com>
37639      Branch: perl
37640            + ext/Compress/Zlib/zlib-src-1.2.3/adler32.c
37641            + ext/Compress/Zlib/zlib-src-1.2.3/compress.c
37642            + ext/Compress/Zlib/zlib-src-1.2.3/crc32.c
37643            + ext/Compress/Zlib/zlib-src-1.2.3/crc32.h
37644            + ext/Compress/Zlib/zlib-src-1.2.3/deflate.c
37645            + ext/Compress/Zlib/zlib-src-1.2.3/deflate.h
37646            + ext/Compress/Zlib/zlib-src-1.2.3/gzio.c
37647            + ext/Compress/Zlib/zlib-src-1.2.3/infback.c
37648            + ext/Compress/Zlib/zlib-src-1.2.3/inffast.c
37649            + ext/Compress/Zlib/zlib-src-1.2.3/inffast.h
37650            + ext/Compress/Zlib/zlib-src-1.2.3/inffixed.h
37651            + ext/Compress/Zlib/zlib-src-1.2.3/inflate.c
37652            + ext/Compress/Zlib/zlib-src-1.2.3/inflate.h
37653            + ext/Compress/Zlib/zlib-src-1.2.3/inftrees.c
37654            + ext/Compress/Zlib/zlib-src-1.2.3/inftrees.h
37655            + ext/Compress/Zlib/zlib-src-1.2.3/trees.c
37656            + ext/Compress/Zlib/zlib-src-1.2.3/trees.h
37657            + ext/Compress/Zlib/zlib-src-1.2.3/uncompr.c
37658            + ext/Compress/Zlib/zlib-src-1.2.3/zconf.h
37659            + ext/Compress/Zlib/zlib-src-1.2.3/zlib.h
37660            + ext/Compress/Zlib/zlib-src-1.2.3/zutil.c
37661            + ext/Compress/Zlib/zlib-src-1.2.3/zutil.h
37662            - ext/Compress/Zlib/zlib-src-1.2.2/adler32.c
37663            - ext/Compress/Zlib/zlib-src-1.2.2/compress.c
37664            - ext/Compress/Zlib/zlib-src-1.2.2/crc32.c
37665            - ext/Compress/Zlib/zlib-src-1.2.2/crc32.h
37666            - ext/Compress/Zlib/zlib-src-1.2.2/deflate.c
37667            - ext/Compress/Zlib/zlib-src-1.2.2/deflate.h
37668            - ext/Compress/Zlib/zlib-src-1.2.2/gzio.c
37669            - ext/Compress/Zlib/zlib-src-1.2.2/infback.c
37670            - ext/Compress/Zlib/zlib-src-1.2.2/inffast.c
37671            - ext/Compress/Zlib/zlib-src-1.2.2/inffast.h
37672            - ext/Compress/Zlib/zlib-src-1.2.2/inffixed.h
37673            - ext/Compress/Zlib/zlib-src-1.2.2/inflate.c
37674            - ext/Compress/Zlib/zlib-src-1.2.2/inflate.h
37675            - ext/Compress/Zlib/zlib-src-1.2.2/inftrees.c
37676            - ext/Compress/Zlib/zlib-src-1.2.2/inftrees.h
37677            - ext/Compress/Zlib/zlib-src-1.2.2/trees.c
37678            - ext/Compress/Zlib/zlib-src-1.2.2/trees.h
37679            - ext/Compress/Zlib/zlib-src-1.2.2/uncompr.c
37680            - ext/Compress/Zlib/zlib-src-1.2.2/zconf.h
37681            - ext/Compress/Zlib/zlib-src-1.2.2/zlib.h
37682            - ext/Compress/Zlib/zlib-src-1.2.2/zutil.c
37683            - ext/Compress/Zlib/zlib-src-1.2.2/zutil.h
37684            ! MANIFEST ext/Compress/Zlib/Changes ext/Compress/Zlib/README
37685            ! ext/Compress/Zlib/Zlib.pm ext/Compress/Zlib/Zlib.xs
37686            ! ext/Compress/Zlib/config.in ext/Compress/Zlib/t/05gzsetp.t
37687 ____________________________________________________________________________
37688 [ 25204] By: rgs                                   on 2005/07/20  16:53:16
37689         Log: Remove :base_io from the set of default "safe" opcodes.
37690              This fixes bug [perl #36213] "Possible flaw in Safe.pm/Opcode.pm
37691              that allows access to any file" but introduces a backward
37692              compatibility issue.
37693      Branch: perl
37694            ! ext/Opcode/Opcode.pm ext/Safe/t/safe2.t
37695 ____________________________________________________________________________
37696 [ 25203] By: steveh                                on 2005/07/20  13:59:18
37697         Log: Fix definition of Perl_sighandler following change 25200
37698      Branch: perl
37699            ! mg.c
37700 ____________________________________________________________________________
37701 [ 25202] By: rgs                                   on 2005/07/20  13:19:10
37702         Log: Subject: [PATCH] Convert t/op/vec.t to test.pl
37703              From: Steve Peters <steve@fisharerojo.org>
37704              Date: Wed, 20 Jul 2005 08:06:38 -0500
37705              Message-ID: <20050720130638.GA6123@mccoy.peters.homeunix.org>
37706      Branch: perl
37707            ! t/op/vec.t
37708 ____________________________________________________________________________
37709 [ 25201] By: steveh                                on 2005/07/20  13:08:54
37710         Log: Silence Win32 compiler warning (signed/unsigned mismatch)
37711      Branch: perl
37712            ! pad.c
37713 ____________________________________________________________________________
37714 [ 25200] By: rgs                                   on 2005/07/20  12:28:16
37715         Log: Subject: [PATCH] support POSIX SA_SIGINFO
37716              From: Jarkko Hietaniemi <jhietaniemi@gmail.com>
37717              Date: Wed, 20 Jul 2005 14:40:54 +0300
37718              Message-ID: <42DE3846.6050606@gmail.com>
37719      Branch: perl
37720            ! embed.fnc embed.h ext/POSIX/POSIX.pod ext/POSIX/t/sigaction.t
37721            ! global.sym iperlsys.h mg.c perl.c perl.h pp_sys.c proto.h
37722            ! util.c
37723 ____________________________________________________________________________
37724 [ 25199] By: steveh                                on 2005/07/20  12:11:56
37725         Log: Silence warnings about NSIG redefinition on Win32
37726              
37727              (Change 25191 doesn't work out unless dosish.h includes <signal.h>
37728              too, which it currently only does for DJGPP)
37729      Branch: perl
37730            ! dosish.h
37731 ____________________________________________________________________________
37732 [ 25198] By: rgs                                   on 2005/07/20  11:18:59
37733         Log: Remove obsolete error messages
37734      Branch: perl
37735            ! pod/perldiag.pod
37736 ____________________________________________________________________________
37737 [ 25197] By: rgs                                   on 2005/07/20  10:59:44
37738         Log: croak() accepts Nullch as a parameter.
37739              (spotted by Stas Bekman)
37740      Branch: perl
37741            ! embed.fnc proto.h
37742 ____________________________________________________________________________
37743 [ 25196] By: steveh                                on 2005/07/20  10:36:20
37744         Log: Fix Newz() backwards-compatibility macro
37745      Branch: perl
37746            ! handy.h
37747 ____________________________________________________________________________
37748 [ 25195] By: rgs                                   on 2005/07/20  10:31:04
37749         Log: Remove :unique attribute from Config.pm,
37750              until we find a better implementation of it (or
37751              remove it). See [perl #36375].
37752      Branch: perl
37753            ! configpm
37754 ____________________________________________________________________________
37755 [ 25194] By: rgs                                   on 2005/07/20  09:08:56
37756         Log: Subject: [PATCH] lvalue-subs returning elements of tied hashes/arrays
37757              From: Tassilo von Parseval <tassilo.von.parseval@rwth-aachen.de>
37758              Date: Wed, 20 Jul 2005 10:43:11 +0200
37759              Message-id: <20050720084311.GA20332@ethan>
37760      Branch: perl
37761            ! pp_hot.c t/op/sub_lval.t
37762 ____________________________________________________________________________
37763 [ 25193] By: steveh                                on 2005/07/20  09:00:29
37764         Log: Exit test script (if we're going to) *before* declaring a plan
37765      Branch: perl
37766            ! ext/POSIX/t/sigaction.t
37767 ____________________________________________________________________________
37768 [ 25192] By: rgs                                   on 2005/07/20  08:50:18
37769         Log: Subject: [PATCH] RE: rebuilding lib/Config*
37770              From: Robin Barker <Robin.Barker@npl.co.uk>
37771              Date: Jul 14, 2005 3:27 PM
37772              Message-ID: <533D273D4014D411AB1D00062938C4D90849C733@hotel.npl.co.uk>
37773      Branch: perl
37774            ! Makefile.SH
37775 ____________________________________________________________________________
37776 [ 25191] By: rgs                                   on 2005/07/20  06:47:49
37777         Log: Subject: [PATCH] move NSIG logic
37778              From: Jarkko Hietaniemi <jhietaniemi@gmail.com>
37779              Date: Wed, 20 Jul 2005 09:57:44 +0300
37780              Message-ID: <42DDF5E8.1060100@gmail.com>
37781      Branch: perl
37782            ! handy.h perl.h
37783 ____________________________________________________________________________
37784 [ 25190] By: nicholas                              on 2005/07/19  22:15:43
37785         Log: C<use Foo;> inside Foo.pm considered a "bad thing"
37786              (Certainly where there is AUTOLOADing and XS)
37787              Hopefully *this* fixes the POSIX breakage.
37788      Branch: perl
37789            ! ext/POSIX/POSIX.pm
37790 ____________________________________________________________________________
37791 [ 25189] By: nicholas                              on 2005/07/19  21:16:20
37792         Log: C<use Foo;> inside Foo.pm considered a "bad thing"
37793              (Certainly where there is AUTOLOADing and XS)
37794              Hopefully this fixes the POSIX breakage.
37795      Branch: perl
37796            ! ext/POSIX/POSIX.xs
37797 ____________________________________________________________________________
37798 [ 25188] By: nicholas                              on 2005/07/19  21:08:17
37799         Log: XS constants fail when their value is called for, not at import.
37800              This might be construed as a bug. Fixing is probably a greater evil.
37801      Branch: perl
37802            ! ext/POSIX/t/sigaction.t
37803 ____________________________________________________________________________
37804 [ 25187] By: rgs                                   on 2005/07/19  14:12:38
37805         Log: Extend the the "our variable redeclared" warning to the case:
37806              our $x; our $x;
37807              and add more tests
37808      Branch: perl
37809            ! pad.c t/lib/strict/vars t/lib/warnings/pad
37810 ____________________________________________________________________________
37811 [ 25186] By: steveh                                on 2005/07/19  13:25:42
37812         Log: Fix test following change #25181
37813      Branch: perl
37814            ! lib/Pod/t/htmlview.t
37815 ____________________________________________________________________________
37816 [ 25185] By: merijn                                on 2005/07/19  11:06:22
37817         Log: Subject: [PATCH] allow POSIX SIGRTMIN...SIGRTMAX signals (and plug a core dump)
37818              From: Jarkko Hietaniemi <jhietaniemi@gmail.com>
37819              Date: Tue, 19 Jul 2005 12:06:00 +0300
37820              Message-ID: <42DCC278.2010009@gmail.com>
37821      Branch: perl
37822            ! Configure ext/POSIX/Makefile.PL ext/POSIX/POSIX.pm
37823            ! ext/POSIX/POSIX.pod ext/POSIX/POSIX.xs ext/POSIX/t/sigaction.t
37824            ! handy.h
37825 ____________________________________________________________________________
37826 [ 25182] By: rgs                                   on 2005/07/19  10:09:57
37827         Log: Fix strict test to go with the precedent warning change
37828      Branch: perl
37829            ! t/lib/strict/vars
37830 ____________________________________________________________________________
37831 [ 25181] By: steveh                                on 2005/07/19  10:07:46
37832         Log: Subject: [perl #36526] Incorrect (X)HTML generated by Pod::Html 
37833              From: Earl Hood (via RT) <perlbug-followup@perl.org>
37834              Date: Tue, 12 Jul 2005 23:55:28 -0700
37835              Message-ID: <rt-3.0.11-36526-117155.10.6496168983897@perl.org>
37836              
37837              (with old code deleted rather than commented out)
37838      Branch: perl
37839            ! lib/Pod/Html.pm
37840 ____________________________________________________________________________
37841 [ 25180] By: rgs                                   on 2005/07/19  09:56:59
37842         Log: Silence new (expected) warnings
37843      Branch: perl
37844            ! t/op/mydef.t
37845 ____________________________________________________________________________
37846 [ 25179] By: rgs                                   on 2005/07/19  09:45:24
37847         Log: Overhaul the semantics of the warning
37848              ""%s" variable %s masks earlier declaration",
37849              based on a patch by Rick Delaney. Now we have :
37850              my $x;   my $x; # warns
37851              my $x;  our $x; # warns
37852              our $x;  my $x; # warns
37853              our $x; our $x; # silent
37854      Branch: perl
37855            ! pad.c t/lib/warnings/pad
37856 ____________________________________________________________________________
37857 [ 25178] By: merijn                                on 2005/07/19  05:42:52
37858         Log: Subject: [PATCH] Final (hopefully) fix for fchdir
37859              From: Steve Peters <steve@fisharerojo.org>
37860              Date: Mon, 18 Jul 2005 22:59:19 -0500
37861              Message-ID: <20050719035919.GA32670@mccoy.peters.homeunix.org>
37862      Branch: perl
37863            ! pp_sys.c
37864 ____________________________________________________________________________
37865 [ 25177] By: davem                                 on 2005/07/19  01:16:09
37866         Log: Subject:  Re: [PATCH] Faster **
37867              From:      "Piotr Fusik" <pfusik@op.pl>
37868              Date:      Fri, 24 Jun 2005 12:47:40 +0200
37869              Message-Id:  <00b201c578af$7ad02b40$17d24dd5@piec>
37870      Branch: perl
37871            ! pp.c
37872 ____________________________________________________________________________
37873 [ 25176] By: davem                                 on 2005/07/19  01:05:18
37874         Log: the "local @foo with $#foo" tests are no longer TODO
37875      Branch: perl
37876            ! t/op/array.t
37877 ____________________________________________________________________________
37878 [ 25174] By: steveh                                on 2005/07/18  16:53:21
37879         Log: Subject: Re: [PATCH] RE: blead: no longer supports %vd format
37880              From: Rafael Garcia-Suarez <rgarciasuarez@mandriva.com>
37881              Date: Mon, 18 Jul 2005 18:35:09 +0200
37882              Message-ID: <20050718183509.0381169c@grubert.mandrakesoft.com>
37883      Branch: perl
37884            ! perl.h
37885 ____________________________________________________________________________
37886 [ 25173] By: merijn                                on 2005/07/18  16:37:11
37887         Log: Subject: Re: AIX 5.2 localtime bug attack
37888              From: Campo Weijerman <rfc822@nl.ibm.com>
37889              Date: Mon, 18 Jul 2005 17:34:55 +0200
37890              Message-ID: <20050718153455.GA29381@python>
37891              
37892              mday++ is also wday++ and yday++
37893      Branch: perl
37894            ! pp_sys.c
37895 ____________________________________________________________________________
37896 [ 25172] By: rgs                                   on 2005/07/18  15:23:38
37897         Log: Subject: [PATCH] The continuing plod through embed.fnc
37898              From: Andy Lester <andy@petdance.com>
37899              Date: Mon, 18 Jul 2005 10:37:38 -0500
37900              Message-ID: <20050718153738.GB20193@petdance.com>
37901      Branch: perl
37902            ! embed.fnc op.c pad.c pod/perlapi.pod pp_sys.c proto.h
37903            ! regcomp.c utf8.c
37904 ____________________________________________________________________________
37905 [ 25171] By: rgs                                   on 2005/07/18  12:37:02
37906         Log: Subject: [PATCH] RE: blead: no longer supports %vd format
37907              From: Robin Barker <Robin.Barker@npl.co.uk>
37908              Date: Jul 14, 2005 2:31 PM
37909              Message-ID: <533D273D4014D411AB1D00062938C4D90849C730@hotel.npl.co.uk>
37910      Branch: perl
37911            ! perl.h sv.c t/op/sprintf.t
37912 ____________________________________________________________________________
37913 [ 25170] By: merijn                                on 2005/07/18  11:02:01
37914         Log: tests are expected to fail if dirfd () does not exist
37915              make the tests to expect failures in that case
37916      Branch: perl
37917            ! t/op/chdir.t
37918 ____________________________________________________________________________
37919 [ 25169] By: merijn                                on 2005/07/18  10:27:06
37920         Log: 1. Typo detected by Schwern (#25151)
37921              2. Added proza about patches (#25152)
37922              3. dirfd got the wrong define based on previous tests (#25168)
37923      Branch: perl
37924            ! Configure
37925 ____________________________________________________________________________
37926 [ 25167] By: steveh                                on 2005/07/18  09:54:58
37927         Log: Silence compiler warning following change 25157
37928              
37929              (DIE returns Perl_die's return value which is an OP*, not the I32
37930              that Perl_apply is expected to return)
37931      Branch: perl
37932            ! doio.c
37933 ____________________________________________________________________________
37934 [ 25166] By: rgs                                   on 2005/07/18  09:17:45
37935         Log: Subject: Re: [perl #27028] /$/ not honouring /m in some cases
37936              From: Rick Delaney <rick@bort.ca>
37937              Date: Jul 14, 2005 4:10 PM
37938              Message-ID: <20050714141059.GF19090@localhost.localdomain>
37939      Branch: perl
37940            + t/op/regexp_qr_embed.t
37941            ! MANIFEST t/op/regexp.t
37942 ____________________________________________________________________________
37943 [ 25165] By: rgs                                   on 2005/07/18  08:52:25
37944         Log: Subject: [PATCH] perlop: why \c\ cannot be placed just before the terminating delimiter
37945              From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
37946              Date: Sun, 17 Jul 2005 11:38:05 +0900
37947              Message-Id: <20050717112557.5921.BQW10602@nifty.com>
37948      Branch: perl
37949            ! pod/perlop.pod
37950 ____________________________________________________________________________
37951 [ 25164] By: steveh                                on 2005/07/18  08:38:27
37952         Log: Subject: Re: Why does our() cross packages? (PATCH)
37953              From: Michael G Schwern <schwern@pobox.com>
37954              Date: Fri, 15 Jul 2005 14:35:18 -0700
37955              Message-ID: <20050715213518.GH6897@windhund.schwern.org>
37956              
37957              (with minor tweaks suggested in subsequent posts)
37958      Branch: perl
37959            ! pod/perlfunc.pod
37960 ____________________________________________________________________________
37961 [ 25163] By: davem                                 on 2005/07/18  00:16:31
37962         Log: perl -Dstv -e'... for min..max' displayed wrong stack elements
37963      Branch: perl
37964            ! pp_ctl.c
37965 ____________________________________________________________________________
37966 [ 25162] By: davem                                 on 2005/07/17  22:07:14
37967         Log: delete a non-fucntioning chown in stat.t: it didn't have gid arg.
37968              Spotted by Gisle Aas.
37969      Branch: perl
37970            ! t/op/stat.t
37971 ____________________________________________________________________________
37972 [ 25161] By: davem                                 on 2005/07/17  20:54:15
37973         Log: document what can be assigned to a shared scalar
37974      Branch: perl
37975            ! ext/threads/shared/shared.pm
37976 ____________________________________________________________________________
37977 [ 25160] By: davem                                 on 2005/07/17  20:12:54
37978         Log: $SIG{__WARN__} = sub { goto &foo } could recurse infinitely
37979      Branch: perl
37980            ! t/op/goto.t util.c
37981 ____________________________________________________________________________
37982 [ 25159] By: davem                                 on 2005/07/17  19:02:10
37983         Log: change #25129 was overzealous in delaying the call to ckWARN
37984      Branch: perl
37985            ! doio.c pp_hot.c toke.c
37986 ____________________________________________________________________________
37987 [ 25158] By: merijn                                on 2005/07/16  13:20:09
37988         Log: Subject: Re: [perl #36569] chop fails on decoded string with trailing nul 
37989              From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
37990              Date: Sat, 16 Jul 2005 22:05:13 +0900
37991              Message-Id: <20050716220041.2BDD.BQW10602@nifty.com>
37992      Branch: perl
37993            ! doop.c t/op/chop.t
37994 ____________________________________________________________________________
37995 [ 25157] By: merijn                                on 2005/07/16  08:07:44
37996         Log: Subject: Re: fchmod, fchown, fchdir
37997              From: Gisle Aas <gisle@ActiveState.com>
37998              Date: 15 Jul 2005 02:32:50 -0700
37999              Message-ID: <lrwtnse7nh.fsf@caliper.activestate.com>
38000              
38001              + Schwern's ok -> like changes
38002      Branch: perl
38003            ! doio.c pod/perlfunc.pod pod/perltodo.pod pp_sys.c t/io/fs.t
38004            ! t/op/chdir.t
38005 ____________________________________________________________________________
38006 [ 25156] By: steveh                                on 2005/07/15  16:30:05
38007         Log: Subject: [PATCH] more embed cleanup
38008              From: Andy Lester <andy@petdance.com>
38009              Date: Fri, 15 Jul 2005 10:51:15 -0500
38010              Message-ID: <20050715155115.GC29983@petdance.com>
38011              
38012              (and run regen.pl)
38013      Branch: perl
38014            ! dump.c embed.fnc embed.h hv.c mg.c op.c perl.c pp_ctl.c
38015            ! pp_hot.c pp_pack.c proto.h regcomp.c sv.c utf8.c
38016 ____________________________________________________________________________
38017 [ 25155] By: steveh                                on 2005/07/15  15:50:38
38018         Log: Subject: [perl #36514] Add curl support to CPAN.pm 
38019              From: "Michael G Schwern via RT" <perlbug-followup@perl.org>
38020              Date: Fri, 15 Jul 2005 02:11:29 -0700
38021              Message-ID: <rt-3.0.11-36514-117446.9.35668319684652@perl.org>
38022              
38023              (and bump $CPAN::FirstTime::VERSION)
38024      Branch: perl
38025            ! lib/CPAN.pm lib/CPAN/FirstTime.pm
38026 ____________________________________________________________________________
38027 [ 25153] By: steveh                                on 2005/07/15  15:35:55
38028         Log: Subject: Re: [PATCH blead] Re: [perl #3269] no warnings "foo" without "use warnings" turns off all warnings.
38029              From: Michael G Schwern <schwern@pobox.com>
38030              Date: Wed, 13 Jul 2005 15:57:39 -0700
38031              Message-ID: <20050713225739.GN24499@windhund.schwern.org>
38032              
38033              Subject: Re: [PATCH blead] Re: [perl #3269] no warnings "foo" without "use warnings" turns off all warnings.
38034              From: Rick Delaney <rick@bort.ca>
38035              Date: Wed, 13 Jul 2005 20:24:56 -0400
38036              Message-ID: <20050714002456.GD19090@localhost.localdomain>
38037      Branch: perl
38038            ! ext/B/B/Deparse.pm t/op/inc.t
38039 ____________________________________________________________________________
38040 [ 25150] By: steveh                                on 2005/07/15  10:35:55
38041         Log: Fix static extensions when building with nmake on Win32
38042              
38043              They were broken because change 24806 forgot to add -DWITH_STATIC
38044              to the recipe for compiling perllib.c which meant that perllibst.h
38045              was not included and hence although they built OK, the static
38046              extensions could not actually be used!
38047              
38048              In fact, since perllibst.h is always created (it is more or less
38049              empty when static extensions are not being used), there is no need
38050              for -DWITH_STATIC at all. So rather than adding it to Makefile,
38051              just drop it from makefile.mk and perllib.c.
38052              
38053              Also add the missing cleanup of perllibst.h to Makefile.
38054      Branch: perl
38055            ! win32/Makefile win32/makefile.mk win32/perllib.c
38056 ____________________________________________________________________________
38057 [ 25149] By: steveh                                on 2005/07/15  09:04:57
38058         Log: Subject: [perl #7840] Hash Behaviour differs v5.6.0 to v5.6.1 
38059              From: "Michael G Schwern via RT" <perlbug-followup@perl.org>
38060              Date: Thu, 14 Jul 2005 16:57:45 -0700
38061              Message-ID: <rt-3.0.11-7840-117401.4.81505529800216@perl.org>
38062              
38063              (with minor tweaks)
38064      Branch: perl
38065            ! pod/perlop.pod
38066 ____________________________________________________________________________
38067 [ 25148] By: steveh                                on 2005/07/15  07:48:31
38068         Log: Subject: [perl #36538] perlfunc/our contradicts itself 
38069              From: "Michael G Schwern via RT" <perlbug-followup@perl.org>
38070              Date: Thu, 14 Jul 2005 19:10:51 -0700
38071              Message-ID: <rt-3.0.11-36538-117411.7.57026072725992@perl.org>
38072      Branch: perl
38073            ! pod/perlfunc.pod
38074 ____________________________________________________________________________
38075 [ 25147] By: steveh                                on 2005/07/15  07:44:32
38076         Log: Subject: [perl #24691] leading spaces on cpan configuration causes failure 
38077              From: "Michael G Schwern via RT" <perlbug-followup@perl.org>
38078              Date: Tue, 12 Jul 2005 00:00:17 -0700
38079              Message-ID: <rt-3.0.11-24691-116945.3.88254644317925@perl.org>
38080              
38081              (with spaces trimmed from username too)
38082      Branch: perl
38083            ! lib/CPAN/FirstTime.pm
38084 ____________________________________________________________________________
38085 [ 25146] By: merijn                                on 2005/07/15  07:33:01
38086         Log: Subject: [PATCH] Re: [PATCH] was Re: perldoc segfaulting in XS_UNIVERSAL_VERSION
38087              From: Michael G Schwern <schwern@pobox.com>
38088              Date: Fri, 15 Jul 2005 00:49:12 -0700
38089              Message-ID: <20050715074911.GA16512@windhund.schwern.org>
38090      Branch: perl
38091            ! t/op/universal.t
38092 ____________________________________________________________________________
38093 [ 25145] By: merijn                                on 2005/07/15  06:49:16
38094         Log: Subject: [PATCH] Missing tie() call in NDBM_File SYNOPSIS
38095              From: Matt Sergeant <matt@sergeant.org>
38096              Date: Thu, 14 Jul 2005 16:53:03 -0400
38097              Message-Id: <28baf339c3b78cc40017066b9dc7cffb@sergeant.org>
38098      Branch: perl
38099            ! ext/NDBM_File/NDBM_File.pm
38100 ____________________________________________________________________________
38101 [ 25144] By: merijn                                on 2005/07/15  06:33:21
38102         Log: Subject: Typo in t/op/stat.t
38103              From: Gisle Aas <gisle@ActiveState.com>
38104              Date: 14 Jul 2005 23:20:18 -0700
38105              Message-ID: <lr64vcfv4t.fsf@caliper.activestate.com>
38106      Branch: perl
38107            ! t/op/stat.t
38108 ____________________________________________________________________________
38109 [ 25143] By: steveh                                on 2005/07/14  16:08:00
38110         Log: Subject: Re: [perl #36507] File::Copy::copy($foo, $foo) dies
38111              From: Michael G Schwern <schwern@pobox.com>
38112              Date: Tue, 12 Jul 2005 15:51:18 -0700
38113              Message-ID: <20050712225118.GA944@windhund.schwern.org>
38114              
38115              (and update SKIP counts)
38116      Branch: perl
38117            ! lib/File/Copy.pm lib/File/Copy.t
38118 ____________________________________________________________________________
38119 [ 25142] By: steveh                                on 2005/07/14  08:12:11
38120         Log: Subject: [perl #5634] CPAN.pm v1.59 chdirs before looking for perl 
38121              From: "Michael G Schwern via RT" <perlbug-followup@perl.org>
38122              Date: Mon, 11 Jul 2005 22:41:06 -0700
38123              Message-ID: <rt-3.0.11-5634-116921.0.207462087357797@perl.org>
38124      Branch: perl
38125            ! lib/CPAN.pm
38126 ____________________________________________________________________________
38127 [ 25141] By: nicholas                              on 2005/07/13  19:43:40
38128         Log: Subject: [PATCH] was Re: perldoc segfaulting in XS_UNIVERSAL_VERSION
38129              From: John Peacock <jpeacock@rowman.com>
38130              Message-ID: <42D55C46.5030905@rowman.com>
38131              Date: Wed, 13 Jul 2005 14:24:06 -0400
38132      Branch: perl
38133            ! universal.c
38134 ____________________________________________________________________________
38135 [ 25140] By: merijn                                on 2005/07/13  17:22:07
38136         Log: Subject: [perl #9565] [PATCH] /op/groups.t bug 
38137              From: "Steve Peters via RT" <perlbug-followup@perl.org>
38138              Date: Wed, 13 Jul 2005 06:51:45 -0700
38139              Message-ID: <rt-3.0.11-9565-117185.14.6331240065229@perl.org>
38140      Branch: perl
38141            ! t/op/groups.t
38142 ____________________________________________________________________________
38143 [ 25139] By: merijn                                on 2005/07/13  16:52:48
38144         Log: Subject: Re: Smoke [5.9.3] 25093 FAIL(F) openbsd 3.7 (macppc/1 cpu)
38145              From: Steve Peters <steve@fisharerojo.org>
38146              Date: Fri, 8 Jul 2005 16:42:56 -0500
38147              Message-ID: <20050708214256.GA14164@mccoy.peters.homeunix.org>
38148      Branch: perl
38149            ! t/io/dup.t t/io/open.t
38150 ____________________________________________________________________________
38151 [ 25138] By: merijn                                on 2005/07/13  16:37:48
38152         Log: Subject: [PATCH] More embed.fnc plowing
38153              From: Andy Lester <andy@petdance.com>
38154              Date: Wed, 13 Jul 2005 10:49:19 -0500
38155              Message-ID: <20050713154919.GA24586@petdance.com>
38156      Branch: perl
38157            ! embed.fnc gv.c hv.c op.c pad.c perlio.c pp_ctl.c pp_hot.c
38158            ! proto.h toke.c
38159 ____________________________________________________________________________
38160 [ 25137] By: merijn                                on 2005/07/13  16:27:43
38161         Log: Subject: [PATCH] Error in earlier patch in sv.c
38162              From: Robin Barker <Robin.Barker@npl.co.uk>
38163              Date: Wed, 13 Jul 2005 17:29:48 +0100
38164              Message-ID: <533D273D4014D411AB1D00062938C4D90849C72B@hotel.npl.co.uk>
38165      Branch: perl
38166            ! sv.c t/op/sprintf.t
38167 ____________________________________________________________________________
38168 [ 25136] By: steveh                                on 2005/07/13  13:39:44
38169         Log: Make -V "Compile-time options" list everything used in makedef.pl
38170      Branch: perl
38171            ! perl.c
38172 ____________________________________________________________________________
38173 [ 25135] By: steveh                                on 2005/07/13  09:48:10
38174         Log: Subject: Re: [perl #25157] [PATCH] Text-Balanced extract_quotelike fails on certain delims in HERE docs
38175              From: David Manura <dm.list@math2.org>
38176              Date: Wed, 21 Jan 2004 20:59:27 -0500
38177              Message-ID: <400F2E7F.9090601@math2.org>
38178              
38179              Fixes perl #25151, 25154, 25156, 25157, 25158 using jumbo patch
38180              included in perl #25157.
38181      Branch: perl
38182            ! lib/Text/Balanced.pm lib/Text/Balanced/t/extmul.t
38183            ! lib/Text/Balanced/t/extqlk.t
38184 ____________________________________________________________________________
38185 [ 25134] By: steveh                                on 2005/07/13  09:23:37
38186         Log: Subject: [PATCH] #2 try at Text::Balanced patch and maintainership
38187              From: Tels <nospam-abuse@bloodgate.com>
38188              Date: Sat, 9 Jul 2005 23:10:29 +0200
38189              Message-Id: <200507092310.30592@bloodgate.com>
38190              
38191              (with minor tweaks)
38192      Branch: perl
38193            ! lib/Text/Balanced.pm
38194 ____________________________________________________________________________
38195 [ 25133] By: steveh                                on 2005/07/13  08:34:53
38196         Log: Subject: [perl #28385] minor bug in cpan -- the i command does not find author 
38197              From: "Michael G Schwern via RT" <perlbug-followup@perl.org>
38198              Date: Tue, 12 Jul 2005 00:16:49 -0700
38199              Message-ID: <rt-3.0.11-28385-116951.3.97645870397305@perl.org>
38200              
38201              (and remove a couple of unused variables)
38202      Branch: perl
38203            ! lib/CPAN.pm
38204 ____________________________________________________________________________
38205 [ 25132] By: steveh                                on 2005/07/13  07:52:21
38206         Log: Subject: [perl #24275] CPAN shell - online help not clear 
38207              From: "Michael G Schwern via RT" <perlbug-followup@perl.org>
38208              Date: Mon, 11 Jul 2005 23:32:12 -0700
38209              Message-ID: <rt-3.0.11-24275-116939.19.7381888978779@perl.org>
38210      Branch: perl
38211            ! lib/CPAN.pm
38212 ____________________________________________________________________________
38213 [ 25131] By: merijn                                on 2005/07/13  06:37:41
38214         Log: Subject: [PATCH] Re: Documentation error in IO::Socket
38215              From: Michael G Schwern <schwern@pobox.com>
38216              Date: Tue, 12 Jul 2005 13:18:34 -0700
38217              Message-ID: <20050712201834.GA29275@windhund.schwern.org>
38218      Branch: perl
38219            ! ext/IO/lib/IO/Socket.pm
38220 ____________________________________________________________________________
38221 [ 25130] By: merijn                                on 2005/07/13  06:27:48
38222         Log: Subject: [perl #6749] Perl debugger outputs ctrl-\ wrongly 
38223              From: "Michael G Schwern via RT" <perlbug-followup@perl.org>
38224              Date: Tue, 12 Jul 2005 15:36:54 -0700
38225              Message-ID: <rt-3.0.11-6749-117055.16.4354496694007@perl.org>
38226      Branch: perl
38227            ! lib/dumpvar.pl
38228 ____________________________________________________________________________
38229 [ 25129] By: davem                                 on 2005/07/13  00:21:13
38230         Log: make the expensive ckWARN() be called as late as possible
38231              reorganise
38232              if (ckWARN(FOO) && should_not_happen_condition)
38233              to
38234              if (should_not_happen_condition && ckWARN(FOO))
38235      Branch: perl
38236            ! doio.c gv.c op.c pad.c perlio.c pp.c pp_hot.c pp_pack.c
38237            ! pp_sys.c regcomp.c regexec.c sv.c toke.c
38238 ____________________________________________________________________________
38239 [ 25128] By: davem                                 on 2005/07/12  18:46:34
38240         Log: Subject: Make PERL_MEM_LOG more portable.
38241              From:  Jarkko Hietaniemi <jhietaniemi@gmail.com>
38242              Date:  Mon, 11 Jul 2005 15:29:46 +0300
38243              Message-Id:  <42D2663A.4050204@gmail.com>
38244      Branch: perl
38245            ! handy.h pod/perlhack.pod util.c
38246 ____________________________________________________________________________
38247 [ 25127] By: davem                                 on 2005/07/12  18:29:43
38248         Log: S_pad_findlex has side effects, so its return value may be ignored
38249      Branch: perl
38250            ! embed.fnc pad.c proto.h
38251 ____________________________________________________________________________
38252 [ 25126] By: davem                                 on 2005/07/12  18:15:48
38253         Log: get_?v have side effects, so their return values may be ignored
38254      Branch: perl
38255            ! embed.fnc proto.h
38256 ____________________________________________________________________________
38257 [ 25125] By: steveh                                on 2005/07/12  16:30:16
38258         Log: Subject: [perl #24119] CPAN.pm error in Win32: uses rename() not File::Copy::move 
38259              From: "Michael G Schwern via RT" <perlbug-followup@perl.org>
38260              Date: Mon, 11 Jul 2005 23:24:56 -0700
38261              Message-ID: <rt-3.0.11-24119-116937.12.0211560107236@perl.org>
38262      Branch: perl
38263            ! lib/CPAN.pm
38264 ____________________________________________________________________________
38265 [ 25124] By: steveh                                on 2005/07/12  16:18:22
38266         Log: Subject: [perl #17487] ncftp only handles http 
38267              From: "Michael G Schwern via RT" <perlbug-followup@perl.org>
38268              Date: Mon, 11 Jul 2005 23:19:06 -0700
38269              Message-ID: <rt-3.0.11-17487-116934.11.3382445877892@perl.org>
38270              
38271              (and bump $VERSION (1.76_01 is a CPAN release already))
38272      Branch: perl
38273            ! lib/CPAN.pm
38274 ____________________________________________________________________________
38275 [ 25123] By: steveh                                on 2005/07/12  13:19:51
38276         Log: Subject: Re: Scalar leaked in 'local $0' under ithreads + taint mode
38277              From: Steve Hay <steve.hay@uk.radan.com>
38278              Date: Mon, 11 Jul 2005 13:29:37 +0100
38279              Message-ID: <42D26631.1070500@uk.radan.com>
38280      Branch: perl
38281            ! sv.c
38282 ____________________________________________________________________________
38283 [ 25122] By: steveh                                on 2005/07/12  11:42:07
38284         Log: Subject: [perl #36502] File::Copy::mv fails to replicate behavior of Unix mv 
38285              From: "Michael G Schwern via RT" <perlbug-followup@perl.org>
38286              Date: Mon, 11 Jul 2005 19:16:10 -0700
38287              Message-ID: <rt-3.0.11-36502-116917.0.56038652013207@perl.org>
38288      Branch: perl
38289            ! lib/File/Copy.t
38290 ____________________________________________________________________________
38291 [ 25121] By: steveh                                on 2005/07/12  11:33:01
38292         Log: Subject: [PATCH] Cleanup File::Copy tests
38293              From: Michael G Schwern <schwern@pobox.com>
38294              Date: Mon, 11 Jul 2005 18:45:42 -0700
38295              Message-ID: <20050712014542.GB20855@windhund.schwern.org>
38296              
38297              (and fix the SKIP: {} blocks to say $how_many)
38298      Branch: perl
38299            ! lib/File/Copy.t
38300 ____________________________________________________________________________
38301 [ 25120] By: steveh                                on 2005/07/12  11:03:55
38302         Log: Subject: Re: [perl #36502] File::Copy::mv fails to replicate behavior of Unix mv
38303              From: Michael G Schwern <schwern@pobox.com>
38304              Date: Mon, 11 Jul 2005 17:35:14 -0700
38305              Message-ID: <20050712003514.GA20132@windhund.schwern.org>
38306      Branch: perl
38307            ! lib/File/Copy.pm
38308 ____________________________________________________________________________
38309 [ 25119] By: steveh                                on 2005/07/12  09:01:11
38310         Log: Missed a New() -> Newx().
38311              
38312              This one only had 3 args to start with! Presumably nobody uses
38313              YYERROR_VERBOSE.  (The yystpcpy() calls don't look right either,
38314              but someone else that is interested in YYERROR_VERBOSE will have
38315              to look into that.)
38316      Branch: perl
38317            ! perly.c
38318 ____________________________________________________________________________
38319 [ 25118] By: steveh                                on 2005/07/12  08:46:13
38320         Log: Hack out -DL documentation from perldebuguts.pod
38321              
38322              Now that the perl core uses Newx*() rather than New*() this chunk
38323              of old documentation is more obsolete than ever before.
38324      Branch: perl
38325            ! pod/perldebguts.pod
38326 ____________________________________________________________________________
38327 [ 25117] By: steveh                                on 2005/07/12  08:20:11
38328         Log: Fix worrying typo in handy.h :-s
38329      Branch: perl
38330            ! handy.h
38331 ____________________________________________________________________________
38332 [ 25116] By: steveh                                on 2005/07/12  08:17:47
38333         Log: Change New*() to Newx*() in various comments and documentation
38334      Branch: perl
38335            ! handy.h perl.c pod/perlclib.pod pod/perlguts.pod
38336            ! pod/perlhack.pod sv.c
38337 ____________________________________________________________________________
38338 [ 25115] By: steveh                                on 2005/07/12  07:48:51
38339         Log: Subject: [patch: handy.c]  update Newx API pod to mention PERL_MEM_LOG build opt
38340              From: Jim Cromie <jcromie@divsol.com>
38341              Date: Mon, 11 Jul 2005 19:18:02 -0600
38342              Message-ID: <42D31A4A.1020305@divsol.com>
38343              
38344              (with some minor tweaks)
38345      Branch: perl
38346            ! handy.h pod/perlapi.pod
38347 ____________________________________________________________________________
38348 [ 25114] By: merijn                                on 2005/07/12  06:26:39
38349         Log: Subject: [PATCH t/TEST] Understand "ok" with no number
38350              From: Michael G Schwern <schwern@pobox.com>
38351              Date: Mon, 11 Jul 2005 18:41:30 -0700
38352              Message-ID: <20050712014130.GA20855@windhund.schwern.org>
38353      Branch: perl
38354            ! t/TEST
38355 ____________________________________________________________________________
38356 [ 25113] By: steveh                                on 2005/07/11  15:54:46
38357         Log: Subject: [patch: sv.c] reuse new_body_inline in Perl_new_body
38358              From: Jim Cromie <jcromie@divsol.com>
38359              Date: Sun, 10 Jul 2005 15:59:30 -0600
38360              Message-ID: <42D19A42.8040409@divsol.com>
38361      Branch: perl
38362            ! sv.c
38363 ____________________________________________________________________________
38364 [ 25112] By: steveh                                on 2005/07/11  15:19:11
38365         Log: Subject: [PATCH] perlfunc.pod
38366              From: "Piotr Fusik" <pfusik@op.pl>
38367              Date:      Sat, 9 Jul 2005 16:21:05 +0200
38368              Message-ID: <01de01c58491$f3182f60$a6d24dd5@piec>
38369      Branch: perl
38370            ! pod/perlfunc.pod
38371 ____________________________________________________________________________
38372 [ 25111] By: steveh                                on 2005/07/11  14:41:27
38373         Log: Subject: [patch hv.h doc] HvNAME
38374              From: Stas Bekman <stas@stason.org>
38375              Date: Fri, 08 Jul 2005 13:52:13 +0300
38376              Message-ID: <42CE5ADD.3020003@stason.org>
38377              
38378              Subject: Re: [patch hv.h doc] HvNAME
38379              From: Nicholas Clark <nick@ccl4.org>
38380              Date: Sat, 9 Jul 2005 15:23:51 +0100
38381              Message-ID: <20050709142351.GT15833@plum.flirble.org>
38382      Branch: perl
38383            ! hv.h pod/perlapi.pod
38384 ____________________________________________________________________________
38385 [ 25110] By: davem                                 on 2005/07/10  23:04:26
38386         Log: no code before declarations!
38387      Branch: perl
38388            ! doio.c
38389 ____________________________________________________________________________
38390 [ 25109] By: davem                                 on 2005/07/10  20:02:07
38391         Log: From: Jarkko Hietaniemi <jhietaniemi@gmail.com>
38392              Date: Sun, 10 Jul 2005 21:50:27 +0300
38393              Subject: [PATCH] yet another way of debugging memory allocations
38394              Message-ID: <42D16DF3.4040806@gmail.com>
38395              
38396              tweak PERL_MEM_LOG
38397      Branch: perl
38398            ! handy.h pod/perlhack.pod util.c
38399 ____________________________________________________________________________
38400 [ 25108] By: davem                                 on 2005/07/10  19:57:31
38401         Log: run regen.pl
38402      Branch: perl
38403            ! embed.h proto.h
38404 ____________________________________________________________________________
38405 [ 25107] By: merijn                                on 2005/07/10  19:19:56
38406         Log: Subject: [PATCH] Making my way thru embed.fnc
38407              From: Andy Lester <andy@petdance.com>
38408              Date: Sun, 10 Jul 2005 14:36:35 -0500
38409              Message-ID: <20050710193635.GC8081@petdance.com>
38410      Branch: perl
38411            ! doio.c doop.c embed.fnc gv.c hv.c op.c perl.c pp_ctl.c
38412            ! pp_hot.c regexec.c toke.c util.c
38413 ____________________________________________________________________________
38414 [ 25106] By: davem                                 on 2005/07/10  13:53:49
38415         Log: Re: [perl #36207] UTF8/Latin 1/i regexp "Malformed character" warning
38416              From: demerphq <demerphq@gmail.com>
38417              Message-ID: <9b18b3110507080807f16d1eb@mail.gmail.com>
38418              Date: Fri, 8 Jul 2005 17:07:26 +0200
38419              
38420              Fix trie codepath of mixed utf8/latin1 pattern matches
38421      Branch: perl
38422            ! regexec.c t/op/pat.t
38423 ____________________________________________________________________________
38424 [ 25105] By: davem                                 on 2005/07/10  12:29:25
38425         Log: Message-ID: <42D0F25E.3040801@gmail.com>
38426              Date: Sun, 10 Jul 2005 13:03:10 +0300
38427              From: Jarkko Hietaniemi <jhietaniemi@gmail.com>
38428              Subject: [PATCH] yet another way of debugging memory allocations
38429              
38430              adds PERL_MEM_LOG and PERL_MEM_LOG_STDERR options
38431      Branch: perl
38432            ! handy.h util.c
38433 ____________________________________________________________________________
38434 [ 25104] By: davem                                 on 2005/07/10  11:39:50
38435         Log: silence some compiler warnings
38436      Branch: perl
38437            ! embed.fnc gv.h proto.h
38438 ____________________________________________________________________________
38439 [ 25103] By: davem                                 on 2005/07/10  11:15:32
38440         Log: extend MEM_WRAP_CHECK supress warning hack to MEM_WRAP_CHECK_*
38441      Branch: perl
38442            ! handy.h
38443 ____________________________________________________________________________
38444 [ 25102] By: nicholas                              on 2005/07/09  15:44:17
38445         Log: sv_dec is supposed to go *down*, m'kay.
38446      Branch: perl
38447            ! sv.c t/op/inc.t
38448 ____________________________________________________________________________
38449 [ 25101] By: steveh                                on 2005/07/08  16:35:10
38450         Log: Subject: Re: janitorial work ? [patch]
38451              From: Jim Cromie <jcromie@divsol.com>
38452              Date: Wed, 06 Jul 2005 14:19:53 -0600
38453              Message-ID: <42CC3CE9.5050606@divsol.com>
38454              
38455              (reverted all dual-lived modules since they must work with older
38456              perls too so must wait for a new Devel::PPPort)
38457      Branch: perl
38458            ! NetWare/nw5.c av.c bytecode.pl cygwin/cygwin.c djgpp/djgpp.c
38459            ! doio.c doop.c dump.c ext/B/B/C.pm ext/B/C/C.xs
38460            ! ext/ByteLoader/bytecode.h ext/ByteLoader/byterun.c
38461            ! ext/Devel/DProf/DProf.xs ext/DynaLoader/dl_aix.xs
38462            ! ext/DynaLoader/dl_next.xs ext/DynaLoader/dl_vms.xs
38463            ! ext/File/Glob/bsd_glob.c ext/ODBM_File/ODBM_File.xs
38464            ! ext/Opcode/Opcode.xs ext/POSIX/POSIX.xs ext/Socket/Socket.xs
38465            ! ext/XS/Typemap/Typemap.xs gv.c handy.h hv.c locale.c op.c op.h
38466            ! os2/OS2/REXX/REXX.xs os2/os2.c perl.c perlio.c pod/perlapi.pod
38467            ! pp.c pp_ctl.c pp_pack.c pp_sort.c pp_sys.c reentr.c reentr.pl
38468            ! regcomp.c regexec.c scope.c sv.c toke.c utf8.c util.c
38469            ! vmesa/vmesa.c vms/vms.c win32/perlhost.h win32/win32.c
38470            ! win32/win32sck.c wince/perlhost.h wince/wince.c
38471 ____________________________________________________________________________
38472 [ 25100] By: nicholas                              on 2005/07/08  15:57:37
38473         Log: We no longer default to creating a new SV for GvSV.
38474      Branch: perl
38475            ! perl.h
38476 ____________________________________________________________________________
38477 [ 25099] By: nicholas                              on 2005/07/08  15:57:16
38478         Log: DEFSV causes GvSVn() to be used in lvalue context.
38479              Not sure if instead we should recode DEFSV to avoid this, and leave
38480              GvSVn() as rvalue only, like its namesakes.
38481      Branch: perl
38482            ! gv.h
38483 ____________________________________________________________________________
38484 [ 25098] By: steveh                                on 2005/07/08  10:04:24
38485         Log: Subject: Re: [PATCH] Pod::Html - correctly link to =item's on the same page
38486              From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
38487              Date: Thu, 7 Jul 2005 15:05:51 -0700
38488              Message-ID: <20050707220551.GB2388@efn.org>
38489              
38490              (plus fix a couple of POD warnings)
38491      Branch: perl
38492            ! pod/perlglossary.pod
38493 ____________________________________________________________________________
38494 [ 25097] By: steveh                                on 2005/07/08  09:48:50
38495         Log: Subject: [PATCH] basename() and suffixes
38496              From: Michael G Schwern <schwern@pobox.com>
38497              Date: Thu, 7 Jul 2005 15:38:32 -0700
38498              Message-ID: <20050707223832.GA4782@windhund.schwern.org>
38499      Branch: perl
38500            ! lib/File/Basename.pm lib/File/Basename.t
38501 ____________________________________________________________________________
38502 [ 25096] By: steveh                                on 2005/07/08  08:43:07
38503         Log: Subject: Re: [perl #36477] File::Basename basename() bug
38504              From: Michael G Schwern <schwern@pobox.com>
38505              Date: Thu, 7 Jul 2005 14:16:01 -0700
38506              Message-ID: <20050707211601.GA3769@windhund.schwern.org>
38507      Branch: perl
38508            ! lib/File/Basename.pm lib/File/Basename.t
38509 ____________________________________________________________________________
38510 [ 25095] By: davem                                 on 2005/07/08  01:43:24
38511         Log: UTF8/Latin 1/i regexp "Malformed character" warning
38512              $utf8 =~ /latin/i didn't match. 
38513              Also added TODO for $latin =~ /utf8/i which also fails
38514      Branch: perl
38515            ! t/op/pat.t utf8.c
38516 ____________________________________________________________________________
38517 [ 25094] By: davem                                 on 2005/07/07  14:47:51
38518         Log: more taint fallout from change 24943
38519      Branch: perl
38520            ! mg.c scope.c t/op/taint.t
38521 ____________________________________________________________________________
38522 [ 25093] By: merijn                                on 2005/07/07  13:26:32
38523         Log: Subject: [PATCH] bug with charnames::viacode("0x1234") and optimize it
38524              From: Tels <nospam-abuse@bloodgate.com>
38525              Date: Wed, 6 Jul 2005 21:11:59 +0200
38526              Message-Id: <200507062112.12159@bloodgate.com>
38527      Branch: perl
38528            ! lib/charnames.pm
38529 ____________________________________________________________________________
38530 [ 25092] By: steveh                                on 2005/07/07  12:11:38
38531         Log: Subject: ReadParse in the CGI docs
38532              From: "Ton Hospel" <me-02@ton.iguana.be>
38533              Date: 9 Oct 2003 15:04:53 -0000
38534              To: perlbug@perl.org
38535              
38536              (plus blank lines so example code is in verbatim paragraphs,
38537              and bump $VERSION)
38538      Branch: perl
38539            ! lib/CGI.pm
38540 ____________________________________________________________________________
38541 [ 25091] By: steveh                                on 2005/07/07  11:21:41
38542         Log: Subject: [PATCH] Mention File::Spec in File::Basename
38543              From: Michael G Schwern <schwern@pobox.com>
38544              Date: Wed, 6 Jul 2005 13:06:20 -0700
38545              Message-ID: <20050706200620.GE15644@windhund.schwern.org>
38546              
38547              (plus bump $VERSION)
38548      Branch: perl
38549            ! lib/File/Basename.pm
38550 ____________________________________________________________________________
38551 [ 25090] By: steveh                                on 2005/07/07  11:06:17
38552         Log: Subject: [perl #22236] File::Basename behavior is misleading 
38553              From: "Michael G Schwern via RT" <perlbug-followup@perl.org>
38554              Date: 6 Jul 2005 19:45:40 -0000
38555              Message-ID: <rt-3.0.11-22236-116656.1.59163789180809@perl.org>
38556      Branch: perl
38557            ! lib/File/Basename.pm lib/File/Basename.t
38558 ____________________________________________________________________________
38559 [ 25089] By: steveh                                on 2005/07/07  09:22:48
38560         Log: Subject: [PATCH] Further lies in the File::Basename docs
38561              From: Michael G Schwern <schwern@pobox.com>
38562              Date: Wed, 6 Jul 2005 09:22:32 -0700
38563              Message-ID: <20050706162232.GA14495@windhund.schwern.org>
38564              
38565              (plus some minor POD changes and a bug fix)
38566      Branch: perl
38567            ! lib/File/Basename.pm lib/File/Basename.t
38568 ____________________________________________________________________________
38569 [ 25088] By: davem                                 on 2005/07/07  00:11:00
38570         Log: bytes pragma error in substitution operator
38571      Branch: perl
38572            ! pp_ctl.c t/op/subst.t
38573 ____________________________________________________________________________
38574 [ 25087] By: davem                                 on 2005/07/06  20:09:29
38575         Log: 'undef $@; die' gives uninint value warning
38576      Branch: perl
38577            ! pp_sys.c t/op/die.t
38578 ____________________________________________________________________________
38579 [ 25086] By: steveh                                on 2005/07/06  09:36:08
38580         Log: Subject: [PATCH] File::Basename doc overhaul
38581              From: Michael G Schwern <schwern@pobox.com>
38582              Date: Tue, 5 Jul 2005 20:11:27 -0700
38583              Message-ID: <20050706031127.GL9227@windhund.schwern.org>
38584              
38585              (with some minor changes)
38586      Branch: perl
38587            ! lib/File/Basename.pm
38588 ____________________________________________________________________________
38589 [ 25085] By: steveh                                on 2005/07/06  08:05:21
38590         Log: Subject: [PATCH @ 25084] simple authors removal
38591              From: Vadim Konovalov <vadim@vkonovalov.ru>
38592              Date: Wed, 06 Jul 2005 00:15:48 +0400
38593              Message-ID: <42CAEA74.1020108@vkonovalov.ru>
38594      Branch: perl
38595            ! AUTHORS
38596 ____________________________________________________________________________
38597 [ 25084] By: davem                                 on 2005/07/05  18:17:34
38598         Log: a long /etc/groups entry could cause memory exhaustion.
38599              Too small a buffer would cause ERANGE and a retry with double the
38600              buffer size. later at EOF, the apparent error got 'stuck' as
38601              ERANGE rather than ENOENT, so the buffer size doubled recursively 
38602      Branch: perl
38603            ! reentr.h reentr.pl
38604 ____________________________________________________________________________
38605 [ 25083] By: steveh                                on 2005/07/05  16:55:29
38606         Log: Subject: [PATCH] Pod::Html - correctly link to =item's on the same page
38607              From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
38608              Date: Mon, 4 Jul 2005 02:07:38 -0700
38609              Message-ID: <20050704090738.GA4056@efn.org>
38610              
38611              (plus a new test, although it is currently marked TODO)
38612      Branch: perl
38613            + lib/Pod/t/htmllink.pod lib/Pod/t/htmllink.t
38614            ! MANIFEST lib/Pod/Html.pm
38615 ____________________________________________________________________________
38616 [ 25082] By: steveh                                on 2005/07/05  16:54:11
38617         Log: Oops! Change 25080 should have updated checksums too.
38618      Branch: perl
38619            ! ext/Digest/MD5/t/files.t
38620 ____________________________________________________________________________
38621 [ 25081] By: davem                                 on 2005/07/05  13:01:23
38622         Log: change 24943 broke restoration of localized taint values
38623      Branch: perl
38624            ! mg.c t/op/taint.t
38625 ____________________________________________________________________________
38626 [ 25080] By: steveh                                on 2005/07/05  10:32:08
38627         Log: Remove an unreferenced local variable in Digest-MD5
38628      Branch: perl
38629            ! ext/Digest/MD5/MD5.pm ext/Digest/MD5/MD5.xs
38630 ____________________________________________________________________________
38631 [ 25079] By: nicholas                              on 2005/07/04  19:36:51
38632         Log: Subject: [PATCH] Remove unnecessary null check
38633              From: Andy Lester <andy@petdance.com>
38634              Date: Mon, 4 Jul 2005 14:12:00 -0500
38635              Message-ID: <20050704191200.GA2614@petdance.com>
38636      Branch: perl
38637            ! embed.fnc hv.c proto.h
38638 ____________________________________________________________________________
38639 [ 25078] By: nicholas                              on 2005/07/04  19:07:31
38640         Log: Make the tests for hv_free_ent and hv_delayfree_ent pass under
38641              -DPURIFY too.
38642      Branch: perl
38643            ! ext/XS/APItest/APItest.xs
38644 ____________________________________________________________________________
38645 [ 25077] By: merijn                                on 2005/07/04  18:47:02
38646         Log: Subject: [PATCH] Better string constant in hv.c
38647              From: Andy Lester <andy@petdance.com>
38648              Date: Mon, 4 Jul 2005 13:53:49 -0500
38649              Message-ID: <20050704185349.GA2351@petdance.com>
38650      Branch: perl
38651            ! hv.c
38652 ____________________________________________________________________________
38653 [ 25076] By: steveh                                on 2005/07/04  16:15:37
38654         Log: Add regression test for change 25062
38655      Branch: perl
38656            ! t/op/magic.t
38657 ____________________________________________________________________________
38658 [ 25075] By: steveh                                on 2005/07/04  15:57:32
38659         Log: Use void, not void *, to suppress RETVAL (and compiler warning)
38660      Branch: perl
38661            ! ext/XS/APItest/APItest.xs
38662 ____________________________________________________________________________
38663 [ 25074] By: steveh                                on 2005/07/04  15:36:04
38664         Log: Perl_share_hek needs exporting for change 25070 on Win32
38665      Branch: perl
38666            ! embed.fnc embed.h global.sym
38667 ____________________________________________________________________________
38668 [ 25073] By: steveh                                on 2005/07/04  15:34:11
38669         Log: Regen after change 25067
38670      Branch: perl
38671            ! proto.h
38672 ____________________________________________________________________________
38673 [ 25072] By: nicholas                              on 2005/07/04  15:03:32
38674         Log: Implement hv_delayfree_ent in terms of hv_free_ent
38675      Branch: perl
38676            ! hv.c
38677 ____________________________________________________________________________
38678 [ 25071] By: steveh                                on 2005/07/04  14:53:54
38679         Log: Subject: [PATCH] Skip nit in t/op/lfs.t
38680              From: Steve Peters <steve@fisharerojo.org>
38681              Date: Mon, 4 Jul 2005 10:10:13 -0500
38682              Message-ID: <20050704151013.GA18468@mccoy.peters.homeunix.org>
38683      Branch: perl
38684            ! t/op/lfs.t
38685 ____________________________________________________________________________
38686 [ 25070] By: nicholas                              on 2005/07/04  14:45:40
38687         Log: Tests for hv_delayfree_ent and hv_free_ent
38688      Branch: perl
38689            ! ext/XS/APItest/APItest.pm ext/XS/APItest/APItest.xs
38690            ! ext/XS/APItest/t/hash.t
38691 ____________________________________________________________________________
38692 [ 25069] By: nicholas                              on 2005/07/04  13:56:39
38693         Log: Provide a macro version of S_new_body to inline it within the hot code.
38694      Branch: perl
38695            ! sv.c
38696 ____________________________________________________________________________
38697 [ 25068] By: steveh                                on 2005/07/04  13:21:36
38698         Log: Borland's .pdb files are called .tds
38699      Branch: perl
38700            ! win32/makefile.mk
38701 ____________________________________________________________________________
38702 [ 25067] By: steveh                                on 2005/07/04  12:30:50
38703         Log: Subject: [PATCH] Post-YAPC consting, now with an attachment!
38704              From: Andy Lester <andy@petdance.com>
38705              Date: Sun, 3 Jul 2005 18:31:56 -0500
38706              Message-ID: <20050703233156.GA20967@petdance.com>
38707      Branch: perl
38708            ! deb.c embed.fnc gv.c pad.c sv.c toke.c util.c
38709 ____________________________________________________________________________
38710 [ 25066] By: nicholas                              on 2005/07/04  10:41:28
38711         Log: Inlining del_HE is actually a space optimisation.
38712              It's therefore likely also to be a speed optimisation. :-)
38713      Branch: perl
38714            ! embed.fnc embed.h hv.c proto.h
38715 ____________________________________________________________________________
38716 [ 25065] By: steveh                                on 2005/07/04  10:40:10
38717         Log: Subject: [PATCH] perlglossary.pod: add jump points
38718              From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
38719              Date: Mon, 4 Jul 2005 02:07:52 -0700
38720              Message-ID: <20050704090752.GB4056@efn.org>
38721      Branch: perl
38722            ! pod/perlglossary.pod
38723 ____________________________________________________________________________
38724 [ 25064] By: nicholas                              on 2005/07/04  10:24:26
38725         Log: sv_setuv_mg is so rarely called that the IV optimisation test is not
38726              needed.
38727      Branch: perl
38728            ! sv.c
38729 ____________________________________________________________________________
38730 [ 25063] By: steveh                                on 2005/07/04  10:13:41
38731         Log: Subject: Re: How to suppress warnings when building Errno with gcc
38732              From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
38733              Date: Fri, 1 Jul 2005 10:56:23 -0700
38734              Message-ID: <20050701175623.GD216@efn.org>
38735      Branch: perl
38736            ! ext/Errno/Errno_pm.PL
38737 ____________________________________________________________________________
38738 [ 25062] By: steveh                                on 2005/07/04  09:17:06
38739         Log: Fix change 25045
38740      Branch: perl
38741            ! mg.c
38742 ____________________________________________________________________________
38743 [ 25061] By: steveh                                on 2005/07/04  08:26:38
38744         Log: Here's the rest of change 25058 ;-)
38745      Branch: perl
38746            ! embed.h global.sym
38747 ____________________________________________________________________________
38748 [ 25060] By: davem                                 on 2005/07/04  08:11:33
38749         Log: Subject:  Re: [PATCH] Re: [PATCH] Re: a blead warning from tru64
38750              From:  Jarkko Hietaniemi <jhietaniemi@gmail.com>
38751              Date:  Mon, 04 Jul 2005 00:19:28 +0300
38752              Message-Id:  <42C85660.50807@gmail.com>
38753      Branch: perl
38754            ! perl.h
38755 ____________________________________________________________________________
38756 [ 25059] By: steveh                                on 2005/07/04  08:10:27
38757         Log: Stop reentr.pl changing EOL on the files it writes on Win32
38758      Branch: perl
38759            ! reentr.pl
38760 ____________________________________________________________________________
38761 [ 25058] By: steveh                                on 2005/07/04  08:09:36
38762         Log: Perl_ckwarn (added by change 25050) needs exporting on Win32
38763              
38764              (At least PerlIO/via uses it, so it must be public)
38765      Branch: perl
38766            ! embed.fnc
38767 ____________________________________________________________________________
38768 [ 25055] By: nicholas                              on 2005/07/02  21:19:09
38769         Log: Andy suggests this tweak to Dave's fix for MEM_WRAP_CHECK to shut up
38770              a different compiler warnings. I guess we need a waterbed theory of
38771              compiler warnings.
38772      Branch: perl
38773            ! handy.h
38774 ____________________________________________________________________________
38775 [ 25054] By: nicholas                              on 2005/07/02  16:53:09
38776         Log: Convert bless.t to test.pl
38777      Branch: perl
38778            ! t/op/bless.t
38779 ____________________________________________________________________________
38780 [ 25053] By: nicholas                              on 2005/07/02  16:25:06
38781         Log: Copying the first parameter in the macro del_body seems to reduce
38782              code size.  Presumably an expression is no longer evaluated twice.
38783      Branch: perl
38784            ! sv.c
38785 ____________________________________________________________________________
38786 [ 25052] By: davem                                 on 2005/07/02  16:11:46
38787         Log: do just-in-time loading of Carp.pm in some modules
38788              
38789              From: Tels <nospam-abuse@bloodgate.com>
38790              Subject: [PATCH] No Carp #4 AutoSplit.pm
38791              Subject: [PATCH] no Carp #5 (File::Path)
38792              Subject: [PATCH] no Carp #7 - charnames.pm
38793              Subject: [PATCH] no Carp #6 (File::Compare, File::Copy, File::Temp)
38794              Subject: [PATCH] no Carp #8 - SelfLoader, Text/Balanced and open.pm
38795      Branch: perl
38796            ! lib/AutoSplit.pm lib/File/Compare.pm lib/File/Copy.pm
38797            ! lib/File/Path.pm lib/SelfLoader.pm lib/charnames.pm
38798            ! lib/open.pm
38799 ____________________________________________________________________________
38800 [ 25051] By: nicholas                              on 2005/07/02  16:07:47
38801         Log: Unwrap the del_Xfoo() macros by explicitly noting the arena to free
38802              the body to. This comletely eliminates the second switch statement.
38803      Branch: perl
38804            ! sv.c
38805 ____________________________________________________________________________
38806 [ 25050] By: davem                                 on 2005/07/02  15:05:04
38807         Log: replace ckWARN macros with functions
38808      Branch: perl
38809            ! embed.fnc embed.h pod/perlintern.pod proto.h util.c warnings.h
38810            ! warnings.pl
38811 ____________________________________________________________________________
38812 [ 25049] By: nicholas                              on 2005/07/02  14:57:43
38813         Log: Given that the GV no longer owns a reference on the symbol table, we
38814              dont need the deferred SvREFCNT_dec games.
38815      Branch: perl
38816            ! sv.c
38817 ____________________________________________________________________________
38818 [ 25048] By: nicholas                              on 2005/07/02  13:55:45
38819         Log: Passing gvtype as char rather than char * to S_varname generates
38820              smaller code.
38821      Branch: perl
38822            ! embed.fnc proto.h sv.c
38823 ____________________________________________________________________________
38824 [ 25047] By: nicholas                              on 2005/07/02  13:07:26
38825         Log: Don't inline offer_nice_chunk, as it's rarely called.
38826      Branch: perl
38827            ! embed.fnc embed.h perl.h proto.h sv.c
38828 ____________________________________________________________________________
38829 [ 25046] By: davem                                 on 2005/07/02  12:35:12
38830         Log: missed one PAD_SET_CUR
38831      Branch: perl
38832            ! pp_hot.c
38833 ____________________________________________________________________________
38834 [ 25045] By: nicholas                              on 2005/07/02  12:34:08
38835         Log: Don't check the pointer is non-NULL before calling Safefree() in
38836              little used code, code used only once per run (such as interpreter
38837              construction and destruction), and cases where the pointer nearly
38838              never is NULL. Safefree does its own non-NULL check, and even that
38839              isn't strictly necessary as all conformant free()s accept a NULL
38840              pointer.
38841      Branch: perl
38842            ! doio.c locale.c mg.c perl.c perl.h regcomp.c sv.c util.c
38843 ____________________________________________________________________________
38844 [ 25044] By: rgs                                   on 2005/07/02  07:41:14
38845         Log: Upgrade to Time::HiRes 1.72
38846      Branch: perl
38847            ! ext/Time/HiRes/Changes ext/Time/HiRes/HiRes.pm
38848            ! ext/Time/HiRes/Makefile.PL ext/Time/HiRes/t/HiRes.t
38849 ____________________________________________________________________________
38850 [ 25043] By: steveh                                on 2005/07/01  16:33:42
38851         Log: Make Archive::Tar clean up its test files on Win32
38852              
38853              (The old "can't delete an open file on Win32" chestnut again)
38854      Branch: perl
38855            ! lib/Archive/Tar.pm lib/Archive/Tar/t/02_methods.t
38856 ____________________________________________________________________________
38857 [ 25042] By: davem                                 on 2005/07/01  15:40:40
38858         Log: the PAD_SET_CUR macro expanded too much for AIX compilers
38859      Branch: perl
38860            ! pad.h pp_ctl.c pp_sort.c pp_sys.c
38861 ____________________________________________________________________________
38862 [ 25041] By: steveh                                on 2005/07/01  15:15:23
38863         Log: Silence MinGW warning about "'noreturn' function does return"
38864              
38865              (Thanks to Nicholas Clark)
38866      Branch: perl
38867            ! iperlsys.h
38868 ____________________________________________________________________________
38869 [ 25040] By: rgs                                   on 2005/07/01  15:05:58
38870         Log: Install perlglossary on VMS and Windows
38871      Branch: perl
38872            ! vms/descrip_mms.template win32/pod.mak
38873 ____________________________________________________________________________
38874 [ 25039] By: davem                                 on 2005/07/01  14:34:52
38875         Log: undo some excessive Carp.pm minimalisation
38876      Branch: perl
38877            ! lib/Carp.pm
38878 ____________________________________________________________________________
38879 [ 25038] By: steveh                                on 2005/07/01  13:39:33
38880         Log: Remove unreferenced local variable (and the warning about it)
38881      Branch: perl
38882            ! ext/XS/APItest/APItest.xs
38883 ____________________________________________________________________________
38884 [ 25037] By: rgs                                   on 2005/07/01  12:43:23
38885         Log: Add the perlglossary man page
38886              
38887              Subject: [PATCH] perlglossary.pod
38888              From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
38889              Date: Fri, 1 Jul 2005 03:10:50 -0700
38890              Message-ID: <20050701101050.GA2448@efn.org>
38891      Branch: perl
38892            + pod/perlglossary.pod
38893            ! MANIFEST pod.lst pod/perl.pod pod/perlmodlib.pod
38894            ! pod/perltoc.pod
38895 ____________________________________________________________________________
38896 [ 25036] By: rgs                                   on 2005/07/01  12:32:21
38897         Log: Subject: [PATCH] Make Exporter.t warnings clean
38898              From: Michael G Schwern <schwern@pobox.com>
38899              Date: Tue, 28 Jun 2005 15:58:36 -0700
38900              Message-ID: <20050628225836.GB27320@windhund.schwern.org>
38901      Branch: perl
38902            ! lib/Exporter.t
38903 ____________________________________________________________________________
38904 [ 25035] By: davem                                 on 2005/07/01  11:49:22
38905         Log: silence a warning in Perl_sv_compile_2op
38906      Branch: perl
38907            ! pp_ctl.c
38908 ____________________________________________________________________________
38909 [ 25034] By: davem                                 on 2005/07/01  11:45:40
38910         Log: silence gcc 'comparison is always false' warning in MEM_WRAP_CHECK
38911              Only a partial fix: works where sizeof(type)==1; since we
38912              can never wraparound in that case, disarm the check
38913      Branch: perl
38914            ! handy.h
38915 ____________________________________________________________________________
38916 [ 25033] By: steveh                                on 2005/07/01  07:44:50
38917         Log: Silence some cast warnings from bcc32 on Win32
38918              
38919              See the thread starting here for arguments:
38920              http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2005-06/msg00994.html
38921      Branch: perl
38922            ! win32/win32.c
38923 ____________________________________________________________________________
38924 [ 25032] By: davem                                 on 2005/06/30  22:41:07
38925         Log: assigning shared consts (eg __PACKAGE__) to magic vars
38926      Branch: perl
38927            ! sv.c t/op/magic.t
38928 ____________________________________________________________________________
38929 [ 25031] By: nicholas                              on 2005/06/30  17:41:03
38930         Log: By grabbing the length, we can use sv_setpvn here.
38931      Branch: perl
38932            ! util.c
38933 ____________________________________________________________________________
38934 [ 25030] By: nicholas                              on 2005/06/30  17:37:56
38935         Log: Use sv_setpvn where we know the length.
38936      Branch: perl
38937            ! universal.c
38938 ____________________________________________________________________________
38939 [ 25029] By: nicholas                              on 2005/06/30  17:28:45
38940         Log: A terser way of implementing require_pv.
38941      Branch: perl
38942            ! perl.c
38943 ____________________________________________________________________________
38944 [ 25028] By: nicholas                              on 2005/06/30  17:21:28
38945         Log: We know the length, so use sv_setpvn rather than sv_setpv.
38946      Branch: perl
38947            ! universal.c
38948 ____________________________________________________________________________
38949 [ 25027] By: nicholas                              on 2005/06/30  17:05:13
38950         Log: Avoid using PL_Sv in the -V argument processing.
38951              Express the embedded perl program in a slightly terser way.
38952      Branch: perl
38953            ! perl.c
38954 ____________________________________________________________________________
38955 [ 25026] By: nicholas                              on 2005/06/30  16:34:52
38956         Log: Use Perl_sv_catpvf to shorten the code (source and object) needed for
38957              commandline -V options that q\0...\0.
38958      Branch: perl
38959            ! perl.c
38960 ____________________________________________________________________________
38961 [ 25025] By: rgs                                   on 2005/06/30  16:15:31
38962         Log: Add TODO tests for bug #36434
38963      Branch: perl
38964            ! t/op/magic.t
38965 ____________________________________________________________________________
38966 [ 25024] By: nicholas                              on 2005/06/30  12:28:55
38967         Log: The core shouldn't be using PL_na
38968      Branch: perl
38969            ! perl.c
38970 ____________________________________________________________________________
38971 [ 25023] By: nicholas                              on 2005/06/30  12:15:14
38972         Log: -V:... would get upset (syntax error) if ... contained unbalanced ().
38973      Branch: perl
38974            ! perl.c
38975 ____________________________________________________________________________
38976 [ 25022] By: nicholas                              on 2005/06/30  11:40:37
38977         Log: Replace newSVpv(...,0) with newSVpvn where we know the length.
38978      Branch: perl
38979            ! perl.c regcomp.c sv.c
38980 ____________________________________________________________________________
38981 [ 25021] By: nicholas                              on 2005/06/30  11:20:33
38982         Log: Why use Perl_form and newSVpv when newSVpvf will do it in one?
38983      Branch: perl
38984            ! perl.c
38985 ____________________________________________________________________________
38986 [ 25020] By: rgs                                   on 2005/06/30  10:01:55
38987         Log: Subject: [PATCH] make t/uni/class.t faster
38988              From: Tels <nospam-abuse@bloodgate.com>
38989              Date: Wed, 29 Jun 2005 21:19:52 +0200
38990              Message-Id: <200506292120.05519@bloodgate.com>
38991      Branch: perl
38992            ! t/uni/class.t
38993 ____________________________________________________________________________
38994 [ 25019] By: nicholas                              on 2005/06/30  09:57:31
38995         Log: If gp_flags is unused, why are we even allocating it?
38996      Branch: perl
38997            ! dump.c ext/Devel/Peek/t/Peek.t gv.h sv.c
38998 ____________________________________________________________________________
38999 [ 25018] By: nicholas                              on 2005/06/30  09:21:05
39000         Log: Nothing is actually relying on GvUNIQUE holding state.
39001      Branch: perl
39002            ! gv.h
39003 ____________________________________________________________________________
39004 [ 25017] By: rgs                                   on 2005/06/30  09:11:28
39005         Log: Subject: Re: [PATCH] Convert File::Basename tests to Test::More
39006              From: Michael G Schwern <schwern@pobox.com>
39007              Date: Thu, 30 Jun 2005 01:02:30 -0700
39008              Message-ID: <20050630080230.GC17965@windhund.schwern.org>
39009      Branch: perl
39010            ! lib/File/Basename.t
39011 ____________________________________________________________________________
39012 [ 25016] By: rgs                                   on 2005/06/30  09:04:20
39013         Log: Subject: Re: [PATCH]Re: [perl #36417] IO::Handle::getline() doco should note an important difference from <$io>
39014              From: Steve Peters <steve@fisharerojo.org>
39015              Date: Wed, 29 Jun 2005 21:47:23 -0500
39016              Message-ID: <20050630024723.GA3786@mccoy.peters.homeunix.org>
39017      Branch: perl
39018            ! ext/IO/lib/IO/Handle.pm
39019 ____________________________________________________________________________
39020 [ 25015] By: rgs                                   on 2005/06/30  08:59:11
39021         Log: Subject: some dusting off of the cross-compilation information
39022              From: Jarkko Hietaniemi <jhietaniemi@gmail.com>
39023              Date: Thu, 30 Jun 2005 08:41:17 +0300
39024              Message-ID: <42C385FD.9040601@gmail.com>
39025      Branch: perl
39026            ! Cross/README INSTALL
39027 ____________________________________________________________________________
39028 [ 25014] By: steveh                                on 2005/06/30  07:57:25
39029         Log: Silence MinGW warnings about system headers when building Errno
39030              
39031              Thanks to Mike Guy for the suggested fix.
39032      Branch: perl
39033            ! ext/Errno/Errno_pm.PL
39034 ____________________________________________________________________________
39035 [ 25013] By: nicholas                              on 2005/06/29  21:24:53
39036         Log: Expand on parts of perltodo
39037      Branch: perl
39038            ! pod/perltodo.pod
39039 ____________________________________________________________________________
39040 [ 25012] By: nicholas                              on 2005/06/29  21:09:16
39041         Log: All tests pass (for me) with -DPERL_DONT_CREATE_GVSV
39042      Branch: perl
39043            ! pp.c pp_hot.c
39044 ____________________________________________________________________________
39045 [ 25011] By: nicholas                              on 2005/06/29  20:24:12
39046         Log: Make warnings.t pass with -DPERL_DONT_CREATE_GVSV
39047      Branch: perl
39048            ! pp_sys.c
39049 ____________________________________________________________________________
39050 [ 25010] By: nicholas                              on 2005/06/29  19:25:24
39051         Log: Fixes to -DPERL_DONT_CREATE_GVSV to make more tests pass
39052      Branch: perl
39053            ! doio.c gv.c perl.h sv.c
39054 ____________________________________________________________________________
39055 [ 25009] By: nicholas                              on 2005/06/29  15:58:14
39056         Log: First stab at not automatically creating an unused SV for GvSV
39057              Enable it with -DPERL_DONT_CREATE_GVSV.
39058              Currently if enabled 22 test scripts have failures, so still some way
39059              to go.
39060      Branch: perl
39061            ! embed.fnc embed.h global.sym gv.c gv.h makedef.pl perl.c
39062            ! pp_hot.c proto.h sv.c
39063 ____________________________________________________________________________
39064 [ 25008] By: rgs                                   on 2005/06/29  08:11:53
39065         Log: Remove old variable needed for binary compatibility
39066      Branch: perl
39067            ! embedvar.h intrpvar.h perlapi.h sv.c
39068 ____________________________________________________________________________
39069 [ 25007] By: nicholas                              on 2005/06/28  22:02:03
39070         Log: Convert strcpy to memcpy where we already know the length.
39071      Branch: perl
39072            ! gv.c sv.c util.c
39073 ____________________________________________________________________________
39074 [ 25006] By: davem                                 on 2005/06/28  11:28:20
39075         Log: move Carp.pod back into Carp.pm
39076      Branch: perl
39077            - lib/Carp.pod
39078            ! MANIFEST lib/Carp.pm
39079 ____________________________________________________________________________
39080 [ 25005] By: rgs                                   on 2005/06/28  11:17:30
39081         Log: B::Deparse was chocking on variable names with colons (like foo::::bar)
39082      Branch: perl
39083            ! ext/B/B/Deparse.pm
39084 ____________________________________________________________________________
39085 [ 25004] By: nicholas                              on 2005/06/28  10:09:26
39086         Log: Subject: Re: Hints for 64bitall (PPC!) Darwin perl
39087              From: Dominic Dunlop <domo@computer.org>
39088              Message-Id: <1D31D9A6-2451-49EE-AD80-80F1D9CA2825@computer.org>
39089              Date: Mon, 27 Jun 2005 19:46:59 +0200
39090      Branch: perl
39091            ! hints/darwin.sh
39092 ____________________________________________________________________________
39093 [ 25003] By: steveh                                on 2005/06/28  08:01:21
39094         Log: Stop "Possible use before definition" warning following change 24997
39095      Branch: perl
39096            ! pp_sys.c
39097 ____________________________________________________________________________
39098 [ 25002] By: rgs                                   on 2005/06/28  07:40:35
39099         Log: Upgrade to Time::HiRes 1.71
39100      Branch: perl
39101            ! ext/Time/HiRes/Changes ext/Time/HiRes/HiRes.pm
39102            ! ext/Time/HiRes/Makefile.PL
39103 ____________________________________________________________________________
39104 [ 25001] By: steveh                                on 2005/06/28  07:40:01
39105         Log: Stop "suspicious pointer conversion" warning following change 24997
39106      Branch: perl
39107            ! hv.c
39108 ____________________________________________________________________________
39109 [ 25000] By: rgs                                   on 2005/06/27  21:57:04
39110         Log: Don't install demo files with perl
39111      Branch: perl
39112            ! installperl
39113 ____________________________________________________________________________
39114 [ 24999] By: rgs                                   on 2005/06/27  21:30:09
39115         Log: From: Mattia Barbon <mattia.barbon@libero.it>
39116              Subject: [PATCH] Avoid redefinition warning for MinGW
39117              Date: Jun 27, 2005 10:07 PM
39118              Message-ID: <Mahogany-0.66.0-1232-20050627-220727.00@rbnet.it>
39119      Branch: perl
39120            ! win32/win32iop.h
39121 ____________________________________________________________________________
39122 [ 24998] By: nicholas                              on 2005/06/27  20:52:27
39123         Log: Fix sv_dec of undefined PVs to (a) not downgrade to NV
39124              (b) give -1, rather than +1
39125      Branch: perl
39126            ! sv.c t/op/inc.t
39127 ____________________________________________________________________________
39128 [ 24997] By: rgs                                   on 2005/06/27  18:26:15
39129         Log: Subject: [PATCH] We're going round in circles with pp_sys.c
39130              From: Andy Lester <andy@petdance.com>
39131              Date: Mon, 27 Jun 2005 13:06:59 -0500
39132              Message-ID: <20050627180659.GB29744@petdance.com>
39133              
39134              (edited)
39135      Branch: perl
39136            ! embed.fnc gv.c handy.h hv.c perl.c pp_ctl.c pp_hot.c proto.h
39137            ! regexec.c sv.c toke.c
39138 ____________________________________________________________________________
39139 [ 24996] By: rgs                                   on 2005/06/27  17:19:45
39140         Log: Fix installation of ptar(1) manpage.
39141              The __END__ was making the POD being ignored by pod2man.
39142      Branch: perl
39143            ! lib/Archive/Tar/bin/ptar
39144 ____________________________________________________________________________
39145 [ 24995] By: davem                                 on 2005/06/27  16:34:34
39146         Log: Make Carp.pm even lighter (and Carp::Heavy even heavier)
39147              Also move carp.pm pod to carp.pod
39148      Branch: perl
39149            + lib/Carp.pod
39150            ! MANIFEST lib/Carp.pm lib/Carp/Heavy.pm lib/warnings.pm
39151            ! warnings.pl
39152 ____________________________________________________________________________
39153 [ 24994] By: steveh                                on 2005/06/27  15:45:05
39154         Log: Silence compiler warning in SDBM_File
39155              
39156              Unless I'm missing something it looks like "key" actually is used,
39157              and the "key = key" assignment causes bcc32 to complain about use
39158              before definition!
39159      Branch: perl
39160            ! ext/SDBM_File/SDBM_File.xs
39161 ____________________________________________________________________________
39162 [ 24993] By: rgs                                   on 2005/06/27  15:22:58
39163         Log: Subject: [PATCH] XSLoader for Sys::Syslog
39164              From: Alexey Tourbin <at@altlinux.ru>
39165              Date: Sun, 26 Jun 2005 08:32:05 +0400
39166              Message-ID: <20050626043204.GA31585@solemn.turbinal.org>
39167      Branch: perl
39168            ! ext/Sys/Syslog/Syslog.pm
39169 ____________________________________________________________________________
39170 [ 24992] By: rgs                                   on 2005/06/27  13:51:10
39171         Log: Oops (fix previous fix).
39172      Branch: perl
39173            ! lib/Filter/Simple/t/data.t lib/Filter/Simple/t/export.t
39174            ! lib/Filter/Simple/t/filter.t lib/Filter/Simple/t/filter_only.t
39175            ! lib/Filter/Simple/t/import.t
39176 ____________________________________________________________________________
39177 [ 24991] By: rgs                                   on 2005/06/27  13:48:26
39178         Log: Fix tests of Filter::Simple 0.82 in the core
39179      Branch: perl
39180            ! lib/Filter/Simple/t/data.t lib/Filter/Simple/t/export.t
39181            ! lib/Filter/Simple/t/filter.t lib/Filter/Simple/t/filter_only.t
39182            ! lib/Filter/Simple/t/import.t
39183 ____________________________________________________________________________
39184 [ 24990] By: rgs                                   on 2005/06/27  13:46:25
39185         Log: Upgrade to Filter::Simple 0.82
39186      Branch: perl
39187            ! lib/Filter/Simple.pm lib/Filter/Simple/Changes
39188            ! lib/Filter/Simple/t/data.t lib/Filter/Simple/t/export.t
39189            ! lib/Filter/Simple/t/filter.t lib/Filter/Simple/t/filter_only.t
39190            ! lib/Filter/Simple/t/import.t t/lib/Filter/Simple/ExportTest.pm
39191            ! t/lib/Filter/Simple/FilterOnlyTest.pm
39192            ! t/lib/Filter/Simple/FilterTest.pm
39193            ! t/lib/Filter/Simple/ImportTest.pm
39194 ____________________________________________________________________________
39195 [ 24989] By: rgs                                   on 2005/06/27  12:46:44
39196         Log: Upgrade to Test::Harness 2.52
39197      Branch: perl
39198            ! lib/Test/Harness.pm lib/Test/Harness/Changes
39199            ! lib/Test/Harness/bin/prove
39200 ____________________________________________________________________________
39201 [ 24988] By: rgs                                   on 2005/06/27  12:35:33
39202         Log: Upgrade to Time::HiRes 1.70
39203      Branch: perl
39204            ! ext/Time/HiRes/Changes ext/Time/HiRes/HiRes.pm
39205            ! ext/Time/HiRes/HiRes.xs
39206 ____________________________________________________________________________
39207 [ 24987] By: steveh                                on 2005/06/27  07:41:52
39208         Log: Suppress warnings about a clash between redefined malloc and the
39209              use of __attribute__malloc__
39210              
39211              Subject: Re: Fun with __attribute__malloc__
39212              From: Andy Lester <andy@petdance.com>
39213              Date: Fri, 24 Jun 2005 12:11:59 -0500
39214              Message-ID: <20050624171159.GB29590@petdance.com>
39215      Branch: perl
39216            ! perl.h
39217 ____________________________________________________________________________
39218 [ 24986] By: nicholas                              on 2005/06/26  22:19:22
39219         Log: Tweak the child dump socket protocol to return error messages to the
39220              parent so that it can display what went wrong.
39221      Branch: perl
39222            ! perl.c
39223 ____________________________________________________________________________
39224 [ 24985] By: rgs                                   on 2005/06/26  20:06:10
39225         Log: Upgrade to Time::HiRes 1.69
39226      Branch: perl
39227            ! ext/Time/HiRes/Changes ext/Time/HiRes/HiRes.pm
39228            ! ext/Time/HiRes/Makefile.PL
39229 ____________________________________________________________________________
39230 [ 24984] By: nicholas                              on 2005/06/26  17:59:33
39231         Log: When using DEBUG_LEAKING_SCALARS_FORK_DUMP it's possible to cause
39232              indefinite hangs when the debugging child holds open Perl_debug_log,
39233              and it happens to be a file descriptor that is one end of a pipe,
39234              with a process sitting at the other end waitng for EOF.
39235              So close all descriptors in the child *including* Perl_debug_log,
39236              and pass it back in over the control socket if it's needed.
39237      Branch: perl
39238            ! perl.c
39239 ____________________________________________________________________________
39240 [ 24983] By: nicholas                              on 2005/06/26  10:28:43
39241         Log: Need to pass a my_perl to S_my_localtime to make threaded builds build.
39242      Branch: perl
39243            ! pp_sys.c
39244 ____________________________________________________________________________
39245 [ 24982] By: nicholas                              on 2005/06/25  17:58:26
39246         Log: Add a sanity check to Config::AUTOLOAD to prevent infinte loops if
39247              Configure_heavy.pl gets truncated.
39248      Branch: perl
39249            ! configpm
39250 ____________________________________________________________________________
39251 [ 24981] By: nicholas                              on 2005/06/25  15:45:06
39252         Log: On OS X to use perl's malloc need to USE_PERL_SBRK and emulate sbrk()
39253              using system malloc, because sbrk() stops giving us memory after about
39254              14Mb.
39255      Branch: perl
39256            ! hints/darwin.sh
39257 ____________________________________________________________________________
39258 [ 24980] By: nicholas                              on 2005/06/25  15:42:30
39259         Log: Need to skip exporting PL_dumper_fd unless it is used.
39260      Branch: perl
39261            ! makedef.pl
39262 ____________________________________________________________________________
39263 [ 24979] By: nicholas                              on 2005/06/25  12:55:09
39264         Log: If forking during global destruction, the child needs to close all
39265              unused file descriptors, else it can cause other processes to hang
39266              because it accidentally holds open pipes and sockets.
39267      Branch: perl
39268            ! perl.c
39269 ____________________________________________________________________________
39270 [ 24978] By: rgs                                   on 2005/06/24  15:21:38
39271         Log: Upgrade to Unicode::Collate 0.51
39272      Branch: perl
39273            ! lib/Unicode/Collate.pm lib/Unicode/Collate/Changes
39274            ! lib/Unicode/Collate/README
39275 ____________________________________________________________________________
39276 [ 24977] By: steveh                                on 2005/06/24  14:38:05
39277         Log: Fix typo in win32.c
39278              
39279              Doesn't fix bcc32 + USE_LARGE_FILES, though :-(
39280      Branch: perl
39281            ! win32/win32.c
39282 ____________________________________________________________________________
39283 [ 24976] By: nicholas                              on 2005/06/24  14:04:19
39284         Log: Extend DEBUG_LEAKING_SCALARS_FORK_DUMP so it can also dump scalars
39285              which become unreferenced. This is less likely to be successful.
39286              The #define needs a better name.
39287      Branch: perl
39288            ! embed.fnc embed.h embedvar.h intrpvar.h perl.c perlapi.h
39289            ! proto.h sv.c
39290 ____________________________________________________________________________
39291 [ 24975] By: steveh                                on 2005/06/24  13:56:15
39292         Log: Stop '"__attribute__format__" redefined' warnings from gcc on Win32
39293      Branch: perl
39294            ! perl.h win32/config_H.gc
39295 ____________________________________________________________________________
39296 [ 24974] By: steveh                                on 2005/06/24  12:27:45
39297         Log: Make opendir() filename const in Win32-land & friends
39298              
39299              That fact that it wasn't const already was highlighted by a warning
39300              from pp_open_dir() generated by change 24743. Rather than undo the
39301              const change in pp_open_dir(), this seems to make more sense. Hope I
39302              haven't broken Netware or WinCE.
39303      Branch: perl
39304            ! NetWare/nw5.c NetWare/nwperlhost.h NetWare/nwperlsys.h
39305            ! iperlsys.h win32/include/dirent.h win32/perlhost.h
39306            ! win32/win32.c win32/win32iop.h wince/perlhost.h wince/wince.c
39307 ____________________________________________________________________________
39308 [ 24973] By: nicholas                              on 2005/06/24  10:45:44
39309         Log: Need to do some sort of die/warn to get the "global destruction"
39310              text if the bug is still present.
39311      Branch: perl
39312            ! t/op/gv.t
39313 ____________________________________________________________________________
39314 [ 24972] By: steveh                                on 2005/06/24  09:37:24
39315         Log: Fix t\op\gv.t on Win32
39316      Branch: perl
39317            ! t/op/gv.t
39318 ____________________________________________________________________________
39319 [ 24971] By: rgs                                   on 2005/06/24  07:54:59
39320         Log: Remove cargo-culted binmode.
39321      Branch: perl
39322            ! lib/Archive/Tar/t/00_setup.t
39323 ____________________________________________________________________________
39324 [ 24970] By: steveh                                on 2005/06/24  07:42:41
39325         Log: Fix Archive-Tar tests on Win32 following change 24954
39326      Branch: perl
39327            ! lib/Archive/Tar/t/00_setup.t
39328 ____________________________________________________________________________
39329 [ 24969] By: merijn                                on 2005/06/24  07:41:08
39330         Log: Workaround localtime edge case where TZ makes time go beyond
39331              the defined working range (AIX 5.2)
39332      Branch: perl
39333            ! pp_sys.c
39334 ____________________________________________________________________________
39335 [ 24968] By: davem                                 on 2005/06/23  22:59:36
39336         Log: change 24967 got the #endif in the wrong place
39337      Branch: perl
39338            ! pad.c
39339 ____________________________________________________________________________
39340 [ 24967] By: davem                                 on 2005/06/23  22:48:40
39341         Log: don't repopulate PADTMP slots with null SVs when freeing ops
39342      Branch: perl
39343            ! ext/B/t/f_sort.t ext/B/t/optree_samples.t pad.c
39344 ____________________________________________________________________________
39345 [ 24966] By: nicholas                              on 2005/06/23  21:30:33
39346         Log: Remove the reference loop between symbol tables and typeglobs.
39347              Typeglobs now have a weak reference onto their symbol table.
39348      Branch: perl
39349            ! embed.fnc embed.h gv.c mg.c pad.c proto.h sv.c t/op/gv.t
39350 ____________________________________________________________________________
39351 [ 24965] By: rgs                                   on 2005/06/23  18:53:04
39352         Log: Subject: [PATCH] Pre-YAPC consting fun
39353              From: Andy Lester <andy@petdance.com>
39354              Date: Jun 23, 2005 9:04 PM
39355              Message-ID: <20050623190423.GA13835@petdance.com>
39356      Branch: perl
39357            ! embed.fnc embed.h lib/ExtUtils/CBuilder/t/01-basic.t locale.c
39358            ! mg.c perlio.c pp_ctl.c pp_pack.c pp_sys.c proto.h scope.c
39359            ! taint.c util.c
39360 ____________________________________________________________________________
39361 [ 24964] By: merijn                                on 2005/06/23  18:43:42
39362         Log: Take a larger margin to prevent 'X' failures in smokes
39363              I was able to get warnings on HP-UX 10.20 every 2nd to 3rd run
39364              when reps was still 10000. With 15000 I didn't get a single warning
39365      Branch: perl
39366            ! t/op/rand.t
39367 ____________________________________________________________________________
39368 [ 24963] By: rgs                                   on 2005/06/23  18:07:34
39369         Log: Warning suppression.
39370      Branch: perl
39371            ! pp_sys.c
39372 ____________________________________________________________________________
39373 [ 24962] By: nicholas                              on 2005/06/23  18:00:38
39374         Log: The current implementation of :unique is fundamentally flawed,
39375              because declaring a scalar READONLY does not stop it being modified.
39376              Hence the current implementation of :unique is *not threadsafe*
39377              D'oh!
39378              Better implementations welcome.
39379      Branch: perl
39380            ! embed.fnc embed.h ext/threads/t/problems.t pod/perltodo.pod
39381            ! proto.h sv.c
39382 ____________________________________________________________________________
39383 [ 24961] By: rgs                                   on 2005/06/23  16:18:21
39384         Log: Fix Archive::Tar test when perl is built with -Dmksymlinks
39385      Branch: perl
39386            ! lib/Archive/Tar/t/02_methods.t
39387 ____________________________________________________________________________
39388 [ 24960] By: rgs                                   on 2005/06/23  15:51:02
39389         Log: Subject: [PATCH] Re: [perl #9741] possible problem with File::Find
39390              From: Steve Peters <steve@fisharerojo.org>
39391              Date: Fri, 17 Jun 2005 23:27:14 -0500
39392              Message-ID: <20050618042714.GA29589@mccoy.peters.homeunix.org>
39393      Branch: perl
39394            ! lib/File/Find.pm
39395 ____________________________________________________________________________
39396 [ 24959] By: nicholas                              on 2005/06/23  14:11:20
39397         Log: Add a define PERL_POISON which tries to trip up anything accessing
39398              freed or uninitialised memory. Currently only Poison()s freed
39399              pointers.
39400      Branch: perl
39401            ! ext/PerlIO/encoding/encoding.xs gv.c handy.h pp_ctl.c scope.c
39402            ! sv.c
39403 ____________________________________________________________________________
39404 [ 24958] By: nicholas                              on 2005/06/23  14:09:57
39405         Log: Indent some of the #ifdef/#define/#endif to make the nesting clearer.
39406              Simplify SvPV_free slightly.
39407      Branch: perl
39408            ! sv.h
39409 ____________________________________________________________________________
39410 [ 24957] By: rgs                                   on 2005/06/23  11:54:25
39411         Log: This dummy test didn't pass
39412      Branch: perl
39413            ! lib/Archive/Tar/t/99_clean.t
39414 ____________________________________________________________________________
39415 [ 24956] By: rgs                                   on 2005/06/23  11:34:35
39416         Log: Add a pseudo-test to clean up data files for Archive::Tar tests
39417      Branch: perl
39418            + lib/Archive/Tar/t/99_clean.t
39419            ! MANIFEST
39420 ____________________________________________________________________________
39421 [ 24955] By: rgs                                   on 2005/06/23  11:30:16
39422         Log: Remove test that relies on Test::POD
39423      Branch: perl
39424            - lib/Archive/Tar/t/99_pod.t
39425            ! MANIFEST
39426 ____________________________________________________________________________
39427 [ 24954] By: rgs                                   on 2005/06/23  11:29:16
39428         Log: Remove binary files, add a pseudo-test in Archive::Tar to generate them
39429      Branch: perl
39430            + lib/Archive/Tar/t/00_setup.t
39431            - lib/Archive/Tar/t/src/long/bar.tar
39432            - lib/Archive/Tar/t/src/long/foo.tgz
39433            - lib/Archive/Tar/t/src/short/bar.tar
39434            - lib/Archive/Tar/t/src/short/foo.tgz
39435            ! MANIFEST
39436 ____________________________________________________________________________
39437 [ 24953] By: steveh                                on 2005/06/23  11:02:42
39438         Log: Silence bcc32 compiler warnings following change 24945
39439              
39440              ("Possible use of '%s' before definition")
39441      Branch: perl
39442            ! pp_ctl.c pp_sys.c
39443 ____________________________________________________________________________
39444 [ 24952] By: nicholas                              on 2005/06/23  10:41:00
39445         Log: Re-initialise PL_curcop to &PL_compiling before destroying the optree.
39446      Branch: perl
39447            ! perl.c
39448 ____________________________________________________________________________
39449 [ 24951] By: rgs                                   on 2005/06/23  10:39:47
39450         Log: Subject: Re: [perl #36350] unstable sorting for use integer; sort { $b <=> $a } @foo 
39451              From: Salvador Fandino <sfandino@yahoo.com>
39452              Date: Tue, 21 Jun 2005 19:50:35 +0200
39453              Message-ID: <20050621181658.5977.qmail@lists.develooper.com>
39454      Branch: perl
39455            ! pp_sort.c
39456 ____________________________________________________________________________
39457 [ 24950] By: steveh                                on 2005/06/23  10:21:53
39458         Log: Oops! Change 24946 wasn't quite right
39459      Branch: perl
39460            ! doio.c
39461 ____________________________________________________________________________
39462 [ 24949] By: rgs                                   on 2005/06/23  09:32:55
39463         Log: Add handling of NV_ZERO_IS_ALLBITS_ZERO for Netware and epoc
39464      Branch: perl
39465            ! NetWare/config.wc NetWare/config_H.wc epoc/config.sh
39466 ____________________________________________________________________________
39467 [ 24948] By: rgs                                   on 2005/06/23  09:25:03
39468         Log: Define d_nv_zero_is_allbits_zero for symbian
39469              (noticed by Jarkko)
39470      Branch: perl
39471            ! symbian/config.sh
39472 ____________________________________________________________________________
39473 [ 24947] By: steveh                                on 2005/06/23  09:18:37
39474         Log: Silence bcc32 compiler warnings from win32/fcrypt.c (almost)
39475              
39476              It still whines about 'in' and 'b' being assigned values that are
39477              never used on lines 348 and 505 respectively (as side effects of the
39478              calls to c2l and l2c respectively), but I'm not sure how to shut
39479              them up.
39480      Branch: perl
39481            ! win32/fcrypt.c
39482 ____________________________________________________________________________
39483 [ 24946] By: steveh                                on 2005/06/23  09:00:28
39484         Log: More bcc32 compiler warnings to silence
39485              
39486              ("Suspicious pointer conversion")
39487      Branch: perl
39488            ! doio.c win32/win32io.c
39489 ____________________________________________________________________________
39490 [ 24945] By: rgs                                   on 2005/06/23  08:39:44
39491         Log: Subject: [PATCH] Const Boy II: The Localizing
39492              From: Andy Lester <andy@petdance.com>
39493              Date: Wed, 22 Jun 2005 09:41:00 -0500
39494              Message-ID: <20050622144059.GA19598@petdance.com>
39495      Branch: perl
39496            ! autodoc.pl embed.fnc embed.pl hv.c perl.c perlio.c
39497            ! pod/perlapi.pod pp.c pp.h pp_ctl.c pp_sys.c proto.h sv.c
39498            ! util.c
39499 ____________________________________________________________________________
39500 [ 24944] By: steveh                                on 2005/06/23  08:04:21
39501         Log: Silence another bcc32 compiler warning
39502              
39503              ("Possible use of '%s' before definition")
39504      Branch: perl
39505            ! toke.c
39506 ____________________________________________________________________________
39507 [ 24943] By: davem                                 on 2005/06/22  23:08:55
39508         Log: remove taint hack now that local $tainted no longer copies taint magic
39509      Branch: perl
39510            ! mg.c sv.c
39511 ____________________________________________________________________________
39512 [ 24942] By: davem                                 on 2005/06/22  21:42:54
39513         Log: handle magic in local correctly
39514              the local SV now gets a copy of any container magic, and no value
39515              magic; in the past the whole magic chain was either shared or
39516              moved
39517      Branch: perl
39518            ! embed.fnc embed.h mg.c pod/perlguts.pod pod/perlintern.pod
39519            ! proto.h scope.c t/op/local.t
39520 ____________________________________________________________________________
39521 [ 24941] By: merijn                                on 2005/06/22  17:14:04
39522         Log: Upgrade to Test::Harness 2.50
39523      Branch: perl
39524            ! lib/Test/Harness.pm lib/Test/Harness/t/strap-analyze.t
39525 ____________________________________________________________________________
39526 [ 24940] By: nicholas                              on 2005/06/22  16:37:06
39527         Log: Add facility to fork() early in perl_destruct and use the child to
39528              dump out leaked scalars (enabled with DEBUG_LEAKING_SCALARS_FORK_DUMP
39529              when DEBUG_LEAKING_SCALARS is already in force)
39530      Branch: perl
39531            ! perl.c
39532 ____________________________________________________________________________
39533 [ 24939] By: steveh                                on 2005/06/22  13:25:16
39534         Log: Silence yet more bcc32 compiler warnings
39535              
39536              ("Code has no effect")
39537      Branch: perl
39538            ! hv.c pp_ctl.c pp_hot.c
39539 ____________________________________________________________________________
39540 [ 24938] By: steveh                                on 2005/06/22  13:02:17
39541         Log: Silence some more bcc32 compiler warnings
39542              
39543              ("Suggest parentheses to clarify precedence")
39544      Branch: perl
39545            ! warnings.h warnings.pl
39546 ____________________________________________________________________________
39547 [ 24937] By: steveh                                on 2005/06/22  12:31:59
39548         Log: Silence some bcc32 compiler warnings
39549              
39550              ("Superfluous & with function")
39551      Branch: perl
39552            ! perlvars.h pp.c win32/win32.c
39553 ____________________________________________________________________________
39554 [ 24936] By: nicholas                              on 2005/06/22  10:08:43
39555         Log: Now that the global string table is using a single hunk of memory
39556              for both HE and HEK, we need to actually free things in perl_destruct
39557      Branch: perl
39558            ! perl.c
39559 ____________________________________________________________________________
39560 [ 24935] By: steveh                                on 2005/06/22  09:40:25
39561         Log: Fix Archive-Tar tests on Win32
39562              
39563              (Patch from Jos Boumans, from his current dev version.)
39564      Branch: perl
39565            ! lib/Archive/Tar.pm
39566 ____________________________________________________________________________
39567 [ 24934] By: merijn                                on 2005/06/21  19:27:38
39568         Log: Redo generation of change #24898
39569              Do not forget to run Porting/config_h.pl!
39570      Branch: perl
39571            ! Configure config_h.SH
39572 ____________________________________________________________________________
39573 [ 24932] By: rgs                                   on 2005/06/21  17:05:01
39574         Log: Upgrade to Test::Harness 2.49_02
39575      Branch: perl
39576            ! lib/Test/Harness.pm lib/Test/Harness/Changes
39577            ! lib/Test/Harness/Iterator.pm lib/Test/Harness/Straps.pm
39578            ! lib/Test/Harness/t/test-harness.t
39579 ____________________________________________________________________________
39580 [ 24931] By: rgs                                   on 2005/06/21  16:33:32
39581         Log: Add Archive::Tar to the maintainers list
39582      Branch: perl
39583            ! Porting/Maintainers.pl
39584 ____________________________________________________________________________
39585 [ 24930] By: rgs                                   on 2005/06/21  16:14:06
39586         Log: Trim trailing spaces
39587      Branch: perl
39588            ! lib/Archive/Tar/bin/ptar
39589 ____________________________________________________________________________
39590 [ 24929] By: rgs                                   on 2005/06/21  15:53:30
39591         Log: Add pod, so ptar has a manpage
39592      Branch: perl
39593            ! lib/Archive/Tar/bin/ptar
39594 ____________________________________________________________________________
39595 [ 24928] By: rgs                                   on 2005/06/21  15:27:37
39596         Log: POD nits
39597      Branch: perl
39598            ! ext/Storable/Storable.pm
39599 ____________________________________________________________________________
39600 [ 24927] By: nicholas                              on 2005/06/21  15:27:14
39601         Log: Drag t/op/gv.t kicking and screaming into the century of the fruitbat
39602              (or at least into the decade of t/test.pl)
39603      Branch: perl
39604            ! t/op/gv.t
39605 ____________________________________________________________________________
39606 [ 24926] By: rgs                                   on 2005/06/21  15:04:10
39607         Log: Add the ptar(1) utility from Archive::Tar
39608      Branch: perl
39609            + lib/Archive/Tar/bin/ptar utils/ptar.PL
39610            ! MANIFEST utils.lst utils/Makefile vms/descrip_mms.template
39611            ! win32/Makefile win32/makefile.mk
39612 ____________________________________________________________________________
39613 [ 24925] By: steveh                                on 2005/06/21  13:49:10
39614         Log: Trim trailing whitespace from $! and $^E
39615              
39616              (Fixes lib/Test/Simple/t/fail-more.t with bcc32 on Win32, and is
39617              good for consistency anyway)
39618      Branch: perl
39619            ! mg.c
39620 ____________________________________________________________________________
39621 [ 24924] By: nicholas                              on 2005/06/21  12:39:27
39622         Log: Avoid having NULL entries in the weakref backreference array, and
39623              make S_sv_add_backref O(1) (instead of O(n))
39624      Branch: perl
39625            ! sv.c
39626 ____________________________________________________________________________
39627 [ 24923] By: rgs                                   on 2005/06/21  12:12:10
39628         Log: Cleanup after this test
39629      Branch: perl
39630            ! lib/Archive/Tar/t/02_methods.t
39631 ____________________________________________________________________________
39632 [ 24922] By: rgs                                   on 2005/06/21  12:01:07
39633         Log: Add Archive::Tar 1.24, except ptar for now
39634      Branch: perl
39635            + lib/Archive/Tar.pm lib/Archive/Tar/Constant.pm
39636            + lib/Archive/Tar/File.pm lib/Archive/Tar/t/01_use.t
39637            + lib/Archive/Tar/t/02_methods.t lib/Archive/Tar/t/03_file.t
39638            + lib/Archive/Tar/t/99_pod.t lib/Archive/Tar/t/src/long/b
39639            + lib/Archive/Tar/t/src/long/bar.tar
39640            + lib/Archive/Tar/t/src/long/foo.tgz
39641            + lib/Archive/Tar/t/src/short/b
39642            + lib/Archive/Tar/t/src/short/bar.tar
39643            + lib/Archive/Tar/t/src/short/foo.tgz
39644            ! MANIFEST
39645 ____________________________________________________________________________
39646 [ 24921] By: nicholas                              on 2005/06/21  10:58:22
39647         Log: weak references aren't UVs, do don't show this in the dump flags.
39648      Branch: perl
39649            ! dump.c
39650 ____________________________________________________________________________
39651 [ 24920] By: rgs                                   on 2005/06/21  10:50:18
39652         Log: Subject: [PATCH] ternary operator cond ? foo : bar being parsed as ?...?
39653              From: Salvador Fandiño <sfandino@yahoo.com>
39654              Date: Fri, 17 Jun 2005 14:06:30 +0100
39655              Message-ID: <20050617130548.18776.qmail@lists.develooper.com>
39656              
39657              with wordings improvements suggested by Ronald J Kimball
39658      Branch: perl
39659            ! pod/perldiag.pod toke.c
39660 ____________________________________________________________________________
39661 [ 24919] By: nicholas                              on 2005/06/21  10:35:09
39662         Log: No need to set flags twice.
39663      Branch: perl
39664            ! av.c
39665 ____________________________________________________________________________
39666 [ 24918] By: nicholas                              on 2005/06/21  09:44:08
39667         Log: As there will be no old body to dispose of, we can return immediately.
39668      Branch: perl
39669            ! sv.c
39670 ____________________________________________________________________________
39671 [ 24917] By: rgs                                   on 2005/06/21  09:40:46
39672         Log: Fix [perl #36102] Data::Dumper Doesn't Stringify Numeric Labels
39673      Branch: perl
39674            ! ext/Data/Dumper/Dumper.pm ext/Data/Dumper/Dumper.xs
39675            ! ext/Data/Dumper/t/dumper.t
39676 ____________________________________________________________________________
39677 [ 24916] By: rgs                                   on 2005/06/21  07:03:40
39678         Log: Subject: Re: [perl #36310] sv_vcatpvfn() fails on some (very limited) situations 
39679              From: Tsutomu IKEGAMI <t-ikegami@aist.go.jp>
39680              Date: Fri, 17 Jun 2005 17:55:10 +0900 (JST)
39681              Message-Id: <20050617.175510.21285350.t-ikegami@aist.go.jp>
39682      Branch: perl
39683            ! sv.c
39684 ____________________________________________________________________________
39685 [ 24915] By: rgs                                   on 2005/06/20  16:28:38
39686         Log: Subject: [PATCH perl.h] FPTR2DPTR/DPTR2FPTR
39687              From: Robin Barker <Robin.Barker@npl.co.uk>
39688              Date: Mon, 20 Jun 2005 13:47:37 +0100
39689              Message-ID: <533D273D4014D411AB1D00062938C4D90849C6E4@hotel.npl.co.uk>
39690      Branch: perl
39691            ! perl.h
39692 ____________________________________________________________________________
39693 [ 24914] By: nicholas                              on 2005/06/20  15:21:59
39694         Log: Replace the non-const initialiser block + loop with a series of calls
39695              to a small static function.
39696              c.f. "I will replace you with a small shell script..."
39697      Branch: perl
39698            ! sv.c
39699 ____________________________________________________________________________
39700 [ 24913] By: rgs                                   on 2005/06/20  15:12:50
39701         Log: Subject: [PATCH] The continuing adventures of Constman and Localize Boy
39702              From: Andy Lester <andy@petdance.com>
39703              Date: Mon, 20 Jun 2005 10:22:37 -0500
39704              Message-ID: <20050620152237.GA5032@petdance.com>
39705      Branch: perl
39706            ! XSUB.h doop.c embed.fnc embed.h global.sym gv.c mg.c pad.c
39707            ! perl.h proto.h sv.c universal.c util.c
39708 ____________________________________________________________________________
39709 [ 24912] By: rgs                                   on 2005/06/20  13:32:52
39710         Log: Same fix, for the test, now.
39711      Branch: perl
39712            ! t/run/switches.t
39713 ____________________________________________________________________________
39714 [ 24911] By: rgs                                   on 2005/06/20  13:06:13
39715         Log: perl -v was outputting a double v (spotted by Jarkko)
39716      Branch: perl
39717            ! perl.c
39718 ____________________________________________________________________________
39719 [ 24910] By: rgs                                   on 2005/06/20  11:58:32
39720         Log: Remove signature test, which is always skipped
39721      Branch: perl
39722            - lib/Test/Simple/t/00signature.t
39723            ! MANIFEST
39724 ____________________________________________________________________________
39725 [ 24909] By: rgs                                   on 2005/06/20  11:45:02
39726         Log: Subject: [PATCH pod/perlfunc.pod pod/perlobj.pod pod/perltooc.pod] Recommend Against UNIVERSAL:: Methods as Functions, take 2
39727              From: chromatic <chromatic@wgz.org>
39728              Date: Sat, 18 Jun 2005 12:15:41 -0700
39729              Message-Id: <1119122141.21521.9.camel@localhost>
39730      Branch: perl
39731            ! pod/perlfunc.pod pod/perlobj.pod pod/perltooc.pod
39732 ____________________________________________________________________________
39733 [ 24908] By: rgs                                   on 2005/06/20  11:00:31
39734         Log: Remove the deprecated $# variable
39735      Branch: perl
39736            ! doio.c embedvar.h gv.c intrpvar.h mg.c perl.c perlapi.h
39737            ! pod/perldiag.pod sv.c t/lib/warnings/gv
39738 ____________________________________________________________________________
39739 [ 24907] By: nicholas                              on 2005/06/20  10:35:41
39740         Log: Silence warning in debug printf
39741      Branch: perl
39742            ! doop.c
39743 ____________________________________________________________________________
39744 [ 24906] By: rgs                                   on 2005/06/20  09:45:24
39745         Log: Subject: [PATCH] More random cleanups
39746              From: Andy Lester <andy@petdance.com>
39747              Date: Fri, 17 Jun 2005 09:50:29 -0500
39748              Message-ID: <20050617145029.GC11769@petdance.com>
39749      Branch: perl
39750            ! embed.fnc embed.h pp_ctl.c pp_sort.c proto.h scope.c
39751 ____________________________________________________________________________
39752 [ 24905] By: steveh                                on 2005/06/20  09:30:23
39753         Log: Support NV_ZERO_IS_ALLBITS_ZERO on Win32 (re: change 24898)
39754              
39755              The try.c test program added to Configure by change 24898 outputs
39756              "Yes" using each of VC++, GCC and BCC32, so here goes...
39757      Branch: perl
39758            ! win32/config.bc win32/config.gc win32/config.vc
39759            ! win32/config.vc64 win32/config_H.bc win32/config_H.gc
39760            ! win32/config_H.vc win32/config_H.vc64
39761 ____________________________________________________________________________
39762 [ 24904] By: rgs                                   on 2005/06/20  09:23:33
39763         Log: Hugo suggests this.
39764      Branch: perl
39765            ! pod/perlhack.pod
39766 ____________________________________________________________________________
39767 [ 24903] By: rgs                                   on 2005/06/20  09:20:40
39768         Log: Missed a chunk in previous commit
39769      Branch: perl
39770            ! pod/perlsyn.pod
39771 ____________________________________________________________________________
39772 [ 24902] By: rgs                                   on 2005/06/20  09:18:35
39773         Log: Subject: [perl #36328] Until Statement Undocumented 
39774              From: Eric Amick (via RT) <perlbug-followup@perl.org>
39775              Date: 18 Jun 2005 03:47:32 -0000
39776              Message-ID: <rt-3.0.11-36328-115949.3.38667506136829@perl.org>
39777      Branch: perl
39778            ! pod/perlsyn.pod
39779 ____________________________________________________________________________
39780 [ 24901] By: rgs                                   on 2005/06/20  09:06:57
39781         Log: Subject: Re: [PATCH replacement] Re: [perl #36313] perl -e "1for$[=0" crash
39782              From: Rick Delaney <rick@bort.ca>
39783              Date: Sun, 19 Jun 2005 09:47:22 -0400
39784              Message-ID: <20050619134722.GB31592@localhost.localdomain>
39785      Branch: perl
39786            ! op.c t/comp/parser.t
39787 ____________________________________________________________________________
39788 [ 24900] By: nicholas                              on 2005/06/20  08:19:52
39789         Log: S_del_body is sufficiently small that inlining it is a space win.
39790      Branch: perl
39791            ! sv.c
39792 ____________________________________________________________________________
39793 [ 24899] By: nicholas                              on 2005/06/19  15:12:26
39794         Log: If NV_ZERO_IS_ALLBITS_ZERO there's no need to explicitly set the NVX
39795              to 0.0, as the memset has already done it.
39796      Branch: perl
39797            ! sv.c
39798 ____________________________________________________________________________
39799 [ 24898] By: nicholas                              on 2005/06/19  15:11:06
39800         Log: Add a Configure test to see if NV 0.0 is stored as all bits zero, and
39801              #define NV_ZERO_IS_ALLBITS_ZERO if so.  This is always true on VMS:
39802              
39803              Subject: Re: Configure check for whether 0.0 is stored as all bits zero
39804              From: "Craig A. Berry" <craigberry@mac.com>
39805              Message-Id: <p06210214beda5bf31c4c@[172.16.52.1]>
39806              Date: Sat, 18 Jun 2005 18:23:59 -0500
39807      Branch: perl
39808            ! Configure Porting/Glossary config_h.SH configure.com
39809 ____________________________________________________________________________
39810 [ 24897] By: nicholas                              on 2005/06/19  10:22:58
39811         Log: Move the offset calculations outside of new_body/del_body.
39812              This makes some of the upgrade code slightly simpler.
39813      Branch: perl
39814            ! sv.c
39815 ____________________________________________________________________________
39816 [ 24896] By: nicholas                              on 2005/06/18  22:43:58
39817         Log: Refactor sv_dup to memcpy from source to destination, and only
39818              explicitly copy the structure members that need explicit duplication.
39819      Branch: perl
39820            ! sv.c
39821 ____________________________________________________________________________
39822 [ 24895] By: nicholas                              on 2005/06/18  16:33:41
39823         Log: Squeeze a little more savings by moving pte and he arenas into the
39824              common arena free code.
39825      Branch: perl
39826            ! hv.h perl.h sv.c
39827 ____________________________________________________________________________
39828 [ 24894] By: nicholas                              on 2005/06/18  15:07:47
39829         Log: Subject: [PATCH] squeeze repetition out of Perl_sv_free_arenas
39830              From: Jim Cromie <jcromie@divsol.com>
39831              Message-ID: <42B3C388.2090902@divsol.com>
39832              Date: Sat, 18 Jun 2005 00:47:36 -0600
39833      Branch: perl
39834            ! sv.c
39835 ____________________________________________________________________________
39836 [ 24893] By: nicholas                              on 2005/06/18  14:28:04
39837         Log: update AVs and HVs using the old_body, and remove all of the local
39838              variables used to hold the SV body piecemeal.
39839      Branch: perl
39840            ! sv.c
39841 ____________________________________________________________________________
39842 [ 24892] By: nicholas                              on 2005/06/18  10:57:02
39843         Log: sv_upgrade by memcpy
39844              AV and HV cases need tidyup
39845      Branch: perl
39846            ! sv.c
39847 ____________________________________________________________________________
39848 [ 24891] By: nicholas                              on 2005/06/17  19:37:56
39849         Log: Fix compiling with -DPURIFY
39850      Branch: perl
39851            ! sv.c
39852 ____________________________________________________________________________
39853 [ 24890] By: nicholas                              on 2005/06/17  17:30:19
39854         Log: Change 24886 was buggy - should be taking (and passing in) the
39855              address of the arena.
39856      Branch: perl
39857            ! sv.c
39858 ____________________________________________________________________________
39859 [ 24889] By: rgs                                   on 2005/06/17  15:43:11
39860         Log: Add new internal error message to perldiag
39861      Branch: perl
39862            ! pod/perldiag.pod
39863 ____________________________________________________________________________
39864 [ 24888] By: nicholas                              on 2005/06/17  15:37:50
39865         Log: Collect a little more information about the body we're getting rid of
39866      Branch: perl
39867            ! sv.c
39868 ____________________________________________________________________________
39869 [ 24887] By: rgs                                   on 2005/06/17  14:44:43
39870         Log: Missing aTHX_ (noticed by Jim Cromie)
39871      Branch: perl
39872            ! sv.c
39873 ____________________________________________________________________________
39874 [ 24886] By: nicholas                              on 2005/06/17  14:28:07
39875         Log: Move freeing the old body after the creating of the new body.
39876      Branch: perl
39877            ! sv.c
39878 ____________________________________________________________________________
39879 [ 24885] By: nicholas                              on 2005/06/17  13:42:03
39880         Log: The only way is up!
39881              (*up*grades. Or croak)
39882      Branch: perl
39883            ! sv.c
39884 ____________________________________________________________________________
39885 [ 24884] By: rgs                                   on 2005/06/17  12:21:53
39886         Log: Subject: [perl #36199] [PATCH] 5.8.7 fails to build with parallel make 
39887              From: "Steve Peters via RT" <perlbug-followup@perl.org>
39888              Date: 16 Jun 2005 17:11:14 -0000
39889              Message-ID: <rt-3.0.11-36199-115872.8.39962488213992@perl.org>
39890      Branch: perl
39891            ! Makefile.SH
39892 ____________________________________________________________________________
39893 [ 24883] By: steveh                                on 2005/06/17  11:36:45
39894         Log: Silence STDERR grumblings from Borland's math library.
39895              
39896              This fixes failures in ext/B/t/deparse.t and lib/warnings.t (and
39897              renders change 24870 obsolete, hence it is reverted here).
39898      Branch: perl
39899            ! lib/warnings.t makedef.pl win32/win32.c
39900 ____________________________________________________________________________
39901 [ 24882] By: rgs                                   on 2005/06/17  09:26:25
39902         Log: Upgrade to PathTools 3.09
39903      Branch: perl
39904            ! ext/Cwd/Changes ext/Cwd/Cwd.xs ext/Cwd/t/cwd.t lib/Cwd.pm
39905            ! lib/File/Spec.pm
39906 ____________________________________________________________________________
39907 [ 24881] By: nicholas                              on 2005/06/17  08:35:48
39908         Log: new_pte/del_pte can use new_body/del_body too
39909      Branch: perl
39910            ! sv.c
39911 ____________________________________________________________________________
39912 [ 24880] By: steveh                                on 2005/06/17  08:28:32
39913         Log: Subject: [PATCH] Strip \\?\ prefix from Perl path in win32/win32.c:set_w32_module_name()
39914              From: "Jan Dubois" <jand@ActiveState.com>
39915              Date: Thu, 16 Jun 2005 11:43:15 -0700
39916              Message-Id: <200506161843.j5GIhKhL024472@smtp3.ActiveState.com>
39917      Branch: perl
39918            ! win32/win32.c
39919 ____________________________________________________________________________
39920 [ 24879] By: nicholas                              on 2005/06/16  22:08:29
39921         Log: Storing the ixv for magic arrays seems to cause double free errors on
39922              OS X. This all feels like voodoo.
39923      Branch: perl
39924            ! ext/B/B/Bytecode.pm
39925 ____________________________________________________________________________
39926 [ 24878] By: nicholas                              on 2005/06/16  22:06:57
39927         Log: Replace all the new/del static functions with calls to a single pair
39928              of functions that uproot/plant bodies
39929      Branch: perl
39930            ! embed.fnc embed.h proto.h sv.c
39931 ____________________________________________________________________________
39932 [ 24877] By: nicholas                              on 2005/06/16  19:28:20
39933         Log: Making more_* return a pointer, and swapping to a ternary ?: in
39934              new_* seems to generate slightly terser object code.
39935      Branch: perl
39936            ! sv.c
39937 ____________________________________________________________________________
39938 [ 24876] By: nicholas                              on 2005/06/16  18:37:55
39939         Log: Replace all the S_more_* functions with a single function.
39940              Saves 1.5K on the object file in OS X when built with -Os
39941      Branch: perl
39942            ! sv.c
39943 ____________________________________________________________________________
39944 [ 24875] By: nicholas                              on 2005/06/16  16:25:54
39945         Log: Subject: [PATCH] Re: [perl #36048] Refactor S_more_*v into one function
39946              From: Jim Cromie <jcromie@divsol.com>
39947              Message-ID: <42ADC8ED.4090009@divsol.com>
39948              Date: Mon, 13 Jun 2005 11:57:01 -0600
39949      Branch: perl
39950            ! sv.c
39951 ____________________________________________________________________________
39952 [ 24874] By: nicholas                              on 2005/06/16  15:09:00
39953         Log: I'm not convinced that manually creating HVs via sv_upgrade is a great
39954              idea, but as we are, turning on shared keys makes sense.
39955      Branch: perl
39956            ! util.c
39957 ____________________________________________________________________________
39958 [ 24873] By: merijn                                on 2005/06/16  14:33:10
39959         Log: Subject: [PATCH] Lint support
39960              From: Andy Lester <andy@petdance.com>
39961              Date: Thu, 16 Jun 2005 09:35:21 -0500
39962              Message-ID: <20050616143521.GB22188@petdance.com>
39963      Branch: perl
39964            ! XSUB.h perl.h universal.c
39965 ____________________________________________________________________________
39966 [ 24872] By: merijn                                on 2005/06/16  14:24:43
39967         Log: Subject: Re: a warning for a ExtUtils::ParseXS test
39968              From: Ken Williams <ken@mathforum.org>
39969              Date: Wed, 15 Jun 2005 20:00:42 -0500
39970              Message-Id: <29d2a69650cb39059c9af487069b941c@mathforum.org>
39971      Branch: perl
39972            ! lib/ExtUtils/ParseXS/t/XSTest.xs
39973 ____________________________________________________________________________
39974 [ 24871] By: rgs                                   on 2005/06/16  13:55:18
39975         Log: Subject: [PATCH] Removing /*SUPPRESS xxx*/
39976              From: Andy Lester <andy@petdance.com>
39977              Date: Thu, 16 Jun 2005 09:13:42 -0500
39978              Message-ID: <20050616141342.GA22188@petdance.com>
39979      Branch: perl
39980            ! av.c doio.c doop.c perl.c pp.c pp_hot.c pp_sys.c regcomp.c
39981            ! regexec.c sv.c toke.c util.c
39982 ____________________________________________________________________________
39983 [ 24870] By: steveh                                on 2005/06/16  13:16:56
39984         Log: Teach lib/warnings.t about Borland CRT error messages
39985      Branch: perl
39986            ! lib/warnings.t
39987 ____________________________________________________________________________
39988 [ 24869] By: rgs                                   on 2005/06/16  12:54:18
39989         Log: Subject: [perl #36237] IO::File $fh->binmode($layer) is broken 
39990              From: "Alexander Foken" (via RT) <perlbug-followup@perl.org>
39991              Date: 10 Jun 2005 12:46:41 -0000
39992              Message-ID: <rt-3.0.11-36237-115536.13.400290704223@perl.org>
39993              
39994              and bump version number
39995      Branch: perl
39996            ! ext/IO/lib/IO/File.pm
39997 ____________________________________________________________________________
39998 [ 24868] By: steveh                                on 2005/06/16  11:10:01
39999         Log: Update README.win32
40000              
40001              (Mention Borland compiler is also free; update libwin32 link)
40002      Branch: perl
40003            ! README.win32
40004 ____________________________________________________________________________
40005 [ 24867] By: steveh                                on 2005/06/16  11:00:19
40006         Log: Give op/taint.t a helping hand for Borland compiler on Win32
40007      Branch: perl
40008            ! t/op/taint.t
40009 ____________________________________________________________________________
40010 [ 24866] By: steveh                                on 2005/06/16  09:51:33
40011         Log: Fix changes 24862 and 24863 for Sarathy's old dmake
40012      Branch: perl
40013            ! win32/makefile.mk
40014 ____________________________________________________________________________
40015 [ 24865] By: rgs                                   on 2005/06/16  09:45:59
40016         Log: Subs with builtin attributes shouldn't be made constant
40017              
40018              Subject: Re: [perl #36297] builtin attrs on subrutine declarations
40019              From: Salvador "FandiXo" <sfandino@yahoo.com>
40020              Date: Wed, 15 Jun 2005 08:27:00 -0700 (PDT)
40021              Message-ID: <20050615152700.96320.qmail@web52702.mail.yahoo.com>
40022      Branch: perl
40023            ! op.c
40024 ____________________________________________________________________________
40025 [ 24864] By: rgs                                   on 2005/06/16  09:18:58
40026         Log: Add -f in perl synopsys, sync perl.pod and perlrun.pod synopses
40027      Branch: perl
40028            ! pod/perl.pod pod/perlrun.pod
40029 ____________________________________________________________________________
40030 [ 24863] By: steveh                                on 2005/06/16  09:09:22
40031         Log: Simplify win32/makefile.mk for static extensions with GCC
40032      Branch: perl
40033            ! win32/makefile.mk
40034 ____________________________________________________________________________
40035 [ 24862] By: steveh                                on 2005/06/16  08:51:14
40036         Log: Enable static extensions with Borland compiler on Win32
40037      Branch: perl
40038            ! win32/buildext.pl win32/makefile.mk
40039 ____________________________________________________________________________
40040 [ 24861] By: rgs                                   on 2005/06/16  08:29:10
40041         Log: Revert part of change #24854
40042      Branch: perl
40043            ! ext/Devel/DProf/t/DProf.t perl.c
40044 ____________________________________________________________________________
40045 [ 24860] By: steveh                                on 2005/06/16  07:40:21
40046         Log: Don't export Perl_stashpv_hvname_match when !USE_ITHREADS
40047              
40048              (Fixes a linker error on Win 32 introduced by change #24847)
40049      Branch: perl
40050            ! makedef.pl
40051 ____________________________________________________________________________
40052 [ 24859] By: nicholas                              on 2005/06/15  22:32:14
40053         Log: Don't write bytecode to load the NVX of AVs and HVs
40054      Branch: perl
40055            ! ext/B/B/Bytecode.pm
40056 ____________________________________________________________________________
40057 [ 24858] By: nicholas                              on 2005/06/15  22:31:41
40058         Log: We were failing to pring "not ok" if the text exited uncleanly
40059      Branch: perl
40060            ! ext/B/t/bytecode.t
40061 ____________________________________________________________________________
40062 [ 24857] By: nicholas                              on 2005/06/15  22:30:53
40063         Log: assert that you aren't assigning to the NVX of an AV or HV
40064      Branch: perl
40065            ! sv.h
40066 ____________________________________________________________________________
40067 [ 24856] By: rgs                                   on 2005/06/15  16:37:46
40068         Log: Introduce PERL_RUNPERL_DEBUG to alter the behavior of runperl(),
40069              this can be useful to use valgrind for example
40070      Branch: perl
40071            ! t/test.pl
40072 ____________________________________________________________________________
40073 [ 24855] By: steveh                                on 2005/06/15  16:30:58
40074         Log: Fix $Config{ccversion} for Borland C++ 5.5.1
40075              
40076              This pattern match seems a little saner, and stops " for Win32"
40077              getting picked up from the following output:
40078              
40079              Borland C++ 5.5.1 for Win32 Copyright (c) 1993, 2000 Borland
40080              
40081              Maybe it breaks older versions, but at least the latest now works
40082              correctly. If anyone knows what older versions' messages look like
40083              then speak up!
40084      Branch: perl
40085            ! win32/config_sh.PL
40086 ____________________________________________________________________________
40087 [ 24854] By: rgs                                   on 2005/06/15  16:24:05
40088         Log: Subject: Re: [PATCH] make -f invalid when USE_SITECUSTOMIZE isn't set
40089              From: Steve Peters <steve@fisharerojo.org>
40090              Date: Wed, 15 Jun 2005 11:30:41 -0500
40091              Message-ID: <20050615163040.GA14745@mccoy.peters.homeunix.org>
40092      Branch: perl
40093            ! ext/Devel/DProf/t/DProf.t perl.c
40094 ____________________________________________________________________________
40095 [ 24853] By: rgs                                   on 2005/06/15  16:16:32
40096         Log: Subject: sort optimization
40097              From: Salvador Fandiño <sfandino@yahoo.com>
40098              Date: Mon, 06 Jun 2005 12:05:05 +0100
40099              Message-ID: <20050606110425.22941.qmail@lists.develooper.com>
40100      Branch: perl
40101            ! pp_sort.c
40102 ____________________________________________________________________________
40103 [ 24852] By: steveh                                on 2005/06/15  16:02:06
40104         Log: Fix win32/makefile.mk for building with bcc32 5.5.1 and dmake 4.4
40105      Branch: perl
40106            ! win32/makefile.mk
40107 ____________________________________________________________________________
40108 [ 24851] By: rgs                                   on 2005/06/15  14:40:40
40109         Log: Subject: [perl #36297] builtin attrs on subrutine declarations 
40110              From: Salvador "FandiXXo" (via RT) <perlbug-followup@perl.org>
40111              Date: 15 Jun 2005 13:54:53 -0000
40112              Message-ID: <rt-3.0.11-36297-115797.8.75971493113916@perl.org>
40113      Branch: perl
40114            ! op.c t/op/attrs.t
40115 ____________________________________________________________________________
40116 [ 24850] By: merijn                                on 2005/06/15  13:57:57
40117         Log: Protect Perl_sv_2pvbyte () to NULL length pointers
40118              Thanks Nick!
40119      Branch: perl
40120            ! sv.c
40121 ____________________________________________________________________________
40122 [ 24849] By: rgs                                   on 2005/06/15  13:55:50
40123         Log: Better phrasing
40124      Branch: perl
40125            ! pod/perlfunc.pod
40126 ____________________________________________________________________________
40127 [ 24848] By: rgs                                   on 2005/06/15  09:27:55
40128         Log: Subject: [PATCH] Storable/Storable.xs: make plain C functions static
40129              From: Alexey Tourbin <at@altlinux.ru>
40130              Date: Sun, 5 Jun 2005 03:42:42 +0400
40131              Message-ID: <20050604234242.GW5867@solemn.turbinal.org>
40132      Branch: perl
40133            ! ext/Storable/Storable.xs
40134 ____________________________________________________________________________
40135 [ 24847] By: rgs                                   on 2005/06/15  09:03:22
40136         Log: Subject: [PATCH] CopSTASH_eq again
40137              From: Andy Lester <andy@petdance.com>
40138              Date: Tue, 14 Jun 2005 23:49:26 -0500
40139              Message-ID: <20050615044926.GA29087@petdance.com>
40140      Branch: perl
40141            ! cop.h embed.fnc embed.h global.sym proto.h util.c
40142 ____________________________________________________________________________
40143 [ 24846] By: rgs                                   on 2005/06/15  07:49:48
40144         Log: Fix warning nits, by Jarkko
40145      Branch: perl
40146            ! sv.c
40147 ____________________________________________________________________________
40148 [ 24845] By: nicholas                              on 2005/06/14  19:28:28
40149         Log: Subject: [PATCH] S_emulate_eaccess() does return a value
40150              From: Steve Peters <steve@fisharerojo.org>
40151              Message-ID: <20050614193052.GA1898@mccoy.peters.homeunix.org>
40152              Date: Tue, 14 Jun 2005 14:30:52 -0500
40153      Branch: perl
40154            ! embed.fnc proto.h
40155 ____________________________________________________________________________
40156 [ 24844] By: davem                                 on 2005/06/14  17:24:18
40157         Log: whoops, Perl_magic_freearylen_p returns int
40158      Branch: perl
40159            ! mg.c
40160 ____________________________________________________________________________
40161 [ 24843] By: nicholas                              on 2005/06/14  16:29:49
40162         Log: Change 24838 breaks deparse.t, which checks that embedded NULs work.
40163              Here's a temporary hack, pending a way for B to correctly identify
40164              PVs that are variable names in pads.
40165      Branch: perl
40166            ! ext/B/B.xs
40167 ____________________________________________________________________________
40168 [ 24842] By: rgs                                   on 2005/06/14  13:49:41
40169         Log: Add core test preamble
40170      Branch: perl
40171            ! lib/IO/Zlib/t/basic.t lib/IO/Zlib/t/external.t
40172            ! lib/IO/Zlib/t/getc.t lib/IO/Zlib/t/getline.t
40173            ! lib/IO/Zlib/t/import.t lib/IO/Zlib/t/large.t
40174            ! lib/IO/Zlib/t/tied.t lib/IO/Zlib/t/uncomp1.t
40175            ! lib/IO/Zlib/t/uncomp2.t
40176 ____________________________________________________________________________
40177 [ 24841] By: nicholas                              on 2005/06/14  13:40:49
40178         Log: Test was coredumping with a shared perl library.
40179              This is wrong. It seems that what gets peephole optimised
40180              (in this case named method calls into shared string scalars) depends
40181              on whether there is a shared perl library.
40182              Anyway, fix the symptom - the coredump.
40183      Branch: perl
40184            ! ext/XS/APItest/t/hash.t
40185 ____________________________________________________________________________
40186 [ 24840] By: steveh                                on 2005/06/14  13:36:03
40187         Log: Stop "test" filename clashing with "TEST" on Win32
40188              
40189              (and bump $IO::Zlib::VERSION again)
40190      Branch: perl
40191            ! lib/IO/Zlib.pm lib/IO/Zlib/t/uncomp1.t lib/IO/Zlib/t/uncomp2.t
40192 ____________________________________________________________________________
40193 [ 24839] By: steveh                                on 2005/06/14  13:26:30
40194         Log: Actually skip tests when they're supposed to be skipped!
40195              
40196              (and bump $IO::Zlib::VERSION)
40197      Branch: perl
40198            ! lib/IO/Zlib.pm lib/IO/Zlib/t/external.t
40199 ____________________________________________________________________________
40200 [ 24838] By: rgs                                   on 2005/06/14  13:22:20
40201         Log: Subject: [PATCH] Fix for SEGV in ext/B/t/xref.t on OpenBSD
40202              From: Steve Peters <steve@fisharerojo.org>
40203              Date: Tue, 14 Jun 2005 08:16:38 -0500
40204              Message-ID: <20050614131638.GA24771@mccoy.peters.homeunix.org>
40205      Branch: perl
40206            ! ext/B/B.xs
40207 ____________________________________________________________________________
40208 [ 24837] By: steveh                                on 2005/06/14  13:13:17
40209         Log: Don't delete IO/Zlib during distclean on Win32
40210              
40211              (IO/Socket still needs to go, though)
40212      Branch: perl
40213            ! win32/Makefile win32/makefile.mk
40214 ____________________________________________________________________________
40215 [ 24836] By: rgs                                   on 2005/06/14  13:02:24
40216         Log: Document ${^UTF8LOCALE}
40217      Branch: perl
40218            ! pod/perlvar.pod
40219 ____________________________________________________________________________
40220 [ 24835] By: rgs                                   on 2005/06/14  12:12:33
40221         Log: Add IO::Zlib in maintainers list
40222      Branch: perl
40223            ! Porting/Maintainers.pl
40224 ____________________________________________________________________________
40225 [ 24834] By: rgs                                   on 2005/06/14  12:06:40
40226         Log: Add IO::Zlib 1.04 to bleadperl
40227      Branch: perl
40228            + lib/IO/Zlib.pm lib/IO/Zlib/t/basic.t lib/IO/Zlib/t/external.t
40229            + lib/IO/Zlib/t/getc.t lib/IO/Zlib/t/getline.t
40230            + lib/IO/Zlib/t/import.t lib/IO/Zlib/t/large.t
40231            + lib/IO/Zlib/t/tied.t lib/IO/Zlib/t/uncomp1.t
40232            + lib/IO/Zlib/t/uncomp2.t
40233            ! MANIFEST Makefile.SH
40234 ____________________________________________________________________________
40235 [ 24833] By: davem                                 on 2005/06/14  10:15:10
40236         Log: Perl_magic_freearylen_p could coredump
40237      Branch: perl
40238            ! mg.c
40239 ____________________________________________________________________________
40240 [ 24832] By: rgs                                   on 2005/06/14  08:52:46
40241         Log: Subject: better assertion support
40242              From: Salvador Fandiño <sfandino@yahoo.com>
40243              Date: Mon, 13 Jun 2005 16:48:01 +0100
40244              Message-ID: <20050613154719.29295.qmail@lists.develooper.com>
40245      Branch: perl
40246            + lib/assertions/compat.pm t/comp/asstcompat.t
40247            ! MANIFEST lib/assertions.pm lib/assertions/activate.pm perl.c
40248            ! pod/perlrun.pod t/comp/assertions.t t/run/switch_A.t
40249 ____________________________________________________________________________
40250 [ 24831] By: rgs                                   on 2005/06/14  08:31:18
40251         Log: Since the version module is use'd afterwards, use_ok needs to be
40252              in a BEGIN block
40253      Branch: perl
40254            ! lib/version.t
40255 ____________________________________________________________________________
40256 [ 24830] By: steveh                                on 2005/06/14  07:42:33
40257         Log: Add BUILDOPTEXTRA to Win32 makefiles
40258              
40259              This allows extra build options, e.g. -DNO_HASH_SEED, to be
40260              specified on the command line, which is otherwise not possible
40261              under nmake using the existing BUILDOPT macro
40262              
40263              Suggested by Jan Dubois <jand@ActiveState.com>
40264      Branch: perl
40265            ! win32/Makefile win32/makefile.mk
40266 ____________________________________________________________________________
40267 [ 24829] By: nicholas                              on 2005/06/13  22:29:00
40268         Log: Pay attention to the comments that Dave writes.
40269      Branch: perl
40270            ! sv.c
40271 ____________________________________________________________________________
40272 [ 24828] By: rgs                                   on 2005/06/13  20:22:52
40273         Log: Comment nit to help Devel::Cover, spotted by Steve Peters
40274      Branch: perl
40275            ! ext/POSIX/POSIX.xs
40276 ____________________________________________________________________________
40277 [ 24827] By: nicholas                              on 2005/06/13  20:18:57
40278         Log: Croak if an attempt is made to modify PL_strtab
40279              (er, TODO - these should be in perldiag)
40280      Branch: perl
40281            ! ext/XS/APItest/APItest.pm ext/XS/APItest/APItest.xs
40282            ! ext/XS/APItest/t/hash.t hv.c
40283 ____________________________________________________________________________
40284 [ 24826] By: nicholas                              on 2005/06/13  20:17:56
40285         Log: More SvPV consting
40286      Branch: perl
40287            ! perl.c
40288 ____________________________________________________________________________
40289 [ 24825] By: steveh                                on 2005/06/13  16:35:19
40290         Log: Subject: [PATCH @ 24819] Re: Change 24806: improve static build for win32/Makefile
40291              From: vadim <vadim@vkonovalov.ru>
40292              Date: Mon, 13 Jun 2005 15:41:41 -0400
40293              Message-Id: <1118691701.6333.32.camel@mdk10>
40294      Branch: perl
40295            ! win32/Makefile win32/makefile.mk
40296 ____________________________________________________________________________
40297 [ 24824] By: nicholas                              on 2005/06/13  16:24:57
40298         Log: With shared hash key scalars now accessing the hash via the PVX, you
40299              can't fake them with regular PVIVs. So fake method calls have to use
40300              real shared hask key scalars.
40301      Branch: perl
40302            ! ext/B/t/optree_specials.t op.c
40303 ____________________________________________________________________________
40304 [ 24823] By: rgs                                   on 2005/06/13  15:20:05
40305         Log: Subject: [PATCH] Bring bleadperl up to version.pm
40306              From: John Peacock <jpeacock@rowman.com>
40307              Date: Mon, 06 Jun 2005 05:18:21 -0400
40308              Message-ID: <42A414DD.8090504@rowman.com>
40309      Branch: perl
40310            ! configpm embed.fnc lib/h2xs.t lib/version.pm lib/version.t
40311            ! pod/perlapi.pod pp_ctl.c proto.h t/comp/require.t t/comp/use.t
40312            ! t/op/universal.t t/op/ver.t universal.c util.c utils/h2xs.PL
40313 ____________________________________________________________________________
40314 [ 24822] By: rgs                                   on 2005/06/13  12:49:18
40315         Log: Subject: [PATCH] Re: [perl #36047] perlmod.pod/CLONESKIP error
40316              From: Offer Kaye <offer.kaye@gmail.com>
40317              Date: Thu, 2 Jun 2005 09:14:53 +0300
40318              Message-ID: <56942505060123146e5eb1c2@mail.gmail.com>
40319      Branch: perl
40320            ! pod/perlmod.pod
40321 ____________________________________________________________________________
40322 [ 24821] By: nicholas                              on 2005/06/13  11:48:05
40323         Log: Change 24816 forgot to update makedef.pl
40324      Branch: perl
40325            ! makedef.pl
40326 ____________________________________________________________________________
40327 [ 24820] By: rgs                                   on 2005/06/13  11:28:43
40328         Log: Make some variables global, to avoid some "will not stay
40329              shared" warnings at compile time
40330      Branch: perl
40331            ! lib/ExtUtils/ParseXS.pm
40332 ____________________________________________________________________________
40333 [ 24819] By: nicholas                              on 2005/06/13  09:43:18
40334         Log: S_share_hek_flags can revert to returning a HEK
40335      Branch: perl
40336            ! embed.fnc hv.c proto.h
40337 ____________________________________________________________________________
40338 [ 24818] By: rgs                                   on 2005/06/13  09:13:43
40339         Log: Remove MANIFEST for Compress::Zlib
40340      Branch: perl
40341            - ext/Compress/Zlib/MANIFEST
40342            ! MANIFEST
40343 ____________________________________________________________________________
40344 [ 24817] By: rgs                                   on 2005/06/13  09:00:00
40345         Log: Make SvUPGRADE always have the value '1'
40346              Make sv_upgrade a void function
40347      Branch: perl
40348            ! embed.fnc pod/perlapi.pod proto.h sv.c sv.h
40349 ____________________________________________________________________________
40350 [ 24816] By: nicholas                              on 2005/06/13  08:25:53
40351         Log: We no longer need PL_shared_hek_table
40352      Branch: perl
40353            ! embedvar.h ext/threads/threads.xs intrpvar.h perl.c perlapi.h
40354            ! sv.c
40355 ____________________________________________________________________________
40356 [ 24815] By: rgs                                   on 2005/06/13  07:58:31
40357         Log: Help "make distclean"
40358      Branch: perl
40359            ! Makefile.SH
40360 ____________________________________________________________________________
40361 [ 24814] By: nicholas                              on 2005/06/12  23:40:55
40362         Log: Clone all shared string PVs as shared string PVs (now that we can do
40363              it very efficiently)
40364      Branch: perl
40365            ! sv.c
40366 ____________________________________________________________________________
40367 [ 24813] By: nicholas                              on 2005/06/12  22:34:39
40368         Log: duping shared hask key scalars can use hek_dup
40369      Branch: perl
40370            ! sv.c
40371 ____________________________________________________________________________
40372 [ 24812] By: nicholas                              on 2005/06/12  22:33:51
40373         Log: hek_dup can now store the HEK rather than the HE, as there is now a
40374              fast way to share a hek
40375      Branch: perl
40376            ! hv.c
40377 ____________________________________________________________________________
40378 [ 24811] By: nicholas                              on 2005/06/12  21:59:34
40379         Log: Provide share_hek_hek, and use it for fast copying of shared string
40380              scalars.
40381      Branch: perl
40382            ! hv.h sv.c
40383 ____________________________________________________________________________
40384 [ 24810] By: nicholas                              on 2005/06/12  21:58:23
40385         Log: Compare HE *s in S_unshare_hek_or_pvn's tight hek loop, rather than
40386              HEKs
40387      Branch: perl
40388            ! hv.c
40389 ____________________________________________________________________________
40390 [ 24809] By: nicholas                              on 2005/06/12  21:08:33
40391         Log: Shortcut chasing round strtab when we're not the last reference.
40392      Branch: perl
40393            ! hv.c
40394 ____________________________________________________________________________
40395 [ 24808] By: nicholas                              on 2005/06/12  20:00:18
40396         Log: In the shared string table, store the HE and HEK next to each other
40397              in one malloc()ed block.
40398      Branch: perl
40399            ! hv.c hv.h
40400 ____________________________________________________________________________
40401 [ 24807] By: merijn                                on 2005/06/12  09:58:32
40402         Log: Subject: [PATCH] perlipc.pod: mkfifo()
40403              From: Alexey Tourbin <at@altlinux.ru>
40404              Date: Sat, 11 Jun 2005 16:26:56 +0400
40405              Message-ID: <20050611122656.GC8181@solemn.turbinal.org>
40406      Branch: perl
40407            ! pod/perlipc.pod
40408 ____________________________________________________________________________
40409 [ 24806] By: merijn                                on 2005/06/12  09:54:07
40410         Log: Subject: improve static build for win32/Makefile
40411              From: vadim <vadim@vkonovalov.ru>
40412              Date: Sun, 12 Jun 2005 14:09:11 -0400
40413              Message-Id: <1118599750.2732.2.camel@mdk10>
40414      Branch: perl
40415            ! win32/Makefile
40416 ____________________________________________________________________________
40417 [ 24805] By: merijn                                on 2005/06/12  09:19:38
40418         Log: Subject: RE: 05gzsetp.t and initial 'ver' in test output
40419              From: "Paul Marquess" <Paul.Marquess@ntlworld.com>
40420              Date: Sat, 11 Jun 2005 22:23:00 +0100
40421              Message-Id: <20050611212234.UGOL29707.aamta11-winn.ispmail.ntl.com@MARQUESSPT21>
40422      Branch: perl
40423            ! ext/Compress/Zlib/Makefile.PL ext/Compress/Zlib/Zlib.pm
40424            ! ext/Compress/Zlib/t/05gzsetp.t
40425 ____________________________________________________________________________
40426 [ 24804] By: nicholas                              on 2005/06/11  21:05:29
40427         Log: This isn't an LVALUE, so make the compiler enforce that.
40428      Branch: perl
40429            ! sv.h
40430 ____________________________________________________________________________
40431 [ 24803] By: nicholas                              on 2005/06/11  18:01:32
40432         Log: hash key code cleanup
40433      Branch: perl
40434            ! embed.fnc hv.c hv.h proto.h
40435 ____________________________________________________________________________
40436 [ 24802] By: nicholas                              on 2005/06/11  17:00:52
40437         Log: Shrink shared hash scalars from PVIV to PV
40438      Branch: perl
40439            ! embed.fnc embed.h proto.h sv.c sv.h
40440 ____________________________________________________________________________
40441 [ 24801] By: nicholas                              on 2005/06/11  14:08:00
40442         Log: Propagate const/mutable/not into the SvPV call for retrieving an
40443              overloaded value.
40444      Branch: perl
40445            ! sv.c
40446 ____________________________________________________________________________
40447 [ 24800] By: nicholas                              on 2005/06/10  23:12:29
40448         Log: More SvPV consting. And other related drive-by refactoring.
40449      Branch: perl
40450            ! regcomp.c regexec.c taint.c toke.c universal.c utf8.c util.c
40451            ! xsutils.c
40452 ____________________________________________________________________________
40453 [ 24799] By: nicholas                              on 2005/06/10  22:06:15
40454         Log: More SvPV consting, including some code cleanup and living dangerously
40455              with socket API calls.
40456      Branch: perl
40457            ! pp.c pp_ctl.c pp_hot.c pp_pack.c pp_sort.c pp_sys.c
40458 ____________________________________________________________________________
40459 [ 24798] By: nicholas                              on 2005/06/10  20:48:35
40460         Log: Move SvPV consting, remove an n_a, and correct one error in Move()
40461      Branch: perl
40462            ! doio.c doop.c dump.c op.c sv.c
40463 ____________________________________________________________________________
40464 [ 24797] By: nicholas                              on 2005/06/10  18:42:47
40465         Log: Allison says that "Media" isn't really needed in the name.
40466      Branch: perl
40467            ! pod/perl.pod
40468 ____________________________________________________________________________
40469 [ 24796] By: nicholas                              on 2005/06/10  16:26:43
40470         Log: Add SvGROW_mutable
40471      Branch: perl
40472            ! sv.c sv.h
40473 ____________________________________________________________________________
40474 [ 24795] By: nicholas                              on 2005/06/10  15:44:47
40475         Log: Passing read only values (such as string constants) to select should
40476              croak.
40477      Branch: perl
40478            + t/op/sselect.t
40479            ! MANIFEST pp_sys.c
40480 ____________________________________________________________________________
40481 [ 24794] By: nicholas                              on 2005/06/10  15:16:43
40482         Log: Don't pass constants to select
40483      Branch: perl
40484            ! t/op/lex_assign.t
40485 ____________________________________________________________________________
40486 [ 24793] By: rgs                                   on 2005/06/10  13:44:35
40487         Log: Pre-run and disarm the code automodification run by
40488              Compress::Zlib's Makefile
40489      Branch: perl
40490            ! ext/Compress/Zlib/Makefile.PL ext/Compress/Zlib/Zlib.pm
40491            ! ext/Compress/Zlib/examples/filtdef
40492            ! ext/Compress/Zlib/examples/filtinf
40493            ! ext/Compress/Zlib/examples/gzcat
40494            ! ext/Compress/Zlib/examples/gzgrep
40495            ! ext/Compress/Zlib/examples/gzstream
40496            ! ext/Compress/Zlib/t/01version.t ext/Compress/Zlib/t/02zlib.t
40497            ! ext/Compress/Zlib/t/03examples.t
40498            ! ext/Compress/Zlib/t/04encoding.t
40499            ! ext/Compress/Zlib/t/05gzsetp.t ext/Compress/Zlib/t/06gzdopen.t
40500 ____________________________________________________________________________
40501 [ 24792] By: rgs                                   on 2005/06/10  12:53:21
40502         Log: Update Windows makefiles
40503      Branch: perl
40504            ! win32/Makefile win32/makefile.mk
40505 ____________________________________________________________________________
40506 [ 24791] By: nicholas                              on 2005/06/10  12:44:30
40507         Log: Work around bug 36211, plus a lot of TODO regression tests for local/
40508              $#... interaction. 
40509      Branch: perl
40510            ! scope.c t/op/array.t
40511 ____________________________________________________________________________
40512 [ 24790] By: rgs                                   on 2005/06/10  12:44:02
40513         Log: Update maintainers list
40514      Branch: perl
40515            ! Porting/Maintainers.pl
40516 ____________________________________________________________________________
40517 [ 24789] By: rgs                                   on 2005/06/10  12:30:14
40518         Log: Bump version number
40519      Branch: perl
40520            ! ext/Compress/Zlib/Zlib.pm
40521 ____________________________________________________________________________
40522 [ 24788] By: rgs                                   on 2005/06/10  12:09:30
40523         Log: Makefile.PL adjustments for the core
40524      Branch: perl
40525            ! ext/Compress/Zlib/Makefile.PL
40526 ____________________________________________________________________________
40527 [ 24787] By: rgs                                   on 2005/06/10  12:07:01
40528         Log: SvUPGRADE returns void in blead
40529      Branch: perl
40530            ! ext/Compress/Zlib/Zlib.xs
40531 ____________________________________________________________________________
40532 [ 24786] By: rgs                                   on 2005/06/10  12:05:38
40533         Log: Drom Compress::Zlib 1.34 in ext/
40534      Branch: perl
40535            + ext/Compress/Zlib/ANNOUNCE ext/Compress/Zlib/Changes
40536            + ext/Compress/Zlib/MANIFEST ext/Compress/Zlib/Makefile.PL
40537            + ext/Compress/Zlib/README ext/Compress/Zlib/Zlib.pm
40538            + ext/Compress/Zlib/Zlib.xs ext/Compress/Zlib/config.in
40539            + ext/Compress/Zlib/examples/filtdef
40540            + ext/Compress/Zlib/examples/filtinf
40541            + ext/Compress/Zlib/examples/gzcat
40542            + ext/Compress/Zlib/examples/gzgrep
40543            + ext/Compress/Zlib/examples/gzstream
40544            + ext/Compress/Zlib/fallback.h ext/Compress/Zlib/fallback.xs
40545            + ext/Compress/Zlib/t/01version.t ext/Compress/Zlib/t/02zlib.t
40546            + ext/Compress/Zlib/t/03examples.t
40547            + ext/Compress/Zlib/t/04encoding.t
40548            + ext/Compress/Zlib/t/05gzsetp.t ext/Compress/Zlib/t/06gzdopen.t
40549            + ext/Compress/Zlib/typemap
40550            + ext/Compress/Zlib/zlib-src-1.2.2/adler32.c
40551            + ext/Compress/Zlib/zlib-src-1.2.2/compress.c
40552            + ext/Compress/Zlib/zlib-src-1.2.2/crc32.c
40553            + ext/Compress/Zlib/zlib-src-1.2.2/crc32.h
40554            + ext/Compress/Zlib/zlib-src-1.2.2/deflate.c
40555            + ext/Compress/Zlib/zlib-src-1.2.2/deflate.h
40556            + ext/Compress/Zlib/zlib-src-1.2.2/gzio.c
40557            + ext/Compress/Zlib/zlib-src-1.2.2/infback.c
40558            + ext/Compress/Zlib/zlib-src-1.2.2/inffast.c
40559            + ext/Compress/Zlib/zlib-src-1.2.2/inffast.h
40560            + ext/Compress/Zlib/zlib-src-1.2.2/inffixed.h
40561            + ext/Compress/Zlib/zlib-src-1.2.2/inflate.c
40562            + ext/Compress/Zlib/zlib-src-1.2.2/inflate.h
40563            + ext/Compress/Zlib/zlib-src-1.2.2/inftrees.c
40564            + ext/Compress/Zlib/zlib-src-1.2.2/inftrees.h
40565            + ext/Compress/Zlib/zlib-src-1.2.2/trees.c
40566            + ext/Compress/Zlib/zlib-src-1.2.2/trees.h
40567            + ext/Compress/Zlib/zlib-src-1.2.2/uncompr.c
40568            + ext/Compress/Zlib/zlib-src-1.2.2/zconf.h
40569            + ext/Compress/Zlib/zlib-src-1.2.2/zlib.h
40570            + ext/Compress/Zlib/zlib-src-1.2.2/zutil.c
40571            + ext/Compress/Zlib/zlib-src-1.2.2/zutil.h
40572            ! MANIFEST
40573 ____________________________________________________________________________
40574 [ 24785] By: nicholas                              on 2005/06/10  10:06:30
40575         Log: Change 24531 broke DEBUG_LEAKING_SCALARS.
40576      Branch: perl
40577            ! sv.c
40578 ____________________________________________________________________________
40579 [ 24784] By: nicholas                              on 2005/06/09  21:01:42
40580         Log: $r = do {my @a; \$#a}; $$r = 503 # is also naughty and now warns
40581      Branch: perl
40582            ! av.c pod/perldiag.pod t/op/array.t
40583 ____________________________________________________________________________
40584 [ 24783] By: nicholas                              on 2005/06/09  19:02:43
40585         Log: Fixes the case of $a = \$#{[]}; and then accessing $$a
40586              (but not \$#a after local @a or my @a leave a block)
40587      Branch: perl
40588            ! av.c dump.c embed.fnc embed.h mg.c perl.h proto.h t/op/array.t
40589 ____________________________________________________________________________
40590 [ 24782] By: nicholas                              on 2005/06/09  16:37:18
40591         Log: Convert op/array.t to test.pl
40592      Branch: perl
40593            ! t/op/array.t
40594 ____________________________________________________________________________
40595 [ 24781] By: rgs                                   on 2005/06/09  15:32:09
40596         Log: Revert part of previous patch
40597      Branch: perl
40598            ! util.c
40599 ____________________________________________________________________________
40600 [ 24780] By: rgs                                   on 2005/06/09  15:12:39
40601         Log: Subject: [PATCH] regcomp.c and more
40602              From: Andy Lester <andy@petdance.com>
40603              Date: Thu, 9 Jun 2005 10:05:56 -0500
40604              Message-ID: <20050609150556.GA30554@petdance.com>
40605      Branch: perl
40606            ! embed.fnc mg.c perly.c proto.h regcomp.c sv.c util.c
40607 ____________________________________________________________________________
40608 [ 24778] By: nicholas                              on 2005/06/09  10:36:53
40609         Log: More SvPV consting
40610      Branch: perl
40611            ! mg.c perlio.c pp_pack.c
40612 ____________________________________________________________________________
40613 [ 24777] By: nicholas                              on 2005/06/09  10:36:40
40614         Log: Don't ignore errors from an eval.
40615      Branch: perl
40616            ! t/op/pack.t
40617 ____________________________________________________________________________
40618 [ 24776] By: nicholas                              on 2005/06/09  09:23:55
40619         Log: Update API docs.
40620      Branch: perl
40621            ! pod/perlapi.pod
40622 ____________________________________________________________________________
40623 [ 24775] By: nicholas                              on 2005/06/09  09:22:18
40624         Log: Change perforce filetype from text to text+w (so regen.pl is happy)
40625      Branch: perl
40626            ! opnames.h reentr.c reentr.h
40627 ____________________________________________________________________________
40628 [ 24774] By: nicholas                              on 2005/06/09  09:15:55
40629         Log: reentr.pl should be using regen_lib.pl and unlinking files before it
40630              starts.
40631      Branch: perl
40632            ! reentr.pl
40633 ____________________________________________________________________________
40634 [ 24773] By: nicholas                              on 2005/06/09  08:59:21
40635         Log: Make minitest pass (must skip if no dynaloading)
40636      Branch: perl
40637            ! t/op/goto_xs.t
40638 ____________________________________________________________________________
40639 [ 24772] By: rgs                                   on 2005/06/09  08:12:03
40640         Log: Subject: [PATCH] pp_pack.c cleanup
40641              From: Andy Lester <andy@petdance.com>
40642              Date: Wed, 8 Jun 2005 10:23:53 -0500
40643              Message-ID: <20050608152353.GA6253@petdance.com>
40644      Branch: perl
40645            ! pp_pack.c
40646 ____________________________________________________________________________
40647 [ 24771] By: rgs                                   on 2005/06/09  07:59:09
40648         Log: Subject: [PATCH] perlfunc.pod: ioctl.ph
40649              From: Alexey Tourbin <at@altlinux.ru>
40650              Date: Wed, 8 Jun 2005 13:45:08 +0400
40651              Message-ID: <20050608094508.GJ5867@solemn.turbinal.org>
40652      Branch: perl
40653            ! pod/perlfunc.pod
40654 ____________________________________________________________________________
40655 [ 24770] By: rgs                                   on 2005/06/09  07:44:36
40656         Log: Subject: [PATCH] instead of unions use double cast for data pointer <-> function pointer
40657              From: Jarkko Hietaniemi <jhietaniemi@gmail.com>
40658              Date: Thu, 09 Jun 2005 08:50:56 +0300
40659              Message-ID: <42A7D8C0.1080104@gmail.com>
40660      Branch: perl
40661            ! ext/DynaLoader/dl_dlopen.xs perl.h sv.c toke.c
40662 ____________________________________________________________________________
40663 [ 24769] By: nicholas                              on 2005/06/08  22:48:00
40664         Log: More SvPV consting
40665      Branch: perl
40666            ! dump.c mg.c op.c pp_hot.c pp_sys.c regexec.c
40667 ____________________________________________________________________________
40668 [ 24768] By: nicholas                              on 2005/06/08  22:45:39
40669         Log: The old COW code needs to use SvPVX_mutable when doing copy-on-write.
40670      Branch: perl
40671            ! sv.c
40672 ____________________________________________________________________________
40673 [ 24767] By: nicholas                              on 2005/06/08  22:43:58
40674         Log: Add SvPV_mutable for use by the old COW code.
40675      Branch: perl
40676            ! sv.h
40677 ____________________________________________________________________________
40678 [ 24766] By: nicholas                              on 2005/06/08  20:32:35
40679         Log: sv_setsv is allowed to swipe buffers from read only scalars
40680      Branch: perl
40681            ! sv.c
40682 ____________________________________________________________________________
40683 [ 24765] By: nicholas                              on 2005/06/08  19:49:08
40684         Log: const-ize pp_formline
40685      Branch: perl
40686            ! pp_ctl.c
40687 ____________________________________________________________________________
40688 [ 24764] By: merijn                                on 2005/06/08  19:14:19
40689         Log: Cygwin fails to open $^X on many occasion here
40690              afile is still available from the previous test
40691      Branch: perl
40692            ! t/io/layers.t
40693 ____________________________________________________________________________
40694 [ 24763] By: nicholas                              on 2005/06/08  17:48:35
40695         Log: Remove repeated C<n_a>s
40696      Branch: perl
40697            ! perl.c
40698 ____________________________________________________________________________
40699 [ 24762] By: nicholas                              on 2005/06/08  17:48:17
40700         Log: Remove the n_a
40701      Branch: perl
40702            ! malloc.c
40703 ____________________________________________________________________________
40704 [ 24761] By: nicholas                              on 2005/06/08  16:02:54
40705         Log: Add and use MgPV_nolen_const
40706      Branch: perl
40707            ! mg.c mg.h
40708 ____________________________________________________________________________
40709 [ 24760] By: nicholas                              on 2005/06/08  15:39:40
40710         Log: Nuke some more n_a, and convert S_gv_ename from char * to const char *
40711      Branch: perl
40712            ! doop.c dump.c embed.fnc mg.c op.c pp_hot.c pp_pack.c pp_sys.c
40713            ! proto.h regcomp.c taint.c toke.c
40714 ____________________________________________________________________________
40715 [ 24759] By: nicholas                              on 2005/06/08  14:52:17
40716         Log: Allow a null length pointer to sv_pvn_force_flags.
40717              Add SvPV_force_nolen and use it to remove some C<n_a>s
40718      Branch: perl
40719            ! embed.fnc pp.c pp_ctl.c proto.h sv.c sv.h
40720 ____________________________________________________________________________
40721 [ 24758] By: nicholas                              on 2005/06/08  13:43:23
40722         Log: n_a no more
40723      Branch: perl
40724            ! perl.c pp_ctl.c pp_sys.c universal.c
40725 ____________________________________________________________________________
40726 [ 24757] By: nicholas                              on 2005/06/08  11:00:54
40727         Log: Eliminate more C<n_a>s
40728      Branch: perl
40729            ! XSUB.h pp.h
40730 ____________________________________________________________________________
40731 [ 24756] By: nicholas                              on 2005/06/08  11:00:33
40732         Log: A mising cast (given that rx->subbeg is only char *)
40733      Branch: perl
40734            ! pp_hot.c
40735 ____________________________________________________________________________
40736 [ 24755] By: nicholas                              on 2005/06/08  10:08:01
40737         Log: s/PERL_COPY_ON_WRITE/PERL_OLD_COPY_ON_WRITE/g
40738      Branch: perl
40739            ! dump.c embed.fnc embed.h ext/B/t/bytecode.t
40740            ! ext/Devel/PPPort/parts/embed.fnc makedef.pl mg.c pad.c
40741            ! pp_ctl.c pp_hot.c proto.h regcomp.c regexec.c regexp.h sv.c
40742            ! sv.h
40743 ____________________________________________________________________________
40744 [ 24754] By: rgs                                   on 2005/06/08  09:19:18
40745         Log: Subject: [PATCH] regexec.c utf8 loading
40746              From: Andy Lester <andy@petdance.com>
40747              Date: Wed, 8 Jun 2005 00:03:32 -0500
40748              Message-ID: <20050608050332.GA31059@petdance.com>
40749      Branch: perl
40750            ! regexec.c
40751 ____________________________________________________________________________
40752 [ 24753] By: rgs                                   on 2005/06/08  09:12:17
40753         Log: Subject: Re: FindBin.pm: incomplete getcwd/cwd patch and SELinux (Strict policy)
40754              From: José Pedro Oliveira <jpo@di.uminho.pt>
40755              Date: Tue, 07 Jun 2005 21:07:42 +0100
40756              Message-ID: <42A5FE8E.3020608@di.uminho.pt>
40757      Branch: perl
40758            ! lib/FindBin.pm
40759 ____________________________________________________________________________
40760 [ 24752] By: nicholas                              on 2005/06/08  09:09:52
40761         Log: One more SvPV_const
40762      Branch: perl
40763            ! pp.c
40764 ____________________________________________________________________________
40765 [ 24751] By: nicholas                              on 2005/06/08  09:09:28
40766         Log: Don't test the core XS code yet with PERL_DEBUG_COW > 1
40767      Branch: perl
40768            ! sv.h
40769 ____________________________________________________________________________
40770 [ 24750] By: nicholas                              on 2005/06/08  08:50:06
40771         Log: Remove two more unused C<n_a>s
40772      Branch: perl
40773            ! pp_sys.c
40774 ____________________________________________________________________________
40775 [ 24749] By: nicholas                              on 2005/06/08  08:49:32
40776         Log: Better sv_2pv_flags implementation (avoid writing to n_a)
40777      Branch: perl
40778            ! sv.c
40779 ____________________________________________________________________________
40780 [ 24748] By: nicholas                              on 2005/06/08  08:07:05
40781         Log: Convert POPpx POPpconstx and POPpbytex to use nolen macros.
40782              Elminate a lot of C<n_a>s
40783      Branch: perl
40784            ! pp.h pp_ctl.c pp_sys.c
40785 ____________________________________________________________________________
40786 [ 24747] By: nicholas                              on 2005/06/08  08:05:47
40787         Log: Add SvPVx_nolen and SvPVbytex_nolen
40788      Branch: perl
40789            ! sv.h
40790 ____________________________________________________________________________
40791 [ 24746] By: nicholas                              on 2005/06/08  08:04:53
40792         Log: More SvPV consting
40793      Branch: perl
40794            ! perly.act perly.y
40795 ____________________________________________________________________________
40796 [ 24745] By: rgs                                   on 2005/06/08  06:51:48
40797         Log: Mark a static function as static
40798      Branch: perl
40799            ! utf8.c
40800 ____________________________________________________________________________
40801 [ 24744] By: nicholas                              on 2005/06/07  22:22:34
40802         Log: More SvPV consting
40803      Branch: perl
40804            ! doop.c pp.c pp_hot.c pp_pack.c pp_sort.c pp_sys.c regexec.c
40805            ! sv.c toke.c
40806 ____________________________________________________________________________
40807 [ 24743] By: nicholas                              on 2005/06/07  21:16:13
40808         Log: More SvPV consting
40809      Branch: perl
40810            ! doop.c mg.c perl.c pp.c pp_ctl.c pp_hot.c pp_pack.c pp_sys.c
40811            ! sv.c
40812 ____________________________________________________________________________
40813 [ 24742] By: nicholas                              on 2005/06/07  19:45:13
40814         Log: More consting of SvPV
40815      Branch: perl
40816            ! embed.fnc pp_ctl.c proto.h sv.c
40817 ____________________________________________________________________________
40818 [ 24741] By: rgs                                   on 2005/06/07  19:30:35
40819         Log: The definition of SvPVx_nolen_const is missing for non GNU-C compilers
40820      Branch: perl
40821            ! sv.h
40822 ____________________________________________________________________________
40823 [ 24740] By: nicholas                              on 2005/06/07  18:38:39
40824         Log: More SvPV consting.
40825      Branch: perl
40826            ! doio.c doop.c gv.c mg.c perlio.c pp.c pp_ctl.c pp_hot.c
40827            ! pp_pack.c pp_sys.c sv.c toke.c universal.c util.c
40828 ____________________________________________________________________________
40829 [ 24739] By: nicholas                              on 2005/06/07  18:33:08
40830         Log: Add SvPV_nolen_const and SvPV_nomg_const
40831      Branch: perl
40832            ! sv.h
40833 ____________________________________________________________________________
40834 [ 24738] By: nicholas                              on 2005/06/07  18:32:44
40835         Log: Add MgPV_const
40836      Branch: perl
40837            ! mg.h
40838 ____________________________________________________________________________
40839 [ 24737] By: rgs                                   on 2005/06/07  18:07:41
40840         Log: Remove unused variable (thanks to Andy's lint)
40841      Branch: perl
40842            ! mg.c
40843 ____________________________________________________________________________
40844 [ 24736] By: nicholas                              on 2005/06/07  17:35:10
40845         Log: Change 24733 allows several pointers to be NULL. Therefore this
40846              should be reflected in their attributes.
40847      Branch: perl
40848            ! embed.fnc proto.h
40849 ____________________________________________________________________________
40850 [ 24735] By: rgs                                   on 2005/06/07  17:03:16
40851         Log: Subject: [PATCH] Random cleanups #47
40852              From: Andy Lester <andy@petdance.com>
40853              Date: Mon, 6 Jun 2005 10:11:07 -0500
40854              Message-ID: <20050606151107.GC7022@petdance.com>
40855      Branch: perl
40856            ! Makefile.SH README.aix embed.fnc hv.c numeric.c op.c pad.c
40857            ! pod/perldebug.pod pp_ctl.c proto.h sv.c toke.c util.c
40858 ____________________________________________________________________________
40859 [ 24734] By: rgs                                   on 2005/06/07  15:58:23
40860         Log: make some more functions static
40861              
40862              Subject: [PATCH] B/C/C.xs: static my_runops()
40863              Message-ID: <20050604232451.GT5867@solemn.turbinal.org>
40864              
40865              Subject: [PATCH] Devel/Peek/Peek.xs: make plain C functions static
40866              Message-ID: <20050604232952.GU5867@solemn.turbinal.org>
40867              
40868              Subject: [PATCH] File/Glob/Glob.xs: errfunc() should be static
40869              Message-ID: <20050604233414.GV5867@solemn.turbinal.org>
40870              
40871              all being :
40872              From: Alexey Tourbin <at@altlinux.ru>
40873              Date: Sun, 5 Jun 2005
40874      Branch: perl
40875            ! ext/B/C/C.xs ext/Devel/Peek/Peek.xs ext/File/Glob/Glob.xs
40876 ____________________________________________________________________________
40877 [ 24733] By: nicholas                              on 2005/06/07  15:10:38
40878         Log: Simplify the implementation of SvPV*nolen functions
40879      Branch: perl
40880            ! sv.c sv.h
40881 ____________________________________________________________________________
40882 [ 24732] By: nicholas                              on 2005/06/07  14:57:35
40883         Log: Ensure string table counts are balanced. (Was not true in op/pack.t)
40884      Branch: perl
40885            ! sv.c sv.h
40886 ____________________________________________________________________________
40887 [ 24731] By: rgs                                   on 2005/06/07  14:44:55
40888         Log: Remove unneeded #ifdef VMS since VMS is not defined here anyway
40889              (spotted by Steve_p)
40890      Branch: perl
40891            ! util.c
40892 ____________________________________________________________________________
40893 [ 24730] By: rgs                                   on 2005/06/07  14:35:25
40894         Log: Subject: [PATCH] one more round of is_utf8_foo tuneup
40895              From: Jarkko Hietaniemi <jhietaniemi@gmail.com>
40896              Date: Sun, 05 Jun 2005 18:06:12 +0300
40897              Message-ID: <42A314E4.8060608@gmail.com>
40898      Branch: perl
40899            ! embed.fnc embed.h global.sym mg.c pod/perlapi.pod proto.h
40900            ! utf8.c utf8.h
40901 ____________________________________________________________________________
40902 [ 24729] By: rgs                                   on 2005/06/07  13:53:59
40903         Log: Subject: [PATCH] util.c: S_vdie_common() should be static
40904              From: Alexey Tourbin <at@altlinux.ru>
40905              Date: Sun, 5 Jun 2005 03:08:30 +0400
40906              Message-ID: <20050604230830.GS5867@solemn.turbinal.org>
40907      Branch: perl
40908            ! util.c
40909 ____________________________________________________________________________
40910 [ 24728] By: rgs                                   on 2005/06/07  13:15:45
40911         Log: Fix apidoc for newSVhek
40912      Branch: perl
40913            ! pod/perlapi.pod sv.c
40914 ____________________________________________________________________________
40915 [ 24727] By: nicholas                              on 2005/06/07  13:01:42
40916         Log: make pp_split const
40917      Branch: perl
40918            ! pp.c
40919 ____________________________________________________________________________
40920 [ 24726] By: nicholas                              on 2005/06/07  12:11:48
40921         Log: Lots of consting
40922      Branch: perl
40923            ! doio.c doop.c gv.c hv.c op.c pp.c pp_ctl.c pp_hot.c pp_pack.c
40924            ! pp_sys.c
40925 ____________________________________________________________________________
40926 [ 24725] By: nicholas                              on 2005/06/07  12:08:58
40927         Log: The FBM compile code is mutable, because it's permissible to FBM
40928              compile a read-only value.
40929      Branch: perl
40930            ! util.c
40931 ____________________________________________________________________________
40932 [ 24724] By: nicholas                              on 2005/06/07  12:07:49
40933         Log: XS_VERSION_BOOTCHECK is read only.
40934      Branch: perl
40935            ! XSUB.h
40936 ____________________________________________________________________________
40937 [ 24723] By: nicholas                              on 2005/06/07  12:06:13
40938         Log: POPpx needs a const equivalent.
40939      Branch: perl
40940            ! pp.h
40941 ____________________________________________________________________________
40942 [ 24722] By: nicholas                              on 2005/06/07  12:03:56
40943         Log: Make a start at consting calls to SvPV. SV conversion and upgrade
40944              routines need to be mutable, as it's permitted to change the type of
40945              a READONLY SV, or cache the string or number conversion.
40946              Other routines are mostly const.
40947      Branch: perl
40948            ! sv.c
40949 ____________________________________________________________________________
40950 [ 24721] By: nicholas                              on 2005/06/07  12:00:09
40951         Log: Need const versions of SvPV(), so that its callers can indicate
40952              whether they are read/write or read only
40953              Also provide a mutable version, for the internals to use where it
40954              needs a non-const pointer, but will be writing. Callers of this are
40955              assumed to be aware of how copy on write is working, and to keep
40956              track of core changes.
40957              
40958              For now check that SVs are not READONLY when const versions are used.
40959              (with DEBUG_COW > 1). COW is going to have to be orthogonal to Perl's
40960              READONLY flag, but for now it provides a good test indicator.
40961      Branch: perl
40962            ! sv.h
40963 ____________________________________________________________________________
40964 [ 24720] By: rgs                                   on 2005/06/07  09:23:58
40965         Log: Subject: [PATCH] Re: [perl #36130] chr(-1) should probably return undef
40966              From: Jarkko Hietaniemi <jhietaniemi@gmail.com>
40967              Date: Mon, 06 Jun 2005 20:28:35 +0300
40968              Message-ID: <42A487C3.8010306@gmail.com>
40969      Branch: perl
40970            ! pod/perlfunc.pod pp.c t/op/chr.t
40971 ____________________________________________________________________________
40972 [ 24719] By: rgs                                   on 2005/06/07  09:02:23
40973         Log: Subject: RE: a bit of trouble with compiling with MSVC++ on Win32
40974              From: "Konovalov, Vadim" <vkonovalov@spb.lucent.com>
40975              Date: Tue, 7 Jun 2005 13:19:33 +0400 
40976              Message-ID: <7DD1BE2C50259746ABB8683672D2089E12D462@itotest-1.spb.lucent.com>
40977      Branch: perl
40978            ! README.win32
40979 ____________________________________________________________________________
40980 [ 24718] By: rgs                                   on 2005/06/07  08:56:37
40981         Log: Subject: [perl #36193] crash in Perl_yyerror due to missing check for NULL 
40982              From: "Todd C. Miller" (via RT) <perlbug-followup@perl.org>
40983              Date: 6 Jun 2005 23:24:28 -0000
40984              Message-ID: <rt-3.0.11-36193-115243.12.1531563965146@perl.org>
40985      Branch: perl
40986            ! toke.c
40987 ____________________________________________________________________________
40988 [ 24717] By: merijn                                on 2005/06/07  08:18:59
40989         Log: Subject: [PATCH] Unvoid SvUPGRADE
40990              From: Andy Lester <andy@petdance.com>
40991              Date: Mon, 6 Jun 2005 23:08:50 -0500
40992              Message-ID: <20050607040850.GA7033@petdance.com>
40993      Branch: perl
40994            ! doio.c doop.c gv.c op.c pp.c pp_ctl.c pp_hot.c pp_sys.c
40995            ! scope.c sv.c sv.h toke.c util.c
40996 ____________________________________________________________________________
40997 [ 24716] By: nicholas                              on 2005/06/06  14:50:21
40998         Log: Abstract all access to the shared hash value through SvSHARED_HASH()
40999      Branch: perl
41000            ! hv.c pp_hot.c sv.c sv.h
41001 ____________________________________________________________________________
41002 [ 24715] By: nicholas                              on 2005/06/06  10:01:49
41003         Log: SvIsCOW_shared_hash is declared all the time, so use it.
41004      Branch: perl
41005            ! pp_hot.c
41006 ____________________________________________________________________________
41007 [ 24714] By: nicholas                              on 2005/06/06  09:08:45
41008         Log: Shared hash key scalars can be safely copied as shared hash key scalars
41009              all the time.
41010      Branch: perl
41011            ! sv.c
41012 ____________________________________________________________________________
41013 [ 24713] By: steveh                                on 2005/06/06  07:52:59
41014         Log: NORETURN_FUNCTION_END is not a complete statement
41015              
41016              (Fix compilation error following change #24702)
41017      Branch: perl
41018            ! ext/IO/IO.xs
41019 ____________________________________________________________________________
41020 [ 24712] By: steveh                                on 2005/06/06  07:47:06
41021         Log: We still need an "i" in the PERL_IMPLICIT_SYS case
41022              
41023              (Fix compilation error following change #24689)
41024      Branch: perl
41025            ! sv.c
41026 ____________________________________________________________________________
41027 [ 24711] By: merijn                                on 2005/06/06  06:18:51
41028         Log: Subject: [PATCH] Tru64: allow creating perl.pixie even with optimized Perl
41029              From: Jarkko Hietaniemi <jhietaniemi@gmail.com>
41030              Date: Sun, 05 Jun 2005 18:28:08 +0300
41031              Message-ID: <42A31A08.3070601@gmail.com>
41032      Branch: perl
41033            ! Makefile.SH
41034 ____________________________________________________________________________
41035 [ 24710] By: merijn                                on 2005/06/06  06:01:30
41036         Log: Subject: [PATCH] Re: blead attribute warnings, cygwin + gcc 3.4.1
41037              From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
41038              Date: Sun, 5 Jun 2005 20:43:55 -0700
41039              Message-ID: <20050606034354.GA1456@efn.org>
41040      Branch: perl
41041            ! cygwin/cygwin.c
41042 ____________________________________________________________________________
41043 [ 24709] By: rgs                                   on 2005/06/05  11:35:48
41044         Log: New test for getppid(), by Alexey Tourbin
41045      Branch: perl
41046            + t/op/getppid.t
41047            ! MANIFEST
41048 ____________________________________________________________________________
41049 [ 24708] By: rgs                                   on 2005/06/05  11:14:41
41050         Log: Subject: PATCH for [perl #36043] '@foo = sort { $a <=> $b } @bar' uses too much memory
41051              From: Salvador Fandiño <sfandino@yahoo.com>
41052              Date: Jun 5, 2005 4:25 AM
41053              Message-ID: <20050605022436.21982.qmail@lists.develooper.com>
41054      Branch: perl
41055            ! pp_sort.c
41056 ____________________________________________________________________________
41057 [ 24707] By: ams                                   on 2005/06/05  03:55:11
41058         Log: Subject: [PATCH] Fix minor bummer in 24706
41059              From: Andy Lester <andy@petdance.com>
41060              Date: Sat, 4 Jun 2005 23:09:04 -0500
41061              Message-Id: <20050605040904.GA27783@petdance.com>
41062      Branch: perl
41063            ! utf8.c
41064 ____________________________________________________________________________
41065 [ 24706] By: rgs                                   on 2005/06/04  16:55:27
41066         Log: Subject: [PATCH] further speeding up of is_utf8_string()
41067              From: Jarkko Hietaniemi <jhietaniemi@gmail.com>
41068              Date: Sat, 04 Jun 2005 13:40:15 +0300
41069              Message-ID: <42A1850F.4040109@gmail.com>
41070      Branch: perl
41071            + t/op/chr.t
41072            ! MANIFEST embed.fnc embed.h global.sym proto.h utf8.c
41073 ____________________________________________________________________________
41074 [ 24705] By: rgs                                   on 2005/06/04  16:49:33
41075         Log: Silence a const warning
41076      Branch: perl
41077            ! sv.c
41078 ____________________________________________________________________________
41079 [ 24704] By: rgs                                   on 2005/06/04  16:06:38
41080         Log: Improve FindBin discovery of current directory, based on :
41081              
41082              Subject: FindBin.pm: incomplete getcwd/cwd patch? (#24375, #24379)
41083              From: José Pedro Oliveira <jpo@di.uminho.pt>
41084              Date: Thu, 12 May 2005 20:36:48 +0100
41085              Message-ID: <4283B050.6080805@di.uminho.pt>
41086              
41087              Plus POD fixes
41088      Branch: perl
41089            ! lib/FindBin.pm
41090 ____________________________________________________________________________
41091 [ 24703] By: rgs                                   on 2005/06/04  07:16:11
41092         Log: Simplify the getppid code, by Alexey Tourbin
41093      Branch: perl
41094            ! pp_sys.c
41095 ____________________________________________________________________________
41096 [ 24702] By: rgs                                   on 2005/06/03  22:22:43
41097         Log: Subject: [PATCH] Consting IO and Devel::Peek
41098              From: Andy Lester <andy@petdance.com>
41099              Reply-To: Perl 5 Porters <perl5-porters@perl.org>
41100              Message-ID: <20050531212621.GA12117@petdance.com>
41101      Branch: perl
41102            ! ext/Devel/Peek/Peek.xs ext/IO/IO.xs
41103 ____________________________________________________________________________
41104 [ 24701] By: rgs                                   on 2005/06/03  22:07:57
41105         Log: Subject: [PATCH] Clean up UNI* macros in toke.c
41106              From: Andy Lester <andy@petdance.com>
41107              Date: Jun 3, 2005 7:14 PM
41108              Message-ID: <20050603171448.GA5834@petdance.com>
41109      Branch: perl
41110            ! toke.c
41111 ____________________________________________________________________________
41112 [ 24700] By: rgs                                   on 2005/06/03  21:48:16
41113         Log: Subject: B::Concise torture
41114              From: Jim Cromie <jcromie@divsol.com>
41115              Date: Jun 2, 2005 6:36 AM
41116              Message-ID: <429E8CBE.406@divsol.com>
41117              (with formatting nits)
41118      Branch: perl
41119            ! ext/B/B/Concise.pm ext/B/t/concise-xs.t ext/B/t/concise.t
41120 ____________________________________________________________________________
41121 [ 24699] By: rgs                                   on 2005/06/03  21:07:03
41122         Log: Subject: Re: [PATCH] Improved ICMP_UNREACHABLE handling in Net::Ping
41123              From: Gisle Aas <gisle@activestate.com>
41124              Date: 03 Jun 2005 09:17:44 -0700
41125              Message-ID: <lry89rfm8n.fsf_-_@caliper.activestate.com>
41126      Branch: perl
41127            ! lib/Net/Ping.pm
41128 ____________________________________________________________________________
41129 [ 24698] By: nicholas                              on 2005/06/03  12:00:01
41130         Log: Use newSVhek in the cloning code.
41131      Branch: perl
41132            ! sv.c
41133 ____________________________________________________________________________
41134 [ 24697] By: nicholas                              on 2005/06/03  11:06:36
41135         Log: Use newSVhek where we're generating SVs from package names
41136      Branch: perl
41137            ! op.c pp.c sv.c toke.c
41138 ____________________________________________________________________________
41139 [ 24696] By: nicholas                              on 2005/06/03  10:03:21
41140         Log: s/newSVpv_hek/newSVhek/g; # Lousy choice of name
41141      Branch: perl
41142            ! embed.fnc embed.h hv.c proto.h sv.c
41143 ____________________________________________________________________________
41144 [ 24694] By: rgs                                   on 2005/06/03  09:57:26
41145         Log: Bump version number
41146      Branch: perl
41147            ! ext/Devel/DProf/DProf.pm
41148 ____________________________________________________________________________
41149 [ 24693] By: rgs                                   on 2005/06/03  09:52:21
41150         Log: Subject: Re: [perl #35977] perlbug AutoReply: Devel::DProf "unstacked calls in outer"
41151              From: Duncan Findlay <duncf@debian.org>
41152              Date: Wed, 1 Jun 2005 12:18:08 -0400
41153              Message-ID: <20050601161808.GA17294@duncf.mine.nu>
41154      Branch: perl
41155            ! utils/dprofpp.PL
41156 ____________________________________________________________________________
41157 [ 24692] By: nicholas                              on 2005/06/03  09:37:21
41158         Log: Create newSVpv_hek to reduce code duplication where HEKs need to be
41159              turned into SVs
41160      Branch: perl
41161            ! embed.fnc embed.h global.sym hv.c sv.c
41162 ____________________________________________________________________________
41163 [ 24691] By: rgs                                   on 2005/06/03  09:29:36
41164         Log: POD fixes
41165      Branch: perl
41166            ! pod/perlfunc.pod
41167 ____________________________________________________________________________
41168 [ 24690] By: rgs                                   on 2005/06/03  08:37:42
41169         Log: Subject: Re: Should while ( <$fh> ) and while (< $fh >) do the same thing?
41170              From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
41171              Date: Thu, 2 Jun 2005 11:49:11 -0700
41172              Message-ID: <20050602184911.GA3292@efn.org>
41173      Branch: perl
41174            ! pod/perlop.pod
41175 ____________________________________________________________________________
41176 [ 24689] By: rgs                                   on 2005/06/03  08:31:26
41177         Log: Subject: [PATCH] Random consting
41178              From: Andy Lester <andy@petdance.com>
41179              Date: Thu, 2 Jun 2005 12:19:43 -0500
41180              Message-ID: <20050602171943.GA16553@petdance.com>
41181      Branch: perl
41182            ! doio.c dump.c embed.fnc embed.h global.sym gv.c hv.c malloc.c
41183            ! perl.c perlio.c pp_ctl.c pp_hot.c pp_sys.c proto.h sv.c toke.c
41184            ! util.c
41185 ____________________________________________________________________________
41186 [ 24688] By: steveh                                on 2005/06/03  08:12:45
41187         Log: Subject: [PATCH] Run ICMP ping tests on Windows as long as we have admin privs
41188              From: "Jan Dubois" <jand@ActiveState.com>
41189              Date: Mon, 18 Apr 2005 20:16:24 -0700
41190              Message-Id: <200504190311.j3J3BM4p001792@smtp3.ActiveState.com>
41191              
41192              Subject: RE: [PATCH] Run ICMP ping tests on Windows as long as we have admin privs
41193              From: "Jan Dubois" <jand@ActiveState.com>
41194              Date: Tue, 19 Apr 2005 01:49:51 -0700
41195              Message-Id: <200504190844.j3J8inkW032630@smtp3.ActiveState.com>
41196              
41197              (There was no reply from Rob Brown in over a month, so commit to blead
41198              for now.  I'll email him again...)
41199      Branch: perl
41200            ! lib/Net/Ping.pm lib/Net/Ping/t/110_icmp_inst.t
41201            ! lib/Net/Ping/t/500_ping_icmp.t
41202 ____________________________________________________________________________
41203 [ 24687] By: rgs                                   on 2005/06/03  08:08:25
41204         Log: Subject: [PATCH] speed up is_utf8_char()
41205              From: Jarkko Hietaniemi <jhietaniemi@gmail.com>
41206              Date: Thu, 02 Jun 2005 21:52:46 +0300
41207              Message-ID: <429F557E.3090007@gmail.com>
41208      Branch: perl
41209            ! utf8.c utf8.h
41210 ____________________________________________________________________________
41211 [ 24686] By: rgs                                   on 2005/06/03  08:04:25
41212         Log: Subject: [PATCH] Quotes in pod/*.pod
41213              From: Andy Lester <andy@petdance.com>
41214              Date: Thu, 2 Jun 2005 16:19:54 -0500
41215              Message-ID: <20050602211954.GA22107@petdance.com>
41216      Branch: perl
41217            ! Porting/pumpkin.pod README.cygwin README.hurd README.mint
41218            ! README.os390 README.vmesa pod/perlfaq.pod pod/perlfaq3.pod
41219            ! pod/perlfaq4.pod pod/perlfaq6.pod pod/perlfaq7.pod
41220            ! pod/perlfaq8.pod pod/perlfaq9.pod pod/perlgpl.pod
41221            ! pod/perlhack.pod pod/perlipc.pod pod/perllocale.pod
41222            ! pod/perlport.pod pod/perlre.pod pod/perlref.pod
41223            ! pod/perlthrtut.pod
41224 ____________________________________________________________________________
41225 [ 24685] By: rgs                                   on 2005/06/03  07:59:48
41226         Log: Indent fix
41227      Branch: perl
41228            ! pod/perlfaq7.pod
41229 ____________________________________________________________________________
41230 [ 24684] By: rgs                                   on 2005/06/03  07:58:10
41231         Log: FAQ sync
41232      Branch: perl
41233            ! pod/perlfaq1.pod pod/perlfaq2.pod pod/perlfaq3.pod
41234            ! pod/perlfaq4.pod pod/perlfaq5.pod pod/perlfaq6.pod
41235            ! pod/perlfaq7.pod pod/perlfaq8.pod pod/perlfaq9.pod
41236 ____________________________________________________________________________
41237 [ 24683] By: rgs                                   on 2005/06/03  07:45:21
41238         Log: Subject: [PATCH] symbian/xsbuild.pl
41239              From: <jarkko.hietaniemi@nokia.com>
41240              Date: Fri, 3 Jun 2005 11:00:01 +0300
41241              Message-ID: <B356D8F434D20B40A8CEDAEC305A1F24E7A225@esebe105.NOE.Nokia.com>
41242      Branch: perl
41243            ! symbian/xsbuild.pl
41244 ____________________________________________________________________________
41245 [ 24682] By: rgs                                   on 2005/06/03  07:43:52
41246         Log: Subject: [PATCH] SvPVX_const() - patch #4
41247              From: Steve Peters <steve@fisharerojo.org>
41248              Date: Thu, 2 Jun 2005 13:41:35 -0500
41249              Message-ID: <20050602184135.GA13682@mccoy.peters.homeunix.org>
41250      Branch: perl
41251            ! embed.fnc pod/perlapi.pod proto.h regcomp.c regexec.c sv.c
41252 ____________________________________________________________________________
41253 [ 24681] By: rgs                                   on 2005/06/02  16:44:51
41254         Log: Subject: Re: [patch] teach B::Concise to see XS code
41255              From: Jim Cromie <jcromie@divsol.com>
41256              Date: Wed, 01 Jun 2005 08:01:17 -0600
41257              Message-ID: <429DBFAD.1090308@divsol.com>
41258      Branch: perl
41259            ! ext/B/B/Concise.pm ext/B/t/concise.t
41260 ____________________________________________________________________________
41261 [ 24680] By: nicholas                              on 2005/06/02  16:40:58
41262         Log: Integrate perl587delta.pod, the changes in perlhist.pod, and update
41263              the relevant makefiles and tables-of-contents to reflect this.
41264      Branch: perl
41265           +> pod/perl587delta.pod
41266           !> MANIFEST Makefile.SH pod.lst pod/perl.pod pod/perlhist.pod
41267           !> pod/perltoc.pod vms/descrip_mms.template win32/Makefile
41268           !> win32/makefile.mk win32/pod.mak
41269 ____________________________________________________________________________
41270 [ 24679] By: steveh                                on 2005/06/02  15:57:13
41271         Log: Subject: DynaLoader dl_unload_file for win32 ( dl_win32.xs )
41272              From: DH <crazyinsomniac@yahoo.com>
41273              Date: Tue, 31 May 2005 08:33:27 -0700 (PDT)
41274              Message-ID: <20050531153327.85145.qmail@unknown-209-73-178-237.yahoo.com>
41275              
41276              (with a couple of minor tweaks)
41277      Branch: perl
41278            ! win32/dl_win32.xs
41279 ____________________________________________________________________________
41280 [ 24678] By: nicholas                              on 2005/06/02  15:10:54
41281         Log: Dave can see a better way of doing the rounding.
41282      Branch: perl
41283            ! handy.h
41284 ____________________________________________________________________________
41285 [ 24677] By: nicholas                              on 2005/06/02  14:42:20
41286         Log: 24672 is innocent. valgrind + perl's malloc considered harmful.
41287      Branch: perl
41288            ! toke.c
41289 ____________________________________________________________________________
41290 [ 24676] By: nicholas                              on 2005/06/02  13:36:01
41291         Log: Changes 24660 and 24665 both introduced errors into the USEMYMALLOC
41292              code. Plus change 24672 appears to break under USEMYMALLOC, so revert
41293              it for now.
41294      Branch: perl
41295            ! hv.c sv.c toke.c
41296 ____________________________________________________________________________
41297 [ 24675] By: rgs                                   on 2005/06/02  11:19:02
41298         Log: Upgrade to ExtUtils::CBuilder 0.12 and ExtUtils::ParseXS 2.10
41299      Branch: perl
41300            ! lib/ExtUtils/CBuilder.pm lib/ExtUtils/CBuilder/Base.pm
41301            ! lib/ExtUtils/CBuilder/Platform/Unix.pm
41302            ! lib/ExtUtils/CBuilder/Platform/VMS.pm
41303            ! lib/ExtUtils/CBuilder/Platform/Windows.pm
41304            ! lib/ExtUtils/CBuilder/Platform/aix.pm
41305            ! lib/ExtUtils/CBuilder/Platform/cygwin.pm
41306            ! lib/ExtUtils/CBuilder/Platform/darwin.pm
41307            ! lib/ExtUtils/CBuilder/Platform/os2.pm lib/ExtUtils/ParseXS.pm
41308 ____________________________________________________________________________
41309 [ 24674] By: rgs                                   on 2005/06/02  09:39:26
41310         Log: CPP typo fix (by Dominic Dunlop)
41311      Branch: perl
41312            ! perl.c
41313 ____________________________________________________________________________
41314 [ 24673] By: nicholas                              on 2005/06/02  09:29:48
41315         Log: Oops. My maths was too generous (by 1).
41316      Branch: perl
41317            ! handy.h
41318 ____________________________________________________________________________
41319 [ 24672] By: nicholas                              on 2005/06/02  09:24:17
41320         Log: Avoid duplicate calls to PAD_COMPNAME_OURSTASH, which is an expensive
41321              macro.
41322      Branch: perl
41323            ! toke.c
41324 ____________________________________________________________________________
41325 [ 24671] By: rgs                                   on 2005/06/02  09:06:39
41326         Log: Fix changed diagnostic
41327      Branch: perl
41328            ! pod/perldiag.pod
41329 ____________________________________________________________________________
41330 [ 24670] By: ams                                   on 2005/06/02  08:44:41
41331         Log: Subject: [PATCH] SvPVX_const() - part 3 ... and const'ing Storable
41332              From: Steve Peters <steve@fisharerojo.org>
41333              Date: Tue, 31 May 2005 09:55:43 -0500
41334              Message-Id: <20050531145543.GA8051@mccoy.peters.homeunix.org>
41335      Branch: perl
41336            ! ext/B/B.xs ext/Data/Dumper/Dumper.xs ext/Devel/DProf/DProf.xs
41337            ! ext/Opcode/Opcode.xs ext/POSIX/POSIX.xs
41338            ! ext/PerlIO/encoding/encoding.xs ext/PerlIO/via/via.xs
41339            ! ext/Storable/Storable.xs pp_hot.c pp_pack.c pp_sys.c scope.c
41340 ____________________________________________________________________________
41341 [ 24669] By: rgs                                   on 2005/06/02  08:17:29
41342         Log: Subject: [PATCH] use lengths in sv_setpv() calls
41343              From: Andy Lester <andy@petdance.com>
41344              Date: Wed, 1 Jun 2005 23:16:56 -0500
41345              Message-ID: <20050602041656.GA3000@petdance.com>
41346      Branch: perl
41347            ! gv.c sv.c util.c
41348 ____________________________________________________________________________
41349 [ 24668] By: merijn                                on 2005/06/02  08:02:23
41350         Log: New HW model; more on threads for 10.20
41351      Branch: perl
41352            ! README.hpux
41353 ____________________________________________________________________________
41354 [ 24667] By: merijn                                on 2005/06/02  07:52:09
41355         Log: HP-UX specific #pragma entered in #23890 is not supported
41356              on HP-UX 10.20 and older
41357      Branch: perl
41358            ! perl.c
41359 ____________________________________________________________________________
41360 [ 24666] By: merijn                                on 2005/06/02  07:39:30
41361         Log: Subject: [PATCH] Quotes fixed, see also perl #36079
41362              From: Andy Lester <andy@petdance.com>
41363              Date: Thu, 2 Jun 2005 00:02:38 -0500
41364              Message-ID: <20050602050238.GA4001@petdance.com>
41365      Branch: perl
41366            ! av.c doio.c gv.c malloc.c perl.c perl.h perly.c
41367            ! pod/perldiag.pod pp_sort.c pp_sys.c regcomp.c regexec.c
41368            ! scope.h thrdvar.h toke.c util.c
41369 ____________________________________________________________________________
41370 [ 24665] By: nicholas                              on 2005/06/01  20:46:02
41371         Log: Round up all string length requests to malloc()/realloc() to the next
41372              multiple of 4/8 bytes [sizeof(size_t)] on the assumption that malloc()
41373              internally will quantise, and so we're going to use space that
41374              otherwise would be wasted. Hopefully this will save realloc()ing.
41375      Branch: perl
41376            ! ext/Devel/Peek/t/Peek.t handy.h perl.h sv.c
41377 ____________________________________________________________________________
41378 [ 24664] By: nicholas                              on 2005/06/01  20:42:29
41379         Log: I think SvCUR() was intended rather than SvLEN()
41380      Branch: perl
41381            ! ext/Storable/Storable.xs
41382 ____________________________________________________________________________
41383 [ 24663] By: nicholas                              on 2005/06/01  15:40:57
41384         Log: We don't have XRVs any more, so remove the typedef
41385      Branch: perl
41386            ! perl.h
41387 ____________________________________________________________________________
41388 [ 24662] By: nicholas                              on 2005/06/01  15:23:02
41389         Log: Zero-ing the new HV array is pointless, as we write to every element.
41390              Also avoid calling into he_dup when the HE is 0, to save the function
41391              call overhead.
41392      Branch: perl
41393            ! sv.c
41394 ____________________________________________________________________________
41395 [ 24661] By: nicholas                              on 2005/06/01  15:08:02
41396         Log: As PERL_HV_ARRAY_ALLOC_BYTES is bytes, not items, the type should be
41397              char rather than HE *. Bug was harmless, overallocating by a factor
41398              of sizeof(HE *)
41399      Branch: perl
41400            ! hv.c
41401 ____________________________________________________________________________
41402 [ 24660] By: nicholas                              on 2005/06/01  14:33:14
41403         Log: Store the xhv_aux structure after the main array.
41404              This reduces the size of HV bodies from 24 to 20 bytes on a 32 bit
41405              build. It has the side effect of defined %symbol_table:: now always
41406              being true. defined %hash is already deprecated.
41407      Branch: perl
41408            ! hv.c hv.h sv.c sv.h t/op/magic.t
41409 ____________________________________________________________________________
41410 [ 24659] By: nicholas                              on 2005/06/01  14:28:38
41411         Log: If we're building config_heavy.pl somewhere else, then we need to
41412              require it, not something (or maybe nothing) in the correct place.
41413      Branch: perl
41414            ! configpm
41415 ____________________________________________________________________________
41416 [ 24658] By: rgs                                   on 2005/06/01  14:16:32
41417         Log: Revert change #24656
41418      Branch: perl
41419            ! Makefile.SH
41420 ____________________________________________________________________________
41421 [ 24657] By: nicholas                              on 2005/06/01  09:19:46
41422         Log: Following the head refactoring, the Newz doesn't clear the SvPVX
41423              So PL_mess_sv contained an uninitialised value.
41424      Branch: perl
41425            ! util.c
41426 ____________________________________________________________________________
41427 [ 24656] By: rgs                                   on 2005/06/01  09:12:37
41428         Log: Subject: [PATCH] eliminate always running mktables
41429              From: Robin Barker <Robin.Barker@npl.co.uk>
41430              Date: Wed, 1 Jun 2005 09:55:16 +0100 
41431              Message-ID: <533D273D4014D411AB1D00062938C4D90849C6B8@hotel.npl.co.uk>
41432      Branch: perl
41433            ! Makefile.SH
41434 ____________________________________________________________________________
41435 [ 24655] By: rgs                                   on 2005/06/01  09:09:35
41436         Log: Don't touch lib/ExtUtils/Miniperl.pm when rebuild identically
41437      Branch: perl
41438            ! Makefile.SH
41439 ____________________________________________________________________________
41440 [ 24654] By: rgs                                   on 2005/06/01  08:18:46
41441         Log: Subject: [PATCH] Re: [patch] teach B::Concise to see XS code
41442              From: Stephen McCamant <smcc@mit.edu>
41443              Date: Sat, 21 May 2005 21:52:31 -0700
41444              Message-ID: <17040.4111.265639.434150@apocalypse.OCF.Berkeley.EDU>
41445              
41446              Correctly nullify CvSTART when undef'ing a CV
41447      Branch: perl
41448            ! op.c
41449 ____________________________________________________________________________
41450 [ 24653] By: rgs                                   on 2005/06/01  07:56:50
41451         Log: Subject: Re: [patch] teach B::Concise to see XS code
41452              From: Jim Cromie <jcromie@divsol.com>
41453              Date: Sat, 21 May 2005 09:24:24 -0600
41454              Message-ID: <428F52A8.20702@divsol.com>
41455      Branch: perl
41456            + ext/B/t/concise-xs.t
41457            ! MANIFEST ext/B/B/Concise.pm ext/B/t/concise.t
41458 ____________________________________________________________________________
41459 [ 24652] By: rgs                                   on 2005/06/01  07:39:38
41460         Log: Subject: [PATCH] Speed up lib/unicore/mktables by 45%
41461              From: Andy Lester <andy@petdance.com>
41462              Date: Tue, 31 May 2005 12:39:00 -0500
41463              Message-ID: <20050531173900.GA9820@petdance.com>
41464      Branch: perl
41465            ! lib/unicore/mktables
41466 ____________________________________________________________________________
41467 [ 24651] By: rgs                                   on 2005/05/31  20:34:44
41468         Log: Remove duplicated line
41469      Branch: perl
41470            ! lib/Module/CoreList.pm
41471 ____________________________________________________________________________
41472 [ 24650] By: rgs                                   on 2005/05/31  20:31:55
41473         Log: Upgrade to Module::CoreList 2.02
41474      Branch: perl
41475            ! lib/Module/CoreList.pm
41476 ____________________________________________________________________________
41477 [ 24649] By: nicholas                              on 2005/05/31  12:03:30
41478         Log: Attempt 2 at a diet memory layout can go live.
41479      Branch: perl
41480            ! av.h hv.h
41481 ____________________________________________________________________________
41482 [ 24648] By: nicholas                              on 2005/05/31  10:40:01
41483         Log: Avoid updating a variable in a loop.
41484              Only calculate the number of links in a hash bucket chain if we really
41485              need it.
41486      Branch: perl
41487            ! hv.c
41488 ____________________________________________________________________________
41489 [ 24646] By: nicholas                              on 2005/05/31  10:02:12
41490         Log: Avoid updating a variable in the loop
41491      Branch: perl
41492            ! hv.c
41493 ____________________________________________________________________________
41494 [ 24645] By: rgs                                   on 2005/05/31  09:13:34
41495         Log: Subject: [PATCH] ByteLoader.xs cleanup
41496              From: Andy Lester <andy@petdance.com>
41497              Date: Mon, 30 May 2005 22:28:36 -0500
41498              Message-ID: <20050531032836.GA32198@petdance.com>
41499      Branch: perl
41500            ! ext/ByteLoader/ByteLoader.xs
41501 ____________________________________________________________________________
41502 [ 24644] By: merijn                                on 2005/05/31  05:41:24
41503         Log: Add DECC to the symbol list
41504              Subject: [PATCH]lette Re: updated tru64 cc [PATCH]es (Re: [PATCH]es: Tru64/blead)
41505              From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
41506              Date: Mon, 30 May 2005 16:33:15 -0700
41507              Message-ID: <20050530233315.GA3088@efn.org>
41508      Branch: perl
41509            ! Configure
41510 ____________________________________________________________________________
41511 [ 24642] By: davem                                 on 2005/05/30  23:37:15
41512         Log: add pointer to email explaining why eval {goto &foo} is banned
41513      Branch: perl
41514            ! pp_ctl.c
41515 ____________________________________________________________________________
41516 [ 24638] By: nicholas                              on 2005/05/30  21:02:34
41517         Log: Change the logic to avoid needing to set a variable during the loop
41518      Branch: perl
41519            ! hv.c
41520 ____________________________________________________________________________
41521 [ 24633] By: nicholas                              on 2005/05/30  13:01:27
41522         Log: Various HvPLACEHOLDERS() that should be HvPLACEHOLDERS_get()
41523      Branch: perl
41524            ! hv.c
41525 ____________________________________________________________________________
41526 [ 24631] By: rgs                                   on 2005/05/30  11:54:23
41527         Log: Upgrade to PathTools 3.08
41528      Branch: perl
41529            ! ext/Cwd/Changes lib/Cwd.pm lib/File/Spec.pm
41530 ____________________________________________________________________________
41531 [ 24630] By: merijn                                on 2005/05/30  11:07:45
41532         Log: gcc hints were not yet applied to gcc-4.x
41533              Now they are
41534      Branch: perl
41535            ! hints/hpux.sh
41536 ____________________________________________________________________________
41537 [ 24629] By: rgs                                   on 2005/05/30  11:07:15
41538         Log: Subject: [perl #36037] Perl 5.8.7-RC1 build problems on LynxOS 
41539              From: Olli Savia (via RT) <perlbug-followup@perl.org>
41540              Date: 30 May 2005 10:59:35 -0000
41541              Message-ID: <rt-3.0.11-36037-113779.5.23037641993746@perl.org>
41542      Branch: perl
41543            ! util.c
41544 ____________________________________________________________________________
41545 [ 24628] By: merijn                                on 2005/05/30  10:28:06
41546         Log: regen after #24627
41547      Branch: perl
41548            ! perlapi.h
41549 ____________________________________________________________________________
41550 [ 24627] By: merijn                                on 2005/05/30  10:19:09
41551         Log: Subject: Re: updated tru64 cc [PATCH]es (Re: [PATCH]es: Tru64/blead)
41552              From: Jarkko Hietaniemi <jhietaniemi@gmail.com>
41553              Date: Mon, 30 May 2005 09:15:56 +0300
41554              Message-ID: <429AAF9C.30503@gmail.com>
41555      Branch: perl
41556            ! embed.pl ext/DynaLoader/dl_dlopen.xs perl.h sv.c
41557 ____________________________________________________________________________
41558 [ 24626] By: rgs                                   on 2005/05/30  08:54:51
41559         Log: Subject: [PATCH] Teeny optimization in S_hv_magic_check
41560              From: Andy Lester <andy@petdance.com>
41561              Date: Tue, 24 May 2005 11:41:15 -0500
41562              Message-ID: <20050524164115.GA12027@petdance.com>
41563      Branch: perl
41564            ! hv.c
41565 ____________________________________________________________________________
41566 [ 24625] By: rgs                                   on 2005/05/30  08:48:12
41567         Log: Subject: [PATCH] More embed.fnc strictures, plus consting and localizing
41568              From: Andy Lester <andy@petdance.com>
41569              Date: Tue, 24 May 2005 11:47:22 -0500
41570              Message-ID: <20050524164722.GC12027@petdance.com>
41571              
41572              Subject: [PATCH] Remove unused casts
41573              From: Andy Lester <andy@petdance.com>
41574              Date: Tue, 24 May 2005 11:42:18 -0500
41575              Message-ID: <20050524164218.GB12027@petdance.com>
41576      Branch: perl
41577            ! embed.fnc op.c pp_sys.c proto.h regcomp.c regexec.c scope.c
41578            ! sv.c
41579 ____________________________________________________________________________
41580 [ 24624] By: rgs                                   on 2005/05/30  08:11:30
41581         Log: Minor grammar fix by Uri Guttman
41582      Branch: perl
41583            ! pod/perlre.pod
41584 ____________________________________________________________________________
41585 [ 24623] By: rgs                                   on 2005/05/30  08:08:47
41586         Log: Subject: [PATCH] perlrun.pod -w description typo
41587              From: Offer Kaye <offer.kaye@gmail.com>
41588              Date: Mon, 30 May 2005 11:27:38 +0300
41589              Message-ID: <569425050530012768a9baca@mail.gmail.com>
41590      Branch: perl
41591            ! pod/perlrun.pod
41592 ____________________________________________________________________________
41593 [ 24622] By: rgs                                   on 2005/05/30  07:45:09
41594         Log: Subject: [PATCH] Minor warning squashings
41595              From: Andy Lester <andy@petdance.com>
41596              Date: Sun, 29 May 2005 00:19:06 -0500
41597              Message-Id: <740ea3aca85400c6d03e945323badad4@petdance.com>
41598              
41599              Subject: [PATCH] Consting in Opcode.xs
41600              From: Andy Lester <andy@petdance.com>
41601              Date: Sun, 29 May 2005 11:23:50 -0500
41602              Message-ID: <20050529162350.GA13965@petdance.com>
41603              
41604              Subject: [PATCH] consting attrs.xs
41605              From: Andy Lester <andy@petdance.com>
41606              Date: Sun, 29 May 2005 14:15:46 -0500
41607              Message-ID: <20050529191546.GA15581@petdance.com>
41608              
41609              Subject: [PATCH] consting B.xs
41610              From: Andy Lester <andy@petdance.com>
41611              Date: Sun, 29 May 2005 15:09:24 -0500
41612              Message-ID: <20050529200924.GA15873@petdance.com>
41613      Branch: perl
41614            ! embed.fnc ext/B/B.xs ext/Opcode/Opcode.xs ext/attrs/attrs.xs
41615            ! perlio.c pp_sys.c proto.h regcomp.c utf8.c
41616 ____________________________________________________________________________
41617 [ 24621] By: nicholas                              on 2005/05/30  07:43:05
41618         Log: Need a cast to avoid a compiler warning.
41619      Branch: perl
41620            ! ext/ByteLoader/bytecode.h
41621 ____________________________________________________________________________
41622 [ 24619] By: nicholas                              on 2005/05/29  19:35:38
41623         Log: Goodbye xav_arylen. You won't be missed that much.
41624              So now there's a buy 5 get one free offer on PVAV bodies.
41625      Branch: perl
41626            ! av.c av.h dump.c embed.fnc global.sym perl.h pp.c proto.h sv.c
41627 ____________________________________________________________________________
41628 [ 24618] By: ams                                   on 2005/05/29  18:07:37
41629         Log: Subject: [PATCH configure.com] compiler awareness week
41630              From: "Craig A. Berry" <craigberry@mac.com>
41631              Date: Sun, 29 May 2005 12:43:09 -0500
41632              Message-Id: <4299FF2D.90209@mac.com>
41633      Branch: perl
41634            ! configure.com
41635 ____________________________________________________________________________
41636 [ 24617] By: nicholas                              on 2005/05/29  17:46:39
41637         Log: Change the IV to a union.
41638              Revert the NV union back to a plain NV
41639              Transpose the positions of IV and NV (NV is now first)
41640              Don't allocate the NV for PV,PVIV,PVAV and PVHV (last 2 non-allocations
41641              currently disabled by default)
41642      Branch: perl
41643            ! av.h cv.h hv.h intrpvar.h sv.c sv.h
41644 ____________________________________________________________________________
41645 [ 24615] By: nicholas                              on 2005/05/29  14:24:17
41646         Log: Teach buildtoc about README.openbsd, and regenerate various makefiles.
41647      Branch: perl
41648            ! pod.lst pod/perl.pod vms/descrip_mms.template win32/Makefile
41649            ! win32/makefile.mk
41650 ____________________________________________________________________________
41651 [ 24614] By: nicholas                              on 2005/05/29  14:23:32
41652         Log: Restort into bulidtoc's preferred order
41653      Branch: perl
41654            ! MANIFEST
41655 ____________________________________________________________________________
41656 [ 24613] By: ams                                   on 2005/05/29  04:45:05
41657         Log: Subject: [PATCH] VMS build update for blead
41658              From: "Craig A. Berry" <craigberry@mac.com>
41659              Date: Sat, 28 May 2005 23:18:46 -0500
41660              Message-Id: <429942A6.10601@mac.com>
41661      Branch: perl
41662            ! doio.c perly.c vms/descrip_mms.template vms/gen_shrfls.pl
41663            ! vms/vms.c vms/vmsish.h
41664 ____________________________________________________________________________
41665 [ 24612] By: ams                                   on 2005/05/28  14:40:32
41666         Log: Subject: [PATCH] Re: t/uni/class.t has a lot to warn about
41667              From: Jarkko Hietaniemi <jhietaniemi@gmail.com>
41668              Date: Sat, 28 May 2005 11:47:47 +0300
41669              Message-Id: <42983033.5050509@gmail.com>
41670      Branch: perl
41671            ! t/uni/class.t
41672 ____________________________________________________________________________
41673 [ 24610] By: merijn                                on 2005/05/27  19:22:39
41674         Log: Subject: Re: [PATCH] Do not install change logs, READMEs, etc...
41675              From: Michael G Schwern <schwern@pobox.com>
41676              Date: Fri, 27 May 2005 12:33:27 -0700
41677              Message-ID: <20050527193327.GC17504@windhund.schwern.org>
41678      Branch: perl
41679            ! installperl
41680 ____________________________________________________________________________
41681 [ 24609] By: nicholas                              on 2005/05/27  18:54:36
41682         Log: In assert(), we mustn't stringify the message as part of the first
41683              argument to croak, as it's a *printf format, and the thing we're
41684              asserting might itself contain % signs.
41685              Also, as __FILE__ is a string, we can append that to the format,
41686              rather than needing a %s for it.
41687      Branch: perl
41688            ! perl.h
41689 ____________________________________________________________________________
41690 [ 24608] By: nicholas                              on 2005/05/27  18:20:26
41691         Log: is() is better than ok()
41692      Branch: perl
41693            ! t/op/each.t
41694 ____________________________________________________________________________
41695 [ 24607] By: steveh                                on 2005/05/27  16:22:59
41696         Log: Fix failing Cwd tests on Win32
41697              
41698              Patch was posted to Ken previously
41699              
41700              (see http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2005-05/msg00226.html)
41701              
41702              but no reply as yet.  I'll mail him again...
41703      Branch: perl
41704            ! lib/Cwd.pm
41705 ____________________________________________________________________________
41706 [ 24606] By: steveh                                on 2005/05/27  16:15:41
41707         Log: Skip signals and core dump tests on Win32
41708              
41709              See http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2005-05/msg00749.html
41710      Branch: perl
41711            ! t/run/exit.t
41712 ____________________________________________________________________________
41713 [ 24605] By: steveh                                on 2005/05/27  15:54:09
41714         Log: Fix more Win32 linker errors caused by change 24561
41715              
41716              Apparently sys_intern_init and sys_intern_clear are required even for
41717              non-threaded builds on Win32.
41718      Branch: perl
41719            ! embed.fnc embed.h proto.h
41720 ____________________________________________________________________________
41721 [ 24596] By: merijn                                on 2005/05/27  10:20:54
41722         Log: Subject: [PATCH] Do not install change logs, READMEs, etc...
41723              From: Michael G Schwern <schwern@pobox.com>
41724              Date: Thu, 26 May 2005 13:43:05 -0700
41725              Message-ID: <20050526204305.GH11558@windhund.schwern.org>
41726      Branch: perl
41727            ! installperl
41728 ____________________________________________________________________________
41729 [ 24595] By: merijn                                on 2005/05/27  10:06:25
41730         Log: Subject: [PATCH] add PERL_CALLCONV to PERL_CKDEF and PERL_PPDEF
41731              From: <jarkko.hietaniemi@nokia.com>
41732              Date: Fri, 27 May 2005 13:15:36 +0300
41733              Message-ID: <B356D8F434D20B40A8CEDAEC305A1F24E7A1CD@esebe105.NOE.Nokia.com>
41734      Branch: perl
41735            ! perl.h
41736 ____________________________________________________________________________
41737 [ 24594] By: nicholas                              on 2005/05/27  09:18:26
41738         Log: Get the HEK once only in the hot code (class method calls)
41739      Branch: perl
41740            ! hv.h pp_hot.c
41741 ____________________________________________________________________________
41742 [ 24593] By: rgs                                   on 2005/05/27  07:44:07
41743         Log: Subject: [PATCH] Re: [perl #35420] localtime corruption
41744              From: Michael G Schwern <schwern@pobox.com>
41745              Date: Thu, 26 May 2005 13:39:38 -0700
41746              Message-ID: <20050526203938.GG11558@windhund.schwern.org>
41747      Branch: perl
41748            ! pod/perlfunc.pod pod/perlport.pod
41749 ____________________________________________________________________________
41750 [ 24592] By: rgs                                   on 2005/05/27  07:04:46
41751         Log: Subject: [PATCH] Documentation nits and fixes for Sv*_set() macros
41752              From: Steve Peters <steve@fisharerojo.org>
41753              Date: Thu, 26 May 2005 14:58:50 -0500
41754              Message-ID: <20050526195850.GA1308@mccoy.peters.homeunix.org>
41755      Branch: perl
41756            ! pod/perlapi.pod sv.h
41757 ____________________________________________________________________________
41758 [ 24591] By: steveh                                on 2005/05/26  16:56:03
41759         Log: Fix some Win32 link errors
41760      Branch: perl
41761            ! global.sym makedef.pl proto.h
41762 ____________________________________________________________________________
41763 [ 24590] By: nicholas                              on 2005/05/26  16:07:20
41764         Log: Rename the members of the SV head union to avoid pre-processor
41765              arguments with embed.h
41766      Branch: perl
41767            ! av.h hv.h sv.c sv.h
41768 ____________________________________________________________________________
41769 [ 24588] By: ams                                   on 2005/05/26  15:33:58
41770         Log: -Wall is intolerably noisy with icc.
41771      Branch: perl
41772            ! cflags.SH
41773 ____________________________________________________________________________
41774 [ 24585] By: rgs                                   on 2005/05/26  15:13:53
41775         Log: Subject: [PATCH] bytes.pm doesn't check undefined subroutine calling
41776              From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
41777              Date: Thu, 26 May 2005 23:46:35 +0900
41778              Message-Id: <20050526234321.92F1.BQW10602@nifty.com>
41779      Branch: perl
41780            ! lib/bytes.pm lib/bytes.t
41781 ____________________________________________________________________________
41782 [ 24584] By: nicholas                              on 2005/05/26  14:24:31
41783         Log: Store the package name as a shared HEK.
41784              Abolish HvNAME() - as the stored pointer is not a char* you can't set
41785              it directly now.
41786              Storing a pointer to a HEK tracks the length too, and seems to be
41787              faster.
41788      Branch: perl
41789            ! embed.fnc gv.c hv.c hv.h op.c pp.c proto.h sv.c toke.c
41790            ! xsutils.c
41791 ____________________________________________________________________________
41792 [ 24583] By: nicholas                              on 2005/05/26  12:27:47
41793         Log: We know how big the global string table will be, so use that
41794              information.
41795      Branch: perl
41796            ! sv.c
41797 ____________________________________________________________________________
41798 [ 24582] By: nicholas                              on 2005/05/26  11:28:24
41799         Log: It helps to set the total keys correctly when duplicating a hash.
41800              It helps even more to have a test for this.
41801      Branch: perl
41802            ! ext/threads/t/problems.t sv.c
41803 ____________________________________________________________________________
41804 [ 24581] By: merijn                                on 2005/05/26  11:26:05
41805         Log: More possible re-order dependencies solved
41806      Branch: perl
41807            ! Porting/config_h.pl config_h.SH
41808 ____________________________________________________________________________
41809 [ 24580] By: merijn                                on 2005/05/26  08:43:38
41810         Log: Subject: [PATCH] Updated lint infrastructure
41811              From: Andy Lester <andy@petdance.com>
41812              Date: Wed, 25 May 2005 12:31:39 -0500
41813              Message-ID: <20050525173139.GB1701@petdance.com>
41814      Branch: perl
41815            ! Makefile.SH handy.h malloc.c mg.c pp.c regcomp.h
41816 ____________________________________________________________________________
41817 [ 24579] By: ams                                   on 2005/05/26  07:08:22
41818         Log: Subject: [PATCH] MPE/iX has no lchown()
41819              From: Jarkko Hietaniemi <jhietaniemi@gmail.com>
41820              Date: Thu, 26 May 2005 08:36:19 +0300
41821              Message-Id: <42956053.4010200@gmail.com>
41822      Branch: perl
41823            ! hints/mpeix.sh
41824 ____________________________________________________________________________
41825 [ 24578] By: merijn                                on 2005/05/25  19:05:07
41826         Log: Added Porting/config_h.pl
41827      Branch: perl
41828            ! MANIFEST
41829 ____________________________________________________________________________
41830 [ 24576] By: merijn                                on 2005/05/25  18:41:52
41831         Log: Reordering config_h.SH after metaconfig now semi automated
41832              This will save me *a lot* of manual work
41833      Branch: perl
41834            + Porting/config_h.pl
41835            ! Configure config_h.SH
41836 ____________________________________________________________________________
41837 [ 24575] By: nicholas                              on 2005/05/25  16:26:12
41838         Log: Export Perl_hek_dup, which duplicates shared hash keys.
41839      Branch: perl
41840            ! embed.fnc embed.h hv.c proto.h
41841 ____________________________________________________________________________
41842 [ 24574] By: nicholas                              on 2005/05/25  15:52:33
41843         Log: Track the mapping between source shared hash keys and target shared
41844              hash keys to save repeated lookups during cloning.
41845      Branch: perl
41846            ! embed.fnc embedvar.h ext/threads/threads.xs hv.c intrpvar.h
41847            ! perl.c perlapi.h proto.h sv.c
41848 ____________________________________________________________________________
41849 [ 24573] By: nicholas                              on 2005/05/25  14:06:55
41850         Log: Replace all uses of HvNAME with the appropriate HvNAME_get or
41851              HvNAME_set
41852      Branch: perl
41853            ! bytecode.pl cop.h ext/ByteLoader/bytecode.h
41854            ! ext/ByteLoader/byterun.c
41855 ____________________________________________________________________________
41856 [ 24572] By: nicholas                              on 2005/05/25  10:02:07
41857         Log: I think for now these have to be disabled by default.
41858      Branch: perl
41859            ! av.h hv.h
41860 ____________________________________________________________________________
41861 [ 24571] By: rgs                                   on 2005/05/25  09:34:20
41862         Log: Update description of Term::ReadLine and fix typo
41863              Subject: [perl #35963] Typo in Term::ReadLine 
41864              From: "perlbug@veggiechinese.net (via RT)" <perlbug-followup@perl.org>
41865              Date: 24 May 2005 23:29:37 -0000
41866              Message-ID: <rt-3.0.11-35963-113541.14.5614982698687@perl.org>
41867      Branch: perl
41868            ! lib/Term/ReadLine.pm
41869 ____________________________________________________________________________
41870 [ 24570] By: nicholas                              on 2005/05/24  20:23:53
41871         Log: Initialising the hash seed needs to be early in case anything
41872              calcualtes HASHes during dup()ing.
41873      Branch: perl
41874            ! sv.c
41875 ____________________________________________________________________________
41876 [ 24569] By: nicholas                              on 2005/05/24  17:13:34
41877         Log: Reorder the union to cause Win32 compilers to use void * alignment for
41878              it.
41879      Branch: perl
41880            ! av.h cv.h hv.h sv.h
41881 ____________________________________________________________________________
41882 [ 24568] By: ams                                   on 2005/05/24  16:44:53
41883         Log: Subject: [PATCH] xsubpp, ParseXS: allow other suffix beyond .c
41884              From: jarkko.hietaniemi@nokia.com
41885              Date: Tue, 24 May 2005 12:48:38 +0300
41886              Message-Id: <B356D8F434D20B40A8CEDAEC305A1F2453D7EB@esebe105.NOE.Nokia.com>
41887      Branch: perl
41888            ! lib/ExtUtils/ParseXS.pm lib/ExtUtils/xsubpp
41889 ____________________________________________________________________________
41890 [ 24567] By: rgs                                   on 2005/05/24  15:44:52
41891         Log: Clarification on the behaviour of qw// and x :
41892              Subject: [PATCH] Re: [perl #35885] qw and x operators doesn't mix
41893              From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
41894              Date: Tue, 24 May 2005 08:52:00 -0700
41895              Message-ID: <20050524155200.GA1784@efn.org>
41896      Branch: perl
41897            ! pod/perlop.pod
41898 ____________________________________________________________________________
41899 [ 24566] By: nicholas                              on 2005/05/24  15:21:48
41900         Log: Leaking is bad, m'kay.
41901      Branch: perl
41902            ! hv.c sv.c
41903 ____________________________________________________________________________
41904 [ 24565] By: rgs                                   on 2005/05/24  13:50:02
41905         Log: Remove Perl_ck_* functions from public API
41906      Branch: perl
41907            ! embed.fnc embed.h global.sym
41908 ____________________________________________________________________________
41909 [ 24564] By: nicholas                              on 2005/05/24  13:01:49
41910         Log: Correct the description of pte_arenaroot
41911      Branch: perl
41912            ! intrpvar.h
41913 ____________________________________________________________________________
41914 [ 24563] By: rgs                                   on 2005/05/24  12:58:45
41915         Log: Documentation nit on @-, found by Guillaume Rousse
41916              (plus POD markup simplification, for readability with pod2text)
41917      Branch: perl
41918            ! pod/perlvar.pod
41919 ____________________________________________________________________________
41920 [ 24562] By: rgs                                   on 2005/05/24  12:39:26
41921         Log: ext/B/t/deparse.t was failing with t/TEST but not with t/harness
41922      Branch: perl
41923            ! ext/B/t/deparse.t
41924 ____________________________________________________________________________
41925 [ 24561] By: rgs                                   on 2005/05/24  12:33:01
41926         Log: Subject: [PATCH] embed.fnc cleanup + SvPVX_const usage
41927              From: Andy Lester <andy@petdance.com>
41928              Date: Sat, 21 May 2005 09:06:40 -0500
41929              Message-ID: <20050521140640.GB875@petdance.com>
41930      Branch: perl
41931            ! embed.fnc embed.h global.sym op.c pad.c perlio.c pp_ctl.c
41932            ! pp_hot.c pp_sys.c proto.h regcomp.c sv.c toke.c utf8.c
41933 ____________________________________________________________________________
41934 [ 24560] By: rgs                                   on 2005/05/24  11:22:21
41935         Log: The tokenizer should expect an operator after qw().
41936              This fixes [perl #35885] qw and x operators doesn't mix
41937      Branch: perl
41938            ! t/op/repeat.t toke.c
41939 ____________________________________________________________________________
41940 [ 24559] By: rgs                                   on 2005/05/24  08:45:44
41941         Log: Subject: Re: [perl #35857] [PATCH] B::Deparse doesnt handle warnings register properly.
41942              From: demerphq <demerphq@gmail.com>
41943              Date: Mon, 23 May 2005 11:43:56 +0200
41944              Message-ID: <9b18b31105052302431fb0a3c2@mail.gmail.com>
41945      Branch: perl
41946            ! ext/B/t/deparse.t
41947 ____________________________________________________________________________
41948 [ 24558] By: rgs                                   on 2005/05/24  08:09:10
41949         Log: Make distclean should remove the leftover test files of ExtUtils::ParseXS
41950      Branch: perl
41951            ! Makefile.SH
41952 ____________________________________________________________________________
41953 [ 24557] By: nicholas                              on 2005/05/23  20:26:35
41954         Log: Don't allocate an IV slot where the type doesn't use the IV slot.
41955      Branch: perl
41956            ! av.h hv.h sv.h
41957 ____________________________________________________________________________
41958 [ 24556] By: ams                                   on 2005/05/23  16:58:46
41959         Log: Assorted 2.15 fixes.
41960      Branch: perl
41961            ! ext/Storable/ChangeLog ext/Storable/Storable.xs
41962 ____________________________________________________________________________
41963 [ 24555] By: ams                                   on 2005/05/23  16:34:16
41964         Log: Remove one const to ensure that the universe doesn't tip over.
41965              (At least on AIX.)
41966      Branch: perl
41967            ! ext/Storable/Storable.xs
41968 ____________________________________________________________________________
41969 [ 24554] By: merijn                                on 2005/05/23  15:29:01
41970         Log: Subject: Re: [perl #35938] [PATCH] SDBM_File fails to build on some platforms due to use of 'extern int errno' (was: Re: patches for lang/perl5.8 dfport override) 
41971              From: Andrew Dougherty <doughera@lafayette.edu>
41972              Date: Mon, 23 May 2005 11:48:08 -0400 (EDT)
41973              Message-ID: <Pine.SOC.4.62.0505231143480.4714@maxwell.phys.lafayette.edu>
41974      Branch: perl
41975            ! ext/SDBM_File/sdbm/sdbm.c
41976 ____________________________________________________________________________
41977 [ 24553] By: ams                                   on 2005/05/23  15:24:05
41978         Log: Subject: [PATCH] universal.c warnings hushed
41979              From: Andy Lester <andy@petdance.com>
41980              Date: Mon, 23 May 2005 10:38:25 -0500
41981              Message-Id: <20050523153825.GA28498@petdance.com>
41982      Branch: perl
41983            ! universal.c
41984 ____________________________________________________________________________
41985 [ 24552] By: rgs                                   on 2005/05/23  14:31:33
41986         Log: Attribute compilation fix for Windows by Andy Lester
41987      Branch: perl
41988            ! perl.h perlio.h
41989 ____________________________________________________________________________
41990 [ 24551] By: gbarr                                 on 2005/05/23  13:49:59
41991         Log: Update to Scalar-List-Utils-1.17
41992      Branch: perl
41993            ! ext/List/Util/Changes ext/List/Util/README
41994            ! ext/List/Util/lib/List/Util.pm
41995            ! ext/List/Util/lib/Scalar/Util.pm ext/List/Util/t/lln.t
41996            ! ext/List/Util/t/p_tainted.t ext/List/Util/t/refaddr.t
41997 ____________________________________________________________________________
41998 [ 24550] By: rgs                                   on 2005/05/23  11:38:34
41999         Log: Declaration nit spotted by Jarkko
42000      Branch: perl
42001            ! hv.c
42002 ____________________________________________________________________________
42003 [ 24549] By: nicholas                              on 2005/05/23  11:27:16
42004         Log: PL_regex_padav elements hold either more AVs, or IVs that point to
42005              regexps. Don't attempt to look at the IVX if it's not an IV.
42006      Branch: perl
42007            ! perl.c sv.c
42008 ____________________________________________________________________________
42009 [ 24548] By: nicholas                              on 2005/05/23  10:13:21
42010         Log: Oops. What is looking at an array's SvIVX()?
42011      Branch: perl
42012            ! sv.c
42013 ____________________________________________________________________________
42014 [ 24547] By: nicholas                              on 2005/05/23  09:22:35
42015         Log: We don't need IV and RV arena variables anymore. We don't need to set
42016              SvIVX or SvNVX on hashes.
42017      Branch: perl
42018            ! embedvar.h intrpvar.h perlapi.h sv.c
42019 ____________________________________________________________________________
42020 [ 24546] By: nicholas                              on 2005/05/23  09:09:15
42021         Log: Bytecode mustn't save the NVX for hashes now that the NVX is a union
42022              containing pointers initialised to zero.
42023      Branch: perl
42024            ! ext/B/B/Bytecode.pm
42025 ____________________________________________________________________________
42026 [ 24545] By: steveh                                on 2005/05/23  08:46:37
42027         Log: Fill in HASATTRIBUTE stuff in win32/config_H.* (see change #24508)
42028              
42029              (None are actually defined, but it's nice to have them there anyway)
42030      Branch: perl
42031            ! win32/config_H.bc win32/config_H.gc win32/config_H.vc
42032            ! win32/config_H.vc64
42033 ____________________________________________________________________________
42034 [ 24544] By: nicholas                              on 2005/05/23  08:09:58
42035         Log: create an "allocated" structure for PVs, PVAVs and PVHVs
42036      Branch: perl
42037            ! av.h hv.h intrpvar.h sv.c sv.h
42038 ____________________________________________________________________________
42039 [ 24543] By: rgs                                   on 2005/05/23  07:33:52
42040         Log: Fix [perl #35929] : PerlIO::scalar didn't understand $/ = ""
42041              because PerlIOScalar_unread was broken.
42042              Bump version number of PerlIO::scalar to 0.04.
42043      Branch: perl
42044            ! ext/PerlIO/scalar/scalar.pm ext/PerlIO/scalar/scalar.xs
42045            ! ext/PerlIO/t/scalar.t
42046 ____________________________________________________________________________
42047 [ 24542] By: nicholas                              on 2005/05/22  22:03:19
42048         Log: Re-order IVX slot in SV bodies
42049      Branch: perl
42050            ! av.h cv.h hv.h sv.h
42051 ____________________________________________________________________________
42052 [ 24541] By: rgs                                   on 2005/05/22  18:53:12
42053         Log: Subject: Re: [PATCH 5.8.7 RC1] lib/Carp.t todo for VMS
42054              From: Michael G Schwern <schwern@pobox.com>
42055              Date: May 20, 2005 10:09 PM
42056              Message-ID: <20050520200900.GB13473@windhund.schwern.org>
42057      Branch: perl
42058            ! lib/Carp.t
42059 ____________________________________________________________________________
42060 [ 24538] By: nicholas                              on 2005/05/21  22:46:50
42061         Log: Add a union in place of xnv_nv, which allows AVs and HVs to re-use
42062              the memory to store pointers and integers.
42063              (Part 1 - will be reworked to be more efficient when IV or void*
42064              is 64 bit soon)
42065      Branch: perl
42066            ! av.h cv.h dump.c ext/B/B.pm ext/B/B.xs ext/Devel/Peek/t/Peek.t
42067            ! hv.h sv.h
42068 ____________________________________________________________________________
42069 [ 24537] By: ams                                   on 2005/05/21  22:26:34
42070         Log: Subject: [PATCH] ExtUtils::CBuilder Tru64 support
42071              From: Jarkko Hietaniemi <jhietaniemi@gmail.com>
42072              Date: Sat, 21 May 2005 23:20:21 +0300
42073              Message-Id: <428F9805.70108@gmail.com>
42074      Branch: perl
42075            + lib/ExtUtils/CBuilder/Platform/dec_osf.pm
42076            ! MANIFEST
42077 ____________________________________________________________________________
42078 [ 24536] By: ams                                   on 2005/05/21  22:17:20
42079         Log: Make the __attribute__ stuff work with Symbian (Jarkko).
42080              http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2005-05/msg00530.html
42081      Branch: perl
42082            ! perl.h
42083 ____________________________________________________________________________
42084 [ 24535] By: davem                                 on 2005/05/21  22:10:19
42085         Log: goto &xsub that croaks corrupts memory
42086              When an XS sub is called, a CxSUB context shouldn't be pushed. Make
42087              goto &xs_sub mimic this behaviour by first popping the old CxSUB
42088      Branch: perl
42089            ! pp_ctl.c t/op/goto_xs.t
42090 ____________________________________________________________________________
42091 [ 24534] By: davem                                 on 2005/05/21  21:38:55
42092         Log: stop goto &foo wasting stack space
42093              it used to push @_ onto the end of the stack; now it pops the stack
42094              back to the old watermark first.
42095      Branch: perl
42096            ! pp_ctl.c
42097 ____________________________________________________________________________
42098 [ 24533] By: davem                                 on 2005/05/21  19:50:50
42099         Log: add access to Perl_croak() via 'mycroak' in XS::APItest
42100      Branch: perl
42101            ! ext/XS/APItest/APItest.pm ext/XS/APItest/APItest.xs
42102            ! ext/XS/APItest/t/exception.t
42103 ____________________________________________________________________________
42104 [ 24532] By: davem                                 on 2005/05/21  19:15:43
42105         Log: disallow eval { goto &foo }
42106              eval 'goto &foo' is already banned, and the try-version usually
42107              coredumps due to the code assuming the CxEVAL is actually a CxSUB.
42108              Anyway exiting an eval but preserving "it's" @_ doesn't make much
42109              sense.
42110      Branch: perl
42111            ! pod/perldiag.pod pp_ctl.c t/op/goto.t
42112 ____________________________________________________________________________
42113 [ 24531] By: nicholas                              on 2005/05/21  18:19:43
42114         Log: Move the xpv_pv/xrv_rv member into the SV head, in a union with
42115              IV and UV. Avoid allocating a body for IVs and RVs.
42116      Branch: perl
42117            ! av.h bytecode.pl cv.h embed.fnc embed.h ext/B/B/C.pm
42118            ! ext/ByteLoader/bytecode.h ext/ByteLoader/byterun.c
42119            ! ext/ByteLoader/byterun.h hv.c hv.h proto.h sv.c sv.h
42120 ____________________________________________________________________________
42121 [ 24530] By: rgs                                   on 2005/05/21  16:01:42
42122         Log: Really fix change 24527
42123      Branch: perl
42124            ! gv.c
42125 ____________________________________________________________________________
42126 [ 24529] By: nicholas                              on 2005/05/21  15:59:30
42127         Log: Fool. That should be I32 everywhere.
42128      Branch: perl
42129            ! hv.c
42130 ____________________________________________________________________________
42131 [ 24528] By: ams                                   on 2005/05/21  15:35:44
42132         Log: Subject: [PATCH] ctags parms need to know .h is C
42133              From: Andy Lester <andy@petdance.com>
42134              Date: Sat, 21 May 2005 08:58:14 -0500
42135              Message-Id: <20050521135814.GA875@petdance.com>
42136      Branch: perl
42137            ! Makefile.SH
42138 ____________________________________________________________________________
42139 [ 24527] By: rgs                                   on 2005/05/21  14:15:44
42140         Log: Compilation fix
42141      Branch: perl
42142            ! gv.c
42143 ____________________________________________________________________________
42144 [ 24526] By: nicholas                              on 2005/05/21  12:31:52
42145         Log: Move hv_name, hv_eiter and hv_riter into a new aux structure.
42146              Provide (more efficient) _get and _set macros.
42147              Adjust the core to use them.
42148      Branch: perl
42149            ! dump.c embed.fnc ext/Data/Dumper/Dumper.xs
42150            ! ext/Devel/DProf/DProf.xs ext/Opcode/Opcode.xs
42151            ! ext/PerlIO/via/via.xs ext/Storable/Storable.xs
42152            ! ext/threads/shared/shared.xs global.sym gv.c hv.c hv.h mg.c
42153            ! op.c op.h opnames.h perl.c pp.c pp_hot.c pp_sys.c proto.h sv.c
42154            ! toke.c universal.c xsutils.c
42155 ____________________________________________________________________________
42156 [ 24525] By: nicholas                              on 2005/05/21  09:29:18
42157         Log: Move placeholders into a new rhash magic type.
42158      Branch: perl
42159            ! dump.c embed.fnc ext/Storable/Storable.xs global.sym hv.c hv.h
42160            ! perl.h proto.h sv.c
42161 ____________________________________________________________________________
42162 [ 24524] By: rgs                                   on 2005/05/21  09:18:07
42163         Log: Update to MakeMaker 6.30
42164      Branch: perl
42165            ! lib/ExtUtils/Changes lib/ExtUtils/MM_Unix.pm
42166            ! lib/ExtUtils/MakeMaker.pm lib/ExtUtils/t/FIRST_MAKEFILE.t
42167            ! lib/ExtUtils/t/PL_FILES.t
42168            ! t/lib/MakeMaker/Test/Setup/PL_FILES.pm
42169 ____________________________________________________________________________
42170 [ 24523] By: ams                                   on 2005/05/21  02:58:49
42171         Log: Subject: [PATCH] SvPVX_const - patch #2
42172              From: Steve Peters <steve@fisharerojo.org>
42173              Date: Fri, 20 May 2005 21:42:10 -0500
42174              Message-Id: <20050521024210.GA29036@mccoy.peters.homeunix.org>
42175      Branch: perl
42176            ! dump.c gv.c op.c pad.c perlio.c perly.c pp.c pp_ctl.c
42177 ____________________________________________________________________________
42178 [ 24522] By: nicholas                              on 2005/05/20  22:53:00
42179         Log: Remove PMROOT and replace it with a small shell script. Er, magic.
42180              (PMROOT being needed to implement bare C<reset> - how often do you
42181              use that?)
42182      Branch: perl
42183            ! bytecode.pl dump.c ext/B/B.pm ext/B/B.xs ext/B/B/Asmdata.pm
42184            ! ext/ByteLoader/byterun.c ext/ByteLoader/byterun.h hv.c hv.h
42185            ! op.c perl.h sv.c
42186 ____________________________________________________________________________
42187 [ 24521] By: nicholas                              on 2005/05/20  22:30:16
42188         Log: Update XS code to declare PERL_UNUSED_DECL conditionally
42189      Branch: perl
42190            ! ext/List/Util/Util.xs ext/POSIX/POSIX.xs
42191            ! ext/Storable/Storable.xs
42192 ____________________________________________________________________________
42193 [ 24520] By: nicholas                              on 2005/05/20  21:50:03
42194         Log: Updaate ppport.h to get a conditional PERL_UNUSED_DECL
42195      Branch: perl
42196            ! ext/Cwd/ppport.h ext/Time/HiRes/ppport.h
42197 ____________________________________________________________________________
42198 [ 24519] By: nicholas                              on 2005/05/20  21:46:26
42199         Log: Need to make PERL_UNUSED_DECL conditional as xlc on AIX doesn't like
42200              it being redefined.
42201      Branch: perl
42202            ! ext/Devel/PPPort/PPPort.pm ext/Devel/PPPort/parts/inc/misc
42203 ____________________________________________________________________________
42204 [ 24518] By: nicholas                              on 2005/05/20  21:11:52
42205         Log: Goodbye AvFLAGS
42206      Branch: perl
42207            ! av.c av.h bytecode.pl cop.h dump.c ext/B/B.pm ext/B/B.xs
42208            ! ext/B/B/Asmdata.pm ext/B/B/Bytecode.pm ext/B/B/C.pm
42209            ! ext/B/B/Debug.pm ext/B/defsubs_h.PL ext/ByteLoader/byterun.c
42210            ! ext/ByteLoader/byterun.h pad.c pp_ctl.c sv.c sv.h
42211 ____________________________________________________________________________
42212 [ 24517] By: rgs                                   on 2005/05/20  17:54:15
42213         Log: Upgrade to Math::BigInt 1.77
42214      Branch: perl
42215            ! lib/Math/BigFloat.pm lib/Math/BigInt.pm
42216            ! lib/Math/BigInt/Calc.pm lib/Math/BigInt/t/bare_mbi.t
42217            ! lib/Math/BigInt/t/bigfltpm.inc lib/Math/BigInt/t/bigintpm.inc
42218            ! lib/Math/BigInt/t/bigintpm.t lib/Math/BigInt/t/sub_mbi.t
42219 ____________________________________________________________________________
42220 [ 24516] By: nicholas                              on 2005/05/20  16:42:44
42221         Log: Fix a typo
42222      Branch: perl
42223            ! hv.h
42224 ____________________________________________________________________________
42225 [ 24514] By: ams                                   on 2005/05/20  14:42:21
42226         Log: Damnable applypatch nonsense.
42227      Branch: perl
42228            ! ext/Storable/t/sig_die.t
42229 ____________________________________________________________________________
42230 [ 24513] By: rgs                                   on 2005/05/20  14:37:12
42231         Log: Update MANIFEST
42232      Branch: perl
42233            ! MANIFEST
42234 ____________________________________________________________________________
42235 [ 24512] By: ams                                   on 2005/05/20  14:21:21
42236         Log: Previously overlooked $SIG{DIE} patch from Slaven Rezic.
42237              http://groups-beta.google.com/group/perl.perl5.porters/msg/2d10ba2c390ecc41
42238      Branch: perl
42239            + ext/Storable/t/sig_die.t
42240            ! ext/Storable/MANIFEST ext/Storable/Storable.pm
42241 ____________________________________________________________________________
42242 [ 24511] By: rgs                                   on 2005/05/20  13:11:43
42243         Log: Subject: [PATCH] Add a Makefile target for ctags
42244              From: Andy Lester <andy@petdance.com>
42245              Date: Thu, 12 May 2005 11:40:52 -0500
42246              Message-ID: <20050512164052.GA30287@petdance.com>
42247      Branch: perl
42248            ! Makefile.SH
42249 ____________________________________________________________________________
42250 [ 24510] By: rgs                                   on 2005/05/20  10:49:03
42251         Log: Upgrade to MakeMaker 6.29
42252      Branch: perl
42253            + lib/ExtUtils/t/FIRST_MAKEFILE.t
42254            ! MANIFEST lib/ExtUtils/Changes lib/ExtUtils/MM_Unix.pm
42255            ! lib/ExtUtils/MM_Win32.pm lib/ExtUtils/MakeMaker.pm
42256            ! lib/ExtUtils/t/Installed.t
42257 ____________________________________________________________________________
42258 [ 24509] By: rgs                                   on 2005/05/20  09:26:01
42259         Log: Subject: SvPVX_const() - Patch #1
42260              From: Steve Peters <steve@fisharerojo.org>
42261              Date: Tue, 17 May 2005 18:17:01 -0500
42262              Message-ID: <20050517231701.GA1394@mccoy.peters.homeunix.org>
42263      Branch: perl
42264            ! doio.c toke.c universal.c util.c warnings.h warnings.pl
42265 ____________________________________________________________________________
42266 [ 24508] By: rgs                                   on 2005/05/20  07:53:46
42267         Log: Subject: [PATCH] Attribute configuration
42268              From: Andy Lester <andy@petdance.com>
42269              Date: Thu, 19 May 2005 12:32:56 -0500
42270              Message-ID: <20050519173256.GA29039@petdance.com>
42271      Branch: perl
42272            ! Configure Cross/config.sh-arm-linux NetWare/config.wc
42273            ! Porting/Glossary Porting/config.sh Porting/pumpkin.pod XSUB.h
42274            ! config_h.SH configure.com epoc/config.sh hints/next_3_0.sh
42275            ! hints/vmesa.sh malloc.c mg.c op.c perl.c perl.h perlio.h
42276            ! plan9/config_sh.sample plan9/genconfig.pl scope.c sv.c
42277            ! symbian/config.sh t/op/sprintf.t uconfig.sh vms/genconfig.pl
42278            ! win32/config.bc win32/config.gc win32/config.vc
42279            ! win32/config.vc64 wince/config.ce
42280 ____________________________________________________________________________
42281 [ 24507] By: rgs                                   on 2005/05/20  07:16:59
42282         Log: Gisle noted an unused variable
42283      Branch: perl
42284            ! t/run/exit.t
42285 ____________________________________________________________________________
42286 [ 24506] By: rgs                                   on 2005/05/19  21:07:43
42287         Log: Fix the new exit() tests, by Gisle Aas :
42288              don't let the shell interfere with the process return value
42289      Branch: perl
42290            ! t/run/exit.t
42291 ____________________________________________________________________________
42292 [ 24505] By: ams                                   on 2005/05/19  17:51:48
42293         Log: Subject: [perl #35857] [PATCH] B::Deparse doesnt handle warnings register properly. 
42294              From: yves orton <perlbug-followup@perl.org>
42295              Date: 18 May 2005 08:30:44 -0000
42296              Message-Id: <rt-3.0.11-35857-113142.6.75213005071278@perl.org>
42297      Branch: perl
42298            ! ext/B/B/Deparse.pm
42299 ____________________________________________________________________________
42300 [ 24504] By: nicholas                              on 2005/05/19  09:32:18
42301         Log: tabs, not spaces. Bad editor. No cookie.
42302              Does the MANIFEST file support comments, sufficient to add an editor
42303              block?
42304      Branch: perl
42305            ! MANIFEST
42306 ____________________________________________________________________________
42307 [ 24503] By: rgs                                   on 2005/05/19  06:25:22
42308         Log: Adjust VMS test count
42309      Branch: perl
42310            ! t/run/exit.t
42311 ____________________________________________________________________________
42312 [ 24501] By: rgs                                   on 2005/05/18  16:08:30
42313         Log: Subject: Well defined $? and introduction of ${^CHILD_ERROR_NATIVE} [PATCH]
42314              From: Gisle Aas <gisle@ActiveState.com>
42315              Date: 18 May 2005 08:35:47 -0700
42316              Message-ID: <lr8y2cim24.fsf_-_@caliper.activestate.com>
42317      Branch: perl
42318            ! doio.c embedvar.h gv.c intrpvar.h mg.c perl.c perl.h perlapi.h
42319            ! pod/perlfunc.pod pod/perlport.pod pod/perlvar.pod t/run/exit.t
42320 ____________________________________________________________________________
42321 [ 24500] By: rgs                                   on 2005/05/18  15:26:32
42322         Log: Subject: Re: [PATCH] ExtUtils-{ParseXS,CBuilder} into bleadperl (was: Re: [Module::Build] ANNOUNCE: Module::Build 0.2610 -> CPAN)
42323              From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
42324              Date: Wed, 18 May 2005 07:13:40 -0700
42325              Message-ID: <20050518141131.GA2704@efn.org>
42326      Branch: perl
42327            + lib/ExtUtils/CBuilder.pm lib/ExtUtils/CBuilder/Base.pm
42328            + lib/ExtUtils/CBuilder/Platform/Unix.pm
42329            + lib/ExtUtils/CBuilder/Platform/VMS.pm
42330            + lib/ExtUtils/CBuilder/Platform/Windows.pm
42331            + lib/ExtUtils/CBuilder/Platform/aix.pm
42332            + lib/ExtUtils/CBuilder/Platform/cygwin.pm
42333            + lib/ExtUtils/CBuilder/Platform/darwin.pm
42334            + lib/ExtUtils/CBuilder/Platform/os2.pm
42335            + lib/ExtUtils/CBuilder/t/01-basic.t
42336            + lib/ExtUtils/CBuilder/t/02-link.t lib/ExtUtils/ParseXS.pm
42337            + lib/ExtUtils/ParseXS/t/XSTest.pm
42338            + lib/ExtUtils/ParseXS/t/XSTest.xs
42339            + lib/ExtUtils/ParseXS/t/basic.t
42340            ! MANIFEST Porting/Maintainers.pl lib/ExtUtils/t/00compile.t
42341            ! lib/ExtUtils/xsubpp
42342 ____________________________________________________________________________
42343 [ 24499] By: rgs                                   on 2005/05/18  12:46:38
42344         Log: Subject: B::Disassembler.pm
42345              From: Nicholas Clark <nick@ccl4.org>
42346              Date: Tue, 17 May 2005 11:28:18 +0100
42347              Message-ID: <20050517102817.GD94420@plum.flirble.org>
42348      Branch: perl
42349            ! ext/B/B/Disassembler.pm
42350 ____________________________________________________________________________
42351 [ 24498] By: davem                                 on 2005/05/18  12:39:22
42352         Log: make t/TEST print summary times consistently to two decimal places
42353      Branch: perl
42354            ! t/TEST
42355 ____________________________________________________________________________
42356 [ 24497] By: nicholas                              on 2005/05/18  12:34:53
42357         Log: Default to allocating the correct size for the array in the HV.
42358              Override this with -DPERL_USE_LARGE_HV_ALLOC
42359      Branch: perl
42360            ! hv.h
42361 ____________________________________________________________________________
42362 [ 24496] By: rgs                                   on 2005/05/18  11:50:47
42363         Log: Subject: [PATCH] Eliminate radically out of date CHANGES from perlport
42364              From: Michael G Schwern <schwern@pobox.com>
42365              Date: Mon, 16 May 2005 15:17:05 -0700
42366              Message-ID: <20050516221705.GA212@windhund.schwern.org>
42367              
42368              Subject: [PATCH] Eliminate function signatures from perlport
42369              From: Michael G Schwern <schwern@pobox.com>
42370              Date: Mon, 16 May 2005 15:24:18 -0700
42371              Message-ID: <20050516222418.GA422@windhund.schwern.org>
42372      Branch: perl
42373            ! pod/perlport.pod
42374 ____________________________________________________________________________
42375 [ 24495] By: merijn                                on 2005/05/17  18:45:56
42376         Log: Subject: [PATCH] more about __attribute__
42377              From: Jarkko Hietaniemi <jhietaniemi@gmail.com>
42378              Date: Tue, 17 May 2005 20:36:43 +0300
42379              Message-ID: <428A2BAB.9020306@gmail.com>
42380      Branch: perl
42381            ! perl.h
42382 ____________________________________________________________________________
42383 [ 24493] By: rgs                                   on 2005/05/17  15:55:38
42384         Log: Clarify definition of octal literals
42385              (thanks to Olivier Blin)
42386      Branch: perl
42387            ! pod/perldata.pod
42388 ____________________________________________________________________________
42389 [ 24492] By: rgs                                   on 2005/05/17  15:15:46
42390         Log: Subject: [PATCH] perl 5.9.x (@ 24471): Symbian update
42391              From: <jarkko.hietaniemi@nokia.com>
42392              Date: Mon, 16 May 2005 17:59:35 +0300
42393              Message-ID: <B356D8F434D20B40A8CEDAEC305A1F2453D793@esebe105.NOE.Nokia.com>
42394              
42395              completed by:
42396              Message-ID: <B356D8F434D20B40A8CEDAEC305A1F2453D7A0@esebe105.NOE.Nokia.com>
42397      Branch: perl
42398            ! embed.pl mg.c op.c perl.h proto.h reentr.c reentr.pl scope.c
42399            ! symbian/port.pl universal.c
42400 ____________________________________________________________________________
42401 [ 24491] By: nicholas                              on 2005/05/17  13:27:43
42402         Log: One last 1008 to replace with PERL_ARENA_SIZE
42403      Branch: perl
42404            ! sv.c
42405 ____________________________________________________________________________
42406 [ 24490] By: nicholas                              on 2005/05/16  21:42:05
42407         Log: Upgrade to Encode 2.10
42408      Branch: perl
42409            ! ext/Encode/AUTHORS ext/Encode/Changes ext/Encode/Encode.pm
42410            ! ext/Encode/Encode.xs ext/Encode/META.yml
42411            ! ext/Encode/lib/Encode/Alias.pm
42412 ____________________________________________________________________________
42413 [ 24489] By: rgs                                   on 2005/05/16  16:56:43
42414         Log: Subject: [PATCH] consting-eleventy.patch: More consts, plus actual bug fix
42415              From: Andy Lester <andy@petdance.com>
42416              Date: Mon, 16 May 2005 10:13:53 -0500
42417              Message-ID: <20050516151353.GA25387@petdance.com>
42418      Branch: perl
42419            ! XSUB.h av.c dump.c embed.fnc embed.h hv.c malloc.c mg.c
42420            ! numeric.c perl.c perl.h pod/perlapi.pod pp.h pp_ctl.c pp_hot.c
42421            ! proto.h regcomp.c regexec.c scope.c sv.c sv.h
42422            ! t/run/fresh_perl.t toke.c universal.c utf8.c util.c
42423 ____________________________________________________________________________
42424 [ 24482] By: nicholas                              on 2005/05/16  15:11:30
42425         Log: Bump the version number on Win32::Win32
42426      Branch: perl
42427            ! win32/ext/Win32/Win32.pm
42428 ____________________________________________________________________________
42429 [ 24480] By: nicholas                              on 2005/05/16  15:01:48
42430         Log: Assuming that everything with 0x40000000 is SVpad_TYPED is bogus.
42431      Branch: perl
42432            ! sv.c
42433 ____________________________________________________________________________
42434 [ 24476] By: rgs                                   on 2005/05/16  08:58:40
42435         Log: This seems to be the right thing to do to iterate over layers
42436      Branch: perl
42437            ! ext/PerlIO/via/via.xs
42438 ____________________________________________________________________________
42439 [ 24475] By: rgs                                   on 2005/05/16  08:47:28
42440         Log: $! might contain "unknown" if strerror(3) says so
42441      Branch: perl
42442            ! t/op/mkdir.t
42443 ____________________________________________________________________________
42444 [ 24472] By: rgs                                   on 2005/05/16  08:03:15
42445         Log: Upgrade to Time::HiRes 1.68
42446      Branch: perl
42447            ! ext/Time/HiRes/Changes ext/Time/HiRes/HiRes.pm
42448            ! ext/Time/HiRes/HiRes.xs
42449 ____________________________________________________________________________
42450 [ 24471] By: nicholas                              on 2005/05/15  20:46:03
42451         Log: Subject: [PATCH] Minor tweak to via
42452              From: Andy Lester <andy@petdance.com>
42453              Message-ID: <20050513163952.GA20167@petdance.com>
42454              Date: Fri, 13 May 2005 11:39:52 -0500
42455              
42456              from a bug report and patch by Matt Lawrence
42457      Branch: perl
42458            ! ext/PerlIO/via/via.xs
42459 ____________________________________________________________________________
42460 [ 24470] By: nicholas                              on 2005/05/15  11:32:15
42461         Log: Upgrade to CGI.pm 3.10
42462      Branch: perl
42463            + lib/CGI/t/can.t
42464            ! MANIFEST lib/CGI.pm lib/CGI/Changes lib/CGI/t/form.t
42465 ____________________________________________________________________________
42466 [ 24469] By: davem                                 on 2005/05/15  00:09:35
42467         Log: avoid leaked scalar in BEGIN { threads->new(...) }
42468      Branch: perl
42469            ! sv.c
42470 ____________________________________________________________________________
42471 [ 24468] By: davem                                 on 2005/05/14  23:16:50
42472         Log: Fix typo in DDEBUG_LEAKING_SCALARS flags output
42473      Branch: perl
42474            ! perl.c
42475 ____________________________________________________________________________
42476 [ 24467] By: davem                                 on 2005/05/14  15:11:30
42477         Log: initialize the PL_xpvgv_[arena]root vars during clone
42478      Branch: perl
42479            ! sv.c
42480 ____________________________________________________________________________
42481 [ 24465] By: gbarr                                 on 2005/05/13  20:42:53
42482         Log: Update to Scalar-List-Utils-1.15
42483      Branch: perl
42484            + ext/List/Util/t/p_blessed.t ext/List/Util/t/p_first.t
42485            + ext/List/Util/t/p_lln.t ext/List/Util/t/p_max.t
42486            + ext/List/Util/t/p_maxstr.t ext/List/Util/t/p_min.t
42487            + ext/List/Util/t/p_minstr.t ext/List/Util/t/p_openhan.t
42488            + ext/List/Util/t/p_readonly.t ext/List/Util/t/p_reduce.t
42489            + ext/List/Util/t/p_refaddr.t ext/List/Util/t/p_reftype.t
42490            + ext/List/Util/t/p_shuffle.t ext/List/Util/t/p_sum.t
42491            + ext/List/Util/t/p_tainted.t
42492            ! MANIFEST ext/List/Util/Changes ext/List/Util/Util.xs
42493            ! ext/List/Util/lib/List/Util.pm
42494            ! ext/List/Util/lib/Scalar/Util.pm ext/List/Util/t/blessed.t
42495            ! ext/List/Util/t/dualvar.t ext/List/Util/t/first.t
42496            ! ext/List/Util/t/isvstring.t ext/List/Util/t/lln.t
42497            ! ext/List/Util/t/max.t ext/List/Util/t/maxstr.t
42498            ! ext/List/Util/t/min.t ext/List/Util/t/minstr.t
42499            ! ext/List/Util/t/openhan.t ext/List/Util/t/proto.t
42500            ! ext/List/Util/t/readonly.t ext/List/Util/t/reduce.t
42501            ! ext/List/Util/t/refaddr.t ext/List/Util/t/reftype.t
42502            ! ext/List/Util/t/shuffle.t ext/List/Util/t/sum.t
42503            ! ext/List/Util/t/tainted.t ext/List/Util/t/weak.t
42504 ____________________________________________________________________________
42505 [ 24461] By: rgs                                   on 2005/05/13  12:52:45
42506         Log: Subject: change to quiet cygwin's perlld
42507              From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
42508              Date: Fri, 13 May 2005 06:15:45 -0700
42509              Message-ID: <20050513131545.GB4024@efn.org>
42510      Branch: perl
42511            ! cygwin/perlld.in
42512 ____________________________________________________________________________
42513 [ 24460] By: nicholas                              on 2005/05/13  11:59:26
42514         Log: Reorder the *more* arena allocation functions into a block
42515              As they are now ahead of their corresponding *new* functions, no need
42516              for all the embedding guff.
42517              Remove all the "register" keywords.
42518      Branch: perl
42519            ! embed.fnc embed.h hv.c proto.h sv.c
42520 ____________________________________________________________________________
42521 [ 24459] By: nicholas                              on 2005/05/13  11:09:03
42522         Log: Allocate GV bodies from arenas
42523      Branch: perl
42524            ! embed.fnc embed.h embedvar.h intrpvar.h perlapi.h proto.h sv.c
42525 ____________________________________________________________________________
42526 [ 24455] By: davem                                 on 2005/05/12  19:07:27
42527         Log: make join.t threadsafe!
42528              tests 13 and 14 could output in reverse order. Add a lock to stop
42529              this.
42530      Branch: perl
42531            ! ext/threads/t/join.t
42532 ____________________________________________________________________________
42533 [ 24454] By: steveh                                on 2005/05/12  10:56:20
42534         Log: Remove a couple of unreferenced local variables
42535      Branch: perl
42536            ! win32/ext/Win32/Win32.xs
42537 ____________________________________________________________________________
42538 [ 24453] By: steveh                                on 2005/05/12  10:10:37
42539         Log: Subject: [PATCH] Add Win32::GetFileVersion() function
42540              From: "Jan Dubois" <jand@ActiveState.com>
42541              Date: Wed, 11 May 2005 22:30:37 -0700
42542              Message-Id: <200505120530.j4C5UhpX031152@smtp3.ActiveState.com>
42543      Branch: perl
42544            ! win32/ext/Win32/Win32.pm win32/ext/Win32/Win32.xs
42545 ____________________________________________________________________________
42546 [ 24452] By: rgs                                   on 2005/05/12  09:58:50
42547         Log: Silence DEBUGGING compilation warnings
42548      Branch: perl
42549            ! toke.c
42550 ____________________________________________________________________________
42551 [ 24451] By: rgs                                   on 2005/05/12  09:52:12
42552         Log: SvUPGRADE doesn't return false.
42553      Branch: perl
42554            ! toke.c
42555 ____________________________________________________________________________
42556 [ 24450] By: rgs                                   on 2005/05/12  08:45:40
42557         Log: Rework documentation of split(//,...)
42558      Branch: perl
42559            ! pod/perlfunc.pod
42560 ____________________________________________________________________________
42561 [ 24449] By: ams                                   on 2005/05/11  16:57:27
42562         Log: Subject: [perl #33765] [PATCH] perlop: mention why 'print !!0' doesn't 
42563              From: Steve Peters via RT <perlbug-followup@perl.org>
42564              Date: 11 May 2005 16:58:22 -0000
42565              Message-Id: <rt-3.0.11-33765-112475.14.5633321030279@perl.org>
42566              
42567              Subject: [perl #33766] [PATCH] perldoc -f split lacks basic null example 
42568              From: Steve Peters via RT <perlbug-followup@perl.org>
42569              Date: 11 May 2005 17:13:29 -0000
42570              Message-Id: <rt-3.0.11-33766-112476.1.84217630998887@perl.org>
42571      Branch: perl
42572            ! pod/perlfunc.pod pod/perlsyn.pod
42573 ____________________________________________________________________________
42574 [ 24446] By: merijn                                on 2005/05/11  09:39:06
42575         Log: Subject: Hints changes for OS X 10.4
42576              From: Michael G Schwern <schwern@pobox.com>
42577              Date: Tue, 10 May 2005 18:10:47 -0700
42578              Message-ID: <20050511011047.GA23955@windhund.schwern.org>
42579      Branch: perl
42580            ! hints/darwin.sh
42581 ____________________________________________________________________________
42582 [ 24445] By: rgs                                   on 2005/05/11  07:54:19
42583         Log: Include vim/emacs modelines in generated files to open them
42584              in read-only mode. Make vi modelines compatible with non-vim
42585              vi versions.
42586      Branch: perl
42587            ! av.c bytecode.pl deb.c doio.c doop.c dump.c embed.h embed.pl
42588            ! embedvar.h ext/B/B/Asmdata.pm ext/ByteLoader/byterun.c
42589            ! ext/ByteLoader/byterun.h global.sym globals.c gv.c hv.c
42590            ! keywords.h keywords.pl lib/warnings.pm locale.c malloc.c mg.c
42591            ! miniperlmain.c numeric.c op.c opcode.h opcode.pl opnames.h
42592            ! pad.c perl.c perlapi.c perlapi.h perlio.c perly.c pp.c pp.sym
42593            ! pp_ctl.c pp_hot.c pp_pack.c pp_proto.h pp_sort.c pp_sys.c
42594            ! proto.h reentr.c reentr.h reentr.pl regcomp.c regcomp.pl
42595            ! regexec.c regnodes.h run.c scope.c sv.c taint.c toke.c
42596            ! universal.c utf8.c util.c warnings.h warnings.pl xsutils.c
42597 ____________________________________________________________________________
42598 [ 24444] By: rgs                                   on 2005/05/10  20:56:37
42599         Log: Subject: potential [PATCH] Tru64 crank up strictness
42600              From: Jarkko Hietaniemi <jhietaniemi@gmail.com>
42601              Date: May 10, 2005 7:44 PM
42602              Message-Id: <4ADE5AAD-27CB-4F9E-BEC7-41DAA7671108@iki.fi>
42603      Branch: perl
42604            ! hints/dec_osf.sh perl.h toke.c x2p/a2py.c
42605 ____________________________________________________________________________
42606 [ 24443] By: rgs                                   on 2005/05/10  20:27:16
42607         Log: "make regen" should run reentr.pl
42608      Branch: perl
42609            ! regen.pl
42610 ____________________________________________________________________________
42611 [ 24442] By: rgs                                   on 2005/05/10  20:08:27
42612         Log: Regenerate reentr.[ch]
42613      Branch: perl
42614            ! reentr.c reentr.h
42615 ____________________________________________________________________________
42616 [ 24441] By: ams                                   on 2005/05/10  17:23:26
42617         Log: Subject: Re: [PATCH] reentr.h changes so threaded Perl's compile on OpenBSD 3.7
42618              From: Steve Peters <steve@fisharerojo.org>
42619              Date: Tue, 10 May 2005 12:44:13 -0500
42620              Message-Id: <20050510174413.GA19686@mccoy.peters.homeunix.org>
42621      Branch: perl
42622            + README.openbsd
42623            ! MANIFEST reentr.pl
42624 ____________________________________________________________________________
42625 [ 24440] By: rgs                                   on 2005/05/10  16:51:02
42626         Log: Add editor boilerplates to all C files
42627              (except the generated ones)
42628      Branch: perl
42629            ! av.c deb.c doio.c doop.c dump.c globals.c gv.c hv.c locale.c
42630            ! malloc.c mg.c miniperlmain.c numeric.c op.c pad.c perl.c
42631            ! perlio.c perly.c pp.c pp_ctl.c pp_hot.c pp_pack.c pp_sort.c
42632            ! pp_sys.c regcomp.c regexec.c run.c scope.c sv.c taint.c toke.c
42633            ! universal.c utf8.c util.c xsutils.c
42634 ____________________________________________________________________________
42635 [ 24439] By: nicholas                              on 2005/05/10  15:38:07
42636         Log: s/sv_setpv(sv,"")/sv_setpvn(sv,"",0)/
42637              plus a couple of 1 byte sv_setpv()s too.
42638      Branch: perl
42639            ! doio.c dump.c ext/B/B.xs ext/Storable/Storable.xs mg.c op.c
42640            ! perl.c pp_ctl.c pp_hot.c pp_sys.c toke.c
42641 ____________________________________________________________________________
42642 [ 24438] By: nicholas                              on 2005/05/10  14:47:58
42643         Log: As we have the length of the string easily to hand, no reason not to
42644              use it.
42645      Branch: perl
42646            ! op.c
42647 ____________________________________________________________________________
42648 [ 24437] By: ams                                   on 2005/05/10  14:41:08
42649         Log: Subject: [PATCH] perlop.pod nit
42650              From: Steve Peters <steve@fisharerojo.org>
42651              Date: Tue, 10 May 2005 09:41:01 -0500
42652              Message-Id: <20050510144101.GA21362@mccoy.peters.homeunix.org>
42653      Branch: perl
42654            ! pod/perlop.pod
42655 ____________________________________________________________________________
42656 [ 24436] By: nicholas                              on 2005/05/10  11:03:49
42657         Log: Experiment with using the ptr_table code to hold the seen hash
42658      Branch: perl
42659            ! ext/Storable/Storable.xs
42660 ____________________________________________________________________________
42661 [ 24435] By: nicholas                              on 2005/05/10  09:17:32
42662         Log: Simplify the debug and assert logic.
42663      Branch: perl
42664            ! ext/Storable/Storable.xs
42665 ____________________________________________________________________________
42666 [ 24434] By: nicholas                              on 2005/05/10  09:03:11
42667         Log: Change 24165 missed one s/class/classname/ in the debugging code.
42668      Branch: perl
42669            ! ext/Storable/Storable.xs
42670 ____________________________________________________________________________
42671 [ 24433] By: ams                                   on 2005/05/10  03:16:23
42672         Log: Subject: [PATCH] reentr.h changes so threaded Perl's compile on OpenBSD 3.7
42673              From: Steve Peters <steve@fisharerojo.org>
42674              Date: Mon, 9 May 2005 21:10:49 -0500
42675              Message-Id: <20050510021049.GA20147@mccoy.peters.homeunix.org>
42676      Branch: perl
42677            ! reentr.h
42678 ____________________________________________________________________________
42679 [ 24432] By: ams                                   on 2005/05/10  03:15:34
42680         Log: Subject: [PATCH] Avoid USE_SITECUSTOMIZE redefined warnings
42681              From: Jan Dubois <jand@ActiveState.com>
42682              Date: Mon, 9 May 2005 19:29:06 -0700
42683              Message-Id: <200505100229.j4A2TGm1019135@smtp3.ActiveState.com>
42684      Branch: perl
42685            ! config_h.SH
42686 ____________________________________________________________________________
42687 [ 24431] By: rgs                                   on 2005/05/09  20:07:14
42688         Log: Subject: [PATCH] attributes-two.patch, the next batch
42689              From: Andy Lester <andy@petdance.com>
42690              Date: May 9, 2005 5:45 PM
42691              Message-ID: <20050509154518.GA18273@petdance.com>
42692      Branch: perl
42693            ! doop.c embed.fnc embed.pl gv.c handy.h op.c perl.c
42694            ! pod/perlapi.pod pp.c pp_ctl.c pp_sys.c proto.h sv.c toke.c
42695            ! utf8.c
42696 ____________________________________________________________________________
42697 [ 24430] By: rgs                                   on 2005/05/09  19:19:20
42698         Log: Fix typo (bug #35368)
42699      Branch: perl
42700            ! pod/perlreftut.pod
42701 ____________________________________________________________________________
42702 [ 24429] By: nicholas                              on 2005/05/09  16:33:57
42703         Log: Update the comment describing arenas.
42704      Branch: perl
42705            ! sv.c
42706 ____________________________________________________________________________
42707 [ 24427] By: nicholas                              on 2005/05/09  11:22:19
42708         Log: Hoist the static "AUTOLOAD" into a static const variable. Makes the
42709              object file slightly smaller, and also increases the proportion of
42710              read only data section.
42711      Branch: perl
42712            ! gv.c
42713 ____________________________________________________________________________
42714 [ 24426] By: rgs                                   on 2005/05/09  11:11:35
42715         Log: Upgrade to Unicode::Collate 0.50
42716      Branch: perl
42717            + lib/Unicode/Collate/t/cjkrange.t lib/Unicode/Collate/t/ignor.t
42718            + lib/Unicode/Collate/t/override.t
42719            ! MANIFEST lib/Unicode/Collate.pm lib/Unicode/Collate/Changes
42720            ! lib/Unicode/Collate/README lib/Unicode/Collate/t/altern.t
42721            ! lib/Unicode/Collate/t/contract.t
42722            ! lib/Unicode/Collate/t/hangtype.t
42723            ! lib/Unicode/Collate/t/hangul.t lib/Unicode/Collate/t/illegal.t
42724            ! lib/Unicode/Collate/t/illegalp.t lib/Unicode/Collate/t/index.t
42725            ! lib/Unicode/Collate/t/normal.t
42726            ! lib/Unicode/Collate/t/rearrang.t lib/Unicode/Collate/t/test.t
42727            ! lib/Unicode/Collate/t/trailwt.t
42728            ! lib/Unicode/Collate/t/variable.t
42729            ! lib/Unicode/Collate/t/version.t lib/Unicode/Collate/t/view.t
42730 ____________________________________________________________________________
42731 [ 24425] By: nicholas                              on 2005/05/09  10:10:42
42732         Log: Change 24413 should have updated makedef.pl with the knowledge that 2
42733              symbols are ithreads only.
42734      Branch: perl
42735            ! makedef.pl
42736 ____________________________________________________________________________
42737 [ 24424] By: nicholas                              on 2005/05/09  10:00:37
42738         Log: Change 24420 should have hand updated globvar.sym to reflect the
42739              renaming of the global variable.
42740      Branch: perl
42741            ! globvar.sym
42742 ____________________________________________________________________________
42743 [ 24423] By: nicholas                              on 2005/05/09  08:48:46
42744         Log: Simplify S_hv_notallowed slightly by passing a prebuilt message
42745              template. (Also slightly smaller object code)
42746      Branch: perl
42747            ! hv.c
42748 ____________________________________________________________________________
42749 [ 24422] By: rgs                                   on 2005/05/09  07:37:58
42750         Log: Subject: [PATCH] Sv_*set() doc's and extra const's for the SvPVX_const() tasks
42751              From: Steve Peters <steve@fisharerojo.org>
42752              Date: Sun, 8 May 2005 20:49:17 -0500
42753              Message-ID: <20050509014917.GA24132@mccoy.peters.homeunix.org>
42754      Branch: perl
42755            ! embed.fnc perl_keyword.pl pod/perlapi.pod proto.h sv.h toke.c
42756 ____________________________________________________________________________
42757 [ 24421] By: rgs                                   on 2005/05/09  07:29:33
42758         Log: Revert to Andy's first solution for nonnull attributes;
42759              add the missing defines for non-threaded perls in perl.h
42760      Branch: perl
42761            ! embed.h embed.pl global.sym perl.h proto.h
42762 ____________________________________________________________________________
42763 [ 24420] By: nicholas                              on 2005/05/08  22:09:18
42764         Log: Perl_croak uses perl's printf, so can pass in SVs direct - no need for
42765              SvPV and a %s format.
42766      Branch: perl
42767            ! mg.c perl.h pp.c pp_hot.c
42768 ____________________________________________________________________________
42769 [ 24419] By: nicholas                              on 2005/05/08  21:40:29
42770         Log: There's no need to set a reference count for the new SV heads, as it's
42771              always set to 1 at uprooting time.
42772              But set it to zero when DEBUGGING to make things clearer. Plus fix a
42773              bug introduced by change 22945, where the last SV head had an
42774              uninitialised reference count.
42775      Branch: perl
42776            ! sv.c
42777 ____________________________________________________________________________
42778 [ 24418] By: nicholas                              on 2005/05/08  19:45:30
42779         Log: The idea is that when you find something, you stop looking.
42780              ( http://use.perl.org/comments.pl?sid=26369&cid=40183 )
42781      Branch: perl
42782            ! sv.c
42783 ____________________________________________________________________________
42784 [ 24417] By: davem                                 on 2005/05/08  14:39:19
42785         Log: t/TEST's new error messages now include the prefix 'FAILURE--'
42786      Branch: perl
42787            ! t/TEST
42788 ____________________________________________________________________________
42789 [ 24416] By: rgs                                   on 2005/05/08  12:19:51
42790         Log: Tweak the insertion of __attribute__((nonnull())) declarations
42791              in proto.h so it compiles with and without threads with gcc 3.4
42792      Branch: perl
42793            ! embed.pl proto.h
42794 ____________________________________________________________________________
42795 [ 24414] By: rgs                                   on 2005/05/07  17:15:45
42796         Log: Subject: [PATCH] GCC attributes!
42797              From: Andy Lester <andy@petdance.com>
42798              Date: May 4, 2005 11:55 PM
42799              Message-ID: <20050504215540.GA20413@petdance.com>
42800      Branch: perl
42801            ! autodoc.pl av.c doio.c doop.c embed.fnc embed.pl op.c perl.h
42802            ! pod/perlapi.pod proto.h regcomp.c sv.c utf8.c util.c xsutils.c
42803 ____________________________________________________________________________
42804 [ 24413] By: nicholas                              on 2005/05/07  16:08:16
42805         Log: The ptr_table arena variables and code is only needed for ithreads.
42806      Branch: perl
42807            ! intrpvar.h sv.c
42808 ____________________________________________________________________________
42809 [ 24412] By: davem                                 on 2005/05/07  12:57:06
42810         Log: while (my $x ...) { ...; redo } shouldn't undef $x.
42811              In the presence of 'my' in the conditional of a while(), until(),
42812              or for(;;) loop, add an extra scope to the body so that redo
42813              doesn't undef the lexical
42814      Branch: perl
42815            ! embed.fnc embed.h op.c perly.act perly.h perly.tab perly.y
42816            ! pp_ctl.c proto.h t/op/loopctl.t
42817 ____________________________________________________________________________
42818 [ 24411] By: davem                                 on 2005/05/07  11:06:16
42819         Log: add 1.875c to the list of supported bisons
42820      Branch: perl
42821            ! regen_perly.pl
42822 ____________________________________________________________________________
42823 [ 24410] By: nicholas                              on 2005/05/06  22:17:04
42824         Log: Get the correct refcount on the temporary assignment to PL_sigwarn so
42825              that other code assigning to $SIG{__WARN__} doesn't cause a premature
42826              free.
42827      Branch: perl
42828            ! perlio.c t/io/layers.t
42829 ____________________________________________________________________________
42830 [ 24409] By: nicholas                              on 2005/05/06  19:08:35
42831         Log: Ooops. Wise man tests with ithreads before commiting. D'oh!
42832      Branch: perl
42833            ! sv.c
42834 ____________________________________________________________________________
42835 [ 24408] By: nicholas                              on 2005/05/06  18:38:45
42836         Log: Change types of PL_he_arenaroot and PL_pte_arenaroot to avoid casting.
42837      Branch: perl
42838            ! hv.c intrpvar.h sv.c
42839 ____________________________________________________________________________
42840 [ 24407] By: rgs                                   on 2005/05/06  15:37:30
42841         Log: Upgrade to PathTools 3.07
42842      Branch: perl
42843            ! ext/Cwd/Changes ext/Cwd/t/taint.t lib/Cwd.pm lib/File/Spec.pm
42844            ! lib/File/Spec/Cygwin.pm lib/File/Spec/Mac.pm
42845            ! lib/File/Spec/OS2.pm lib/File/Spec/Unix.pm
42846            ! lib/File/Spec/VMS.pm lib/File/Spec/Win32.pm
42847            ! lib/File/Spec/t/Spec.t
42848 ____________________________________________________________________________
42849 [ 24406] By: ams                                   on 2005/05/06  15:17:26
42850         Log: Don't pretend SIGZERO exists [#35291].
42851      Branch: perl
42852            ! mg.c
42853 ____________________________________________________________________________
42854 [ 24405] By: nicholas                              on 2005/05/06  13:11:54
42855         Log: Make the arena size changeable at compile time, and up the default by
42856              a factor of 4.
42857      Branch: perl
42858            ! hv.c perl.h sv.c
42859 ____________________________________________________________________________
42860 [ 24404] By: nicholas                              on 2005/05/06  12:34:36
42861         Log: Allocate pointer table entries (for ithread cloning) from an arena
42862      Branch: perl
42863            ! embedvar.h intrpvar.h perlapi.h sv.c
42864 ____________________________________________________________________________
42865 [ 24402] By: davem                                 on 2005/05/05  20:52:11
42866         Log: avoid accessing a just-freed SV (keep ponie happy)
42867      Branch: perl
42868            ! pad.c
42869 ____________________________________________________________________________
42870 [ 24401] By: rgs                                   on 2005/05/05  17:12:38
42871         Log: Missing files in Test::Simple
42872      Branch: perl
42873            + lib/Test/Simple/t/create.t lib/Test/Simple/t/is_deeply_fail.t
42874            + t/lib/Test/Simple/sample_tests/exit.plx
42875 ____________________________________________________________________________
42876 [ 24399] By: nicholas                              on 2005/05/05  15:17:23
42877         Log: Bump versions of non dual-life modules
42878      Branch: perl
42879            ! lib/File/Path.pm lib/FileCache.pm lib/Pod/Html.pm
42880            ! lib/Symbol.pm lib/utf8.pm win32/FindExt.pm
42881 ____________________________________________________________________________
42882 [ 24398] By: nicholas                              on 2005/05/05  14:54:20
42883         Log: Bump version numbers
42884      Branch: perl
42885            ! ext/Devel/DProf/DProf.pm ext/IO/lib/IO/File.pm
42886            ! ext/IO/lib/IO/Socket/INET.pm ext/XS/APItest/APItest.pm
42887 ____________________________________________________________________________
42888 [ 24397] By: rgs                                   on 2005/05/05  14:41:55
42889         Log: Upgrade to Test::Simple 0.60
42890      Branch: perl
42891            - lib/Test/Simple/t/is_deeply.t
42892            ! MANIFEST lib/Test/Builder.pm lib/Test/More.pm
42893            ! lib/Test/Simple.pm lib/Test/Simple/Changes
42894            ! lib/Test/Simple/t/00signature.t
42895            ! lib/Test/Simple/t/circular_data.t lib/Test/Simple/t/exit.t
42896            ! lib/Test/Simple/t/fork.t lib/Test/Simple/t/has_plan.t
42897            ! lib/Test/Simple/t/has_plan2.t lib/Test/Simple/t/is_fh.t
42898            ! lib/Test/Simple/t/require_ok.t
42899 ____________________________________________________________________________
42900 [ 24396] By: nicholas                              on 2005/05/05  14:28:42
42901         Log: Bump B version numbers
42902      Branch: perl
42903            ! ext/B/B.pm ext/B/B/Concise.pm ext/B/B/Deparse.pm
42904            ! ext/B/B/Disassembler.pm ext/B/B/Terse.pm
42905            ! ext/B/t/OptreeCheck.pm
42906 ____________________________________________________________________________
42907 [ 24393] By: davem                                 on 2005/05/05  12:06:32
42908         Log: stop Math/BigInt/t/bare_mbf.t producing spurious test output
42909      Branch: perl
42910            ! lib/Math/BigInt/t/bare_mbf.t
42911 ____________________________________________________________________________
42912 [ 24392] By: davem                                 on 2005/05/05  12:01:51
42913         Log: strictifying t/TEST stopped it handling '1..n todo' correctly
42914              (made scope of %toto too narrow)
42915      Branch: perl
42916            ! t/TEST
42917 ____________________________________________________________________________
42918 [ 24390] By: davem                                 on 2005/05/05  00:34:50
42919         Log: make t/TEST detect various failure modes in testfile outputs
42920              in particular:
42921              multiple leader lines
42922              leader line not first or last line of file
42923              unrecognised lines
42924              out-of-sequence test numbers
42925      Branch: perl
42926            ! t/TEST
42927 ____________________________________________________________________________
42928 [ 24389] By: davem                                 on 2005/05/04  22:14:54
42929         Log: strictify t/TEST
42930              make most variables lexical, narrow their scope, and give some of
42931              them more meaningful names. Also fix a harmless bug where the wrong
42932              filehandles are closed (A+B rather than U+A)
42933      Branch: perl
42934            ! t/TEST
42935 ____________________________________________________________________________
42936 [ 24388] By: rgs                                   on 2005/05/04  20:50:59
42937         Log: Document the unportability of atan2() edge cases
42938              and remove unportable tests (by Steve Peters)
42939      Branch: perl
42940            ! pod/perlport.pod t/op/exp.t
42941 ____________________________________________________________________________
42942 [ 24387] By: davem                                 on 2005/05/04  20:30:00
42943         Log: add test for [perl #34682] leaving eval via last in inner runops
42944      Branch: perl
42945            ! t/op/eval.t
42946 ____________________________________________________________________________
42947 [ 24386] By: rgs                                   on 2005/05/04  18:31:19
42948         Log: Fix test numerotation
42949      Branch: perl
42950            ! t/op/goto.t
42951 ____________________________________________________________________________
42952 [ 24385] By: davem                                 on 2005/05/04  15:52:11
42953         Log: make goto.t use test.pl, strict and warnings
42954      Branch: perl
42955            ! t/op/goto.t
42956 ____________________________________________________________________________
42957 [ 24384] By: davem                                 on 2005/05/04  14:01:40
42958         Log: SEGV when next is followed by a goto
42959              
42960              next and redo didn't restore PL_curcop
42961      Branch: perl
42962            ! pp_ctl.c t/op/goto.t
42963 ____________________________________________________________________________
42964 [ 24383] By: ams                                   on 2005/05/04  12:12:30
42965         Log: Subject: [PATCH] perlvar.pod verbatim paragraph first line does not start with a space
42966              From: Offer Kaye <offer.kaye@gmail.com>
42967              Date: Wed, 4 May 2005 15:10:37 +0300
42968              Message-Id: <56942505050405101bfe678d@mail.gmail.com>
42969      Branch: perl
42970            ! pod/perlvar.pod
42971 ____________________________________________________________________________
42972 [ 24382] By: rgs                                   on 2005/05/04  11:21:54
42973         Log: Sync synopses
42974      Branch: perl
42975            ! pod/perl.pod pod/perlrun.pod
42976 ____________________________________________________________________________
42977 [ 24381] By: davem                                 on 2005/05/03  22:10:45
42978         Log: document the internals of exception handling
42979      Branch: perl
42980            ! pod/perlhack.pod
42981 ____________________________________________________________________________
42982 [ 24380] By: rgs                                   on 2005/05/03  15:43:34
42983         Log: Fix getting prototype of builtins mkdir and setpgrp.
42984              Hardcode special exceptions for exec and system, instead
42985              of trying to be clever and failing.
42986      Branch: perl
42987            ! opcode.h opcode.pl pp.c t/op/cproto.t
42988 ____________________________________________________________________________
42989 [ 24379] By: rgs                                   on 2005/05/03  12:18:50
42990         Log: Error in the latest FindBin patch, noticed by Nicholas
42991      Branch: perl
42992            ! lib/FindBin.pm
42993 ____________________________________________________________________________
42994 [ 24378] By: rgs                                   on 2005/05/03  12:15:45
42995         Log: mkdir without arguments now defaults to $_
42996      Branch: perl
42997            ! opcode.h opcode.pl pod/perlfunc.pod t/op/cproto.t t/op/mkdir.t
42998 ____________________________________________________________________________
42999 [ 24377] By: nicholas                              on 2005/05/03  12:00:25
43000         Log: ok($a == $b) better written as cmp_ok($a, '==', $b)
43001              (The latter gives more diagnostics in the case of failure)
43002      Branch: perl
43003            ! t/op/exp.t
43004 ____________________________________________________________________________
43005 [ 24376] By: rgs                                   on 2005/05/03  09:45:24
43006         Log: Convert to test.pl
43007      Branch: perl
43008            ! t/op/mkdir.t
43009 ____________________________________________________________________________
43010 [ 24375] By: rgs                                   on 2005/05/03  08:53:25
43011         Log: Fix for [perl #34252] Access rights in FindBin::Bin
43012              At least on my platform, Cwd::getcwd doesn't find the current
43013              directory if it has no access to it. Try harder with Cwd::cwd.
43014      Branch: perl
43015            ! lib/FindBin.pm
43016 ____________________________________________________________________________
43017 [ 24374] By: steveh                                on 2005/05/03  08:51:24
43018         Log: Fix croak() and confess() so that they don't clobber $!
43019              (plus tests to check this)
43020      Branch: perl
43021            ! lib/Carp.pm lib/Carp.t
43022 ____________________________________________________________________________
43023 [ 24373] By: nicholas                              on 2005/05/03  08:45:28
43024         Log: PL_mess_sv is always >= SVt_PVMG, so no need for an if() test
43025      Branch: perl
43026            ! perl.c
43027 ____________________________________________________________________________
43028 [ 24372] By: rgs                                   on 2005/05/03  07:36:17
43029         Log: Subject: [perl #33809] optimize macro dXSARGS 
43030              From: Sergey Skvortsov (via RT) <perlbug-followup@perl.org>
43031              Date: 17 Jan 2005 09:02:33 -0000
43032              Message-ID: <rt-3.0.11-33809-105714.16.4209917806492@perl.org>
43033      Branch: perl
43034            ! XSUB.h pod/perlapi.pod universal.c
43035 ____________________________________________________________________________
43036 [ 24371] By: rgs                                   on 2005/05/03  06:56:03
43037         Log: Subject: [PATCH] IEEE math for the masses
43038              From: Steve Peters <steve@fisharerojo.org>
43039              Date: Fri, 15 Apr 2005 09:10:54 -0500
43040              Message-ID: <20050415141054.GA12749@mccoy.peters.homeunix.org>
43041              
43042              (tests added to t/op/exp.t)
43043      Branch: perl
43044            ! pp.c t/op/exp.t
43045 ____________________________________________________________________________
43046 [ 24370] By: rgs                                   on 2005/05/03  06:30:47
43047         Log: Convert to test.pl
43048      Branch: perl
43049            ! t/op/exp.t
43050 ____________________________________________________________________________
43051 [ 24369] By: nicholas                              on 2005/05/02  20:45:00
43052         Log: A slightly better layout for the diagram.
43053      Branch: perl
43054            ! ext/B/B.pm
43055 ____________________________________________________________________________
43056 [ 24368] By: rgs                                   on 2005/05/02  20:10:34
43057         Log: Clarify the definition of the 'w' pack format, as suggested by
43058              Alexey Toptygin.
43059      Branch: perl
43060            ! pod/perlfunc.pod
43061 ____________________________________________________________________________
43062 [ 24367] By: rgs                                   on 2005/05/02  17:10:19
43063         Log: For perls where pids and ppids are cached, when the ppid of
43064              the perl process becomes 1, refresh the ppid cache (this may
43065              indicate that the parent process has died.)
43066      Branch: perl
43067            ! pp_sys.c
43068 ____________________________________________________________________________
43069 [ 24366] By: rgs                                   on 2005/05/02  16:16:35
43070         Log: Change inheritance hierarchy of B subclassses :
43071              
43072              Subject: @B::NV::ISA = 'B::IV';
43073              From: Nicholas Clark <nick@ccl4.org>
43074              Date: Wed, 27 Apr 2005 14:57:51 +0100
43075              Message-ID: <20050427135750.GD94420@plum.flirble.org>
43076      Branch: perl
43077            ! ext/B/B.pm
43078 ____________________________________________________________________________
43079 [ 24365] By: rgs                                   on 2005/05/02  15:46:51
43080         Log: Subject: [PATCH] printf.patch: Adding printf checking for gcc
43081              From: Andy Lester <andy@petdance.com>
43082              Date: Sun, 1 May 2005 15:07:55 -0500
43083              Message-ID: <20050501200755.GA30259@petdance.com>
43084      Branch: perl
43085            ! gv.c lib/ExtUtils/t/Embed.t pad.c perl.c perl.h perlio.c
43086            ! perlio.h perliol.h pp_pack.c pp_sort.c x2p/util.c x2p/util.h
43087 ____________________________________________________________________________
43088 [ 24364] By: rgs                                   on 2005/05/02  14:48:04
43089         Log: Subject: Re: [perl #31793] Data::Dumper: Useqq interacts badly with overloading
43090              From: Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>
43091              Date: Wed, 3 Nov 2004 16:38:01 +0100
43092              Message-ID: <20041103163801.6839be30@valis.local>
43093      Branch: perl
43094            ! ext/Data/Dumper/Dumper.pm
43095 ____________________________________________________________________________
43096 [ 24363] By: davem                                 on 2005/05/02  14:27:20
43097         Log: Better fix for #8738  (Core dump in 'leavetry')
43098              When in an inner runops loop (eg via a tie or sort), an eval
43099              needs a new JMPENV pushing by S_docatch. If an exception is raised,
43100              control is returned to S_docatch, and it must determine whether
43101              the eval that trapped the exception is an inner eval or an outer
43102              one. In the former case, restart the loop, in the latter case,
43103              rethrow the exception. This is determined by whether we are still
43104              at the same PL_curstackinfo level. This fails in the case of
43105              SPLICE(), which pushes a new SETJMP and runops level, but not a
43106              new stackinfo level. There may be other code which does similar.
43107              The solution is to store the current value of PL_top_env in each
43108              pushed CxEVAL, and see if it's still the same as PL_top_env when
43109              the exception is handled.
43110      Branch: perl
43111            ! cop.h pp_ctl.c
43112 ____________________________________________________________________________
43113 [ 24362] By: davem                                 on 2005/05/02  13:51:42
43114         Log: Revert change #15705 (Core dump in 'leavetry')
43115              This fixes bug #34682, reintroduces bug #8738 (ID 20020301.011),
43116              and reintroduces an eval optimisation for innter runops levels
43117      Branch: perl
43118            ! pp_ctl.c
43119 ____________________________________________________________________________
43120 [ 24361] By: davem                                 on 2005/05/02  13:29:17
43121         Log: move the SETJMP exception-handing definitions from scope.h to cop.h
43122              so that a JMPENV* entry can be added to struct block_eval
43123      Branch: perl
43124            ! cop.h scope.h
43125 ____________________________________________________________________________
43126 [ 24360] By: rgs                                   on 2005/05/02  09:37:04
43127         Log: Fix [perl #35162] $SIG{__DIE__} = 'IGNORE' is base.pm is illegal
43128      Branch: perl
43129            ! lib/base.pm
43130 ____________________________________________________________________________
43131 [ 24359] By: rgs                                   on 2005/05/02  08:09:38
43132         Log: Subject: [PATCH] undo pod utilities regression in 24034
43133              From: "Craig A. Berry" <craigberry@mac.com>
43134              Date: Fri, 29 Apr 2005 17:22:48 -0500
43135              Message-ID: <4272B3B8.6030603@mac.com>
43136      Branch: perl
43137            ! pod/pod2usage.PL pod/podselect.PL
43138 ____________________________________________________________________________
43139 [ 24358] By: rgs                                   on 2005/05/02  07:15:37
43140         Log: Subject: [PATCH] uninitialized warnings in regcomp
43141              From: Steven Philip Schubiger <steven@accognoscere.org>
43142              Date: Mon, 2 May 2005 01:14:29 +0200 (CEST)
43143              Message-Id: <200505012314.j41NETLk018737@accognoscere.homeunix.org>
43144      Branch: perl
43145            ! regcomp.c
43146 ____________________________________________________________________________
43147 [ 24357] By: nicholas                              on 2005/05/01  22:16:16
43148         Log: Explode if anyone attempts to sv_upgrade PL_mess_sv.
43149              Should this be a panic: ?
43150      Branch: perl
43151            ! sv.c
43152 ____________________________________________________________________________
43153 [ 24355] By: merijn                                on 2005/04/29  15:32:17
43154         Log: Put back INSTALL_PREFIX and INSTALL_PREFIX_EXP as they were
43155              unintendedly removed by patch #23435
43156      Branch: perl
43157            ! config_h.SH
43158 ____________________________________________________________________________
43159 [ 24354] By: merijn                                on 2005/04/29  13:59:36
43160         Log: Subject: [PATCH] Small patch to perlport.pod
43161              From: Sébastien Aperghis-Tramoni <maddingue@free.fr>
43162              Date: Thu, 28 Apr 2005 02:24:04 +0200
43163              Message-Id: <D38E89F3-B77B-11D9-B91D-000502F3279F@free.fr>
43164      Branch: perl
43165            ! pod/perlport.pod
43166 ____________________________________________________________________________
43167 [ 24353] By: steveh                                on 2005/04/29  09:07:19
43168         Log: Subject: [PATCH] one cannot "static" exported functions
43169              From: <jarkko.hietaniemi@nokia.com>
43170              Date: Fri, 29 Apr 2005 11:02:01 +0300
43171              Message-ID: <B356D8F434D20B40A8CEDAEC305A1F2453D705@esebe105.NOE.Nokia.com>
43172      Branch: perl
43173            ! perlio.c
43174 ____________________________________________________________________________
43175 [ 24352] By: steveh                                on 2005/04/29  08:24:50
43176         Log: Skip PL_sig_sv when PERL_IMPLICIT_CONTEXT is defined
43177              (rather than when PERL_IMPLICIT_SYS is defined)
43178      Branch: perl
43179            ! makedef.pl
43180 ____________________________________________________________________________
43181 [ 24351] By: nicholas                              on 2005/04/28  22:28:53
43182         Log: Refactor Perl_sv_utf8_upgrade_flags to use SvPV_free
43183      Branch: perl
43184            ! sv.c
43185 ____________________________________________________________________________
43186 [ 24350] By: steveh                                on 2005/04/28  16:42:13
43187         Log: Subject: (in blead) a missing const in a prototype
43188              From: <jarkko.hietaniemi@nokia.com>
43189              Date: Wed, 27 Apr 2005 17:35:27 +0300
43190              Message-ID: <B356D8F434D20B40A8CEDAEC305A1F2453D6ED@esebe105.NOE.Nokia.com>
43191      Branch: perl
43192            ! embed.fnc proto.h
43193 ____________________________________________________________________________
43194 [ 24349] By: steveh                                on 2005/04/28  16:38:51
43195         Log: Silence a compilation warning on Win32
43196      Branch: perl
43197            ! pp.c
43198 ____________________________________________________________________________
43199 [ 24348] By: nicholas                              on 2005/04/28  11:22:15
43200         Log: Add a new macro SvPV_free() which undoes OOK and free()s the PVX(),
43201              becase there's a lot of code around that calls SvOOK_off(), memmov()s
43202              the buffer, then promptly free()s it. So avoid the needless memmov().
43203      Branch: perl
43204            ! perl.c pp.c pp_ctl.c pp_hot.c sv.c sv.h
43205 ____________________________________________________________________________
43206 [ 24347] By: steveh                                on 2005/04/28  11:13:55
43207         Log: Remove temporary clean-up from Win32 makefiles
43208              
43209              Change 22501 temporarily added some clean-up to the Win32 makefiles
43210              which was only meant to stay until cpan rt #5616 was fixed.  It is
43211              now fixed (in EU-MM 6.22, which in turn has been in blead for a
43212              while now), so these hacks are no longer required.
43213              
43214              This change is also good for maint, which currently contains EU-MM
43215              6.17, which didn't create the blibdirs.exists files in question
43216              anyway.
43217      Branch: perl
43218            ! win32/Makefile win32/makefile.mk
43219 ____________________________________________________________________________
43220 [ 24345] By: rgs                                   on 2005/04/28  09:29:07
43221         Log: Remove confusing punctuation
43222              (spotted by David Rigaudiere)
43223      Branch: perl
43224            ! pod/perlvar.pod
43225 ____________________________________________________________________________
43226 [ 24344] By: nicholas                              on 2005/04/28  09:29:06
43227         Log: Calling sv_backoff() on something that's about to be free()d will
43228              memmov() memory that's about to be freed. Seems wasteful.
43229      Branch: perl
43230            ! sv.c
43231 ____________________________________________________________________________
43232 [ 24341] By: steveh                                on 2005/04/28  08:44:28
43233         Log: Fix perlsio_binmode() export breakage caused by change #24338
43234              
43235              Define and export perlsio_binmode() based on the same condition,
43236              namely, that USE_PERLIO is defined and USE_SFIO is not.
43237      Branch: perl
43238            ! makedef.pl perlio.c
43239 ____________________________________________________________________________
43240 [ 24340] By: nicholas                              on 2005/04/28  08:34:57
43241         Log: The if() clause is the wrong way round, so OOK can never be true in
43242              this case. Given that OOK is never undone, we could never have been
43243              correctly upgrading a PV with OOK to HV or AV. I believe that only
43244              SVt_NULL is the only type ever upgraded to HV or AV.
43245      Branch: perl
43246            ! sv.c
43247 ____________________________________________________________________________
43248 [ 24339] By: rgs                                   on 2005/04/27  20:24:30
43249         Log: A couple of warning fixes by Gisle
43250      Branch: perl
43251            ! pp.c pp_sys.c
43252 ____________________________________________________________________________
43253 [ 24338] By: rgs                                   on 2005/04/27  14:48:46
43254         Log: Subject: [PATCH] perlio-two.patch: More warnings squashed, more consts
43255              From: Andy Lester <andy@petdance.com>
43256              Date: Wed, 27 Apr 2005 10:02:43 -0500
43257              Message-ID: <20050427150243.GA21883@petdance.com>
43258      Branch: perl
43259            ! perl.c perlio.c perlio.h perliol.h
43260 ____________________________________________________________________________
43261 [ 24334] By: steveh                                on 2005/04/27  08:35:40
43262         Log: Subject: Win32 MM test fix
43263              From: Michael G Schwern <schwern@pobox.com>
43264              Date: Mon, 18 Apr 2005 14:30:19 -0700
43265              Message-ID: <20050418213019.GA15797@windhund.schwern.org>
43266              
43267              Subject: Re: Win32 MM test fix
43268              From: demerphq <demerphq@gmail.com>
43269              Date: Tue, 19 Apr 2005 00:57:59 +0200
43270              Message-ID: <9b18b31105041815573e10dc10@mail.gmail.com>
43271      Branch: perl
43272            ! lib/ExtUtils/MM_Unix.pm lib/ExtUtils/MM_Win32.pm
43273 ____________________________________________________________________________
43274 [ 24333] By: rgs                                   on 2005/04/26  21:03:43
43275         Log: Subject: [PATCH] XS() __attribute__
43276              From: Andy Lester <andy@petdance.com>
43277              Date: Fri, 22 Apr 2005 17:39:47 -0500
43278              Message-ID: <20050422223947.GA4681@petdance.com>
43279      Branch: perl
43280            ! XSUB.h universal.c xsutils.c
43281 ____________________________________________________________________________
43282 [ 24328] By: rgs                                   on 2005/04/26  14:27:01
43283         Log: Subject: Re: [PATCH] pp_pack.c redux, to work w/Jarkko's recent patches
43284              From: Andy Lester <andy@petdance.com>
43285              Date: Mon, 25 Apr 2005 17:56:51 -0500
43286              Message-ID: <20050425225651.GB17271@petdance.com>
43287      Branch: perl
43288            ! embed.fnc embed.h perl.h pod/perlapi.pod pp_pack.c proto.h
43289 ____________________________________________________________________________
43290 [ 24326] By: rgs                                   on 2005/04/26  12:49:03
43291         Log: Upgrade to CGI.pm 3.08
43292      Branch: perl
43293            ! lib/CGI.pm lib/CGI/Carp.pm lib/CGI/Changes lib/CGI/Cookie.pm
43294            ! lib/CGI/Pretty.pm
43295 ____________________________________________________________________________
43296 [ 24325] By: merijn                                on 2005/04/26  11:28:42
43297         Log: Subject: [PATCH?] for AIX problems? RE: [PATCH] Symbian port of Perl
43298              Date: Tue, 26 Apr 2005 12:22:12 +0300
43299              From: <jarkko.hietaniemi@nokia.com>
43300              Message-ID: <B356D8F434D20B40A8CEDAEC305A1F2453D6CB@esebe105.NOE.Nokia.com>
43301              From: Steve Hay <steve.hay@uk.radan.com>
43302              Message-ID: <426E11A3.8070002@uk.radan.com>
43303      Branch: perl
43304            ! ext/Storable/Storable.xs
43305 ____________________________________________________________________________
43306 [ 24321] By: steveh                                on 2005/04/25  13:09:57
43307         Log: Update location to fetch dmake from in README.win32
43308              
43309              Use the generic search.cpan.org URL so that the latest version is
43310              always found
43311      Branch: perl
43312            ! README.win32
43313 ____________________________________________________________________________
43314 [ 24320] By: nicholas                              on 2005/04/25  11:41:01
43315         Log: Subject: [PATCH] mktables.lst and related stuff (was Re: [PATCH] Unicode 4.1.0)
43316              From: demerphq <demerphq@gmail.com>
43317              Message-ID: <9b18b31105042412352fcf2bc5@mail.gmail.com>
43318              Date: Sun, 24 Apr 2005 21:35:35 +0200
43319      Branch: perl
43320            ! lib/unicore/README.perl lib/unicore/mktables
43321            ! lib/unicore/mktables.lst
43322 ____________________________________________________________________________
43323 [ 24319] By: steveh                                on 2005/04/25  11:05:24
43324         Log: Provide $Config{libswanted_uselargefiles} on Win32
43325              
43326              This fixes some test failures introduced by change 24271.
43327      Branch: perl
43328            ! win32/config.bc win32/config.gc win32/config.vc
43329            ! win32/config.vc64
43330 ____________________________________________________________________________
43331 [ 24318] By: steveh                                on 2005/04/25  07:47:11
43332         Log: Subject: [PATCH] combopatch
43333              From: Jarkko Hietaniemi <jhi@iki.fi>
43334              Date: Sun, 24 Apr 2005 22:58:15 +0300
43335              Message-ID: <426BFA57.9060105@iki.fi>
43336      Branch: perl
43337            ! embed.fnc makedef.pl mg.c perl.c perl.h perlvars.h pp_pack.c
43338            ! proto.h toke.c util.c
43339 ____________________________________________________________________________
43340 [ 24317] By: rgs                                   on 2005/04/25  06:30:44
43341         Log: Fix typo, noticed by Randal Schwartz
43342      Branch: perl
43343            ! pod/perlfunc.pod
43344 ____________________________________________________________________________
43345 [ 24316] By: ams                                   on 2005/04/25  01:36:38
43346         Log: Add STORABLE_attach hook (Adam Kennedy).
43347      Branch: perl
43348            + ext/Storable/t/HAS_ATTACH.pm ext/Storable/t/attach_errors.t
43349            + ext/Storable/t/attach_singleton.t
43350            + ext/Storable/t/circular_hook.t
43351            ! MANIFEST ext/Storable/ChangeLog ext/Storable/MANIFEST
43352            ! ext/Storable/Storable.pm ext/Storable/Storable.xs
43353 ____________________________________________________________________________
43354 [ 24315] By: rgs                                   on 2005/04/24  15:25:18
43355         Log: Add files missing in 24314
43356      Branch: perl
43357            + lib/Test/Harness/Point.pm lib/Test/Harness/t/from_line.t
43358            + lib/Test/Harness/t/point-parse.t lib/Test/Harness/t/point.t
43359            + lib/Test/Harness/t/version.t
43360 ____________________________________________________________________________
43361 [ 24314] By: rgs                                   on 2005/04/24  13:26:50
43362         Log: Upgrade to Test::Harness 2.48
43363      Branch: perl
43364            ! MANIFEST lib/Test/Harness.pm lib/Test/Harness/Changes
43365            ! lib/Test/Harness/Straps.pm lib/Test/Harness/TAP.pod
43366            ! lib/Test/Harness/t/00compile.t
43367            ! lib/Test/Harness/t/strap-analyze.t lib/Test/Harness/t/strap.t
43368            ! t/lib/sample-tests/skip
43369 ____________________________________________________________________________
43370 [ 24313] By: merijn                                on 2005/04/24  11:52:03
43371         Log: Subject: [PATCH] Add -Wdeclaration-after-statement to default flags for gcc 3+
43372              From: Steve Peters <steve@fisharerojo.org>
43373              Date: Sat, 23 Apr 2005 22:37:48 -0500
43374              Message-ID: <20050424033748.GA23117@mccoy.peters.homeunix.org>
43375      Branch: perl
43376            ! Configure
43377 ____________________________________________________________________________
43378 [ 24311] By: rgs                                   on 2005/04/24  11:48:24
43379         Log: Add %patchlevel hash to Module::CoreList
43380      Branch: perl
43381            ! lib/Module/CoreList.pm
43382 ____________________________________________________________________________
43383 [ 24310] By: merijn                                on 2005/04/24  09:12:37
43384         Log: Subject: [PATCH] lib/Time/Local.t: time_t is unsigned on VMS
43385              From: "Craig A. Berry" <craigberry@mac.com>
43386              Date: Sat, 23 Apr 2005 18:25:52 -0500
43387              Message-ID: <426AD980.2010801@mac.com>
43388      Branch: perl
43389            ! lib/Time/Local.t
43390 ____________________________________________________________________________
43391 [ 24309] By: nicholas                              on 2005/04/23  14:00:49
43392         Log: Variable declarations can't come after statements in C89.
43393      Branch: perl
43394            ! util.c
43395 ____________________________________________________________________________
43396 [ 24308] By: nicholas                              on 2005/04/23  13:57:41
43397         Log: Save state when auto-generating #ifdef PERL_CORE and PERL_CORE/PERL_EXT
43398              reducing embed.h by about 10%.
43399      Branch: perl
43400            ! embed.h embed.pl
43401 ____________________________________________________________________________
43402 [ 24307] By: davem                                 on 2005/04/23  13:56:18
43403         Log: Subject:  [PATCH] Fix for warnings in util.c/Perl_init_tm()
43404              From:  Steve Peters <steve@fisharerojo.org>
43405              Date:  Fri, 22 Apr 2005 22:36:03 -0500
43406              Message-Id:  <20050423033603.GA32547@mccoy.peters.homeunix.org>
43407              
43408              localtime() can return null
43409      Branch: perl
43410            ! util.c
43411 ____________________________________________________________________________
43412 [ 24303] By: nicholas                              on 2005/04/22  21:40:21
43413         Log: Convert to test.pl
43414      Branch: perl
43415            ! t/op/substr.t
43416 ____________________________________________________________________________
43417 [ 24301] By: nicholas                              on 2005/04/22  16:21:46
43418         Log: Subject: [PATCH] t/uni/class.t -- update VMS test skippage
43419              From: "Craig A. Berry" <craigberry@mac.com>
43420              Message-ID: <42692501.6090809@mac.com>
43421              Date: Fri, 22 Apr 2005 11:23:29 -0500
43422      Branch: perl
43423            ! t/uni/class.t
43424 ____________________________________________________________________________
43425 [ 24300] By: rgs                                   on 2005/04/22  16:17:36
43426         Log: Patch by Yves Orton to accept several options on the corelist(1)
43427              command-line. Plus POD nits.
43428      Branch: perl
43429            ! lib/Module/CoreList.pm lib/Module/CoreList/bin/corelist
43430 ____________________________________________________________________________
43431 [ 24290] By: steveh                                on 2005/04/22  13:51:47
43432         Log: Fix last remaining Win32 linker error following change 24271
43433              
43434              (Supplied by Jarkko in a makedef.pl that was omitted from the
43435              aforementioned change)
43436      Branch: perl
43437            ! makedef.pl
43438 ____________________________________________________________________________
43439 [ 24287] By: rgs                                   on 2005/04/22  12:42:37
43440         Log: There's no point listing '-f' in --help output
43441              when perl isn't built with USE_SITECUSTOMIZE, since it might
43442              confuse users about $sitelib/sitecustomize.pl being sourced
43443              at startup.
43444      Branch: perl
43445            ! perl.c
43446 ____________________________________________________________________________
43447 [ 24286] By: nicholas                              on 2005/04/22  12:37:19
43448         Log: For now, TODO the 2 tests that fail on 5.8.x
43449      Branch: perl
43450            ! ext/B/t/optree_specials.t
43451 ____________________________________________________________________________
43452 [ 24284] By: rgs                                   on 2005/04/22  12:34:14
43453         Log: -A wasn't listed in the --help output
43454      Branch: perl
43455            ! perl.c
43456 ____________________________________________________________________________
43457 [ 24280] By: steveh                                on 2005/04/22  09:59:54
43458         Log: Fix more Win32 linker errors following change 24271
43459              
43460              This clears up problems with Perl_free_global_struct and
43461              Perl_init_global_struct
43462      Branch: perl
43463            ! embed.fnc embed.h global.sym makedef.pl proto.h
43464 ____________________________________________________________________________
43465 [ 24279] By: rgs                                   on 2005/04/22  09:04:08
43466         Log: Subject: [PATCH] pp_pack.c warning quieting
43467              From: Andy Lester <andy@petdance.com>
43468              Date: Thu, 21 Apr 2005 11:33:13 -0500
43469              Message-ID: <20050421163313.GA20930@petdance.com>
43470      Branch: perl
43471            ! pp_pack.c
43472 ____________________________________________________________________________
43473 [ 24278] By: steveh                                on 2005/04/22  08:59:58
43474         Log: Fix Win32 linker errors following change 24271
43475              
43476              This clears up "unresolved external" errors for the following symbols:
43477              
43478              PL_watch_pvx
43479              Perl_Gappctx_ptr
43480              Perl_Gmmap_page_size_ptr
43481              Perl_Gsig_defaulting_ptr
43482              Perl_Gsig_handlers_initted_ptr
43483              Perl_Gsig_ignoring_ptr
43484              Perl_Gsig_sv_ptr
43485              Perl_Gtimesbase_ptr
43486              Perl_Gwatch_pvx_ptr
43487      Branch: perl
43488            ! makedef.pl
43489 ____________________________________________________________________________
43490 [ 24277] By: rgs                                   on 2005/04/22  08:48:14
43491         Log: Subject: [PATCH] bytecode.pl, bytecode.h, and sv.h fixes
43492              From: Steve Peters <steve@fisharerojo.org>
43493              Date: Thu, 21 Apr 2005 18:55:47 -0500
43494              Message-ID: <20050421235547.GA12149@mccoy.peters.homeunix.org>
43495      Branch: perl
43496            ! bytecode.pl ext/ByteLoader/bytecode.h ext/ByteLoader/byterun.c
43497            ! sv.h
43498 ____________________________________________________________________________
43499 [ 24276] By: steveh                                on 2005/04/22  08:13:01
43500         Log: Fix my_chsize() for systems having chsize(), broken by change #24271
43501      Branch: perl
43502            ! pp_sys.c
43503 ____________________________________________________________________________
43504 [ 24275] By: davem                                 on 2005/04/21  21:30:11
43505         Log: Sigh - really bump Text::Wrap version number this time.
43506      Branch: perl
43507            ! lib/Text/Wrap.pm
43508 ____________________________________________________________________________
43509 [ 24274] By: davem                                 on 2005/04/21  21:27:15
43510         Log: bump version number in Text::Wrap after change #24273
43511      Branch: perl
43512            ! lib/Text/Wrap.pm
43513 ____________________________________________________________________________
43514 [ 24273] By: davem                                 on 2005/04/21  21:22:54
43515         Log: Text::Wrap::wrap() fails with non-space separator
43516      Branch: perl
43517            ! lib/Text/TabsWrap/t/wrap.t lib/Text/Wrap.pm
43518 ____________________________________________________________________________
43519 [ 24271] By: rgs                                   on 2005/04/21  15:38:30
43520         Log: Subject: [PATCH] Symbian port of Perl
43521              From: <jarkko.hietaniemi@nokia.com>
43522              Date: Mon, 18 Apr 2005 13:18:30 +0300
43523              Message-ID: <B356D8F434D20B40A8CEDAEC305A1F2453D653@esebe105.NOE.Nokia.com>
43524      Branch: perl
43525            + README.symbian ext/DynaLoader/dl_symbian.xs
43526            + symbian/PerlApp.cpp symbian/PerlApp.h symbian/PerlApp.hrh
43527            + symbian/PerlApp.rss symbian/PerlAppAif.rss
43528            + symbian/PerlBase.cpp symbian/PerlBase.h symbian/PerlBase.pod
43529            + symbian/PerlRecog.cpp symbian/PerlRecog.mmp symbian/README
43530            + symbian/TODO symbian/bld.inf symbian/config.pl
43531            + symbian/config.sh symbian/cwd.pl symbian/demo_pl
43532            + symbian/install.cfg symbian/makesis.pl symbian/port.pl
43533            + symbian/sanity.pl symbian/sdk.pl symbian/symbian_dll.cpp
43534            + symbian/symbian_proto.h symbian/symbian_stubs.c
43535            + symbian/symbian_stubs.h symbian/symbian_utils.cpp
43536            + symbian/symbianish.h symbian/uid.pl symbian/version.pl
43537            + symbian/xsbuild.pl
43538            ! EXTERN.h INTERN.h MANIFEST Porting/curliff.pl Porting/makerel
43539            ! XSUB.h av.c bytecode.pl configpm doio.c dump.c embed.fnc
43540            ! embed.h embed.pl embedvar.h ext/B/B.xs
43541            ! ext/ByteLoader/byterun.c ext/Data/Dumper/Dumper.xs
43542            ! ext/Digest/MD5/MD5.xs ext/Digest/MD5/t/files.t
43543            ! ext/DynaLoader/DynaLoader_pm.PL ext/DynaLoader/dlutils.c
43544            ! ext/Errno/Errno_pm.PL ext/IO/lib/IO/Socket.pm
43545            ! ext/List/Util/Util.xs ext/MIME/Base64/Base64.xs
43546            ! ext/POSIX/POSIX.xs ext/PerlIO/scalar/scalar.xs
43547            ! ext/PerlIO/via/via.xs ext/SDBM_File/sdbm/sdbm.c
43548            ! ext/Storable/Storable.xs ext/Time/HiRes/HiRes.xs global.sym
43549            ! globvar.sym gv.c hv.c intrpvar.h lib/ExtUtils/t/Embed.t
43550            ! lib/ExtUtils/xsubpp lib/File/Spec.pm lib/File/Spec/Win32.pm
43551            ! locale.c mg.c miniperlmain.c numeric.c op.c opcode.h opcode.pl
43552            ! pad.c patchlevel.h perl.c perl.h perlapi.c perlapi.h perlio.c
43553            ! perlio.h perliol.h perlvars.h pod.lst pod/perl.pod
43554            ! pod/perlguts.pod pod/perlintern.pod pp.c pp_ctl.c pp_hot.c
43555            ! pp_pack.c pp_sort.c pp_sys.c proto.h reentr.pl regcomp.c
43556            ! regexec.c scope.h sv.c taint.c toke.c universal.c utf8.c
43557            ! utf8.h util.c util.h vms/descrip_mms.template win32/Makefile
43558            ! win32/makefile.mk win32/win32io.c xsutils.c
43559 ____________________________________________________________________________
43560 [ 24270] By: davem                                 on 2005/04/21  15:36:14
43561         Log: substr uses utf8 length cache incorrectly
43562      Branch: perl
43563            ! sv.c t/op/substr.t
43564 ____________________________________________________________________________
43565 [ 24269] By: davem                                 on 2005/04/21  00:13:14
43566         Log: Subject:  [PATCH] extra code in pp_concat, Take 2
43567              From:  Andy Lester <andy@petdance.com>
43568              Date:  Wed, 13 Apr 2005 21:06:01 -0500
43569              Message-Id:  <20050414020601.GA21346@petdance.com>
43570              
43571              add 'const', and remove extraneous code, from pp_concat
43572      Branch: perl
43573            ! pp_hot.c t/op/concat.t
43574 ____________________________________________________________________________
43575 [ 24268] By: davem                                 on 2005/04/20  23:56:18
43576         Log: Subject:  patch to [PATCH] Fix MGVTBL structures in perl.h (preprocessor
43577              From:  David Dyck <david.dyck@fluke.com>
43578              Date:  Wed, 20 Apr 2005 16:35:55 -0700 (PDT)
43579              Message-Id:  <Pine.LNX.4.62.0504201627550.27786@dd.tc.fluke.com>
43580              
43581              fix nits in change #24264:
43582              some preprocessors don't like #ifdefs within a macro's args;
43583              also removed duplicate semicolons from macro definitions.
43584      Branch: perl
43585            ! perl.h
43586 ____________________________________________________________________________
43587 [ 24267] By: davem                                 on 2005/04/20  23:35:54
43588         Log: In change 24266 I failed to actually change anything. Sigh.
43589      Branch: perl
43590            ! ext/Sys/Syslog/Syslog.pm
43591 ____________________________________________________________________________
43592 [ 24266] By: davem                                 on 2005/04/20  23:32:04
43593         Log: change misleading syslog() example
43594      Branch: perl
43595            ! ext/Sys/Syslog/Syslog.pm
43596 ____________________________________________________________________________
43597 [ 24265] By: davem                                 on 2005/04/20  21:47:40
43598         Log: Subject:  [perl #35059] [PATCH] caller() skips frames (such as eval() frames) if $^P set 
43599              From:  glasser@tang-eleven-seventy-nine.mit.edu (via RT) <perlbug-followup@perl.org>
43600              Date:  20 Apr 2005 19:28:14 -0000
43601              Message-Id:  <rt-3.0.11-35059-111134.0.304511316819145@perl.org>
43602              
43603              improved version of change 21842 that copes with glob DB::sub
43604              existing but &DB::sub not existing.
43605      Branch: perl
43606            ! mg.c pp_ctl.c t/op/caller.t
43607 ____________________________________________________________________________
43608 [ 24264] By: davem                                 on 2005/04/20  21:32:23
43609         Log: Subject:  [PATCH] Fix MGVTBL structures in perl.h
43610              From:  Andy Lester <andy@petdance.com>
43611              Date:  Wed, 20 Apr 2005 15:09:24 -0500
43612              Message-Id:  <20050420200923.GA3017@petdance.com>
43613              
43614              The MGVTBL structures contain 7 function pointers, but only 5 were
43615              getting initialized. Plus, there were repeated lists between
43616              declaration and definition; add a macro to declare or define
43617              all the global MGVTBLs as appropriate.
43618      Branch: perl
43619            ! perl.h
43620 ____________________________________________________________________________
43621 [ 24260] By: nicholas                              on 2005/04/20  13:51:54
43622         Log: Subject: [PATCH] Refactoring to Sv*_set() macros - patch #6
43623              From: Steve Peters <steve@fisharerojo.org>
43624              Message-ID: <20050420112720.GA31042@mccoy.peters.homeunix.org>
43625              Date: Wed, 20 Apr 2005 06:27:20 -0500
43626      Branch: perl
43627            ! bytecode.pl ext/ByteLoader/bytecode.h malloc.c sv.c
43628 ____________________________________________________________________________
43629 [ 24258] By: nicholas                              on 2005/04/20  08:13:21
43630         Log: Merge common code. Reduces object size by 1K on x86, 6K on PPC
43631      Branch: perl
43632            ! sv.c
43633 ____________________________________________________________________________
43634 [ 24257] By: davem                                 on 2005/04/19  23:47:38
43635         Log: run regen_headers after addition of FOO_set() macros
43636      Branch: perl
43637            ! ext/ByteLoader/byterun.c
43638 ____________________________________________________________________________
43639 [ 24256] By: davem                                 on 2005/04/19  23:43:54
43640         Log: Subject:  [PATCH] pad_compname_type(), takes care of a clunky macro
43641              From:  Andy Lester <andy@petdance.com>
43642              Date:  Tue, 19 Apr 2005 11:38:44 -0500
43643              Message-Id:  <20050419163844.GA19747@petdance.com>
43644      Branch: perl
43645            ! embed.fnc embed.h pad.c pad.h proto.h
43646 ____________________________________________________________________________
43647 [ 24255] By: davem                                 on 2005/04/19  23:31:52
43648         Log: DEBUG_LEAKING_SCALARS could use the value of a freed PL_op
43649      Branch: perl
43650            ! op.c
43651 ____________________________________________________________________________
43652 [ 24254] By: nicholas                              on 2005/04/19  21:53:38
43653         Log: Don't set things to zero twice. Once is enough. (see also change 15255)
43654      Branch: perl
43655            ! sv.c
43656 ____________________________________________________________________________
43657 [ 24253] By: nicholas                              on 2005/04/19  20:55:24
43658         Log: Restore SvEND_set
43659      Branch: perl
43660            ! sv.h
43661 ____________________________________________________________________________
43662 [ 24252] By: nicholas                              on 2005/04/19  20:07:49
43663         Log: Force RVALUE macros when in PERL_DEBUG_COW
43664      Branch: perl
43665            ! ext/ByteLoader/byterun.c sv.c sv.h
43666 ____________________________________________________________________________
43667 [ 24251] By: nicholas                              on 2005/04/19  14:25:00
43668         Log: Avoid generating thousands of UTF-8 warnings when testing under a
43669              UTF-8 locale
43670      Branch: perl
43671            ! t/op/pack.t
43672 ____________________________________________________________________________
43673 [ 24249] By: rgs                                   on 2005/04/19  11:20:37
43674         Log: Simplify PERL_DEBUG_PAD_ZERO so it continues to expand to
43675              valid C code
43676      Branch: perl
43677            ! perl.h
43678 ____________________________________________________________________________
43679 [ 24248] By: nicholas                              on 2005/04/19  09:55:51
43680         Log: Subject: [PATCH] Refactoring to Sv*_set() macros - patch #5
43681              From: Steve Peters <steve@fisharerojo.org>
43682              Message-ID: <20050419000925.GA21640@mccoy.peters.homeunix.org>
43683              Date: Mon, 18 Apr 2005 19:09:25 -0500
43684      Branch: perl
43685            ! dump.c ext/ByteLoader/ByteLoader.pm ext/ByteLoader/byterun.c
43686            ! ext/Data/Dumper/Dumper.pm ext/Data/Dumper/Dumper.xs
43687            ! ext/Devel/Peek/Peek.pm ext/Devel/Peek/Peek.xs
43688            ! ext/Encode/Encode.pm ext/Encode/Encode.xs
43689            ! ext/List/Util/lib/List/Util.pm ext/POSIX/POSIX.pm
43690            ! ext/POSIX/POSIX.xs ext/PerlIO/encoding/encoding.pm
43691            ! ext/PerlIO/encoding/encoding.xs ext/PerlIO/scalar/scalar.pm
43692            ! ext/PerlIO/scalar/scalar.xs ext/Storable/Storable.pm
43693            ! ext/Storable/Storable.xs ext/threads/shared/shared.pm
43694            ! ext/threads/shared/shared.xs ext/threads/threads.pm gv.c mg.c
43695            ! op.c pad.c pad.h perl.h pp.c pp.h pp_hot.c pp_pack.c regcomp.c
43696            ! scope.c sv.c sv.h toke.c
43697 ____________________________________________________________________________
43698 [ 24247] By: davem                                 on 2005/04/19  01:38:54
43699         Log: Add CLONE_SKIP() class method to allow individual classes to skip
43700              cloning objects during thread creation
43701      Branch: perl
43702            ! dump.c ext/threads/t/thread.t pod/perlmod.pod sv.c sv.h
43703 ____________________________________________________________________________
43704 [ 24246] By: nicholas                              on 2005/04/18  22:31:48
43705         Log: PERL_DEBUG_COW for SvUVX and SvPVX
43706      Branch: perl
43707            ! ext/DynaLoader/dl_dyld.xs sv.h
43708 ____________________________________________________________________________
43709 [ 24245] By: nicholas                              on 2005/04/18  21:58:22
43710         Log: SvPV_renew also calls SvLEN_set
43711              Add SvPV_shrink_to_cur(sv) to call SvPV_renew with SvCUR(sv)+1.
43712              For Ponie this can be a single call into the PMC
43713      Branch: perl
43714            ! pp_hot.c pp_sys.c sv.h toke.c
43715 ____________________________________________________________________________
43716 [ 24244] By: nicholas                              on 2005/04/18  20:37:13
43717         Log: Replace Renew(SvPVX(...)...) with SvPV_renew, which avoids an LVALUE
43718              SvPVX
43719      Branch: perl
43720            ! pp_hot.c pp_sys.c sv.h toke.c
43721 ____________________________________________________________________________
43722 [ 24243] By: nicholas                              on 2005/04/18  19:50:12
43723         Log: A more efficient way of expressing the MALLOC_WRAP conditional compile.
43724      Branch: perl
43725            ! handy.h
43726 ____________________________________________________________________________
43727 [ 24242] By: steveh                                on 2005/04/18  16:04:20
43728         Log: Fix bug #33664: allow for transport providers with protocol == 0
43729              
43730              (This indicates that any protocol may be used, so don't bother checking
43731              that the requested protocol matches in this case.)
43732      Branch: perl
43733            ! win32/win32sck.c
43734 ____________________________________________________________________________
43735 [ 24241] By: nicholas                              on 2005/04/18  15:23:45
43736         Log: Refactor the odd-one-out code before a Renew(SvPVX(...)...)
43737      Branch: perl
43738            ! pp_hot.c
43739 ____________________________________________________________________________
43740 [ 24240] By: nicholas                              on 2005/04/18  14:15:52
43741         Log: Two more uses of lvalue SvIVX()
43742      Branch: perl
43743            ! ext/ByteLoader/byterun.c lib/ExtUtils/t/Constant.t
43744 ____________________________________________________________________________
43745 [ 24239] By: nicholas                              on 2005/04/18  12:18:20
43746         Log: Subject: [PATCH] Refactoring to Sv*_set() macros - patch #4
43747              Message-ID: <20050416160502.GA26957@mccoy.peters.homeunix.org>
43748              From: Steve Peters <steve@fisharerojo.org>
43749              Date: Sat, 16 Apr 2005 11:05:02 -0500
43750              
43751              plus fix to Perl_rvpv_dup assigning to an RV with SvPVX
43752      Branch: perl
43753            ! av.c cop.h ext/PerlIO/encoding/encoding.xs
43754            ! ext/Storable/Storable.xs gv.c malloc.c perl.c pp.c pp_ctl.c
43755            ! pp_hot.c pp_pack.c pp_sort.c scope.c sv.c
43756 ____________________________________________________________________________
43757 [ 24238] By: rgs                                   on 2005/04/15  13:16:29
43758         Log: Update the outdated info in "Minimizing the Perl installation"
43759      Branch: perl
43760            ! INSTALL
43761 ____________________________________________________________________________
43762 [ 24237] By: rgs                                   on 2005/04/14  16:13:45
43763         Log: Fix for:
43764              [perl #34934] perl 5.8.5 on x86 and x86-64 hang at compile-time
43765              From: bstrand@switchmanagement.com (via RT) <perlbug-followup@perl.org>
43766              Date: 12 Apr 2005 19:12:58 -0000
43767              Message-ID: <rt-3.0.11-34934-110595.15.9181274318682@perl.org>
43768              
43769              This syntax error now produces a panic message.
43770      Branch: perl
43771            ! op.c
43772 ____________________________________________________________________________
43773 [ 24236] By: merijn                                on 2005/04/13  15:10:24
43774         Log: Subject: [PATCH] Removing yydestruct from perly.c
43775              From: Andy Lester <andy@petdance.com>
43776              Date: Wed, 13 Apr 2005 10:06:47 -0500
43777              Message-ID: <20050413150647.GA13464@petdance.com>
43778      Branch: perl
43779            ! perly.c
43780 ____________________________________________________________________________
43781 [ 24235] By: merijn                                on 2005/04/13  14:51:00
43782         Log: Mandrakesoft is now Mandriva
43783      Branch: perl
43784            ! AUTHORS
43785 ____________________________________________________________________________
43786 [ 24234] By: merijn                                on 2005/04/13  14:41:20
43787         Log: H.Merijn changed e-mail
43788      Branch: perl
43789            ! AUTHORS Porting/checkAUTHORS.pl Porting/patching.pod
43790            ! README.aix README.hpux ext/Encode/AUTHORS ext/Storable/README
43791 ____________________________________________________________________________
43792 [ 24233] By: rgs                                   on 2005/04/13  08:25:43
43793         Log: Subject: [PATCH Perl 5.9.2] -Wformat 
43794              From: Robin Barker <Robin.Barker@npl.co.uk>
43795              Date: Tue, 12 Apr 2005 18:53:32 +0100
43796              Message-ID: <533D273D4014D411AB1D00062938C4D90849C634@hotel.npl.co.uk>
43797      Branch: perl
43798            ! perly.c regcomp.c regexec.c toke.c
43799 ____________________________________________________________________________
43800 [ 24232] By: rgs                                   on 2005/04/13  07:24:07
43801         Log: Upgrade to ExtUtils::MakeMaker 6.28
43802      Branch: perl
43803            ! lib/ExtUtils/Changes lib/ExtUtils/MANIFEST.SKIP
43804            ! lib/ExtUtils/META.yml lib/ExtUtils/MM_AIX.pm
43805            ! lib/ExtUtils/MM_Any.pm lib/ExtUtils/MakeMaker.pm
43806            ! lib/ExtUtils/Manifest.pm
43807 ____________________________________________________________________________
43808 [ 24231] By: rgs                                   on 2005/04/12  15:30:23
43809         Log: Upgrade to Encode 2.0902
43810      Branch: perl
43811            + ext/Encode/t/utf8strict.t
43812            ! MANIFEST ext/Encode/Changes ext/Encode/Encode.pm
43813            ! ext/Encode/Encode.xs ext/Encode/Encode/encode.h
43814            ! ext/Encode/MANIFEST ext/Encode/META.yml
43815            ! ext/Encode/lib/Encode/Alias.pm ext/Encode/t/Aliases.t
43816            ! ext/Encode/t/fallback.t
43817 ____________________________________________________________________________
43818 [ 24230] By: nicholas                              on 2005/04/12  11:24:49
43819         Log: Don't PERL_HASH(SvUVX(...)...) as it's actually a set.
43820              Plus add an editor block
43821      Branch: perl
43822            ! op.c
43823 ____________________________________________________________________________
43824 [ 24229] By: nicholas                              on 2005/04/12  09:19:43
43825         Log: Subject: [PATCH] Refactoring to Sv*_set() macros - patch #3
43826              From: Steve Peters <steve@fisharerojo.org>
43827              Message-ID: <20050411023736.GB9355@mccoy.peters.homeunix.org>
43828              Date: Sun, 10 Apr 2005 21:37:36 -0500
43829              
43830              (with correction to SvUV_set)
43831      Branch: perl
43832            ! ext/List/Util/Util.xs sv.c sv.h
43833 ____________________________________________________________________________
43834 [ 24228] By: nicholas                              on 2005/04/11  14:53:38
43835         Log: Avoid taking a reference to SvIVX and putting that address on the
43836              save stack
43837      Branch: perl
43838            ! perl.c pp_ctl.c pp_hot.c
43839 ____________________________________________________________________________
43840 [ 24227] By: steveh                                on 2005/04/11  10:39:59
43841         Log: Support d_libm_lib_version for Win32 (see change 24217)
43842      Branch: perl
43843            ! win32/config.bc win32/config.gc win32/config.vc
43844            ! win32/config.vc64 win32/config_H.bc win32/config_H.gc
43845            ! win32/config_H.vc win32/config_H.vc64
43846 ____________________________________________________________________________
43847 [ 24226] By: merijn                                on 2005/04/11  10:09:06
43848         Log: Out of sync metaunit caused the erroneous return of the
43849              removed d_sitecustomize. Mea Culpa.
43850      Branch: perl
43851            ! Configure
43852 ____________________________________________________________________________
43853 [ 24225] By: steveh                                on 2005/04/11  09:39:40
43854         Log: Disable I18N::Langinfo for Win32 since nl_langinfo() isn't available
43855      Branch: perl
43856            ! win32/Makefile win32/makefile.mk
43857 ____________________________________________________________________________
43858 [ 24224] By: rgs                                   on 2005/04/11  09:21:54
43859         Log: Subject: [PATCH] perlfunc.pod: incomplete select description
43860              From: Hernan Perez Masci <hmasci@uolsinectis.com.ar>
43861              Date: Fri, 8 Apr 2005 15:28:28 -0300
43862              Message-Id: <200504081528.28307.hmasci@uolsinectis.com.ar>
43863      Branch: perl
43864            ! pod/perlfunc.pod
43865 ____________________________________________________________________________
43866 [ 24223] By: rgs                                   on 2005/04/11  09:11:53
43867         Log: Make the four-argument form of select() return undef
43868              instead of -1 on error.
43869      Branch: perl
43870            ! pod/perl593delta.pod pod/perlfunc.pod pp_sys.c
43871 ____________________________________________________________________________
43872 [ 24222] By: rgs                                   on 2005/04/11  07:02:59
43873         Log: Make Win32 build (and clean) I18::Langinfo and Math::BigInt::FastCalc
43874      Branch: perl
43875            ! win32/Makefile win32/makefile.mk
43876 ____________________________________________________________________________
43877 [ 24221] By: merijn                                on 2005/04/11  06:06:13
43878         Log: Subject: Re: New Configure functionality
43879              From: Abe Timmerman <abe@ztreet.demon.nl>
43880              Date: Sun, 10 Apr 2005 22:19:28 +0200
43881              Message-Id: <200504102219.29024.abe@ztreet.demon.nl>
43882      Branch: perl
43883            ! configure.com
43884 ____________________________________________________________________________
43885 [ 24220] By: rgs                                   on 2005/04/10  20:03:59
43886         Log: POD typo.
43887      Branch: perl
43888            ! lib/Module/CoreList.pm
43889 ____________________________________________________________________________
43890 [ 24219] By: rgs                                   on 2005/04/10  19:49:49
43891         Log: Module::CoreList: Data from Sebastien Aperghis-Tramoni for perl
43892              5.00{0,1,2}. Upgrade version number.
43893      Branch: perl
43894            ! lib/Module/CoreList.pm
43895 ____________________________________________________________________________
43896 [ 24218] By: merijn                                on 2005/04/10  18:00:05
43897         Log: Sorting still is a mess. This is better.
43898      Branch: perl
43899            ! config_h.SH
43900 ____________________________________________________________________________
43901 [ 24217] By: merijn                                on 2005/04/10  17:08:36
43902         Log: Configure now probes for _LIB_VERSION support in math.h/libm
43903              LIBM_LIB_VERSION is defined if it does
43904      Branch: perl
43905            ! Configure Porting/config_H config_h.SH handy.h
43906 ____________________________________________________________________________
43907 [ 24215] By: rgs                                   on 2005/04/10  15:03:10
43908         Log: Fix [perl #34892] Segfault on &DB::sub declared but not defined
43909      Branch: perl
43910            ! pod/perldiag.pod pp_hot.c
43911 ____________________________________________________________________________
43912 [ 24214] By: merijn                                on 2005/04/10  09:14:06
43913         Log: Subject: [PATCH] usesitecustomize for VMS
43914              From: "Craig A. Berry" <craigberry@mac.com>
43915              Date: Sat, 09 Apr 2005 15:58:43 -0500
43916              Message-ID: <42584203.2090405@mac.com>
43917      Branch: perl
43918            ! configure.com
43919 ____________________________________________________________________________
43920 [ 24213] By: nicholas                              on 2005/04/08  19:11:04
43921         Log: Mangle the expected output correctly for both 5.9 and 5.8
43922      Branch: perl
43923            ! ext/B/t/stash.t
43924 ____________________________________________________________________________
43925 [ 24212] By: rgs                                   on 2005/04/08  16:17:49
43926         Log: Subject: Re: [ANNOUNCE] ExtUtils::MakeMaker 6.27
43927              From: Michael G Schwern <schwern@pobox.com>
43928              Date: Thu, 7 Apr 2005 15:15:00 -0700
43929              Message-ID: <20050407221500.GB6223@windhund.schwern.org>
43930              
43931              Fix duplicate target warnings
43932      Branch: perl
43933            ! lib/ExtUtils/MM_Any.pm
43934 ____________________________________________________________________________
43935 [ 24211] By: merijn                                on 2005/04/08  14:22:05
43936         Log: The last remains of d_sitecustomize
43937      Branch: perl
43938            ! Porting/config.sh
43939 ____________________________________________________________________________
43940 [ 24210] By: merijn                                on 2005/04/08  14:16:59
43941         Log: now usesitecustomize is used more generic
43942      Branch: perl
43943            ! config_h.SH
43944 ____________________________________________________________________________
43945 [ 24209] By: steveh                                on 2005/04/08  14:15:14
43946         Log: Subject: Re: [PATCH] Re: [perl #24119] CPAN.pm error in Win32: uses rename() not File::Copy::move
43947              From: Steven Schubiger <steven@accognoscere.org>
43948              Date: Thu, 7 Apr 2005 22:38:25 +0200 (CEST)
43949              Message-Id: <200504072038.j37KcPXY011755@accognoscere.homeunix.org>
43950              
43951              (with arguments changed to match perlfunc.pod)
43952      Branch: perl
43953            ! pod/perlport.pod
43954 ____________________________________________________________________________
43955 [ 24208] By: merijn                                on 2005/04/08  14:12:54
43956         Log: Drop d_sitecustomize again. (usesitecustomize is enough)
43957      Branch: perl
43958            ! Configure
43959 ____________________________________________________________________________
43960 [ 24206] By: nicholas                              on 2005/04/08  13:16:07
43961         Log: Add SvIVX() to PERL_DEBUG_COW, and change pad.c to SvIVset()
43962      Branch: perl
43963            ! pad.c sv.h
43964 ____________________________________________________________________________
43965 [ 24205] By: merijn                                on 2005/04/08  12:18:42
43966         Log: Subject: [PATCH] Removing Y2K warnings
43967              From: Andy Lester <andy@petdance.com>
43968              Date: Thu, 7 Apr 2005 17:44:42 -0500
43969              Message-ID: <20050407224442.GA23895@petdance.com>
43970      Branch: perl
43971            - README.Y2K
43972            ! INSTALL MANIFEST lib/warnings.pm pod/buildtoc pod/perldiag.pod
43973            ! pod/perllexwarn.pod pp_hot.c sv.c t/lib/warnings/pp_hot
43974            ! t/lib/warnings/sv t/op/caller.t warnings.h warnings.pl
43975 ____________________________________________________________________________
43976 [ 24204] By: nicholas                              on 2005/04/08  11:29:22
43977         Log: Subject: [PATCH] Refactoring to Sv*_set() macros - patch #2
43978              From: Steve Peters <steve@fisharerojo.org>
43979              Date: Thu, 7 Apr 2005 13:51:49 -0500
43980              Message-ID: <20050407185149.GA4418@mccoy.peters.homeunix.org>
43981      Branch: perl
43982            ! doio.c ext/List/Util/Util.xs ext/threads/threads.xs op.c pp.c
43983            ! pp_ctl.c pp_hot.c sv.c toke.c util.c
43984 ____________________________________________________________________________
43985 [ 24201] By: nicholas                              on 2005/04/08  10:39:15
43986         Log: Add a macro PERL_DEBUG_COW, for aggressive compile time tests of
43987              Copy-On-Write related source changes.
43988              Fix the problem this revealed.
43989      Branch: perl
43990            ! sv.c sv.h
43991 ____________________________________________________________________________
43992 [ 24200] By: nicholas                              on 2005/04/08  10:08:35
43993         Log: MM_AIX needs neatvalue
43994      Branch: perl
43995            ! lib/ExtUtils/MM_AIX.pm
43996 ____________________________________________________________________________
43997 [ 24199] By: nicholas                              on 2005/04/08  10:05:49
43998         Log: Subject: [PATCH] Refactoring to Sv*_set() macros - patch #1
43999              From: Steve Peters <steve@fisharerojo.org>
44000              Message-ID: <20050406232110.GA12249@mccoy.peters.homeunix.org>
44001              Date: Wed, 6 Apr 2005 18:21:10 -0500
44002      Branch: perl
44003            ! ext/ByteLoader/byterun.c ext/List/Util/Util.xs pad.c sv.c
44004            ! toke.c
44005 ____________________________________________________________________________
44006 [ 24198] By: rgs                                   on 2005/04/08  09:48:08
44007         Log: Add perl593delta.pod
44008      Branch: perl
44009            + pod/perl593delta.pod
44010            ! MANIFEST Makefile.SH pod.lst pod/perl.pod
44011            ! vms/descrip_mms.template win32/Makefile win32/makefile.mk
44012            ! win32/pod.mak
44013 ____________________________________________________________________________
44014 [ 24194] By: rgs                                   on 2005/04/07  12:42:07
44015         Log: Mention that select() returns -1 on error,
44016              as suggested by Hernan Perez Masci
44017      Branch: perl
44018            ! pod/perlfunc.pod
44019 ____________________________________________________________________________
44020 [ 24192] By: rgs                                   on 2005/04/07  09:51:29
44021         Log: Subject: Re: [PATCH] Re: [perl #34650] perldoc -f my should perhaps mention BEGIN and END
44022              From: Abigail <abigail@abigail.nl>
44023              Date: Wed, 6 Apr 2005 01:41:55 +0200
44024              Message-ID: <20050405234154.GG8680@abigail.nl>
44025      Branch: perl
44026            ! t/japh/abigail.t
44027 ____________________________________________________________________________
44028 [ 24191] By: rgs                                   on 2005/04/07  09:45:27
44029         Log: Subject: Re: Bugs? In Unicode::EastAsianWidth.
44030              From: Autrijus Tang <autrijus@autrijus.org>
44031              Date: Wed, 6 Apr 2005 18:17:32 +0800
44032              Message-ID: <20050406101732.GA17931@aut.dyndns.org>
44033      Branch: perl
44034            ! lib/unicore/mktables
44035 ____________________________________________________________________________
44036 [ 24190] By: rgs                                   on 2005/04/07  09:38:06
44037         Log: Subject: perldbtty$$ location
44038              From: Gisle Aas <gisle@ActiveState.com>
44039              Date: 06 Apr 2005 01:49:54 -0700
44040              Message-ID: <lr3bu48f2l.fsf@caliper.activestate.com>
44041              (and remove trailing whitespace)
44042      Branch: perl
44043            ! pod/perldebug.pod
44044 ____________________________________________________________________________
44045 [ 24189] By: nicholas                              on 2005/04/07  08:43:40
44046         Log: Tabs not spaces in MANIFEST
44047      Branch: perl
44048            ! MANIFEST
44049 ____________________________________________________________________________
44050 [ 24187] By: merijn                                on 2005/04/07  08:33:53
44051         Log: Subject: [perl #34699] documentation bug in "man perlpodspec" 
44052              From: "raf@tradingpost.com.au (via RT)" <perlbug-followup@perl.org>
44053              Date: 7 Apr 2005 00:20:31 -0000
44054              Message-ID: <rt-3.0.11-34699-110174.9.79475562169704@perl.org>
44055      Branch: perl
44056            ! pod/perlpodspec.pod
44057 ____________________________________________________________________________
44058 [ 24185] By: rgs                                   on 2005/04/07  08:07:14
44059         Log: Upgrade to ExtUtils::MakeMaker 6.27,
44060              plus a patch to restore functioning of 'distclean'
44061              for the perl core
44062      Branch: perl
44063            + lib/ExtUtils/MM_AIX.pm lib/ExtUtils/MM_QNX.pm
44064            + lib/ExtUtils/MM_VOS.pm lib/ExtUtils/MakeMaker/Config.pm
44065            + lib/ExtUtils/t/PL_FILES.t lib/ExtUtils/t/config.t
44066            + lib/ExtUtils/t/installbase.t lib/ExtUtils/t/xs.t
44067            + t/lib/MakeMaker/Test/Setup/PL_FILES.pm
44068            ! MANIFEST lib/ExtUtils/Changes lib/ExtUtils/Command.pm
44069            ! lib/ExtUtils/Command/MM.pm lib/ExtUtils/Install.pm
44070            ! lib/ExtUtils/MANIFEST.SKIP lib/ExtUtils/META.yml
44071            ! lib/ExtUtils/MM.pm lib/ExtUtils/MM_Any.pm
44072            ! lib/ExtUtils/MM_BeOS.pm lib/ExtUtils/MM_Cygwin.pm
44073            ! lib/ExtUtils/MM_NW5.pm lib/ExtUtils/MM_OS2.pm
44074            ! lib/ExtUtils/MM_Unix.pm lib/ExtUtils/MM_VMS.pm
44075            ! lib/ExtUtils/MM_Win32.pm lib/ExtUtils/MM_Win95.pm
44076            ! lib/ExtUtils/MakeMaker.pm lib/ExtUtils/MakeMaker/FAQ.pod
44077            ! lib/ExtUtils/Manifest.pm lib/ExtUtils/PATCHING
44078            ! lib/ExtUtils/README lib/ExtUtils/t/INST_PREFIX.t
44079            ! lib/ExtUtils/t/Installed.t lib/ExtUtils/t/MM_Win32.t
44080            ! lib/ExtUtils/t/basic.t lib/ExtUtils/t/dir_target.t
44081            ! lib/ExtUtils/t/prefixify.t lib/ExtUtils/t/prereq_print.t
44082            ! lib/ExtUtils/t/recurs.t t/lib/MakeMaker/Test/Setup/BFD.pm
44083            ! t/lib/MakeMaker/Test/Setup/Recurs.pm
44084            ! t/lib/MakeMaker/Test/Utils.pm
44085 ____________________________________________________________________________
44086 [ 24178] By: steveh                                on 2005/04/06  15:57:36
44087         Log: Don't try to export symbols that don't exist
44088              
44089              Change #24148 added Perl_rvpv_dup() to the public API, but it is only
44090              defined when USE_ITHREADS is defined.  Adjust makedef.pl accordingly
44091              to keep Win32 happy.
44092      Branch: perl
44093            ! makedef.pl
44094 ____________________________________________________________________________
44095 [ 24176] By: nicholas                              on 2005/04/06  15:11:53
44096         Log: cast to/from (void *) in the re-entrant code. Now watch the smoke rise.
44097      Branch: perl
44098            ! reentr.c reentr.h reentr.pl
44099 ____________________________________________________________________________
44100 [ 24175] By: nicholas                              on 2005/04/06  15:05:32
44101         Log: Casting to/from (void *) sufficient to make a C++ compiler happy.
44102      Branch: perl
44103            ! ext/File/Glob/bsd_glob.c ext/threads/shared/shared.xs
44104            ! ext/threads/threads.xs pad.h sv.c
44105 ____________________________________________________________________________
44106 [ 24174] By: nicholas                              on 2005/04/06  14:36:40
44107         Log: If we're going to prototype modfl(), it needs extern "C" linkage.
44108      Branch: perl
44109            ! perl.h
44110 ____________________________________________________________________________
44111 [ 24173] By: merijn                                on 2005/04/06  06:14:51
44112         Log: 1. t/TEST now deals with SKIP as if it was TODO. This complies to TAP
44113              2. Removed the depricated 'my $foo if expr' there
44114      Branch: perl
44115            ! t/TEST
44116 ____________________________________________________________________________
44117 [ 24171] By: nicholas                              on 2005/04/05  22:34:32
44118         Log: D'oh! We were never correctly spotting a modfl prototype
44119      Branch: perl
44120            ! Configure
44121 ____________________________________________________________________________
44122 [ 24170] By: nicholas                              on 2005/04/05  21:30:21
44123         Log: Add casting to allow g++ (3.3.5) to compile the core code.
44124              A C++ compiler produces lots of warnings that are probably valid
44125              concerns to investigate.
44126      Branch: perl
44127            ! doio.c ext/B/B.xs ext/Cwd/Cwd.xs ext/Devel/DProf/DProf.xs gv.c
44128            ! perl.c perl.h pp_pack.c scope.c sv.c toke.c util.c x2p/walk.c
44129 ____________________________________________________________________________
44130 [ 24169] By: nicholas                              on 2005/04/05  21:16:01
44131         Log: Tests need to skip if there is no Encode configured.
44132      Branch: perl
44133            ! lib/encoding/warnings/t/1-warning.t
44134            ! lib/encoding/warnings/t/2-fatal.t
44135 ____________________________________________________________________________
44136 [ 24167] By: nicholas                              on 2005/04/05  16:09:59
44137         Log: Using savesvpv() here is terser and produces smaller object code.
44138      Branch: perl
44139            ! doio.c
44140 ____________________________________________________________________________
44141 [ 24166] By: rgs                                   on 2005/04/05  15:23:47
44142         Log: Upgrade to Unicode::Normalize 0.32
44143      Branch: perl
44144            ! ext/Unicode/Normalize/Changes
44145            ! ext/Unicode/Normalize/Makefile.PL
44146            ! ext/Unicode/Normalize/Normalize.pm
44147            ! ext/Unicode/Normalize/Normalize.xs
44148            ! ext/Unicode/Normalize/mkheader ext/Unicode/Normalize/t/form.t
44149            ! ext/Unicode/Normalize/t/norm.t ext/Unicode/Normalize/t/test.t
44150 ____________________________________________________________________________
44151 [ 24165] By: nicholas                              on 2005/04/05  14:52:05
44152         Log: Down with C++ reserved names
44153              (and also function pointer declarations that rely on the C semantics
44154              of ())
44155      Branch: perl
44156            ! ext/Storable/Storable.xs mg.c op.c perlio.c pp_sort.c
44157            ! universal.c
44158 ____________________________________________________________________________
44159 [ 24164] By: nicholas                              on 2005/04/05  14:51:05
44160         Log: Down with potentially incorrect duplicate prototypes
44161      Branch: perl
44162            ! pp_sys.c
44163 ____________________________________________________________________________
44164 [ 24163] By: nicholas                              on 2005/04/05  14:50:30
44165         Log: Down with more K&R prototypes
44166      Branch: perl
44167            ! ext/DynaLoader/dl_dyld.xs
44168 ____________________________________________________________________________
44169 [ 24162] By: nicholas                              on 2005/04/05  14:49:11
44170         Log: Down with unneeded duplicate prototypes
44171      Branch: perl
44172            ! x2p/a2p.c
44173 ____________________________________________________________________________
44174 [ 24161] By: nicholas                              on 2005/04/05  14:48:33
44175         Log: Down with K&R function arguments
44176      Branch: perl
44177            ! ext/Cwd/Cwd.xs
44178 ____________________________________________________________________________
44179 [ 24160] By: rgs                                   on 2005/04/05  14:06:01
44180         Log: Add Math::BigInt::FastCalc in maintainer list
44181      Branch: perl
44182            ! Porting/Maintainers.pl
44183 ____________________________________________________________________________
44184 [ 24159] By: rgs                                   on 2005/04/05  13:12:22
44185         Log: Adaptations to the Makefile.PL of Math::BigInt/FastCalc, for core-ification
44186      Branch: perl
44187            ! ext/Math/BigInt/FastCalc/Makefile.PL
44188 ____________________________________________________________________________
44189 [ 24158] By: rgs                                   on 2005/04/05  12:56:35
44190         Log: New core module, Math::BigInt::FastCalc
44191              
44192              Subject: [PATCH] integrate Math::BigInt::FastCalc
44193              From: Tels <nospam-abuse@bloodgate.com>
44194              Date: Sun, 3 Apr 2005 11:12:45 +0200
44195              Message-Id: <200504031112.55179@bloodgate.com>
44196      Branch: perl
44197            + ext/Math/BigInt/FastCalc/FastCalc.pm
44198            + ext/Math/BigInt/FastCalc/FastCalc.xs
44199            + ext/Math/BigInt/FastCalc/Makefile.PL
44200            + ext/Math/BigInt/FastCalc/t/bigintfc.t
44201            + ext/Math/BigInt/FastCalc/t/bootstrap.t
44202            + ext/Math/BigInt/FastCalc/t/mbi_rand.t
44203            ! MANIFEST
44204 ____________________________________________________________________________
44205 [ 24155] By: rgs                                   on 2005/04/05  10:40:35
44206         Log: Subject: [Patch] Math::BigInt v1.76, Math::BigRat v0.15, bignum v0.17
44207              From: Tels <nospam-abuse@bloodgate.com>
44208              Date: Sun, 3 Apr 2005 10:43:10 +0200
44209              Message-Id: <200504031043.12273@bloodgate.com>
44210      Branch: perl
44211            ! lib/Math/BigFloat.pm lib/Math/BigInt.pm
44212            ! lib/Math/BigInt/Calc.pm lib/Math/BigInt/t/_e_math.t
44213            ! lib/Math/BigInt/t/bare_mbf.t lib/Math/BigInt/t/bigfltpm.inc
44214            ! lib/Math/BigInt/t/bigfltpm.t lib/Math/BigInt/t/bigintpm.t
44215            ! lib/Math/BigInt/t/calling.t lib/Math/BigInt/t/config.t
44216            ! lib/Math/BigInt/t/req_mbf0.t lib/Math/BigInt/t/req_mbfw.t
44217            ! lib/Math/BigInt/t/sub_mbf.t lib/Math/BigInt/t/trap.t
44218            ! lib/Math/BigInt/t/with_sub.t lib/Math/BigRat.pm
44219            ! lib/Math/BigRat/t/bigratpm.t lib/Math/BigRat/t/requirer.t
44220            ! lib/bigint.pm lib/bignum.pm lib/bigrat.pm
44221 ____________________________________________________________________________
44222 [ 24152] By: rgs                                   on 2005/04/04  20:55:03
44223         Log: That's C, not perl.
44224      Branch: perl
44225            ! patchlevel.h
44226 ____________________________________________________________________________
44227 [ 24151] By: nicholas                              on 2005/04/04  20:53:42
44228         Log: Make -DFORMAT_CHECK compile with threads.
44229      Branch: perl
44230            ! perl.h
44231 ____________________________________________________________________________
44232 [ 24149] By: rgs                                   on 2005/04/04  17:14:37
44233         Log: Bump version to 5.9.3
44234              Restore "DEVEL" tag in patchlevel.h
44235              Regenerate Porting/config*
44236      Branch: perl
44237            ! NetWare/Makefile NetWare/config_H.wc Porting/config.sh
44238            ! Porting/config_H epoc/config.sh epoc/createpkg.pl patchlevel.h
44239            ! plan9/config.plan9 win32/Makefile win32/config_H.bc
44240            ! win32/config_H.gc win32/config_H.vc64 win32/makefile.mk
44241            ! wince/Makefile.ce
44242 ____________________________________________________________________________
44243 [ 24148] By: rgs                                   on 2005/04/04  14:19:30
44244         Log: Subject: [PATCH] const-eight.diff
44245              From: Andy Lester <andy@petdance.com>
44246              Date: Wed, 30 Mar 2005 11:40:24 -0600
44247              Message-ID: <20050330174024.GA12167@petdance.com>
44248      Branch: perl
44249            ! Porting/Maintainers.pl doio.c dump.c embed.fnc embed.h
44250            ! global.sym mg.c op.c perl.c proto.h sv.c universal.c xsutils.c
44251 ____________________________________________________________________________
44252 [ 24147] By: mhx                                   on 2005/04/03  16:47:54
44253         Log: Subject: Re: [PATCH] Re: [perl #34632] perlintro: "Comments start with ahash symbol"
44254              From: Steven Schubiger <steven@accognoscere.org>
44255              Date: Sun, 3 Apr 2005 11:47:22 +0200 (CEST)
44256              Message-Id: <200504030947.j339lMgp010306@accognoscere.homeunix.org>
44257      Branch: perl
44258            ! pod/perltrap.pod
44259 ____________________________________________________________________________
44260 [ 24139] By: mhx                                   on 2005/04/03  08:19:06
44261         Log: Subject: Re: [PATCH] Re: [perl #34632] perlintro: "Comments start with a hash symbol"
44262              From: Steven Schubiger <steven@accognoscere.org>
44263              Date: Sat, 2 Apr 2005 19:37:11 +0200 (CEST)
44264              Message-Id: <200504021737.j32HbBNS000652@accognoscere.homeunix.org>
44265      Branch: perl
44266            ! pod/perltrap.pod
44267 ____________________________________________________________________________
44268 [ 24138] By: mhx                                   on 2005/04/03  08:16:25
44269         Log: Fix wrong version for byteorder modifiers feature.
44270      Branch: perl
44271            ! pod/perlpacktut.pod
44272 ____________________________________________________________________________
44273 [ 24137] By: nicholas                              on 2005/04/02  22:58:59
44274         Log: Silence compiler warnings about possibly uninitialised variables.
44275              (None are, but it saves anyone else having to work this out)
44276      Branch: perl
44277            ! regexec.c
44278 ____________________________________________________________________________
44279 [ 24136] By: nicholas                              on 2005/04/02  19:04:27
44280         Log: Fix "[perl #34643] Config_heavy.pl not in archlib"
44281      Branch: perl
44282            ! installperl
44283 ____________________________________________________________________________
44284 [ 24135] By: nicholas                              on 2005/04/02  18:52:11
44285         Log: Oops. Forgot to add this.
44286      Branch: perl
44287            + lib/unicore/NamedSequences.txt
44288 ____________________________________________________________________________
44289 [ 24134] By: nicholas                              on 2005/04/02  18:51:27
44290         Log: Subject: [PATCH] Unicode 4.1.0
44291              From: Jarkko Hietaniemi <jhi@iki.fi>
44292              Message-ID: <424E584D.5000508@iki.fi>
44293              Date: Sat, 02 Apr 2005 11:31:09 +0300
44294      Branch: perl
44295            ! MANIFEST lib/Unicode/UCD.pm lib/Unicode/UCD.t
44296            ! lib/unicore/ArabicShaping.txt lib/unicore/BidiMirroring.txt
44297            ! lib/unicore/Blocks.txt lib/unicore/CaseFolding.txt
44298            ! lib/unicore/CompositionExclusions.txt
44299            ! lib/unicore/EastAsianWidth.txt
44300            ! lib/unicore/HangulSyllableType.txt lib/unicore/Jamo.txt
44301            ! lib/unicore/LineBreak.txt lib/unicore/NamesList.txt
44302            ! lib/unicore/NormalizationCorrections.txt
44303            ! lib/unicore/PropList.txt lib/unicore/PropValueAliases.txt
44304            ! lib/unicore/PropertyAliases.txt lib/unicore/README.perl
44305            ! lib/unicore/ReadMe.txt lib/unicore/Scripts.txt
44306            ! lib/unicore/SpecialCasing.txt
44307            ! lib/unicore/StandardizedVariants.txt
44308            ! lib/unicore/UnicodeData.txt lib/unicore/version t/uni/class.t
44309 ____________________________________________________________________________
44310 [ 24133] By: rgs                                   on 2005/04/01  09:16:19
44311         Log: Add encoding::warnings to Maintainers.pl and rebuild META.yml for release
44312      Branch: perl
44313            ! META.yml Porting/Maintainers.pl
44314 ____________________________________________________________________________
44315 [ 24132] By: rgs                                   on 2005/04/01  08:29:26
44316         Log: Update Changes
44317      Branch: perl
44318            ! Changes
44319 ____________________________________________________________________________
44320 [ 24131] By: steveh                                on 2005/04/01  08:18:27
44321         Log: Remove dependency on tr(1) for MinGW builds on Win32
44322              
44323              This leaves things slightly (more) broken for MinGW builds on Cygwin,
44324              but that doesn't currently quite work in other respects and isn't
44325              documented anyway.  See:
44326              
44327              http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2005-03/msg00751.html
44328      Branch: perl
44329            ! pod/perl592delta.pod win32/makefile.mk
44330 ____________________________________________________________________________
44331 [ 24130] By: rgs                                   on 2005/04/01  07:47:26
44332         Log: Regenerate perltoc and perlmodlib
44333      Branch: perl
44334            ! pod/perlmodlib.pod pod/perltoc.pod
44335 ____________________________________________________________________________
44336 [ 24129] By: rgs                                   on 2005/04/01  07:36:04
44337         Log: POD fixes.
44338      Branch: perl
44339            ! pod/perlfaq1.pod
44340 ____________________________________________________________________________
44341 [ 24128] By: rgs                                   on 2005/04/01  07:19:27
44342         Log: FAQ sync.
44343      Branch: perl
44344            ! pod/perlfaq.pod pod/perlfaq3.pod pod/perlfaq4.pod
44345            ! pod/perlfaq6.pod pod/perlfaq7.pod
44346 ____________________________________________________________________________
44347 [ 24127] By: rgs                                   on 2005/04/01  07:14:22
44348         Log: Add a note about installhtml
44349      Branch: perl
44350            ! pod/perltodo.pod
44351 ____________________________________________________________________________
44352 [ 24126] By: rgs                                   on 2005/03/31  21:51:28
44353         Log: Subject: [PATCH] pp_pack.c warnings on VMS
44354              From: "Craig A. Berry" <craigberry@mac.com>
44355              Date: Thu, 31 Mar 2005 14:51:05 -0600
44356              Message-ID: <424C62B9.2030601@mac.com>
44357      Branch: perl
44358            ! pp_pack.c
44359 ____________________________________________________________________________
44360 [ 24125] By: rgs                                   on 2005/03/31  17:14:01
44361         Log: Mention the current MinGW compilation problems
44362      Branch: perl
44363            ! pod/perl592delta.pod
44364 ____________________________________________________________________________
44365 [ 24124] By: rgs                                   on 2005/03/31  17:11:15
44366         Log: Update Changes
44367      Branch: perl
44368            ! Changes
44369 ____________________________________________________________________________
44370 [ 24123] By: rgs                                   on 2005/03/31  15:52:46
44371         Log: This is 5.9.2. Mostly.
44372      Branch: perl
44373            ! patchlevel.h pod/perlhist.pod
44374 ____________________________________________________________________________
44375 [ 24122] By: steveh                                on 2005/03/31  15:39:57
44376         Log: Fix USE_SITECUSTOMIZE on Win32
44377              
44378              This fixes the problem described in:
44379              
44380              http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2005-03/msg00740.html
44381      Branch: perl
44382            ! win32/win32.c
44383 ____________________________________________________________________________
44384 [ 24121] By: rgs                                   on 2005/03/31  15:24:24
44385         Log: Update copyrights.
44386              Well, those are generated files anyway.
44387      Branch: perl
44388            ! embed.h embed.pl embedvar.h global.sym perlapi.c perlapi.h
44389            ! proto.h
44390 ____________________________________________________________________________
44391 [ 24120] By: steveh                                on 2005/03/31  14:36:44
44392         Log: Add support for USE_SITECUSTOMIZE in the Win32 makefiles
44393              
44394              Note that this feature doesn't actually work correctly on Win32
44395              until the problem described here is solved:
44396              
44397              http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2005-03/msg00740.html
44398      Branch: perl
44399            ! win32/Makefile win32/config.bc win32/config.gc win32/config.vc
44400            ! win32/config.vc64 win32/makefile.mk
44401 ____________________________________________________________________________
44402 [ 24119] By: rgs                                   on 2005/03/31  13:52:58
44403         Log: Upgrade to Module::CoreList 1.99
44404      Branch: perl
44405            ! lib/Module/CoreList.pm
44406 ____________________________________________________________________________
44407 [ 24118] By: rgs                                   on 2005/03/31  13:45:17
44408         Log: More known problems.
44409      Branch: perl
44410            ! pod/perl592delta.pod
44411 ____________________________________________________________________________
44412 [ 24117] By: rgs                                   on 2005/03/31  13:10:26
44413         Log: Known problems, reported by Merijn
44414      Branch: perl
44415            ! pod/perl592delta.pod
44416 ____________________________________________________________________________
44417 [ 24116] By: rgs                                   on 2005/03/31  12:45:03
44418         Log: OS typo.
44419      Branch: perl
44420            ! pod/perl592delta.pod
44421 ____________________________________________________________________________
44422 [ 24115] By: rgs                                   on 2005/03/31  12:42:38
44423         Log: Add a tool to generate data for Module::CoreList
44424      Branch: perl
44425            + Porting/corelist.pl
44426            ! MANIFEST
44427 ____________________________________________________________________________
44428 [ 24114] By: rgs                                   on 2005/03/31  11:42:15
44429         Log: More work on perldelta
44430      Branch: perl
44431            ! pod/perl592delta.pod
44432 ____________________________________________________________________________
44433 [ 24113] By: steveh                                on 2005/03/31  10:01:18
44434         Log: Add support for PERL_HASH_SEED_EXPLICIT and NO_HASH_SEED in the
44435              Win32 makefiles
44436      Branch: perl
44437            ! win32/Makefile win32/makefile.mk
44438 ____________________________________________________________________________
44439 [ 24112] By: rgs                                   on 2005/03/31  09:58:40
44440         Log: AUTHORS update
44441      Branch: perl
44442            ! AUTHORS
44443 ____________________________________________________________________________
44444 [ 24111] By: steveh                                on 2005/03/31  09:18:23
44445         Log: A few Win32 makefile tidy-ups (No real changes)
44446      Branch: perl
44447            ! win32/Makefile win32/makefile.mk
44448 ____________________________________________________________________________
44449 [ 24110] By: steveh                                on 2005/03/31  08:20:00
44450         Log: Fix typo in INSTALL (s/USE_HAS_SEED_EXPLICIT/USE_HASH_SEED_EXPLICIT/)
44451      Branch: perl
44452            ! INSTALL
44453 ____________________________________________________________________________
44454 [ 24109] By: steveh                                on 2005/03/31  07:55:12
44455         Log: One more Win32 compilation clean-up (for when using -DDEBUGGING)
44456      Branch: perl
44457            ! sv.c
44458 ____________________________________________________________________________
44459 [ 24108] By: steveh                                on 2005/03/31  07:36:52
44460         Log: Another Win32 compilation clean-up (for when using Perl's malloc)
44461      Branch: perl
44462            ! malloc.c
44463 ____________________________________________________________________________
44464 [ 24107] By: merijn                                on 2005/03/30  17:03:19
44465         Log: Now that we have the full path, we can skip the which call,
44466              that might cause trouble on testdrive systems.
44467      Branch: perl
44468            ! hints/hpux.sh
44469 ____________________________________________________________________________
44470 [ 24106] By: rgs                                   on 2005/03/30  14:41:51
44471         Log: Update copyrights.
44472      Branch: perl
44473            ! XSUB.h av.c deb.c dump.c embedvar.h gv.h handy.h hv.h
44474            ! miniperlmain.c numeric.c op.h pad.c perl.h pp.h regcomp.h
44475            ! regen_perly.pl scope.h sv.h thrdvar.h thread.h
44476 ____________________________________________________________________________
44477 [ 24105] By: merijn                                on 2005/03/30  14:25:05
44478         Log: Simplify #24043 note now Configure can do -Dusesitecustomize
44479      Branch: perl
44480            ! INSTALL
44481 ____________________________________________________________________________
44482 [ 24104] By: merijn                                on 2005/03/30  14:17:40
44483         Log: Support for -Dusesitecustomize
44484      Branch: perl
44485            ! Configure config_h.SH
44486 ____________________________________________________________________________
44487 [ 24102] By: merijn                                on 2005/03/30  13:43:12
44488         Log: USE_STRLCAT and USE_STRLCPY now actually used
44489              LIBM_VERSION_TYPE and USE_SITECUSTOMIZE are preparations
44490              for future use
44491      Branch: perl
44492            ! handy.h
44493 ____________________________________________________________________________
44494 [ 24101] By: rgs                                   on 2005/03/30  13:34:11
44495         Log: Subject: [PATCH] ext/Errno/Errno_pm.PL: fix for GNU hurd
44496              From: Brendan O'Dea <bod@debian.org>
44497              Date: Wed, 30 Mar 2005 10:30:25 +1000
44498              Message-ID: <20050330003025.GA29797@londo.c47.org>
44499      Branch: perl
44500            ! ext/Errno/Errno_pm.PL
44501 ____________________________________________________________________________
44502 [ 24100] By: rgs                                   on 2005/03/30  13:16:52
44503         Log: Subject: Re: PATCH: byte count feature request for unpack
44504              From: perl5-porters@ton.iguana.be (Ton Hospel)
44505              Date: Sun, 27 Mar 2005 18:32:11 +0000 (UTC)
44506              Message-Id: <d26u7b$i3v$1@post.home.lunix>
44507              
44508              (rework of a patch from Arne Ahrend <aahrend@web.de>)
44509      Branch: perl
44510            ! pod/perldiag.pod pod/perlfunc.pod pp_pack.c t/op/pack.t
44511 ____________________________________________________________________________
44512 [ 24099] By: steveh                                on 2005/03/30  08:36:50
44513         Log: A couple more Win32 compilation clean-ups
44514      Branch: perl
44515            ! win32/win32sck.c
44516 ____________________________________________________________________________
44517 [ 24098] By: rgs                                   on 2005/03/30  08:03:13
44518         Log: Minor POD nits.
44519      Branch: perl
44520            ! ext/File/Glob/Glob.pm
44521 ____________________________________________________________________________
44522 [ 24097] By: merijn                                on 2005/03/30  07:49:46
44523         Log: Subject: Re: [PATCH] 5.6 File::Glob documentation insufficient for use
44524              From: Steven Schubiger <steven@accognoscere.org>
44525              Date: Wed, 30 Mar 2005 03:41:03 +0200 (CEST)
44526              Message-Id: <200503300141.j2U1f3EP024524@accognoscere.homeunix.org>
44527      Branch: perl
44528            ! ext/File/Glob/Glob.pm
44529 ____________________________________________________________________________
44530 [ 24096] By: steveh                                on 2005/03/29  15:18:30
44531         Log: Clean-up some warnings when compiling on Win32 with VC++
44532      Branch: perl
44533            ! hv.c mg.c op.c pp_pack.c pp_sort.c pp_sys.c utf8.c util.c
44534 ____________________________________________________________________________
44535 [ 24095] By: rgs                                   on 2005/03/29  12:39:39
44536         Log: Downconst external APIs
44537      Branch: perl
44538            ! embed.fnc gv.h op.c opcode.h opcode.pl pod/perlapi.pod proto.h
44539            ! sv.c util.c
44540 ____________________________________________________________________________
44541 [ 24094] By: rgs                                   on 2005/03/29  09:38:39
44542         Log: The core part of :
44543              Subject: [PATCH] Consting seven
44544              From: Andy Lester <andy@petdance.com>
44545              Date: Sun, 27 Mar 2005 15:57:22 -0600
44546              Message-ID: <20050327215722.GC20451@petdance.com>
44547      Branch: perl
44548            ! embed.fnc embed.h perl.c perlio.c pp_ctl.c proto.h regcomp.c
44549            ! regexec.c util.c
44550 ____________________________________________________________________________
44551 [ 24093] By: steveh                                on 2005/03/29  08:48:50
44552         Log: Fix Win32 compilation nit following change #24074
44553      Branch: perl
44554            ! util.c
44555 ____________________________________________________________________________
44556 [ 24092] By: steveh                                on 2005/03/29  08:22:45
44557         Log: Fix PerlLIO_chsize() for platforms that don't have chsize()
44558              
44559              This is the patch from the end of the thread that started here:
44560              http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2004-09/msg00055.html
44561      Branch: perl
44562            ! doio.c iperlsys.h pp_sys.c
44563 ____________________________________________________________________________
44564 [ 24091] By: rgs                                   on 2005/03/29  07:01:40
44565         Log: Fix Peek.t to work with and without DEBUG_LEAKING_SCALARS
44566      Branch: perl
44567            ! ext/Devel/Peek/t/Peek.t
44568 ____________________________________________________________________________
44569 [ 24090] By: merijn                                on 2005/03/29  07:01:11
44570         Log: Make the spelling of whitespace (vs white-space and white space)
44571              more consistent
44572              From: Offer Kaye <offer.kaye@gmail.com>
44573              Date: Thu, 17 Mar 2005 14:47:36 -0500
44574              Message-ID: <5694250503171147668e73c7@mail.gmail.com>
44575      Branch: perl
44576            ! pod/perllocale.pod pod/perlop.pod pod/perlopentut.pod
44577            ! pod/perlre.pod pod/perlxstut.pod
44578 ____________________________________________________________________________
44579 [ 24089] By: rgs                                   on 2005/03/29  06:14:18
44580         Log: Don't #ifdef out a return statement
44581      Branch: perl
44582            ! pad.c
44583 ____________________________________________________________________________
44584 [ 24088] By: davem                                 on 2005/03/28  21:38:44
44585         Log: expand -DDEBUG_LEAKING_SCALARS to instrument the creation of each SV
44586      Branch: perl
44587            ! dump.c ext/Devel/Peek/t/Peek.t pad.c perl.c pod/perlhack.pod
44588            ! sv.c sv.h
44589 ____________________________________________________________________________
44590 [ 24087] By: rgs                                   on 2005/03/27  16:38:13
44591         Log: Raw work on perl592delta.
44592      Branch: perl
44593            ! pod/perl592delta.pod
44594 ____________________________________________________________________________
44595 [ 24086] By: rgs                                   on 2005/03/27  13:59:02
44596         Log: Subject: Re: [perl #34195] Regex: Alternations within negative lookahead assertions 
44597              From: hv@crypt.org
44598              Date: Thu, 24 Mar 2005 19:51:08 +0000
44599              Message-Id: <200503241951.j2OJp8s18147@zen.crypt.org>
44600      Branch: perl
44601            ! regexec.c t/op/re_tests
44602 ____________________________________________________________________________
44603 [ 24085] By: rgs                                   on 2005/03/27  13:30:18
44604         Log: Fix -C option of mktables (for VMS)
44605              
44606              Subject: Re: [PATCH] Consting five
44607              From: demerphq <demerphq@gmail.com>
44608              Date: Sat, 26 Mar 2005 21:45:09 +0100
44609              Message-ID: <9b18b311050326124563db5113@mail.gmail.com>
44610      Branch: perl
44611            ! lib/unicore/mktables
44612 ____________________________________________________________________________
44613 [ 24084] By: davem                                 on 2005/03/26  21:25:47
44614         Log: UTF-8 string substitution corrupts memory
44615              The implicit call of 'require utf8' triggered by code like
44616              "\x{100}" =~ /[[:print:]]/
44617              wasn't saving state correctly first.
44618      Branch: perl
44619            ! utf8.c
44620 ____________________________________________________________________________
44621 [ 24083] By: rgs                                   on 2005/03/26  17:40:26
44622         Log: Remove an XXX note from the public doc.
44623              Hide it in the comments, instead
44624      Branch: perl
44625            ! pod/perlapi.pod sv.c
44626 ____________________________________________________________________________
44627 [ 24082] By: nicholas                              on 2005/03/26  00:21:30
44628         Log: Need to return something when the compiler doesn't know that a
44629              function is "noreturn".
44630      Branch: perl
44631            ! mg.c op.c scope.c
44632 ____________________________________________________________________________
44633 [ 24081] By: nicholas                              on 2005/03/25  23:46:22
44634         Log: Subject: [PATCH] Consting five
44635              Date: Fri, 25 Mar 2005 17:14:09 -0600
44636              From: Andy Lester <andy@petdance.com>
44637              Message-ID: <20050325231409.GB17660@petdance.com>
44638              
44639              [with modification - the extra argument to incpush was supposed to
44640              be being used]
44641      Branch: perl
44642            ! av.c embed.fnc embed.h ext/DynaLoader/dlutils.c gv.c
44643            ! intrpvar.h locale.c mg.c miniperlmain.c op.c perl.c pp_sys.c
44644            ! proto.h regcomp.c thrdvar.h toke.c
44645 ____________________________________________________________________________
44646 [ 24080] By: rgs                                   on 2005/03/25  21:09:23
44647         Log: Subject: Re: [perl #34568] Perl crashes reading past the end of a heap block while parsing foreach statement
44648              From: Gurusamy Sarathy <gsar@ActiveState.com>
44649              Date: Fri, 25 Mar 2005 10:31:09 -0800
44650              Message-Id: <200503251831.j2PIV9A6006234@smtp3.ActiveState.com>
44651      Branch: perl
44652            ! op.c
44653 ____________________________________________________________________________
44654 [ 24079] By: rgs                                   on 2005/03/25  21:02:04
44655         Log: Subject: [PATCH] Consting part 4
44656              From: Andy Lester <andy@petdance.com>
44657              Date: Fri, 25 Mar 2005 14:43:31 -0600
44658              Message-ID: <20050325204331.GA16388@petdance.com>
44659      Branch: perl
44660            ! embed.fnc mg.c numeric.c op.c perlio.c pod/perlapi.pod proto.h
44661            ! regcomp.c scope.c sv.c taint.c toke.c utf8.c util.c
44662 ____________________________________________________________________________
44663 [ 24078] By: nicholas                              on 2005/03/25  20:57:46
44664         Log: FreeBSD NDBM appears to generate files ending .db, so be prepared to
44665              clean this variant up as well.
44666      Branch: perl
44667            ! lib/Memoize/t/tie_ndbm.t
44668 ____________________________________________________________________________
44669 [ 24077] By: rgs                                   on 2005/03/25  18:03:00
44670         Log: Remove the const qualifier from argv and env variables
44671      Branch: perl
44672            ! embed.fnc intrpvar.h perl.c pod/perlapi.pod proto.h
44673 ____________________________________________________________________________
44674 [ 24076] By: rgs                                   on 2005/03/25  14:41:46
44675         Log: Subject: [PATCH] const fix-up for vms/vms.c
44676              From: "Craig A. Berry" <craigberry@mac.com>
44677              Date: Fri, 25 Mar 2005 09:00:06 -0600
44678              Message-ID: <42442776.8030603@mac.com>
44679      Branch: perl
44680            ! vms/vms.c vms/vmsish.h
44681 ____________________________________________________________________________
44682 [ 24075] By: rgs                                   on 2005/03/25  09:24:15
44683         Log: Subject: [PATCH] Re: Smoke [5.9.2] 24061 FAIL(m) linux 2.6.10-1.770_FC3 [fedora] (i686/1 cpu)
44684              From: Steve Peters <steve@fisharerojo.org>
44685              Date: Tue, 22 Mar 2005 17:15:23 -0600
44686              Message-ID: <20050322231523.GA3083@mccoy.peters.homeunix.org>
44687      Branch: perl
44688            ! hints/linux.sh
44689 ____________________________________________________________________________
44690 [ 24074] By: rgs                                   on 2005/03/24  16:25:58
44691         Log: Subject: [PATCH] Third consting batch
44692              From: Andy Lester <andy@petdance.com>
44693              Date: Tue, 22 Mar 2005 00:35:55 -0600
44694              Message-Id: <2f14220e7101a03f7659dbe79a03b115@petdance.com>
44695      Branch: perl
44696            ! XSUB.h deb.c doio.c dump.c embed.fnc gv.c gv.h hv.c mg.c mg.h
44697            ! minimod.pl numeric.c op.c pad.c patchlevel.h perl.c perl.h
44698            ! perlio.c perliol.h perlvars.h perly.c pod/perlapi.pod
44699            ! pod/perlintern.pod pp.c pp_hot.c pp_sys.c proto.h regcomp.c
44700            ! regcomp.h regexec.c scope.c sv.c taint.c universal.c utf8.c
44701            ! utf8.h utfebcdic.h util.c writemain.SH xsutils.c
44702 ____________________________________________________________________________
44703 [ 24073] By: mhx                                   on 2005/03/22  16:30:57
44704         Log: Mention (un)?pack byte-order modifiers in perldelta
44705      Branch: perl
44706            ! pod/perl592delta.pod
44707 ____________________________________________________________________________
44708 [ 24072] By: rgs                                   on 2005/03/22  16:15:58
44709         Log: Some updates in the new perldelta.
44710      Branch: perl
44711            ! pod/perl592delta.pod
44712 ____________________________________________________________________________
44713 [ 24071] By: rgs                                   on 2005/03/22  15:30:18
44714         Log: Remove IPC::Run for 5.9.2
44715      Branch: perl
44716            - lib/IPC/Run.pm lib/IPC/Run/Debug.pm lib/IPC/Run/IO.pm
44717            - lib/IPC/Run/Timer.pm lib/IPC/Run/Win32Helper.pm
44718            - lib/IPC/Run/Win32IO.pm lib/IPC/Run/Win32Pump.pm
44719            - lib/IPC/Run/t/adopt.t lib/IPC/Run/t/binmode.t
44720            - lib/IPC/Run/t/bogus.t lib/IPC/Run/t/filter.t
44721            - lib/IPC/Run/t/harness.t lib/IPC/Run/t/io.t
44722            - lib/IPC/Run/t/kill_kill.t lib/IPC/Run/t/parallel.t
44723            - lib/IPC/Run/t/pty.t lib/IPC/Run/t/pump.t lib/IPC/Run/t/run.t
44724            - lib/IPC/Run/t/signal.t lib/IPC/Run/t/timeout.t
44725            - lib/IPC/Run/t/timer.t lib/IPC/Run/t/win32_compile.t
44726            ! MANIFEST
44727 ____________________________________________________________________________
44728 [ 24070] By: rgs                                   on 2005/03/22  14:53:01
44729         Log: Forbid the -C option on the command-line
44730              as suggested by Merijn (see [perl #34087])
44731      Branch: perl
44732            ! pod/perldiag.pod toke.c
44733 ____________________________________________________________________________
44734 [ 24069] By: rgs                                   on 2005/03/22  14:03:12
44735         Log: Upgrade to PathTools 3.05
44736      Branch: perl
44737            ! ext/Cwd/Changes ext/Cwd/t/cwd.t lib/Cwd.pm lib/File/Spec.pm
44738 ____________________________________________________________________________
44739 [ 24068] By: rgs                                   on 2005/03/22  10:59:53
44740         Log: Upgrade to File::Temp 0.16
44741      Branch: perl
44742            ! lib/File/Temp.pm lib/File/Temp/t/object.t
44743            ! lib/File/Temp/t/tempfile.t
44744 ____________________________________________________________________________
44745 [ 24067] By: rgs                                   on 2005/03/22  10:53:39
44746         Log: Revert change #24055, which was producing a segfault in installman
44747              when it was trying to install perltoc.
44748      Branch: perl
44749            ! regexec.c t/op/re_tests
44750 ____________________________________________________________________________
44751 [ 24066] By: rgs                                   on 2005/03/22  09:43:44
44752         Log: Fix unresolved POD link
44753      Branch: perl
44754            ! pod/perlfunc.pod
44755 ____________________________________________________________________________
44756 [ 24065] By: rgs                                   on 2005/03/22  09:21:09
44757         Log: Rename ${^RE_TRIE_MAXBUFF} to ${^RE_TRIE_MAXBUF},
44758              and other neatification
44759      Branch: perl
44760            ! pod/perl592delta.pod pod/perlvar.pod regcomp.c regcomp.h
44761 ____________________________________________________________________________
44762 [ 24064] By: rgs                                   on 2005/03/22  08:57:18
44763         Log: Subject: [PATCH] simple optimization for SelectSaver
44764              From: Alexey Tourbin <at@altlinux.ru>
44765              Date: Fri, 18 Mar 2005 21:05:51 +0300
44766              Message-ID: <20050318180551.GA12596@solemn.turbinal.org>
44767      Branch: perl
44768            ! lib/SelectSaver.pm
44769 ____________________________________________________________________________
44770 [ 24063] By: rgs                                   on 2005/03/22  08:53:21
44771         Log: minitest fix
44772      Branch: perl
44773            ! t/run/fresh_perl.t
44774 ____________________________________________________________________________
44775 [ 24062] By: rgs                                   on 2005/03/22  07:50:28
44776         Log: Add in perldelta changes about unpack A and trailing whitespace, trie
44777              optimization, and debug flags for "use re".
44778      Branch: perl
44779            ! pod/perl592delta.pod
44780 ____________________________________________________________________________
44781 [ 24061] By: nicholas                              on 2005/03/21  22:52:12
44782         Log: Casts needed to make VMS happy. (It gets very upset at assignments
44783              between char * and unsigned char *)
44784      Branch: perl
44785            ! pp_pack.c
44786 ____________________________________________________________________________
44787 [ 24060] By: rgs                                   on 2005/03/21  21:44:37
44788         Log: Subject: Re: unpack A strip patch
44789              From: Ton Hospel <perl5-porters@ton.iguana.be>
44790              Date: Mon, 21 Mar 2005 21:31:37 +0000 (UTC)
44791              Message-Id: <d1nefp$lpe$1@post.home.lunix>
44792      Branch: perl
44793            ! pod/perlfunc.pod pp_pack.c t/op/pack.t
44794 ____________________________________________________________________________
44795 [ 24059] By: rgs                                   on 2005/03/21  21:33:16
44796         Log: Subject: Re: regexp trie fails compile on VMS
44797              From: demerphq <demerphq@gmail.com>
44798              Date: Mon, 21 Mar 2005 22:29:09 +0100
44799              Message-ID: <9b18b311050321132917a4b1c7@mail.gmail.com>
44800      Branch: perl
44801            ! regcomp.c regcomp.h regcomp.pl regcomp.sym regexec.c
44802 ____________________________________________________________________________
44803 [ 24058] By: rgs                                   on 2005/03/21  21:22:10
44804         Log: Break up long lines in -V output for compile-time options
44805              
44806              Subject: Re: sitecustomize.pl [PATCH]
44807              From: sthoenna[at]efn.org (Yitzchak Scott-Thoennes)
44808              Date: Tue, 8 Mar 2005 17:46:04 -0800
44809              Message-ID: <20050309014604.GA5876[at]efn.org>
44810      Branch: perl
44811            ! perl.c
44812 ____________________________________________________________________________
44813 [ 24057] By: steveh                                on 2005/03/21  17:08:26
44814         Log: Oops - forgot to update MANIFEST for change 24056.
44815      Branch: perl
44816            ! MANIFEST
44817 ____________________________________________________________________________
44818 [ 24056] By: steveh                                on 2005/03/21  17:06:45
44819         Log: Subject: Re: Stop mktables from needlessly re-running when using dmake on Win32
44820              From: demerphq <demerphq@gmail.com>
44821              Date: Tue, 8 Mar 2005 02:24:10 +0100
44822              Message-ID: <9b18b311050307172455a5816e@mail.gmail.com>
44823              
44824              Change 24004 stopped mktables from needlessly re-running when using
44825              dmake on Win32, but it can still happen when using nmake because it
44826              doesn't support the .UPDATEALL attribute that was used to fix dmake.
44827              e.g. Build perl, touch a core header file, then rebuild -- mktables
44828              re-runs when it didn't need to, and 7 times over at that!  This change
44829              alleviates the pain by making mktables exit quickly in such cases.
44830      Branch: perl
44831            + lib/unicore/mktables.lst
44832            ! lib/unicore/mktables
44833 ____________________________________________________________________________
44834 [ 24055] By: rgs                                   on 2005/03/21  14:58:21
44835         Log: Resubmit change #24053.
44836      Branch: perl
44837            ! regexec.c t/op/re_tests
44838 ____________________________________________________________________________
44839 [ 24054] By: rgs                                   on 2005/03/21  14:32:58
44840         Log: Subject: [PATCH] Re: [perl #34493] h2ph `extern inline' problems
44841              From: Alexey Tourbin <at@altlinux.ru>
44842              Date: Sat, 19 Mar 2005 16:37:12 +0300
44843              Message-ID: <20050319133712.GB6484@solemn.turbinal.org>
44844              
44845              and
44846              
44847              Message-ID: <20050319141457.GC6484@solemn.turbinal.org>
44848      Branch: perl
44849            ! t/lib/h2ph.h utils/h2ph.PL
44850 ____________________________________________________________________________
44851 [ 24053] By: rgs                                   on 2005/03/21  13:15:34
44852         Log: Subject: Re: [perl #34195] Regex: Alternations within negative lookahead assertions 
44853              From: hv@crypt.org
44854              Date: Mon, 21 Feb 2005 17:59:49 +0000
44855              Message-Id: <200502211759.j1LHxnC22894@zen.crypt.org>
44856      Branch: perl
44857            ! regexec.c t/op/re_tests
44858 ____________________________________________________________________________
44859 [ 24052] By: rgs                                   on 2005/03/21  10:27:44
44860         Log: Subject: pack / for general types
44861              From: perl5-porters@ton.iguana.be (Ton Hospel)
44862              Date: Sat, 19 Mar 2005 22:00:45 +0000 (UTC)
44863              Message-Id: <d1i7ed$62c$1@post.home.lunix>
44864              
44865              Allow "len/format" to work for any format type, not just strings.
44866      Branch: perl
44867            ! pod/perldiag.pod pod/perlfunc.pod pp_pack.c t/op/pack.t
44868 ____________________________________________________________________________
44869 [ 24051] By: rgs                                   on 2005/03/21  10:12:01
44870         Log: perldelta suggestions on (un)?pack by Ton Hospel
44871      Branch: perl
44872            ! pod/perl592delta.pod
44873 ____________________________________________________________________________
44874 [ 24050] By: rgs                                   on 2005/03/21  09:59:13
44875         Log: Subject: Re: bugzilla.redhat bug #101767 (threads, threads::shared)
44876              From: Alexey Tourbin <at@altlinux.ru>
44877              Date: Sat, 19 Mar 2005 06:10:45 +0300
44878              Message-ID: <20050319031045.GN12596@solemn.turbinal.org>
44879      Branch: perl
44880            + ext/threads/hints/linux.pl ext/threads/shared/hints/linux.pl
44881            ! MANIFEST
44882 ____________________________________________________________________________
44883 [ 24049] By: rgs                                   on 2005/03/21  09:39:35
44884         Log: Subject: [PATCH] More consting goodness
44885              From: Andy Lester <andy@petdance.com>
44886              Date: Sat, 19 Mar 2005 01:28:30 -0600
44887              Message-ID: <20050319072830.GA7721@petdance.com>
44888      Branch: perl
44889            ! deb.c dump.c embed.fnc handy.h op.c opcode.h opcode.pl perl.c
44890            ! pod/perlapi.pod pp_ctl.c pp_sys.c proto.h regcomp.c regexec.c
44891            ! sv.c toke.c
44892 ____________________________________________________________________________
44893 [ 24048] By: rgs                                   on 2005/03/20  21:20:50
44894         Log: Upgrade to Math::BigInt 1.75, by Tels
44895      Branch: perl
44896            ! lib/Math/BigFloat.pm lib/Math/BigInt.pm
44897            ! lib/Math/BigInt/Calc.pm lib/Math/BigInt/t/bare_mbi.t
44898            ! lib/Math/BigInt/t/bigintpm.inc lib/Math/BigInt/t/bigintpm.t
44899            ! lib/Math/BigInt/t/fallback.t lib/Math/BigInt/t/mbi_rand.t
44900            ! lib/Math/BigInt/t/sub_mbi.t
44901 ____________________________________________________________________________
44902 [ 24047] By: merijn                                on 2005/03/20  10:50:11
44903         Log: Subject: [PATCH] perlrun typo (env PERLDB_OPTS)
44904              From: Alexey Tourbin <at@altlinux.ru>
44905              Date: Sat, 19 Mar 2005 03:40:13 +0300
44906              Message-ID: <20050319004013.GJ12596@solemn.turbinal.org>
44907      Branch: perl
44908            ! pod/perlrun.pod
44909 ____________________________________________________________________________
44910 [ 24046] By: rgs                                   on 2005/03/18  21:47:54
44911         Log: Remove an useless line, spotted by Andy Lester
44912      Branch: perl
44913            ! toke.c
44914 ____________________________________________________________________________
44915 [ 24045] By: rgs                                   on 2005/03/18  16:54:38
44916         Log: Remove trie optimisation from the todo list
44917      Branch: perl
44918            ! pod/perltodo.pod
44919 ____________________________________________________________________________
44920 [ 24044] By: rgs                                   on 2005/03/18  15:04:39
44921         Log: Subject: Re: Reworked Trie Patch
44922              From: demerphq <demerphq@gmail.com>
44923              Date: Mon, 14 Mar 2005 08:55:39 +0100
44924              Message-ID: <9b18b31105031323557019ae1@mail.gmail.com>
44925              
44926              Subject: Re: Reworked Trie Patch
44927              From: demerphq <demerphq@gmail.com>
44928              Date: Wed, 16 Mar 2005 19:48:18 +0100
44929              Message-ID: <9b18b31105031610481025a080@mail.gmail.com>
44930              
44931              Plus minor nits in the documentation of re.pm,
44932              a version bump, and addition of an OPTIMIZE alias
44933      Branch: perl
44934            + t/op/regexp_notrie.t t/op/regexp_trielist.t
44935            ! MANIFEST embed.fnc embed.h ext/re/re.pm pod/perlvar.pod
44936            ! proto.h regcomp.c regcomp.h regcomp.sym regexec.c regnodes.h
44937            ! sv.c t/op/pat.t t/op/re_tests t/op/readdir.t
44938 ____________________________________________________________________________
44939 [ 24043] By: rgs                                   on 2005/03/18  14:02:36
44940         Log: Subject: Re: sitecustomize.pl [PATCH]
44941              From: Gisle Aas <gisle@ActiveState.com>
44942              Date: 18 Mar 2005 04:06:40 -0800
44943              Message-ID: <lru0n9w433.fsf@caliper.activestate.com>
44944              
44945              Adds a new command-line switch, -f, and a new optional
44946              compile-time setting -DUSE_SITECUSTOMIZE
44947      Branch: perl
44948            ! INSTALL ext/Devel/DProf/t/DProf.t perl.c pod/perlrun.pod
44949 ____________________________________________________________________________
44950 [ 24042] By: rgs                                   on 2005/03/18  13:38:32
44951         Log: Subject: [PATCH] More const parms
44952              From: Andy Lester <andy@petdance.com>
44953              Date: Mon, 14 Mar 2005 13:59:54 -0600
44954              Message-ID: <20050314195954.GB7141@petdance.com>
44955      Branch: perl
44956            ! embed.fnc gv.c numeric.c op.c pad.c perlio.c pod/perlapi.pod
44957            ! pod/perlintern.pod pp_ctl.c pp_hot.c proto.h scope.c sv.c
44958            ! toke.c utf8.c
44959 ____________________________________________________________________________
44960 [ 24041] By: rgs                                   on 2005/03/18  10:27:17
44961         Log: Don't use vars in DynaLoader
44962              Remove left-over maintenance code
44963      Branch: perl
44964            ! ext/DynaLoader/DynaLoader_pm.PL
44965 ____________________________________________________________________________
44966 [ 24040] By: rgs                                   on 2005/03/18  07:57:06
44967         Log: Subject: [PATCH] $B::Disassembler::VERSION
44968              From: Alexey Tourbin <at@altlinux.ru>
44969              Date: Thu, 17 Mar 2005 19:02:38 +0300
44970              Message-ID: <20050317160238.GN5825@solemn.turbinal.org>
44971      Branch: perl
44972            ! ext/B/B/Disassembler.pm
44973 ____________________________________________________________________________
44974 [ 24039] By: rgs                                   on 2005/03/15  09:30:28
44975         Log: Upgrade to CGI 3.07.
44976              Add CGI's changelog
44977      Branch: perl
44978            + lib/CGI/Changes
44979            ! MANIFEST lib/CGI.pm lib/CGI/Cookie.pm
44980 ____________________________________________________________________________
44981 [ 24038] By: merijn                                on 2005/03/14  15:55:44
44982         Log: Subject: pp_pack.c, simplifying genpacksizetables
44983              From: perl5-porters@ton.iguana.be (Ton Hospel)
44984              Date: Sun, 13 Mar 2005 15:07:41 +0000 (UTC)
44985              Message-Id: <d11kvt$1k7$1@post.home.lunix>
44986      Branch: perl
44987            ! genpacksizetables.pl pp_pack.c
44988 ____________________________________________________________________________
44989 [ 24037] By: rgs                                   on 2005/03/14  14:35:33
44990         Log: Subject: [PATCH] Adding const qualifiers
44991              From: Andy Lester <andy@petdance.com>
44992              Date: Sun, 13 Mar 2005 14:20:05 -0600
44993              Message-ID: <20050313202005.GA23535@petdance.com>
44994      Branch: perl
44995            ! av.c embed.fnc gv.c hv.c mg.c op.c pod/perlapi.pod pp_ctl.c
44996            ! proto.h scope.c utf8.c
44997 ____________________________________________________________________________
44998 [ 24036] By: rgs                                   on 2005/03/14  09:19:01
44999         Log: Subject: Re: [perl #34155] perldoc -f hex should say how to convert back
45000              From: David Nicol <davidnicol@gmail.com>
45001              Date: Tue, 8 Mar 2005 18:23:11 -0600
45002              Message-ID: <934f64a20503081623713f6d27@mail.gmail.com>
45003      Branch: perl
45004            ! pod/perlfunc.pod
45005 ____________________________________________________________________________
45006 [ 24035] By: rgs                                   on 2005/03/13  21:14:36
45007         Log: Document pack changes in perldelta
45008      Branch: perl
45009            ! pod/perl592delta.pod
45010 ____________________________________________________________________________
45011 [ 24034] By: rgs                                   on 2005/03/13  16:41:05
45012         Log: Upgrade to Pod::Parser 1.30
45013      Branch: perl
45014            ! lib/Pod/Checker.pm lib/Pod/Find.pm lib/Pod/InputObjects.pm
45015            ! lib/Pod/ParseUtils.pm lib/Pod/Parser.pm lib/Pod/Select.pm
45016            ! lib/Pod/Usage.pm pod/pod2usage.PL pod/podselect.PL
45017            ! t/pod/poderrs.xr
45018 ____________________________________________________________________________
45019 [ 24033] By: rgs                                   on 2005/03/13  11:07:40
45020         Log: Doc patches to clarify the stringification rules of {} and =>
45021              by Jarkko (bug #34419)
45022      Branch: perl
45023            ! pod/perldata.pod pod/perlop.pod
45024 ____________________________________________________________________________
45025 [ 24032] By: rgs                                   on 2005/03/13  09:20:01
45026         Log: gcc warning patch by Andy Lester
45027      Branch: perl
45028            ! perl.h
45029 ____________________________________________________________________________
45030 [ 24031] By: rgs                                   on 2005/03/12  22:05:14
45031         Log: Subject: Re: Encoding neutral unpack
45032              From: perl5-porters@ton.iguana.be (Ton Hospel)
45033              Date: Sat, 12 Mar 2005 18:54:29 +0000 (UTC)
45034              Message-ID: <d0vdt5$81a$1@post.home.lunix>
45035              
45036              A new test.
45037      Branch: perl
45038            ! t/op/pack.t
45039 ____________________________________________________________________________
45040 [ 24030] By: rgs                                   on 2005/03/12  22:01:21
45041         Log: Indentation patch by Ton Hospel for pp_pack
45042      Branch: perl
45043            ! pp_pack.c
45044 ____________________________________________________________________________
45045 [ 24029] By: rgs                                   on 2005/03/12  20:49:00
45046         Log: Change my email, put real name of Pixel
45047      Branch: perl
45048            ! AUTHORS
45049 ____________________________________________________________________________
45050 [ 24028] By: rgs                                   on 2005/03/12  17:15:23
45051         Log: Upgrade to DB_File 1.811, by Paul Marquess
45052      Branch: perl
45053            ! ext/DB_File/Changes ext/DB_File/DB_File.pm
45054            ! ext/DB_File/DB_File.xs ext/DB_File/t/db-hash.t
45055            ! ext/DB_File/typemap
45056 ____________________________________________________________________________
45057 [ 24027] By: rgs                                   on 2005/03/11  17:47:41
45058         Log: Add standard core test headers to the Class::ISA new tests
45059      Branch: perl
45060            ! lib/Class/ISA/t/00_about_verbose.t
45061            ! lib/Class/ISA/t/01_old_junk.t
45062 ____________________________________________________________________________
45063 [ 24026] By: rgs                                   on 2005/03/11  17:37:01
45064         Log: Upgrade to Class::ISA 0.33
45065      Branch: perl
45066            + lib/Class/ISA/ChangeLog lib/Class/ISA/t/00_about_verbose.t
45067            + lib/Class/ISA/t/01_old_junk.t
45068            - lib/Class/ISA/test.pl
45069            ! MANIFEST lib/Class/ISA.pm
45070 ____________________________________________________________________________
45071 [ 24025] By: rgs                                   on 2005/03/11  16:55:59
45072         Log: Update Changes
45073      Branch: perl
45074            ! Changes
45075 ____________________________________________________________________________
45076 [ 24024] By: rgs                                   on 2005/03/11  11:12:31
45077         Log: FAQ sync
45078      Branch: perl
45079            ! pod/perlfaq.pod pod/perlfaq1.pod pod/perlfaq2.pod
45080            ! pod/perlfaq3.pod pod/perlfaq4.pod pod/perlfaq5.pod
45081            ! pod/perlfaq6.pod pod/perlfaq7.pod pod/perlfaq8.pod
45082            ! pod/perlfaq9.pod
45083 ____________________________________________________________________________
45084 [ 24023] By: rgs                                   on 2005/03/11  10:22:28
45085         Log: Subject: [PATCH] pad_push numero three-o
45086              From: Andy Lester <andy@petdance.com>
45087              Date: Thu, 10 Mar 2005 15:17:28 -0600
45088              Message-ID: <20050310211728.GC32386@petdance.com>
45089      Branch: perl
45090            ! embed.fnc embed.h pad.c pod/perlintern.pod pp_ctl.c pp_hot.c
45091            ! proto.h
45092 ____________________________________________________________________________
45093 [ 24022] By: rgs                                   on 2005/03/10  17:42:54
45094         Log: Make the return value of close() depend not only on the success of the
45095              close itself, but also on whether the output stream had a previous
45096              error. From Jim Meyering <jim@meyering.net>, via Debian.
45097      Branch: perl
45098            ! doio.c
45099 ____________________________________________________________________________
45100 [ 24021] By: rgs                                   on 2005/03/10  17:39:56
45101         Log: 8 is not an octal digit. (from Debian)
45102      Branch: perl
45103            ! pod/perlreref.pod
45104 ____________________________________________________________________________
45105 [ 24020] By: rgs                                   on 2005/03/10  17:38:51
45106         Log: Fix a2p manpage (from Debian)
45107      Branch: perl
45108            ! x2p/a2p.pod
45109 ____________________________________________________________________________
45110 [ 24019] By: rgs                                   on 2005/03/10  17:36:37
45111         Log: Remove a spurious undefined warning when using getopts.pl with -w.
45112              (from Debian)
45113      Branch: perl
45114            ! lib/getopts.pl
45115 ____________________________________________________________________________
45116 [ 24018] By: rgs                                   on 2005/03/10  17:34:39
45117         Log: Doc patch for Devel::DProf (from Debian)
45118      Branch: perl
45119            ! ext/Devel/DProf/DProf.pm
45120 ____________________________________________________________________________
45121 [ 24017] By: rgs                                   on 2005/03/10  17:22:25
45122         Log: Add support for Debian GNU/k*BSD
45123      Branch: perl
45124            ! hints/gnukfreebsd.sh hints/gnuknetbsd.sh
45125 ____________________________________________________________________________
45126 [ 24016] By: rgs                                   on 2005/03/10  17:21:05
45127         Log: Patch for Debian bug #258618, compilation under Debian/Hurd
45128      Branch: perl
45129            ! hints/gnu.sh
45130 ____________________________________________________________________________
45131 [ 24015] By: steveh                                on 2005/03/10  15:18:20
45132         Log: Subject: Minor AUTHORS patch
45133              From: "Mike Giroux" <rmgiroux@hotmail.com>
45134              Date: Thu, 10 Mar 2005 08:39:04 -0500
45135              Message-ID: <BAY104-F4B1925432A15287069D3BCE520@phx.gbl>
45136      Branch: perl
45137            ! AUTHORS
45138 ____________________________________________________________________________
45139 [ 24014] By: steveh                                on 2005/03/10  11:25:36
45140         Log: More Win32 dmake fixes
45141
45142              Use $B macro as per change 23991 in more places, and fix some syntax
45143              errors in the subst's (missing trailing ",")
45144
45145              Tested with GCC and MSVC. I don't have BCC available, so those parts
45146              are untested.
45147      Branch: perl
45148            ! win32/makefile.mk
45149 ____________________________________________________________________________
45150 [ 24013] By: rgs                                   on 2005/03/10  10:10:33
45151         Log: Upgrade to CGI.pm 3.06
45152      Branch: perl
45153            ! lib/CGI.pm lib/CGI/Carp.pm lib/CGI/Cookie.pm lib/CGI/Util.pm
45154            ! lib/CGI/t/form.t lib/CGI/t/html.t
45155 ____________________________________________________________________________
45156 [ 24012] By: rgs                                   on 2005/03/09  22:17:33
45157         Log: Further pack optimisations by Ton Hospel
45158      Branch: perl
45159            ! pp_pack.c
45160 ____________________________________________________________________________
45161 [ 24011] By: rgs                                   on 2005/03/09  18:02:13
45162         Log: Fix memory corruption when growing pack utf8 buffer
45163      Branch: perl
45164            ! pp_pack.c
45165 ____________________________________________________________________________
45166 [ 24010] By: rgs                                   on 2005/03/08  17:53:50
45167         Log: Subject: Encoding neutral unpack
45168              From: perl5-porters@ton.iguana.be (Ton Hospel)
45169              Date: Sun, 6 Mar 2005 18:29:38 +0000 (UTC)
45170              Message-Id: <d0fi6i$k06$1@post.home.lunix>
45171      Branch: perl
45172            ! embed.fnc embed.h genpacksizetables.pl lib/charnames.t perl.h
45173            ! pod/perldiag.pod pod/perlfunc.pod pod/perlunicode.pod
45174            ! pod/perluniintro.pod pp_pack.c proto.h t/op/pack.t
45175            ! t/op/utftaint.t
45176 ____________________________________________________________________________
45177 [ 24009] By: merijn                                on 2005/03/08  15:25:57
45178         Log: Subject: Minor AUTHORS patch
45179              From: Andy Lester <andy@petdance.com>
45180              Date: Tue, 8 Mar 2005 09:44:45 -0600
45181              Message-ID: <20050308154445.GB3213@petdance.com>
45182      Branch: perl
45183            ! AUTHORS
45184 ____________________________________________________________________________
45185 [ 24008] By: merijn                                on 2005/03/08  14:45:17
45186         Log: Some updates to current status
45187      Branch: perl
45188            ! README.hpux
45189 ____________________________________________________________________________
45190 [ 24007] By: steveh                                on 2005/03/07  11:02:12
45191         Log: Include regcomp.h in Win32 makefiles
45192
45193              Subject: Re: Stop mktables from needlessly re-running when using dmake on Win32
45194              From: demerphq <demerphq@gmail.com>
45195              Date: Sun, 6 Mar 2005 09:16:12 +0100
45196              Message-ID: <9b18b311050306001624012bd@mail.gmail.com>
45197      Branch: perl
45198            ! win32/Makefile win32/makefile.mk
45199 ____________________________________________________________________________
45200 [ 24006] By: steveh                                on 2005/03/04  17:19:46
45201         Log: A better fix than change 24005 was ;)
45202
45203              Actually, "@echo." still emits a blank line.  Use "@rem" instead as the
45204              no-op.  This was being used in the Win95 case, but works fine on WinNT
45205              too, and is actually what ExtUtils-MakeMaker uses.
45206
45207              Also change the nmake Makefile.
45208      Branch: perl
45209            ! win32/Makefile win32/makefile.mk
45210 ____________________________________________________________________________
45211 [ 24005] By: steveh                                on 2005/03/04  17:11:56
45212         Log: Suppress "ECHO is on." messages when using dmake on Win32
45213
45214              (The shell's "echo" command displays the current echo setting when
45215              called with no arguments.  Use "echo." to display nothing.)
45216      Branch: perl
45217            ! win32/makefile.mk
45218 ____________________________________________________________________________
45219 [ 24004] By: steveh                                on 2005/03/04  17:01:24
45220         Log: Stop mktables from needlessly re-running when using dmake on Win32
45221      Branch: perl
45222            ! win32/makefile.mk
45223 ____________________________________________________________________________
45224 [ 24003] By: rgs                                   on 2005/03/04  16:02:20
45225         Log: Update -v copyright notice
45226      Branch: perl
45227            ! perl.c
45228 ____________________________________________________________________________
45229 [ 24002] By: rgs                                   on 2005/03/03  18:27:34
45230         Log: Add a regression test for bug #32193, and make the
45231              fix a bit more robust
45232      Branch: perl
45233            ! lib/Tie/RefHash.pm lib/Tie/RefHash.t
45234 ____________________________________________________________________________
45235 [ 24001] By: rgs                                   on 2005/03/03  18:03:15
45236         Log: Subject: [perl #32193] Tie::RefHash DELETE does not return value for ref keys
45237              From: Yuval Kojman (via RT) <perlbug-followup@perl.org>
45238              Date: 28 Oct 2004 12:16:37 -0000
45239              Message-ID: <rt-3.0.11-32193-98805.8.56634266171625@perl.org>
45240      Branch: perl
45241            ! lib/Tie/RefHash.pm
45242 ____________________________________________________________________________
45243 [ 24000] By: rgs                                   on 2005/03/03  15:43:43
45244         Log: do "filename" is not really used with perl subroutine librairies
45245              anymore.
45246      Branch: perl
45247            ! pod/perlfunc.pod
45248 ____________________________________________________________________________
45249 [ 23999] By: merijn                                on 2005/02/27  11:28:27
45250         Log: Fix for bug [ID 20020227.005] format bug with undefined _TOP
45251              http://rt.perl.org/rt3/Ticket/Display.html?id=8698
45252              If there was no TOP format the lines left on page was set
45253              to fixed number, now set to the current page length of the
45254              IO channel used. More debugging for yet another bug needed.
45255      Branch: perl
45256            ! pp_sys.c
45257 ____________________________________________________________________________
45258 [ 23998] By: davem                                 on 2005/02/26  11:32:59
45259         Log: ithreads: cond_signal() on a non-shared object coredumped
45260      Branch: perl
45261            ! ext/threads/shared/shared.xs
45262 ____________________________________________________________________________
45263 [ 23997] By: nicholas                              on 2005/02/26  09:33:30
45264         Log: SvUTF8 can be present on scalars other than PVs
45265              (specifically references with overloaded stringification)
45266      Branch: perl
45267            ! dump.c
45268 ____________________________________________________________________________
45269 [ 23996] By: davem                                 on 2005/02/26  00:47:03
45270         Log: Fix leaks in List::Util::reduce,first
45271              When the block is a closure, the cloned CV created on each call
45272              was never freed
45273      Branch: perl
45274            ! ext/List/Util/Util.xs ext/List/Util/lib/Scalar/Util.pm
45275 ____________________________________________________________________________
45276 [ 23995] By: steveh                                on 2005/02/24  15:52:01
45277         Log: Subject: Re: (patch blead) Extend t/harness to allow filtering of the file list by regex.
45278              From: demerphq <demerphq@gmail.com>
45279              Date: Wed, 23 Feb 2005 17:49:50 +0100
45280              Message-ID: <9b18b311050223084917d7ef59@mail.gmail.com>
45281      Branch: perl
45282            ! pod/perlhack.pod
45283 ____________________________________________________________________________
45284 [ 23994] By: merijn                                on 2005/02/24  10:12:26
45285         Log: Subject: [PATCH] dprofpp help
45286              From: Andy Lester <andy@petdance.com>
45287              Date: Thu, 24 Feb 2005 00:10:42 -0600
45288              Message-ID: <20050224061042.GA20259@petdance.com>
45289      Branch: perl
45290            ! utils/dprofpp.PL
45291 ____________________________________________________________________________
45292 [ 23993] By: steveh                                on 2005/02/23  13:36:59
45293         Log: Subject: (patch blead) Extend t/harness to allow filtering of the file list by regex.
45294              From: demerphq <demerphq@gmail.com>
45295              Date: Sat, 19 Feb 2005 11:10:00 +0100
45296              Message-ID: <9b18b3110502190210105decf4@mail.gmail.com>
45297      Branch: perl
45298            ! t/harness
45299 ____________________________________________________________________________
45300 [ 23992] By: steveh                                on 2005/02/23  12:28:55
45301         Log: Subject: Patch Win32 makefiles for blead to allow parameters to be passed to harness:
45302              From: demerphq <demerphq@gmail.com>
45303              Date: Sat, 19 Feb 2005 11:00:08 +0100
45304              Message-ID: <9b18b31105021902003d9c2a95@mail.gmail.com>
45305      Branch: perl
45306            ! win32/Makefile win32/makefile.mk
45307 ____________________________________________________________________________
45308 [ 23991] By: steveh                                on 2005/02/23  09:17:55
45309         Log: Fix Win32's dmake makefile.mk for new dmakes built with Visual C++
45310      Branch: perl
45311            ! win32/makefile.mk
45312 ____________________________________________________________________________
45313 [ 23990] By: rgs                                   on 2005/02/22  18:13:01
45314         Log: Porting/manicheck is not happy when I use spaces instead of tabs.
45315      Branch: perl
45316            ! MANIFEST
45317 ____________________________________________________________________________
45318 [ 23989] By: rgs                                   on 2005/02/21  16:05:22
45319         Log: Subject: IPC::Run test failures with utf8
45320              From: Nicholas Clark <nick@ccl4.org>
45321              Date: Sat, 19 Feb 2005 00:27:57 +0000
45322              Message-ID: <20050219002757.GO13998@plum.flirble.org>
45323      Branch: perl
45324            ! lib/IPC/Run/t/run.t
45325 ____________________________________________________________________________
45326 [ 23988] By: rgs                                   on 2005/02/21  13:51:44
45327         Log: Subject: [PATCH] signed/unsigned help for pp_pack.c
45328              From: "Craig A. Berry" <craigberry@mac.com>
45329              Date: Fri, 18 Feb 2005 09:42:52 -0600
45330              Message-ID: <42160CFC.3080304@mac.com>
45331      Branch: perl
45332            ! pp_pack.c
45333 ____________________________________________________________________________
45334 [ 23987] By: rgs                                   on 2005/02/21  12:56:22
45335         Log: Subject: (blead patch) Skip a torture test under blead, and skip certain torture tests under Win32.
45336              From: demerphq <demerphq@gmail.com>
45337              Date: Sat, 19 Feb 2005 11:04:00 +0100
45338              Message-ID: <9b18b3110502190204641e103c@mail.gmail.com
45339      Branch: perl
45340            ! t/japh/abigail.t
45341 ____________________________________________________________________________
45342 [ 23986] By: rgs                                   on 2005/02/18  18:21:25
45343         Log: Subject: Patch for Perlbug #4253
45344              From: Nikolai Eipel <eipel@web.de>
45345              Date: Sat, 29 Jan 2005 16:52:53 +0100
45346              Message-Id: <200501291652.53841.eipel@web.de>
45347
45348              (-T and -B invalidate _ filehandle when no read permission on file)
45349              plus a regression test
45350      Branch: perl
45351            ! pp_sys.c t/op/stat.t
45352 ____________________________________________________________________________
45353 [ 23985] By: rgs                                   on 2005/02/18  16:18:34
45354         Log: Install and build corelist on VMS, too
45355      Branch: perl
45356            ! vms/descrip_mms.template
45357 ____________________________________________________________________________
45358 [ 23984] By: rgs                                   on 2005/02/18  16:07:54
45359         Log: Add corelist to the win32 makefiles
45360              (noticed by demerphq)
45361      Branch: perl
45362            ! win32/Makefile win32/makefile.mk
45363 ____________________________________________________________________________
45364 [ 23983] By: rgs                                   on 2005/02/18  15:48:51
45365         Log: Subject: [perl #32968] [PATCH] Re: B::walkoptree segfaults
45366              From: Stephen McCamant <smcc@MIT.EDU>
45367              Date: Tue, 28 Dec 2004 10:13:50 -0800
45368              Message-ID: <16849.41566.887352.677148@apocalypse.OCF.Berkeley.EDU>
45369      Branch: perl
45370            ! ext/B/B.xs op.h
45371 ____________________________________________________________________________
45372 [ 23982] By: rgs                                   on 2005/02/18  15:34:59
45373         Log: Subject: Re: Integration of PathTools 3.04
45374              From: demerphq <demerphq@gmail.com>
45375              Date: Fri, 18 Feb 2005 16:31:50 +0100
45376              Message-ID: <9b18b31105021807316af0aed5@mail.gmail.com>
45377      Branch: perl
45378            ! lib/Cwd.pm
45379 ____________________________________________________________________________
45380 [ 23981] By: rgs                                   on 2005/02/18  15:00:12
45381         Log: Subject: Re: Bug in Socket::IO::INET Version 1.27
45382              From: Gisle Aas <gisle@ActiveState.com>
45383              Date: 03 Feb 2005 03:16:46 -0800
45384              Message-ID: <lr7jlpsxk1.fsf@caliper.activestate.com>
45385      Branch: perl
45386            ! ext/IO/lib/IO/Socket/INET.pm
45387 ____________________________________________________________________________
45388 [ 23980] By: rgs                                   on 2005/02/18  14:27:38
45389         Log: Integrate encoding::warnings from Autrijus Tang.
45390      Branch: perl
45391            + lib/encoding/warnings.pm lib/encoding/warnings/t/1-warning.t
45392            + lib/encoding/warnings/t/2-fatal.t
45393            + lib/encoding/warnings/t/3-normal.t
45394            ! MANIFEST
45395 ____________________________________________________________________________
45396 [ 23979] By: rgs                                   on 2005/02/18  09:53:36
45397         Log: Subject: [PATCH] find2perl, new options
45398              From: slaven@rezic.de
45399              Date: Thu, 17 Feb 2005 22:30:13 +0100
45400              Message-Id: <1108675813.24421@devpc01.iconmobile.de>
45401      Branch: perl
45402            ! x2p/find2perl.PL
45403 ____________________________________________________________________________
45404 [ 23978] By: rgs                                   on 2005/02/18  08:54:33
45405         Log: Missing dependencies in x2p makefile, by Slaven Rezic.
45406      Branch: perl
45407            ! x2p/Makefile.SH
45408 ____________________________________________________________________________
45409 [ 23977] By: rgs                                   on 2005/02/17  18:14:19
45410         Log: Upgrade to PathTools 3.04
45411              (plus tweaks to Cwd and cwd.t to run when building perl)
45412      Branch: perl
45413            + ext/Cwd/ppport.h
45414            ! MANIFEST ext/Cwd/Changes ext/Cwd/Cwd.xs ext/Cwd/t/cwd.t
45415            ! ext/Cwd/t/taint.t ext/Cwd/t/win32.t lib/Cwd.pm
45416            ! lib/File/Spec.pm lib/File/Spec/Cygwin.pm lib/File/Spec/Epoc.pm
45417            ! lib/File/Spec/Functions.pm lib/File/Spec/Mac.pm
45418            ! lib/File/Spec/OS2.pm lib/File/Spec/Unix.pm
45419            ! lib/File/Spec/VMS.pm lib/File/Spec/Win32.pm
45420            ! lib/File/Spec/t/Spec.t lib/File/Spec/t/crossplatform.t
45421            ! lib/File/Spec/t/rel2abs2rel.t
45422 ____________________________________________________________________________
45423 [ 23976] By: rgs                                   on 2005/02/17  17:42:59
45424         Log: Upgrade to Pod::LaTeX 0.58
45425      Branch: perl
45426            ! lib/Pod/LaTeX.pm lib/Pod/t/pod2latex.t
45427 ____________________________________________________________________________
45428 [ 23975] By: rgs                                   on 2005/02/17  15:21:55
45429         Log: Upgrade to Time::HiRes 1.66
45430      Branch: perl
45431            ! ext/Time/HiRes/Changes ext/Time/HiRes/HiRes.pm
45432            ! ext/Time/HiRes/HiRes.xs ext/Time/HiRes/t/HiRes.t
45433 ____________________________________________________________________________
45434 [ 23974] By: rgs                                   on 2005/02/17  14:57:06
45435         Log: Subject: [perl #31730] [PATCH] IO::File reads garbage from directory filehandles
45436              From: "Steve Peters via RT" <perlbug-followup@perl.org>
45437              Date: 1 Feb 2005 16:24:11 -0000
45438              Message-ID: <rt-3.0.11-31730-107010.1.24399823945417@perl.org>
45439      Branch: perl
45440            ! ext/IO/lib/IO/File.pm
45441 ____________________________________________________________________________
45442 [ 23973] By: rgs                                   on 2005/02/16  13:20:55
45443         Log: Subject: Re: [PATCH] Re: perl winpid?
45444              From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
45445              Date: Tue, 15 Feb 2005 20:45:13 -0800
45446              Message-ID: <20050216044512.GA2516@efn.org>
45447      Branch: perl
45448            ! ext/B/t/stash.t
45449 ____________________________________________________________________________
45450 [ 23972] By: steveh                                on 2005/02/15  14:47:47
45451         Log: Jan Dubois has taken over maintenance of Win32 stuff from Sarathy
45452      Branch: perl
45453            ! Porting/Maintainers.pl README.win32
45454 ____________________________________________________________________________
45455 [ 23971] By: rgs                                   on 2005/02/15  13:52:15
45456         Log: Fix documentation bug in using Socket's import tags :
45457
45458              Subject: [perl #34141] example in perlbug -f getsockopt incomplete
45459              From: David Dyck (via RT) <perlbug-followup@perl.org>
45460              Date: 15 Feb 2005 07:35:45 -0000
45461              Message-ID: <rt-3.0.11-34141-107730.6.0777451251105@perl.org>
45462      Branch: perl
45463            ! pod/perlfunc.pod
45464 ____________________________________________________________________________
45465 [ 23970] By: steveh                                on 2005/02/15  13:20:40
45466         Log: Fix PERL_MALLOC/DEBUG_MSTATS options in Win32 makefiles
45467
45468              Currently, if USE_IMP_SYS is defined then PERL_MALLOC gets undefined.
45469              We should also undefine DEBUG_MSTATS if PERL_MALLOC is (or has become)
45470              undefined, and we should do all this *before* inspecting DEBUG_MSTATS
45471              to see if we need to add -DPERL_DEBUGGING_MSTATS to BUILDOPT.
45472      Branch: perl
45473            ! win32/Makefile win32/makefile.mk
45474 ____________________________________________________________________________
45475 [ 23969] By: steveh                                on 2005/02/15  11:40:03
45476         Log: Fix definition of DEBUG_MSTATS for Win32 dmake builds
45477      Branch: perl
45478            ! win32/makefile.mk
45479 ____________________________________________________________________________
45480 [ 23968] By: rgs                                   on 2005/02/15  08:29:13
45481         Log: Use strl* functions in doio.c when available
45482              Based on :
45483              Subject: [PATCH] Changes to doio.c to use strlcpy() and strlcat()
45484              From: Steve Peters <steve@fisharerojo.org>
45485              Date: Wed, 1 Dec 2004 19:42:14 -0600
45486              Message-ID: <20041202014214.GA20907@mccoy.peters.homeunix.org>
45487      Branch: perl
45488            ! doio.c
45489 ____________________________________________________________________________
45490 [ 23967] By: mhx                                   on 2005/02/15  04:58:48
45491         Log: Subject: [PATCH] Additional tests for t/op/not.t
45492              From: Steve Peters <steve@fisharerojo.org>
45493              Date: Mon, 14 Feb 2005 19:54:17 -0600
45494              Message-ID: <20050215015417.GA30368@mccoy.peters.homeunix.org>
45495      Branch: perl
45496            ! t/op/not.t
45497 ____________________________________________________________________________
45498 [ 23966] By: rgs                                   on 2005/02/14  21:05:17
45499         Log: Subject: Re: encoding neutral unpack
45500              From: perl5-porters@ton.iguana.be (Ton Hospel)
45501              Date: Sat, 5 Feb 2005 01:34:44 +0000 (UTC)
45502              Message-ID: <cu17rk$k78$1@post.home.lunix>
45503
45504              tweaked to remove the 'not supported on this platform'
45505              error messages
45506      Branch: perl
45507            ! genpacksizetables.pl pp_pack.c t/op/pack.t t/uni/case.pl
45508 ____________________________________________________________________________
45509 [ 23965] By: mhx                                   on 2005/02/14  17:26:02
45510         Log: Regenerate Perl_keyword() to remove superfluous goto statements.
45511      Branch: perl
45512            ! toke.c
45513 ____________________________________________________________________________
45514 [ 23964] By: mhx                                   on 2005/02/14  17:21:29
45515         Log: Require version 0.05 of Devel::Tokenizer::C.
45516      Branch: perl
45517            ! perl_keyword.pl
45518 ____________________________________________________________________________
45519 [ 23963] By: rgs                                   on 2005/02/12  16:26:47
45520         Log: Mac OS Classic vs Mac OS X clarications
45521              by Sherm Pendley
45522      Branch: perl
45523            ! pod/perlfaq3.pod pod/perlmodinstall.pod pod/perlopentut.pod
45524            ! pod/perlrun.pod
45525 ____________________________________________________________________________
45526 [ 23962] By: rgs                                   on 2005/02/12  16:14:56
45527         Log: README.cygwin additions by Reini Urban
45528      Branch: perl
45529            ! README.cygwin
45530 ____________________________________________________________________________
45531 [ 23961] By: merijn                                on 2005/02/11  09:32:50
45532         Log: Subject: Re: [PATCH] Re: perl winpid?
45533              From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
45534              Date: Thu, 10 Feb 2005 20:04:35 -0800
45535              Message-ID: <20050211040434.GA3824@efn.org>
45536      Branch: perl
45537            + t/lib/cygwin.t
45538            ! MANIFEST README.cygwin cygwin/cygwin.c
45539 ____________________________________________________________________________
45540 [ 23960] By: mhx                                   on 2005/02/10  20:50:31
45541         Log: not() || 1 produces segmentation fault
45542
45543              Fixed by making not() behave like not(0). This is also the
45544              way not() behaved before it started segfaulting in 5.6.0.
45545      Branch: perl
45546            + t/op/not.t
45547            ! MANIFEST perly.act perly.h perly.tab perly.y
45548 ____________________________________________________________________________
45549 [ 23959] By: mhx                                   on 2005/02/10  20:36:13
45550         Log: regen_perly.pl runs fine with bison 2.0.
45551      Branch: perl
45552            ! regen_perly.pl
45553 ____________________________________________________________________________
45554 [ 23958] By: merijn                                on 2005/02/10  15:56:04
45555         Log: 'what' cannot find ccversion if `which cc` is a symlink to ccache
45556              ccversion is important enough to jump through some hoops to get it
45557      Branch: perl
45558            ! hints/hpux.sh
45559 ____________________________________________________________________________
45560 [ 23957] By: merijn                                on 2005/02/10  14:19:51
45561         Log: Swap logic in BEGIN blocks to have Cwd's abs_path do the
45562              translation *before* the chdir (), so it now DTRT
45563      Branch: perl
45564            ! lib/IPC/Run/t/adopt.t lib/IPC/Run/t/binmode.t
45565            ! lib/IPC/Run/t/bogus.t lib/IPC/Run/t/filter.t
45566            ! lib/IPC/Run/t/harness.t lib/IPC/Run/t/io.t
45567            ! lib/IPC/Run/t/kill_kill.t lib/IPC/Run/t/parallel.t
45568            ! lib/IPC/Run/t/pty.t lib/IPC/Run/t/pump.t lib/IPC/Run/t/run.t
45569            ! lib/IPC/Run/t/signal.t lib/IPC/Run/t/timeout.t
45570            ! lib/IPC/Run/t/timer.t lib/IPC/Run/t/win32_compile.t
45571 ____________________________________________________________________________
45572 [ 23956] By: rgs                                   on 2005/02/10  10:58:26
45573         Log: Upgrade to Time::Local 1.11
45574      Branch: perl
45575            ! lib/Time/Local.pm lib/Time/Local.t
45576 ____________________________________________________________________________
45577 [ 23955] By: rgs                                   on 2005/02/10  10:51:59
45578         Log: Subject: Re: [PATCH] BigInt mbi_rand.t failings (solved now)
45579              From: Tels <nospam-abuse@bloodgate.com>
45580              Date: Wed, 9 Feb 2005 21:44:22 +0100
45581              Message-Id: <200502092144.24051@bloodgate.com>
45582      Branch: perl
45583            ! lib/Math/BigInt/Calc.pm
45584 ____________________________________________________________________________
45585 [ 23954] By: rgs                                   on 2005/02/09  18:06:39
45586         Log: Add IPC::Run 0.80.
45587
45588              Subject: [PATCH] IPC::Run 0.80 integration (was Re: [RFC] More core integration)
45589              From: "Jos I. Boumans" <kane@xs4all.net>
45590              Date: Fri, 28 Jan 2005 18:32:44 +0100
45591              Message-Id: <9E6ECDBE-7152-11D9-B82E-000A956B0E06@xs4all.net>
45592
45593              with PERL_CORE test premables hacked for better $^X portability
45594              (we hope.)
45595      Branch: perl
45596            + lib/IPC/Run.pm lib/IPC/Run/Debug.pm lib/IPC/Run/IO.pm
45597            + lib/IPC/Run/Timer.pm lib/IPC/Run/Win32Helper.pm
45598            + lib/IPC/Run/Win32IO.pm lib/IPC/Run/Win32Pump.pm
45599            + lib/IPC/Run/t/adopt.t lib/IPC/Run/t/binmode.t
45600            + lib/IPC/Run/t/bogus.t lib/IPC/Run/t/filter.t
45601            + lib/IPC/Run/t/harness.t lib/IPC/Run/t/io.t
45602            + lib/IPC/Run/t/kill_kill.t lib/IPC/Run/t/parallel.t
45603            + lib/IPC/Run/t/pty.t lib/IPC/Run/t/pump.t lib/IPC/Run/t/run.t
45604            + lib/IPC/Run/t/signal.t lib/IPC/Run/t/timeout.t
45605            + lib/IPC/Run/t/timer.t lib/IPC/Run/t/win32_compile.t
45606            ! MANIFEST
45607 ____________________________________________________________________________
45608 [ 23953] By: rgs                                   on 2005/02/09  09:28:19
45609         Log: Patch for CAN-2004-0452 by Jeroen van Wolffelaar.
45610              The rmtree() function in the perl File::Path module would remove
45611              directories in an insecure manner which could lead to the removal
45612              of arbitrary files and directories via a symlink attack.
45613      Branch: perl
45614            ! lib/File/Path.pm
45615 ____________________________________________________________________________
45616 [ 23952] By: merijn                                on 2005/02/08  16:30:43
45617         Log: IBM Released vac.C version 7, and changed the naming convention (again)
45618              Thanks to Campo for spotting, testing and the fix
45619      Branch: perl
45620            ! hints/aix.sh
45621 ____________________________________________________________________________
45622 [ 23951] By: rgs                                   on 2005/02/08  14:02:56
45623         Log: Subject: [perl #34076] P/p pack formats only recognize literal undef
45624              From: perl-5.8.0@ton.iguana.be (via RT) <perlbug-followup@perl.org>
45625              Date: 6 Feb 2005 22:03:20 -0000
45626              Message-ID: <rt-3.0.11-34076-107344.19.3123360602169@perl.org>
45627      Branch: perl
45628            ! pp_pack.c
45629 ____________________________________________________________________________
45630 [ 23950] By: rgs                                   on 2005/02/08  11:09:03
45631         Log: Remove mention of sub-packages in the Symbol manpage.
45632      Branch: perl
45633            ! lib/Symbol.pm
45634 ____________________________________________________________________________
45635 [ 23949] By: rgs                                   on 2005/02/08  10:44:09
45636         Log: Add Module::CoreList in the maintainers list
45637      Branch: perl
45638            ! Porting/Maintainers.pl
45639 ____________________________________________________________________________
45640 [ 23948] By: rgs                                   on 2005/02/08  10:39:21
45641         Log: Fix typo in corelist
45642      Branch: perl
45643            ! lib/Module/CoreList/bin/corelist
45644 ____________________________________________________________________________
45645 [ 23947] By: rgs                                   on 2005/02/08  10:22:22
45646         Log: Add Module::CoreList to bleadperl.
45647
45648              Subject: [PATCH] Module::CoreList 1.98 integration (was: Re: [RFC] More core integration)
45649              From: "Jos I. Boumans" <kane@xs4all.net>
45650              Date: Fri, 28 Jan 2005 17:38:27 +0100
45651              Message-Id: <097CE3D0-714B-11D9-B82E-000A956B0E06@xs4all.net>
45652      Branch: perl
45653            + lib/Module/CoreList.pm lib/Module/CoreList/bin/corelist
45654            + lib/Module/CoreList/t/corelist.t utils/corelist.PL
45655            ! MANIFEST installperl utils.lst utils/Makefile
45656 ____________________________________________________________________________
45657 [ 23946] By: rgs                                   on 2005/02/08  09:31:45
45658         Log: Subject: [perl #34062] pack Z0 destroys the character before
45659              From: perl-5.8.0@ton.iguana.be (via RT) <perlbug-followup@perl.org>
45660              Date: 5 Feb 2005 18:09:00 -0000
45661              Message-ID: <rt-3.0.11-34062-107199.19.360569328007@perl.org>
45662              (plus a regression test)
45663      Branch: perl
45664            ! pp_pack.c t/op/pack.t
45665 ____________________________________________________________________________
45666 [ 23945] By: rgs                                   on 2005/02/08  09:25:29
45667         Log: A small precision in the docs for overloaded regexp escapes
45668              (see bug #33906)
45669      Branch: perl
45670            ! pod/perlre.pod
45671 ____________________________________________________________________________
45672 [ 23943] By: rgs                                   on 2005/02/06  22:18:48
45673         Log: Avoid evaluating a strlen twice due the new implementation
45674              of New() with PERL_MALLOC_WRAP
45675      Branch: perl
45676            ! util.c
45677 ____________________________________________________________________________
45678 [ 23942] By: nicholas                              on 2005/02/05  22:02:50
45679         Log: Stop lib/h2xs.t failing needlessly if it failed to clear up behind
45680              itself on a previous run.
45681      Branch: perl
45682            ! lib/h2xs.t
45683 ____________________________________________________________________________
45684 [ 23941] By: nicholas                              on 2005/02/05  21:47:35
45685         Log: With mallocwrap New() evaluates its arguments more than once, so they
45686              had better not have any side effects.
45687              :-(
45688      Branch: perl
45689            ! util.c
45690 ____________________________________________________________________________
45691 [ 23935] By: nicholas                              on 2005/02/05  15:05:08
45692         Log: Let's (un)do the timewarp, again.
45693              Attempt to bodge round Makefile sometimes being older than Makefile.PL
45694              Pesky filesystems.
45695      Branch: perl
45696            ! lib/ExtUtils/t/Constant.t
45697 ____________________________________________________________________________
45698 [ 23928] By: rgs                                   on 2005/02/04  10:41:43
45699         Log: Upgrade to Digest 1.10
45700      Branch: perl
45701            + lib/Digest/Changes lib/Digest/file.pm lib/Digest/t/file.t
45702            ! MANIFEST lib/Digest.pm lib/Digest/base.pm
45703 ____________________________________________________________________________
45704 [ 23927] By: mhx                                   on 2005/02/02  21:33:12
45705         Log: Remove 2 unused variables from APItest.xs.
45706      Branch: perl
45707            ! ext/XS/APItest/APItest.xs
45708 ____________________________________________________________________________
45709 [ 23926] By: mhx                                   on 2005/02/02  21:29:40
45710         Log: Upgrade to Devel::PPPort 3.06.
45711      Branch: perl
45712            ! ext/Devel/PPPort/Changes ext/Devel/PPPort/META.yml
45713            ! ext/Devel/PPPort/PPPort.pm ext/Devel/PPPort/PPPort.xs
45714            ! ext/Devel/PPPort/PPPort_pm.PL ext/Devel/PPPort/module3.c
45715            ! ext/Devel/PPPort/parts/inc/exception
45716            ! ext/Devel/PPPort/parts/inc/misc
45717 ____________________________________________________________________________
45718 [ 23925] By: mhx                                   on 2005/02/02  21:26:14
45719         Log: Attempt to fix problems with new exception handling macros.
45720      Branch: perl
45721            + ext/XS/APItest/exception.c
45722            ! MANIFEST XSUB.h ext/XS/APItest/APItest.xs
45723            ! ext/XS/APItest/MANIFEST ext/XS/APItest/Makefile.PL
45724            ! pod/perlguts.pod
45725 ____________________________________________________________________________
45726 [ 23924] By: rgs                                   on 2005/02/02  19:50:53
45727         Log: Subject: Re: encoding neutral unpack
45728              From: perl5-porters[at]ton.iguana.be (Ton Hospel)
45729              Date: Sat, 29 Jan 2005 12:54:34 +0000 (UTC)
45730              Message-ID: <ctg12a$j0e$2[at]post.home.lunix>
45731
45732              Counted length prefixes shouldn't change C0/U0 mode
45733              in pack/unpack (plus a regression test)
45734      Branch: perl
45735            ! pp_pack.c t/op/pack.t
45736 ____________________________________________________________________________
45737 [ 23923] By: rgs                                   on 2005/02/02  19:35:47
45738         Log: Subject: Re: encoding neutral unpack
45739              From: perl5-porters[at]ton.iguana.be (Ton Hospel)
45740              Date: Sat, 29 Jan 2005 13:07:38 +0000 (UTC)
45741              Message-ID: <ctg1qq$j0e$3[at]post.home.lunix>
45742
45743              Make U0 and C0 scoped to () pack subtemplates.
45744              (plus a regression test)
45745      Branch: perl
45746            ! pp_pack.c t/op/pack.t
45747 ____________________________________________________________________________
45748 [ 23922] By: rgs                                   on 2005/02/02  19:23:46
45749         Log: Subject: Re: encoding neutral unpack
45750              From: perl5-porters[at]ton.iguana.be (Ton Hospel)
45751              Date: Sat, 29 Jan 2005 13:24:55 +0000 (UTC)
45752              Message-ID: <ctg2r7$j0e$4[at]post.home.lunix>
45753
45754              Ensure that with the C format, unpack checksums
45755              don't get overflowed. (plus a regression test)
45756      Branch: perl
45757            ! pp_pack.c t/op/pack.t
45758 ____________________________________________________________________________
45759 [ 23921] By: davem                                 on 2005/02/02  18:25:00
45760         Log: fix POSIX::strtod error handling documentation
45761      Branch: perl
45762            ! ext/POSIX/POSIX.pod
45763 ____________________________________________________________________________
45764 [ 23920] By: merijn                                on 2005/02/02  13:12:17
45765         Log: Subject: [PATCH pod/perlfunc.pod] POD nit @ sysseek
45766              From: Abigail <abigail@abigail.nl>
45767              Date: Tue, 1 Feb 2005 21:33:14 +0100
45768              Message-ID: <20050201203314.GC335@abigail.nl>
45769      Branch: perl
45770            ! pod/perlfunc.pod
45771 ____________________________________________________________________________
45772 [ 23919] By: merijn                                on 2005/02/02  12:49:46
45773         Log: Picky compilers (e.g. vac on AIX 5.2) do not accept statements
45774              between declarations
45775      Branch: perl
45776            ! ext/Devel/PPPort/PPPort.xs
45777 ____________________________________________________________________________
45778 [ 23917] By: nicholas                              on 2005/02/01  11:46:31
45779         Log: "All" "all?" Who said all? There were 2 more missing gnuk{free,net}bsd
45780              hints files to add to MANIFEST. Sort MANIFEST
45781              while I'm in the area.
45782      Branch: perl
45783            ! MANIFEST
45784 ____________________________________________________________________________
45785 [ 23916] By: rgs                                   on 2005/02/01  10:02:51
45786         Log: Subject: Re: [perl #34010] localtime docs
45787              From: Andy Lester <andy@petdance.com>
45788              Date: Mon, 31 Jan 2005 21:24:29 -0600
45789              Message-ID: <20050201032429.GA29354@petdance.com>
45790      Branch: perl
45791            ! pod/perlfunc.pod
45792 ____________________________________________________________________________
45793 [ 23915] By: rgs                                   on 2005/01/31  23:08:59
45794         Log: Subject: Re: encoding neutral unpack
45795              From: perl5-porters[at]ton.iguana.be (Ton Hospel)
45796              Date: Sat, 29 Jan 2005 12:41:20 +0000 (UTC)
45797              Message-ID: <ctg09g$j0e$1[at]post.home.lunix>
45798
45799              Forgotten character progress while checksumming over partial
45800              b or B format. (plus a regression test)
45801      Branch: perl
45802            ! pp_pack.c t/op/pack.t
45803 ____________________________________________________________________________
45804 [ 23914] By: mhx                                   on 2005/01/31  19:22:41
45805         Log: Make Perl_keyword() another 30% faster.
45806      Branch: perl
45807            ! perl_keyword.pl toke.c
45808 ____________________________________________________________________________
45809 [ 23913] By: mhx                                   on 2005/01/31  18:14:44
45810         Log: Regenerate perlapi.pod.
45811      Branch: perl
45812            ! pod/perlapi.pod
45813 ____________________________________________________________________________
45814 [ 23912] By: mhx                                   on 2005/01/31  18:07:29
45815         Log: Upgrade to Devel::PPPort 3.05.
45816      Branch: perl
45817            + ext/Devel/PPPort/parts/base/5008006
45818            + ext/Devel/PPPort/parts/inc/exception
45819            + ext/Devel/PPPort/parts/todo/5008006
45820            + ext/Devel/PPPort/t/exception.t
45821            ! MANIFEST ext/Devel/PPPort/Changes ext/Devel/PPPort/HACKERS
45822            ! ext/Devel/PPPort/MANIFEST ext/Devel/PPPort/MANIFEST.SKIP
45823            ! ext/Devel/PPPort/META.yml ext/Devel/PPPort/Makefile.PL
45824            ! ext/Devel/PPPort/PPPort.pm ext/Devel/PPPort/PPPort.xs
45825            ! ext/Devel/PPPort/PPPort_pm.PL ext/Devel/PPPort/PPPort_xs.PL
45826            ! ext/Devel/PPPort/README ext/Devel/PPPort/TODO
45827            ! ext/Devel/PPPort/apicheck_c.PL
45828            ! ext/Devel/PPPort/devel/buildperl.pl
45829            ! ext/Devel/PPPort/devel/mkapidoc.sh
45830            ! ext/Devel/PPPort/devel/mktodo ext/Devel/PPPort/devel/mktodo.pl
45831            ! ext/Devel/PPPort/devel/scanprov ext/Devel/PPPort/mktests.PL
45832            ! ext/Devel/PPPort/module2.c ext/Devel/PPPort/module3.c
45833            ! ext/Devel/PPPort/parts/apicheck.pl
45834            ! ext/Devel/PPPort/parts/base/5004000
45835            ! ext/Devel/PPPort/parts/base/5004050
45836            ! ext/Devel/PPPort/parts/base/5005000
45837            ! ext/Devel/PPPort/parts/base/5006000
45838            ! ext/Devel/PPPort/parts/base/5008001
45839            ! ext/Devel/PPPort/parts/base/5009002
45840            ! ext/Devel/PPPort/parts/embed.fnc
45841            ! ext/Devel/PPPort/parts/inc/MY_CXT
45842            ! ext/Devel/PPPort/parts/inc/SvPV
45843            ! ext/Devel/PPPort/parts/inc/call ext/Devel/PPPort/parts/inc/cop
45844            ! ext/Devel/PPPort/parts/inc/format
45845            ! ext/Devel/PPPort/parts/inc/grok
45846            ! ext/Devel/PPPort/parts/inc/limits
45847            ! ext/Devel/PPPort/parts/inc/mPUSH
45848            ! ext/Devel/PPPort/parts/inc/magic
45849            ! ext/Devel/PPPort/parts/inc/misc
45850            ! ext/Devel/PPPort/parts/inc/newCONSTSUB
45851            ! ext/Devel/PPPort/parts/inc/newRV
45852            ! ext/Devel/PPPort/parts/inc/ppphbin
45853            ! ext/Devel/PPPort/parts/inc/ppphdoc
45854            ! ext/Devel/PPPort/parts/inc/ppphtest
45855            ! ext/Devel/PPPort/parts/inc/sv_xpvf
45856            ! ext/Devel/PPPort/parts/inc/threads
45857            ! ext/Devel/PPPort/parts/inc/uv
45858            ! ext/Devel/PPPort/parts/inc/version
45859            ! ext/Devel/PPPort/parts/ppptools.pl
45860            ! ext/Devel/PPPort/parts/todo/5009002
45861            ! ext/Devel/PPPort/ppport_h.PL ext/Devel/PPPort/soak
45862            ! ext/Devel/PPPort/t/SvPV.t ext/Devel/PPPort/t/misc.t
45863            ! ext/Devel/PPPort/typemap
45864 ____________________________________________________________________________
45865 [ 23911] By: mhx                                   on 2005/01/31  18:00:31
45866         Log: Add simple exception handling macros for XS writers.
45867      Branch: perl
45868            + ext/XS/APItest/t/exception.t
45869            ! MANIFEST XSUB.h ext/XS/APItest/APItest.pm
45870            ! ext/XS/APItest/APItest.xs pod/perlguts.pod
45871 ____________________________________________________________________________
45872 [ 23910] By: nicholas                              on 2005/01/31  17:46:03
45873         Log: Add all the missing gnuk{free,net}bsd hints files to MANIFEST
45874      Branch: perl
45875            ! MANIFEST
45876 ____________________________________________________________________________
45877 [ 23909] By: merijn                                on 2005/01/31  11:33:14
45878         Log: Subject: [perl #33998] [PATCH] Support for GNU/kFreeBSD
45879              From: "rmh@debian.org (via RT)" <perlbug-followup@perl.org>
45880              Date: 31 Jan 2005 07:37:55 -0000
45881              Message-ID: <rt-3.0.11-33998-106860.15.2609323921089@perl.org>
45882      Branch: perl
45883            + ext/DynaLoader/hints/gnukfreebsd.pl
45884            + ext/DynaLoader/hints/gnuknetbsd.pl
45885            + ext/NDBM_File/hints/gnukfreebsd.pl
45886            + ext/NDBM_File/hints/gnuknetbsd.pl
45887            + ext/ODBM_File/hints/gnukfreebsd.pl
45888            + ext/ODBM_File/hints/gnuknetbsd.pl
45889            + ext/POSIX/hints/gnukfreebsd.pl ext/POSIX/hints/gnuknetbsd.pl
45890            + ext/Storable/hints/gnukfreebsd.pl
45891            + ext/Storable/hints/gnuknetbsd.pl hints/gnukfreebsd.sh
45892            + hints/gnuknetbsd.sh
45893            ! Configure
45894 ____________________________________________________________________________
45895 [ 23907] By: rgs                                   on 2005/01/31  11:17:26
45896         Log: Document the changes to PERLIO_DEBUG.
45897      Branch: perl
45898            ! pod/perlrun.pod
45899 ____________________________________________________________________________
45900 [ 23906] By: rgs                                   on 2005/01/31  10:53:14
45901         Log: Really fix the bug [perl #33990].
45902              NB. -DIAMSUID is only set to compile sperl.o.
45903      Branch: perl
45904            ! perlio.c
45905 ____________________________________________________________________________
45906 [ 23905] By: steveh                                on 2005/01/31  10:03:56
45907         Log: Fix test suite hang on Win32 caused by change #23898
45908
45909              ("perl -e sleep 3" does an indefinite sleep!)
45910      Branch: perl
45911            ! t/op/alarm.t
45912 ____________________________________________________________________________
45913 [ 23904] By: rgs                                   on 2005/01/31  08:35:51
45914         Log: Avoid a buffer overflow with threads and PERLIO_DEBUG
45915      Branch: perl
45916            ! perlio.c
45917 ____________________________________________________________________________
45918 [ 23903] By: rgs                                   on 2005/01/31  08:19:10
45919         Log: Don't write to $PERLIO_DEBUG when setuid ([perl #33990])
45920      Branch: perl
45921            ! perlio.c
45922 ____________________________________________________________________________
45923 [ 23900] By: davem                                 on 2005/01/30  17:46:35
45924         Log: minor corrections to comments in perly.y
45925      Branch: perl
45926            ! perly.y
45927 ____________________________________________________________________________
45928 [ 23899] By: rgs                                   on 2005/01/30  14:50:15
45929         Log: Subject: h2hp: 2 fix
45930              From: Olivier Thauvin <olivier.thauvin@aerov.jussieu.fr>
45931              Date: Fri, 28 Jan 2005 16:53:11 +0100
45932              Message-Id: <200501281653.15708.olivier.thauvin@aerov.jussieu.fr>
45933      Branch: perl
45934            ! utils/h2ph.PL
45935 ____________________________________________________________________________
45936 [ 23898] By: davem                                 on 2005/01/29  16:14:20
45937         Log: chomp() fails after alarm(), `sleep`
45938
45939              PP_backtick's temp altering of PL_rs didn't restore after
45940              an exception
45941      Branch: perl
45942            ! pp_sys.c t/op/alarm.t
45943 ____________________________________________________________________________
45944 [ 23897] By: nicholas                              on 2005/01/28  21:01:04
45945         Log: More consistent names for all the parameter name/declaration methods
45946      Branch: perl
45947            ! lib/ExtUtils/Constant/Base.pm lib/ExtUtils/Constant/XS.pm
45948            ! perl_keyword.pl
45949 ____________________________________________________________________________
45950 [ 23894] By: nicholas                              on 2005/01/28  13:59:40
45951         Log: Calculate the number of tests in one place, so that the skip()s will
45952              always agree with the plan()s
45953      Branch: perl
45954            ! ext/B/t/optree_check.t ext/B/t/optree_concise.t
45955 ____________________________________________________________________________
45956 [ 23893] By: rgs                                   on 2005/01/28  08:53:47
45957         Log: Add a reference to books.perl.org.
45958      Branch: perl
45959            ! pod/perlbook.pod
45960 ____________________________________________________________________________
45961 [ 23892] By: nicholas                              on 2005/01/27  19:26:21
45962         Log: Retrieve the flag bit that only 'p' uses, so that it is spare for
45963              future use.
45964      Branch: perl
45965            ! genpacksizetables.pl pp_pack.c
45966 ____________________________________________________________________________
45967 [ 23891] By: rgs                                   on 2005/01/27  18:29:51
45968         Log: Subject: Re: [patch] decrufting OptreeCheck stuff
45969              From: Jim Cromie <jcromie@divsol.com>
45970              Date: Sun, 16 Jan 2005 17:16:00 -0700
45971              Message-ID: <41EB03C0.7030509@divsol.com>
45972              (with minor typos fixed)
45973      Branch: perl
45974            ! ext/B/B/Concise.pm ext/B/t/OptreeCheck.pm ext/B/t/f_map.t
45975            ! ext/B/t/f_sort.t ext/B/t/optree_check.t
45976            ! ext/B/t/optree_concise.t ext/B/t/optree_samples.t
45977            ! ext/B/t/optree_sort.t ext/B/t/optree_specials.t
45978            ! ext/B/t/optree_varinit.t
45979 ____________________________________________________________________________
45980 [ 23890] By: rgs                                   on 2005/01/27  17:49:50
45981         Log: Subject: [PATCH] libperl leaks a THREAD_KEY each time it is reloaded
45982              From: Gisle Aas <gisle@ActiveState.com>
45983              Date: 05 Jan 2005 03:21:06 -0800
45984              Message-ID: <lris6cxgt9.fsf@caliper.activestate.com>
45985      Branch: perl
45986            ! perl.c
45987 ____________________________________________________________________________
45988 [ 23889] By: nicholas                              on 2005/01/27  17:29:04
45989         Log: Make the byte order modifers < and > and the sign modifier ! (for
45990              n N v V) conditionally compile. This means that the refactored
45991              pp_pack/pp_unpack code can now be used in maint.
45992      Branch: perl
45993            ! genpacksizetables.pl pp_pack.c
45994 ____________________________________________________________________________
45995 [ 23888] By: nicholas                              on 2005/01/27  16:40:07
45996         Log: Oops. Was forgetting to test n! N! v! V! in pack
45997      Branch: perl
45998            ! t/op/pack.t
45999 ____________________________________________________________________________
46000 [ 23886] By: nicholas                              on 2005/01/27  14:42:28
46001         Log: Check that the warning behaviour on the modifiers !, < and > is as we
46002              expect it for this perl.
46003      Branch: perl
46004            ! t/op/pack.t
46005 ____________________________________________________________________________
46006 [ 23884] By: nicholas                              on 2005/01/27  11:27:12
46007         Log: Make the tests for the endianness modifiers < and >, and the
46008              signnedness modifier ! conditional on perl version. Surprisingly
46009              little change needed.
46010      Branch: perl
46011            ! t/op/pack.t
46012 ____________________________________________________________________________
46013 [ 23883] By: nicholas                              on 2005/01/27  11:12:34
46014         Log: &_q needs to *globally* escape ' and \ in its substitution.
46015      Branch: perl
46016            ! t/test.pl
46017 ____________________________________________________________________________
46018 [ 23882] By: rgs                                   on 2005/01/25  16:53:08
46019         Log: Subject: [PATCH] BigInt mbi_rand.t failings
46020              From: Tels <nospam-abuse@bloodgate.com>
46021              Date: Tue, 25 Jan 2005 18:06:58 +0100
46022              Message-Id: <200501251806.59782@bloodgate.com>
46023      Branch: perl
46024            ! lib/Math/BigInt/Calc.pm
46025 ____________________________________________________________________________
46026 [ 23881] By: rgs                                   on 2005/01/25  16:12:08
46027         Log: Integrate change #23880 in original comment
46028      Branch: perl
46029            ! util.c
46030 ____________________________________________________________________________
46031 [ 23880] By: merijn                                on 2005/01/25  15:41:30
46032         Log: Subject: [PATCH] perlapi.pod has pod errors
46033              From: "Jos I. Boumans" <kane@xs4all.net>
46034              Date: Tue, 25 Jan 2005 16:42:38 +0100
46035              Message-Id: <BDA482F7-6EE7-11D9-8AA7-000A95EF62E2@xs4all.net>
46036      Branch: perl
46037            ! pod/perlapi.pod
46038 ____________________________________________________________________________
46039 [ 23879] By: nicholas                              on 2005/01/24  23:16:04
46040         Log: Correct and update comments (before anyone writes in)
46041              Remove a temporary variable.
46042      Branch: perl
46043            ! lib/ExtUtils/Constant/Base.pm
46044 ____________________________________________________________________________
46045 [ 23878] By: nicholas                              on 2005/01/24  22:10:36
46046         Log: Ooops. It was 190M when I was using 4 bytes per entry for lengths in
46047              the dump file. The newer format is only 135M
46048      Branch: perl
46049            ! toke.c
46050 ____________________________________________________________________________
46051 [ 23877] By: nicholas                              on 2005/01/24  22:06:05
46052         Log: A script to regenerate Perl_keyword()
46053      Branch: perl
46054            + perl_keyword.pl
46055            ! MANIFEST
46056 ____________________________________________________________________________
46057 [ 23876] By: nicholas                              on 2005/01/24  22:05:29
46058         Log: Add weights to ExtUtils::Constant to allow sorting by expected
46059              frequency. This makes the Perl_keyword() replacement 20% faster,
46060              rather than just 12%
46061      Branch: perl
46062            ! lib/ExtUtils/Constant/Base.pm lib/ExtUtils/Constant/XS.pm
46063 ____________________________________________________________________________
46064 [ 23875] By: nicholas                              on 2005/01/24  21:43:52
46065         Log: Replace Perl_keyword() with a version that's 20% faster on typical
46066              input, generated by subclassing ExtUtils::Constant. (Typical input
46067              being about 135M of input from running a lot of perl scripts)
46068      Branch: perl
46069            ! toke.c
46070 ____________________________________________________________________________
46071 [ 23874] By: merijn                                on 2005/01/24  15:10:55
46072         Log: Subject: [PATCH] assorted tempfile clean-up in the test suite
46073              From: "Craig A. Berry" <craigberry@mac.com>
46074              Date: Sun, 23 Jan 2005 14:23:17 -0600
46075              Message-ID: <41F407B5.7020106@mac.com>
46076      Branch: perl
46077            ! lib/Test/Simple/t/reset.t t/io/fs.t t/io/tell.t
46078 ____________________________________________________________________________
46079 [ 23873] By: rgs                                   on 2005/01/24  13:14:21
46080         Log: Revert change 23843.
46081              (See discussion for bug [perl #31924])
46082      Branch: perl
46083            ! embed.fnc embed.h global.sym hv.c hv.h pod/perlapi.pod
46084            ! pp_ctl.c proto.h t/comp/require.t
46085 ____________________________________________________________________________
46086 [ 23872] By: rgs                                   on 2005/01/24  10:27:10
46087         Log: Subject: [perl #33906] Missing \\ in perlre
46088              From: Andrew (via RT) <perlbug-followup@perl.org>
46089              Date: 23 Jan 2005 20:52:51 -0000
46090              Message-ID: <rt-3.0.11-33906-106339.17.5527961922343@perl.org>
46091      Branch: perl
46092            ! pod/perlre.pod
46093 ____________________________________________________________________________
46094 [ 23871] By: rgs                                   on 2005/01/24  10:10:47
46095         Log: Subject: [PATCH] Test::Harness::Straps::_default_inc shell problem
46096              From: "Craig A. Berry" <craigberry@mac.com>
46097              Date: Sun, 23 Jan 2005 13:44:49 -0600
46098              Message-ID: <41F3FEB1.9020102@mac.com>
46099      Branch: perl
46100            ! lib/Test/Harness/Straps.pm
46101 ____________________________________________________________________________
46102 [ 23870] By: rgs                                   on 2005/01/24  09:40:35
46103         Log: Subject: Re: [perl #33892] Add Interix support
46104              From: Todd Vierling <tv@duh.org>
46105              Date: Fri, 21 Jan 2005 15:16:16 -0500 (EST)
46106              Message-ID: <Pine.NEB.4.61.0501211424350.13373@duh.net.dhis.org>
46107      Branch: perl
46108            ! hints/interix.sh
46109 ____________________________________________________________________________
46110 [ 23869] By: davem                                 on 2005/01/23  22:20:10
46111         Log: Subject:  Re: Smoke [5.9.2] 23863 FAIL(F) MSWin32 WinXP/.Net SP1 (x86/1 cpu)
46112              From:  Jarkko Hietaniemi <jhi@iki.fi>
46113              Date:  Sun, 23 Jan 2005 21:25:01 +0200
46114              Message-Id:  <41F3FA0D.4010301@iki.fi>
46115
46116              The uc() memory reduction patch had a memory leak...
46117      Branch: perl
46118            ! pp.c
46119 ____________________________________________________________________________
46120 [ 23868] By: nicholas                              on 2005/01/23  22:06:01
46121         Log: Tidy up 2 comments
46122      Branch: perl
46123            ! regcomp.c
46124 ____________________________________________________________________________
46125 [ 23867] By: nicholas                              on 2005/01/23  22:05:12
46126         Log: Assimilate ExtUtils::Constant 0.16
46127      Branch: perl
46128            + lib/ExtUtils/Constant/Base.pm lib/ExtUtils/Constant/Utils.pm
46129            + lib/ExtUtils/Constant/XS.pm
46130            ! MANIFEST lib/ExtUtils/Constant.pm
46131 ____________________________________________________________________________
46132 [ 23866] By: nicholas                              on 2005/01/23  21:43:17
46133         Log: Slightly terser code in S_regpposixcc (names inside [:*here*:])
46134      Branch: perl
46135            ! regcomp.c
46136 ____________________________________________________________________________
46137 [ 23864] By: nicholas                              on 2005/01/22  22:30:12
46138         Log: Subject: Re: Smoke [5.9.2] 23792 FAIL(F) osf1 V5.1 (21264A)/4 cpu)
46139              From: Jarkko Hietaniemi <jhi@iki.fi>
46140              Message-ID: <41F2C427.7020003@iki.fi>
46141              Date: Sat, 22 Jan 2005 23:22:47 +0200
46142      Branch: perl
46143            ! hints/dec_osf.sh
46144 ____________________________________________________________________________
46145 [ 23863] By: davem                                 on 2005/01/22  18:27:58
46146         Log: Subject:  Re: uc($long_utf8_string) exhausts memory
46147              From:  Jarkko Hietaniemi <jhi@iki.fi>
46148              Date:  Sat, 22 Jan 2005 11:33:12 +0200
46149              Message-Id:  <41F21DD8.3050500@iki.fi>
46150
46151              change #23857 miscalculated the SvGROW size
46152      Branch: perl
46153            ! pp.c
46154 ____________________________________________________________________________
46155 [ 23862] By: nicholas                              on 2005/01/22  17:51:13
46156         Log: Subject: Re: Smoke [5.9.2] 23792 FAIL(F) osf1 V5.1 (21264A)/4 cpu)
46157              From: Jarkko Hietaniemi <jhi@iki.fi>
46158              Message-ID: <41F2911E.8090204@iki.fi>
46159              Date: Sat, 22 Jan 2005 19:45:02 +0200
46160
46161              (drop optimisation on pp_pack.c for gcc on osf1 to -O1)
46162      Branch: perl
46163            ! hints/dec_osf.sh
46164 ____________________________________________________________________________
46165 [ 23861] By: nicholas                              on 2005/01/22  14:15:58
46166         Log: Update copyright years and add editor blocks
46167      Branch: perl
46168            ! doop.c hv.c utf8.c
46169 ____________________________________________________________________________
46170 [ 23860] By: nicholas                              on 2005/01/22  12:03:00
46171         Log: From: Jarkko Hietaniemi <jhi@iki.fi>
46172              Subject: Re: [PATCH] do not assume quads or long doubles
46173              Message-ID: <41F21B0A.2050301@iki.fi>
46174              Date: Sat, 22 Jan 2005 11:21:14 +0200
46175      Branch: perl
46176            ! pp_pack.c
46177 ____________________________________________________________________________
46178 [ 23858] By: nicholas                              on 2005/01/22  00:39:41
46179         Log: Remove now-unnecessary check. (It's done earlier)
46180      Branch: perl
46181            ! pp_pack.c
46182 ____________________________________________________________________________
46183 [ 23857] By: davem                                 on 2005/01/22  00:17:40
46184         Log: Subject:  Re: uc($long_utf8_string) exhausts memory
46185              From:  Jarkko Hietaniemi <jhi@iki.fi>
46186              Date:  Sat, 22 Jan 2005 00:20:12 +0200
46187              Message-Id:  <41F1801C.3080201@iki.fi>
46188
46189              Make buffer size estimates for utf8 case conversion less maximally
46190              pessimistic
46191      Branch: perl
46192            ! doop.c op.c pp.c pp_pack.c regcomp.c regexec.c sv.c t/op/lc.t
46193            ! toke.c utf8.c utf8.h
46194 ____________________________________________________________________________
46195 [ 23854] By: nicholas                              on 2005/01/21  22:15:43
46196         Log: Shrink a switch() statment by driving the size calculations from the
46197              size table. This requires #ifdef()s in the size table initialiser.
46198              Astoundingly this shaves over 6K of the object size with -Os on OS X.
46199              I was expecting about 1K (due to shrinking a branch table). Mind you,
46200              I'm not going to argue with what I got. :-)
46201      Branch: perl
46202            ! genpacksizetables.pl pp_pack.c
46203 ____________________________________________________________________________
46204 [ 23853] By: nicholas                              on 2005/01/21  16:46:49
46205         Log: Make the length overrun checking and stack extension table driven.
46206              (Shaves about 3k off pp_pack.o)
46207      Branch: perl
46208            + genpacksizetables.pl
46209            ! MANIFEST pp_pack.c
46210 ____________________________________________________________________________
46211 [ 23852] By: rgs                                   on 2005/01/21  16:29:53
46212         Log: Subject: [perl #32503] Fix for Storable module
46213              From: "Steven N. Hirsch" (via RT) <perlbug-followup@perl.org>
46214              Date: 19 Nov 2004 13:06:57 -0000
46215              Message-ID: <rt-3.0.11-32503-100597.6.46123979926323@perl.org>
46216      Branch: perl
46217            ! ext/Storable/Storable.xs
46218 ____________________________________________________________________________
46219 [ 23851] By: rgs                                   on 2005/01/21  15:51:54
46220         Log: Fix spurious warnings emitted by XSLoader via Data::Dumper
46221      Branch: perl
46222            ! ext/Data/Dumper/Dumper.pm
46223 ____________________________________________________________________________
46224 [ 23850] By: nicholas                              on 2005/01/21  15:43:24
46225         Log: Name another pack test
46226      Branch: perl
46227            ! t/op/pack.t
46228 ____________________________________________________________________________
46229 [ 23849] By: rgs                                   on 2005/01/21  15:26:10
46230         Log: Subject: [perl #33892] Add Interix support
46231              From: Todd Vierling (via RT) <perlbug-followup@perl.org>
46232              Date: 21 Jan 2005 14:36:31 -0000
46233              Message-ID: <rt-3.0.11-33892-106280.17.6407478352545@perl.org>
46234
46235              (except the Configure chunk)
46236              (and bump version numbers of modules)
46237      Branch: perl
46238            + hints/interix.sh
46239            ! MANIFEST Makefile.SH lib/ExtUtils/MM_Unix.pm lib/File/Find.pm
46240            ! lib/File/Temp.pm t/io/openpid.t t/op/groups.t
46241 ____________________________________________________________________________
46242 [ 23848] By: merijn                                on 2005/01/21  14:47:31
46243         Log: Subject: [perl #33892] Add Interix support
46244              From: Todd Vierling (via RT) <perlbug-followup@perl.org>
46245              Date: 21 Jan 2005 14:36:31 -0000
46246              Message-ID: <rt-3.0.11-33892-106280.17.6407478352545@perl.org>
46247      Branch: perl
46248            ! Configure
46249 ____________________________________________________________________________
46250 [ 23847] By: rgs                                   on 2005/01/21  14:46:38
46251         Log: Upgrade to Test::Harness 2.46
46252      Branch: perl
46253            + lib/Test/Harness/TAP.pod lib/Test/Harness/t/harness.t
46254            + lib/Test/Harness/t/prove-globbing.t
46255            ! MANIFEST lib/Test/Harness.pm lib/Test/Harness/Assert.pm
46256            ! lib/Test/Harness/Changes lib/Test/Harness/Iterator.pm
46257            ! lib/Test/Harness/Straps.pm lib/Test/Harness/t/prove-switches.t
46258            ! lib/Test/Harness/t/strap.t
46259 ____________________________________________________________________________
46260 [ 23845] By: rgs                                   on 2005/01/21  14:09:19
46261         Log: Subject: [perl #32967] [PATCH] Re: More B bugs: svref_2object
46262              From: Stephen McCamant <smcc@OCF.Berkeley.EDU>
46263              Date: Tue, 28 Dec 2004 16:01:49 -0800
46264              Message-ID: <16849.62445.116153.489478@apocalypse.OCF.Berkeley.EDU>
46265      Branch: perl
46266            ! ext/B/B.pm
46267 ____________________________________________________________________________
46268 [ 23844] By: rgs                                   on 2005/01/21  13:49:46
46269         Log: Subject: [Patch] [perl #32446]  close leaves fd open
46270              From: Steffen Ullrich <coyote.frank@gmx.net>
46271              Date: Wed, 01 Dec 2004 15:22:34 +0100
46272              Message-ID: <20041201142236.4273.qmail@lists.develooper.com>
46273      Branch: perl
46274            ! perlio.c
46275 ____________________________________________________________________________
46276 [ 23843] By: rgs                                   on 2005/01/21  13:35:49
46277         Log: Subject: [PATCH bleadperl] Re: [perl #31924] %INC caching failure-case problem
46278              From: Rick Delaney <rick@bort.ca>
46279              Date: Wed, 13 Oct 2004 12:40:18 -0400
46280              Message-ID: <20041013164018.GA32174@biff.bort.ca>
46281      Branch: perl
46282            ! embed.fnc embed.h global.sym hv.c hv.h pod/perlapi.pod
46283            ! pp_ctl.c proto.h t/comp/require.t
46284 ____________________________________________________________________________
46285 [ 23842] By: rgs                                   on 2005/01/21  10:57:48
46286         Log: Subject: Re: [PATCH] File::Find dies on find({follow=>1, ...}) on Win32
46287              From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
46288              Date: Mon, 20 Dec 2004 16:08:56 -0800
46289              Message-ID: <20041221000856.GA2924@efn.org>
46290      Branch: perl
46291            ! pp_sys.c t/op/stat.t
46292 ____________________________________________________________________________
46293 [ 23841] By: rgs                                   on 2005/01/21  10:26:17
46294         Log: Subject: [PATCH] doc SVt_PVLV <=> SVt_PVGV change version in B.pm
46295              From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
46296              Date: Sun, 19 Dec 2004 23:57:56 -0800
46297              Message-ID: <20041220075754.GA800@efn.org>
46298      Branch: perl
46299            ! ext/B/B.pm
46300 ____________________________________________________________________________
46301 [ 23840] By: rgs                                   on 2005/01/20  18:45:55
46302         Log: Subject: [patch] cleanup perlsfio.h
46303              From: Stas Bekman <stas@stason.org>
46304              Date: Thu, 13 Jan 2005 16:14:23 -0500
46305              Message-ID: <41E6E4AF.8070303@stason.org>
46306      Branch: perl
46307            ! perlsfio.h
46308 ____________________________________________________________________________
46309 [ 23839] By: rgs                                   on 2005/01/20  18:33:00
46310         Log: VERSION++
46311      Branch: perl
46312            ! lib/Text/ParseWords.pm
46313 ____________________________________________________________________________
46314 [ 23838] By: rgs                                   on 2005/01/20  18:21:36
46315         Log: Subject: Re: [perl #33173] shellwords.pl and tainting
46316              From: Alexey Tourbin <at@altlinux.ru>
46317              Date: Tue, 28 Dec 2004 22:29:37 +0300
46318              Message-ID: <20041228192937.GB7824@solemn.turbinal.org>
46319      Branch: perl
46320            + lib/Text/ParseWords/taint.t
46321            ! MANIFEST lib/Text/ParseWords.pm lib/shellwords.pl
46322 ____________________________________________________________________________
46323 [ 23836] By: nicholas                              on 2005/01/20  13:21:14
46324         Log: Run regen.pl and pod/buildtoc --build-all
46325      Branch: perl
46326            ! MANIFEST pod/perlapi.pod pod/perltoc.pod
46327 ____________________________________________________________________________
46328 [ 23835] By: nicholas                              on 2005/01/20  13:20:50
46329         Log: A little more determinacy in our sorting
46330      Branch: perl
46331            ! autodoc.pl
46332 ____________________________________________________________________________
46333 [ 23827] By: nicholas                              on 2005/01/19  21:22:30
46334         Log: Make "assertion" attribute code and test conditional
46335      Branch: perl
46336            ! t/op/attrs.t xsutils.c
46337 ____________________________________________________________________________
46338 [ 23824] By: merijn                                on 2005/01/19  18:32:41
46339         Log: Subject: [PATCH] Further follow-up to 23767
46340              From: Robin Barker <Robin.Barker@npl.co.uk>
46341              Date: Wed, 19 Jan 2005 18:30:31 -0000
46342              Message-ID: <533D273D4014D411AB1D00062938C4D90849C57D@hotel.npl.co.uk>
46343      Branch: perl
46344            ! XSUB.h gv.c perl.c perl.h pp_ctl.c sv.c utf8.c
46345 ____________________________________________________________________________
46346 [ 23822] By: rgs                                   on 2005/01/19  17:19:04
46347         Log: Subject: Re: [perl #32498] h2xs generates incorrect code for Makefile.PL for enums
46348              From: Noah <sitz@onastick.net>
46349              Date: Wed, 19 Jan 2005 12:33:52 -0500
46350              Message-ID: <20050119173352.GA15592@radu.onastick.net>
46351      Branch: perl
46352            ! utils/h2xs.PL
46353 ____________________________________________________________________________
46354 [ 23821] By: rgs                                   on 2005/01/19  11:30:38
46355         Log: Subject: [PATCH] op/stat.t test 9 failing on recent cygwin snapshots
46356              From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
46357              Date: Sun, 16 Jan 2005 10:30:45 -0800
46358              Message-ID: <20050116183045.GA2768@efn.org>
46359      Branch: perl
46360            ! t/op/stat.t
46361 ____________________________________________________________________________
46362 [ 23820] By: rgs                                   on 2005/01/19  11:20:10
46363         Log: Subject: [PATCH] Make Data::Dumper work when dynamic extensions are not available
46364              From: "Jos I. Boumans" <kane@xs4all.net>
46365              Date: Tue, 18 Jan 2005 15:12:03 +0100
46366              Message-Id: <ED6BA2C4-695A-11D9-B09C-000A95EF62E2@xs4all.net>
46367      Branch: perl
46368            ! ext/Data/Dumper/Dumper.pm
46369 ____________________________________________________________________________
46370 [ 23819] By: rgs                                   on 2005/01/19  11:15:14
46371         Log: Fix dependencies in ext/B/Makefile.PL
46372              (bug #8254, fix by Alan Burlison)
46373      Branch: perl
46374            ! ext/B/Makefile.PL
46375 ____________________________________________________________________________
46376 [ 23817] By: steveh                                on 2005/01/19  09:33:27
46377         Log: Exclude "Thread" from $Config{extensions}
46378
46379              It is already excluded from $Config{dynamic_ext}, so should not be
46380              in $Config{extensions} either. (Note that Thread is actually still
46381              built, though. This is just for consistency with Unix builds.)
46382      Branch: perl
46383            ! win32/config_sh.PL
46384 ____________________________________________________________________________
46385 [ 23816] By: steveh                                on 2005/01/19  08:55:06
46386         Log: Exclude "Thread" from $Config{dynamic_ext}
46387
46388              This was accidentally broken by change 23757.  It has already been
46389              fixed in maint-5.8 when resolving conflicts during integration of
46390              23757, so this one does NOT need integrating itself!
46391
46392              For more details see:
46393              http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2005-01/msg00477.html
46394      Branch: perl
46395            ! win32/config_sh.PL
46396 ____________________________________________________________________________
46397 [ 23807] By: steveh                                on 2005/01/17  17:55:02
46398         Log: Fix for building with MinGW under Cygwin
46399
46400              Subject: [PATCH] building win32 perl with cygwin's mingw (was: Re: [PATCH] Re: lib/Config/Extensions.t fails on Win32)
46401              From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
46402              Date: Thu, 13 Jan 2005 16:11:36 -0800
46403              Message-ID: <20050114001136.GC2516@efn.org>
46404      Branch: perl
46405            ! ext/Errno/Errno_pm.PL
46406 ____________________________________________________________________________
46407 [ 23806] By: steveh                                on 2005/01/17  16:57:10
46408         Log: Get $Config{ccversion} or $Config{gccversion} filled in on Win32
46409      Branch: perl
46410            ! win32/config_sh.PL
46411 ____________________________________________________________________________
46412 [ 23805] By: nicholas                              on 2005/01/14  19:56:42
46413         Log: Better test diagnostics for the numbers tests.
46414              (Failure diagnostics were always good, but now the tests have names,
46415              which show even when they pass)
46416      Branch: perl
46417            ! t/op/pack.t
46418 ____________________________________________________________________________
46419 [ 23803] By: nicholas                              on 2005/01/14  12:06:31
46420         Log: Correct the editor block to match the perl 5 policy on tabs
46421      Branch: perl
46422            ! pp.c pp_ctl.c pp_hot.c pp_pack.c pp_sort.c pp_sys.c scope.c
46423            ! sv.c universal.c
46424 ____________________________________________________________________________
46425 [ 23802] By: nicholas                              on 2005/01/14  10:58:47
46426         Log: Refactor S_regclass to generate slightly smaller object code
46427      Branch: perl
46428            ! regcomp.c
46429 ____________________________________________________________________________
46430 [ 23801] By: nicholas                              on 2005/01/14  10:32:08
46431         Log: A terser way to write the \-ing code in pv_uni_display
46432              Plus drive-by insert of a more correct editor block. (thanks Dave)
46433      Branch: perl
46434            ! utf8.c
46435 ____________________________________________________________________________
46436 [ 23800] By: nicholas                              on 2005/01/14  09:55:16
46437         Log: Improve documentation for sv_catpvf, to note that pattern's UTF-8ness
46438              is taken from the SV's UTF-8ness
46439      Branch: perl
46440            ! pod/perlapi.pod sv.c
46441 ____________________________________________________________________________
46442 [ 23799] By: nicholas                              on 2005/01/14  09:52:51
46443         Log: SvUTF8_off() in do_join can be unconditional.
46444      Branch: perl
46445            ! doop.c
46446 ____________________________________________________________________________
46447 [ 23798] By: nicholas                              on 2005/01/14  09:28:14
46448         Log: sv_catpvf holds no advantage over sv_catpv when the "pattern" isn't.
46449      Branch: perl
46450            ! op.c regcomp.c toke.c utf8.c
46451 ____________________________________________________________________________
46452 [ 23797] By: nicholas                              on 2005/01/13  23:13:05
46453         Log: Use the new SV_NOSTEAL flag to avoid the SvTEMP dance in newSVsv
46454      Branch: perl
46455            ! sv.c
46456 ____________________________________________________________________________
46457 [ 23796] By: nicholas                              on 2005/01/13  23:10:38
46458         Log: sv_2mortal(NEWSV(0,0)) better written as sv_newmortal()
46459      Branch: perl
46460            ! utf8.c
46461 ____________________________________________________________________________
46462 [ 23795] By: nicholas                              on 2005/01/13  22:54:10
46463         Log: replace NEWSV(), SvSetSV() with newSVsv()
46464      Branch: perl
46465            ! pp.c pp_hot.c pp_sort.c regexec.c scope.c toke.c
46466 ____________________________________________________________________________
46467 [ 23794] By: nicholas                              on 2005/01/13  22:39:58
46468         Log: Turn the unreachable code into assertions. (So prove me wrong...)
46469      Branch: perl
46470            ! pp_pack.c
46471 ____________________________________________________________________________
46472 [ 23793] By: nicholas                              on 2005/01/13  22:07:20
46473         Log: Source code tidy up - avoid assigning to sv.
46474      Branch: perl
46475            ! pp_pack.c
46476 ____________________________________________________________________________
46477 [ 23792] By: nicholas                              on 2005/01/13  21:54:21
46478         Log: Avoid dogfood problems when an empty string accidentally ends up
46479              as a constant name. [They don't work in qw(), strangely]
46480      Branch: perl
46481            ! lib/ExtUtils/Constant.pm
46482 ____________________________________________________________________________
46483 [ 23791] By: nicholas                              on 2005/01/13  21:44:53
46484         Log: The leaktesting of NEWSV() is long dead, so create and initialise
46485              SV values in one, to simplify source code and shrink object code
46486              by about 1%
46487      Branch: perl
46488            ! pp_pack.c
46489 ____________________________________________________________________________
46490 [ 23790] By: nicholas                              on 2005/01/13  20:55:37
46491         Log: Not a good idea to use unpack "H*" to peek at a scalar's internal
46492              representation.
46493      Branch: perl
46494            ! t/op/join.t
46495 ____________________________________________________________________________
46496 [ 23789] By: nicholas                              on 2005/01/13  14:05:08
46497         Log: Update copyright years. Add an editor block while passing by.
46498      Branch: perl
46499            ! pp_ctl.c pp_hot.c pp_sort.c pp_sys.c regcomp.c scope.c sv.c
46500            ! universal.c
46501 ____________________________________________________________________________
46502 [ 23788] By: nicholas                              on 2005/01/13  13:50:40
46503         Log: utf.pm needs to require Carp before croak()ing
46504      Branch: perl
46505            ! lib/utf8.pm lib/utf8.t
46506 ____________________________________________________________________________
46507 [ 23787] By: nicholas                              on 2005/01/13  13:21:11
46508         Log: Refactor all the unpack checksum-or-not logic to avoid massive
46509              duplication.
46510      Branch: perl
46511            ! pp_pack.c
46512 ____________________________________________________________________________
46513 [ 23786] By: merijn                                on 2005/01/13  11:28:31
46514         Log: Subject: Re: killing USE_5005THREADS in blead?
46515              From: Stas Bekman <stas@stason.org>
46516              Date: Wed, 12 Jan 2005 16:32:42 -0500
46517              Message-ID: <41E5977A.3060306@stason.org>
46518      Branch: perl
46519            ! perl.c
46520 ____________________________________________________________________________
46521 [ 23785] By: steveh                                on 2005/01/13  10:24:13
46522         Log: Fix Win32 build problem caused by change 23757
46523
46524              Change 23757 added a glob() call to win32/FindExt.pm.  That code is
46525              run by miniperl.exe when making the ..\config.sh target, but
46526              miniperl.exe is built with -D PERL_EXTERNAL_GLOB so it requires
46527              perlglob.exe to do the glob().  perlglob.exe has been built, but is
46528              in the top-level of the source tree so is not found when miniperl.exe
46529              is executed from within the win32/ sub-directory.
46530
46531              This was causing smokes to fail on t/lib/commonsense.t because the
46532              "extensions" field in lib/Config_heavy.pl only contained
46533              "threads/shared" as a result of the glob() not finding anything.
46534
46535              Manual builds had been working fine for me because I had an installed
46536              perl in my PATH so perlglob.exe was being found there instead!
46537      Branch: perl
46538            ! win32/FindExt.pm
46539 ____________________________________________________________________________
46540 [ 23783] By: rgs                                   on 2005/01/12  18:04:17
46541         Log: Subject: [PATCH] follow-up to #23765
46542              From: "Craig A. Berry" <craigberry@mac.com>
46543              Date: Tue, 11 Jan 2005 21:01:27 -0600
46544              Message-ID: <41E49307.7080900@mac.com>
46545      Branch: perl
46546            ! lib/warnings.t
46547 ____________________________________________________________________________
46548 [ 23782] By: nicholas                              on 2005/01/11  19:10:20
46549         Log: Fix bug 32294 - index()/rindex() ignore UTF8 flag
46550              (for cases of mixed UTF8/bytes)
46551              Test code based on bug report by John Gardiner Myers
46552      Branch: perl
46553            ! pp.c t/op/index.t
46554 ____________________________________________________________________________
46555 [ 23781] By: rgs                                   on 2005/01/11  17:04:24
46556         Log: Subject: [PATCH] follow-up to 23767
46557              From: Robin Barker <Robin.Barker@npl.co.uk>
46558              Date: Tue, 11 Jan 2005 15:48:49 -0000
46559              Message-ID: <533D273D4014D411AB1D00062938C4D90849C56A@hotel.npl.co.uk>
46560      Branch: perl
46561            ! Porting/pumpkin.pod sv.c
46562 ____________________________________________________________________________
46563 [ 23780] By: mhx                                   on 2005/01/10  19:25:27
46564         Log: Remove PERL_FLEXIBLE_EXCEPTIONS code.
46565      Branch: perl
46566            ! embed.fnc embed.h embedvar.h global.sym makedef.pl perl.c
46567            ! perl.h perlapi.h pod/perlapi.pod pod/perlintern.pod pp_ctl.c
46568            ! proto.h scope.c scope.h sv.c thrdvar.h
46569 ____________________________________________________________________________
46570 [ 23779] By: nicholas                              on 2005/01/10  17:07:03
46571         Log: Subject: [PATCH] t/op/split.t #11 nit on VMS
46572              From: "Craig A. Berry" <craigberry@mac.com>
46573              Message-ID: <41E1C261.5020100@mac.com>
46574              Date: Sun, 09 Jan 2005 17:46:41 -0600
46575      Branch: perl
46576            ! t/op/split.t
46577 ____________________________________________________________________________
46578 [ 23778] By: steveh                                on 2005/01/10  11:53:10
46579         Log: Need to close files before unlinking them on Win32
46580
46581              (Various files created by test programs are left behind otherwise,
46582              and distclean doesn't clean them up)
46583      Branch: perl
46584            ! lib/FileCache/t/01open.t lib/FileCache/t/04twoarg.t
46585            ! lib/FileCache/t/07noimport.t t/op/read.t
46586 ____________________________________________________________________________
46587 [ 23777] By: steveh                                on 2005/01/10  10:28:00
46588         Log: Make Win32's distclean target clean up properly
46589      Branch: perl
46590            ! win32/Makefile win32/makefile.mk
46591 ____________________________________________________________________________
46592 [ 23776] By: steveh                                on 2005/01/10  09:45:50
46593         Log: Get $Config{osvers} filled in on Win32
46594      Branch: perl
46595            ! win32/config_sh.PL
46596 ____________________________________________________________________________
46597 [ 23775] By: merijn                                on 2005/01/10  08:54:00
46598         Log: Subject: [PATCH] follow-up to #23748, -Duselargefiles on VMS
46599              Date: Sun, 09 Jan 2005 17:52:09 -0600
46600              From: "Craig A. Berry" <craigberry@mac.com>
46601              Message-ID: <41E1C3A9.9080900@mac.com>
46602      Branch: perl
46603            ! configure.com
46604 ____________________________________________________________________________
46605 [ 23774] By: nicholas                              on 2005/01/09  23:42:25
46606         Log: Shorter source code in pp_gelem. (But it compiles to the same size)
46607      Branch: perl
46608            ! pp.c
46609 ____________________________________________________________________________
46610 [ 23773] By: nicholas                              on 2005/01/09  21:50:28
46611         Log: If we know the length of the string constant, save a strlen()
46612      Branch: perl
46613            ! perl.c pp_sys.c
46614 ____________________________________________________________________________
46615 [ 23772] By: nicholas                              on 2005/01/09  21:26:40
46616         Log: savepv(SvPV(sv,n_a)) is common, and creates an unnecessary call to
46617              strlen(). Add savesvpv(sv), which gets the length from the SV,
46618              and returns a copy of its PV.
46619      Branch: perl
46620            ! embed.fnc embed.h global.sym mg.c pp_sys.c proto.h regcomp.c
46621            ! universal.c util.c
46622 ____________________________________________________________________________
46623 [ 23771] By: nicholas                              on 2005/01/09  19:42:30
46624         Log: Can pass in a length here without introducing a bug. Might save
46625              a strlen()
46626      Branch: perl
46627            ! toke.c
46628 ____________________________________________________________________________
46629 [ 23770] By: nicholas                              on 2005/01/09  15:05:33
46630         Log: Pull the am-I-utf8-or-not logic into one place (S_newSV_maybe_utf8)
46631              as I think that it will be needed for utf8 soft references.
46632      Branch: perl
46633            ! toke.c
46634 ____________________________________________________________________________
46635 [ 23769] By: steveh                                on 2005/01/07  17:25:35
46636         Log: Disable PERL_MALLOC and DEBUG_MSTATS in win32/makefile.mk by default
46637              and force PERL_MALLOC off if USE_IMP_SYS is on
46638
46639              This brings makefile.mk into line with Makefile in this regard
46640
46641              (PERL_MALLOC cannot currently be used with USE_IMP_SYS, e.g. see:
46642              http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2004-07/msg00465.html
46643              so it is sensible to enforce this, and to not have the default set
46644              to a configuration that isn't allowed)
46645      Branch: perl
46646            ! win32/makefile.mk
46647 ____________________________________________________________________________
46648 [ 23768] By: rgs                                   on 2005/01/07  14:30:51
46649         Log: Subject: Re: [PATCH] Remove Carp from warnings.pm
46650              From: Jim Cromie <jim.cromie@gmail.com>
46651              Date: Mon, 3 Jan 2005 06:36:16 -0700
46652              Message-ID: <cfe85dfa05010305367445dee6@mail.gmail.com>
46653      Branch: perl
46654            + lib/vars_carp.t
46655            ! MANIFEST ext/B/t/optree_specials.t ext/B/t/stash.t lib/Carp.pm
46656            ! lib/English.pm lib/Exporter.pm lib/Exporter.t
46657            ! lib/Exporter/Heavy.pm lib/warnings.pm warnings.pl
46658 ____________________________________________________________________________
46659 [ 23767] By: rgs                                   on 2005/01/07  13:41:47
46660         Log: Subject: [PATCH] to improve -DCHECK_FORMAT
46661              From: Robin Barker <Robin.Barker@npl.co.uk>
46662              Date: Wed, 5 Jan 2005 11:55:09 -0000
46663              Message-ID: <533D273D4014D411AB1D00062938C4D90849C55A@hotel.npl.co.uk>
46664      Branch: perl
46665            ! mg.c perl.h pp.h pp_sys.c sv.c
46666 ____________________________________________________________________________
46667 [ 23766] By: nicholas                              on 2005/01/07  12:46:07
46668         Log: Stage 1 of utf8 support for soft references.
46669              Change gv_fetchpv to take a UTF8 flag, as gv_fetchpvn_flags
46670              Add gv_fetchsv to look up a GV by SV rather than a char * pointer
46671              Provide a backwards compatability gv_fetchpv
46672              Migrate from gv_fetchpv to gv_fetchsv where the caller was grabbing
46673              the pointer from an SV
46674              All tests still pass.
46675      Branch: perl
46676            ! embed.fnc embed.h global.sym gv.c gv.h mg.c op.c perl.h pp.c
46677            ! pp_hot.c pp_sys.c proto.h sv.c sv.h toke.c universal.c
46678 ____________________________________________________________________________
46679 [ 23765] By: nicholas                              on 2005/01/07  11:23:48
46680         Log: Subject: [PATCH] make lib/warnings.t use t/test.pl
46681              From: "Craig A. Berry" <craigberry@mac.com>
46682              Message-ID: <41DDCA71.1080704@mac.com>
46683              Date: Thu, 06 Jan 2005 17:32:01 -0600
46684      Branch: perl
46685            ! lib/warnings.t
46686 ____________________________________________________________________________
46687 [ 23764] By: steveh                                on 2005/01/07  08:35:29
46688         Log: Fix win32/config.*'s cc, ld and other related values
46689
46690              cc and ld themselves always get replaced with correct values anyway
46691              so we just provide example values as per other similar settings
46692
46693              Other related values (ccname, cpp, cpprun, cppstdin) need to use the
46694              correct ~keyword~, namely ~cc~, not ~CC~, otherwise they do not get set
46695
46696              Subject: [PATCH] Re: lib/Config/Extensions.t fails on Win32
46697              From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
46698              Date: Wed, 5 Jan 2005 10:01:41 -0800
46699              Message-ID: <20050105180141.GA676@efn.org>
46700
46701              Subject: Re: [PATCH] Re: lib/Config/Extensions.t fails on Win32
46702              From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
46703              Date: Thu, 6 Jan 2005 11:53:11 -0800
46704              Message-ID: <20050106195311.GC1300@efn.org>
46705      Branch: perl
46706            ! win32/config.bc win32/config.gc win32/config.vc
46707            ! win32/config.vc64
46708 ____________________________________________________________________________
46709 [ 23763] By: nicholas                              on 2005/01/06  17:42:59
46710         Log: Add TODO tests for UTF8 encoded soft references
46711      Branch: perl
46712            ! t/op/ref.t
46713 ____________________________________________________________________________
46714 [ 23762] By: steveh                                on 2005/01/06  16:50:10
46715         Log: Allow static linking core extensions on Win32 with MinGW
46716
46717              Subject: [PATCH] Re: lib/Config/Extensions.t fails on Win32
46718              From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
46719              Date: Wed, 5 Jan 2005 10:01:41 -0800
46720              Message-ID: <20050105180141.GA676@efn.org>
46721      Branch: perl
46722            ! win32/buildext.pl win32/makefile.mk
46723 ____________________________________________________________________________
46724 [ 23761] By: rgs                                   on 2005/01/06  15:49:39
46725         Log: Silence a compilation warning
46726      Branch: perl
46727            ! pp_sort.c
46728 ____________________________________________________________________________
46729 [ 23760] By: nicholas                              on 2005/01/06  14:59:17
46730         Log: Turn barewords into strings to run under strict subs.
46731              Run under strict refs outside the soft reference tests.
46732      Branch: perl
46733            ! t/op/ref.t
46734 ____________________________________________________________________________
46735 [ 23759] By: nicholas                              on 2005/01/06  14:34:24
46736         Log: All tests now use test.pl
46737      Branch: perl
46738            ! t/op/ref.t
46739 ____________________________________________________________________________
46740 [ 23758] By: nicholas                              on 2005/01/06  11:44:08
46741         Log: Start converting t/op/ref.t to use test.pl
46742      Branch: perl
46743            ! t/op/ref.t
46744 ____________________________________________________________________________
46745 [ 23757] By: steveh                                on 2005/01/06  11:26:12
46746         Log: Fix extensions config fields on Win32 to be as they are on Unix
46747
46748              Subject: [PATCH] Re: lib/Config/Extensions.t fails on Win32
46749              From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
46750              Date: Wed, 5 Jan 2005 10:01:41 -0800
46751              Message-ID: <20050105180141.GA676@efn.org>
46752      Branch: perl
46753            ! win32/FindExt.pm win32/config_sh.PL
46754 ____________________________________________________________________________
46755 [ 23756] By: nicholas                              on 2005/01/05  21:58:15
46756         Log: Correct a Greengrocer's apostrophe.
46757      Branch: perl
46758            ! ext/DynaLoader/dl_dyld.xs
46759 ____________________________________________________________________________
46760 [ 23755] By: nicholas                              on 2005/01/05  21:36:26
46761         Log: Foolishly I committed change 23753 before remembering to test without
46762              ithreads. No tests => bugs. This should fix them.
46763      Branch: perl
46764            ! perl.c
46765 ____________________________________________________________________________
46766 [ 23754] By: nicholas                              on 2005/01/05  20:14:02
46767         Log: Error-free constant folding is a TODO
46768      Branch: perl
46769            ! pod/perltodo.pod
46770 ____________________________________________________________________________
46771 [ 23753] By: nicholas                              on 2005/01/05  19:44:28
46772         Log: Turn INIT_TLS_AND_INTERP into a static function
46773      Branch: perl
46774            ! perl.c
46775 ____________________________________________________________________________
46776 [ 23752] By: nicholas                              on 2005/01/05  16:27:19
46777         Log: Shave off the explict 1; from the end of lib/Config.pm
46778      Branch: perl
46779            ! configpm
46780 ____________________________________________________________________________
46781 [ 23751] By: rgs                                   on 2005/01/05  13:31:51
46782         Log: Subject: [PATCH] unnecessary rmdir in Makefile
46783              From: Robin Barker <Robin.Barker@npl.co.uk>
46784              Date: Wed, 5 Jan 2005 11:58:54 -0000
46785              Message-ID: <533D273D4014D411AB1D00062938C4D90849C55C@hotel.npl.co.uk>
46786      Branch: perl
46787            ! Makefile.SH
46788 ____________________________________________________________________________
46789 [ 23750] By: merijn                                on 2005/01/05  11:44:11
46790         Log: Subject: [PATCH] gcc and ld in Configure
46791              From: Robin Barker <Robin.Barker@npl.co.uk>
46792              Date: Wed, 5 Jan 2005 12:04:25 -0000
46793              Message-ID: <533D273D4014D411AB1D00062938C4D90849C55D@hotel.npl.co.uk>
46794      Branch: perl
46795            ! hints/solaris_2.sh
46796 ____________________________________________________________________________
46797 [ 23749] By: nicholas                              on 2005/01/05  11:25:29
46798         Log: Subject: [PATCH] Avoid segfault when pthread_key_create fails
46799              From: Gisle Aas <gisle@ActiveState.com>
46800              Date: 05 Jan 2005 01:09:51 -0800
46801              Message-ID: <lracroz1gg.fsf@caliper.activestate.com>
46802      Branch: perl
46803            ! thread.h
46804 ____________________________________________________________________________
46805 [ 23748] By: nicholas                              on 2005/01/05  10:44:59
46806         Log: Subject: [PATCH] -Duselargefiles for VMS
46807              From: "Craig A. Berry" <craigberry@mac.com>
46808              Message-ID: <41DB63A6.7040504@mac.com>
46809              Date: Tue, 04 Jan 2005 21:48:54 -0600
46810      Branch: perl
46811            ! configure.com vms/descrip_mms.template vms/vmsish.h
46812 ____________________________________________________________________________
46813 [ 23747] By: nicholas                              on 2005/01/05  10:10:14
46814         Log: Rafael spotted that my changes caused warnings. So clean up.
46815      Branch: perl
46816            ! t/op/attrs.t
46817 ____________________________________________________________________________
46818 [ 23746] By: nicholas                              on 2005/01/04  23:07:25
46819         Log: Update copyright years.
46820      Branch: perl
46821            ! mg.c miniperlmain.c op.c perlio.c xsutils.c
46822 ____________________________________________________________________________
46823 [ 23745] By: nicholas                              on 2005/01/04  19:32:01
46824         Log: Make the switch statement discriminate similar names more
46825              efficiently.
46826      Branch: perl
46827            ! xsutils.c
46828 ____________________________________________________________________________
46829 [ 23744] By: nicholas                              on 2005/01/04  16:20:43
46830         Log: Check all attributes in modify_SV_attributes are recognised.
46831              Fix bug where 'assertion' was always rejected as invalid.
46832      Branch: perl
46833            ! t/op/attrs.t xsutils.c
46834 ____________________________________________________________________________
46835 [ 23743] By: nicholas                              on 2005/01/04  12:46:56
46836         Log: Use the new ${^UTF8LOCALE} to make the test reliable.
46837      Branch: perl
46838            ! t/io/layers.t
46839 ____________________________________________________________________________
46840 [ 23742] By: merijn                                on 2005/01/04  12:38:03
46841         Log: Subject: [PATCH pod/perlxs.pod] RE: [perl #32660] INT2PTR not mentioned in perlxs(1)
46842              From: Robin Barker <Robin.Barker@npl.co.uk>
46843              Date: Tue, 4 Jan 2005 12:32:29 -0000
46844              Message-ID: <533D273D4014D411AB1D00062938C4D90849C553@hotel.npl.co.uk>
46845      Branch: perl
46846            ! pod/perlxs.pod
46847 ____________________________________________________________________________
46848 [ 23741] By: nicholas                              on 2005/01/04  11:27:57
46849         Log: Add ${^UTF8LOCALE} to give perl space access to PL_utf8locale
46850      Branch: perl
46851            ! gv.c mg.c
46852 ____________________________________________________________________________
46853 [ 23740] By: steveh                                on 2005/01/04  10:56:55
46854         Log: Bring win32/config.* into line with win32/config_H.*
46855              so that "perl -V:usemallocwrap" tells us what the configuration is
46856              instead of saying 'UNKNOWN'.
46857      Branch: perl
46858            ! win32/config.bc win32/config.gc win32/config.vc
46859            ! win32/config.vc64
46860 ____________________________________________________________________________
46861 [ 23739] By: rgs                                   on 2005/01/04  08:36:50
46862         Log: Subject: [PATCH] Math::BigInt v1.74, Math::BigRat v0.14, bignum v0.16
46863              From: Tels <nospam-abuse@bloodgate.com>
46864              Date: Sat, 1 Jan 2005 18:59:51 +0100
46865              Message-Id: <200501011859.52858@bloodgate.com>
46866      Branch: perl
46867            + lib/Math/BigInt/t/lib_load.t lib/bignum/t/ratopt_a.t
46868            ! MANIFEST lib/Math/BigFloat.pm lib/Math/BigInt.pm
46869            ! lib/Math/BigInt/Calc.pm lib/Math/BigInt/CalcEmu.pm
46870            ! lib/Math/BigInt/t/bare_mbf.t lib/Math/BigInt/t/bare_mbi.t
46871            ! lib/Math/BigInt/t/bigfltpm.inc lib/Math/BigInt/t/bigfltpm.t
46872            ! lib/Math/BigInt/t/bigintpm.inc lib/Math/BigInt/t/bigintpm.t
46873            ! lib/Math/BigInt/t/inf_nan.t lib/Math/BigInt/t/sub_mbf.t
46874            ! lib/Math/BigInt/t/sub_mbi.t lib/Math/BigInt/t/upgrade.inc
46875            ! lib/Math/BigInt/t/with_sub.t lib/Math/BigRat.pm
46876            ! lib/Math/BigRat/t/bigrat.t lib/Math/BigRat/t/bigratpm.inc
46877            ! lib/Math/BigRat/t/bigratpm.t lib/bigint.pm lib/bignum.pm
46878            ! lib/bignum/t/option_a.t lib/bignum/t/option_l.t
46879            ! lib/bignum/t/option_p.t lib/bigrat.pm
46880            ! t/lib/Math/BigFloat/Subclass.pm
46881 ____________________________________________________________________________
46882 [ 23738] By: rgs                                   on 2005/01/04  08:05:16
46883         Log: Happy new year
46884      Branch: perl
46885            ! README
46886 ____________________________________________________________________________
46887 [ 23736] By: nicholas                              on 2005/01/03  21:17:28
46888         Log: Return an immortal from attributes::_warn_reserved (a private
46889              function). (saves creating a new IV)
46890      Branch: perl
46891            ! xsutils.c
46892 ____________________________________________________________________________
46893 [ 23735] By: nicholas                              on 2005/01/03  20:58:09
46894         Log: Change dXSTARGET to dXSTARG as recommended by Spider Boardman.
46895      Branch: perl
46896            ! xsutils.c
46897 ____________________________________________________________________________
46898 [ 23733] By: nicholas                              on 2005/01/03  18:54:22
46899         Log: D'oh! Spurious aTHX_. Here was I thinking that my test build was
46900              threaded, but "oh no it isn't!" :-(
46901      Branch: perl
46902            ! toke.c
46903 ____________________________________________________________________________
46904 [ 23732] By: rgs                                   on 2005/01/03  17:24:24
46905         Log: Integrate a patch from Gentoo for uclibc support.
46906              See :
46907              Subject: Re: Static linking notes --- perl5.8.6 and uClibc
46908              From: Alexey Tourbin <at@altlinux.ru>
46909              Date: Tue, 28 Dec 2004 14:25:42 +0300
46910              Message-ID: <20041228112542.GB21037@solemn.turbinal.org>
46911      Branch: perl
46912            ! perlio.c
46913 ____________________________________________________________________________
46914 [ 23731] By: nicholas                              on 2005/01/02  23:18:07
46915         Log: Remove compiler warnings.
46916      Branch: perl
46917            ! toke.c
46918 ____________________________________________________________________________
46919 [ 23730] By: nicholas                              on 2005/01/02  22:49:49
46920         Log: Change 23727 broke code that relied on \ being escaped.
46921              Fix this. *Everything* should work now.
46922      Branch: perl
46923            + t/run/switchF1.t
46924            ! MANIFEST toke.c
46925 ____________________________________________________________________________
46926 [ 23729] By: nicholas                              on 2005/01/02  07:46:12
46927         Log: Splitting the -n/-p code and concatenating strings generates
46928              smaller object code.
46929      Branch: perl
46930            ! toke.c
46931 ____________________________________________________________________________
46932 [ 23728] By: nicholas                              on 2005/01/01  21:34:52
46933         Log: Concatenate some string constants
46934      Branch: perl
46935            ! toke.c
46936 ____________________________________________________________________________
46937 [ 23727] By: nicholas                              on 2005/01/01  21:13:53
46938         Log: Use Rafael's sick trick of ASCII NUL as a q'' delimiter to save a
46939              lot of quoting code
46940      Branch: perl
46941            ! toke.c
46942 ____________________________________________________________________________
46943 [ 23726] By: nicholas                              on 2005/01/01  20:48:31
46944         Log: Probably should be using *pvn rather than *pv forms for speed in
46945              toke.c (to save a strlen())
46946      Branch: perl
46947            ! toke.c
46948 ____________________________________________________________________________
46949 [ 23725] By: nicholas                              on 2005/01/01  20:26:27
46950         Log: strEQ/strNE of 1 character strings seems better hand inlined,
46951              because it generates smaller object code (as well as being
46952              faster than a true function call)
46953      Branch: perl
46954            ! doio.c locale.c op.c perl.c pp.c toke.c util.c
46955 ____________________________________________________________________________
46956 [ 23724] By: nicholas                              on 2005/01/01  17:15:58
46957         Log: Not all the world's a VAX, er ASCII, so don't make assumptions.
46958              Tweak is_gv_magical's string comparisons to produce smaller object
46959              code.
46960              First 2005 copyright notice.
46961      Branch: perl
46962            ! gv.c
46963 ____________________________________________________________________________
46964 [ 23723] By: nicholas                              on 2005/01/01  13:54:33
46965         Log: Change 23714 accidentally broke t/io/layers.t when testing with
46966              UTF8 locales and the -C flag. When UTF8 is flagged as enabled
46967              based on the locale, we have no perl space access to PL_utf8locale
46968              so assume for the moment that UTF8 is never conditionally enabled.
46969      Branch: perl
46970            ! t/io/layers.t
46971 ____________________________________________________________________________
46972 [ 23722] By: nicholas                              on 2004/12/31  23:04:47
46973         Log: Skip the switch statement entirely if the pointer is null, rather
46974              than the old pointless switch on '\0'. Also skip re-comparing the
46975              first character. Faster, and generates terser object code.
46976      Branch: perl
46977            ! pp.c
46978 ____________________________________________________________________________
46979 [ 23721] By: nicholas                              on 2004/12/31  22:46:25
46980         Log: Doing the strnEQ char by char for 2 and 3 character strings
46981              generates a smaller object file, and will be faster.
46982      Branch: perl
46983            ! doio.c
46984 ____________________________________________________________________________
46985 [ 23720] By: nicholas                              on 2004/12/31  21:41:25
46986         Log: Improve documentation for is_gv_magical, and split the switch
46987              statement into 2 parts, lengths > 1 and lengths <= 1
46988              This should cause most variables (lower case, multicharacter)
46989              to escape the function without passing through a switch table.
46990      Branch: perl
46991            ! gv.c
46992 ____________________________________________________________________________
46993 [ 23719] By: nicholas                              on 2004/12/31  21:02:59
46994         Log: Because name is always NUL terminated we can incorporate length
46995              0 names in the switch statement for length 1.
46996      Branch: perl
46997            ! gv.c
46998 ____________________________________________________________________________
46999 [ 23718] By: nicholas                              on 2004/12/31  20:25:52
47000         Log: Generate smaller object code by using a single switch statement
47001              for determining which names are forced into main::
47002      Branch: perl
47003            ! gv.c
47004 ____________________________________________________________________________
47005 [ 23717] By: nicholas                              on 2004/12/31  18:31:18
47006         Log: Tidy up comments in change 23716
47007      Branch: perl
47008            ! gv.c
47009 ____________________________________________________________________________
47010 [ 23716] By: nicholas                              on 2004/12/31  18:22:54
47011         Log: Refactor gv_fetchpv so that the overwhelmingly common case
47012              (variable names starting with a lower case letter or _, longer
47013              than one character) get out of the function very quickly.
47014              (Without even passing through a switch statement jump table)
47015              Also fixes bug 33631
47016      Branch: perl
47017            ! gv.c
47018 ____________________________________________________________________________
47019 [ 23715] By: nicholas                              on 2004/12/31  15:43:07
47020         Log: Subject: [PATCH] randbits and randfunc for VMS
47021              From: "Craig A. Berry" <craigberry@mac.com>
47022              Message-ID: <41D570BF.8010409@mac.com>
47023              Date: Fri, 31 Dec 2004 09:31:11 -0600
47024      Branch: perl
47025            ! configure.com
47026 ____________________________________________________________________________
47027 [ 23714] By: nicholas                              on 2004/12/31  13:14:18
47028         Log: Bug in t/io/layers.t spotted by Ignasi Roca Carrió
47029      Branch: perl
47030            ! AUTHORS t/io/layers.t
47031 ____________________________________________________________________________
47032 [ 23712] By: mhx                                   on 2004/12/30  18:29:02
47033         Log: Mention ppport.h and its --api-info switch in perlguts.
47034      Branch: perl
47035            ! pod/perlguts.pod
47036 ____________________________________________________________________________
47037 [ 23711] By: merijn                                on 2004/12/30  13:10:20
47038         Log: Subject: [PATCH] Allow Configure's d_attribut to be set from the command line
47039              From: Gisle Aas <gisle@ActiveState.com>
47040              Date: 30 Dec 2004 03:39:36 -0800
47041              Message-ID: <lrllbgypzb.fsf@caliper.activestate.com>
47042      Branch: perl
47043            ! Configure
47044 ____________________________________________________________________________
47045 [ 23708] By: nicholas                              on 2004/12/29  21:41:04
47046         Log: Thinko in the description of Config::Extensions
47047      Branch: perl
47048            ! MANIFEST
47049 ____________________________________________________________________________
47050 [ 23707] By: nicholas                              on 2004/12/29  21:25:29
47051         Log: Experimental module intended to simplify core regression tests
47052      Branch: perl
47053            + lib/Config/Extensions.pm lib/Config/Extensions.t
47054            ! MANIFEST
47055 ____________________________________________________________________________
47056 [ 23706] By: nicholas                              on 2004/12/29  21:24:30
47057         Log: Skip tests that binmode :utf8 if there is no perlio
47058      Branch: perl
47059            ! t/op/read.t
47060 ____________________________________________________________________________
47061 [ 23705] By: nicholas                              on 2004/12/29  21:04:43
47062         Log: Ooops. Fix unitialised variable
47063      Branch: perl
47064            ! pp_sys.c
47065 ____________________________________________________________________________
47066 [ 23704] By: nicholas                              on 2004/12/29  19:47:12
47067         Log: Oops. Forgot to uncomment the last set of Unicode values for
47068              testing.
47069      Branch: perl
47070            ! t/op/read.t
47071 ____________________________________________________________________________
47072 [ 23703] By: nicholas                              on 2004/12/29  19:00:12
47073         Log: read (and presuambly sysread) would expose the UTF8 internals when
47074              reading from a byte orientated file handle into a UTF8 scalar.
47075      Branch: perl
47076            ! pp_sys.c t/op/read.t
47077 ____________________________________________________________________________
47078 [ 23702] By: nicholas                              on 2004/12/29  17:20:29
47079         Log: Add a lot of tests for combinations of values, offsets and lengths
47080      Branch: perl
47081            ! t/op/read.t
47082 ____________________________________________________________________________
47083 [ 23701] By: nicholas                              on 2004/12/29  16:28:58
47084         Log: Convert op/read.t to use test.pl and make it stricture compliant.
47085      Branch: perl
47086            ! t/op/read.t
47087 ____________________________________________________________________________
47088 [ 23700] By: mhx                                   on 2004/12/29  13:46:36
47089         Log: Upgrade to Devel::PPPort 3.04
47090      Branch: perl
47091            ! ext/Devel/PPPort/Changes ext/Devel/PPPort/META.yml
47092            ! ext/Devel/PPPort/PPPort.pm ext/Devel/PPPort/PPPort_pm.PL
47093            ! ext/Devel/PPPort/TODO ext/Devel/PPPort/parts/inc/SvPV
47094            ! ext/Devel/PPPort/parts/inc/ppphbin
47095            ! ext/Devel/PPPort/parts/inc/ppphdoc
47096            ! ext/Devel/PPPort/parts/inc/ppphtest
47097 ____________________________________________________________________________
47098 [ 23696] By: merijn                                on 2004/12/29  12:41:14
47099         Log: Rebuilt after backport start for 23674, 23675, and 23676
47100      Branch: perl
47101            ! Configure
47102 ____________________________________________________________________________
47103 [ 23691] By: merijn                                on 2004/12/29  11:57:57
47104         Log: Subject: [PATCH] Cleanup ext/B tests for -w and to run separately
47105              Date: Tue, 28 Dec 2004 13:49:19 -0800
47106              From: Stephen McCamant <smcc@MIT.EDU>
47107              Message-ID: <16849.54495.424654.896889@apocalypse.OCF.Berkeley.EDU>
47108      Branch: perl
47109            ! ext/B/B/Terse.pm ext/B/t/asmdata.t ext/B/t/b.t
47110            ! ext/B/t/bblock.t ext/B/t/bytecode.t ext/B/t/concise.t
47111            ! ext/B/t/debug.t ext/B/t/deparse.t ext/B/t/f_map.t
47112            ! ext/B/t/f_sort.t ext/B/t/lint.t ext/B/t/o.t
47113            ! ext/B/t/optree_check.t ext/B/t/optree_concise.t
47114            ! ext/B/t/optree_samples.t ext/B/t/optree_sort.t
47115            ! ext/B/t/optree_specials.t ext/B/t/optree_varinit.t
47116            ! ext/B/t/showlex.t ext/B/t/stash.t ext/B/t/terse.t
47117            ! ext/B/t/xref.t
47118 ____________________________________________________________________________
47119 [ 23688] By: nicholas                              on 2004/12/28  10:25:28
47120         Log: Make Config.t warnings and strictures clean
47121      Branch: perl
47122            ! lib/Config.t
47123 ____________________________________________________________________________
47124 [ 23683] By: nicholas                              on 2004/12/27  16:03:59
47125         Log: Subject: [patch sv.c] comment fix
47126              From: Stas Bekman <stas@stason.org>
47127              Message-ID: <41CF50FE.5070307@stason.org>
47128              Date: Sun, 26 Dec 2004 19:02:06 -0500
47129      Branch: perl
47130            ! sv.c
47131 ____________________________________________________________________________
47132 [ 23682] By: nicholas                              on 2004/12/27  15:48:24
47133         Log: Add investigating self tie segfaults to the TODO
47134      Branch: perl
47135            ! pod/perltodo.pod
47136 ____________________________________________________________________________
47137 [ 23681] By: rgs                                   on 2004/12/24  13:51:59
47138         Log: Subject: [perl #33173] shellwords.pl and tainting
47139              From: perl-5.8.0@ton.iguana.be (via RT) <perlbug-followup@perl.org>
47140              Date: 24 Dec 2004 00:14:19 -0000
47141              Message-ID: <rt-3.0.11-33173-103504.3.54366755060383@perl.org>
47142      Branch: perl
47143            ! lib/shellwords.pl
47144 ____________________________________________________________________________
47145 [ 23680] By: rgs                                   on 2004/12/24  13:42:08
47146         Log: Subject: Missign STATEMENT brackets in PUSHMARK
47147              From: perl5-porters@ton.iguana.be (Ton Hospel)
47148              Date: Thu, 23 Dec 2004 17:55:13 +0000 (UTC)
47149              Message-Id: <cqf0q1$9cc$1@post.home.lunix>
47150      Branch: perl
47151            ! pp.h
47152 ____________________________________________________________________________
47153 [ 23679] By: nicholas                              on 2004/12/24  10:33:32
47154         Log: Don't do the ... expansion on archlib, sitelib etc, given that
47155              everyone should already be using archlibext etc
47156              Add the extra special case code for otherlibdirs
47157      Branch: perl
47158            ! configpm
47159 ____________________________________________________________________________
47160 [ 23678] By: rgs                                   on 2004/12/24  08:57:56
47161         Log: Subject: Re: [patch perlapi doc] sv_magic
47162              From: Stas Bekman <stas@stason.org>
47163              Date: Thu, 23 Dec 2004 16:28:06 -0500
47164              Message-ID: <41CB3866.1080307@stason.org>
47165      Branch: perl
47166            ! pod/perlapi.pod sv.c
47167 ____________________________________________________________________________
47168 [ 23677] By: nicholas                              on 2004/12/24  08:54:58
47169         Log: Subject: [PATCH] Re: Smoke [5.9.2] 23675 FAIL(m) openvms E8.2 (Alpha/4 cpu)
47170              From: "Craig A. Berry" <craigberry@mac.com>
47171              Message-ID: <41CB6BD1.8030207@mac.com>
47172              Date: Thu, 23 Dec 2004 19:07:29 -0600
47173      Branch: perl
47174            ! configure.com
47175 ____________________________________________________________________________
47176 [ 23676] By: nicholas                              on 2004/12/23  23:15:24
47177         Log: Bother. It helps if you also propagate the new entry to config.sh
47178      Branch: perl
47179            ! Configure
47180 ____________________________________________________________________________
47181 [ 23675] By: nicholas                              on 2004/12/23  22:14:42
47182         Log: Oops. You can't add new entries to config_h.SH without making some
47183              sort of corresponding defined/undefined value in config.sh somehow.
47184      Branch: perl
47185            ! Configure
47186 ____________________________________________________________________________
47187 [ 23674] By: nicholas                              on 2004/12/23  21:38:59
47188         Log: Relocatable @INC entries for Unix.
47189              (With appropriate fixups in Config.pm to complete the illusion)
47190              Currently can only be enabled with hackery to config.sh
47191              TODO - proper Configure support, and support for otherlibdirs in
47192              Config.pm
47193      Branch: perl
47194            ! Porting/Glossary config_h.SH configpm embed.fnc embed.h perl.c
47195            ! proto.h
47196 ____________________________________________________________________________
47197 [ 23673] By: merijn                                on 2004/12/23  21:04:37
47198         Log: 23669 was not such a good idea. More research needed.
47199      Branch: perl
47200            ! config_h.SH
47201 ____________________________________________________________________________
47202 [ 23672] By: rgs                                   on 2004/12/23  17:21:37
47203         Log: The "Setuid script not plain file" error wasn't documented.
47204      Branch: perl
47205            ! pod/perldiag.pod
47206 ____________________________________________________________________________
47207 [ 23671] By: rgs                                   on 2004/12/23  15:21:58
47208         Log: Subject: [PATCH] Data::Dumper Freezer fixes
47209              From: Sam Tregar <sam@tregar.com>
47210              Date: Sun, 19 Dec 2004 14:40:25 -0500 (EST)
47211              Message-ID: <Pine.LNX.4.61.0412191434490.7660@hillmont.dreamhost.com>
47212
47213              and bump Data::Dumper's VERSION
47214      Branch: perl
47215            + ext/Data/Dumper/t/freezer.t
47216            ! MANIFEST ext/Data/Dumper/Dumper.pm ext/Data/Dumper/Dumper.xs
47217 ____________________________________________________________________________
47218 [ 23670] By: nicholas                              on 2004/12/22  23:15:07
47219         Log: Fix typo
47220      Branch: perl
47221            ! ext/Storable/Storable.xs
47222 ____________________________________________________________________________
47223 [ 23669] By: merijn                                on 2004/12/22  20:16:53
47224         Log: Just to re-sync with metaconfig output. No real changes.
47225      Branch: perl
47226            ! config_h.SH
47227 ____________________________________________________________________________
47228 [ 23668] By: rgs                                   on 2004/12/22  08:46:21
47229         Log: Move the definition of the S_procself_val() function before
47230              the point where it's used
47231      Branch: perl
47232            ! perl.c
47233 ____________________________________________________________________________
47234 [ 23667] By: nicholas                              on 2004/12/21  20:56:58
47235         Log: Move the setting of $^X ahead of the initialisation of @INC
47236      Branch: perl
47237            ! perl.c
47238 ____________________________________________________________________________
47239 [ 23666] By: nicholas                              on 2004/12/21  20:31:57
47240         Log: $#a>>=1 relies on malloc wrap to avoid the segfault, so need to
47241              skip the test on platforms where it's not available
47242      Branch: perl
47243            ! t/op/bop.t
47244 ____________________________________________________________________________
47245 [ 23663] By: nicholas                              on 2004/12/21  11:58:53
47246         Log: Note that the shell's test uses eq etc for numbers, = etc for
47247              strings, the reverse of Perl, which is definitely a trap.
47248              Spotted by Alexei Alexandrov.
47249      Branch: perl
47250            ! AUTHORS pod/perltrap.pod
47251 ____________________________________________________________________________
47252 [ 23662] By: merijn                                on 2004/12/20  13:38:45
47253         Log: Subject: [PATCH] AUTHORS
47254              From: Tels <nospam-abuse@bloodgate.com>
47255              Date: Sun, 19 Dec 2004 14:28:44 +0100
47256              Message-Id: <200412191428.45898@bloodgate.com>
47257      Branch: perl
47258            ! AUTHORS
47259 ____________________________________________________________________________
47260 [ 23661] By: rgs                                   on 2004/12/17  09:08:23
47261         Log: Subject: Re: [perl #32717] BeOS specific Updates
47262              From: bonefish@cs.tu-berlin.de
47263              Date: Fri, 17 Dec 2004 01:17:40 +0100
47264              Message-Id: <20041217011740.14398.1@cs.tu-berlin.de>
47265      Branch: perl
47266            - beos/beos_flock_server.cpp beos/beos_flock_server.h
47267            ! MANIFEST Makefile.SH README.beos beos/beos.c beos/beosish.h
47268            ! hints/beos.sh
47269 ____________________________________________________________________________
47270 [ 23660] By: rgs                                   on 2004/12/16  16:09:20
47271         Log: Subject: [PATCH] bop.t follow-up to #23645
47272              From: "Craig A. Berry" <craigberry@mac.com>
47273              Date: Thu, 16 Dec 2004 08:53:32 -0600
47274              Message-ID: <41C1A16C.9040700@mac.com>
47275      Branch: perl
47276            ! t/op/bop.t
47277 ____________________________________________________________________________
47278 [ 23659] By: rgs                                   on 2004/12/16  16:05:49
47279         Log: Subject: Re: Can't locate auto/POSIX/autosplit.ix [perl #24445] [PATCH]
47280              From: Andy Dougherty <doughera@lafayette.edu>
47281              Date: Thu, 16 Dec 2004 09:57:44 -0500 (EST)
47282              Message-ID: <Pine.SOL.4.58.0412160953470.20202@maxwell.phys.lafayette.edu>
47283      Branch: perl
47284            ! ext/POSIX/Makefile.PL
47285 ____________________________________________________________________________
47286 [ 23658] By: rgs                                   on 2004/12/16  15:58:06
47287         Log: Two pod2html patches from Dave Sparks :
47288
47289              Fix anchors for some function names
47290              Subject: pod2html fragment fix [PATCH]
47291              From: Gisle Aas <gisle@ActiveState.com>
47292              Date: 11 Nov 2004 14:36:46 +0100
47293              Message-ID: <lrk6sso6c1.fsf@caliper.activestate.com>
47294
47295              Subject: Make 'pod2html --quiet' be quiet [PATCH]
47296              From: Gisle Aas <gisle@ActiveState.com>
47297              Date: 11 Nov 2004 15:19:58 +0100
47298              Message-ID: <lrbre4o4c1.fsf@caliper.activestate.com>
47299      Branch: perl
47300            ! lib/Pod/Html.pm
47301 ____________________________________________________________________________
47302 [ 23657] By: rgs                                   on 2004/12/16  15:43:02
47303         Log: Pod::Html is not part of the podlators distribution
47304      Branch: perl
47305            ! Porting/Maintainers.pl
47306 ____________________________________________________________________________
47307 [ 23656] By: rgs                                   on 2004/12/15  16:39:29
47308         Log: Security fix from Debian in the debugger (in the setterm()
47309              function), from:
47310              Subject: Re: Security patch from Debian?
47311              From: Brendan O'Dea <bod@debian.org>
47312              Date: Thu, 2 Dec 2004 13:42:17 +1100
47313              Message-ID: <20041202024217.GA12670@londo.c47.org>
47314      Branch: perl
47315            ! lib/perl5db.pl
47316 ____________________________________________________________________________
47317 [ 23655] By: rgs                                   on 2004/12/15  15:14:05
47318         Log: A couple of SCO compilation patches
47319
47320              Subject: [perl #3097] Re: SCO5 XS dyn loading fails
47321              From: "Ilya N. Golubev" <gin@mo.msk.ru>
47322              Date: Tue, 14 Dec 2004 22:37:27 +0300
47323              Message-ID: <028941bf40f648-gin@mo.msk.ru>
47324
47325              Subject: Re: [perl #3100] NaN passed to gcvt [PATCH]
47326              From: Andy Dougherty <doughera@lafayette.edu>
47327              Date: Wed, 15 Dec 2004 10:29:22 -0500 (EST)
47328              Message-ID: <Pine.SOL.4.58.0412150956360.3441@maxwell.phys.lafayette.edu>
47329      Branch: perl
47330            ! hints/sco.sh
47331 ____________________________________________________________________________
47332 [ 23654] By: rgs                                   on 2004/12/15  13:16:06
47333         Log: Upgrade to Test::Simple 0.54
47334      Branch: perl
47335            + lib/Test/Simple/t/is_fh.t
47336            ! MANIFEST lib/Test/Builder.pm lib/Test/More.pm
47337            ! lib/Test/Simple.pm lib/Test/Simple/Changes
47338            ! lib/Test/Simple/t/details.t lib/Test/Simple/t/fail-more.t
47339            ! lib/Test/Simple/t/harness_active.t
47340            ! lib/Test/Simple/t/is_deeply.t lib/Test/Simple/t/maybe_regex.t
47341            ! lib/Test/Simple/t/plan_no_plan.t lib/Test/Simple/t/sort_bug.t
47342            ! lib/Test/Simple/t/todo.t lib/Test/Simple/t/undef.t
47343 ____________________________________________________________________________
47344 [ 23653] By: rgs                                   on 2004/12/15  12:43:37
47345         Log: Upgrade to ExtUtils::MakeMaker 6.25
47346      Branch: perl
47347            + lib/ExtUtils/t/dir_target.t
47348            ! MANIFEST lib/ExtUtils/Changes lib/ExtUtils/Command.pm
47349            ! lib/ExtUtils/Command/MM.pm lib/ExtUtils/Liblist/Kid.pm
47350            ! lib/ExtUtils/MANIFEST.SKIP lib/ExtUtils/META.yml
47351            ! lib/ExtUtils/MM.pm lib/ExtUtils/MM_Any.pm
47352            ! lib/ExtUtils/MM_MacOS.pm lib/ExtUtils/MM_NW5.pm
47353            ! lib/ExtUtils/MM_Unix.pm lib/ExtUtils/MM_VMS.pm
47354            ! lib/ExtUtils/MM_Win32.pm lib/ExtUtils/MM_Win95.pm
47355            ! lib/ExtUtils/MakeMaker.pm lib/ExtUtils/MakeMaker/FAQ.pod
47356            ! lib/ExtUtils/MakeMaker/Tutorial.pod lib/ExtUtils/Manifest.pm
47357            ! lib/ExtUtils/NOTES lib/ExtUtils/README lib/ExtUtils/instmodsh
47358            ! lib/ExtUtils/t/Command.t lib/ExtUtils/t/INST_PREFIX.t
47359            ! lib/ExtUtils/t/Liblist.t lib/ExtUtils/t/MM_Unix.t
47360            ! lib/ExtUtils/t/MM_Win32.t lib/ExtUtils/t/hints.t
47361            ! lib/ExtUtils/t/oneliner.t lib/ExtUtils/t/parse_version.t
47362            ! lib/ExtUtils/t/prereq_print.t lib/ExtUtils/t/split_command.t
47363 ____________________________________________________________________________
47364 [ 23652] By: rgs                                   on 2004/12/14  16:22:42
47365         Log: Fix for [perl #32491] h2xs incorrectly parses enums with implicit values
47366      Branch: perl
47367            ! utils/h2xs.PL
47368 ____________________________________________________________________________
47369 [ 23651] By: rgs                                   on 2004/12/14  12:17:25
47370         Log: Subject: Re: B::walkoptree segfaults
47371              From: Alexey Tourbin <at@altlinux.ru>
47372              Date: Fri, 3 Dec 2004 05:06:49 +0300
47373              Message-ID: <20041203020649.GD3898@solemn.turbinal.org>
47374      Branch: perl
47375            ! ext/B/B.pm
47376 ____________________________________________________________________________
47377 [ 23650] By: rgs                                   on 2004/12/14  11:21:53
47378         Log: Make Sys::Syslog stricture-compliant
47379      Branch: perl
47380            ! ext/Sys/Syslog/Syslog.pm
47381 ____________________________________________________________________________
47382 [ 23649] By: rgs                                   on 2004/12/14  10:35:57
47383         Log: Allow escaping %m as %%m in Sys::Syslog format strings
47384              (suggested by Joshua Richardson <jric@yahoo-inc.com>
47385              and Yitzchak Scott-Thoennes)
47386      Branch: perl
47387            ! ext/Sys/Syslog/Syslog.pm
47388 ____________________________________________________________________________
47389 [ 23648] By: rgs                                   on 2004/12/14  10:22:48
47390         Log: Subject: [perl #24343] [PATCH] -w vs. -s
47391              From: "Steve Peters via RT" <perlbug-followup@perl.org>
47392              Date: 14 Dec 2004 06:41:34 -0000
47393              Message-ID: <rt-3.0.11-24343-103027.13.3005637364295@perl.org>
47394      Branch: perl
47395            ! pod/perlrun.pod
47396 ____________________________________________________________________________
47397 [ 23647] By: merijn                                on 2004/12/14  07:51:43
47398         Log: Subject: [perl #3274] [PATCH] Documentation for utime should be improved
47399              Date: 14 Dec 2004 06:29:23 -0000
47400              From: "Steve Peters via RT" <perlbug-followup@perl.org>
47401              Message-ID: <rt-3.0.11-3274-103026.2.21000805211489@perl.org>
47402      Branch: perl
47403            ! pod/perlfaq5.pod
47404 ____________________________________________________________________________
47405 [ 23646] By: rgs                                   on 2004/12/14  07:41:08
47406         Log: Fix test added in change 23645 with an eval()
47407      Branch: perl
47408            ! t/op/bop.t
47409 ____________________________________________________________________________
47410 [ 23645] By: rgs                                   on 2004/12/14  07:28:57
47411         Log: Test patch for already-solved bug #33003,
47412              by Michael G Schwern.
47413      Branch: perl
47414            ! t/op/bop.t
47415 ____________________________________________________________________________
47416 [ 23644] By: steveh                                on 2004/12/13  17:26:46
47417         Log: Document gv_stashpvn
47418
47419              This is already in the API supported by Devel::PPPort, and is
47420              more efficient than gv_stashpv if the length is already known.
47421      Branch: perl
47422            ! embed.fnc gv.c pod/perlapi.pod
47423 ____________________________________________________________________________
47424 [ 23643] By: rgs                                   on 2004/12/13  10:02:57
47425         Log: Subject: [PATCH] FileCache without import
47426              From: Michael G Schwern <schwern@pobox.com>
47427              Date: Sat, 11 Dec 2004 18:58:32 -0500
47428              Message-ID: <20041211235832.GA13462@windhund.schwern.org>
47429      Branch: perl
47430            + lib/FileCache/t/07noimport.t
47431            ! MANIFEST lib/FileCache.pm
47432 ____________________________________________________________________________
47433 [ 23642] By: rgs                                   on 2004/12/13  09:54:23
47434         Log: Subject: [PATCH] perlipc typo
47435              From: Brendan O'Dea <bod@debian.org>
47436              Date: Sun, 12 Dec 2004 10:25:04 +1100
47437              Message-ID: <20041211232504.GA8380@londo.c47.org>
47438      Branch: perl
47439            ! pod/perlipc.pod
47440 ____________________________________________________________________________
47441 [ 23641] By: rgs                                   on 2004/12/13  09:41:21
47442         Log: Subject: [PATCH] t/op/taint.t follow-up to #23635
47443              From: "Craig A. Berry" <craigberry@mac.com>
47444              Date: Sat, 11 Dec 2004 11:03:57 -0600
47445              Message-ID: <41BB287D.6090001@mac.com>
47446      Branch: perl
47447            ! t/op/taint.t
47448 ____________________________________________________________________________
47449 [ 23640] By: rgs                                   on 2004/12/13  08:39:34
47450         Log: Subject: Re: Smoke [5.9.2] 23634 FAIL(F) openbsd 3.6 (i386/1 cpu) [PATCH]
47451              From: Gisle Aas <gisle@ActiveState.com>
47452              Date: 11 Dec 2004 02:57:19 -0800
47453              Message-ID: <lrr7lxje5s.fsf_-_@caliper.activestate.com>
47454      Branch: perl
47455            ! utf8.c
47456 ____________________________________________________________________________
47457 [ 23639] By: rgs                                   on 2004/12/10  22:02:52
47458         Log: Subject: [PATCH] Re: [perl #2562] wantarray fails in END, INIT, and CHECK blocks
47459              From: mjtg@cam.ac.uk (Mike Guy)
47460              Date: Fri, 10 Dec 2004 19:08:01 +0000
47461              Message-ID: <E1Ccq7V-00057s-9s@virgo.cus.cam.ac.uk>
47462      Branch: perl
47463            ! pod/perlfunc.pod
47464 ____________________________________________________________________________
47465 [ 23638] By: steveh                                on 2004/12/10  14:58:59
47466         Log: Fix Win32 breakage caused by change 23610
47467
47468              Simply skip the offending tests on Win32.  There is no sense in testing
47469              that $Config dir entries appear in @INC because the $Config entries
47470              relate to where perl.exe will be installed (as per INST_DRV/INST_TOP in
47471              win32/Makefile), whereas @INC entries are dynamic, based on where
47472              perlXX.dll is currently located.
47473      Branch: perl
47474            ! lib/Config.t
47475 ____________________________________________________________________________
47476 [ 23637] By: rgs                                   on 2004/12/10  10:17:47
47477         Log: Pod nit ([perl #32800])
47478      Branch: perl
47479            ! pod/perlfunc.pod
47480 ____________________________________________________________________________
47481 [ 23636] By: rgs                                   on 2004/12/10  10:02:12
47482         Log: Subject: [PATCH] Test rt.perl.org 5900
47483              From: Michael G Schwern <schwern@pobox.com>
47484              Date: Thu, 9 Dec 2004 22:11:59 -0500
47485              Message-ID: <20041210031159.GA7629@windhund.schwern.org>
47486      Branch: perl
47487            ! t/op/taint.t
47488 ____________________________________________________________________________
47489 [ 23635] By: rgs                                   on 2004/12/10  09:51:44
47490         Log: Subject: [PATCH] cleanup t/op/taint.t
47491              From: Michael G Schwern <schwern@pobox.com>
47492              Date: Fri, 10 Dec 2004 02:04:49 -0500
47493              Message-ID: <20041210070448.GA22347@windhund.schwern.org>
47494
47495              Subject: [PATCH] Add todo_skip() to test.pl
47496              From: Michael G Schwern <schwern@pobox.com>
47497              Date: Fri, 10 Dec 2004 04:27:06 -0500
47498              Message-ID: <20041210092706.GA23378@windhund.schwern.org>
47499      Branch: perl
47500            ! t/op/taint.t t/test.pl
47501 ____________________________________________________________________________
47502 [ 23634] By: nicholas                              on 2004/12/09  22:51:03
47503         Log: Evade using @ in the 1 liner with some perl 1 syntax.
47504      Branch: perl
47505            ! lib/Config.t
47506 ____________________________________________________________________________
47507 [ 23633] By: rgs                                   on 2004/12/09  18:50:16
47508         Log: Subject: RE: [PATCH perl.h toke.c utf8.c] minor format clean up
47509              From: Robin Barker <Robin.Barker@npl.co.uk>
47510              Date: Wed, 1 Dec 2004 15:15:44 -0000
47511              Message-ID: <533D273D4014D411AB1D00062938C4D90849C521@hotel.npl.co.uk>
47512      Branch: perl
47513            ! perl.h
47514 ____________________________________________________________________________
47515 [ 23632] By: rgs                                   on 2004/12/09  17:12:12
47516         Log: Subject: UTF8_ALLOW_ANYUV should not allow overlong sequences [PATCH]
47517              From: Gisle Aas <gisle@activestate.com>
47518              Date: 06 Dec 2004 02:59:24 -0800
47519              Message-ID: <lrmzwrae0j.fsf_-_@caliper.activestate.com>
47520      Branch: perl
47521            ! utf8.h
47522 ____________________________________________________________________________
47523 [ 23631] By: rgs                                   on 2004/12/09  16:03:01
47524         Log: Subject: [PATCH] :encoding(utf8) broken in perl-5.8.6
47525              From: Gisle Aas <gisle@ActiveState.com>
47526              Date: 03 Dec 2004 06:09:19 -0800
47527              Message-ID: <lrllcfeank.fsf_-_@caliper.activestate.com>
47528      Branch: perl
47529            ! ext/PerlIO/t/encoding.t
47530 ____________________________________________________________________________
47531 [ 23630] By: rgs                                   on 2004/12/09  15:49:07
47532         Log: Upgrade to perldoc 3.14
47533      Branch: perl
47534            ! lib/Pod/Perldoc.pm lib/Pod/Perldoc/ToMan.pm
47535 ____________________________________________________________________________
47536 [ 23629] By: rgs                                   on 2004/12/09  09:57:42
47537         Log: Fix test to cope with the previous h2ph change.
47538      Branch: perl
47539            ! t/lib/h2ph.pht
47540 ____________________________________________________________________________
47541 [ 23628] By: rgs                                   on 2004/12/08  16:50:30
47542         Log: Subject: [perl #32962] h2ph - use of local() in generated code
47543              From: Peter.Dintelmann@dresdner-bank.com (via RT)
47544              Date: 8 Dec 2004 15:49:32 -0000
47545              Message-ID: <rt-3.0.11-32962-102394.11.065973521948@perl.org>
47546      Branch: perl
47547            ! utils/h2ph.PL
47548 ____________________________________________________________________________
47549 [ 23627] By: rgs                                   on 2004/12/08  16:19:38
47550         Log: Subject: [PATCH] Re: [perl #32949] FileCache only works in "main" package
47551              From: "Jos I. Boumans" <kane@xs4all.net>
47552              Date: Wed, 8 Dec 2004 14:24:19 +0100
47553              Message-Id: <7728A4F5-491C-11D9-9CA3-000A95EF62E2@xs4all.net>
47554      Branch: perl
47555            + lib/FileCache/t/06export.t
47556            ! MANIFEST lib/FileCache.pm
47557 ____________________________________________________________________________
47558 [ 23626] By: nicholas                              on 2004/12/07  23:39:46
47559         Log: Avoid getting the stash name twice (at least visually, if not also
47560              in the generated code)
47561      Branch: perl
47562            ! sv.c
47563 ____________________________________________________________________________
47564 [ 23624] By: rgs                                   on 2004/12/07  18:26:48
47565         Log: Upgrade to Encode 2.09
47566      Branch: perl
47567            ! ext/Encode/Changes ext/Encode/Encode.pm ext/Encode/Encode.xs
47568            ! ext/Encode/META.yml ext/Encode/Unicode/Unicode.xs
47569            ! ext/Encode/t/Encode.t ext/Encode/t/fallback.t
47570 ____________________________________________________________________________
47571 [ 23623] By: nicholas                              on 2004/12/07  15:27:09
47572         Log: Revert part of the change to gv_fullname4(), as the change seems to
47573              be fractionally slower. Re-investigation prompted by a comment from
47574              Tim Bunce, who seems to be more on the ball than I am.
47575      Branch: perl
47576            ! gv.c
47577 ____________________________________________________________________________
47578 [ 23622] By: steveh                                on 2004/12/07  10:50:26
47579         Log: Update AUTHORS (for changes #23200 and #23621)
47580      Branch: perl
47581            ! AUTHORS
47582 ____________________________________________________________________________
47583 [ 23621] By: steveh                                on 2004/12/07  10:35:59
47584         Log: Updates to README.win32 (aka perlwin32), with some changes.
47585
47586              Subject: Patch to README.win32 distributed with 5.8.6 for building under .net / MSVC7 (free)
47587              From: Max Maischein <corion@corion.net>
47588              Date: Sun, 05 Dec 2004 19:39:40 +0100
47589              Message-ID: <41B355EC.9010505@corion.net>
47590      Branch: perl
47591            ! README.win32
47592 ____________________________________________________________________________
47593 [ 23620] By: rgs                                   on 2004/12/06  22:22:11
47594         Log: Upgrade to Term::ANSIColor 1.09
47595      Branch: perl
47596            ! lib/Term/ANSIColor.pm lib/Term/ANSIColor/ChangeLog
47597            ! lib/Term/ANSIColor/README lib/Term/ANSIColor/test.pl
47598 ____________________________________________________________________________
47599 [ 23619] By: rgs                                   on 2004/12/06  21:54:55
47600         Log: Small addition to perlsec by Stas Bekman.
47601      Branch: perl
47602            ! pod/perlsec.pod
47603 ____________________________________________________________________________
47604 [ 23618] By: steveh                                on 2004/12/06  15:54:30
47605         Log: Fix another Win32 breakage caused by change 23554
47606      Branch: perl
47607            ! t/win32/system.t
47608 ____________________________________________________________________________
47609 [ 23617] By: nicholas                              on 2004/12/06  15:35:39
47610         Log: Break out setting $^X into its own static function S_set_caret_X
47611      Branch: perl
47612            ! perl.c
47613 ____________________________________________________________________________
47614 [ 23616] By: steveh                                on 2004/12/06  14:42:32
47615         Log: Fix typo from change 23554 which screwed up Windows smokes
47616      Branch: perl
47617            ! win32/Makefile
47618 ____________________________________________________________________________
47619 [ 23615] By: nicholas                              on 2004/12/06  14:39:59
47620         Log: sanity check the arguments to runperl(), to try to avoid it
47621              hanging waiting on STDIN for a script.
47622      Branch: perl
47623            ! t/test.pl
47624 ____________________________________________________________________________
47625 [ 23614] By: nicholas                              on 2004/12/06  13:41:45
47626         Log: Remove spurious semicolons
47627              (As these 2 are spare, I guess I should send them to Mark Rhodes
47628              (former office mate) as he often said that he kept mislaying his)
47629      Branch: perl
47630            ! gv.h
47631 ____________________________________________________________________________
47632 [ 23613] By: nicholas                              on 2004/12/06  13:10:24
47633         Log: Tests for Config.pm much better now - toDONE
47634      Branch: perl
47635            ! pod/perltodo.pod
47636 ____________________________________________________________________________
47637 [ 23612] By: nicholas                              on 2004/12/06  13:01:36
47638         Log: Turn gv_fullname3 and gv_efullname3 into macros that call
47639              gv_fullname4 and gv_efullname4 directly, saving overhead.
47640      Branch: perl
47641            ! embed.fnc embed.h gv.h proto.h
47642 ____________________________________________________________________________
47643 [ 23611] By: merijn                                on 2004/12/06  12:00:10
47644         Log: New Itanium servers
47645      Branch: perl
47646            ! README.hpux
47647 ____________________________________________________________________________
47648 [ 23610] By: nicholas                              on 2004/12/06  10:35:00
47649         Log: Check that @INC entries and %Config path entries are consistent.
47650      Branch: perl
47651            ! lib/Config.t
47652 ____________________________________________________________________________
47653 [ 23609] By: nicholas                              on 2004/12/03  22:17:32
47654         Log: gv_fullname4() can get rid of the main:: for us.
47655              (well, actually, it never puts it in)
47656      Branch: perl
47657            ! op.c
47658 ____________________________________________________________________________
47659 [ 23608] By: rgs                                   on 2004/12/03  21:51:45
47660         Log: $foo::_ was wrongly forced as $main::_.
47661              Since we still want "our $_" to be always forced to $main::_,
47662              deplace the forcing code at our-pad allocation time.
47663              (Making execution probably a tiny bit faster)
47664      Branch: perl
47665            ! gv.c op.c t/op/mydef.t
47666 ____________________________________________________________________________
47667 [ 23607] By: nicholas                              on 2004/12/03  20:38:37
47668         Log: Remove double checking of acceptable switches on tr/// ops.
47669      Branch: perl
47670            ! toke.c
47671 ____________________________________________________________________________
47672 [ 23606] By: nicholas                              on 2004/12/03  20:07:31
47673         Log: use (c == '$' || c == '@' || c == '%') instead of strchr("$@%", c)
47674              The latter gives larger code, is less clear and can't be any faster
47675      Branch: perl
47676            ! perl.c toke.c
47677 ____________________________________________________________________________
47678 [ 23605] By: nicholas                              on 2004/12/03  18:56:31
47679         Log: Small code tidy up in gv_fullname4
47680      Branch: perl
47681            ! gv.c
47682 ____________________________________________________________________________
47683 [ 23604] By: nicholas                              on 2004/12/03  18:26:43
47684         Log: There are clearer ways of saying m/^[ab]$/ than strchr("ab", c)
47685              They seem to produce slightly smaller object code too.
47686      Branch: perl
47687            ! gv.c
47688 ____________________________________________________________________________
47689 [ 23603] By: nicholas                              on 2004/12/03  17:02:43
47690         Log: Fix a typo in an assert(). It helps to compile with -DDEBUGGING
47691      Branch: perl
47692            ! perl.c
47693 ____________________________________________________________________________
47694 [ 23602] By: nicholas                              on 2004/12/03  15:50:15
47695         Log: Pull out the duplicateded push @INC, $_ if -e $_ code from
47696              S_pushinc into a new function S_pushinc_if_exists
47697              Avoid the SV copy when pushing onto @INC by creating a new scratch
47698              SV each time a push is done.
47699      Branch: perl
47700            ! perl.c
47701 ____________________________________________________________________________
47702 [ 23601] By: nicholas                              on 2004/12/02  22:35:34
47703         Log: Subject: [PATCH] configure.com: no more CONFIG=true
47704              From: "Craig A. Berry" <craigberry@mac.com>
47705              Message-ID: <41AF87BA.1080108@mac.com>
47706              Date: Thu, 02 Dec 2004 15:23:06 -0600
47707      Branch: perl
47708            ! configure.com
47709 ____________________________________________________________________________
47710 [ 23598] By: nicholas                              on 2004/12/01  23:13:32
47711         Log: 2 new BeOS files were missing
47712      Branch: perl
47713            ! MANIFEST
47714 ____________________________________________________________________________
47715 [ 23592] By: nicholas                              on 2004/12/01  18:54:14
47716         Log: Subject: [PATCH] Makefile.SH: de-parallelise mktables
47717              From: Jarkko Hietaniemi <jhi@iki.fi>
47718              Message-ID: <41ADFD95.4030007@iki.fi>
47719              Date: Wed, 01 Dec 2004 19:21:25 +0200
47720      Branch: perl
47721            ! Makefile.SH
47722 ____________________________________________________________________________
47723 [ 23588] By: nicholas                              on 2004/12/01  16:52:45
47724         Log: &test in constant.t is vestigial, so amputate it.
47725      Branch: perl
47726            ! lib/constant.t
47727 ____________________________________________________________________________
47728 [ 23587] By: nicholas                              on 2004/12/01  16:35:10
47729         Log: Tidy up the reference name stringification to save getting the
47730              hash name twice. Pleasant side effect is 44 byte smaller object
47731              file. (A small win is still a win)
47732      Branch: perl
47733            ! sv.c
47734 ____________________________________________________________________________
47735 [ 23584] By: merijn                                on 2004/12/01  13:44:24
47736         Log: Subject: [perl #32717] BeOS specific Updates
47737              Date: 30 Nov 2004 15:38:32 -0000
47738              From: Ingo Weinhold (via RT) <perlbug-followup@perl.org>
47739              Message-ID: <rt-3.0.11-32717-101307.19.7097750538509@perl.org>
47740      Branch: perl
47741            + beos/beos_flock_server.cpp beos/beos_flock_server.h
47742            ! beos/beos.c beos/beosish.h ext/Errno/Errno_pm.PL
47743            ! ext/File/Glob/t/basic.t hints/beos.sh lib/ExtUtils/t/MM_BeOS.t
47744            ! lib/Tie/File/t/16_handle.t perl.c t/op/magic.t
47745 ____________________________________________________________________________
47746 [ 23583] By: merijn                                on 2004/12/01  13:29:18
47747         Log: Subject: [PATCH] add -I../lib to VMS build to find Config_heavy.pl
47748              Date: Wed, 01 Dec 2004 07:24:45 -0600
47749              From: "Craig A. Berry" <craigberry@mac.com>
47750              Message-ID: <41ADC61D.8010407@mac.com>
47751      Branch: perl
47752            ! vms/descrip_mms.template
47753 ____________________________________________________________________________
47754 [ 23581] By: rgs                                   on 2004/12/01  13:01:55
47755         Log: MANIFEST.SKIP is missing from the list of files that come
47756              with MakeMaker
47757      Branch: perl
47758            ! Porting/Maintainers.pl
47759 ____________________________________________________________________________
47760 [ 23577] By: nicholas                              on 2004/11/30  16:40:06
47761         Log: Add placeholders for the new strlcat and strlcpy entries in
47762              config.sh, to ensure that the config.h generated for cross-
47763              compilation will still work.
47764      Branch: perl
47765            ! Cross/config.sh-arm-linux
47766 ____________________________________________________________________________
47767 [ 23575] By: nicholas                              on 2004/11/30  15:32:17
47768         Log: Let pod/buildtoc resort the MANIFEST the way it wants it
47769      Branch: perl
47770            ! MANIFEST
47771 ____________________________________________________________________________
47772 [ 23574] By: nicholas                              on 2004/11/30  15:31:14
47773         Log: Add perl586delta.pod to all the necessary makefiles and tables of
47774              contents.
47775      Branch: perl
47776            ! pod.lst pod/perl.pod pod/perltoc.pod vms/descrip_mms.template
47777            ! win32/pod.mak
47778 ____________________________________________________________________________
47779 [ 23571] By: merijn                                on 2004/11/30  15:11:01
47780         Log: Subject: Re: [PATCH] Re: Smoke [5.9.2] 23566 FAIL(X) openbsd 3.6 (i386/1 cpu)
47781              Date: Tue, 30 Nov 2004 09:29:06 -0600
47782              From: Steve Peters <steve@fisharerojo.org>
47783              Message-ID: <20041130152906.GA555@mccoy.peters.homeunix.org>
47784      Branch: perl
47785            ! hints/openbsd.sh
47786 ____________________________________________________________________________
47787 [ 23570] By: nicholas                              on 2004/11/30  14:57:53
47788         Log: Integrate perlhist entries for 5.8.6 and its perldelta to blead
47789      Branch: perl
47790           +> pod/perl586delta.pod
47791            ! MANIFEST
47792           !> pod/perlhist.pod
47793 ____________________________________________________________________________
47794 [ 23568] By: rgs                                   on 2004/11/30  13:02:16
47795         Log: Protection against trailing spaces in embed.fnc
47796      Branch: perl
47797            ! autodoc.pl embed.pl
47798 ____________________________________________________________________________
47799 [ 23567] By: rgs                                   on 2004/11/30  12:57:30
47800         Log: Remove trailing whitespace that found their way in the docs
47801              (spotted by Stas Bekman)
47802      Branch: perl
47803            ! embed.fnc pod/perlapi.pod proto.h
47804 ____________________________________________________________________________
47805 [ 23566] By: rgs                                   on 2004/11/29  12:30:31
47806         Log: Upgrade to Test::Simple 0.53
47807      Branch: perl
47808            + lib/Test/Simple/t/circular_data.t
47809            + lib/Test/Simple/t/overload_threads.t
47810            + lib/Test/Simple/t/plan_bad.t
47811            + lib/Test/Simple/t/plan_shouldnt_import.t
47812            + lib/Test/Simple/t/require_ok.t lib/Test/Simple/t/sort_bug.t
47813            ! MANIFEST lib/Test/Builder.pm lib/Test/More.pm
47814            ! lib/Test/Simple.pm lib/Test/Simple/Changes
47815            ! lib/Test/Simple/README lib/Test/Simple/TODO
47816            ! lib/Test/Simple/t/00signature.t lib/Test/Simple/t/More.t
47817            ! lib/Test/Simple/t/diag.t lib/Test/Simple/t/fail_one.t
47818            ! lib/Test/Simple/t/is_deeply.t lib/Test/Simple/t/overload.t
47819            ! lib/Test/Simple/t/todo.t t/lib/TieOut.pm
47820 ____________________________________________________________________________
47821 [ 23564] By: nicholas                              on 2004/11/28  16:13:56
47822         Log: Skip generating all the code to deal with "" strings in config.sh
47823              if there aren't any. '' only code is much simpler.
47824      Branch: perl
47825            ! configpm
47826 ____________________________________________________________________________
47827 [ 23563] By: nicholas                              on 2004/11/28  15:00:15
47828         Log: Given that there is a pre-built cache, no need for @v_fast
47829      Branch: perl
47830            ! configpm
47831 ____________________________________________________________________________
47832 [ 23562] By: nicholas                              on 2004/11/28  13:56:30
47833         Log: The byteorder code doesn't need to be in Config.pm if byteorder
47834              isn't actually a frequently looked up value.
47835      Branch: perl
47836            ! configpm
47837 ____________________________________________________________________________
47838 [ 23561] By: nicholas                              on 2004/11/28  13:20:39
47839         Log: Need to stub the public functions to keep some existing code
47840              working.
47841              No need to keep $Config_SH around in memory when we can easily
47842              re-create it.
47843      Branch: perl
47844            ! configpm
47845 ____________________________________________________________________________
47846 [ 23558] By: nicholas                              on 2004/11/27  23:06:41
47847         Log: Generate the precached %Config entries based on some empirical
47848              data, rather than just guesswork.
47849      Branch: perl
47850            ! Makefile.SH configpm
47851 ____________________________________________________________________________
47852 [ 23557] By: nicholas                              on 2004/11/27  21:26:42
47853         Log: Subject: [PATCH] Re: getting Config.pm on a diet
47854              From: "Craig A. Berry" <craigberry@mac.com>
47855              Message-ID: <41A8F225.7080902@mac.com>
47856              Date: Sat, 27 Nov 2004 15:31:17 -0600
47857      Branch: perl
47858            ! vms/descrip_mms.template
47859 ____________________________________________________________________________
47860 [ 23555] By: nicholas                              on 2004/11/27  17:28:47
47861         Log: Hateful cAsE iNsEnSiTiVe file systems
47862      Branch: perl
47863            ! configpm
47864 ____________________________________________________________________________
47865 [ 23554] By: nicholas                              on 2004/11/27  16:56:35
47866         Log: Put Config.pm on a diet. 3K rather than 32K
47867              configpm now generates 2 files, a small Config.pm containing the
47868              commonly used functions and values, which AUTOLOADs a
47869              Config_heavy.pl containing anything else needed.
47870              The "common" values in the small Config.pm may need some
47871              tweaking, based on real world data.
47872      Branch: perl
47873            ! Makefile.SH configpm vms/descrip_mms.template win32/Makefile
47874            ! win32/makefile.mk
47875 ____________________________________________________________________________
47876 [ 23550] By: nicholas                              on 2004/11/27  14:43:37
47877         Log: Clarify the return values of pos, particularly 0 and undef, as
47878              suggested by Stas Bekman
47879      Branch: perl
47880            ! pod/perlfunc.pod
47881 ____________________________________________________________________________
47882 [ 23549] By: nicholas                              on 2004/11/27  14:24:21
47883         Log: Document the interaction of PERL_USE_SAVE_PUTENV and
47884              PL_use_safe_putenv, based on text by Stas Bekman
47885      Branch: perl
47886            ! INSTALL
47887 ____________________________________________________________________________
47888 [ 23548] By: rgs                                   on 2004/11/26  17:20:46
47889         Log: Subject: [perl #32639] [PATCH] Bug in Term::Complete Module with $_ Usage
47890              From: "Steve Peters via RT" <perlbug-followup@perl.org>
47891              Date: 26 Nov 2004 17:14:33 -0000
47892              Message-ID: <rt-3.0.11-32639-101066.11.6172971744206@perl.org>
47893      Branch: perl
47894            ! lib/Term/Complete.pm
47895 ____________________________________________________________________________
47896 [ 23547] By: rgs                                   on 2004/11/26  15:16:59
47897         Log: Freak out if h2ph has to translate a macro that    contains assembly code.
47898
47899              Subject: [PATCH] h2ph vs __asm__
47900              From: Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>
47901              Date: Thu, 25 Nov 2004 17:24:43 +0100
47902              Message-ID: <20041125172443.757a4833@dhcp123.mandrakesoft.com>
47903      Branch: perl
47904            ! utils/h2ph.PL
47905 ____________________________________________________________________________
47906 [ 23546] By: rgs                                   on 2004/11/26  15:07:47
47907         Log: Doc nit for B::Lint
47908              Subject: [PATCH] B::Lint
47909              From: Andy Lester <andy@petdance.com>
47910              Date: Fri, 26 Nov 2004 00:30:48 -0600
47911              Message-ID: <20041126063048.GA10161@petdance.com>
47912      Branch: perl
47913            ! ext/B/B/Lint.pm
47914 ____________________________________________________________________________
47915 [ 23545] By: nicholas                              on 2004/11/26  12:33:34
47916         Log: The change to the internal representation introduced a bug whereby
47917              the key returned by FIRSTKEY had an erroneous leading newline.
47918              EXISTS was also buggy.
47919      Branch: perl
47920            ! configpm lib/Config.t
47921 ____________________________________________________________________________
47922 [ 23544] By: nicholas                              on 2004/11/26  11:29:21
47923         Log: Make configpm and the generated Config.pm strict and warnings
47924              clean.
47925      Branch: perl
47926            ! configpm
47927 ____________________________________________________________________________
47928 [ 23543] By: steveh                                on 2004/11/26  10:56:12
47929         Log: Fix Win32 breakage caused by changes 23535/23542.
47930      Branch: perl
47931            ! lib/Config.t
47932 ____________________________________________________________________________
47933 [ 23542] By: nicholas                              on 2004/11/25  23:41:05
47934         Log: Generate the virtual entries at Config.pm build time, as they
47935              don't change. This lets us get rid of the entire "fetch_virtual"
47936              baggage, and makes the config_re lookup work for the virtual
47937              entries.
47938      Branch: perl
47939            ! configpm lib/Config.t
47940 ____________________________________________________________________________
47941 [ 23541] By: nicholas                              on 2004/11/25  22:50:15
47942         Log: Cheat. (Add a leading newline, and so remove all the special
47943              casing for "if we're at the start of $Config_SH")
47944      Branch: perl
47945            ! configpm lib/Config.t
47946 ____________________________________________________________________________
47947 [ 23538] By: nicholas                              on 2004/11/25  21:37:23
47948         Log: Add an exists test for the things we loop over
47949      Branch: perl
47950            ! lib/Config.t
47951 ____________________________________________________________________________
47952 [ 23537] By: nicholas                              on 2004/11/25  21:33:23
47953         Log: The first entry in the virtual config.sh is special cased. So
47954              test it.
47955      Branch: perl
47956            ! lib/Config.t
47957 ____________________________________________________________________________
47958 [ 23536] By: nicholas                              on 2004/11/25  21:00:56
47959         Log: Make $Config{libs_nolargefiles} and
47960              $Config{libswanted_nolargefiles} work. (For the first time)
47961      Branch: perl
47962            ! configpm lib/Config.t
47963 ____________________________________________________________________________
47964 [ 23535] By: nicholas                              on 2004/11/25  20:10:43
47965         Log: Test the currently working virtual %Config entries
47966      Branch: perl
47967            ! lib/Config.t
47968 ____________________________________________________________________________
47969 [ 23534] By: rgs                                   on 2004/11/24  16:09:42
47970         Log: Subject: RC1 pod fix #anchor
47971              From: Stas Bekman <stas@stason.org>
47972              Date: Wed, 24 Nov 2004 10:57:21 -0500
47973              Message-ID: <41A4AF61.9080408@stason.org>
47974      Branch: perl
47975            ! pod/perlrun.pod
47976 ____________________________________________________________________________
47977 [ 23533] By: rgs                                   on 2004/11/24  16:07:38
47978         Log: Subject: [patch pod/perlipc] use POSIX; w/o () is a bad idea
47979              From: Stas Bekman <stas@stason.org>
47980              Date: Wed, 24 Nov 2004 11:25:14 -0500
47981              Message-ID: <41A4B5EA.3020804@stason.org>
47982      Branch: perl
47983            ! pod/perlipc.pod
47984 ____________________________________________________________________________
47985 [ 23532] By: rgs                                   on 2004/11/24  14:47:31
47986         Log: Subject: [perl #3242] [PATCH]No error on assignment to $>
47987              From: "Steve Peters via RT" <perlbug-followup@perl.org>
47988              Date: 21 Nov 2004 04:38:09 -0000
47989              Message-ID: <rt-3.0.11-3242-100676.6.32723019025057@perl.org>
47990      Branch: perl
47991            ! pod/perlvar.pod
47992 ____________________________________________________________________________
47993 [ 23531] By: nicholas                              on 2004/11/24  11:50:28
47994         Log: Wrap some long lines
47995      Branch: perl
47996            ! lib/Config.t
47997 ____________________________________________________________________________
47998 [ 23528] By: rgs                                   on 2004/11/23  13:35:34
47999         Log: Fix for bug: [perl #32562] __PACKAGE__ symbol has wrong value
48000              after eval or require
48001      Branch: perl
48002            ! t/comp/package.t toke.c
48003 ____________________________________________________________________________
48004 [ 23527] By: rgs                                   on 2004/11/23  10:20:02
48005         Log: Subject: Re: [perl #32486] error in documentation for POSIX::pipe
48006              From: Michael G Schwern <schwern@pobox.com>
48007              Date: Fri, 19 Nov 2004 14:28:56 -0500
48008              Message-ID: <20041119192856.GA4769@windhund.schwern.org>
48009      Branch: perl
48010            ! ext/POSIX/POSIX.pod
48011 ____________________________________________________________________________
48012 [ 23526] By: rgs                                   on 2004/11/23  09:26:03
48013         Log: Subject: [perl #3422] [PATCH] CHECK routine called after syntax error
48014              From: "Steve Peters via RT" <perlbug-followup@perl.org>
48015              Date: 23 Nov 2004 00:04:24 -0000
48016              Message-ID: <rt-3.0.11-3422-100830.4.45764701781506@perl.org>
48017      Branch: perl
48018            ! ext/B/B/Deparse.pm
48019 ____________________________________________________________________________
48020 [ 23525] By: rgs                                   on 2004/11/23  09:09:57
48021         Log: Subject: [PATCH] warnings.t portability tweaks
48022              From: "Craig A. Berry" <craigberry@mac.com>
48023              Date: Sat, 20 Nov 2004 10:29:47 -0600
48024              Message-ID: <419F70FB.7000100@mac.com>
48025      Branch: perl
48026            ! t/lib/warnings/9uninit t/lib/warnings/perlio
48027 ____________________________________________________________________________
48028 [ 23523] By: nicholas                              on 2004/11/20  22:17:18
48029         Log: Assimilate Test-Simple 0.50
48030      Branch: perl
48031            + lib/Test/Simple/TODO lib/Test/Simple/t/00signature.t
48032            + lib/Test/Simple/t/00test_harness_check.t
48033            + lib/Test/Simple/t/eq_set.t lib/Test/Simple/t/extra_one.t
48034            + lib/Test/Simple/t/fail_one.t
48035            + lib/Test/Simple/t/harness_active.t lib/Test/Simple/t/no_diag.t
48036            + lib/Test/Simple/t/overload.t lib/Test/Simple/t/reset.t
48037            + lib/Test/Simple/t/thread_taint.t t/lib/NoExporter.pm
48038            ! MANIFEST lib/Test/Builder.pm lib/Test/More.pm
48039            ! lib/Test/Simple.pm lib/Test/Simple/Changes
48040            ! lib/Test/Simple/README lib/Test/Simple/t/More.t
48041            ! lib/Test/Simple/t/diag.t lib/Test/Simple/t/extra.t
48042            ! lib/Test/Simple/t/fail-like.t lib/Test/Simple/t/fail-more.t
48043            ! lib/Test/Simple/t/fail.t lib/Test/Simple/t/has_plan2.t
48044            ! lib/Test/Simple/t/is_deeply.t lib/Test/Simple/t/missing.t
48045            ! lib/Test/Simple/t/output.t lib/Test/Simple/t/plan_is_noplan.t
48046            ! lib/Test/Simple/t/plan_no_plan.t lib/Test/Simple/t/threads.t
48047            ! lib/Test/Simple/t/todo.t lib/Test/Simple/t/use_ok.t
48048            ! lib/Test/Tutorial.pod t/lib/Test/Simple/Catch.pm
48049            ! t/lib/TieOut.pm
48050 ____________________________________________________________________________
48051 [ 23520] By: nicholas                              on 2004/11/20  14:21:28
48052         Log: genuine possible buffer problems spotted by flawfinder
48053      Branch: perl
48054            ! regcomp.c util.c
48055 ____________________________________________________________________________
48056 [ 23519] By: rgs                                   on 2004/11/19  14:48:35
48057         Log: Make "err" a weak keyword;
48058              that is, it will be overriden by any sub named "err", except when
48059              really an operator is expected at this point. ([perl #32347])
48060      Branch: perl
48061            ! t/op/dor.t toke.c
48062 ____________________________________________________________________________
48063 [ 23518] By: rgs                                   on 2004/11/19  09:22:33
48064         Log: Subject: [perl #32486] error in documentation for POSIX::pipe
48065              From: chris@ex-parrot.com (via RT) <perlbug-followup@perl.org>
48066              Date: 18 Nov 2004 18:09:54 -0000
48067              Message-ID: <rt-3.0.11-32486-100537.1.04456486825399@perl.org>
48068      Branch: perl
48069            ! ext/POSIX/POSIX.pod
48070 ____________________________________________________________________________
48071 [ 23517] By: nicholas                              on 2004/11/18  23:32:20
48072         Log: Bump version number
48073      Branch: perl
48074            ! lib/ExtUtils/Constant.pm
48075 ____________________________________________________________________________
48076 [ 23516] By: rgs                                   on 2004/11/18  22:06:21
48077         Log: Remaining nit in the deparsing of reversed foreach loops
48078      Branch: perl
48079            ! ext/B/B/Deparse.pm ext/B/t/deparse.t
48080 ____________________________________________________________________________
48081 [ 23514] By: rgs                                   on 2004/11/18  18:01:52
48082         Log: Fix deparsing of reversed foreach loops,
48083              plus a bug in the previous commit
48084      Branch: perl
48085            ! ext/B/B/Deparse.pm ext/B/t/deparse.t
48086 ____________________________________________________________________________
48087 [ 23513] By: rgs                                   on 2004/11/18  17:25:19
48088         Log: Fix deparsing of reversed sort and descending sorts,
48089              due to the recent optimisations on this part of the optree.
48090      Branch: perl
48091            ! ext/B/B/Deparse.pm ext/B/t/deparse.t
48092 ____________________________________________________________________________
48093 [ 23510] By: rgs                                   on 2004/11/17  10:41:56
48094         Log: Subject: [perl #28929] File::Find follow_fast => 1 loses dangling symlink
48095              From: "Steve Peters via RT" <perlbug-followup@perl.org>
48096              Date: 12 Nov 2004 02:47:36 -0000
48097              Message-ID: <rt-3.0.11-28929-100158.11.3214775505644@perl.org>
48098      Branch: perl
48099            ! lib/File/Find.pm lib/File/Find/t/find.t
48100 ____________________________________________________________________________
48101 [ 23509] By: rgs                                   on 2004/11/17  10:22:52
48102         Log: PerlFAQ sync.
48103      Branch: perl
48104            ! pod/perlfaq3.pod pod/perlfaq4.pod pod/perlfaq6.pod
48105            ! pod/perlfaq7.pod
48106 ____________________________________________________________________________
48107 [ 23508] By: rgs                                   on 2004/11/17  10:14:58
48108         Log: Fix a couple of typos.
48109      Branch: perl
48110            ! hv.c utf8.c
48111 ____________________________________________________________________________
48112 [ 23507] By: rgs                                   on 2004/11/17  10:11:20
48113         Log: Subject: SuSE's perl safe_putenf diff
48114              From: Michael Schroeder <Michael.Schroeder@informatik.uni-erlangen.de>
48115              Date: Thu, 11 Nov 2004 15:54:43 +0100
48116              Message-ID: <20041111145443.GA1854@immd4.informatik.uni-erlangen.de>
48117
48118              slightly reworked to make the PL_use_safe_putenv variable fit in
48119              the current framework. This patch turns on the use of safe putenv
48120              for any application that embeds a perl interpreter.
48121      Branch: perl
48122            ! embedvar.h mg.c miniperlmain.c perl.c perlapi.h perlvars.h
48123            ! util.c
48124 ____________________________________________________________________________
48125 [ 23506] By: rgs                                   on 2004/11/17  08:57:17
48126         Log: Subject: [PATCH] perl5db.pl POD cleanup
48127              From: Autrijus Tang <autrijus@autrijus.org>
48128              Date: Fri, 12 Nov 2004 12:41:33 +0800
48129              Message-ID: <20041112044133.GA92924@aut.dyndns.org>
48130      Branch: perl
48131            ! lib/perl5db.pl
48132 ____________________________________________________________________________
48133 [ 23505] By: rgs                                   on 2004/11/17  08:31:39
48134         Log: Subject: [PATCH 5.8.x] Allow more tries for t/op/time.t test 2.
48135              From: Andy Dougherty <doughera@lafayette.edu>
48136              Date: Tue, 16 Nov 2004 12:11:00 -0500 (EST)
48137              Message-ID: <Pine.SOL.4.58.0411161149170.5639@maxwell.phys.lafayette.edu>
48138      Branch: perl
48139            ! t/op/time.t
48140 ____________________________________________________________________________
48141 [ 23501] By: steveh                                on 2004/11/16  10:55:20
48142         Log: Make all scripts run by regen.pl write output with UNIX style EOL's.
48143
48144              (autodoc.pl was already done by change 23371.)
48145      Branch: perl
48146            ! bytecode.pl embed.pl keywords.pl opcode.pl regcomp.pl
48147            ! warnings.pl
48148 ____________________________________________________________________________
48149 [ 23500] By: merijn                                on 2004/11/16  10:49:35
48150         Log: Subject: [PATCH] s/hierachy/hierarchy/
48151              Date: Mon, 15 Nov 2004 15:59:14 -0700
48152              From: "Larry Shatzer Jr." <larrysh@cpan.org>
48153              Message-ID: <20041115225913.GA22373@zippy.zyx.net>
48154      Branch: perl
48155            ! ext/B/B.pm ext/Time/HiRes/Makefile.PL perlio.h
48156 ____________________________________________________________________________
48157 [ 23499] By: steveh                                on 2004/11/16  09:42:50
48158         Log: Fix Win32 breakage caused by changes to op.c in change 23433.
48159
48160              Also limit the scope of the locks in a couple of places, as suggested
48161              by Hugo in http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2004-11/msg00286.html.
48162      Branch: perl
48163            ! embed.fnc embed.h global.sym op.c op.h proto.h regcomp.c
48164 ____________________________________________________________________________
48165 [ 23498] By: merijn                                on 2004/11/14  07:02:20
48166         Log: Subject: [PATCH] Add the minitest target to vms buildsystem
48167              From: Abe Timmerman <abe@ztreet.demon.nl>
48168              Date: Sun, 14 Nov 2004 00:48:17 +0100
48169              Message-Id: <200411140048.17035.abe@ztreet.demon.nl>
48170      Branch: perl
48171            ! vms/descrip_mms.template vms/test.com
48172 ____________________________________________________________________________
48173 [ 23497] By: rgs                                   on 2004/11/12  21:11:48
48174         Log: Subject: [perl #32400] Unnecessary warning from constant.pm
48175              From: Anno Siegel (via RT) <perlbug-followup@perl.org>
48176              Date: 10 Nov 2004 18:30:38 -0000
48177              Message-ID: <rt-3.0.11-32400-100099.4.31094423840584@perl.org>
48178      Branch: perl
48179            ! lib/constant.pm lib/constant.t
48180 ____________________________________________________________________________
48181 [ 23496] By: merijn                                on 2004/11/12  20:47:19
48182         Log: Subject: [perl #32419] Spelling fixes for perl@23492
48183              Date: 12 Nov 2004 16:14:49 -0000
48184              From: Richard Soderberg (via RT) <perlbug-followup@perl.org>
48185              Message-ID: <rt-3.0.11-32419-100173.13.0717895191322@perl.org>
48186      Branch: perl
48187            ! pod/perl573delta.pod pod/perl58delta.pod pod/perl590delta.pod
48188            ! pod/perl591delta.pod pod/perl592delta.pod pod/perlapi.pod
48189            ! pod/perlapio.pod pod/perldata.pod pod/perldebtut.pod
48190            ! pod/perlipc.pod pod/perlport.pod pod/perlre.pod
48191            ! pod/perlretut.pod pod/perlrun.pod pod/perlsub.pod
48192            ! pod/perlthrtut.pod pod/perltodo.pod pod/perltooc.pod
48193 ____________________________________________________________________________
48194 [ 23495] By: merijn                                on 2004/11/12  20:26:17
48195         Log: Subject: [PATCH] Small documentation fix to ExtUtils::Constant
48196              Date: Fri, 12 Nov 2004 11:15:47 -0600
48197              From: steve@fisharerojo.org
48198              Message-ID: <20041112171547.GA8011@kirk.dsl-verizon.net>
48199      Branch: perl
48200            ! lib/ExtUtils/Constant.pm
48201 ____________________________________________________________________________
48202 [ 23494] By: davem                                 on 2004/11/12  18:59:06
48203         Log: Add some descriptive text from Larry to op.c on how optrees are built
48204      Branch: perl
48205            ! op.c
48206 ____________________________________________________________________________
48207 [ 23492] By: rgs                                   on 2004/11/10  09:32:39
48208         Log: Replace a skip by a todo.
48209              Subject: Re: [PATCH] Re: [perl #32272] Not OK: perl v5.8.5 +MAINT23414 on cygwin-thread-multi-64int 1.5.12s(0.11642) (UNINSTALLED)
48210              From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
48211              Date: Wed, 10 Nov 2004 01:30:14 -0800
48212              Message-ID: <20041110093014.GA1676@efn.org>
48213      Branch: perl
48214            ! t/io/tell.t
48215 ____________________________________________________________________________
48216 [ 23491] By: rgs                                   on 2004/11/10  07:40:31
48217         Log: Subject: [PATCH] Re: [perl #32272] Not OK: perl v5.8.5 +MAINT23414 on cygwin-thread-multi-64int 1.5.12s(0.11642) (UNINSTALLED)
48218              From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
48219              Date: Tue, 9 Nov 2004 17:40:13 -0800
48220              Message-ID: <20041110014012.GA2796@efn.org>
48221      Branch: perl
48222            ! t/io/tell.t
48223 ____________________________________________________________________________
48224 [ 23490] By: rgs                                   on 2004/11/09  18:17:07
48225         Log: Adjust test count for non-windows machines
48226      Branch: perl
48227            ! ext/IO/t/io_file.t
48228 ____________________________________________________________________________
48229 [ 23489] By: merijn                                on 2004/11/09  17:53:53
48230         Log: Subject: [PATCH] fix IO::File to support binmode
48231              From: "Jos I. Boumans" <kane@dwim.org>
48232              Date: Tue, 9 Nov 2004 16:59:27 +0100
48233              Message-Id: <559E356E-3268-11D9-A2E6-000A95EF62E2@dwim.org>
48234      Branch: perl
48235            + ext/IO/t/io_file.t
48236            ! MANIFEST ext/IO/lib/IO/File.pm
48237 ____________________________________________________________________________
48238 [ 23487] By: nicholas                              on 2004/11/08  20:27:42
48239         Log: No more late changes, dammit
48240      Branch: perl
48241            ! ext/B/t/optree_concise.t
48242 ____________________________________________________________________________
48243 [ 23485] By: rgs                                   on 2004/11/08  08:38:03
48244         Log: Subject: Re: optree tests and VMS progress (no really)
48245              From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
48246              Date: Sun, 7 Nov 2004 23:24:15 -0800
48247              Message-ID: <20041108072415.GA3928@efn.org>
48248      Branch: perl
48249            ! ext/B/t/OptreeCheck.pm
48250 ____________________________________________________________________________
48251 [ 23482] By: davem                                 on 2004/11/06  11:59:16
48252         Log: document regcomp.c/regexec.c's dual life under ext/re/
48253      Branch: perl
48254            ! regcomp.c regexec.c
48255 ____________________________________________________________________________
48256 [ 23481] By: nicholas                              on 2004/11/06  08:48:50
48257         Log: Subject: Re: optree tests and VMS progress (no really)
48258              From: Jim Cromie <jim.cromie@gmail.com>
48259              Message-ID: <cfe85dfa041105235723398fe2@mail.gmail.com>
48260              Date: Sat, 6 Nov 2004 00:57:13 -0700
48261      Branch: perl
48262            ! ext/B/t/OptreeCheck.pm ext/B/t/optree_check.t
48263            ! ext/B/t/optree_concise.t
48264 ____________________________________________________________________________
48265 [ 23475] By: merijn                                on 2004/11/05  14:16:27
48266         Log: Subject: Re: Buidling stable.tar.gz on Unix as non-root [PATCH]
48267              Date: Fri, 5 Nov 2004 10:36:57 -0500 (EST)
48268              From: Andy Dougherty <doughera@lafayette.edu>
48269              Message-ID: <Pine.SOL.4.58.0411051035020.15217@maxwell.phys.lafayette.edu>
48270      Branch: perl
48271            ! INSTALL
48272 ____________________________________________________________________________
48273 [ 23474] By: merijn                                on 2004/11/05  13:07:16
48274         Log: Skip failing thread/wait tests on HP-UX 10.20
48275              These will never ever be fixed, since 10.20 is obsolete
48276              perl583delta describes this. The quote is included in wait.t
48277      Branch: perl
48278            ! ext/threads/shared/t/wait.t
48279 ____________________________________________________________________________
48280 [ 23473] By: rgs                                   on 2004/11/05  08:47:44
48281         Log: Subject: [perl #32327] Benchmark calls coderef with spurious arguments
48282              From: Anno Siegel (via RT) <perlbug-followup@perl.org>
48283              Date: 4 Nov 2004 20:12:36 -0000
48284              Message-ID: <rt-3.0.11-32327-99325.8.9408996026507@perl.org>
48285      Branch: perl
48286            ! lib/Benchmark.pm lib/Benchmark.t
48287 ____________________________________________________________________________
48288 [ 23471] By: rgs                                   on 2004/11/04  09:26:56
48289         Log: Subject: [PATCH blead] [perl #3038] Re: $qr = qr/^a$/m; $x =~ $qr; fails
48290              From: Rick Delaney <rick@bort.ca>
48291              Date: Sun, 31 Oct 2004 22:40:40 -0500
48292              Message-ID: <20041101034040.GC1232@biff.bort.ca>
48293      Branch: perl
48294            + t/op/regexp_qr.t
48295            ! MANIFEST pp.c pp_hot.c regexec.c t/op/regexp.t
48296 ____________________________________________________________________________
48297 [ 23470] By: rgs                                   on 2004/11/04  08:25:34
48298         Log: Subject: Re: [PATCH perl-current] Re: [perl #31793] Data::Dumper: Useqq interacts badly with overloading
48299              From: Rick Delaney <rick@bort.ca>
48300              Date: Wed, 3 Nov 2004 19:46:16 -0500
48301              Message-ID: <20041104004616.GA11214@biff.bort.ca>
48302      Branch: perl
48303            ! lib/overload.pm lib/overload.t
48304 ____________________________________________________________________________
48305 [ 23469] By: rgs                                   on 2004/11/03  11:54:28
48306         Log: Mostly revert change #23347 (keep the test suite, fixed),
48307              having decided that it wasn't a correct fix for bug #31793.
48308      Branch: perl
48309            ! lib/overload.pm lib/overload.t
48310 ____________________________________________________________________________
48311 [ 23468] By: rgs                                   on 2004/11/03  07:39:04
48312         Log: Subject: Re: [perl #30633] Perl's "do" operator with a variety of absolute paths under Cygwin
48313              From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
48314              Date: Tue, 2 Nov 2004 17:24:29 -0800
48315              Message-ID: <20041103012429.GA7196@efn.org>
48316      Branch: perl
48317            ! util.h
48318 ____________________________________________________________________________
48319 [ 23467] By: rgs                                   on 2004/11/03  06:38:38
48320         Log: Subject: [PATCH configure.com] Re: [PATCH]  Detecting strlcat() and strlcpy() in Configure
48321              From: "Craig A. Berry" <craigberry@mac.com>
48322              Date: Tue, 02 Nov 2004 20:02:04 -0600
48323              Message-ID: <41883C1C.3080108@mac.com>
48324      Branch: perl
48325            ! configure.com
48326 ____________________________________________________________________________
48327 [ 23466] By: rgs                                   on 2004/11/02  12:33:57
48328         Log: FAQ sync
48329      Branch: perl
48330            ! pod/perlfaq.pod pod/perlfaq1.pod pod/perlfaq2.pod
48331            ! pod/perlfaq3.pod pod/perlfaq4.pod pod/perlfaq5.pod
48332            ! pod/perlfaq6.pod pod/perlfaq7.pod pod/perlfaq8.pod
48333            ! pod/perlfaq9.pod
48334 ____________________________________________________________________________
48335 [ 23465] By: rgs                                   on 2004/11/02  08:18:15
48336         Log: Reformulate an error
48337              (so the error message given by "perl -M" is a bit more
48338              meaningful, as Jarkko pointed out)
48339      Branch: perl
48340            ! perl.c pod/perldiag.pod
48341 ____________________________________________________________________________
48342 [ 23457] By: merijn                                on 2004/11/01  13:26:43
48343         Log: New Glossary and samples for blead
48344              Glossary now is in line with recent changes to config_h.SH
48345      Branch: perl
48346            ! Porting/Glossary Porting/config.sh Porting/config_H
48347 ____________________________________________________________________________
48348 [ 23455] By: merijn                                on 2004/11/01  12:51:52
48349         Log: Since strlcat/strlcpy are not argument/return value compatible
48350              with strncat/strncpy, replace the misleading defines with comment
48351      Branch: perl
48352            ! handy.h
48353 ____________________________________________________________________________
48354 [ 23450] By: merijn                                on 2004/10/31  16:33:17
48355         Log: The next step in strlcat ()/ strcpy () detection and usage
48356              preparation. Change to handy.h eeded for config_h.SH
48357      Branch: perl
48358            ! config_h.SH handy.h
48359 ____________________________________________________________________________
48360 [ 23448] By: nicholas                              on 2004/10/31  14:37:46
48361         Log: Make TEST and harness skip tests for extensions that were not
48362              configured. Currently this skipping is silent - maybe they should
48363              report what they are skipping.
48364      Branch: perl
48365            ! t/TEST t/harness
48366 ____________________________________________________________________________
48367 [ 23446] By: nicholas                              on 2004/10/31  13:02:01
48368         Log: Subject: [patches] optree_* tests unexpectedly succeeding. + maint-only patch
48369              From: Jim Cromie <jim.cromie@gmail.com>
48370              Message-ID: <cfe85dfa04102515365f11ef10@mail.gmail.com>
48371              Date: Mon, 25 Oct 2004 16:36:40 -0600
48372      Branch: perl
48373            ! ext/B/t/optree_check.t ext/B/t/optree_varinit.t
48374 ____________________________________________________________________________
48375 [ 23445] By: nicholas                              on 2004/10/31  12:24:09
48376         Log: Set the IV values for PL_sv_yes and PL_sv_no at initialisation time.
48377      Branch: perl
48378            ! perl.c sv.c
48379 ____________________________________________________________________________
48380 [ 23444] By: nicholas                              on 2004/10/31  11:20:27
48381         Log: Skip tests if Devel::Peek not built
48382      Branch: perl
48383            ! ext/threads/shared/t/sv_refs.t ext/threads/t/end.t
48384            ! ext/threads/t/join.t lib/base/t/fields-base.t
48385 ____________________________________________________________________________
48386 [ 23443] By: nicholas                              on 2004/10/31  11:19:47
48387         Log: Assimilate PathTools 3.01 (File::Spec and Cwd)
48388      Branch: perl
48389            ! ext/Cwd/t/cwd.t lib/Cwd.pm lib/File/Spec.pm
48390            ! lib/File/Spec/VMS.pm
48391 ____________________________________________________________________________
48392 [ 23442] By: nicholas                              on 2004/10/31  11:07:57
48393         Log: Oops. Forgot to add the new test in I18N::LangTags 0.35
48394      Branch: perl
48395            + lib/I18N/LangTags/t/20_locales.t
48396 ____________________________________________________________________________
48397 [ 23441] By: nicholas                              on 2004/10/31  10:41:17
48398         Log: Correct change 23437 - as Config isn't imported, need to use a fully
48399              qualified package
48400      Branch: perl
48401            ! ext/B/t/f_map.t ext/B/t/f_sort.t ext/B/t/optree_check.t
48402            ! ext/B/t/optree_concise.t ext/B/t/optree_samples.t
48403            ! ext/B/t/optree_sort.t ext/B/t/optree_specials.t
48404            ! ext/B/t/optree_varinit.t
48405 ____________________________________________________________________________
48406 [ 23440] By: nicholas                              on 2004/10/31  10:40:11
48407         Log: Assimilate I18N::LangTags 0.35
48408      Branch: perl
48409            ! MANIFEST lib/I18N/LangTags.pm lib/I18N/LangTags/ChangeLog
48410            ! lib/I18N/LangTags/List.pm lib/I18N/LangTags/README
48411 ____________________________________________________________________________
48412 [ 23439] By: nicholas                              on 2004/10/31  08:17:57
48413         Log: Subject: [PATCH] Temporary fix for usemallocwrap problems on IRIX (was Re: usemallocwrap problems on IRIX (was Re: Problem and question))
48414              Date: Sun, 31 Oct 2004 04:01:42 -0500
48415              From: Ed Allen Smith <easmith@beatrice.rutgers.edu>
48416              Message-Id: <mid+200410310901.i9V91g1Y519894@dogberry.rutgers.edu>
48417      Branch: perl
48418            ! hints/irix_6.sh
48419 ____________________________________________________________________________
48420 [ 23438] By: davem                                 on 2004/10/30  23:25:37
48421         Log: Using foreach on threads::shared array crashes perl
48422              The FETCH code for shared aggregate elements could leak a shared RV
48423              address into a private SV. RVs are now handled specially, in the
48424              same way that they already were for scalar shared magic.
48425      Branch: perl
48426            ! ext/threads/shared/shared.xs
48427 ____________________________________________________________________________
48428 [ 23437] By: nicholas                              on 2004/10/30  22:49:18
48429         Log: Skip tests that require Data::Dumper if it is not built
48430      Branch: perl
48431            ! ext/B/t/f_map.t ext/B/t/f_sort.t ext/B/t/optree_check.t
48432            ! ext/B/t/optree_concise.t ext/B/t/optree_samples.t
48433            ! ext/B/t/optree_sort.t ext/B/t/optree_specials.t
48434            ! ext/B/t/optree_varinit.t lib/ExtUtils/t/Liblist.t
48435            ! lib/ExtUtils/t/prereq_print.t
48436 ____________________________________________________________________________
48437 [ 23436] By: merijn                                on 2004/10/30  16:11:15
48438         Log: Promote #23435 (strlcat ()/strlcpy ()) to non-standard OS's
48439      Branch: perl
48440            ! NetWare/config_H.wc Porting/config_H plan9/config_h.sample
48441            ! win32/config_H.bc win32/config_H.gc win32/config_H.vc
48442            ! win32/config_H.vc64 wince/config_H.ce
48443 ____________________________________________________________________________
48444 [ 23435] By: merijn                                on 2004/10/30  15:54:48
48445         Log: Added probes for strlcat () and strlcpy () to Configure
48446              Re-ordered config_h.SH
48447      Branch: perl
48448            ! Configure Makefile.SH config_h.SH
48449 ____________________________________________________________________________
48450 [ 23433] By: davem                                 on 2004/10/29  21:04:17
48451         Log: Threading crash with closures
48452              various OpREFCNT_inc() operations weren't doing locking
48453      Branch: perl
48454            ! pad.c regcomp.c sv.c
48455 ____________________________________________________________________________
48456 [ 23432] By: steveh                                on 2004/10/29  14:12:02
48457         Log: Document sv_magic() changes brought about by sv_magicext()
48458
48459              Change 14335 made sv_magic() a wrapper to a new sv_magicext(),
48460              but didn't update the documentation for sv_magic() to reflect
48461              the changed handling of the name/namlen arguments.
48462
48463              Also correct a couple of typos, and mention sv_magicext() in
48464              perlguts.
48465      Branch: perl
48466            ! pod/perlapi.pod pod/perlguts.pod sv.c
48467 ____________________________________________________________________________
48468 [ 23431] By: merijn                                on 2004/10/29  13:56:03
48469         Log: Subject: [PATCH] 36 additional tests for B
48470              From: Steve Peters <steve@fisharerojo.org>
48471              Date: Fri, 29 Oct 2004 00:53:22 -0500
48472              Message-Id: <200410290053.22947.steve@fisharerojo.org>
48473      Branch: perl
48474            ! ext/B/t/b.t
48475 ____________________________________________________________________________
48476 [ 23426] By: davem                                 on 2004/10/27  22:50:57
48477         Log: include flags and refcount in the list of leaked scalars
48478      Branch: perl
48479            ! perl.c
48480 ____________________________________________________________________________
48481 [ 23425] By: ams                                   on 2004/10/27  11:27:27
48482         Log: Subject: [PATCH] lib/Carp.t improvements
48483              From: "Craig A. Berry" <craigberry@mac.com>
48484              Date: Tue, 26 Oct 2004 23:32:25 -0500
48485              Message-Id: <417F24D9.1000904@mac.com>
48486      Branch: perl
48487            ! lib/Carp.t
48488 ____________________________________________________________________________
48489 [ 23424] By: rgs                                   on 2004/10/25  15:31:21
48490         Log: Fix [perl #32130] Errno.pm must not pass references to "prototype"
48491      Branch: perl
48492            ! ext/Errno/Errno_pm.PL ext/Errno/t/Errno.t
48493 ____________________________________________________________________________
48494 [ 23423] By: rgs                                   on 2004/10/25  15:09:27
48495         Log: Small updates to the web addresses for Perl, noticed by Robert Spier
48496      Branch: perl
48497            ! pod/perl.pod pod/perlfaq2.pod
48498 ____________________________________________________________________________
48499 [ 23422] By: rgs                                   on 2004/10/25  14:56:37
48500         Log: Subject: [perl #30227] [PATCH]splain vs. -w
48501              From: "Steve Peters via RT" <perlbug-followup@perl.org>
48502              Date: 23 Oct 2004 13:55:41 -0000
48503              Message-ID: <rt-3.0.11-30227-98375.1.28465791111211@perl.org>
48504      Branch: perl
48505            ! lib/diagnostics.pm
48506 ____________________________________________________________________________
48507 [ 23421] By: rgs                                   on 2004/10/25  07:29:50
48508         Log: Upgrade to Encode 2.08.
48509      Branch: perl
48510            ! ext/Encode/Changes ext/Encode/Encode.pm ext/Encode/Encode.xs
48511            ! ext/Encode/META.yml ext/Encode/Unicode/Unicode.pm
48512            ! ext/Encode/Unicode/Unicode.xs
48513            ! ext/Encode/lib/Encode/Encoding.pm
48514 ____________________________________________________________________________
48515 [ 23420] By: mhx                                   on 2004/10/24  07:53:45
48516         Log: Subject: Re: [perl #31937] perlop: add basic =~ examples
48517              From: Steve Peters <steve@fisharerojo.org>
48518              Date: Sat, 23 Oct 2004 08:01:51 -0500
48519              Message-Id: <200410230801.51649.steve@fisharerojo.org>
48520      Branch: perl
48521            ! pod/perlop.pod
48522 ____________________________________________________________________________
48523 [ 23419] By: mhx                                   on 2004/10/23  23:39:18
48524         Log: Subject: [PATCH] Re: Devel::Peek: hash quality 125%?
48525              From: Tels <perl_dummy@bloodgate.com>
48526              Date: Sat, 23 Oct 2004 16:56:31 +0200
48527              Message-Id: <200410231656.40995@bloodgate.com>
48528      Branch: perl
48529            ! ext/Devel/Peek/Changes ext/Devel/Peek/Peek.pm
48530 ____________________________________________________________________________
48531 [ 23418] By: davem                                 on 2004/10/23  21:50:19
48532         Log: Chained goto &sub drops data too early.
48533
48534              Change 22373 to stop a memory leak in goto &foo intead caused
48535              the elements of @_ to be freed too early. This revised fix
48536              just transfers the reifiedness of the old @_ to the new @_
48537      Branch: perl
48538            ! pp_ctl.c t/op/goto.t
48539 ____________________________________________________________________________
48540 [ 23417] By: rgs                                   on 2004/10/23  19:58:07
48541         Log: Upgrade to Encode 2.07
48542      Branch: perl
48543            ! ext/Encode/AUTHORS ext/Encode/Changes ext/Encode/Encode.pm
48544            ! ext/Encode/Encode.xs ext/Encode/META.yml
48545            ! ext/Encode/Unicode/Unicode.pm ext/Encode/encoding.pm
48546            ! ext/Encode/lib/Encode/Encoding.pm ext/Encode/t/Encode.t
48547            ! ext/Encode/t/fallback.t ext/Encode/ucm/macArabic.ucm
48548            ! ext/Encode/ucm/macCentEuro.ucm ext/Encode/ucm/macChinsimp.ucm
48549            ! ext/Encode/ucm/macChintrad.ucm ext/Encode/ucm/macDingbats.ucm
48550            ! ext/Encode/ucm/macGreek.ucm ext/Encode/ucm/macKorean.ucm
48551            ! ext/Encode/ucm/macROMnn.ucm ext/Encode/ucm/macSymbol.ucm
48552            ! ext/Encode/ucm/macThai.ucm
48553 ____________________________________________________________________________
48554 [ 23416] By: nicholas                              on 2004/10/23  17:15:46
48555         Log: Subject: [PATCH] ext/IO/IO.xs: fix blocking on sparc linux
48556              Message-ID: <20041022033033.GA12362@londo.c47.org>
48557              From: Brendan O'Dea <bod@debian.org>
48558              Date: Fri, 22 Oct 2004 13:30:33 +1000
48559      Branch: perl
48560            ! ext/IO/IO.xs
48561 ____________________________________________________________________________
48562 [ 23410] By: rgs                                   on 2004/10/21  15:51:32
48563         Log: Subject: docpatch for perltie.pod
48564              From: David Cantrell <david@cantrell.org.uk>
48565              Date: Thu, 21 Oct 2004 12:21:52 +0100
48566              Message-ID: <20041021112151.GA22862@bytemark.barnyard.co.uk>
48567      Branch: perl
48568            ! pod/perltie.pod
48569 ____________________________________________________________________________
48570 [ 23396] By: ams                                   on 2004/10/21  01:36:49
48571         Log: Subject: [PATCH] Math::BigInt v1.73 final
48572              From: Tels <perl_dummy@bloodgate.com>
48573              Date: Wed, 20 Oct 2004 21:06:40 +0200
48574              Message-Id: <200410202106.41840@bloodgate.com>
48575
48576              Subject: [PATCH] Math::BigRat v0.13 (pre-release)
48577              From: Tels <tels@bloodgate.com>
48578              Date: Wed, 20 Oct 2004 22:03:55 +0200
48579              Message-Id: <200410202203.56063@bloodgate.com>
48580      Branch: perl
48581            ! lib/Math/BigFloat.pm lib/Math/BigInt.pm lib/Math/BigRat.pm
48582            ! lib/Math/BigRat/t/big_ap.t lib/Math/BigRat/t/bigrat.t
48583            ! lib/Math/BigRat/t/bigratpm.inc lib/Math/BigRat/t/bigratpm.t
48584            ! lib/Math/BigRat/t/bigratup.t
48585 ____________________________________________________________________________
48586 [ 23395] By: nicholas                              on 2004/10/20  22:39:36
48587         Log: Need to skip optree walking tests if perlio not built
48588      Branch: perl
48589            ! ext/B/t/f_map.t ext/B/t/f_sort.t
48590 ____________________________________________________________________________
48591 [ 23394] By: rgs                                   on 2004/10/20  07:42:34
48592         Log: Remove opmini.c when cleaning up.
48593      Branch: perl
48594            ! Makefile.SH
48595 ____________________________________________________________________________
48596 [ 23393] By: rgs                                   on 2004/10/20  07:36:45
48597         Log: Ensure that PVA.pl returns a true value.
48598      Branch: perl
48599            ! lib/unicore/mktables
48600 ____________________________________________________________________________
48601 [ 23392] By: ams                                   on 2004/10/20  06:19:03
48602         Log: Subject: [PATCH perl.c pod/perl.pod pod/perlfaq2.pod]
48603              Rephrase "Perl Home Page" References
48604              From: chromatic <chromatic@wgz.org>
48605              Date: Tue, 19 Oct 2004 22:52:19 -0700
48606              Message-Id: <1098251539.20976.53.camel@localhost>
48607      Branch: perl
48608            ! AUTHORS perl.c pod/perl.pod pod/perlfaq2.pod
48609 ____________________________________________________________________________
48610 [ 23384] By: rgs                                   on 2004/10/19  13:17:01
48611         Log: Upgrade to Encode 2.05
48612      Branch: perl
48613            ! ext/Encode/Changes ext/Encode/Encode.pm ext/Encode/META.yml
48614            ! ext/Encode/encoding.pm
48615 ____________________________________________________________________________
48616 [ 23383] By: rgs                                   on 2004/10/19  11:38:37
48617         Log: More Data::Dumper docs nits, fix the previous one,
48618              suggested by Yves Orton.
48619      Branch: perl
48620            ! ext/Data/Dumper/Dumper.pm
48621 ____________________________________________________________________________
48622 [ 23382] By: rgs                                   on 2004/10/19  11:21:55
48623         Log: Subject: [PATCH] perlfaq2.pod (add a book)
48624              From: <richard.foley@ubs.com>
48625              Date: Tue, 19 Oct 2004 07:29:31 +0200
48626              Message-ID: <B374141B0A424D4F9CF143CC51B3ADD903FB9E3A@NZURC900PEX1.ubsgs.ubsgroup.net>
48627      Branch: perl
48628            ! pod/perlfaq2.pod
48629 ____________________________________________________________________________
48630 [ 23381] By: mhx                                   on 2004/10/19  03:51:59
48631         Log: Re-apply the encoding.pm part of:
48632
48633              Subject: [PATCH] encoding and open pragmas
48634              From: Jarkko Hietaniemi <jhi@iki.fi>
48635              Date: Mon, 16 Aug 2004 22:27:00 +0300
48636              Message-ID: <41210A84.6060506@iki.fi>
48637      Branch: perl
48638            ! ext/Encode/encoding.pm
48639 ____________________________________________________________________________
48640 [ 23380] By: mhx                                   on 2004/10/18  21:00:26
48641         Log: Upgrade to Encode 2.04.
48642      Branch: perl
48643            ! ext/Encode/AUTHORS ext/Encode/Changes ext/Encode/Encode.pm
48644            ! ext/Encode/JP/JP.pm ext/Encode/META.yml ext/Encode/Makefile.PL
48645            ! ext/Encode/bin/piconv ext/Encode/bin/ucmsort
48646            ! ext/Encode/encoding.pm ext/Encode/lib/Encode/Alias.pm
48647            ! ext/Encode/lib/Encode/Supported.pod
48648            ! ext/Encode/ucm/big5-hkscs.ucm
48649 ____________________________________________________________________________
48650 [ 23379] By: mhx                                   on 2004/10/18  15:44:05
48651         Log: Fix a typo.
48652      Branch: perl
48653            ! utils/c2ph.PL
48654 ____________________________________________________________________________
48655 [ 23378] By: rgs                                   on 2004/10/18  11:25:20
48656         Log: Add a missing warning categorisation in perldiag.
48657      Branch: perl
48658            ! pod/perldiag.pod
48659 ____________________________________________________________________________
48660 [ 23377] By: ams                                   on 2004/10/16  23:52:18
48661         Log: Subject: [PATCH] test_harness tweak for VMS
48662              From: "Craig A. Berry" <craigberry@mac.com>
48663              Date: Sat, 16 Oct 2004 12:15:02 -0500
48664              Message-Id: <41715716.5000108@mac.com>
48665      Branch: perl
48666            ! vms/descrip_mms.template vms/test.com
48667 ____________________________________________________________________________
48668 [ 23376] By: nicholas                              on 2004/10/16  18:16:12
48669         Log: Merge code from vdie and vcroak into S_vdie_croak_common
48670      Branch: perl
48671            ! util.c
48672 ____________________________________________________________________________
48673 [ 23375] By: nicholas                              on 2004/10/16  14:39:48
48674         Log: Merge the common code from Perl_vdie and Perl_vwarner into a
48675              S_vdie_common
48676      Branch: perl
48677            ! util.c
48678 ____________________________________________________________________________
48679 [ 23374] By: nicholas                              on 2004/10/16  12:57:39
48680         Log: The second half of Perl_vwarner is actually a straight cut&paste job
48681              from Perl_vwarn, so convert it into a (tail) call to Perl_vwarn.
48682              cut&paste is bad, m'kay.
48683      Branch: perl
48684            ! util.c
48685 ____________________________________________________________________________
48686 [ 23373] By: nicholas                              on 2004/10/15  17:11:08
48687         Log: Implement sv_svset _nosteal variants by passing a flag into
48688              sv_set_flags rather than messing with the SvTEMP() flag on either
48689              side of the call.
48690      Branch: perl
48691            ! sv.c sv.h
48692 ____________________________________________________________________________
48693 [ 23372] By: rgs                                   on 2004/10/15  14:09:54
48694         Log: Implement a new -dt command-line flag, to enable threads under the
48695              debugger (bug #31666).
48696
48697              Subject: RE: [PATCH] debugger handles threads [perl #31666]
48698              From: <richard.foley@ubs.com>
48699              Date: Wed, 13 Oct 2004 13:01:18 +0200
48700              Message-ID: <B374141B0A424D4F9CF143CC51B3ADD903FB9E12@NZURC900PEX1.ubsgs.ubsgroup.net>
48701
48702              Subject: Re: [PATCH] debugger handles threads [perl #31666]
48703              From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
48704              Date: Wed, 13 Oct 2004 02:49:58 -0700
48705              Message-ID: <20041013094957.GA17184@efn.org>
48706      Branch: perl
48707            ! lib/perl5db.pl perl.c pod/perlrun.pod
48708 ____________________________________________________________________________
48709 [ 23371] By: steveh                                on 2004/10/15  12:54:29
48710         Log: Make autodoc.pl write its output with UNIX style EOL's.
48711
48712              This saves the Win32 committer(s?) having to dos2unix the files
48713              before committing.  Maybe Perforce's "LineEnd: share" suffices
48714              anyway, but there's no harm in playing safe.
48715      Branch: perl
48716            ! autodoc.pl
48717 ____________________________________________________________________________
48718 [ 23370] By: nicholas                              on 2004/10/15  11:01:18
48719         Log: Include opmini.c in the dependency generation.
48720      Branch: perl
48721            ! Makefile.SH
48722 ____________________________________________________________________________
48723 [ 23369] By: rgs                                   on 2004/10/15  10:20:16
48724         Log: Doc nit to Data::Dumper, suggested by Peter Kay.
48725      Branch: perl
48726            ! ext/Data/Dumper/Dumper.pm
48727 ____________________________________________________________________________
48728 [ 23368] By: steveh                                on 2004/10/15  10:12:31
48729         Log: Document sv_vcatpvf, sv_vsetpvf, sv_vcatpvf_mg and sv_vsetpvf_mg.
48730
48731              These are already in the API supported by Devel::PPPort, and are
48732              often more useful than sv_vcatpvfn and sv_vsetpvfn which were
48733              already documented.
48734      Branch: perl
48735            ! embed.fnc pod/perlapi.pod sv.c
48736 ____________________________________________________________________________
48737 [ 23367] By: mhx                                   on 2004/10/14  18:00:04
48738         Log: Subject: [PATCH] Re: [NOT OK] 23353 OpenVMS 7.2 VAX
48739              From: "Craig A. Berry" <craigberry@mac.com>
48740              Date: Thu, 14 Oct 2004 10:09:41 -0500
48741              Message-ID: <416E96B5.5020100@mac.com>
48742      Branch: perl
48743            ! ext/Devel/PPPort/parts/inc/ppphtest
48744            ! ext/Devel/PPPort/t/ppphtest.t
48745 ____________________________________________________________________________
48746 [ 23366] By: rgs                                   on 2004/10/14  15:50:49
48747         Log: Subject: AW: [perl #31864] IO::Poll - undef fd not checked in mask()
48748              From: "Dintelmann, Peter" <Peter.Dintelmann@Dresdner-Bank.com>
48749              Date: Mon, 11 Oct 2004 09:54:15 +0200
48750              Message-ID: <8FD9B6A658383E468B55D364D1A9951601857331@ffz00zm6.ffz00e.mail.dresdner.net>
48751      Branch: perl
48752            ! ext/IO/lib/IO/Poll.pm
48753 ____________________________________________________________________________
48754 [ 23365] By: rgs                                   on 2004/10/14  14:58:21
48755         Log: Fix [perl #31971] local $^D gives noise
48756      Branch: perl
48757            ! embed.fnc embed.h mg.c perl.c proto.h
48758 ____________________________________________________________________________
48759 [ 23364] By: rgs                                   on 2004/10/14  14:25:29
48760         Log: A few fixes in the list of -D debugging flags
48761      Branch: perl
48762            ! perl.c pod/perlrun.pod
48763 ____________________________________________________________________________
48764 [ 23363] By: rgs                                   on 2004/10/14  14:01:50
48765         Log: Subject: [PATCH@23361] RE: [PATCH-for-23358] enable statically linked exte nsions for Win32
48766              From: "Konovalov, Vadim" <vkonovalov@spb.lucent.com>
48767              Date: Wed, 13 Oct 2004 09:45:31 +0400
48768              Message-ID: <7DD1BE2C50259746ABB8683672D2089E08133C@itotest-1.spb.lucent.com>
48769      Branch: perl
48770            ! win32/buildext.pl win32/makefile.mk
48771 ____________________________________________________________________________
48772 [ 23362] By: rgs                                   on 2004/10/12  16:49:53
48773         Log: Minor tweaks for the test.utf16 target, by Jarkko
48774      Branch: perl
48775            ! t/TEST
48776 ____________________________________________________________________________
48777 [ 23361] By: rgs                                   on 2004/10/12  16:07:54
48778         Log: Subject: [perl #31843] warnings::warn($obj,...) fails when $obj overloads ""
48779              From: kaminsky@math.huji.ac.il (via RT) <perlbug-followup@perl.org>
48780              Date: 5 Oct 2004 09:52:07 -0000
48781              Message-ID: <rt-3.0.11-31843-97358.2.89612012687236@perl.org>
48782              (with tweaks)
48783      Branch: perl
48784            ! lib/warnings.pm warnings.pl
48785 ____________________________________________________________________________
48786 [ 23360] By: rgs                                   on 2004/10/12  13:02:44
48787         Log: Subject: [PATCH-for-23358] enable statically linked extensions for Win32
48788              From: Vadim Konovalov <konovalo@mail.wplus.net>
48789              Date: Mon, 11 Oct 2004 22:57:00 +0400
48790              Message-ID: <80173417046.20041011225700@vkonovalov.ru>
48791      Branch: perl
48792            ! makedef.pl win32/Makefile win32/buildext.pl win32/dl_win32.xs
48793            ! win32/makefile.mk win32/perllib.c win32/sync_ext.pl
48794 ____________________________________________________________________________
48795 [ 23359] By: rgs                                   on 2004/10/12  12:54:27
48796         Log: Subject: Patch: BigInt v1.73 (pre-release)
48797              From: Tels <perl_dummy@bloodgate.com>
48798              Date: Sun, 10 Oct 2004 22:36:03 +0200
48799              Message-Id: <200410102236.03637@bloodgate.com>
48800      Branch: perl
48801            ! lib/Math/BigFloat.pm lib/Math/BigInt.pm
48802            ! lib/Math/BigInt/Calc.pm lib/Math/BigInt/t/bare_mbf.t
48803            ! lib/Math/BigInt/t/bare_mbi.t lib/Math/BigInt/t/bigfltpm.inc
48804            ! lib/Math/BigInt/t/bigfltpm.t lib/Math/BigInt/t/bigintpm.inc
48805            ! lib/Math/BigInt/t/bigintpm.t lib/Math/BigInt/t/sub_mbf.t
48806            ! lib/Math/BigInt/t/sub_mbi.t lib/Math/BigInt/t/upgrade.inc
48807            ! lib/Math/BigInt/t/upgrade.t lib/Math/BigInt/t/with_sub.t
48808 ____________________________________________________________________________
48809 [ 23358] By: rgs                                   on 2004/10/11  07:28:34
48810         Log: Subject: [PATCH] add the 'test_harness' target to vms "makefile"
48811              From: Abe Timmerman <abe@ztreet.demon.nl>
48812              Date: Sat, 9 Oct 2004 18:13:38 +0200
48813              Message-Id: <200410091813.38673.abe@ztreet.demon.nl>
48814      Branch: perl
48815            ! t/harness vms/descrip_mms.template vms/test.com
48816 ____________________________________________________________________________
48817 [ 23357] By: davem                                 on 2004/10/10  19:18:00
48818         Log: Turn regcomp into a list op
48819      Branch: perl
48820            ! embed.fnc ext/B/B/Deparse.pm lib/overload.t op.c perly.act
48821            ! perly.h perly.tab perly.y pp_ctl.c proto.h toke.c
48822 ____________________________________________________________________________
48823 [ 23356] By: nicholas                              on 2004/10/10  15:21:24
48824         Log: Hack to make -Dusethreads -Uuseithreads -Uuse5005threads pass all tests
48825      Branch: perl
48826            ! ext/B/t/OptreeCheck.pm
48827 ____________________________________________________________________________
48828 [ 23355] By: nicholas                              on 2004/10/10  15:03:25
48829         Log: Restore runtime loading of Encode and Encode-related modules, so that
48830              open.pm will work when the Encode extension isn't build.
48831      Branch: perl
48832            ! lib/open.pm
48833 ____________________________________________________________________________
48834 [ 23354] By: merijn                                on 2004/10/09  12:27:39
48835         Log: Make AIX 5 + gcc work in 64bitall
48836      Branch: perl
48837            ! hints/aix.sh
48838 ____________________________________________________________________________
48839 [ 23353] By: merijn                                on 2004/10/08  09:52:59
48840         Log: A new machine type, some reformatting, some reorganization
48841              and a bit of additional info on Sleepycat's db.
48842      Branch: perl
48843            ! README.hpux
48844 ____________________________________________________________________________
48845 [ 23352] By: rgs                                   on 2004/10/08  08:56:49
48846         Log: Briefly document the test.utf16 make target.
48847      Branch: perl
48848            ! pod/perlhack.pod
48849 ____________________________________________________________________________
48850 [ 23351] By: rgs                                   on 2004/10/08  08:52:39
48851         Log: Make the perl interpreter more tolerant of UTF-16-encoded script
48852              (patch by Jarkko Hietaniemi)
48853      Branch: perl
48854            ! Makefile.SH t/TEST toke.c utf8.c
48855 ____________________________________________________________________________
48856 [ 23350] By: rgs                                   on 2004/10/04  16:05:20
48857         Log: Subject: [perl #31697] [PATCH] B::Showlex::newlex enhancement and pod
48858              From: Jim Cromie (via RT) <perlbug-followup@perl.org>
48859              Date: 23 Sep 2004 21:45:42 -0000
48860              Message-ID: <rt-3.0.11-31697-96840.0.810265136907162@perl.org>
48861              (with doc nits)
48862      Branch: perl
48863            ! ext/B/B/Concise.pm ext/B/B/Showlex.pm ext/B/t/showlex.t
48864 ____________________________________________________________________________
48865 [ 23349] By: rgs                                   on 2004/10/04  15:46:28
48866         Log: Increment $overload::VERSION after change #23347
48867      Branch: perl
48868            ! ext/B/B/Concise.pm lib/overload.pm
48869 ____________________________________________________________________________
48870 [ 23348] By: rgs                                   on 2004/10/04  14:00:11
48871         Log: Subject: [PATCH-for-23341] dynaloader improvements and cleanup
48872              From: Vadim Konovalov <vadim@vkonovalov.ru>
48873              Date: Sun, 3 Oct 2004 22:10:06 +0400
48874              Message-ID: <138-1837306906.20041003221006@vkonovalov.ru>
48875      Branch: perl
48876            ! ext/DynaLoader/DynaLoader_pm.PL
48877 ____________________________________________________________________________
48878 [ 23347] By: rgs                                   on 2004/10/04  10:57:15
48879         Log: Subject: [PATCH perl-current] Re: [perl #31793] Data::Dumper: Useqq interacts badly with overloading
48880              From: Rick Delaney <rick@bort.ca>
48881              Date: Sat, 2 Oct 2004 01:04:49 -0400
48882              Message-ID: <20041002050448.GB5059@biff.bort.ca>
48883      Branch: perl
48884            ! lib/overload.pm lib/overload.t
48885 ____________________________________________________________________________
48886 [ 23346] By: rgs                                   on 2004/10/04  10:18:49
48887         Log: Subject: [PATCH] vms/t/filespec.t tweak
48888              From: "Craig A. Berry" <craigberry@mac.com>
48889              Date: Fri, 01 Oct 2004 13:18:03 -0500
48890              Message-ID: <415D9F5B.5040306@mac.com>
48891      Branch: perl
48892            ! vms/ext/filespec.t
48893 ____________________________________________________________________________
48894 [ 23345] By: rgs                                   on 2004/10/04  08:53:04
48895         Log: More caveats on the non-portability of stat(), suggested by
48896              Stas Bekman.
48897      Branch: perl
48898            ! pod/perlfunc.pod
48899 ____________________________________________________________________________
48900 [ 23344] By: nicholas                              on 2004/10/02  21:49:15
48901         Log: Perl_sv_recode_to_utf8 shouldn't be returning SvPVX(sv) without
48902              any check on whether it's valid.
48903      Branch: perl
48904            ! sv.c
48905 ____________________________________________________________________________
48906 [ 23343] By: merijn                                on 2004/10/02  11:08:32
48907         Log: Subject: [PATCH] make t/uni/class.t pass on VMS
48908              From: "Craig A. Berry" <craigberry@mac.com>
48909              Date: Fri, 01 Oct 2004 12:57:55 -0500
48910              Message-ID: <415D9AA3.1000908@mac.com>
48911      Branch: perl
48912            ! t/uni/class.t
48913 ____________________________________________________________________________
48914 [ 23342] By: davem                                 on 2004/09/30  20:51:31
48915         Log: open $1, "file" doesn't raise an exception
48916      Branch: perl
48917            ! pp.c t/io/open.t
48918 ____________________________________________________________________________
48919 [ 23341] By: rgs                                   on 2004/09/30  15:41:40
48920         Log: Subject: [patch] Sys::Syslog POD - $Sys::Syslog::host
48921              From: "Jay Hannah" <jhannah@omnihotels.com>
48922              Date: Wed, 15 Sep 2004 14:51:42 -0500
48923              Message-ID: <002001c49b5d$6d0d79c0$4722000a@omarests2>
48924      Branch: perl
48925            ! ext/Sys/Syslog/Syslog.pm
48926 ____________________________________________________________________________
48927 [ 23340] By: rgs                                   on 2004/09/30  15:12:29
48928         Log: A fix for [perl #31692] : as PerlIO::scalar accesses directly the
48929              PV of the scalar it reads from, avoid to read it when it's an
48930              undefined PV.
48931      Branch: perl
48932            ! ext/PerlIO/scalar/scalar.xs ext/PerlIO/t/scalar.t
48933 ____________________________________________________________________________
48934 [ 23339] By: davem                                 on 2004/09/28  18:05:52
48935         Log: the improved -DT output of #23325 could print an uninit stack value
48936      Branch: perl
48937            ! toke.c
48938 ____________________________________________________________________________
48939 [ 23338] By: nicholas                              on 2004/09/28  16:55:08
48940         Log: Spelling correction spotted by Greg McCarroll
48941      Branch: perl
48942            ! README.epoc
48943 ____________________________________________________________________________
48944 [ 23337] By: rgs                                   on 2004/09/28  15:28:58
48945         Log: Subject: Patch for perl.c fixing an obscure environment bug
48946              From: Merijn Broeren <merijnb@iloquent.com>
48947              Date: Thu, 23 Sep 2004 17:18:17 +0200
48948              Message-ID: <20040923151817.GA15782@brugman.iloquent.nl>
48949      Branch: perl
48950            ! perl.c
48951 ____________________________________________________________________________
48952 [ 23336] By: rgs                                   on 2004/09/28  08:08:24
48953         Log: Perl -DT segfaults when parsing a 'use' statement
48954      Branch: perl
48955            ! toke.c
48956 ____________________________________________________________________________
48957 [ 23334] By: rgs                                   on 2004/09/23  07:33:15
48958         Log: Typo fix.
48959              Subject: [PATCH] Re: Smoke [5.9.2] 23330 FAIL(X) hp-ux 11.11/64 (PA-2.0/64/2 cpu)
48960              From: Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>
48961              Date: Wed, 22 Sep 2004 11:20:53 +0200
48962              Message-ID: <20040922112053.686562b6@valis.local>
48963      Branch: perl
48964            ! lib/open.pm
48965 ____________________________________________________________________________
48966 [ 23333] By: rgs                                   on 2004/09/23  07:30:16
48967         Log: Remove a couple of C<> to avoid confusing double quotes in text
48968              rendering. [perl #31678]
48969      Branch: perl
48970            ! pod/perlop.pod
48971 ____________________________________________________________________________
48972 [ 23332] By: rgs                                   on 2004/09/22  09:08:04
48973         Log: Document that $ENV{PATH} may not contain relative directories under -T
48974      Branch: perl
48975            ! pod/perldiag.pod pod/perlsec.pod
48976 ____________________________________________________________________________
48977 [ 23331] By: davem                                 on 2004/09/20  22:11:29
48978         Log: Subject:  Re: [perl #31586] utime does not reach expectations [PATCH]
48979              From:  LAUN Wolfgang <wolfgang.laun@alcatel.at>
48980              Date:  Fri, 17 Sep 2004 14:01:11 +0200
48981              Message-Id:  <DF27CDCBD2581D4B88431901094E4B4D02B0C88B@attmsx1.aut.alcatel.at>
48982
48983              Clarify the effect of utime when the file isn't owned by the user
48984      Branch: perl
48985            ! pod/perlfunc.pod
48986 ____________________________________________________________________________
48987 [ 23330] By: rgs                                   on 2004/09/20  17:20:38
48988         Log: Upgrade to MIME::Base64 3.05.
48989      Branch: perl
48990            ! ext/MIME/Base64/Base64.pm ext/MIME/Base64/Changes
48991            ! ext/MIME/Base64/t/warn.t
48992 ____________________________________________________________________________
48993 [ 23329] By: rgs                                   on 2004/09/20  17:13:20
48994         Log: Upgrade to Time::HiRes 1.65.
48995      Branch: perl
48996            ! ext/Time/HiRes/Changes ext/Time/HiRes/HiRes.pm
48997            ! ext/Time/HiRes/HiRes.xs ext/Time/HiRes/Makefile.PL
48998            ! ext/Time/HiRes/ppport.h ext/Time/HiRes/t/HiRes.t
48999 ____________________________________________________________________________
49000 [ 23327] By: rgs                                   on 2004/09/20  08:23:58
49001         Log: Subject: [perl #27576] [PATCH] Pod::Usage -exitvalue => "NOEXIT" requires -output be set (Doc bug)
49002              From: "Steve Peters via RT" <perlbug-followup@perl.org>
49003              Date: 26 Aug 2004 19:06:52 -0000
49004              Message-ID: <rt-3.0.11-27576-94411.2.28321880730803@perl.org>
49005      Branch: perl
49006            ! lib/Pod/Usage.pm
49007 ____________________________________________________________________________
49008 [ 23326] By: rgs                                   on 2004/09/20  08:10:47
49009         Log: Subject: [PATCH] encoding and open pragmas
49010              From: Jarkko Hietaniemi <jhi@iki.fi>
49011              Date: Mon, 16 Aug 2004 22:27:00 +0300
49012              Message-ID: <41210A84.6060506@iki.fi>
49013
49014              Subject: Re: [PATCH] encoding and open pragmas
49015              From: Jarkko Hietaniemi <jhi@iki.fi>
49016              Date: Tue, 17 Aug 2004 11:22:58 +0300 (EEST)
49017              Message-Id: <200408170822.i7H8MwUU016793@vipunen.hut.fi>
49018      Branch: perl
49019            ! ext/Encode/encoding.pm lib/open.pm lib/open.t t/io/layers.t
49020 ____________________________________________________________________________
49021 [ 23325] By: davem                                 on 2004/09/19  21:47:18
49022         Log: improve lexer debugging output (-DT)
49023              Decode yylex() return values, and show lexer state each time
49024              yylex() is called
49025      Branch: perl
49026            ! embed.fnc embed.h proto.h toke.c
49027 ____________________________________________________________________________
49028 [ 23323] By: rgs                                   on 2004/09/15  16:12:42
49029         Log: The XSUB.h patch from:
49030
49031              Subject: CPAN Upload: J/JP/JPEACOCK/version-0.42.tar.gz
49032              From: John Peacock <jpeacock@rowman.com>
49033              Date: Wed, 18 Aug 2004 08:26:35 -0400
49034              Message-ID: <41234AFB.1020009@rowman.com>
49035
49036              Now it will use version object logic for version comparison
49037              when loading XS modules.
49038      Branch: perl
49039            ! XSUB.h
49040 ____________________________________________________________________________
49041 [ 23322] By: rgs                                   on 2004/09/15  15:48:23
49042         Log: Upgrade to Time::HiRes 1.63.
49043              Note that it includes a ppport.h file. See if the one
49044              previously built in Devel::PPPort can be used instead.
49045      Branch: perl
49046            + ext/Time/HiRes/ppport.h
49047            ! MANIFEST ext/Time/HiRes/Changes ext/Time/HiRes/HiRes.pm
49048            ! ext/Time/HiRes/HiRes.xs ext/Time/HiRes/Makefile.PL
49049            ! ext/Time/HiRes/t/HiRes.t
49050 ____________________________________________________________________________
49051 [ 23321] By: davem                                 on 2004/09/14  21:57:10
49052         Log: Subject:  Re: [perl #31459] Bug in read()
49053              From:  Chris Heath <chris@heathens.co.nz>
49054              Date:  06 Sep 2004 00:03:12 -0400
49055              Message-Id:  <1094443392.12379.35.camel@linux.heathens.co.nz>
49056
49057              a read(F) into a UTF8-encoded buffer with an offset off the
49058              end of the buffer, miss-calculated buffer lengths
49059      Branch: perl
49060            ! pp_sys.c
49061 ____________________________________________________________________________
49062 [ 23320] By: davem                                 on 2004/09/12  22:09:51
49063         Log: Memory leak in nested shared data structures in 5.8.4
49064              A pop of an item from a shared array ref causes a leak due to
49065              AVf_REAL not having been set after an sv_upgrade(sv, SVt_PVAV).
49066              Make sv_upgrade() set always this flag.
49067      Branch: perl
49068            ! sv.c
49069 ____________________________________________________________________________
49070 [ 23319] By: nicholas                              on 2004/09/10  16:40:17
49071         Log: Integrate:
49072              [ 23318]
49073              Update the skips for the no perlio case
49074      Branch: perl
49075           !> ext/B/t/optree_check.t ext/B/t/optree_concise.t
49076           !> ext/B/t/showlex.t
49077 ____________________________________________________________________________
49078 [ 23300] By: nicholas                              on 2004/09/09  15:54:18
49079         Log: A single version of B that supports 5.8 and 5.10
49080      Branch: perl
49081            ! ext/B/B.pm ext/B/B.xs ext/B/B/C.pm
49082            ! ext/B/ramblings/runtime.porting ext/B/t/lint.t
49083 ____________________________________________________________________________
49084 [ 23283] By: mhx                                   on 2004/09/08  20:33:55
49085         Log: Subject: [PATCH-5.8.5] lib/bigint.pm tiny typo fix
49086              From: "Konovalov, Vadim" <vkonovalov@spb.lucent.com>
49087              Date: Mon, 6 Sep 2004 11:09:51 +0400
49088              Message-ID: <7DD1BE2C50259746ABB8683672D2089E081132@itotest-1.spb.lucent.com>
49089      Branch: perl
49090            ! lib/bigint.pm
49091 ____________________________________________________________________________
49092 [ 23282] By: mhx                                   on 2004/09/08  20:19:18
49093         Log: Upgrade to Devel::PPPort 3.03.
49094      Branch: perl
49095            ! ext/Devel/PPPort/Changes ext/Devel/PPPort/META.yml
49096            ! ext/Devel/PPPort/PPPort.pm ext/Devel/PPPort/PPPort.xs
49097            ! ext/Devel/PPPort/PPPort_pm.PL
49098            ! ext/Devel/PPPort/parts/inc/MY_CXT ext/Devel/PPPort/t/MY_CXT.t
49099 ____________________________________________________________________________
49100 [ 23281] By: davem                                 on 2004/09/08  19:42:15
49101         Log: Subject:  [perl #21553] Re: Solaris Perl (fwd)
49102              From:  Andy Dougherty <doughera@lafayette.edu>
49103              Date:  Wed, 8 Sep 2004 11:32:26 -0400 (EDT)
49104              Message-Id:  <Pine.SOL.4.58.0409081129180.17582@maxwell.phys.lafayette.edu>
49105              Clarify whether it's safe to replace the perl bundled with Solaris
49106      Branch: perl
49107            ! README.solaris
49108 ____________________________________________________________________________
49109 [ 23280] By: mhx                                   on 2004/09/08  19:18:06
49110         Log: Upgrade to Devel::PPPort 3.02.
49111      Branch: perl
49112            ! ext/Devel/PPPort/Changes ext/Devel/PPPort/META.yml
49113            ! ext/Devel/PPPort/PPPort.pm ext/Devel/PPPort/PPPort_pm.PL
49114            ! ext/Devel/PPPort/devel/scanprov ext/Devel/PPPort/mktests.PL
49115            ! ext/Devel/PPPort/parts/base/5004050
49116            ! ext/Devel/PPPort/parts/base/5005000
49117            ! ext/Devel/PPPort/parts/base/5006000
49118            ! ext/Devel/PPPort/parts/base/5008001
49119            ! ext/Devel/PPPort/parts/base/5009002
49120            ! ext/Devel/PPPort/parts/inc/MY_CXT
49121            ! ext/Devel/PPPort/parts/inc/misc ext/Devel/PPPort/t/MY_CXT.t
49122            ! ext/Devel/PPPort/t/SvPV.t ext/Devel/PPPort/t/call.t
49123            ! ext/Devel/PPPort/t/cop.t ext/Devel/PPPort/t/grok.t
49124            ! ext/Devel/PPPort/t/limits.t ext/Devel/PPPort/t/mPUSH.t
49125            ! ext/Devel/PPPort/t/magic.t ext/Devel/PPPort/t/misc.t
49126            ! ext/Devel/PPPort/t/newCONSTSUB.t ext/Devel/PPPort/t/newRV.t
49127            ! ext/Devel/PPPort/t/ppphtest.t ext/Devel/PPPort/t/sv_xpvf.t
49128            ! ext/Devel/PPPort/t/threads.t ext/Devel/PPPort/t/uv.t
49129 ____________________________________________________________________________
49130 [ 23279] By: mhx                                   on 2004/09/08  18:46:56
49131         Log: Add MY_CXT_CLONE to the core. (Taken from Time::HiRes.) See also:
49132              http://groups.google.com/groups?selm=r5l1vv00ca033k7a06d40fgei1ion91rnp%404ax.com
49133      Branch: perl
49134            ! perl.h
49135 ____________________________________________________________________________
49136 [ 23278] By: nicholas                              on 2004/09/08  16:53:34
49137         Log: backport B to work on 5.8.x, so that a single version of the source
49138              can be maintained, and ultimately dual-lifed on CPAN
49139              (the version conditional changes are actually surprisingly small)
49140      Branch: perl
49141            ! ext/B/B.xs ext/B/B/C.pm ext/B/B/Concise.pm ext/B/B/Debug.pm
49142            ! ext/B/t/f_map.t ext/B/t/f_sort.t ext/B/t/optree_samples.t
49143            ! ext/B/t/stash.t
49144 ____________________________________________________________________________
49145 [ 23277] By: mhx                                   on 2004/09/08  16:49:59
49146         Log: Subject: SvO?OK_off()'s return value
49147              From: Marcus Holland-Moritz <mhx-perl@gmx.net>
49148              Date: Sun, 1 Aug 2004 12:46:48 +0200
49149              Message-Id: <20040801124648.7f9b3cee@r2d2>
49150
49151              Move (void) casts into SvOOK_off macro.
49152      Branch: perl
49153            ! gv.c mg.c perl.c pp.c pp_ctl.c pp_hot.c scope.c sv.c sv.h
49154 ____________________________________________________________________________
49155 [ 23276] By: merijn                                on 2004/09/07  12:57:58
49156         Log: Subject: [PATCH] perlintro.pod
49157              From: Paul Johnson <paul@pjcj.net>
49158              Date: Tue, 7 Sep 2004 15:13:51 +0200
49159              Message-ID: <20040907131351.GD2513@pjcj.net>
49160      Branch: perl
49161            ! pod/perlintro.pod
49162 ____________________________________________________________________________
49163 [ 23275] By: steveh                                on 2004/09/06  10:16:12
49164         Log: Implement new environment variable to allow the use of non-IFS
49165              compatible LSP's on Windows to allow Perl to work in conjunction
49166              with a firewall such as McAfee Guardian.
49167
49168              Bug report and possible solutions by Ken Fox <kfox@ford.com>;
49169              further assistance by Artiom Morozov <artiom@phreaker.net>.
49170      Branch: perl
49171            ! pod/perlrun.pod win32/win32sck.c
49172 ____________________________________________________________________________
49173 [ 23274] By: merijn                                on 2004/09/06  08:49:24
49174         Log: Subject: [PATCH] -Dunlink_all_versions for VMS
49175              From: "Craig A. Berry" <craigberry@mac.com>
49176              Date: Sat, 04 Sep 2004 11:58:56 -0500
49177              Message-ID: <4139F450.7040708@mac.com>
49178      Branch: perl
49179            ! configure.com
49180 ____________________________________________________________________________
49181 [ 23271] By: davem                                 on 2004/09/05  21:36:57
49182         Log: only mortalize deleted array elements for AvREAL
49183              (update to change #23158)
49184      Branch: perl
49185            ! av.c
49186 ____________________________________________________________________________
49187 [ 23267] By: davem                                 on 2004/09/05  20:16:55
49188         Log: I somehow managed to omit the base.pm change from #23266
49189      Branch: perl
49190            ! lib/base.pm
49191 ____________________________________________________________________________
49192 [ 23266] By: davem                                 on 2004/09/05  20:04:35
49193         Log: Fields package bug
49194              An intermediate class with no fields messes up private fields
49195              in the base class.
49196      Branch: perl
49197            ! lib/base.pm lib/base/t/fields-base.t
49198 ____________________________________________________________________________
49199 [ 23258] By: rgs                                   on 2004/09/02  15:37:55
49200         Log: Upgrade to Encode 2.02
49201      Branch: perl
49202            ! ext/Encode/AUTHORS ext/Encode/Changes ext/Encode/Encode.pm
49203            ! ext/Encode/META.yml ext/Encode/bin/enc2xs
49204            ! ext/Encode/bin/ucmsort ext/Encode/lib/Encode/Alias.pm
49205            ! ext/Encode/lib/Encode/Unicode/UTF7.pm
49206            ! ext/Encode/t/big5-hkscs.enc ext/Encode/t/big5-hkscs.utf
49207            ! ext/Encode/ucm/big5-hkscs.ucm
49208 ____________________________________________________________________________
49209 [ 23257] By: rgs                                   on 2004/09/02  15:01:39
49210         Log: Upgrade to version 0.42.
49211              From:
49212              Subject: CPAN Upload: J/JP/JPEACOCK/version-0.42.tar.gz
49213              From: John Peacock <jpeacock@rowman.com>
49214              Date: Wed, 18 Aug 2004 08:26:35 -0400
49215              Message-ID: <41234AFB.1020009@rowman.com>
49216      Branch: perl
49217            ! lib/version.pm lib/version.t util.c
49218 ____________________________________________________________________________
49219 [ 23256] By: davem                                 on 2004/09/01  23:41:25
49220         Log: Subject:  [PATCH] fields.pm lost compile-time benefit
49221              From:  Rick Delaney <rick@bort.ca>
49222              Date:  Fri, 13 Aug 2004 19:54:12 -0400
49223              Message-Id:  <20040813235412.GB12980@biff.bort.ca>
49224
49225              restore the compile-time field checking for
49226              my Dog $spot; $spot->{'walkies'};
49227              that was lost when pseudo-hashes were removed
49228      Branch: perl
49229            ! lib/base/t/fields-base.t lib/base/t/fields.t op.c
49230            ! pod/perldiag.pod
49231 ____________________________________________________________________________
49232 [ 23255] By: davem                                 on 2004/09/01  23:37:07
49233         Log: whoops, fix 'formline undef' test broken by change #23251
49234      Branch: perl
49235            ! t/lib/warnings/9uninit
49236 ____________________________________________________________________________
49237 [ 23253] By: davem                                 on 2004/09/01  22:45:07
49238         Log: Subject:  PATCH: Taintedness and ternary conditional
49239              From:  Andy Lester <andy@petdance.com>
49240              Date:  Thu, 26 Aug 2004 23:44:47 -0500
49241              Message-Id:  <20040827044447.GA5268@petdance.com>
49242
49243              add tests and documentation to the effect that ($tainted ? $a : $b)
49244              doesn't necessarily return a tainted value. Also tidy the markup in
49245              perldoc.pod
49246      Branch: perl
49247            ! pod/perlsec.pod t/op/taint.t
49248 ____________________________________________________________________________
49249 [ 23252] By: davem                                 on 2004/09/01  22:20:05
49250         Log: delete spurious blank lines added by change 23251
49251      Branch: perl
49252            ! pp_ctl.c
49253 ____________________________________________________________________________
49254 [ 23251] By: davem                                 on 2004/09/01  22:17:47
49255         Log: Random made scripts crashing perl
49256              fix 'formline undef' coredump
49257      Branch: perl
49258            ! pp_ctl.c t/lib/warnings/9uninit
49259 ____________________________________________________________________________
49260 [ 23250] By: davem                                 on 2004/09/01  20:46:13
49261         Log: From: david nicol <whatever@davidnicol.com>
49262              Subject: [perl #31228] no no-op
49263              Message-Id: 1093659222.1436.70.camel@plaza.davidnicol.com>
49264              Date: 27 Aug 2004 21:13:42 -0500
49265
49266              Document that 0 and 1 can (sort of) be used as no-ops.
49267      Branch: perl
49268            ! pod/perlop.pod
49269 ____________________________________________________________________________
49270 [ 23249] By: davem                                 on 2004/09/01  18:54:25
49271         Log: Subject:  [ PATCH ] 2 added private flags for B::Concise
49272              From:  Jim Cromie <jcromie@divsol.com>
49273              Date:  Tue, 31 Aug 2004 23:19:54 -0600
49274              Message-Id:  <41355BFA.8010900@divsol.com>
49275
49276              The OPpENTERSUB_NOMOD and OPpCONST_SHORTCIRCUIT flags weren't
49277              displayed by B::Concise.
49278      Branch: perl
49279            ! ext/B/B/Concise.pm
49280 ____________________________________________________________________________
49281 [ 23248] By: rgs                                   on 2004/09/01  15:35:20
49282         Log: Upgrade to Cwd 2.21.
49283      Branch: perl
49284            ! ext/Cwd/Changes ext/Cwd/t/cwd.t lib/Cwd.pm
49285 ____________________________________________________________________________
49286 [ 23247] By: rgs                                   on 2004/09/01  15:11:45
49287         Log: Update to File::Spec 0.90
49288      Branch: perl
49289            ! lib/File/Spec.pm lib/File/Spec/VMS.pm
49290 ____________________________________________________________________________
49291 [ 23246] By: mhx                                   on 2004/08/30  18:36:18
49292         Log: Skip Time::HiRes tests if configured without that module.
49293      Branch: perl
49294            ! ext/Time/HiRes/t/HiRes.t
49295 ____________________________________________________________________________
49296 [ 23245] By: mhx                                   on 2004/08/30  18:34:58
49297         Log: Fix skipping of a Dumpvalue test when configured without Devel::Peek.
49298      Branch: perl
49299            ! lib/Dumpvalue.t
49300 ____________________________________________________________________________
49301 [ 23244] By: mhx                                   on 2004/08/30  18:33:27
49302         Log: Skip a Data::Dumper test if configured without B module.
49303      Branch: perl
49304            ! ext/Data/Dumper/t/dumper.t
49305 ____________________________________________________________________________
49306 [ 23243] By: mhx                                   on 2004/08/29  13:22:48
49307         Log: Fix typo in B::Assembler.
49308      Branch: perl
49309            ! ext/B/B/Assembler.pm
49310 ____________________________________________________________________________
49311 [ 23242] By: mhx                                   on 2004/08/29  13:21:50
49312         Log: Skip ext/B/t/assembler.t when configured without B.
49313      Branch: perl
49314            ! ext/B/t/assembler.t
49315 ____________________________________________________________________________
49316 [ 23241] By: merijn                                on 2004/08/28  08:05:19
49317         Log: Subject: [PATCH] File::Spec::VMS update
49318              From: "Craig A. Berry" <craigberry@mac.com>
49319              Date: Fri, 27 Aug 2004 18:51:09 -0500
49320              Message-ID: <412FC8ED.1020300@mac.com>
49321      Branch: perl
49322            ! lib/File/Spec/VMS.pm lib/File/Spec/t/Spec.t
49323 ____________________________________________________________________________
49324 [ 23240] By: merijn                                on 2004/08/28  07:41:47
49325         Log: Pumpkinship updates
49326      Branch: perl
49327            ! pod/perlhack.pod
49328 ____________________________________________________________________________
49329 [ 23239] By: mhx                                   on 2004/08/26  21:57:39
49330         Log: Fix nasty line break in Storable test file.
49331      Branch: perl
49332            ! ext/Storable/t/just_plain_nasty.t
49333 ____________________________________________________________________________
49334 [ 23238] By: rgs                                   on 2004/08/26  13:02:14
49335         Log: Upgrade to MIME::Base64 3.03
49336      Branch: perl
49337            ! ext/MIME/Base64/Base64.pm ext/MIME/Base64/Changes
49338            ! ext/MIME/Base64/QuotedPrint.pm
49339 ____________________________________________________________________________
49340 [ 23237] By: rgs                                   on 2004/08/25  08:32:41
49341         Log: Upgrade to MIME::Base64 3.02.
49342      Branch: perl
49343            ! ext/MIME/Base64/Base64.pm ext/MIME/Base64/Base64.xs
49344            ! ext/MIME/Base64/Changes ext/MIME/Base64/QuotedPrint.pm
49345            ! ext/MIME/Base64/t/quoted-print.t
49346 ____________________________________________________________________________
49347 [ 23236] By: rgs                                   on 2004/08/24  17:24:40
49348         Log: Grammatical nit by Hugo.
49349      Branch: perl
49350            ! pod/perlnewmod.pod
49351 ____________________________________________________________________________
49352 [ 23235] By: rgs                                   on 2004/08/23  12:32:33
49353         Log: Subject: [perl #31295] PATCH: Test comp/use.t fails on Tru64
49354              From: Nikola Milutinovic (via RT) <perlbug-followup@perl.org>
49355              Date: 23 Aug 2004 10:37:31 -0000
49356              Message-ID: <rt-3.0.11-31295-94232.1.74127465250315@perl.org>
49357      Branch: perl
49358            ! t/comp/use.t
49359 ____________________________________________________________________________
49360 [ 23234] By: mhx                                   on 2004/08/23  05:33:39
49361         Log: Upgrade to Devel::PPPort 3.01.
49362      Branch: perl
49363            ! ext/Devel/PPPort/Changes ext/Devel/PPPort/META.yml
49364            ! ext/Devel/PPPort/PPPort.pm ext/Devel/PPPort/PPPort_pm.PL
49365            ! ext/Devel/PPPort/module2.c ext/Devel/PPPort/parts/inc/ppphtest
49366            ! ext/Devel/PPPort/parts/inc/version
49367            ! ext/Devel/PPPort/t/ppphtest.t
49368 ____________________________________________________________________________
49369 [ 23233] By: mhx                                   on 2004/08/22  22:18:56
49370         Log: Fix some backwards-compatibility problems with Storable.
49371      Branch: perl
49372            ! ext/Storable/Storable.xs ext/Storable/t/weak.t
49373 ____________________________________________________________________________
49374 [ 23232] By: rgs                                   on 2004/08/22  19:14:57
49375         Log: Upgrade to Time::HiRes 1.61
49376      Branch: perl
49377            ! ext/Time/HiRes/Changes ext/Time/HiRes/HiRes.pm
49378            ! ext/Time/HiRes/HiRes.xs ext/Time/HiRes/Makefile.PL
49379            ! ext/Time/HiRes/hints/solaris.pl ext/Time/HiRes/t/HiRes.t
49380 ____________________________________________________________________________
49381 [ 23231] By: mhx                                   on 2004/08/22  15:36:36
49382         Log: Fix Storable's MANIFEST.
49383      Branch: perl
49384            ! ext/Storable/MANIFEST
49385 ____________________________________________________________________________
49386 [ 23230] By: davem                                 on 2004/08/20  21:20:48
49387         Log: a regex in STDOUT destructor coredumped because regex pad already
49388              freed
49389      Branch: perl
49390            ! perl.c t/op/ref.t
49391 ____________________________________________________________________________
49392 [ 23229] By: mhx                                   on 2004/08/20  13:18:08
49393         Log: Upgrade to Devel::PPPort 3.00_03.
49394      Branch: perl
49395            ! ext/Devel/PPPort/Changes ext/Devel/PPPort/META.yml
49396            ! ext/Devel/PPPort/PPPort.pm ext/Devel/PPPort/PPPort_pm.PL
49397            ! ext/Devel/PPPort/parts/inc/ppphtest
49398            ! ext/Devel/PPPort/t/ppphtest.t
49399 ____________________________________________________________________________
49400 [ 23228] By: mhx                                   on 2004/08/19  23:14:00
49401         Log: Tweak 'h2xs -h' output.
49402      Branch: perl
49403            ! utils/h2xs.PL
49404 ____________________________________________________________________________
49405 [ 23227] By: mhx                                   on 2004/08/19  17:05:48
49406         Log: Delete superfluous "with".
49407      Branch: perl
49408            ! README.win32
49409 ____________________________________________________________________________
49410 [ 23226] By: mhx                                   on 2004/08/19  11:22:15
49411         Log: Upgrade to Devel::PPPort 3.00_02.
49412      Branch: perl
49413            ! ext/Devel/PPPort/Changes ext/Devel/PPPort/META.yml
49414            ! ext/Devel/PPPort/Makefile.PL ext/Devel/PPPort/PPPort.pm
49415            ! ext/Devel/PPPort/PPPort_pm.PL
49416 ____________________________________________________________________________
49417 [ 23225] By: rgs                                   on 2004/08/19  07:58:59
49418         Log: Mark a test that relies on tainting behavior as TODO on Windows.
49419      Branch: perl
49420            ! t/comp/opsubs.t
49421 ____________________________________________________________________________
49422 [ 23224] By: steveh                                on 2004/08/18  13:44:13
49423         Log: Add notes for building with MS VC++ Toolkit 2003
49424      Branch: perl
49425            ! README.win32
49426 ____________________________________________________________________________
49427 [ 23223] By: mhx                                   on 2004/08/17  21:33:41
49428         Log: Upgrade to Devel::PPPort 3.00_01.
49429      Branch: perl
49430            + ext/Devel/PPPort/parts/inc/sv_xpvf ext/Devel/PPPort/t/cop.t
49431            + ext/Devel/PPPort/t/sv_xpvf.t
49432            ! MANIFEST ext/Devel/PPPort/Changes ext/Devel/PPPort/MANIFEST
49433            ! ext/Devel/PPPort/META.yml ext/Devel/PPPort/PPPort.pm
49434            ! ext/Devel/PPPort/PPPort.xs ext/Devel/PPPort/PPPort_pm.PL
49435            ! ext/Devel/PPPort/TODO ext/Devel/PPPort/parts/apicheck.pl
49436            ! ext/Devel/PPPort/parts/inc/misc
49437            ! ext/Devel/PPPort/parts/inc/ppphbin
49438            ! ext/Devel/PPPort/parts/inc/ppphtest
49439            ! ext/Devel/PPPort/parts/inc/uv
49440            ! ext/Devel/PPPort/parts/ppptools.pl
49441            ! ext/Devel/PPPort/parts/todo/5004000
49442            ! ext/Devel/PPPort/parts/todo/5004050
49443            ! ext/Devel/PPPort/parts/todo/5006000
49444            ! ext/Devel/PPPort/t/ppphtest.t ext/Devel/PPPort/t/uv.t
49445 ____________________________________________________________________________
49446 [ 23222] By: mhx                                   on 2004/08/17  10:14:46
49447         Log: Upgrade to Devel::PPPort 3.00.
49448      Branch: perl
49449            + (add 103 files)
49450            - ext/Devel/PPPort/t/test.t
49451            ! MANIFEST ext/Devel/PPPort/Changes ext/Devel/PPPort/MANIFEST
49452            ! ext/Devel/PPPort/Makefile.PL ext/Devel/PPPort/PPPort.pm
49453            ! ext/Devel/PPPort/PPPort.xs ext/Devel/PPPort/README
49454            ! ext/Devel/PPPort/TODO ext/Devel/PPPort/module2.c
49455            ! ext/Devel/PPPort/module3.c ext/Devel/PPPort/ppport_h.PL
49456            ! ext/Devel/PPPort/soak
49457 ____________________________________________________________________________
49458 [ 23221] By: rgs                                   on 2004/08/17  08:25:39
49459         Log: Subject: [PATCH] Document Carp's global variables + provide tests
49460              From: "Jos I. Boumans" <kane@dwim.org>
49461              Date: Mon, 16 Aug 2004 15:53:40 +0200
49462              Message-Id: <ADC6DEC6-EF8B-11D8-8425-000A95EF62E2@dwim.org>
49463              (tests a bit reworked)
49464      Branch: perl
49465            ! lib/Carp.pm lib/Carp.t
49466 ____________________________________________________________________________
49467 [ 23220] By: rgs                                   on 2004/08/17  07:29:11
49468         Log: Subject: Updates to modules-related pod
49469              From: Kirrily Skud Robert <skud@infotrope.net>
49470              Date: Mon, 16 Aug 2004 16:00:14 -0400
49471              Message-ID: <20040816200014.GC27764@infotrope.net>
49472      Branch: perl
49473            ! pod/perlnewmod.pod
49474 ____________________________________________________________________________
49475 [ 23219] By: rgs                                   on 2004/08/16  17:59:22
49476         Log: Subject: [PATCH] running mktables on VMS
49477              From: "Craig A. Berry" <craigberry@mac.com>
49478              Date: Tue, 10 Aug 2004 22:28:04 -0500
49479              Message-ID: <41199244.9020706@mac.com>
49480      Branch: perl
49481            ! vms/descrip_mms.template
49482 ____________________________________________________________________________
49483 [ 23218] By: rgs                                   on 2004/08/16  07:23:56
49484         Log: Subject: [PATCH] make cygwin ld2 executable
49485              From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
49486              Date: Sun, 15 Aug 2004 17:14:59 -0700
49487              Message-ID: <20040816001252.GA2148@efn.org>
49488      Branch: perl
49489            ! cygwin/Makefile.SHs
49490 ____________________________________________________________________________
49491 [ 23217] By: davem                                 on 2004/08/14  22:32:16
49492         Log: make pp_goto() cope potential stack reallocation in EXTEND
49493              The code for goto &foo had local pointers to the stack that
49494              pointed to the wrong place after a realloc.
49495      Branch: perl
49496            ! pp_ctl.c t/op/goto.t
49497 ____________________________________________________________________________
49498 [ 23216] By: rgs                                   on 2004/08/13  13:18:37
49499         Log: Subject: [PATCH] pre Math::BigInt v1.72
49500              From: Tels <perl_dummy@bloodgate.com>
49501              Date: Fri, 13 Aug 2004 14:02:50 +0200
49502              Message-Id: <200408131402.52270@bloodgate.com>
49503      Branch: perl
49504            ! lib/Math/BigFloat.pm lib/Math/BigInt.pm
49505            ! lib/Math/BigInt/Calc.pm lib/Math/BigInt/t/bare_mbf.t
49506            ! lib/Math/BigInt/t/bigfltpm.inc lib/Math/BigInt/t/bigfltpm.t
49507            ! lib/Math/BigInt/t/sub_mbf.t lib/Math/BigInt/t/with_sub.t
49508 ____________________________________________________________________________
49509 [ 23215] By: rgs                                   on 2004/08/13  12:09:35
49510         Log: Subject: Test for functions with operator names
49511              From: Andy Lester <andy@petdance.com>
49512              Date: Thu, 12 Aug 2004 11:31:03 -0500
49513              Message-ID: <20040812163103.GA26687@petdance.com>
49514      Branch: perl
49515            + t/comp/opsubs.t
49516            ! MANIFEST
49517 ____________________________________________________________________________
49518 [ 23214] By: rgs                                   on 2004/08/13  07:13:38
49519         Log: Subject: api doc fix for SvSetMagicSV_nosteal
49520              From: Stas Bekman <stas@stason.org>
49521              Date: Thu, 12 Aug 2004 18:10:36 -0700
49522              Message-ID: <411C150C.5020602@stason.org>
49523      Branch: perl
49524            ! pod/perlapi.pod sv.h
49525 ____________________________________________________________________________
49526 [ 23213] By: rgs                                   on 2004/08/10  13:17:40
49527         Log: Subject: Re: 2 patches: goto.t, B.pm/xs
49528              From: Jim Cromie <jcromie@divsol.com>
49529              Date: Tue, 10 Aug 2004 07:29:08 -0600
49530              Message-ID: <4118CDA4.3060700@divsol.com>
49531      Branch: perl
49532            ! t/op/goto.t
49533 ____________________________________________________________________________
49534 [ 23212] By: rgs                                   on 2004/08/10  07:21:19
49535         Log: Subject: 2 patches: goto.t, B.pm/xs
49536              From: Jim Cromie <jcromie@divsol.com>
49537              Date: Sun, 08 Aug 2004 18:42:47 -0600
49538              Message-ID: <4116C887.9080400@divsol.com>
49539      Branch: perl
49540            ! ext/B/B.pm ext/B/B.xs
49541 ____________________________________________________________________________
49542 [ 23211] By: rgs                                   on 2004/08/10  07:00:01
49543         Log: Subject: Re: POSIX::sigprocmask implemented incorrectly
49544              From: Alan Burlison <Alan.Burlison@sun.com>
49545              Date: Mon, 09 Aug 2004 19:00:12 +0100
49546              Message-ID: <4117BBAC.7080603@sun.com>
49547      Branch: perl
49548            ! ext/POSIX/POSIX.xs
49549 ____________________________________________________________________________
49550 [ 23210] By: davem                                 on 2004/08/09  19:58:35
49551         Log: Fix a typo and remove some debugging crud from change #23209
49552      Branch: perl
49553            ! ext/XS/APItest/t/call.t
49554 ____________________________________________________________________________
49555 [ 23209] By: davem                                 on 2004/08/09  19:48:57
49556         Log: eval_sv() failing a taint test could corrupt the stack
49557      Branch: perl
49558            ! ext/XS/APItest/t/call.t perl.c
49559 ____________________________________________________________________________
49560 [ 23208] By: davem                                 on 2004/08/09  18:28:33
49561         Log: made eq_array in t/test.pl handle undef values better
49562      Branch: perl
49563            ! t/test.pl
49564 ____________________________________________________________________________
49565 [ 23207] By: davem                                 on 2004/08/09  17:21:27
49566         Log: fix minor nit in file description, to keep Jarkko happy
49567      Branch: perl
49568            ! utf8.c
49569 ____________________________________________________________________________
49570 [ 23206] By: rgs                                   on 2004/08/09  15:33:54
49571         Log: Subject: Patch for t/op/sleep.t
49572              From: Andy Lester <andy@petdance.com>
49573              Date: Mon, 9 Aug 2004 00:11:51 -0500
49574              Message-ID: <20040809051151.GA13872@petdance.com>
49575      Branch: perl
49576            ! t/op/sleep.t
49577 ____________________________________________________________________________
49578 [ 23205] By: rgs                                   on 2004/08/09  12:10:25
49579         Log: Add a note in perltodo about a potential extension of readpipe()
49580      Branch: perl
49581            ! pod/perltodo.pod
49582 ____________________________________________________________________________
49583 [ 23204] By: rgs                                   on 2004/08/09  09:13:27
49584         Log: Subject: Re: POSIX::sigprocmask implemented incorrectly
49585              From: Alan Burlison <Alan.Burlison@sun.com>
49586              Date: Mon, 09 Aug 2004 10:30:25 +0100
49587              Message-ID: <41174431.6050803@sun.com>
49588      Branch: perl
49589            ! ext/POSIX/POSIX.xs
49590 ____________________________________________________________________________
49591 [ 23203] By: davem                                 on 2004/08/07  15:10:40
49592         Log: Add tests for XS call_*() API
49593      Branch: perl
49594            + ext/XS/APItest/t/call.t
49595            ! MANIFEST ext/XS/APItest/APItest.pm ext/XS/APItest/APItest.xs
49596            ! ext/XS/APItest/MANIFEST pod/perlcall.pod
49597 ____________________________________________________________________________
49598 [ 23202] By: mhx                                   on 2004/08/07  15:10:39
49599         Log: Subject: [PATCH] DB_File 1.810
49600              From: "Paul Marquess" <Paul.Marquess@btinternet.com>
49601              Date: Sat, 7 Aug 2004 15:22:09 +0100
49602              Message-Id: <20040807142059.CTQC10838.mta10-svc.ntlworld.com@MARQUESSPT21>
49603      Branch: perl
49604            ! ext/DB_File/Changes ext/DB_File/DB_File.pm
49605            ! ext/DB_File/DB_File.xs ext/DB_File/t/db-hash.t
49606 ____________________________________________________________________________
49607 [ 23200] By: steveh                                on 2004/08/06  12:55:31
49608         Log: Fix [perl #24269] socket() call uses non-IFS providers
49609              causing subsequent print/read to hang or misbehave
49610
49611              Patch supplied by Artiom Morozov <artiom@phreaker.net>
49612              in the bug report at http://rt.perl.org/rt3/index.html?q=24269
49613      Branch: perl
49614            ! README.win32 win32/Makefile win32/makefile.mk win32/win32.c
49615            ! win32/win32.h win32/win32sck.c
49616 ____________________________________________________________________________
49617 [ 23199] By: steveh                                on 2004/08/06  11:57:59
49618         Log: Another small clean-up following changes #23190 and #23198
49619      Branch: perl
49620            ! gv.c
49621 ____________________________________________________________________________
49622 [ 23198] By: davem                                 on 2004/08/06  10:06:46
49623         Log: remove leaks associated with version object change #23190
49624      Branch: perl
49625            ! gv.c util.c
49626 ____________________________________________________________________________
49627 [ 23197] By: rgs                                   on 2004/08/06  06:53:08
49628         Log: Subject: [PATCH sv.c]  signedness nit in #23190
49629              From: "Craig A. Berry" <craigberry@mac.com>
49630              Date: Thu, 05 Aug 2004 13:10:55 -0500
49631              Message-ID: <4112782F.7040302@mac.com>
49632      Branch: perl
49633            ! sv.c
49634 ____________________________________________________________________________
49635 [ 23196] By: mhx                                   on 2004/08/04  18:29:23
49636         Log: Document sv_catpvn_nomg, sv_setsv_nomg and sv_catsv_nomg.
49637      Branch: perl
49638            ! pod/perlapi.pod sv.h
49639 ____________________________________________________________________________
49640 [ 23195] By: nick                                  on 2004/08/04  18:16:47
49641         Log: Comment describing purpose.
49642      Branch: perl
49643            ! globals.c
49644 ____________________________________________________________________________
49645 [ 23194] By: rgs                                   on 2004/08/04  07:18:49
49646         Log: Subject: Re: POSIX::sigprocmask implemented incorrectly
49647              From: Alan Burlison <Alan.Burlison@sun.com>
49648              Date: Mon, 19 Jul 2004 12:07:02 +0100
49649              Message-ID: <40FBAB56.1030208@sun.com>
49650
49651              (last chunk only)
49652      Branch: perl
49653            ! ext/POSIX/POSIX.xs
49654 ____________________________________________________________________________
49655 [ 23193] By: rgs                                   on 2004/08/04  07:00:21
49656         Log: Remove compilation warnings about uninitialized variables.
49657      Branch: perl
49658            ! sv.c
49659 ____________________________________________________________________________
49660 [ 23192] By: rgs                                   on 2004/08/04  06:55:46
49661         Log: Remove the "Newline in left-justified string" warning.
49662      Branch: perl
49663            ! pod/perldiag.pod sv.c t/lib/warnings/sv
49664 ____________________________________________________________________________
49665 [ 23191] By: rgs                                   on 2004/08/04  06:30:58
49666         Log: Subject: [PATCH] extension to diagnostics.pm
49667              From: Fergal Daly <fergal@esatclear.ie>
49668              Date: Wed, 4 Aug 2004 00:33:09 +0100
49669              Message-ID: <20040803233309.GA239@dyn.fergaldaly.com>
49670      Branch: perl
49671            ! lib/diagnostics.pm
49672 ____________________________________________________________________________
49673 [ 23190] By: rgs                                   on 2004/08/04  06:19:27
49674         Log: Subject: [PATCH] Final version object core patch?
49675              From: John Peacock <jpeacock@rowman.com>
49676              Date: Tue, 03 Aug 2004 22:23:57 -0400
49677              Message-ID: <411048BD.3080700@rowman.com>
49678      Branch: perl
49679            ! gv.c perl.c pp_ctl.c sv.c t/comp/require.t t/op/ver.t util.c
49680 ____________________________________________________________________________
49681 [ 23189] By: merijn                                on 2004/08/03  23:51:13
49682         Log: gcc on AIX 4 doesn't like -G on the commandline too
49683      Branch: perl
49684            ! hints/aix_4.sh
49685 ____________________________________________________________________________
49686 [ 23188] By: merijn                                on 2004/08/03  23:48:13
49687         Log: gcc on AIX doesn't like -G on the commandline
49688      Branch: perl
49689            ! hints/aix.sh
49690 ____________________________________________________________________________
49691 [ 23187] By: davem                                 on 2004/08/03  19:20:18
49692         Log: more typo fixes for change 3176 (comments at top of .c files)
49693      Branch: perl
49694            ! mg.c miniperlmain.c perl.c run.c scope.c
49695 ____________________________________________________________________________
49696 [ 23186] By: rgs                                   on 2004/08/03  10:22:54
49697         Log: Subject: [perl #30914] ExtUtils::Embed should use libperl name from Config
49698              From: Marek Rouchal (via RT) <perlbug-followup@perl.org>
49699              Date: 2 Aug 2004 07:00:33 -0000
49700              Message-ID: <rt-3.0.11-30914-93038.14.5123598132685@perl.org>
49701      Branch: perl
49702            ! lib/ExtUtils/Embed.pm
49703 ____________________________________________________________________________
49704 [ 23185] By: rgs                                   on 2004/08/03  09:39:35
49705         Log: Subject: [PATCH] additional -V:foo tests
49706              From: Jim Cromie <jcromie@divsol.com>
49707              Date: Mon, 02 Aug 2004 09:15:23 -0600
49708              Message-ID: <410E5A8B.9030307@divsol.com>
49709      Branch: perl
49710            ! configpm lib/Config.t pod/perlrun.pod
49711 ____________________________________________________________________________
49712 [ 23184] By: rgs                                   on 2004/08/02  16:40:36
49713         Log: Enhance the caveat in the description of tell()
49714
49715              Subject: Re: [perl #30788] Error in documentation
49716              From: Nick Ing-Simmons <nick@ing-simmons.net>
49717              Date: Wed, 28 Jul 2004 15:12:54 +0100
49718              Message-Id: <20040728141254.3861.5@llama.ing-simmons.net>
49719      Branch: perl
49720            ! pod/perlfunc.pod
49721 ____________________________________________________________________________
49722 [ 23183] By: rgs                                   on 2004/08/02  09:16:13
49723         Log: Remove empty rpath from .so files
49724      Branch: perl
49725            ! lib/ExtUtils/MM_Unix.pm
49726 ____________________________________________________________________________
49727 [ 23182] By: rgs                                   on 2004/08/02  09:11:12
49728         Log: Subject: [PATCH] mention refaddr() in overload::StrVal docs
49729              From: Fergal Daly <fergal@esatclear.ie>
49730              Date: Fri, 30 Jul 2004 16:09:19 +0100
49731              Message-ID: <20040730150919.GB19022@dyn.fergaldaly.com>
49732      Branch: perl
49733            ! lib/overload.pm
49734 ____________________________________________________________________________
49735 [ 23181] By: steveh                                on 2004/08/02  08:05:05
49736         Log: Fix breakage caused by Change 23179
49737      Branch: perl
49738            ! t/run/fresh_perl.t
49739 ____________________________________________________________________________
49740 [ 23180] By: davem                                 on 2004/08/01  16:49:20
49741         Log: Add comment to top of reentr.c and fix typos in other files
49742      Branch: perl
49743            ! deb.c dump.c miniperlmain.c pad.c perly.y reentr.c reentr.h
49744            ! reentr.pl regcomp.c regexec.c scope.c utf8.c
49745 ____________________________________________________________________________
49746 [ 23179] By: mhx                                   on 2004/08/01  16:10:19
49747         Log: Skip test when building without Encode.
49748      Branch: perl
49749            ! t/run/fresh_perl.t
49750 ____________________________________________________________________________
49751 [ 23178] By: mhx                                   on 2004/08/01  10:19:46
49752         Log: Remove redundant SvOOK_off (called implicitly by SvOK_off)
49753              and merge identical cases.
49754      Branch: perl
49755            ! scope.c
49756 ____________________________________________________________________________
49757 [ 23177] By: davem                                 on 2004/07/31  16:27:09
49758         Log: shut up a warning in mg.c
49759      Branch: perl
49760            ! mg.c
49761 ____________________________________________________________________________
49762 [ 23176] By: davem                                 on 2004/07/31  16:21:50
49763         Log: Add comment to the top of most .c files explaining their purpose
49764      Branch: perl
49765            ! deb.c doio.c doop.c dump.c gv.c hv.c locale.c malloc.c mg.c
49766            ! miniperlmain.c numeric.c op.c pad.c perl.c perlio.c perly.act
49767            ! perly.h perly.tab perly.y pp.c pp_ctl.c pp_hot.c pp_pack.c
49768            ! pp_sort.c pp_sys.c regcomp.c regexec.c run.c scope.c taint.c
49769            ! universal.c utf8.c util.c
49770 ____________________________________________________________________________
49771 [ 23175] By: mhx                                   on 2004/07/31  15:19:13
49772         Log: Fix copy & paste bugs in mX?PUSH macro tests.
49773      Branch: perl
49774            ! ext/XS/APItest/APItest.xs
49775 ____________________________________________________________________________
49776 [ 23174] By: merijn                                on 2004/07/31  08:32:31
49777         Log: First steps towards an explicit perl.exp-less AIX build
49778              Previous method can still be used by undeffing usenativedlopen
49779              If that is ever tested at all on AIX
49780      Branch: perl
49781            ! hints/aix.sh hints/aix_4.sh
49782 ____________________________________________________________________________
49783 [ 23173] By: mhx                                   on 2004/07/31  08:29:54
49784         Log: Fix and update Perl_grok_* docs.
49785      Branch: perl
49786            ! numeric.c pod/perlapi.pod
49787 ____________________________________________________________________________
49788 [ 23172] By: steveh                                on 2004/07/30  14:31:08
49789         Log: A few minor updates to README.win32 (aka perlwin32)
49790      Branch: perl
49791            ! README.win32
49792 ____________________________________________________________________________
49793 [ 23171] By: rgs                                   on 2004/07/30  14:24:08
49794         Log: Upgrade to Math::BigInt v1.71.
49795      Branch: perl
49796            ! lib/Math/BigFloat.pm lib/Math/BigInt.pm
49797            ! lib/Math/BigInt/Calc.pm lib/Math/BigInt/t/bare_mbf.t
49798            ! lib/Math/BigInt/t/bigfltpm.inc lib/Math/BigInt/t/bigfltpm.t
49799            ! lib/Math/BigInt/t/sub_mbf.t lib/Math/BigInt/t/with_sub.t
49800 ____________________________________________________________________________
49801 [ 23170] By: steveh                                on 2004/07/30  13:27:41
49802         Log: Bug report #30132 was resolved before it was finished!
49803              Here's the last piece in the puzzle.
49804      Branch: perl
49805            ! ext/IO/lib/IO/File.pm
49806 ____________________________________________________________________________
49807 [ 23168] By: rgs                                   on 2004/07/28  12:13:36
49808         Log: Upgrade to File::Spec 0.88.
49809      Branch: perl
49810            ! lib/File/Spec.pm lib/File/Spec/Win32.pm lib/File/Spec/t/Spec.t
49811 ____________________________________________________________________________
49812 [ 23167] By: rgs                                   on 2004/07/28  09:20:12
49813         Log: Subject: Re: [perl #30783] Test::Builder does not handle overloaded "name" values
49814              From: Autrijus Tang <autrijus@gmail.com>
49815              Date: Thu, 22 Jul 2004 20:17:58 -0700
49816              Message-ID: <1912f0e204072220171790193a@mail.gmail.com>
49817      Branch: perl
49818            ! lib/Test/Builder.pm
49819 ____________________________________________________________________________
49820 [ 23166] By: rgs                                   on 2004/07/28  06:31:06
49821         Log: Subject: Re: more 5.9 sort tests (second draft)
49822              From: david nicol <whatever@davidnicol.com>
49823              Date: 21 Jul 2004 17:10:05 -0500
49824              Message-Id: <1090447805.995.24.camel@plaza.davidnicol.com>
49825      Branch: perl
49826            ! t/op/sort.t
49827 ____________________________________________________________________________
49828 [ 23165] By: rgs                                   on 2004/07/28  06:25:15
49829         Log: Subject: Re: AW: [perl #7558] [PATCH] README.solaris
49830              From: Andy Dougherty <doughera@lafayette.edu>
49831              Date: Tue, 27 Jul 2004 14:12:06 -0400 (EDT)
49832              Message-ID: <Pine.SOL.4.58.0407271335550.22839@maxwell.phys.lafayette.edu>
49833      Branch: perl
49834            ! README.solaris
49835 ____________________________________________________________________________
49836 [ 23164] By: davem                                 on 2004/07/26  22:08:32
49837         Log: Subject:  [perl #7558] [PATCH] README.solaris
49838              From:  Andy Dougherty <doughera@lafayette.edu>
49839              Date:  Mon, 26 Jul 2004 15:32:35 -0400 (EDT)
49840              Message-Id:  <Pine.SOL.4.58.0407261530350.19559@maxwell.phys.lafayette.edu>
49841
49842              Add more info on /dev/random under solaris
49843      Branch: perl
49844            ! README.solaris
49845 ____________________________________________________________________________
49846 [ 23163] By: mhx                                   on 2004/07/26  17:14:37
49847         Log: The byte-order modifiers won't go into 5.8.
49848      Branch: perl
49849            ! pod/perlfunc.pod pod/perlport.pod
49850 ____________________________________________________________________________
49851 [ 23162] By: steveh                                on 2004/07/26  10:41:56
49852         Log: Windows-related updates to Porting/repository.pod
49853      Branch: perl
49854            ! Porting/repository.pod
49855 ____________________________________________________________________________
49856 [ 23161] By: davem                                 on 2004/07/25  19:05:28
49857         Log: make -Dl log runops loop entry and exit, and jump level popping
49858      Branch: perl
49859            ! dump.c scope.h
49860 ____________________________________________________________________________
49861 [ 23160] By: davem                                 on 2004/07/24  10:00:27
49862         Log: document that -i messes soft as well hard hard links.
49863      Branch: perl
49864            ! pod/perlrun.pod
49865 ____________________________________________________________________________
49866 [ 23159] By: davem                                 on 2004/07/23  21:15:32
49867         Log: make a note in perlrun that -i doesn't preserve UNIX hard links.
49868      Branch: perl
49869            ! pod/perlrun.pod
49870 ____________________________________________________________________________
49871 [ 23158] By: davem                                 on 2004/07/23  11:06:02
49872         Log: memory leak in array delete
49873              av_delete() wasn't mortalizing the returned value
49874      Branch: perl
49875            ! av.c t/op/delete.t
49876 ____________________________________________________________________________
49877 [ 23157] By: davem                                 on 2004/07/23  10:35:16
49878         Log: remove binary compat from #23156 (remove PL_retstack)
49879      Branch: perl
49880            ! cop.h embed.fnc embed.h embedvar.h perlapi.h proto.h scope.c
49881            ! thrdvar.h
49882 ____________________________________________________________________________
49883 [ 23156] By: davem                                 on 2004/07/23  09:52:59
49884         Log: remove the return stack PL_retstack, and store return ops in the CX
49885              structure directly instead
49886      Branch: perl
49887            ! cc_runtime.h cop.h deb.c mg.c perl.c pp_ctl.c pp_hot.c
49888            ! pp_sys.c scope.c sv.c thrdvar.h
49889 ____________________________________________________________________________
49890 [ 23155] By: nicholas                              on 2004/07/22  18:50:31
49891         Log: Build the perldelta copying command for the main Unix makefile with
49892              buildtoc, so that it doesn't get forgotten on version increments.
49893      Branch: perl
49894            ! Makefile.SH pod/buildtoc
49895 ____________________________________________________________________________
49896 [ 23154] By: nicholas                              on 2004/07/22  18:19:58
49897         Log: Grab perl585delta.pod from maint and
49898
49899              Integrate:
49900              [ 23069]
49901              This is RC2. Maybe this one will last longer.
49902
49903              [ 23141]
49904              Break a leg
49905
49906              [perlhist.pod]
49907      Branch: perl
49908           +> pod/perl585delta.pod
49909            ! MANIFEST pod.lst pod/perl.pod pod/perltoc.pod
49910            ! vms/descrip_mms.template win32/pod.mak
49911           !> pod/perlhist.pod
49912 ____________________________________________________________________________
49913 [ 23152] By: rgs                                   on 2004/07/22  16:16:41
49914         Log: Upgrade to Cwd 2.20
49915      Branch: perl
49916            + ext/Cwd/t/win32.t
49917            ! MANIFEST ext/Cwd/Changes ext/Cwd/Cwd.xs ext/Cwd/t/cwd.t
49918            ! lib/Cwd.pm
49919 ____________________________________________________________________________
49920 [ 23151] By: rgs                                   on 2004/07/22  15:50:34
49921         Log: Sort perldiag.
49922      Branch: perl
49923            ! pod/perldiag.pod
49924 ____________________________________________________________________________
49925 [ 23150] By: rgs                                   on 2004/07/22  13:15:12
49926         Log: Subject: Re: "Too late for -T" could be more descriptive
49927              From: Jim Cromie <jcromie@divsol.com>
49928              Date: Wed, 21 Jul 2004 11:21:50 -0600
49929              Message-ID: <40FEA62E.2010809@divsol.com>
49930              (with tweaks)
49931      Branch: perl
49932            ! perl.c perl.h pod/perldebug.pod pod/perldiag.pod
49933            ! pod/perlrun.pod
49934 ____________________________________________________________________________
49935 [ 23149] By: rgs                                   on 2004/07/22  12:09:40
49936         Log: Email change for Steffen Mueller.
49937      Branch: perl
49938            ! AUTHORS
49939 ____________________________________________________________________________
49940 [ 23148] By: rgs                                   on 2004/07/22  11:32:16
49941         Log: Grammar fix by Paul Johnson.
49942      Branch: perl
49943            ! pod/perldiag.pod
49944 ____________________________________________________________________________
49945 [ 23147] By: nicholas                              on 2004/07/22  10:51:48
49946         Log: Config::config_re and config_sh would report the byteorder as 'ffff'
49947      Branch: perl
49948            ! configpm lib/Config.t
49949 ____________________________________________________________________________
49950 [ 23146] By: rgs                                   on 2004/07/21  12:01:32
49951         Log: Subject: [PATCH] Mention common dynaloader errors in perldiag.pod
49952              From: "Jos I. Boumans" <kane@dwim.org>
49953              Date: Wed, 21 Jul 2004 13:47:35 +0200
49954              Message-Id: <C226C05A-DB0B-11D8-A551-000A95EF62E2@dwim.org>
49955              (with tweaks)
49956      Branch: perl
49957            ! pod/perldiag.pod
49958 ____________________________________________________________________________
49959 [ 23145] By: rgs                                   on 2004/07/21  08:47:14
49960         Log: Subject: [PATCH perl-current] Re: [perl #30688] Empty slice arg with ($;$) prototype
49961              From: Rick Delaney <rick@bort.ca>
49962              Date: Tue, 20 Jul 2004 16:53:54 -0400
49963              Message-ID: <20040720205353.GA970@biff.bort.ca>
49964      Branch: perl
49965            ! pp.c t/op/list.t
49966 ____________________________________________________________________________
49967 [ 23142] By: rgs                                   on 2004/07/19  15:49:12
49968         Log: Subject: [perl #30609] [PATCH] BigInt v1.71 - first try
49969              From: Tels <perl_dummy@bloodgate.com>
49970              Date: Sat, 17 Jul 2004 16:22:57 +0200
49971              Message-Id: <200407171622.58443@bloodgate.com>
49972      Branch: perl
49973            ! lib/Math/BigFloat.pm lib/Math/BigInt.pm
49974            ! lib/Math/BigInt/Calc.pm lib/Math/BigInt/t/bare_mbf.t
49975            ! lib/Math/BigInt/t/bare_mbi.t lib/Math/BigInt/t/bigfltpm.inc
49976            ! lib/Math/BigInt/t/bigfltpm.t lib/Math/BigInt/t/bigintpm.inc
49977            ! lib/Math/BigInt/t/bigintpm.t lib/Math/BigInt/t/sub_mbf.t
49978            ! lib/Math/BigInt/t/sub_mbi.t lib/Math/BigInt/t/with_sub.t
49979 ____________________________________________________________________________
49980 [ 23135] By: nicholas                              on 2004/07/19  08:33:13
49981         Log: Turn 2 strcpy()s into memcpy() because we know the length.
49982      Branch: perl
49983            ! toke.c
49984 ____________________________________________________________________________
49985 [ 23130] By: nicholas                              on 2004/07/16  13:41:22
49986         Log: Clarify that it's only Mac OS *Classic* that uses 1904 - OS X uses
49987              1970
49988      Branch: perl
49989            ! pod/perlfunc.pod
49990 ____________________________________________________________________________
49991 [ 23129] By: nicholas                              on 2004/07/16  13:21:33
49992         Log: Typo fix from Julian Gilbey, forwarded upstream from Debian by
49993              Brendan O'Dea
49994      Branch: perl
49995            ! pod/perluniintro.pod
49996 ____________________________________________________________________________
49997 [ 23128] By: nick                                  on 2004/07/16  12:16:05
49998         Log: Use VirtualAlloc() more flexibly when using it to mimic UNIX's sbrk().
49999              From: Steve Hay <steve.hay@uk.radan.com>
50000              CC: perl-win32-porters@listserv.ActiveState.com
50001              Message-ID: <40F6B295.8010804@uk.radan.com>
50002
50003              Assumes perl's malloc can now handle non-contiguous memory (believed
50004              to be true).
50005              Does not address threading issues.
50006
50007              "The attached patch (against blead) makes sbrk() initially try to
50008              extend the existing block of memory exactly as it currently does, but
50009              to not  fail immediately if it can't -- it now frees up that part of
50010              whatever it  had previously reserved+committed which hadn't actually
50011              been used yet,  resets all its static variables and basically starts
50012              anew."
50013      Branch: perl
50014            ! win32/win32.c
50015 ____________________________________________________________________________
50016 [ 23127] By: nicholas                              on 2004/07/16  11:14:45
50017         Log: glob('*.c') to find documentation is dangerous when run in unclean
50018              trees, so isntead use MANIFEST to only scan the legitimate source
50019              files.
50020      Branch: perl
50021            ! autodoc.pl
50022 ____________________________________________________________________________
50023 [ 23126] By: nicholas                              on 2004/07/16  11:04:37
50024         Log: Encourage compilers to tail call optimise in sv_savepv, sv_savepvn
50025              and sv_savesharedpv. Need to create non-void returning versions of
50026              Copy and Zero, as the existing macros deliberately cast to (void)
50027      Branch: perl
50028            ! handy.h malloc.c perl.c pod/perlapi.pod sv.c util.c
50029 ____________________________________________________________________________
50030 [ 23125] By: nicholas                              on 2004/07/16  10:59:08
50031         Log: Rebuild perlapi.pod
50032      Branch: perl
50033            ! pod/perlapi.pod
50034 ____________________________________________________________________________
50035 [ 23124] By: merijn                                on 2004/07/16  10:30:53
50036         Log: Be sure HP-UX' ANSI C compiler's PATH is found *before*
50037              the path to the bundled braindead C compiler. This might
50038              influence ccache's behaviour in finding the correct path
50039      Branch: perl
50040            ! Configure
50041 ____________________________________________________________________________
50042 [ 23122] By: nicholas                              on 2004/07/16  10:14:24
50043         Log: oslevel can fail on AIX, but the output generated would confuse
50044              Configure
50045      Branch: perl
50046            ! Configure
50047 ____________________________________________________________________________
50048 [ 23121] By: nicholas                              on 2004/07/16  08:53:28
50049         Log: Some calls to PerlMemShared_alloc() aren't checking the return value.
50050              Bug spotted by Nigel Sandever
50051      Branch: perl
50052            ! ext/threads/threads.xs util.c
50053 ____________________________________________________________________________
50054 [ 23120] By: nicholas                              on 2004/07/15  19:09:15
50055         Log: threads.xs doesn't check the return value of the thread creation
50056              call. D'oh! This gives SEGVs if the OS fails to create another thread.
50057              Cause of problem located by Nigel Sandever
50058      Branch: perl
50059            ! ext/threads/threads.pm ext/threads/threads.xs
50060 ____________________________________________________________________________
50061 [ 23118] By: nicholas                              on 2004/07/15  16:28:03
50062         Log: Assimilate Cwd 2.19
50063      Branch: perl
50064            ! ext/Cwd/Changes ext/Cwd/t/cwd.t lib/Cwd.pm
50065 ____________________________________________________________________________
50066 [ 23117] By: merijn                                on 2004/07/15  14:16:07
50067         Log: Trailing semi-colon are not allowed on #ifdef's in ANSI
50068      Branch: perl
50069            ! ext/Storable/Storable.xs
50070 ____________________________________________________________________________
50071 [ 23116] By: nicholas                              on 2004/07/15  12:50:31
50072         Log: Abigail notes that a re-entrant regexp engine is a todo
50073      Branch: perl
50074            ! pod/perltodo.pod
50075 ____________________________________________________________________________
50076 [ 23115] By: nicholas                              on 2004/07/15  12:47:50
50077         Log: for (reverse @foo) now iterates in reverse in place.
50078      Branch: perl
50079            ! op.c pod/perltodo.pod pp_ctl.c
50080 ____________________________________________________________________________
50081 [ 23114] By: nicholas                              on 2004/07/15  10:05:23
50082         Log: Optimise for (reverse ...)
50083      Branch: perl
50084            ! op.c
50085 ____________________________________________________________________________
50086 [ 23113] By: nicholas                              on 2004/07/15  09:44:16
50087         Log: Now optimising for $a (reverse ...)
50088      Branch: perl
50089            ! op.c
50090 ____________________________________________________________________________
50091 [ 23112] By: nicholas                              on 2004/07/15  09:16:43
50092         Log: The optrees for C<for $_ (...)> and C<for (...)> differ, so even more
50093              tests.
50094      Branch: perl
50095            ! t/cmd/for.t
50096 ____________________________________________________________________________
50097 [ 23111] By: nicholas                              on 2004/07/15  09:02:36
50098         Log: This seems to be needed to get COW working on Win32
50099      Branch: perl
50100            ! win32/win32.c
50101 ____________________________________________________________________________
50102 [ 23109] By: nicholas                              on 2004/07/14  23:35:24
50103         Log: "That's the way to do it"
50104              In taking out a bug spotted by my regression tests in t/cmd/for.t
50105              I actually managed to disable the entire optimisation. Which means
50106              that I didn't find the other bug. This optimisation is live, and
50107              passes all tests.
50108      Branch: perl
50109            ! op.c pp_hot.c
50110 ____________________________________________________________________________
50111 [ 23108] By: nicholas                              on 2004/07/14  20:55:30
50112         Log: Optimise foreach my $i (reverse ...)
50113              foreach without a lexical iterator not yet optimised
50114      Branch: perl
50115            ! ext/B/B/Concise.pm op.c op.h pp_ctl.c pp_hot.c
50116 ____________________________________________________________________________
50117 [ 23107] By: nicholas                              on 2004/07/14  17:44:08
50118         Log: Subject:  [PATCH] split doc clarification
50119              From:  Yitzchak Scott-Thoennes <sthoenna@efn.org>
50120              Date:  Wed, 14 Jul 2004 10:19:36 -0700
50121              Message-Id:  <20040714171936.GA1092@efn.org>
50122      Branch: perl
50123            ! pod/perlfunc.pod
50124 ____________________________________________________________________________
50125 [ 23106] By: nicholas                              on 2004/07/14  15:36:57
50126         Log: Numeric comparison operators mustn't compare addresses of references
50127              that are overloaded.
50128      Branch: perl
50129            ! lib/overload.t pp.c pp_hot.c
50130 ____________________________________________________________________________
50131 [ 23105] By: nicholas                              on 2004/07/14  10:40:54
50132         Log: Lots of tests for for reverse ...
50133      Branch: perl
50134            ! t/cmd/for.t
50135 ____________________________________________________________________________
50136 [ 23104] By: nicholas                              on 2004/07/13  21:10:21
50137         Log: Some thoughts on foreach reverse
50138      Branch: perl
50139            ! pod/perltodo.pod
50140 ____________________________________________________________________________
50141 [ 23103] By: nicholas                              on 2004/07/13  19:10:20
50142         Log: s/sort/split/; - my mistake spotted by Dave.
50143      Branch: perl
50144            ! pod/perltodo.pod
50145 ____________________________________________________________________________
50146 [ 23102] By: nicholas                              on 2004/07/13  18:59:46
50147         Log: Optimise list context reverse sort to reverse as part of the sort op
50148      Branch: perl
50149            ! op.c pp_sort.c
50150 ____________________________________________________________________________
50151 [ 23101] By: nicholas                              on 2004/07/13  18:58:41
50152         Log: Work around evil compiler bug on OS X. (Sucks all memory)
50153      Branch: perl
50154            ! util.c
50155 ____________________________________________________________________________
50156 [ 23100] By: nicholas                              on 2004/07/13  15:05:09
50157         Log: check that reverse (sort (@a), @b) etc work.
50158              Join some lines that don't need wrapping
50159      Branch: perl
50160            ! t/op/sort.t
50161 ____________________________________________________________________________
50162 [ 23099] By: nicholas                              on 2004/07/13  14:46:06
50163         Log: Check that non-optimimisable sort comparisons work when reversed
50164              (Not optimised yet, but might be coming soon)
50165      Branch: perl
50166            ! t/op/sort.t
50167 ____________________________________________________________________________
50168 [ 23098] By: nicholas                              on 2004/07/13  14:34:03
50169         Log: Test reverse sort as the return from a function in list and scalar
50170              contexts.
50171      Branch: perl
50172            ! t/op/sort.t
50173 ____________________________________________________________________________
50174 [ 23097] By: nicholas                              on 2004/07/13  14:23:28
50175         Log: Also test reverse sort in scalar context
50176      Branch: perl
50177            ! t/op/sort.t
50178 ____________________________________________________________________________
50179 [ 23096] By: nicholas                              on 2004/07/13  14:06:36
50180         Log: A proper, working, stable optimisation for sort {$b cmp $a}
50181      Branch: perl
50182            ! ext/B/B/Concise.pm ext/B/t/f_sort.t op.c pp_sort.c
50183 ____________________________________________________________________________
50184 [ 23095] By: rgs                                   on 2004/07/13  13:29:54
50185         Log: Tweak to change #23089, as suggested by Tim Bunce
50186      Branch: perl
50187            ! lib/perl5db.pl
50188 ____________________________________________________________________________
50189 [ 23094] By: nicholas                              on 2004/07/13  11:28:49
50190         Log: Generalised "how many in list context" would be useful
50191      Branch: perl
50192            ! pod/perltodo.pod
50193 ____________________________________________________________________________
50194 [ 23093] By: nicholas                              on 2004/07/13  11:19:31
50195         Log: The current optimisation for sort {$b cmp $a} is bogus now that we
50196              guarantee a stable sort. Disable it, pending a correct optimisation.
50197      Branch: perl
50198            ! ext/B/t/f_sort.t op.c op.h t/op/sort.t
50199 ____________________________________________________________________________
50200 [ 23092] By: rgs                                   on 2004/07/13  09:30:11
50201         Log: Subject: Re: [perl #30568] splice generates undef? [PATCH]
50202              From: LAUN Wolfgang <wolfgang.laun@alcatel.at>
50203              Date: Mon, 12 Jul 2004 08:26:01 +0200
50204              Message-ID: <DF27CDCBD2581D4B88431901094E4B4D02B0C7D2@attmsx1.aut.alcatel.at>
50205      Branch: perl
50206            ! pp.c t/op/splice.t
50207 ____________________________________________________________________________
50208 [ 23091] By: nicholas                              on 2004/07/13  09:14:22
50209         Log: Check each line of config_re output.
50210      Branch: perl
50211            ! lib/Config.t
50212 ____________________________________________________________________________
50213 [ 23090] By: nicholas                              on 2004/07/13  09:13:39
50214         Log: no_plan support in test.pl
50215      Branch: perl
50216            ! t/test.pl
50217 ____________________________________________________________________________
50218 [ 23089] By: rgs                                   on 2004/07/13  08:53:46
50219         Log: Subject: Re: debugger 'R'estart and open database connections
50220              From: Andrew Pimlott <andrew@pimlott.net>
50221              Date: Mon, 12 Jul 2004 21:06:01 -0400
50222              Message-ID: <20040713010601.GF8232@pimlott.net>
50223      Branch: perl
50224            ! lib/perl5db.pl
50225 ____________________________________________________________________________
50226 [ 23088] By: rgs                                   on 2004/07/13  08:27:11
50227         Log: Subject: [PATCH] was Re: UNIVERSAL::VERSION causing "Use of uninitialized value..." warning
50228              From: John Peacock <jpeacock@rowman.com>
50229              Date: Mon, 12 Jul 2004 23:16:51 -0400
50230              Message-ID: <40F35423.5080304@rowman.com>
50231      Branch: perl
50232            ! lib/version.pm lib/version.t util.c
50233 ____________________________________________________________________________
50234 [ 23085] By: nicholas                              on 2004/07/12  17:27:28
50235         Log: Bodge to make Tk work - like the UTF8 flag, the READONLY flag has too
50236              many meanings. const const vs mutable in this case.
50237      Branch: perl
50238            ! sv.c
50239 ____________________________________________________________________________
50240 [ 23084] By: nick                                  on 2004/07/12  14:26:12
50241         Log: NI-S: IMHO utf8_upgrade is just changing representation not the value
50242              so it has no business calling SvSETMAGIC.
50243      Branch: perl
50244            ! sv.c
50245 ____________________________________________________________________________
50246 [ 23083] By: nick                                  on 2004/07/12  12:17:56
50247         Log: Perl_is_utf8_string(pTHX_ U8 *s, STRLEN len)
50248              Can now handle the case
50249              is_utf8_string(NULL,0)
50250              again.
50251              Why do we have code dup for Perl_is_utf8_string_loc() ?
50252      Branch: perl
50253            ! utf8.c
50254 ____________________________________________________________________________
50255 [ 23082] By: nicholas                              on 2004/07/11  20:09:00
50256         Log: A decent benchmark would be useful. But it is vague.
50257      Branch: perl
50258            ! pod/perltodo.pod
50259 ____________________________________________________________________________
50260 [ 23081] By: nicholas                              on 2004/07/11  18:36:49
50261         Log: Finding a way to put "I'm MAINT" in perl -v is a TODO
50262      Branch: perl
50263            ! pod/perltodo.pod
50264 ____________________________________________________________________________
50265 [ 23079] By: nicholas                              on 2004/07/10  21:58:34
50266         Log: Store weak references.
50267      Branch: perl
50268            + ext/Storable/t/testlib.pl ext/Storable/t/weak.t
50269            ! MANIFEST ext/Storable/ChangeLog ext/Storable/MANIFEST
50270            ! ext/Storable/README ext/Storable/Storable.pm
50271            ! ext/Storable/Storable.xs ext/Storable/t/malice.t
50272 ____________________________________________________________________________
50273 [ 23078] By: nicholas                              on 2004/07/10  21:11:56
50274         Log: Dual lifing and dists is a TODO
50275      Branch: perl
50276            ! pod/perltodo.pod
50277 ____________________________________________________________________________
50278 [ 23077] By: nicholas                              on 2004/07/10  18:51:35
50279         Log: Resurrect the TODO items about Unicode filenames and Unicode %ENV
50280              Rant a bit more about POD -> HTML
50281      Branch: perl
50282            ! pod/perltodo.pod
50283 ____________________________________________________________________________
50284 [ 23076] By: nicholas                              on 2004/07/10  16:00:44
50285         Log: Perl_mode_from_discipline must update len. (else SEGV)
50286              Diagnosis and patch from clkao
50287      Branch: perl
50288            ! doio.c
50289 ____________________________________________________________________________
50290 [ 23075] By: rgs                                   on 2004/07/10  13:03:56
50291         Log: Subject: Bug with NEXT when called from an eval block
50292              From: Dave Rolsky <autarch@urth.org>
50293              Date: Fri, 9 Jul 2004 17:06:07 -0500 (CDT)
50294              Message-ID: <Pine.LNX.4.58.0407091703010.4578@urth.org>
50295      Branch: perl
50296            ! lib/NEXT.pm lib/NEXT/t/next.t
50297 ____________________________________________________________________________
50298 [ 23074] By: nicholas                              on 2004/07/09  21:03:11
50299         Log: Subject: Re: Segfault using HTML::Entities
50300              From: Jarkko Hietaniemi <jhi@iki.fi>
50301              Message-ID: <40EDBE1A.6080205@iki.fi>
50302              Date: Fri, 09 Jul 2004 00:35:22 +0300
50303      Branch: perl
50304            ! pp_ctl.c regexec.c t/run/fresh_perl.t
50305 ____________________________________________________________________________
50306 [ 23073] By: nicholas                              on 2004/07/09  14:49:16
50307         Log: A more honest TODO
50308      Branch: perl
50309            ! pod/perltodo.pod
50310 ____________________________________________________________________________
50311 [ 23072] By: nicholas                              on 2004/07/09  11:34:17
50312         Log: dor and // fulfil a TODO
50313              Correct a deviation from the Nicholas Clark style guide.
50314      Branch: perl
50315            ! pod/perltodo.pod
50316 ____________________________________________________________________________
50317 [ 23071] By: rgs                                   on 2004/07/09  08:08:05
50318         Log: Subject: [PATCH] prime_env_iter and zero-length values on VMS
50319              From: "Craig A. Berry" <craigberry@mac.com>
50320              Date: Thu, 08 Jul 2004 23:19:05 -0500
50321              Message-ID: <40EE1CB9.8030407@mac.com>
50322      Branch: perl
50323            ! vms/vms.c
50324 ____________________________________________________________________________
50325 [ 23065] By: nicholas                              on 2004/07/08  13:09:44
50326         Log: Randal notes:
50327
50328              "perldoc perldelta" still says 5.8.3 to 5.8.4, even though there
50329              *is* a "perldoc perl583delta" properly.
50330
50331              This is because perl584delta still thinks it's the perldelta
50332      Branch: perl
50333            ! pod/perl584delta.pod
50334 ____________________________________________________________________________
50335 [ 23063] By: rgs                                   on 2004/07/07  17:48:29
50336         Log: Make Perl_sv_utf8_upgrade_flags tolerate PL_sv_undef
50337              as an argument.
50338      Branch: perl
50339            ! sv.c
50340 ____________________________________________________________________________
50341 [ 23062] By: nicholas                              on 2004/07/07  15:14:39
50342         Log: First stab at explaining that CLONE may get more parameters in future.
50343              More eloquent rewording desired. Patches welcome.
50344      Branch: perl
50345            ! pod/perlmod.pod
50346 ____________________________________________________________________________
50347 [ 23061] By: nicholas                              on 2004/07/07  13:30:27
50348         Log: hv_store was not passing hash onwards (spotted by Dave)
50349      Branch: perl
50350            ! hv.c
50351 ____________________________________________________________________________
50352 [ 23060] By: mhx                                   on 2004/07/06  21:43:05
50353         Log: Failing matches don't reset numbered variables.
50354              Change #22997 could cause Text::ParseWords to loop forever if the
50355              regex didn't not match. Explicitly return if the match fails.
50356      Branch: perl
50357            ! lib/Text/ParseWords.pm lib/Text/ParseWords.t
50358 ____________________________________________________________________________
50359 [ 23059] By: nicholas                              on 2004/07/06  21:39:27
50360         Log: Integrate:
50361              [ 23057]
50362              This is RC1
50363      Branch: perl
50364           !> pod/perlhist.pod
50365 ____________________________________________________________________________
50366 [ 23058] By: nicholas                              on 2004/07/06  20:45:53
50367         Log: Stop ENV_IS_CASELESS hv.c picking up the wrong hash value from a
50368              shared string scalar.
50369      Branch: perl
50370            ! hv.c
50371 ____________________________________________________________________________
50372 [ 23052] By: nicholas                              on 2004/07/06  09:26:24
50373         Log: A tool to check the AUTHORS file
50374      Branch: perl
50375            + Porting/checkAUTHORS.pl
50376            ! MANIFEST
50377 ____________________________________________________________________________
50378 [ 23051] By: nicholas                              on 2004/07/06  09:25:16
50379         Log: Add some missing authors and remove 1 duplicate
50380      Branch: perl
50381            ! AUTHORS
50382 ____________________________________________________________________________
50383 [ 23048] By: nicholas                              on 2004/07/05  17:26:09
50384         Log: There was no need to bump $Text::ParseWords::VERSION to 3.24
50385      Branch: perl
50386            ! lib/Text/ParseWords.pm
50387 ____________________________________________________________________________
50388 [ 23047] By: rgs                                   on 2004/07/05  17:05:55
50389         Log: Update tests and $VERSION for change 23046
50390      Branch: perl
50391            ! ext/B/B/Deparse.pm ext/B/t/deparse.t
50392 ____________________________________________________________________________
50393 [ 23046] By: rgs                                   on 2004/07/05  16:53:54
50394         Log: Subject: Re: [perl #30504] B::Deparse scoping problem with for loop
50395              From: Stephen McCamant <smcc@MIT.EDU>
50396              Date: Mon, 28 Jun 2004 18:26:24 -0700
50397              Message-ID: <16608.50496.787002.560481@apocalypse.OCF.Berkeley.EDU>
50398      Branch: perl
50399            ! ext/B/B/Deparse.pm
50400 ____________________________________________________________________________
50401 [ 23042] By: nicholas                              on 2004/07/05  14:54:15
50402         Log: Bump $B::Deparse::VERSION
50403      Branch: perl
50404            ! ext/B/B/Deparse.pm
50405 ____________________________________________________________________________
50406 [ 23040] By: nicholas                              on 2004/07/05  10:24:17
50407         Log: t/op/tie.t test 23 is failing when run with utf8 everywhere.
50408              Problem appears to be due to theft of temporaries
50409      Branch: perl
50410            ! mg.c
50411 ____________________________________________________________________________
50412 [ 23029] By: nicholas                              on 2004/07/04  16:39:07
50413         Log: Subject: [PATCH Cwd 2.18] _vms_abs_path on non-directories
50414              From: "Craig A. Berry" <craigberry@mac.com>
50415              Message-ID: <40E704AA.4090801@mac.com>
50416              Date: Sat, 03 Jul 2004 14:10:34 -0500
50417      Branch: perl
50418            ! ext/Cwd/t/cwd.t lib/Cwd.pm
50419 ____________________________________________________________________________
50420 [ 23028] By: nicholas                              on 2004/07/04  15:14:33
50421         Log: /usr/bin/locale steadfastly delivers 8 bit output independent of
50422              LC_ALL. So when perl's expecting utf8, things don't quite work right.
50423              This has become visible since fix 22842
50424      Branch: perl
50425            ! lib/locale.t
50426 ____________________________________________________________________________
50427 [ 23027] By: mhx                                   on 2004/07/02  14:44:37
50428         Log: More microperl tweaks.
50429      Branch: perl
50430            ! Makefile.micro README.micro uconfig.h uconfig.sh
50431 ____________________________________________________________________________
50432 [ 23026] By: rgs                                   on 2004/07/02  13:05:23
50433         Log: Maintainer change for Safe
50434      Branch: perl
50435            ! Porting/Maintainers.pl
50436 ____________________________________________________________________________
50437 [ 23025] By: rgs                                   on 2004/07/02  10:06:29
50438         Log: Bump version number of Safe for CPAN release
50439      Branch: perl
50440            ! ext/Opcode/Safe.pm
50441 ____________________________________________________________________________
50442 [ 23024] By: rgs                                   on 2004/07/02  07:50:42
50443         Log: Upgrade to I18N::LangTags 0.33
50444      Branch: perl
50445            ! lib/I18N/LangTags.pm lib/I18N/LangTags/ChangeLog
50446            ! lib/I18N/LangTags/t/80_all_env.t
50447 ____________________________________________________________________________
50448 [ 23023] By: davem                                 on 2004/07/02  01:49:11
50449         Log: utf8 POPSTACK crash on split execution
50450              split() does a SWITCHSTACK to directly split to an array, but
50451              if it subsequently dies (eg the regex triggers a 'use utf8' which
50452              is then denied by Safe), then the switch doesn't get undone. Add
50453              a new save type to allow for this.
50454      Branch: perl
50455            ! pp.c scope.c scope.h
50456 ____________________________________________________________________________
50457 [ 23022] By: mhx                                   on 2004/07/01  21:08:44
50458         Log: The microperl config didn't know about usemallocwrap yet.
50459      Branch: perl
50460            ! uconfig.h uconfig.sh
50461 ____________________________________________________________________________
50462 [ 23021] By: mhx                                   on 2004/07/01  14:30:05
50463         Log: Check for definedness of sv before calling sv_derived_from()
50464              to prevent "Use of uninitialized value..." warning.
50465      Branch: perl
50466            ! universal.c
50467 ____________________________________________________________________________
50468 [ 23019] By: nicholas                              on 2004/07/01  10:14:03
50469         Log: Bump version numbers
50470      Branch: perl
50471            ! ext/File/Glob/Glob.pm ext/XS/APItest/APItest.pm
50472            ! ext/threads/threads.pm lib/Carp.pm lib/File/Copy.pm
50473            ! lib/Text/ParseWords.pm lib/Text/Wrap.pm lib/autouse.pm
50474            ! lib/charnames.pm lib/diagnostics.pm lib/utf8.pm
50475 ____________________________________________________________________________
50476 [ 23018] By: nicholas                              on 2004/06/30  21:37:12
50477         Log: Assert that we aren't leaking memory.
50478      Branch: perl
50479            ! sv.c
50480 ____________________________________________________________________________
50481 [ 23016] By: gbarr                                 on 2004/06/30  13:47:36
50482         Log: Sync to libnet-1.19
50483      Branch: perl
50484            ! lib/Net/Changes.libnet lib/Net/Cmd.pm lib/Net/FTP.pm
50485            ! lib/Net/POP3.pm lib/Net/SMTP.pm lib/Net/t/datasend.t
50486 ____________________________________________________________________________
50487 [ 23014] By: rgs                                   on 2004/06/30  12:12:24
50488         Log: Subject: [PATCH pod/perlop.pod] Documenting undefined behaviour of $i = $i ++.
50489              From: Abigail <abigail@abigail.nl>
50490              Date: Wed, 30 Jun 2004 12:00:21 +0200
50491              Message-ID: <20040630100021.GA23752@abigail.nl>
50492      Branch: perl
50493            ! pod/perlop.pod
50494 ____________________________________________________________________________
50495 [ 23011] By: nicholas                              on 2004/06/29  15:26:34
50496         Log: Note that sv_2mortal isn't just "increase reference count by 1, and
50497              mark that it needs a deferred recount"
50498      Branch: perl
50499            ! sv.c
50500 ____________________________________________________________________________
50501 [ 23010] By: rgs                                   on 2004/06/29  12:12:58
50502         Log: More caveats in B::Deparse's documentation
50503              (suggested by Yves Orton)
50504      Branch: perl
50505            ! ext/B/B/Deparse.pm
50506 ____________________________________________________________________________
50507 [ 23007] By: merijn                                on 2004/06/29  10:57:46
50508         Log: HP-UX 10.20 still *needs* -Ae for HP C-ANSI-C to be ANSI
50509              11.00 and on are ANSI by default for /opt/ansic/bin
50510              Error was introduced by #22975 in re-enabling 10.01
50511      Branch: perl
50512            ! hints/hpux.sh
50513 ____________________________________________________________________________
50514 [ 23006] By: davem                                 on 2004/06/28  22:50:01
50515         Log: use encoding and "eq" cause memory leak
50516              Perl_sv_eq() was creating a temp and not always freeing it
50517      Branch: perl
50518            ! sv.c
50519 ____________________________________________________________________________
50520 [ 23002] By: nicholas                              on 2004/06/27  20:57:50
50521         Log: Assimilate Locale-Codes-2.07
50522      Branch: perl
50523            ! lib/Locale/Codes/ChangeLog lib/Locale/Codes/README
50524            ! lib/Locale/Codes/t/all.t lib/Locale/Codes/t/constants.t
50525            ! lib/Locale/Codes/t/country.t lib/Locale/Codes/t/currency.t
50526            ! lib/Locale/Codes/t/uk.t lib/Locale/Constants.pm
50527            ! lib/Locale/Constants.pod lib/Locale/Country.pm
50528            ! lib/Locale/Country.pod lib/Locale/Currency.pm
50529            ! lib/Locale/Currency.pod lib/Locale/Language.pm
50530            ! lib/Locale/Language.pod lib/Locale/Script.pm
50531            ! lib/Locale/Script.pod
50532 ____________________________________________________________________________
50533 [ 23001] By: nicholas                              on 2004/06/27  18:27:43
50534         Log: Stop 80_all_env.t failing when LC_ALL is set
50535      Branch: perl
50536            ! lib/I18N/LangTags/t/80_all_env.t
50537 ____________________________________________________________________________
50538 [ 22998] By: nicholas                              on 2004/06/25  22:19:51
50539         Log: Correct detection of absent modules. Based on
50540
50541              Subject: [PATCH] Config{extensions} uses filesystem names as extensions
50542              From: Andy Dougherty <doughera@lafayette.edu>
50543              Message-ID: <Pine.SOL.4.58.0406241505530.14039@maxwell.phys.lafayette.edu>
50544              Date: Thu, 24 Jun 2004 15:09:47 -0400 (EDT)
50545
50546              with improvements from Marcus Holland-Moritz
50547      Branch: perl
50548            ! ext/Devel/PPPort/t/test.t ext/PerlIO/t/scalar.t
50549            ! ext/PerlIO/t/via.t ext/threads/shared/t/disabled.t lib/DB.t
50550            ! lib/Dumpvalue.t lib/PerlIO/via/t/QuotedPrint.t
50551            ! lib/Tie/RefHash.t lib/autouse.t lib/dumpvar.t lib/h2xs.t
50552            ! lib/overload.t t/io/crlf.t
50553 ____________________________________________________________________________
50554 [ 22997] By: mhx                                   on 2004/06/25  20:27:05
50555         Log: Cleanup the main regex in Text::ParseWords and make the
50556              parse_line() routine faster. Add a Unicode test case.
50557      Branch: perl
50558            ! lib/Text/ParseWords.pm lib/Text/ParseWords.t
50559 ____________________________________________________________________________
50560 [ 22996] By: merijn                                on 2004/06/25  15:27:21
50561         Log: Subject: [perl #30450] perl 5.8.4: enhancement to hints/solaris_2.sh
50562              From: Nicholas Gianniotis (via RT) <perlbug-followup@perl.org>
50563              Date: 25 Jun 2004 09:39:51 -0000
50564              Message-ID: <rt-3.0.9-30450-91340.10.3279898804255@perl.org>
50565              and
50566              From: Andy Dougherty <doughera@lafayette.edu>
50567              Date: Fri, 25 Jun 2004 11:30:11 -0400 (EDT)
50568              Message-ID: <Pine.SOL.4.58.0406251113420.15961@maxwell.phys.lafayette.edu>
50569      Branch: perl
50570            ! hints/solaris_2.sh
50571 ____________________________________________________________________________
50572 [ 22995] By: rgs                                   on 2004/06/25  15:07:51
50573         Log: Subject: [PATCH] regcomp.c, t/op/regmesg.t -- False range with \p and \P
50574              From: Jeff 'japhy' Pinyan <japhy@perlmonk.org>
50575              Date: Thu, 24 Jun 2004 16:42:54 -0400 (EDT)
50576              Message-ID: <Pine.LNX.4.44.0406241636340.8774-200000@perlmonk.org>
50577      Branch: perl
50578            ! regcomp.c t/op/regmesg.t
50579 ____________________________________________________________________________
50580 [ 22994] By: rgs                                   on 2004/06/25  08:36:33
50581         Log: More @INC test fixes
50582      Branch: perl
50583            ! t/op/threads.t t/run/switch_A.t t/uni/chomp.t t/uni/tr_7jis.t
50584            ! t/uni/tr_eucjp.t t/uni/tr_sjis.t t/uni/tr_utf8.t
50585 ____________________________________________________________________________
50586 [ 22993] By: rgs                                   on 2004/06/25  08:28:34
50587         Log: Fix the Cwd tests for the core.
50588      Branch: perl
50589            ! ext/Cwd/t/cwd.t ext/Cwd/t/taint.t
50590 ____________________________________________________________________________
50591 [ 22992] By: mhx                                   on 2004/06/24  19:51:06
50592         Log: Fix for: [perl #30442] Text::ParseWords does not handle backslashed newline inside quoted text
50593              Use the suggested regex fix, plus some tests.
50594      Branch: perl
50595            ! lib/Text/ParseWords.pm lib/Text/ParseWords.t
50596 ____________________________________________________________________________
50597 [ 22991] By: rgs                                   on 2004/06/24  16:47:24
50598         Log: Upgrade to Cwd 2.18
50599              (with local changes to cwd.t, to adapt it to the core)
50600      Branch: perl
50601            ! ext/Cwd/Changes ext/Cwd/t/cwd.t lib/Cwd.pm
50602 ____________________________________________________________________________
50603 [ 22990] By: mhx                                   on 2004/06/24  16:22:05
50604         Log: Fix for: [perl #2738] perl segfautls on input
50605              The parser was incorrectly accepting <> as a subroutine prototype and
50606              newATTRSUB didn't validate the proto argument before accessing op_sv.
50607      Branch: perl
50608            ! op.c pod/perldiag.pod t/comp/parser.t toke.c
50609 ____________________________________________________________________________
50610 [ 22988] By: rgs                                   on 2004/06/24  12:58:35
50611         Log: Upgrade to Cwd 2.17_03
50612      Branch: perl
50613            ! ext/Cwd/Changes ext/Cwd/Cwd.xs lib/Cwd.pm
50614 ____________________________________________________________________________
50615 [ 22977] By: nicholas                              on 2004/06/23  08:38:47
50616         Log: Test that [] // 0 is []
50617      Branch: perl
50618            ! t/op/dor.t
50619 ____________________________________________________________________________
50620 [ 22976] By: rgs                                   on 2004/06/23  08:28:15
50621         Log: Add a regression test for bug #23765 (by Jarkko)
50622      Branch: perl
50623            ! t/op/substr.t
50624 ____________________________________________________________________________
50625 [ 22975] By: merijn                                on 2004/06/23  06:56:15
50626         Log: Backward compatibility issues for HP-UX 10.01 and older
50627              Yes, it is still actively used in production environment
50628              One more patch expected for toke.c optimization level
50629      Branch: perl
50630            ! hints/hpux.sh
50631 ____________________________________________________________________________
50632 [ 22972] By: mhx                                   on 2004/06/22  21:23:59
50633         Log: Proposed patch + test case.
50634
50635              Subject: [perl #30409] charnames.pm clobbers default variable
50636              From: Marcel "Grünauer" (via RT) <perlbug-followup@perl.org>
50637              Date: 22 Jun 2004 16:43:50 -0000
50638              Message-ID: <rt-3.0.9-30409-91174.12.8617678524438@perl.org>
50639      Branch: perl
50640            ! lib/charnames.pm lib/charnames.t
50641 ____________________________________________________________________________
50642 [ 22971] By: mhx                                   on 2004/06/22  21:00:10
50643         Log: Adjust array index in FileCache.pm.
50644
50645              Subject: [perl #30291] Use of uninitialized value (array index reference) in FileCache.pm module at line 140
50646              From: bbucklan@jpl-devvax.jpl.nasa.gov (via RT) <perlbug-followup@perl.org>
50647              Date: 15 Jun 2004 16:55:22 -0000
50648              Message-ID: <rt-3.0.9-30291-90552.18.5392299690759@perl.org>
50649      Branch: perl
50650            ! lib/FileCache.pm
50651 ____________________________________________________________________________
50652 [ 22970] By: mhx                                   on 2004/06/22  20:26:11
50653         Log: Subject: [PATCH] DB_File 1.809  was RE: [perl #30237] DB_File methods and substr don't mix
50654              From: "Paul Marquess" <Paul.Marquess@btinternet.com>
50655              Date: Tue, 22 Jun 2004 21:29:12 +0100
50656              Message-Id: <20040622202910.WBSU21846.mta08-svc.ntlworld.com@MARQUESSPT21>
50657      Branch: perl
50658            ! ext/DB_File/Changes ext/DB_File/DB_File.pm
50659            ! ext/DB_File/DB_File.xs ext/DB_File/t/db-btree.t
50660            ! ext/DB_File/t/db-hash.t ext/DB_File/t/db-recno.t
50661            ! ext/DB_File/typemap
50662 ____________________________________________________________________________
50663 [ 22969] By: nicholas                              on 2004/06/22  13:25:11
50664         Log: Abolish the "Tied variable freed while still in use" error - I have
50665              a way to cleanly avoid the coredump.
50666      Branch: perl
50667            ! mg.c pod/perldiag.pod t/op/tie.t
50668 ____________________________________________________________________________
50669 [ 22968] By: nicholas                              on 2004/06/22  12:28:58
50670         Log: Subject: [PATCH] Storable signedness nit
50671              From: "Craig A. Berry" <craigberry@mac.com>
50672              Message-ID: <40D3AAC7.6030407@mac.com>
50673              Date: Fri, 18 Jun 2004 21:53:59 -0500
50674      Branch: perl
50675            ! ext/Storable/Storable.xs
50676 ____________________________________________________________________________
50677 [ 22967] By: nicholas                              on 2004/06/22  09:57:23
50678         Log: Skip tests if List::Util not built
50679      Branch: perl
50680            ! lib/DB.t lib/Dumpvalue.t lib/autouse.t lib/dumpvar.t
50681            ! lib/overload.t
50682 ____________________________________________________________________________
50683 [ 22966] By: nicholas                              on 2004/06/22  09:56:59
50684         Log: Skip test if Data::Dumper not built
50685      Branch: perl
50686            ! lib/Tie/RefHash.t
50687 ____________________________________________________________________________
50688 [ 22965] By: nicholas                              on 2004/06/22  09:56:34
50689         Log: Skip test if Devel::PPPort is not built.
50690              Probably should fix h2xs to work without it.
50691      Branch: perl
50692            ! lib/h2xs.t
50693 ____________________________________________________________________________
50694 [ 22964] By: rgs                                   on 2004/06/22  07:34:40
50695         Log: Upgrade to I18N::LangTags 0.32
50696      Branch: perl
50697            ! lib/I18N/LangTags.pm lib/I18N/LangTags/ChangeLog
50698            ! lib/I18N/LangTags/Detect.pm lib/I18N/LangTags/t/80_all_env.t
50699 ____________________________________________________________________________
50700 [ 22963] By: davem                                 on 2004/06/20  12:00:56
50701         Log: make mktables always update modifed time to play better with make
50702      Branch: perl
50703            ! Makefile.SH lib/unicore/mktables
50704 ____________________________________________________________________________
50705 [ 22962] By: davem                                 on 2004/06/20  11:50:19
50706         Log: fix typo in gp_free
50707      Branch: perl
50708            ! gv.c
50709 ____________________________________________________________________________
50710 [ 22961] By: davem                                 on 2004/06/19  12:36:58
50711         Log: 'make test' without preceeding 'make' fails.
50712              Change #22872 added a target to run mktables, but this was
50713              skipped if 'make test' was run first, causing the build of
50714              Unicode::Normalize to fail.
50715      Branch: perl
50716            ! Makefile.SH
50717 ____________________________________________________________________________
50718 [ 22960] By: nicholas                              on 2004/06/18  20:18:02
50719         Log: When expecting an error, it's best to check the text you got, rather
50720              than blindly assuming that it's correct.
50721      Branch: perl
50722            ! t/op/write.t
50723 ____________________________________________________________________________
50724 [ 22959] By: nicholas                              on 2004/06/18  18:57:30
50725         Log: Case insensitive file systems are bad, m'kay
50726      Branch: perl
50727            ! ext/IO/t/IO.t
50728 ____________________________________________________________________________
50729 [ 22958] By: nicholas                              on 2004/06/18  13:45:51
50730         Log: This needs POSIX, so skip if no POSIX
50731      Branch: perl
50732            ! lib/Pod/t/basic.t
50733 ____________________________________________________________________________
50734 [ 22957] By: nicholas                              on 2004/06/18  13:44:27
50735         Log: Also needs skipping if PerlIO::via not built
50736      Branch: perl
50737            ! lib/PerlIO/via/t/QuotedPrint.t
50738 ____________________________________________________________________________
50739 [ 22956] By: nicholas                              on 2004/06/18  13:24:13
50740         Log: Skip tests when PerlIO::scalar and PerlIO::via aren't built
50741      Branch: perl
50742            ! ext/PerlIO/t/scalar.t ext/PerlIO/t/via.t
50743 ____________________________________________________________________________
50744 [ 22955] By: nicholas                              on 2004/06/18  13:19:16
50745         Log: Not ideal, but skip all of IO's tests if Socket is not built.
50746      Branch: perl
50747            ! ext/IO/t/IO.t
50748 ____________________________________________________________________________
50749 [ 22954] By: nicholas                              on 2004/06/18  13:11:31
50750         Log: Skip test if perl configured without threads::shared
50751      Branch: perl
50752            ! ext/threads/shared/t/disabled.t
50753 ____________________________________________________________________________
50754 [ 22953] By: nicholas                              on 2004/06/18  13:09:24
50755         Log: Skip test if Devel::PPPort not built
50756      Branch: perl
50757            ! ext/Devel/PPPort/t/test.t
50758 ____________________________________________________________________________
50759 [ 22952] By: nicholas                              on 2004/06/18  13:07:40
50760         Log: Skip re tests if re not built.
50761      Branch: perl
50762            ! ext/re/t/re.t
50763 ____________________________________________________________________________
50764 [ 22951] By: nicholas                              on 2004/06/18  11:38:24
50765         Log: If we don't build B, we should skip all its tests.
50766      Branch: perl
50767            ! ext/B/t/asmdata.t ext/B/t/b.t ext/B/t/bblock.t
50768            ! ext/B/t/bytecode.t ext/B/t/concise.t ext/B/t/debug.t
50769            ! ext/B/t/deparse.t ext/B/t/f_map.t ext/B/t/f_sort.t
50770            ! ext/B/t/lint.t ext/B/t/o.t ext/B/t/optree_check.t
50771            ! ext/B/t/optree_concise.t ext/B/t/optree_samples.t
50772            ! ext/B/t/optree_sort.t ext/B/t/optree_specials.t
50773            ! ext/B/t/optree_varinit.t ext/B/t/showlex.t ext/B/t/stash.t
50774            ! ext/B/t/terse.t ext/B/t/xref.t
50775 ____________________________________________________________________________
50776 [ 22950] By: nicholas                              on 2004/06/18  11:27:51
50777         Log: D'oh. Don't turn on warnings on the #! line without actually testing
50778              the full code in case it warns.
50779      Branch: perl
50780            ! lib/Unicode/UCD.t
50781 ____________________________________________________________________________
50782 [ 22949] By: nicholas                              on 2004/06/18  09:43:12
50783         Log: Unicode::UCD uses Storable, so we can't test if Storable isn't built.
50784      Branch: perl
50785            ! lib/Unicode/UCD.t
50786 ____________________________________________________________________________
50787 [ 22948] By: nicholas                              on 2004/06/18  09:23:20
50788         Log: Can't test the B modules if we didn't build 'em
50789      Branch: perl
50790            ! t/lib/1_compile.t
50791 ____________________________________________________________________________
50792 [ 22947] By: nicholas                              on 2004/06/18  08:59:01
50793         Log: Need to skip test 7 if perl built without the PerlIO::scalar extension
50794      Branch: perl
50795            ! t/io/crlf.t
50796 ____________________________________________________________________________
50797 [ 22946] By: rgs                                   on 2004/06/18  07:44:34
50798         Log: Upgrade to I18N::LangTags 0.31.
50799      Branch: perl
50800            ! lib/I18N/LangTags.pm lib/I18N/LangTags/ChangeLog
50801            ! lib/I18N/LangTags/Detect.pm lib/I18N/LangTags/t/10_http.t
50802            ! lib/I18N/LangTags/t/80_all_env.t
50803 ____________________________________________________________________________
50804 [ 22945] By: nicholas                              on 2004/06/17  19:27:05
50805         Log: As 2/3rds (or 3/4s) of the SV head structure is rewritten, it doesn't
50806              seem that memzero() of everything is the most efficient idea.
50807      Branch: perl
50808            ! sv.c
50809 ____________________________________________________________________________
50810 [ 22944] By: nicholas                              on 2004/06/17  14:57:14
50811         Log: Change 22516 forgot to add make_overload.pl to generate test data
50812              (submitted from the pub via wireless, bluetooth and then GPRS out
50813              to the Internet)
50814      Branch: perl
50815            + ext/Storable/t/make_overload.pl
50816            ! MANIFEST
50817 ____________________________________________________________________________
50818 [ 22943] By: nicholas                              on 2004/06/17  12:03:48
50819         Log: Storable should cope if the string to thaw happens to be utf8 encoded
50820              And anything with bytes >=256 is corrupt
50821      Branch: perl
50822            ! ext/Storable/ChangeLog ext/Storable/README
50823            ! ext/Storable/Storable.pm ext/Storable/Storable.xs
50824            ! ext/Storable/t/utf8.t
50825 ____________________________________________________________________________
50826 [ 22942] By: rgs                                   on 2004/06/17  09:57:14
50827         Log: Upgrade to Locale::Maketext 1.09
50828      Branch: perl
50829            + lib/Locale/Maketext/t/01_about_verbose.t
50830            + lib/Locale/Maketext/t/10_make.t lib/Locale/Maketext/t/20_get.t
50831            + lib/Locale/Maketext/t/40_super.t
50832            + lib/Locale/Maketext/t/50_super.t
50833            + lib/Locale/Maketext/t/60_super.t
50834            + lib/Locale/Maketext/t/90_utf8.t
50835            - lib/Locale/Maketext/t/00about.t lib/Locale/Maketext/t/01make.t
50836            - lib/Locale/Maketext/t/02get.t lib/Locale/Maketext/t/03http.t
50837            - lib/Locale/Maketext/t/04super.t
50838            - lib/Locale/Maketext/t/05super.t
50839            - lib/Locale/Maketext/t/06super.t lib/Locale/Maketext/t/90utf8.t
50840            ! MANIFEST lib/Locale/Maketext.pm lib/Locale/Maketext/ChangeLog
50841            ! lib/Locale/Maketext/README
50842 ____________________________________________________________________________
50843 [ 22941] By: rgs                                   on 2004/06/17  09:43:48
50844         Log: Upgrade to I18N::LangTags 0.30.
50845      Branch: perl
50846            + lib/I18N/LangTags/Detect.pm
50847            + lib/I18N/LangTags/t/01_about_verbose.t
50848            + lib/I18N/LangTags/t/05_main.t lib/I18N/LangTags/t/07_listy.t
50849            + lib/I18N/LangTags/t/10_http.t lib/I18N/LangTags/t/50_super.t
50850            + lib/I18N/LangTags/t/55_supers_strict.t
50851            + lib/I18N/LangTags/t/80_all_env.t
50852            - lib/I18N/LangTags/t/01test.t lib/I18N/LangTags/t/02decency.t
50853            ! MANIFEST lib/I18N/LangTags.pm lib/I18N/LangTags/ChangeLog
50854            ! lib/I18N/LangTags/List.pm
50855 ____________________________________________________________________________
50856 [ 22940] By: rgs                                   on 2004/06/17  08:54:41
50857         Log: More forgiving version comparison in perlivp.
50858      Branch: perl
50859            ! utils/perlivp.PL
50860 ____________________________________________________________________________
50861 [ 22939] By: nicholas                              on 2004/06/16  09:05:57
50862         Log: Improve the substitution to cc_r for threading so that compilers
50863              specified with a full path or as a parameter to ccache are changed
50864      Branch: perl
50865            ! hints/aix.sh
50866 ____________________________________________________________________________
50867 [ 22938] By: rgs                                   on 2004/06/15  14:35:00
50868         Log: Subject: [PATCH] File::Basename docs
50869              From: Boris Zentner <bzm@2bz.de>
50870              Date: Sat, 12 Jun 2004 16:29:42 +0200
50871              Message-Id: <200406121629.42595.bzm@2bz.de>
50872      Branch: perl
50873            ! lib/File/Basename.pm
50874 ____________________________________________________________________________
50875 [ 22937] By: nicholas                              on 2004/06/15  09:21:22
50876         Log: It seems that our assert() macro wasn't good enough.
50877              Changed to one that that is an expression, rather than a statement.
50878              Fix new macros definitions in sv.h to be clean enough C to keep the
50879              AIX compiler happy.
50880      Branch: perl
50881            ! perl.h sv.h
50882 ____________________________________________________________________________
50883 [ 22936] By: rgs                                   on 2004/06/15  08:22:32
50884         Log: Subject: [PATCH] perlop.pod: add an example to the .. and ... operators
50885              From: Shlomi Fish <shlomif@vipe.technion.ac.il>
50886              Date: Tue, 15 Jun 2004 10:15:15 +0300 (IDT)
50887              Message-ID: <Pine.LNX.4.56.0406151013140.14618@vipe.technion.ac.il>
50888      Branch: perl
50889            ! pod/perlop.pod
50890 ____________________________________________________________________________
50891 [ 22935] By: nicholas                              on 2004/06/15  07:17:17
50892         Log: Assert SvTYPE is at least PGMV whenever accessing SvSTASH
50893      Branch: perl
50894            ! ext/Storable/Storable.xs sv.h
50895 ____________________________________________________________________________
50896 [ 22934] By: nicholas                              on 2004/06/14  15:26:38
50897         Log: Assert that SV type has magic member when reading/writing.
50898              Will catch buggy code.
50899      Branch: perl
50900            ! sv.c sv.h
50901 ____________________________________________________________________________
50902 [ 22933] By: rgs                                   on 2004/06/13  17:54:47
50903         Log: More h2ph voodoo.
50904      Branch: perl
50905            ! utils/h2ph.PL
50906 ____________________________________________________________________________
50907 [ 22932] By: rgs                                   on 2004/06/13  15:35:00
50908         Log: Subject: [PATCH] t/TEST
50909              From: Abe Timmerman <abe@ztreet.demon.nl>
50910              Date: Sun, 13 Jun 2004 11:41:49 +0200
50911              Message-Id: <200406131141.50361.abe@ztreet.demon.nl>
50912      Branch: perl
50913            ! t/TEST
50914 ____________________________________________________________________________
50915 [ 22931] By: rgs                                   on 2004/06/11  16:54:00
50916         Log: Reapply change #20983, rolled back by change #22920,
50917              as noticed by Craig Berry.
50918      Branch: perl
50919            ! pod/pod2usage.PL pod/podselect.PL
50920 ____________________________________________________________________________
50921 [ 22930] By: rgs                                   on 2004/06/11  14:22:55
50922         Log: More h2ph tweaks: recognition of C types
50923      Branch: perl
50924            ! utils/h2ph.PL
50925 ____________________________________________________________________________
50926 [ 22929] By: rgs                                   on 2004/06/11  13:46:53
50927         Log: More h2ph tweaking for gcc __inline functions
50928      Branch: perl
50929            ! utils/h2ph.PL
50930 ____________________________________________________________________________
50931 [ 22928] By: mhx                                   on 2004/06/11  09:37:42
50932         Log: t/comp/utf.t failed when configuring with -Dnoextensions=Encode
50933      Branch: perl
50934            ! t/comp/utf.t
50935 ____________________________________________________________________________
50936 [ 22927] By: rgs                                   on 2004/06/11  08:28:19
50937         Log: Remove a warning against unsafe signals in perlipc.pod,
50938              now that we have "safe signals".
50939      Branch: perl
50940            ! pod/perlipc.pod
50941 ____________________________________________________________________________
50942 [ 22926] By: rgs                                   on 2004/06/10  19:03:51
50943         Log: Subject: Re: [perl #30197] perlbug AutoReply: Data::Dumper does not indent the deparsed code properly
50944              From: Mathieu Arnold <m@absolight.fr>
50945              Date: Thu, 10 Jun 2004 16:43:58 +0200
50946              Message-ID: <34D483170C7F84E0DFBE442B@andromede.in.reaumur.net>
50947              (with a test adjustment)
50948      Branch: perl
50949            ! ext/Data/Dumper/Dumper.pm ext/Data/Dumper/t/dumper.t
50950 ____________________________________________________________________________
50951 [ 22925] By: rgs                                   on 2004/06/10  17:26:15
50952         Log: Make h2ph able to understand a limited set of inline functions.
50953              The glibc apparently now ships headers that use inline functions
50954              instead of plain old macros.
50955      Branch: perl
50956            ! utils/h2ph.PL
50957 ____________________________________________________________________________
50958 [ 22924] By: rgs                                   on 2004/06/10  07:55:41
50959         Log: Subject: Change 22872 breaks shared miniperl invocation
50960              From: Alexey Tourbin <at@altlinux.ru>
50961              Date: Fri, 4 Jun 2004 13:24:17 +0400
50962              Message-ID: <20040604092417.GA13447@solemn.turbinal.org>
50963      Branch: perl
50964            ! Makefile.SH
50965 ____________________________________________________________________________
50966 [ 22923] By: rgs                                   on 2004/06/09  19:47:47
50967         Log: Subject: Re: [perl #30045] Transliteration replacement not terminated message obscure
50968              From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
50969              Date: Mon, 7 Jun 2004 00:28:55 -0700
50970              Message-ID: <20040607072854.GB1028@efn.org>
50971      Branch: perl
50972            ! pod/perldiag.pod
50973 ____________________________________________________________________________
50974 [ 22922] By: rgs                                   on 2004/06/09  18:40:45
50975         Log: Remove the "malloc wrappage" tests, due to their unportability
50976              (as suggested by Jarkko.)
50977      Branch: perl
50978            ! t/op/array.t t/op/repeat.t
50979 ____________________________________________________________________________
50980 [ 22921] By: rgs                                   on 2004/06/09  15:57:58
50981         Log: Subject: [PATCH] Re: [perl #24081] invalid regexp in perl -V
50982              From: Robin Barker <Robin.Barker@npl.co.uk>
50983              Date: Wed, 9 Jun 2004 12:02:01 +0100
50984              Message-ID: <533D273D4014D411AB1D00062938C4D9040468F1@hotel.npl.co.uk>
50985              with further adjustements for bleadperl
50986      Branch: perl
50987            ! configpm lib/Config.t
50988 ____________________________________________________________________________
50989 [ 22920] By: rgs                                   on 2004/06/09  13:13:29
50990         Log: Upgrade to Pod::Parser 1.28
50991              (except Pod::Find, which has local patches not yet on CPAN)
50992      Branch: perl
50993            ! lib/Pod/Checker.pm lib/Pod/ParseUtils.pm lib/Pod/Parser.pm
50994            ! pod/pod2usage.PL pod/podchecker.PL pod/podselect.PL
50995            ! t/pod/find.t
50996 ____________________________________________________________________________
50997 [ 22919] By: mhx                                   on 2004/06/09  12:50:12
50998         Log: s/64bit/64-bit/g for consistency in the READMEs.
50999      Branch: perl
51000            ! README.aix README.hpux
51001 ____________________________________________________________________________
51002 [ 22918] By: rgs                                   on 2004/06/09  12:43:59
51003         Log: Subject: [patch] Windows/Win32 thread handle leak with threads join
51004              From: "Kevin Chase" <kevincha99@hotmail.com>
51005              Date: Sun, 06 Jun 2004 09:44:44 -0700
51006              Message-ID: <BAY2-F172Ih5h5xf4rJ0001a3a6@hotmail.com>
51007      Branch: perl
51008            ! ext/threads/threads.xs
51009 ____________________________________________________________________________
51010 [ 22917] By: merijn                                on 2004/06/09  11:46:23
51011         Log: Several updates, major, and minor corrections, model updates,
51012              explained the model numbering of HP-UX servers.
51013      Branch: perl
51014            ! README.hpux
51015 ____________________________________________________________________________
51016 [ 22916] By: rgs                                   on 2004/06/09  09:53:58
51017         Log: Upgrade to Pod::Perldoc 3.13
51018      Branch: perl
51019            + lib/Pod/Perldoc/t/01_about_verbose.t
51020            ! MANIFEST lib/Pod/Perldoc.pm lib/Pod/Perldoc/ToMan.pm
51021 ____________________________________________________________________________
51022 [ 22915] By: rgs                                   on 2004/06/09  09:08:46
51023         Log: Upgrade to Digest 1.08.
51024      Branch: perl
51025            ! lib/Digest.pm
51026 ____________________________________________________________________________
51027 [ 22914] By: rgs                                   on 2004/06/09  08:08:55
51028         Log: Upgrade to CGI.pm 3.05
51029      Branch: perl
51030            ! lib/CGI.pm lib/CGI/Carp.pm lib/CGI/Util.pm lib/CGI/t/html.t
51031 ____________________________________________________________________________
51032 [ 22913] By: davem                                 on 2004/06/08  22:20:40
51033         Log: double DESTROY in for loop
51034              pp_iter decremented the ref count of the previous iterant before
51035              unaliasing it. This could lead to DESTROY being called with the
51036              loop variable still aliased to the freed value. If the DESTROY
51037              also contained a for loop with the same iterator variable, the
51038              freed value would get resurrected then freed for a second time.
51039      Branch: perl
51040            ! pp_hot.c t/cmd/for.t
51041 ____________________________________________________________________________
51042 [ 22912] By: rgs                                   on 2004/06/08  18:51:03
51043         Log: Upgrade to Pod::LaTeX 0.57
51044      Branch: perl
51045            + lib/Pod/t/user.t
51046            ! MANIFEST lib/Pod/LaTeX.pm pod/pod2latex.PL
51047 ____________________________________________________________________________
51048 [ 22911] By: rgs                                   on 2004/06/08  18:42:29
51049         Log: Upgrade to Unicode::Normalize 0.30.
51050      Branch: perl
51051            ! ext/Unicode/Normalize/Changes
51052            ! ext/Unicode/Normalize/Normalize.pm
51053            ! ext/Unicode/Normalize/Normalize.xs
51054            ! ext/Unicode/Normalize/t/illegal.t
51055            ! ext/Unicode/Normalize/t/short.t
51056            ! ext/Unicode/Normalize/t/split.t
51057 ____________________________________________________________________________
51058 [ 22910] By: rgs                                   on 2004/06/08  18:40:38
51059         Log: Remove a spurious \n in a perltie example,
51060              noticed by Geoffrey Young.
51061      Branch: perl
51062            ! pod/perltie.pod
51063 ____________________________________________________________________________
51064 [ 22909] By: rgs                                   on 2004/06/08  18:34:23
51065         Log: Upgrade to Unicode::Collate 0.40
51066      Branch: perl
51067            ! lib/Unicode/Collate.pm lib/Unicode/Collate/t/hangul.t
51068 ____________________________________________________________________________
51069 [ 22908] By: rgs                                   on 2004/06/08  18:23:54
51070         Log: Upgrade to Time::Local 1.10.
51071      Branch: perl
51072            ! lib/Time/Local.pm lib/Time/Local.t
51073 ____________________________________________________________________________
51074 [ 22907] By: rgs                                   on 2004/06/08  18:02:59
51075         Log: Upgrade to Test::Harness 2.42
51076      Branch: perl
51077            ! lib/Test/Harness.pm lib/Test/Harness/Changes
51078            ! lib/Test/Harness/bin/prove lib/Test/Harness/t/prove-switches.t
51079 ____________________________________________________________________________
51080 [ 22906] By: nicholas                              on 2004/06/08  14:59:20
51081         Log: Patch 22835 Failed to upgrade all the new files in Encode 2.01
51082              As spotted by Jerry D. Hedden
51083      Branch: perl
51084            ! ext/Encode/Changes ext/Encode/Encode.pm ext/Encode/META.yml
51085 ____________________________________________________________________________
51086 [ 22905] By: rgs                                   on 2004/06/08  13:53:40
51087         Log: Subject: Re: newSVpvn(NULL, 0); doesn't work as advertised
51088              From: Marcus Holland-Moritz <mhx-perl@gmx.net>
51089              Date: Fri, 4 Jun 2004 16:29:44 +0200
51090              Message-Id: <20040604162944.4011f1c6@r2d2>
51091      Branch: perl
51092            ! pod/perlapi.pod sv.c
51093 ____________________________________________________________________________
51094 [ 22904] By: rgs                                   on 2004/06/08  13:44:27
51095         Log: Subject: Re: [PATCH] Re: Lack of error for large string on Solaris
51096              From: Jarkko Hietaniemi <jhi@iki.fi>
51097              Date: Mon, 07 Jun 2004 20:09:42 +0300
51098              Message-ID: <40C4A156.5030205@iki.fi>
51099      Branch: perl
51100            ! av.c pod/perldiag.pod pp.c pp_hot.c t/op/array.t t/op/repeat.t
51101 ____________________________________________________________________________
51102 [ 22903] By: rgs                                   on 2004/06/08  10:19:27
51103         Log: Subject: [perl #30073] Misleading docs of Text::Wrap
51104              From: perl-5.8.0@ton.iguana.be (via RT) <perlbug-followup@perl.org>
51105              Date: 6 Jun 2004 21:50:19 -0000
51106              Message-ID: <rt-3.0.9-30073-89834.19.0927626986204@perl.org>
51107      Branch: perl
51108            ! lib/Text/Wrap.pm
51109 ____________________________________________________________________________
51110 [ 22902] By: rgs                                   on 2004/06/06  07:49:27
51111         Log: Subject: Re: [PATCH] [perl #29841] utf8::decode doesn't work under -T
51112              From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
51113              Date: Sun, 06 Jun 2004 00:37:21 +0900
51114              Message-Id: <20040606003344.57B2.BQW10602@nifty.com>
51115      Branch: perl
51116            ! lib/utf8.pm pod/perlapi.pod sv.c t/op/utftaint.t
51117 ____________________________________________________________________________
51118 [ 22901] By: rgs                                   on 2004/06/03  15:19:52
51119         Log: Subject: [PATCH] Have win32/makefile.mk default to gcc, and update docs
51120              From: Steve Hay <steve.hay@uk.radan.com>
51121              Date: Thu, 03 Jun 2004 15:46:17 +0100
51122              Message-ID: <40BF39B9.3060207@uk.radan.com>
51123      Branch: perl
51124            ! README.win32 win32/makefile.mk
51125 ____________________________________________________________________________
51126 [ 22900] By: rgs                                   on 2004/06/03  13:20:37
51127         Log: perlpodspec uses 'nonbreaking' and 'non-breaking'.
51128              Normalize on the hyphenated spelling.
51129      Branch: perl
51130            ! pod/perlpodspec.pod
51131 ____________________________________________________________________________
51132 [ 22899] By: rgs                                   on 2004/06/03  13:03:20
51133         Log: Workaround a dmake oddity.
51134              Subject: Re: Smoke [5.9.2] 22881 FAIL(M) MSWin32 WinXP/.Net SP1 (x86/1 cpu)
51135              From: Steve Hay <steve.hay@uk.radan.com>
51136              Date: Thu, 03 Jun 2004 12:16:13 +0100
51137              Message-ID: <40BF087D.8030005@uk.radan.com>
51138      Branch: perl
51139            ! win32/makefile.mk
51140 ____________________________________________________________________________
51141 [ 22898] By: rgs                                   on 2004/06/03  09:02:31
51142         Log: Carp was mostly unusable with Safe because it may require
51143              Carp::Heavy at run-time (while require() is forbidden.)
51144              Have Safe load Carp::Heavy.
51145      Branch: perl
51146            ! ext/Opcode/Safe.pm lib/Carp.pm
51147 ____________________________________________________________________________
51148 [ 22897] By: mhx                                   on 2004/06/02  18:03:40
51149         Log: Make change #22889 work for threaded builds, Part 2.
51150      Branch: perl
51151            ! XSUB.h
51152 ____________________________________________________________________________
51153 [ 22896] By: mhx                                   on 2004/06/02  17:18:44
51154         Log: Make change #22889 work for threaded builds.
51155      Branch: perl
51156            ! pad.c pp.c
51157 ____________________________________________________________________________
51158 [ 22895] By: mhx                                   on 2004/06/02  16:48:41
51159         Log: Fix apidoc entries for PUSHMARK and newXSproto.
51160      Branch: perl
51161            ! XSUB.h pod/perlapi.pod pp.h
51162 ____________________________________________________________________________
51163 [ 22894] By: mhx                                   on 2004/06/02  16:42:24
51164         Log: Document embed.fnc 'U' and 's' flags.
51165      Branch: perl
51166            ! embed.fnc
51167 ____________________________________________________________________________
51168 [ 22893] By: rgs                                   on 2004/06/02  08:21:30
51169         Log: Subject: [PATCH] on VMS, always exit with failure in my_failure_exit
51170              From: "Craig A. Berry" <craigberry@mac.com>
51171              Date: Tue, 01 Jun 2004 23:16:58 -0500
51172              Message-ID: <40BD54BA.9040708@mac.com>
51173      Branch: perl
51174            ! perl.c
51175 ____________________________________________________________________________
51176 [ 22892] By: rgs                                   on 2004/06/02  08:19:30
51177         Log: Subject: Re: [PATCH] [perl #29612] ndbm failure in make test
51178              From: Alexey Tourbin <at@altlinux.ru>
51179              Date: Sat, 22 May 2004 02:22:22 +0400
51180              Message-ID: <20040521222222.GJ2030@solemn.turbinal.org>
51181      Branch: perl
51182            ! ext/NDBM_File/hints/linux.pl
51183 ____________________________________________________________________________
51184 [ 22891] By: rgs                                   on 2004/06/02  06:47:58
51185         Log: Detypo.
51186      Branch: perl
51187            ! pod/perlintern.pod pp_ctl.c
51188 ____________________________________________________________________________
51189 [ 22890] By: rgs                                   on 2004/06/02  06:43:30
51190         Log: Subject: [PATCH] Re: [perl #29765] PERL-5.8.4 INSTALL
51191              From: Andrew Dougherty <doughera@lafayette.edu>
51192              Date: Tue, 1 Jun 2004 16:25:48 -0400 (EDT)
51193              Message-ID: <Pine.SOL.4.58.0406011619090.4066@maxwell.phys.lafayette.edu>
51194      Branch: perl
51195            ! INSTALL README
51196 ____________________________________________________________________________
51197 [ 22889] By: rgs                                   on 2004/06/02  06:07:53
51198         Log: Make the dUNDERBAR/UNDERBAR macros work as advertised.
51199              While we're at it, use the same trick to make reverse()
51200              work correctly with lexical $_.
51201      Branch: perl
51202            ! XSUB.h embed.fnc embed.h global.sym pad.c pp.c proto.h
51203            ! t/op/mydef.t
51204 ____________________________________________________________________________
51205 [ 22888] By: rgs                                   on 2004/06/01  15:26:59
51206         Log: Subject: [PATCH] Remove redundant %SIG assignments from FileCache
51207              From: Alan Burlison <Alan.Burlison@Sun.COM>
51208              Date: Fri, 28 May 2004 12:27:06 +0100
51209              Message-ID: <40B7220A.4040305@sun.com>
51210      Branch: perl
51211            ! lib/FileCache.pm
51212 ____________________________________________________________________________
51213 [ 22887] By: merijn                                on 2004/06/01  14:30:48
51214         Log: Subject: Re: Smoke [5.9.2] 22881 FAIL(M) MSWin32 WinXP/.Net SP1 (x86/1 cpu)
51215              From: Steve Hay <steve.hay@uk.radan.com>
51216              Date: Tue, 01 Jun 2004 15:30:37 +0100
51217              Message-ID: <40BC930D.90701@uk.radan.com>
51218      Branch: perl
51219            ! win32/Makefile win32/makefile.mk
51220 ____________________________________________________________________________
51221 [ 22886] By: rgs                                   on 2004/06/01  12:24:30
51222         Log: Subject: [Fwd: [PATCH] Pod::Find should ignore SCM files and dirs]
51223              From: Alan Burlison <Alan.Burlison@sun.com>
51224              Date: Fri, 28 May 2004 23:28:44 +0100
51225              Message-ID: <40B7BD1C.40309@sun.com>
51226      Branch: perl
51227            ! lib/Pod/Find.pm
51228 ____________________________________________________________________________
51229 [ 22885] By: rgs                                   on 2004/06/01  12:17:18
51230         Log: Subject: Re: [PATCH] UPDATE - Grammatical fixes and explanations in perlfunc.pod (sysopen)
51231              From: Paul Fenwick <pjf@perltraining.com.au>
51232              Date: Tue, 1 Jun 2004 11:31:34 +1000
51233              Message-ID: <20040601013134.GA11005@perltraining.com.au>
51234      Branch: perl
51235            ! pod/perlfunc.pod
51236 ____________________________________________________________________________
51237 [ 22884] By: merijn                                on 2004/06/01  10:51:33
51238         Log: Subject: [PATCH] configure.com and PERL_API_REVISION
51239              From: "Craig A. Berry" <craigberry@mac.com>
51240              Date: Mon, 31 May 2004 21:04:07 -0500
51241              Message-ID: <40BBE417.2090001@mac.com>
51242      Branch: perl
51243            ! configure.com
51244 ____________________________________________________________________________
51245 [ 22883] By: rgs                                   on 2004/06/01  09:25:32
51246         Log: Subject: [PATCH] Shell.pm: pod rewrite and new mini-feature $Shell::raw
51247              From: LAUN Wolfgang <wolfgang.laun@alcatel.at>
51248              Date: Tue, 1 Jun 2004 07:52:58 +0200
51249              Message-ID: <DF27CDCBD2581D4B88431901094E4B4D02B0C744@attmsx1.aut.alcatel.at>
51250      Branch: perl
51251            ! lib/Shell.pm
51252 ____________________________________________________________________________
51253 [ 22882] By: rgs                                   on 2004/06/01  08:44:01
51254         Log: Subject: [PATCH] perlhack.pod - working with the Perl source
51255              From: Dave Rolsky <autarch@urth.org>
51256              Date: Mon, 31 May 2004 12:52:43 -0500 (CDT)
51257              Message-ID: <Pine.LNX.4.58.0405311250520.7714@urth.org>
51258      Branch: perl
51259            ! pod/perlhack.pod
51260 ____________________________________________________________________________
51261 [ 22881] By: nicholas                              on 2004/05/31  19:06:21
51262         Log: replace the run time code in lib/utf8_pva.pl with data generated
51263              at build by mktables, stored in lib/unicore/PVA.pl
51264      Branch: perl
51265            - lib/utf8_pva.pl
51266            ! MANIFEST Makefile.SH lib/unicore/mktables lib/utf8_heavy.pl
51267            ! vms/descrip_mms.template win32/Makefile win32/makefile.mk
51268 ____________________________________________________________________________
51269 [ 22880] By: nicholas                              on 2004/05/31  17:26:56
51270         Log: Don't need to require utf8_pva.pl at top of file
51271      Branch: perl
51272            ! lib/utf8_heavy.pl
51273 ____________________________________________________________________________
51274 [ 22879] By: nicholas                              on 2004/05/31  14:24:56
51275         Log: Run mktables as part of the build process.
51276              Don't ship any of the files that it generates in lib/unicore
51277      Branch: perl
51278            - (delete 419 files)
51279            ! MANIFEST Makefile.SH lib/unicore/mktables
51280            ! vms/descrip_mms.template win32/Makefile win32/makefile.mk
51281 ____________________________________________________________________________
51282 [ 22878] By: rgs                                   on 2004/05/31  14:20:53
51283         Log: Subject: [perl #29937] Entries missing from .packlist
51284              From: jdhedden@1979.usna.com (via RT) <perlbug-followup@perl.org>
51285              Date: 28 May 2004 19:23:48 -0000
51286              Message-ID: <rt-3.0.9-29937-88315.2.18472609678159@perl.org>
51287      Branch: perl
51288            ! installman installperl
51289 ____________________________________________________________________________
51290 [ 22877] By: rgs                                   on 2004/05/31  12:50:57
51291         Log: Subject: [PATCH] Re: [perl #29969] h2ph not correctly processing glibc sys/sysmacros.ph
51292              From: <wolfgang.laun@chello.at>
51293              Date: Sun, 30 May 2004 17:27:07 +0200
51294              Message-Id: <20040530152707.ZLWL22856.viefep16-int.chello.at@localhost>
51295      Branch: perl
51296            ! utils/h2ph.PL
51297 ____________________________________________________________________________
51298 [ 22876] By: rgs                                   on 2004/05/31  09:52:05
51299         Log: Subject: [PATCH] Fix anomalies in Carp functions
51300              From: Steve Hay <steve.hay@uk.radan.com>
51301              Date: Tue, 25 May 2004 16:05:02 +0100
51302              Message-ID: <40B3609E.5060502@uk.radan.com>
51303      Branch: perl
51304            ! lib/Carp.t lib/Carp/Heavy.pm lib/autouse.t
51305 ____________________________________________________________________________
51306 [ 22875] By: rgs                                   on 2004/05/31  09:25:37
51307         Log: Subject: [PATCH] Fix generation of perlapi.pod
51308              From: Steve Hay <steve.hay@uk.radan.com>
51309              Date: Fri, 28 May 2004 11:46:41 +0100
51310              Message-ID: <40B71891.6090806@uk.radan.com>
51311      Branch: perl
51312            ! autodoc.pl pod/perlapi.pod
51313 ____________________________________________________________________________
51314 [ 22874] By: davem                                 on 2004/05/30  22:31:03
51315         Log: Subject:  Re: my $x->{foo} doesn't work
51316              From:  Shinya Hayakawa <hayakawa@livedoor.jp>
51317              Date:  Tue, 25 May 2004 00:06:06 +0900
51318              Message-Id:  <200405250006.06387.hayakawa@livedoor.jp>
51319
51320              Allow autovivification of (my $x)->{foo}
51321      Branch: perl
51322            ! pp_hot.c t/op/my.t
51323 ____________________________________________________________________________
51324 [ 22873] By: nicholas                              on 2004/05/30  21:58:36
51325         Log: Convert to using File::Spec, so that we can build Unicode files
51326              on all platforms
51327      Branch: perl
51328            ! lib/unicore/mktables
51329 ____________________________________________________________________________
51330 [ 22872] By: nicholas                              on 2004/05/30  20:34:07
51331         Log: First step to generating Unicode files for the regexp engine at build
51332              time - targets in the Makefile
51333      Branch: perl
51334            ! Makefile.SH
51335 ____________________________________________________________________________
51336 [ 22870] By: davem                                 on 2004/05/30  14:30:45
51337         Log: Problem with autouse (causing Perl to crash)
51338              @_ sometimes wasn't getting created right
51339      Branch: perl
51340            ! pad.c pp_ctl.c t/op/goto.t
51341 ____________________________________________________________________________
51342 [ 22868] By: nicholas                              on 2004/05/30  13:57:05
51343         Log: Upgrade to Encode 2.01.
51344      Branch: perl
51345            ! ext/Encode/lib/Encode/CN/HZ.pm
51346            ! ext/Encode/lib/Encode/Unicode/UTF7.pm
51347 ____________________________________________________________________________
51348 [ 22866] By: nicholas                              on 2004/05/30  13:11:41
51349         Log: Skip in minitest
51350      Branch: perl
51351            ! t/comp/utf.t
51352 ____________________________________________________________________________
51353 [ 22853] By: rgs                                   on 2004/05/28  06:29:28
51354         Log: Subject: [PATCH doc] Re: undef loses it magicness when assigned to a variable?
51355              From: Stas Bekman <stas@stason.org>
51356              Date: Thu, 27 May 2004 11:25:08 -0700
51357              Message-ID: <40B63284.5040203@stason.org>
51358      Branch: perl
51359            ! pod/perlapi.pod pod/perlguts.pod sv.h
51360 ____________________________________________________________________________
51361 [ 22852] By: merijn                                on 2004/05/28  05:31:25
51362         Log: Subject: TEST needs to ignore SCM files
51363              From: Alan Burlison <Alan.Burlison@sun.com>
51364              Date: Thu, 27 May 2004 23:32:28 +0100
51365              Message-ID: <40B66C7C.8030303@sun.com>
51366      Branch: perl
51367            ! t/TEST
51368 ____________________________________________________________________________
51369 [ 22850] By: rgs                                   on 2004/05/26  16:17:24
51370         Log: Subject: [PATCH] 'perl -v' fails if local_patches contains code snippets
51371              From: Alan Burlison <Alan.Burlison@sun.com>
51372              Date: Wed, 26 May 2004 16:24:03 +0100
51373              Message-ID: <40B4B693.9090905@sun.com>
51374              (using \0 as a separator for q//)
51375      Branch: perl
51376            ! perl.c
51377 ____________________________________________________________________________
51378 [ 22848] By: rgs                                   on 2004/05/26  08:15:29
51379         Log: Subject: [PATCH] correctly handle C<< >> and C<<< >>> in diagnostics
51380              From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
51381              Date: Tue, 25 May 2004 02:29:37 -0700
51382              Message-ID: <20040525092937.GA2332@efn.org>
51383      Branch: perl
51384            ! lib/diagnostics.pm
51385 ____________________________________________________________________________
51386 [ 22843] By: rgs                                   on 2004/05/24  16:12:41
51387         Log: Tests for change #22842, by SADAHIRO Tomoyuki
51388              (adapted to the core)
51389      Branch: perl
51390            + t/op/utftaint.t
51391            ! MANIFEST
51392 ____________________________________________________________________________
51393 [ 22842] By: rgs                                   on 2004/05/24  15:55:23
51394         Log: Subject: Re: utf-8 and taint don't work together
51395              From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
51396              Date: Sat, 22 May 2004 21:38:33 +0900
51397              Message-Id: <20040522212704.C068.BQW10602@nifty.com>
51398
51399              Date: Sun, 23 May 2004 09:56:15 +0900
51400              Message-Id: <20040523095609.E404.BQW10602@nifty.com>
51401      Branch: perl
51402            ! ext/Encode/lib/Encode/CN/HZ.pm
51403            ! ext/Encode/lib/Encode/Unicode/UTF7.pm sv.c
51404 ____________________________________________________________________________
51405 [ 22841] By: rgs                                   on 2004/05/24  11:43:32
51406         Log: Subject: [PATCH] win32_chsize is not exported on Win32
51407              From: Steve Hay <steve.hay@uk.radan.com>
51408              Date: Mon, 24 May 2004 12:52:48 +0100
51409              Message-ID: <40B1E210.4050202@uk.radan.com>
51410      Branch: perl
51411            ! makedef.pl
51412 ____________________________________________________________________________
51413 [ 22840] By: rgs                                   on 2004/05/24  11:23:31
51414         Log: Subject: [PATCH] Re: [perl #29765] PERL-5.8.4 INSTALL
51415              From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
51416              Date: Fri, 21 May 2004 11:35:34 -0700
51417              Message-ID: <20040521183533.GA5108@efn.org>
51418              (plus whitespace removal)
51419      Branch: perl
51420            ! INSTALL
51421 ____________________________________________________________________________
51422 [ 22839] By: davem                                 on 2004/05/22  11:15:34
51423         Log: Optimization busted: '@a = "b", sort @a' drops "b"
51424              Fix the sort-in-place optimization of change #22349.
51425      Branch: perl
51426            ! op.c t/op/sort.t
51427 ____________________________________________________________________________
51428 [ 22838] By: gbarr                                 on 2004/05/22  07:41:21
51429         Log: Update to Scalar-List-Utils-1.14
51430      Branch: perl
51431            + ext/List/Util/Changes
51432            - ext/List/Util/ChangeLog
51433            ! MANIFEST ext/List/Util/README ext/List/Util/Util.xs
51434            ! ext/List/Util/lib/List/Util.pm
51435            ! ext/List/Util/lib/Scalar/Util.pm
51436 ____________________________________________________________________________
51437 [ 22837] By: rgs                                   on 2004/05/21  15:40:49
51438         Log: Subject: Proposed doc patch for getsockopt
51439              From: perl5-porters@ton.iguana.be (Ton Hospel)
51440              Date: Sun, 16 May 2004 13:35:20 +0000 (UTC)
51441              Message-Id: <c87qmo$u9b$1@post.home.lunix>
51442      Branch: perl
51443            ! pod/perlfunc.pod
51444 ____________________________________________________________________________
51445 [ 22836] By: rgs                                   on 2004/05/21  08:45:28
51446         Log: Subject: [PATCH] h2xs doesn't recognize indented enums
51447              From: Tassilo von Parseval <tassilo.parseval@post.rwth-aachen.de>
51448              Date: Fri, 21 May 2004 10:51:58 +0200
51449              Message-id: <20040521085158.GA10660@ethan>
51450              (modified regexp)
51451      Branch: perl
51452            ! utils/h2xs.PL
51453 ____________________________________________________________________________
51454 [ 22835] By: rgs                                   on 2004/05/20  13:30:25
51455         Log: Upgrade to Encode 2.00.
51456      Branch: perl
51457            ! (edit 147 files)
51458 ____________________________________________________________________________
51459 [ 22833] By: rgs                                   on 2004/05/20  11:48:29
51460         Log: Test portability nit.
51461              Subject: [PATCH] Re: Smoke [5.9.2] 22821 FAIL(F) MSWin32 WinXP/.Net SP1 (x86/1 cpu)
51462              From: Steve Hay <steve.hay@uk.radan.com>
51463              Date: Tue, 18 May 2004 11:31:04 +0100
51464              Message-ID: <40A9E5E8.7030800@uk.radan.com>
51465      Branch: perl
51466            ! ext/B/t/optree_specials.t
51467 ____________________________________________________________________________
51468 [ 22831] By: davem                                 on 2004/05/19  21:02:04
51469         Log: improve hashing algorithm for ptr tables in perl_clone:
51470              the bottom few bits of a pointer are usually zero
51471      Branch: perl
51472            ! sv.c
51473 ____________________________________________________________________________
51474 [ 22830] By: davem                                 on 2004/05/19  20:17:55
51475         Log: Thread creation time is hypersensitive
51476
51477              Due to a logic error, the dup ptr table sometimes wans't being
51478              grown, leading to extremely slow cloning.
51479      Branch: perl
51480            ! sv.c
51481 ____________________________________________________________________________
51482 [ 22829] By: rgs                                   on 2004/05/18  13:05:48
51483         Log: perlrun.pod minor fixes :
51484              - the parameter to -x is optional
51485              - pod nit
51486      Branch: perl
51487            ! pod/perlrun.pod
51488 ____________________________________________________________________________
51489 [ 22828] By: rgs                                   on 2004/05/18  12:54:47
51490         Log: Subject: [perl #29623] Patch for h2xs.t in Perl 5.8.4
51491              From: mats@sm5sxl.net (via RT) <perlbug-followup@perl.org>
51492              Date: 16 May 2004 13:33:32 -0000
51493              Message-ID: <rt-3.0.9-29623-87522.10.1965589695082@perl.org>
51494      Branch: perl
51495            ! lib/h2xs.t
51496 ____________________________________________________________________________
51497 [ 22827] By: rgs                                   on 2004/05/18  12:16:42
51498         Log: Subject: [PATCH] Re: Smoke [5.9.2] 22818 FAIL(F) MSWin32 WinXP/.Net SP1 (x86/1 cpu)
51499              From: Steve Hay <steve.hay@uk.radan.com>
51500              Date: Fri, 14 May 2004 17:33:17 +0100
51501              Message-ID: <40A4F4CD.2000003@uk.radan.com>
51502      Branch: perl
51503            ! t/comp/utf.t
51504 ____________________________________________________________________________
51505 [ 22826] By: rgs                                   on 2004/05/18  08:15:27
51506         Log: Error message too wide.
51507      Branch: perl
51508            ! perl.c
51509 ____________________________________________________________________________
51510 [ 22825] By: rgs                                   on 2004/05/17  15:12:03
51511         Log: Remove a TODO test that is no longer to do.
51512      Branch: perl
51513            ! ext/B/t/f_sort.t
51514 ____________________________________________________________________________
51515 [ 22824] By: rgs                                   on 2004/05/17  15:08:40
51516         Log: Fix new B::Concise test output
51517              Subject: Re: Smoke [5.9.2] 22820 FAIL(F) openbsd 3.5 (i386/1 cpu)
51518              From: Jim Cromie <jcromie@divsol.com>
51519              Date: Mon, 17 May 2004 09:19:00 -0600
51520              Message-ID: <40A8D7E4.1020007@divsol.com>
51521      Branch: perl
51522            ! ext/B/t/f_sort.t t/TEST
51523 ____________________________________________________________________________
51524 [ 22823] By: rgs                                   on 2004/05/17  08:54:15
51525         Log: Subject: [PATCH] Re: [perl #29581] glob() misses a lot of matches
51526              From: LAUN Wolfgang <wolfgang.laun@alcatel.at>
51527              Date: Mon, 17 May 2004 07:38:19 +0200
51528              Message-ID: <DF27CDCBD2581D4B88431901094E4B4D02B0C71E@attmsx1.aut.alcatel.at>
51529      Branch: perl
51530            ! ext/File/Glob/Glob.xs
51531 ____________________________________________________________________________
51532 [ 22822] By: rgs                                   on 2004/05/17  08:49:53
51533         Log: David Manura is the new maintainer of Text::Balanced.
51534      Branch: perl
51535            ! Porting/Maintainers.pl
51536 ____________________________________________________________________________
51537 [ 22821] By: davem                                 on 2004/05/16  15:31:42
51538         Log: make Text::Balanced skip "case /..../" correctly for Switch.pm
51539      Branch: perl
51540            ! lib/Text/Balanced.pm lib/Text/Balanced/t/extcbk.t
51541 ____________________________________________________________________________
51542 [ 22820] By: rgs                                   on 2004/05/14  16:30:07
51543         Log: Subject: Re: more B::Concise stuff (PATCH - updated)
51544              From: Jim Cromie <jcromie@divsol.com>
51545              Date: Mon, 10 May 2004 05:28:11 -0600
51546              Message-ID: <409F674B.2000506@divsol.com>
51547      Branch: perl
51548            + ext/B/t/f_map ext/B/t/f_map.t ext/B/t/f_sort ext/B/t/f_sort.t
51549            + ext/B/t/optree_specials.t
51550            ! MANIFEST ext/B/B/Concise.pm ext/B/B/Showlex.pm
51551            ! ext/B/B/Terse.pm ext/B/t/OptreeCheck.pm ext/B/t/concise.t
51552            ! ext/B/t/optree_check.t ext/B/t/optree_concise.t
51553            ! ext/B/t/optree_samples.t ext/B/t/optree_sort.t
51554            ! ext/B/t/optree_varinit.t ext/B/t/showlex.t
51555 ____________________________________________________________________________
51556 [ 22819] By: rgs                                   on 2004/05/14  09:38:43
51557         Log: Add new dUNDERBAR and UNDERBAR macros, to help XS writers to
51558              access the $_ variable, even when there is a lexical one in scope.
51559      Branch: perl
51560            ! XSUB.h pod/perlapi.pod
51561 ____________________________________________________________________________
51562 [ 22818] By: nicholas                              on 2004/05/13  12:15:17
51563         Log: Subject: BOM-marked and (BOMless) UTF-16 scripts not working
51564              From: Jarkko Hietaniemi <jhi@iki.fi>
51565              Message-ID: <40A26D75.8080406@iki.fi>
51566              Date: Wed, 12 May 2004 21:31:17 +0300
51567      Branch: perl
51568            + t/comp/utf.t
51569            ! MANIFEST pod/perldiag.pod pod/perlunicode.pod toke.c
51570 ____________________________________________________________________________
51571 [ 22817] By: rgs                                   on 2004/05/12  16:29:07
51572         Log: Subject: [perl #29527] Perl 5.8.4 build problems on LynxOS
51573              From: Olli Savia (via RT) <perlbug-followup@perl.org>
51574              Date: 12 May 2004 13:02:41 -0000
51575              Message-ID: <rt-3.0.9-29527-87290.17.3367022021997@perl.org>
51576      Branch: perl
51577            ! sv.c
51578 ____________________________________________________________________________
51579 [ 22816] By: rgs                                   on 2004/05/12  16:16:50
51580         Log: Make XSLoader update @DynaLoader::dl_shared_objects.
51581      Branch: perl
51582            ! ext/DynaLoader/DynaLoader_pm.PL ext/DynaLoader/XSLoader_pm.PL
51583 ____________________________________________________________________________
51584 [ 22815] By: merijn                                on 2004/05/12  10:43:42
51585         Log: Subject: [PATCH] Configure shouldn't unconditionally add in -pipe
51586              From: Andy Dougherty <doughera@lafayette.edu>
51587              Date: Tue, 11 May 2004 13:14:42 -0400 (EDT)
51588              Message-ID: <Pine.SOL.4.58.0405111313210.14279@maxwell.phys.lafayette.edu>
51589      Branch: perl
51590            ! Configure hints/darwin.sh hints/rhapsody.sh
51591 ____________________________________________________________________________
51592 [ 22812] By: mhx                                   on 2004/05/11  17:42:13
51593         Log: Add the byte-order modifiers '<' and '>' to the pack tutorial.
51594              This completes the series: #22734, #22745, #22754, #22780
51595      Branch: perl
51596            ! pod/perlpacktut.pod
51597 ____________________________________________________________________________
51598 [ 22811] By: mhx                                   on 2004/05/11  17:21:35
51599         Log: 'v' unpacks unsigned shorts.
51600      Branch: perl
51601            ! pod/perlpacktut.pod
51602 ____________________________________________________________________________
51603 [ 22810] By: rgs                                   on 2004/05/11  16:35:49
51604         Log: Subject: various -V: searches [PATCH]
51605              From: Jim Cromie <jcromie@divsol.com>
51606              Date: Tue, 11 May 2004 00:15:46 -0600
51607              Message-ID: <40A06F92.1070607@divsol.com>
51608      Branch: perl
51609            ! configpm lib/Config.t pod/perlrun.pod
51610 ____________________________________________________________________________
51611 [ 22809] By: rgs                                   on 2004/05/11  11:00:31
51612         Log: More pod names in the debugger for the runman command
51613      Branch: perl
51614            ! lib/perl5db.pl
51615 ____________________________________________________________________________
51616 [ 22808] By: rgs                                   on 2004/05/11  10:52:27
51617         Log: Subject: [PATCH] debugger (step backwards)
51618              From: Richard.Foley@t-online.de (Richard Foley)
51619              Date: Tue, 11 May 2004 11:04:11 +0200
51620              Message-Id: <200405111104.11484.richard.foley@rfi.net>
51621      Branch: perl
51622            ! lib/perl5db.pl
51623 ____________________________________________________________________________
51624 [ 22807] By: rgs                                   on 2004/05/11  09:16:56
51625         Log: Subject: void context !~ generates "Useless use of not at line..." warning
51626              From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
51627              Date: Sun, 9 May 2004 00:59:19 -0700
51628              Message-ID: <20040509075919.GA3752@efn.org>
51629      Branch: perl
51630            ! op.c
51631 ____________________________________________________________________________
51632 [ 22806] By: ams                                   on 2004/05/10  22:12:31
51633         Log: Subject: Re: a little extra cmdline help. [PATCH]
51634              From: Jim Cromie <jcromie@divsol.com>
51635              Date: Mon, 10 May 2004 15:25:07 -0600
51636              Message-Id: <409FF333.4020104@divsol.com>
51637      Branch: perl
51638            ! perl.c
51639 ____________________________________________________________________________
51640 [ 22804] By: ams                                   on 2004/05/10  11:10:34
51641         Log: Remove stray '.
51642      Branch: perl
51643            ! lib/File/Copy.pm
51644 ____________________________________________________________________________
51645 [ 22803] By: ams                                   on 2004/05/10  10:14:40
51646         Log: Subject: [PATCH] File::Copy Pod
51647              From: slaven@rezic.de
51648              Date: Mon, 10 May 2004 09:57:37 +0000
51649              Message-Id: <1084183057.10822@devpc01.iconmobile.de>
51650      Branch: perl
51651            ! lib/File/Copy.pm
51652 ____________________________________________________________________________
51653 [ 22802] By: davem                                 on 2004/05/07  19:12:29
51654         Log: symbolic references like ${"foo$index"}*3 would incorrectly warn
51655              that $index was the uninitialized value, when in fact it was $foo1
51656      Branch: perl
51657            ! sv.c t/lib/warnings/9uninit
51658 ____________________________________________________________________________
51659 [ 22801] By: davem                                 on 2004/05/07  18:21:22
51660         Log: Subject:  Re: stdio still supported?
51661              From:  Jim Cromie <jcromie@divsol.com>
51662              Date:  Thu, 06 May 2004 16:37:56 -0600
51663              Message-Id:  <409ABE44.8060307@divsol.com>
51664
51665              Update B::Concise tests to skip stuff requiring the
51666              "open to a scalar" feature of Perlio is it isn't available.
51667              Also note this caveat in perlfunc.pod
51668      Branch: perl
51669            ! ext/B/B/Concise.pm ext/B/t/concise.t ext/B/t/optree_check.t
51670            ! ext/B/t/optree_concise.t ext/B/t/optree_samples.t
51671            ! ext/B/t/optree_sort.t ext/B/t/optree_varinit.t
51672            ! pod/perlfunc.pod
51673 ____________________________________________________________________________
51674 [ 22800] By: mhx                                   on 2004/05/07  16:58:57
51675         Log: Windows issues with select() are already documented in perlport.
51676      Branch: perl
51677            ! pod/perlfunc.pod
51678 ____________________________________________________________________________
51679 [ 22799] By: ams                                   on 2004/05/07  13:38:16
51680         Log: Subject: [perl #29397] Change in pod2man arguments
51681              From: Thorsten Glaser (via RT) <perlbug-followup@perl.org>
51682              Date: 6 May 2004 22:08:10 -0000
51683              Message-Id: <rt-3.0.9-29397-86929.5.37563386041974@perl.org>
51684      Branch: perl
51685            ! pod/pod2man.PL
51686 ____________________________________________________________________________
51687 [ 22798] By: mhx                                   on 2004/05/07  11:42:37
51688         Log: Scalar::Util::refaddr falsely returns false
51689              Add mg_get() to refaddr() when SV is magical.
51690              Fix the non-xs version of looks_like_number().
51691      Branch: perl
51692            ! ext/List/Util/Util.xs ext/List/Util/lib/List/Util.pm
51693            ! ext/List/Util/lib/Scalar/Util.pm ext/List/Util/t/refaddr.t
51694 ____________________________________________________________________________
51695 [ 22797] By: mhx                                   on 2004/05/07  10:57:23
51696         Log: Document that select() on Windows doesn't work on non-socket filehandles.
51697      Branch: perl
51698            ! pod/perlfunc.pod
51699 ____________________________________________________________________________
51700 [ 22796] By: mhx                                   on 2004/05/06  17:19:17
51701         Log: Double warning for int(undef) and abs(undef)
51702              Remove the duplicate warnings and update tests.
51703      Branch: perl
51704            ! pp.c t/lib/warnings/9uninit
51705 ____________________________________________________________________________
51706 [ 22793] By: rgs                                   on 2004/05/06  14:43:08
51707         Log: Add a small script to check whether a perl source tree
51708              (with or without generated files) is friendly with
51709              case-insensitive filesystems.
51710              Adapted from :
51711              Subject: Re: STerm.pl vs Sterm.pl
51712              From: James Mastros <james@mastros.biz>
51713              Date: Thu, 06 May 2004 14:45:53 +0200
51714              Message-ID: <20040506124556.2402.qmail@onion.perl.org>
51715      Branch: perl
51716            + Porting/checkcase.pl
51717            ! MANIFEST
51718 ____________________________________________________________________________
51719 [ 22789] By: rgs                                   on 2004/05/06  12:33:14
51720         Log: Subject: Problem with system() on Win9x and command.com (perl 5.8.x-5.9.x)
51721              From: bilbo@ua.fm
51722              Date: Wed, 28 Apr 2004 00:19:55 +0300
51723              Message-ID: <611491036.20040428001955@ua.fm>
51724      Branch: perl
51725            ! win32/win32.c
51726 ____________________________________________________________________________
51727 [ 22788] By: merijn                                on 2004/05/06  11:35:21
51728         Log: add -pipe to gcc's default flags
51729              it has shown a compile time speed increase of about 40% on
51730              Linux and HP-UX, and also works on cygwin-1.5.9. On failing
51731              OS/gcc combo's remove it in the hints
51732      Branch: perl
51733            ! Configure
51734 ____________________________________________________________________________
51735 [ 22783] By: mhx                                   on 2004/05/05  19:02:28
51736         Log: Add tests for mX?PUSH[inup] macros.
51737
51738              Subject: Re: [PATCH] Document limitations in PUSHi et al macros and add new mPUSHi et al macros
51739              From: Steve Hay <steve.hay@uk.radan.com>
51740              Date: Wed, 05 May 2004 15:34:45 +0100
51741              Message-ID: <4098FB85.1060602@uk.radan.com>
51742      Branch: perl
51743            + ext/XS/APItest/t/push.t
51744            ! MANIFEST ext/XS/APItest/APItest.pm ext/XS/APItest/APItest.xs
51745            ! ext/XS/APItest/MANIFEST
51746 ____________________________________________________________________________
51747 [ 22782] By: rgs                                   on 2004/05/05  16:14:25
51748         Log: Subject: Problem with h2xs
51749              From: David Cannings <lists@edeca.net>
51750              Date: Mon, 3 May 2004 13:44:33 +0100
51751              Message-Id: <200405031344.33723.lists@edeca.net>
51752              (Second patch only)
51753      Branch: perl
51754            ! utils/h2xs.PL
51755 ____________________________________________________________________________
51756 [ 22781] By: davem                                 on 2004/05/04  19:20:36
51757         Log: Bizarre copy of ARRAY
51758              make sure a pad op's flags are updated after optimising away
51759              the assignment in my @a = () (see change 22520).
51760      Branch: perl
51761            ! op.c t/op/my.t
51762 ____________________________________________________________________________
51763 [ 22780] By: mhx                                   on 2004/05/04  14:46:05
51764         Log: Add byte-order group modifiers to (un)pack templates.
51765              Follow-up on: #22734, #22745, #22753, #22754.
51766
51767              Subject: Group modifiers in (un)pack templates
51768              From: Marcus Holland-Moritz <mhx-perl@gmx.net>
51769              Date: Mon, 3 May 2004 20:14:41 +0200
51770              Message-Id: <20040503201441.1b058e0d@r2d2>
51771      Branch: perl
51772            ! perl.h pod/perldiag.pod pod/perlfunc.pod pp_pack.c t/op/pack.t
51773 ____________________________________________________________________________
51774 [ 22779] By: mhx                                   on 2004/05/04  14:30:39
51775         Log: Fix mX?PUSH[inup] macros. (Follow-up to #22756 and #22757)
51776
51777              Subject: Re: [PATCH] Document limitations in PUSHi et al macros and add new mPUSHi et al macros
51778              From: Marcus Holland-Moritz <mhx-perl@gmx.net>
51779              Date: Mon, 3 May 2004 20:03:28 +0200
51780              Message-Id: <20040503200328.24efcda5@r2d2>
51781      Branch: perl
51782            ! pp.h
51783 ____________________________________________________________________________
51784 [ 22778] By: davem                                 on 2004/05/03  21:07:44
51785         Log: add test for change #22746 ([perl #29102] Crash on assign to lex fh)
51786      Branch: perl
51787            ! t/io/open.t
51788 ____________________________________________________________________________
51789 [ 22777] By: davem                                 on 2004/05/03  20:48:53
51790         Log: add test for change #22776 ("open m" crashes Perl)
51791      Branch: perl
51792            ! t/io/open.t
51793 ____________________________________________________________________________
51794 [ 22776] By: davem                                 on 2004/05/03  20:26:22
51795         Log: perl -e "open m" crashes Perl
51796      Branch: perl
51797            ! toke.c
51798 ____________________________________________________________________________
51799 [ 22775] By: davem                                 on 2004/05/03  18:52:39
51800         Log: scalar delete of empty slice returned garbage
51801      Branch: perl
51802            ! pp.c t/op/delete.t
51803 ____________________________________________________________________________
51804 [ 22774] By: davem                                 on 2004/05/03  17:44:44
51805         Log: split could leave an array without &PL_sv_undef
51806              in the unused elements
51807      Branch: perl
51808            ! pp.c t/op/split.t
51809 ____________________________________________________________________________
51810 [ 22773] By: nicholas                              on 2004/05/03  13:59:08
51811         Log: Subject: Re: "fuzzy" in mktables
51812              From: Jarkko Hietaniemi <jhi@iki.fi>
51813              Message-ID: <4093A82B.6040609@iki.fi>
51814              Date: Sat, 01 May 2004 16:37:47 +0300
51815      Branch: perl
51816            ! lib/unicore/mktables
51817 ____________________________________________________________________________
51818 [ 22772] By: davem                                 on 2004/05/03  13:33:21
51819         Log: remove spurious intentation in utf8_pva.pl
51820      Branch: perl
51821            ! lib/utf8_pva.pl
51822 ____________________________________________________________________________
51823 [ 22771] By: davem                                 on 2004/05/03  13:28:24
51824         Log: ensure that utf8 Perl code magically called from a regex localizes $.
51825      Branch: perl
51826            ! lib/utf8_pva.pl
51827 ____________________________________________________________________________
51828 [ 22770] By: nicholas                              on 2004/05/03  11:19:10
51829         Log: Integrate:
51830              [ 22694]
51831              For maint, I don't think that we can have sperl go sulky if invoked
51832              from a #! line. So keep .../sperl functional, and have the /dev/fd/...
51833              only set ID exectuable reside under a different name (suidperl)
51834
51835              [ 22700]
51836              The set uid perl is now called setuidperl. Not suidperl.
51837              Which I discover is hardlinked from sperl by ./installperl
51838              elsewhere. Helpfully confusing installperl script.
51839
51840              [ 22718]
51841              Revert 22700 (as part of changes suggested by Brendan O'Dea)
51842
51843              [ 22719]
51844              Revert 22694
51845
51846              [ 22720]
51847              Simpler suggstion to resolve the #!/usr/bin/suidperl vs. the set uid
51848              binary must have fd script conundrum, as suggested by Brendan O'Dea
51849              Plus restore the more helpful error message from 22694 and the gist
51850              of the perl584delta changes from 22700
51851      Branch: perl
51852           !> INSTALL installperl perl.c pod/perldiag.pod pod/perlsec.pod
51853 ____________________________________________________________________________
51854 [ 22769] By: nicholas                              on 2004/05/03  10:37:45
51855         Log: Subject: [perl #29073] Reference to incorrect method in documentation of
51856              From: "bob@starlabs.net (via RT)" <perlbug-followup@perl.org>
51857              Message-ID: <rt-3.0.8-29073-85903.18.1381766820328@perl.org>
51858              Date: 22 Apr 2004 10:49:22 -0000
51859      Branch: perl
51860            ! lib/Text/ParseWords.pm
51861 ____________________________________________________________________________
51862 [ 22768] By: nicholas                              on 2004/05/02  22:40:18
51863         Log: It seems daft to me that we have a synopis example that will fail if
51864              gcc happened to be invoked via the name cc, and completely ignores
51865              the far more reliable 'gccversion' variable
51866              So here's one using 'usethreads' that ought to work everywhere.
51867      Branch: perl
51868            ! configpm
51869 ____________________________________________________________________________
51870 [ 22765] By: nicholas                              on 2004/05/02  18:18:25
51871         Log: Make t/uni/class.t pass on case insensitive file systems
51872      Branch: perl
51873            ! t/uni/class.t
51874 ____________________________________________________________________________
51875 [ 22764] By: nicholas                              on 2004/05/02  17:57:12
51876         Log: Save some repeated strlen()s in Perl_swash_init
51877      Branch: perl
51878            ! utf8.c
51879 ____________________________________________________________________________
51880 [ 22763] By: nicholas                              on 2004/05/01  14:07:45
51881         Log: And that same fool forgot to add the not-really-needed "fuzzy" versions
51882              of some binary property files
51883      Branch: perl
51884            + lib/unicore/lib/gc_sc/Dash2.pl
51885            + lib/unicore/lib/gc_sc/Hyphen2.pl
51886            + lib/unicore/lib/gc_sc/Radical2.pl
51887 ____________________________________________________________________________
51888 [ 22762] By: nicholas                              on 2004/05/01  14:06:05
51889         Log: Some fool removed lib/unicore/ArabicShaping.txt    in change 22760
51890      Branch: perl
51891            ! MANIFEST
51892 ____________________________________________________________________________
51893 [ 22761] By: nicholas                              on 2004/05/01  14:02:59
51894         Log: Avoid mktables generating Sterm.pl and Sterm.pl in the same directory
51895              by making the %BaseName check global
51896      Branch: perl
51897            + lib/unicore/lib/gc_sc/Sterm2.pl
51898            - lib/unicore/lib/gc_sc/Sterm.pl
51899            ! MANIFEST lib/unicore/Canonical.pl
51900            ! lib/unicore/lib/gc_sc/Dash.pl lib/unicore/lib/gc_sc/Hyphen.pl
51901            ! lib/unicore/lib/gc_sc/Radical.pl lib/unicore/mktables
51902 ____________________________________________________________________________
51903 [ 22760] By: nicholas                              on 2004/05/01  13:17:09
51904         Log: Remove the no-longer autogenerated Unicode files
51905      Branch: perl
51906            - (delete 322 files)
51907            ! MANIFEST
51908 ____________________________________________________________________________
51909 [ 22759] By: nicholas                              on 2004/05/01  11:16:35
51910         Log: mktables requires post 5.005
51911      Branch: perl
51912            ! lib/unicore/mktables
51913 ____________________________________________________________________________
51914 [ 22758] By: davem                                 on 2004/04/30  11:48:55
51915         Log: disable problematical 'uninitialized value' warning tests
51916      Branch: perl
51917            ! t/lib/warnings/9uninit
51918 ____________________________________________________________________________
51919 [ 22757] By: rgs                                   on 2004/04/30  11:32:03
51920         Log: Follow-up to previous patch: the mX?PUSH[inup] macros
51921              should handle 'set' magic, just like the X?PUSH[inup]
51922              counterparts.
51923      Branch: perl
51924            ! pod/perlapi.pod pp.h
51925 ____________________________________________________________________________
51926 [ 22756] By: rgs                                   on 2004/04/30  10:15:00
51927         Log: Subject: [PATCH] Document limitations in PUSHi et al macros and add new mPUSHi et al macros
51928              From: Steve Hay <steve.hay@uk.radan.com>
51929              Date: Fri, 30 Apr 2004 10:07:21 +0100
51930              Message-ID: <40921749.3050600@uk.radan.com>
51931      Branch: perl
51932            ! pod/perlapi.pod pod/perlguts.pod pp.h
51933 ____________________________________________________________________________
51934 [ 22755] By: nicholas                              on 2004/04/29  18:30:18
51935         Log: Fix 29149 - another UTF8 cache bug hit by substr.
51936              Regression test from:
51937
51938              Subject: Re: [perl #29149] substr/UTF8 related problem with perl 5.8.3 on linux
51939              From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
51940              Message-Id: <20040429103926.5BA6.BQW10602@nifty.com>
51941              Date: Thu, 29 Apr 2004 10:53:17 +0900
51942      Branch: perl
51943            ! sv.c t/op/substr.t
51944 ____________________________________________________________________________
51945 [ 22754] By: mhx                                   on 2004/04/29  18:29:28
51946         Log: More unpack cleanups.
51947      Branch: perl
51948            ! pp_pack.c
51949 ____________________________________________________________________________
51950 [ 22753] By: mhx                                   on 2004/04/29  17:50:40
51951         Log: CXUX_BROKEN_CONSTANT_CONVERT isn't used anymore.
51952              Remove all associated code.
51953      Branch: perl
51954            ! hints/cxux.sh pp_pack.c
51955 ____________________________________________________________________________
51956 [ 22752] By: mhx                                   on 2004/04/29  17:38:32
51957         Log: The openbsd 64-bit test should use $uquadtype rather
51958              than hardcoding unsigned long long.
51959      Branch: perl
51960            ! hints/openbsd.sh
51961 ____________________________________________________________________________
51962 [ 22751] By: ams                                   on 2004/04/29  08:24:31
51963         Log: Update to Test.pm 1.25 (from SBURKE).
51964      Branch: perl
51965            + lib/Test/t/05_about_verbose.t lib/Test/t/multiline.t
51966            ! MANIFEST lib/Test.pm
51967 ____________________________________________________________________________
51968 [ 22750] By: mhx                                   on 2004/04/28  20:53:29
51969         Log: When configuring for 64-bit support, check that the
51970              C library functions for casting floating point values
51971              to 64-bit integer values are not broken.
51972      Branch: perl
51973            ! hints/openbsd.sh
51974 ____________________________________________________________________________
51975 [ 22749] By: rgs                                   on 2004/04/28  18:28:07
51976         Log: Fix for [perl #28963]: find2perl was sometimes generating
51977              invalid code.
51978      Branch: perl
51979            ! x2p/find2perl.PL
51980 ____________________________________________________________________________
51981 [ 22748] By: rgs                                   on 2004/04/28  13:01:13
51982         Log: Subject: [PATCH] Add diagnostics section to base.pm
51983              From: "Jos I. Boumans" <kane@dwim.org>
51984              Date: Wed, 28 Apr 2004 13:04:47 +0200
51985              Message-Id: <DC9B4A9C-9903-11D8-BA95-000A956B0E06@dwim.org>
51986      Branch: perl
51987            ! lib/base.pm
51988 ____________________________________________________________________________
51989 [ 22747] By: merijn                                on 2004/04/28  12:42:50
51990         Log: Subject: [perl #29033] typo in description of sleep in documentation of POSIX module
51991              Date: 21 Apr 2004 11:07:22 -0000
51992              From: "bob@starlabs.net (via RT)" <perlbug-followup@perl.org>
51993              Message-ID: <rt-3.0.8-29033-85811.17.0452776199501@perl.org>
51994      Branch: perl
51995            ! ext/POSIX/POSIX.pod
51996 ____________________________________________________________________________
51997 [ 22746] By: davem                                 on 2004/04/27  22:21:35
51998         Log: fix a coredump caused by rv2gv not fully converting a PV to an RV
51999      Branch: perl
52000            ! pp.c
52001 ____________________________________________________________________________
52002 [ 22745] By: mhx                                   on 2004/04/27  20:38:00
52003         Log: Cleanup variables in S_(un)pack_rec().
52004              This also works around a gcc optimizer bug on dec_osf/alpha.
52005      Branch: perl
52006            ! pp_pack.c
52007 ____________________________________________________________________________
52008 [ 22744] By: rgs                                   on 2004/04/27  08:43:38
52009         Log: Subject: [PATCH utf8_heavy.pl, mktables, et. al.] candidate for TR18 compliance
52010              From: Jeff 'japhy' Pinyan <japhy@perlmonk.org>
52011              Date: Thu, 22 Apr 2004 14:31:30 -0400 (EDT)
52012              Message-ID: <Pine.LNX.4.44.0404221429040.10466-101000@perlmonk.org>
52013
52014              Date: Mon, 26 Apr 2004 12:37:21 -0400 (EDT)
52015              Message-ID: <Pine.LNX.4.44.0404261222320.7154-400000@perlmonk.org>
52016      Branch: perl
52017            + (add 406 files)
52018            ! MANIFEST lib/unicore/Canonical.pl
52019            ! lib/unicore/CombiningClass.pl lib/unicore/Decomposition.pl
52020            ! lib/unicore/Exact.pl lib/unicore/Name.pl
52021            ! lib/unicore/Properties lib/unicore/To/Digit.pl
52022            ! lib/unicore/To/Fold.pl lib/unicore/To/Lower.pl
52023            ! lib/unicore/To/Title.pl lib/unicore/To/Upper.pl
52024            ! lib/unicore/mktables lib/utf8_heavy.pl pod/perlunicode.pod
52025            ! t/op/pat.t t/uni/class.t
52026 ____________________________________________________________________________
52027 [ 22743] By: merijn                                on 2004/04/26  22:20:30
52028         Log: usemallocwrap works on AIX, but not with vac-5
52029              Date: Mon, 26 Apr 2004 15:35:23 +0200
52030              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
52031              Subject: Re: Perl 5.8.4 "panic: memory wrap" in miniperl on AIX 5.1
52032              Message-Id: <20040426152951.A6C4.H.M.BRAND@hccnet.nl>
52033      Branch: perl
52034            ! hints/aix.sh hints/aix_4.sh
52035 ____________________________________________________________________________
52036 [ 22742] By: davem                                 on 2004/04/24  12:53:07
52037         Log: fix 64-bit casting error in change 22741 (uninit var warnings)
52038      Branch: perl
52039            ! sv.c
52040 ____________________________________________________________________________
52041 [ 22741] By: davem                                 on 2004/04/23  20:43:02
52042         Log: Include variable names in "Use of uninitialized value" warnings
52043      Branch: perl
52044            + t/lib/warnings/9uninit
52045            ! MANIFEST doio.c embed.fnc embed.h ext/DB_File/DB_File.pm
52046            ! ext/DB_File/t/db-recno.t lib/Math/BigInt.pm
52047            ! lib/Math/BigInt/t/mbimbf.inc lib/Tie/RefHash.t lib/charnames.t
52048            ! mg.c perl.h pod/perldiag.pod pod/perlintern.pod pp.c pp_hot.c
52049            ! proto.h sv.c t/lib/warnings/1global t/lib/warnings/2use
52050            ! t/lib/warnings/3both t/lib/warnings/4lint
52051            ! t/lib/warnings/7fatal t/lib/warnings/doio t/lib/warnings/mg
52052            ! t/lib/warnings/pp t/lib/warnings/pp_ctl t/lib/warnings/pp_hot
52053            ! t/lib/warnings/pp_pack t/lib/warnings/sv t/lib/warnings/util
52054            ! t/run/fresh_perl.t t/run/runenv.t
52055 ____________________________________________________________________________
52056 [ 22739] By: rgs                                   on 2004/04/23  13:32:31
52057         Log: Subject: [PATCH] unfork the debugger (patch for 5.9.x)
52058              From: Richard.Foley@t-online.de (Richard Foley)
52059              Date: Fri, 23 Apr 2004 06:33:34 +0200
52060              Message-Id: <200404230633.34402.richard.foley@rfi.net>
52061      Branch: perl
52062            ! lib/perl5db.pl
52063 ____________________________________________________________________________
52064 [ 22737] By: nicholas                              on 2004/04/23  10:31:20
52065         Log: Ooops. Forgot to update pod.lst, and all that ensues with that
52066      Branch: perl
52067            ! MANIFEST pod.lst pod/perl.pod pod/perltoc.pod
52068            ! vms/descrip_mms.template win32/pod.mak
52069 ____________________________________________________________________________
52070 [ 22736] By: nicholas                              on 2004/04/23  10:11:26
52071         Log: Integrate:
52072              [ 22165]
52073              Create perl584delta.pod
52074              (Not that I'm really proposing to start work on 5.8.4 today)
52075
52076              [ 22650]
52077              Updates from Stas Bekman, Brendan O'Dea and Hugo
52078
52079              [ 22655]
52080              Tweaks from Hugo and Liz
52081
52082              [ 22677]
52083              Improvements from Jarkko
52084
52085              [ 22684]
52086              Integrate:
52087              [ 22665]
52088              AIX-4 with xlc does not like malloc wrap
52089
52090              [ 22666]
52091              Test drives are fun. Implement ccversion for Itanium HP-UX 11.23
52092
52093              [ 22698]
52094              Clarify AIX and win32's malloc wrapping
52095
52096              [ 22700]
52097              The set uid perl is now called setuidperl. Not suidperl.
52098              Which I discover is hardlinked from sperl by ./installperl
52099              elsewhere. Helpfully confusing installperl script.
52100
52101              [ 22703]
52102              More perldelta updates
52103
52104              [ 22710]
52105              Subject:  spelling
52106              From:  Jarkko Hietaniemi <jhi@cc.hut.fi>
52107              Date:  Fri, 16 Apr 2004 21:18:18 +0300 (EEST)
52108              Message-Id:  <200404161818.i3GIIILh391648@kosh.hut.fi>
52109
52110              [ 22718]
52111              Revert 22700 (as part of changes suggested by Brendan O'Dea)
52112
52113              [ 22720]
52114              Simpler suggstion to resolve the #!/usr/bin/suidperl vs. the set uid
52115              binary must have fd script conundrum, as suggested by Brendan O'Dea
52116              Plus restore the more helpful error message from 22694 and the gist
52117              of the perl584delta changes from 22700
52118
52119              [ 22731]
52120              Oink, oink, flap, flap!
52121      Branch: perl
52122           +> pod/perl584delta.pod
52123            ! MANIFEST
52124           !> pod/perlhist.pod
52125 ____________________________________________________________________________
52126 [ 22735] By: merijn                                on 2004/04/23  10:11:23
52127         Log: Subject: [PATCH] Where to find nmake for windows
52128              From: Abe Timmerman <abe@ztreet.demon.nl>
52129              Date: Thu, 22 Apr 2004 23:57:40 +0200
52130              Message-Id: <200404222357.40508.abe@ztreet.demon.nl>
52131              Changed download URL references for nmake
52132      Branch: perl
52133            ! README.win32 pod/perlmodinstall.pod
52134 ____________________________________________________________________________
52135 [ 22734] By: mhx                                   on 2004/04/23  04:07:25
52136         Log: Subject: [PATCH for testing/review] byte-order modifiers for (un)pack templates
52137              From: Marcus Holland-Moritz <mhx-perl@gmx.net>
52138              Date: Wed, 21 Apr 2004 21:09:20 +0200
52139              Message-Id: <20040421210920.3c467772@r2d2>
52140      Branch: perl
52141            ! embed.fnc embed.h perl.h pod/perldiag.pod pod/perlfunc.pod
52142            ! pod/perlport.pod pp_pack.c proto.h t/op/pack.t util.c
52143 ____________________________________________________________________________
52144 [ 22733] By: rgs                                   on 2004/04/22  12:08:35
52145         Log: Missing copyright in the README.
52146      Branch: perl
52147            ! README
52148 ____________________________________________________________________________
52149 [ 22727] By: nicholas                              on 2004/04/21  15:22:29
52150         Log: Subject: [perl #28456] Typo in perlipc man page, and suggestions for same
52151              From: Axel Boldt (via RT) <perlbug-followup@perl.org>
52152              Message-ID: <rt-3.0.8-28456-84424.10.5222745276547@perl.org>
52153              Date: 11 Apr 2004 13:08:17 -0000
52154      Branch: perl
52155            ! pod/perlipc.pod
52156 ____________________________________________________________________________
52157 [ 22725] By: nicholas                              on 2004/04/21  14:21:57
52158         Log: Punt the "reporting bugs" section to the top.
52159              Reorder the description of what to do, to start with the most common
52160              case.
52161              Clarify "how to report bugs effectively" (and why it benefits you)
52162      Branch: perl
52163            ! INSTALL
52164 ____________________________________________________________________________
52165 [ 22724] By: nicholas                              on 2004/04/21  12:51:43
52166         Log: This should be L<>
52167      Branch: perl
52168            ! INSTALL
52169 ____________________________________________________________________________
52170 [ 22723] By: nicholas                              on 2004/04/21  09:42:35
52171         Log: INSTALL didn't mention the 5.8.2 hash changes. Fixed
52172      Branch: perl
52173            ! INSTALL
52174 ____________________________________________________________________________
52175 [ 22722] By: nicholas                              on 2004/04/21  09:25:34
52176         Log: We should be telling people about ..exp, else they use the unexpanded
52177              forms and shaft anyone who installs a private perl within ~
52178      Branch: perl
52179            ! INSTALL
52180 ____________________________________________________________________________
52181 [ 22721] By: rgs                                   on 2004/04/21  08:36:38
52182         Log: Subject: [patch] log the interpreter id in warnings
52183              From: Stas Bekman <stas@stason.org>
52184              Date: Mon, 19 Apr 2004 18:10:01 -0700
52185              Message-ID: <40847869.1000906@stason.org>
52186      Branch: perl
52187            ! gv.c handy.h hv.c perl.c sv.c
52188 ____________________________________________________________________________
52189 [ 22717] By: rgs                                   on 2004/04/20  12:27:18
52190         Log: Subject: [PATCH] Sync Term::Cap with CPAN version
52191              From: Jonathan Stowe <jns@gellyfish.com>
52192              Date: Tue, 20 Apr 2004 12:37:28 +0100
52193              Message-Id: <1082461047.2736.96.camel@localhost>
52194      Branch: perl
52195            ! lib/Term/Cap.pm
52196 ____________________________________________________________________________
52197 [ 22716] By: rgs                                   on 2004/04/19  12:26:35
52198         Log: Fix for [perl #28919] : sometimes the function ck_ftst was trying
52199              to read an op that was just freed, which was obviously illegal.
52200      Branch: perl
52201            ! op.c
52202 ____________________________________________________________________________
52203 [ 22715] By: rgs                                   on 2004/04/19  09:34:01
52204         Log: Upgrade to FileCache 1.04.
52205      Branch: perl
52206            ! lib/FileCache.pm
52207 ____________________________________________________________________________
52208 [ 22714] By: rgs                                   on 2004/04/19  08:57:17
52209         Log: New file left out of the last commit.
52210      Branch: perl
52211            + t/uni/class.t
52212 ____________________________________________________________________________
52213 [ 22713] By: rgs                                   on 2004/04/19  08:56:28
52214         Log: Subject: Re: [PATCH] lib/utf8_heavy.pl -- cascading classes and '&' support
52215              From: "Jeff 'japhy' Pinyan" <japhy@perlmonk.org>
52216              Date: Wed, 14 Apr 2004 17:01:38 -0400 (EDT)
52217              Message-ID: <Pine.LNX.4.44.0404141659480.11423-301000@perlmonk.org>
52218      Branch: perl
52219            ! MANIFEST pod/perlunicode.pod
52220 ____________________________________________________________________________
52221 [ 22712] By: rgs                                   on 2004/04/19  08:30:20
52222         Log: Subject: Re: [perl #28532] optional match of an anchor gets ignored
52223              From: hv@crypt.org
52224              Date: Wed, 14 Apr 2004 19:30:46 +0100
52225              Message-Id: <200404141830.i3EIUko03728@zen.crypt.org>
52226      Branch: perl
52227            ! regcomp.c regexec.c t/op/pat.t
52228 ____________________________________________________________________________
52229 [ 22708] By: nicholas                              on 2004/04/17  13:25:41
52230         Log: Integrate:
52231              [ 22661]
52232              This is RC1
52233
52234              [ 22705]
52235              This is RC2
52236      Branch: perl
52237           !> pod/perlhist.pod
52238 ____________________________________________________________________________
52239 [ 22706] By: rgs                                   on 2004/04/16  15:53:37
52240         Log: On Linux-PPC, using gcc, downgrade to the -O1 optimisation
52241              level (with -O2 miniperl behaves really badly.)
52242      Branch: perl
52243            ! hints/linux.sh
52244 ____________________________________________________________________________
52245 [ 22697] By: merijn                                on 2004/04/15  11:56:32
52246         Log: d_getservbyname_r undef up to at least OpenBSD 3.5
52247              Thanks to Campo Weijerman and Gerard Gerritsen off-list
52248      Branch: perl
52249            ! hints/openbsd.sh
52250 ____________________________________________________________________________
52251 [ 22696] By: merijn                                on 2004/04/14  16:04:40
52252         Log: #24121: Configure under turkish locale fails
52253              toupper (i) != I  in turkish, but U+0130
52254              \N{LATIN CAPITAL LETTER I WITH DOT ABOVE}
52255              Patch supplied by Rafael
52256      Branch: perl
52257            ! Configure
52258 ____________________________________________________________________________
52259 [ 22693] By: rgs                                   on 2004/04/14  08:28:15
52260         Log: Subject: [PATCH] lib/utf8_heavy.pl -- cascading classes and '&' support
52261              From: Jeff 'japhy' Pinyan <japhy@perlmonk.org>
52262              Date: Mon, 12 Apr 2004 20:24:48 -0400 (EDT)
52263              Message-ID: <Pine.LNX.4.44.0404122011160.3038-200000@perlmonk.org>
52264      Branch: perl
52265            ! lib/utf8_heavy.pl
52266 ____________________________________________________________________________
52267 [ 22692] By: rgs                                   on 2004/04/14  07:26:04
52268         Log: Subject: [PATCH]'s to bring bleadperl up to version-0.39
52269              From: John Peacock <jpeacock@rowman.com>
52270              Date: Tue, 13 Apr 2004 20:51:31 -0400
52271              Message-ID: <407C8B13.9020104@rowman.com>
52272      Branch: perl
52273            ! lib/version.pm lib/version.t t/comp/use.t universal.c util.c
52274 ____________________________________________________________________________
52275 [ 22691] By: rgs                                   on 2004/04/14  07:08:52
52276         Log: Subject: re: [PATCH] for bug 28525: Buffer overflow issue in the Win32 distribution of 5.8.3
52277              From: Jan Dubois <jand@ActiveState.com>
52278              Date: Tue, 13 Apr 2004 19:49:32 -0700
52279              Message-ID: <vm7p70h7au8unrnq4jp85oich7n71ar5ab@4ax.com
52280      Branch: perl
52281            ! win32/win32.c
52282 ____________________________________________________________________________
52283 [ 22689] By: mhx                                   on 2004/04/12  06:53:24
52284         Log: Borland C doesn't like PERL_MALLOC_WRAP.
52285              Until I know why, the fix is to disable it.
52286      Branch: perl
52287            ! win32/config_H.bc
52288 ____________________________________________________________________________
52289 [ 22688] By: davem                                 on 2004/04/11  14:27:26
52290         Log: Stop PL_comppad pointing to a freed pad during global destruction
52291      Branch: perl
52292            ! sv.c
52293 ____________________________________________________________________________
52294 [ 22687] By: davem                                 on 2004/04/11  13:13:35
52295         Log: Make global cleanup fractionally faster by giving S_visit()
52296              flags/mask to compare SVs against.
52297      Branch: perl
52298            ! embed.fnc embed.h proto.h sv.c
52299 ____________________________________________________________________________
52300 [ 22686] By: gbarr                                 on 2004/04/10  08:08:42
52301         Log: Sync with libnet 1.18
52302      Branch: perl
52303            + lib/Net/Changes.libnet lib/Net/t/datasend.t
52304            - lib/Net/ChangeLog.libnet
52305            ! MANIFEST lib/Net/Cmd.pm lib/Net/FTP.pm lib/Net/NNTP.pm
52306            ! lib/Net/POP3.pm lib/Net/README.libnet lib/Net/SMTP.pm
52307            ! lib/Net/Time.pm lib/Net/t/hostname.t
52308 ____________________________________________________________________________
52309 [ 22685] By: mhx                                   on 2004/04/10  06:37:30
52310         Log: Remove two unused variables that gcc used to warn about.
52311      Branch: perl
52312            ! util.c
52313 ____________________________________________________________________________
52314 [ 22682] By: rgs                                   on 2004/04/09  11:44:34
52315         Log: Subject: Re: #28386: UNIVERSAL::VERSION segfaults if $VERSION not defined (w/ patch to fix universal.c)
52316              From: David Dyck <david.dyck@fluke.com>
52317              Date: Thu, 8 Apr 2004 19:02:26 -0700 (PDT)
52318              Message-ID: <Pine.LNX.4.51.0404081843290.29618@dd.tc.fluke.com>
52319      Branch: perl
52320            ! universal.c
52321 ____________________________________________________________________________
52322 [ 22681] By: rgs                                   on 2004/04/09  07:04:48
52323         Log: find2perl should not default to -print when -eval is specified.
52324              Noticed by David Dyck.
52325      Branch: perl
52326            ! x2p/find2perl.PL
52327 ____________________________________________________________________________
52328 [ 22680] By: rgs                                   on 2004/04/09  06:58:51
52329         Log: Upgrade to Time::HiRes 1.59.
52330      Branch: perl
52331            ! ext/Time/HiRes/Changes ext/Time/HiRes/HiRes.pm
52332            ! ext/Time/HiRes/HiRes.xs
52333 ____________________________________________________________________________
52334 [ 22675] By: rgs                                   on 2004/04/08  13:00:59
52335         Log: Upgrade to Digest 1.06.
52336      Branch: perl
52337            ! lib/Digest.pm
52338 ____________________________________________________________________________
52339 [ 22674] By: rgs                                   on 2004/04/08  12:57:48
52340         Log: Upgrade to Digest 1.06.
52341      Branch: perl
52342            ! lib/Digest.pm
52343 ____________________________________________________________________________
52344 [ 22673] By: rgs                                   on 2004/04/08  09:59:22
52345         Log: Upgrade to Time::HiRes 1.57.
52346      Branch: perl
52347            ! ext/Time/HiRes/Changes ext/Time/HiRes/HiRes.pm
52348            ! ext/Time/HiRes/HiRes.xs
52349 ____________________________________________________________________________
52350 [ 22672] By: nicholas                              on 2004/04/07  20:48:04
52351         Log: Make gmtime and localtime cross reference each other.
52352              Suggested by Dan Jacobson
52353      Branch: perl
52354            ! pod/perlfunc.pod
52355 ____________________________________________________________________________
52356 [ 22671] By: merijn                                on 2004/04/07  17:54:10
52357         Log: Integrated Time-Local-1.09 from Dave Rolsky
52358              Corrected a wrap error from the CPAN version to match #22670
52359              Tested on AIX to make sure the skip is still needed
52360      Branch: perl
52361            ! lib/Time/Local.pm lib/Time/Local.t
52362 ____________________________________________________________________________
52363 [ 22670] By: merijn                                on 2004/04/07  12:03:11
52364         Log: Disable the edge case tests for timegm and timelocal on
52365              AIX-4.3 since the OS is obsoleted, and fixes are not to
52366              be expected
52367      Branch: perl
52368            ! lib/Time/Local.t
52369 ____________________________________________________________________________
52370 [ 22669] By: rgs                                   on 2004/04/07  08:26:48
52371         Log: Fix command-line quoting under Windows for the new optree tests
52372              Subject: Re: Smoke [5.9.2] 22666 FAIL(F) MSWin32 WinXP/.Net SP1 (x86/1 cpu)
52373              From: Steve Hay <steve.hay@uk.radan.com>
52374              Date: Wed, 07 Apr 2004 09:46:01 +0100
52375              Message-ID: <4073BFC9.10707@uk.radan.com>
52376      Branch: perl
52377            ! ext/B/t/optree_samples.t
52378 ____________________________________________________________________________
52379 [ 22668] By: rgs                                   on 2004/04/07  08:00:07
52380         Log: Subject: [PATCH] Bleadperl to version 0.37
52381              From: John Peacock <jpeacock@rowman.com>
52382              Date: Tue, 06 Apr 2004 21:56:19 -0400
52383              Message-ID: <40735FC3.5010305@rowman.com>
52384      Branch: perl
52385            ! embed.fnc embed.h global.sym lib/version.pm lib/version.t
52386            ! pod/perlapi.pod proto.h t/comp/use.t t/op/universal.t
52387            ! universal.c util.c
52388 ____________________________________________________________________________
52389 [ 22667] By: rgs                                   on 2004/04/07  07:37:59
52390         Log: The optree builder was looping when constructing the ops
52391              for a map/grep block containing a while(1).
52392              (Bug reported by Pixel.)
52393      Branch: perl
52394            ! op.c t/op/grep.t
52395 ____________________________________________________________________________
52396 [ 22666] By: merijn                                on 2004/04/06  14:44:29
52397         Log: Test drives are fun. Implement ccversion for Itanium HP-UX 11.23
52398      Branch: perl
52399            ! hints/hpux.sh
52400 ____________________________________________________________________________
52401 [ 22665] By: merijn                                on 2004/04/06  13:34:14
52402         Log: AIX-4 with xlc does not like malloc wrap
52403      Branch: perl
52404            ! hints/aix_4.sh
52405 ____________________________________________________________________________
52406 [ 22664] By: rgs                                   on 2004/04/06  07:29:30
52407         Log: Subject: Re: tests for change #22539
52408              From: Jim Cromie <jcromie@divsol.com>
52409              Date: Tue, 30 Mar 2004 14:39:31 -0700
52410              Message-ID: <4069E913.5040906@divsol.com>
52411              (with some spelling tweaks)
52412      Branch: perl
52413            + ext/B/t/OptreeCheck.pm ext/B/t/optree_check.t
52414            + ext/B/t/optree_concise.t ext/B/t/optree_samples.t
52415            + ext/B/t/optree_sort.t ext/B/t/optree_varinit.t
52416            ! MANIFEST ext/B/B/Concise.pm ext/B/t/concise.t t/test.pl
52417 ____________________________________________________________________________
52418 [ 22663] By: mhx                                   on 2004/04/06  03:40:10
52419         Log: Make the ! suffix handle n/N/v/V as signed integers
52420              within pack templates.
52421      Branch: perl
52422            ! pod/perlfunc.pod pp_pack.c t/op/pack.t
52423 ____________________________________________________________________________
52424 [ 22662] By: mhx                                   on 2004/04/05  20:03:03
52425         Log: C<undef> doesn't look like a number. See also:
52426
52427              Subject: Re: [perl #27606] undef "looks like" a number
52428              From: Marcus Holland-Moritz <mhx-perl@gmx.net>
52429              Date: Mon, 15 Mar 2004 22:16:26 +0100
52430              Message-Id: <20040315221626.48061c67@r2d2>
52431      Branch: perl
52432            ! ext/List/Util/lib/List/Util.pm
52433            ! ext/List/Util/lib/Scalar/Util.pm ext/List/Util/t/lln.t
52434            ! pp_ctl.c sv.c
52435 ____________________________________________________________________________
52436 [ 22656] By: nicholas                              on 2004/04/05  15:55:18
52437         Log: Subject: Re: perldelta584
52438              From: Craig Berry <craigberry@mac.com>
52439              Message-ID: <12587569.1081180932766.JavaMail.craigberry@mac.com>
52440              Date: Mon, 05 Apr 2004 11:02:12 -0500
52441
52442              (makes malloc wrap the default on VMS)
52443      Branch: perl
52444            ! configure.com
52445 ____________________________________________________________________________
52446 [ 22654] By: rgs                                   on 2004/04/05  15:24:49
52447         Log: Subject: ref ($proto) || $proto patch
52448              From: Ovid <publiustemp-p5p@yahoo.com>
52449              Date: Sat, 03 Apr 2004 18:59:22 -0800
52450              Message-ID: <406F7A0A.50702@yahoo.com>
52451              (with minor reformatting)
52452      Branch: perl
52453            ! pod/perlobj.pod pod/perltoot.pod
52454 ____________________________________________________________________________
52455 [ 22652] By: rgs                                   on 2004/04/05  12:51:10
52456         Log: Subject: sv_pvutf8n_force and sv_pvbyten_force
52457              From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
52458              Date: Wed, 24 Mar 2004 00:16:52 +0900
52459              Message-Id: <20040324001126.098F.BQW10602@nifty.com>
52460      Branch: perl
52461            ! sv.c
52462 ____________________________________________________________________________
52463 [ 22651] By: rgs                                   on 2004/04/05  11:50:10
52464         Log: wantarray docs should mention effect of eval { wantarray }
52465              as reported by Tim Bunce. Add a note to this effect in perlfunc,
52466              and regression tests for it.
52467      Branch: perl
52468            ! pod/perlfunc.pod t/op/wantarray.t
52469 ____________________________________________________________________________
52470 [ 22649] By: nicholas                              on 2004/04/05  08:57:18
52471         Log: More AUTHORS who deserve credit for patches
52472      Branch: perl
52473            ! AUTHORS
52474 ____________________________________________________________________________
52475 [ 22646] By: nicholas                              on 2004/04/04  16:32:54
52476         Log: Hand merge patch from maint back to blead.
52477      Branch: perl
52478            ! ext/threads/threads.pm
52479 ____________________________________________________________________________
52480 [ 22642] By: nicholas                              on 2004/04/04  13:07:50
52481         Log: Bump version numbers for modules that have changed since 5.8.3
52482      Branch: perl
52483            ! ext/B/B/Assembler.pm ext/B/B/Deparse.pm
52484            ! ext/DynaLoader/DynaLoader_pm.PL ext/IO/lib/IO/Handle.pm
52485            ! ext/IO/lib/IO/Pipe.pm ext/ODBM_File/ODBM_File.pm
52486            ! ext/threads/threads.pm lib/ExtUtils/Liblist/Kid.pm
52487            ! lib/ExtUtils/MM_NW5.pm lib/ExtUtils/MM_Win95.pm
52488            ! lib/IPC/Open3.pm lib/Unicode/UCD.pm lib/base.pm lib/utf8.pm
52489 ____________________________________________________________________________
52490 [ 22641] By: rgs                                   on 2004/04/02  15:40:15
52491         Log: Fix bug #27940 : \cX escapes weren't working correctly in regular
52492              expression ranges.
52493      Branch: perl
52494            ! t/op/pat.t toke.c
52495 ____________________________________________________________________________
52496 [ 22637] By: davem                                 on 2004/04/02  10:02:06
52497         Log: Subject:  [PATCH] fix utils install problems on VMS
52498              From:  "Craig A. Berry" <craigberry@mac.com>
52499              Date:  Thu, 01 Apr 2004 20:19:53 -0600
52500              Message-Id:  <406CCDC9.7000500@mac.com>
52501
52502              We were not running utils/instmodsh.PL or utils/xsubpp.PL during
52503              the build, so installperl would not find the generated programs at
52504              install time.
52505              Also fixed several problems with the command definitions for the
52506              utilities
52507      Branch: perl
52508            ! configure.com vms/descrip_mms.template
52509 ____________________________________________________________________________
52510 [ 22636] By: davem                                 on 2004/04/01  22:00:40
52511         Log: Subject:  [PATCH] archname salad on VMS
52512              From:  "Craig A. Berry" <craigberry@mac.com>
52513              Date:  Thu, 01 Apr 2004 14:16:32 -0600
52514              Message-Id:  <406C78A0.2070009@mac.com>
52515
52516              sort out architecture-specific directory names for OpenVMS
52517              Itanium port
52518      Branch: perl
52519            ! configure.com vms/descrip_mms.template
52520 ____________________________________________________________________________
52521 [ 22635] By: davem                                 on 2004/04/01  20:27:14
52522         Log: Fix change #22376. Only mark a const as short-circuited
52523              if it's actually a const!
52524      Branch: perl
52525            ! op.c
52526 ____________________________________________________________________________
52527 [ 22630] By: nicholas                              on 2004/04/01  15:15:10
52528         Log: debug the instructions on upgrading Unicode
52529      Branch: perl
52530            ! lib/unicore/README.perl
52531 ____________________________________________________________________________
52532 [ 22625] By: mhx                                   on 2004/04/01  06:01:25
52533         Log: Fix and tests for [perl #28123] Perl optimizes // away incorrectly
52534      Branch: perl
52535            ! op.c t/op/dor.t
52536 ____________________________________________________________________________
52537 [ 22624] By: davem                                 on 2004/03/31  20:33:52
52538         Log: + (\$) prototype = bad free
52539              av_delete() didn't reify. I also updated its description
52540      Branch: perl
52541            ! av.c t/op/args.t
52542 ____________________________________________________________________________
52543 [ 22621] By: nicholas                              on 2004/03/31  15:05:40
52544         Log: Upgrade to Unicode 4.0.1
52545      Branch: perl
52546            + lib/unicore/lib/Katakan2.pl lib/unicore/lib/Sterm.pl
52547            + lib/unicore/lib/Variatio.pl
52548            ! MANIFEST lib/Unicode/UCD.t lib/unicore/ArabLink.pl
52549            ! lib/unicore/ArabLnkGrp.pl lib/unicore/ArabicShaping.txt
52550            ! lib/unicore/Bidirectional.pl lib/unicore/Blocks.pl
52551            ! lib/unicore/Blocks.txt lib/unicore/Canonical.pl
52552            ! lib/unicore/CaseFolding.txt lib/unicore/Category.pl
52553            ! lib/unicore/HangulSyllableType.txt lib/unicore/Index.txt
52554            ! lib/unicore/Jamo.txt lib/unicore/Lbrk.pl
52555            ! lib/unicore/LineBreak.txt lib/unicore/PropList.txt
52556            ! lib/unicore/PropValueAliases.txt lib/unicore/Properties
52557            ! lib/unicore/PropertyAliases.txt lib/unicore/ReadMe.txt
52558            ! lib/unicore/Scripts.pl lib/unicore/Scripts.txt
52559            ! lib/unicore/SpecialCasing.txt lib/unicore/To/Digit.pl
52560            ! lib/unicore/UnicodeData.txt lib/unicore/lib/Arabic.pl
52561            ! lib/unicore/lib/Armenian.pl lib/unicore/lib/Bengali.pl
52562            ! lib/unicore/lib/BidiBN.pl lib/unicore/lib/BidiCS.pl
52563            ! lib/unicore/lib/BidiEN.pl lib/unicore/lib/BidiES.pl
52564            ! lib/unicore/lib/BidiET.pl lib/unicore/lib/BidiL.pl
52565            ! lib/unicore/lib/BidiON.pl lib/unicore/lib/Bopomofo.pl
52566            ! lib/unicore/lib/Braille.pl lib/unicore/lib/Buhid.pl
52567            ! lib/unicore/lib/C.pl lib/unicore/lib/Canadian.pl
52568            ! lib/unicore/lib/Cf.pl lib/unicore/lib/Cherokee.pl
52569            ! lib/unicore/lib/Cntrl.pl lib/unicore/lib/Common.pl
52570            ! lib/unicore/lib/Cypriot.pl lib/unicore/lib/Cyrillic.pl
52571            ! lib/unicore/lib/Deseret.pl lib/unicore/lib/Devanaga.pl
52572            ! lib/unicore/lib/Ethiopic.pl lib/unicore/lib/Georgian.pl
52573            ! lib/unicore/lib/Gothic.pl lib/unicore/lib/Greek.pl
52574            ! lib/unicore/lib/Gujarati.pl lib/unicore/lib/Gurmukhi.pl
52575            ! lib/unicore/lib/Han.pl lib/unicore/lib/Hangul.pl
52576            ! lib/unicore/lib/Hanunoo.pl lib/unicore/lib/Hebrew.pl
52577            ! lib/unicore/lib/Hiragana.pl lib/unicore/lib/InCyril2.pl
52578            ! lib/unicore/lib/Inherite.pl lib/unicore/lib/Kannada.pl
52579            ! lib/unicore/lib/Katakana.pl lib/unicore/lib/Khmer.pl
52580            ! lib/unicore/lib/Lao.pl lib/unicore/lib/Latin.pl
52581            ! lib/unicore/lib/Limbu.pl lib/unicore/lib/LinearB.pl
52582            ! lib/unicore/lib/Malayala.pl lib/unicore/lib/Math.pl
52583            ! lib/unicore/lib/Mongolia.pl lib/unicore/lib/Myanmar.pl
52584            ! lib/unicore/lib/Ogham.pl lib/unicore/lib/OldItali.pl
52585            ! lib/unicore/lib/Oriya.pl lib/unicore/lib/Osmanya.pl
52586            ! lib/unicore/lib/OtherDef.pl lib/unicore/lib/OtherGra.pl
52587            ! lib/unicore/lib/OtherMat.pl lib/unicore/lib/Runic.pl
52588            ! lib/unicore/lib/Shavian.pl lib/unicore/lib/Sinhala.pl
52589            ! lib/unicore/lib/SoftDott.pl lib/unicore/lib/Syriac.pl
52590            ! lib/unicore/lib/Tagalog.pl lib/unicore/lib/Tagbanwa.pl
52591            ! lib/unicore/lib/TaiLe.pl lib/unicore/lib/Tamil.pl
52592            ! lib/unicore/lib/Telugu.pl lib/unicore/lib/Terminal.pl
52593            ! lib/unicore/lib/Thaana.pl lib/unicore/lib/Thai.pl
52594            ! lib/unicore/lib/Tibetan.pl lib/unicore/lib/Ugaritic.pl
52595            ! lib/unicore/lib/Yi.pl lib/unicore/lib/Z.pl
52596            ! lib/unicore/lib/Zs.pl lib/unicore/version t/op/pat.t
52597 ____________________________________________________________________________
52598 [ 22619] By: merijn                                on 2004/03/31  13:02:32
52599         Log: Regenerated Configure after backported #22571
52600              Some indent leftovers from earlier patches
52601              We don't like double negatives, not even in comment
52602      Branch: perl
52603            ! Configure
52604 ____________________________________________________________________________
52605 [ 22617] By: merijn                                on 2004/03/31  11:33:09
52606         Log: Subject: Re: [PATCH] MIME::Base64 PERL_NO_GET_CONTEXT
52607              From: Gisle Aas <gisle@ActiveState.com>
52608              Date: 30 Mar 2004 04:29:18 -0800
52609              Message-ID: <lrk712bjs1.fsf@caliper.activestate.com>
52610      Branch: perl
52611            ! ext/MIME/Base64/Base64.pm ext/MIME/Base64/Base64.xs
52612            ! ext/MIME/Base64/Changes ext/MIME/Base64/QuotedPrint.pm
52613 ____________________________________________________________________________
52614 [ 22615] By: nicholas                              on 2004/03/31  08:24:29
52615         Log: Unknowingly for years we've had a test that has assumed the order
52616              of results from readdir. Fixed.
52617      Branch: perl
52618            ! lib/File/Find/t/find.t
52619 ____________________________________________________________________________
52620 [ 22614] By: nicholas                              on 2004/03/30  21:50:15
52621         Log: Subject: Zaurus SL-[78]60 native compile patch
52622              Message-Id: <46DCC0BF-8199-11D8-8D5B-000A95DBB50A@dan.co.jp>
52623              From: Dan Kogai <dankogai@dan.co.jp>
52624              Date: Tue, 30 Mar 2004 00:53:52 +0900
52625      Branch: perl
52626            ! ext/Errno/Errno_pm.PL
52627 ____________________________________________________________________________
52628 [ 22610] By: davem                                 on 2004/03/29  21:20:35
52629         Log: various win32 build fixes
52630
52631              Subject: Re: [PATCH] Re: MinGW/GCC vs MSVC++ on Win32
52632              From: Steve Hay <steve.hay@uk.radan.com>
52633              Date: Tue, 23 Mar 2004 10:42:12 +0000
52634              Message-ID: <40601484.7040905@uk.radan.com>
52635
52636              Subject: [PATCH] distclean on Win32 should delete perl.base
52637              From: Steve Hay <steve.hay@uk.radan.com>
52638              Date: Tue, 23 Mar 2004 11:35:56 +0000
52639              Message-ID: <4060211C.8020704@uk.radan.com>
52640
52641              Subject: Re: [PATCH] Create debug symbols files on Windows even for release
52642              From: Steve Hay <steve.hay@uk.radan.com>
52643              Date: Fri, 26 Mar 2004 10:46:07 +0000
52644              Message-ID: <406409EF.9020404@uk.radan.com>
52645      Branch: perl
52646            ! win32/Makefile win32/makefile.mk
52647 ____________________________________________________________________________
52648 [ 22609] By: davem                                 on 2004/03/29  20:46:36
52649         Log: Subject: [perl #27986] IPC::Open3 fails in mod_perl (tie bug)
52650              From: "Benjamin J. Tilly" (via RT) <perlbug-followup@perl.org>
52651              Date: 26 Mar 2004 21:02:19 -0000
52652              Message-ID: <rt-3.0.8-27986-82842.3.55447645581215@perl.org>
52653
52654              The forked child should make sure STDIN and STDOUT aren't tied
52655              before messing with them
52656      Branch: perl
52657            ! lib/IPC/Open3.pm
52658 ____________________________________________________________________________
52659 [ 22608] By: davem                                 on 2004/03/29  20:10:05
52660         Log: backout change 22606 (make gv_fullname() include a literal '^')
52661              it breaks select.
52662      Branch: perl
52663            ! gv.c t/op/gv.t
52664 ____________________________________________________________________________
52665 [ 22607] By: davem                                 on 2004/03/28  15:10:48
52666         Log: update -Dx to cope with lexical version of OP_AELEMFAST
52667      Branch: perl
52668            ! dump.c
52669 ____________________________________________________________________________
52670 [ 22606] By: davem                                 on 2004/03/28  15:08:23
52671         Log: make gv_fullname() etc include a literal '^' for *^FOO style names
52672      Branch: perl
52673            ! gv.c t/op/gv.t
52674 ____________________________________________________________________________
52675 [ 22605] By: davem                                 on 2004/03/28  13:11:30
52676         Log: pv_display() had code to display \n etc as escapes but it didn't
52677              actually work.
52678      Branch: perl
52679            ! dump.c
52680 ____________________________________________________________________________
52681 [ 22604] By: davem                                 on 2004/03/28  10:55:30
52682         Log: fix typo in change 22597
52683      Branch: perl
52684            ! op.h
52685 ____________________________________________________________________________
52686 [ 22601] By: davem                                 on 2004/03/27  10:22:52
52687         Log: Subject:  [PATCH] -Dusemallocwrap for VMS)
52688              From:  "Craig A. Berry" <craigberry@mac.com>
52689              Date:  Fri, 26 Mar 2004 22:46:50 -0600
52690              Message-Id:  <4065073A.30007@mac.com>
52691
52692              Mimic in configure.com what Configure does to enable or disable
52693              the new feature -Dusemallocwrap
52694      Branch: perl
52695            ! configure.com
52696 ____________________________________________________________________________
52697 [ 22600] By: davem                                 on 2004/03/27  02:04:03
52698         Log: Subject:  [PATCH] don't clean-up perly.* on VMS
52699              From:  "Craig A. Berry" <craigberry@mac.com>
52700              Date:  Fri, 26 Mar 2004 16:54:44 -0600
52701              Message-Id:  <4064B4B4.2030203@mac.com>
52702
52703              refrain from getting rid of perly.c and perly.h now that there are
52704              no longer VMS-specific overrides for these files
52705      Branch: perl
52706            ! vms/descrip_mms.template
52707 ____________________________________________________________________________
52708 [ 22599] By: davem                                 on 2004/03/27  01:54:09
52709         Log: string corruption with lvalue sub
52710              Depending on the context, the same substr OP may want to return
52711              a PVLV or an LV on subsequent invcations. If TARG is the wrong
52712              type, use a mortal instead.
52713      Branch: perl
52714            ! pp.c t/op/substr.t
52715 ____________________________________________________________________________
52716 [ 22597] By: davem                                 on 2004/03/26  18:56:50
52717         Log: Clarify op.h comments for which ops the OPpDEREF* private flags
52718              are actually used; update Concise.pm to match
52719      Branch: perl
52720            ! ext/B/B/Concise.pm op.h
52721 ____________________________________________________________________________
52722 [ 22596] By: davem                                 on 2004/03/26  18:53:09
52723         Log: fix for change #22594; if using test.pl, must tell perl where to
52724              find it!
52725      Branch: perl
52726            ! t/comp/hints.t
52727 ____________________________________________________________________________
52728 [ 22595] By: davem                                 on 2004/03/26  17:28:48
52729         Log: document the return value of an empty sub
52730      Branch: perl
52731            ! pod/perlsub.pod
52732 ____________________________________________________________________________
52733 [ 22594] By: davem                                 on 2004/03/26  13:05:50
52734         Log: - hints hash was being double freed on scope exit
52735      Branch: perl
52736            ! op.c scope.c scope.h t/comp/hints.t
52737 ____________________________________________________________________________
52738 [ 22593] By: ams                                   on 2004/03/26  08:59:15
52739         Log: Subject: Re: [perl #27906] stat documentation correction
52740              From: Andy Lester <andy@petdance.com>
52741              Date: Wed, 24 Mar 2004 21:48:30 -0600
52742              Message-Id: <20040325034830.GA5865@petdance.com>
52743              (Applied with a correction from Spider Boardman.)
52744      Branch: perl
52745            ! pod/perlfunc.pod t/op/stat.t
52746 ____________________________________________________________________________
52747 [ 22592] By: davem                                 on 2004/03/26  01:24:24
52748         Log: fix some comments in perly.y
52749      Branch: perl
52750            ! perly.y
52751 ____________________________________________________________________________
52752 [ 22591] By: davem                                 on 2004/03/26  01:16:55
52753         Log: Blessed reference to anonymous glob
52754              Stop *$$x=$x giving "Attempt to free unreferenced scalar" warning
52755      Branch: perl
52756            ! sv.c t/op/ref.t
52757 ____________________________________________________________________________
52758 [ 22586] By: davem                                 on 2004/03/24  22:16:30
52759         Log: Subject: [perl #27748] 'find2perl' bug: -exec causes chdir error
52760              From: "jdhedden@1979.usna.com (via RT)" <perlbug-followup@perl.org>
52761              Date: 18 Mar 2004 20:25:50 -0000
52762              Message-ID: <rt-3.0.8-27748-82270.2.99482909739062@perl.org>
52763
52764              Cwd code was planted in the output executable after the exit, so
52765              was never run.
52766      Branch: perl
52767            ! x2p/find2perl.PL
52768 ____________________________________________________________________________
52769 [ 22585] By: nicholas                              on 2004/03/24  21:42:25
52770         Log: Remaining smoked platforms where malloc wrap is known to work.
52771              Data for Irix and NetBSD would be useful - they probably will work too.
52772              Will Unicos work? Place bets now...
52773      Branch: perl
52774            ! hints/aix.sh hints/bsdos.sh hints/dec_osf.sh hints/freebsd.sh
52775            ! hints/hpux.sh hints/linux.sh hints/openbsd.sh
52776            ! hints/solaris_2.sh
52777 ____________________________________________________________________________
52778 [ 22584] By: davem                                 on 2004/03/24  21:14:08
52779         Log: Subject: [perl #27790] split docs: say the string is EXPR
52780              From: Dan Jacobson (via RT) <perlbug-followup@perl.org>
52781              Date: 20 Mar 2004 05:21:07 -0000
52782              Message-ID: <rt-3.0.8-27790-82358.14.5476352902536@perl.org>
52783
52784              Minor documentation nit in split
52785      Branch: perl
52786            ! pod/perlfunc.pod
52787 ____________________________________________________________________________
52788 [ 22582] By: nicholas                              on 2004/03/24  19:15:29
52789         Log: mintest will pass if I skip the correct number of tests. D'oh!
52790      Branch: perl
52791            ! t/op/magic.t
52792 ____________________________________________________________________________
52793 [ 22579] By: nicholas                              on 2004/03/24  14:59:16
52794         Log: Subject: Re: [PATCH] Fix PERL_MALLOC_WRAP change for Win32
52795              From: Steve Hay <steve.hay@uk.radan.com>
52796              Message-ID: <40618D1C.7000601@uk.radan.com>
52797              Date: Wed, 24 Mar 2004 13:29:00 +0000
52798      Branch: perl
52799            ! win32/config_H.bc win32/config_H.gc win32/config_H.vc
52800            ! win32/config_H.vc64
52801 ____________________________________________________________________________
52802 [ 22578] By: rgs                                   on 2004/03/24  13:54:31
52803         Log: Good catch from Dave Mitchell; plus a null pointer protection.
52804      Branch: perl
52805            ! scope.c
52806 ____________________________________________________________________________
52807 [ 22577] By: nicholas                              on 2004/03/24  11:51:46
52808         Log: Unlike perl, 0 in void context isn't special cased in C :-)
52809              (So it warns). Tweak the no-action malloc wrap checkers to avoid
52810              warnings.
52811      Branch: perl
52812            ! handy.h
52813 ____________________________________________________________________________
52814 [ 22576] By: nicholas                              on 2004/03/24  10:29:16
52815         Log: Export PL_memory_wrap based on PERL_MALLOC_WRAP rather than
52816              NO_MALLOC_WRAP following Configure changes. Identical patch to
52817              mine supplied by Steve Hay while I was working on this.
52818              IP shootout at dawn :-)
52819      Branch: perl
52820            ! makedef.pl
52821 ____________________________________________________________________________
52822 [ 22572] By: nicholas                              on 2004/03/24  09:14:21
52823         Log: Tidy up function prototypes in the light of suidpatch
52824      Branch: perl
52825            ! embed.fnc embed.h perl.c proto.h
52826 ____________________________________________________________________________
52827 [ 22571] By: nicholas                              on 2004/03/23  22:35:09
52828         Log: Make usemallocwrap a Configure-time question. Default is yes for
52829              usedevel, no otherwise, but I'm expecting hints files on known
52830              good platforms to override this. (and known bad)
52831              Demonstration hints file for darwin.
52832      Branch: perl
52833            ! Configure config_h.SH hints/darwin.sh perl.h
52834 ____________________________________________________________________________
52835 [ 22569] By: nicholas                              on 2004/03/23  17:47:44
52836         Log: hv_delete_common was freeing the key, then passing the freed pointer
52837              to S_hv_notallowed. D'oh!
52838      Branch: perl
52839            ! hv.c
52840 ____________________________________________________________________________
52841 [ 22566] By: nicholas                              on 2004/03/23  16:23:58
52842         Log: Unify 5.008 and 5.009's B::Concise 0.58
52843      Branch: perl
52844            ! ext/B/B/Concise.pm
52845 ____________________________________________________________________________
52846 [ 22565] By: nicholas                              on 2004/03/23  16:05:28
52847         Log: Unify 5.008 and 5.009's B::Concise 0.56
52848      Branch: perl
52849            ! ext/B/B/Concise.pm
52850 ____________________________________________________________________________
52851 [ 22564] By: rgs                                   on 2004/03/23  13:43:49
52852         Log: Fix bug [perl #27839] returning @+ out of scope loses its value :
52853
52854              Subject: Re: Wondering about returned regex special arrays on going out of scope
52855              From: hv@crypt.org
52856              Date: Fri, 05 Mar 2004 17:42:25 +0000
52857              Message-Id: <200403051742.i25HgPd11240@zen.crypt.org>
52858
52859              plus a test case.
52860      Branch: perl
52861            ! pp_hot.c t/op/magic.t
52862 ____________________________________________________________________________
52863 [ 22563] By: nicholas                              on 2004/03/23  13:38:11
52864         Log: Subject: [PATCH] 5.9.1 suidperl
52865              From: psz@maths.usyd.edu.au (Paul Szabo)
52866              Message-Id: <200403182117.i2ILHug513080@milan.maths.usyd.edu.au>
52867              Date: Fri, 19 Mar 2004 08:17:56 +1100 (EST)
52868
52869              (which variables renamed as requested, plus tweaks to work on platforms
52870              with no ST_NOEXEC)
52871      Branch: perl
52872            ! embedvar.h intrpvar.h perl.c perl.h perlapi.h
52873 ____________________________________________________________________________
52874 [ 22560] By: rgs                                   on 2004/03/22  21:29:51
52875         Log: Update the -v copyright notice.
52876      Branch: perl
52877            ! perl.c
52878 ____________________________________________________________________________
52879 [ 22559] By: nicholas                              on 2004/03/22  21:05:09
52880         Log: Don't assume that the chmod will always work.
52881              (It won't for files on *BSD where chflags has set uchg, which is
52882              what the OS X perforce client does)
52883      Branch: perl
52884            ! t/op/filetest.t
52885 ____________________________________________________________________________
52886 [ 22557] By: rgs                                   on 2004/03/22  20:46:52
52887         Log: Clarifications on constants subroutines, based on:
52888
52889              Subject: [perl #27768] [patch] wrong examples in perlsub/"Constant Functions"
52890              From: "padre@elte.hu (via RT)" <perlbug-followup@perl.org>
52891              Date: 19 Mar 2004 14:56:09 -0000
52892              Message-ID: <rt-3.0.8-27768-82310.5.12766475665209@perl.org>
52893      Branch: perl
52894            ! pod/perlsub.pod
52895 ____________________________________________________________________________
52896 [ 22556] By: rgs                                   on 2004/03/22  20:30:41
52897         Log: Subject: [PATCH] Re: ../lib/ExtUtils/t/Embed.t failure on Win32/GCC
52898              From: Steve Hay <steve.hay@uk.radan.com>
52899              Date: Mon, 22 Mar 2004 14:44:46 +0000
52900              Message-ID: <405EFBDE.4090209@uk.radan.com>
52901      Branch: perl
52902            ! README.win32
52903 ____________________________________________________________________________
52904 [ 22553] By: rgs                                   on 2004/03/22  19:25:59
52905         Log: Subject: Re: [PATCH] warn on !=~
52906              From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
52907              Date: Mon, 22 Mar 2004 10:32:05 -0800
52908              Message-ID: <20040322183106.GA1284@efn.org>
52909
52910              More warnings for this case.
52911      Branch: perl
52912            ! t/lib/warnings/toke toke.c
52913 ____________________________________________________________________________
52914 [ 22549] By: rgs                                   on 2004/03/21  17:22:42
52915         Log: Finally, this "Negative repeat count" warning wasn't such a great
52916              idea. Disable it. But add tests for this :
52917
52918              Subject: Re: [perl #27811] (@x) x -1 is a panic
52919              From: Andy Lester <andy@petdance.com>
52920              Date: Sun, 21 Mar 2004 09:27:04 -0600
52921              Message-ID: <20040321152704.GA9041@petdance.com>
52922      Branch: perl
52923            ! pp.c t/lib/warnings/pp t/op/repeat.t
52924 ____________________________________________________________________________
52925 [ 22548] By: rgs                                   on 2004/03/21  16:40:27
52926         Log: Subject: [PATCH sv.h] Nobody has used SvPVbyte_force?
52927              From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
52928              Date: Sun, 21 Mar 2004 21:49:53 +0900
52929              Message-Id: <20040321213628.2461.BQW10602@nifty.com>
52930      Branch: perl
52931            ! sv.h
52932 ____________________________________________________________________________
52933 [ 22547] By: rgs                                   on 2004/03/21  13:36:27
52934         Log: I must be tired today.
52935      Branch: perl
52936            ! lib/utf8.t
52937 ____________________________________________________________________________
52938 [ 22546] By: rgs                                   on 2004/03/21  13:26:33
52939         Log: Silence a gcc warning.
52940      Branch: perl
52941            ! sv.c
52942 ____________________________________________________________________________
52943 [ 22545] By: rgs                                   on 2004/03/21  13:18:01
52944         Log: Subject: Re: [perl #27803] perl crashes when utf8::upgrade($offsetOK_scalar)
52945              From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
52946              Date: Sun, 21 Mar 2004 15:19:22 +0900
52947              Message-Id: <20040321151828.DAC6.BQW10602@nifty.com>
52948      Branch: perl
52949            ! lib/utf8.t sv.c
52950 ____________________________________________________________________________
52951 [ 22544] By: rgs                                   on 2004/03/21  13:12:53
52952         Log: Subject: [PATCH] fix memory bug in vms.c:mp_do_tounixspec
52953              From: "Craig A. Berry" <craigberry@mac.com>
52954              Date: Sat, 20 Mar 2004 21:51:45 -0600
52955              Message-ID: <405D1151.3040308@mac.com>
52956      Branch: perl
52957            ! vms/vms.c
52958 ____________________________________________________________________________
52959 [ 22543] By: rgs                                   on 2004/03/21  13:06:20
52960         Log: Add a new warning "Negative repeat count"
52961              for the cases $x x -1.
52962      Branch: perl
52963            ! pod/perlop.pod pp.c t/lib/warnings/pp
52964 ____________________________________________________________________________
52965 [ 22542] By: rgs                                   on 2004/03/20  11:49:21
52966         Log: Subject: [PATCH] warn on !=~
52967              From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
52968              Date: Thu, 18 Mar 2004 22:24:09 -0800
52969              Message-ID: <20040319062035.GA3768@efn.org>
52970
52971              with an improvement suggested by Ton Hospel.
52972      Branch: perl
52973            ! pod/perldiag.pod t/lib/warnings/toke toke.c
52974 ____________________________________________________________________________
52975 [ 22541] By: rgs                                   on 2004/03/20  10:19:59
52976         Log: Subject: makefile.95 tweak
52977              From: Greg Matheson <lang@ms.chinmin.edu.tw>
52978              Date: Fri, 19 Mar 2004 18:15:25 +0800
52979              Message-ID: <20040319181525.A6347@ms.chinmin.edu.tw>
52980      Branch: perl
52981            ! win32/makefile.mk
52982 ____________________________________________________________________________
52983 [ 22540] By: rgs                                   on 2004/03/20  10:15:36
52984         Log: \x80\xFF is not valid UTF-8.
52985      Branch: perl
52986            ! pod/perluniintro.pod
52987 ____________________________________________________________________________
52988 [ 22539] By: rgs                                   on 2004/03/19  23:09:13
52989         Log: Subject: [perl #24821] enhancement patch for B::Concise
52990              From: jim cromie <jcromie@divsol.com>
52991              Date: Wed, 17 Mar 2004 14:12:43 -0700
52992              Message-ID: <4058BF4B.1000004@divsol.com>
52993              (Only the Concise.pm part, with documentation nits)
52994      Branch: perl
52995            ! ext/B/B/Concise.pm
52996 ____________________________________________________________________________
52997 [ 22538] By: nicholas                              on 2004/03/19  12:15:23
52998         Log: Subject:  [PATCH] open.pm: allow upper-cased EUC
52999              From:  Autrijus Tang <autrijus@autrijus.org>
53000              Date:  Fri, 19 Mar 2004 18:27:10 +0800
53001              Message-Id:  <20040319102710.GA91216@aut.dyndns.org>
53002      Branch: perl
53003            ! lib/open.pm
53004 ____________________________________________________________________________
53005 [ 22537] By: nicholas                              on 2004/03/19  11:59:01
53006         Log: Subject: [PATCH] Move Win32.pm/Win32.xs from libwin32 module to core Perl
53007              From: Jan Dubois <jand@activestate.com>
53008              Message-ID: <lg2k509o51b8openotuetdts6go7pn4udo@4ax.com>
53009              Date: Thu, 18 Mar 2004 13:13:49 -0800
53010
53011              Subject: Re: [PATCH] Move Win32.pm/Win32.xs from libwin32 module to core Perl
53012              From: Steve Hay <steve.hay@uk.radan.com>
53013              Message-ID: <405ACC6D.1040804@uk.radan.com>
53014              Date: Fri, 19 Mar 2004 10:33:17 +0000
53015      Branch: perl
53016            + win32/ext/Win32/Makefile.PL win32/ext/Win32/Win32.pm
53017            + win32/ext/Win32/Win32.xs
53018            - lib/Win32.pod
53019            ! MANIFEST win32/Makefile win32/makefile.mk
53020 ____________________________________________________________________________
53021 [ 22536] By: nicholas                              on 2004/03/19  11:43:35
53022         Log: Change Storable.xs to conditionally include ppport.h for pre 5.8.0
53023              This allows the ppport.h to be deleted from ext/Storable, which will
53024              reduce the potential for confusion.
53025              Bump Storable's version to 2.12; update the ChangeLog
53026      Branch: perl
53027            - ext/Storable/ppport.h
53028            ! MANIFEST ext/Storable/ChangeLog ext/Storable/MANIFEST
53029            ! ext/Storable/README ext/Storable/Storable.pm
53030            ! ext/Storable/Storable.xs
53031 ____________________________________________________________________________
53032 [ 22535] By: nicholas                              on 2004/03/19  11:03:18
53033         Log: Move Beau Cox's ppport.h fixes into PPPort.pm
53034      Branch: perl
53035            ! ext/Devel/PPPort/PPPort.pm
53036 ____________________________________________________________________________
53037 [ 22534] By: rgs                                   on 2004/03/19  10:13:14
53038         Log: Nit in perluniintro about the U0 and C0 templates,
53039              noticed by Steve Hay.
53040      Branch: perl
53041            ! pod/perluniintro.pod
53042 ____________________________________________________________________________
53043 [ 22533] By: ams                                   on 2004/03/19  02:57:40
53044         Log: Subject: [PATCH] Storable PERL_NO_GET_CONTEXT
53045              From: beau@beaucox.com
53046              Date: Thu, 18 Mar 2004 12:45:45 -1000
53047              Message-Id: <20040318_224545_009145.beau@beaucox.com>
53048      Branch: perl
53049            + ext/Storable/ppport.h
53050            ! MANIFEST ext/Storable/MANIFEST ext/Storable/Storable.xs
53051 ____________________________________________________________________________
53052 [ 22532] By: rgs                                   on 2004/03/18  20:33:02
53053         Log: Subject: [PATCH] range operator warnings / 64-bit fix
53054              From: Marcus Holland-Moritz <mhx-perl@gmx.net>
53055              Date: Wed, 10 Mar 2004 21:45:48 +0100
53056              Message-Id: <20040310214548.4f5e3ab1@r2d2>
53057      Branch: perl
53058            ! pp_ctl.c pp_hot.c t/op/range.t
53059 ____________________________________________________________________________
53060 [ 22531] By: davem                                 on 2004/03/18  19:02:32
53061         Log: add code comment for change 22525
53062      Branch: perl
53063            ! pp.c
53064 ____________________________________________________________________________
53065 [ 22530] By: rgs                                   on 2004/03/18  18:21:32
53066         Log: Add a perl592delta.pod man page.
53067      Branch: perl
53068            + pod/perl592delta.pod
53069            ! MANIFEST Makefile.SH pod.lst pod/perl.pod pod/perltoc.pod
53070            ! vms/descrip_mms.template win32/Makefile win32/makefile.mk
53071            ! win32/pod.mak
53072 ____________________________________________________________________________
53073 [ 22528] By: nicholas                              on 2004/03/18  16:58:06
53074         Log: Corrections and explanations in comments
53075      Branch: perl
53076            ! ext/Storable/Storable.xs
53077 ____________________________________________________________________________
53078 [ 22527] By: nicholas                              on 2004/03/18  16:50:25
53079         Log: Subject:  pumpkin fodder
53080              From:  Jarkko Hietaniemi <jhi@cc.hut.fi>
53081              Date:  Fri, 12 Mar 2004 15:16:57 +0200 (EET)
53082              Message-Id:  <200403121316.i2CDGv1Y254951@kosh.hut.fi>
53083      Branch: perl
53084            ! lib/unicore/README.perl
53085 ____________________________________________________________________________
53086 [ 22526] By: rgs                                   on 2004/03/18  14:33:14
53087         Log: Detypo.
53088      Branch: perl
53089            ! makedef.pl
53090 ____________________________________________________________________________
53091 [ 22525] By: davem                                 on 2004/03/18  14:13:16
53092         Log: make ~$x give warning is $x isn't initialised.
53093              Also add test for uninitialised warning in & op.
53094      Branch: perl
53095            ! pp.c t/lib/warnings/sv
53096 ____________________________________________________________________________
53097 [ 22524] By: rgs                                   on 2004/03/18  13:20:07
53098         Log: Try to fix the AIX and Windows builds regarding the
53099              definedness of the PL_memory_wrap symbol.
53100      Branch: perl
53101            ! makedef.pl
53102 ____________________________________________________________________________
53103 [ 22523] By: rgs                                   on 2004/03/18  08:27:34
53104         Log: Bump bleadperl's version number to 5.9.2.
53105      Branch: perl
53106            ! NetWare/Makefile NetWare/config_H.wc Porting/config.sh
53107            ! Porting/config_H epoc/config.sh epoc/createpkg.pl patchlevel.h
53108            ! plan9/config.plan9 win32/Makefile win32/config_H.bc
53109            ! win32/config_H.gc win32/config_H.vc win32/config_H.vc64
53110            ! win32/makefile.mk wince/Makefile.ce
53111 ____________________________________________________________________________
53112 [ 22521] By: rgs                                   on 2004/03/17  19:13:03
53113         Log: Subject: [PATCH] format/casting/warning RE: perl 5.9.1
53114              From: Robin Barker <Robin.Barker@npl.co.uk>
53115              Date: Wed, 17 Mar 2004 18:37:10 -0000
53116              Message-ID: <533D273D4014D411AB1D00062938C4D90404682E@hotel.npl.co.uk>
53117      Branch: perl
53118            ! dump.c ext/Socket/Socket.xs pad.c util.c
53119 ____________________________________________________________________________
53120 [ 22520] By: rgs                                   on 2004/03/17  18:20:54
53121         Log: Optimize away the assignment in the constructs C<my $s = undef>,
53122              C<my @a = ()>, C<my %h = ()>.
53123      Branch: perl
53124            ! op.c
53125 ____________________________________________________________________________
53126 [ 22517] By: nicholas                              on 2004/03/17  17:58:44
53127         Log: Subject: malloc wrappage
53128              From: Jarkko Hietaniemi <jhi@iki.fi>
53129              Message-Id: <37BF70DE-5C0E-11D8-B5A1-00039362CB92@iki.fi>
53130              Date: Tue, 10 Feb 2004 23:15:14 +0200
53131
53132              plus change croak to Perl_croak_nocontext to make ithread safe
53133              plus make it conditional on PERL_MALLOC_WRAP (default for blead is on)
53134      Branch: perl
53135            ! av.c handy.h perl.h pod/perldiag.pod pp.c
53136 ____________________________________________________________________________
53137 [ 22516] By: nicholas                              on 2004/03/17  16:10:57
53138         Log: Add auto-require of modules to restore overloading (and tests)
53139      Branch: perl
53140            + ext/Storable/t/HAS_OVERLOAD.pm
53141            ! MANIFEST ext/Storable/ChangeLog ext/Storable/MANIFEST
53142            ! ext/Storable/Storable.xs ext/Storable/t/overload.t
53143 ____________________________________________________________________________
53144 [ 22515] By: nicholas                              on 2004/03/17  15:48:03
53145         Log: Add regression tests for the auto-require of STORABLE_thaw
53146      Branch: perl
53147            + ext/Storable/t/HAS_HOOK.pm
53148            ! MANIFEST ext/Storable/ChangeLog ext/Storable/MANIFEST
53149            ! ext/Storable/t/blessed.t
53150 ____________________________________________________________________________
53151 [ 22514] By: nicholas                              on 2004/03/16  22:36:49
53152         Log: Move the PERLVAR(Ireentrant_buffer, REENTR*) outside the ITHREADS
53153              block. This allows the re-entrant API to be used with ithreads,
53154              which in turn permits -Dusethreads -Uuseithreads -Uuse5005threads
53155              (Which may seem inane, but makes perl threaded at the C level
53156              without enabling ithreads)
53157      Branch: perl
53158            ! intrpvar.h
53159 ____________________________________________________________________________
53160 [ 22513] By: rgs                                   on 2004/03/16  21:55:10
53161         Log: Add a lchown() call to the POSIX module. [perl #27547]
53162      Branch: perl
53163            ! ext/POSIX/POSIX.pm ext/POSIX/POSIX.xs
53164 ____________________________________________________________________________
53165 [ 22512] By: rgs                                   on 2004/03/16  21:29:41
53166         Log: Subject: [PATCH] Re: Perl and Parrot disagree about sched_yield on Solaris
53167              From: Andrew Dougherty <doughera@lafayette.edu>
53168              Date: Tue, 16 Mar 2004 16:38:58 -0500 (EST)
53169              Message-ID: <Pine.SOL.4.58.0403161635590.27628@maxwell.phys.lafayette.edu>
53170      Branch: perl
53171            ! hints/solaris_2.sh
53172 ____________________________________________________________________________
53173 [ 22511] By: rgs                                   on 2004/03/16  21:27:02
53174         Log: Restore the "DEVEL" locally-applied-patches version tag in blead.
53175      Branch: perl
53176            ! patchlevel.h
53177 ____________________________________________________________________________
53178 [ 22510] By: rgs                                   on 2004/03/16  18:29:39
53179         Log: Update Changes. (again)
53180      Branch: perl
53181            ! Changes
53182 ____________________________________________________________________________
53183 [ 22509] By: rgs                                   on 2004/03/16  18:19:52
53184         Log: Update copyright notices
53185      Branch: perl
53186            ! cop.h cv.h doio.c doop.c dump.c embed.h embed.pl embedvar.h
53187            ! form.h global.sym gv.c handy.h hv.c mg.c op.c op.h opcode.h
53188            ! opcode.pl opnames.h pad.c patchlevel.h perl.c perl.h perlapi.h
53189            ! perlio.c pp.c pp_ctl.c pp_hot.c pp_pack.c pp_sort.c pp_sys.c
53190            ! proto.h regexec.c scope.c scope.h sv.c sv.h thread.h
53191            ! universal.c utf8.c util.c
53192 ____________________________________________________________________________
53193 [ 22508] By: rgs                                   on 2004/03/16  16:31:03
53194         Log: Regenerate META.yml
53195      Branch: perl
53196            ! META.yml
53197 ____________________________________________________________________________
53198 [ 22507] By: rgs                                   on 2004/03/16  15:36:32
53199         Log: Update Changes.
53200      Branch: perl
53201            ! Changes
53202 ____________________________________________________________________________
53203 [ 22506] By: rgs                                   on 2004/03/16  15:32:42
53204         Log: This is 5.9.1.
53205      Branch: perl
53206            ! patchlevel.h
53207 ____________________________________________________________________________
53208 [ 22505] By: rgs                                   on 2004/03/16  15:28:55
53209         Log: We'll ship 5.9.1 today.
53210      Branch: perl
53211            ! pod/perlhist.pod
53212 ____________________________________________________________________________
53213 [ 22504] By: rgs                                   on 2004/03/16  15:25:22
53214         Log: More perldelta updates.
53215      Branch: perl
53216            ! pod/perl591delta.pod
53217 ____________________________________________________________________________
53218 [ 22503] By: rgs                                   on 2004/03/16  13:23:34
53219         Log: Since the signature.t test of CPAN relies on a non-core module,
53220              it's not relevant to the perl core distribution.
53221      Branch: perl
53222            - lib/CPAN/t/signature.t
53223            ! MANIFEST
53224 ____________________________________________________________________________
53225 [ 22502] By: rgs                                   on 2004/03/15  21:54:56
53226         Log: Fix the order of arguments in the usage message of
53227              POSIX::chown(). It's different from the POSIX order but
53228              it's the same than CORE::chown(). Damn.
53229      Branch: perl
53230            ! ext/POSIX/POSIX.pm
53231 ____________________________________________________________________________
53232 [ 22501] By: rgs                                   on 2004/03/15  17:09:26
53233         Log: Subject: Re: Smoke [5.9.1] 22491 FAIL(M) MSWin32 WinXP/.Net SP1 (x86/1 cpu)
53234              From: Steve Hay <steve.hay@uk.radan.com>
53235              Date: Mon, 15 Mar 2004 10:28:02 +0000
53236              Message-ID: <40558532.30002@uk.radan.com>
53237
53238              Plus, restore patch #22489
53239      Branch: perl
53240            ! win32/Makefile win32/makefile.mk
53241 ____________________________________________________________________________
53242 [ 22500] By: davem                                 on 2004/03/14  20:13:47
53243         Log: scope exit could expose freed local() value
53244      Branch: perl
53245            ! scope.c t/op/localref.t
53246 ____________________________________________________________________________
53247 [ 22499] By: davem                                 on 2004/03/14  17:01:34
53248         Log: strict 'subs' didn't warn on bareword array index
53249      Branch: perl
53250            ! op.c t/lib/strict/subs
53251 ____________________________________________________________________________
53252 [ 22498] By: rgs                                   on 2004/03/14  12:52:17
53253         Log: Four Storable patches towards Storable 2.11 :
53254
53255              Subject: Re: [perl #27616] Storable can't freeze restricted hashes in canonical order
53256              From: Nicholas Clark <nick@ccl4.org>
53257              Date: Sat, 13 Mar 2004 15:13:28 +0000
53258              Message-ID: <20040313151327.GS701@plum.flirble.org>
53259
53260              Date: Sat, 13 Mar 2004 20:23:45 +0000
53261              Message-ID: <20040313202345.GX701@plum.flirble.org>
53262
53263              Date: Sat, 13 Mar 2004 22:20:07 +0000
53264              Message-ID: <20040313222007.GZ701@plum.flirble.org>
53265
53266              Date: Sat, 13 Mar 2004 23:03:46 +0000
53267              Message-ID: <20040313230345.GB701@plum.flirble.org>
53268      Branch: perl
53269            ! ext/Storable/ChangeLog ext/Storable/Storable.pm
53270            ! ext/Storable/Storable.xs ext/Storable/t/blessed.t
53271            ! ext/Storable/t/restrict.t
53272 ____________________________________________________________________________
53273 [ 22497] By: rgs                                   on 2004/03/13  21:27:57
53274         Log: Subject: [perl #27567] [patch] a typo and a mistake in perltoot.pod
53275              From: "padre@elte.hu (via RT)" <perlbug-followup@perl.org>
53276              Date: 10 Mar 2004 17:05:09 -0000
53277              Message-ID: <rt-3.0.8-27567-81174.13.282806825515@perl.org>
53278      Branch: perl
53279            ! pod/perltoot.pod
53280 ____________________________________________________________________________
53281 [ 22496] By: rgs                                   on 2004/03/13  21:16:59
53282         Log: More small perldelta updates.
53283      Branch: perl
53284            ! pod/perl591delta.pod
53285 ____________________________________________________________________________
53286 [ 22495] By: rgs                                   on 2004/03/13  20:05:20
53287         Log: Revert change #22489, that seems to cause build failures on Windows.
53288      Branch: perl
53289            ! win32/Makefile win32/makefile.mk
53290 ____________________________________________________________________________
53291 [ 22494] By: rgs                                   on 2004/03/13  19:55:43
53292         Log: Subject: Re: [PATCH] Stop splitpod truncating sprintf manpage
53293              From: Steve Hay <steve.hay@uk.radan.com>
53294              Date: Fri, 12 Mar 2004 08:38:41 +0000
53295              Message-ID: <40517711.9030204@uk.radan.com>
53296      Branch: perl
53297            ! pod/splitpod
53298 ____________________________________________________________________________
53299 [ 22493] By: rgs                                   on 2004/03/12  23:39:16
53300         Log: perl591delta nits. Regenerate the tables of contents.
53301      Branch: perl
53302            ! pod/perl591delta.pod pod/perlmodlib.pod pod/perltoc.pod
53303 ____________________________________________________________________________
53304 [ 22492] By: rgs                                   on 2004/03/12  21:35:49
53305         Log: Update perl591delta. Include a small to-do list in it.
53306      Branch: perl
53307            ! pod/perl591delta.pod
53308 ____________________________________________________________________________
53309 [ 22491] By: rgs                                   on 2004/03/12  20:08:31
53310         Log: Subject: [PATCH] Math::BigInt v1.70, bignum 0.15, Math::BigRat 0.12
53311              From: Tels <perl_dummy@bloodgate.com>
53312              Date: Fri, 12 Mar 2004 18:02:30 +0100
53313              Message-Id: <200403121802.31679@bloodgate.com>
53314      Branch: perl
53315            + lib/Math/BigInt/t/_e_math.t
53316            ! MANIFEST lib/Math/BigFloat.pm lib/Math/BigInt/t/bare_mbf.t
53317            ! lib/Math/BigInt/t/bigfltpm.inc lib/Math/BigInt/t/bigfltpm.t
53318            ! lib/Math/BigInt/t/sub_mbf.t lib/Math/BigInt/t/with_sub.t
53319            ! lib/bigint.pm lib/bignum.pm
53320 ____________________________________________________________________________
53321 [ 22490] By: rgs                                   on 2004/03/12  18:31:12
53322         Log: Fix a bug in the cloning of regexps
53323
53324              Subject: Re: [perl #27530] Regex qr// interpolation fails when chr(0) is used in a thread
53325              From: hv@crypt.org
53326              Date: Thu, 11 Mar 2004 16:21:50 +0000
53327              Message-Id: <200403111621.i2BGLoi20225@zen.crypt.org>
53328              (plus another similar fix)
53329      Branch: perl
53330            ! sv.c
53331 ____________________________________________________________________________
53332 [ 22489] By: rgs                                   on 2004/03/12  18:26:34
53333         Log: Subject: [PATCH] Fix minitest target in Win32 makefiles
53334              From: Steve Hay <steve.hay@uk.radan.com>
53335              Date: Fri, 12 Mar 2004 15:52:23 +0000
53336              Message-ID: <4051DCB7.107@uk.radan.com>
53337      Branch: perl
53338            ! win32/Makefile win32/makefile.mk
53339 ____________________________________________________________________________
53340 [ 22488] By: rgs                                   on 2004/03/11  22:57:29
53341         Log: Document the new behaviour of the substr lvalue :
53342              Subject: Re: [perl #24346] pulling in stuff from outside the substr lvalue window
53343              From: Dave Mitchell <davem@fdisolutions.com>
53344              Date: Mon, 1 Mar 2004 23:59:21 +0000
53345              Message-ID: <20040301235921.GC6469@fdisolutions.com>
53346      Branch: perl
53347            ! pod/perlfunc.pod
53348 ____________________________________________________________________________
53349 [ 22485] By: davem                                 on 2004/03/11  14:52:58
53350         Log: make op/write.t work better under stdio by running the subtests
53351              in the child process rather than the parent.
53352      Branch: perl
53353            ! t/op/write.t
53354 ____________________________________________________________________________
53355 [ 22484] By: merijn                                on 2004/03/11  10:08:17
53356         Log: Subject: Re: [PATCH] Re: Proposal to remove support for MachTen
53357              From: Dominic Dunlop <shouldbedomo@mac.com>
53358              Date: Thu, 11 Mar 2004 10:34:01 +0100
53359              Message-Id: <3B07B7FC-733F-11D8-AC24-000A27839BD6@mac.com>
53360      Branch: perl
53361            ! README.machten hints/machten.sh
53362 ____________________________________________________________________________
53363 [ 22483] By: nicholas                              on 2004/03/10  20:38:49
53364         Log: croaking for readonly SVs in Perl_sv_utf8_upgrade_flags was a mistake
53365              back this out until we have a tangible policy
53366      Branch: perl
53367            ! sv.c
53368 ____________________________________________________________________________
53369 [ 22482] By: rgs                                   on 2004/03/10  16:16:00
53370         Log: Upgrade to Cwd 2.17.
53371      Branch: perl
53372            ! ext/Cwd/Changes ext/Cwd/t/cwd.t lib/Cwd.pm
53373 ____________________________________________________________________________
53374 [ 22481] By: rgs                                   on 2004/03/10  10:55:12
53375         Log: Subject: Re: [PATCH] More "distclean" tidy ups on Win32
53376              From: Steve Hay <steve.hay@uk.radan.com>
53377              Date: Wed, 10 Mar 2004 10:58:15 +0000
53378              Message-ID: <404EF4C7.9090107@uk.radan.com>
53379      Branch: perl
53380            ! win32/Makefile win32/makefile.mk
53381 ____________________________________________________________________________
53382 [ 22480] By: rgs                                   on 2004/03/10  09:25:36
53383         Log: Change 22476 left out a similar fix for ExtUtils::MM_Win32
53384              (noticed by Steve Hay.)
53385              Also, update MANIFEST.SKIP to be in line with the renaming
53386              "blibdirs" to "blibdirs.exists".
53387      Branch: perl
53388            ! lib/ExtUtils/MANIFEST.SKIP lib/ExtUtils/MM_Win32.pm
53389 ____________________________________________________________________________
53390 [ 22479] By: rgs                                   on 2004/03/10  09:07:03
53391         Log: A patch by Richard Foley to reduce the amount of
53392              forkage between the 5.8 and 5.9 debuggers.
53393      Branch: perl
53394            ! lib/perl5db.pl
53395 ____________________________________________________________________________
53396 [ 22478] By: chip                                  on 2004/03/09  23:51:41
53397         Log: In line-buffered mode, flush on the *last* newline,
53398              not on every newline.
53399      Branch: perl
53400            ! perlio.c
53401 ____________________________________________________________________________
53402 [ 22477] By: rgs                                   on 2004/03/09  22:27:22
53403         Log: Subject: [PATCH] More "distclean" tidy ups on Win32
53404              From: Steve Hay <steve.hay@uk.radan.com>
53405              Date: Fri, 05 Mar 2004 09:56:36 +0000
53406              Message-ID: <40484ED4.1050001@uk.radan.com>
53407              (only the win32 makefiles part)
53408      Branch: perl
53409            ! win32/Makefile win32/makefile.mk
53410 ____________________________________________________________________________
53411 [ 22476] By: rgs                                   on 2004/03/09  21:45:49
53412         Log: Subject: [PATCH] bleadperl/MM/VMS (was Re: perl@22413)
53413              From: "Craig A. Berry" <craigberry@mac.com>
53414              Date: Mon, 08 Mar 2004 08:18:43 -0600
53415              Message-ID: <404C80C3.6090009@mac.com>
53416
53417              Avoid to build everything twice on VMS.
53418              This is done by renaming the blibdirs target to blibdirs.exists.
53419              No, I don't understand why.
53420      Branch: perl
53421            ! lib/ExtUtils/MM_Any.pm lib/ExtUtils/MM_NW5.pm
53422            ! lib/ExtUtils/MM_Unix.pm lib/ExtUtils/MM_VMS.pm
53423            ! lib/ExtUtils/t/INST_PREFIX.t
53424 ____________________________________________________________________________
53425 [ 22474] By: rgs                                   on 2004/03/09  20:29:02
53426         Log: Improve the "Prototype mismatch" error message when
53427              the redefined subroutine didn't have any prototype.
53428      Branch: perl
53429            ! op.c t/comp/redef.t
53430 ____________________________________________________________________________
53431 [ 22473] By: mhx                                   on 2004/03/09  19:09:20
53432         Log: Revert change #22472, but keep the new tests.
53433      Branch: perl
53434            ! pp_ctl.c t/op/range.t
53435 ____________________________________________________________________________
53436 [ 22472] By: mhx                                   on 2004/03/09  18:41:15
53437         Log: Subject: Re: undef and the range operator
53438              From: Marcus Holland-Moritz <mhx-perl@gmx.net>
53439              Date: Mon, 8 Mar 2004 21:49:55 +0100
53440              Message-Id: <20040308214955.3d8be3a6@r2d2>
53441      Branch: perl
53442            ! pp_ctl.c t/op/range.t
53443 ____________________________________________________________________________
53444 [ 22471] By: nicholas                              on 2004/03/09  16:11:37
53445         Log: Make a temporary copy of the input buffer in pp_send, so that send
53446              and syswrite don't gratuitously upgrade their input to UTF8
53447      Branch: perl
53448            ! pp_sys.c t/op/sysio.t
53449 ____________________________________________________________________________
53450 [ 22470] By: rgs                                   on 2004/03/09  15:27:38
53451         Log: Upgrade to Cwd 2.16
53452      Branch: perl
53453            ! ext/Cwd/Changes ext/Cwd/t/cwd.t lib/Cwd.pm
53454 ____________________________________________________________________________
53455 [ 22469] By: rgs                                   on 2004/03/09  14:56:10
53456         Log: Upgrade to CGI.pm 3.04.
53457      Branch: perl
53458            ! lib/CGI.pm lib/CGI/Cookie.pm
53459 ____________________________________________________________________________
53460 [ 22468] By: rgs                                   on 2004/03/08  15:35:59
53461         Log: perl591delta.pod update.
53462      Branch: perl
53463            ! pod/perl591delta.pod
53464 ____________________________________________________________________________
53465 [ 22467] By: rgs                                   on 2004/03/08  10:43:23
53466         Log: Another makefile portability fix for Win32 by Steve Hay.
53467      Branch: perl
53468            ! win32/Makefile win32/makefile.mk
53469 ____________________________________________________________________________
53470 [ 22466] By: rgs                                   on 2004/03/08  08:06:33
53471         Log: Subject: [PATCH] win32_fstat has a potential buffer overrun problem
53472              From: Jan Dubois <jand@ActiveState.com>
53473              Date: Sun, 07 Mar 2004 17:04:35 -0800
53474              Message-ID: <8lgn409p4k2kpde8d428d7a4r7fsgjc8b4@4ax.com>
53475      Branch: perl
53476            ! win32/win32.c
53477 ____________________________________________________________________________
53478 [ 22465] By: nicholas                              on 2004/03/07  23:31:49
53479         Log: Fix Dave's original shared hash key corruption bug
53480      Branch: perl
53481            ! sv.c
53482 ____________________________________________________________________________
53483 [ 22463] By: nicholas                              on 2004/03/07  21:34:01
53484         Log: Add a readonly check to Perl_sv_utf8_upgrade_flags, a regresion test
53485              in utf8.t, and fix 3 bugs it exposed in utfhash.t
53486      Branch: perl
53487            ! lib/utf8.t sv.c t/op/utfhash.t
53488 ____________________________________________________________________________
53489 [ 22462] By: rgs                                   on 2004/03/07  20:34:05
53490         Log: Subject: undef and the range operator
53491              From: Marcus Holland-Moritz <mhx-perl@gmx.net>
53492              Date: Sun, 7 Mar 2004 21:11:20 +0100
53493              Message-Id: <20040307211120.10e46933@r2d2>
53494      Branch: perl
53495            ! pp_ctl.c t/op/range.t
53496 ____________________________________________________________________________
53497 [ 22459] By: rgs                                   on 2004/03/07  18:41:36
53498         Log: Subject: Re: [PATCH Cwd 2.15] test tweak for VMS
53499              From: "Ken Williams" <ken@mathforum.org>
53500              Date: Sun, 7 Mar 2004 09:37:19 -0600
53501              Message-Id: <51C75B2A-704D-11D8-BBD2-003065F6D85A@mathforum.org>
53502      Branch: perl
53503            ! ext/Cwd/t/cwd.t
53504 ____________________________________________________________________________
53505 [ 22456] By: rgs                                   on 2004/03/07  14:08:43
53506         Log: Subject: [PATCH t/op/closure.t] line-end tweak for VMS
53507              From: "Craig A. Berry" <craigberry@mac.com>
53508              Date: Sat, 06 Mar 2004 22:50:25 -0600
53509              Message-ID: <404AAA11.8050001@mac.com>
53510      Branch: perl
53511            ! t/op/closure.t
53512 ____________________________________________________________________________
53513 [ 22452] By: rgs                                   on 2004/03/06  21:24:45
53514         Log: Subject: [PATCH Cwd 2.15] test tweak for VMS
53515              From: "Craig A. Berry" <craigberry@mac.com>
53516              Date: Sat, 06 Mar 2004 13:51:55 -0600
53517              Message-ID: <404A2BDB.8030401@mac.com>
53518      Branch: perl
53519            ! ext/Cwd/t/cwd.t
53520 ____________________________________________________________________________
53521 [ 22451] By: rgs                                   on 2004/03/06  21:09:10
53522         Log: Allow syslog() to use numeric constants in addition to strings for
53523              facility names and priorities.
53524
53525              Subject: Patch for Sys::Syslog
53526              From: Jim Schneider <jschneid@netilla.com>
53527              Date: Fri, 5 Mar 2004 14:03:10 -0500
53528              Message-Id: <200403051403.10674.jschneid@netilla.com>
53529      Branch: perl
53530            ! ext/Sys/Syslog/Syslog.pm
53531 ____________________________________________________________________________
53532 [ 22446] By: nicholas                              on 2004/03/06  16:13:48
53533         Log: Make threads tests pass make minitest (by skipping)
53534      Branch: perl
53535            ! t/op/getpid.t t/op/threads.t
53536 ____________________________________________________________________________
53537 [ 22445] By: davem                                 on 2004/03/06  15:25:32
53538         Log: fix coredump in /(?{sub{}})/
53539      Branch: perl
53540            ! pad.c
53541 ____________________________________________________________________________
53542 [ 22444] By: rgs                                   on 2004/03/05  21:19:06
53543         Log: A small perluniintro clarification by Jarkko.
53544      Branch: perl
53545            ! pod/perluniintro.pod
53546 ____________________________________________________________________________
53547 [ 22443] By: rgs                                   on 2004/03/05  14:13:50
53548         Log: Subject: [PATCH] Re: Strange segfault
53549              From: mhx-perl@gmx.net (Marcus Holland-Moritz)
53550              Date: Fri, 5 Mar 2004 15:13:53 +0100
53551              Message-ID: <20040305151353.5f3e913c@r2d2>
53552      Branch: perl
53553            ! pp_ctl.c t/op/range.t
53554 ____________________________________________________________________________
53555 [ 22442] By: rgs                                   on 2004/03/05  09:31:22
53556         Log: Subject: [PATCH] Fix PERLEXE_ICO/PERLEXE_RES targets in makefile.mk on Win32
53557              From: steve.hay@uk.radan.com (Steve Hay)
53558              Date: Fri, 05 Mar 2004 09:42:32 +0000
53559              Message-ID: <40484B88.7070608@uk.radan.com>
53560      Branch: perl
53561            ! win32/makefile.mk
53562 ____________________________________________________________________________
53563 [ 22441] By: rgs                                   on 2004/03/05  08:53:08
53564         Log: Change 22436 broke the Windows build.
53565              Fix by Steve Hay.
53566      Branch: perl
53567            ! ext/POSIX/POSIX.xs
53568 ____________________________________________________________________________
53569 [ 22440] By: davem                                 on 2004/03/05  00:09:23
53570         Log: silence some compiler warnings
53571      Branch: perl
53572            ! pp_ctl.c sv.c
53573 ____________________________________________________________________________
53574 [ 22439] By: davem                                 on 2004/03/04  23:56:42
53575         Log: ensure utf8::encode() normalises its arg
53576      Branch: perl
53577            ! sv.c
53578 ____________________________________________________________________________
53579 [ 22438] By: davem                                 on 2004/03/04  23:32:38
53580         Log: Memory leak in continue loop
53581              make sure redo always frees temps
53582      Branch: perl
53583            ! pp_ctl.c t/op/loopctl.t
53584 ____________________________________________________________________________
53585 [ 22437] By: davem                                 on 2004/03/04  22:03:17
53586         Log: Add perldiag entry for change #22435 (deprecate my $x if 0)
53587      Branch: perl
53588            ! pod/perldiag.pod
53589 ____________________________________________________________________________
53590 [ 22436] By: rgs                                   on 2004/03/04  21:52:18
53591         Log: Subject: [PATCH] Re: [perl #25270] 5.8.3 - POSIX::ctermid() on Solaris
53592              From: Andrew Dougherty <doughera@lafayette.edu>
53593              Date: Thu, 4 Mar 2004 14:41:07 -0500 (EST)
53594              Message-ID: <Pine.SOL.4.58.0403041438350.5863@maxwell.phys.lafayette.edu>
53595      Branch: perl
53596            ! ext/POSIX/POSIX.xs
53597 ____________________________________________________________________________
53598 [ 22435] By: davem                                 on 2004/03/04  21:39:47
53599         Log: add deprecation warning for my $x if 0
53600      Branch: perl
53601            ! op.c t/lib/warnings/op
53602 ____________________________________________________________________________
53603 [ 22434] By: davem                                 on 2004/03/04  21:38:57
53604         Log: remove an 'if $a if 0' from AutoSplit.t
53605      Branch: perl
53606            ! lib/AutoSplit.t
53607 ____________________________________________________________________________
53608 [ 22433] By: davem                                 on 2004/03/04  20:33:44
53609         Log: retract 22328 and 22332: deprecation warning for my $x if foo
53610      Branch: perl
53611            ! embed.h op.c opcode.h opcode.pl pod/perldiag.pod pp.sym
53612            ! pp_proto.h t/lib/warnings/op
53613 ____________________________________________________________________________
53614 [ 22432] By: rgs                                   on 2004/03/04  12:18:11
53615         Log: Maintainers.pl update by MJD.
53616      Branch: perl
53617            ! Porting/Maintainers.pl
53618 ____________________________________________________________________________
53619 [ 22431] By: rgs                                   on 2004/03/04  10:35:59
53620         Log: Fix [perl #27357] Scalar Win32::GetOSVersion() broken in 5.8.3
53621              (by Steve Hay)
53622      Branch: perl
53623            + t/win32/getosversion.t
53624            ! MANIFEST win32/win32.c
53625 ____________________________________________________________________________
53626 [ 22430] By: rgs                                   on 2004/03/04  08:03:54
53627         Log: Clarify the difference between utf8::downgrade/upgrade
53628              and utf8::encode/decode (patch by Jarkko).
53629      Branch: perl
53630            ! lib/utf8.pm pod/perluniintro.pod
53631 ____________________________________________________________________________
53632 [ 22429] By: rgs                                   on 2004/03/03  23:01:56
53633         Log: A couple of notes in perl591delta
53634              (about Benchmark and the debugger.)
53635      Branch: perl
53636            ! pod/perl591delta.pod
53637 ____________________________________________________________________________
53638 [ 22428] By: rgs                                   on 2004/03/03  22:15:42
53639         Log: Subject: [PATCH] simplify sv.h
53640              From: Arthur Bergman <sky@nanisky.com>
53641              Date: Sun, 29 Feb 2004 22:04:53 +0000
53642              Message-Id: <4D3C272C-6B03-11D8-B799-000A95A2734C@nanisky.com>
53643      Branch: perl
53644            ! sv.h
53645 ____________________________________________________________________________
53646 [ 22427] By: rgs                                   on 2004/03/03  21:55:03
53647         Log: Speed up the unicode case mappings (for /i, lc, uc, etc).
53648              Subject: [PATCH] [perl #24826]
53649              From: Jarkko Hietaniemi <jhi@iki.fi>
53650              Date: Wed, 3 Mar 2004 09:37:21 +0200
53651              Message-Id: <9B5CBF96-6CE5-11D8-83B0-00039362CB92@iki.fi>
53652      Branch: perl
53653            ! lib/unicore/To/Fold.pl lib/unicore/To/Lower.pl
53654            ! lib/unicore/To/Title.pl lib/unicore/To/Upper.pl
53655            ! lib/unicore/mktables t/uni/case.pl utf8.c
53656 ____________________________________________________________________________
53657 [ 22426] By: rgs                                   on 2004/03/03  21:04:48
53658         Log: Subject: [PATCH] debugger (5.8.x and 5.9.x)
53659              From: Richard.Foley@t-online.de (Richard Foley)
53660              Date: Wed, 3 Mar 2004 16:10:25 +0100
53661              Message-Id: <200403031610.25080.richard.foley@rfi.net>
53662      Branch: perl
53663            ! lib/perl5db.pl
53664 ____________________________________________________________________________
53665 [ 22425] By: davem                                 on 2004/03/03  00:02:51
53666         Log: stop t/op/write.t failures under stdio by always closing files
53667              before reading them back; also replace `cat file` with a function
53668              to read in the file
53669      Branch: perl
53670            ! t/op/write.t
53671 ____________________________________________________________________________
53672 [ 22424] By: nicholas                              on 2004/03/02  22:22:49
53673         Log: Change the skip logic on the unicode tests so that they don't rely on
53674              miniperl's "dynamic loading unavailable" message
53675      Branch: perl
53676            ! t/uni/chomp.t t/uni/tr_7jis.t t/uni/tr_eucjp.t t/uni/tr_sjis.t
53677            ! t/uni/tr_utf8.t
53678 ____________________________________________________________________________
53679 [ 22423] By: nicholas                              on 2004/03/02  22:02:36
53680         Log: Work on eliminating systematic failures on make minitest:
53681              make minitest passes a -minitest flag to t/TEST
53682              t/TEST sees this and sets $ENV{PERL_CORE_MINITEST}
53683              Tests can choose to skip based on this.
53684              (Other tactic is to make loading of Errno by %! happen at run time.)
53685      Branch: perl
53686            ! Makefile.SH t/TEST t/io/binmode.t t/io/crlf.t t/io/layers.t
53687            ! t/io/open.t t/io/print.t t/io/read.t t/op/magic.t
53688 ____________________________________________________________________________
53689 [ 22422] By: davem                                 on 2004/03/02  21:33:22
53690         Log: Remove machine-dependent rounding dependency from write overflow
53691              tests
53692      Branch: perl
53693            ! t/op/write.t
53694 ____________________________________________________________________________
53695 [ 22421] By: rgs                                   on 2004/03/02  21:25:12
53696         Log: Subject: [PATCH] nmake distclean cleans too much from lib/Digest on Win32
53697              From: Steve Hay <steve.hay@uk.radan.com>
53698              Date: Fri, 27 Feb 2004 17:42:26 +0000
53699              Message-ID: <403F8182.5090607@uk.radan.com>
53700      Branch: perl
53701            ! win32/Makefile win32/makefile.mk
53702 ____________________________________________________________________________
53703 [ 22419] By: davem                                 on 2004/03/01  22:17:52
53704         Log: add tests for change 22414 (lvalue substr jollity)
53705              courtesy of Graham Barr.
53706      Branch: perl
53707            ! t/op/substr.t
53708 ____________________________________________________________________________
53709 [ 22418] By: davem                                 on 2004/03/01  22:00:11
53710         Log: integrate Time::HiRes 1.56 from CPAN
53711              (which is itself mostly derived from the bleedperl version)
53712      Branch: perl
53713            ! ext/Time/HiRes/Changes ext/Time/HiRes/HiRes.pm
53714            ! ext/Time/HiRes/Makefile.PL
53715 ____________________________________________________________________________
53716 [ 22417] By: mhx                                   on 2004/02/29  21:46:19
53717         Log: Make panics a bit more verbose to ease debugging.
53718      Branch: perl
53719            ! thread.h
53720 ____________________________________________________________________________
53721 [ 22415] By: davem                                 on 2004/02/29  18:06:45
53722         Log: make test breaks permissions on /dev/tty
53723              perl -i could fchmod(stdin) by mistake
53724      Branch: perl
53725            ! doio.c
53726 ____________________________________________________________________________
53727 [ 22414] By: davem                                 on 2004/02/29  16:21:34
53728         Log: Subject: Re: [perl #24346] pulling in stuff from outside the substr lvalue
53729              From: Graham Barr <gbarr@pobox.com>
53730              Date: Wed, 29 Oct 2003 09:56:53 +0000
53731              Message-Id: <3993BF6C-09F6-11D8-B6DD-0003938857CC@pobox.com>
53732
53733              make a variable aliased to an lvalue substr value work as expected
53734      Branch: perl
53735            ! mg.c
53736 ____________________________________________________________________________
53737 [ 22411] By: nicholas                              on 2004/02/29  13:08:28
53738         Log: Bump Socket's version to a real floating point value
53739      Branch: perl
53740            ! ext/Socket/Socket.pm
53741 ____________________________________________________________________________
53742 [ 22410] By: ams                                   on 2004/02/29  04:29:24
53743         Log: Back out _01 version suffix.
53744      Branch: perl
53745            ! ext/Storable/Storable.pm
53746 ____________________________________________________________________________
53747 [ 22409] By: davem                                 on 2004/02/28  23:29:10
53748         Log: Bump version numbers of moules affected by change #22258
53749              (removing /tmp and other insecurities)
53750      Branch: perl
53751            ! ext/DB_File/DB_File.pm ext/Devel/PPPort/PPPort.pm
53752            ! ext/Socket/Socket.pm ext/Storable/Storable.pm
53753            ! ext/Time/HiRes/HiRes.pm lib/CGI/Cookie.pm
53754            ! lib/ExtUtils/MakeMaker.pm lib/Memoize.pm lib/Shell.pm
53755            ! lib/perl5db.pl
53756 ____________________________________________________________________________
53757 [ 22408] By: davem                                 on 2004/02/28  22:37:08
53758         Log: make the bison-based parser threadsafe and capable of deep
53759              recursion by eradicating Perl_yylex_r()
53760      Branch: perl
53761            ! embed.fnc embed.h embedvar.h intrpvar.h mg.c perl.h perlapi.h
53762            ! perly.c proto.h toke.c
53763 ____________________________________________________________________________
53764 [ 22407] By: nicholas                              on 2004/02/28  16:10:20
53765         Log: Use File::Temp for tempfiles if it is available.
53766              (Based on a patch from Solar Designer <solar@openwall.com> in
53767              Message-ID: <20040125222218.GA13499@openwall.com>, the bulk of which
53768              was applied as change 22258)
53769      Branch: perl
53770            ! utils/perlbug.PL
53771 ____________________________________________________________________________
53772 [ 22406] By: mhx                                   on 2004/02/28  15:04:41
53773         Log: Fix segfaults when running under -Dx.
53774      Branch: perl
53775            ! dump.c
53776 ____________________________________________________________________________
53777 [ 22403] By: nicholas                              on 2004/02/27  17:56:30
53778         Log: Assimilate Cwd 2.15 from CPAN
53779      Branch: perl
53780            ! ext/Cwd/Changes lib/Cwd.pm
53781 ____________________________________________________________________________
53782 [ 22401] By: nicholas                              on 2004/02/27  16:27:19
53783         Log: Create a new local $_ without triggering tie by using local *_ = \my $a
53784              (an idea from Ton Hospel, Message-Id: <c1igq3$n84$1@post.home.lunix>)
53785      Branch: perl
53786            ! lib/File/Find.pm lib/File/Find/t/find.t
53787 ____________________________________________________________________________
53788 [ 22400] By: merijn                                on 2004/02/27  15:25:27
53789         Log: When threads are active we need -lpthread, but previous `fix' of
53790              now linked libraries invalidated the regex for sed (AIX 5 has no
53791              seperate libc.a and libc_r.a the latter links to the first)
53792      Branch: perl
53793            ! hints/aix.sh
53794 ____________________________________________________________________________
53795 [ 22397] By: nicholas                              on 2004/02/27  13:13:43
53796         Log: Correct thinko in comment.
53797      Branch: perl
53798            ! op.c
53799 ____________________________________________________________________________
53800 [ 22393] By: nicholas                              on 2004/02/27  10:41:39
53801         Log: In hsplit, if a normal hash has placeholders then clear them before
53802              splitting. We can do this safely because Storable ensures hsplit is
53803              not called while it builds restricted hashes (actually any hashes)
53804              This change may not make things faster, but now we have the choice.
53805      Branch: perl
53806            ! ext/Storable/t/restrict.t hv.c
53807 ____________________________________________________________________________
53808 [ 22391] By: nicholas                              on 2004/02/27  10:27:38
53809         Log: My re-implementation of hv_clear_placeholders was buggy - not sure why
53810              the tests still passed. Fixed.
53811      Branch: perl
53812            ! hv.c
53813 ____________________________________________________________________________
53814 [ 22383] By: nicholas                              on 2004/02/26  14:59:40
53815         Log: Moving all the e-mail addresses over by 1 column makes them start on
53816              an 8 column tabstop, which makes editing this file easier.
53817              So then I replaced spaces with tabs and made it smaller too.
53818      Branch: perl
53819            ! AUTHORS
53820 ____________________________________________________________________________
53821 [ 22382] By: nicholas                              on 2004/02/26  14:49:13
53822         Log: Add Mark Fowler
53823      Branch: perl
53824            ! AUTHORS
53825 ____________________________________________________________________________
53826 [ 22381] By: nicholas                              on 2004/02/26  13:11:07
53827         Log: Integrate:
53828              [ 22339]
53829              Mention 5.005_04 RC2
53830
53831              [ 22360]
53832              Update for 5.005_04 release
53833      Branch: perl
53834           !> pod/perlhist.pod
53835 ____________________________________________________________________________
53836 [ 22380] By: rgs                                   on 2004/02/26  13:03:43
53837         Log: Subject: [PATCH] Improved perlapi documentation for croak
53838              From: Mark Fowler <mark@twoshortplanks.com>
53839              Date: Wed, 25 Feb 2004 22:47:21 +0000 (GMT)
53840              Message-ID: <Pine.LNX.4.55.0402252242510.32152@gan.twoshortplanks.com>
53841
53842              (and regenerate perlapi.pod.)
53843      Branch: perl
53844            ! pod/perlapi.pod util.c
53845 ____________________________________________________________________________
53846 [ 22379] By: merijn                                on 2004/02/26  08:44:53
53847         Log: From: Art Haas <ahaas@airmail.net>
53848              Subject: Replacing '-rdynamic' in Configure script
53849              Date: Fri, 20 Feb 2004 13:53:56 -0600
53850              Message-ID: <20040220195400.31177.qmail@onion.perl.org>
53851      Branch: perl
53852            ! Configure
53853 ____________________________________________________________________________
53854 [ 22377] By: davem                                 on 2004/02/25  21:07:44
53855         Log: remove my work address
53856      Branch: perl
53857            ! AUTHORS
53858 ____________________________________________________________________________
53859 [ 22376] By: davem                                 on 2004/02/25  17:10:56
53860         Log: stop "const in void context" warning for a const in an
53861              optimised-away boolean expresssion, eg 5 || print;
53862      Branch: perl
53863            ! op.c op.h t/lib/warnings/op
53864 ____________________________________________________________________________
53865 [ 22375] By: merijn                                on 2004/02/25  11:13:12
53866         Log: Skip the Net/Ping/450_service failures on HP-UX for the time being
53867      Branch: perl
53868            ! lib/Net/Ping/t/450_service.t
53869 ____________________________________________________________________________
53870 [ 22374] By: merijn                                on 2004/02/25  09:32:12
53871         Log: AIX hints stage 3: remove AIX 3 and AIX 4 after split off
53872              One open issue left: promoting to cc_r for threaded builds
53873              need a review to permit users using -Dcc=xlc_r for non
53874              threaded builds
53875      Branch: perl
53876            ! hints/aix.sh
53877 ____________________________________________________________________________
53878 [ 22373] By: davem                                 on 2004/02/24  23:25:52
53879         Log: fix memory leak in @_ = ...; goto &sub
53880      Branch: perl
53881            ! pp_ctl.c
53882 ____________________________________________________________________________
53883 [ 22372] By: rgs                                   on 2004/02/24  22:44:34
53884         Log: Enhance test cleanliness by a very small factor.
53885      Branch: perl
53886            ! t/comp/parser.t
53887 ____________________________________________________________________________
53888 [ 22371] By: rgs                                   on 2004/02/24  22:34:06
53889         Log: Fix a segfault during optree construction. (bug #27024)
53890      Branch: perl
53891            ! op.c t/comp/parser.t
53892 ____________________________________________________________________________
53893 [ 22370] By: rgs                                   on 2004/02/24  20:39:26
53894         Log: Update Changes and AUTHORS.
53895      Branch: perl
53896            ! AUTHORS Changes
53897 ____________________________________________________________________________
53898 [ 22369] By: rgs                                   on 2004/02/24  19:53:51
53899         Log: Subject: [PATCH] optimization for map in scalar context
53900              From: Tassilo von Parseval <tassilo.parseval@post.rwth-aachen.de>
53901              Date: Tue, 24 Feb 2004 12:02:57 +0100
53902              Message-id: <20040224110257.GA5510@ethan>
53903      Branch: perl
53904            ! pp_ctl.c
53905 ____________________________________________________________________________
53906 [ 22368] By: rgs                                   on 2004/02/24  19:30:12
53907         Log: Subject: Bugfix for perlrequick and perlretut
53908              From: Mark Kvale <kvale@phy.ucsf.edu>
53909              Date: Tue, 24 Feb 2004 11:32:34 -0800
53910              Message-Id: <200402241132.34656.kvale@phy.ucsf.edu>
53911      Branch: perl
53912            ! pod/perlrequick.pod pod/perlretut.pod
53913 ____________________________________________________________________________
53914 [ 22367] By: rgs                                   on 2004/02/23  22:08:33
53915         Log: Instead of localising *_, use a dummy foreach loop to get
53916              a local value of $_
53917      Branch: perl
53918            ! lib/File/Find.pm
53919 ____________________________________________________________________________
53920 [ 22366] By: rgs                                   on 2004/02/23  21:40:02
53921         Log: Subject: Re: [perl #24338] Attribute::Handlers will trash UNIVERSAL
53922              From: alan <alan@pair.com>
53923              Date: Tue, 17 Feb 2004 14:23:08 -0500 (EST)
53924              Message-ID: <Pine.BSF.4.58.0402171418090.80983@smx.pair.com>
53925      Branch: perl
53926            ! lib/Attribute/Handlers.pm
53927 ____________________________________________________________________________
53928 [ 22365] By: rgs                                   on 2004/02/23  21:30:42
53929         Log: Update perl591delta.
53930      Branch: perl
53931            ! pod/perl591delta.pod
53932 ____________________________________________________________________________
53933 [ 22364] By: rgs                                   on 2004/02/23  20:56:38
53934         Log: Fix bug #26910: hints were not propagated into (?{...})
53935              blocks, except the utf8 pragma.
53936      Branch: perl
53937            ! pp_ctl.c t/lib/strict/refs t/lib/strict/subs t/lib/strict/vars
53938 ____________________________________________________________________________
53939 [ 22363] By: rgs                                   on 2004/02/23  19:15:53
53940         Log: Subject: Re: [perl #26905] "use bytes" doesn't apply byte semantics to concatenation
53941              From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
53942              Date: Sun, 22 Feb 2004 16:09:33 +0900
53943              Message-Id: <20040222160505.98E5.BQW10602@nifty.com>
53944
53945              Subject: [PATCH] Encode::CN::HZ (was Re: [perl #26905] "use bytes" doesn't apply byte semantics to concatenation)
53946              From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
53947              Date: Sun, 22 Feb 2004 18:41:43 +0900
53948              Message-Id: <20040222182357.6B39.BQW10602@nifty.com>
53949
53950              Plus, add a "_01" to the theoretical version number of Encode::CN::HZ.
53951      Branch: perl
53952            ! ext/Encode/lib/Encode/CN/HZ.pm pp_hot.c t/op/concat.t
53953 ____________________________________________________________________________
53954 [ 22362] By: rgs                                   on 2004/02/23  18:31:31
53955         Log: Subject: [PATCH] Benchmark for child processes
53956              From: Chia-liang Kao <clkao@clkao.org>
53957              Date: Mon, 23 Feb 2004 22:53:51 +0800
53958              Message-ID: <20040223145351.GH94376@portege.clkao.org>
53959      Branch: perl
53960            ! lib/Benchmark.pm
53961 ____________________________________________________________________________
53962 [ 22359] By: merijn                                on 2004/02/23  11:55:08
53963         Log: Subject: Re: Perl 5.8.1 on IRIX 5.3
53964              Date: Thu, 22 Jan 2004 18:35:26 +0100 (CET)
53965              From: Georg Schwarz <geos@epost.de>
53966              Message-Id: <E1Ajijm-0006ya-LE@mikro.physik.TU-Berlin.DE>
53967      Branch: perl
53968            ! hints/irix_5.sh
53969 ____________________________________________________________________________
53970 [ 22358] By: rgs                                   on 2004/02/22  21:49:47
53971         Log: Subject: initial patch for cygwin IPC via cygserver
53972              From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
53973              Date: Thu, 19 Feb 2004 09:01:13 -0800
53974              Message-ID: <20040219170113.GA2792@efn.org>
53975      Branch: perl
53976            ! ext/IPC/SysV/hints/cygwin.pl hints/cygwin.sh
53977 ____________________________________________________________________________
53978 [ 22357] By: davem                                 on 2004/02/22  15:43:53
53979         Log: Extend OP_AELEMFAST optimisation to lexical arrays
53980      Branch: perl
53981            ! ext/B/B/Concise.pm ext/B/B/Deparse.pm op.c op.h pp_hot.c
53982 ____________________________________________________________________________
53983 [ 22356] By: rgs                                   on 2004/02/21  16:51:52
53984         Log: We're not binary compatible with 5.8.
53985              Change PERL_API_VERSION to 5.9.1.
53986      Branch: perl
53987            ! patchlevel.h
53988 ____________________________________________________________________________
53989 [ 22355] By: rgs                                   on 2004/02/21  16:30:02
53990         Log: Document change #22353 in perldelta.
53991      Branch: perl
53992            ! pod/perl591delta.pod
53993 ____________________________________________________________________________
53994 [ 22354] By: rgs                                   on 2004/02/21  16:23:54
53995         Log: Increment the version number of B, due to the incompatible
53996              API change introduced by #22353 (no more op_seq method.)
53997      Branch: perl
53998            ! ext/B/B.pm
53999 ____________________________________________________________________________
54000 [ 22353] By: rgs                                   on 2004/02/21  16:18:32
54001         Log: Subject: Re: op_seq (was: Freeing code)
54002              From: Paul Johnson <paul@pjcj.net>
54003              Date: Sat, 21 Feb 2004 02:31:47 +0100
54004              Message-ID: <20040221013147.GB6953@pjcj.net>
54005
54006              Rework the OP structure to use less space.
54007              Remove op_seq (and simulate it in dump.c),
54008              replace it by op_opt and op_static,
54009              shrink op_type, remove PL_op_seqmax.
54010      Branch: perl
54011            ! bytecode.pl dump.c embed.h embedvar.h ext/B/B.xs
54012            ! ext/B/B/Asmdata.pm ext/B/B/C.pm ext/B/B/Concise.pm
54013            ! ext/B/B/Debug.pm ext/ByteLoader/byterun.c
54014            ! ext/ByteLoader/byterun.h intrpvar.h op.c op.h perlapi.h
54015            ! pod/perlintern.pod sv.c
54016 ____________________________________________________________________________
54017 [ 22352] By: rgs                                   on 2004/02/20  17:29:32
54018         Log: When you write C<my $_ ; for (...) {...}>, the lexical $_
54019              is not actually introduced by the for statement.
54020      Branch: perl
54021            ! op.c
54022 ____________________________________________________________________________
54023 [ 22351] By: davem                                 on 2004/02/20  15:38:10
54024         Log: remove a split test's dependence on -Dx output
54025              (needed after change #22343)
54026      Branch: perl
54027            ! t/op/split.t
54028 ____________________________________________________________________________
54029 [ 22350] By: davem                                 on 2004/02/20  15:34:27
54030         Log: add Deparse/Concise support for inplace sort (change 22349)
54031      Branch: perl
54032            ! ext/B/B/Concise.pm ext/B/B/Deparse.pm
54033 ____________________________________________________________________________
54034 [ 22349] By: davem                                 on 2004/02/20  14:54:35
54035         Log: optimise the sorting inplace of plain arrays: @a = sort @a
54036      Branch: perl
54037            ! op.c op.h pp_sort.c t/op/sort.t
54038 ____________________________________________________________________________
54039 [ 22348] By: davem                                 on 2004/02/20  14:18:13
54040         Log: Document the SVf_PADSTALE flag
54041      Branch: perl
54042            ! pad.c
54043 ____________________________________________________________________________
54044 [ 22347] By: rgs                                   on 2004/02/20  10:46:51
54045         Log: Delete lib/IPC/SysV.t (duplicate of ext/IPC/SysV/t/ipcsysv.t)
54046      Branch: perl
54047            - lib/IPC/SysV.t
54048            ! MANIFEST
54049 ____________________________________________________________________________
54050 [ 22346] By: rgs                                   on 2004/02/20  10:23:51
54051         Log: Subject: [PATCH] genmk95.pl touchup for distclean on Win98
54052              From: Greg Matheson <lang@ms.chinmin.edu.tw>
54053              Date: Fri, 20 Feb 2004 15:34:59 +0800
54054              Message-ID: <20040220153459.A30249@ms.chinmin.edu.tw>
54055      Branch: perl
54056            ! win32/genmk95.pl
54057 ____________________________________________________________________________
54058 [ 22345] By: rgs                                   on 2004/02/20  08:21:47
54059         Log: Upgrade to Term::ANSIColor 1.08.
54060      Branch: perl
54061            ! lib/Term/ANSIColor.pm lib/Term/ANSIColor/ChangeLog
54062            ! lib/Term/ANSIColor/README lib/Term/ANSIColor/test.pl
54063 ____________________________________________________________________________
54064 [ 22344] By: rgs                                   on 2004/02/19  21:17:10
54065         Log: Upgrade to prereleases of Math::BigInt 1.70 and
54066              Math::BigRat 0.12, by Tels.
54067      Branch: perl
54068            ! lib/Math/BigFloat.pm lib/Math/BigInt.pm
54069            ! lib/Math/BigInt/Calc.pm lib/Math/BigInt/CalcEmu.pm
54070            ! lib/Math/BigInt/t/bare_mbf.t lib/Math/BigInt/t/bare_mbi.t
54071            ! lib/Math/BigInt/t/bare_mif.t lib/Math/BigInt/t/bigfltpm.inc
54072            ! lib/Math/BigInt/t/bigfltpm.t lib/Math/BigInt/t/bigintc.t
54073            ! lib/Math/BigInt/t/bigintpm.inc lib/Math/BigInt/t/bigintpm.t
54074            ! lib/Math/BigInt/t/bigints.t lib/Math/BigInt/t/biglog.t
54075            ! lib/Math/BigInt/t/calling.t lib/Math/BigInt/t/config.t
54076            ! lib/Math/BigInt/t/mbimbf.inc lib/Math/BigInt/t/mbimbf.t
54077            ! lib/Math/BigInt/t/req_mbfw.t lib/Math/BigInt/t/sub_mbf.t
54078            ! lib/Math/BigInt/t/sub_mbi.t lib/Math/BigInt/t/sub_mif.t
54079            ! lib/Math/BigInt/t/upgrade.inc lib/Math/BigInt/t/upgrade.t
54080            ! lib/Math/BigInt/t/use_mbfw.t lib/Math/BigInt/t/with_sub.t
54081            ! lib/Math/BigRat.pm lib/Math/BigRat/t/bigfltpm.inc
54082            ! lib/Math/BigRat/t/bigfltrt.t lib/Math/BigRat/t/bigrat.t
54083            ! lib/bigint.pm t/lib/Math/BigInt/BareCalc.pm
54084            ! t/lib/Math/BigInt/Scalar.pm t/lib/Math/BigRat/Test.pm
54085 ____________________________________________________________________________
54086 [ 22343] By: davem                                 on 2004/02/19  13:43:18
54087         Log: -Dx could coredump on threaded builds because consts are now
54088              stored in the pad
54089      Branch: perl
54090            ! dump.c
54091 ____________________________________________________________________________
54092 [ 22342] By: rgs                                   on 2004/02/18  21:38:13
54093         Log: Add a tool to report dual-lived core modules that don't
54094              have the same version than the corresponding module on CPAN.
54095      Branch: perl
54096            + Porting/corecpan.pl
54097            ! MANIFEST
54098 ____________________________________________________________________________
54099 [ 22341] By: rgs                                   on 2004/02/18  14:04:11
54100         Log: Document the removal of PERL_XS_APIVERSION and PERL_PM_APIVERSION.
54101      Branch: perl
54102            ! pod/perl591delta.pod
54103 ____________________________________________________________________________
54104 [ 22338] By: rgs                                   on 2004/02/18  13:32:17
54105         Log: Add base.pm and fields.pm to the maintainer list.
54106              Remove a duplicate file from this list.
54107      Branch: perl
54108            ! Porting/Maintainers.pl
54109 ____________________________________________________________________________
54110 [ 22337] By: davem                                 on 2004/02/18  13:22:13
54111         Log: fix write test: -small_number may be displayed as 00.00 or -0.00
54112      Branch: perl
54113            ! t/op/write.t
54114 ____________________________________________________________________________
54115 [ 22334] By: merijn                                on 2004/02/18  12:18:52
54116         Log: Removed pm_apiversion and xs_apiversion as requested by
54117              the pumpkin. Chainsaw was still in perfect working order.
54118      Branch: perl
54119            ! Configure Cross/config.sh-arm-linux NetWare/config.wc
54120            ! NetWare/config_H.wc Porting/Glossary Porting/config.sh
54121            ! Porting/config_H config_h.SH configure.com epoc/config.sh
54122            ! plan9/config.plan9 plan9/config_h.sample
54123            ! plan9/config_sh.sample uconfig.h uconfig.sh win32/config.bc
54124            ! win32/config.gc win32/config.vc win32/config.vc64
54125            ! win32/config_H.bc win32/config_H.gc win32/config_H.vc
54126            ! win32/config_H.vc64 wince/config.ce wince/config_H.ce
54127 ____________________________________________________________________________
54128 [ 22332] By: davem                                 on 2004/02/18  11:14:43
54129         Log: Add tests for the C<my $x if foo> deprecation, and change the
54130              warning text
54131      Branch: perl
54132            ! op.c pod/perldiag.pod t/lib/warnings/op
54133 ____________________________________________________________________________
54134 [ 22330] By: mhx                                   on 2004/02/18  08:53:03
54135         Log: 1. Add section to perlxs.pod describing that the refcount of AVs/HVs
54136              returned from XSUBs through RETVAL isn't decremented as it is for
54137              SVs. This causes those XSUBs to leak memory and cannot be fixed
54138              without breaking existing CPAN modules that work around this bug.
54139
54140              2. Fix a memory leak of that kind in POSIX::localconv.
54141      Branch: perl
54142            ! ext/POSIX/POSIX.xs pod/perlxs.pod
54143 ____________________________________________________________________________
54144 [ 22329] By: rgs                                   on 2004/02/18  08:25:58
54145         Log: Encode has local changes. Up-version it.
54146      Branch: perl
54147            ! ext/Encode/Encode.pm
54148 ____________________________________________________________________________
54149 [ 22328] By: davem                                 on 2004/02/17  23:30:50
54150         Log: add deprecation warning for C<my $x if foo> and C<foo && (my $x)>
54151      Branch: perl
54152            ! op.c opcode.h opcode.pl pod/perldiag.pod pp.sym pp_proto.h
54153 ____________________________________________________________________________
54154 [ 22327] By: rgs                                   on 2004/02/17  23:22:45
54155         Log: It's better to localize *_ than $_, to avoid magic leakage
54156      Branch: perl
54157            ! lib/File/Find.pm
54158 ____________________________________________________________________________
54159 [ 22326] By: rgs                                   on 2004/02/17  23:18:25
54160         Log: One of the new tests of MIME::Base64 relies on a non-core module.
54161      Branch: perl
54162            - ext/MIME/Base64/t/bad-sv.t
54163            ! MANIFEST
54164 ____________________________________________________________________________
54165 [ 22325] By: rgs                                   on 2004/02/17  23:10:22
54166         Log: Upgrade to MIME::Base64 3.00.
54167              Fix t/warn.t so it works in the core.
54168              Reintegrate change #22309 in it. Bump $VERSION to 3.00_01.
54169      Branch: perl
54170            + ext/MIME/Base64/t/bad-sv.t ext/MIME/Base64/t/warn.t
54171            ! ext/MIME/Base64/Base64.pm ext/MIME/Base64/Base64.xs
54172            ! ext/MIME/Base64/Changes ext/MIME/Base64/QuotedPrint.pm
54173            ! ext/MIME/Base64/t/base64.t
54174 ____________________________________________________________________________
54175 [ 22323] By: rgs                                   on 2004/02/17  22:20:25
54176         Log: Be more clear. Use simple words.
54177      Branch: perl
54178            ! pod/perl591delta.pod
54179 ____________________________________________________________________________
54180 [ 22322] By: davem                                 on 2004/02/17  21:52:08
54181         Log: remove C<my $x if foo> construct from core modules
54182      Branch: perl
54183            ! ext/B/B/Deparse.pm ext/IO/lib/IO/Handle.pm
54184            ! ext/IO/lib/IO/Pipe.pm lib/ExtUtils/Liblist/Kid.pm
54185            ! lib/ExtUtils/MM_NW5.pm lib/ExtUtils/MM_Win95.pm
54186            ! lib/Net/NNTP.pm lib/Net/POP3.pm lib/Net/SMTP.pm
54187            ! lib/Pod/Parser.pm lib/Test/Harness.pm utils/h2xs.PL
54188 ____________________________________________________________________________
54189 [ 22321] By: rgs                                   on 2004/02/17  21:22:17
54190         Log: Dave Mitchell suggested this perldelta entry for the SVp_* reordering.
54191      Branch: perl
54192            ! pod/perl591delta.pod
54193 ____________________________________________________________________________
54194 [ 22320] By: rgs                                   on 2004/02/17  21:07:11
54195         Log: Bump $B::VERSION (because of change #22315).
54196      Branch: perl
54197            ! ext/B/B.pm
54198 ____________________________________________________________________________
54199 [ 22319] By: rgs                                   on 2004/02/17  21:03:09
54200         Log: Regenerate table of contents and other related files.
54201      Branch: perl
54202            ! MANIFEST pod/perl.pod pod/perltoc.pod
54203 ____________________________________________________________________________
54204 [ 22318] By: rgs                                   on 2004/02/17  20:06:04
54205         Log: Bump up perl's version number to 5.9.1.
54206              Add perl591delta in perl.pod.
54207              Update the sample config files in Porting/.
54208      Branch: perl
54209            ! NetWare/Makefile NetWare/config_H.wc Porting/config.sh
54210            ! Porting/config_H epoc/config.sh epoc/createpkg.pl patchlevel.h
54211            ! plan9/config.plan9 pod/perl.pod win32/Makefile
54212            ! win32/config_H.bc win32/config_H.gc win32/config_H.vc
54213            ! win32/config_H.vc64 win32/makefile.mk wince/Makefile.ce
54214 ____________________________________________________________________________
54215 [ 22317] By: davem                                 on 2004/02/17  19:28:58
54216         Log: 22316 had stupid precedence thinkos
54217      Branch: perl
54218            ! pp.c pp_hot.c
54219 ____________________________________________________________________________
54220 [ 22316] By: davem                                 on 2004/02/17  18:23:27
54221         Log: Slight update to #22315 ($lval=*FOO); optimise the hot tests,
54222              and fix some incorrect indentation
54223      Branch: perl
54224            ! pp.c pp_hot.c sv.c
54225 ____________________________________________________________________________
54226 [ 22315] By: davem                                 on 2004/02/17  18:01:52
54227         Log: Subject:  Re: [PATCH] GLOB to LVALUE assignment fix
54228              From:  Tassilo von Parseval <tassilo.parseval@post.rwth-aachen.de>
54229              Date:  Tue, 17 Feb 2004 17:32:16 +0100
54230              Message-Id:  <20040217163216.GA6805@ethan>
54231
54232              Make PVLV a superset of PVGV, so that $lvalue = *FOO works
54233      Branch: perl
54234            ! dump.c ext/B/B.pm ext/B/B.xs pp.c pp_hot.c sv.c sv.h t/op/gv.t
54235 ____________________________________________________________________________
54236 [ 22314] By: merijn                                on 2004/02/17  11:22:24
54237         Log: 1. Creating backward compatibility for Configure after patches
54238              #22227 and #22302 to still support 5.8.x and below
54239
54240              2. Small change for building on GNU hurd
54241              Date: Sun, 15 Feb 2004 23:27:17 +1100
54242              From: "Brendan O'Dea" <bod@debian.org>
54243              Message-ID: <20040215122717.GA26812@londo.c47.org>
54244      Branch: perl
54245            ! Configure Makefile.SH hints/gnu.sh
54246 ____________________________________________________________________________
54247 [ 22313] By: mhx                                   on 2004/02/16  20:27:40
54248         Log: Fix for Win32 build failure caused by the byacc to bison switch.
54249      Branch: perl
54250            ! perl.h
54251 ____________________________________________________________________________
54252 [ 22312] By: rgs                                   on 2004/02/16  13:16:43
54253         Log: Revert change 22308 (the patch was against maint, not blead)
54254      Branch: perl
54255            ! lib/ExtUtils/instmodsh
54256 ____________________________________________________________________________
54257 [ 22310] By: merijn                                on 2004/02/16  11:30:29
54258         Log: Fix typo in doc for Encode
54259              From: "Brendan O'Dea" <bod@debian.org>
54260              Date: Sun, 15 Feb 2004 23:27:17 +1100
54261              Message-ID: <20040215122717.GA26812@londo.c47.org>
54262      Branch: perl
54263            ! ext/Encode/Encode.pm
54264 ____________________________________________________________________________
54265 [ 22309] By: merijn                                on 2004/02/16  11:27:34
54266         Log: Missing semi-colon
54267              From: "Brendan O'Dea" <bod@debian.org>
54268              Date: Sun, 15 Feb 2004 23:27:17 +1100
54269              Message-ID: <20040215122717.GA26812@londo.c47.org>
54270      Branch: perl
54271            ! ext/MIME/Base64/Base64.xs
54272 ____________________________________________________________________________
54273 [ 22308] By: merijn                                on 2004/02/16  11:24:59
54274         Log: Add some basic POD to lib/ExtUtils/instmodsh so that
54275              it has a manpage.
54276              From: "Brendan O'Dea" <bod@debian.org>
54277              Date: Sun, 15 Feb 2004 23:27:17 +1100
54278              Message-ID: <20040215122717.GA26812@londo.c47.org>
54279      Branch: perl
54280            ! lib/ExtUtils/instmodsh
54281 ____________________________________________________________________________
54282 [ 22307] By: rgs                                   on 2004/02/15  11:02:49
54283         Log: Subject: [patch perlguts.pod] save_item doesn't handle magic
54284              From: Stas Bekman <stas@stason.org>
54285              Date: Fri, 13 Feb 2004 20:18:59 -0800
54286              Message-ID: <402DA1B3.2010608@stason.org>
54287      Branch: perl
54288            ! pod/perlguts.pod
54289 ____________________________________________________________________________
54290 [ 22306] By: davem                                 on 2004/02/15  00:24:26
54291         Log: Segmentation fault with
54292              sub x { shift; @a = @b; eval +{ use } }
54293      Branch: perl
54294            ! op.c perly.act perly.h perly.tab perly.y t/comp/parser.t
54295 ____________________________________________________________________________
54296 [ 22305] By: davem                                 on 2004/02/14  23:52:09
54297         Log: Enable v (verbose) switch on -Dp to display the top 8 elements
54298              on the parser stack at each reduce.  Also,
54299
54300              Subject: Re: switch from byacc to bison
54301              From: "Craig A. Berry" <craigberry@mac.com>
54302              Date: Sat, 14 Feb 2004 13:26:45 -0600
54303              Message-ID: <craigberry-8058A3.13264414022004@onion.develooper.com>
54304
54305              change #if DEBUGGING to #ifdef ... in perly.c
54306      Branch: perl
54307            ! perly.c pod/perlrun.pod
54308 ____________________________________________________________________________
54309 [ 22304] By: davem                                 on 2004/02/14  13:33:26
54310         Log: Subject:  Re: switch from byacc to bison
54311              From:  Abe Timmerman <abeltje@cpan.org>
54312              Date:  Sat, 14 Feb 2004 11:56:24 +0100
54313              Message-Id:  <200402141156.58185.abeltje@cpan.org>
54314
54315              Fix typos in pumpkin.pod
54316      Branch: perl
54317            ! Porting/pumpkin.pod
54318 ____________________________________________________________________________
54319 [ 22303] By: davem                                 on 2004/02/14  12:28:37
54320         Log: remove binary compatibility stuff from the yacc -> bison switch
54321              of change #22302
54322      Branch: perl
54323            ! embedvar.h intrpvar.h
54324 ____________________________________________________________________________
54325 [ 22302] By: davem                                 on 2004/02/14  02:06:53
54326         Log: Switch from byacc to bison and simplify the perly.* regeneration
54327              process
54328      Branch: perl
54329            + perly.act perly.tab regen_perly.pl
54330            - perly.fixer perly_c.diff perlyline.pl vms/perly_c.vms
54331            - vms/perly_h.vms vms/vms_yfix.pl
54332            ! MANIFEST Makefile.SH Porting/pumpkin.pod embedvar.h intrpvar.h
54333            ! op.c perl.h perlapi.h perly.c perly.h perly.y sv.c toke.c
54334            ! vms/descrip_mms.template
54335 ____________________________________________________________________________
54336 [ 22301] By: rgs                                   on 2004/02/13  21:11:25
54337         Log: Fix an fcntl example in perlopentut, spotted by MJD.
54338      Branch: perl
54339            ! pod/perlopentut.pod
54340 ____________________________________________________________________________
54341 [ 22300] By: davem                                 on 2004/02/12  23:18:20
54342         Log: The new -Dq option didn't actually work!
54343      Branch: perl
54344            ! perl.h
54345 ____________________________________________________________________________
54346 [ 22299] By: merijn                                on 2004/02/12  14:32:15
54347         Log: Subject: [comment patch] (ed: mg.c:mg_set() => mg.c:Perl_magic_set())
54348              From: Stas Bekman <stas@stason.org>
54349              Date: Wed, 11 Feb 2004 16:53:54 -0800
54350              Message-ID: <402ACEA2.4020907@stason.org>
54351      Branch: perl
54352            ! perl.c
54353 ____________________________________________________________________________
54354 [ 22298] By: rgs                                   on 2004/02/10  08:49:12
54355         Log: Subject: Re: [PATCH] Add "Camel" logo icon to perl.exe on Windows
54356              From: Greg Matheson <lang@ms.chinmin.edu.tw>
54357              Date: Tue, 10 Feb 2004 12:36:33 +0800
54358              Message-ID: <20040210043633.GA33671687@momotaro>
54359      Branch: perl
54360            ! win32/makefile.mk
54361 ____________________________________________________________________________
54362 [ 22297] By: rgs                                   on 2004/02/10  08:05:16
54363         Log: Add 5.005_04-RC1 and Leon in perlhist.
54364      Branch: perl
54365            ! pod/perlhist.pod
54366 ____________________________________________________________________________
54367 [ 22295] By: rgs                                   on 2004/02/09  22:48:54
54368         Log: Add a note in Unicode::UCD about the _getcode() function
54369              being copy-n-pasted in charnames.pm. (spotted by Merijn)
54370      Branch: perl
54371            ! lib/Unicode/UCD.pm
54372 ____________________________________________________________________________
54373 [ 22294] By: rgs                                   on 2004/02/09  21:48:15
54374         Log: Implement stacked filetest operators (-f -w -x $file).
54375      Branch: perl
54376            ! doio.c dump.c ext/B/B/Concise.pm op.c op.h
54377            ! pod/perl591delta.pod pod/perlfunc.pod pp_sys.c t/op/filetest.t
54378 ____________________________________________________________________________
54379 [ 22292] By: rgs                                   on 2004/02/09  21:17:40
54380         Log: Subject: Re: [perl #26073] sprintf miscounts padding when format is utf8
54381              From: hv@crypt.org
54382              Date: Mon, 09 Feb 2004 03:21:21 +0000
54383              Message-Id: <200402090321.i193LL907950@zen.crypt.org>
54384      Branch: perl
54385            ! sv.c t/op/sprintf2.t
54386 ____________________________________________________________________________
54387 [ 22291] By: rgs                                   on 2004/02/09  21:09:14
54388         Log: Subject: reduce overhead of charnames.pm, make op/pat.t work under miniperl
54389              From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
54390              Date: Mon, 9 Feb 2004 00:51:45 -0800
54391              Message-ID: <20040209085145.GA3204@efn.org>
54392              (plus an etymological notice)
54393      Branch: perl
54394            ! lib/charnames.pm
54395 ____________________________________________________________________________
54396 [ 22290] By: rgs                                   on 2004/02/08  21:34:27
54397         Log: Add the new private flag OPpGREP_LEX in B::Concise.
54398      Branch: perl
54399            ! ext/B/B/Concise.pm
54400 ____________________________________________________________________________
54401 [ 22289] By: rgs                                   on 2004/02/08  21:21:28
54402         Log: map and grep weren't working correctly with lexical $_ in
54403              scalar context, because pp_mapwhile and pp_grepwhile were using
54404              their target as a temporary slot to store the return value.
54405      Branch: perl
54406            ! pp_ctl.c pp_hot.c t/op/mydef.t
54407 ____________________________________________________________________________
54408 [ 22287] By: rgs                                   on 2004/02/08  12:01:35
54409         Log: Subject: Re: [PATCH] Add "Camel" logo icon to perl.exe on Windows
54410              From: Greg Matheson <lang@ms.chinmin.edu.tw>
54411              Date: Mon, 2 Feb 2004 16:52:44 +0800
54412              Message-ID: <20040202165244.A17415@ms.chinmin.edu.tw>
54413      Branch: perl
54414            ! win32/makefile.mk
54415 ____________________________________________________________________________
54416 [ 22286] By: rgs                                   on 2004/02/08  11:48:09
54417         Log: Subject: [PATCH] Correct some prototypes in perlapi.pod
54418              From: Steve Hay <steve.hay@uk.radan.com>
54419              Date: Fri, 06 Feb 2004 12:44:05 +0000
54420              Message-ID: <40238C15.2090200@uk.radan.com>
54421      Branch: perl
54422            ! pod/perlapi.pod sv.h
54423 ____________________________________________________________________________
54424 [ 22285] By: rgs                                   on 2004/02/08  11:44:22
54425         Log: Subject: [PATCH] Fix absolute path handling in installhtml
54426              From: Steve Hay <steve.hay@uk.radan.com>
54427              Date: Fri, 06 Feb 2004 16:14:14 +0000
54428              Message-ID: <4023BD56.6090903@uk.radan.com>
54429      Branch: perl
54430            ! installhtml
54431 ____________________________________________________________________________
54432 [ 22284] By: rgs                                   on 2004/02/08  11:42:08
54433         Log: Subject: [PATCH perlunicode.pod] chomp() cares about Unicode
54434              From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
54435              Date: Sat, 07 Feb 2004 00:08:36 +0900
54436              Message-Id: <20040206235116.0E36.BQW10602@nifty.com>
54437      Branch: perl
54438            ! pod/perlunicode.pod
54439 ____________________________________________________________________________
54440 [ 22282] By: nicholas                              on 2004/02/07  22:32:44
54441         Log: Comment to record why we can't clear placeholders in hsplit
54442      Branch: perl
54443            ! hv.c
54444 ____________________________________________________________________________
54445 [ 22281] By: nicholas                              on 2004/02/07  21:46:59
54446         Log: deleting keys in restricted hashes was leaking the entry. Yow!
54447      Branch: perl
54448            ! hv.c lib/Hash/Util.t
54449 ____________________________________________________________________________
54450 [ 22280] By: nicholas                              on 2004/02/07  21:20:16
54451         Log: Now hv_delete is able to ingore placeholders.
54452              (This is an XS visible change in the hash API. But not of documented
54453              behaviour)
54454      Branch: perl
54455            ! hv.c
54456 ____________________________________________________________________________
54457 [ 22279] By: nicholas                              on 2004/02/07  20:56:50
54458         Log: All whitespace is equal, but some whitespace is more equal than others
54459              (lib/DBM_Filter/Changes line had spaces. Spaces bad. Tabs better)
54460      Branch: perl
54461            ! MANIFEST
54462 ____________________________________________________________________________
54463 [ 22278] By: nicholas                              on 2004/02/07  19:50:10
54464         Log: hv_clear_placeholders now manipulates the linked lists directly, rather
54465              than using the iterator interface and calling hv_delete
54466              This will allow hv_delete to be simplified to remove most of the
54467              special casing related to placeholders.
54468      Branch: perl
54469            ! hv.c
54470 ____________________________________________________________________________
54471 [ 22273] By: merijn                                on 2004/02/06  11:47:14
54472         Log: Added hints_4.sh for specific AIX 4 support
54473              this is the next stage in the general cleanup process
54474              for the AIX hints. More to come
54475      Branch: perl
54476            + hints/aix_4.sh
54477            ! MANIFEST
54478 ____________________________________________________________________________
54479 [ 22272] By: rgs                                   on 2004/02/06  07:32:15
54480         Log: Fix a non-standard NAME pod section
54481              (by Smylers and Casey West)
54482      Branch: perl
54483            ! lib/Carp/Heavy.pm
54484 ____________________________________________________________________________
54485 [ 22268] By: rgs                                   on 2004/02/04  19:50:05
54486         Log: The "my $_" wasn't nice with foreach loops.
54487      Branch: perl
54488            ! op.c t/op/mydef.t
54489 ____________________________________________________________________________
54490 [ 22267] By: merijn                                on 2004/02/04  10:24:33
54491         Log: AIX 3 support removed from default hints after its separation
54492      Branch: perl
54493            ! hints/aix.sh
54494 ____________________________________________________________________________
54495 [ 22266] By: merijn                                on 2004/02/04  10:16:20
54496         Log: AIX 3 hints split off from default hints in preparation
54497              of a hint file cleanup. aix_4.sh will follow soon
54498      Branch: perl
54499            + hints/aix_3.sh
54500            ! MANIFEST
54501 ____________________________________________________________________________
54502 [ 22265] By: rgs                                   on 2004/02/03  21:54:23
54503         Log: More docs and tests for "my $_".
54504      Branch: perl
54505            ! pod/perlfunc.pod pod/perlsub.pod t/op/mydef.t
54506 ____________________________________________________________________________
54507 [ 22264] By: rgs                                   on 2004/02/03  20:33:02
54508         Log: Subject: [PATCH] was Re: [Fwd: CPAN Upload: J/JP/JPEACOCK/version-0.36.tar.gz]
54509              From: John Peacock <jpeacock@rowman.com>
54510              Date: Sun, 01 Feb 2004 21:10:07 -0500
54511              Message-ID: <401DB17F.5060808@rowman.com>
54512      Branch: perl
54513            ! embed.fnc embed.h lib/version.pm lib/version.t pod/perlapi.pod
54514            ! proto.h t/comp/use.t t/op/universal.t universal.c util.c
54515 ____________________________________________________________________________
54516 [ 22263] By: rgs                                   on 2004/02/03  19:41:11
54517         Log: Implement "my $_".
54518      Branch: perl
54519            + t/op/mydef.t
54520            ! MANIFEST gv.c op.c op.h opcode.h opcode.pl
54521            ! pod/perl591delta.pod pod/perlapi.pod pod/perlvar.pod pp.c
54522            ! pp_ctl.c pp_hot.c regexec.c toke.c
54523 ____________________________________________________________________________
54524 [ 22262] By: rgs                                   on 2004/02/03  16:38:25
54525         Log: Regenerate perlapi.pod.
54526      Branch: perl
54527            ! pod/perlapi.pod
54528 ____________________________________________________________________________
54529 [ 22261] By: merijn                                on 2004/02/03  12:57:37
54530         Log: If someone chooses xlc as default C compiler, threaded builds
54531              will fail, unless converted to cc_r
54532      Branch: perl
54533            ! hints/aix.sh
54534 ____________________________________________________________________________
54535 [ 22260] By: rgs                                   on 2004/02/01  20:47:35
54536         Log: Subject: patch for IRIX/gcc link issues
54537              From: Martin Pool <mbp@samba.org>
54538              Date: Wed, 28 Jan 2004 10:56:25 +1100
54539              Message-ID: <20040127235624.GA32612@hp.com>
54540      Branch: perl
54541            ! hints/irix_6.sh
54542 ____________________________________________________________________________
54543 [ 22259] By: davem                                 on 2004/02/01  17:42:44
54544         Log: update fix to Shell.pm in change #22254: make /dev/null portable
54545      Branch: perl
54546            ! lib/Shell.pm
54547 ____________________________________________________________________________
54548 [ 22258] By: davem                                 on 2004/02/01  17:40:02
54549         Log: Subject: Re: [perl #15063] /tmp issues
54550              From: Solar Designer <solar@openwall.com>
54551              Date: Mon, 26 Jan 2004 01:22:18 +0300
54552              Message-ID: <20040125222218.GA13499@openwall.com>
54553
54554              Remove insecure usage of /tmp from code and documentation
54555      Branch: perl
54556            ! ext/DB_File/DB_File.pm ext/DB_File/t/db-recno.t
54557            ! ext/Devel/PPPort/PPPort.pm ext/IO/t/io_unix.t
54558            ! ext/ODBM_File/ODBM_File.xs ext/POSIX/POSIX.pod
54559            ! ext/Socket/Socket.pm ext/Storable/Storable.pm
54560            ! ext/Time/HiRes/Makefile.PL lib/CGI/Cookie.pm
54561            ! lib/ExtUtils/MakeMaker.pm lib/ExtUtils/instmodsh
54562            ! lib/Memoize/t/tie.t lib/Memoize/t/tie_gdbm.t
54563            ! lib/Memoize/t/tie_ndbm.t lib/Memoize/t/tie_sdbm.t
54564            ! lib/Memoize/t/tie_storable.t lib/Shell.pm lib/dotsh.pl
54565            ! lib/perl5db.pl mpeix/nm mpeix/relink perly.fixer
54566            ! pod/perl571delta.pod pod/perl58delta.pod pod/perldbmfilter.pod
54567            ! pod/perldebug.pod pod/perlfaq5.pod pod/perlfaq8.pod
54568            ! pod/perlfunc.pod pod/perlipc.pod pod/perllexwarn.pod
54569            ! pod/perlobj.pod pod/perlop.pod pod/perlopentut.pod
54570            ! utils/c2ph.PL
54571 ____________________________________________________________________________
54572 [ 22257] By: davem                                 on 2004/02/01  15:46:24
54573         Log: threads documentation: fork on UNIX might not copy all threads.
54574      Branch: perl
54575            ! pod/perlthrtut.pod
54576 ____________________________________________________________________________
54577 [ 22256] By: davem                                 on 2004/02/01  15:34:59
54578         Log: add test for Change 22194:
54579              [perl #25147] "stmt if BAREWORD" bypasses strict 'subs' checks
54580      Branch: perl
54581            ! t/lib/strict/subs
54582 ____________________________________________________________________________
54583 [ 22254] By: davem                                 on 2004/02/01  13:11:00
54584         Log: Subject:  Patch for Shell.pm
54585              From:  Manuel Valente <mvalente@idealx.com>
54586              Date:  Tue, 27 Jan 2004 19:18:26 +0100
54587              Message-Id:  <4016AB72.1080503@idealx.com>
54588
54589              New option for Shell.pm to discard stderr instead of capturing it
54590      Branch: perl
54591            ! lib/Shell.pm
54592 ____________________________________________________________________________
54593 [ 22253] By: davem                                 on 2004/02/01  11:26:47
54594         Log: Make Time/HiRes/t/HiRes.t die more gracefully if its watchdog
54595              timeout triggers
54596      Branch: perl
54597            ! ext/Time/HiRes/t/HiRes.t
54598 ____________________________________________________________________________
54599 [ 22252] By: chip                                  on 2004/01/31  17:29:05
54600         Log: Don't show code closing STD{IN,OUT} before reopening, because
54601              doing so is unnecessary and occasionally harmful.
54602      Branch: perl
54603            ! pod/perlfork.pod pod/perlfunc.pod
54604 ____________________________________________________________________________
54605 [ 22248] By: rgs                                   on 2004/01/30  08:29:55
54606         Log: Another undocumented use of $_ : with reverse().
54607      Branch: perl
54608            ! pod/perlfunc.pod
54609 ____________________________________________________________________________
54610 [ 22247] By: merijn                                on 2004/01/30  08:18:28
54611         Log: Drop optimization for -O3 *and higher*
54612      Branch: perl
54613            ! ext/Storable/hints/linux.pl
54614 ____________________________________________________________________________
54615 [ 22246] By: rgs                                   on 2004/01/29  23:20:01
54616         Log: Regenerate perlapi.pod.
54617      Branch: perl
54618            ! pod/perlapi.pod
54619 ____________________________________________________________________________
54620 [ 22245] By: rgs                                   on 2004/01/29  21:08:28
54621         Log: Subject: Re: [perl #25269] panic: pp_match start/end pointers in m/^(?=.*(a)).*(bc)/
54622              From: hv@crypt.org
54623              Date: Thu, 29 Jan 2004 15:12:12 +0000
54624              Message-Id: <200401291512.i0TFCCr23736@zen.crypt.org>
54625      Branch: perl
54626            ! pp_hot.c t/op/pat.t
54627 ____________________________________________________________________________
54628 [ 22244] By: rgs                                   on 2004/01/28  22:00:09
54629         Log: I'm the new maintainer of Switch.
54630              Sync with the CPAN version of Switch 2.10.
54631      Branch: perl
54632            ! Porting/Maintainers.pl lib/Switch.pm lib/Switch/README
54633 ____________________________________________________________________________
54634 [ 22243] By: merijn                                on 2004/01/28  20:30:40
54635         Log: Message-ID: <40113F7B.6050701@davidfavor.com>
54636              Date: Fri, 23 Jan 2004 09:36:27 -0600
54637              From: David Favor <david@davidfavor.com>
54638              Part I: In hints/aix.sh change -qmaxmem=16384 to -qmaxmem=-1
54639              so no compilation stack limits are imposed.
54640      Branch: perl
54641            ! hints/aix.sh
54642 ____________________________________________________________________________
54643 [ 22242] By: rgs                                   on 2004/01/27  22:44:30
54644         Log: Update perl591delta.pod with what we've done so far.
54645      Branch: perl
54646            ! pod/perl591delta.pod
54647 ____________________________________________________________________________
54648 [ 22239] By: rgs                                   on 2004/01/27  21:54:31
54649         Log: Regenerate Changes.
54650              Only include changes from the perl branch.
54651      Branch: perl
54652            ! Changes
54653 ____________________________________________________________________________
54654 [ 22238] By: nicholas                              on 2004/01/27  21:51:27
54655         Log: Storable's hints file shouldn't blanket set optimize to -O2 on Linux
54656              Only *drop* optimize to -O2 if it's -O3 on gcc on Linux
54657      Branch: perl
54658            ! ext/Storable/hints/linux.pl
54659 ____________________________________________________________________________
54660 [ 22235] By: rgs                                   on 2004/01/27  21:19:03
54661         Log: More punctuation, good.
54662      Branch: perl
54663            ! pod/perlfunc.pod
54664 ____________________________________________________________________________
54665 [ 22228] By: rgs                                   on 2004/01/27  10:31:09
54666         Log: Subject: [PATCH] 5.8.3 -- fix signal comments in L<perlfunc/system>
54667              From: Brendan O'Dea <bod@debian.org>
54668              Date: Sun, 25 Jan 2004 11:23:48 +1100
54669              Message-ID: <20040125002348.GA31407@londo.c47.org>
54670      Branch: perl
54671            ! pod/perlfunc.pod
54672 ____________________________________________________________________________
54673 [ 22227] By: davem                                 on 2004/01/26  23:53:06
54674         Log: Subject:  [PATCH] myconfig.SH
54675              From:  "Daniel S. Lewart" <lewart@uiuc.edu>
54676              Date:  Sun, 25 Jan 2004 22:11:25 -0600
54677              Message-Id:  <20040125221125.A5390@staff1.cso.uiuc.edu>
54678
54679              make perl -V show the major release as 5 rather than 5.0
54680      Branch: perl
54681            ! myconfig.SH
54682 ____________________________________________________________________________
54683 [ 22224] By: merijn                                on 2004/01/26  22:10:13
54684         Log: Document change 22192
54685              We still need tests!
54686      Branch: perl
54687            ! lib/Exporter.pm
54688 ____________________________________________________________________________
54689 [ 22223] By: rgs                                   on 2004/01/26  21:58:14
54690         Log: Subject: [PATCH] fix vmsish.t #25
54691              From: "Craig A. Berry" <craigberry@mac.com>
54692              Date: Sat, 24 Jan 2004 18:45:35 -0600
54693              Message-ID: <401311AF.1060706@mac.com>
54694      Branch: perl
54695            ! lib/vmsish.t
54696 ____________________________________________________________________________
54697 [ 22221] By: nicholas                              on 2004/01/26  21:18:31
54698         Log: Merge dynamic perldelta from maint (22081)
54699              So now perldelta.pod is copied at build time from perl591delta.pod
54700              perl590delta.pod is as released to CPAN by Hugo
54701              Regen lots of makefiles, pods and the MANIFEST
54702      Branch: perl
54703            + pod/perl591delta.pod
54704           +> pod/perl590delta.pod
54705            - pod/perldelta.pod
54706            ! MANIFEST Makefile.SH pod.lst pod/perl.pod pod/perltoc.pod
54707            ! vms/descrip_mms.template win32/Makefile win32/makefile.mk
54708            ! win32/pod.mak
54709 ____________________________________________________________________________
54710 [ 22218] By: rgs                                   on 2004/01/25  23:35:45
54711         Log: Remove the caveat about detached threads crashing on Windows
54712              (fixed by #22201). Bump up the version of threads.pm.
54713      Branch: perl
54714            ! ext/threads/threads.pm
54715 ____________________________________________________________________________
54716 [ 22217] By: nicholas                              on 2004/01/25  22:17:47
54717         Log: Need to skip Storable's threads test on 5.8.2 with ithreads and
54718              -DDEBUGGING, because it tickles a bug. (The same bug that got DBI)
54719      Branch: perl
54720            ! ext/Storable/t/threads.t
54721 ____________________________________________________________________________
54722 [ 22216] By: davem                                 on 2004/01/25  12:06:04
54723         Log: update MANIFEST for 2 new Storable test files introduced by 22205
54724      Branch: perl
54725            ! MANIFEST
54726 ____________________________________________________________________________
54727 [ 22215] By: davem                                 on 2004/01/25  12:00:04
54728         Log: add test for change 22209 (Remove small memory leak in newATTRSUB)
54729      Branch: perl
54730            ! t/op/closure.t
54731 ____________________________________________________________________________
54732 [ 22209] By: davem                                 on 2004/01/25  02:04:23
54733         Log: Remove small memory leak in newATTRSUB that manifested as a
54734              leaking scalar after the interpeter was cloned
54735      Branch: perl
54736            ! op.c
54737 ____________________________________________________________________________
54738 [ 22208] By: davem                                 on 2004/01/24  16:13:17
54739         Log: Subject:  [perl #24942] fields::inherit doesn't bless derived
54740              package's \%FIELDS, results in phash deprecation errors.
54741              From:  "nothingmuch@woobling.org (via RT)" <perlbug-followup@perl.org>
54742              Date:  18 Jan 2004 15:15:46 -0000
54743              Message-Id:  <rt-3.0.8-24942-70144.16.7177902690315@perl.org>
54744      Branch: perl
54745            ! lib/base.pm lib/base/t/fields-base.t
54746 ____________________________________________________________________________
54747 [ 22207] By: davem                                 on 2004/01/24  15:36:28
54748         Log: Subject:  Re: Doc patches for File::Find
54749              From:  Mark Jason Dominus <mjd@plover.com>
54750              Date:  Thu, 22 Jan 2004 09:30:58 -0500
54751              Message-Id:  <20040122143058.29226.qmail@plover.com>
54752
54753              Better document the fact that neither find() nor finddepth() do a
54754              breath-first search.
54755      Branch: perl
54756            ! lib/File/Find.pm
54757 ____________________________________________________________________________
54758 [ 22206] By: ams                                   on 2004/01/24  11:06:51
54759         Log: Subject: [PATCH] Storable-2.08/t/code.t
54760              From: Slaven Rezic <slaven@rezic.de>
54761              Date: Sat, 8 Nov 2003 16:26:19 +0100 (CET)
54762              Message-Id: <200311081526.hA8FQJgb011684@vran.herceg.de>
54763      Branch: perl
54764            ! ext/Storable/t/code.t
54765 ____________________________________________________________________________
54766 [ 22205] By: ams                                   on 2004/01/24  11:03:36
54767         Log: Subject: [patch] make Storable thread-safe
54768              From: Stas Bekman <stas@stason.org>
54769              Date: Mon, 19 Jan 2004 00:20:02 -0800
54770              Message-Id: <400B9332.4070106@stason.org>
54771
54772              Subject: Re: Subroutine reference bug in Storable
54773              From: Slaven Rezic <slaven@rezic.de>
54774              Date: 14 Nov 2003 23:22:55 +0100
54775              Message-Id: <874qx6zj28.fsf@vran.herceg.de>
54776
54777              Subject: Re: [perl #25145] [PATCH] Storable segfaults with B::Deparse +
54778              overload + cyclic structures
54779              From: Sam Vilain <sam@vilain.net>
54780              Date: Tue, 20 Jan 2004 22:30:15 +1300
54781              Message-Id: <200401202230.15865.sam@vilain.net>
54782      Branch: perl
54783            + ext/Storable/t/just_plain_nasty.t ext/Storable/t/threads.t
54784            ! ext/Storable/ChangeLog ext/Storable/MANIFEST
54785            ! ext/Storable/Storable.pm ext/Storable/Storable.xs
54786            ! ext/Storable/t/code.t
54787 ____________________________________________________________________________
54788 [ 22204] By: ams                                   on 2004/01/24  08:59:11
54789         Log: Upgrade to Locale::Maketext 1.08.
54790      Branch: perl
54791            + lib/Locale/Maketext/t/06super.t
54792            ! MANIFEST lib/Locale/Maketext.pm lib/Locale/Maketext/ChangeLog
54793            ! lib/Locale/Maketext/TPJ13.pod
54794 ____________________________________________________________________________
54795 [ 22203] By: davem                                 on 2004/01/23  23:06:49
54796         Log: make some t/op/write.t failures more verbose
54797      Branch: perl
54798            ! t/op/write.t
54799 ____________________________________________________________________________
54800 [ 22201] By: davem                                 on 2004/01/23  22:26:47
54801         Log: Subject:  Re: threads::shared::queue;
54802              From:  Jan Dubois <jand@ActiveState.com>
54803              Date:  Thu, 22 Jan 2004 19:18:46 -0800
54804              Message-Id:  <fi41105602ds7a9o4fko2oae7aokbg6als@4ax.com>
54805
54806              Avoid threads+win32 crash by freeing Perl interpreter slightly later
54807      Branch: perl
54808            ! ext/threads/threads.xs
54809 ____________________________________________________________________________
54810 [ 22200] By: nicholas                              on 2004/01/23  18:28:43
54811         Log: test that use encoding; doesn't cause references to be stringified
54812      Branch: perl
54813            ! t/uni/chomp.t
54814 ____________________________________________________________________________
54815 [ 22199] By: nicholas                              on 2004/01/23  18:03:41
54816         Log: Document chomp's travels in the wonderful world of use encoding;
54817      Branch: perl
54818            ! pod/perlfunc.pod
54819 ____________________________________________________________________________
54820 [ 22198] By: nicholas                              on 2004/01/23  17:41:01
54821         Log: Check the return values of chomp
54822              (more tricky than it may seem, as the return value is unicode)
54823      Branch: perl
54824            ! t/uni/chomp.t
54825 ____________________________________________________________________________
54826 [ 22197] By: nicholas                              on 2004/01/23  13:57:46
54827         Log: Test return values of all chomps
54828      Branch: perl
54829            ! t/op/chop.t
54830 ____________________________________________________________________________
54831 [ 22196] By: nicholas                              on 2004/01/23  13:24:41
54832         Log: Subject: Re: [perl #24888] chomp ignores utf8
54833              From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
54834              Message-Id: <20040116040355.A849.BQW10602@nifty.com>
54835              Date: Fri, 16 Jan 2004 04:13:00 +0900
54836      Branch: perl
54837            + t/uni/chomp.t
54838            ! MANIFEST doop.c t/op/chop.t
54839 ____________________________________________________________________________
54840 [ 22195] By: davem                                 on 2004/01/22  20:48:03
54841         Log: Subject: Re: [PATCH] Add "Camel" logo icon to perl.exe on Windows
54842              From: Steve Hay <steve.hay@uk.radan.com>
54843              Date: Thu, 22 Jan 2004 17:08:29 +0000
54844              Message-ID: <4010038D.4070104@uk.radan.com>
54845      Branch: perl
54846            + win32/makeico.pl win32/perlexe.rc
54847            ! MANIFEST README.win32 win32/Makefile win32/makefile.mk
54848 ____________________________________________________________________________
54849 [ 22194] By: davem                                 on 2004/01/22  00:24:51
54850         Log: C<use strict; print if foo> didn't give the
54851              "Bareword not allowed" error unless warnings were enabled
54852      Branch: perl
54853            ! op.c
54854 ____________________________________________________________________________
54855 [ 22193] By: nicholas                              on 2004/01/21  21:58:10
54856         Log: Convert the older parts of op/bop.t over to test.pl
54857      Branch: perl
54858            ! t/op/bop.t
54859 ____________________________________________________________________________
54860 [ 22192] By: merijn                                on 2004/01/21  21:10:10
54861         Log: ':flock' not recognized unless it's first
54862              Exporter::Heavy now will treat :, /, and ! special in
54863              all arguments, not only if the _first_ arg starts with it
54864              Date: Wed, 21 Jan 2004 08:32:47 -0500
54865              Message-ID: <20040121133248.3359.qmail@plover.com>
54866      Branch: perl
54867            ! lib/Exporter/Heavy.pm
54868 ____________________________________________________________________________
54869 [ 22191] By: davem                                 on 2004/01/21  20:45:48
54870         Log: Subject:  PATCH for perl-5.8.4
54871              From:  "Edward S. Peschko" <esp5@pge.com>
54872              Date:  Mon, 19 Jan 2004 17:21:18 -0800
54873              Message-Id:  <20040120012118.GA29151@mdssdev05.comp.pge.com>
54874
54875              Add @DynaLoader::dl_shared_objects feature
54876      Branch: perl
54877            ! ext/DynaLoader/DynaLoader_pm.PL
54878 ____________________________________________________________________________
54879 [ 22190] By: davem                                 on 2004/01/21  20:14:51
54880         Log: remove the platform dependencies of the write.t tests introduced
54881              by change #22161, by hard-coding the expected outputs rather
54882              than using sprintf('%f').
54883      Branch: perl
54884            ! t/op/write.t
54885 ____________________________________________________________________________
54886 [ 22189] By: davem                                 on 2004/01/20  22:41:14
54887         Log: Fix typo in patch #22188
54888      Branch: perl
54889            ! pod/perlfunc.pod
54890 ____________________________________________________________________________
54891 [ 22188] By: davem                                 on 2004/01/20  22:36:10
54892         Log: warn that C<$x : unique> operates on the typeglob, so affects @x
54893              and %x too.
54894      Branch: perl
54895            ! pod/perlfunc.pod
54896 ____________________________________________________________________________
54897 [ 22187] By: davem                                 on 2004/01/20  22:27:50
54898         Log: "sub foo :unique" segfaults
54899
54900              Turn these two into compile-time errors until such time as
54901              someone thinks of a useful meaning for them:
54902              my $x : unique
54903              sub foo : unique
54904      Branch: perl
54905            ! ext/threads/t/problems.t pod/perldiag.pod toke.c xsutils.c
54906 ____________________________________________________________________________
54907 [ 22186] By: rgs                                   on 2004/01/20  21:16:01
54908         Log: Add a new test file for situations where threads may interfere.
54909              Subject: Re: "restricted hashes" hit again !
54910              From: Stas Bekman <stas@stason.org>
54911              Date: Tue, 23 Dec 2003 15:32:26 -0800
54912              Message-ID: <3FE8D08A.4090806@stason.org>
54913      Branch: perl
54914            + t/op/threads.t
54915            ! MANIFEST
54916 ____________________________________________________________________________
54917 [ 22185] By: davem                                 on 2004/01/20  21:01:08
54918         Log: Document CVf_UNIQUE flag better
54919      Branch: perl
54920            ! cv.h
54921 ____________________________________________________________________________
54922 [ 22183] By: rgs                                   on 2004/01/20  20:26:18
54923         Log: Fix precedence errors and add some cleanup in the new
54924              DBM_Filter tests
54925      Branch: perl
54926            ! lib/DBM_Filter/t/01error.t lib/DBM_Filter/t/02core.t
54927 ____________________________________________________________________________
54928 [ 22182] By: davem                                 on 2004/01/20  00:16:42
54929         Log: second attempt to fix [perl #24914] freeing a CV reference that was
54930              currently being executed caused coredumps. The dounwind called by
54931              die unwinds all the contexts on the context stack before unwinding
54932              the save stack.  To stop premature freeing of the CV, hold
54933              references to it on both stacks.
54934      Branch: perl
54935            ! cop.h pp_ctl.c pp_hot.c pp_sort.c t/op/closure.t
54936 ____________________________________________________________________________
54937 [ 22181] By: davem                                 on 2004/01/19  23:41:37
54938         Log: change #22071 (taint bug in $^0) introduced a potential double
54939              free(), because PL_osname may get freed but not nulled if a taint
54940              test fails in between. Mea cupla and all that...
54941      Branch: perl
54942            ! mg.c
54943 ____________________________________________________________________________
54944 [ 22180] By: rgs                                   on 2004/01/19  22:32:27
54945         Log: Subject: Re: [perl #24926] chop/~ mangles UTF8 [PATCH]
54946              From: Gisle Aas <gisle@ActiveState.com>
54947              Date: 17 Jan 2004 01:29:02 -0800
54948              Message-ID: <lrn08m7wkh.fsf@caliper.activestate.com>
54949              (test rewritten to fit in blead)
54950      Branch: perl
54951            ! pp.c t/op/bop.t
54952 ____________________________________________________________________________
54953 [ 22179] By: merijn                                on 2004/01/19  21:36:48
54954         Log: Subject: [PATCH] dl_unload_file for HP-UX
54955              Date: Mon, 12 Jan 2004 07:49:44 -0800
54956              From: Neil Watkiss <neil.watkiss@sophos.com>
54957              Message-ID: <20040112154944.GA15412@ActiveState.com>
54958      Branch: perl
54959            ! ext/DynaLoader/dl_hpux.xs
54960 ____________________________________________________________________________
54961 [ 22177] By: merijn                                on 2004/01/19  16:11:22
54962         Log: Allow -Uinc_version_list to mean -Dinc_version_list=none
54963              See INSTALL for more details
54964      Branch: perl
54965            ! Configure
54966 ____________________________________________________________________________
54967 [ 22175] By: merijn                                on 2004/01/19  16:05:50
54968         Log: Describe how to limit the perl's default @INC during Configure
54969              to _not_ include older versions
54970      Branch: perl
54971            ! INSTALL
54972 ____________________________________________________________________________
54973 [ 22174] By: merijn                                on 2004/01/19  10:41:24
54974         Log: Subject: [PATCH bleadperl] rescue PerlIO_getname for VMS
54975              Date: Sun, 18 Jan 2004 12:51:23 -0600
54976              From: "Craig A. Berry" <craigberry@mac.com>
54977              Message-ID: <400AD5AB.3080708@mac.com>
54978      Branch: perl
54979            ! perlio.c
54980 ____________________________________________________________________________
54981 [ 22173] By: merijn                                on 2004/01/19  10:27:53
54982         Log: Subject: [PATCH bleadperl] detect nanosleep on VMS
54983              Date: Sun, 18 Jan 2004 17:03:30 -0600
54984              From: "Craig A. Berry" <craigberry@mac.com>
54985              Message-ID: <400B10C2.9060504@mac.com>
54986      Branch: perl
54987            ! configure.com
54988 ____________________________________________________________________________
54989 [ 22172] By: davem                                 on 2004/01/17  23:58:04
54990         Log: back out change #24914 "freeing a CV reference that was currently
54991              being executed caused coredumps".
54992              The new test case sometimes locks up linux's malloc, and with
54993              Perl's malloc the test code still coredumps :-(
54994      Branch: perl
54995            ! perl.c scope.c scope.h sv.c t/op/closure.t
54996 ____________________________________________________________________________
54997 [ 22171] By: rgs                                   on 2004/01/17  22:00:48
54998         Log: Subject: Refactor VOS patches for bleadperl and perl-5.8.x
54999              From: "Green, Paul" <Paul.Green@stratus.com>
55000              Date: Thu, 15 Jan 2004 16:00:15 -0500
55001              Message-ID: <A2A34F15EE916148BC4C4748223E67A4069FBB15@exna4.stratus.com>
55002      Branch: perl
55003            ! README.vos hv.c pp_pack.c vos/Changes
55004 ____________________________________________________________________________
55005 [ 22170] By: rgs                                   on 2004/01/17  21:25:08
55006         Log: Subject: Re: open/or inconsistency
55007              From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
55008              Date: Sat, 17 Jan 2004 19:59:55 +0900
55009              Message-Id: <20040117195729.623A.BQW10602@nifty.com>
55010              (plus a test.)
55011              Don't produce the warning for constructs like
55012              open my $fh, $file or die;
55013      Branch: perl
55014            ! op.c t/lib/warnings/op
55015 ____________________________________________________________________________
55016 [ 22169] By: davem                                 on 2004/01/17  18:02:31
55017         Log: Subject:  Perl core dumps when running out of memory [PATCH]
55018              From:  Gisle Aas <gisle@ActiveState.com>
55019              Date:  17 Jan 2004 06:18:13 -0800
55020              Message-Id:  <lrsmiebqvu.fsf@caliper.activestate.com>
55021
55022              Display 'out of memeory' errors using low-level I/O to avoid
55023              recursive failure and so coredumps.
55024      Branch: perl
55025            ! util.c
55026 ____________________________________________________________________________
55027 [ 22168] By: davem                                 on 2004/01/17  17:38:21
55028         Log: From: "Paul Marquess" <Paul.Marquess@btinternet.com>
55029              Subject: [PATCH ] Enhanced DBM Filters
55030              Date: Sat, 17 Jan 2004 16:44:53 -0000
55031              Message-ID: <AIEAJICLCBDNAAOLLOKLAEPPPHAA.Paul.Marquess@btinternet.com>
55032
55033              add DBM_Filter
55034      Branch: perl
55035            + lib/DBM_Filter.pm lib/DBM_Filter/Changes
55036            + lib/DBM_Filter/compress.pm lib/DBM_Filter/encode.pm
55037            + lib/DBM_Filter/int32.pm lib/DBM_Filter/null.pm
55038            + lib/DBM_Filter/t/01error.t lib/DBM_Filter/t/02core.t
55039            + lib/DBM_Filter/t/compress.t lib/DBM_Filter/t/encode.t
55040            + lib/DBM_Filter/t/int32.t lib/DBM_Filter/t/null.t
55041            + lib/DBM_Filter/t/utf8.t lib/DBM_Filter/utf8.pm
55042            + lib/dbm_filter_util.pl
55043            ! MANIFEST
55044 ____________________________________________________________________________
55045 [ 22167] By: davem                                 on 2004/01/17  16:12:32
55046         Log: freeing a CV reference that was currently being
55047              executed caused coredumps
55048      Branch: perl
55049            ! perl.c scope.c scope.h sv.c t/op/closure.t
55050 ____________________________________________________________________________
55051 [ 22166] By: nicholas                              on 2004/01/17  15:07:31
55052         Log: Integrate final perl583delta
55053      Branch: perl
55054           !> pod/perl583delta.pod
55055 ____________________________________________________________________________
55056 [ 22163] By: davem                                 on 2004/01/16  19:24:14
55057         Log: Subject:  Re: [perl #24816] Magic vars seem unsure if they are purely numeric
55058              From:  Yitzchak Scott-Thoennes <sthoenna@efn.org>
55059              Date:  Thu, 15 Jan 2004 14:10:37 -0800
55060              Message-Id:  <20040115221037.GA2392@efn.org>
55061
55062              Add sv_2iv_flags() to allow magic to be optionally processed.
55063      Branch: perl
55064            ! doop.c embed.fnc embed.h global.sym pod/perlapi.pod pp.c
55065            ! proto.h sv.c sv.h t/op/bop.t
55066 ____________________________________________________________________________
55067 [ 22162] By: davem                                 on 2004/01/16  16:39:17
55068         Log: format bug with undefined _TOP
55069              name of format_TOP now derived from the name of the current
55070              filehandle rather then the name of the  format associetd with that
55071              handle
55072      Branch: perl
55073            ! pp_sys.c t/op/write.t
55074 ____________________________________________________________________________
55075 [ 22161] By: davem                                 on 2004/01/16  13:29:26
55076         Log: Subject: [PATCH] format/write (version 2)
55077              From: LAUN Wolfgang <wolfgang.laun@alcatel.at>
55078              Message-ID: <DF27CDCBD2581D4B88431901094E4B4D02B0C4D3@attmsx1>
55079
55080              Fixes and additions to formats:
55081
55082              Improvement: NULL chars in picture line
55083              Bugfix: C<@*> shown in output if not alone on a line
55084              New feature: C<^*> for variable-width, one-line-at-a-time text
55085              Improvement: Diagnostic on C<@#> and C<~~>
55086              Bugfix: Segmentation fault on big numbers
55087              Improvement (maybe): Truncation of numbers produces misleading output
55088              Bugfix: "}" terminates format
55089              Bugfix: Error when copying non-UTF to UTF (EBCDIC only)
55090      Branch: perl
55091            ! embed.fnc embed.h form.h pod/perldiag.pod pod/perlform.pod
55092            ! pp_ctl.c proto.h t/op/write.t toke.c
55093 ____________________________________________________________________________
55094 [ 22160] By: davem                                 on 2004/01/15  23:49:02
55095         Log: buigid #24905 - the code planted to call glob() retained an
55096              extraneous targ index in a pushmark op, leasing to strangeness
55097              when the op was freed
55098      Branch: perl
55099            ! op.c
55100 ____________________________________________________________________________
55101 [ 22159] By: rgs                                   on 2004/01/15  22:19:25
55102         Log: Upgrade to Time::HiRes 1.55
55103      Branch: perl
55104            ! ext/Time/HiRes/Changes ext/Time/HiRes/HiRes.pm
55105            ! ext/Time/HiRes/HiRes.xs
55106 ____________________________________________________________________________
55107 [ 22155] By: nicholas                              on 2004/01/15  00:03:04
55108         Log: Make chomp heed the utf8 flags on the target string and $/
55109              [Fixes #24888]
55110              More work still needed to make chomp heed the encoding pragma.
55111      Branch: perl
55112            ! doop.c t/op/chop.t
55113 ____________________________________________________________________________
55114 [ 22154] By: nicholas                              on 2004/01/14  21:14:14
55115         Log: Update pod.lst with perl583delta,pod, and rerun pod/buildtoc
55116              [Forgot to do this as part of the integration]
55117      Branch: perl
55118            ! MANIFEST pod.lst pod/perl.pod pod/perltoc.pod
55119            ! vms/descrip_mms.template win32/pod.mak
55120 ____________________________________________________________________________
55121 [ 22153] By: nicholas                              on 2004/01/14  19:28:54
55122         Log: Integrate:
55123              [ 22143]
55124              We're planning on making history today. Mind you, not that much -
55125              only 1 line.
55126
55127              perl583delta.pod
55128      Branch: perl
55129           +> pod/perl583delta.pod
55130            ! MANIFEST
55131           !> pod/perlhist.pod
55132 ____________________________________________________________________________
55133 [ 22150] By: nicholas                              on 2004/01/14  17:48:52
55134         Log: Bump version number as file has changed since 5.8.2
55135      Branch: perl
55136            ! lib/File/Find.pm
55137 ____________________________________________________________________________
55138 [ 22149] By: nicholas                              on 2004/01/14  17:45:54
55139         Log: Subject:  Doc patches for File::Find
55140              From:  Andy Lester <andy@petdance.com>
55141              Date:  Mon, 12 Jan 2004 00:10:50 -0600
55142              Message-Id:  <20040112061050.GB7308@petdance.com>
55143      Branch: perl
55144            ! lib/File/Find.pm
55145 ____________________________________________________________________________
55146 [ 22136] By: nicholas                              on 2004/01/14  13:01:27
55147         Log: Assimilate CGI 3.03
55148      Branch: perl
55149            ! lib/CGI.pm lib/CGI/Fast.pm lib/CGI/Util.pm
55150 ____________________________________________________________________________
55151 [ 22133] By: nicholas                              on 2004/01/13  22:53:42
55152         Log: Add VMS to the list of "don't fork" OSes
55153              [In the most simple way possible. Fix this properly post 5.8.3
55154              to use $Config{d_fork} or something more robust]
55155      Branch: perl
55156            ! ext/threads/shared/t/wait.t
55157 ____________________________________________________________________________
55158 [ 22129] By: rgs                                   on 2004/01/13  19:26:24
55159         Log: Subject: [PATCH] [ANNOUNCE] Math::BigInt v1.69
55160              From: Tels <perl_dummy@bloodgate.com>
55161              Date: Tue, 13 Jan 2004 19:28:48 +0100
55162              Message-Id: <200401131928.50247@bloodgate.com>
55163      Branch: perl
55164            ! lib/Math/BigFloat.pm lib/Math/BigInt.pm
55165            ! lib/Math/BigInt/CalcEmu.pm lib/Math/BigInt/t/bare_mbi.t
55166            ! lib/Math/BigInt/t/bigintpm.inc lib/Math/BigInt/t/bigintpm.t
55167            ! lib/Math/BigInt/t/sub_mbi.t
55168 ____________________________________________________________________________
55169 [ 22128] By: rgs                                   on 2004/01/13  09:06:11
55170         Log: MANIFEST adjustment.
55171      Branch: perl
55172            ! MANIFEST
55173 ____________________________________________________________________________
55174 [ 22126] By: ams                                   on 2004/01/13  07:16:33
55175         Log: Upgrade to Locale::Maketext 1.07.
55176      Branch: perl
55177            + lib/Locale/Maketext/t/04super.t
55178            + lib/Locale/Maketext/t/05super.t
55179            ! MANIFEST lib/Locale/Maketext.pm lib/Locale/Maketext.pod
55180            ! lib/Locale/Maketext/ChangeLog lib/Locale/Maketext/README
55181 ____________________________________________________________________________
55182 [ 22125] By: rgs                                   on 2004/01/12  22:44:53
55183         Log: Document usage of $_ and pos() inside /(?{...})/.
55184              (see change #2367.)
55185      Branch: perl
55186            ! pod/perlre.pod
55187 ____________________________________________________________________________
55188 [ 22124] By: rgs                                   on 2004/01/12  22:10:51
55189         Log: Upgrade to MIME::Base64 2.23.
55190      Branch: perl
55191            ! ext/MIME/Base64/Base64.pm ext/MIME/Base64/Base64.xs
55192            ! ext/MIME/Base64/Changes ext/MIME/Base64/QuotedPrint.pm
55193 ____________________________________________________________________________
55194 [ 22123] By: rgs                                   on 2004/01/12  21:24:28
55195         Log: Subject: [PATCH handy.h] RE: MIME-Base64-2.22 [PATCH]
55196              From: Robin Barker <Robin.Barker@npl.co.uk>
55197              Date: Thu, 8 Jan 2004 16:21:25 -0000
55198              Message-ID: <533D273D4014D411AB1D00062938C4D904046787@hotel.npl.co.uk>
55199      Branch: perl
55200            ! handy.h
55201 ____________________________________________________________________________
55202 [ 22122] By: nicholas                              on 2004/01/12  19:52:16
55203         Log: Subject: Re: 5.8.3-RC1, ext/threads/shared/t/wait still hanging
55204              From: Mike Pomraning <mjp@pilcrow.madison.wi.us>
55205              Message-ID: <Pine.LNX.4.58.0401121127210.15844@benevelle.wi.securepipe.com>
55206              Date: Mon, 12 Jan 2004 12:41:52 -0600 (CST)
55207      Branch: perl
55208            ! ext/threads/shared/t/wait.t
55209 ____________________________________________________________________________
55210 [ 22121] By: nicholas                              on 2004/01/12  17:27:25
55211         Log: use sv_setpvn rather than sv_setpv and save a strlen()
55212      Branch: perl
55213            ! doop.c
55214 ____________________________________________________________________________
55215 [ 22120] By: merijn                                on 2004/01/12  13:04:42
55216         Log: Subject: [PATCH] Make 'Configure -Dcf_by=...' work
55217              From: Gisle Aas <gisle@ActiveState.com>
55218              Date: 12 Jan 2004 02:35:27 -0800
55219              Message-ID: <lrvfnh315c.fsf@caliper.activestate.com>
55220      Branch: perl
55221            ! Configure
55222 ____________________________________________________________________________
55223 [ 22117] By: rgs                                   on 2004/01/12  10:10:43
55224         Log: Subject: Re: [perl #24846] [PATCH] Apparent utf8 bug in join() in 5.8.[012]
55225              From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
55226              Date: Mon, 12 Jan 2004 11:19:37 +0900
55227              Message-Id: <20040112111007.EB69.BQW10602@nifty.com>
55228      Branch: perl
55229            ! doop.c t/op/join.t
55230 ____________________________________________________________________________
55231 [ 22115] By: nicholas                              on 2004/01/11  23:37:09
55232         Log: Subject: Re: 5.8.3-RC1, ext/threads/shared/t/wait still hanging
55233              From: Mike Pomraning <mjp@pilcrow.madison.wi.us>
55234              Message-ID: <Pine.LNX.4.58.0401111548010.6679@localhost.localdomain>
55235              Date: Sun, 11 Jan 2004 16:24:18 -0600 (CST)
55236      Branch: perl
55237            ! ext/threads/shared/t/wait.t
55238 ____________________________________________________________________________
55239 [ 22113] By: nicholas                              on 2004/01/11  23:14:48
55240         Log: Regenerate win32/Makefile and win32/makefile.mk after
55241
55242              Integrate:
55243              [ 22081]
55244              Move pod/perldelta.pod to pod/perl583delta.pod, and arrange for
55245              a copy to be made at build time.
55246
55247              [ 22111]
55248              Subject: Re: [PATCH win32/makefile.mk] (was Re: 5.8.3 RC1)
55249              From: Abe Timmerman <abe@ztreet.demon.nl>
55250              Message-Id: <200401111813.40829.abe@ztreet.demon.nl>
55251              Date: Sun, 11 Jan 2004 18:13:40 +0100
55252
55253              plus revert 22092 and 22080
55254      Branch: perl
55255            ! pod.lst win32/Makefile win32/makefile.mk
55256           !> pod/buildtoc
55257 ____________________________________________________________________________
55258 [ 22112] By: rgs                                   on 2004/01/11  22:38:08
55259         Log: Upgrade to Cwd 2.14.
55260      Branch: perl
55261            ! ext/Cwd/Changes ext/Cwd/t/cwd.t lib/Cwd.pm
55262 ____________________________________________________________________________
55263 [ 22110] By: rgs                                   on 2004/01/11  16:34:43
55264         Log: Upgrade to Math::BigRat 0.11
55265
55266              Subject: [PATCH] [ANNOUCNE] Math::BigRat 0.11
55267              From: Tels <perl_dummy@bloodgate.com>
55268              Date: Wed, 7 Jan 2004 18:30:06 +0100
55269              Message-Id: <200401071830.07445@bloodgate.com>
55270      Branch: perl
55271            ! lib/Math/BigRat.pm lib/Math/BigRat/t/bigrat.t
55272            ! lib/Math/BigRat/t/bigratpm.inc lib/Math/BigRat/t/bigratpm.t
55273 ____________________________________________________________________________
55274 [ 22109] By: rgs                                   on 2004/01/10  23:39:38
55275         Log: Subject: [PATCH] Nicer formatting for function arguments in Carp messages
55276              From: Steve Hay <steve.hay@uk.radan.com>
55277              Date: Wed, 07 Jan 2004 13:22:30 +0000
55278              Message-ID: <3FFC0816.9090406@uk.radan.com>
55279
55280              (and increment version number in Carp)
55281      Branch: perl
55282            ! lib/Carp.pm lib/Carp/Heavy.pm
55283 ____________________________________________________________________________
55284 [ 22108] By: adi                                   on 2004/01/10  21:33:59
55285         Log: documentation nit
55286      Branch: perl
55287            ! pod/perlop.pod
55288 ____________________________________________________________________________
55289 [ 22107] By: adi                                   on 2004/01/10  20:19:09
55290         Log: nit to Bytecode - the av_extend opcode wasn't saved when
55291              the array had AvFILL == 0
55292      Branch: perl
55293            ! ext/B/B/Assembler.pm
55294 ____________________________________________________________________________
55295 [ 22106] By: adi                                   on 2004/01/10  20:16:03
55296         Log: still problems with backreferences + reverse cloning
55297              after #21936 - the weak reference may live on the pad.
55298      Branch: perl
55299            ! sv.c
55300 ____________________________________________________________________________
55301 [ 22104] By: nicholas                              on 2004/01/09  19:50:43
55302         Log: Bah. Makefile.PL still tests the sub-MANIFEST
55303      Branch: perl
55304            ! ext/Storable/MANIFEST
55305 ____________________________________________________________________________
55306 [ 22103] By: davem                                 on 2004/01/09  12:20:38
55307         Log: temporarily backout test of thread returning a closure. It crashes
55308              win32.
55309      Branch: perl
55310            ! ext/threads/t/problems.t
55311 ____________________________________________________________________________
55312 [ 22102] By: davem                                 on 2004/01/08  22:32:28
55313         Log: Subject: segv in pad.c with threads (was: DBD::Oracle and Perl 5.8.2 threads)
55314              Message-ID: <20040107121357.GD82921@dansat.data-plan.com>
55315
55316              Returning a closure from a thread (via join) could mess up because
55317              pointers to PL_sv_undef weren't rejigged to point at the joiner's
55318              version of PL_sv_undef. Also, the closure's CvGV got cloned too
55319              but never freed, since CvGV isn't refcounted.
55320      Branch: perl
55321            ! ext/threads/t/problems.t ext/threads/threads.xs sv.c
55322 ____________________________________________________________________________
55323 [ 22101] By: rgs                                   on 2004/01/08  21:00:56
55324         Log: perl582delta.pod was not in the MANIFEST.
55325      Branch: perl
55326            ! MANIFEST
55327 ____________________________________________________________________________
55328 [ 22100] By: nicholas                              on 2004/01/08  17:35:27
55329         Log: Integrate:
55330              [ 22093]
55331              Graham says that the search.cpan.org pod finder hashes on name
55332              The 4 files all thinking they are perldelta.pod confuses it.
55333      Branch: perl
55334           +> pod/perl582delta.pod
55335           !> pod/perl581delta.pod pod/perl58delta.pod
55336 ____________________________________________________________________________
55337 [ 22096] By: nicholas                              on 2004/01/08  13:15:38
55338         Log: Subject: [PATCH pod/perlhist.pod] Mention 5.8.3-RC1
55339              From: Abigail <abigail@abigail.nl>
55340              Message-ID: <20040107230027.GC393@abigail.nl>
55341              Date: Thu, 8 Jan 2004 00:00:27 +0100
55342      Branch: perl
55343            ! pod/perlhist.pod
55344 ____________________________________________________________________________
55345 [ 22091] By: nicholas                              on 2004/01/07  19:09:50
55346         Log: [Integrate]
55347              22088 22089 22090 (datestamp corrections - let's see if this really
55348              works)
55349      Branch: perl
55350           !> (integrate 35 files)
55351 ____________________________________________________________________________
55352 [ 22084] By: rgs                                   on 2004/01/07  09:25:16
55353         Log: Hardcoded numerical flag masks. Bad.
55354      Branch: perl
55355            ! doop.c
55356 ____________________________________________________________________________
55357 [ 22083] By: nicholas                              on 2004/01/06  18:57:29
55358         Log: Seems that sv_setsv_cow needs to be visible to core extensions,
55359              so that re will build properly on Win32. Thanks to Steve Hay for
55360              trying COW and finding the problems.
55361      Branch: perl
55362            ! embed.fnc embed.h
55363 ____________________________________________________________________________
55364 [ 22082] By: rgs                                   on 2004/01/06  18:11:22
55365         Log: Fix bug #24813 : the -0 wasn't recognized on the #! line
55366      Branch: perl
55367            + t/run/switch0.t
55368            ! MANIFEST perl.c
55369 ____________________________________________________________________________
55370 [ 22079] By: nicholas                              on 2004/01/06  12:38:52
55371         Log: Jarkko didn't move the cd ..\pod correctly. Given that it's been
55372              like this pre 5.8.1, I suspect that no-one has used it recently.
55373      Branch: perl
55374            ! win32/makefile.mk
55375 ____________________________________________________________________________
55376 [ 22076] By: rgs                                   on 2004/01/06  08:18:44
55377         Log: The TODO tag should be included also when a TODO test succeeds,
55378              so it's reported by the test harness
55379      Branch: perl
55380            ! t/op/write.t
55381 ____________________________________________________________________________
55382 [ 22075] By: rgs                                   on 2004/01/06  07:56:25
55383         Log: This TODO test seems to pass now.
55384      Branch: perl
55385            ! t/op/write.t
55386 ____________________________________________________________________________
55387 [ 22074] By: rgs                                   on 2004/01/05  23:29:55
55388         Log: Some of the bitwise manipulation PP functions weren't checking
55389              whether their arguments were magical before using them.
55390              (bug [#24816]).
55391      Branch: perl
55392            ! pp.c
55393 ____________________________________________________________________________
55394 [ 22071] By: davem                                 on 2004/01/05  22:17:04
55395         Log: [perl #24674]
55396              stop $^O getting tainted on read access, and disallow tainted
55397              assignment to it
55398      Branch: perl
55399            ! mg.c t/op/taint.t
55400 ____________________________________________________________________________
55401 [ 22068] By: rgs                                   on 2004/01/05  21:48:30
55402         Log: Some mandatory syntax warnings emitted by the lexer weren't
55403              disableable (bug [perl #24815]).
55404      Branch: perl
55405            ! pod/perldiag.pod t/lib/warnings/toke toke.c
55406 ____________________________________________________________________________
55407 [ 22067] By: nicholas                              on 2004/01/05  21:36:07
55408         Log: Change the flag logic in buildtoc
55409      Branch: perl
55410            ! pod.lst pod/buildtoc
55411 ____________________________________________________________________________
55412 [ 22064] By: nicholas                              on 2004/01/05  21:16:09
55413         Log: Fix bug with MANIFEST generation when we also regenerate perltoc.pod
55414      Branch: perl
55415            ! pod/buildtoc
55416 ____________________________________________________________________________
55417 [ 22058] By: rgs                                   on 2004/01/05  06:17:47
55418         Log: Subject: [PATCH] skip num.t #47 on VMS
55419              From: "Craig A. Berry" <craigberry@mac.com>
55420              Date: Sun, 04 Jan 2004 23:16:26 -0600
55421              Message-ID: <3FF8F32A.5000108@mac.com>
55422      Branch: perl
55423            ! t/base/num.t
55424 ____________________________________________________________________________
55425 [ 22057] By: rgs                                   on 2004/01/05  06:17:07
55426         Log: Subject: [PATCH configure.com] future-proof signal check
55427              From: "Craig A. Berry" <craigberry@mac.com>
55428              Date: Sun, 04 Jan 2004 22:53:40 -0600
55429              Message-ID: <3FF8EDD4.3080308@mac.com>
55430      Branch: perl
55431            ! configure.com
55432 ____________________________________________________________________________
55433 [ 22056] By: rgs                                   on 2004/01/04  20:45:31
55434         Log: Upgrade to Cwd 2.13
55435      Branch: perl
55436            ! ext/Cwd/Changes ext/Cwd/t/cwd.t lib/Cwd.pm
55437 ____________________________________________________________________________
55438 [ 22055] By: davem                                 on 2004/01/04  19:34:36
55439         Log: Subject: Re: [perl #24774] eval + format - \n = pp_ctl.c assertion
55440              From: LAUN Wolfgang <wolfgang.laun@alcatel.at>
55441              Date: Fri, 2 Jan 2004 11:31:46 +0100
55442              Message-ID: <DF27CDCBD2581D4B88431901094E4B4D02B0C4B3@attmsx1>
55443
55444              eval of of a truncated format should fail
55445      Branch: perl
55446            ! t/op/write.t toke.c
55447 ____________________________________________________________________________
55448 [ 22052] By: rgs                                   on 2004/01/03  19:53:53
55449         Log: Upgrade to PerlIO::via::QuotedPrint 0.06
55450      Branch: perl
55451            ! lib/PerlIO/via/QuotedPrint.pm
55452 ____________________________________________________________________________
55453 [ 22051] By: rgs                                   on 2004/01/03  19:51:02
55454         Log: Upgrade to Time::HiRes 1.54
55455      Branch: perl
55456            + ext/Time/HiRes/hints/solaris.pl
55457            ! MANIFEST ext/Time/HiRes/Changes ext/Time/HiRes/HiRes.pm
55458            ! ext/Time/HiRes/HiRes.xs
55459 ____________________________________________________________________________
55460 [ 22050] By: nicholas                              on 2004/01/03  19:24:00
55461         Log: No matter how hard you proof read it, something always slips through.
55462      Branch: perl
55463            ! ext/Storable/ChangeLog
55464 ____________________________________________________________________________
55465 [ 22049] By: nicholas                              on 2004/01/03  19:22:08
55466         Log: Fix minor problems with the CPAN release
55467              1: Make Storable.xs to work on 5.8.2 and later (already in the core)
55468              2: Ship the linux hints file
55469              3: Ship Test::More for the benefit of Perls pre 5.6.2
55470              4: Correct Makefile.PL to install in core for 5.8.0 and later
55471      Branch: perl
55472            ! ext/Storable/ChangeLog ext/Storable/MANIFEST
55473            ! ext/Storable/Makefile.PL ext/Storable/README
55474            ! ext/Storable/Storable.pm
55475 ____________________________________________________________________________
55476 [ 22047] By: rgs                                   on 2004/01/03  00:07:13
55477         Log: Tidy up change #18751, so that the second parameter to unpack()
55478              defaults to $_ at compile-time, instead of run-time (like all
55479              other primitives that default to $_).
55480      Branch: perl
55481            ! embed.h op.c opcode.h opcode.pl pp.sym pp_pack.c pp_proto.h
55482 ____________________________________________________________________________
55483 [ 22044] By: nicholas                              on 2004/01/02  16:17:24
55484         Log: Bump $threads::VERSION as the documentation has changed. Tweak the
55485              documentaiton, update Arthur's e-mail address
55486      Branch: perl
55487            ! ext/threads/threads.pm
55488 ____________________________________________________________________________
55489 [ 22043] By: rgs                                   on 2004/01/02  08:35:22
55490         Log: Use the optimization level -O2 by default on Linux/gcc.
55491              See :
55492              Subject: Benchmarking (was Re: GCC bug breaking Perl_sv_catpvfn()?)
55493              From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
55494              Date: Thu, 1 Jan 2004 05:32:15 +0100
55495              Message-ID: <071601c3d020$4046d2a0$d500a8c0@R2D2>
55496      Branch: perl
55497            ! hints/linux.sh
55498 ____________________________________________________________________________
55499 [ 22041] By: nicholas                              on 2004/01/02  00:38:00
55500         Log: Update debugger version number and Changes file
55501      Branch: perl
55502            ! lib/perl5db.pl
55503 ____________________________________________________________________________
55504 [ 22037] By: davem                                 on 2004/01/01  23:22:10
55505         Log: addition to 22036 (document SUPER better): superclass may be plural
55506      Branch: perl
55507            ! pod/perlbot.pod pod/perlobj.pod
55508 ____________________________________________________________________________
55509 [ 22036] By: davem                                 on 2004/01/01  22:23:11
55510         Log: Document the quirks of SUPER, especially the fact that it it
55511              relative to the current package and not to the invoking object.
55512      Branch: perl
55513            ! pod/perlboot.pod pod/perlbot.pod pod/perlobj.pod
55514            ! pod/perltoot.pod
55515 ____________________________________________________________________________
55516 [ 22034] By: davem                                 on 2004/01/01  19:58:08
55517         Log: Fix bug #24383, where hashes with the :unique attribute weren't
55518              getting made readonly on interpreter clone. Also, remove the
55519              :unique attribute from the hashes in warnings.pm, since they may
55520              later be modified by warnings::register.  Finally, adds tests for
55521              the :unique attribute.
55522      Branch: perl
55523            ! ext/threads/t/problems.t lib/warnings.pm sv.c warnings.pl
55524 ____________________________________________________________________________
55525 [ 22033] By: nicholas                              on 2004/01/01  19:22:24
55526         Log: Subject: Perl 5.8.3 patches from the BS2000 port - part 2
55527              From: Dorner Thomas <tdorner@amadeus.net>
55528              Message-ID: <6727B1DACFCDD311A757009027CA8D69044B6740@Ex02.inhouse.start.de>
55529              Date: Fri, 19 Dec 2003 07:16:47 +0100
55530      Branch: perl
55531            ! t/io/utf8.t t/op/pat.t
55532 ____________________________________________________________________________
55533 [ 22032] By: rgs                                   on 2004/01/01  17:29:21
55534         Log: Subject: [PATCH 5.8.2 @21574] OS/2 update
55535              From: Ilya Zakharevich <nospam-abuse@ilyaz.org>
55536              Date: Thu, 18 Dec 2003 14:10:29 -0800
55537              Message-ID: <20031218221029.GA7898@math.berkeley.edu>
55538      Branch: perl
55539            ! README.os2 hints/os2.sh installperl lib/ExtUtils/MM_Unix.pm
55540            ! makedef.pl os2/Changes os2/OS2/REXX/DLL/Changes
55541            ! os2/OS2/REXX/DLL/DLL.pm os2/os2.c os2/os2ish.h os2/perl2cmd.pl
55542 ____________________________________________________________________________
55543 [ 22031] By: rgs                                   on 2004/01/01  16:30:13
55544         Log: Document that /[\W]/ doesn't work, unicode-wise (see bug #18281)
55545      Branch: perl
55546            ! pod/perlunicode.pod
55547 ____________________________________________________________________________
55548 [ 22030] By: rgs                                   on 2004/01/01  13:55:31
55549         Log: Document that detached threads aren't supported on Windows yet.
55550      Branch: perl
55551            ! ext/threads/threads.pm
55552 ____________________________________________________________________________
55553 [ 22029] By: rgs                                   on 2004/01/01  13:30:33
55554         Log: Upgrade to Getopt::Long 2.34_01
55555      Branch: perl
55556            ! lib/Getopt/Long.pm lib/Getopt/Long/CHANGES
55557 ____________________________________________________________________________
55558 [ 22026] By: nicholas                              on 2003/12/31  15:22:31
55559         Log: Tweak 00compile.t to avoid splatting a DIAG over core perl's
55560              beautiful clean run of OKs. You are all getting a clean run of OKs,
55561              aren't you?
55562      Branch: perl
55563            ! lib/Test/Harness/t/00compile.t
55564 ____________________________________________________________________________
55565 [ 22025] By: nicholas                              on 2003/12/31  15:11:51
55566         Log: Subject: [PATCH] "piconv -C 512" badly broken
55567              From: Autrijus Tang <autrijus@autrijus.org>
55568              Message-Id: <1072870210.769.5.camel@localhost>
55569              Date: Wed, 31 Dec 2003 19:30:10 +0800
55570      Branch: perl
55571            ! ext/Encode/bin/piconv
55572 ____________________________________________________________________________
55573 [ 22021] By: rgs                                   on 2003/12/31  08:28:43
55574         Log: Upgrade to Test::Harness 2.40.
55575      Branch: perl
55576            ! lib/Test/Harness.pm lib/Test/Harness/Changes
55577            ! lib/Test/Harness/Iterator.pm lib/Test/Harness/Straps.pm
55578            ! lib/Test/Harness/bin/prove lib/Test/Harness/t/00compile.t
55579            ! lib/Test/Harness/t/assert.t lib/Test/Harness/t/callback.t
55580            ! lib/Test/Harness/t/prove-switches.t
55581            ! lib/Test/Harness/t/strap-analyze.t lib/Test/Harness/t/strap.t
55582            ! lib/Test/Harness/t/test-harness.t
55583 ____________________________________________________________________________
55584 [ 22020] By: rgs                                   on 2003/12/31  07:59:19
55585         Log: C++ comments, bad.
55586      Branch: perl
55587            ! ext/Cwd/Cwd.xs
55588 ____________________________________________________________________________
55589 [ 22018] By: nicholas                              on 2003/12/30  23:29:59
55590         Log: Bump VERSION numbers
55591      Branch: perl
55592            ! ext/POSIX/POSIX.pm lib/Benchmark.pm lib/File/CheckTree.pm
55593            ! lib/Getopt/Std.pm lib/PerlIO.pm lib/Tie/Hash.pm
55594            ! lib/diagnostics.pm
55595 ____________________________________________________________________________
55596 [ 22016] By: rgs                                   on 2003/12/30  21:10:22
55597         Log: A patch for Test::Harness on VMS by Craig Berry
55598              (see RT CPAN bug #4745)
55599      Branch: perl
55600            ! lib/Test/Harness/Straps.pm
55601 ____________________________________________________________________________
55602 [ 22013] By: nicholas                              on 2003/12/30  18:18:28
55603         Log: Subject: more uni doc tweakage
55604              From: Jarkko Hietaniemi <jhi@iki.fi>
55605              Message-ID: <20031230133755.GA23118@vipunen.hut.fi>
55606              Date: Tue, 30 Dec 2003 15:37:55 +0200
55607
55608              Subject: one more pod fix
55609              From: Jarkko Hietaniemi <jhi@iki.fi>
55610              Message-ID: <20031230135641.GA24516@vipunen.hut.fi>
55611              Date: Tue, 30 Dec 2003 15:56:41 +0200
55612      Branch: perl
55613            ! lib/PerlIO.pm pod/perlunicode.pod
55614 ____________________________________________________________________________
55615 [ 22009] By: davem                                 on 2003/12/30  17:14:44
55616         Log: bug #24757 perlrun.pod's description of find -mtime was ambiguous
55617      Branch: perl
55618            ! pod/perlrun.pod
55619 ____________________________________________________________________________
55620 [ 22007] By: rgs                                   on 2003/12/30  16:04:47
55621         Log: Upgrade to Math::BigInt 1.68.
55622      Branch: perl
55623            + lib/Math/BigInt/t/bigroot.t
55624            ! MANIFEST lib/Math/BigFloat.pm lib/Math/BigInt.pm
55625            ! lib/Math/BigInt/Calc.pm lib/Math/BigInt/CalcEmu.pm
55626            ! lib/Math/BigInt/t/alias.inc lib/Math/BigInt/t/bare_mbi.t
55627            ! lib/Math/BigInt/t/bigfltpm.inc lib/Math/BigInt/t/bigintpm.inc
55628            ! lib/Math/BigInt/t/bigintpm.t lib/Math/BigInt/t/sub_mbi.t
55629 ____________________________________________________________________________
55630 [ 22005] By: davem                                 on 2003/12/30  15:07:50
55631         Log: Subject: Re: [perl #24774] eval + format - \n = pp_ctl.c assertion
55632              heuristics for calculating buffer size needed to compile a format
55633              didn't allow for \0
55634      Branch: perl
55635            ! pp_ctl.c t/op/write.t
55636 ____________________________________________________________________________
55637 [ 22003] By: rgs                                   on 2003/12/30  12:54:02
55638         Log: Add a regression test for bug #24762
55639      Branch: perl
55640            ! t/comp/parser.t
55641 ____________________________________________________________________________
55642 [ 22002] By: rgs                                   on 2003/12/30  12:49:09
55643         Log: Updates the notes about byacc in pumpkin.pod.
55644      Branch: perl
55645            ! Porting/pumpkin.pod
55646 ____________________________________________________________________________
55647 [ 22001] By: rgs                                   on 2003/12/30  09:58:08
55648         Log: Bump up UNIVERSAL's version to 1.02
55649              (due to fix #21418)
55650      Branch: perl
55651            ! lib/UNIVERSAL.pm
55652 ____________________________________________________________________________
55653 [ 21999] By: nicholas                              on 2003/12/29  23:53:31
55654         Log: Add Mike Pomraning
55655      Branch: perl
55656            ! AUTHORS
55657 ____________________________________________________________________________
55658 [ 21997] By: rgs                                   on 2003/12/29  20:11:12
55659         Log: Update the README and Changes files for Switch 2.10
55660      Branch: perl
55661            ! lib/Switch/Changes lib/Switch/README
55662 ____________________________________________________________________________
55663 [ 21996] By: rgs                                   on 2003/12/29  20:07:00
55664         Log: Upgrade to Switch 2.10, by integrating some changes by Damian
55665      Branch: perl
55666            ! lib/Switch.pm
55667 ____________________________________________________________________________
55668 [ 21993] By: rgs                                   on 2003/12/29  10:49:29
55669         Log: Windows hasn't getuid/setuid and friends.
55670              Therefore disable the code related to them in POSIX.xs.
55671
55672              Subject: [PATCH: ext/POSIX/POSIX.xs] Re: Smoke [5.8.2] 21979 FAIL(Xt) MSWin32 5.1 Service Pack 1 (x86/1 cpu)
55673              From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
55674              Date: Mon, 29 Dec 2003 04:51:19 +0100
55675              Message-ID: <03d401c3cdbf$05730ee0$d500a8c0@R2D2>
55676      Branch: perl
55677            ! ext/POSIX/POSIX.xs
55678 ____________________________________________________________________________
55679 [ 21992] By: rgs                                   on 2003/12/29  10:31:07
55680         Log: Subject: [PATCH] win32_chsize buglet
55681              From: "Kevin Chase" <kevincha99@hotmail.com>
55682              Date: Sun, 28 Dec 2003 15:48:56 -0800
55683              Message-ID: <BAY2-F90usv0ccZRh8Z0005683d@hotmail.com>
55684      Branch: perl
55685            ! win32/win32.c
55686 ____________________________________________________________________________
55687 [ 21991] By: rgs                                   on 2003/12/29  08:10:51
55688         Log: Upgrade to Encode 1.99.
55689      Branch: perl
55690            ! ext/Encode/Changes ext/Encode/Encode.pm ext/Encode/META.yml
55691            ! ext/Encode/Unicode/Unicode.xs ext/Encode/encoding.pm
55692            ! ext/Encode/t/enc_eucjp.t ext/Encode/t/enc_utf8.t
55693            ! ext/Encode/t/mime-header.t ext/Encode/ucm/gsm0338.ucm
55694            ! ext/Encode/ucm/macArabic.ucm ext/Encode/ucm/macFarsi.ucm
55695            ! ext/Encode/ucm/macHebrew.ucm
55696 ____________________________________________________________________________
55697 [ 21990] By: rgs                                   on 2003/12/28  18:41:35
55698         Log: Fix a little syntax error, reported by Marcus Holland-Moritz
55699      Branch: perl
55700            ! win32/win32.c
55701 ____________________________________________________________________________
55702 [ 21989] By: nicholas                              on 2003/12/28  11:49:20
55703         Log: From: "Nigel Sandever" <njsandever@hotmail.com>
55704              Subject: [PATCH] 5.8.1 / bcc55 / win32 / Enable PerlIO and/ or USE_LARGE_FILES
55705              Message-ID: <Law9-F94BdsnvUFcxT500000ea5@hotmail.com>
55706              Date: Thu, 25 Sep 2003 21:49:07 +0000
55707      Branch: perl
55708            ! dosish.h win32/win32.c win32/win32sck.c
55709 ____________________________________________________________________________
55710 [ 21988] By: rgs                                   on 2003/12/27  23:46:40
55711         Log: Regenerate the perly.c patch for byacc output painless fixing
55712      Branch: perl
55713            ! perly_c.diff
55714 ____________________________________________________________________________
55715 [ 21986] By: rgs                                   on 2003/12/27  23:11:59
55716         Log: Fix bug [perl #24762] : C<*foo{CODE} ? 1 : 0> was a syntax error
55717      Branch: perl
55718            ! perly.c perly.y vms/perly_c.vms
55719 ____________________________________________________________________________
55720 [ 21985] By: nicholas                              on 2003/12/27  22:55:35
55721         Log: Subject: Cross compilation patches for arm.
55722              From: Redvers Davies <red@criticalintegration.com>
55723              Message-Id: <1072098653.4789.6.camel@ragefire>
55724              Date: Mon, 22 Dec 2003 08:11:34 -0500
55725      Branch: perl
55726            ! Cross/Makefile Cross/Makefile.SH.patch Cross/README
55727            ! Cross/config.sh-arm-linux Cross/installperl.patch
55728 ____________________________________________________________________________
55729 [ 21983] By: rgs                                   on 2003/12/27  21:29:04
55730         Log: Fix bug [perl #24735] : make sure that the range (..) operator
55731              treats an undefined argument as 0 for numerical ranges and as ""
55732              for magical string ranges.
55733      Branch: perl
55734            ! pp_ctl.c t/op/range.t
55735 ____________________________________________________________________________
55736 [ 21981] By: rgs                                   on 2003/12/27  20:14:09
55737         Log: Subject: PATCH:  *DB*_File
55738              From: "Paul Marquess" <Paul.Marquess@btinternet.com>
55739              Date: Sat, 27 Dec 2003 20:02:30 -0000
55740              Message-ID: <AIEAJICLCBDNAAOLLOKLIEAOPGAA.Paul.Marquess@btinternet.com>
55741      Branch: perl
55742            ! XSUB.h ext/DB_File/Changes ext/DB_File/DB_File.pm
55743            ! ext/DB_File/DB_File.xs ext/DB_File/t/db-btree.t
55744            ! ext/DB_File/t/db-hash.t ext/DB_File/t/db-recno.t
55745            ! ext/DB_File/typemap ext/GDBM_File/typemap
55746            ! ext/NDBM_File/typemap ext/ODBM_File/typemap
55747            ! ext/SDBM_File/typemap
55748 ____________________________________________________________________________
55749 [ 21978] By: nicholas                              on 2003/12/27  18:31:27
55750         Log: Straggler from Cwd
55751      Branch: perl
55752            + ext/Cwd/Changes
55753 ____________________________________________________________________________
55754 [ 21977] By: nicholas                              on 2003/12/27  18:29:44
55755         Log: Straggler from Unicode::Collate.
55756              We need to automate this.
55757              For some value of we. (tr/w/m/ I suspect)
55758      Branch: perl
55759            + lib/Unicode/Collate/t/rearrang.t
55760 ____________________________________________________________________________
55761 [ 21976] By: nicholas                              on 2003/12/27  18:28:37
55762         Log: Assimilate Unicode::Collate 0.33
55763      Branch: perl
55764            + lib/Unicode/Collate/t/altern.t lib/Unicode/Collate/t/view.t
55765            ! MANIFEST lib/Unicode/Collate.pm lib/Unicode/Collate/Changes
55766            ! lib/Unicode/Collate/README lib/Unicode/Collate/keys.txt
55767            ! lib/Unicode/Collate/t/contract.t
55768            ! lib/Unicode/Collate/t/illegal.t lib/Unicode/Collate/t/test.t
55769            ! lib/Unicode/Collate/t/version.t
55770 ____________________________________________________________________________
55771 [ 21975] By: nicholas                              on 2003/12/27  18:12:33
55772         Log: Assimilate PodParser-1.26
55773      Branch: perl
55774            ! lib/Pod/Checker.pm lib/Pod/Find.pm lib/Pod/InputObjects.pm
55775            ! lib/Pod/ParseUtils.pm lib/Pod/Parser.pm lib/Pod/PlainText.pm
55776            ! lib/Pod/Select.pm lib/Pod/Usage.pm pod/pod2usage.PL
55777            ! pod/podselect.PL t/pod/pod2usage.xr t/pod/podselect.xr
55778 ____________________________________________________________________________
55779 [ 21974] By: nicholas                              on 2003/12/27  17:50:34
55780         Log: Assimilate File::Spec 0.87
55781      Branch: perl
55782            ! lib/File/Spec.pm lib/File/Spec/t/Spec.t
55783 ____________________________________________________________________________
55784 [ 21973] By: nicholas                              on 2003/12/27  17:24:27
55785         Log: Assimilate Digest 1.05
55786      Branch: perl
55787            ! lib/Digest.pm lib/Digest/t/digest.t
55788 ____________________________________________________________________________
55789 [ 21972] By: nicholas                              on 2003/12/27  17:20:23
55790         Log: Assimilate Cwd 2.12 from CPAN. Cwd wasn't in Maintainers, so change
55791              21646 was only applied to core (must punt this back and thereby unfork)
55792              Need to fix test boilerplate properly for PERL_CORE
55793      Branch: perl
55794            ! MANIFEST Porting/Maintainers.pl ext/Cwd/Cwd.xs ext/Cwd/t/cwd.t
55795            ! ext/Cwd/t/taint.t lib/Cwd.pm
55796 ____________________________________________________________________________
55797 [ 21971] By: nicholas                              on 2003/12/27  16:55:54
55798         Log: Subject: [PATCH] Remove Win32 compiler warnings
55799              From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
55800              Date: Sat, 27 Dec 2003 17:39:20 +0100
55801              Message-ID: <018901c3cc97$fa976660$d500a8c0@R2D2>
55802      Branch: perl
55803            ! ext/XS/APItest/APItest.xs ext/threads/shared/shared.xs sv.c
55804 ____________________________________________________________________________
55805 [ 21970] By: nicholas                              on 2003/12/27  16:39:01
55806         Log: Allow overriding of the p4 settings via environment variables
55807              Make regexp more robust to parse FreeBSD's patch output
55808      Branch: perl
55809            ! Porting/apply
55810 ____________________________________________________________________________
55811 [ 21968] By: rgs                                   on 2003/12/27  14:27:57
55812         Log: Subject: [PATCH] perl 5.8.0, FindBin::again
55813              From: Slaven Rezic <slaven@rezic.de>
55814              Date: 01 May 2003 21:28:10 +0200
55815              Message-ID: <873cjy31rp.fsf@vran.herceg.de>
55816      Branch: perl
55817            ! lib/FindBin.pm lib/FindBin.t
55818 ____________________________________________________________________________
55819 [ 21967] By: nicholas                              on 2003/12/27  13:26:29
55820         Log: Subject: [PATCH: sv.c] Turn Quad_t to Uquad_t in unsigned branch
55821              From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
55822              Date: Sat, 27 Dec 2003 02:48:19 +0100
55823              Message-ID: <010001c3cc1b$813763a0$d500a8c0@R2D2>
55824      Branch: perl
55825            ! sv.c
55826 ____________________________________________________________________________
55827 [ 21964] By: nicholas                              on 2003/12/26  20:31:38
55828         Log: Change minimum perl version where the test is run from 5.9.0 to 5.8.3
55829              as I'm going to integrate the core patch
55830      Branch: perl
55831            ! ext/List/Util/t/weak.t
55832 ____________________________________________________________________________
55833 [ 21962] By: nicholas                              on 2003/12/26  19:22:16
55834         Log: Subject: [PATCH: sv.c] Re: GCC bug breaking Perl_sv_catpvfn()?
55835              From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
55836              Date: Fri, 26 Dec 2003 02:47:09 +0100
55837              Message-ID: <03ca01c3cb52$2d509b40$5700a8c0@R2D2>
55838      Branch: perl
55839            ! sv.c
55840 ____________________________________________________________________________
55841 [ 21960] By: rgs                                   on 2003/12/26  10:18:24
55842         Log: Refactor the code that checks whether a range is numeric
55843              or string-magical.
55844      Branch: perl
55845            ! pp_ctl.c
55846 ____________________________________________________________________________
55847 [ 21959] By: rgs                                   on 2003/12/26  08:51:06
55848         Log: Restore ext/SDBM_File/sdbm/Makefile to its pre-21655 state.
55849              This fixes building SDBM_File on AIX.
55850      Branch: perl
55851            ! ext/SDBM_File/sdbm/Makefile.PL
55852 ____________________________________________________________________________
55853 [ 21958] By: rgs                                   on 2003/12/25  21:22:25
55854         Log: Fix bug [perl #24641] : when POSIX::set[ug]id() are called,
55855              update the perl variables PL_uid and PL_euid (resp. PL_gid
55856              and PL_egid) with the new values.
55857      Branch: perl
55858            ! ext/POSIX/POSIX.xs
55859 ____________________________________________________________________________
55860 [ 21957] By: rgs                                   on 2003/12/25  20:14:00
55861         Log: Subject: [PATCH 5.8.2 @21574] INSTALL_PREFIX from C
55862              From: Ilya Zakharevich <nospam-abuse@ilyaz.org>
55863              Date: Thu, 18 Dec 2003 12:30:06 -0800
55864              Message-ID: <20031218203006.GA7772@math.berkeley.edu>
55865      Branch: perl
55866            ! config_h.SH
55867 ____________________________________________________________________________
55868 [ 21956] By: rgs                                   on 2003/12/25  19:40:55
55869         Log: Subject: BigInt v1.68 - pre-release
55870              From: Tels <perl_dummy@bloodgate.com>
55871              Date: Tue, 23 Dec 2003 01:09:23 +0100
55872              Message-Id: <200312230106.27661@bloodgate.com>
55873      Branch: perl
55874            + lib/Math/BigInt/CalcEmu.pm lib/Math/BigInt/t/alias.inc
55875            + lib/Math/BigInt/t/mbf_ali.t lib/Math/BigInt/t/mbi_ali.t
55876            + lib/Math/BigInt/t/sub_ali.t
55877            ! MANIFEST lib/Math/BigFloat.pm lib/Math/BigInt.pm
55878            ! lib/Math/BigInt/Calc.pm lib/Math/BigInt/t/bigfltpm.inc
55879            ! lib/Math/BigInt/t/bigintc.t lib/Math/BigInt/t/bigintpm.inc
55880            ! lib/Math/BigInt/t/upgrade.inc
55881 ____________________________________________________________________________
55882 [ 21955] By: rgs                                   on 2003/12/25  18:59:54
55883         Log: Subject: [perl #24506] [PATCH] cannot weaken refs to read only values
55884              From: Fergal Daly <fergal@esatclear.ie>
55885              Date: Tue, 2 Dec 2003 23:18:18 +0000
55886              Message-Id: <200312022318.18353.fergal@esatclear.ie>
55887
55888              (tweaked so the test is skipped on perls < 5.9.0)
55889      Branch: perl
55890            ! ext/List/Util/t/weak.t sv.c
55891 ____________________________________________________________________________
55892 [ 21953] By: nicholas                              on 2003/12/23  23:34:48
55893         Log: Subject:  [PATCH: perl@21949] document patch for VMS port on new file systems
55894              From:  PPrymmer@factset.com
55895              Date:  Tue, 23 Dec 2003 17:27:44 -0500
55896              Message-Id:  <OF32243F10.A592C9A9-ON85256E05.007B1741-85256E05.007B63CB@factset.com>
55897      Branch: perl
55898            ! README.vms
55899 ____________________________________________________________________________
55900 [ 21952] By: nicholas                              on 2003/12/23  23:19:19
55901         Log: Subject: [patch t/test.pl] comment fix
55902              From: Stas Bekman <stas@stason.org>
55903              Message-ID: <3FE8C65A.4060708@stason.org>
55904              Date: Tue, 23 Dec 2003 14:48:58 -0800
55905      Branch: perl
55906            ! t/test.pl
55907 ____________________________________________________________________________
55908 [ 21951] By: adi                                   on 2003/12/22  23:22:12
55909         Log: re-fix [perl #24508] without speed regression.
55910              keep an eye on this.
55911      Branch: perl
55912            ! op.c opcode.h opcode.pl
55913 ____________________________________________________________________________
55914 [ 21950] By: adi                                   on 2003/12/22  23:19:25
55915         Log: sanitize some macros - based on Chip Salzenberg suggestions and
55916              on the way GNU people use the gcc-ish 'blocks in parens'
55917      Branch: perl
55918            ! XSUB.h sv.h
55919 ____________________________________________________________________________
55920 [ 21948] By: nicholas                              on 2003/12/22  21:00:30
55921         Log: Subject: Re: Smoke [5.8.2] 21930 FAIL(t) MSWin32 5.1 Service Pack 1 (x86/1 cpu)
55922              Message-ID: <Pine.LNX.4.58.0312220116520.17374@localhost.localdomain>
55923              Date: Mon, 22 Dec 2003 01:52:08 -0600 (CST)
55924              From: Mike Pomraning <mjp@pilcrow.madison.wi.us>
55925      Branch: perl
55926            ! ext/threads/shared/shared.xs
55927 ____________________________________________________________________________
55928 [ 21946] By: nicholas                              on 2003/12/22  20:34:06
55929         Log: Subject:  doc nits
55930              From:  Jarkko Hietaniemi <jhi@iki.fi>
55931              Date:  Mon, 22 Dec 2003 21:57:34 +0200
55932              Message-Id:  <20031222195734.GA29441@vipunen.hut.fi>
55933      Branch: perl
55934            ! pod/perltodo.pod pod/perlunicode.pod
55935 ____________________________________________________________________________
55936 [ 21944] By: merijn                                on 2003/12/22  10:13:43
55937         Log: Subject: [PATCH] configure.com archname tweak
55938              From: "Craig A. Berry" <craigberry@mac.com>
55939              Date: Sun, 21 Dec 2003 23:07:13 -0600
55940              Message-ID: <3FE67C01.1000704@mac.com>
55941      Branch: perl
55942            ! configure.com
55943 ____________________________________________________________________________
55944 [ 21942] By: rgs                                   on 2003/12/21  21:29:47
55945         Log: Subject: [perl #24651] Taint bug with multiple backticks in ref consturctors
55946              From: Mike Guy <mjtg@cam.ac.uk>
55947              Date: Fri, 19 Dec 2003 17:17:11 +0000
55948              Message-Id: <E1AXOFT-0007DE-7q@draco.cus.cam.ac.uk>
55949      Branch: perl
55950            ! pod/perlsec.pod
55951 ____________________________________________________________________________
55952 [ 21940] By: rgs                                   on 2003/12/21  15:33:19
55953         Log: Fix a side-effect of bug #24674 in the perl debugger.
55954
55955              Subject: [perl #24674] 5.x odd taint bug
55956              From: Dominique Quatravaux (via RT) <perlbug-followup@perl.org>
55957              Date: 16 Dec 2003 15:03:24 -0000
55958              Message-ID: <rt-3.0.7_01-24674-68456.11.3124667849085@perl.org>
55959      Branch: perl
55960            ! lib/perl5db.pl
55961 ____________________________________________________________________________
55962 [ 21938] By: rgs                                   on 2003/12/20  22:56:24
55963         Log: Subject: Perl 5.8.3 patches from the BS2000 port
55964              From: Dorner Thomas <tdorner@amadeus.net>
55965              Date: Wed, 17 Dec 2003 15:41:17 +0100
55966              Message-ID: <6727B1DACFCDD311A757009027CA8D69044B673A@Ex02.inhouse.start.de>
55967      Branch: perl
55968            ! hints/posix-bc.sh t/base/num.t t/comp/parser.t
55969 ____________________________________________________________________________
55970 [ 21937] By: adi                                   on 2003/12/20  21:37:03
55971         Log: after back-references, restricted hashes.
55972              see http://nntp.perl.org/group/perl.perl5.porters/86497
55973              this is hopefully only a temporary solution.
55974      Branch: perl
55975            ! perl.c
55976 ____________________________________________________________________________
55977 [ 21936] By: adi                                   on 2003/12/20  21:32:37
55978         Log: fix [perl #24660], [perl #24663].
55979      Branch: perl
55980            ! mg.c sv.c
55981 ____________________________________________________________________________
55982 [ 21935] By: rgs                                   on 2003/12/20  21:21:50
55983         Log: Upgrade to Time::Local 1.07_94
55984      Branch: perl
55985            ! lib/Time/Local.pm lib/Time/Local.t
55986 ____________________________________________________________________________
55987 [ 21933] By: nicholas                              on 2003/12/20  20:07:44
55988         Log: Subject: [PATCH] OpenVMS I64 support
55989              From: "Craig A. Berry" <craigberry@mac.com>
55990              Message-ID: <3FE2441F.2070603@mac.com>
55991              Date: Thu, 18 Dec 2003 18:19:43 -0600
55992      Branch: perl
55993            ! configure.com vms/gen_shrfls.pl
55994 ____________________________________________________________________________
55995 [ 21932] By: nicholas                              on 2003/12/20  19:57:51
55996         Log: remove duplicate PERL_HASH (as spotted by Enache Adrian in
55997              <20031220124854.GA1265@ratsnest.hole> )
55998      Branch: perl
55999            ! hv.c
56000 ____________________________________________________________________________
56001 [ 21931] By: nicholas                              on 2003/12/20  18:58:06
56002         Log: Solaris gconvert() doesn't like ndigits == 0. Currently we have no
56003              Configure test for troublesome gconvert(), so for now simply avoid
56004              the optimisation that calls gconvert() in this case.
56005      Branch: perl
56006            ! sv.c
56007 ____________________________________________________________________________
56008 [ 21928] By: rgs                                   on 2003/12/19  08:36:11
56009         Log: Upgrade to CGI.pm 3.01
56010      Branch: perl
56011            ! lib/CGI.pm lib/CGI/Carp.pm lib/CGI/Cookie.pm lib/CGI/Fast.pm
56012            ! lib/CGI/Pretty.pm lib/CGI/Util.pm lib/CGI/t/carp.t
56013            ! lib/CGI/t/request.t
56014 ____________________________________________________________________________
56015 [ 21927] By: rgs                                   on 2003/12/19  08:10:41
56016         Log: Subject: [DOCPATCH] base.pm
56017              From: Elizabeth Mattijsen <liz@dijkmat.nl>
56018              Date: Thu, 18 Dec 2003 22:30:52 +0100
56019              Message-Id: <p05111b12bc07cc596977@[192.168.56.3]>
56020
56021              Plus, remove leftover mentions of pseudo-hashes
56022      Branch: perl
56023            ! lib/base.pm
56024 ____________________________________________________________________________
56025 [ 21924] By: nicholas                              on 2003/12/18  20:24:29
56026         Log: "Richard" - who he? (Add "Richard Clamp" to the list of pumpkings)
56027      Branch: perl
56028            ! pod/perlhist.pod
56029 ____________________________________________________________________________
56030 [ 21923] By: rgs                                   on 2003/12/18  14:58:42
56031         Log: Perl 1.0.16 has been released.
56032      Branch: perl
56033            ! pod/perlhist.pod
56034 ____________________________________________________________________________
56035 [ 21922] By: rgs                                   on 2003/12/17  21:36:36
56036         Log: Subject: [PATCH: embed.fnc] arguments for perl_clone()
56037              From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
56038              Date: Wed, 17 Dec 2003 13:26:52 +0100
56039              Message-ID: <055701c3c499$11144f90$8cecfe91@R2D2>
56040      Branch: perl
56041            ! embed.fnc embed.h global.sym
56042 ____________________________________________________________________________
56043 [ 21921] By: rgs                                   on 2003/12/17  17:34:05
56044         Log: Subject: [PATCH] 2-arg cond_wait, cond_timedwait, tests
56045              From: Mike Pomraning <mjp@pilcrow.madison.wi.us>
56046              Date: Wed, 17 Dec 2003 00:05:58 -0600 (CST)
56047              Message-ID: <Pine.LNX.4.58.0312092202040.13494@benevelle.wi.securepipe.com>
56048      Branch: perl
56049            + ext/threads/shared/t/wait.t
56050            ! MANIFEST ext/threads/shared/shared.pm
56051            ! ext/threads/shared/shared.xs
56052 ____________________________________________________________________________
56053 [ 21918] By: rgs                                   on 2003/12/16  22:00:39
56054         Log: Sync with the latest MakeMaker snapshot.
56055              But set the $VERSION to 6.21_01.
56056      Branch: perl
56057            ! lib/ExtUtils/Changes lib/ExtUtils/MANIFEST.SKIP
56058            ! lib/ExtUtils/META.yml lib/ExtUtils/MM_Any.pm
56059            ! lib/ExtUtils/MM_Unix.pm lib/ExtUtils/MM_Win95.pm
56060            ! lib/ExtUtils/MakeMaker.pm lib/ExtUtils/MakeMaker/FAQ.pod
56061            ! lib/ExtUtils/instmodsh
56062 ____________________________________________________________________________
56063 [ 21917] By: alanbur                               on 2003/12/15  09:13:49
56064         Log: Remove incorrect guards around inclusion of <signal.h>
56065              Causes problems with UNIX03/SUSv3
56066              Part 2 of change 21916 - oops!
56067
56068              See:
56069              Message-Id: <3FDD06A5.8010004@sun.com>
56070              Subject: Re: UNIX03 & C99 issue with 5.8.2
56071              From: Alan Burlison <Alan.Burlison@sun.com>
56072              Date: Mon, 15 Dec 2003 00:56:05 +0000
56073      Branch: perl
56074            ! doop.c mg.c mpeix/mpeixish.h plan9/plan9ish.h unixish.h util.c
56075 ____________________________________________________________________________
56076 [ 21916] By: alanbur                               on 2003/12/15  09:02:58
56077         Log: Remove incorrect guards around inclusion of <signal.h>
56078              Causes problems with UNIX03/SUSv3
56079      Branch: perl
56080            ! doio.c
56081 ____________________________________________________________________________
56082 [ 21915] By: rgs                                   on 2003/12/15  07:43:50
56083         Log: Add the macros dAX and dITEMS to PPPort.
56084      Branch: perl
56085            ! ext/Devel/PPPort/PPPort.pm
56086 ____________________________________________________________________________
56087 [ 21914] By: rgs                                   on 2003/12/14  22:53:43
56088         Log: Subject: [patch Porting/pumpkin.pod] trying to ensure that PPPort is up-to-date on each new release
56089              From: Stas Bekman <stas@stason.org>
56090              Date: Sun, 14 Dec 2003 15:12:40 -0800
56091              Message-ID: <3FDCEE68.3080509@stason.org>
56092      Branch: perl
56093            ! Porting/pumpkin.pod
56094 ____________________________________________________________________________
56095 [ 21912] By: rgs                                   on 2003/12/14  22:48:17
56096         Log: Subject: [DOCPATCH] perlfunc delete
56097              From: Elizabeth Mattijsen <liz@dijkmat.nl>
56098              Date: Sun, 14 Dec 2003 20:25:07 +0100
56099              Message-Id: <p05111b07bc0269065a99@[192.168.56.3]>
56100      Branch: perl
56101            ! pod/perlfunc.pod
56102 ____________________________________________________________________________
56103 [ 21910] By: nicholas                              on 2003/12/14  20:06:41
56104         Log: Forgot to remove a comment
56105      Branch: perl
56106            ! pp.c
56107 ____________________________________________________________________________
56108 [ 21907] By: nicholas                              on 2003/12/14  18:35:15
56109         Log: S_save_hek_flags should honour the "free" flag.
56110              Ought to mask the flag bits that shouldn't be stored.
56111      Branch: perl
56112            ! hv.c
56113 ____________________________________________________________________________
56114 [ 21906] By: nicholas                              on 2003/12/14  17:06:13
56115         Log: Some fool missed a letter n.
56116              (and then "optimised" code based on its absense. D'oh)
56117              Restore the correct behaviour - fetch with uppercase key, then if
56118              still not found store with mixed/lowercase key.
56119      Branch: perl
56120            ! hv.c
56121 ____________________________________________________________________________
56122 [ 21905] By: nicholas                              on 2003/12/14  16:34:01
56123         Log: Subject: Re: Change 21862
56124              From: Enache Adrian <enache@rdslink.ro>
56125              Date: Wed, 10 Dec 2003 06:05:58 +0200
56126              Message-ID: <20031210040558.GC1584@ratsnest.hole>
56127
56128              (1st hunk), plus the equivalent for hv_delete_common
56129      Branch: perl
56130            ! hv.c
56131 ____________________________________________________________________________
56132 [ 21904] By: nicholas                              on 2003/12/14  15:32:32
56133         Log: Clean up a bug I introduced into caseless ENV hv_delete
56134              (should be the proper fix for 21870 and 21872's band aid)
56135      Branch: perl
56136            ! hv.c
56137 ____________________________________________________________________________
56138 [ 21902] By: rgs                                   on 2003/12/13  21:56:45
56139         Log: Subject: Re: 5.6.2-RC1 on Cygwin
56140              From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
56141              Date: Sat, 6 Dec 2003 22:32:59 -0800
56142              Message-ID: <20031207063259.GA3004@efn.org>
56143              (with tweaks to cleanup code)
56144      Branch: perl
56145            ! t/op/taint.t
56146 ____________________________________________________________________________
56147 [ 21898] By: nicholas                              on 2003/12/13  19:20:41
56148         Log: Add Perl_ceil
56149      Branch: perl
56150            ! perl.h pp.c
56151 ____________________________________________________________________________
56152 [ 21897] By: rgs                                   on 2003/12/13  18:41:51
56153         Log: Reformat a long line in perlembed.pod (bug #24623).
56154      Branch: perl
56155            ! pod/perlembed.pod
56156 ____________________________________________________________________________
56157 [ 21896] By: nicholas                              on 2003/12/13  18:40:59
56158         Log: The binary compatibility notes say that new global functions should
56159              go at the end. Not that I'm anything more than "trainee" when it
56160              comes to this bincompat stuff.
56161      Branch: perl
56162            ! embed.fnc proto.h
56163 ____________________________________________________________________________
56164 [ 21895] By: rgs                                   on 2003/12/13  18:33:38
56165         Log: alarm() is now implemented on Win32.
56166      Branch: perl
56167            ! pod/perlport.pod
56168 ____________________________________________________________________________
56169 [ 21893] By: nicholas                              on 2003/12/13  17:40:32
56170         Log: foreach qw() { # not valid syntax for 5.005. So fix it.
56171      Branch: perl
56172            ! pod/buildtoc
56173 ____________________________________________________________________________
56174 [ 21892] By: rgs                                   on 2003/12/13  17:02:12
56175         Log: Subject: Patch for: [perl #24650] File::CheckTree should list Larry Wall as author, not unknown
56176              From: David Dyck <david.dyck@fluke.com>
56177              Date: Sat, 13 Dec 2003 00:01:34 -0800 (PST)
56178              Message-ID: <Pine.LNX.4.51.0312122351450.8825@dd.tc.fluke.com>
56179      Branch: perl
56180            ! lib/File/CheckTree.pm
56181 ____________________________________________________________________________
56182 [ 21891] By: rgs                                   on 2003/12/13  16:33:46
56183         Log: Make the XSRETURN macro evaluate its argument only once.
56184      Branch: perl
56185            ! XSUB.h
56186 ____________________________________________________________________________
56187 [ 21886] By: rgs                                   on 2003/12/13  12:30:08
56188         Log: More POD fixes ; regenerate perltoc and perlmodlib.
56189      Branch: perl
56190            ! ext/DynaLoader/DynaLoader_pm.PL pod/perlmodlib.pod
56191            ! pod/perltoc.pod
56192 ____________________________________________________________________________
56193 [ 21885] By: rgs                                   on 2003/12/13  12:21:26
56194         Log: Fix some of the pods to produce more standard manpages,
56195              as reported by Eric S. Raymond.
56196      Branch: perl
56197            ! README.ce README.netware lib/Getopt/Std.pm lib/diagnostics.pm
56198 ____________________________________________________________________________
56199 [ 21884] By: rgs                                   on 2003/12/13  00:09:01
56200         Log: Subject: RE: [perl #24610] Pod::Html infinite recursion
56201              From: Anders Johnson <ajohnson@nvidia.com>
56202              Date: Fri, 12 Dec 2003 14:07:40 -0800
56203              Message-ID: <33171CC36240D94EAF1FE584B1D14E0A06EC6F51@mail-sc-11.nvidia.com>
56204              (with tweaks)
56205      Branch: perl
56206            ! lib/Pod/Html.pm
56207 ____________________________________________________________________________
56208 [ 21883] By: rgs                                   on 2003/12/12  23:54:25
56209         Log: Modify the common guard for the signal.h header, because
56210              C99 compilers don't like it.o
56211
56212              see :
56213              Subject: UNIX03 & C99 issue with 5.8.2
56214              From: Alan Burlison <Alan.Burlison@sun.com>
56215              Date: Fri, 12 Dec 2003 23:04:52 +0000
56216              Message-ID: <3FDA4994.6050209@sun.com>
56217      Branch: perl
56218            ! doio.c doop.c mg.c mpeix/mpeixish.h plan9/plan9ish.h unixish.h
56219            ! util.c
56220 ____________________________________________________________________________
56221 [ 21882] By: rgs                                   on 2003/12/12  22:43:11
56222         Log: Subject: [PATCH] Math::BigInt v1.67 released
56223              From: Tels <perl_dummy@bloodgate.com>
56224              Date: Fri, 12 Dec 2003 18:47:43 +0100
56225              Message-Id: <200312121847.49039@bloodgate.com>
56226      Branch: perl
56227            ! lib/Math/BigFloat.pm lib/Math/BigInt.pm
56228            ! lib/Math/BigInt/Calc.pm lib/Math/BigInt/t/bare_mbi.t
56229            ! lib/Math/BigInt/t/bigintpm.inc lib/Math/BigInt/t/bigintpm.t
56230            ! lib/Math/BigInt/t/downgrade.t lib/Math/BigInt/t/fallback.t
56231            ! lib/Math/BigInt/t/sub_mbi.t
56232 ____________________________________________________________________________
56233 [ 21881] By: merijn                                on 2003/12/12  16:09:14
56234         Log: Subject: [PATCH] d_u32align for win32
56235              From: Gisle Aas <gisle@ActiveState.com>
56236              Date: 11 Dec 2003 01:33:39 -0800
56237              Message-ID: <lrzndzr958.fsf@caliper.activestate.com>
56238      Branch: perl
56239            ! win32/config.bc win32/config.gc win32/config.vc
56240 ____________________________________________________________________________
56241 [ 21879] By: rgs                                   on 2003/12/11  23:53:34
56242         Log: Subject: [PATCH] environ array fix for VMS
56243              From: "Craig A. Berry" <craigberry@mac.com>
56244              Date: Thu, 11 Dec 2003 14:35:29 -0600
56245              Message-ID: <3FD8D511.2030805@mac.com>
56246      Branch: perl
56247            ! vms/vms.c
56248 ____________________________________________________________________________
56249 [ 21878] By: nicholas                              on 2003/12/11  23:49:20
56250         Log: Subject: [PATCH] Perl 5.9.0 AUTHORS
56251              From: Mark Leighton Fisher <mark-fisher@mindspring.com>
56252              Message-ID: <3FD8E74F.7000202@mindspring.com>
56253              Date: Thu, 11 Dec 2003 16:53:19 -0500
56254      Branch: perl
56255            ! AUTHORS
56256 ____________________________________________________________________________
56257 [ 21877] By: rgs                                   on 2003/12/11  23:40:54
56258         Log: Add a mention of the error "DESTROY created new reference
56259              to dead object" in perldiag.
56260      Branch: perl
56261            ! pod/perldiag.pod
56262 ____________________________________________________________________________
56263 [ 21876] By: adi                                   on 2003/12/11  23:04:03
56264         Log: #21866 was wrong. another try to plumb that damn leak.
56265      Branch: perl
56266            ! mg.c sv.c
56267 ____________________________________________________________________________
56268 [ 21875] By: adi                                   on 2003/12/11  20:11:07
56269         Log: fix bug #24605.
56270              substr() wasn't working when used repeatedly on the same utf-8
56271              string.
56272      Branch: perl
56273            ! sv.c t/op/substr.t
56274 ____________________________________________________________________________
56275 [ 21874] By: rgs                                   on 2003/12/09  21:36:58
56276         Log: Suppress a C< $DB::single = 1 > from Switch.pm, as noticed
56277              by Jan Dubois.
56278      Branch: perl
56279            ! lib/Switch.pm
56280 ____________________________________________________________________________
56281 [ 21873] By: rgs                                   on 2003/12/09  21:33:22
56282         Log: Subject: [PATCH perlunicode.pod, encoding.pm] Implicit upgrading docs
56283              From: Autrijus Tang <autrijus@autrijus.org>
56284              Date: Tue, 9 Dec 2003 20:39:16 +0800
56285              Message-ID: <20031209123915.GA1454@not.autrijus.org>
56286      Branch: perl
56287            ! ext/Encode/encoding.pm pod/perlunicode.pod
56288 ____________________________________________________________________________
56289 [ 21872] By: adi                                   on 2003/12/09  03:26:16
56290         Log: temporary fix to avoid t/op/tie.t failures on Win32
56291      Branch: perl
56292            ! hv.c
56293 ____________________________________________________________________________
56294 [ 21871] By: rgs                                   on 2003/12/08  15:22:26
56295         Log: Upgrade to Digest-MD5 2.33.
56296      Branch: perl
56297            ! ext/Digest/MD5/Changes ext/Digest/MD5/MD5.pm
56298            ! ext/Digest/MD5/MD5.xs ext/Digest/MD5/Makefile.PL
56299            ! ext/Digest/MD5/t/files.t ext/Digest/MD5/typemap
56300 ____________________________________________________________________________
56301 [ 21870] By: rgs                                   on 2003/12/08  08:22:17
56302         Log: Integrate change #21862 from maint-5.8 :
56303
56304              Win32/MinGW tweaks
56305              A. ENV_IS_CASELESS has trys to free(keysave) when
56306              keysave isn't in scope yet.
56307              B. For default makefile.mk which build with perlhost.h
56308              stuff "live" need to link with g++ to find new/delete etc.
56309      Branch: perl
56310           !> hv.c win32/makefile.mk
56311 ____________________________________________________________________________
56312 [ 21869] By: rgs                                   on 2003/12/08  07:37:27
56313         Log: Subject: [PATCH] iterator reset moved to hv.c (was: [PATCH] SCALAR/FIRSTKEY for tied hashes in scalar context)
56314              From: Tassilo von Parseval <tassilo.parseval@post.rwth-aachen.de>
56315              Date: Mon, 08 Dec 2003 08:17:46 +0100
56316              Message-id: <20031208071746.GA594@ethan>
56317      Branch: perl
56318            ! hv.c mg.c
56319 ____________________________________________________________________________
56320 [ 21868] By: adi                                   on 2003/12/08  03:38:39
56321         Log: yet another leak. bigger fish still swimming around.
56322              #!perl
56323              eval q{ $_ = "x"; s/x/"in subst"/e } while 1;
56324              __END__
56325      Branch: perl
56326            ! pp_ctl.c
56327 ____________________________________________________________________________
56328 [ 21867] By: adi                                   on 2003/12/08  03:34:37
56329         Log: yet another 2 leaks. example for the second:
56330              #! perl
56331              eval q{ open $p{q}, "foo" } while 1
56332              __END__
56333      Branch: perl
56334            ! op.c
56335 ____________________________________________________________________________
56336 [ 21866] By: adi                                   on 2003/12/08  03:30:16
56337         Log: plumb a leak with pos().
56338
56339              #! perl
56340              while (1) {
56341              my $a = "\x{1ff}"; $a =~ /\x{1ff}/g; pos($a);
56342              }
56343              __END__
56344      Branch: perl
56345            ! sv.c
56346 ____________________________________________________________________________
56347 [ 21865] By: rgs                                   on 2003/12/07  21:28:13
56348         Log: Subject: [PATCH] documenting SCALAR gotcha
56349              From: Tassilo von Parseval <tassilo.parseval@post.rwth-aachen.de>
56350              Date: Sun, 07 Dec 2003 16:41:16 +0100
56351              Message-id: <20031207154116.GA825@ethan>
56352      Branch: perl
56353            ! pod/perltie.pod
56354 ____________________________________________________________________________
56355 [ 21864] By: rgs                                   on 2003/12/07  20:13:47
56356         Log: Subject: [PATCH] setenv tweak for VMS
56357              From: "Craig A. Berry" <craigberry@mac.com>
56358              Date: Sat, 06 Dec 2003 18:13:32 -0600
56359              Message-ID: <3FD270AC.3000106@mac.com>
56360      Branch: perl
56361            ! vms/vms.c
56362 ____________________________________________________________________________
56363 [ 21863] By: rgs                                   on 2003/12/06  21:33:22
56364         Log: Missing thingies.
56365      Branch: perl
56366            ! pp.c pp_hot.c
56367 ____________________________________________________________________________
56368 [ 21861] By: rgs                                   on 2003/12/06  20:58:12
56369         Log: Subject: [PATCH] Math::BigInt v1.67 (pre-release)
56370              From: Tels <perl_dummy@bloodgate.com>
56371              Date: Sat, 6 Dec 2003 20:19:44 +0100
56372              Message-Id: <200312062016.50484@bloodgate.com>
56373      Branch: perl
56374            + lib/Math/BigInt/t/const_mbf.t lib/Math/BigInt/t/fallback.t
56375            ! MANIFEST lib/Math/BigFloat.pm lib/Math/BigInt.pm
56376            ! lib/Math/BigInt/Calc.pm lib/Math/BigInt/t/bare_mbf.t
56377            ! lib/Math/BigInt/t/bare_mbi.t lib/Math/BigInt/t/bigfltpm.inc
56378            ! lib/Math/BigInt/t/bigfltpm.t lib/Math/BigInt/t/bigintc.t
56379            ! lib/Math/BigInt/t/bigintpm.inc lib/Math/BigInt/t/bigintpm.t
56380            ! lib/Math/BigInt/t/bigints.t lib/Math/BigInt/t/biglog.t
56381            ! lib/Math/BigInt/t/constant.t lib/Math/BigInt/t/sub_mbf.t
56382            ! lib/Math/BigInt/t/sub_mbi.t lib/Math/BigInt/t/with_sub.t
56383 ____________________________________________________________________________
56384 [ 21860] By: rgs                                   on 2003/12/06  20:33:09
56385         Log: Forgot to update the MANIFEST.
56386      Branch: perl
56387            ! MANIFEST
56388 ____________________________________________________________________________
56389 [ 21859] By: rgs                                   on 2003/12/06  20:19:16
56390         Log: Math::BigInt::Scalar is only for tests.
56391              Move it under t/lib.
56392      Branch: perl
56393           +> t/lib/Math/BigInt/Scalar.pm
56394            - lib/Math/BigInt/Scalar.pm
56395 ____________________________________________________________________________
56396 [ 21858] By: rgs                                   on 2003/12/06  20:01:24
56397         Log: Subject: [PATCH] casting bug in VMS part of Perl_start_glob
56398              From: "Craig A. Berry" <craigberry@mac.com>
56399              Date: Sat, 06 Dec 2003 12:44:40 -0600
56400              Message-ID: <3FD22398.1060506@mac.com>
56401      Branch: perl
56402            ! doio.c
56403 ____________________________________________________________________________
56404 [ 21857] By: rgs                                   on 2003/12/06  19:58:51
56405         Log: Remove the "Can't provide tied hash usage" error from perldiag.
56406              Mention the new tied hash SCALAR method in perldelta.
56407      Branch: perl
56408            ! pod/perldelta.pod pod/perldiag.pod
56409 ____________________________________________________________________________
56410 [ 21856] By: rgs                                   on 2003/12/06  19:51:49
56411         Log: Clarify the description of SCALAR in perltie
56412      Branch: perl
56413            ! pod/perltie.pod
56414 ____________________________________________________________________________
56415 [ 21855] By: rgs                                   on 2003/12/06  19:50:07
56416         Log: Subject: [PATCH] SCALAR/FIRSTKEY for tied hashes in scalar context
56417              From: Tassilo von Parseval <tassilo.parseval@post.rwth-aachen.de>
56418              Date: Sat, 06 Dec 2003 11:50:59 +0100
56419              Message-id: <20031206105059.GA13989@ethan>
56420      Branch: perl
56421            ! embed.fnc embed.h global.sym hv.c lib/Tie/Hash.pm mg.c
56422            ! pod/perlapi.pod pod/perlfunc.pod pod/perltie.pod pp.c pp_hot.c
56423            ! proto.h t/op/tie.t
56424 ____________________________________________________________________________
56425 [ 21854] By: nicholas                              on 2003/12/06  16:30:35
56426         Log: Make sv_force_normal_flags cope with shared hash key scalars
56427              (remember the pointer from SvPVX, reset the flags before SvGROW,
56428              avoid crazy loops or read-from-free)
56429      Branch: perl
56430            ! sv.c
56431 ____________________________________________________________________________
56432 [ 21851] By: nicholas                              on 2003/12/05  20:49:10
56433         Log: Back out the Makefile.PL part of 21808 as requested by Gisle Aas
56434      Branch: perl
56435            ! ext/Digest/MD5/Makefile.PL
56436 ____________________________________________________________________________
56437 [ 21846] By: merijn                                on 2003/12/05  10:41:32
56438         Log: Subject: [PATCH] Configure gets d_u32align wrong
56439              From: Gisle Aas <gisle@ActiveState.com>
56440              Date: 05 Dec 2003 03:47:01 -0800
56441              Message-ID: <lr4qwfbi6i.fsf_-_@caliper.activestate.com>
56442      Branch: perl
56443            ! Configure
56444 ____________________________________________________________________________
56445 [ 21844] By: rgs                                   on 2003/12/05  07:31:18
56446         Log: Subject: [REPATCH lib/AutoLoader.t] Test can() with AutoLoader
56447              From: chromatic <chromatic@wgz.org>
56448              Date: Mon, 01 Dec 2003 09:20:21 -0800
56449              Message-Id: <1070299221.1275.19.camel@localhost>
56450      Branch: perl
56451            ! lib/AutoLoader.t
56452 ____________________________________________________________________________
56453 [ 21843] By: rgs                                   on 2003/12/05  07:13:08
56454         Log: Subject: [PATCH] another ext/SDBM_File/sdbm build fix
56455              From: "Craig A. Berry" <craigberry@mac.com>
56456              Date: Thu, 04 Dec 2003 16:00:03 -0600
56457              Message-ID: <3FCFAE63.1080106@mac.com>
56458      Branch: perl
56459            ! ext/SDBM_File/sdbm/Makefile.PL
56460 ____________________________________________________________________________
56461 [ 21842] By: rgs                                   on 2003/12/05  07:07:30
56462         Log: Subject: [PATCH] $^P, eval and caller
56463              From: Paul Johnson <paul@pjcj.net>
56464              Date: Fri, 5 Dec 2003 00:57:21 +0100
56465              Message-ID: <20031204235721.GJ26355@pjcj.net>
56466      Branch: perl
56467            ! mg.c
56468 ____________________________________________________________________________
56469 [ 21841] By: rgs                                   on 2003/12/04  12:00:28
56470         Log: Fix File::Copy with hard links on Windows.
56471
56472              Subject: [PATCH] Re: perl @ 21830
56473              From: Steve Hay <steve.hay@uk.radan.com>
56474              Date: Wed, 03 Dec 2003 10:53:02 +0000
56475              Message-ID: <3FCDC08E.7080800@uk.radan.com>
56476
56477              and
56478              Date: Thu, 04 Dec 2003 11:02:22 +0000
56479              Message-ID: <3FCF143E.1040905@uk.radan.com>
56480      Branch: perl
56481            ! lib/File/Copy.pm lib/File/Copy.t
56482 ____________________________________________________________________________
56483 [ 21840] By: rgs                                   on 2003/12/04  11:54:28
56484         Log: Subject: Re: a2p.pod not being installed in 5.8.2?
56485              From: Alan Burlison <Alan.Burlison@sun.com>
56486              Date: Thu, 04 Dec 2003 12:14:30 +0000
56487              Message-ID: <3FCF2526.3030905@sun.com>
56488      Branch: perl
56489            ! installperl
56490 ____________________________________________________________________________
56491 [ 21837] By: rgs                                   on 2003/12/03  08:27:33
56492         Log: Subject: Re: XS modules having problems with CLONE and ithreads unless PERL_NO_GET_CONTEXT is defined
56493              From: Stas Bekman <stas@stason.org>
56494              Date: Wed, 03 Dec 2003 01:41:42 -0800
56495              Message-ID: <3FCDAFD6.9050106@stason.org>
56496      Branch: perl
56497            ! sv.c
56498 ____________________________________________________________________________
56499 [ 21836] By: rgs                                   on 2003/12/02  23:31:06
56500         Log: The prove utility should also be installed on VMS and on Windows.
56501              Haven't we regression tests for installations yet ?
56502      Branch: perl
56503            ! vms/descrip_mms.template win32/Makefile win32/makefile.mk
56504 ____________________________________________________________________________
56505 [ 21835] By: rgs                                   on 2003/12/02  22:18:05
56506         Log: FAQ sync.
56507      Branch: perl
56508            ! pod/perlfaq1.pod pod/perlfaq2.pod pod/perlfaq3.pod
56509            ! pod/perlfaq4.pod pod/perlfaq5.pod
56510 ____________________________________________________________________________
56511 [ 21834] By: rgs                                   on 2003/12/02  21:45:12
56512         Log: Subject: Re: [perl #24574] find2perl provides different results to find
56513              From: Slaven Rezic <slaven@rezic.de>
56514              Date: 30 Nov 2003 22:16:59 +0100
56515              Message-ID: <8765h1pnec.fsf@vran.herceg.de>
56516
56517              (plus a note about find2perl now defaulting to -print in perldelta)
56518      Branch: perl
56519            ! pod/perldelta.pod x2p/find2perl.PL
56520 ____________________________________________________________________________
56521 [ 21833] By: rgs                                   on 2003/12/02  21:34:57
56522         Log: Subject: [PATCH] setting $0 still broken
56523              From: Jan Dubois <jand@ActiveState.com>
56524              Date: Thu, 27 Nov 2003 21:09:51 -0800
56525              Message-ID: <f3mdsv8dcv4asle0kbhiijk0adu1l25sr3@4ax.com>
56526      Branch: perl
56527            ! mg.c
56528 ____________________________________________________________________________
56529 [ 21832] By: rgs                                   on 2003/12/02  21:05:58
56530         Log: Better docs for the special code blocks, based on :
56531              Subject: [DOCPATCH] BEGIN, CHECK, INIT, END explained more
56532              From: Elizabeth Mattijsen <liz@dijkmat.nl>
56533              Date: Sat, 29 Nov 2003 23:15:56 +0100
56534              Message-Id: <p05111b01bbeec2e8bf30@[192.168.56.3]>
56535      Branch: perl
56536            ! pod/perlmod.pod pod/perlsub.pod
56537 ____________________________________________________________________________
56538 [ 21828] By: rgs                                   on 2003/11/30  20:56:00
56539         Log: Fix the test boilerplate in lib/if.t, so it can be run
56540              from the t/ directory.
56541      Branch: perl
56542            ! lib/if.t
56543 ____________________________________________________________________________
56544 [ 21827] By: rgs                                   on 2003/11/30  20:34:39
56545         Log: Keep installing xsubpp in lib/ExtUtils,
56546              so MakeMaker can find it.
56547      Branch: perl
56548            ! installperl
56549 ____________________________________________________________________________
56550 [ 21826] By: rgs                                   on 2003/11/30  20:31:59
56551         Log: Upgrade to Test::Harness 2.38.
56552              Introduce the prove(1) utility.
56553              (The prove-switches test is disabled for now.)
56554      Branch: perl
56555            + lib/Test/Harness/bin/prove lib/Test/Harness/t/inc_taint.t
56556            + lib/Test/Harness/t/prove-switches.t t/lib/Dev/Null.pm
56557            + t/lib/sample-tests/inc_taint t/lib/sample-tests/taint_warn
56558            + utils/prove.PL
56559            ! MANIFEST installperl lib/Test/Harness.pm
56560            ! lib/Test/Harness/Assert.pm lib/Test/Harness/Changes
56561            ! lib/Test/Harness/Iterator.pm lib/Test/Harness/Straps.pm
56562            ! lib/Test/Harness/t/00compile.t lib/Test/Harness/t/assert.t
56563            ! lib/Test/Harness/t/callback.t lib/Test/Harness/t/pod.t
56564            ! lib/Test/Harness/t/strap-analyze.t lib/Test/Harness/t/strap.t
56565            ! lib/Test/Harness/t/test-harness.t utils.lst utils/Makefile
56566 ____________________________________________________________________________
56567 [ 21823] By: rgs                                   on 2003/11/30  18:22:54
56568         Log: Subject: Re: [perl #24554] Segfault in POSIX module
56569              From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
56570              Date: Sat, 29 Nov 2003 23:32:38 +0900
56571              Message-Id: <20031129233010.8E2F.BQW10602@nifty.com>
56572
56573              (plus a test for the stringification of references
56574              passed to POSIX::isXXX())
56575      Branch: perl
56576            ! ext/POSIX/POSIX.xs ext/POSIX/t/is.t ext/POSIX/t/posix.t
56577 ____________________________________________________________________________
56578 [ 21814] By: nicholas                              on 2003/11/29  20:53:23
56579         Log: Integrate if.pm 0.0401
56580              Needed to edit the test file as t/TEST can't cope with extra output
56581              lines as produced by 0.0401's if.t
56582      Branch: perl
56583            ! lib/if.pm lib/if.t
56584 ____________________________________________________________________________
56585 [ 21813] By: nicholas                              on 2003/11/29  19:54:52
56586         Log: Remove whitespace from ends of lines (simply because it irritates me)
56587      Branch: perl
56588            ! utils/h2xs.PL
56589 ____________________________________________________________________________
56590 [ 21812] By: nicholas                              on 2003/11/29  17:55:32
56591         Log: Update Unicode::Normalize to 0.28
56592      Branch: perl
56593            + ext/Unicode/Normalize/t/illegal.t
56594            + ext/Unicode/Normalize/t/null.t ext/Unicode/Normalize/t/short.t
56595            ! MANIFEST ext/Unicode/Normalize/Changes
56596            ! ext/Unicode/Normalize/Normalize.pm
56597            ! ext/Unicode/Normalize/Normalize.xs
56598            ! ext/Unicode/Normalize/README
56599 ____________________________________________________________________________
56600 [ 21811] By: nicholas                              on 2003/11/29  17:30:18
56601         Log: D'oh! This has been moved to lib/Digest/t/digest.t but not deleted.
56602      Branch: perl
56603            - lib/Digest.t
56604 ____________________________________________________________________________
56605 [ 21810] By: nicholas                              on 2003/11/29  17:29:15
56606         Log: Update Unicode::Collate to 0.31 (Only the .pm version for now)
56607      Branch: perl
56608            + lib/Unicode/Collate/t/illegal.t
56609            + lib/Unicode/Collate/t/illegalp.t
56610            ! MANIFEST lib/Unicode/Collate.pm lib/Unicode/Collate/Changes
56611            ! lib/Unicode/Collate/README lib/Unicode/Collate/t/version.t
56612 ____________________________________________________________________________
56613 [ 21809] By: nicholas                              on 2003/11/29  17:09:25
56614         Log: D'oh! Forgot to lib/Digest/base.pm
56615      Branch: perl
56616            + lib/Digest/base.pm
56617            ! MANIFEST
56618 ____________________________________________________________________________
56619 [ 21808] By: nicholas                              on 2003/11/29  17:04:39
56620         Log: Update to Digest::MD5 2.31
56621      Branch: perl
56622            + ext/Digest/MD5/t/bits.t
56623            ! MANIFEST ext/Digest/MD5/Changes ext/Digest/MD5/MD5.pm
56624            ! ext/Digest/MD5/Makefile.PL ext/Digest/MD5/t/badfile.t
56625            ! ext/Digest/MD5/t/files.t
56626 ____________________________________________________________________________
56627 [ 21807] By: nicholas                              on 2003/11/29  16:45:19
56628         Log: Update Digest to 1.03
56629      Branch: perl
56630            + lib/Digest/t/base.t
56631           +> lib/Digest/t/digest.t
56632            ! MANIFEST Porting/Maintainers.pl lib/Digest.pm
56633 ____________________________________________________________________________
56634 [ 21806] By: nicholas                              on 2003/11/29  15:41:19
56635         Log: When Gconvert is a macro around sprintf with a .* format we need
56636              to cast to int (in case STRLEN isn't the same size as int)
56637              gcc issues a warning even when it is the same size
56638      Branch: perl
56639            ! sv.c
56640 ____________________________________________________________________________
56641 [ 21805] By: nicholas                              on 2003/11/29  14:44:56
56642         Log: Silence gcc 2.95 warning
56643              (Its trace flow isn't good enough to realise that there is no problem)
56644      Branch: perl
56645            ! pp_hot.c
56646 ____________________________________________________________________________
56647 [ 21804] By: nicholas                              on 2003/11/29  14:44:22
56648         Log: Gconvert actually takes type NV, while nv may be either double
56649              or long double (depending on some conditional code)
56650              Rafael and I think that this cast should work.
56651      Branch: perl
56652            ! sv.c
56653 ____________________________________________________________________________
56654 [ 21802] By: rgs                                   on 2003/11/29  11:38:58
56655         Log: POSIX::isXXX(undef) segfaulted. (bug #24554.)
56656      Branch: perl
56657            ! ext/POSIX/POSIX.xs ext/POSIX/t/posix.t
56658 ____________________________________________________________________________
56659 [ 21800] By: rgs                                   on 2003/11/28  22:38:40
56660         Log: Fix a regression introduced by change #21694 on sprintf()
56661              with long doubles, by disabling the specific optimisation
56662              path in this case ; remove a unnecessary cast ; add a new
56663              test file for miscellaneous sprintf() test that don't fit
56664              in the t/op/sprintf.t framework.
56665      Branch: perl
56666            + t/op/sprintf2.t
56667            ! MANIFEST sv.c
56668 ____________________________________________________________________________
56669 [ 21799] By: rgs                                   on 2003/11/28  21:41:29
56670         Log: Subject: [patch pod/perlsec.pod] (was Re: why PERL5LIB is ignored when -T is in effect)
56671              From: Stas Bekman <stas@stason.org>
56672              Date: Fri, 28 Nov 2003 14:42:25 -0800
56673              Message-ID: <3FC7CF51.7060804@stason.org>
56674      Branch: perl
56675            ! pod/perlsec.pod
56676 ____________________________________________________________________________
56677 [ 21798] By: rgs                                   on 2003/11/28  20:42:45
56678         Log: Implement C<use Exporter 'import'> :
56679
56680              Subject: Re: [PATCH] Exporter-related PODs
56681              From: Fergal Daly <fergal@esatclear.ie>
56682              Date: Mon, 10 Nov 2003 00:08:52 +0000
56683              Message-Id: <200311100008.52639.fergal@esatclear.ie>
56684
56685              (tweaked, so the imported import() doesn't spit out warnings)
56686      Branch: perl
56687            ! lib/Exporter.pm lib/Exporter.t
56688 ____________________________________________________________________________
56689 [ 21797] By: rgs                                   on 2003/11/28  20:11:47
56690         Log: Subject: Re: [perl #24245] File::Copy::copy damages hard linked files
56691              From: Slaven Rezic <slaven@rezic.de>
56692              Date: 19 Oct 2003 19:11:31 +0200
56693              Message-ID: <87smlprw3g.fsf@vran.herceg.de>
56694              (with further tweaks)
56695      Branch: perl
56696            ! lib/File/Copy.pm lib/File/Copy.t
56697 ____________________________________________________________________________
56698 [ 21795] By: rgs                                   on 2003/11/28  19:16:33
56699         Log: Subject: [PATCH] Fix perl 5.8 and 5.9 to build on latest VOS
56700              From: "Green, Paul" <Paul.Green@stratus.com>
56701              Date: Thu, 27 Nov 2003 21:51:26 -0500
56702              Message-ID: <A2A34F15EE916148BC4C4748223E67A4069FB815@exna4.stratus.com>
56703      Branch: perl
56704            ! hints/vos.sh
56705 ____________________________________________________________________________
56706 [ 21794] By: nicholas                              on 2003/11/28  19:14:58
56707         Log: Arguments to skip were the wrong way round, hence why all the *BSDs
56708              were failing
56709      Branch: perl
56710            ! t/op/readline.t
56711 ____________________________________________________________________________
56712 [ 21789] By: rgs                                   on 2003/11/27  22:18:29
56713         Log: Marcus Holland-Moritz is now the maintainer of Devel::PPPort.
56714              PerlIO and threads are not on CPAN.
56715      Branch: perl
56716            ! Porting/Maintainers.pl
56717 ____________________________________________________________________________
56718 [ 21788] By: nicholas                              on 2003/11/25  21:27:11
56719         Log: Add Torsten Foertsch to AUTHORS (patches plus tests are what we like)
56720      Branch: perl
56721            ! AUTHORS
56722 ____________________________________________________________________________
56723 [ 21787] By: rgs                                   on 2003/11/25  21:12:19
56724         Log: Subject: [PATCH] Re: bug or a feature?
56725              From: Torsten Foertsch <torsten.foertsch@gmx.net>
56726              Date: Sat, 22 Nov 2003 13:15:53 +0100
56727              Message-Id: <200311221315.58539.torsten.foertsch@gmx.net>
56728
56729              and
56730              Date: Sat, 22 Nov 2003 14:21:45 +0100
56731              Message-Id: <200311221421.48940.torsten.foertsch@gmx.net>
56732              (test moved to t/op/readline.t)
56733      Branch: perl
56734            ! pp_hot.c t/op/readline.t
56735 ____________________________________________________________________________
56736 [ 21783] By: merijn                                on 2003/11/24  21:24:46
56737         Log: Subject: remove hardcoded version number from cygwin/perlld.in
56738              From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
56739              Date: Mon, 24 Nov 2003 08:11:36 -0800
56740              Message-ID: <20031124161136.GC2656@efn.org>
56741      Branch: perl
56742            ! cygwin/Makefile.SHs cygwin/perlld.in
56743 ____________________________________________________________________________
56744 [ 21782] By: nicholas                              on 2003/11/24  20:07:29
56745         Log: Should fix the infinite loop on a dynamic %ENV fetch
56746      Branch: perl
56747            ! hv.c
56748 ____________________________________________________________________________
56749 [ 21781] By: nicholas                              on 2003/11/24  19:47:57
56750         Log: Tweak the order of initialisation of oentry in hv_fetch_common -
56751              C source now cleaner, but optimised object file still the same size.
56752      Branch: perl
56753            ! hv.c
56754 ____________________________________________________________________________
56755 [ 21780] By: rgs                                   on 2003/11/23  21:59:06
56756         Log: Subject: Re: [perl #24439] 64 bit build failure on Solaris 9
56757              From: Andy Dougherty <doughera@lafayette.edu>
56758              Date: Thu, 20 Nov 2003 09:38:05 -0500 (EST)
56759              Message-ID: <Pine.SOL.4.53.0311200926550.25274@maxwell.phys.lafayette.edu>
56760
56761              and :
56762              Date: Fri, 21 Nov 2003 09:36:24 -0500 (EST)
56763              Message-ID: <Pine.SOL.4.53.0311210927460.1876@maxwell.phys.lafayette.edu>
56764      Branch: perl
56765            ! hints/solaris_2.sh
56766 ____________________________________________________________________________
56767 [ 21779] By: nicholas                              on 2003/11/22  23:37:24
56768         Log: D'oh. Mistake in the DYNAMIC_ENV_FETCH conditional code
56769              reported by Craig Berry
56770      Branch: perl
56771            ! hv.c
56772 ____________________________________________________________________________
56773 [ 21774] By: nicholas                              on 2003/11/22  21:21:22
56774         Log: restore_magic needs to undo COW
56775              (while magic was off, sv_setsv is likely to have seen this SV as a
56776              good source for COW)
56777              Should fix the smoke failures on lib/locale.t
56778      Branch: perl
56779            ! mg.c
56780 ____________________________________________________________________________
56781 [ 21773] By: nicholas                              on 2003/11/22  19:12:32
56782         Log: Don't COW if the destination has magic.
56783      Branch: perl
56784            ! sv.c
56785 ____________________________________________________________________________
56786 [ 21772] By: nicholas                              on 2003/11/22  17:05:32
56787         Log: Reorder functions in hv.c so that callers of hv_fetch_common are all
56788              close to it.
56789      Branch: perl
56790            ! hv.c
56791 ____________________________________________________________________________
56792 [ 21771] By: nicholas                              on 2003/11/22  16:43:09
56793         Log: "Space Is a Province of Brazil"
56794              Farewell, hv_store_common. Store is now part of Fetch.
56795              All tests pass. hv.c 15% smaller than when I started all this
56796      Branch: perl
56797            ! embed.fnc embed.h hv.c proto.h
56798 ____________________________________________________________________________
56799 [ 21770] By: nicholas                              on 2003/11/22  13:16:43
56800         Log: Farewell hv_exists_common - exists is now a call to fetch
56801              (with the exists magic handling moved into fetch)
56802      Branch: perl
56803            ! embed.fnc embed.h hv.c proto.h
56804 ____________________________________________________________________________
56805 [ 21769] By: nicholas                              on 2003/11/22  11:02:23
56806         Log: Shift negative klen/flags games from hv_store_common out to hv_store
56807      Branch: perl
56808            ! embed.fnc embed.h hv.c proto.h
56809 ____________________________________________________________________________
56810 [ 21768] By: nicholas                              on 2003/11/22  10:37:24
56811         Log: Shift negative klen/flags games from hv_exists_common out to hv_exists
56812      Branch: perl
56813            ! embed.fnc embed.h hv.c proto.h
56814 ____________________________________________________________________________
56815 [ 21767] By: nicholas                              on 2003/11/21  23:15:47
56816         Log: Check that the key is present before a delete, and absent afterwards
56817      Branch: perl
56818            ! ext/XS/APItest/t/hash.t
56819 ____________________________________________________________________________
56820 [ 21766] By: nicholas                              on 2003/11/21  23:12:33
56821         Log: Move the negative key -> utf8 flag conversion out to hv_delete
56822      Branch: perl
56823            ! embed.fnc embed.h hv.c proto.h
56824 ____________________________________________________________________________
56825 [ 21765] By: nicholas                              on 2003/11/21  22:41:23
56826         Log: Tweaks to S_hv_delete_common:
56827              make the magic call hv_fetch_common rather than ent-or-not
56828              grab the hash from a shared hash key scalar if possible
56829              use masked flags rather than flags for the comparison
56830      Branch: perl
56831            ! hv.c
56832 ____________________________________________________________________________
56833 [ 21764] By: nicholas                              on 2003/11/21  21:54:58
56834         Log: Integrate:
56835              [ 21762]
56836              Refactor hash API tests (prior to some additions)
56837
56838              [ 21763]
56839              Test all permuations of utf8 flags on hashes and keys
56840      Branch: perl
56841           !> ext/XS/APItest/t/hash.t
56842 ____________________________________________________________________________
56843 [ 21760] By: nicholas                              on 2003/11/20  22:34:00
56844         Log: Shift negative klen/flags games from hv_fetch_common out to hv_fetch
56845      Branch: perl
56846            ! embed.fnc hv.c proto.h
56847 ____________________________________________________________________________
56848 [ 21758] By: nicholas                              on 2003/11/20  20:14:17
56849         Log: Merge sv_store_flags and sv_store_ent into sv_store_common
56850      Branch: perl
56851            ! embed.fnc embed.h hv.c proto.h
56852 ____________________________________________________________________________
56853 [ 21756] By: rgs                                   on 2003/11/20  12:04:46
56854         Log: Subject: [PATCH] promote hv_clear_placeholders to perl API
56855              From: Alan Burlison <Alan.Burlison@sun.com>
56856              Date: Thu, 20 Nov 2003 10:34:30 +0000
56857              Message-ID: <3FBC98B6.6090909@sun.com>
56858      Branch: perl
56859            ! embed.fnc embed.h global.sym hv.c pod/perlapi.pod proto.h
56860            ! universal.c
56861 ____________________________________________________________________________
56862 [ 21755] By: rgs                                   on 2003/11/19  22:46:20
56863         Log: Regenerate perlapi and perltoc.
56864      Branch: perl
56865            ! pod/perlapi.pod pod/perltoc.pod
56866 ____________________________________________________________________________
56867 [ 21754] By: rgs                                   on 2003/11/19  22:39:51
56868         Log: Subject: [docpatch] PerlIO layers in perlrun.pod and PerlIO.pm
56869              From: Iain Truskett <spoon@cpan.org>
56870              Date: Thu, 20 Nov 2003 00:41:33 +1100
56871              Message-ID: <20031119134132.GG21314@gytha.anu.edu.au>
56872      Branch: perl
56873            ! lib/PerlIO.pm pod/perlrun.pod
56874 ____________________________________________________________________________
56875 [ 21753] By: nicholas                              on 2003/11/19  22:28:25
56876         Log: merge hv_fetch and hv_fetch_ent into hv_fetch_common
56877              remove S_hv_fetch_flags
56878              hv.c now 13% smaller than when I started. hv_store TODO
56879      Branch: perl
56880            ! embed.fnc embed.h hv.c proto.h
56881 ____________________________________________________________________________
56882 [ 21752] By: rgs                                   on 2003/11/19  21:06:01
56883         Log: Fix bug [perl #24508] Wrong assignment in nested assignment
56884              together with subroutine call
56885              Apparently concat still doesn't deal correctly with lexicals
56886              in all cases. Disable the whole TARGET_MY optimisation for it.
56887              (and remove the corresponding code from the peephole optimiser.)
56888      Branch: perl
56889            ! op.c opcode.h opcode.pl t/op/concat.t
56890 ____________________________________________________________________________
56891 [ 21751] By: rgs                                   on 2003/11/19  21:03:20
56892         Log: Update the runops stuff in perlguts
56893      Branch: perl
56894            ! pod/perlguts.pod
56895 ____________________________________________________________________________
56896 [ 21750] By: nicholas                              on 2003/11/19  20:37:27
56897         Log: integrate hv_delete and hv_delete_ent into hv_delete_common
56898      Branch: perl
56899            ! embed.fnc embed.h hv.c proto.h
56900 ____________________________________________________________________________
56901 [ 21748] By: rgs                                   on 2003/11/19  19:56:20
56902         Log: Subject: [PATCH] clear of empty locked hash SEGVs
56903              From: Alan Burlison <Alan.Burlison@sun.com>
56904              Date: Wed, 19 Nov 2003 14:39:03 +0000
56905              Message-ID: <3FBB8087.20206@sun.com>
56906      Branch: perl
56907            ! hv.c lib/Hash/Util.t
56908 ____________________________________________________________________________
56909 [ 21747] By: nicholas                              on 2003/11/19  19:51:41
56910         Log: merge hv_exists and hv_exists_ent into S_hv_exists_common
56911      Branch: perl
56912            ! embed.fnc embed.h hv.c proto.h
56913 ____________________________________________________________________________
56914 [ 21746] By: nicholas                              on 2003/11/19  18:46:07
56915         Log: Run regen.pl (for hv_assert)
56916      Branch: perl
56917            ! global.sym
56918 ____________________________________________________________________________
56919 [ 21744] By: nicholas                              on 2003/11/19  17:44:58
56920         Log: Integrate:
56921              [ 21642]
56922              space should be tab for lib/I18N/LangTags/t/02decency.t
56923      Branch: perl
56924           !> MANIFEST
56925 ____________________________________________________________________________
56926 [ 21743] By: rgs                                   on 2003/11/19  17:21:50
56927         Log: Restore errno after having read $^E (like for $!)
56928              to preserve errno from unfortunate side-effects.
56929      Branch: perl
56930            ! mg.c
56931 ____________________________________________________________________________
56932 [ 21742] By: nicholas                              on 2003/11/18  21:04:40
56933         Log: Whoops. We weren't actually testing hv_store_ent
56934              We are now. Plus test hv_store for an initially empty hash.
56935      Branch: perl
56936            ! ext/XS/APItest/APItest.xs ext/XS/APItest/t/hash.t
56937 ____________________________________________________________________________
56938 [ 21741] By: rgs                                   on 2003/11/17  23:06:07
56939         Log: Complement of change #21740 for Windows.
56940              (I have the feeling that it's already subtly broken on VMS)
56941      Branch: perl
56942            ! win32/Makefile win32/makefile.mk
56943 ____________________________________________________________________________
56944 [ 21740] By: rgs                                   on 2003/11/17  19:02:21
56945         Log: Install instmodsh and xsubpp in bin/ along the other utilities.
56946      Branch: perl
56947            + utils/instmodsh.PL utils/xsubpp.PL
56948            ! MANIFEST installperl utils.lst utils/Makefile
56949 ____________________________________________________________________________
56950 [ 21739] By: rgs                                   on 2003/11/17  08:52:52
56951         Log: Subject: Re: [perl #24493] install.html not working
56952              From: Slaven Rezic <slaven@rezic.de>
56953              Date: 16 Nov 2003 20:52:29 +0100
56954              Message-ID: <87d6bsw0oy.fsf@vran.herceg.de>
56955      Branch: perl
56956            ! installhtml
56957 ____________________________________________________________________________
56958 [ 21737] By: nicholas                              on 2003/11/16  21:32:09
56959         Log: Ooops. left an XXX comment in, and worse still it's a // comment
56960      Branch: perl
56961            ! hv.c
56962 ____________________________________________________________________________
56963 [ 21735] By: nicholas                              on 2003/11/16  20:20:58
56964         Log: utf8 keys now work for tied hashes via hv_fetch, hv_store, hv_delete
56965              (pp functions use the _ent variants, and as the implementation is
56966              duplicated, these bugs aren't tested, and aren't noticed)
56967      Branch: perl
56968            ! ext/XS/APItest/APItest.xs ext/XS/APItest/t/hash.t hv.c
56969 ____________________________________________________________________________
56970 [ 21734] By: nicholas                              on 2003/11/16  17:11:22
56971         Log: Accessing unicode keys in tie hashes via hv_exists was broken.
56972              (pp_exists uses hv_exists_ent, which isn't broken)
56973              I expect an equivalent bug in hv_delete
56974      Branch: perl
56975            + ext/XS/APItest/t/hash.t
56976            ! MANIFEST ext/XS/APItest/APItest.pm ext/XS/APItest/APItest.xs
56977            ! ext/XS/APItest/MANIFEST hv.c
56978 ____________________________________________________________________________
56979 [ 21733] By: rgs                                   on 2003/11/16  16:50:04
56980         Log: Subject: [PATCH] Re:ext/threads/t/problem.t (was: Problems with mod_perl 1.12 (?) and ActivePerl 5.8.1)
56981              From: Elizabeth Mattijsen <liz@dijkmat.nl>
56982              Date: Sat, 15 Nov 2003 23:22:16 +0100
56983              Message-Id: <p05111b04bbdc49076950@[192.168.56.3]>
56984      Branch: perl
56985            ! ext/threads/t/problems.t
56986 ____________________________________________________________________________
56987 [ 21732] By: rgs                                   on 2003/11/16  16:09:34
56988         Log: Subject: [PATCH] configpm, our $summary : unique
56989              From: Elizabeth Mattijsen <liz@dijkmat.nl>
56990              Date: Sat, 15 Nov 2003 22:18:32 +0100
56991              Message-Id: <p05111b03bbdc478d10cb@[192.168.56.3]>
56992              (plus comments)
56993      Branch: perl
56994            ! configpm
56995 ____________________________________________________________________________
56996 [ 21729] By: nicholas                              on 2003/11/15  14:39:00
56997         Log: Subject: [PATCH] Re: Storable Error
56998              From: Nicholas Clark <nick@ccl4.org>
56999              Date: Sat, 9 Aug 2003 00:35:36 +0100
57000              Message-ID: <20030809003535.C20130@plum.flirble.org>
57001      Branch: perl
57002            ! embed.fnc hv.c perl.c perl.h pod/perlapi.pod pod/perlrun.pod
57003            ! proto.h
57004 ____________________________________________________________________________
57005 [ 21728] By: rgs                                   on 2003/11/15  11:43:43
57006         Log: Update perlhist with 5.6.2.
57007      Branch: perl
57008            ! pod/perlhist.pod
57009 ____________________________________________________________________________
57010 [ 21725] By: rgs                                   on 2003/11/14  22:35:20
57011         Log: Add more complete tests for the "variable masks earlier
57012              declaration" warning, including a TODO test
57013      Branch: perl
57014            ! t/lib/warnings/pad
57015 ____________________________________________________________________________
57016 [ 21723] By: rgs                                   on 2003/11/14  07:43:17
57017         Log: Include "SCCS" in the list of directory names that should
57018              be ignored by installperl.
57019      Branch: perl
57020            ! installperl
57021 ____________________________________________________________________________
57022 [ 21718] By: nicholas                              on 2003/11/13  20:46:36
57023         Log: Subject: Re: Empty subroutine as object method segfaults in 5.8.2 (sometimes)
57024              From: Enache Adrian <enache@rdslink.ro>
57025              Date: Tue, 11 Nov 2003 15:25:29 +0200
57026              Message-ID: <20031111132529.GB1271@ratsnest.hole>
57027      Branch: perl
57028            ! op.c
57029 ____________________________________________________________________________
57030 [ 21714] By: rgs                                   on 2003/11/13  18:55:37
57031         Log: Fix bug [perl #24380] : assigning to a hash in list
57032              or scalar context yielded a wrong value if the list
57033              contained duplicated keys for the hash. This is fixed
57034              by counting the number of duplicate keys and trimming
57035              the stack by the corresponding number of items.
57036      Branch: perl
57037            ! pp_hot.c t/op/hashassign.t
57038 ____________________________________________________________________________
57039 [ 21713] By: merijn                                on 2003/11/13  09:25:15
57040         Log: Simplified the reading
57041      Branch: perl
57042            ! hints/solaris_2.sh
57043 ____________________________________________________________________________
57044 [ 21712] By: merijn                                on 2003/11/13  09:22:21
57045         Log: Enable hints to create call-back units that can act when
57046              a specific variable is *not* set (like -Uuselargefiles)
57047      Branch: perl
57048            ! Configure hints/README.hints
57049 ____________________________________________________________________________
57050 [ 21710] By: nicholas                              on 2003/11/12  21:35:35
57051         Log: Subject: [PATCH] Last stab at sdbm/Makefile.PL
57052              From: Michael G Schwern <schwern@pobox.com>
57053              Date: Tue, 11 Nov 2003 21:02:30 -0800
57054              Message-ID: <20031112050230.GO6874@localhost.comcast.net>
57055      Branch: perl
57056            ! ext/SDBM_File/sdbm/Makefile.PL
57057 ____________________________________________________________________________
57058 [ 21708] By: rgs                                   on 2003/11/12  09:46:51
57059         Log: Subject: [PATCH 5.8.2 @21574] make install not installing fully
57060              From: Ilya Zakharevich <nospam-abuse@ilyaz.org>
57061              Date: Tue, 4 Nov 2003 20:07:25 -0800
57062              Message-ID: <20031105040725.GA2629@math.berkeley.edu>
57063      Branch: perl
57064            ! installperl
57065 ____________________________________________________________________________
57066 [ 21706] By: ams                                   on 2003/11/11  23:46:19
57067         Log: Subject: Re: [perl #24460] [DOC PATCH] the begincheck program
57068              From: Tom Phoenix <rootbeer@redcat.com>
57069              Date: Tue, 11 Nov 2003 15:50:35 -0800 (PST)
57070              Message-Id: <Pine.BSO.4.53.0311111547500.9242@blue.stonehenge.com>
57071      Branch: perl
57072            ! pod/perlmod.pod
57073 ____________________________________________________________________________
57074 [ 21702] By: rgs                                   on 2003/11/11  20:13:56
57075         Log: Upgrade to MakeMaker 6.21.
57076      Branch: perl
57077            ! lib/ExtUtils/Changes lib/ExtUtils/Install.pm
57078            ! lib/ExtUtils/META.yml lib/ExtUtils/MM_Any.pm
57079            ! lib/ExtUtils/MM_Unix.pm lib/ExtUtils/MakeMaker.pm
57080 ____________________________________________________________________________
57081 [ 21697] By: rgs                                   on 2003/11/10  20:55:25
57082         Log: Subject: [PATCH 5.8.2 @21574] make install: line noise
57083              From: Ilya Zakharevich <nospam-abuse@ilyaz.org>
57084              Date: Tue, 4 Nov 2003 20:10:16 -0800
57085              Message-ID: <20031105041016.GA2639@math.berkeley.edu>
57086
57087              and part of
57088              Subject: [PATCH 5.8.2 @21574] make install: PREFIX and DESTDIR
57089              From: Ilya Zakharevich <nospam-abuse@ilyaz.org>
57090              Date: Tue, 4 Nov 2003 20:18:37 -0800
57091              Message-ID: <20031105041836.GA2649@math.berkeley.edu>
57092
57093              (I've left out the PREFIX part for now)
57094      Branch: perl
57095            ! Makefile.SH installperl os2/Makefile.SHs
57096 ____________________________________________________________________________
57097 [ 21694] By: rgs                                   on 2003/11/09  17:20:35
57098         Log: Subject: [PATCH 5.8.2 @21574] sprintf() painfully slow
57099              From: Ilya Zakharevich <nospam-abuse@ilyaz.org>
57100              Date: Mon, 3 Nov 2003 20:27:39 -0800
57101              Message-ID: <20031104042739.GA1697@math.berkeley.edu>
57102
57103              Subject: Re: [PATCH 5.8.2 @21574] sprintf() painfully slow
57104              From: Ilya Zakharevich <nospam-abuse@ilyaz.org>
57105              Date: Mon, 3 Nov 2003 20:57:48 -0800
57106              Message-ID: <20031104045748.GA1826@math.berkeley.edu>
57107      Branch: perl
57108            ! sv.c
57109 ____________________________________________________________________________
57110 [ 21693] By: rgs                                   on 2003/11/09  11:37:29
57111         Log: Subject: [PATCH-5.8.2 for WinCE] must copy changes from win32/makeifle.mk to wince/makefile.ce
57112              From: Vadim Konovalov <konovalo@mail.wplus.net>
57113              Date: Sun, 9 Nov 2003 13:31:59 +0300
57114              Message-ID: <93187393948.20031109133159@mail.wplus.net>
57115      Branch: perl
57116            ! wince/Makefile.ce
57117 ____________________________________________________________________________
57118 [ 21691] By: rgs                                   on 2003/11/09  11:13:40
57119         Log: Update the list of pumpkings in perlhist.pod.
57120      Branch: perl
57121            ! pod/perlhist.pod
57122 ____________________________________________________________________________
57123 [ 21687] By: ams                                   on 2003/11/08  17:09:56
57124         Log: Subject: [PATCH 5.6.2-RC1 pod/perlhist.pod]  Updated.
57125              From: Abigail <abigail@abigail.nl>
57126              Date: Sat, 8 Nov 2003 18:51:30 +0100
57127              Message-Id: <20031108175130.GA22273@abigail.nl>
57128      Branch: perl
57129            ! pod/perlhist.pod
57130 ____________________________________________________________________________
57131 [ 21677] By: rgs                                   on 2003/11/07  07:49:17
57132         Log: Subject: [PATCH 5.8.2 @21574] OS/2 docu
57133              From: Ilya Zakharevich <nospam-abuse@ilyaz.org>
57134              Date: Thu, 6 Nov 2003 23:26:18 -0800
57135              Message-ID: <20031107072618.GA4370@math.berkeley.edu>
57136      Branch: perl
57137            ! os2/Changes
57138 ____________________________________________________________________________
57139 [ 21676] By: davem                                 on 2003/11/06  22:11:23
57140         Log: bugid #24407: numeric key for shared hash got stringified using
57141              wrong interpreter, and thus got malloced into the wrong thread
57142              memory pool
57143      Branch: perl
57144            ! ext/threads/shared/shared.xs ext/threads/shared/t/hv_simple.t
57145 ____________________________________________________________________________
57146 [ 21675] By: rgs                                   on 2003/11/06  10:27:22
57147         Log: Upgrade to MakeMaker 6.20.
57148      Branch: perl
57149            ! lib/ExtUtils/Changes lib/ExtUtils/Command.pm
57150            ! lib/ExtUtils/Liblist/Kid.pm lib/ExtUtils/MANIFEST.SKIP
57151            ! lib/ExtUtils/META.yml lib/ExtUtils/MM_Any.pm
57152            ! lib/ExtUtils/MakeMaker.pm lib/ExtUtils/MakeMaker/Tutorial.pod
57153            ! lib/ExtUtils/t/Command.t lib/ExtUtils/t/postamble.t
57154 ____________________________________________________________________________
57155 [ 21674] By: ams                                   on 2003/11/06  09:32:26
57156         Log: Subject: [PATCH blead] Re: [perl #24248] taint propagation regression,
57157              tests fail to spot this
57158              From: Rick Delaney <rick@bort.ca>
57159              Date: Wed, 5 Nov 2003 23:02:41 -0500
57160              Message-Id: <20031105230241.D13585@biff.bort.ca>
57161      Branch: perl
57162            ! pp_ctl.c t/op/taint.t
57163 ____________________________________________________________________________
57164 [ 21673] By: rgs                                   on 2003/11/05  21:47:07
57165         Log: Subject: [PATCH] Be sure to use -fPIC not -fpic on Linux/SPARC
57166              From: Andy Dougherty <doughera@lafayette.edu>
57167              Date: Wed, 5 Nov 2003 17:19:03 -0500 (EST)
57168              Message-ID: <Pine.SOL.4.53.0311051715140.24878@maxwell.phys.lafayette.edu>
57169      Branch: perl
57170            ! hints/linux.sh
57171 ____________________________________________________________________________
57172 [ 21672] By: rgs                                   on 2003/11/05  20:42:47
57173         Log: Subject: [patch t/op/hash.t] extending the hash attack test
57174              From: Stas Bekman <stas@stason.org>
57175              Date: Tue, 04 Nov 2003 14:33:09 -0800
57176              Message-ID: <3FA82925.7020703@stason.org>
57177      Branch: perl
57178            ! t/op/hash.t
57179 ____________________________________________________________________________
57180 [ 21671] By: rgs                                   on 2003/11/05  20:38:09
57181         Log: Subject: Re: [perl #24398] Benchmark.pm cmpthese segfault
57182              From: Stas Bekman <stas@stason.org>
57183              Date: Wed, 05 Nov 2003 00:50:25 -0800
57184              Message-ID: <3FA8B9D1.2020806@stason.org>
57185      Branch: perl
57186            ! lib/Benchmark.pm
57187 ____________________________________________________________________________
57188 [ 21667] By: nicholas                              on 2003/11/05  19:13:56
57189         Log: From: Craig Berry <craigberry@mac.com>
57190              Subject: Opcode.xs/RC2 compile nit on VMS
57191              Date: Wed, 05 Nov 2003 12:16:34 -0600
57192              Message-ID: <2097592.1068056194261.JavaMail.craigberry@mac.com>
57193      Branch: perl
57194            ! ext/Opcode/Opcode.xs
57195 ____________________________________________________________________________
57196 [ 21664] By: ams                                   on 2003/11/05  18:34:28
57197         Log: Orphaned submission from #21546.
57198      Branch: perl
57199            ! perl.c
57200 ____________________________________________________________________________
57201 [ 21663] By: ams                                   on 2003/11/05  17:01:29
57202         Log: Subject: Re: Smoke [5.9.0] 21474 FAIL(F) darwin 6.8 (darwin/1 cpu)
57203              From: Slaven Rezic <slaven@rezic.de>
57204              Date: 20 Oct 2003 22:39:28 +0200
57205              Message-Id: <87oewbiqyn.fsf@vran.herceg.de>
57206      Branch: perl
57207            ! lib/filetest.t
57208 ____________________________________________________________________________
57209 [ 21662] By: ams                                   on 2003/11/05  16:51:08
57210         Log: Subject: Re: 'make minitest' fails for op/cproto and op/pat
57211              From: Michael G Schwern <schwern@pobox.com>
57212              Date: Wed, 5 Nov 2003 06:26:36 -0800
57213              Message-Id: <20031105142635.GA22761@localhost.comcast.net>
57214      Branch: perl
57215            ! t/op/cproto.t
57216 ____________________________________________________________________________
57217 [ 21661] By: ams                                   on 2003/11/05  16:50:05
57218         Log: Subject: [PATCH] Modernise INSTALL
57219              From: Gisle Aas <gisle@ActiveState.com>
57220              Date: 05 Nov 2003 05:16:25 -0800
57221              Message-Id: <lrd6c7ez12.fsf@caliper.activestate.com>
57222
57223              Subject: [PATCH pod/perlhist.pod]  Mention 5.8.2-RC2
57224              From: Abigail <abigail@abigail.nl>
57225              Date: Tue, 4 Nov 2003 10:40:57 +0100
57226              Message-Id: <20031104094057.GA22508@abigail.nl>
57227      Branch: perl
57228            ! INSTALL pod/perlhist.pod
57229 ____________________________________________________________________________
57230 [ 21660] By: ams                                   on 2003/11/05  16:46:12
57231         Log: Subject: [PATCH blead]  reentr.pl is not defining _srandom_struct
57232              From: Jan Dubois <jand@ActiveState.com>
57233              Date: Tue, 04 Nov 2003 16:52:14 -0800
57234              Message-Id: <45igqvsus3hr8bno3si087j5qnrqvn79bf@4ax.com>
57235      Branch: perl
57236            ! reentr.c reentr.h reentr.pl
57237 ____________________________________________________________________________
57238 [ 21657] By: rgs                                   on 2003/11/05  08:07:14
57239         Log: Subject: Re: [ANNOUNCE] ExtUtils::MakeMaker 6.19
57240              From: Michael G Schwern <schwern@pobox.com>
57241              Date: Tue, 4 Nov 2003 17:59:13 -0800
57242              Message-ID: <20031105015913.GL15406@localhost.comcast.net>
57243
57244              Replaces the temporary kludge (#21655).
57245      Branch: perl
57246            ! ext/SDBM_File/sdbm/Makefile.PL
57247 ____________________________________________________________________________
57248 [ 21656] By: rgs                                   on 2003/11/05  07:41:41
57249         Log: Subject: Re: [gherteg@csc.com: your CPAN page on EBCDIC]
57250              From: PPrymmer@factset.com
57251              Date: Tue, 4 Nov 2003 10:00:07 -0500
57252              Message-ID: <OF9A22A404.A32A5C26-ON85256DD4.00522E92-85256DD4.005268A4@factset.com>
57253      Branch: perl
57254            ! pod/perlebcdic.pod
57255 ____________________________________________________________________________
57256 [ 21655] By: rgs                                   on 2003/11/04  22:32:28
57257         Log: Temporary kludge to allow SDBM_File being built
57258              with MakeMaker 6.19.
57259      Branch: perl
57260            ! ext/SDBM_File/sdbm/Makefile.PL
57261 ____________________________________________________________________________
57262 [ 21652] By: rgs                                   on 2003/11/04  21:43:10
57263         Log: Upgrade to ExtUtils::MakeMaker 6.19
57264      Branch: perl
57265            + lib/ExtUtils/t/parse_version.t
57266            + t/lib/MakeMaker/Test/Setup/BFD.pm
57267            + t/lib/MakeMaker/Test/Setup/Problem.pm
57268            - lib/ExtUtils/t/00setup_dummy.t
57269            - lib/ExtUtils/t/zz_cleanup_dummy.t
57270            ! MANIFEST lib/ExtUtils/Changes lib/ExtUtils/Command.pm
57271            ! lib/ExtUtils/Command/MM.pm lib/ExtUtils/Install.pm
57272            ! lib/ExtUtils/MANIFEST.SKIP lib/ExtUtils/META.yml
57273            ! lib/ExtUtils/MM.pm lib/ExtUtils/MM_Any.pm
57274            ! lib/ExtUtils/MM_Cygwin.pm lib/ExtUtils/MM_NW5.pm
57275            ! lib/ExtUtils/MM_Unix.pm lib/ExtUtils/MM_VMS.pm
57276            ! lib/ExtUtils/MM_Win32.pm lib/ExtUtils/MM_Win95.pm
57277            ! lib/ExtUtils/MakeMaker.pm lib/ExtUtils/MakeMaker/bytes.pm
57278            ! lib/ExtUtils/MakeMaker/vmsish.pm lib/ExtUtils/Manifest.pm
57279            ! lib/ExtUtils/README lib/ExtUtils/TODO lib/ExtUtils/instmodsh
57280            ! lib/ExtUtils/t/Command.t lib/ExtUtils/t/INST.t
57281            ! lib/ExtUtils/t/INST_PREFIX.t lib/ExtUtils/t/Install.t
57282            ! lib/ExtUtils/t/MM_Cygwin.t lib/ExtUtils/t/MM_Unix.t
57283            ! lib/ExtUtils/t/MM_Win32.t lib/ExtUtils/t/Manifest.t
57284            ! lib/ExtUtils/t/basic.t lib/ExtUtils/t/postamble.t
57285            ! lib/ExtUtils/t/prefixify.t lib/ExtUtils/t/prereq_print.t
57286            ! lib/ExtUtils/t/problems.t lib/ExtUtils/t/writemakefile_args.t
57287            ! t/lib/MakeMaker/Test/Setup/Recurs.pm
57288 ____________________________________________________________________________
57289 [ 21651] By: rgs                                   on 2003/11/04  05:43:56
57290         Log: Subject: Re: [PATCH 5.8.2 @21574] OS/2 build
57291              From: Ilya Zakharevich <nospam-abuse@ilyaz.org>
57292              Date: Mon, 3 Nov 2003 20:20:44 -0800
57293              Message-ID: <20031104042044.GA1682@math.berkeley.edu>
57294      Branch: perl
57295            ! os2/Makefile.SHs
57296 ____________________________________________________________________________
57297 [ 21650] By: rgs                                   on 2003/11/03  21:55:42
57298         Log: Subject: [PATCH] Re: [perl #24384] 21418 (UNIVERSAL.pm patch) breaks autouse.pm
57299              From: Michael G Schwern <schwern@pobox.com>
57300              Date: Sat, 1 Nov 2003 22:57:45 -0800
57301              Message-ID: <20031102065745.GN3659@localhost.comcast.net>
57302              (goes with change #21418)
57303      Branch: perl
57304            ! lib/autouse.pm lib/autouse.t
57305 ____________________________________________________________________________
57306 [ 21647] By: rgs                                   on 2003/11/03  20:08:18
57307         Log: Subject: [PATCH] Re: PERL_VERSION, SUBVERSION, PATCHLEVEL
57308              From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
57309              Date: Mon, 3 Nov 2003 20:53:33 +0100
57310              Message-ID: <023a01c3a244$2a1dd5a0$0c2f1fac@R2D2>
57311      Branch: perl
57312            ! ext/Devel/PPPort/PPPort.pm
57313 ____________________________________________________________________________
57314 [ 21646] By: rgs                                   on 2003/11/03  20:00:07
57315         Log: Subject: Cwd.xs: off-by-one buffer overflow in realpath()
57316              From: Casey West <casey@geeknest.com>
57317              Date: Mon, 3 Nov 2003 10:11:43 -0500
57318              Message-ID: <20031103151143.GB430@geeknest.com>
57319      Branch: perl
57320            ! ext/Cwd/Cwd.xs
57321 ____________________________________________________________________________
57322 [ 21645] By: rgs                                   on 2003/11/03  19:18:42
57323         Log: Subject: Re: [PATCH 5.8.1] make reentr.[ch] compatible with 5.8.0 again
57324              From: Jan Dubois <jand@ActiveState.com>
57325              Date: Sun, 02 Nov 2003 21:43:44 -0800
57326              Message-ID: <8dqbqvg16ln2r807l1l2c905lh7hte303v@4ax.com>
57327      Branch: perl
57328            ! reentr.h reentr.pl
57329 ____________________________________________________________________________
57330 [ 21644] By: rgs                                   on 2003/11/03  15:33:55
57331         Log: Document the fact that keys() and values() are optimized
57332              for void context (as suggested by Liz.)
57333      Branch: perl
57334            ! pod/perlfunc.pod
57335 ____________________________________________________________________________
57336 [ 21639] By: nicholas                              on 2003/11/03  07:04:36
57337         Log: Stas would prefer not to have MOD_PERL defines in perl.
57338      Branch: perl
57339            ! hv.c hv.h
57340 ____________________________________________________________________________
57341 [ 21638] By: nicholas                              on 2003/11/03  06:46:48
57342         Log: s/new_hash/rehash/g (Stas suggested a better name)
57343      Branch: perl
57344            ! embedvar.h hv.h intrpvar.h lib/Hash/Util.pm perl.c perlapi.h
57345            ! sv.c universal.c util.c
57346 ____________________________________________________________________________
57347 [ 21634] By: nicholas                              on 2003/11/02  22:32:21
57348         Log: Provide Internals::new_hash_seed to return PL_new_hash_seed, and
57349              make Hash::Util::hash_seed use this.
57350      Branch: perl
57351            ! lib/Hash/Util.pm universal.c
57352 ____________________________________________________________________________
57353 [ 21628] By: rgs                                   on 2003/11/02  21:05:59
57354         Log: Fix for [perl #24347] segfault with Safe
57355              The empty %INC created for safe compartements was freed
57356              too early.
57357      Branch: perl
57358            ! ext/Opcode/Opcode.xs
57359 ____________________________________________________________________________
57360 [ 21627] By: rgs                                   on 2003/11/02  20:40:47
57361         Log: Subject: [PATCH pod/perlguts.pod] update embed.pl description
57362              From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
57363              Date: Sun, 2 Nov 2003 22:24:28 +0100
57364              Message-ID: <007b01c3a187$b34c6110$0c2f1fac@R2D2>
57365      Branch: perl
57366            ! pod/perlguts.pod
57367 ____________________________________________________________________________
57368 [ 21625] By: rgs                                   on 2003/11/02  20:24:21
57369         Log: Mention perl 5.8.2-RC1 in perlhist, as spotted by Abigail.
57370      Branch: perl
57371            ! pod/perlhist.pod
57372 ____________________________________________________________________________
57373 [ 21620] By: nicholas                              on 2003/11/02  18:22:16
57374         Log: Subject: [PATCH 5.8.2 @21574] OS/2 build
57375              From: Ilya Zakharevich <nospam-abuse@ilyaz.org>
57376              Date: Wed, 29 Oct 2003 14:00:18 -0800
57377              Message-ID: <20031029220017.GA26384@math.berkeley.edu>
57378      Branch: perl
57379            ! ext/DynaLoader/DynaLoader_pm.PL makedef.pl os2/Makefile.SHs
57380            ! os2/OS2/REXX/REXX.xs os2/os2.c os2/os2_base.t os2/os2ish.h
57381            ! os2/perl2cmd.pl perlio.c
57382 ____________________________________________________________________________
57383 [ 21619] By: rgs                                   on 2003/11/02  18:07:30
57384         Log: Quoted-printable is evil.
57385      Branch: perl
57386            ! win32/win32.h
57387 ____________________________________________________________________________
57388 [ 21618] By: nicholas                              on 2003/11/02  18:01:21
57389         Log: Stas spotted a missed s//new_/ for the hash seed renaming games
57390      Branch: perl
57391            ! perl.c
57392 ____________________________________________________________________________
57393 [ 21617] By: rgs                                   on 2003/11/02  17:25:50
57394         Log: Portability nit for MinGW 3.
57395
57396              Subject: MinGW-3.1.0-1 _CRTIMP definition preempting win32.h's
57397              From: Greg Matheson <lang@ms.chinmin.edu.tw>
57398              Date: Thu, 30 Oct 2003 14:11:58 +0800
57399              Message-ID: <20031030141158.A11772@ms>
57400              (actual patch by Abe Timmerman)
57401      Branch: perl
57402            ! win32/win32.h
57403 ____________________________________________________________________________
57404 [ 21616] By: rgs                                   on 2003/11/02  12:37:54
57405         Log: Subject: DOCPATCH: does STORE need to return anything and if so what?
57406              From: david nicol <whatever@davidnicol.com>
57407              Date: 26 Oct 2003 22:34:04 -0600
57408              Message-Id: <1067229244.1071.51.camel@plaza.davidnicol.com>
57409      Branch: perl
57410            ! pod/perltie.pod
57411 ____________________________________________________________________________
57412 [ 21615] By: rgs                                   on 2003/11/01  20:01:54
57413         Log: Subject: [PATCH] DB_File 1.807
57414              From: "Paul Marquess" <Paul.Marquess@btinternet.com>
57415              Date: Sat, 1 Nov 2003 13:50:12 -0000
57416              Message-ID: <AIEAJICLCBDNAAOLLOKLOENMPAAA.Paul.Marquess@btinternet.com>
57417      Branch: perl
57418            ! ext/DB_File/Changes ext/DB_File/DB_File.pm
57419            ! ext/DB_File/DB_File.xs ext/DB_File/dbinfo
57420            ! ext/DB_File/t/db-hash.t ext/DB_File/t/db-recno.t
57421 ____________________________________________________________________________
57422 [ 21614] By: rgs                                   on 2003/11/01  19:40:28
57423         Log: Subject: Re: [PATCH bleadperl] (was Re: Is this brokenness in $< $( $> & $) ?)
57424              From: Rick Delaney <rick@bort.ca>
57425              Date: Mon, 27 Oct 2003 16:24:16 -0500
57426              Message-ID: <20031027162416.H2233@biff.bort.ca>
57427      Branch: perl
57428            ! pp_hot.c
57429 ____________________________________________________________________________
57430 [ 21611] By: nicholas                              on 2003/11/01  16:32:00
57431         Log: D'oh! t/op/hash.t wasn't in the MANIFEST. Rafael spotted this
57432      Branch: perl
57433            ! MANIFEST
57434 ____________________________________________________________________________
57435 [ 21607] By: nicholas                              on 2003/11/01  15:21:23
57436         Log: mod_perl2 will require access to the Plan C hashing function.
57437      Branch: perl
57438            ! hv.h
57439 ____________________________________________________________________________
57440 [ 21604] By: nicholas                              on 2003/11/01  14:21:38
57441         Log: Add Internals::HvREHASH to expose the rehashing flag
57442              t/op/hash.t tests that pathological data triggers rehashing
57443      Branch: perl
57444            + t/op/hash.t
57445            ! universal.c
57446 ____________________________________________________________________________
57447 [ 21599] By: davem                                 on 2003/11/01  00:09:22
57448         Log: whoops, typo
57449      Branch: perl
57450            ! ext/threads/shared/shared.xs
57451 ____________________________________________________________________________
57452 [ 21598] By: davem                                 on 2003/11/01  00:03:38
57453         Log: seg faults when deleting keys of shared hash refs
57454              Ensure that the shared_sv get magic of the element being deleted
57455              is called. Also, avoid posible memory leaks by wrapping all shared
57456              context sections with ENTER/SAVETMPS
57457      Branch: perl
57458            ! ext/threads/shared/shared.xs
57459 ____________________________________________________________________________
57460 [ 21596] By: rgs                                   on 2003/10/31  20:46:44
57461         Log: Subject: Re: [perl #24367] [PATCH] configure flag -Dextras="HTML::Parser" doesn't seem to do anything
57462              From: Andy Dougherty <doughera@lafayette.edu>
57463              Date: Fri, 31 Oct 2003 15:32:35 -0500 (EST)
57464              Message-ID: <Pine.SOL.4.53.0310311433440.8552@maxwell.phys.lafayette.edu>
57465              (plus POD link fixes)
57466      Branch: perl
57467            ! INSTALL
57468 ____________________________________________________________________________
57469 [ 21595] By: rgs                                   on 2003/10/31  20:35:23
57470         Log: Prevent the installation of makefiles that can be found
57471              under lib/.
57472      Branch: perl
57473            ! installperl
57474 ____________________________________________________________________________
57475 [ 21593] By: rgs                                   on 2003/10/31  20:19:01
57476         Log: Test nit ; goes with change 21591
57477      Branch: perl
57478            ! t/lib/warnings/regcomp
57479 ____________________________________________________________________________
57480 [ 21592] By: rgs                                   on 2003/10/31  20:03:58
57481         Log: Subject: [PATCH] Document PERL_DL_NONLAZY
57482              From: Gisle Aas <gisle@ActiveState.com>
57483              Date: 31 Oct 2003 03:13:03 -0800
57484              Message-ID: <lrn0bhbqyo.fsf@caliper.activestate.com>
57485      Branch: perl
57486            ! pod/perlrun.pod
57487 ____________________________________________________________________________
57488 [ 21591] By: rgs                                   on 2003/10/31  19:54:23
57489         Log: Subject: [PATCH] Off-by-one error in regcomp.c
57490              From: Slaven Rezic <slaven@rezic.de>
57491              Date: Fri, 31 Oct 2003 12:16:11 +0000
57492              Message-Id: <1067602571.12768@devpc01.iconmobile.de>
57493      Branch: perl
57494            ! regcomp.c t/op/regmesg.t
57495 ____________________________________________________________________________
57496 [ 21590] By: rgs                                   on 2003/10/31  19:36:32
57497         Log: Subject: [patch pod/perlfunc.pod] separate two unrelated notes in require
57498              From: Stas Bekman <stas@stason.org>
57499              Date: Wed, 29 Oct 2003 16:47:24 -0800
57500              Message-ID: <3FA05F9C.2080304@stason.org>
57501      Branch: perl
57502            ! pod/perlfunc.pod
57503 ____________________________________________________________________________
57504 [ 21589] By: rgs                                   on 2003/10/31  19:31:48
57505         Log: Subject: [5.8.x segfault + patch] chicken&egg segfault in -Dm -Mthreads
57506              From: Stas Bekman <stas@stason.org>
57507              Date: Wed, 29 Oct 2003 15:15:15 -0800
57508              Message-ID: <3FA04A03.5010603@stason.org>
57509              (enclosed in a #ifdef DEBUGGING)
57510      Branch: perl
57511            ! sv.c
57512 ____________________________________________________________________________
57513 [ 21588] By: rgs                                   on 2003/10/31  19:25:38
57514         Log: Subject: [PATCH] Devel::PPPort and scan_bin
57515              From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
57516              Date: Wed, 29 Oct 2003 22:53:43 +0100
57517              Message-ID: <037201c39e67$1faa9940$0c2f1fac@R2D2>
57518      Branch: perl
57519            ! ext/Devel/PPPort/PPPort.pm
57520 ____________________________________________________________________________
57521 [ 21587] By: rgs                                   on 2003/10/31  19:19:00
57522         Log: Subject: [PATCH] change p4d2p to deal with new style diff2 output
57523              From: Jan Dubois <jand@ActiveState.com>
57524              Date: Thu, 30 Oct 2003 18:43:08 -0800
57525              Message-ID: <dpi3qvgf1uke7pj1gcpgmoh622lqcvl6uc@4ax.com>
57526      Branch: perl
57527            ! Porting/p4d2p
57528 ____________________________________________________________________________
57529 [ 21586] By: nicholas                              on 2003/10/31  18:54:26
57530         Log: Comment that this "optimisation" is actually a necessary fixup.
57531              When the split occurs (to make the opti{miser,onal}) this isn't
57532              (Richard Clamp reminded me that I forgot to do this)
57533      Branch: perl
57534            ! op.c
57535 ____________________________________________________________________________
57536 [ 21583] By: nicholas                              on 2003/10/30  22:37:26
57537         Log: Rewrite to correctly use test.pl
57538
57539              Date: Thu, 30 Oct 2003 15:51:03 -0800
57540              From: Michael G Schwern <schwern@pobox.com>
57541              Subject: Re: Fix for the orange lion bug - aka empty sub bug
57542              Message-ID: <20031030235103.GC27017@localhost.comcast.net>
57543      Branch: perl
57544            ! t/op/sub.t
57545 ____________________________________________________________________________
57546 [ 21582] By: nicholas                              on 2003/10/30  22:18:53
57547         Log: Date: Thu, 30 Oct 2003 22:01:35 +0000
57548              Subject: Fix for the orange lion bug - aka empty sub bug
57549              From: Arthur Bergman <sky@nanisky.com>
57550              Message-Id: <A10EEA90-0B24-11D8-93CD-000A95A2734C@nanisky.com>
57551      Branch: perl
57552            + t/op/sub.t
57553            ! MANIFEST op.c
57554 ____________________________________________________________________________
57555 [ 21580] By: nicholas                              on 2003/10/30  19:42:28
57556         Log: 14 is the chain length for attack. From
57557
57558              Message-ID: <20031030204117.16008.qmail@plover.com>
57559              Subject: Re: 5.8.2-RC1 and mp2
57560              Date: Thu, 30 Oct 2003 15:41:17 -0500
57561              From: Mark Jason Dominus <mjd@plover.com>
57562
57563              and
57564
57565              From: Scott A Crosby <scrosby@cs.rice.edu>
57566              Subject: Re: 5.8.2-RC1 and mp2
57567              Date: 30 Oct 2003 14:08:06 -0600
57568              Message-ID: <oydd6cea3q1.fsf@bert.cs.rice.edu>
57569      Branch: perl
57570            ! hv.c
57571 ____________________________________________________________________________
57572 [ 21575] By: rgs                                   on 2003/10/29  06:51:19
57573         Log: Move a fcntl() example in perlfunc at a more proper place,
57574              as suggested by :
57575              Subject: [perl #24334] ioctl/fcntl doc confusion
57576              From: "perl-5.8.0@ton.iguana.be (via RT)" <perlbug-followup@perl.org>
57577              Date: 28 Oct 2003 13:37:49 -0000
57578              Message-ID: <rt-24334-66603.12.4990768314782@rt.perl.org>
57579      Branch: perl
57580            ! pod/perlfunc.pod
57581 ____________________________________________________________________________
57582 [ 21567] By: rgs                                   on 2003/10/28  08:48:06
57583         Log: Upgrade to Time::HiRes 1.52.
57584      Branch: perl
57585            ! ext/Time/HiRes/Changes ext/Time/HiRes/HiRes.pm
57586            ! ext/Time/HiRes/Makefile.PL ext/Time/HiRes/t/HiRes.t
57587 ____________________________________________________________________________
57588 [ 21566] By: rgs                                   on 2003/10/28  08:34:26
57589         Log: Subject: [PATCH lib/overload.t] TODO tests for bug #24313.
57590              From: Abigail <abigail@abigail.nl>
57591              Date: Mon, 27 Oct 2003 13:05:37 +0100
57592              Message-ID: <20031027120536.GA24608@abigail.nl>
57593
57594              Subject: [PATCH bleadperl] [perl #24313] (was Re: [PATCH lib/overload.t] TODO tests for bug #24313.)
57595              From: Rick Delaney <rick@bort.ca>
57596              Date: Mon, 27 Oct 2003 12:17:49 -0500
57597              Message-ID: <20031027121749.E2233@biff.bort.ca>
57598      Branch: perl
57599            ! lib/overload.t toke.c
57600 ____________________________________________________________________________
57601 [ 21565] By: rgs                                   on 2003/10/28  07:42:52
57602         Log: Subject: [PATCH t/comp/proto.t]  Test (5.9.x)
57603              From: Abigail <abigail@abigail.nl>
57604              Date: Mon, 27 Oct 2003 14:50:24 +0100
57605              Message-ID: <20031027135024.GA12666@abigail.nl>
57606      Branch: perl
57607            ! t/comp/proto.t
57608 ____________________________________________________________________________
57609 [ 21564] By: davem                                 on 2003/10/27  22:01:12
57610         Log: Fix more shared threads leaks: add SAVETMPS to the second branch
57611              of sharedsv_scalar_store().
57612      Branch: perl
57613            ! ext/threads/shared/shared.xs
57614 ____________________________________________________________________________
57615 [ 21563] By: rgs                                   on 2003/10/27  19:33:29
57616         Log: Add a new taint error, "%ENV is aliased to %s".
57617              This error is thrown when taint checks are enabled and
57618              when *ENV has been aliased, so that %ENV has no env-magic
57619              anymore. (see bug [perl #24291].)
57620      Branch: perl
57621            ! pod/perldiag.pod t/op/taint.t taint.c
57622 ____________________________________________________________________________
57623 [ 21560] By: nicholas                              on 2003/10/27  18:01:02
57624         Log: Record the escape^Wrelease of 5.9.0
57625      Branch: perl
57626            ! pod/perlhist.pod
57627 ____________________________________________________________________________
57628 [ 21554] By: nicholas                              on 2003/10/27  16:09:37
57629         Log: Subject: Re: DBD::Sybase and Sybase::CTlib build problems w/ 5.8.1, Solaris, gcc
57630              From: Alan Burlison <Alan.Burlison@sun.com>
57631              Date: Tue, 21 Oct 2003 15:00:58 +0100
57632              Message-ID: <3F953C1A.3060800@sun.com>
57633      Branch: perl
57634            ! hints/solaris_2.sh
57635 ____________________________________________________________________________
57636 [ 21550] By: nicholas                              on 2003/10/27  13:45:27
57637         Log: Sync with Unicode::Normalize 0.25
57638      Branch: perl
57639            + ext/Unicode/Normalize/t/fcdc.t ext/Unicode/Normalize/t/form.t
57640            + ext/Unicode/Normalize/t/proto.t
57641            + ext/Unicode/Normalize/t/split.t
57642            ! MANIFEST ext/Unicode/Normalize/Changes
57643            ! ext/Unicode/Normalize/Makefile.PL
57644            ! ext/Unicode/Normalize/Normalize.pm
57645            ! ext/Unicode/Normalize/Normalize.xs
57646            ! ext/Unicode/Normalize/README
57647 ____________________________________________________________________________
57648 [ 21549] By: nicholas                              on 2003/10/27  13:11:48
57649         Log: Sync with Unicode::Collate 0.30
57650      Branch: perl
57651            + lib/Unicode/Collate/t/hangtype.t
57652            + lib/Unicode/Collate/t/normal.t lib/Unicode/Collate/t/trailwt.t
57653            + lib/Unicode/Collate/t/variable.t
57654            + lib/Unicode/Collate/t/version.t
57655            ! MANIFEST lib/Unicode/Collate.pm lib/Unicode/Collate/Changes
57656            ! lib/Unicode/Collate/README lib/Unicode/Collate/t/contract.t
57657            ! lib/Unicode/Collate/t/hangul.t lib/Unicode/Collate/t/index.t
57658            ! lib/Unicode/Collate/t/test.t
57659 ____________________________________________________________________________
57660 [ 21548] By: nicholas                              on 2003/10/27  12:39:39
57661         Log: Sync with Pod::Perldoc 3.12
57662      Branch: perl
57663            ! lib/Pod/Perldoc.pm
57664 ____________________________________________________________________________
57665 [ 21546] By: ams                                   on 2003/10/27  09:00:08
57666         Log: Will the real off by one please stand up?
57667      Branch: perl
57668            ! mg.c
57669 ____________________________________________________________________________
57670 [ 21545] By: hv                                    on 2003/10/27  02:52:16
57671         Log: fixup separators
57672      Branch: perl
57673            ! Changes
57674 ____________________________________________________________________________
57675 [ 21544] By: hv                                    on 2003/10/27  02:51:26
57676         Log: don't complain of podless .pm files that have a separate .pod file
57677      Branch: perl
57678            ! pod/buildtoc
57679 ____________________________________________________________________________
57680 [ 21543] By: hv                                    on 2003/10/27  02:50:04
57681         Log: regen pods and toc
57682      Branch: perl
57683            ! pod/perlmodlib.pod pod/perltoc.pod
57684 ____________________________________________________________________________
57685 [ 21542] By: rgs                                   on 2003/10/26  21:36:17
57686         Log: When %ENV has been turned into a non-magical hash after a
57687              glob assignment, TAINT_ENV() may dump core because it
57688              assumes $ENV{PATH} is magical. Fix this ; add a test to
57689              verify that the PATH is still checked for taintedness.
57690      Branch: perl
57691            ! t/op/taint.t taint.c
57692 ____________________________________________________________________________
57693 [ 21540] By: rgs                                   on 2003/10/26  14:59:53
57694         Log: Fix backward-compatibility issues in if.pm.
57695      Branch: perl
57696            ! lib/if.pm
57697 ____________________________________________________________________________
57698 [ 21539] By: hv                                    on 2003/10/26  12:22:54
57699         Log: Update Changes.
57700      Branch: perl
57701            ! Changes patchlevel.h
57702 ____________________________________________________________________________
57703 [ 21538] By: ams                                   on 2003/10/26  08:08:02
57704         Log: Fix off-by-one in $0 set magic. (From Autrijus.)
57705              The whole PL_origalen thing in perl.c looks very hokey.
57706      Branch: perl
57707            ! mg.c
57708 ____________________________________________________________________________
57709 [ 21536] By: nicholas                              on 2003/10/25  22:33:18
57710         Log: show the rehash flags in dumps
57711      Branch: perl
57712            ! dump.c
57713 ____________________________________________________________________________
57714 [ 21535] By: nicholas                              on 2003/10/25  22:32:40
57715         Log: Return 21533 (with modifications) having found the problem
57716      Branch: perl
57717            ! hv.c hv.h
57718 ____________________________________________________________________________
57719 [ 21534] By: nicholas                              on 2003/10/25  20:46:36
57720         Log: Back out 21533 because it broke Encode's build in really weird ways
57721      Branch: perl
57722            ! hv.c hv.h
57723 ____________________________________________________________________________
57724 [ 21533] By: nicholas                              on 2003/10/25  13:10:21
57725         Log: Plan C rough edge smoothing. Criteria for a hash split is now
57726              the earlier of "more keys than buckets" (the old test) or
57727              linked list too long. Rehash is triggered after a split if the
57728              longest linked list is too long.
57729      Branch: perl
57730            ! hv.c hv.h
57731 ____________________________________________________________________________
57732 [ 21532] By: rgs                                   on 2003/10/25  10:03:18
57733         Log: Subject: Re: [perl #948] $, untieable?
57734              From: Richard Clamp <richardc@unixbeard.net>
57735              Date: Tue, 21 Oct 2003 00:02:49 +0100
57736              Message-ID: <20031020230249.GA31123@mirth.demon.co.uk>
57737
57738              Plus a small fix to t/TEST to recognize the added TODO test
57739              as a TODO test.
57740      Branch: perl
57741            ! t/TEST t/op/tie.t
57742 ____________________________________________________________________________
57743 [ 21528] By: nicholas                              on 2003/10/23  19:21:00
57744         Log: When it says "add", then, like, you have to p4 add it. D'oh!
57745              (missed the new file in "Update I18N::LangTags from 0.28 to 0.29")
57746      Branch: perl
57747            + lib/I18N/LangTags/t/02decency.t
57748 ____________________________________________________________________________
57749 [ 21527] By: davem                                 on 2003/10/23  19:13:20
57750         Log: Fix two threads::shared leaks
57751              #24061 - AV in shared interpreter wasn't set to AvREAL
57752              #24255 - mortals were added to the shared interpreter's tmpstack
57753              and never freed.
57754      Branch: perl
57755            ! ext/threads/shared/shared.xs
57756 ____________________________________________________________________________
57757 [ 21526] By: nicholas                              on 2003/10/23  19:11:24
57758         Log: From: Jan Dubois <jand@ActiveState.com>
57759              Subject: [PATCH] Update Pod::Perldoc from 3.10 to 3.11
57760              Date: Wed, 22 Oct 2003 20:17:07 -0700
57761              Message-ID: <mjhepvgtnifdlgrvp20urtuu058e1jrav2@4ax.com>
57762
57763              From: Jan Dubois <jand@ActiveState.com>
57764              Subject: [PATCH] Update I18N::LangTags from 0.28 to 0.29
57765              Date: Wed, 22 Oct 2003 20:26:56 -0700
57766              Message-ID: <jgiepv0a8fp8ffq3lpc5ujl7j25hoo1rdt@4ax.com>
57767      Branch: perl
57768            ! MANIFEST lib/I18N/LangTags.pm lib/I18N/LangTags/ChangeLog
57769            ! lib/I18N/LangTags/List.pm lib/I18N/LangTags/README
57770            ! lib/Pod/Perldoc.pm lib/Pod/Perldoc/ToMan.pm pod/perldoc.pod
57771            ! utils/perldoc.PL
57772 ____________________________________________________________________________
57773 [ 21523] By: ams                                   on 2003/10/23  12:53:03
57774         Log: Subject: [PATCH] utime documentation
57775              From: Gisle Aas <gisle@ActiveState.com>
57776              Date: 23 Oct 2003 05:33:43 -0700
57777              Message-Id: <lrekx4jfq0.fsf@caliper.activestate.com>
57778      Branch: perl
57779            ! pod/perlfunc.pod
57780 ____________________________________________________________________________
57781 [ 21522] By: ams                                   on 2003/10/23  08:07:18
57782         Log: Subject: [PATCH]  dup2() not going through PerlLIO abstraction layer
57783              From: Jan Dubois <jand@ActiveState.com>
57784              Date: Wed, 22 Oct 2003 20:33:54 -0700
57785              Message-Id: <vniepv0n5mcrbbutm0qgvori6n6vr6arsh@4ax.com>
57786      Branch: perl
57787            ! doio.c
57788 ____________________________________________________________________________
57789 [ 21520] By: nicholas                              on 2003/10/22  19:50:15
57790         Log: patch created by Casey West from:
57791
57792              Subject: CPAN module problems
57793              From: Edward Moy <emoy@apple.com>
57794              Date: Fri, 10 Oct 2003 17:42:06 -0700
57795              Message-Id: <BD2513C0-FB83-11D7-9065-000A956EFDEE@apple.com>
57796
57797              (change ld value in hints file)
57798      Branch: perl
57799            ! hints/darwin.sh
57800 ____________________________________________________________________________
57801 [ 21516] By: rgs                                   on 2003/10/22  15:06:13
57802         Log: Small email update in AUTHORS.
57803      Branch: perl
57804            ! AUTHORS
57805 ____________________________________________________________________________
57806 [ 21515] By: rgs                                   on 2003/10/22  06:39:29
57807         Log: Add a test.taintwarn makefile target,
57808              to run the whole test suite with the -t switch.
57809      Branch: perl
57810            ! Makefile.SH pod/perlhack.pod t/TEST
57811 ____________________________________________________________________________
57812 [ 21514] By: rgs                                   on 2003/10/21  21:21:56
57813         Log: Subject: [PATCH @20458] embedding perl
57814              From: Radu Greab <rgreab@fx.ro>
57815              Date: Tue, 05 Aug 2003 20:57:15 +0300 (EEST)
57816              Message-Id: <20030805.205715.113441323.radu@yx.primIT.ro>
57817      Branch: perl
57818            ! hv.c intrpvar.h perl.c pod/perlembed.pod pod/perlintern.pod
57819            ! sv.c
57820 ____________________________________________________________________________
57821 [ 21513] By: rgs                                   on 2003/10/21  20:45:12
57822         Log: Fix doc bug #23890, as suggested by Himanshu Garg :
57823              in perltoot, $him->fullname should be $him->fullname->as_string
57824              when passed to printf.
57825      Branch: perl
57826            ! pod/perltoot.pod
57827 ____________________________________________________________________________
57828 [ 21509] By: rgs                                   on 2003/10/21  05:42:50
57829         Log: Two OS/2 portability patches from Ilya.
57830
57831              Subject: [PATCH 5.8.1 @21211] sockets broken on OS/2
57832              From: Ilya Zakharevich <nospam-abuse@ilyaz.org>
57833              Date: Thu, 25 Sep 2003 12:09:11 -0700
57834              Message-ID: <20030925190911.GA27028@math.berkeley.edu>
57835
57836              Subject: Re: [PATCH 5.8.1 @21379] tmpfile() broken on OS/2
57837              From: Ilya Zakharevich <nospam-abuse@ilyaz.org>
57838              Date: Thu, 25 Sep 2003 19:50:45 -0700
57839              Message-ID: <20030926025045.GA27507@math.berkeley.edu>
57840      Branch: perl
57841            ! doio.c os2/os2ish.h perl.h perlio.c pp_sys.c
57842 ____________________________________________________________________________
57843 [ 21506] By: rgs                                   on 2003/10/20  19:28:27
57844         Log: Subject: [PATCH] add some missing defines to Devel::PPPort
57845              From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
57846              Date: Mon, 20 Oct 2003 20:14:19 +0200
57847              Message-ID: <03a301c39735$fb7cb220$0c2f1fac@R2D2>
57848      Branch: perl
57849            ! ext/Devel/PPPort/Changes ext/Devel/PPPort/PPPort.pm
57850 ____________________________________________________________________________
57851 [ 21505] By: rgs                                   on 2003/10/20  19:22:38
57852         Log: Subject: Re: [perl #24225] [5.8.1] segfault in binmode STDOUT, ':stdio'; print 1
57853              From: Slaven Rezic <slaven@rezic.de>
57854              Date: 19 Oct 2003 17:54:59 +0200
57855              Message-ID: <871xt9te7g.fsf@vran.herceg.de>
57856      Branch: perl
57857            ! perlio.c
57858 ____________________________________________________________________________
57859 [ 21503] By: rgs                                   on 2003/10/20  06:04:04
57860         Log: Skip the chflags tests in filetest.t on Darwin.
57861      Branch: perl
57862            ! lib/filetest.t
57863 ____________________________________________________________________________
57864 [ 21474] By: nicholas                              on 2003/10/17  18:44:28
57865         Log: Plan C rough edge smoothing - forgot to turn on the "has key flags"
57866              flag on the hash when rehashing. Can turn off the "rehasing" flag
57867              if the hash is cleared
57868      Branch: perl
57869            ! hv.c
57870 ____________________________________________________________________________
57871 [ 21473] By: rgs                                   on 2003/10/17  08:53:48
57872         Log: -u is deprecated.
57873              Subject: Re: why PERL5LIB is ignored when -T is in effect
57874              From: Slaven Rezic <slaven@rezic.de>
57875              Date: Fri, 17 Oct 2003 10:02:31 +0000
57876              Message-Id: <1066384951.4964@devpc01.iconmobile.de>
57877      Branch: perl
57878            ! perl.c
57879 ____________________________________________________________________________
57880 [ 21472] By: rgs                                   on 2003/10/17  07:29:10
57881         Log: The compilation of PerlIO::via may hang on AIX when
57882              compiling with vac at -O3 optimization level. Disable
57883              optimization for this module.
57884      Branch: perl
57885            + ext/PerlIO/via/hints/aix.pl
57886            ! MANIFEST
57887 ____________________________________________________________________________
57888 [ 21471] By: nicholas                              on 2003/10/16  21:10:27
57889         Log: Plan C for foiling the algorithmic complexity attack
57890              (based on Chip's plan A (binary compatibility with 5.8.0 and 5.8.1),
57891              Chip's plan B (do something new inside the hv functions)
57892              and introspective sort)
57893              Provides infrastructure for hashes to change their hash function
57894              if necessary, and code in hsplit to detect pathalogical data and
57895              instigate a random rehashing.
57896              Needs refinement. Let's see how much smoke it creates.
57897      Branch: perl
57898            ! embedvar.h hv.c hv.h intrpvar.h perl.c perlapi.h sv.c sv.h
57899            ! util.c
57900 ____________________________________________________________________________
57901 [ 21470] By: davem                                 on 2003/10/16  20:03:44
57902         Log: Ensure PL_comppad/curpad point to PL_main_cv's padlist when
57903              PL_main_root is freed; this may not have been be the case if a
57904              thread other than the main one is the last to be destroyed
57905      Branch: perl
57906            ! ext/threads/t/thread.t pad.h perl.c
57907 ____________________________________________________________________________
57908 [ 21469] By: nicholas                              on 2003/10/16  19:31:19
57909         Log: Duplicate 19423 (pathological hashes too easy) into share_hek_flags
57910              (as suggested by Jan Dubois)
57911      Branch: perl
57912            ! hv.c
57913 ____________________________________________________________________________
57914 [ 21468] By: ams                                   on 2003/10/16  19:00:14
57915         Log: Subject: Re: assert.h breaks perl.h
57916              From: Alexey Tourbin <at@altlinux.ru>
57917              Date: Thu, 16 Oct 2003 22:24:35 +0400
57918              Message-Id: <20031016182434.GH1724@julia.office.altlinux.ru>
57919      Branch: perl
57920            ! sv.h
57921 ____________________________________________________________________________
57922 [ 21467] By: ams                                   on 2003/10/16  18:57:57
57923         Log: Subject: [PATCH] Tie::Hash documentation
57924              From: Slaven Rezic <slaven@rezic.de>
57925              Date: Thu, 16 Oct 2003 17:57:35 +0000
57926              Message-Id: <1066327055.1428@devpc01.iconmobile.de>
57927      Branch: perl
57928            ! lib/Tie/Hash.pm
57929 ____________________________________________________________________________
57930 [ 21466] By: rgs                                   on 2003/10/16  08:52:50
57931         Log: Further tweak on change #21464.
57932      Branch: perl
57933            ! perl.c
57934 ____________________________________________________________________________
57935 [ 21464] By: ams                                   on 2003/10/16  08:42:50
57936         Log: Subject: perl -h tweak [PATCH]
57937              From: Gisle Aas <gisle@ActiveState.com>
57938              Date: 16 Oct 2003 02:49:39 -0700
57939              Message-Id: <lrn0c11pho.fsf@caliper.activestate.com>
57940      Branch: perl
57941            ! perl.c
57942 ____________________________________________________________________________
57943 [ 21456] By: rgs                                   on 2003/10/15  19:19:05
57944         Log: Perlfaq1 : take notice that 5.8.1 is now released.
57945      Branch: perl
57946            ! pod/perlfaq1.pod
57947 ____________________________________________________________________________
57948 [ 21454] By: rgs                                   on 2003/10/15  19:06:05
57949         Log: PerlFAQ sync. (only actual changes)
57950      Branch: perl
57951            ! pod/perlfaq4.pod
57952 ____________________________________________________________________________
57953 [ 21453] By: rgs                                   on 2003/10/15  19:02:35
57954         Log: Typos.
57955      Branch: perl
57956            ! hints/aix.sh
57957 ____________________________________________________________________________
57958 [ 21452] By: rgs                                   on 2003/10/15  11:12:31
57959         Log: Fix bug [perl #24212] : improper error recovery in the
57960              tokenizer after an unknown filetest operator.
57961      Branch: perl
57962            ! t/comp/parser.t toke.c
57963 ____________________________________________________________________________
57964 [ 21451] By: rgs                                   on 2003/10/15  09:19:02
57965         Log: Update MIME::Base64 and Digest::MD5 from the CPAN version.
57966      Branch: perl
57967            ! ext/Digest/MD5/Changes ext/Digest/MD5/MD5.pm
57968            ! ext/Digest/MD5/Makefile.PL ext/Digest/MD5/t/align.t
57969            ! ext/Digest/MD5/t/files.t ext/Digest/MD5/t/utf8.t
57970            ! ext/MIME/Base64/Base64.pm ext/MIME/Base64/Base64.xs
57971            ! ext/MIME/Base64/Changes ext/MIME/Base64/Makefile.PL
57972            ! ext/MIME/Base64/QuotedPrint.pm ext/MIME/Base64/t/unicode.t
57973 ____________________________________________________________________________
57974 [ 21450] By: rgs                                   on 2003/10/15  06:47:11
57975         Log: Add support for Linux abstract unix domain sockets to Socket.pm.
57976              Based on a idea by Alex Hudson. (Basically those are unix domain
57977              sockets whose name has a '\0' as first character.)
57978      Branch: perl
57979            ! ext/Socket/Socket.xs ext/Socket/t/Socket.t
57980 ____________________________________________________________________________
57981 [ 21449] By: ams                                   on 2003/10/15  06:32:44
57982         Log: Subject: [PATCH] SIGN => 1 support for MakeMaker
57983              From: Autrijus Tang <autrijus@autrijus.org>
57984              Date: Tue, 14 Oct 2003 18:32:28 +0800
57985              Message-Id: <1066127547.65845.35.camel@localhost>
57986      Branch: perl
57987            ! lib/ExtUtils/MM_Any.pm lib/ExtUtils/MM_Unix.pm
57988            ! lib/ExtUtils/MakeMaker.pm
57989 ____________________________________________________________________________
57990 [ 21448] By: ams                                   on 2003/10/15  05:56:12
57991         Log: Rewrite #21447.
57992      Branch: perl
57993            ! pod/perliol.pod
57994 ____________________________________________________________________________
57995 [ 21447] By: ams                                   on 2003/10/15  05:36:48
57996         Log: Subject: [patch pod/perliol.pod]
57997              From: Stas Bekman <stas@stason.org>
57998              Date: Tue, 14 Oct 2003 18:05:29 -0700
57999              Message-Id: <3F8C9D59.3040403@stason.org>
58000      Branch: perl
58001            ! pod/perliol.pod
58002 ____________________________________________________________________________
58003 [ 21446] By: nicholas                              on 2003/10/14  18:45:39
58004         Log: Duplicate 19423 (pathological hashes too easy) into hv_store_ent
58005              (the routine used by perl level HV operations)
58006      Branch: perl
58007            ! hv.c
58008 ____________________________________________________________________________
58009 [ 21445] By: rgs                                   on 2003/10/13  21:03:05
58010         Log: Subject: [PATCH ext/Devel/PPPort/PPPort.pm] Changes #20819 and #20996 break compatibility with perl 5.6.0
58011              From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
58012              Date: Tue, 30 Sep 2003 19:23:34 +0200
58013              Message-ID: <021e01c38777$93ea4e10$0c2f1fac@R2D2>
58014      Branch: perl
58015            ! ext/Devel/PPPort/PPPort.pm
58016 ____________________________________________________________________________
58017 [ 21442] By: ams                                   on 2003/10/13  08:41:17
58018         Log: Subject: [perl #24189] Incorrect comment in perldoc strict
58019              From: "Iain 'Spoon' Truskett (via RT)" <perlbug-followup@perl.org>
58020              Date: 12 Oct 2003 09:01:25 -0000
58021              Message-Id: <rt-24189-65954.9.50514379869631@rt.perl.org>
58022      Branch: perl
58023            ! lib/strict.pm
58024 ____________________________________________________________________________
58025 [ 21441] By: rgs                                   on 2003/10/13  08:02:21
58026         Log: Subject: [PATCH] Internals::hash_seed() returns wrong value
58027              From: Jan Dubois <jand@ActiveState.com>
58028              Date: Sun, 12 Oct 2003 22:09:39 -0700
58029              Message-ID: <07ckovck8mp5e8tthmtbbcrpi2tj6q9eak@4ax.com>
58030      Branch: perl
58031            ! universal.c
58032 ____________________________________________________________________________
58033 [ 21440] By: rgs                                   on 2003/10/12  19:58:05
58034         Log: Subject: [perl #24122] setreuid and friends borked on darwin/osx
58035              From: "pxm@nubz.org (via RT)" <perlbug-followup@perl.org>
58036              Date: 5 Oct 2003 20:55:56 -0000
58037              Message-ID: <rt-24122-65678.14.2411168523081@rt.perl.org>
58038      Branch: perl
58039            ! mg.c
58040 ____________________________________________________________________________
58041 [ 21439] By: rgs                                   on 2003/10/12  16:28:06
58042         Log: Subject: [PATCH] Tie::Hash documentation
58043              From: Slaven Rezic <slaven@rezic.de>
58044              Date: Sun, 12 Oct 2003 18:55:54 +0200 (CEST)
58045              Message-Id: <200310121655.h9CGtsrY003613@vran.herceg.de>
58046      Branch: perl
58047            ! lib/Tie/Hash.pm
58048 ____________________________________________________________________________
58049 [ 21438] By: rgs                                   on 2003/10/12  15:48:13
58050         Log: Subject: Re: [perl #24122] setreuid and friends borked on darwin/osx
58051              From: Slaven Rezic <slaven@rezic.de>
58052              Date: 07 Oct 2003 00:04:34 +0200
58053              Message-ID: <87ekxq6n0t.fsf@vran.herceg.de>
58054      Branch: perl
58055            ! hints/darwin.sh
58056 ____________________________________________________________________________
58057 [ 21437] By: rgs                                   on 2003/10/12  15:25:17
58058         Log: Minor nit in perlrun, spotted by Art Haas.
58059      Branch: perl
58060            ! pod/perlrun.pod
58061 ____________________________________________________________________________
58062 [ 21436] By: ams                                   on 2003/10/10  19:05:55
58063         Log: Subject: [PATCH] threads::async + some cleanup
58064              From: Elizabeth Mattijsen <liz@dijkmat.nl>
58065              Date: Fri, 10 Oct 2003 16:37:55 +0200
58066              Message-Id: <p05111b07bbac713a0aaf@[192.168.56.2]>
58067      Branch: perl
58068            ! ext/threads/threads.pm
58069 ____________________________________________________________________________
58070 [ 21435] By: ams                                   on 2003/10/10  19:02:34
58071         Log: Make everyone stop posting to p5p about 0e0.
58072      Branch: perl
58073            ! pod/perlsyn.pod
58074 ____________________________________________________________________________
58075 [ 21433] By: nicholas                              on 2003/10/09  20:57:26
58076         Log: Put all pre-processor #s on the first column (some compilers are picky)
58077              [perl #24167] `#' comment signs not at the very beginning of a line
58078      Branch: perl
58079            ! cop.h dosish.h ext/SDBM_File/sdbm/sdbm.h iperlsys.h op.c
58080            ! perl.h regcomp.c
58081 ____________________________________________________________________________
58082 [ 21432] By: rgs                                   on 2003/10/09  11:09:24
58083         Log: Suppress the test file t/op/nothr5005.t and integrate its tests into
58084              t/op/args.t, now that 5005threads have been removed. Port t/op/args.t
58085              to t/test.pl.
58086      Branch: perl
58087            - t/op/nothr5005.t
58088            ! MANIFEST t/op/args.t
58089 ____________________________________________________________________________
58090 [ 21431] By: rgs                                   on 2003/10/09  11:06:15
58091         Log: Document the behaviour of filetest operators regarding parentheses.
58092              This fixes bug #24127 (by documenting it as a feature.)
58093      Branch: perl
58094            ! pod/perlop.pod
58095 ____________________________________________________________________________
58096 [ 21430] By: ams                                   on 2003/10/09  07:55:34
58097         Log: Subject: [PATCH 5.8.1 CORE] Internal fixes to source-code coordinate
58098              calculations in regcomp.c
58099              From: Eric Promislow <ericp@ActiveState.com>
58100              Date: Wed, 8 Oct 2003 17:42:42 -0700
58101              Message-Id: <20031008174242.A17544@ActiveState.com>
58102      Branch: perl
58103            ! regcomp.c
58104 ____________________________________________________________________________
58105 [ 21429] By: ams                                   on 2003/10/09  07:43:56
58106         Log: Patch based on:
58107
58108              Subject: [perl #24157] -MModule=} is broken
58109              From: "Lukas Mai" (via RT) <perlbug-followup@perl.org>
58110              Date: 7 Oct 2003 21:47:43 -0000
58111              Message-Id: <rt-24157-65809.10.9980909617566@rt.perl.org>
58112
58113              (Includes a fix for a similar problem in -A, but not -d.)
58114      Branch: perl
58115            ! perl.c
58116 ____________________________________________________________________________
58117 [ 21428] By: ams                                   on 2003/10/09  02:32:07
58118         Log: Subject: [PATCH] Devel::PPPort is missing an aTHX when calling
58119              grok_numeric_radix()
58120              From: Jan Dubois <jand@ActiveState.com>
58121              Date: Wed, 08 Oct 2003 20:37:42 -0700
58122              Message-Id: <8kl9ov0932qo08o24uafuc9v77clrgnoe4@4ax.com>
58123      Branch: perl
58124            ! ext/Devel/PPPort/PPPort.pm
58125 ____________________________________________________________________________
58126 [ 21427] By: ams                                   on 2003/10/09  01:36:18
58127         Log: Subject: Re: require patch breaks locale
58128              From: Rick Delaney <rick@bort.ca>
58129              Date: Wed, 8 Oct 2003 22:41:55 -0400
58130              Message-Id: <20031008224155.A14638@biff.bort.ca>
58131      Branch: perl
58132            ! t/comp/require.t
58133 ____________________________________________________________________________
58134 [ 21426] By: ams                                   on 2003/10/09  01:26:57
58135         Log: Subject: Re: Simple @INC hook core dump [PATCH]
58136              From: Gisle Aas <gisle@ActiveState.com>
58137              Date: 08 Oct 2003 13:35:28 -0700
58138              Message-Id: <lrr81ncvsf.fsf@caliper.activestate.com>
58139      Branch: perl
58140            ! t/op/inccode.t
58141 ____________________________________________________________________________
58142 [ 21425] By: rgs                                   on 2003/10/08  11:34:17
58143         Log: Fix bug #24108: Goto +foo broken
58144              the fix having been suggested by xmath via Juerd.
58145      Branch: perl
58146            ! op.c t/op/goto.t
58147 ____________________________________________________________________________
58148 [ 21424] By: rgs                                   on 2003/10/08  11:16:58
58149         Log: Subject: Re: Simple @INC hook core dump [PATCH]
58150              From: Gisle Aas <gisle@ActiveState.com>
58151              Date: 08 Oct 2003 04:47:33 -0700
58152              Message-ID: <lrllrweysq.fsf_-_@caliper.activestate.com>
58153      Branch: perl
58154            ! pp_ctl.c
58155 ____________________________________________________________________________
58156 [ 21423] By: ams                                   on 2003/10/08  10:09:41
58157         Log: Subject: [PATCH pod/perlrun.pod] Layout & POD nit.
58158              From: Abigail <abigail@abigail.nl>
58159              Date: Wed, 8 Oct 2003 03:50:49 -0700
58160              Message-Id: <20031008105049.GA15770@ucan.foad.org>
58161      Branch: perl
58162            ! pod/perlrun.pod
58163 ____________________________________________________________________________
58164 [ 21422] By: ams                                   on 2003/10/08  06:13:07
58165         Log: "Are implicit undefs true?" asks Gisle.
58166      Branch: perl
58167            ! pod/perlsyn.pod
58168 ____________________________________________________________________________
58169 [ 21421] By: ams                                   on 2003/10/08  03:20:00
58170         Log: Subject: Re: [PATCH] perlop.pod Revamp - revision 4
58171              From: schwern@pobox.com
58172              Date: Tue, 7 Oct 2003 20:39:36 -0700
58173              Message-Id: <20031007203936.X4301@ttul.org>
58174
58175              (Originally from Shlomi Fish. Applied with tweaks.)
58176      Branch: perl
58177            ! pod/perlop.pod
58178 ____________________________________________________________________________
58179 [ 21420] By: ams                                   on 2003/10/07  19:51:35
58180         Log: Minor tweaks to pod/perlsyn.pod (as suggested by Yves Orton),
58181              sv.c (Tim Bunce), t/op/pow.t (John P. Linderman).
58182      Branch: perl
58183            ! pod/perlsyn.pod sv.c t/op/pow.t
58184 ____________________________________________________________________________
58185 [ 21419] By: ams                                   on 2003/10/07  04:03:34
58186         Log: Why should -3**$x be more precisely determined than 3**$x?
58187      Branch: perl
58188            ! t/op/pow.t
58189 ____________________________________________________________________________
58190 [ 21418] By: ams                                   on 2003/10/07  03:59:38
58191         Log: Subject: [PATCH] Fixing UNIVERSAL.pm's bit of unpleasantness
58192              From: schwern@pobox.com
58193              Date: Mon, 6 Oct 2003 13:14:36 -0700
58194              Message-Id: <20031006131436.G20960@ttul.org>
58195      Branch: perl
58196            ! lib/UNIVERSAL.pm t/op/universal.t
58197 ____________________________________________________________________________
58198 [ 21417] By: ams                                   on 2003/10/07  03:55:18
58199         Log: Update perlfunc/require to describe NXDOMAIN caching... er, you
58200              know what I mean.
58201      Branch: perl
58202            ! pod/perlfunc.pod
58203 ____________________________________________________________________________
58204 [ 21416] By: ams                                   on 2003/10/07  03:37:01
58205         Log: Subject: [patch sv.c] improve "...free unref scalar" warning
58206              From: Stas Bekman <stas@stason.org>
58207              Date: Mon, 06 Oct 2003 21:19:53 -0700
58208              Message-Id: <3F823EE9.4030103@stason.org>
58209      Branch: perl
58210            ! sv.c
58211 ____________________________________________________________________________
58212 [ 21415] By: ams                                   on 2003/10/06  17:30:31
58213         Log: Subject: [PATCH bleadperl] (was Re: require() does not behave aas documented)
58214              From: Rick Delaney <rick@bort.ca>
58215              Date: Tue, 23 Sep 2003 12:14:52 -0400
58216              Message-ID: <20030923121452.G18845@biff.bort.ca>
58217      Branch: perl
58218            ! pp_ctl.c t/comp/require.t
58219 ____________________________________________________________________________
58220 [ 21414] By: rgs                                   on 2003/10/06  15:23:01
58221         Log: Subject: Re: [PATCH lib/warnings.t]  Adding TODO functionality to lib/warnings.
58222              From: Abigail <abigail@abigail.nl>
58223              Date: Wed, 1 Oct 2003 14:19:43 +0200
58224              Message-ID: <20031001121943.GA29419@abigail.nl>
58225      Branch: perl
58226            ! lib/warnings.t
58227 ____________________________________________________________________________
58228 [ 21413] By: rgs                                   on 2003/10/06  15:05:32
58229         Log: Fixes in the modules maintainers list.
58230      Branch: perl
58231            ! Porting/Maintainers.pl
58232 ____________________________________________________________________________
58233 [ 21412] By: rgs                                   on 2003/10/06  15:02:42
58234         Log: Fix broken link in perltodo.pod.
58235      Branch: perl
58236            ! pod/perltodo.pod
58237 ____________________________________________________________________________
58238 [ 21411] By: rgs                                   on 2003/10/06  12:11:10
58239         Log: Typos in perldiag.
58240      Branch: perl
58241            ! pod/perldiag.pod
58242 ____________________________________________________________________________
58243 [ 21410] By: rgs                                   on 2003/10/06  11:55:52
58244         Log: Subject: Re: [doc-PATCH] for unpack_str() and question
58245              From: LAUN Wolfgang <wolfgang.laun@alcatel.at>
58246              Date: Mon, 6 Oct 2003 08:45:29 +0200
58247              Message-ID: <75A46BF1A9D8D311863A00508B6259A405F180C1@ATTMSX4>
58248      Branch: perl
58249            ! pod/perlapi.pod pp_pack.c
58250 ____________________________________________________________________________
58251 [ 21409] By: rgs                                   on 2003/10/06  11:49:55
58252         Log: Subject: [PATCH pod/perlfunc.pod]  ref can return false on references
58253              From: Abigail <abigail@abigail.nl>
58254              Date: Mon, 6 Oct 2003 05:55:21 -0700
58255              Message-ID: <20031006125521.GA26446@ucan.foad.org>
58256      Branch: perl
58257            ! pod/perlfunc.pod
58258 ____________________________________________________________________________
58259 [ 21408] By: rgs                                   on 2003/10/06  11:46:14
58260         Log: Add a new option --check to Porting/Maintainers,
58261              to check for files who are listed for several maintainers.
58262      Branch: perl
58263            ! Porting/Maintainers.pm
58264 ____________________________________________________________________________
58265 [ 21407] By: rgs                                   on 2003/10/06  11:44:33
58266         Log: Subject: [PATCH]Re: The META.yml file in bleadperl
58267              From: Fergal Daly <fergal@esatclear.ie>
58268              Date: Mon, 6 Oct 2003 00:25:29 +0100
58269              Message-Id: <200310060025.29122.fergal@esatclear.ie>
58270
58271              Plus regeneration of META.yml
58272      Branch: perl
58273            ! META.yml Porting/makemeta
58274 ____________________________________________________________________________
58275 [ 21406] By: ams                                   on 2003/10/06  04:22:11
58276         Log: Subject: Re: [perl #24076] "<> err EXPR" and warnings.
58277              From: Rafael Garcia-Suarez <rgarciasuarez@free.fr>
58278              Date: Sun, 5 Oct 2003 21:27:54 +0200
58279              Message-Id: <20031005212754.5ef54472.rgarciasuarez@free.fr>
58280              (Applied with tweaks to op.c and a comment.)
58281      Branch: perl
58282            ! op.c t/lib/warnings/op
58283 ____________________________________________________________________________
58284 [ 21405] By: ams                                   on 2003/10/06  03:56:54
58285         Log: Subject: Re: [PATCH] perlsyn.pod Revision - Resend
58286              From: Shlomi Fish <shlomif@vipe.technion.ac.il>
58287              Date: Fri, 3 Oct 2003 12:34:46 +0200 (IST)
58288              Message-Id: <Pine.LNX.4.56.0310031233580.28640@vipe.technion.ac.il>
58289              (Applied with minor tweaks.)
58290      Branch: perl
58291            ! pod/perlsyn.pod
58292 ____________________________________________________________________________
58293 [ 21404] By: ams                                   on 2003/10/06  03:32:50
58294         Log: Subject: [perl #24120] Tie::Hash documentation has broken code
58295              From: "Benjamin J. Tilly" (via RT) <perlbug-followup@perl.org>
58296              Date: 5 Oct 2003 18:40:36 -0000
58297              Message-Id: <rt-24120-65664.15.9776865968429@rt.perl.org>
58298              (Applied without $VERSION update.)
58299      Branch: perl
58300            ! lib/Tie/Hash.pm
58301 ____________________________________________________________________________
58302 [ 21403] By: ams                                   on 2003/10/06  03:26:39
58303         Log: Subject: Re: [PATCH] [perl #24113] mistake in perlretut
58304              From: Robert Spier <rspier@pobox.com>
58305              Date: Sun, 05 Oct 2003 21:34:30 -0700
58306              Message-Id: <m3vfr39e7d.wl_rspier@pobox.com>
58307      Branch: perl
58308            ! pod/perlretut.pod
58309 ____________________________________________________________________________
58310 [ 21402] By: ams                                   on 2003/10/05  03:08:53
58311         Log: Subject: [PATCH] pp_sys.c: pp_waitpid and EINTR
58312              From: Steve Grazzini <grazz@pobox.com>
58313              Date: Sat, 4 Oct 2003 18:15:23 -0400
58314              Message-Id: <20031004221523.GA29324@grazzini.net>
58315      Branch: perl
58316            ! pp_sys.c
58317 ____________________________________________________________________________
58318 [ 21401] By: ams                                   on 2003/10/02  17:25:34
58319         Log: Subject: Re: 5.8.1 and srand
58320              From: Slaven Rezic <slaven@rezic.de>
58321              Date: Thu, 2 Oct 2003 15:51:11 +0000
58322              Message-Id: <1065109871.3115@devpc01.iconmobile.de>
58323      Branch: perl
58324            ! t/op/fork.t
58325 ____________________________________________________________________________
58326 [ 21400] By: hv                                    on 2003/10/02  09:34:36
58327         Log: minor cleanup for Changes
58328      Branch: perl
58329            ! Changes
58330 ____________________________________________________________________________
58331 [ 21399] By: hv                                    on 2003/10/02  09:18:27
58332         Log: Update changes
58333      Branch: perl
58334            ! Changes patchlevel.h
58335 ____________________________________________________________________________
58336 [ 21398] By: hv                                    on 2003/10/02  09:15:42
58337         Log: build perlapi.pod in deterministic order even when functions differ
58338              only in case; regen perlapi.pod
58339      Branch: perl
58340            ! autodoc.pl pod/perlapi.pod
58341 ____________________________________________________________________________
58342 [ 21397] By: ams                                   on 2003/10/02  07:48:51
58343         Log: Subject: Re: 5.8.1 and srand
58344              From: Brendan O'Dea <bod@debian.org>
58345              Date: Thu, 2 Oct 2003 10:30:36 +1000
58346              Message-Id: <20031002003036.GA9198@londo.c47.org>
58347      Branch: perl
58348            ! util.c
58349 ____________________________________________________________________________
58350 [ 21396] By: ams                                   on 2003/10/01  22:18:13
58351         Log: Update Changes.
58352      Branch: perl
58353            ! Changes patchlevel.h
58354 ____________________________________________________________________________
58355 [ 21394] By: ams                                   on 2003/10/01  20:28:20
58356         Log: Subject: misapplied patch 19452
58357              From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
58358              Date: Tue, 30 Sep 2003 06:01:50 -0700
58359              Message-Id: <20030930130150.GA1436@efn.org>
58360      Branch: perl
58361            ! pp_hot.c
58362 ____________________________________________________________________________
58363 [ 21392] By: rgs                                   on 2003/09/30  20:22:02
58364         Log: Revamp the section on local() in perlsub.
58365              - avoid using the word "declare" in conjunction with local()
58366              - less archaelogical references
58367              - more about localization of lvalues
58368              - removes examples of localization of tied hashes that don't work
58369              - give titles to subsections
58370              - explain localization of magic values
58371              - explain localization of globs
58372              - fix link to perldelta
58373      Branch: perl
58374            ! pod/perlsub.pod
58375 ____________________________________________________________________________
58376 [ 21391] By: rgs                                   on 2003/09/30  12:47:13
58377         Log: Useless "local $_" in a perlfaq3 example
58378      Branch: perl
58379            ! pod/perlfaq3.pod
58380 ____________________________________________________________________________
58381 [ 21390] By: rgs                                   on 2003/09/30  11:29:17
58382         Log: Subject: Re: NCR MP-RAS perl problems [perl #23791]
58383              From: grommel@sears.com
58384              Date: Mon, 29 Sep 2003 14:45:16 -0500
58385              Message-ID: <OF9B00605E.3CC90F32-ON86256DB0.006B13F0-86256DB0.006C8E85@LocalDomain>
58386      Branch: perl
58387            ! hints/svr4.sh t/op/pack.t
58388 ____________________________________________________________________________
58389 [ 21389] By: rgs                                   on 2003/09/30  11:06:53
58390         Log: Add a TODO test for bug #23790, by Abigail
58391      Branch: perl
58392            ! t/op/sub_lval.t
58393 ____________________________________________________________________________
58394 [ 21388] By: rgs                                   on 2003/09/30  10:52:50
58395         Log: Subject: [PATCH] Re: [perl #24071] Typo in description of binmode
58396              From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
58397              Date: Tue, 30 Sep 2003 04:53:02 -0700
58398              Message-ID: <20030930115302.GA3200@efn.org>
58399      Branch: perl
58400            ! pod/perlfunc.pod
58401 ____________________________________________________________________________
58402 [ 21387] By: rgs                                   on 2003/09/29  12:47:37
58403         Log: Subject: [PATCH] perl-5.8.1 hints/powerux.sh, ext/Sys/Syslog/t/syslog.t
58404              From: Tom Horsley <Tom.Horsley@ccur.com>
58405              Date: Mon, 29 Sep 2003 13:00:09 GMT
58406              Message-Id: <200309291300.NAA23856@amber2.ccur.com>
58407      Branch: perl
58408            ! ext/Sys/Syslog/t/syslog.t hints/powerux.sh
58409 ____________________________________________________________________________
58410 [ 21386] By: rgs                                   on 2003/09/29  11:14:27
58411         Log: Subject: [PATCH 5.8.1] Fix broken splitpod program
58412              From: Steve Hay <steve.hay@uk.radan.com>
58413              Date: Mon, 29 Sep 2003 11:50:23 +0100
58414              Message-ID: <3F780E6F.3020704@uk.radan.com>
58415      Branch: perl
58416            ! pod/splitpod
58417 ____________________________________________________________________________
58418 [ 21385] By: rgs                                   on 2003/09/29  11:09:32
58419         Log: Subject: [PATCH 5.8.1] pod/perlrun.pod: no space after -i allowed
58420              From: Brendan O'Dea <bod@debian.org>
58421              Date: Sun, 28 Sep 2003 23:23:34 +1000
58422              Message-ID: <20030928132334.GA29499@londo.c47.org>
58423      Branch: perl
58424            ! pod/perlrun.pod
58425 ____________________________________________________________________________
58426 [ 21384] By: rgs                                   on 2003/09/26  20:39:19
58427         Log: Nit to the maintainers list by SADAHIRO Tomoyuki
58428      Branch: perl
58429            ! Porting/Maintainers.pl
58430 ____________________________________________________________________________
58431 [ 21383] By: jhi                                   on 2003/09/26  04:41:17
58432         Log: Missing +x bits.
58433      Branch: perl
58434            ! Porting/makerel
58435 ____________________________________________________________________________
58436 [ 21382] By: rgs                                   on 2003/09/25  19:40:50
58437         Log: Update the perldelta for 5.9.0.
58438      Branch: perl
58439            ! pod/perldelta.pod
58440 ____________________________________________________________________________
58441 [ 21381] By: rgs                                   on 2003/09/25  19:02:12
58442         Log: Add the perl581delta manpage.
58443              Regenerate the table of contents.
58444      Branch: perl
58445            + pod/perl581delta.pod
58446            ! MANIFEST pod.lst pod/perl.pod pod/perlhist.pod pod/perltoc.pod
58447            ! vms/descrip_mms.template win32/pod.mak
58448 ____________________________________________________________________________
58449 [ 21380] By: rgs                                   on 2003/09/25  18:36:45
58450         Log: Update perlhist.pod
58451      Branch: perl
58452            ! pod/perlhist.pod
58453 ____________________________________________________________________________
58454 [ 21372] By: gbarr                                 on 2003/09/25  07:35:24
58455         Log: Sync with libnet 1.17
58456      Branch: perl
58457            ! lib/Net/ChangeLog.libnet lib/Net/Domain.pm lib/Net/FTP.pm
58458 ____________________________________________________________________________
58459 [ 21371] By: gbarr                                 on 2003/09/25  06:57:35
58460         Log: Update to Scalar-List-Utils 1.13
58461      Branch: perl
58462            ! ext/List/Util/ChangeLog ext/List/Util/Util.xs
58463            ! ext/List/Util/lib/List/Util.pm
58464            ! ext/List/Util/lib/Scalar/Util.pm ext/List/Util/t/sum.t
58465 ____________________________________________________________________________
58466 [ 21370] By: jhi                                   on 2003/09/25  06:45:42
58467         Log: CPAN sites update.
58468      Branch: perl
58469            ! pod/perlmodlib.PL
58470 ____________________________________________________________________________
58471 [ 21369] By: jhi                                   on 2003/09/25  05:22:48
58472         Log: Subject: Re: 5.8.1 and gcc-3.2.3 (& Win98)
58473              From: Greg Matheson <lang@ms.chinmin.edu.tw>
58474              Date: Wed, 24 Sep 2003 22:51:09 +0800
58475              Message-ID: <20030924225109.A17126@ms>
58476
58477              (Win98 + MinGW, a missing Win95.pm hunk)
58478      Branch: perl
58479            ! lib/ExtUtils/MM_Win95.pm
58480 ____________________________________________________________________________
58481 [ 21365] By: jhi                                   on 2003/09/25  04:44:05
58482         Log: AUTHORS tweak.
58483      Branch: perl
58484            ! AUTHORS
58485 ____________________________________________________________________________
58486 [ 21361] By: jhi                                   on 2003/09/24  17:40:42
58487         Log: Even though undefing SPACE and FORMAT should be safe,
58488              at this point I'm choosing to be paranoid and using
58489              #ifdef __Lynx__.
58490      Branch: perl
58491            ! perl.h
58492 ____________________________________________________________________________
58493 [ 21360] By: jhi                                   on 2003/09/24  17:30:07
58494         Log: Subject: [perl #24032] Perl 5.8.1-RC5 build problems on LynxOS
58495              From: Olli Savia (via RT) <perlbug-followup@perl.org>
58496              Date: 24 Sep 2003 15:42:41 -0000
58497              Message-ID: <rt-24032-65280.10.6144413163834@rt.perl.org>
58498      Branch: perl
58499            ! mg.c perl.h perlio.c pp_sys.c
58500 ____________________________________________________________________________
58501 [ 21356] By: jhi                                   on 2003/09/24  08:27:52
58502         Log: Subject: [DOCPATCH] attributes.pm
58503              From: Elizabeth Mattijsen <liz@dijkmat.nl>
58504              Date: Wed, 24 Sep 2003 11:00:42 +0200
58505              Message-Id: <p05111b02bb970d5eec89@[192.168.56.4]>
58506
58507              (reformatted a bit)
58508      Branch: perl
58509            ! lib/attributes.pm
58510 ____________________________________________________________________________
58511 [ 21354] By: jhi                                   on 2003/09/24  07:25:48
58512         Log: A fix from Graham for
58513              [perl #24012] Weird conversion issue with List::Util::sum on Linux/AMD 850MHz
58514              (seemingly a NV casting issue)
58515      Branch: perl
58516            ! ext/List/Util/Util.xs
58517 ____________________________________________________________________________
58518 [ 21353] By: jhi                                   on 2003/09/24  05:05:39
58519         Log: Someone actually reads the Makefile.PL messages, it seems.
58520              (from Jonathan Leffler)
58521      Branch: perl
58522            ! ext/Time/HiRes/Makefile.PL
58523 ____________________________________________________________________________
58524 [ 21351] By: jhi                                   on 2003/09/24  04:54:33
58525         Log: perliol tweaks.
58526      Branch: perl
58527            ! pod/perliol.pod
58528 ____________________________________________________________________________
58529 [ 21349] By: rgs                                   on 2003/09/23  22:09:57
58530         Log: The FAQ answer about POD comments was incorrect. [perl #23893]
58531              (plus a few typos.)
58532      Branch: perl
58533            ! pod/perlfaq7.pod pod/perlpodspec.pod
58534 ____________________________________________________________________________
58535 [ 21348] By: rgs                                   on 2003/09/23  21:56:50
58536         Log: Subject: [PATCH] perlvar
58537              From: Juerd <juerd@convolution.nl>
58538              Date: Sun, 21 Sep 2003 21:40:54 +0200
58539              Message-ID: <20030921194054.GD14702@c3.convolution.nl>
58540      Branch: perl
58541            ! pod/perlvar.pod
58542 ____________________________________________________________________________
58543 [ 21344] By: jhi                                   on 2003/09/23  19:33:45
58544         Log: Subject: Re: NCR MP-RAS perl problems [perl #23791]
58545              From: grommel@sears.com
58546              Date: Tue, 23 Sep 2003 13:40:33 -0500
58547              Message-ID: <OF17BD5036.3CA48F9B-ON86256DAA.00483620-86256DAA.0066A1AA@LocalDomain>
58548      Branch: perl
58549            ! hints/svr4.sh t/op/stat.t
58550 ____________________________________________________________________________
58551 [ 21343] By: jhi                                   on 2003/09/23  19:26:06
58552         Log: Subject: [PATCH] Re: OK: 5.8.1 RC5 on SuSE 8.2 32bit AMD (gcc 3.3 prerelease)
58553              From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
58554              Date: Tue, 23 Sep 2003 09:13:55 -0700
58555              Message-ID: <20030923161354.GA2432@efn.org>
58556      Branch: perl
58557            ! INSTALL
58558 ____________________________________________________________________________
58559 [ 21342] By: rgs                                   on 2003/09/23  19:12:58
58560         Log: Minor nit in a debug message of the tokenizer.
58561      Branch: perl
58562            ! toke.c
58563 ____________________________________________________________________________
58564 [ 21340] By: jhi                                   on 2003/09/23  12:33:53
58565         Log: Let's call it 2.34, already (from Johan).
58566      Branch: perl
58567            ! lib/Getopt/Long.pm
58568 ____________________________________________________________________________
58569 [ 21339] By: jhi                                   on 2003/09/23  12:31:08
58570         Log: Subject: Re: [PATCH] RC5 and Intel's ICC
58571              From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
58572              Date: Tue, 23 Sep 2003 15:04:35 +0200
58573              Message-ID: <00d101c381d3$3d761fe0$0c2f1fac@R2D2>
58574
58575              (add -we147 to ccflags if cc = ICC so that prototype
58576              detection works right)
58577      Branch: perl
58578            ! hints/linux.sh
58579 ____________________________________________________________________________
58580 [ 21338] By: jhi                                   on 2003/09/23  12:02:28
58581         Log: Bump the Encode version to 1.9801 since we are no more identical
58582              to the CPAN version.
58583      Branch: perl
58584            ! ext/Encode/Encode.pm
58585 ____________________________________________________________________________
58586 [ 21332] By: jhi                                   on 2003/09/23  09:17:32
58587         Log: ucmlintage.
58588      Branch: perl
58589            ! ext/Encode/ucm/gsm0338.ucm
58590 ____________________________________________________________________________
58591 [ 21331] By: jhi                                   on 2003/09/23  09:11:23
58592         Log: GSM 03.38 mapping in Encoding::Byte is incorrect
58593
58594              Fix as much as possible - the specification is still
58595              a bit unclear.
58596      Branch: perl
58597            + ext/Encode/t/gsm0338.t
58598            ! MANIFEST ext/Encode/MANIFEST
58599            ! ext/Encode/lib/Encode/Supported.pod ext/Encode/ucm/gsm0338.ucm
58600 ____________________________________________________________________________
58601 [ 21329] By: jhi                                   on 2003/09/23  06:10:28
58602         Log: Subject: [PATCH] Re: B::Deparse fails in pure_string()
58603              From: Stephen McCamant <smcc@MIT.EDU>
58604              Date: Mon, 22 Sep 2003 20:53:57 -0700
58605              Message-ID: <16239.50133.367465.947398@famine.OCF.Berkeley.EDU>
58606      Branch: perl
58607            ! ext/B/B/Deparse.pm
58608 ____________________________________________________________________________
58609 [ 21327] By: jhi                                   on 2003/09/23  04:51:15
58610         Log: Subject: [PATCH] RC5 and Intel's ICC
58611              From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
58612              Date: Mon, 22 Sep 2003 22:52:40 +0200
58613              Message-ID: <00a101c3814b$76a8cc50$0c2f1fac@R2D2>
58614
58615              (the missing void return type)
58616      Branch: perl
58617            ! ext/threads/shared/shared.xs
58618 ____________________________________________________________________________
58619 [ 21326] By: jhi                                   on 2003/09/23  04:46:48
58620         Log: Subject: [PATCH] RC5 and Intel's ICC
58621              From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
58622              Date: Mon, 22 Sep 2003 22:52:40 +0200
58623              Message-ID: <00a101c3814b$76a8cc50$0c2f1fac@R2D2>
58624
58625              (the attribute part)
58626      Branch: perl
58627            ! ext/Devel/PPPort/PPPort.pm perl.h
58628 ____________________________________________________________________________
58629 [ 21325] By: jhi                                   on 2003/09/23  04:43:29
58630         Log: Stray CRs noticed by Jan Dubois.
58631      Branch: perl
58632            ! lib/ExtUtils/MM_Win95.pm lib/ExtUtils/t/MM_Win32.t
58633 ____________________________________________________________________________
58634 [ 21324] By: jhi                                   on 2003/09/23  04:40:19
58635         Log: The RCs have been missing CRs from certain files because
58636              not all shells can handle multiline arguments right.
58637      Branch: perl
58638            ! Porting/makerel
58639 ____________________________________________________________________________
58640 [ 21323] By: rgs                                   on 2003/09/22  20:31:19
58641         Log: When localising a magic value, propagate the readonly flag
58642              only if this scalar has \0 magic or has magic without a
58643              'set' method. (follows change #20479 for bug #23141.)
58644      Branch: perl
58645            ! scope.c t/op/local.t
58646 ____________________________________________________________________________
58647 [ 21319] By: jhi                                   on 2003/09/22  18:16:40
58648         Log: An error message need not be a novel.
58649      Branch: perl
58650            ! pod/perldiag.pod pp_hot.c
58651 ____________________________________________________________________________
58652 [ 21318] By: jhi                                   on 2003/09/22  17:45:23
58653         Log: Upgrade to Math::BigInt 1.66.
58654      Branch: perl
58655            ! lib/Math/BigFloat.pm lib/Math/BigInt.pm
58656            ! lib/Math/BigInt/Calc.pm lib/Math/BigInt/t/bare_mbi.t
58657            ! lib/Math/BigInt/t/bigintpm.inc lib/Math/BigInt/t/bigintpm.t
58658            ! lib/Math/BigInt/t/mbi_rand.t lib/Math/BigInt/t/sub_mbi.t
58659            ! lib/Math/BigInt/t/upgrade.inc lib/Math/BigInt/t/upgrade.t
58660 ____________________________________________________________________________
58661 [ 21311] By: jhi                                   on 2003/09/22  08:49:24
58662         Log: Some more perlio doc tweaks based on NI-S.
58663      Branch: perl
58664            ! pod/perliol.pod
58665 ____________________________________________________________________________
58666 [ 21305] By: jhi                                   on 2003/09/22  05:59:54
58667         Log: Upgrade to Time::HiRes 1.51.
58668      Branch: perl
58669            ! ext/Time/HiRes/Changes ext/Time/HiRes/HiRes.pm
58670 ____________________________________________________________________________
58671 [ 21303] By: jhi                                   on 2003/09/22  04:37:21
58672         Log: Upgrade to Getopt::Long 2.33_03.
58673      Branch: perl
58674            ! lib/Getopt/Long.pm lib/Getopt/Long/CHANGES
58675 ____________________________________________________________________________
58676 [ 21302] By: jhi                                   on 2003/09/22  04:28:57
58677         Log: CPAN.pm 1.76_01 from Andreas.
58678      Branch: perl
58679            ! lib/CPAN.pm
58680 ____________________________________________________________________________
58681 [ 21299] By: jhi                                   on 2003/09/21  09:23:17
58682         Log: Regen toc.
58683      Branch: perl
58684            ! pod/perltoc.pod
58685 ____________________________________________________________________________
58686 [ 21298] By: jhi                                   on 2003/09/21  09:22:57
58687         Log: Handle also the curliffy files when tocing.
58688      Branch: perl
58689            ! pod/buildtoc
58690 ____________________________________________________________________________
58691 [ 21297] By: jhi                                   on 2003/09/21  08:50:22
58692         Log: Macrofy the compile/runtime test.
58693      Branch: perl
58694            ! cop.h gv.c perl.h pp_ctl.c regcomp.c sv.c utf8.c
58695 ____________________________________________________________________________
58696 [ 21296] By: jhi                                   on 2003/09/21  08:47:32
58697         Log: Tweak the section name to agree with the change #21295.
58698      Branch: perl
58699            ! lib/PerlIO.pm
58700 ____________________________________________________________________________
58701 [ 21295] By: jhi                                   on 2003/09/21  08:44:52
58702         Log: One obvious place to look for PerlIO implementations.
58703      Branch: perl
58704            ! pod/perliol.pod
58705 ____________________________________________________________________________
58706 [ 21294] By: jhi                                   on 2003/09/21  08:15:52
58707         Log: Subject: [PATCH #2] Re: [perl #23576] valgrind errors for /(?{})/ in t/op/pat.t
58708              From: Dave Mitchell <davem@fdgroup.com>
58709              Date: Fri, 19 Sep 2003 19:35:44 +0100
58710              Message-ID: <20030919183544.GA14563@fdgroup.com>
58711      Branch: perl
58712            ! pp_ctl.c
58713 ____________________________________________________________________________
58714 [ 21293] By: jhi                                   on 2003/09/21  08:13:58
58715         Log: More PerlIO documentation.
58716      Branch: perl
58717            ! lib/PerlIO.pm pod/perliol.pod
58718 ____________________________________________________________________________
58719 [ 21292] By: jhi                                   on 2003/09/20  18:44:07
58720         Log: Retract #21273, #21264, and #21263 as requested by Schwern.
58721              (The real bug was mp2 being too "friendly" with MM innards.)
58722      Branch: perl
58723            ! lib/ExtUtils/MM_Unix.pm lib/ExtUtils/MM_Win32.pm
58724            ! lib/ExtUtils/t/MM_Unix.t lib/ExtUtils/t/MM_Win32.t
58725 ____________________________________________________________________________
58726 [ 21291] By: jhi                                   on 2003/09/20  18:37:33
58727         Log: In FreeBSD allow one to try using Perl's malloc with threads.
58728      Branch: perl
58729            ! hints/freebsd.sh
58730 ____________________________________________________________________________
58731 [ 21290] By: rgs                                   on 2003/09/20  10:05:38
58732         Log: Missing perlfaq chunk.
58733      Branch: perl
58734            ! pod/perlfaq4.pod
58735 ____________________________________________________________________________
58736 [ 21289] By: rgs                                   on 2003/09/20  10:00:12
58737         Log: FAQ sync.
58738      Branch: perl
58739            ! pod/perlfaq4.pod
58740 ____________________________________________________________________________
58741 [ 21288] By: jhi                                   on 2003/09/19  14:49:20
58742         Log: Subject: typo fixo
58743              From: Vadim Konovalov <konovalo@mail.wplus.net>
58744              Date: Fri, 19 Sep 2003 06:32:08 +0400
58745              Message-ID: <4538131828.20030919063208@mail.wplus.net>
58746      Branch: perl
58747            ! pod/perlunicode.pod
58748 ____________________________________________________________________________
58749 [ 21286] By: jhi                                   on 2003/09/19  04:48:52
58750         Log: Subject: [PATCH 5.8.1 @21211] getsysinfo() broken on OS/2
58751              From: Ilya Zakharevich <nospam-abuse@ilyaz.org>
58752              Date: Thu, 18 Sep 2003 19:01:06 -0700
58753              Message-ID: <20030919020106.GA22511@math.berkeley.edu>
58754      Branch: perl
58755            ! os2/os2.c
58756 ____________________________________________________________________________
58757 [ 21285] By: jhi                                   on 2003/09/19  04:46:39
58758         Log: Tests for change #21284.
58759      Branch: perl
58760            ! lib/dumpvar.t
58761 ____________________________________________________________________________
58762 [ 21284] By: jhi                                   on 2003/09/19  04:46:12
58763         Log: Subject: [PATCH 5.8.1 @21211] dumpvar.pl broken
58764              From: Ilya Zakharevich <nospam-abuse@ilyaz.org>
58765              Date: Thu, 18 Sep 2003 18:58:59 -0700
58766              Message-ID: <20030919015858.GA22503@math.berkeley.edu>
58767      Branch: perl
58768            ! lib/dumpvar.pl
58769 ____________________________________________________________________________
58770 [ 21283] By: rgs                                   on 2003/09/18  21:29:23
58771         Log: Perlfaq nits from Iain Truskett.
58772              (from the perlfaq-workers list)
58773      Branch: perl
58774            ! pod/perlfaq2.pod pod/perlfaq4.pod pod/perlfaq8.pod
58775 ____________________________________________________________________________
58776 [ 21282] By: rgs                                   on 2003/09/18  21:10:26
58777         Log: Integrate a change from the perlfaq CVS.
58778              I consider the bleadperl version being more up-to-date as of now.
58779      Branch: perl
58780            ! pod/perlfaq3.pod
58781 ____________________________________________________________________________
58782 [ 21277] By: jhi                                   on 2003/09/18  19:23:22
58783         Log: Subject: [PATCH 5.8.1 @21211] -M -A -C broken
58784              From: Ilya Zakharevich <nospam-abuse@ilyaz.org>
58785              Date: Thu, 18 Sep 2003 11:02:02 -0700
58786              Message-ID: <20030918180202.GA21949@math.berkeley.edu>
58787
58788              (use stat.t instead of time.t)
58789      Branch: perl
58790            ! os2/os2ish.h pp_sys.c t/op/stat.t
58791 ____________________________________________________________________________
58792 [ 21276] By: jhi                                   on 2003/09/18  19:15:07
58793         Log: Subject: Re: [perl #19582] [PATCH bleedperl] bad overload copy constructor segfaults
58794              From: Rick Delaney <rick.delaney@rogers.com>
58795              Date: Wed, 1 Jan 2003 22:54:59 -0500
58796              Message-ID: <20030101225459.A2320@cs839290-a.mtth.phub.net.cable.rogers.com>
58797
58798              (Pity the first patch fell through the cracks back then.
58799              Not that forbidding non-object copy constructors is the right
58800              thing to do but the bug could use fixing.)
58801      Branch: perl
58802            ! lib/overload.t pp.h
58803 ____________________________________________________________________________
58804 [ 21274] By: jhi                                   on 2003/09/18  10:59:58
58805         Log: Subject: [PATCH] small fix for Devel::PPPort
58806              From: Tassilo von Parseval <tassilo.parseval@post.rwth-aachen.de>
58807              Date: Thu, 18 Sep 2003 10:14:58 +0200
58808              Message-id: <20030918081458.GA2653@ethan>
58809      Branch: perl
58810            ! ext/Devel/PPPort/Changes ext/Devel/PPPort/PPPort.pm
58811 ____________________________________________________________________________
58812 [ 21273] By: jhi                                   on 2003/09/18  10:57:41
58813         Log: ld has many guises.
58814      Branch: perl
58815            ! lib/ExtUtils/t/MM_Unix.t
58816 ____________________________________________________________________________
58817 [ 21271] By: jhi                                   on 2003/09/18  08:05:28
58818         Log: Missed OS/2 patch hunk.
58819      Branch: perl
58820            ! os2/os2.c
58821 ____________________________________________________________________________
58822 [ 21270] By: jhi                                   on 2003/09/18  05:00:23
58823         Log: Subject: Patch for VMS::Filespec
58824              From: Ken Williams <ken@mathforum.org>
58825              Date: Wed, 17 Sep 2003 20:11:46 -0500
58826              Message-Id: <12FBA07F-E975-11D7-BDD7-003065F6D85A@mathforum.org>
58827      Branch: perl
58828            ! vms/ext/Filespec.pm
58829 ____________________________________________________________________________
58830 [ 21268] By: jhi                                   on 2003/09/18  04:58:05
58831         Log: Subject: 5.8.1 warnings when long double == double
58832              From: Andy Dougherty <doughera@lafayette.edu>
58833              Date: Wed, 10 Sep 2003 12:03:53 -0400 (EDT)
58834              Message-ID: <Pine.SOL.4.53.0309101203010.10837@maxwell.phys.lafayette.edu>
58835              (the changed message)
58836      Branch: perl
58837            ! Configure
58838 ____________________________________________________________________________
58839 [ 21267] By: jhi                                   on 2003/09/18  04:54:16
58840         Log: Patch from Enache Adrian for the new tricks of gcc 3.4
58841              for "is this symbol defined" scanning of Configure.
58842      Branch: perl
58843            ! Configure
58844 ____________________________________________________________________________
58845 [ 21266] By: jhi                                   on 2003/09/18  04:29:55
58846         Log: Make it possible to override the mistrustnm hint in Solaris.
58847      Branch: perl
58848            ! hints/solaris_2.sh
58849 ____________________________________________________________________________
58850 [ 21264] By: jhi                                   on 2003/09/17  21:01:36
58851         Log: A potential fix for non-empty LD in Unix.
58852      Branch: perl
58853            ! lib/ExtUtils/t/MM_Unix.t
58854 ____________________________________________________________________________
58855 [ 21263] By: jhi                                   on 2003/09/17  14:09:50
58856         Log: Subject: RE: MM in maint@21251 breaks mp2
58857              From: "Orton, Yves" <yves.orton@de.mci.com>
58858              Message-ID: <71B318898201D311845C0008C75DAD1C089611FE@defra1ex2>
58859              Date: Wed, 17 Sep 2003 15:47:35 +0100
58860      Branch: perl
58861            ! lib/ExtUtils/MM_Unix.pm lib/ExtUtils/MM_Win32.pm
58862            ! lib/ExtUtils/t/MM_Unix.t lib/ExtUtils/t/MM_Win32.t
58863 ____________________________________________________________________________
58864 [ 21261] By: jhi                                   on 2003/09/17  09:33:39
58865         Log: The AIX C product potentially consists of several packages,
58866              the main package being (hopefully) the first one.
58867      Branch: perl
58868            ! hints/aix.sh
58869 ____________________________________________________________________________
58870 [ 21260] By: jhi                                   on 2003/09/17  07:52:03
58871         Log: Fix Solaris ccversion not having the cc version.
58872      Branch: perl
58873            ! hints/solaris_2.sh
58874 ____________________________________________________________________________
58875 [ 21259] By: jhi                                   on 2003/09/17  06:02:19
58876         Log: Subject: [PATCH 5.8.1 @21211] OS/2 APIs again
58877              From: Ilya Zakharevich <nospam-abuse@ilyaz.org>
58878              Date: Tue, 16 Sep 2003 23:49:42 -0700
58879              Message-ID: <20030917064941.GA20444@math.berkeley.edu>
58880      Branch: perl
58881            ! os2/os2ish.h
58882 ____________________________________________________________________________
58883 [ 21258] By: jhi                                   on 2003/09/17  06:00:48
58884         Log: Subject: [PATCH 5.8.1 @21211] os2_process.t
58885              From: Ilya Zakharevich <nospam-abuse@ilyaz.org>
58886              Date: Tue, 16 Sep 2003 23:21:48 -0700
58887              Message-ID: <20030917062147.GA20400@math.berkeley.edu>
58888      Branch: perl
58889            ! os2/OS2/Process/t/os2_process.t
58890 ____________________________________________________________________________
58891 [ 21257] By: jhi                                   on 2003/09/17  03:53:46
58892         Log: Subject: [PATCH 5.8.1 @21211] magic.t
58893              From: Ilya Zakharevich <nospam-abuse@ilyaz.org>
58894              Date: Tue, 16 Sep 2003 19:17:57 -0700
58895              Message-ID: <20030917021757.GA20261@math.berkeley.edu>
58896      Branch: perl
58897            ! t/op/magic.t
58898 ____________________________________________________________________________
58899 [ 21253] By: jhi                                   on 2003/09/16  19:48:08
58900         Log: Subject: [DOC PATCH] Re: [perl #23779] $? and negative exit codes
58901              From: Dave Mitchell <davem@fdgroup.com>
58902              Date: Tue, 16 Sep 2003 21:56:20 +0100
58903              Message-ID: <20030916205620.GB1246@fdgroup.com>
58904      Branch: perl
58905            ! pod/perlfunc.pod
58906 ____________________________________________________________________________
58907 [ 21249] By: jhi                                   on 2003/09/16  19:10:58
58908         Log: More suggested patches for NCR MP-RAS from Andy Dougherty.
58909      Branch: perl
58910            + ext/Time/HiRes/hints/svr4.pl
58911            ! MANIFEST ext/Sys/Syslog/t/syslog.t t/op/pack.t
58912 ____________________________________________________________________________
58913 [ 21247] By: jhi                                   on 2003/09/16  18:57:34
58914         Log: Subject: Re: [perl #23791] Many errors in build under NCR MP-RAS
58915              From: Andy Dougherty <doughera@lafayette.edu>
58916              Date: Tue, 16 Sep 2003 13:47:55 -0400 (EDT)
58917              Message-ID: <Pine.SOL.4.53.0309161345020.13081@maxwell.phys.lafayette.edu>
58918      Branch: perl
58919            ! ext/POSIX/hints/svr4.pl hints/svr4.sh
58920 ____________________________________________________________________________
58921 [ 21245] By: jhi                                   on 2003/09/16  18:47:52
58922         Log: Subject: Re: [PATCH 5.8.1 @19053] Getopt::Std
58923              From: Ilya Zakharevich <ilya@Math.Berkeley.EDU>
58924              Date: Wed, 4 Jun 2003 00:45:23 -0700
58925              Message-ID: <20030604074523.GA7148@math.berkeley.edu>
58926      Branch: perl
58927            ! lib/Getopt/Std.pm
58928 ____________________________________________________________________________
58929 [ 21243] By: jhi                                   on 2003/09/16  12:18:03
58930         Log: Give a concrete example of the still existing Unicode slowness.
58931      Branch: perl
58932            ! pod/perlunicode.pod
58933 ____________________________________________________________________________
58934 [ 21241] By: jhi                                   on 2003/09/16  06:38:45
58935         Log: Make the VERSION of File::Spec be 0.86, otherwise File::Temp's
58936              use File::Spec 0.8 is unhappy.
58937      Branch: perl
58938            ! lib/File/Spec.pm
58939 ____________________________________________________________________________
58940 [ 21240] By: jhi                                   on 2003/09/16  06:34:35
58941         Log: The test is not needed, says Schwern.
58942      Branch: perl
58943            - lib/base/t/fields-560.t
58944            ! MANIFEST
58945 ____________________________________________________________________________
58946 [ 21239] By: jhi                                   on 2003/09/16  05:04:09
58947         Log: Upgrade to File::Spec 0.85_03.
58948      Branch: perl
58949            + lib/File/Spec/t/crossplatform.t
58950            ! MANIFEST lib/File/Spec.pm lib/File/Spec/Mac.pm
58951            ! lib/File/Spec/OS2.pm lib/File/Spec/Unix.pm
58952            ! lib/File/Spec/VMS.pm lib/File/Spec/Win32.pm
58953            ! lib/File/Spec/t/Spec.t
58954 ____________________________________________________________________________
58955 [ 21238] By: jhi                                   on 2003/09/16  04:57:08
58956         Log: Upgrade to MakeMaker 6.17.
58957      Branch: perl
58958            ! lib/ExtUtils/Changes lib/ExtUtils/Install.pm
58959            ! lib/ExtUtils/MANIFEST.SKIP lib/ExtUtils/META.yml
58960            ! lib/ExtUtils/MM_Any.pm lib/ExtUtils/MM_Unix.pm
58961            ! lib/ExtUtils/MM_VMS.pm lib/ExtUtils/MM_Win32.pm
58962            ! lib/ExtUtils/MakeMaker.pm lib/ExtUtils/Manifest.pm
58963            ! lib/ExtUtils/README lib/ExtUtils/t/MM_Win32.t
58964            ! lib/ExtUtils/t/Manifest.t lib/ExtUtils/t/basic.t
58965            ! t/lib/MakeMaker/Test/Utils.pm
58966 ____________________________________________________________________________
58967 [ 21235] By: jhi                                   on 2003/09/16  04:35:34
58968         Log: Upgrade to base 2.03.
58969              (Rename the fields-5.6.0.t to have less d.o.t.s.)
58970      Branch: perl
58971            + lib/base/t/base.t lib/base/t/fields-560.t
58972            + lib/base/t/fields-base.t lib/base/t/fields.t
58973            - lib/fields-base.t lib/fields.t
58974            ! MANIFEST lib/base.pm lib/fields.pm
58975 ____________________________________________________________________________
58976 [ 21234] By: jhi                                   on 2003/09/15  19:17:03
58977         Log: Subject: Re: perl@21233 looks ok on VMS 7.3-1
58978              From: PPrymmer@factset.com
58979              Date: Mon, 15 Sep 2003 15:28:52 -0400
58980              Message-ID: <OF6F1E6CF4.9206F415-ON85256DA2.006A58F1-85256DA2.006B0330@factset.com>
58981      Branch: perl
58982            ! lib/Memoize/t/tie_sdbm.t
58983 ____________________________________________________________________________
58984 [ 21230] By: jhi                                   on 2003/09/14  17:46:52
58985         Log: Check the context of for/grep/map.
58986      Branch: perl
58987            ! t/op/grep.t
58988 ____________________________________________________________________________
58989 [ 21228] By: jhi                                   on 2003/09/14  13:40:23
58990         Log: For-non-perlio places we need STDOUT back.
58991      Branch: perl
58992            ! t/io/dup.t
58993 ____________________________________________________________________________
58994 [ 21227] By: jhi                                   on 2003/09/14  09:44:49
58995         Log: Also IRIX wants setlogsock('stream').
58996      Branch: perl
58997            ! ext/Sys/Syslog/Syslog.pm ext/Sys/Syslog/t/syslog.t
58998 ____________________________________________________________________________
58999 [ 21224] By: jhi                                   on 2003/09/14  07:44:26
59000         Log: More portable reading.
59001      Branch: perl
59002            ! t/io/dup.t
59003 ____________________________________________________________________________
59004 [ 21222] By: jhi                                   on 2003/09/14  07:35:28
59005         Log: More dup testing.
59006      Branch: perl
59007            ! t/io/dup.t
59008 ____________________________________________________________________________
59009 [ 21220] By: jhi                                   on 2003/09/14  06:54:05
59010         Log: Use $Config{_exe}.
59011      Branch: perl
59012            ! t/run/switches.t
59013 ____________________________________________________________________________
59014 [ 21219] By: jhi                                   on 2003/09/14  06:46:26
59015         Log: Subject: Re: [PATCH 5.8.1 @20218] OS/2 API
59016              From: Ilya Zakharevich <nospam-abuse@ilyaz.org>
59017              Date: Sat, 13 Sep 2003 20:20:30 -0700
59018              Message-ID: <20030914032030.GA17822@math.berkeley.edu>
59019      Branch: perl
59020            ! os2/os2.c t/run/switches.t
59021 ____________________________________________________________________________
59022 [ 21218] By: jhi                                   on 2003/09/14  06:45:13
59023         Log: Subject: Re: [PATCH 5.8.1 @20218] OS/2 API
59024              From: Michael G Schwern <schwern@pobox.com>
59025              Date: Thu, 11 Sep 2003 15:07:10 -0700
59026              Message-ID: <20030911220710.GO18786@windhund.schwern.org>
59027
59028              (in OS/2 if a file has been chmod 0400'ed, it cannot be deleted)
59029      Branch: perl
59030            ! lib/ExtUtils/t/Manifest.t
59031 ____________________________________________________________________________
59032 [ 21217] By: jhi                                   on 2003/09/14  06:42:12
59033         Log: Subject: [PATCH] PerlIO_tmpfile clean-up for VMS
59034              From: "Craig A. Berry" <craigberry@mac.com>
59035              Date: Sun, 14 Sep 2003 00:23:56 -0500
59036              Message-ID: <3F63FB6C.5040502@mac.com>
59037      Branch: perl
59038            ! perlio.c
59039 ____________________________________________________________________________
59040 [ 21214] By: jhi                                   on 2003/09/13  18:33:41
59041         Log: parse_version doesn't always succeed.
59042      Branch: perl
59043            ! Porting/cmpVERSION.pl
59044 ____________________________________________________________________________
59045 [ 21213] By: jhi                                   on 2003/09/13  18:31:41
59046         Log: pod changes, so change $VERSION.
59047      Branch: perl
59048            ! lib/Fatal.pm
59049 ____________________________________________________________________________
59050 [ 21210] By: jhi                                   on 2003/09/13  15:24:38
59051         Log: Subject: Re: unicode regex problem
59052              From: hv@crypt.org
59053              Date: Sat, 13 Sep 2003 15:21:34 +0100
59054              Message-Id: <200309131421.h8DELYx25894@zen.crypt.org>
59055      Branch: perl
59056            ! regcomp.c t/op/pat.t
59057 ____________________________________________________________________________
59058 [ 21209] By: jhi                                   on 2003/09/13  15:22:38
59059         Log: More PerlIO warnings changes.
59060      Branch: perl
59061            ! ext/PerlIO/t/fail.t t/lib/warnings/perlio
59062 ____________________________________________________________________________
59063 [ 21208] By: jhi                                   on 2003/09/13  11:15:40
59064         Log: The "perlio: " prefix looks a little odd
59065              in the few warning/error messages, since
59066              no other 'subsystems' have prefixes.
59067      Branch: perl
59068            ! perlio.c pod/perldiag.pod t/io/open.t
59069 ____________________________________________________________________________
59070 [ 21207] By: jhi                                   on 2003/09/13  10:37:30
59071         Log: Layer names were recognized by their prefixes
59072              (e.g. open(F, ":u", "file") worked...)
59073      Branch: perl
59074            ! perlio.c t/io/open.t
59075 ____________________________________________________________________________
59076 [ 21206] By: jhi                                   on 2003/09/13  10:10:46
59077         Log: Apparently at some point doing 3-arg open with
59078              illegal mode like ">>>" had stopped croaking.
59079      Branch: perl
59080            ! doio.c t/io/open.t
59081 ____________________________________________________________________________
59082 [ 21205] By: jhi                                   on 2003/09/13  08:42:10
59083         Log: Minuscule code cleanup.
59084      Branch: perl
59085            ! doio.c
59086 ____________________________________________________________________________
59087 [ 21204] By: jhi                                   on 2003/09/13  06:47:23
59088         Log: Subject: [perl #23788] int of a fraction errors
59089              From: "Boyd, Brooks D" (via RT) <perlbug-followup@perl.org>
59090              Date: 11 Sep 2003 22:38:19 -0000
59091              Message-ID: <rt-23788-64511.8.7546744242259@rt.perl.org>
59092
59093              Add a separate faq entry for int().  (Yes, a bit redundant
59094              with the existing "why are my numbers broken" entry.)
59095      Branch: perl
59096            ! pod/perlfaq4.pod
59097 ____________________________________________________________________________
59098 [ 21203] By: jhi                                   on 2003/09/13  06:34:03
59099         Log: Subject: Unknown discipline ':utf8' w/ maint perl w/o perlio
59100              From: Stas Bekman <stas@stason.org>
59101              Date: Fri, 12 Sep 2003 13:44:11 -0700
59102              Message-ID: <3F62301B.3080604@stason.org>
59103
59104              s/discipline/IO layer/, instead of "unknown" say "unavailable",
59105              and have the fuller explanation in perldiag.
59106      Branch: perl
59107            ! doio.c pod/perldiag.pod
59108 ____________________________________________________________________________
59109 [ 21202] By: jhi                                   on 2003/09/13  06:07:27
59110         Log: Make the new glob tests pass (well, skip) even with miniperl.
59111      Branch: perl
59112            ! t/run/fresh_perl.t
59113 ____________________________________________________________________________
59114 [ 21201] By: rgs                                   on 2003/09/12  21:41:04
59115         Log: Stringify the $VERSION of DynaLoader so it's never dependent
59116              on localized float-to-string conversions.
59117      Branch: perl
59118            ! ext/DynaLoader/DynaLoader_pm.PL
59119 ____________________________________________________________________________
59120 [ 21198] By: jhi                                   on 2003/09/12  17:59:25
59121         Log: It's UTF-8, not UTF8.  (Note: not s/UTF-8/UTF8/,
59122              since that would break a lot of code.)  Also few
59123              stray UTF16s, UTF32s, and "encoded in Unicode".
59124      Branch: perl
59125            ! doop.c hv.h pod/perl570delta.pod pod/perl58delta.pod
59126            ! pod/perlapi.pod pod/perlfunc.pod pod/perlguts.pod
59127            ! pod/perlhack.pod pod/perlpodspec.pod pod/perltoc.pod
59128            ! pod/perltodo.pod pod/perlunicode.pod pod/perluniintro.pod
59129            ! pp_hot.c pp_sys.c sv.c sv.h utf8.c utf8.h utfebcdic.h
59130 ____________________________________________________________________________
59131 [ 21197] By: jhi                                   on 2003/09/12  17:24:17
59132         Log: The buildtoc now has options.
59133      Branch: perl
59134            ! pod/Makefile.SH
59135 ____________________________________________________________________________
59136 [ 21196] By: jhi                                   on 2003/09/12  14:33:16
59137         Log: Some more tweaks on open ...&=.
59138      Branch: perl
59139            ! pod/perlfunc.pod
59140 ____________________________________________________________________________
59141 [ 21194] By: jhi                                   on 2003/09/12  11:36:14
59142         Log: Slightly more documentation for open ...&=.
59143      Branch: perl
59144            ! pod/perlfunc.pod
59145 ____________________________________________________________________________
59146 [ 21193] By: jhi                                   on 2003/09/12  03:21:53
59147         Log: Document the new strict strict in strict.
59148      Branch: perl
59149            ! lib/strict.pm
59150 ____________________________________________________________________________
59151 [ 21191] By: jhi                                   on 2003/09/12  03:03:17
59152         Log: More comments for the FreeBSD threads hints.
59153      Branch: perl
59154            ! hints/freebsd.sh
59155 ____________________________________________________________________________
59156 [ 21188] By: jhi                                   on 2003/09/11  20:23:55
59157         Log: More refactoring of the FreeBSD threads hints.
59158              Basically, for fresh enough 5.x the -pthread is dropped,
59159              otherwise keep it, and no known FreeBSD release has
59160              a functional gethostbyaddr_r.
59161      Branch: perl
59162            ! hints/freebsd.sh
59163 ____________________________________________________________________________
59164 [ 21187] By: jhi                                   on 2003/09/11  20:12:00
59165         Log: Subject: [PATCH 5.8.1 @20218] OS/2 API
59166              From: Ilya Zakharevich <nospam-abuse@ilyaz.org>
59167              Date: Thu, 11 Sep 2003 09:15:04 -0700
59168              Message-ID: <20030911161504.GA16113@math.berkeley.edu>
59169      Branch: perl
59170            ! os2/OS2/Process/MANIFEST os2/OS2/Process/Process.pm
59171            ! os2/OS2/Process/Process.xs
59172 ____________________________________________________________________________
59173 [ 21186] By: jhi                                   on 2003/09/11  20:10:32
59174         Log: Subject: [PATCH maint@21148] Security: suidperl path disclosure revisited
59175              From: "Brendan O'Dea" <bod@debian.org>
59176              Date: Fri, 12 Sep 2003 00:12:51 +1000
59177              Message-ID: <20030911141251.GA26907@londo.c47.org>
59178      Branch: perl
59179            ! perl.c
59180 ____________________________________________________________________________
59181 [ 21181] By: jhi                                   on 2003/09/11  08:25:13
59182         Log: The change of not needing -pthread in FreeBSD 5.x
59183              is very recent (Sep 3) (from Anton Berezin).
59184      Branch: perl
59185            ! hints/freebsd.sh
59186 ____________________________________________________________________________
59187 [ 21179] By: jhi                                   on 2003/09/11  06:13:12
59188         Log: Upgrade to Pod::Perldoc 3.10.
59189              (Yes, the doughera address change is wrong, but hardly worth 3.11.)
59190      Branch: perl
59191            ! lib/Pod/Perldoc.pm
59192 ____________________________________________________________________________
59193 [ 21176] By: jhi                                   on 2003/09/11  05:22:27
59194         Log: Upgrade to base 2.02.
59195      Branch: perl
59196            + lib/fields-base.t
59197            ! MANIFEST lib/base.pm lib/fields.t
59198 ____________________________________________________________________________
59199 [ 21174] By: jhi                                   on 2003/09/11  04:45:56
59200         Log: Replace #21158 with a better patch from Hugo
59201              (for [perl #23769]).
59202      Branch: perl
59203            ! regcomp.c regexec.c t/op/pat.t
59204 ____________________________________________________________________________
59205 [ 21173] By: jhi                                   on 2003/09/11  03:08:04
59206         Log: Subject: [PATCH][TESTS] dumpvar.pl
59207              From: Joe McMahon <mcmahon@metalab.unc.edu>
59208              Date: Thu, 11 Sep 2003 00:10:29 -0400 (EDT)
59209              Message-ID: <Pine.LNX.4.44.0309102337150.2043-300000@tribal.metalab.unc.edu>
59210      Branch: perl
59211            ! lib/dumpvar.pl lib/dumpvar.t
59212 ____________________________________________________________________________
59213 [ 21172] By: jhi                                   on 2003/09/11  03:03:52
59214         Log: Enache still wants -pthread gone for FreeBSD 5.x
59215              since it doesn't work with the latest -current.
59216      Branch: perl
59217            ! hints/freebsd.sh
59218 ____________________________________________________________________________
59219 [ 21171] By: jhi                                   on 2003/09/11  02:58:29
59220         Log: Subject: [patch] more fullpath TAGS patches (emacs/cperl-mode.el + emacs/ptags)
59221              From: Stas Bekman <stas@stason.org>
59222              Date: Thu, 28 Aug 2003 16:10:48 -0700
59223              Message-ID: <3F4E8BF8.1090800@stason.org>
59224      Branch: perl
59225            ! emacs/cperl-mode.el emacs/ptags
59226 ____________________________________________________________________________
59227 [ 21170] By: jhi                                   on 2003/09/11  02:56:50
59228         Log: Retract #21149, sez Schwern.
59229      Branch: perl
59230            ! lib/Test/More.pm
59231 ____________________________________________________________________________
59232 [ 21169] By: jhi                                   on 2003/09/11  02:55:49
59233         Log: Retract #21168 based on advice from Anton Berezin (added).
59234      Branch: perl
59235            ! hints/freebsd.sh
59236 ____________________________________________________________________________
59237 [ 21168] By: rgs                                   on 2003/09/10  21:43:40
59238         Log: Subject: nit to hints/freebsd.sh
59239              From: Enache Adrian <enache@rdslink.ro>
59240              Date: Wed, 10 Sep 2003 19:50:59 +0300
59241              Message-ID: <20030910165059.GB1321@ratsnest.hole>
59242      Branch: perl
59243            ! hints/freebsd.sh
59244 ____________________________________________________________________________
59245 [ 21167] By: rgs                                   on 2003/09/10  21:18:59
59246         Log: Subject: Re: [perl #15395] lexical warnings and inheritance
59247              From: Anno Siegel <Siegel@zrz.TU-Berlin.DE>
59248              Date: Sun, 31 Aug 2003 22:08:19 GMT
59249              Message-Id: <200308312208.WAA25312@lublin.zrz.TU-Berlin.DE>
59250
59251              The test has been moved into warnings.pm's test suite. Note
59252              that this patch fixed as well the behaviour of warnings::enabled
59253              regarding lexical scoping and different files; hence the expected
59254              results in a few tests in /t/lib/warnings/9enabled has been
59255              reverted.
59256      Branch: perl
59257            ! lib/warnings.pm t/lib/warnings/9enabled warnings.pl
59258 ____________________________________________________________________________
59259 [ 21166] By: rgs                                   on 2003/09/10  19:36:30
59260         Log: Remove the warning in perlfaq about using map in void context :
59261              From: abigail@abigail.nl (Abigail)
59262              Subject: [PATCH perlfaq6] map in a void context.
59263              Date: Tue, 9 Sep 2003 10:31:58 +0200
59264              Message-ID: <20030909083158.GA24125@abigail.nl>
59265      Branch: perl
59266            ! pod/perlfaq6.pod
59267 ____________________________________________________________________________
59268 [ 21165] By: jhi                                   on 2003/09/10  16:48:52
59269         Log: Subject: [PATCH] AUTHORS
59270              From: enache@rdslink.ro (Enache Adrian)
59271              Date: Tue, 9 Sep 2003 19:34:05 +0300
59272              Message-ID: <20030909163405.GB1398@ratsnest.hole>
59273      Branch: perl
59274            ! AUTHORS
59275 ____________________________________________________________________________
59276 [ 21164] By: jhi                                   on 2003/09/10  15:38:51
59277         Log: Regen perlapi.
59278      Branch: perl
59279            ! pod/perlapi.pod
59280 ____________________________________________________________________________
59281 [ 21163] By: merijn                                on 2003/09/10  15:31:27
59282         Log: Subject: [perl #23778] hints/aix.sh
59283              Date: 10 Sep 2003 16:30:32 -0000
59284              From: "Gary L. Armstrong" (via RT) <perlbug-followup@perl.org>
59285              Message-ID: <rt-23778-64471.11.7773626323738@rt.perl.org>
59286      Branch: perl
59287            ! hints/aix.sh
59288 ____________________________________________________________________________
59289 [ 21162] By: jhi                                   on 2003/09/10  15:21:43
59290         Log: blead version of #21161.
59291      Branch: perl
59292            ! pod/perlvar.pod
59293 ____________________________________________________________________________
59294 [ 21160] By: jhi                                   on 2003/09/10  15:11:59
59295         Log: Subject: Re: Decreasing VMS tests in File::Spec::VMS?
59296              From: PPrymmer@factset.com
59297              Message-ID: <OF103BAFC0.72D92F9B-ON85256D98.00742293-85256D98.0077A3F5@factset.com>
59298              Date: Fri, 5 Sep 2003 17:46:48 -0400
59299      Branch: perl
59300            ! lib/File/Spec/t/Spec.t
59301 ____________________________________________________________________________
59302 [ 21159] By: jhi                                   on 2003/09/10  15:10:06
59303         Log: Subject: [PATCH 5.8.1] Unwanted "redefined" warnings in h2ph
59304              From: Kurt Starsinic <kstar@cpan.org>
59305              Date: Tue, 9 Sep 2003 23:16:00 -0400
59306              Message-ID: <20030910031600.GA30554@verizon.net>
59307
59308              Subject: Re: [PATCH 5.8.1] Unwanted "redefined" warnings in h2ph
59309              From: "Brendan O'Dea" <bod@debian.org>
59310              Date: Wed, 10 Sep 2003 22:03:15 +1000
59311              Message-ID: <20030910120315.GA1372@londo.c47.org>
59312      Branch: perl
59313            ! t/lib/h2ph.pht utils/h2ph.PL
59314 ____________________________________________________________________________
59315 [ 21158] By: jhi                                   on 2003/09/10  09:31:24
59316         Log: Unicode regex broken on simple example
59317              regrepeat() did not work right for UTF-8(ed Latin-1)
59318              in the EXACT case, which made the \x{a0}+ fail.
59319      Branch: perl
59320            ! regexec.c t/op/pat.t
59321 ____________________________________________________________________________
59322 [ 21157] By: jhi                                   on 2003/09/10  08:15:54
59323         Log: Linenumbers for utf8 warnings were wrong, test also rcatline.
59324      Branch: perl
59325            ! pp_hot.c t/io/utf8.t
59326 ____________________________________________________________________________
59327 [ 21156] By: jhi                                   on 2003/09/10  08:05:13
59328         Log: Detypo and explain better.
59329      Branch: perl
59330            ! pod/perldiag.pod
59331 ____________________________________________________________________________
59332 [ 21155] By: jhi                                   on 2003/09/10  08:02:55
59333         Log: If doing rcatline no point rescanning each time
59334              the beginning of the SV for utf8 validity.
59335      Branch: perl
59336            ! pp_hot.c
59337 ____________________________________________________________________________
59338 [ 21154] By: jhi                                   on 2003/09/10  07:16:52
59339         Log: No utf8 warnings without use warnings.
59340      Branch: perl
59341            ! t/io/utf8.t
59342 ____________________________________________________________________________
59343 [ 21153] By: jhi                                   on 2003/09/10  06:57:16
59344         Log: Reading a latin1 file with open(... "<:utf8") will freeze
59345              is no more valid, the script doesn't freeze, but I noticed
59346              that neither does the <FILE> complain about bad UTF-8 as it
59347              should and as it does with :encoding(utf8).
59348      Branch: perl
59349            ! pp_hot.c t/io/utf8.t
59350 ____________________________________________________________________________
59351 [ 21152] By: jhi                                   on 2003/09/10  06:54:02
59352         Log: A new UTF-8 API, Perl_is_utf8_string_loc(), a variant
59353              of Perl_utf8_is_string().
59354      Branch: perl
59355            ! embed.fnc embed.h global.sym proto.h utf8.c
59356 ____________________________________________________________________________
59357 [ 21151] By: jhi                                   on 2003/09/10  06:16:28
59358         Log: Document a PerlIO/Encode warning.
59359      Branch: perl
59360            ! pod/perldiag.pod
59361 ____________________________________________________________________________
59362 [ 21149] By: jhi                                   on 2003/09/09  17:22:42
59363         Log: Subject: Re: maint @ 21116
59364              From: Fergal Daly <fergal@esatclear.ie>
59365              Date: Tue, 9 Sep 2003 18:26:20 +0100
59366              Message-Id: <200309091826.20630.fergal@esatclear.ie>
59367
59368              (added warning)
59369      Branch: perl
59370            ! lib/Test/More.pm
59371 ____________________________________________________________________________
59372 [ 21146] By: jhi                                   on 2003/09/09  15:36:20
59373         Log: Adjust the test count.
59374      Branch: perl
59375            ! lib/Test/Simple/t/is_deeply.t
59376 ____________________________________________________________________________
59377 [ 21144] By: jhi                                   on 2003/09/09  15:03:58
59378         Log: AUTHORS update from Dave Mitchell.
59379      Branch: perl
59380            ! AUTHORS
59381 ____________________________________________________________________________
59382 [ 21143] By: jhi                                   on 2003/09/09  15:02:18
59383         Log: Retract #20548 and #20465.
59384      Branch: perl
59385            ! lib/Test/More.pm lib/Test/Simple/t/More.t
59386            ! lib/Test/Simple/t/is_deeply.t
59387 ____________________________________________________________________________
59388 [ 21141] By: jhi                                   on 2003/09/09  14:27:10
59389         Log: Subject: Re: maint @ 21116
59390              From: Enache Adrian <enache@rdslink.ro>
59391              Date: Tue, 9 Sep 2003 16:59:44 +0300
59392              Message-ID: <20030909135944.GA1666@ratsnest.hole>
59393      Branch: perl
59394            ! makedef.pl
59395 ____________________________________________________________________________
59396 [ 21140] By: jhi                                   on 2003/09/09  14:25:51
59397         Log: Retract #21132.
59398      Branch: perl
59399            ! makedef.pl perl.h
59400 ____________________________________________________________________________
59401 [ 21139] By: jhi                                   on 2003/09/09  11:55:33
59402         Log: Warn more about disclosing the hash seed, from Scott A. Crosby.
59403      Branch: perl
59404            ! lib/Hash/Util.pm pod/perlrun.pod
59405 ____________________________________________________________________________
59406 [ 21137] By: jhi                                   on 2003/09/09  09:50:13
59407         Log: Subject: =encoding in perlpod/perlpodspec
59408              From: sburke@cpan.org (Sean M. Burke)
59409              Date: Sun, 07 Sep 2003 03:08:28 -0800
59410              Message-ID: <5.2.1.1.1.20030907030717.00a6aaa0@mailstore.pobox.com>
59411      Branch: perl
59412            ! pod/perlpod.pod pod/perlpodspec.pod
59413 ____________________________________________________________________________
59414 [ 21136] By: jhi                                   on 2003/09/09  09:46:01
59415         Log: One more chance... Elizabeth's change #21107 plus
59416              Subject: Re: [PATCH] warnings.pl: each thread 10K smaller
59417              From: Rafael Garcia-Suarez <rgarciasuarez@free.fr>
59418              Date: Tue, 9 Sep 2003 01:44:24 +0200
59419              Message-Id: <20030909014424.7ef5e0cd.rgarciasuarez@free.fr>
59420      Branch: perl
59421            ! lib/warnings.pm toke.c warnings.pl
59422 ____________________________________________________________________________
59423 [ 21135] By: jhi                                   on 2003/09/09  09:35:48
59424         Log: One more test count tweak.
59425      Branch: perl
59426            ! t/op/grep.t
59427 ____________________________________________________________________________
59428 [ 21132] By: jhi                                   on 2003/09/09  07:57:20
59429         Log: Subject: Re: maint @ 21116
59430              From: Steve Hay <steve.hay@uk.radan.com>
59431              Date: Tue, 09 Sep 2003 09:49:07 +0100
59432              Message-ID: <3F5D9403.3040004@uk.radan.com>
59433      Branch: perl
59434            ! makedef.pl perl.h
59435 ____________________________________________________________________________
59436 [ 21131] By: jhi                                   on 2003/09/09  07:54:52
59437         Log: Subject: Re: [PATCH] honoring void context for map(), return from sub end test
59438              From: david nicol <whatever@davidnicol.com>
59439              Date: 08 Sep 2003 23:39:32 -0500
59440              Message-Id: <1063082372.1375.126.camel@plaza.davidnicol.com>
59441
59442              (a testcase)
59443      Branch: perl
59444            ! t/op/grep.t
59445 ____________________________________________________________________________
59446 [ 21128] By: jhi                                   on 2003/09/09  07:08:15
59447         Log: Ooops, perlio into scalars was already history for this test...
59448      Branch: perl
59449            ! lib/dumpvar.t
59450 ____________________________________________________________________________
59451 [ 21127] By: jhi                                   on 2003/09/09  07:06:26
59452         Log: Cannot do perlio into scalars without perlio.
59453      Branch: perl
59454            ! lib/dumpvar.t
59455 ____________________________________________________________________________
59456 [ 21126] By: jhi                                   on 2003/09/09  07:04:53
59457         Log: I claim that the debugger is untestable until proven otherwise.
59458      Branch: perl
59459            - lib/perl5db/de0.t
59460            ! MANIFEST
59461 ____________________________________________________________________________
59462 [ 21124] By: jhi                                   on 2003/09/09  06:59:52
59463         Log: In trying to save space, the warnings.pl change (#21107)
59464              pulled in attributes.pm... and the change didn't seem to
59465              be that well tested with different configurations.
59466              Retract #21119, #21117, #21107.
59467      Branch: perl
59468            ! ext/B/t/stash.t lib/warnings.pm warnings.pl
59469 ____________________________________________________________________________
59470 [ 21122] By: jhi                                   on 2003/09/09  06:28:31
59471         Log: Really do #21121.
59472      Branch: perl
59473            ! MANIFEST
59474 ____________________________________________________________________________
59475 [ 21121] By: jhi                                   on 2003/09/09  05:56:52
59476         Log: There's no particular reason to have the dumpvar.t
59477              in lib/perl5db/.
59478      Branch: perl
59479            + lib/dumpvar.t
59480            - lib/perl5db/dumpvar.t
59481            ! MANIFEST
59482 ____________________________________________________________________________
59483 [ 21119] By: jhi                                   on 2003/09/09  05:46:02
59484         Log: strict stash seems to have gone, too.
59485      Branch: perl
59486            ! ext/B/t/stash.t
59487 ____________________________________________________________________________
59488 [ 21117] By: rgs                                   on 2003/09/08  22:26:36
59489         Log: Loading warnings.pm now loads attributes.pm that loads strict.pm.
59490              (due to #21107 apparently.) Adjust this test accordingly.
59491      Branch: perl
59492            ! ext/B/t/stash.t
59493 ____________________________________________________________________________
59494 [ 21113] By: jhi                                   on 2003/09/08  21:10:53
59495         Log: Subject: [PATCH] silence 1 compiler warning
59496              From: Nicholas Clark <nick@ccl4.org>
59497              Date: Mon, 8 Sep 2003 23:04:45 +0100
59498              Message-ID: <20030908230445.E30881@plum.flirble.org>
59499      Branch: perl
59500            ! universal.c
59501 ____________________________________________________________________________
59502 [ 21112] By: jhi                                   on 2003/09/08  21:09:34
59503         Log: Retract #21096, mostly: I had misexplained the situation
59504              to Scott A. Crosby.  Seeing the seed value while not good
59505              for the ultimate paranoia viewpoint is not that bad, as long
59506              as the users are fully aware of the dangers of disclosing
59507              the hash seed.     So hash_seed() is okay.
59508
59509              Being able to see the hash values (as in Java) would
59510              be another option, but dubious: it's not that per-key
59511              hash values themselves are bad to allow scripts to see,
59512              but rather that hash values are just as sensitive (from
59513              the DoSing viewpoint) as the hash seed itself (and there
59514              usually more hash values than the one hash seed....)
59515      Branch: perl
59516            ! lib/Hash/Util.pm lib/Hash/Util.t pod/perlrun.pod universal.c
59517 ____________________________________________________________________________
59518 [ 21110] By: jhi                                   on 2003/09/08  20:59:04
59519         Log: Urk.  unique, not shared.
59520      Branch: perl
59521            ! configpm
59522 ____________________________________________________________________________
59523 [ 21109] By: jhi                                   on 2003/09/08  20:57:25
59524         Log: Subject: [PATCH] configpm: about 1.5K less per thread
59525              From: Elizabeth Mattijsen <liz@dijkmat.nl>
59526              Date: Mon, 8 Sep 2003 23:58:34 +0200
59527              Message-Id: <p05111b21bb829c68b496@[192.168.56.4]>
59528      Branch: perl
59529            ! configpm
59530 ____________________________________________________________________________
59531 [ 21107] By: jhi                                   on 2003/09/08  20:45:38
59532         Log: Subject: [PATCH] warnings.pl: each thread 10K smaller
59533              From: Elizabeth Mattijsen <liz@dijkmat.nl>
59534              Date: Mon, 8 Sep 2003 22:22:38 +0200
59535              Message-Id: <p05111b16bb827ce551da@[192.168.56.4]>
59536      Branch: perl
59537            ! lib/warnings.pm warnings.pl
59538 ____________________________________________________________________________
59539 [ 21106] By: rgs                                   on 2003/09/08  20:45:03
59540         Log: A version of change #21073 that works.
59541      Branch: perl
59542            ! ext/PerlIO/scalar/scalar.xs ext/PerlIO/t/scalar.t
59543 ____________________________________________________________________________
59544 [ 21105] By: jhi                                   on 2003/09/08  20:44:22
59545         Log: Regen perlapi.
59546      Branch: perl
59547            ! pod/perlapi.pod
59548 ____________________________________________________________________________
59549 [ 21103] By: jhi                                   on 2003/09/08  20:18:56
59550         Log: Radu Greab is my hero (the recent cygwin getpw*->pw_comment
59551              being a bad pointer is apparently a known cygwin bug).     The
59552              cure is to initialize the field.
59553      Branch: perl
59554            ! pp_sys.c
59555 ____________________________________________________________________________
59556 [ 21100] By: jhi                                   on 2003/09/08  19:38:39
59557         Log: Bad export.
59558      Branch: perl
59559            ! lib/Hash/Util.t
59560 ____________________________________________________________________________
59561 [ 21098] By: jhi                                   on 2003/09/08  19:06:09
59562         Log: The IPC::Open3 is just too unreliable for this task.
59563      Branch: perl
59564            ! lib/perl5db/de0.t
59565 ____________________________________________________________________________
59566 [ 21097] By: jhi                                   on 2003/09/08  18:42:43
59567         Log: Try to make the de0.t test more robust.
59568              The test is so flakey (too many external things influencing
59569              the result) that I'm likely to leave it out from the maint.
59570      Branch: perl
59571            ! lib/perl5db/de0.t
59572 ____________________________________________________________________________
59573 [ 21096] By: jhi                                   on 2003/09/08  17:58:19
59574         Log: Scott A. Crosby believes in not disclosing
59575              any more information than necessary: therefore
59576              instead of hash_seed() we have now hashes_random().
59577      Branch: perl
59578            ! lib/Hash/Util.pm lib/Hash/Util.t pod/perlrun.pod universal.c
59579 ____________________________________________________________________________
59580 [ 21095] By: jhi                                   on 2003/09/08  17:36:50
59581         Log: Mac OS X "last resort" recipe.
59582      Branch: perl
59583            ! README.macosx
59584 ____________________________________________________________________________
59585 [ 21094] By: jhi                                   on 2003/09/08  16:50:55
59586         Log: Subject: [patch] AUTHORS
59587              From: Juerd <juerd@cpan.org>
59588              Date: Mon, 8 Sep 2003 08:42:13 +0200
59589              Message-ID: <20030908064213.GC23461@c3.convolution.nl>
59590      Branch: perl
59591            ! AUTHORS
59592 ____________________________________________________________________________
59593 [ 21093] By: jhi                                   on 2003/09/08  15:47:14
59594         Log: Slightly more intelligent paranoia.
59595      Branch: perl
59596            ! pod/perldiag.pod util.c
59597 ____________________________________________________________________________
59598 [ 21090] By: jhi                                   on 2003/09/08  14:07:03
59599         Log: Win32 is playing to hard to get but I do not have
59600              time to chase it, so restore #21072, more or less.
59601              I think testing the debugger in UNIX-like places
59602              is enough, no need to go into painful contortions
59603              trying to "portably" run interactive programs like
59604              the debugger.
59605      Branch: perl
59606            ! lib/perl5db/de0.t
59607 ____________________________________________________________________________
59608 [ 21088] By: jhi                                   on 2003/09/08  12:50:15
59609         Log: 5.8.1 was mistakenly redefining PL_sv_placeholder.
59610      Branch: perl
59611            ! ext/Storable/Storable.xs
59612 ____________________________________________________________________________
59613 [ 21087] By: jhi                                   on 2003/09/08  12:34:37
59614         Log: Add Hash::Util::hash_seed() which answers among
59615              other things the question whether our hashes are
59616              "randomised".  (They always were...)
59617      Branch: perl
59618            ! lib/Hash/Util.pm lib/Hash/Util.t pod/perlrun.pod universal.c
59619 ____________________________________________________________________________
59620 [ 21086] By: jhi                                   on 2003/09/08  12:22:03
59621         Log: XSRETURN_UV was missing.
59622      Branch: perl
59623            ! XSUB.h
59624 ____________________________________________________________________________
59625 [ 21085] By: jhi                                   on 2003/09/08  12:15:23
59626         Log: Superparanoia.
59627      Branch: perl
59628            ! util.c
59629 ____________________________________________________________________________
59630 [ 21084] By: ams                                   on 2003/09/08  11:44:25
59631         Log: Clean up pp_readdir() somewhat.
59632      Branch: perl
59633            ! pp_sys.c
59634 ____________________________________________________________________________
59635 [ 21082] By: jhi                                   on 2003/09/08  11:32:46
59636         Log: The #21073 broke ext/B/t/o.t, retracting the #21073.
59637      Branch: perl
59638            ! ext/PerlIO/scalar/scalar.xs ext/PerlIO/t/scalar.t
59639 ____________________________________________________________________________
59640 [ 21080] By: jhi                                   on 2003/09/08  09:52:40
59641         Log: In Win32 IPC::Open3 + IO::Select does not work that well
59642              so mostly undo the change #21072 and revert back to using
59643              a temp file.
59644      Branch: perl
59645            ! lib/perl5db/de0.t
59646 ____________________________________________________________________________
59647 [ 21078] By: jhi                                   on 2003/09/08  09:10:47
59648         Log: In Win32 the cmd.exe console output doesn't seem to
59649              be catchable using the in-memory I/O + select trick,
59650              so use tie-STDOUT trick instead.
59651      Branch: perl
59652            ! lib/perl5db/dumpvar.t
59653 ____________________________________________________________________________
59654 [ 21077] By: jhi                                   on 2003/09/08  09:03:13
59655         Log: Move Config test.
59656      Branch: perl
59657            ! lib/perl5db/de0.t
59658 ____________________________________________________________________________
59659 [ 21076] By: jhi                                   on 2003/09/08  08:50:27
59660         Log: Let's require fork for this test.
59661      Branch: perl
59662            ! lib/perl5db/de0.t
59663 ____________________________________________________________________________
59664 [ 21074] By: jhi                                   on 2003/09/08  08:09:27
59665         Log: Subject: [PATCH] call_(pv|etc.) for Devel::PPPort
59666              From: Tassilo von Parseval <tassilo.parseval@post.rwth-aachen.de>
59667              Date: Mon, 08 Sep 2003 08:56:09 +0200
59668              Message-id: <20030908065609.GA1260@ethan>
59669      Branch: perl
59670            ! ext/Devel/PPPort/Changes ext/Devel/PPPort/PPPort.pm
59671            ! ext/Devel/PPPort/t/test.t
59672 ____________________________________________________________________________
59673 [ 21073] By: jhi                                   on 2003/09/08  08:07:55
59674         Log: Subject: Re: one nit to fix [PATCH]
59675              From: Rafael Garcia-Suarez <raphel.garcia-suarez@hexaflux.com>
59676              Date: Mon, 8 Sep 2003 10:19:08 +0200
59677              Message-Id: <20030908101908.5571326d.rgarcia@hexaflux.com>
59678      Branch: perl
59679            ! ext/PerlIO/scalar/scalar.xs ext/PerlIO/t/scalar.t
59680 ____________________________________________________________________________
59681 [ 21072] By: jhi                                   on 2003/09/08  08:04:53
59682         Log: Subject: Re: [PATCH] Test skeleton for debugger commands
59683              From: Andreas J Koenig <andreas.koenig@anima.de>
59684              Date: Mon, 08 Sep 2003 10:48:27 +0200
59685              Message-ID: <87llszis2s.fsf@franz.ak.mind.de>
59686      Branch: perl
59687            ! lib/perl5db/de0.t
59688 ____________________________________________________________________________
59689 [ 21071] By: jhi                                   on 2003/09/08  06:46:00
59690         Log: de0.t: use Test::More, add some tests.
59691      Branch: perl
59692            ! lib/perl5db/de0.t
59693 ____________________________________________________________________________
59694 [ 21070] By: jhi                                   on 2003/09/08  06:31:39
59695         Log: More dumpvar testing.
59696      Branch: perl
59697            ! lib/perl5db/dumpvar.t
59698 ____________________________________________________________________________
59699 [ 21069] By: jhi                                   on 2003/09/08  05:34:03
59700         Log: An empty test.
59701      Branch: perl
59702            ! lib/perl5db/dumpvar.t
59703 ____________________________________________________________________________
59704 [ 21068] By: jhi                                   on 2003/09/08  05:21:21
59705         Log: dumpvar.t: use Test::More;
59706      Branch: perl
59707            ! lib/perl5db/dumpvar.t
59708 ____________________________________________________________________________
59709 [ 21067] By: jhi                                   on 2003/09/08  05:11:46
59710         Log: Cleanup PerlIO::scalar documentation a bit.
59711      Branch: perl
59712            ! ext/PerlIO/scalar/scalar.pm
59713 ____________________________________________________________________________
59714 [ 21066] By: jhi                                   on 2003/09/08  04:49:28
59715         Log: The in-memory files require PerlIO::scalar.
59716      Branch: perl
59717            ! lib/perl5db/dumpvar.t
59718 ____________________________________________________________________________
59719 [ 21065] By: rgs                                   on 2003/09/07  21:17:23
59720         Log: Subject: [PATCH] Test skeleton for debugger commands
59721              From: Andreas J Koenig <andreas.koenig@anima.de>
59722              Date: Sun, 07 Sep 2003 18:51:56 +0200
59723              Message-ID: <87fzj8k0cz.fsf@franz.ak.mind.de>
59724              With minor adjustments
59725      Branch: perl
59726            + lib/perl5db/de0.t lib/perl5db/dumpvar.t
59727            ! MANIFEST
59728 ____________________________________________________________________________
59729 [ 21064] By: rgs                                   on 2003/09/07  19:12:05
59730         Log: Upgrade to Unicode::Collate 0.28
59731      Branch: perl
59732            + lib/Unicode/Collate/t/contract.t
59733            ! MANIFEST lib/Unicode/Collate.pm lib/Unicode/Collate/Changes
59734            ! lib/Unicode/Collate/README lib/Unicode/Collate/t/test.t
59735 ____________________________________________________________________________
59736 [ 21063] By: rgs                                   on 2003/09/07  18:25:23
59737         Log: Subject: [PATCH] Re: [perl #23656] Safe reval bleeds local variable values
59738              From: Dave Mitchell <davem@fdgroup.com>
59739              Date: Sun, 7 Sep 2003 19:14:44 +0100
59740              Message-ID: <20030907181444.GA7058@fdgroup.com>
59741      Branch: perl
59742            ! ext/Opcode/Safe.pm
59743 ____________________________________________________________________________
59744 [ 21062] By: rgs                                   on 2003/09/07  12:44:33
59745         Log: Subject: [PATCH] honoring void context for map()
59746              From: Tassilo von Parseval <tassilo.parseval@post.rwth-aachen.de>
59747              Date: Thu, 04 Sep 2003 11:13:41 +0200
59748              Message-id: <20030904091341.GA30655@ethan>
59749      Branch: perl
59750            ! pp_ctl.c
59751 ____________________________________________________________________________
59752 [ 21061] By: jhi                                   on 2003/09/07  07:04:53
59753         Log: Retract #21010.
59754      Branch: perl
59755            ! lib/dumpvar.pl
59756 ____________________________________________________________________________
59757 [ 21060] By: rgs                                   on 2003/09/06  21:30:10
59758         Log: Minor doc style nits in XSLoader.
59759      Branch: perl
59760            ! ext/DynaLoader/XSLoader_pm.PL
59761 ____________________________________________________________________________
59762 [ 21058] By: jhi                                   on 2003/09/06  19:57:46
59763         Log: Vanity patch.
59764      Branch: perl
59765            ! AUTHORS
59766 ____________________________________________________________________________
59767 [ 21057] By: jhi                                   on 2003/09/06  19:56:53
59768         Log: Updated Sharp Zaurus cross-compilation from Redvers Davies.
59769      Branch: perl
59770            ! Cross/Makefile Cross/Makefile.SH.patch Cross/README Cross/TODO
59771            ! Cross/config.sh-arm-linux Cross/generate_config_sh
59772            ! Cross/installperl.patch
59773 ____________________________________________________________________________
59774 [ 21056] By: rgs                                   on 2003/09/06  19:03:41
59775         Log: Email nits in Fatal.pm [perl #23724].
59776      Branch: perl
59777            ! lib/Fatal.pm
59778 ____________________________________________________________________________
59779 [ 21052] By: jhi                                   on 2003/09/05  20:34:15
59780         Log: Musty corners of Syslog.pm.
59781      Branch: perl
59782            ! ext/Sys/Syslog/Syslog.pm
59783 ____________________________________________________________________________
59784 [ 21051] By: ams                                   on 2003/09/05  18:43:46
59785         Log: 1. Work around the bug fixed by #20587 (because it's in 5.8.0).
59786              2. Compensate for PL_sv_placeholder <= 5.8.1.
59787              3. Clean up non-backwards-compatible tests.
59788              4. Prepare for the 2.08 CPAN release.
59789      Branch: perl
59790            ! ext/Storable/ChangeLog ext/Storable/Storable.xs
59791            ! ext/Storable/t/freeze.t ext/Storable/t/malice.t
59792            ! ext/Storable/t/utf8hash.t
59793 ____________________________________________________________________________
59794 [ 21048] By: jhi                                   on 2003/09/05  13:53:23
59795         Log: One more known tie problem.
59796      Branch: perl
59797            ! pod/perltie.pod
59798 ____________________________________________________________________________
59799 [ 21047] By: jhi                                   on 2003/09/05  13:46:35
59800         Log: Subject: [PATCH] threads/shared.pm: saves 4K per thread
59801              Date: Fri, 5 Sep 2003 14:46:00 +0200
59802              Message-Id: <p05111b05bb7e177db044@[192.168.56.4]>
59803              From: Elizabeth Mattijsen <liz@dijkmat.nl>
59804      Branch: perl
59805            ! ext/threads/shared/shared.pm
59806 ____________________________________________________________________________
59807 [ 21046] By: jhi                                   on 2003/09/05  13:44:30
59808         Log: Subject: versions threads modules
59809              From: Elizabeth Mattijsen <liz@dijkmat.nl>
59810              Date: Fri, 5 Sep 2003 12:22:52 +0200
59811              Message-Id: <p05111b03bb7e1423e6ff@[192.168.56.4]>
59812      Branch: perl
59813            ! ext/threads/shared/shared.pm
59814 ____________________________________________________________________________
59815 [ 21045] By: jhi                                   on 2003/09/05  13:43:36
59816         Log: More suidperl path disclosure plugging:
59817              the #9813 didn't do enough.  See either of
59818              http://rt.perl.org/rt2/Ticket/Display.html?id=6511
59819              http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=203426
59820      Branch: perl
59821            ! perl.c pod/perldiag.pod
59822 ____________________________________________________________________________
59823 [ 21044] By: jhi                                   on 2003/09/05  13:09:54
59824         Log: FreeBSD hints updates from Anton Berezin.
59825      Branch: perl
59826            ! hints/freebsd.sh
59827 ____________________________________________________________________________
59828 [ 21043] By: merijn                                on 2003/09/05  11:18:20
59829         Log: Changed conflicting diff options
59830      Branch: perl
59831            ! patchlevel.h
59832 ____________________________________________________________________________
59833 [ 21042] By: jhi                                   on 2003/09/05  06:47:43
59834         Log: Acknowledge some known tie bugs.
59835      Branch: perl
59836            ! pod/perltie.pod
59837 ____________________________________________________________________________
59838 [ 21041] By: merijn                                on 2003/09/05  04:50:44
59839         Log: Subject: [PATCH] Remove dublicated entry in AUTHORS
59840              From: Ilya Martynov <ilya@martynov.org>
59841              Date: Fri, 05 Sep 2003 00:49:57 +0400
59842              Message-ID: <8765k8uvm2.fsf@abra.ru>
59843      Branch: perl
59844            ! AUTHORS
59845 ____________________________________________________________________________
59846 [ 21040] By: jhi                                   on 2003/09/05  04:36:48
59847         Log: code example error in "perlopentut"
59848      Branch: perl
59849            ! pod/perlopentut.pod
59850 ____________________________________________________________________________
59851 [ 21039] By: jhi                                   on 2003/09/05  04:13:17
59852         Log: Another seemingly fixed (un)tie bug,
59853              [perl ##22297] cannot untie scalar from within tied FETCH
59854      Branch: perl
59855            ! t/op/tie.t
59856 ____________________________________________________________________________
59857 [ 21036] By: jhi                                   on 2003/09/04  19:34:26
59858         Log: Subject: Re: [PATCH] Data::Dumper 2.121
59859              From: Ilya Martynov <ilya@martynov.org>
59860              Date: Fri, 05 Sep 2003 00:33:46 +0400
59861              Message-ID: <87ad9kuwd1.fsf@abra.ru>
59862      Branch: perl
59863            ! ext/Data/Dumper/Changes ext/Data/Dumper/Dumper.pm
59864            ! ext/Data/Dumper/Dumper.xs ext/Data/Dumper/t/dumper.t
59865            ! ext/Data/Dumper/t/overload.t ext/Data/Dumper/t/pair.t
59866 ____________________________________________________________________________
59867 [ 21033] By: jhi                                   on 2003/09/04  18:52:29
59868         Log: I think once is enough.
59869      Branch: perl
59870            ! configure.gnu
59871 ____________________________________________________________________________
59872 [ 21032] By: jhi                                   on 2003/09/04  17:30:28
59873         Log: Subject: [PATCH] Re: [PATCH] Re: ByteLoader and MSWin32
59874              From: Enache Adrian <enache@rdslink.ro>
59875              Date: Thu, 4 Sep 2003 20:09:06 +0300
59876              Message-ID: <20030904170906.GA1235@ratsnest.hole>
59877      Branch: perl
59878            ! bytecode.pl ext/B/B/Bytecode.pm ext/ByteLoader/bytecode.h
59879            ! ext/ByteLoader/byterun.c
59880 ____________________________________________________________________________
59881 [ 21031] By: jhi                                   on 2003/09/04  17:27:58
59882         Log: Subject: [PATCH] perlreftut: change distribution conditions
59883              From: "Brendan O'Dea" <bod@debian.org>
59884              Date: Thu, 4 Sep 2003 02:28:49 +1000
59885              Message-ID: <20030903162849.GA9675@londo.c47.org>
59886      Branch: perl
59887            ! pod/perlreftut.pod
59888 ____________________________________________________________________________
59889 [ 21030] By: jhi                                   on 2003/09/04  17:26:48
59890         Log: Subject: Re: "vendor" patch pickup
59891              From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
59892              Date: Thu, 4 Sep 2003 19:47:55 +0200
59893              Message-ID: <009b01c3730c$ac45e750$0c2f1fac@R2D2>
59894
59895              (Gentoo: take Marcus' version of the __THROW patch and
59896              even further #ifdef-protect it with __GLIBC__.)
59897      Branch: perl
59898            ! perl.h
59899 ____________________________________________________________________________
59900 [ 21029] By: jhi                                   on 2003/09/04  16:01:26
59901         Log: Tiny perlcc tweaks.
59902      Branch: perl
59903            ! utils/perlcc.PL
59904 ____________________________________________________________________________
59905 [ 21028] By: jhi                                   on 2003/09/04  15:10:48
59906         Log: A SuSE patchlet for perlcc -c to avoid
59907              "Modification of a read-only value attempted at ... C.pm"
59908      Branch: perl
59909            ! ext/B/B/C.pm
59910 ____________________________________________________________________________
59911 [ 21027] By: jhi                                   on 2003/09/04  08:54:40
59912         Log: AUTHORS updates.
59913      Branch: perl
59914            ! AUTHORS
59915 ____________________________________________________________________________
59916 [ 21025] By: jhi                                   on 2003/09/03  20:27:56
59917         Log: Upgrade to Math::BigInt pre-rel 1.66 as of
59918              http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2003-09/msg00242.html
59919              (the tar.gz link doesn't have 'v1.66', it has '1.66')
59920              so that the smoke builds can start chewing it.
59921      Branch: perl
59922            ! lib/Math/BigInt.pm lib/Math/BigInt/Calc.pm
59923            ! lib/Math/BigInt/t/bare_mbf.t lib/Math/BigInt/t/bare_mbi.t
59924            ! lib/Math/BigInt/t/bigfltpm.inc lib/Math/BigInt/t/bigfltpm.t
59925            ! lib/Math/BigInt/t/bigintpm.inc lib/Math/BigInt/t/bigintpm.t
59926            ! lib/Math/BigInt/t/mbi_rand.t lib/Math/BigInt/t/sub_mbf.t
59927            ! lib/Math/BigInt/t/sub_mbi.t lib/Math/BigInt/t/with_sub.t
59928 ____________________________________________________________________________
59929 [ 21022] By: jhi                                   on 2003/09/03  16:42:24
59930         Log: Subject: [PATCH Porting/valgrindpp.pl] fix: output from different pids
59931              From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
59932              Date: Wed, 3 Sep 2003 19:20:20 +0200
59933              Message-ID: <005901c3723f$a7914f10$0c2f1fac@R2D2>
59934      Branch: perl
59935            ! Porting/valgrindpp.pl
59936 ____________________________________________________________________________
59937 [ 21019] By: jhi                                   on 2003/09/03  15:51:35
59938         Log: Also indicate the Unicode level here.
59939              (The last date is non-committal :-)
59940      Branch: perl
59941            ! pod/perlunicode.pod
59942 ____________________________________________________________________________
59943 [ 21018] By: jhi                                   on 2003/09/03  12:08:23
59944         Log: Avoid lvalue casts, from Enache.
59945      Branch: perl
59946            ! ext/ByteLoader/bytecode.h op.h
59947 ____________________________________________________________________________
59948 [ 21017] By: jhi                                   on 2003/09/03  08:23:39
59949         Log: Bump up the VERSION.
59950      Branch: perl
59951            ! lib/bytes.pm
59952 ____________________________________________________________________________
59953 [ 21016] By: jhi                                   on 2003/09/03  08:22:48
59954         Log: Add, document, and test bytes::substr, index, rindex, chr,
59955              document bytes::ord.
59956      Branch: perl
59957            ! lib/bytes.pm lib/bytes.t lib/bytes_heavy.pl
59958 ____________________________________________________________________________
59959 [ 21014] By: jhi                                   on 2003/09/03  06:16:24
59960         Log: Subject: [PATCH] Re: maint@20974 or before broke mp2 ithreads test
59961              From: Marcus Holland-Moritz <mhx-perl@gmx.net>
59962              Date: Wed, 3 Sep 2003 08:57:25 +0200 (MEST)
59963              Message-ID: <29644.1062572245@www50.gmx.net>
59964
59965              The other half of #20930 should be still good.
59966      Branch: perl
59967            ! op.c
59968 ____________________________________________________________________________
59969 [ 21013] By: jhi                                   on 2003/09/03  06:15:09
59970         Log: use IO; is deprecated.
59971      Branch: perl
59972            ! ext/threads/t/join.t
59973 ____________________________________________________________________________
59974 [ 21012] By: jhi                                   on 2003/09/03  05:28:50
59975         Log: Upgrade to base 2.01 from CPAN.
59976      Branch: perl
59977            ! lib/base.pm lib/fields.pm
59978 ____________________________________________________________________________
59979 [ 21011] By: jhi                                   on 2003/09/03  05:08:29
59980         Log: Changing the test count is a good idea.
59981      Branch: perl
59982            ! ext/threads/t/join.t
59983 ____________________________________________________________________________
59984 [ 21010] By: jhi                                   on 2003/09/03  04:59:38
59985         Log: Subject: {PATCH 5.8.1] Re: [perl #23651] Debugger dump failed for blessed REF object
59986              From: Joe McMahon <mcmahon@ibiblio.org>
59987              Date: Tue, 2 Sep 2003 18:02:14 -0400
59988              Message-Id: <1C49133C-DD91-11D7-8450-000393BCA0FC@ibiblio.org>
59989      Branch: perl
59990            ! lib/dumpvar.pl
59991 ____________________________________________________________________________
59992 [ 21009] By: jhi                                   on 2003/09/03  04:48:40
59993         Log: Subject: Re: maint@20974 or before broke mp2 ithreads test
59994              From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
59995              Date: Wed, 3 Sep 2003 06:07:54 +0200
59996              Message-ID: <044101c371d0$f39b3fc0$0c2f1fac@R2D2>
59997      Branch: perl
59998            ! ext/threads/t/join.t
59999 ____________________________________________________________________________
60000 [ 21008] By: jhi                                   on 2003/09/03  04:31:35
60001         Log: VMS does not have quite UNIX glob semantics.
60002      Branch: perl
60003            ! t/run/fresh_perl.t
60004 ____________________________________________________________________________
60005 [ 21007] By: rgs                                   on 2003/09/02  21:21:27
60006         Log: Subject: some method calls not autoloaded
60007              From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
60008              Date: Tue, 2 Sep 2003 15:06:29 -0700
60009              Message-ID: <20030902220629.GA2952@efn.org>
60010      Branch: perl
60011            ! pod/perlfunc.pod pod/perlsub.pod
60012 ____________________________________________________________________________
60013 [ 21003] By: jhi                                   on 2003/09/02  19:01:07
60014         Log: An untie test from perlmonks-- worked in 5.6.1,
60015              broken in 5.8.0, seems to be working again in maint,
60016              better nail it down now.
60017      Branch: perl
60018            ! t/op/tie.t
60019 ____________________________________________________________________________
60020 [ 21000] By: jhi                                   on 2003/09/02  15:35:40
60021         Log: Retract #20930 because of
60022              Subject: maint@20974 or before broke mp2 ithreads test
60023              From: Stas Bekman <stas@stason.org>
60024              Date: Mon, 01 Sep 2003 23:31:11 -0700
60025              Message-ID: <3F54392F.7080009@stason.org>
60026      Branch: perl
60027            ! op.c
60028 ____________________________________________________________________________
60029 [ 20999] By: jhi                                   on 2003/09/02  15:34:14
60030         Log: Subject: [DOCPATCH] Re: [perl #23630] problem with "used only once" warning
60031              From: Fergal Daly <fergal@esatclear.ie>
60032              Date: Tue, 2 Sep 2003 17:36:52 +0100
60033              Message-Id: <200309021736.52725.fergal@esatclear.ie>
60034      Branch: perl
60035            ! pod/perldiag.pod
60036 ____________________________________________________________________________
60037 [ 20998] By: jhi                                   on 2003/09/02  15:02:47
60038         Log: Subject: [perl #23672] Math::BigInit POD
60039              From: "abigail@abigail.nl (via RT)" <perlbug-followup@perl.org>
60040              Date: 1 Sep 2003 08:47:39 -0000
60041              Message-ID: <rt-23672-64035.19.2973991993763@rt.perl.org>
60042      Branch: perl
60043            ! lib/Math/BigInt.pm
60044 ____________________________________________________________________________
60045 [ 20997] By: jhi                                   on 2003/09/02  14:58:21
60046         Log: Subject: [PATCH perlfaq6.pod] Explain \Q better
60047              From: Mark Jason Dominus <mjd@plover.com>
60048              Date: Mon, 01 Sep 2003 16:19:20 -0400
60049              Message-ID: <20030901201920.3929.qmail@plover.com>
60050      Branch: perl
60051            ! pod/perlfaq6.pod
60052 ____________________________________________________________________________
60053 [ 20996] By: jhi                                   on 2003/09/02  14:56:29
60054         Log: Subject: [PATCH] grok_(number|numeric_radix) added to Devel::PPPort
60055              From: Tassilo von Parseval <tassilo.parseval@post.rwth-aachen.de>
60056              Date: Tue, 02 Sep 2003 11:27:19 +0200
60057              Message-id: <20030902092719.GA18075@ethan>
60058      Branch: perl
60059            ! ext/Devel/PPPort/Changes ext/Devel/PPPort/PPPort.pm
60060            ! ext/Devel/PPPort/t/test.t
60061 ____________________________________________________________________________
60062 [ 20993] By: jhi                                   on 2003/09/02  14:40:54
60063         Log: Subject: [PATCH] Re: ByteLoader and MSWin32
60064              From: Enache Adrian <enache@rdslink.ro>
60065              Date: Tue, 2 Sep 2003 03:45:11 +0300
60066              Message-ID: <20030902004511.GA1442@ratsnest.hole>
60067      Branch: perl
60068            ! embed.fnc embed.h ext/ByteLoader/bytecode.h global.sym op.c
60069            ! op.h proto.h t/TEST
60070 ____________________________________________________________________________
60071 [ 20990] By: jhi                                   on 2003/09/02  04:29:45
60072         Log: Upgrade to Unicode::Collate 0.27.
60073      Branch: perl
60074            + lib/Unicode/Collate/t/hangul.t
60075            ! MANIFEST lib/Unicode/Collate.pm lib/Unicode/Collate/Changes
60076            ! lib/Unicode/Collate/README
60077 ____________________________________________________________________________
60078 [ 20989] By: jhi                                   on 2003/09/02  04:23:20
60079         Log: Subject: [PATCH Porting/valgrindpp.pl] more options for valgrindpp.pl
60080              From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
60081              Date: Mon, 1 Sep 2003 22:28:58 +0200
60082              Message-ID: <007701c370c7$acb85430$0c2f1fac@R2D2>
60083      Branch: perl
60084            ! Porting/valgrindpp.pl
60085 ____________________________________________________________________________
60086 [ 20983] By: jhi                                   on 2003/09/01  14:14:49
60087         Log: From Craig Berry, following the example of the other podxxx.PL
60088              in relying on basename($0, '.PL') to Do The Right Thing with
60089              regard to the case of the extension, which could be either
60090              .pl or .PL on VMS depending on version-specific features.
60091      Branch: perl
60092            ! pod/pod2usage.PL pod/podselect.PL
60093 ____________________________________________________________________________
60094 [ 20982] By: jhi                                   on 2003/09/01  13:01:49
60095         Log: Configure -r in AIX bad.
60096      Branch: perl
60097            ! README.aix
60098 ____________________________________________________________________________
60099 [ 20981] By: jhi                                   on 2003/09/01  11:28:35
60100         Log: Subject: [DOC PATCH] perlfaq4.pod
60101              Date: Mon, 1 Sep 2003 12:38:50 +0200
60102              From: Elizabeth Mattijsen <liz@dijkmat.nl>
60103              Message-Id: <p05111b19bb78d1d7aa70@[192.168.56.4]>
60104      Branch: perl
60105            ! pod/perlfaq4.pod
60106 ____________________________________________________________________________
60107 [ 20980] By: jhi                                   on 2003/09/01  08:49:02
60108         Log: Subject: glob() bug
60109              From: Gurusamy Sarathy <gsar@ActiveState.com>
60110              Date: Mon, 01 Sep 2003 02:25:41 -0700
60111              Message-Id: <200309010925.h819Pf0X011457@smtp3.ActiveState.com>
60112      Branch: perl
60113            ! op.c t/run/fresh_perl.t
60114 ____________________________________________________________________________
60115 [ 20979] By: jhi                                   on 2003/09/01  06:32:01
60116         Log: Ultrix VAX is like VMS VAX in floating point.
60117      Branch: perl
60118            ! t/op/sprintf.t
60119 ____________________________________________________________________________
60120 [ 20978] By: jhi                                   on 2003/09/01  05:44:25
60121         Log: Subject: [PATCH@20959] some WinCE compilers require a little correction
60122              From: Vadim Konovalov <vkonovalov@peterstar.ru>
60123              Date: Mon, 1 Sep 2003 02:57:33 +0400
60124              Message-ID: <1091134912500.20030901025733@peterstar.ru>
60125      Branch: perl
60126            ! wince/Makefile.ce wince/wince.c
60127 ____________________________________________________________________________
60128 [ 20973] By: jhi                                   on 2003/08/31  15:34:43
60129         Log: Add test for -i.
60130      Branch: perl
60131            ! MANIFEST t/run/switches.t
60132 ____________________________________________________________________________
60133 [ 20972] By: jhi                                   on 2003/08/31  15:12:10
60134         Log: Add tests for -h and (unknown) -z.
60135      Branch: perl
60136            ! MANIFEST t/run/switches.t
60137 ____________________________________________________________________________
60138 [ 20971] By: jhi                                   on 2003/08/31  15:03:42
60139         Log: Add test for -v.
60140      Branch: perl
60141            ! MANIFEST t/run/switches.t
60142 ____________________________________________________________________________
60143 [ 20970] By: jhi                                   on 2003/08/31  14:55:54
60144         Log: List the switches tested in switches.t.
60145      Branch: perl
60146            ! t/run/switches.t
60147 ____________________________________________________________________________
60148 [ 20969] By: jhi                                   on 2003/08/31  14:51:19
60149         Log: Subject: [PATCH: perl@20898] have installperl install perl_setup.com and dbga2p.exe for VMS
60150              From: PPrymmer@factset.com
60151              Message-ID: <OF0394CB1E.C7646793-ON85256D93.004D75D4-85256D93.004E01F2@factset.com>
60152              Date: Sun, 31 Aug 2003 10:11:54 -0400
60153      Branch: perl
60154            ! installperl
60155 ____________________________________________________________________________
60156 [ 20968] By: jhi                                   on 2003/08/31  13:24:10
60157         Log: Subject: [PATCH sv.c] Re: [PATCH] add "$lexical not available" warning in C<for my $lex ()>
60158              From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
60159              Date: Sun, 31 Aug 2003 15:21:17 +0200
60160              Message-ID: <038401c36fc2$d01b1440$9b00a8c0@R2D2>
60161      Branch: perl
60162            ! sv.c
60163 ____________________________________________________________________________
60164 [ 20965] By: jhi                                   on 2003/08/31  08:55:59
60165         Log: Ouch.  Upgrading to base 2.0 made the threads tests very unhappy
60166              both in blead and maint, lots of "Attempt to free non-existent
60167              shared string" and "Unbalanced string table refcount" errors.
60168              Retract #20960 (and #20963).
60169      Branch: perl
60170            - lib/base/t/base.t lib/base/t/fb18784.t lib/base/t/fb20922.t
60171            - lib/base/t/fields.t lib/base/t/fp560.t lib/base/t/fp580.t
60172            ! MANIFEST lib/base.pm lib/fields.pm
60173 ____________________________________________________________________________
60174 [ 20964] By: jhi                                   on 2003/08/31  08:17:43
60175         Log: Integrate from maint:
60176              [ 20963]
60177              Muffle the 'Pseudo-hashes are deprecated' warning for maint.
60178      Branch: perl
60179           !> lib/base/t/fp560.t
60180 ____________________________________________________________________________
60181 [ 20961] By: jhi                                   on 2003/08/31  08:09:21
60182         Log: De-cargo-cult.
60183      Branch: perl
60184            ! ext/DynaLoader/t/XSLoader.t ext/SDBM_File/t/sdbm.t
60185 ____________________________________________________________________________
60186 [ 20960] By: jhi                                   on 2003/08/31  08:07:43
60187         Log: Upgrade to base.pm 2.0.
60188
60189              (Rename the tests around a bit to be more 8.3-friendly.)
60190      Branch: perl
60191            + lib/base/t/base.t lib/base/t/fb18784.t lib/base/t/fb20922.t
60192            + lib/base/t/fields.t lib/base/t/fp560.t lib/base/t/fp580.t
60193            ! MANIFEST lib/base.pm lib/fields.pm
60194 ____________________________________________________________________________
60195 [ 20957] By: jhi                                   on 2003/08/30  18:47:02
60196         Log: Fewer naked char constants.
60197      Branch: perl
60198            ! doio.c perlio.c sv.h
60199 ____________________________________________________________________________
60200 [ 20956] By: jhi                                   on 2003/08/30  18:38:05
60201         Log: This is probably a wrong fix for
60202              [perl #23645] tell with perlio on appended files
60203              but maybe this gets NI-S agitated enough to present the correct fix :-)
60204      Branch: perl
60205            ! perlio.c t/io/tell.t
60206 ____________________________________________________________________________
60207 [ 20954] By: jhi                                   on 2003/08/30  17:14:19
60208         Log: A new try at
60209
60210              Subject: [PATCH] maint / blead tweaks in perlio.c for Cygwin
60211              From: "Gerrit P. Haase" <gp@familiehaase.de>
60212              Date: Thu, 28 Aug 2003 08:18:51 +0200
60213              Message-ID: <4157199551.20030828081851@familiehaase.de>
60214
60215              (this time Cygwin only)
60216      Branch: perl
60217            ! perlio.c
60218 ____________________________________________________________________________
60219 [ 20952] By: rgs                                   on 2003/08/30  15:20:48
60220         Log: Tweak XSLoader.t.
60221              XSLoader is supposed to work even for extensions that
60222              are statically linked. So only check that the extension we
60223              test for is actually available. (This test is not supposed
60224              to be run by miniperl.)
60225      Branch: perl
60226            ! ext/DynaLoader/t/XSLoader.t
60227 ____________________________________________________________________________
60228 [ 20950] By: jhi                                   on 2003/08/30  06:49:31
60229         Log: Something went wrong in change #20929;
60230              linux 2.4.18-bf2.4 didn't like it:
60231              http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2003-08/msg01992.html
60232              and similar failure pattern also seen in Solaris 8.
60233      Branch: perl
60234            ! perlio.c
60235 ____________________________________________________________________________
60236 [ 20948] By: jhi                                   on 2003/08/30  06:08:57
60237         Log: Setup @INC.
60238      Branch: perl
60239            ! t/op/cproto.t
60240 ____________________________________________________________________________
60241 [ 20946] By: jhi                                   on 2003/08/30  06:00:09
60242         Log: Tabify and re-sort MANIFEST.
60243      Branch: perl
60244            ! MANIFEST
60245 ____________________________________________________________________________
60246 [ 20945] By: jhi                                   on 2003/08/30  05:57:04
60247         Log: Make XSLoader.t more robust (and sdbm.t more verbose)
60248      Branch: perl
60249            ! ext/DynaLoader/t/XSLoader.t ext/SDBM_File/t/sdbm.t
60250 ____________________________________________________________________________
60251 [ 20944] By: jhi                                   on 2003/08/30  05:50:41
60252         Log: Subject: [PATCH] XSLoader nits and tests
60253              From: Michael G Schwern <schwern@pobox.com>
60254              Date: Fri, 29 Aug 2003 22:55:07 -0700
60255              Message-ID: <20030830055507.GI25970@windhund.schwern.org>
60256      Branch: perl
60257            + ext/DynaLoader/t/XSLoader.t
60258            ! MANIFEST ext/DynaLoader/XSLoader_pm.PL
60259 ____________________________________________________________________________
60260 [ 20943] By: jhi                                   on 2003/08/30  05:44:02
60261         Log: Missed from #20942.
60262      Branch: perl
60263            ! lib/File/Spec/VMS.pm
60264 ____________________________________________________________________________
60265 [ 20942] By: jhi                                   on 2003/08/30  05:41:59
60266         Log: Subject: [PATCH: perl@20898] fix File::Spec->abs2rel() to return absolute $path more often for VMS
60267              From: PPrymmer@factset.com
60268              Date: Sat, 30 Aug 2003 00:57:28 -0400
60269              Message-ID: <OFD8AE5D6D.EA3FBE7D-ON85256D92.001A31FE-85256D92.001B3BE5@factset.com>
60270      Branch: perl
60271            ! lib/File/Spec.pm lib/File/Spec/t/Spec.t
60272 ____________________________________________________________________________
60273 [ 20941] By: jhi                                   on 2003/08/30  05:37:13
60274         Log: Subject: [patch sv.h api doc] SvTAINTED_on does its craft only under -T
60275              From: Stas Bekman <stas@stason.org>
60276              Date: Fri, 29 Aug 2003 17:11:41 -0700
60277              Message-ID: <3F4FEBBD.8000901@stason.org>
60278      Branch: perl
60279            ! pod/perlapi.pod sv.h
60280 ____________________________________________________________________________
60281 [ 20940] By: rgs                                   on 2003/08/29  21:17:59
60282         Log: Add a new test, to ensure that we don't unexpectedly change
60283              prototypes of builtins.
60284      Branch: perl
60285            + t/op/cproto.t
60286            ! MANIFEST
60287 ____________________________________________________________________________
60288 [ 20938] By: rgs                                   on 2003/08/29  20:22:21
60289         Log: Don't cast PL_multiline to bool : you may loose important bits.
60290      Branch: perl
60291            ! pp.c pp_hot.c
60292 ____________________________________________________________________________
60293 [ 20937] By: jhi                                   on 2003/08/29  17:22:11
60294         Log: Subject: [PATCH] Re: all 9007199254740992s are equal, but some are more equal than others
60295              From: Nicholas Clark <nick@ccl4.org>
60296              Date: Wed, 27 Aug 2003 22:59:55 +0100
60297              Message-ID: <20030827225955.E558@plum.flirble.org>
60298      Branch: perl
60299            ! pp.c
60300 ____________________________________________________________________________
60301 [ 20936] By: jhi                                   on 2003/08/29  17:17:16
60302         Log: Some perluniintro tweaks.
60303      Branch: perl
60304            ! pod/perluniintro.pod
60305 ____________________________________________________________________________
60306 [ 20935] By: jhi                                   on 2003/08/29  17:07:25
60307         Log: Tiny doc tweak from Shannon -jj Behrens.
60308      Branch: perl
60309            ! pod/perluniintro.pod
60310 ____________________________________________________________________________
60311 [ 20933] By: jhi                                   on 2003/08/29  13:25:18
60312         Log: Comparing an int to a U32 makes VC6 nervous.
60313      Branch: perl
60314            ! pp.c pp_hot.c
60315 ____________________________________________________________________________
60316 [ 20932] By: jhi                                   on 2003/08/29  13:06:06
60317         Log: Better skip() explicit number of tests, test counts getting
60318              out of sync less likely that way.
60319      Branch: perl
60320            ! t/op/pack.t
60321 ____________________________________________________________________________
60322 [ 20931] By: jhi                                   on 2003/08/29  12:59:32
60323         Log: Some Ultrix test dodgings.
60324      Branch: perl
60325            ! t/base/num.t t/op/arith.t t/op/pack.t
60326 ____________________________________________________________________________
60327 [ 20930] By: jhi                                   on 2003/08/29  12:57:07
60328         Log: Subject: [PATCH op.c] Perl_newCONSTSUB() related memory leaks
60329              From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
60330              Date: Thu, 28 Aug 2003 21:47:22 +0200
60331              Message-ID: <006301c36d9d$335976a0$e400a8c0@R2D2>
60332      Branch: perl
60333            ! op.c
60334 ____________________________________________________________________________
60335 [ 20929] By: jhi                                   on 2003/08/29  12:55:12
60336         Log: Subject: [PATCH] maint / blead tweaks in perlio.c for Cygwin
60337              From: "Gerrit P. Haase" <gp@familiehaase.de>
60338              Date: Thu, 28 Aug 2003 08:18:51 +0200
60339              Message-ID: <4157199551.20030828081851@familiehaase.de>
60340
60341              (changed so that the 'b' is always appended)
60342      Branch: perl
60343            ! perlio.c
60344 ____________________________________________________________________________
60345 [ 20928] By: jhi                                   on 2003/08/29  07:04:17
60346         Log: Subject: RE: [PATCH] Pod::InputObjects performance de-pessimization
60347              From: marek.rouchal@infineon.com
60348              Date: Wed, 27 Aug 2003 17:25:28 +0200
60349              Message-ID: <9843A649BAD7FB4686F6FCBC840D600E08381508@mucse001.eu.infineon.com>
60350
60351              PodParser-1.25 prerelease.
60352      Branch: perl
60353            ! lib/Pod/Checker.pm lib/Pod/Find.pm lib/Pod/InputObjects.pm
60354            ! lib/Pod/Parser.pm pod/pod2usage.PL pod/podchecker.PL
60355            ! pod/podselect.PL t/pod/find.t t/pod/poderrs.xr
60356 ____________________________________________________________________________
60357 [ 20927] By: jhi                                   on 2003/08/28  18:53:45
60358         Log: MPE/iX gcc 3.3.1 changes from Mark Klein and Mark Bixby.
60359      Branch: perl
60360            ! ext/DynaLoader/dl_mpeix.xs mpeix/mpeix.c
60361 ____________________________________________________________________________
60362 [ 20925] By: jhi                                   on 2003/08/28  16:15:47
60363         Log: Subject: [PATCH] valgrindpp.pl
60364              From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
60365              Date: Thu, 28 Aug 2003 09:43:49 +0200
60366              Message-ID: <002701c36d38$1edb71c0$ae4eeed9@R2D2>
60367      Branch: perl
60368            ! Porting/valgrindpp.pl
60369 ____________________________________________________________________________
60370 [ 20924] By: jhi                                   on 2003/08/28  16:12:08
60371         Log: Subject: [PATCH] Quieten more warnings in Deparse.pm
60372              From: Paul Johnson <paul@pjcj.net>
60373              Date: Thu, 28 Aug 2003 00:13:59 +0200
60374              Message-ID: <20030827221359.GE28396@pjcj.net>
60375      Branch: perl
60376            ! ext/B/B/Deparse.pm
60377 ____________________________________________________________________________
60378 [ 20923] By: jhi                                   on 2003/08/28  01:45:51
60379         Log: Subject: Re: Another oddity in lib/ExtUtils/MakeMaker/Tutorial.pod
60380              From: Michael G Schwern <schwern@pobox.com>
60381              Date: Wed, 27 Aug 2003 15:05:20 -0700
60382              Message-ID: <20030827220520.GD7300@windhund.schwern.org>
60383      Branch: perl
60384            ! lib/ExtUtils/MakeMaker/Tutorial.pod
60385 ____________________________________________________________________________
60386 [ 20922] By: rgs                                   on 2003/08/27  19:52:27
60387         Log: Add caveats and tests for Symbol::delete_package().
60388      Branch: perl
60389            ! lib/Symbol.pm lib/Symbol.t
60390 ____________________________________________________________________________
60391 [ 20921] By: jhi                                   on 2003/08/27  17:12:56
60392         Log: Configure is doing fine in Ultrix, operator error.
60393      Branch: perl
60394            ! hints/ultrix_4.sh
60395 ____________________________________________________________________________
60396 [ 20920] By: jhi                                   on 2003/08/27  16:49:22
60397         Log: Add the valgrindpp.pl script from Marcus Holland-Moritz.
60398      Branch: perl
60399            + Porting/valgrindpp.pl
60400            ! MANIFEST
60401 ____________________________________________________________________________
60402 [ 20917] By: jhi                                   on 2003/08/27  13:09:33
60403         Log: Subject: disturbing, disruptive typo in Tutorial.pod [PATCH]
60404              From: "John P. Linderman" <jpl@research.att.com>
60405              Date: Wed, 27 Aug 2003 08:10:12 -0400 (EDT)
60406              Message-Id: <200308271210.IAA23907@raptor.research.att.com>
60407
60408              Subject: typo in pod/perlnewmod.pod [PATCH]
60409              From: "John P. Linderman" <jpl@research.att.com>
60410              Date: Wed, 27 Aug 2003 09:07:12 -0400 (EDT)
60411              Message-Id: <200308271307.JAA46955@raptor.research.att.com>
60412
60413              Subject: [PATCH] document the location of byacc
60414              From: Dave Mitchell <davem@fdgroup.com>
60415              Date: Wed, 27 Aug 2003 14:26:50 +0100
60416              Message-ID: <20030827132650.GA23144@fdgroup.com>
60417      Branch: perl
60418            ! Porting/pumpkin.pod lib/ExtUtils/MakeMaker/Tutorial.pod
60419            ! pod/perlnewmod.pod
60420 ____________________________________________________________________________
60421 [ 20916] By: jhi                                   on 2003/08/27  13:01:26
60422         Log: Ultrix tweaks: <string.h> must not be included twice
60423              (otherwise one gets prototype conflicts between the <string.h>
60424              and proto.h because Ultrix thinks e.g. Perl_ninstr has been
60425              define in <string.h>...); and Configure misprobes some features.
60426      Branch: perl
60427            ! ext/POSIX/POSIX.xs ext/SDBM_File/sdbm/sdbm.c
60428            ! ext/SDBM_File/sdbm/sdbm.h ext/Socket/Socket.xs
60429            ! hints/ultrix_4.sh
60430 ____________________________________________________________________________
60431 [ 20915] By: jhi                                   on 2003/08/27  05:37:34
60432         Log: Urk.  In Mac OS X byteorder is not one of the "known ones",
60433              but instead it is 0xFFFF.  So retract #20914.
60434      Branch: perl
60435            ! perl.h
60436 ____________________________________________________________________________
60437 [ 20914] By: jhi                                   on 2003/08/27  05:17:44
60438         Log: Sanity check for BYTEORDER.
60439      Branch: perl
60440            ! perl.h
60441 ____________________________________________________________________________
60442 [ 20913] By: rgs                                   on 2003/08/26  20:34:48
60443         Log: Integrate two DJGPP portability patches from the 5.6.2 branch :
60444
60445              [20859]
60446              Two portability patches for DJGPP from Richard Dawe
60447              <rich@phekda.freeserve.co.uk>.
60448              Message-Id: <E19qfNh-0000Zq-00@phekda.freeserve.co.uk>
60449
60450              [20911]
60451              Don't uppercase automatically all environment variables on DJGPP.
60452              (reported by Richard Dawe, this breaks portability of Unix
60453              scripts.) Don't change the behaviour on plain MS/DOS.
60454      Branch: perl
60455            ! perl.c
60456           !> djgpp/djgppsed.sh dosish.h
60457 ____________________________________________________________________________
60458 [ 20912] By: rgs                                   on 2003/08/26  20:15:40
60459         Log: perlapi.pod tweaks, based on :
60460              Subject: misdocumented return value for sv_setref*
60461              From: Joe Schaefer <joe+perl@sunstarsys.com>
60462              Date: 12 Aug 2003 13:21:42 -0400
60463              Message-ID: <m3adae94gp.fsf@sol.sunstarsys.com>
60464      Branch: perl
60465            ! pod/perlapi.pod sv.c
60466 ____________________________________________________________________________
60467 [ 20910] By: rgs                                   on 2003/08/26  19:37:29
60468         Log: Change the internal prototype of the pop() and shift() builtins
60469              to (;\@), to reflect that their array argument is optional.
60470      Branch: perl
60471            ! opcode.h opcode.pl
60472 ____________________________________________________________________________
60473 [ 20909] By: rgs                                   on 2003/08/26  19:13:39
60474         Log: Subject: [PATCH] improved 19064 (local $_[0] problems)
60475              From: Dave Mitchell <davem@fdgroup.com>
60476              Date: Sun, 24 Aug 2003 15:52:00 +0100
60477              Message-ID: <20030824145159.GA12210@fdgroup.com>
60478      Branch: perl
60479            ! pp_ctl.c pp_hot.c scope.c t/op/args.t
60480 ____________________________________________________________________________
60481 [ 20908] By: rgs                                   on 2003/08/26  18:40:50
60482         Log: Subject: [PATCH] minor File::Spec testing cleanup
60483              From: Ken Williams <ken@mathforum.org>
60484              Date: Thu, 21 Aug 2003 22:47:51 -0500
60485              Message-Id: <67C30B63-D453-11D7-8495-003065F6D85A@mathforum.org>
60486      Branch: perl
60487            ! lib/File/Spec/t/rel2abs2rel.t
60488 ____________________________________________________________________________
60489 [ 20907] By: jhi                                   on 2003/08/26  12:12:14
60490         Log: Maintainer catch from Rafael.
60491      Branch: perl
60492            ! Porting/Maintainers.pl
60493 ____________________________________________________________________________
60494 [ 20905] By: jhi                                   on 2003/08/26  09:36:22
60495         Log: Take a cutdown version of the change #20903 also to perlebcdic.
60496      Branch: perl
60497            ! pod/perlebcdic.pod
60498 ____________________________________________________________________________
60499 [ 20904] By: jhi                                   on 2003/08/26  09:29:49
60500         Log: No dynaloading at all in Ultrix.
60501      Branch: perl
60502            ! hints/ultrix_4.sh
60503 ____________________________________________________________________________
60504 [ 20903] By: jhi                                   on 2003/08/26  08:54:02
60505         Log: PerlIO on EBCDIC on BS2000 advice from Thomas Dorner.
60506              (This information looks interesting enough to be mentioned
60507              elsewhere, too.)
60508      Branch: perl
60509            ! README.bs2000
60510 ____________________________________________________________________________
60511 [ 20902] By: jhi                                   on 2003/08/26  08:36:36
60512         Log: CGI::Carp from CGI.pm 3.00 was missing.
60513      Branch: perl
60514            ! lib/CGI/Carp.pm
60515 ____________________________________________________________________________
60516 [ 20901] By: jhi                                   on 2003/08/26  05:18:15
60517         Log: Subject: Re: [PATCH] valgrind and /#/x
60518              From: Enache Adrian <enache@rdslink.ro>
60519              Date: Tue, 26 Aug 2003 08:11:07 +0300
60520              Message-ID: <20030826051107.GA1086@ratsnest.hole>
60521      Branch: perl
60522            ! regcomp.c t/op/re_tests t/run/fresh_perl.t toke.c
60523 ____________________________________________________________________________
60524 [ 20900] By: jhi                                   on 2003/08/26  04:53:09
60525         Log: More memory lane.
60526      Branch: perl
60527            ! hints/ultrix_4.sh
60528 ____________________________________________________________________________
60529 [ 20899] By: rgs                                   on 2003/08/25  21:05:57
60530         Log: fix syscall() prototype description in
60531              perlfunc.pod, as suggested by Lukas Mai.
60532      Branch: perl
60533            ! pod/perlfunc.pod
60534 ____________________________________________________________________________
60535 [ 20896] By: jhi                                   on 2003/08/25  19:52:48
60536         Log: Tiny doc tweak.
60537      Branch: perl
60538            ! README.solaris
60539 ____________________________________________________________________________
60540 [ 20895] By: jhi                                   on 2003/08/25  19:46:31
60541         Log: Even more SunOS 4 info.
60542      Branch: perl
60543            ! README.solaris
60544 ____________________________________________________________________________
60545 [ 20894] By: jhi                                   on 2003/08/25  19:37:00
60546         Log: Subject: [PATCH@20512] make backspace key work for WinCE users
60547              From: Vadim Konovalov <vkonovalov@peterstar.ru>
60548              Date: Tue, 26 Aug 2003 00:10:29 +0400
60549              Message-ID: <135606488000.20030826001029@peterstar.ru>
60550      Branch: perl
60551            ! wince/perlmain.c
60552 ____________________________________________________________________________
60553 [ 20893] By: jhi                                   on 2003/08/25  19:25:08
60554         Log: Subject: more valgrinding: select problem?
60555              From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
60556              Date: Mon, 25 Aug 2003 22:02:17 +0200
60557              Message-ID: <008301c36b43$cfe26f10$0c2f1fac@R2D2>
60558
60559              In glibc, just use the __FD_SETSIZE since that's
60560              the size of the buffer (usually 1024 bits, much
60561              more than the selectminbits of 32).
60562      Branch: perl
60563            ! pp_sys.c
60564 ____________________________________________________________________________
60565 [ 20892] By: jhi                                   on 2003/08/25  19:11:32
60566         Log: More ptags tweakage from Stas; now add 'fullpath'
60567              option to get absolute paths.
60568      Branch: perl
60569            ! emacs/ptags
60570 ____________________________________________________________________________
60571 [ 20891] By: jhi                                   on 2003/08/25  18:35:03
60572         Log: The new tests of #20888 didn't really test what they claimed to.
60573      Branch: perl
60574            ! t/op/pat.t
60575 ____________________________________________________________________________
60576 [ 20890] By: jhi                                   on 2003/08/25  18:14:33
60577         Log: Subject: [5.8.1] maint @ 20845 OK on aix 4.2
60578              From: Jose.auguste-etienne@cgss-guyane.fr
60579              Date: Mon, 25 Aug 2003 14:35:45 -0300
60580              Message-ID: <OF1EF867E8.4A2A43A1-ON03256D8D.005DFE9A@Cgss-Guyane.fr>
60581
60582              AIX Configure advice.
60583      Branch: perl
60584            ! README.aix
60585 ____________________________________________________________________________
60586 [ 20889] By: jhi                                   on 2003/08/25  18:08:42
60587         Log: More SunOS 4.x info.
60588      Branch: perl
60589            ! README.solaris
60590 ____________________________________________________________________________
60591 [ 20888] By: jhi                                   on 2003/08/25  17:53:32
60592         Log: The #20887 didn't go over that well;
60593              and add a few more tests from UTS#18.
60594      Branch: perl
60595            ! t/op/pat.t
60596 ____________________________________________________________________________
60597 [ 20887] By: jhi                                   on 2003/08/25  16:40:51
60598         Log: pat.t -> charnames -> UCD -> Storable,
60599              not good for static builds and minitest.
60600      Branch: perl
60601            ! t/op/pat.t
60602 ____________________________________________________________________________
60603 [ 20886] By: jhi                                   on 2003/08/25  16:35:26
60604         Log: SunOS 4.1.4 is working, too.
60605      Branch: perl
60606            ! README.solaris hints/sunos_4_1.sh
60607 ____________________________________________________________________________
60608 [ 20884] By: jhi                                   on 2003/08/25  16:05:18
60609         Log: Regen perlmodlib, perltoc.
60610      Branch: perl
60611            ! pod/perlmodlib.pod pod/perltoc.pod
60612 ____________________________________________________________________________
60613 [ 20881] By: jhi                                   on 2003/08/25  15:45:51
60614         Log: UVSIZE is not yet defined when it would be needed
60615              by MULTIARCH.  So go back to LONGSIZE, and (belt-
60616              and-suspenders-and-rope style) later in UVSIZE
60617              possibly redefine BYTEORDER.
60618      Branch: perl
60619            ! Configure config_h.SH
60620 ____________________________________________________________________________
60621 [ 20880] By: jhi                                   on 2003/08/25  11:28:45
60622         Log: Subject: [PATCH] valgrind and /#/x
60623              From: Dave Mitchell <davem@fdgroup.com>
60624              Date: Mon, 25 Aug 2003 13:27:49 +0100
60625              Message-ID: <20030825122748.GA15560@fdgroup.com>
60626      Branch: perl
60627            ! regcomp.c
60628 ____________________________________________________________________________
60629 [ 20879] By: jhi                                   on 2003/08/25  11:16:29
60630         Log: Subject: Please update my address
60631              From: Ed Avis <ed@membled.com>
60632              Date: Mon, 25 Aug 2003 13:16:45 +0100 (BST)
60633              Message-ID: <Pine.LNX.4.20L2.0308251314530.29902-100000@budvar.future-i.net>
60634
60635              (Just the AUTHORS part, though, I don't think retroactively
60636              updating the Changes* is useful.)
60637      Branch: perl
60638            ! AUTHORS
60639 ____________________________________________________________________________
60640 [ 20878] By: jhi                                   on 2003/08/25  11:14:26
60641         Log: Document even more ways of affecting your "utf8ness".
60642      Branch: perl
60643            ! lib/utf8.pm
60644 ____________________________________________________________________________
60645 [ 20877] By: jhi                                   on 2003/08/25  11:11:40
60646         Log: Change the VERSION since there are now changes since Perl 5.8.0.
60647      Branch: perl
60648            ! ext/I18N/Langinfo/Langinfo.pm
60649 ____________________________________________________________________________
60650 [ 20876] By: jhi                                   on 2003/08/25  11:11:13
60651         Log: Keep the CGI::Util VERSION at 1.31 since there have been changes
60652              since Perl 5.8.0.
60653      Branch: perl
60654            ! lib/CGI/Util.pm
60655 ____________________________________________________________________________
60656 [ 20875] By: jhi                                   on 2003/08/25  11:09:49
60657         Log: Upgrade to CGI.pm 3.00.
60658      Branch: perl
60659            ! lib/CGI.pm lib/CGI/Util.pm
60660 ____________________________________________________________________________
60661 [ 20872] By: jhi                                   on 2003/08/25  09:03:44
60662         Log: Subject: [PATCH] valgrind update
60663              From: Marcus Holland-Moritz <mhx-perl@gmx.net>
60664              Date: Mon, 25 Aug 2003 09:51:57 +0200 (MEST)
60665              Message-ID: <21671.1061797917@www38.gmx.net>
60666      Branch: perl
60667            ! t/TEST t/op/magic.t
60668 ____________________________________________________________________________
60669 [ 20871] By: jhi                                   on 2003/08/25  05:16:02
60670         Log: Subject: [PATCH] valgrind memcpy warnings (Re: [PATCH] Re: valgrind as a leak hound?)
60671              From: Nicholas Clark <nick@ccl4.org>
60672              Date: Sun, 24 Aug 2003 16:48:53 +0100
60673              Message-ID: <20030824164851.E558@plum.flirble.org>
60674      Branch: perl
60675            ! doop.c
60676 ____________________________________________________________________________
60677 [ 20870] By: jhi                                   on 2003/08/25  05:14:04
60678         Log: Subject: [patch emacs/ptags] allow xemacs to be used
60679              From: Stas Bekman <stas@stason.org>
60680              Date: Sun, 24 Aug 2003 22:05:00 -0700
60681              Message-ID: <3F4998FC.3090401@stason.org>
60682      Branch: perl
60683            ! emacs/ptags
60684 ____________________________________________________________________________
60685 [ 20868] By: jhi                                   on 2003/08/24  13:20:03
60686         Log: MPE/iX doc tweak from Mark Bixby.
60687      Branch: perl
60688            ! README.mpeix
60689 ____________________________________________________________________________
60690 [ 20867] By: jhi                                   on 2003/08/24  10:46:42
60691         Log: Various tweaks for getting Perl to compile on SunOS 4.x.
60692              Doesn't work well yet, something broken in DynaLoader/XSLoader?
60693      Branch: perl
60694            ! README.solaris ext/IO/poll.c hints/sunos_4_1.sh
60695 ____________________________________________________________________________
60696 [ 20866] By: jhi                                   on 2003/08/24  10:00:59
60697         Log: IRIX 5.3 is 99.90% okay.
60698      Branch: perl
60699            ! README.irix hints/irix_5.sh
60700 ____________________________________________________________________________
60701 [ 20865] By: jhi                                   on 2003/08/24  08:24:46
60702         Log: An imperfect last resort in case there is no strtoul() but
60703              there is strtol() (like e.g. SunOS 4) because of the Atoul()
60704              in Perl_get_hash_seed()).  The only true fix would be to
60705              implement Perl_my_strtoul() (and Perl_my_strtol(), I guess)
60706              in numeric.c.
60707      Branch: perl
60708            ! perl.h
60709 ____________________________________________________________________________
60710 [ 20864] By: jhi                                   on 2003/08/24  07:45:47
60711         Log: s/rationale/rational/g on bigrats.
60712      Branch: perl
60713            ! lib/Math/BigRat.pm lib/bigrat.pm
60714 ____________________________________________________________________________
60715 [ 20862] By: jhi                                   on 2003/08/24  06:41:17
60716         Log: Update the CPAN mirrors list.
60717      Branch: perl
60718            ! pod/perlmodlib.PL pod/perlmodlib.pod
60719 ____________________________________________________________________________
60720 [ 20861] By: jhi                                   on 2003/08/24  06:13:13
60721         Log: gcc -O3 and Storable in Linux do not like each other.
60722      Branch: perl
60723            ! ext/Storable/hints/linux.pl
60724 ____________________________________________________________________________
60725 [ 20860] By: jhi                                   on 2003/08/24  05:34:56
60726         Log: Bad quote day, noticed by Philip Newton.
60727      Branch: perl
60728            ! hints/dos_djgpp.sh
60729 ____________________________________________________________________________
60730 [ 20856] By: jhi                                   on 2003/08/23  09:15:15
60731         Log: Subject: Re: bytecode.t & OS X "Invalid bytecode for this architecture"
60732              From: Enache Adrian <enache@rdslink.ro>
60733              Date: Mon, 4 Aug 2003 16:20:19 +0300
60734              Message-ID: <20030804132019.GA6764@ratsnest.hole>
60735      Branch: perl
60736            ! Configure config_h.SH
60737 ____________________________________________________________________________
60738 [ 20855] By: jhi                                   on 2003/08/23  07:51:32
60739         Log: Add more comments so that one can see what is supposed to happen.
60740      Branch: perl
60741            ! t/op/lc.t
60742 ____________________________________________________________________________
60743 [ 20854] By: jhi                                   on 2003/08/23  07:41:11
60744         Log: More data points about the Storable optimization problem
60745              in Linux.  (It might be that also non-Debians are affected,
60746              waiting for more information.)
60747      Branch: perl
60748            ! ext/Storable/hints/linux.pl
60749 ____________________________________________________________________________
60750 [ 20853] By: jhi                                   on 2003/08/23  07:37:41
60751         Log: Move the note about known eval leaks earlier.
60752      Branch: perl
60753            ! pod/perlhack.pod
60754 ____________________________________________________________________________
60755 [ 20852] By: jhi                                   on 2003/08/23  07:15:58
60756         Log: Forgot to regen byterun.c.
60757      Branch: perl
60758            ! ext/ByteLoader/byterun.c
60759 ____________________________________________________________________________
60760 [ 20851] By: jhi                                   on 2003/08/23  07:13:29
60761         Log: Doc tweaks on perlhack.
60762      Branch: perl
60763            ! pod/perlhack.pod
60764 ____________________________________________________________________________
60765 [ 20850] By: jhi                                   on 2003/08/23  06:54:58
60766         Log: Subject: [PATCH] Re: valgrind as a leak hound?
60767              From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
60768              Date: Fri, 22 Aug 2003 23:28:18 +0200
60769              Message-ID: <002201c368f4$4e5a5e40$0c2f1fac@R2D2>
60770
60771              Add the leak detection to valgrind testing.
60772      Branch: perl
60773            + t/perl.supp
60774            ! MANIFEST pod/perlhack.pod t/TEST
60775 ____________________________________________________________________________
60776 [ 20843] By: jhi                                   on 2003/08/22  15:05:39
60777         Log: Oops.  Why can't C comments nest?
60778      Branch: perl
60779            ! pp_sys.c
60780 ____________________________________________________________________________
60781 [ 20842] By: jhi                                   on 2003/08/22  14:57:09
60782         Log: Try to dodge getspnam() in AIX.
60783      Branch: perl
60784            ! pp_sys.c
60785 ____________________________________________________________________________
60786 [ 20840] By: jhi                                   on 2003/08/22  13:52:26
60787         Log: Subject: Re: mysterious bytecode.t failure
60788              From: Enache Adrian <enache@rdslink.ro>
60789              Date: Fri, 22 Aug 2003 11:49:34 +0300
60790              Message-ID: <20030822084934.GA1257@ratsnest.hole>
60791      Branch: perl
60792            ! t/base/lex.t
60793 ____________________________________________________________________________
60794 [ 20839] By: jhi                                   on 2003/08/22  13:51:44
60795         Log: Subject: [PATCH] for File::Temp::tempdir(CLEANUP => 1)
60796              From: Slaven Rezic <slaven@rezic.de>
60797              Date: Sun, 17 Aug 2003 12:52:47 +0200 (CEST)
60798              Message-Id: <200308171052.h7HAqlfo026317@vran.herceg.de>
60799      Branch: perl
60800            ! lib/File/Temp.pm lib/File/Temp/t/tempfile.t
60801 ____________________________________________________________________________
60802 [ 20837] By: jhi                                   on 2003/08/22  13:42:24
60803         Log: Just #.
60804      Branch: perl
60805            ! pod/buildtoc pod/perltoc.pod
60806 ____________________________________________________________________________
60807 [ 20835] By: jhi                                   on 2003/08/22  13:32:12
60808         Log: Regen toc.
60809      Branch: perl
60810            ! pod/perltoc.pod
60811 ____________________________________________________________________________
60812 [ 20834] By: jhi                                   on 2003/08/22  13:28:36
60813         Log: Also MANIFEST the vms/perlvms restoration.
60814      Branch: perl
60815            ! MANIFEST
60816 ____________________________________________________________________________
60817 [ 20833] By: jhi                                   on 2003/08/22  13:22:02
60818         Log: In the vms/descrip_mms.template    the perlvms.pod must
60819              be copied from vms/, err, [.vms], not [.pod].
60820      Branch: perl
60821            ! pod/buildtoc vms/descrip_mms.template
60822 ____________________________________________________________________________
60823 [ 20832] By: jhi                                   on 2003/08/22  13:15:35
60824         Log: Retract #20826 and #20831; things are done differently
60825              in VMS, it seems.  Maybe the vms/descrip_mms.template
60826              needs to be changed?
60827      Branch: perl
60828            + vms/perlvms.pod
60829            - pod/perlvms.pod
60830            ! MANIFEST Makefile.SH
60831 ____________________________________________________________________________
60832 [ 20831] By: jhi                                   on 2003/08/22  13:04:47
60833         Log: Rafael spotted that vms/perlvms.pod was still referred to.
60834      Branch: perl
60835            ! Makefile.SH
60836 ____________________________________________________________________________
60837 [ 20829] By: jhi                                   on 2003/08/22  12:22:04
60838         Log: The change #20809 opened up a code path that might leave s unset.
60839      Branch: perl
60840            ! mg.c
60841 ____________________________________________________________________________
60842 [ 20828] By: jhi                                   on 2003/08/22  12:17:49
60843         Log: Subject: [PATCH: lib/File/Path.t] Re: maint @ 20803
60844              From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
60845              Date: Fri, 22 Aug 2003 14:57:09 +0200
60846              Message-ID: <00dd01c368ac$e69146d0$0c2f1fac@R2D2>
60847      Branch: perl
60848            ! lib/File/Path.t
60849 ____________________________________________________________________________
60850 [ 20827] By: jhi                                   on 2003/08/22  12:17:01
60851         Log: Test the correct longness; from Enache.
60852      Branch: perl
60853            ! ext/B/t/assembler.t
60854 ____________________________________________________________________________
60855 [ 20826] By: jhi                                   on 2003/08/22  12:15:28
60856         Log: perlvms moving day, from Craig Berry.
60857      Branch: perl
60858            + pod/perlvms.pod
60859            - vms/perlvms.pod
60860            ! MANIFEST
60861 ____________________________________________________________________________
60862 [ 20825] By: jhi                                   on 2003/08/22  12:14:14
60863         Log: Lower Storable.xs optimization to -O2 on certain
60864              known platforms.
60865      Branch: perl
60866            + ext/Storable/hints/linux.pl
60867            ! MANIFEST
60868 ____________________________________________________________________________
60869 [ 20824] By: jhi                                   on 2003/08/22  08:20:15
60870         Log: Subject: [PATCH] Re: [perl #23463] compiler version on sparc/netbsd
60871              From: Nicholas Clark <nick@ccl4.org>
60872              Date: Thu, 21 Aug 2003 22:26:18 +0100
60873              Message-ID: <20030821222618.T558@plum.flirble.org>
60874      Branch: perl
60875            ! t/op/pack.t
60876 ____________________________________________________________________________
60877 [ 20823] By: jhi                                   on 2003/08/22  08:16:47
60878         Log: Subject: Re: [perl #23463]: compiler version on sparc/netbsd
60879              From: alian@cpan.org (Alian)
60880              Date: Wed, 20 Aug 2003 20:39:17 +0200
60881              Message-ID: <3F43C055.6030709@jupiter.alianet>
60882      Branch: perl
60883            ! t/op/pack.t
60884 ____________________________________________________________________________
60885 [ 20822] By: jhi                                   on 2003/08/22  08:01:57
60886         Log: Try to make the use of utf8 as clear as possible.
60887      Branch: perl
60888            ! lib/utf8.pm
60889 ____________________________________________________________________________
60890 [ 20821] By: jhi                                   on 2003/08/22  07:51:21
60891         Log: Put the tests of the change #19064 back, but disable them.
60892      Branch: perl
60893            ! t/op/args.t
60894 ____________________________________________________________________________
60895 [ 20820] By: jhi                                   on 2003/08/22  06:47:50
60896         Log: Advertise the encoding pragma at the utf8 pragma.
60897      Branch: perl
60898            ! lib/utf8.pm
60899 ____________________________________________________________________________
60900 [ 20819] By: jhi                                   on 2003/08/22  06:31:29
60901         Log: Subject: [PATCH] grok_* symbols missing in Devel::PPPort (2nd attempt)
60902              From: Tassilo von Parseval <tassilo.parseval@post.rwth-aachen.de>
60903              Date: Fri, 22 Aug 2003 09:01:09 +0200
60904              Message-id: <20030822070109.GA1029@ethan>
60905      Branch: perl
60906            ! ext/Devel/PPPort/Changes ext/Devel/PPPort/PPPort.pm
60907            ! ext/Devel/PPPort/t/test.t
60908 ____________________________________________________________________________
60909 [ 20817] By: jhi                                   on 2003/08/22  05:18:53
60910         Log: Subject: [PATCH] perl-5.8.0, langinfo.h and YESSTR
60911              From: insecure <insecure@mail.od.ua>
60912              Date: Thu, 21 Aug 2003 21:37:56 +0300
60913              Message-Id: <200308212137.57016.insecure@mail.od.ua>
60914      Branch: perl
60915            ! ext/I18N/Langinfo/Langinfo.xs
60916 ____________________________________________________________________________
60917 [ 20816] By: jhi                                   on 2003/08/22  05:15:30
60918         Log: More bytecode patching from Enache.
60919      Branch: perl
60920            ! bytecode.pl ext/B/B/Asmdata.pm ext/B/B/Assembler.pm
60921            ! ext/B/B/Disassembler.pm ext/ByteLoader/bytecode.h
60922 ____________________________________________________________________________
60923 [ 20815] By: jhi                                   on 2003/08/22  05:06:58
60924         Log: Subject: Re: pod cleanup
60925              From: Ken Williams <ken@mathforum.org>
60926              Date: Thu, 21 Aug 2003 21:24:57 -0500
60927              Message-Id: <D2C0AA31-D447-11D7-8495-003065F6D85A@mathforum.org>
60928      Branch: perl
60929            ! lib/File/Spec/Cygwin.pm lib/File/Spec/OS2.pm
60930 ____________________________________________________________________________
60931 [ 20814] By: jhi                                   on 2003/08/22  05:05:52
60932         Log: Do not edit perltoc since it is autogenerated.
60933      Branch: perl
60934            ! pod/buildtoc
60935 ____________________________________________________________________________
60936 [ 20813] By: jhi                                   on 2003/08/22  04:57:12
60937         Log: Subject: [PATCH] Re: pod cleanup
60938              From: Ronald J Kimball <rjk@linguist.thayer.dartmouth.edu>
60939              Date: Thu, 21 Aug 2003 17:09:17 -0400
60940              Message-ID: <20030821210917.GB164965@linguist.thayer.dartmouth.edu>
60941
60942              (the pod part)
60943      Branch: perl
60944            ! pod/perl5005delta.pod pod/perlfaq4.pod pod/perlhack.pod
60945            ! pod/perlipc.pod pod/perlpacktut.pod
60946 ____________________________________________________________________________
60947 [ 20811] By: jhi                                   on 2003/08/22  04:46:58
60948         Log: No need to E<gt>.
60949      Branch: perl
60950            ! pod/perluniintro.pod
60951 ____________________________________________________________________________
60952 [ 20810] By: jhi                                   on 2003/08/22  04:46:01
60953         Log: Add File::Temp's OO test.
60954      Branch: perl
60955            + lib/File/Temp/t/object.t
60956            ! MANIFEST
60957 ____________________________________________________________________________
60958 [ 20809] By: rgs                                   on 2003/08/21  19:07:22
60959         Log: The magic variables that alter STDOUT have a tendancy to segfault
60960              when accessed if STDOUT is undefined. Protect them.
60961      Branch: perl
60962            ! mg.c
60963 ____________________________________________________________________________
60964 [ 20808] By: jhi                                   on 2003/08/21  18:39:36
60965         Log: Mention the Unicode UTR #18 version referenced.
60966      Branch: perl
60967            ! pod/perlunicode.pod
60968 ____________________________________________________________________________
60969 [ 20807] By: jhi                                   on 2003/08/21  18:22:22
60970         Log: Must close so that unlink works portably.
60971      Branch: perl
60972            ! t/io/utf8.t
60973 ____________________________________________________________________________
60974 [ 20806] By: jhi                                   on 2003/08/21  18:15:07
60975         Log: Subject: [perluniintro.pod] pod markup fix
60976              From: Stas Bekman <stas@stason.org>
60977              Date: Thu, 21 Aug 2003 11:41:01 -0700
60978              Message-ID: <3F45123D.8020805@stason.org>
60979      Branch: perl
60980            ! pod/perluniintro.pod
60981 ____________________________________________________________________________
60982 [ 20805] By: jhi                                   on 2003/08/21  18:11:30
60983         Log: Subject: [PATCH] utf8 variable names scrambled in error messages
60984              From: Enache Adrian <enache@rdslink.ro>
60985              Date: Thu, 21 Aug 2003 21:17:26 +0300
60986              Message-ID: <20030821181726.GA1241@ratsnest.hole>
60987      Branch: perl
60988            ! gv.c t/op/die.t
60989 ____________________________________________________________________________
60990 [ 20804] By: jhi                                   on 2003/08/21  18:09:10
60991         Log: Fix the syswrite downgrade bug of
60992              [perl #23428] Somethings rotten in unicode semantics
60993      Branch: perl
60994            ! pp_sys.c t/io/utf8.t
60995 ____________________________________________________________________________
60996 [ 20801] By: jhi                                   on 2003/08/21  15:06:16
60997         Log: No more public cwd(), use private _cwd().
60998      Branch: perl
60999            ! lib/File/Spec/t/Spec.t
61000 ____________________________________________________________________________
61001 [ 20799] By: jhi                                   on 2003/08/21  14:20:04
61002         Log: Underline the fact that abs2rel() makes no sense
61003              if it spans multiple roots.
61004      Branch: perl
61005            ! lib/File/Spec.pm lib/File/Spec/Unix.pm
61006 ____________________________________________________________________________
61007 [ 20798] By: jhi                                   on 2003/08/21  14:12:29
61008         Log: Rename the internal cwd() to _cwd() (it's not curdir).
61009      Branch: perl
61010            ! lib/File/Spec/Cygwin.pm lib/File/Spec/Epoc.pm
61011            ! lib/File/Spec/Functions.pm lib/File/Spec/Mac.pm
61012            ! lib/File/Spec/OS2.pm lib/File/Spec/Unix.pm
61013            ! lib/File/Spec/VMS.pm lib/File/Spec/Win32.pm
61014 ____________________________________________________________________________
61015 [ 20797] By: jhi                                   on 2003/08/21  14:05:18
61016         Log: Subject: Re: [PATCH: perl@20760] clean up quotation issue for use with MMS on VMS
61017              From: PPrymmer@factset.com
61018              Message-ID: <OF261B78F0.19FBE242-ON85256D88.00091B48-85256D88.000A179D@factset.com>
61019              Date: Tue, 19 Aug 2003 21:50:12 -0400
61020      Branch: perl
61021            ! lib/ExtUtils/MM_Unix.pm
61022 ____________________________________________________________________________
61023 [ 20795] By: jhi                                   on 2003/08/21  04:42:56
61024         Log: Retract #19064, broke mod_perl flushing (localisation of $|).
61025              http://public.activestate.com/cgi-bin/perlbrowse?patch=19064
61026              http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2003-08/msg01466.html
61027      Branch: perl
61028            ! pp_ctl.c pp_hot.c scope.c t/op/args.t
61029 ____________________________________________________________________________
61030 [ 20794] By: jhi                                   on 2003/08/21  04:35:54
61031         Log: MPE/iX does not have nanosleep() (the test makes
61032              a wrong conclusion of the linking succeeding)
61033      Branch: perl
61034            ! ext/Time/HiRes/Makefile.PL
61035 ____________________________________________________________________________
61036 [ 20793] By: jhi                                   on 2003/08/21  04:35:05
61037         Log: Subject: Re: untieing your victim during the act
61038              From: Dave Mitchell <davem@fdgroup.com>
61039              Date: Wed, 20 Aug 2003 20:44:53 +0100
61040              Message-ID: <20030820194453.GD27719@fdgroup.com>
61041      Branch: perl
61042            ! mg.c
61043 ____________________________________________________________________________
61044 [ 20792] By: jhi                                   on 2003/08/21  04:30:54
61045         Log: Byteloader patching from Enache continues;
61046              PADOFFSET handling was wrong.
61047      Branch: perl
61048            ! bytecode.pl ext/B/B/Asmdata.pm ext/B/B/Assembler.pm
61049            ! ext/B/t/assembler.t ext/ByteLoader/bytecode.h
61050            ! ext/ByteLoader/byterun.c
61051 ____________________________________________________________________________
61052 [ 20791] By: jhi                                   on 2003/08/20  13:55:35
61053         Log: Subject: [PATCH perl@20760] Remove redundant targets from Win32 Makefile
61054              From: Steve Hay <steve.hay@uk.radan.com>
61055              Date: Wed, 20 Aug 2003 10:54:46 +0100
61056              Message-ID: <3F434566.3030602@uk.radan.com>
61057      Branch: perl
61058            ! win32/Makefile win32/makefile.mk
61059 ____________________________________________________________________________
61060 [ 20790] By: jhi                                   on 2003/08/20  11:01:52
61061         Log: Upgrade to Encode 1.98.
61062      Branch: perl
61063            ! ext/Encode/AUTHORS ext/Encode/Changes ext/Encode/Encode.pm
61064            ! ext/Encode/META.yml ext/Encode/bin/enc2xs
61065            ! ext/Encode/encoding.pm ext/Encode/lib/Encode/Alias.pm
61066            ! ext/Encode/lib/Encode/MIME/Header.pm ext/Encode/t/enc_eucjp.t
61067            ! ext/Encode/t/enc_utf8.t ext/Encode/t/mime-header.t
61068            ! ext/Encode/ucm/macArabic.ucm ext/Encode/ucm/macFarsi.ucm
61069            ! ext/Encode/ucm/macHebrew.ucm
61070 ____________________________________________________________________________
61071 [ 20789] By: jhi                                   on 2003/08/20  10:49:51
61072         Log: Patch from Enache for the crashing of bytecode.t in Tru64.
61073      Branch: perl
61074            ! ext/B/B/Bytecode.pm ext/ByteLoader/bytecode.h
61075 ____________________________________________________________________________
61076 [ 20786] By: rgs                                   on 2003/08/19  20:22:07
61077         Log: t/TEST fails to fail when it can't find tests.
61078      Branch: perl
61079            ! t/TEST
61080 ____________________________________________________________________________
61081 [ 20785] By: jhi                                   on 2003/08/19  19:34:18
61082         Log: Manifest.t.ation of Schwern.
61083      Branch: perl
61084            ! lib/ExtUtils/t/Manifest.t
61085 ____________________________________________________________________________
61086 [ 20783] By: jhi                                   on 2003/08/19  19:24:00
61087         Log: Nick's podulator was right, I just hadn't read the manual...
61088              the vms\perlvms.pod lines needed to be moved.
61089      Branch: perl
61090            ! win32/Makefile win32/makefile.mk
61091 ____________________________________________________________________________
61092 [ 20781] By: jhi                                   on 2003/08/19  16:59:49
61093         Log: Subject: Re: [perl #23304] Installing perl breaks redhat-config scripts[was: New (well  known) printer won't install in RH-9]
61094              From: Andy Dougherty <doughera@lafayette.edu>
61095              Date: Tue, 19 Aug 2003 10:45:24 -0400 (EDT)
61096              Message-ID: <Pine.SOL.4.53.0308191027250.6665@maxwell.phys.lafayette.edu>
61097      Branch: perl
61098            ! INSTALL
61099 ____________________________________________________________________________
61100 [ 20780] By: jhi                                   on 2003/08/19  16:54:48
61101         Log: Subject: [PATCH] Can't build thread on openbsd sparc64 => B.c:5078: virtual memory exhausted
61102              From: alian <alian@cpan.org>
61103              Date: Tue, 19 Aug 2003 18:18:03 +0200
61104              Message-ID: <20030819161650.65754.qmail@onion.perl.org>
61105      Branch: perl
61106            + ext/B/hints/openbsd.pl
61107            ! MANIFEST
61108 ____________________________________________________________________________
61109 [ 20779] By: jhi                                   on 2003/08/19  16:49:22
61110         Log: Subject: Re: [PATCH] Re: [PATCH] maintperl - File::Spec cwd() stuff
61111              From: Ilya Zakharevich <ilya@Math.Berkeley.EDU>
61112              Date: Tue, 19 Aug 2003 08:28:14 -0700
61113              Message-ID: <20030819152814.GA15441@math.berkeley.edu>
61114      Branch: perl
61115            ! lib/File/Spec/OS2.pm
61116 ____________________________________________________________________________
61117 [ 20778] By: jhi                                   on 2003/08/19  15:09:30
61118         Log: Unnecessary whitespace diff.
61119      Branch: perl
61120            ! lib/ExtUtils/MakeMaker.pm
61121 ____________________________________________________________________________
61122 [ 20777] By: jhi                                   on 2003/08/19  15:05:18
61123         Log: One less failure.
61124      Branch: perl
61125            ! lib/ExtUtils/t/Manifest.t
61126 ____________________________________________________________________________
61127 [ 20776] By: jhi                                   on 2003/08/19  13:36:03
61128         Log: Replace #20772 with
61129
61130              Subject: Re: [PATCH: perl@20760] VMS specific fix for lib/ExtUtils/t/Manifest.t
61131              From: PPrymmer@factset.com
61132              Message-ID: <OFE22C35CE.D5CB1A7F-ON85256D87.004E3BCA-85256D87.004F9EF2@factset.com>
61133              Date: Tue, 19 Aug 2003 10:29:44 -0400
61134      Branch: perl
61135            ! lib/ExtUtils/t/Manifest.t
61136 ____________________________________________________________________________
61137 [ 20775] By: jhi                                   on 2003/08/19  13:29:13
61138         Log: (From Enache) Keep bytecode files (.plc) around in case
61139              of failures.  (Currently Tru64 is reliably barfing.)
61140      Branch: perl
61141            ! ext/B/t/bytecode.t
61142 ____________________________________________________________________________
61143 [ 20774] By: jhi                                   on 2003/08/19  13:20:59
61144         Log: 's buildtoc now.
61145      Branch: perl
61146            ! README.cygwin
61147 ____________________________________________________________________________
61148 [ 20773] By: jhi                                   on 2003/08/19  13:19:24
61149         Log: These are kind of important.
61150      Branch: perl
61151            ! MANIFEST
61152 ____________________________________________________________________________
61153 [ 20772] By: jhi                                   on 2003/08/19  13:13:26
61154         Log: Replace #20763 with
61155
61156              Subject: Re: [PATCH: perl@20760] VMS specific fix for lib/ExtUtils/t/Manifest.t
61157              From: Michael G Schwern <schwern@pobox.com>
61158              Date: Mon, 18 Aug 2003 17:07:30 -0700
61159              Message-ID: <20030819000729.GG14782@windhund.schwern.org>
61160      Branch: perl
61161            ! lib/ExtUtils/t/Manifest.t
61162 ____________________________________________________________________________
61163 [ 20771] By: jhi                                   on 2003/08/19  13:10:42
61164         Log: Subject: [PATCH] Re: [PATCH] maintperl - File::Spec cwd() stuff
61165              From: Michael G Schwern <schwern@pobox.com>
61166              Date: Mon, 18 Aug 2003 18:02:08 -0700
61167              Message-ID: <20030819010208.GI14782@windhund.schwern.org>
61168      Branch: perl
61169            ! lib/File/Spec/OS2.pm
61170 ____________________________________________________________________________
61171 [ 20770] By: jhi                                   on 2003/08/19  13:08:45
61172         Log: Subject: [PATCH] maintperl - File::Spec cwd() stuff
61173              From: Ken Williams <ken@mathforum.org>
61174              Date: Mon, 18 Aug 2003 17:07:43 -0500
61175              Message-Id: <645E5A7D-D1C8-11D7-84BF-003065F6D85A@mathforum.org>
61176      Branch: perl
61177            ! lib/File/Spec/OS2.pm lib/File/Spec/Unix.pm
61178            ! lib/File/Spec/t/Spec.t
61179 ____________________________________________________________________________
61180 [ 20769] By: jhi                                   on 2003/08/19  12:25:07
61181         Log: Update the history records.
61182      Branch: perl
61183            ! pod/perlhist.pod
61184 ____________________________________________________________________________
61185 [ 20768] By: jhi                                   on 2003/08/19  12:15:58
61186         Log: Still trying to unify MANIFEST sorting.
61187      Branch: perl
61188            ! MANIFEST pod/buildtoc
61189 ____________________________________________________________________________
61190 [ 20767] By: jhi                                   on 2003/08/19  12:10:00
61191         Log: Try to unify the MANIFEST sorting.
61192      Branch: perl
61193            ! MANIFEST Makefile.SH pod/buildtoc
61194 ____________________________________________________________________________
61195 [ 20766] By: jhi                                   on 2003/08/19  12:04:22
61196         Log: Nicholas Clark's podulator.  The win32 makefile
61197              generation doesn't seem to be working yet.
61198      Branch: perl
61199            + pod.lst pod/buildtoc
61200            - pod/buildtoc.PL
61201            ! MANIFEST Makefile.SH pod/Makefile.SH pod/perl.pod
61202            ! pod/perltoc.pod vms/descrip_mms.template win32/pod.mak
61203 ____________________________________________________________________________
61204 [ 20765] By: jhi                                   on 2003/08/19  03:10:57
61205         Log: Pod tweaks for NEXT from Alan Ferrency.
61206      Branch: perl
61207            ! lib/NEXT.pm
61208 ____________________________________________________________________________
61209 [ 20764] By: jhi                                   on 2003/08/18  19:34:16
61210         Log: Typo tweaks from Gerrit P. Haase.  Fcntl, fcntl, fcntl.
61211      Branch: perl
61212            ! ext/Fcntl/Fcntl.pm pod/perlfunc.pod t/io/utf8.t
61213 ____________________________________________________________________________
61214 [ 20763] By: jhi                                   on 2003/08/18  19:01:33
61215         Log: Subject: [PATCH: perl@20760] VMS specific fix for lib/ExtUtils/t/Manifest.t
61216              From: PPrymmer@factset.com
61217              Date: Mon, 18 Aug 2003 15:57:12 -0400
61218              Message-ID: <OF314202D4.49371ADF-ON85256D86.006CEBE2-85256D86.006D9AA7@factset.com>
61219      Branch: perl
61220            ! lib/ExtUtils/t/Manifest.t
61221 ____________________________________________________________________________
61222 [ 20762] By: jhi                                   on 2003/08/18  18:57:22
61223         Log: Subject: [PATCH: perl@20760] clean up quotation issue for use with MMS on VMS
61224              From: PPrymmer@factset.com
61225              Date: Mon, 18 Aug 2003 14:28:22 -0400
61226              Message-ID: <OFAF7796C8.7F204EDE-ON85256D86.0063976D-85256D86.006578B0@factset.com>
61227      Branch: perl
61228            ! vms/descrip_mms.template
61229 ____________________________________________________________________________
61230 [ 20761] By: jhi                                   on 2003/08/18  18:53:05
61231         Log: Use the base class cwd() method.
61232      Branch: perl
61233            ! lib/File/Spec/VMS.pm
61234 ____________________________________________________________________________
61235 [ 20758] By: jhi                                   on 2003/08/18  09:37:22
61236         Log: Subject: [PATCH] Uppercase globals in Pod::Html
61237              From: Michael G Schwern <schwern@pobox.com>
61238              Date: Mon, 18 Aug 2003 03:29:09 -0700
61239              Message-ID: <20030818102909.GJ823@windhund.schwern.org>
61240      Branch: perl
61241            ! lib/Pod/Html.pm
61242 ____________________________________________________________________________
61243 [ 20756] By: jhi                                   on 2003/08/18  08:46:52
61244         Log: Subject: [PATCH] Pod::Html  unifying global variable declaration and initialization
61245              From: Michael G Schwern <schwern@pobox.com>
61246              Date: Mon, 18 Aug 2003 02:44:31 -0700
61247              Message-ID: <20030818094431.GG823@windhund.schwern.org>
61248      Branch: perl
61249            ! lib/Pod/Html.pm
61250 ____________________________________________________________________________
61251 [ 20755] By: jhi                                   on 2003/08/18  08:41:24
61252         Log: Warn about the slowness of memory debuggers.
61253      Branch: perl
61254            ! pod/perlhack.pod
61255 ____________________________________________________________________________
61256 [ 20754] By: jhi                                   on 2003/08/18  08:34:00
61257         Log: Upgrade to ExtUtils::MakeMaker 6.16.
61258      Branch: perl
61259            + lib/ExtUtils/t/prereq_print.t
61260            ! MANIFEST lib/ExtUtils/Changes lib/ExtUtils/Installed.pm
61261            ! lib/ExtUtils/MANIFEST.SKIP lib/ExtUtils/META.yml
61262            ! lib/ExtUtils/MM_Win32.pm lib/ExtUtils/MM_Win95.pm
61263            ! lib/ExtUtils/MakeMaker.pm lib/ExtUtils/Manifest.pm
61264            ! lib/ExtUtils/t/00setup_dummy.t lib/ExtUtils/t/Manifest.t
61265 ____________________________________________________________________________
61266 [ 20753] By: jhi                                   on 2003/08/18  08:21:36
61267         Log: Subject: Re: [PATCH] Pod::Html test clean-up (was Re: maint @ 20617 (on VMS))
61268              From: Michael G Schwern <schwern@pobox.com>
61269              Date: Mon, 18 Aug 2003 01:34:34 -0700
61270              Message-ID: <20030818083433.GB823@windhund.schwern.org>
61271      Branch: perl
61272            ! lib/Pod/Html.pm lib/Pod/t/pod2html-lib.pl
61273 ____________________________________________________________________________
61274 [ 20752] By: jhi                                   on 2003/08/18  07:01:16
61275         Log: I could have sworn the base class method was there.
61276      Branch: perl
61277            ! lib/File/Spec/Unix.pm
61278 ____________________________________________________________________________
61279 [ 20751] By: jhi                                   on 2003/08/18  05:09:34
61280         Log: utf8::is_utf8() wasn't there in 5.8.0.
61281      Branch: perl
61282            ! lib/utf8.pm
61283 ____________________________________________________________________________
61284 [ 20750] By: jhi                                   on 2003/08/18  04:53:22
61285         Log: Subject: [PATCH] Pod::Html test clean-up (was Re: maint @ 20617 (on VMS))
61286              From: "Craig A. Berry" <craigberry@mac.com>
61287              Date: Sun, 17 Aug 2003 23:28:21 -0500
61288              Message-ID: <3F4055E5.2070407@mac.com>
61289      Branch: perl
61290            ! lib/Pod/Html.pm lib/Pod/t/pod2html-lib.pl
61291 ____________________________________________________________________________
61292 [ 20749] By: jhi                                   on 2003/08/17  19:27:03
61293         Log: Subject: [PATCH] Taint safe Cwd::_qnx_abs_path()
61294              From: Michael G Schwern <schwern@pobox.com>
61295              Date: Sat, 16 Aug 2003 14:58:25 -0700
61296              Message-ID: <20030816215824.GF5859@windhund.schwern.org>
61297
61298              (plus local *REALPATH)
61299      Branch: perl
61300            ! lib/Cwd.pm
61301 ____________________________________________________________________________
61302 [ 20747] By: jhi                                   on 2003/08/17  08:44:18
61303         Log: Subject: [PATCH] Re: [BUG] string loses its utf8 flag on die
61304              From: Enache Adrian <enache@rdslink.ro>
61305              Date: Sat, 16 Aug 2003 16:03:16 +0300
61306              Message-ID: <20030816130316.GA1654@ratsnest.hole>
61307
61308              Subject: Re: [PATCH] Re: [BUG] string loses its utf8 flag on die
61309              From: Enache Adrian <enache@rdslink.ro>
61310              Date: Sun, 17 Aug 2003 04:42:22 +0300
61311              Message-ID: <20030817014222.GA1287@ratsnest.hole>
61312      Branch: perl
61313            ! t/op/die.t util.c
61314 ____________________________________________________________________________
61315 [ 20745] By: jhi                                   on 2003/08/17  07:52:47
61316         Log: The lib/Cwd.pm diet part of
61317
61318              Subject: [PATCH] File::Spec on diet
61319              From: Tels <perl_dummy@bloodgate.com>
61320              Date: Mon, 7 Jul 2003 22:41:42 +0200
61321              Message-Id: <200307072235.03364@bloodgate.com>
61322      Branch: perl
61323            ! lib/Cwd.pm
61324 ____________________________________________________________________________
61325 [ 20744] By: jhi                                   on 2003/08/17  07:50:00
61326         Log: The "reduce memory footprint and increase speed by not
61327              unconditionally pulling in Cwd"    part of
61328
61329              Subject: [PATCH] File::Spec on diet
61330              From: Tels <perl_dummy@bloodgate.com>
61331              Date: Mon, 7 Jul 2003 22:41:42 +0200
61332              Message-Id: <200307072235.03364@bloodgate.com>
61333
61334              was still valid.
61335      Branch: perl
61336            ! lib/File/Spec/Cygwin.pm lib/File/Spec/Epoc.pm
61337            ! lib/File/Spec/Mac.pm lib/File/Spec/OS2.pm
61338            ! lib/File/Spec/Unix.pm lib/File/Spec/VMS.pm
61339            ! lib/File/Spec/Win32.pm
61340 ____________________________________________________________________________
61341 [ 20741] By: jhi                                   on 2003/08/17  06:53:07
61342         Log: File::Temp 0.14 from Tim Jenness, now with OO interface.
61343      Branch: perl
61344            ! lib/File/Temp.pm
61345 ____________________________________________________________________________
61346 [ 20739] By: jhi                                   on 2003/08/16  21:03:07
61347         Log: Subject: [PATCH: perl@20724] fixes for installperl and the vmsdebug build on VMS
61348              From: PPrymmer@factset.com
61349              Date: Sat, 16 Aug 2003 11:55:58 -0400
61350              Message-ID: <OFA82C9B0A.6463DD81-ON85256D84.0056DF1B-85256D84.005784F2@factset.com>
61351      Branch: perl
61352            ! installperl
61353 ____________________________________________________________________________
61354 [ 20738] By: jhi                                   on 2003/08/16  20:39:47
61355         Log: Update to Filter::Util::Call 1.6 from CPAN, but keep our
61356              $VERSION at 1.601 so that we are different in version
61357              than 5.8.0 since the module is different (one doc tweak).
61358      Branch: perl
61359            ! ext/Filter/Util/Call/Call.pm
61360 ____________________________________________________________________________
61361 [ 20737] By: jhi                                   on 2003/08/16  20:25:21
61362         Log: valgrind --help didn't return a happy exit status.
61363      Branch: perl
61364            ! Makefile.SH
61365 ____________________________________________________________________________
61366 [ 20736] By: rgs                                   on 2003/08/16  19:54:43
61367         Log: Avoid a "Subroutine Cwd::fastcwd redefined" warning when
61368              loading Cwd. Undefing &Cwd::fastcwd beforehand is inconvenient
61369              because loading the XS part of Cwd might fail.
61370      Branch: perl
61371            ! lib/Cwd.pm
61372 ____________________________________________________________________________
61373 [ 20735] By: rgs                                   on 2003/08/16  19:39:39
61374         Log: Subject: [patch lib/utf8.pm] doc tweaks
61375              From: Stas Bekman <stas@stason.org>
61376              Date: Sat, 16 Aug 2003 13:30:28 -0700
61377              Message-ID: <3F3E9464.3030202@stason.org>
61378      Branch: perl
61379            ! lib/utf8.pm
61380 ____________________________________________________________________________
61381 [ 20734] By: rgs                                   on 2003/08/16  19:32:05
61382         Log: Subject: [PATCH] Taint problems in Cwd::abs_path
61383              From: Michael G Schwern <schwern@pobox.com>
61384              Date: Fri, 15 Aug 2003 18:43:45 -0700
61385              Message-ID: <20030816014345.GE4023@windhund.schwern.org>
61386      Branch: perl
61387            ! ext/Cwd/t/taint.t lib/Cwd.pm
61388 ____________________________________________________________________________
61389 [ 20733] By: jhi                                   on 2003/08/16  17:03:15
61390         Log: No ODBM for Mac OS X, even if we have Fink GDBM libraries.
61391      Branch: perl
61392            ! hints/darwin.sh
61393 ____________________________________________________________________________
61394 [ 20732] By: jhi                                   on 2003/08/16  16:52:50
61395         Log: Add valgrind testing target.
61396      Branch: perl
61397            ! Makefile.SH pod/perlhack.pod t/TEST
61398 ____________________________________________________________________________
61399 [ 20731] By: jhi                                   on 2003/08/16  14:37:33
61400         Log: More networking negativity.
61401      Branch: perl
61402            ! pod/perlport.pod
61403 ____________________________________________________________________________
61404 [ 20730] By: rgs                                   on 2003/08/16  12:12:43
61405         Log: Remove a useless vstring reference in perlnumber.pod.
61406      Branch: perl
61407            ! pod/perlnumber.pod
61408 ____________________________________________________________________________
61409 [ 20729] By: jhi                                   on 2003/08/16  10:11:30
61410         Log: README.macosx updates about known problems.
61411      Branch: perl
61412            ! README.macosx
61413 ____________________________________________________________________________
61414 [ 20728] By: jhi                                   on 2003/08/16  08:32:04
61415         Log: Subject: [PATCH] Small test tweak for Memoize/t/error.t
61416              From: Andreas J Koenig <andreas.koenig@anima.de>
61417              Date: Fri, 15 Aug 2003 11:55:22 +0200
61418              Message-ID: <87smo39red.fsf@franz.ak.mind.de>
61419      Branch: perl
61420            ! lib/Memoize/t/errors.t
61421 ____________________________________________________________________________
61422 [ 20727] By: jhi                                   on 2003/08/16  07:25:08
61423         Log: Upgrade to File::Temp 0.13 from CPAN--
61424              but since we had a '0.13' already in 5.8.0, make this
61425              still a '0.131'.
61426      Branch: perl
61427            ! lib/File/Temp.pm lib/File/Temp/t/mktemp.t
61428            ! lib/File/Temp/t/posix.t lib/File/Temp/t/security.t
61429            ! lib/File/Temp/t/tempfile.t
61430 ____________________________________________________________________________
61431 [ 20726] By: jhi                                   on 2003/08/15  20:29:10
61432         Log: Clarify the E flag.
61433      Branch: perl
61434            ! embed.fnc
61435 ____________________________________________________________________________
61436 [ 20725] By: jhi                                   on 2003/08/15  15:37:36
61437         Log: Integrate from maint:
61438              [ 20724]
61439              No peeking before the buffer.
61440              (This was probably the random failure showing up
61441              in Solaris with t/uni/tr_7jis.t)
61442      Branch: perl
61443           !> toke.c
61444 ____________________________________________________________________________
61445 [ 20721] By: jhi                                   on 2003/08/15  08:44:42
61446         Log: Subject: [PATCH] TEST script (Was: Not ok 20712ff)
61447              From: Andreas J Koenig <andreas.koenig@anima.de>
61448              Date: Fri, 15 Aug 2003 11:37:29 +0200
61449              Message-ID: <87wudf9s86.fsf_-_@franz.ak.mind.de>
61450      Branch: perl
61451            ! t/TEST
61452 ____________________________________________________________________________
61453 [ 20720] By: jhi                                   on 2003/08/15  08:40:07
61454         Log: Integrate from maint:
61455              [ 20719]
61456              no_plan is not a good plan until TEST is fixed.
61457      Branch: perl
61458           !> lib/NEXT/t/actual.t lib/NEXT/t/actuns.t lib/NEXT/t/unseen.t
61459 ____________________________________________________________________________
61460 [ 20717] By: jhi                                   on 2003/08/15  05:06:39
61461         Log: Up the F::S subpackage versions; up the JPL JNI.pm version
61462              (the JPL cvs seems to be out of order), the only real change
61463              (in JNI.xs) seems to have been CRLF->LF conversion.
61464      Branch: perl
61465            ! jpl/JNI/JNI.pm lib/File/Spec/Cygwin.pm lib/File/Spec/Unix.pm
61466 ____________________________________________________________________________
61467 [ 20716] By: jhi                                   on 2003/08/15  04:58:34
61468         Log: Upgrade to Test::Harness 2.30.
61469      Branch: perl
61470            ! lib/Test/Harness.pm lib/Test/Harness/Changes
61471            ! lib/Test/Harness/Straps.pm lib/Test/Harness/t/pod.t
61472 ____________________________________________________________________________
61473 [ 20715] By: jhi                                   on 2003/08/15  04:41:37
61474         Log: Damian replied that he'll make a CPAN Switch 2.10
61475              out of 5.8.1 Switch 2.10.
61476      Branch: perl
61477            ! lib/Switch.pm
61478 ____________________________________________________________________________
61479 [ 20714] By: jhi                                   on 2003/08/14  18:35:07
61480         Log: Add PerlIO::via::QuotedPrint to Maintainers.
61481      Branch: perl
61482            ! Porting/Maintainers.pl
61483 ____________________________________________________________________________
61484 [ 20713] By: jhi                                   on 2003/08/14  18:33:06
61485         Log: Upgrade to PerlIO::via::Quoted 0.05.
61486      Branch: perl
61487            ! lib/PerlIO/via/QuotedPrint.pm lib/PerlIO/via/t/QuotedPrint.t
61488 ____________________________________________________________________________
61489 [ 20712] By: jhi                                   on 2003/08/14  18:29:19
61490         Log: Upgrade to NEXT 0.60.
61491      Branch: perl
61492            ! lib/NEXT.pm lib/NEXT/Changes lib/NEXT/README
61493            ! lib/NEXT/t/actual.t lib/NEXT/t/actuns.t lib/NEXT/t/unseen.t
61494 ____________________________________________________________________________
61495 [ 20711] By: jhi                                   on 2003/08/14  17:31:55
61496         Log: perlcheat is a reference, not tutorial.
61497      Branch: perl
61498            ! pod/perl.pod
61499 ____________________________________________________________________________
61500 [ 20710] By: jhi                                   on 2003/08/14  16:48:34
61501         Log: Subject: PATCH RC4 IO::Dir
61502              From: Mark Jason Dominus <mjd@plover.com>
61503              Date: Thu, 14 Aug 2003 12:02:59 -0400
61504              Message-ID: <20030814160259.27586.qmail@plover.com>
61505      Branch: perl
61506            ! ext/IO/lib/IO/Dir.pm
61507 ____________________________________________________________________________
61508 [ 20708] By: jhi                                   on 2003/08/14  14:45:20
61509         Log: win32/fcrypt.c was forgotten.
61510      Branch: perl
61511            ! MANIFEST
61512 ____________________________________________________________________________
61513 [ 20706] By: jhi                                   on 2003/08/14  14:40:30
61514         Log: Not so great a version bump, let Paul release 0.17.
61515      Branch: perl
61516            ! ext/Filter/Util/Call/Call.pm
61517 ____________________________________________________________________________
61518 [ 20705] By: jhi                                   on 2003/08/14  14:38:40
61519         Log: One more XS change versus no VERSION change.
61520              (Remaining in JNI.pm/xs, don't know what to about that
61521              since JNI is kind of "stable".)
61522      Branch: perl
61523            ! ext/Filter/Util/Call/Call.pm
61524 ____________________________________________________________________________
61525 [ 20704] By: jhi                                   on 2003/08/14  14:36:45
61526         Log: XS contents changes versus VERSION non-changes.
61527      Branch: perl
61528            ! ext/NDBM_File/NDBM_File.pm ext/ODBM_File/ODBM_File.pm
61529            ! ext/PerlIO/scalar/scalar.pm ext/SDBM_File/SDBM_File.pm
61530            ! ext/Socket/Socket.pm
61531 ____________________________________________________________________________
61532 [ 20702] By: jhi                                   on 2003/08/14  14:24:40
61533         Log: Subject: [PATCH perl@20684] Include fcrypt.c for crypt() on Windows
61534              From: Steve Hay <steve.hay@uk.radan.com>
61535              Date: Thu, 14 Aug 2003 15:39:16 +0100
61536              Message-ID: <3F3B9F14.4040609@uk.radan.com>
61537
61538              (Sarathy okayed the idea.)
61539      Branch: perl
61540            + win32/fcrypt.c
61541            - win32/des_fcrypt.patch
61542            ! MANIFEST README.win32 win32/Makefile win32/makefile.mk
61543 ____________________________________________________________________________
61544 [ 20701] By: jhi                                   on 2003/08/14  14:17:42
61545         Log: Subject: [DOC PATCH] warnings.pl
61546              From: Elizabeth Mattijsen <liz@dijkmat.nl>
61547              Date: Thu, 14 Aug 2003 13:12:55 +0200
61548              Message-id: <p05111b00bb611e8835e0@[192.168.56.3]>
61549
61550              (some rewording)
61551      Branch: perl
61552            ! lib/warnings.pm warnings.pl
61553 ____________________________________________________________________________
61554 [ 20700] By: gbarr                                 on 2003/08/14  14:12:45
61555         Log: Update to Scalar-List-Utils 1.12
61556      Branch: perl
61557            ! ext/List/Util/ChangeLog ext/List/Util/Util.xs
61558            ! ext/List/Util/lib/List/Util.pm
61559            ! ext/List/Util/lib/Scalar/Util.pm ext/List/Util/t/reduce.t
61560 ____________________________________________________________________________
61561 [ 20699] By: jhi                                   on 2003/08/14  13:16:27
61562         Log: All the authors of these modules have now been contacted;
61563              but assuming no CPAN updates are upcoming, here are 'fake'
61564              version updates to make us different from 5.8.0.
61565              (List::Util+Scalar::Util will soon be updated;
61566              File::Spec CPAN release will be made based on 5.8.1.)
61567      Branch: perl
61568            ! ext/Data/Dumper/Dumper.pm lib/CGI/Fast.pm lib/CGI/Util.pm
61569            ! lib/File/Temp.pm lib/Locale/Country.pm lib/Locale/Currency.pm
61570            ! lib/Locale/Language.pm lib/Locale/Script.pm lib/Switch.pm
61571            ! lib/Test/Harness/Straps.pm lib/Text/Wrap.pm
61572 ____________________________________________________________________________
61573 [ 20697] By: jhi                                   on 2003/08/14  07:05:48
61574         Log: Make the blead versions of these be newer...
61575      Branch: perl
61576            ! ext/B/B/Assembler.pm ext/B/B/Disassembler.pm
61577 ____________________________________________________________________________
61578 [ 20696] By: jhi                                   on 2003/08/14  06:51:34
61579         Log: Tweak from Slaven to catch also changed .xs files
61580              (.pm -> .xs name equivalence is assumed)
61581      Branch: perl
61582            ! Porting/cmpVERSION.pl
61583 ____________________________________________________________________________
61584 [ 20695] By: jhi                                   on 2003/08/14  06:44:10
61585         Log: Diffs-sans-version-diffs between blead and maint.
61586      Branch: perl
61587            ! ext/B/B.pm ext/B/B/C.pm ext/B/B/Concise.pm ext/B/B/Deparse.pm
61588            ! ext/Devel/PPPort/PPPort.pm lib/English.pm lib/overload.pm
61589            ! lib/warnings.pm warnings.pl
61590 ____________________________________________________________________________
61591 [ 20692] By: jhi                                   on 2003/08/14  05:23:58
61592         Log: One more VERSION bump.
61593      Branch: perl
61594            ! lib/SelfLoader.pm
61595 ____________________________________________________________________________
61596 [ 20691] By: jhi                                   on 2003/08/14  05:21:20
61597         Log: Add a known exception.
61598      Branch: perl
61599            ! Porting/cmpVERSION.pl
61600 ____________________________________________________________________________
61601 [ 20689] By: jhi                                   on 2003/08/14  04:54:18
61602         Log: The blead version has got the dor.
61603      Branch: perl
61604            ! ext/Opcode/Opcode.pm
61605 ____________________________________________________________________________
61606 [ 20688] By: jhi                                   on 2003/08/14  04:51:30
61607         Log: A swath of VERSION patches from Nicholas Clark.
61608      Branch: perl
61609            ! lib/AutoSplit.pm lib/CPAN/Nox.pm lib/Cwd.pm lib/English.pm
61610            ! lib/File/Basename.pm lib/File/Copy.pm lib/File/Path.pm
61611            ! lib/Hash/Util.pm lib/Net/hostent.pm lib/Net/servent.pm
61612            ! lib/Text/Abbrev.pm lib/Thread/Semaphore.pm lib/Tie/Array.pm
61613            ! lib/Tie/RefHash.pm lib/UNIVERSAL.pm lib/Unicode/UCD.pm
61614            ! lib/attributes.pm lib/base.pm lib/diagnostics.pm lib/fields.pm
61615            ! lib/filetest.pm lib/open.pm lib/overload.pm lib/utf8.pm
61616            ! lib/vmsish.pm os2/OS2/Process/Process.pm
61617            ! os2/OS2/REXX/DLL/DLL.pm t/TestInit.pm
61618            ! t/lib/MakeMaker/Test/Utils.pm t/lib/Math/BigInt/BareCalc.pm
61619            ! vms/ext/Filespec.pm warnings.pl
61620 ____________________________________________________________________________
61621 [ 20687] By: jhi                                   on 2003/08/13  18:53:15
61622         Log: Alpha version numbers noticed by Schwern.
61623              (These hacks are no more needed since the PAUSE indexer no
61624              more indexes the insides of Perl distributions, says Andreas.)
61625      Branch: perl
61626            ! ext/Devel/DProf/DProf.pm ext/Devel/Peek/Peek.pm
61627            ! ext/IO/lib/IO/Dir.pm ext/IO/lib/IO/Handle.pm
61628            ! ext/IO/lib/IO/Seekable.pm ext/IO/lib/IO/Socket/UNIX.pm
61629            ! ext/IPC/SysV/Msg.pm ext/IPC/SysV/Semaphore.pm
61630            ! ext/IPC/SysV/SysV.pm
61631 ____________________________________________________________________________
61632 [ 20686] By: jhi                                   on 2003/08/13  18:42:50
61633         Log: Subject: Re: script wanted
61634              From: Nicholas Clark <nick@ccl4.org>
61635              Date: Wed, 13 Aug 2003 20:46:09 +0100
61636              Message-ID: <20030813204609.G20130@plum.flirble.org>
61637      Branch: perl
61638            ! ext/B/B.pm ext/B/B/Bblock.pm ext/B/B/C.pm ext/B/B/Debug.pm
61639            ! ext/B/B/Lint.pm ext/Fcntl/Fcntl.pm ext/File/Glob/Glob.pm
61640            ! ext/IO/IO.pm ext/IO/lib/IO/File.pm ext/IO/lib/IO/Handle.pm
61641            ! ext/IO/lib/IO/Select.pm ext/IO/lib/IO/Socket.pm
61642            ! ext/IO/lib/IO/Socket/INET.pm ext/IPC/SysV/Msg.pm
61643            ! ext/IPC/SysV/Semaphore.pm ext/POSIX/POSIX.pm
61644            ! ext/Sys/Hostname/Hostname.pm ext/Sys/Syslog/Syslog.pm
61645            ! ext/re/re.pm ext/threads/shared/shared.pm
61646            ! ext/threads/threads.pm
61647 ____________________________________________________________________________
61648 [ 20685] By: jhi                                   on 2003/08/13  18:24:50
61649         Log: Subject: Re: script wanted
61650              From: Enache Adrian <enache@rdslink.ro>
61651              Date: Wed, 13 Aug 2003 22:31:18 +0300
61652              Message-ID: <20030813193118.GA1273@ratsnest.hole>
61653      Branch: perl
61654            ! bytecode.pl ext/B/B/Asmdata.pm ext/B/B/Assembler.pm
61655            ! ext/B/B/Disassembler.pm
61656 ____________________________________________________________________________
61657 [ 20681] By: jhi                                   on 2003/08/13  17:13:12
61658         Log: Subject: [PATCH lib/lib_pm.PL utils/perlcc.PL utils/h2xs.PL] RE: script wanted
61659              From: Robin Barker <Robin.Barker@npl.co.uk>
61660              Date: Wed, 13 Aug 2003 18:05:38 +0100
61661              Message-ID: <533D273D4014D411AB1D00062938C4D904046637@hotel.npl.co.uk>
61662      Branch: perl
61663            ! lib/lib_pm.PL utils/h2xs.PL utils/perlcc.PL
61664 ____________________________________________________________________________
61665 [ 20680] By: jhi                                   on 2003/08/13  17:11:38
61666         Log: Subject: [PATCH] GNU Public General Public General GNU Public License License
61667              From: Michael G Schwern <schwern@pobox.com>
61668              Date: Wed, 13 Aug 2003 11:15:40 -0700
61669              Message-ID: <20030813181539.GA22658@windhund.schwern.org>
61670      Branch: perl
61671            ! pod/perlartistic.pod pod/perlgpl.pod
61672 ____________________________________________________________________________
61673 [ 20678] By: jhi                                   on 2003/08/13  13:46:18
61674         Log: Add cmpVERSION.pl from Slaven for comparing two
61675              Perl source trees for modules that have changed
61676              but have the same version numbers.
61677      Branch: perl
61678            + Porting/cmpVERSION.pl
61679            ! MANIFEST
61680 ____________________________________________________________________________
61681 [ 20676] By: jhi                                   on 2003/08/13  12:03:08
61682         Log: Make Johan's confusion go away, but there are no doubt more
61683              similar cases.
61684      Branch: perl
61685            ! lib/File/Find.pm
61686 ____________________________________________________________________________
61687 [ 20674] By: jhi                                   on 2003/08/13  11:57:47
61688         Log: Make (hopefully) the Windows CR CR LF bug go away
61689              by making the CRLF layer repel any other CRLF layers.
61690              In other words: binmode(FH, ":crlf") in e.g. Win32
61691              is effectively a no-op since there already is one
61692              CRLF layer in the stack by default.
61693      Branch: perl
61694            ! perlio.c pod/perlrun.pod t/io/crlf.t t/io/layers.t
61695 ____________________________________________________________________________
61696 [ 20673] By: jhi                                   on 2003/08/13  10:29:56
61697         Log: One tweak from Dave Mitchell.
61698      Branch: perl
61699            ! pod/perlport.pod
61700 ____________________________________________________________________________
61701 [ 20672] By: jhi                                   on 2003/08/13  10:27:54
61702         Log: One tweak for microperl in OS/2.
61703      Branch: perl
61704            ! perl.h
61705 ____________________________________________________________________________
61706 [ 20671] By: merijn                                on 2003/08/13  08:57:27
61707         Log: Subject: [PATCH] another VMS pod nit
61708              From: "Craig A. Berry" <craigberry@mac.com>
61709              Date: Wed, 13 Aug 2003 01:01:46 -0500
61710              Message-ID: <3F39D44A.4010207@mac.com>
61711      Branch: perl
61712            ! vms/descrip_mms.template
61713 ____________________________________________________________________________
61714 [ 20670] By: merijn                                on 2003/08/13  08:54:45
61715         Log: Subject: [PATCH Tie::File] turn the alarm off in the tests (was Re: maint @ 20617 (on VMS))
61716              From: "Craig A. Berry" <craigberry@mac.com>
61717              Date: Tue, 12 Aug 2003 21:12:00 -0500
61718              Message-ID: <3F399E70.4050607@mac.com>
61719      Branch: perl
61720            ! lib/Tie/File/t/24_cache_loop.t lib/Tie/File/t/29_downcopy.t
61721            ! lib/Tie/File/t/29a_upcopy.t
61722 ____________________________________________________________________________
61723 [ 20669] By: jhi                                   on 2003/08/13  06:06:39
61724         Log: More don't:s for nyetworking.
61725      Branch: perl
61726            ! pod/perlport.pod
61727 ____________________________________________________________________________
61728 [ 20668] By: rgs                                   on 2003/08/12  20:27:41
61729         Log: perlipc thinko by John P. Linderman.
61730      Branch: perl
61731            ! pod/perlipc.pod
61732 ____________________________________________________________________________
61733 [ 20666] By: jhi                                   on 2003/08/12  20:02:13
61734         Log: Subject: Re: maint @ 20617 [PATCH]
61735              From: =?iso-8859-1?q?Sreeji=20K=20Das?= <sreeji_k@yahoo.com>
61736              Date: Tue, 12 Aug 2003 13:19:00 +0100 (BST)
61737              Message-ID: <20030812121900.26127.qmail@web10501.mail.yahoo.com>
61738      Branch: perl
61739            ! lib/ExtUtils/Installed.pm
61740 ____________________________________________________________________________
61741 [ 20665] By: jhi                                   on 2003/08/12  19:59:54
61742         Log: README.cygwin updates from Gerrit P. Haase.
61743      Branch: perl
61744            ! README.cygwin
61745 ____________________________________________________________________________
61746 [ 20664] By: jhi                                   on 2003/08/12  19:57:53
61747         Log: Do some updates also on pod.mak -- which seems to
61748              be badly out of date.
61749      Branch: perl
61750            ! win32/pod.mak
61751 ____________________________________________________________________________
61752 [ 20663] By: jhi                                   on 2003/08/12  19:48:01
61753         Log: More missing pods for VMS.
61754      Branch: perl
61755            ! vms/descrip_mms.template
61756 ____________________________________________________________________________
61757 [ 20662] By: jhi                                   on 2003/08/12  19:43:46
61758         Log: Subject: [PATCH: perl@20617] add handling for new perlreref.pod file to VMS build.
61759              From: PPrymmer@factset.com
61760              Date: Tue, 12 Aug 2003 16:24:21 -0400
61761              Message-ID: <OF26F453CA.0F963A91-ON85256D80.006F991A-85256D80.007017F2@factset.com>
61762      Branch: perl
61763            ! vms/descrip_mms.template
61764 ____________________________________________________________________________
61765 [ 20661] By: jhi                                   on 2003/08/12  19:41:50
61766         Log: perlreref tweaks from SADAHIRO Tomoyuki and Ian Truskett.
61767      Branch: perl
61768            ! pod/perlreref.pod
61769 ____________________________________________________________________________
61770 [ 20660] By: jhi                                   on 2003/08/12  18:44:27
61771         Log: A better patch from Yitzchak Scott-Thoennes for [perl #23287].
61772      Branch: perl
61773            ! pp_sys.c
61774 ____________________________________________________________________________
61775 [ 20657] By: jhi                                   on 2003/08/12  13:55:56
61776         Log: Multiline one-liners are a bit too much to ask.
61777      Branch: perl
61778            ! t/op/closure.t
61779 ____________________________________________________________________________
61780 [ 20654] By: jhi                                   on 2003/08/12  13:23:00
61781         Log: Add perlcheat to the toc and perl.pod; regen toc.
61782      Branch: perl
61783            ! pod/buildtoc.PL pod/perl.pod pod/perltoc.pod
61784 ____________________________________________________________________________
61785 [ 20653] By: jhi                                   on 2003/08/12  13:15:17
61786         Log: Retract #20644 and #20643; on non-microperl non-fcntl
61787              systems Wrong Thing would be done.  (And as Sarathy
61788              points out, closing both ends of a pipe is rather
61789              identical to never opening it...)
61790      Branch: perl
61791            ! pp_sys.c util.c
61792 ____________________________________________________________________________
61793 [ 20652] By: ams                                   on 2003/08/12  13:06:40
61794         Log: Subject: perlcheat
61795              From: Juerd <juerd@cpan.org>
61796              Date: Mon, 11 Aug 2003 20:24:34 +0200
61797              Message-Id: <20030811182434.GI17748@c3.convolution.nl>
61798      Branch: perl
61799            + pod/perlcheat.pod
61800            ! MANIFEST
61801 ____________________________________________________________________________
61802 [ 20651] By: jhi                                   on 2003/08/12  12:52:09
61803         Log: Microperl expects C89 (like the rest of Perl).
61804      Branch: perl
61805            ! README.micro
61806 ____________________________________________________________________________
61807 [ 20650] By: jhi                                   on 2003/08/12  12:32:29
61808         Log: Subject: [PATCH 5.8.1 @20218] xsubpp: wrong code
61809              From: Ilya Zakharevich <ilya@Math.Berkeley.EDU>
61810              Date: Sun, 3 Aug 2003 06:19:02 -0700
61811              Message-ID: <20030803131902.GA5146@math.berkeley.edu>
61812      Branch: perl
61813            ! lib/ExtUtils/xsubpp
61814 ____________________________________________________________________________
61815 [ 20648] By: jhi                                   on 2003/08/12  11:56:52
61816         Log: If we are void we cannot return a value.
61817      Branch: perl
61818            ! mg.c
61819 ____________________________________________________________________________
61820 [ 20647] By: jhi                                   on 2003/08/12  11:54:32
61821         Log: Oops.
61822      Branch: perl
61823            ! perl.c
61824 ____________________________________________________________________________
61825 [ 20646] By: jhi                                   on 2003/08/12  11:51:25
61826         Log: Apply much of Ilya's microperl patch, but instead of
61827              implementing the opendir()/readdir()/closedir() using
61828              external commands give up "ANSI-pureness" and define them
61829              in uconfig.sh, also define other stuff like rename() and putenv().
61830              Leave out the $| emulation in my_fork() since we are
61831              not supposed to have fork() under microperl.
61832      Branch: perl
61833            ! Makefile.micro README.micro doio.c mg.c perl.c perl.h
61834            ! perlvars.h pp_sys.c sv.c uconfig.h uconfig.sh util.c
61835 ____________________________________________________________________________
61836 [ 20645] By: jhi                                   on 2003/08/12  10:40:54
61837         Log: Localize PARENT (based on Ilya's microperl patch).
61838      Branch: perl
61839            ! lib/Cwd.pm
61840 ____________________________________________________________________________
61841 [ 20644] By: jhi                                   on 2003/08/12  10:37:55
61842         Log: More microperlish faking in case no fcntl F_SETFD for pipes.
61843      Branch: perl
61844            ! util.c
61845 ____________________________________________________________________________
61846 [ 20643] By: jhi                                   on 2003/08/12  10:13:53
61847         Log: A generally useful hunk from Ilya's microperl patch.
61848              (If no fcntl F_SETFD, fake it the best we can.)
61849      Branch: perl
61850            ! pp_sys.c
61851 ____________________________________________________________________________
61852 [ 20640] By: jhi                                   on 2003/08/12  09:59:16
61853         Log: returning would be good, too.
61854      Branch: perl
61855            ! ext/Safe/t/safeops.t
61856 ____________________________________________________________________________
61857 [ 20639] By: jhi                                   on 2003/08/12  09:57:07
61858         Log: No dor in maint.
61859      Branch: perl
61860            ! ext/Safe/t/safeops.t
61861 ____________________________________________________________________________
61862 [ 20634] By: jhi                                   on 2003/08/12  08:41:49
61863         Log: Subject: [PATCH 5.8.1 @19053] XSLoader revisted
61864              From: Ilya Zakharevich <ilya@Math.Berkeley.EDU>
61865              Date: Mon, 21 Apr 2003 22:44:37 -0700
61866              Message-ID: <20030422054437.GA8297@math.berkeley.edu>
61867
61868              (the XSLoader doc hunk; the h2xs looks like a behavioural change)
61869      Branch: perl
61870            ! ext/DynaLoader/XSLoader_pm.PL
61871 ____________________________________________________________________________
61872 [ 20633] By: jhi                                   on 2003/08/12  08:31:01
61873         Log: Subject: [PATCH h2xs] produce Foo-Bar/lib/Foo/Bar.pm
61874              From: Michael G Schwern <schwern@pobox.com>
61875              Date: Sat, 9 Aug 2003 15:03:02 -0700
61876              Message-ID: <20030809220301.GE24919@windhund.schwern.org>
61877
61878              (plus one extra catfile() in h2xs.t)
61879      Branch: perl
61880            ! lib/h2xs.t utils/h2xs.PL
61881 ____________________________________________________________________________
61882 [ 20632] By: jhi                                   on 2003/08/12  08:11:08
61883         Log: The Debian people have expressed a wish for the boilerplate
61884              being specific about the Perl version; patch from Nicholas Clark.
61885      Branch: perl
61886            ! utils/h2xs.PL
61887 ____________________________________________________________________________
61888 [ 20631] By: jhi                                   on 2003/08/12  08:09:43
61889         Log: A new try from Dave Mitchell for [perl #23265].
61890      Branch: perl
61891            ! pad.c t/op/closure.t
61892 ____________________________________________________________________________
61893 [ 20630] By: jhi                                   on 2003/08/12  07:59:22
61894         Log: Fix for [perl #23287] segfault in untie.
61895              (Well, at least no more coredump.)
61896      Branch: perl
61897            ! pp_sys.c t/op/tie.t
61898 ____________________________________________________________________________
61899 [ 20629] By: jhi                                   on 2003/08/12  06:24:32
61900         Log: =head2 ALL CAPS
61901      Branch: perl
61902            ! pod/perlreref.pod
61903 ____________________________________________________________________________
61904 [ 20628] By: jhi                                   on 2003/08/12  06:22:25
61905         Log: Too enthusiastic head2-ing.
61906      Branch: perl
61907            ! pod/perlreref.pod
61908 ____________________________________________________________________________
61909 [ 20627] By: jhi                                   on 2003/08/12  05:17:14
61910         Log: Gotta Get'em Cases Right.
61911      Branch: perl
61912            ! pod/perlreref.pod
61913 ____________________________________________________________________________
61914 [ 20626] By: jhi                                   on 2003/08/12  05:04:02
61915         Log: head2-ify many of the head1s, will probably make this look
61916              better in HTML.
61917      Branch: perl
61918            ! pod/perlreref.pod
61919 ____________________________________________________________________________
61920 [ 20625] By: jhi                                   on 2003/08/12  04:55:32
61921         Log: Subject: Re: [PATCH] perlreref.pod tweaks
61922              From: Iain Truskett <spoon@cpan.org>
61923              Date: Tue, 12 Aug 2003 13:59:27 +1000
61924              Message-ID: <20030812035927.GJ7914@gytha.anu.edu.au>
61925
61926              plus explain "Titlecase".
61927      Branch: perl
61928            ! pod/perlreref.pod
61929 ____________________________________________________________________________
61930 [ 20623] By: rgs                                   on 2003/08/11  19:59:17
61931         Log: Add a new regression test for Safe : tests that all ops
61932              can be trapped by a Safe compartement (except for the ones
61933              that can't.)
61934      Branch: perl
61935            + ext/Safe/t/safeops.t
61936            ! MANIFEST
61937 ____________________________________________________________________________
61938 [ 20622] By: rgs                                   on 2003/08/11  18:33:06
61939         Log: B::Deparse wasn't handling correctly builtins that
61940              have two filehandles in their prototypes (pipe, socketpair,
61941              accept) when non-bareword prototypes were used.
61942      Branch: perl
61943            ! ext/B/B/Deparse.pm
61944 ____________________________________________________________________________
61945 [ 20620] By: jhi                                   on 2003/08/11  17:08:29
61946         Log: Subject: [PATCH] [@20616] perlreref.pod incorrectly describes \c
61947              From: merlyn@stonehenge.com (Randal L. Schwartz)
61948              Date: 11 Aug 2003 09:45:29 -0700
61949              Message-ID: <86isp4kus6.fsf@blue.stonehenge.com>
61950
61951              Subject: [PATCH] perlreref.pod tweaks
61952              From: Ronald J Kimball <rjk@linguist.Thayer.dartmouth.edu>
61953              Date: Mon, 11 Aug 2003 13:19:51 -0400
61954              Message-ID: <20030811171951.GA332851@linguist.thayer.dartmouth.edu>
61955
61956              Plus a note about {,n} not being a quantifier.
61957      Branch: perl
61958            ! pod/perlreref.pod
61959 ____________________________________________________________________________
61960 [ 20619] By: jhi                                   on 2003/08/11  15:50:34
61961         Log: Integrate:
61962              [ 20618]
61963              $* is not yet fully gone in 5.8.1.
61964      Branch: perl
61965           !> pod/perlreref.pod
61966 ____________________________________________________________________________
61967 [ 20614] By: nick                                  on 2003/08/11  12:14:55
61968         Log: Allow via layer to affect the PERLIO_F_UTF8 flag.
61969      Branch: perl
61970            ! ext/PerlIO/via/via.pm ext/PerlIO/via/via.xs
61971 ____________________________________________________________________________
61972 [ 20612] By: jhi                                   on 2003/08/11  10:55:19
61973         Log: VC6 warning: result still unsigned.
61974      Branch: perl
61975            ! regexec.c
61976 ____________________________________________________________________________
61977 [ 20611] By: jhi                                   on 2003/08/11  08:33:13
61978         Log: Typo fix from Boris Zentner.
61979      Branch: perl
61980            ! pod/perlfaq5.pod
61981 ____________________________________________________________________________
61982 [ 20609] By: jhi                                   on 2003/08/11  04:28:29
61983         Log: Subject: [perl #23273] warnings in Unicode::UCD
61984              From: Lukas Mai (via RT) <perlbug-followup@perl.org>
61985              Date: 10 Aug 2003 22:37:41 -0000
61986              Message-ID: <rt-23273-62473.18.6967347513833@rt.perl.org>
61987      Branch: perl
61988            ! lib/Unicode/UCD.pm lib/Unicode/UCD.t
61989 ____________________________________________________________________________
61990 [ 20608] By: jhi                                   on 2003/08/11  04:24:34
61991         Log: Explain the 'Wide character in print' a bit more.
61992      Branch: perl
61993            ! pod/perldiag.pod
61994 ____________________________________________________________________________
61995 [ 20607] By: rgs                                   on 2003/08/10  20:44:23
61996         Log: Subject: Re: killing for vital signs [PATCH]
61997              From: "John P. Linderman" <jpl@research.att.com>
61998              Date: Sun, 10 Aug 2003 15:44:33 -0400 (EDT)
61999              Message-Id: <200308101944.PAA96547@raptor.research.att.com>
62000      Branch: perl
62001            ! pod/perlfunc.pod pod/perlipc.pod
62002 ____________________________________________________________________________
62003 [ 20605] By: jhi                                   on 2003/08/10  20:38:39
62004         Log: gcc -ansi -pedantic cleanup; and a seemingly forgotten
62005              sv_placeholder hunk.
62006      Branch: perl
62007            ! perl.h sv.h
62008 ____________________________________________________________________________
62009 [ 20604] By: jhi                                   on 2003/08/10  20:14:28
62010         Log: Clarify the format checking instructions.
62011      Branch: perl
62012            ! Porting/pumpkin.pod
62013 ____________________________________________________________________________
62014 [ 20602] By: jhi                                   on 2003/08/10  19:45:45
62015         Log: Retract #20597, too many resulting core dumps.
62016      Branch: perl
62017            ! pad.c t/op/closure.t
62018 ____________________________________________________________________________
62019 [ 20597] By: jhi                                   on 2003/08/10  17:55:03
62020         Log: Subject: Re: [perl #23265] Nested anonymous subs
62021              From: Dave Mitchell <davem@fdgroup.com>
62022              Date: Sun, 10 Aug 2003 01:35:30 +0100
62023              Message-ID: <20030810003530.GB6547@fdgroup.com>
62024      Branch: perl
62025            ! pad.c t/op/closure.t
62026 ____________________________________________________________________________
62027 [ 20596] By: jhi                                   on 2003/08/10  17:38:35
62028         Log: Try simple workaround for the POSIX autosplit.ix warning.
62029      Branch: perl
62030            ! ext/POSIX/POSIX.pm
62031 ____________________________________________________________________________
62032 [ 20595] By: jhi                                   on 2003/08/10  17:33:12
62033         Log: One more PL_csighandlerp.
62034      Branch: perl
62035            ! ext/POSIX/POSIX.xs
62036 ____________________________________________________________________________
62037 [ 20594] By: rgs                                   on 2003/08/10  13:30:11
62038         Log: Further tweaks on perlreref.pod (by Iain Truskett)
62039      Branch: perl
62040            ! pod/perlreref.pod
62041 ____________________________________________________________________________
62042 [ 20593] By: rgs                                   on 2003/08/10  12:32:47
62043         Log: Add the perlreref manpage, by Iain Truskett
62044              (regular expressions quick reference.)
62045              Regenerate the table of contents.
62046      Branch: perl
62047            + pod/perlreref.pod
62048            ! MANIFEST pod/buildtoc.PL pod/perl.pod pod/perltoc.pod
62049 ____________________________________________________________________________
62050 [ 20592] By: rgs                                   on 2003/08/09  21:13:27
62051         Log: Remove ByteLoader from the list of modules whose compilability should
62052              be tested : it's loaded (at runtime) by ext/B/t/bytecode.t (as Enache
62053              pointed out.)
62054      Branch: perl
62055            ! t/lib/1_compile.t
62056 ____________________________________________________________________________
62057 [ 20591] By: rgs                                   on 2003/08/09  21:08:59
62058         Log: Subject: [PATCH] add "$lexical not available" warning in C<for my $lex ()>
62059              From: Dave Mitchell <davem@fdgroup.com>
62060              Date: Sat, 9 Aug 2003 14:51:44 +0100
62061              Message-ID: <20030809135144.GC4997@fdgroup.com>
62062      Branch: perl
62063            ! embed.fnc embed.h global.sym op.c pp_ctl.c proto.h scope.c
62064            ! scope.h t/lib/warnings/pad
62065 ____________________________________________________________________________
62066 [ 20590] By: rgs                                   on 2003/08/09  21:02:21
62067         Log: Regenerate perlapi.pod.
62068      Branch: perl
62069            ! pod/perlapi.pod
62070 ____________________________________________________________________________
62071 [ 20589] By: rgs                                   on 2003/08/09  20:26:28
62072         Log: Subject: [PATCH t/lib/1_compile.t] Removing tested modules
62073              From: Michael G Schwern <schwern@pobox.com>
62074              Date: Sat, 9 Aug 2003 13:36:59 -0700
62075              Message-ID: <20030809203659.GB24919@windhund.schwern.org>
62076      Branch: perl
62077            ! t/lib/1_compile.t
62078 ____________________________________________________________________________
62079 [ 20588] By: jhi                                   on 2003/08/09  18:13:07
62080         Log: Update Jon Orwant's email address as he wants it,
62081              drop TPJ URL; upate also Doug MacEachern's address.
62082      Branch: perl
62083            ! pod/perlembed.pod pod/perlmodinstall.pod
62084 ____________________________________________________________________________
62085 [ 20587] By: ams                                   on 2003/08/09  18:09:34
62086         Log: hv_fetch_{ent,flags} failed to set HvHASKFLAGS on a hash where a
62087              normal key was replaced by its UTF-8 equivalent. This caused the
62088              "Storable problem" RT3 users reported under RH9.
62089      Branch: perl
62090            ! hv.c
62091 ____________________________________________________________________________
62092 [ 20586] By: jhi                                   on 2003/08/09  18:08:20
62093         Log: Subject: [PATCH perlmodinstall.pod] Installation on Win32
62094              From: Michael G Schwern <schwern@pobox.com>
62095              Date: Fri, 8 Aug 2003 18:35:51 -0700
62096              Message-ID: <20030809013550.GS1587@windhund.schwern.org>
62097      Branch: perl
62098            ! pod/perlmodinstall.pod
62099 ____________________________________________________________________________
62100 [ 20584] By: jhi                                   on 2003/08/09  18:05:22
62101         Log: Reintroduce the U_32-ification to pad.c,
62102              suggested by Dave Mitchell.
62103      Branch: perl
62104            ! pad.c
62105 ____________________________________________________________________________
62106 [ 20583] By: rgs                                   on 2003/08/09  12:43:50
62107         Log: Change #20578 to SelfLoader is probably also useful to AutoSplit.
62108      Branch: perl
62109            ! lib/AutoSplit.pm
62110 ____________________________________________________________________________
62111 [ 20579] By: jhi                                   on 2003/08/09  08:07:22
62112         Log: Some updates for the memory use debugging section:
62113              -DL is obsolete, mention Devel::Size, and Purify and valgrind.
62114      Branch: perl
62115            ! pod/perldebguts.pod
62116 ____________________________________________________________________________
62117 [ 20578] By: jhi                                   on 2003/08/09  07:34:16
62118         Log: Fix from Dave Mitchell to the recent from lib/Devel/SelfStubber.t:
62119              Variable "$nested" is not available at (re_eval 4) line 2, <DATA> line 8.
62120              which was on old bug unearthed by the change #20559.
62121              Basically, qr// + (??{$lexical}) combination is very, VERY broken.
62122              Workaround is not to use lexicals.
62123      Branch: perl
62124            ! lib/SelfLoader.pm
62125 ____________________________________________________________________________
62126 [ 20577] By: jhi                                   on 2003/08/09  07:28:41
62127         Log: The libcygipc doesn't really work with the Perl SysV IPC tests
62128              so no much point in adding it yet.
62129      Branch: perl
62130            ! hints/cygwin.sh
62131 ____________________________________________________________________________
62132 [ 20575] By: jhi                                   on 2003/08/09  07:24:43
62133         Log: Retract #20524 since it was due to broken INT32_MIN in
62134              Cygwin 1.5's stdint.h.
62135      Branch: perl
62136            ! pad.c
62137 ____________________________________________________________________________
62138 [ 20574] By: jhi                                   on 2003/08/09  07:11:32
62139         Log: Subject: [ PATCH] Re: strange destruction problem on VMS
62140              From: Dave Mitchell <davem@fdgroup.com>
62141              Date: Fri, 8 Aug 2003 22:28:48 +0100
62142              Message-ID: <20030808212848.GA2628@fdgroup.com>
62143      Branch: perl
62144            ! sv.c
62145 ____________________________________________________________________________
62146 [ 20573] By: jhi                                   on 2003/08/09  07:09:07
62147         Log: Subject: Re: [PATCH] perlfaq8.pod and MakeMaker's PREFIX=
62148              From: Michael G Schwern <schwern@pobox.com>
62149              Date: Fri, 8 Aug 2003 13:59:50 -0700
62150              Message-ID: <20030808205950.GJ1587@windhund.schwern.org>
62151      Branch: perl
62152            ! pod/perlfaq8.pod
62153 ____________________________________________________________________________
62154 [ 20572] By: jhi                                   on 2003/08/09  07:06:37
62155         Log: Subject: [PATCH] kill 'INT' doesn't work on Windows
62156              From: Jan Dubois <jand@ActiveState.com>
62157              Date: Fri, 08 Aug 2003 17:49:03 -0700
62158              Message-ID: <ite8jvgjgcfm8e9dhl6f4dtstrbmn1vmpk@4ax.com>
62159      Branch: perl
62160            ! win32/win32.c
62161 ____________________________________________________________________________
62162 [ 20571] By: jhi                                   on 2003/08/09  06:53:54
62163         Log: Subject: [PATCH] Re: [PATCH] Re: Storing &PL_sv_undef as a hash key with perl-5.8.x
62164              From: Nicholas Clark <nick@ccl4.org>
62165              Date: Fri, 8 Aug 2003 23:30:00 +0100
62166              Message-ID: <20030808233000.B20130@plum.flirble.org>
62167      Branch: perl
62168            ! ext/Storable/Storable.xs
62169 ____________________________________________________________________________
62170 [ 20570] By: jhi                                   on 2003/08/09  06:52:36
62171         Log: Two more tests for #20566/#20568.
62172      Branch: perl
62173            ! t/op/pat.t
62174 ____________________________________________________________________________
62175 [ 20568] By: jhi                                   on 2003/08/08  21:05:24
62176         Log: Subject: [PATCH] Re: UNICODE regexp bug
62177              From: Nick Ing-Simmons <nick@ing-simmons.net>
62178              Date: Fri, 08 Aug 2003 23:05:49 +0100
62179              Message-Id: <20030808220549.5109.4@llama.ni-s.u-net.com>
62180
62181              Better patch (than #20566) from NI-S, one more test
62182              (introduce another variable rather than reuse the tmp, though)
62183      Branch: perl
62184            ! regexec.c t/op/pat.t
62185 ____________________________________________________________________________
62186 [ 20566] By: jhi                                   on 2003/08/08  19:47:45
62187         Log: Subject: UNICODE regexp bug
62188              From: Nick Ing-Simmons <nick@ing-simmons.net>
62189              Date: Fri, 08 Aug 2003 20:36:56 +0100
62190              Message-Id: <20030808193656.5109.1@llama.ni-s.u-net.com>
62191      Branch: perl
62192            ! regexec.c t/op/pat.t
62193 ____________________________________________________________________________
62194 [ 20565] By: jhi                                   on 2003/08/08  18:59:40
62195         Log: Move the csighandler to be a data variable so that
62196              things like DLL trampolines can't mess up the code
62197              variables the Perl_csighandler (seen in Cygwin:
62198              Perl_csighandler in POSIX extension was different
62199              than in main executable).
62200      Branch: perl
62201            ! embedvar.h ext/POSIX/POSIX.xs mg.c perlapi.h perlvars.h
62202 ____________________________________________________________________________
62203 [ 20564] By: jhi                                   on 2003/08/08  13:12:19
62204         Log: Subject: [PATCH] Re: main@20537: WinXP build failed op/time.t test 2
62205              From: Steve Hay <steve.hay@uk.radan.com>
62206              Date: Fri, 08 Aug 2003 12:42:28 +0100
62207              Message-ID: <3F338CA4.3010503@uk.radan.com>
62208      Branch: perl
62209            ! t/op/time.t
62210 ____________________________________________________________________________
62211 [ 20563] By: jhi                                   on 2003/08/08  13:09:00
62212         Log: Subject: [PATCH] maintperl & bleadperl for Cygwin: include libgdbm_compat & libcygipc in searchlist
62213              From: "Gerrit P. Haase" <gp@familiehaase.de>
62214              Date: Fri, 8 Aug 2003 13:44:51 +0200
62215              Message-ID: <1621817486657.20030808134451@familiehaase.de>
62216      Branch: perl
62217            ! ext/NDBM_File/hints/cygwin.pl ext/ODBM_File/hints/cygwin.pl
62218            ! hints/cygwin.sh
62219 ____________________________________________________________________________
62220 [ 20560] By: jhi                                   on 2003/08/08  04:28:44
62221         Log: Retract PASTHRU* changes as recommended by Schwern.
62222      Branch: perl
62223            ! lib/ExtUtils/MM_Unix.pm lib/ExtUtils/MM_Win32.pm
62224            ! lib/ExtUtils/t/MM_Win32.t
62225 ____________________________________________________________________________
62226 [ 20559] By: rgs                                   on 2003/08/07  19:59:18
62227         Log: Subject: Fwd: Re: [PATCH] flags set incorrectly on abandoned lexicals
62228              From: Dave Mitchell <davem@fdgroup.com>
62229              Date: Thu, 7 Aug 2003 15:53:35 +0100
62230              Message-ID: <20030807145335.GF26683@fdgroup.com>
62231      Branch: perl
62232            ! scope.c t/lib/warnings/pad
62233 ____________________________________________________________________________
62234 [ 20556] By: jhi                                   on 2003/08/07  18:14:41
62235         Log: The #20546 was too ambitious, broke the test.
62236      Branch: perl
62237            ! lib/Benchmark.pm lib/Benchmark.t
62238 ____________________________________________________________________________
62239 [ 20554] By: jhi                                   on 2003/08/07  17:00:03
62240         Log: Subject: Fw: [PATCH: perl@20512] DBG build tweaks for VMS.
62241              From: PPrymmer@factset.com
62242              Date: Thu, 7 Aug 2003 14:02:02 -0400
62243              Message-ID: <OFA59024FD.170B3227-ON85256D7B.00630753-85256D7B.00631048@factset.com>
62244      Branch: perl
62245            ! vms/descrip_mms.template
62246 ____________________________________________________________________________
62247 [ 20553] By: jhi                                   on 2003/08/07  16:45:25
62248         Log: Some AUTHORS updates.
62249      Branch: perl
62250            ! AUTHORS
62251 ____________________________________________________________________________
62252 [ 20552] By: jhi                                   on 2003/08/07  15:45:03
62253         Log: Hint away the semid_ds test in NetBSD/sparc.
62254      Branch: perl
62255            ! hints/netbsd.sh
62256 ____________________________________________________________________________
62257 [ 20550] By: jhi                                   on 2003/08/07  15:39:53
62258         Log: Allow hinting d_semctl_semun and d_semctl_semid_ds.
62259      Branch: perl
62260            ! Configure
62261 ____________________________________________________________________________
62262 [ 20548] By: jhi                                   on 2003/08/07  14:48:27
62263         Log: Subject: [PATCH] Test::More
62264              From: Fergal Daly <fergal@esatclear.ie>
62265              Date: Thu, 7 Aug 2003 15:52:11 +0100
62266              Message-Id: <200308071552.11873.fergal@esatclear.ie>
62267      Branch: perl
62268            ! lib/Test/More.pm
62269 ____________________________________________________________________________
62270 [ 20547] By: jhi                                   on 2003/08/07  14:45:22
62271         Log: Integrate from maint:
62272              [ 20543]
62273              Workround for SuSE8.2's -lndbm hack
62274      Branch: perl
62275           !> hints/linux.sh
62276 ____________________________________________________________________________
62277 [ 20546] By: jhi                                   on 2003/08/07  14:43:57
62278         Log: Subject: [PATCH 5.8.1] Benchmark problem
62279              From: Radu Greab <rgreab@fx.ro>
62280              Date: Thu, 07 Aug 2003 16:18:25 +0300 (EEST)
62281              Message-Id: <20030807.161825.106541372.radu@yx.primIT.ro>
62282
62283              Subject: Re: [PATCH 5.8.1] Benchmark problem
62284              From: Rafael Garcia-Suarez <rgarciasuarez@free.fr>
62285              Date: Thu, 7 Aug 2003 15:48:38 +0200
62286              Message-Id: <20030807154838.5d240dbb.rgarciasuarez@free.fr>
62287      Branch: perl
62288            ! lib/Benchmark.pm lib/Benchmark.t
62289 ____________________________________________________________________________
62290 [ 20544] By: jhi                                   on 2003/08/07  14:25:25
62291         Log: Retract #20359: too wide a brush.
62292      Branch: perl
62293            ! hints/netbsd.sh
62294 ____________________________________________________________________________
62295 [ 20542] By: jhi                                   on 2003/08/07  06:24:23
62296         Log: If no alarm(), skip the subtests.
62297      Branch: perl
62298            ! ext/Time/HiRes/t/HiRes.t
62299 ____________________________________________________________________________
62300 [ 20541] By: jhi                                   on 2003/08/07  06:15:54
62301         Log: Subject: Re: maint @ 20537
62302              From: Philip Newton <Philip.Newton@gmx.net>
62303              Date: Thu, 07 Aug 2003 09:05:17 +0200
62304              Message-ID: <s0l3jvo4mju2uu4f6pkq18istk02hme6j9@4ax.com>
62305      Branch: perl
62306            ! ext/Socket/Socket.xs
62307 ____________________________________________________________________________
62308 [ 20540] By: jhi                                   on 2003/08/07  06:13:19
62309         Log: Subject: Re: maint @ 20537
62310              From: Philip Newton <Philip.Newton@gmx.net>
62311              Date: Thu, 07 Aug 2003 09:05:17 +0200
62312              Message-ID: <s0l3jvo4mju2uu4f6pkq18istk02hme6j9@4ax.com>
62313      Branch: perl
62314            ! hints/dos_djgpp.sh
62315 ____________________________________________________________________________
62316 [ 20539] By: jhi                                   on 2003/08/07  05:17:56
62317         Log: NetBSD for Sparc (at least 1.5.3 and 1.6.1) seem to have
62318              broken SysV semaphores.
62319      Branch: perl
62320            ! hints/netbsd.sh
62321 ____________________________________________________________________________
62322 [ 20538] By: jhi                                   on 2003/08/07  05:08:14
62323         Log: Subject: Re: [perl #23030] Error in negative lookahead with alternations
62324              From: hv@crypt.org
62325              Date: Thu, 07 Aug 2003 02:44:23 +0100
62326              Message-Id: <200308070144.h771iN906446@zen.crypt.org>
62327      Branch: perl
62328            ! regexec.c t/op/re_tests
62329 ____________________________________________________________________________
62330 [ 20535] By: jhi                                   on 2003/08/06  19:05:18
62331         Log: ESUCCESS = 0 is not true, but exists.
62332      Branch: perl
62333            ! ext/Errno/t/Errno.t
62334 ____________________________________________________________________________
62335 [ 20533] By: jhi                                   on 2003/08/06  18:39:49
62336         Log: Subject: [pathc] Sys:Syslog.pm::syslog() - Better error message
62337              From: jari.aalto@poboxes.com (Jari Aalto)
62338              Date: Wed, 06 Aug 2003 14:24:42 +0300
62339              Message-ID: <ekzzowp1.fsf@blue.sea.net>
62340      Branch: perl
62341            ! ext/Sys/Syslog/Syslog.pm
62342 ____________________________________________________________________________
62343 [ 20530] By: jhi                                   on 2003/08/06  18:24:56
62344         Log: Make code agree with documentation (from Wolfgang Friebel)
62345      Branch: perl
62346            ! lib/ExtUtils/MakeMaker.pm
62347 ____________________________________________________________________________
62348 [ 20529] By: jhi                                   on 2003/08/06  18:20:31
62349         Log: Various tweaks to help DJGPP builds.
62350      Branch: perl
62351            ! djgpp/djgppsed.sh hints/dos_djgpp.sh
62352 ____________________________________________________________________________
62353 [ 20527] By: jhi                                   on 2003/08/06  14:57:22
62354         Log: More PASTHRU patching from Steve Hay.
62355      Branch: perl
62356            ! lib/ExtUtils/MM_Unix.pm
62357 ____________________________________________________________________________
62358 [ 20526] By: jhi                                   on 2003/08/06  13:53:01
62359         Log: Cast away gcc 3.3 type conversion pickiness.
62360      Branch: perl
62361            ! ext/threads/threads.xs
62362 ____________________________________________________________________________
62363 [ 20524] By: jhi                                   on 2003/08/06  13:36:44
62364         Log: Subject: Re: perl with cygwin 1.5, need help
62365              From: "Gerrit P. Haase" <gp@familiehaase.de>
62366              Date: Tue, 5 Aug 2003 14:36:55 +0200
62367              Message-ID: <71561410910.20030805143655@familiehaase.de>
62368
62369              (needed manual fitting)
62370      Branch: perl
62371            ! pad.c
62372 ____________________________________________________________________________
62373 [ 20523] By: jhi                                   on 2003/08/06  13:30:42
62374         Log: Subject: maint @ 20512
62375              From: Robin Barker <Robin.Barker@npl.co.uk>
62376              Date: Wed, 6 Aug 2003 15:31:33 +0100
62377              Message-ID: <533D273D4014D411AB1D00062938C4D904046625@hotel.npl.co.uk>
62378      Branch: perl
62379            ! MANIFEST Porting/Maintainers.pl
62380 ____________________________________________________________________________
62381 [ 20520] By: jhi                                   on 2003/08/06  11:38:46
62382         Log: Subject: [PATCH] Re: [PATCH] Re: MakeMaker doesn't pasthru DEFINE command-line args to subdirs on Win32
62383              From: Steve Hay <steve.hay@uk.radan.com>
62384              Date: Wed, 06 Aug 2003 10:56:44 +0100
62385              Message-ID: <3F30D0DC.20700@uk.radan.com>
62386      Branch: perl
62387            ! lib/ExtUtils/MM_Unix.pm
62388 ____________________________________________________________________________
62389 [ 20514] By: jhi                                   on 2003/08/06  05:22:29
62390         Log: Subject: Re: [PATCH pod/perlfaq2.pod] update Friedl book listing for 2nd edition
62391              From: Tim Jenness <t.jenness@jach.hawaii.edu>
62392              Date: Tue, 5 Aug 2003 17:21:46 -1000 (HST)
62393              Message-ID: <Pine.LNX.4.44.0308051720280.8532-100000@lapaki>
62394      Branch: perl
62395            ! pod/perlfaq2.pod
62396 ____________________________________________________________________________
62397 [ 20513] By: jhi                                   on 2003/08/06  05:18:32
62398         Log: Subject: [PATCH] dprofpp.PL again -- #20488 thinko
62399              From: "Craig A. Berry" <craigberry@mac.com>
62400              Date: Wed, 06 Aug 2003 00:18:36 -0500
62401              Message-ID: <3F308FAC.4090409@mac.com>
62402
62403              (from vmsperl list)
62404      Branch: perl
62405            ! utils/dprofpp.PL
62406 ____________________________________________________________________________
62407 [ 20510] By: jhi                                   on 2003/08/05  19:01:08
62408         Log: Subject: [PATCH pod/perlfaq2.pod] BETTER update Friedl book listing for 2nd edition
62409              From: mjd@plover.com
62410              Date: 5 Aug 2003 19:23:46 -0000
62411              Message-ID: <20030805192346.25911.qmail@plover.com>
62412      Branch: perl
62413            ! pod/perlfaq2.pod
62414 ____________________________________________________________________________
62415 [ 20508] By: jhi                                   on 2003/08/05  18:36:38
62416         Log: Continue #20506.
62417      Branch: perl
62418            ! lib/ExtUtils/MM_Unix.pm
62419 ____________________________________________________________________________
62420 [ 20506] By: jhi                                   on 2003/08/05  17:58:01
62421         Log: Try to fix the INC in PASTHRU.
62422      Branch: perl
62423            ! lib/ExtUtils/MM_Unix.pm
62424 ____________________________________________________________________________
62425 [ 20503] By: jhi                                   on 2003/08/05  16:02:14
62426         Log: Subject: Re: [perl #23083] [5.8.0-Bug?] backtick returns empty value when $SIG{CHLD} defined.
62427              From: Chip Salzenberg <chip@pobox.com>
62428              Date: Tue, 5 Aug 2003 11:39:24 -0400
62429              Message-ID: <20030805153924.GO1751@perlsupport.com
62430      Branch: perl
62431            ! perlio.c
62432 ____________________________________________________________________________
62433 [ 20502] By: jhi                                   on 2003/08/05  15:32:39
62434         Log: Subject: [PATCH] Re: MakeMaker doesn't pasthru DEFINE command-line args to subdirs on Win32
62435              From: Steve Hay <steve.hay@uk.radan.com>
62436              Date: Tue, 05 Aug 2003 10:43:49 +0100
62437              Message-ID: <3F2F7C55.9020808@uk.radan.com>
62438
62439              (The MM_Unix.pm part was dealt with in #20501.)
62440      Branch: perl
62441            ! lib/ExtUtils/MM_Win32.pm lib/ExtUtils/t/MM_Win32.t
62442 ____________________________________________________________________________
62443 [ 20501] By: jhi                                   on 2003/08/05  15:28:17
62444         Log: Reinstate #11125, hopefully making MakeMaker to pass
62445              DEFINE and INCLUDE to subdirs (NI-S says he'll work
62446              around any problems caused seen Tk if necessary).
62447              Also (document and) reorder the PASTHRU_INC and PASTHRU_DEFINE
62448              to be _after_ the directory-specific INC and DEFINE as suggested
62449              by NI-S (Tk probably being the only "user" of the said macros).
62450      Branch: perl
62451            ! lib/ExtUtils/MM_Unix.pm
62452 ____________________________________________________________________________
62453 [ 20500] By: jhi                                   on 2003/08/05  15:14:35
62454         Log: Subject: [PATCH-5.8.1-RC4] WinCE more implemented functions
62455              From: "Konovalov, Vadim" <vkonovalov@spb.lucent.com>
62456              Date: Tue, 5 Aug 2003 20:12:18 +0400
62457              Message-ID: <845FCFF2D4C0FC468B485E8777C7A00C200E66@cio-test001.spb.lucent.com>
62458      Branch: perl
62459            - wince/include/netdb.h
62460            ! MANIFEST wince/Makefile.ce wince/win32.h wince/win32io.c
62461            ! wince/wince.c
62462 ____________________________________________________________________________
62463 [ 20499] By: jhi                                   on 2003/08/05  14:03:43
62464         Log: A suggested perlio doc addition from Stas.
62465      Branch: perl
62466            ! pod/perliol.pod
62467 ____________________________________________________________________________
62468 [ 20498] By: jhi                                   on 2003/08/05  13:32:59
62469         Log: Subject: [PATCH RC4] AUTHORS +  Maintainers.pl
62470              From: Robin Barker <Robin.Barker@npl.co.uk>
62471              Date: Tue, 5 Aug 2003 15:32:36 +0100
62472              Message-ID: <533D273D4014D411AB1D00062938C4D90404661C@hotel.npl.co.uk>
62473      Branch: perl
62474            ! AUTHORS Porting/Maintainers.pl
62475 ____________________________________________________________________________
62476 [ 20497] By: jhi                                   on 2003/08/05  12:23:04
62477         Log: This is necessary to get things building for the VMS debugger.
62478              (Craig Berry)
62479      Branch: perl
62480            ! vms/descrip_mms.template
62481 ____________________________________________________________________________
62482 [ 20495] By: jhi                                   on 2003/08/05  09:23:24
62483         Log: Subject: Re: [perl #23202] [RESOLVED] coredump on ext/POSIX/t/posix with NetBSD-1.6
62484              From: alian <alian@cpan.org>
62485              Date: Tue, 05 Aug 2003 12:21:42 +0200
62486              Message-ID: <3F2F8536.1090702@jupiter.alianet>
62487      Branch: perl
62488            ! ext/POSIX/t/posix.t
62489 ____________________________________________________________________________
62490 [ 20494] By: jhi                                   on 2003/08/05  09:03:57
62491         Log: Add some known cases to Maintainers.
62492      Branch: perl
62493            ! Porting/Maintainers.pl
62494 ____________________________________________________________________________
62495 [ 20492] By: jhi                                   on 2003/08/05  08:34:34
62496         Log: Subject: [PATCH] perlthrtut.pod
62497              From: Elizabeth Mattijsen <liz@dijkmat.nl>
62498              Date: Tue, 5 Aug 2003 11:26:04 +0200
62499              Message-Id: <p05111b0abb5525e65401@[80.127.186.62]>
62500      Branch: perl
62501            ! pod/perlthrtut.pod
62502 ____________________________________________________________________________
62503 [ 20491] By: jhi                                   on 2003/08/05  08:31:29
62504         Log: Add META.yml and Stas' makemeta (plus extensive reworking
62505              of the Maintainers utility)
62506      Branch: perl
62507            + META.yml Porting/Maintainers.pm Porting/makemeta
62508            ! MANIFEST Makefile.SH Porting/Maintainers
62509            ! Porting/Maintainers.pl
62510 ____________________________________________________________________________
62511 [ 20490] By: jhi                                   on 2003/08/05  06:28:06
62512         Log: ext/IPC/SysV/t/sem.t don't remove semaphore on NetBSD sparc
62513              Try to remove the created message queues and semaphores
62514              even in the case of failures.
62515      Branch: perl
62516            ! ext/IPC/SysV/t/msg.t ext/IPC/SysV/t/sem.t
62517 ____________________________________________________________________________
62518 [ 20489] By: jhi                                   on 2003/08/05  06:21:47
62519         Log: Subject: PerlIO_{read,write} return value doc patch
62520              From: Gisle Aas <gisle@ActiveState.com>
62521              Date: 04 Aug 2003 13:25:28 -0700
62522              Message-ID: <lr4r0xuq4n.fsf@caliper.activestate.com>
62523      Branch: perl
62524            ! pod/perlapio.pod
62525 ____________________________________________________________________________
62526 [ 20488] By: jhi                                   on 2003/08/05  06:12:07
62527         Log: Subject: [PATCH utils/dprofpp.PL] (was Re: DProf tests with -p broken on VMS)
62528              From: "Craig A. Berry" <craigberry@mac.com>
62529              Date: Mon, 04 Aug 2003 19:29:51 -0500
62530              Message-ID: <3F2EFA7F.6070801@mac.com>
62531      Branch: perl
62532            ! utils/dprofpp.PL
62533 ____________________________________________________________________________
62534 [ 20486] By: jhi                                   on 2003/08/05  06:05:53
62535         Log: Subject: [PATCH] typos in encoding.pm
62536              From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
62537              Date: Mon, 4 Aug 2003 20:09:35 +0200
62538              Message-ID: <005001c35ab3$9225c320$0c2f1fac@R2D2>
62539      Branch: perl
62540            ! ext/Encode/encoding.pm
62541 ____________________________________________________________________________
62542 [ 20485] By: jhi                                   on 2003/08/05  05:29:11
62543         Log: Bytecode patching from Enache.
62544      Branch: perl
62545            ! ext/B/B/Assembler.pm ext/B/B/Disassembler.pm
62546            ! ext/B/t/bytecode.t ext/ByteLoader/bytecode.h t/TEST
62547 ____________________________________________________________________________
62548 [ 20484] By: jhi                                   on 2003/08/05  05:26:32
62549         Log: Upgrade to Digest::MD5 2.27.
62550      Branch: perl
62551            ! ext/Digest/MD5/Changes ext/Digest/MD5/MD5.pm
62552            ! ext/Digest/MD5/t/files.t
62553 ____________________________________________________________________________
62554 [ 20483] By: jhi                                   on 2003/08/05  05:15:16
62555         Log: Subject: [Patch 5.8.1 Encode.pm] v-strings deprecated
62556              From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
62557              Date: Tue, 05 Aug 2003 00:27:10 +0900
62558              Message-Id: <20030805002313.9880.BQW10602@nifty.com>
62559      Branch: perl
62560            ! ext/Encode/t/at-cn.t ext/Encode/t/at-tw.t
62561 ____________________________________________________________________________
62562 [ 20482] By: rgs                                   on 2003/08/04  22:06:46
62563         Log: Nit in INSTALL about the svr?.sh hint files.
62564      Branch: perl
62565            ! INSTALL
62566 ____________________________________________________________________________
62567 [ 20480] By: rgs                                   on 2003/08/04  21:30:25
62568         Log: Subject: [PATCH] Re: [perl #23210] parser error with 'print $HANDLE func(@args)'
62569              From: Steve Grazzini <grazz@pobox.com>
62570              Date: Mon, 4 Aug 2003 16:01:45 -0400
62571              Message-ID: <20030804200145.GB21699@grazzini.net>
62572
62573              Prevent the warning "Bareword found where operator expected" in
62574              the case "print $fh foo()" where foo() is an undefined function.
62575      Branch: perl
62576            ! toke.c
62577 ____________________________________________________________________________
62578 [ 20479] By: rgs                                   on 2003/08/04  20:26:17
62579         Log: Fix bug #23141 : localization of readonly magic scalars
62580              now produces an error "Modification of a read-only value
62581              attempted", instead of silently failing.
62582      Branch: perl
62583            ! scope.c t/op/local.t
62584 ____________________________________________________________________________
62585 [ 20478] By: rgs                                   on 2003/08/04  20:10:52
62586         Log: Revert change #19282 : it caused problems for some -Duseshrplib
62587              builds. On the other hand, make sure that your C compiler isn't
62588              a perl script !
62589      Branch: perl
62590            ! Makefile.SH
62591 ____________________________________________________________________________
62592 [ 20475] By: jhi                                   on 2003/08/04  09:35:55
62593         Log: Rename DEBUG() and DEB() to PERL_DEBUG() and PERL_DEB().
62594      Branch: perl
62595            ! perl.c perl.h
62596 ____________________________________________________________________________
62597 [ 20474] By: jhi                                   on 2003/08/04  08:41:55
62598         Log: Oops.
62599      Branch: perl
62600            ! hints/darwin.sh hints/rhapsody.sh
62601 ____________________________________________________________________________
62602 [ 20473] By: jhi                                   on 2003/08/04  07:58:36
62603         Log: Subject: [PATCH] Re: Can't usemymalloc on OS X
62604              From: Rafael Garcia-Suarez <rgarciasuarez@free.fr>
62605              Date: Mon, 4 Aug 2003 10:35:12 +0200
62606              Message-Id: <20030804103512.61a9661c.rgarciasuarez@free.fr>
62607      Branch: perl
62608            ! hints/darwin.sh
62609 ____________________________________________________________________________
62610 [ 20470] By: jhi                                   on 2003/08/04  06:30:05
62611         Log: Test count adjustment from Rafael.
62612      Branch: perl
62613            ! lib/Test/Simple/t/is_deeply.t
62614 ____________________________________________________________________________
62615 [ 20469] By: jhi                                   on 2003/08/04  06:23:26
62616         Log: Subject: [PATCH] maint, Win32, GCC 3.2
62617              From: Mattia Barbon <mbarbon@dsi.unive.it>
62618              Date: Sat, 2 Aug 2003 10:31:07 +0200 (ora legale Europa occidentale)
62619              Message-ID: <Mahogany-0.64.2-624-20030802-103107.00@rbnet.it>
62620      Branch: perl
62621            ! ext/Errno/Errno_pm.PL
62622 ____________________________________________________________________________
62623 [ 20467] By: jhi                                   on 2003/08/04  05:10:57
62624         Log: Apparently the newly introduce -DDARWIN did conflict with
62625              some Apple definition, how ironic...
62626      Branch: perl
62627            ! hints/darwin.sh perl.h
62628 ____________________________________________________________________________
62629 [ 20466] By: jhi                                   on 2003/08/04  05:03:30
62630         Log: Subject: Debian patch that skips podless modules
62631              From: Alexey Tourbin <at@altlinux.ru>
62632              Date: Sun, 3 Aug 2003 21:33:00 +0400
62633              Message-ID: <20030803173300.GC2076@julia.office.altlinux.ru>
62634
62635              (plus Schwern's and Robert's nits)
62636      Branch: perl
62637            ! installman
62638 ____________________________________________________________________________
62639 [ 20465] By: jhi                                   on 2003/08/04  05:00:04
62640         Log: Subject: [PATCH] 4 bugs in Test::More
62641              From: Fergal Daly <fergal@esatclear.ie> (by way of Fergal Daly <fergal@esatclear.ie>)
62642              Date: Fri, 21 Mar 2003 10:57:31 +0000
62643              Message-Id: <200303211057.31879.fergal@esatclear.ie>
62644      Branch: perl
62645            ! lib/Test/More.pm lib/Test/Simple/t/More.t
62646            ! lib/Test/Simple/t/is_deeply.t
62647 ____________________________________________________________________________
62648 [ 20464] By: jhi                                   on 2003/08/04  04:44:08
62649         Log: Upgrade to ExtUtils::MakeMaker 6.15.
62650      Branch: perl
62651            ! lib/ExtUtils/Changes lib/ExtUtils/META.yml
62652            ! lib/ExtUtils/MM_Any.pm lib/ExtUtils/MM_Unix.pm
62653            ! lib/ExtUtils/MakeMaker.pm lib/ExtUtils/t/MM_Unix.t
62654 ____________________________________________________________________________
62655 [ 20463] By: jhi                                   on 2003/08/04  04:37:25
62656         Log: Subject: Re: [PATCH] Re: [perl #23206] Benchmark::cmpthese usage message wrong
62657              From: Michael G Schwern <schwern@pobox.com>
62658              Date: Sun, 3 Aug 2003 16:12:35 -0700
62659              Message-ID: <20030803231235.GJ24350@windhund.schwern.org>
62660      Branch: perl
62661            ! lib/Benchmark.pm lib/Benchmark.t
62662 ____________________________________________________________________________
62663 [ 20462] By: rgs                                   on 2003/08/03  22:26:10
62664         Log: Subject: [PATCH] Re: [perl #23207] persistant sideffect involving bitwise xor and substr
62665              From: Enache Adrian <enache@rdslink.ro>
62666              Date: Sun, 3 Aug 2003 18:00:05 +0300
62667              Message-ID: <20030803150005.GA1319@ratsnest.hole>
62668      Branch: perl
62669            ! pp.c t/op/substr.t
62670 ____________________________________________________________________________
62671 [ 20461] By: rgs                                   on 2003/08/03  21:50:11
62672         Log: Subject: Re: [perl #23202] coredump on ext/POSIX/t/posix with NetBSD-1.6
62673              From: alian <alian@cpan.org>
62674              Date: Sat, 02 Aug 2003 16:19:25 +0200
62675              Message-ID: <3F2BC86D.2050400@jupiter.alianet>
62676
62677              Plus, un-mark a test as TODO for darwin >= 6.6 (by M. Schwern)
62678      Branch: perl
62679            ! ext/POSIX/t/posix.t
62680 ____________________________________________________________________________
62681 [ 20458] By: jhi                                   on 2003/08/03  19:01:08
62682         Log: Subject: [PATCH-for-5.8.1-RC4] wince distribution
62683              From: "Vadim Konovalov" <vkonovalov@peterstar.ru>
62684              Date: Mon, 4 Aug 2003 00:01:08 +0400
62685              Message-ID: <039c01c359fa$1e755d50$195ec3d9@vad>
62686      Branch: perl
62687            ! wince/makedist.pl
62688 ____________________________________________________________________________
62689 [ 20457] By: jhi                                   on 2003/08/03  18:59:10
62690         Log: Subject: [PATCH perlreftut.pod] Minor edits
62691              From: mjd@plover.com
62692              Date: 3 Aug 2003 17:46:08 -0000
62693              Message-ID: <20030803174608.15792.qmail@plover.com>
62694      Branch: perl
62695            ! pod/perlreftut.pod
62696 ____________________________________________________________________________
62697 [ 20456] By: jhi                                   on 2003/08/03  18:52:16
62698         Log: Subject: [PATCH Time::HiRes docs] Grammar, punctuation, formatting edits
62699              From: mjd@plover.com
62700              Date: 3 Aug 2003 19:37:49 -0000
62701              Message-ID: <20030803193749.3733.qmail@plover.com>
62702      Branch: perl
62703            ! ext/Time/HiRes/HiRes.pm
62704 ____________________________________________________________________________
62705 [ 20455] By: jhi                                   on 2003/08/03  18:47:13
62706         Log: Subject: [PATCH] Re: win32.c bug - handle leak
62707              From: Jan Dubois <jand@ActiveState.com>
62708              Date: Sat, 02 Aug 2003 10:25:05 -0700
62709              Message-ID: <9gsnivssuml394bttjb3mfsmdgfn9l6kh9@4ax.com>
62710      Branch: perl
62711            ! win32/win32.c
62712 ____________________________________________________________________________
62713 [ 20454] By: jhi                                   on 2003/08/03  18:45:53
62714         Log: Subject: [PATCH 5.8.1 @20218] OS/2 build
62715              From: Ilya Zakharevich <ilya@Math.Berkeley.EDU>
62716              Date: Sat, 2 Aug 2003 09:38:50 -0700
62717              Message-ID: <20030802163850.GA4712@math.berkeley.edu>
62718      Branch: perl
62719            ! os2/os2ish.h
62720 ____________________________________________________________________________
62721 [ 20453] By: jhi                                   on 2003/08/03  18:44:29
62722         Log: Subject: [PATCH] Storable and uninitalized array values
62723              From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
62724              Date: Sat, 2 Aug 2003 13:40:16 +0200
62725              Message-ID: <00ab01c358ea$d940a5b0$0c2f1fac@R2D2>
62726      Branch: perl
62727            ! ext/Storable/Storable.xs ext/Storable/t/freeze.t
62728 ____________________________________________________________________________
62729 [ 20452] By: jhi                                   on 2003/08/03  18:27:47
62730         Log: Upgrade to Unicode::Collate 0.26.
62731      Branch: perl
62732            ! lib/Unicode/Collate.pm lib/Unicode/Collate/Changes
62733            ! lib/Unicode/Collate/README lib/Unicode/Collate/t/index.t
62734            ! lib/Unicode/Collate/t/test.t
62735 ____________________________________________________________________________
62736 [ 20451] By: jhi                                   on 2003/08/03  18:24:18
62737         Log: Subject: [PATCH Net::Ping] on VMS, set non-blocking with ioctl, not fcntl
62738              From: "Craig A. Berry" <craigberry@mac.com>
62739              Date: Sat, 02 Aug 2003 10:25:44 -0500
62740              Message-ID: <3F2BD7F8.8090003@mac.com>
62741      Branch: perl
62742            ! lib/Net/Ping.pm
62743 ____________________________________________________________________________
62744 [ 20450] By: rgs                                   on 2003/08/03  12:50:07
62745         Log: Subject: [PATCH 5.8.1 @20218] Shell.t
62746              From: Ilya Zakharevich <ilya@Math.Berkeley.EDU>
62747              Date: Sun, 3 Aug 2003 06:21:41 -0700
62748              Message-ID: <20030803132141.GA5156@math.berkeley.edu>
62749      Branch: perl
62750            ! lib/Shell.t
62751 ____________________________________________________________________________
62752 [ 20447] By: jhi                                   on 2003/08/02  07:26:58
62753         Log: C++ (or C99) sneak attack ("inline" function keyword).
62754      Branch: perl
62755            ! ext/Devel/DProf/DProf.xs
62756 ____________________________________________________________________________
62757 [ 20445] By: jhi                                   on 2003/08/02  06:24:30
62758         Log: Subject: [PATCH] Re: [perl #23185] perl crash with File::Glob
62759              From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
62760              Date: Fri, 1 Aug 2003 13:12:14 +0200
62761              Message-ID: <00dc01c3581d$c3412c30$0c2f1fac@R2D2>
62762      Branch: perl
62763            ! ext/File/Glob/Glob.pm ext/File/Glob/bsd_glob.c
62764            ! ext/File/Glob/t/basic.t
62765 ____________________________________________________________________________
62766 [ 20444] By: jhi                                   on 2003/08/02  06:17:28
62767         Log: Only show the message if the locale settings look risky.
62768      Branch: perl
62769            ! ext/Time/HiRes/Makefile.PL
62770 ____________________________________________________________________________
62771 [ 20443] By: jhi                                   on 2003/08/02  06:01:27
62772         Log: Add a message about the LC_ALL=C workaround (for non-core builds);
62773              update Changes.
62774      Branch: perl
62775            ! ext/Time/HiRes/Changes ext/Time/HiRes/Makefile.PL
62776 ____________________________________________________________________________
62777 [ 20441] By: jhi                                   on 2003/08/02  05:37:37
62778         Log: Subject: [PATCH] Small nit to pad.c
62779              From: Enache Adrian <enache@rdslink.ro>
62780              Date: Sat, 2 Aug 2003 01:50:40 +0300
62781              Message-ID: <20030801225040.GB1281@ratsnest.hole>
62782      Branch: perl
62783            ! pad.c
62784 ____________________________________________________________________________
62785 [ 20440] By: jhi                                   on 2003/08/02  05:12:13
62786         Log: Subject: [PATCH @20348] Re: [PATCH @19834] DProf fixes
62787              From: Radu Greab <rgreab@fx.ro>
62788              Date: Sat, 02 Aug 2003 00:17:49 +0300 (EEST)
62789              Message-Id: <20030802.001749.101708736.radu@yx.primIT.ro>
62790      Branch: perl
62791            ! ext/Devel/DProf/Changes ext/Devel/DProf/DProf.pm
62792            ! ext/Devel/DProf/DProf.xs t/lib/dprof/test8_t
62793            ! t/lib/dprof/test8_v
62794 ____________________________________________________________________________
62795 [ 20439] By: jhi                                   on 2003/08/02  05:06:43
62796         Log: Subject: [PATCH] ioctl for VMS
62797              From: "Craig A. Berry" <craigberry@mac.com>
62798              Date: Fri, 01 Aug 2003 23:34:31 -0500
62799              Message-ID: <3F2B3F57.4050609@mac.com>
62800      Branch: perl
62801            ! configure.com vms/vmsish.h
62802 ____________________________________________________________________________
62803 [ 20438] By: jhi                                   on 2003/08/02  05:05:40
62804         Log: Subject: [PATCH] argv case nit for VMS
62805              From: "Craig A. Berry" <craigberry@mac.com>
62806              Date: Fri, 01 Aug 2003 19:16:30 -0500
62807              Message-ID: <3F2B02DE.10207@mac.com>
62808      Branch: perl
62809            ! ext/Encode/bin/enc2xs pod/pod2usage.PL pod/podselect.PL
62810 ____________________________________________________________________________
62811 [ 20437] By: jhi                                   on 2003/08/01  22:00:30
62812         Log: Hugo's second thoughts: drop the relatively rare and
62813              slow optimization for now.
62814      Branch: perl
62815            ! regexec.c
62816 ____________________________________________________________________________
62817 [ 20435] By: jhi                                   on 2003/08/01  21:55:19
62818         Log: Missed this bit in the last update: couldn't answer ''
62819              or ' ' to get 'none'.
62820      Branch: perl
62821            ! Configure
62822 ____________________________________________________________________________
62823 [ 20432] By: jhi                                   on 2003/08/01  13:45:10
62824         Log: Encode pre-1.98 update from Dan Kogai, sent from
62825              the ashes of his smoldering motherboard.
62826      Branch: perl
62827            ! ext/Encode/AUTHORS ext/Encode/Changes ext/Encode/META.yml
62828            ! ext/Encode/lib/Encode/Alias.pm ext/Encode/t/Aliases.t
62829            ! ext/Encode/t/perlio.t ext/Encode/ucm/macArabic.ucm
62830            ! ext/Encode/ucm/macFarsi.ucm ext/Encode/ucm/macHebrew.ucm
62831 ____________________________________________________________________________
62832 [ 20431] By: jhi                                   on 2003/08/01  13:34:28
62833         Log: More runperl(switches => ...) finds (bleadperl only).
62834      Branch: perl
62835            ! t/op/readline.t
62836 ____________________________________________________________________________
62837 [ 20426] By: jhi                                   on 2003/08/01  12:45:19
62838         Log: Regen perltoc.
62839      Branch: perl
62840            ! pod/perltoc.pod
62841 ____________________________________________________________________________
62842 [ 20425] By: jhi                                   on 2003/08/01  12:44:16
62843         Log: pod likes whitespace.
62844      Branch: perl
62845            ! ext/ByteLoader/ByteLoader.pm
62846 ____________________________________________________________________________
62847 [ 20422] By: jhi                                   on 2003/08/01  11:37:53
62848         Log: Faulty check.
62849      Branch: perl
62850            ! t/test.pl
62851 ____________________________________________________________________________
62852 [ 20420] By: jhi                                   on 2003/08/01  11:06:54
62853         Log: Update INSTALL on the *dir.
62854      Branch: perl
62855            ! INSTALL
62856 ____________________________________________________________________________
62857 [ 20419] By: jhi                                   on 2003/08/01  11:04:55
62858         Log: Regen Glossary et al.
62859      Branch: perl
62860            ! Porting/Glossary Porting/config.sh Porting/config_H
62861 ____________________________________________________________________________
62862 [ 20418] By: jhi                                   on 2003/08/01  10:58:23
62863         Log: Now the test should be really testing what it's supposed to.
62864      Branch: perl
62865            ! ext/B/t/bytecode.t
62866 ____________________________________________________________________________
62867 [ 20417] By: jhi                                   on 2003/08/01  10:45:57
62868         Log: Fix the options.
62869      Branch: perl
62870            ! ext/B/t/bytecode.t
62871 ____________________________________________________________________________
62872 [ 20416] By: jhi                                   on 2003/08/01  10:44:19
62873         Log: Argument sanity checking.
62874      Branch: perl
62875            ! t/test.pl
62876 ____________________________________________________________________________
62877 [ 20413] By: jhi                                   on 2003/08/01  10:37:09
62878         Log: Regen Configure to use the *html*dir files.
62879              (installhtml uses none of that, though)
62880      Branch: perl
62881            ! Configure Policy_sh.SH config_h.SH
62882 ____________________________________________________________________________
62883 [ 20411] By: jhi                                   on 2003/08/01  10:10:05
62884         Log: More for the *dir changes.
62885      Branch: perl
62886            ! Policy_sh.SH config_h.SH hints/darwin.sh
62887 ____________________________________________________________________________
62888 [ 20410] By: jhi                                   on 2003/08/01  10:09:38
62889         Log: Regen Configure for the new *dir installation variables.
62890              If these don't work, ask Schwern.
62891      Branch: perl
62892            ! Configure
62893 ____________________________________________________________________________
62894 [ 20408] By: jhi                                   on 2003/08/01  05:27:48
62895         Log: Upgrade to MakeMaker 6.13.
62896      Branch: perl
62897            ! lib/ExtUtils/Changes lib/ExtUtils/META.yml
62898            ! lib/ExtUtils/MM_Any.pm lib/ExtUtils/MM_Unix.pm
62899            ! lib/ExtUtils/MM_VMS.pm lib/ExtUtils/MakeMaker.pm
62900            ! lib/ExtUtils/t/basic.t
62901 ____________________________________________________________________________
62902 [ 20407] By: jhi                                   on 2003/08/01  05:21:36
62903         Log: JAPH patch :-) from Abigail.
62904      Branch: perl
62905            ! t/japh/abigail.t
62906 ____________________________________________________________________________
62907 [ 20406] By: jhi                                   on 2003/08/01  05:10:30
62908         Log: Regen perlapi.
62909      Branch: perl
62910            ! perlapi.c
62911 ____________________________________________________________________________
62912 [ 20405] By: jhi                                   on 2003/08/01  05:09:23
62913         Log: Subject: [PATCH] Re: utf8+regex bug in 5.8.1-RC2
62914              From: Dave Mitchell <davem@fdgroup.com>
62915              Date: Fri, 1 Aug 2003 01:16:31 +0100
62916              Message-ID: <20030801001631.GA11233@fdgroup.com>
62917      Branch: perl
62918            ! regcomp.c t/op/pat.t
62919 ____________________________________________________________________________
62920 [ 20404] By: ams                                   on 2003/08/01  03:28:17
62921         Log: Subject: [PATCH] LotR quote for perlapi.c
62922              From: Autrijus Tang <autrijus@autrijus.org>
62923              Date: Fri, 1 Aug 2003 10:00:29 +0800
62924              Message-Id: <20030801020029.GA28241@not.autrijus.org>
62925      Branch: perl
62926            ! embed.pl
62927 ____________________________________________________________________________
62928 [ 20396] By: rgs                                   on 2003/07/31  20:37:50
62929         Log: Document in INSTALL that -Uinstallusrbinperl is now the default.
62930      Branch: perl
62931            ! INSTALL
62932 ____________________________________________________________________________
62933 [ 20395] By: jhi                                   on 2003/07/31  20:32:30
62934         Log: Integrate README.macosx more.
62935      Branch: perl
62936            ! pod/buildtoc.PL pod/perl.pod pod/perlport.pod pod/perltoc.pod
62937            ! win32/Makefile win32/makefile.mk
62938 ____________________________________________________________________________
62939 [ 20394] By: jhi                                   on 2003/07/31  20:31:49
62940         Log: README.macosx from Sherm Pendley.
62941      Branch: perl
62942            + README.macosx
62943            ! MANIFEST
62944 ____________________________________________________________________________
62945 [ 20393] By: jhi                                   on 2003/07/31  20:31:08
62946         Log: Unportable subtest needs rethink.
62947      Branch: perl
62948            ! ext/B/t/bytecode.t
62949 ____________________________________________________________________________
62950 [ 20392] By: jhi                                   on 2003/07/31  20:22:03
62951         Log: Enache again.
62952      Branch: perl
62953            ! ext/ByteLoader/bytecode.h
62954 ____________________________________________________________________________
62955 [ 20390] By: jhi                                   on 2003/07/31  20:20:28
62956         Log: Retract #20385.
62957      Branch: perl
62958            ! ext/ByteLoader/bytecode.h
62959 ____________________________________________________________________________
62960 [ 20389] By: jhi                                   on 2003/07/31  20:14:06
62961         Log: Yet another bytecode tweak from Enache.
62962      Branch: perl
62963            ! ext/B/B/Bytecode.pm
62964 ____________________________________________________________________________
62965 [ 20388] By: jhi                                   on 2003/07/31  20:11:21
62966         Log: Subject: [DOC PATCH] pod/perlguts.pod
62967              From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
62968              Date: Thu, 31 Jul 2003 22:39:01 +0200
62969              Message-ID: <004a01c357a3$c71f9f50$0c2f1fac@R2D2>
62970      Branch: perl
62971            ! pod/perlguts.pod
62972 ____________________________________________________________________________
62973 [ 20387] By: jhi                                   on 2003/07/31  19:57:36
62974         Log: Subject: Re: [perl #23171] Regex too selfish
62975              From: hv@crypt.org
62976              Date: Thu, 31 Jul 2003 18:59:43 +0100
62977              Message-Id: <200307311759.h6VHxhn06664@zen.crypt.org>
62978
62979              (choose the second code patch)
62980      Branch: perl
62981            ! regexec.c t/op/re_tests
62982 ____________________________________________________________________________
62983 [ 20386] By: jhi                                   on 2003/07/31  19:48:17
62984         Log: Make consistent with installperl (and working in MPE/iX)
62985              (Mark Bixby)
62986      Branch: perl
62987            ! installman
62988 ____________________________________________________________________________
62989 [ 20385] By: jhi                                   on 2003/07/31  19:46:14
62990         Log: (retracted by #20390)
62991      Branch: perl
62992            ! ext/ByteLoader/bytecode.h
62993 ____________________________________________________________________________
62994 [ 20383] By: jhi                                   on 2003/07/31  19:37:22
62995         Log: Upgrade to real CPAN.pm 1.76.
62996      Branch: perl
62997            + lib/CPAN/META.yml lib/CPAN/PAUSE2003.pub lib/CPAN/SIGNATURE
62998            + lib/CPAN/t/signature.t
62999            ! MANIFEST lib/CPAN.pm
63000 ____________________________________________________________________________
63001 [ 20379] By: jhi                                   on 2003/07/31  12:32:31
63002         Log: One more tweak for Mac OS X hints.
63003      Branch: perl
63004            ! hints/darwin.sh
63005 ____________________________________________________________________________
63006 [ 20378] By: jhi                                   on 2003/07/31  11:39:31
63007         Log: The new PKI system is far too untested and rough yet
63008              (think machines with no network, machines behind firewalls,
63009              corporate and national encryption policies).  It cannot be
63010              considered useable at this stage.
63011
63012              Therefore, create a fake CPAN 1.76.
63013      Branch: perl
63014            ! lib/CPAN.pm
63015 ____________________________________________________________________________
63016 [ 20377] By: jhi                                   on 2003/07/31  11:28:58
63017         Log: This test is pretty useless as it stands.
63018      Branch: perl
63019            - lib/CPAN/t/signature.t
63020            ! MANIFEST
63021 ____________________________________________________________________________
63022 [ 20376] By: jhi                                   on 2003/07/31  10:30:08
63023         Log: Document the requirements for Module::Signature a bit.
63024      Branch: perl
63025            ! lib/CPAN.pm
63026 ____________________________________________________________________________
63027 [ 20375] By: jhi                                   on 2003/07/31  09:37:44
63028         Log: We are change #20316 ahead of 1.75.
63029      Branch: perl
63030            ! lib/CPAN.pm
63031 ____________________________________________________________________________
63032 [ 20373] By: jhi                                   on 2003/07/31  07:35:11
63033         Log: Integrate from maint:
63034              [ 20359]
63035              No more wince/README.compile here, either.
63036      Branch: perl
63037           !> Porting/makerel
63038 ____________________________________________________________________________
63039 [ 20371] By: jhi                                   on 2003/07/31  05:41:56
63040         Log: ext/SDBM_File/sdbm's auto directory ended up in ext/SDBM_File.
63041              (Schwern)
63042      Branch: perl
63043            ! lib/ExtUtils/MakeMaker.pm
63044 ____________________________________________________________________________
63045 [ 20370] By: jhi                                   on 2003/07/31  05:39:11
63046         Log: Schwern says this is most probably an old VMS MakeMaker
63047              bug workaround that can go now.
63048      Branch: perl
63049            ! ext/SDBM_File/sdbm/Makefile.PL
63050 ____________________________________________________________________________
63051 [ 20369] By: jhi                                   on 2003/07/31  05:32:15
63052         Log: Final touches to "Apple-like" installation directories.
63053      Branch: perl
63054            ! hints/darwin.sh
63055 ____________________________________________________________________________
63056 [ 20368] By: jhi                                   on 2003/07/31  05:28:17
63057         Log: Tests for change #20367 (and change use overload; to
63058              just require overload;)
63059      Branch: perl
63060            ! lib/Tie/RefHash.pm lib/Tie/RefHash.t
63061 ____________________________________________________________________________
63062 [ 20367] By: jhi                                   on 2003/07/31  05:12:47
63063         Log: Subject: [PATCH Tie::RefHash] added support for overloaded ""
63064              From: Xavier Noria <fxn@hashref.com>
63065              Date: Thu, 31 Jul 2003 00:29:13 +0200
63066              Message-Id: <200307310029.13567.fxn@hashref.com>
63067      Branch: perl
63068            ! lib/Tie/RefHash.pm
63069 ____________________________________________________________________________
63070 [ 20366] By: jhi                                   on 2003/07/31  05:06:11
63071         Log: Subject: [PATCH] test for B::Bytecode/ByteLoader
63072              From: Enache Adrian <enache@rdslink.ro>
63073              Date: Thu, 31 Jul 2003 03:49:40 +0300
63074              Message-ID: <20030731004940.GB1266@ratsnest.hole>
63075
63076              (but use test.pl:run_perl() instead of manual `$^X ...`)
63077      Branch: perl
63078            + ext/B/t/bytecode.t
63079            ! MANIFEST
63080 ____________________________________________________________________________
63081 [ 20364] By: rgs                                   on 2003/07/30  21:35:08
63082         Log: Silence spurious noise from MakeMaker :
63083              hint files shouldn't return undef and have set $!.
63084      Branch: perl
63085            ! ext/DynaLoader/hints/linux.pl
63086 ____________________________________________________________________________
63087 [ 20362] By: jhi                                   on 2003/07/30  20:24:49
63088         Log: Upgrade to NEXT 0.52.
63089      Branch: perl
63090            ! lib/NEXT.pm lib/NEXT/Changes lib/NEXT/README
63091            ! lib/NEXT/t/actuns.t lib/NEXT/t/unseen.t
63092 ____________________________________________________________________________
63093 [ 20356] By: jhi                                   on 2003/07/30  18:16:55
63094         Log: Might as well.
63095      Branch: perl
63096            ! pod/perlhist.pod
63097 ____________________________________________________________________________
63098 [ 20355] By: jhi                                   on 2003/07/30  18:15:49
63099         Log: Silly gcc.
63100      Branch: perl
63101            ! perl.c
63102 ____________________________________________________________________________
63103 [ 20353] By: jhi                                   on 2003/07/30  17:09:59
63104         Log: This is getting comical.  (Practical tip: never ask
63105              for opinions from one than one person at one time.)
63106              Now back to -Dprefix='/usr' replacing the system Perl,
63107              but don't use the Apple internal DSTROOT.
63108      Branch: perl
63109            ! hints/darwin.sh
63110 ____________________________________________________________________________
63111 [ 20352] By: jhi                                   on 2003/07/30  17:00:25
63112         Log: Mac OS X hints dance continues.  Now drop any special
63113              installation directory mangling.  In other words, if
63114              you want to overwrite the system perl, you really need
63115              to find out how to do that.
63116      Branch: perl
63117            ! hints/darwin.sh
63118 ____________________________________________________________________________
63119 [ 20350] By: jhi                                   on 2003/07/30  14:23:03
63120         Log: Try again with the Mac OS X hints.  Now the three cases
63121              (no -Dprefix, /usr, and something else) all install
63122              into separate places.  No prefix installs to /usr/local.
63123              The /usr overwrites the Apple install (modulo the version).
63124      Branch: perl
63125            ! hints/darwin.sh
63126 ____________________________________________________________________________
63127 [ 20348] By: jhi                                   on 2003/07/30  13:28:30
63128         Log: Subject: [PATCH] NEXT and Diamond Inheritance
63129              From: Casey West <casey@geeknest.com>
63130              Date: Tue, 29 Jul 2003 17:37:15 -0400
63131              Message-ID: <20030729213715.GY76899@geeknest.com>
63132
63133              (Use Damian's NEXT-0.51 once Damian and PAUSE like each other)
63134      Branch: perl
63135            ! lib/NEXT.pm lib/NEXT/t/unseen.t
63136 ____________________________________________________________________________
63137 [ 20347] By: jhi                                   on 2003/07/30  13:19:03
63138         Log: Match also on full name and email (though the email is
63139              now less interesting than it used to be).
63140      Branch: perl
63141            ! Porting/Maintainers
63142 ____________________________________________________________________________
63143 [ 20346] By: jhi                                   on 2003/07/30  12:26:53
63144         Log: Maintainers script tweaks.
63145      Branch: perl
63146            ! Porting/Maintainers
63147 ____________________________________________________________________________
63148 [ 20345] By: jhi                                   on 2003/07/30  11:17:33
63149         Log: rmdir t/lib/IO.
63150      Branch: perl
63151            ! ext/IO/t/IO.t
63152 ____________________________________________________________________________
63153 [ 20344] By: jhi                                   on 2003/07/30  11:15:30
63154         Log: Adjust the list of rmdired lib directories.
63155      Branch: perl
63156            ! Makefile.SH
63157 ____________________________________________________________________________
63158 [ 20343] By: jhi                                   on 2003/07/30  10:06:24
63159         Log: Be paranoid about PL_origargv.
63160              Paranoia warranted by Win32 mod_perl.
63161      Branch: perl
63162            ! perl.c
63163 ____________________________________________________________________________
63164 [ 20342] By: jhi                                   on 2003/07/30  09:57:55
63165         Log: Subject: tiny [PATCH-for-perl-5.8.1-RC2] remove one mention of UNDER_CE from perlio.c
63166              From: "Konovalov, Vadim" <vkonovalov@spb.lucent.com>
63167              Date: Wed, 30 Jul 2003 14:56:32 +0400
63168              Message-ID: <845FCFF2D4C0FC468B485E8777C7A00C200DD3@cio-test001.spb.lucent.com>
63169      Branch: perl
63170            ! perlio.c
63171 ____________________________________________________________________________
63172 [ 20341] By: jhi                                   on 2003/07/30  09:54:46
63173         Log: Upgrade to ExtUtils::MakeMaker 6.12.
63174      Branch: perl
63175            ! lib/ExtUtils/Changes lib/ExtUtils/META.yml
63176            ! lib/ExtUtils/MM_MacOS.pm lib/ExtUtils/MM_Unix.pm
63177            ! lib/ExtUtils/MM_VMS.pm lib/ExtUtils/MakeMaker.pm
63178            ! lib/ExtUtils/t/MM_Unix.t lib/ExtUtils/t/MM_VMS.t
63179 ____________________________________________________________________________
63180 [ 20340] By: jhi                                   on 2003/07/30  09:47:32
63181         Log: That's M. Schwern to you, earthling.
63182      Branch: perl
63183            ! Porting/Maintainers.pl
63184 ____________________________________________________________________________
63185 [ 20339] By: jhi                                   on 2003/07/30  09:43:32
63186         Log: Arthur maintains Safe.
63187      Branch: perl
63188            ! Porting/Maintainers.pl
63189 ____________________________________________________________________________
63190 [ 20338] By: jhi                                   on 2003/07/30  09:40:28
63191         Log: Use the CPAN id where available.
63192      Branch: perl
63193            ! Porting/Maintainers.pl
63194 ____________________________________________________________________________
63195 [ 20337] By: jhi                                   on 2003/07/30  09:26:47
63196         Log: Rename Modules and Modules.pl as Maintainers and
63197              Maintainers.pl since the same framework can be used
63198              for more than just modules.
63199      Branch: perl
63200            + Porting/Maintainers Porting/Maintainers.pl
63201            - Porting/Modules Porting/Modules.pl
63202            ! MANIFEST
63203 ____________________________________________________________________________
63204 [ 20336] By: jhi                                   on 2003/07/30  09:11:06
63205         Log: Strip leading ./
63206      Branch: perl
63207            ! Porting/Modules
63208 ____________________________________________________________________________
63209 [ 20335] By: jhi                                   on 2003/07/30  09:01:47
63210         Log: More Modules.pl.
63211      Branch: perl
63212            ! Porting/Modules.pl
63213 ____________________________________________________________________________
63214 [ 20334] By: jhi                                   on 2003/07/30  08:51:57
63215         Log: Modules.pl: add B::Deparse.
63216      Branch: perl
63217            ! Porting/Modules.pl
63218 ____________________________________________________________________________
63219 [ 20333] By: jhi                                   on 2003/07/30  08:26:47
63220         Log: Mac OS X: tweak once again the installation directories.
63221      Branch: perl
63222            ! hints/darwin.sh
63223 ____________________________________________________________________________
63224 [ 20332] By: jhi                                   on 2003/07/30  07:55:04
63225         Log: Modules.pl tweaks.
63226      Branch: perl
63227            ! Porting/Modules.pl
63228 ____________________________________________________________________________
63229 [ 20331] By: jhi                                   on 2003/07/30  06:13:55
63230         Log: Subject: [PATCH] Extend Win32::GetOSVersion() to return additional information
63231              From: Jan Dubois <jand@ActiveState.com>
63232              Date: Tue, 29 Jul 2003 19:14:10 -0700
63233              Message-ID: <i06eivs0h9khken8rloevj68iqu6n45hnq@4ax.com>
63234      Branch: perl
63235            ! lib/Win32.pod win32/win32.c
63236 ____________________________________________________________________________
63237 [ 20330] By: rgs                                   on 2003/07/29  21:20:28
63238         Log: FAQ sync.
63239      Branch: perl
63240            ! pod/perlfaq4.pod pod/perlfaq7.pod
63241 ____________________________________________________________________________
63242 [ 20329] By: jhi                                   on 2003/07/29  20:54:38
63243         Log: Subject: tiny fix for WinCE (Re: maint @ 20277)
63244              From: "Vadim Konovalov" <vkonovalov@peterstar.ru>
63245              Date: Wed, 30 Jul 2003 02:02:41 +0400
63246              Message-ID: <016701c3561d$43735ca0$195ec3d9@vad>
63247      Branch: perl
63248            ! wince/wince.c
63249 ____________________________________________________________________________
63250 [ 20327] By: jhi                                   on 2003/07/29  20:09:15
63251         Log: MPE/iX fix from Mark Bixby: fcntl() on sockets on works.
63252      Branch: perl
63253            ! README.mpeix ext/IO/t/io_sock.t mpeix/mpeix.c mpeix/mpeixish.h
63254 ____________________________________________________________________________
63255 [ 20324] By: jhi                                   on 2003/07/29  19:55:50
63256         Log: Revert #20301, apparently the _SOCKADDR_LEN #define is
63257              important for IPv6 (Spider).  Since there is no way to
63258              otherwise detect 3.X, use the hints.
63259      Branch: perl
63260            ! hints/dec_osf.sh perl.h
63261 ____________________________________________________________________________
63262 [ 20316] By: jhi                                   on 2003/07/29  15:27:46
63263         Log: Don't nag about Module::Signature if there is no
63264              way for the user to use it (based on Autrijus' patch).
63265      Branch: perl
63266            ! lib/CPAN.pm lib/CPAN/FirstTime.pm
63267 ____________________________________________________________________________
63268 [ 20315] By: jhi                                   on 2003/07/29  14:47:04
63269         Log: Oops.
63270      Branch: perl
63271            ! sv.c
63272 ____________________________________________________________________________
63273 [ 20314] By: jhi                                   on 2003/07/29  13:26:26
63274         Log: Slight rewording on the destdir.
63275      Branch: perl
63276            ! INSTALL
63277 ____________________________________________________________________________
63278 [ 20312] By: jhi                                   on 2003/07/29  13:20:21
63279         Log: Subject: [PATCH] pod/perlvar.pod: minor typo
63280              From: "Brendan O'Dea" <bod@debian.org>
63281              Date: Tue, 29 Jul 2003 23:49:18 +1000
63282              Message-ID: <20030729134918.GA4339@londo.c47.org>
63283      Branch: perl
63284            ! pod/perlvar.pod
63285 ____________________________________________________________________________
63286 [ 20310] By: jhi                                   on 2003/07/29  13:11:57
63287         Log: Subject: [PATCH: (repatch) 5.8.1 RC2] Encode test fixes for VMS (was Re: possible fix to File::Find problems)
63288              From: PPrymmer@factset.com
63289              Date: Tue, 22 Jul 2003 11:12:05 -0400
63290              Message-ID: <OFBD4A7559.D7CF9517-ON85256D6B.00534853-85256D6B.00538131@factset.com>
63291      Branch: perl
63292            ! ext/Encode/t/enc_eucjp.t ext/Encode/t/enc_utf8.t
63293            ! ext/Encode/t/perlio.t
63294 ____________________________________________________________________________
63295 [ 20309] By: jhi                                   on 2003/07/29  13:06:24
63296         Log: Subject: [perluniintro vs Encode::Alias] Is KOI8R is an alise for koi8-r?
63297              From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
63298              Date: Sun, 13 Jul 2003 10:23:35 +0900
63299              Message-Id: <20030713102228.C76A.BQW10602@nifty.com>
63300      Branch: perl
63301            ! ext/Encode/lib/Encode/Alias.pm
63302 ____________________________________________________________________________
63303 [ 20308] By: jhi                                   on 2003/07/29  13:02:43
63304         Log: The --destdir option to installman should be made
63305              optional so that it doesn't complain when passed
63306              an empty value (from Rafael)
63307      Branch: perl
63308            ! installman
63309 ____________________________________________________________________________
63310 [ 20306] By: jhi                                   on 2003/07/29  12:05:24
63311         Log: Too many my $fh:s.
63312      Branch: perl
63313            ! lib/CPAN.pm
63314 ____________________________________________________________________________
63315 [ 20305] By: jhi                                   on 2003/07/29  11:55:11
63316         Log: Quieten MSVC6.
63317      Branch: perl
63318            ! pp.c
63319 ____________________________________________________________________________
63320 [ 20302] By: jhi                                   on 2003/07/29  11:31:17
63321         Log: Subject: DESTDIR in perl-5.8.1 package?
63322              From: Michael Schroeder <Michael.Schroeder@informatik.uni-erlangen.de>
63323              Date: Fri, 11 Jul 2003 14:48:41 +0200
63324              Message-ID: <20030711124841.GA18327@immd4.informatik.uni-erlangen.de>
63325
63326              Subject: Re: DESTDIR in perl-5.8.1 package?
63327              From: Michael Schroeder <Michael.Schroeder@informatik.uni-erlangen.de>
63328              Date: Mon, 14 Jul 2003 12:00:25 +0200
63329              Message-ID: <20030714100025.GA26612@immd4.informatik.uni-erlangen.de>
63330
63331              (blindly prepending and s///ing away the $destdir does not work
63332              at least in VMS, but the --destdir should help rpm builders
63333              and the like)
63334      Branch: perl
63335            ! INSTALL Makefile.SH installman installperl
63336 ____________________________________________________________________________
63337 [ 20301] By: jhi                                   on 2003/07/29  11:20:07
63338         Log: Subject: [perl #23134] Problems compiling 5.8.0 on alpha-dec_osf 3.2
63339              From: Chaskiel M Grundman (via RT) <perlbug-followup@perl.org>
63340              Date: 26 Jul 2003 21:44:06 -0000
63341              Message-ID: <rt-23134-61814.9.36507226414463@rt.perl.org>
63342
63343              Helps (the admittedly old) DEC OSF/1 3.x and harms not newer
63344              releases 4.x and 5.x.
63345      Branch: perl
63346            ! perl.h
63347 ____________________________________________________________________________
63348 [ 20300] By: jhi                                   on 2003/07/29  11:18:27
63349         Log: Cleanup the sv_gets() logic for platforms with small stacks.
63350              (I think hogging 8K of stack sounds like bad behaviour on any
63351              platform, big stack or not.)
63352      Branch: perl
63353            ! sv.c
63354 ____________________________________________________________________________
63355 [ 20299] By: merijn                                on 2003/07/29  10:57:37
63356         Log: README.hpux now mentions the http mirror for prebuilt gcc binaries
63357      Branch: perl
63358            ! README.hpux
63359 ____________________________________________________________________________
63360 [ 20298] By: jhi                                   on 2003/07/29  10:57:28
63361         Log: DEC OSF/1 3.x did (does) not do sizer -v.
63362      Branch: perl
63363            ! hints/dec_osf.sh
63364 ____________________________________________________________________________
63365 [ 20295] By: jhi                                   on 2003/07/29  10:36:25
63366         Log: Subject: [PATCH CPAN.pm] unlink pre-PGP-signed CHECKSUM
63367              From: Autrijus Tang <autrijus@autrijus.org>
63368              Date: Tue, 29 Jul 2003 09:58:35 +0800
63369              Message-ID: <20030729015834.GA7149@not.autrijus.org>
63370      Branch: perl
63371            ! lib/CPAN.pm
63372 ____________________________________________________________________________
63373 [ 20294] By: jhi                                   on 2003/07/29  10:30:05
63374         Log: There is no skip() since we are not using Test*.
63375      Branch: perl
63376            ! lib/CPAN/t/signature.t
63377 ____________________________________________________________________________
63378 [ 20293] By: jhi                                   on 2003/07/29  10:28:10
63379         Log: Upgrade to CPAN.pm 1.74.
63380      Branch: perl
63381            ! lib/CPAN.pm lib/CPAN/t/signature.t
63382 ____________________________________________________________________________
63383 [ 20292] By: jhi                                   on 2003/07/29  10:14:26
63384         Log: Most importantly, don't try HvNAME(gp->gp_hv)
63385              unless PL_stashcache exists, otherwise we get
63386              an invalid read (detected by valgrind, and crashes
63387              ext/threads/t/basic.t in Windows).
63388
63389              Also add a few if:s for the refcnt decrements,
63390              no need to call Perl_sv_free() if there's nothing to free.
63391      Branch: perl
63392            ! gv.c
63393 ____________________________________________________________________________
63394 [ 20291] By: jhi                                   on 2003/07/29  09:00:58
63395         Log: Tabify.
63396      Branch: perl
63397            ! MANIFEST
63398 ____________________________________________________________________________
63399 [ 20288] By: jhi                                   on 2003/07/29  08:29:50
63400         Log: Subject: [perl #22969] fix $hash{utf8bareword}
63401              From: Rafael Garcia-Suarez <raphel.garcia-suarez@hexaflux.com>
63402              Date: Tue, 29 Jul 2003 11:09:37 +0200
63403              Message-Id: <20030729110937.31c422d2.rgarcia@hexaflux.com>
63404      Branch: perl
63405            ! t/op/utfhash.t toke.c
63406 ____________________________________________________________________________
63407 [ 20287] By: jhi                                   on 2003/07/29  08:26:48
63408         Log: Subject: [PATCH pointer] B::Deparse 0.64
63409              From: Stephen McCamant <smcc@mit.edu>
63410              Date: Mon, 28 Jul 2003 16:57:19 -0400
63411              Message-ID: <16165.36399.39977.566109@syllepsis.MIT.EDU>
63412      Branch: perl
63413            ! ext/B/B/Deparse.pm ext/B/t/deparse.t
63414 ____________________________________________________________________________
63415 [ 20286] By: jhi                                   on 2003/07/29  08:24:45
63416         Log: More perlio docs from Stas.
63417      Branch: perl
63418            ! pod/perliol.pod
63419 ____________________________________________________________________________
63420 [ 20285] By: jhi                                   on 2003/07/29  08:22:49
63421         Log: Reintroduce Porting/Modules.  No, it's not duplicating
63422              the information in Module::CoreList.
63423      Branch: perl
63424            + Porting/Modules Porting/Modules.pl
63425            ! AUTHORS MANIFEST
63426 ____________________________________________________________________________
63427 [ 20283] By: jhi                                   on 2003/07/29  05:00:12
63428         Log: The better prefixify() patch from Ed Moy.
63429      Branch: perl
63430            ! lib/ExtUtils/MM_Unix.pm
63431 ____________________________________________________________________________
63432 [ 20282] By: jhi                                   on 2003/07/29  04:57:57
63433         Log: PerlIO_popped doc addition from NI-S.
63434      Branch: perl
63435            ! pod/perliol.pod
63436 ____________________________________________________________________________
63437 [ 20281] By: jhi                                   on 2003/07/29  04:55:48
63438         Log: Subject: [PATCH] another File::Find tweak for VMS (improve on #20221)
63439              From: "Craig A. Berry" <craigberry@mac.com>
63440              Date: Tue, 29 Jul 2003 00:11:46 -0500
63441              Message-ID: <3F260212.9000104@mac.com>
63442      Branch: perl
63443            ! lib/File/Find.pm
63444 ____________________________________________________________________________
63445 [ 20278] By: jhi                                   on 2003/07/28  18:03:48
63446         Log: More bytecode tweaks.
63447      Branch: perl
63448            ! ext/B/B.xs ext/B/B/Bytecode.pm
63449 ____________________________________________________________________________
63450 [ 20275] By: jhi                                   on 2003/07/28  16:47:53
63451         Log: No more wince/README.compile.
63452      Branch: perl
63453            ! Porting/curliff.pl
63454 ____________________________________________________________________________
63455 [ 20272] By: jhi                                   on 2003/07/28  16:19:47
63456         Log: Slightly better failure output.
63457      Branch: perl
63458            ! ext/Devel/Peek/t/Peek.t
63459 ____________________________________________________________________________
63460 [ 20270] By: jhi                                   on 2003/07/28  15:12:28
63461         Log: These directories no more exist during cleanup.
63462      Branch: perl
63463            ! Makefile.SH
63464 ____________________________________________________________________________
63465 [ 20269] By: jhi                                   on 2003/07/28  15:07:22
63466         Log: No more ext/*/*.t, move them all to ext/*/t.
63467      Branch: perl
63468            + ext/Devel/DProf/t/DProf.t ext/Devel/Peek/t/Peek.t
63469            + ext/Errno/t/Errno.t ext/GDBM_File/t/gdbm.t
63470            + ext/I18N/Langinfo/t/Langinfo.t ext/IPC/SysV/t/ipcsysv.t
63471            + ext/NDBM_File/t/ndbm.t ext/ODBM_File/t/odbm.t
63472            + ext/Opcode/t/Opcode.t ext/Opcode/t/ops.t ext/PerlIO/t/PerlIO.t
63473            + ext/SDBM_File/t/sdbm.t ext/Safe/t/safe1.t ext/Safe/t/safe2.t
63474            + ext/Safe/t/safe3.t ext/Socket/t/Socket.t
63475            + ext/Socket/t/socketpair.t ext/Sys/Hostname/t/Hostname.t
63476            + ext/Sys/Syslog/t/syslog.t ext/Time/HiRes/t/HiRes.t
63477            + ext/XS/Typemap/t/Typemap.t ext/attrs/t/attrs.t ext/re/t/re.t
63478            - ext/Devel/DProf/DProf.t ext/Devel/Peek/Peek.t
63479            - ext/Errno/Errno.t ext/GDBM_File/gdbm.t
63480            - ext/I18N/Langinfo/Langinfo.t ext/IPC/SysV/ipcsysv.t
63481            - ext/NDBM_File/ndbm.t ext/ODBM_File/odbm.t ext/Opcode/Opcode.t
63482            - ext/Opcode/ops.t ext/PerlIO/PerlIO.t ext/SDBM_File/sdbm.t
63483            - ext/Safe/safe1.t ext/Safe/safe2.t ext/Safe/safe3.t
63484            - ext/Socket/Socket.t ext/Socket/socketpair.t
63485            - ext/Sys/Hostname/Hostname.t ext/Sys/Syslog/syslog.t
63486            - ext/Time/HiRes/HiRes.t ext/XS/Typemap/Typemap.t ext/attrs.t
63487            - ext/re/re.t
63488            ! MANIFEST ext/IPC/SysV/MANIFEST
63489 ____________________________________________________________________________
63490 [ 20268] By: jhi                                   on 2003/07/28  14:31:17
63491         Log: Move the ext/IO tests to a more standard location so that
63492              the *.t do not get copied to the build tree (lib/IO/).
63493      Branch: perl
63494            + ext/IO/t/IO.t ext/IO/t/io_const.t ext/IO/t/io_dir.t
63495            + ext/IO/t/io_dup.t ext/IO/t/io_linenum.t
63496            + ext/IO/t/io_multihomed.t ext/IO/t/io_pipe.t ext/IO/t/io_poll.t
63497            + ext/IO/t/io_sel.t ext/IO/t/io_sock.t ext/IO/t/io_taint.t
63498            + ext/IO/t/io_tell.t ext/IO/t/io_udp.t ext/IO/t/io_unix.t
63499            + ext/IO/t/io_utf8.t ext/IO/t/io_xs.t
63500            - ext/IO/lib/IO/t/IO.t ext/IO/lib/IO/t/io_const.t
63501            - ext/IO/lib/IO/t/io_dir.t ext/IO/lib/IO/t/io_dup.t
63502            - ext/IO/lib/IO/t/io_linenum.t ext/IO/lib/IO/t/io_multihomed.t
63503            - ext/IO/lib/IO/t/io_pipe.t ext/IO/lib/IO/t/io_poll.t
63504            - ext/IO/lib/IO/t/io_sel.t ext/IO/lib/IO/t/io_sock.t
63505            - ext/IO/lib/IO/t/io_taint.t ext/IO/lib/IO/t/io_tell.t
63506            - ext/IO/lib/IO/t/io_udp.t ext/IO/lib/IO/t/io_unix.t
63507            - ext/IO/lib/IO/t/io_utf8.t ext/IO/lib/IO/t/io_xs.t
63508            ! MANIFEST
63509 ____________________________________________________________________________
63510 [ 20267] By: jhi                                   on 2003/07/28  14:16:44
63511         Log: Retract #20260.
63512      Branch: perl
63513            ! perlio.c perliol.h
63514 ____________________________________________________________________________
63515 [ 20266] By: jhi                                   on 2003/07/28  13:38:59
63516         Log: Bump the $VERSION of core File::Spec as requested by Ken Williams.
63517      Branch: perl
63518            ! lib/File/Spec.pm
63519 ____________________________________________________________________________
63520 [ 20265] By: jhi                                   on 2003/07/28  13:23:44
63521         Log: Subject: [PATCH] #20177 broke skip logic in t/op/write.t
63522              From: "Craig A. Berry" <craigberry@mac.com>
63523              Date: Mon, 28 Jul 2003 08:04:32 -0500
63524              Message-ID: <3F251F60.6050607@mac.com>
63525      Branch: perl
63526            ! t/op/write.t
63527 ____________________________________________________________________________
63528 [ 20264] By: jhi                                   on 2003/07/28  13:21:58
63529         Log: Subject: [PATCH] t/op/write.t cleanup after itself.
63530              From: Michael G Schwern <schwern@pobox.com>
63531              Date: Mon, 28 Jul 2003 05:54:19 -0700
63532              Message-ID: <20030728125419.GJ21044@windhund.schwern.org>
63533      Branch: perl
63534            ! t/op/write.t
63535 ____________________________________________________________________________
63536 [ 20263] By: jhi                                   on 2003/07/28  12:13:24
63537         Log: Make Storable work with blead/maint by making PL_sv_placeholder
63538              a true global, bump $VERSION to 2.08.  Will take a look at the
63539              portability issue of placeholders soon.
63540      Branch: perl
63541            ! embedvar.h ext/Storable/Storable.pm ext/Storable/Storable.xs
63542            ! intrpvar.h perlapi.h perlvars.h sv.c
63543 ____________________________________________________________________________
63544 [ 20262] By: jhi                                   on 2003/07/28  11:35:31
63545         Log: Storable test nosewipe.
63546      Branch: perl
63547            ! ext/Storable/t/code.t ext/Storable/t/utf8hash.t
63548 ____________________________________________________________________________
63549 [ 20261] By: jhi                                   on 2003/07/28  11:02:23
63550         Log: Solaris cc didn't appreciate casting a long to a pointer
63551              with no cast, and lval casts are unportable, so introduce
63552              a rval cast.
63553      Branch: perl
63554            ! bytecode.pl ext/ByteLoader/byterun.c
63555 ____________________________________________________________________________
63556 [ 20260] By: jhi                                   on 2003/07/28  10:46:58
63557         Log: (Retracted by #20267)
63558      Branch: perl
63559            ! perlio.c perliol.h
63560 ____________________________________________________________________________
63561 [ 20257] By: jhi                                   on 2003/07/28  10:05:58
63562         Log: Subject: CPAN/t/signature.t noisy
63563              From: Michael G Schwern <schwern@pobox.com>
63564              Date: Mon, 28 Jul 2003 02:14:19 -0700
63565              Message-ID: <20030728091419.GG21044@windhund.schwern.org>
63566      Branch: perl
63567            ! lib/CPAN/t/signature.t
63568 ____________________________________________________________________________
63569 [ 20256] By: jhi                                   on 2003/07/28  10:00:11
63570         Log: Extra noise from File::Spec.
63571      Branch: perl
63572            ! lib/File/Spec/t/rel2abs2rel.t
63573 ____________________________________________________________________________
63574 [ 20255] By: jhi                                   on 2003/07/28  09:50:55
63575         Log: Prettyprint the constants list of defsubs_h.PL.
63576      Branch: perl
63577            ! ext/B/defsubs_h.PL
63578 ____________________________________________________________________________
63579 [ 20253] By: jhi                                   on 2003/07/28  04:56:48
63580         Log: Subject: [PATCH] B enhancements
63581              From: Stephen McCamant <smcc@mit.edu>
63582              Date: Sun, 27 Jul 2003 14:07:46 -0400
63583              Message-ID: <16164.5362.577992.841787@syllepsis.MIT.EDU>
63584      Branch: perl
63585            ! ext/B/B.pm ext/B/B.xs ext/B/defsubs_h.PL
63586 ____________________________________________________________________________
63587 [ 20252] By: jhi                                   on 2003/07/28  04:55:42
63588         Log: More clarification about the hash randomisation defines.
63589      Branch: perl
63590            ! perl.h
63591 ____________________________________________________________________________
63592 [ 20251] By: jhi                                   on 2003/07/28  04:51:46
63593         Log: Clarify the process a bit.
63594      Branch: perl
63595            ! INSTALL
63596 ____________________________________________________________________________
63597 [ 20250] By: jhi                                   on 2003/07/28  04:43:23
63598         Log: Add $VERSION to B::Bytecode.
63599      Branch: perl
63600            ! ext/B/B/Bytecode.pm
63601 ____________________________________________________________________________
63602 [ 20249] By: jhi                                   on 2003/07/28  04:39:14
63603         Log: Missing test file.  (Not very useful since Module::Signature
63604              is not in the core, but let's not make an exception.)
63605      Branch: perl
63606            ! MANIFEST
63607 ____________________________________________________________________________
63608 [ 20248] By: jhi                                   on 2003/07/28  04:35:27
63609         Log: Subject: Re: downrev modules in RC2
63610              From: Gisle Aas <gisle@ActiveState.com>
63611              Date: 27 Jul 2003 20:25:07 -0700
63612              Message-ID: <lrptjv1gfg.fsf@caliper.activestate.com>
63613
63614              (upgrade to Digest::MD5 2.26)
63615      Branch: perl
63616            ! ext/Digest/MD5/Changes ext/Digest/MD5/MD5.pm
63617            ! ext/Digest/MD5/MD5.xs ext/Digest/MD5/t/files.t
63618 ____________________________________________________________________________
63619 [ 20247] By: jhi                                   on 2003/07/28  04:31:32
63620         Log: Upgrade to CGI 2.97.
63621      Branch: perl
63622            ! lib/CGI.pm
63623 ____________________________________________________________________________
63624 [ 20246] By: jhi                                   on 2003/07/28  04:26:58
63625         Log: Revert 20233 + s/GvAVn/GvAV/) + rerun 'perl bytecode.pl'.
63626              (from Enache)
63627      Branch: perl
63628            ! bytecode.pl ext/ByteLoader/byterun.c
63629 ____________________________________________________________________________
63630 [ 20243] By: jhi                                   on 2003/07/27  20:31:31
63631         Log: Upgrade to CPAN 1.72.
63632      Branch: perl
63633            + lib/CPAN/t/signature.t
63634            ! MANIFEST lib/CPAN.pm
63635 ____________________________________________________________________________
63636 [ 20242] By: jhi                                   on 2003/07/27  20:21:40
63637         Log: We now return to your normally scheduled hash randomisation.
63638      Branch: perl
63639            ! INSTALL perl.h pod/perlfunc.pod pod/perlrun.pod
63640            ! pod/perlsec.pod
63641 ____________________________________________________________________________
63642 [ 20240] By: jhi                                   on 2003/07/27  19:45:22
63643         Log: fresh_perl_(is|like) were printing out the wrong file/line
63644              number on failure because _where() was hard coded to only
63645              look one level up the call stack.  In these cases it has to
63646              look two.
63647              (Schwern)
63648      Branch: perl
63649            ! t/test.pl
63650 ____________________________________________________________________________
63651 [ 20239] By: jhi                                   on 2003/07/27  19:43:34
63652         Log: cleanup tiehandle.t to use test.pl, is(), like(), etc...
63653              (Schwern)
63654      Branch: perl
63655            ! t/op/tiehandle.t
63656 ____________________________________________________________________________
63657 [ 20238] By: jhi                                   on 2003/07/27  19:20:45
63658         Log: Upgrade to Test::Harness 2.29.
63659      Branch: perl
63660            ! lib/Test/Harness.pm lib/Test/Harness/Straps.pm
63661            ! lib/Test/Harness/t/assert.t lib/Test/Harness/t/callback.t
63662            ! lib/Test/Harness/t/strap-analyze.t lib/Test/Harness/t/strap.t
63663            ! lib/Test/Harness/t/test-harness.t
63664 ____________________________________________________________________________
63665 [ 20237] By: jhi                                   on 2003/07/27  18:37:45
63666         Log: Missing MakeMaker test.
63667      Branch: perl
63668            + lib/ExtUtils/t/postamble.t
63669            ! MANIFEST
63670 ____________________________________________________________________________
63671 [ 20236] By: jhi                                   on 2003/07/27  18:29:16
63672         Log: Add -l (one file per line) option to manicheck.
63673      Branch: perl
63674            ! Porting/manicheck
63675 ____________________________________________________________________________
63676 [ 20235] By: jhi                                   on 2003/07/27  18:08:55
63677         Log: Further Byteloader tweaks from Enache.
63678      Branch: perl
63679            ! bytecode.pl ext/B/B/Asmdata.pm ext/B/B/Assembler.pm
63680            ! ext/B/B/Bytecode.pm ext/B/B/Disassembler.pm ext/B/defsubs_h.PL
63681            ! ext/B/t/assembler.t ext/ByteLoader/ByteLoader.pm
63682            ! ext/ByteLoader/bytecode.h ext/ByteLoader/byterun.c
63683            ! ext/ByteLoader/byterun.h t/TEST
63684 ____________________________________________________________________________
63685 [ 20234] By: jhi                                   on 2003/07/27  18:02:24
63686         Log: Reapply some perldoc changes not in 3.09.
63687      Branch: perl
63688            ! lib/Pod/Perldoc.pm
63689 ____________________________________________________________________________
63690 [ 20233] By: jhi                                   on 2003/07/27  17:51:01
63691         Log: Upgrade to Pod::Perldoc 3.09.
63692      Branch: perl
63693            ! lib/Pod/Perldoc.pm lib/Pod/Perldoc/ToMan.pm
63694 ____________________________________________________________________________
63695 [ 20232] By: jhi                                   on 2003/07/27  17:34:23
63696         Log: A bug reported in perl-unicode by Terry Jones, fixed
63697              by Andreas Koenig, and add a test.
63698      Branch: perl
63699            ! lib/Unicode/UCD.pm lib/Unicode/UCD.t
63700 ____________________________________________________________________________
63701 [ 20231] By: jhi                                   on 2003/07/27  17:21:11
63702         Log: Unicode::UCD doc nit from Andreas Koenig.
63703      Branch: perl
63704            ! lib/Unicode/UCD.pm
63705 ____________________________________________________________________________
63706 [ 20230] By: jhi                                   on 2003/07/27  17:13:55
63707         Log: Upgrade to I18N::LangTags 0.28.
63708      Branch: perl
63709            + lib/I18N/LangTags/t/01test.t
63710            - lib/I18N/LangTags/test.pl
63711            ! MANIFEST lib/I18N/LangTags.pm lib/I18N/LangTags/List.pm
63712 ____________________________________________________________________________
63713 [ 20229] By: jhi                                   on 2003/07/27  16:59:27
63714         Log: Skip the test until Enache fixes it.
63715      Branch: perl
63716            ! ext/B/t/assembler.t
63717 ____________________________________________________________________________
63718 [ 20225] By: jhi                                   on 2003/07/27  16:12:44
63719         Log: Upgrade to File::Spec 0.85.
63720      Branch: perl
63721            ! lib/File/Spec.pm lib/File/Spec/Epoc.pm
63722            ! lib/File/Spec/Functions.pm lib/File/Spec/Mac.pm
63723            ! lib/File/Spec/Unix.pm lib/File/Spec/Win32.pm
63724            ! lib/File/Spec/t/Functions.t lib/File/Spec/t/Spec.t
63725            ! lib/File/Spec/t/rel2abs2rel.t
63726 ____________________________________________________________________________
63727 [ 20224] By: jhi                                   on 2003/07/27  15:48:20
63728         Log: Subject: Re: [PATCH] Re: Storing &PL_sv_undef as a hash key with perl-5.8.x
63729              From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
63730              Date: Sun, 20 Jul 2003 22:36:02 +0200
63731              Message-ID: <006801c34efe$8aac1920$0c2f1fac@R2D2>
63732      Branch: perl
63733            ! dump.c embedvar.h ext/Storable/Storable.xs hv.c intrpvar.h
63734            ! perl.c perlapi.h sv.c universal.c
63735 ____________________________________________________________________________
63736 [ 20223] By: jhi                                   on 2003/07/27  15:43:30
63737         Log: Regen byterun once more: the incav is not yet right, but at
63738              least it compiles now (Tru64 cc choked on the lvalue cast).
63739      Branch: perl
63740            ! bytecode.pl ext/ByteLoader/byterun.c
63741 ____________________________________________________________________________
63742 [ 20222] By: jhi                                   on 2003/07/27  15:31:52
63743         Log: Regenerated because of #20220.
63744      Branch: perl
63745            ! ext/B/B/Asmdata.pm ext/ByteLoader/byterun.c
63746            ! ext/ByteLoader/byterun.h
63747 ____________________________________________________________________________
63748 [ 20221] By: jhi                                   on 2003/07/27  15:19:57
63749         Log: Subject: [PATCH] fix for File::Find logical name collision on VMS
63750              From: "Craig A. Berry" <craigberry@mac.com>
63751              Date: Mon, 21 Jul 2003 19:40:20 -0500
63752              Message-ID: <3F1C87F4.2070401@mac.com>
63753      Branch: perl
63754            ! lib/File/Find.pm
63755 ____________________________________________________________________________
63756 [ 20220] By: jhi                                   on 2003/07/27  15:13:10
63757         Log: Subject: Re: [perl #22984] perl-5.8.1-RC2: TEST -bytecompile won't work at all
63758              From: Enache Adrian <enache@rdslink.ro>
63759              Date: Fri, 18 Jul 2003 23:15:37 +0300
63760              Message-ID: <20030718201537.GA1574@ratsnest.hole>
63761      Branch: perl
63762            ! Makefile.SH bytecode.pl ext/B/B.xs ext/B/B/Assembler.pm
63763            ! ext/B/B/Bytecode.pm ext/B/B/Disassembler.pm ext/B/typemap
63764            ! ext/ByteLoader/ByteLoader.pm ext/ByteLoader/ByteLoader.xs
63765            ! ext/ByteLoader/bytecode.h installperl t/TEST utils/perlcc.PL
63766 ____________________________________________________________________________
63767 [ 20219] By: jhi                                   on 2003/07/27  15:08:23
63768         Log: Subject: [PATCH-for-RC2] WinCE port addition
63769              From: "Konovalov, Vadim" <vkonovalov@spb.lucent.com>
63770              Date: Fri, 25 Jul 2003 22:17:11 +0400
63771              Message-ID: <845FCFF2D4C0FC468B485E8777C7A00C200D42@cio-test001.spb.lucent.com>
63772      Branch: perl
63773            - wince/README.compile
63774            ! MANIFEST README.ce wince/Makefile.ce wince/README.perlce
63775            ! wince/compile.bat wince/wince.c wince/wince.h
63776 ____________________________________________________________________________
63777 [ 20217] By: jhi                                   on 2003/07/25  06:39:08
63778         Log: Another missing hunk for MakeMaker from .org.
63779      Branch: perl
63780            ! lib/ExtUtils/MakeMaker.pm
63781 ____________________________________________________________________________
63782 [ 20213] By: jhi                                   on 2003/07/24  14:49:25
63783         Log: Grabbed from www.makemaker.org.
63784      Branch: perl
63785            + t/lib/MakeMaker/Test/Setup/Recurs.pm
63786            ! MANIFEST
63787 ____________________________________________________________________________
63788 [ 20211] By: jhi                                   on 2003/07/24  14:00:29
63789         Log: Subject: [perl #22946] Bug in Unicode surrogate pair conversion in Perl_utf16_to_utf8
63790              From: "Dinger, Tom" (via RT) <perlbug-followup@perl.org>
63791              Date: 14 Jul 2003 05:35:15 -0000
63792              Message-ID: <rt-22946-60715.1.00007189884266@rt.perl.org>
63793      Branch: perl
63794            ! utf8.c
63795 ____________________________________________________________________________
63796 [ 20209] By: jhi                                   on 2003/07/24  13:42:58
63797         Log: Subject: Re: [typo] sv.c pod/perlapi.pod
63798              From: Stas Bekman <stas@stason.org>
63799              Date: Thu, 24 Jul 2003 16:49:27 +0200
63800              Message-ID: <3F1FF1F7.30500@stason.org>
63801      Branch: perl
63802            ! pod/perlapi.pod sv.c
63803 ____________________________________________________________________________
63804 [ 20208] By: jhi                                   on 2003/07/24  13:41:37
63805         Log: Subject: [ANNOUNCE] ExtUtils::MakeMaker 6.11
63806              From: Michael G Schwern <schwern@pobox.com>
63807              Date: Thu, 24 Jul 2003 01:28:07 -0700
63808              Message-ID: <20030724082807.GA24285@windhund.schwern.org>
63809      Branch: perl
63810            ! lib/ExtUtils/MakeMaker.pm
63811 ____________________________________________________________________________
63812 [ 20207] By: jhi                                   on 2003/07/24  13:40:39
63813         Log: Subject: [PATCH] ExtUtils::MakeMaker 6.10_08
63814              From: Michael G Schwern <schwern@pobox.com>
63815              Date: Mon, 21 Jul 2003 20:12:25 -0700
63816              Message-ID: <20030722031224.GD12711@windhund.schwern.org>
63817      Branch: perl
63818            + lib/ExtUtils/t/recurs.t
63819            ! MANIFEST lib/ExtUtils/Changes lib/ExtUtils/META.yml
63820            ! lib/ExtUtils/MM_Any.pm lib/ExtUtils/MM_MacOS.pm
63821            ! lib/ExtUtils/MM_Unix.pm lib/ExtUtils/MM_VMS.pm
63822            ! lib/ExtUtils/MakeMaker/FAQ.pod lib/ExtUtils/PATCHING
63823            ! lib/ExtUtils/README lib/ExtUtils/t/Command.t
63824            ! lib/ExtUtils/t/INST.t lib/ExtUtils/t/INST_PREFIX.t
63825            ! lib/ExtUtils/t/basic.t
63826 ____________________________________________________________________________
63827 [ 20206] By: jhi                                   on 2003/07/24  13:23:27
63828         Log: (accidentally empty checkin)
63829      Branch: perl
63830            ! lib/perl5db.pl
63831 ____________________________________________________________________________
63832 [ 20203] By: jhi                                   on 2003/07/24  13:14:53
63833         Log: Subject: [possible PATCH?] Re: Where is PerlIO_isutf8()?
63834              From: Steve Hay <steve.hay@uk.radan.com>
63835              Date: Fri, 18 Jul 2003 10:03:21 +0100
63836              Message-ID: <3F17B7D9.80805@uk.radan.com>
63837      Branch: perl
63838            ! makedef.pl
63839 ____________________________________________________________________________
63840 [ 20202] By: jhi                                   on 2003/07/24  13:12:08
63841         Log: Subject: [patch] perldebug.pod clarification
63842              From: Stéphane Payrard <stef@payrard.net>
63843              Date: Mon, 21 Jul 2003 21:36:59 +0200
63844              Message-ID: <20030721193659.GC2722@stefp.dyndns.org>
63845      Branch: perl
63846            ! pod/perldebug.pod
63847 ____________________________________________________________________________
63848 [ 20201] By: jhi                                   on 2003/07/24  13:08:50
63849         Log: Subject: PATCH: More edge tests on t/op/pow.t
63850              From: Andy Lester <andy@petdance.com>
63851              Date: Wed, 23 Jul 2003 16:38:35 -0500
63852              Message-ID: <20030723213834.GA20468@petdance.com>
63853      Branch: perl
63854            ! t/op/pow.t
63855 ____________________________________________________________________________
63856 [ 20200] By: jhi                                   on 2003/07/24  13:06:36
63857         Log: Subject: [PATCH] Fix saving 'V' magic in scan_vstring()
63858              From: Stephen McCamant <smcc@mit.edu>
63859              Date: Tue, 22 Jul 2003 09:41:10 -0400
63860              Message-ID: <16157.16118.998307.110037@syllepsis.MIT.EDU>
63861      Branch: perl
63862            ! toke.c
63863 ____________________________________________________________________________
63864 [ 20199] By: jhi                                   on 2003/07/24  13:04:24
63865         Log: Subject: [PATCH] Re: Reference to tied elements results in lvalue.
63866              From: Dave Mitchell <davem@fdgroup.com>
63867              Date: Fri, 18 Jul 2003 18:49:43 +0100
63868              Message-ID: <20030718174943.GB6427@fdgroup.com>
63869      Branch: perl
63870            ! sv.c t/op/tie.t
63871 ____________________________________________________________________________
63872 [ 20198] By: jhi                                   on 2003/07/24  09:07:45
63873         Log: Subject: [PATCH] Re: Bug in B::Deparse/Concise with ithreads
63874              From: Stephen McCamant <smcc@mit.edu>
63875              Date: Sat, 19 Jul 2003 12:06:31 -0400
63876              Message-ID: <16153.27783.300094.464863@syllepsis.MIT.EDU>
63877      Branch: perl
63878            ! ext/B/B/Concise.pm ext/B/B/Deparse.pm
63879 ____________________________________________________________________________
63880 [ 20197] By: jhi                                   on 2003/07/24  08:59:45
63881         Log: Subject: [PATCH] typo in VMS::Filespec
63882              From: Ken Williams <ken@mathforum.org>
63883              Date: Tue, 22 Jul 2003 15:18:21 -0500
63884              Message-Id: <A3E1AAA0-BC81-11D7-B0BB-003065F6D85A@mathforum.org>
63885      Branch: perl
63886            ! vms/ext/Filespec.pm
63887 ____________________________________________________________________________
63888 [ 20196] By: jhi                                   on 2003/07/24  08:54:54
63889         Log: EBCDIC fix from Thomas Dorner.
63890      Branch: perl
63891            ! Makefile.SH
63892 ____________________________________________________________________________
63893 [ 20195] By: jhi                                   on 2003/07/24  08:54:13
63894         Log: POSIX-BC patch from Thomas Dorner.
63895      Branch: perl
63896            ! hints/posix-bc.sh
63897 ____________________________________________________________________________
63898 [ 20194] By: jhi                                   on 2003/07/24  08:45:55
63899         Log: Subject: [perl #22971] [PATCH] Proper capitalization for IO.pm deprecation warning
63900              From: "ilya@juil.nonet (via RT)" <perlbug-followup@perl.org>
63901              Date: 14 Jul 2003 05:37:15 -0000
63902              Message-ID: <rt-22971-60818.3.78636614866039@rt.perl.org>
63903      Branch: perl
63904            ! ext/IO/IO.pm ext/IO/lib/IO/t/IO.t
63905 ____________________________________________________________________________
63906 [ 20193] By: jhi                                   on 2003/07/24  08:43:33
63907         Log: Subject: [perl #22965] Cannot set undef timeout in IO::Socket in perl 5.8.0
63908              From: Hrunting Johnson (via RT) <perlbug-followup@perl.org>
63909              Date: 14 Jul 2003 05:37:02 -0000
63910              Message-ID: <rt-22965-60791.13.0539297217452@rt.perl.org>
63911      Branch: perl
63912            ! ext/IO/lib/IO/Socket.pm
63913 ____________________________________________________________________________
63914 [ 20191] By: jhi                                   on 2003/07/24  08:38:35
63915         Log: Subject: [PATCH] Re: Fatal 5.8.1 error in our $FOO = x if $FOO
63916              From: Dave Mitchell <davem@fdgroup.com>
63917              Date: Thu, 17 Jul 2003 20:33:29 +0100
63918              Message-ID: <20030717193329.GA2699@fdgroup.com>
63919      Branch: perl
63920            ! pad.c t/lib/warnings/pad
63921 ____________________________________________________________________________
63922 [ 20190] By: jhi                                   on 2003/07/24  08:35:11
63923         Log: Subject: [perl #23080] [DOCPATCH] pod/perlfunc.pod missing C
63924              From: "Iain 'Spoon' Truskett (via RT)" <perlbug-followup@perl.org>
63925              Date: 22 Jul 2003 02:59:13 -0000
63926              Message-ID: <rt-23080-61622.7.95831816717467@rt.perl.org>
63927      Branch: perl
63928            ! pod/perlfunc.pod
63929 ____________________________________________________________________________
63930 [ 20189] By: jhi                                   on 2003/07/24  08:26:02
63931         Log: Subject: [PATCH RC2] Missing semicolon in PERL_FPU_INIT macro
63932              From: Stephen Clouse <stephenc@theiqgroup.com>
63933              Date: Tue, 22 Jul 2003 21:31:38 -0500
63934              Message-ID: <20030723023138.GA15653@owns.warpcore.org>
63935      Branch: perl
63936            ! perl.h
63937 ____________________________________________________________________________
63938 [ 20187] By: jhi                                   on 2003/07/24  07:53:33
63939         Log: Subject: [PATCH] configure.gnu --prefix
63940              From: slaven@rezic.de
63941              Date: Thu, 10 Jul 2003 09:33:27 +0000
63942              Message-Id: <1057829607.9622@devpc01.iconmobile.de>
63943      Branch: perl
63944            ! configure.gnu
63945 ____________________________________________________________________________
63946 [ 20186] By: jhi                                   on 2003/07/24  07:48:21
63947         Log: Subject: Re: problem with rc1 and rc2 on Mac OS X
63948              From: Edward Moy <emoy@apple.com>
63949              Date: Sun, 13 Jul 2003 14:12:57 -0700
63950              Message-Id: <C66FBFAC-B576-11D7-89B5-0030657B317C@apple.com>
63951      Branch: perl
63952            ! lib/ExtUtils/MM_Unix.pm
63953 ____________________________________________________________________________
63954 [ 20184] By: jhi                                   on 2003/07/24  07:02:31
63955         Log: Subject: [PATCH 5.8.1 @20153] malloc cleanup
63956              From: Ilya Zakharevich <ilya@Math.Berkeley.EDU>
63957              Date: Tue, 15 Jul 2003 07:46:58 -0700
63958              Message-ID: <20030715144657.GA21313@math.berkeley.edu>
63959      Branch: perl
63960            ! makedef.pl malloc.c malloc_ctl.h
63961 ____________________________________________________________________________
63962 [ 20182] By: jhi                                   on 2003/07/23  13:28:52
63963         Log: This should make Stas happy.
63964      Branch: perl
63965            ! hv.h perl.c
63966 ____________________________________________________________________________
63967 [ 20180] By: jhi                                   on 2003/07/23  12:40:11
63968         Log: utils.lst parsing tweak for bin/perldoc installation from Rafael.
63969      Branch: perl
63970            ! installperl
63971 ____________________________________________________________________________
63972 [ 20179] By: rgs                                   on 2003/07/21  19:46:19
63973         Log: As the perldoc.pod is now in a separate file under pod/,
63974              the installman script was installing an empty perldoc.1 manpage.
63975      Branch: perl
63976            ! installperl utils.lst
63977 ____________________________________________________________________________
63978 [ 20178] By: rgs                                   on 2003/07/21  19:19:06
63979         Log: Subject: [DOCPATCH] %SIG and SA_RESTART
63980              From: Steve Grazzini <grazz@pobox.com>
63981              Date: Wed, 16 Jul 2003 08:56:21 -0400
63982              Message-ID: <20030716125620.GA7022@grazzini.net>
63983      Branch: perl
63984            ! pod/perlipc.pod pod/perlvar.pod
63985 ____________________________________________________________________________
63986 [ 20177] By: rgs                                   on 2003/07/21  19:14:35
63987         Log: Subject: [PATCH] Re: Perl formats do not work with tied values
63988              From: Dave Mitchell <davem@fdgroup.com>
63989              Date: Tue, 15 Jul 2003 20:46:07 +0100
63990              Message-ID: <20030715194607.GA24592@fdgroup.com>
63991
63992              plus the regression test :
63993              Subject: Re: [PATCH] Re: Perl formats do not work with tied values
63994              From: Nicholas Clark <nick@ccl4.org>
63995              Date: Tue, 15 Jul 2003 22:24:04 +0100
63996              Message-ID: <20030715222404.L20414@plum.flirble.org>
63997      Branch: perl
63998            ! pp_ctl.c t/op/write.t
63999 ____________________________________________________________________________
64000 [ 20176] By: rgs                                   on 2003/07/21  19:00:32
64001         Log: Subject: Re: [PATCH] h2xs and extra_libraries
64002              From: Tassilo von Parseval <tassilo.parseval@post.rwth-aachen.de>
64003              Date: Tue, 15 Jul 2003 07:28:52 +0200
64004              Message-id: <20030715052852.GA494@ethan>
64005      Branch: perl
64006            ! utils/h2xs.PL
64007 ____________________________________________________________________________
64008 [ 20175] By: merijn                                on 2003/07/21  14:26:43
64009         Log: Subject: Re: [PATCH] test clean-up for VMS
64010              From: "Craig A. Berry" <craigberry@mac.com>
64011              Date: Sun, 20 Jul 2003 10:43:32 -0500
64012              Message-ID: <3F1AB8A4.2070207@mac.com>
64013      Branch: perl
64014            ! ext/PerlIO/t/encoding.t lib/File/Spec/t/rel2abs2rel.t
64015            ! lib/FileCache/t/01open.t lib/FileCache/t/02maxopen.t
64016            ! lib/FileCache/t/03append.t t/io/argv.t t/op/stat.t
64017            ! t/uni/write.t
64018 ____________________________________________________________________________
64019 [ 20174] By: hv                                    on 2003/07/21  10:26:07
64020         Log: Update Changes.
64021      Branch: perl
64022            ! Changes patchlevel.h
64023 ____________________________________________________________________________
64024 [ 20173] By: rgs                                   on 2003/07/20  21:48:21
64025         Log: Minor doc nits concerning the dosish ALTERNATE_SHEBANG
64026              (bug #22968)
64027      Branch: perl
64028            ! pod/perlfaq3.pod pod/perlrun.pod
64029 ____________________________________________________________________________
64030 [ 20172] By: rgs                                   on 2003/07/20  21:14:12
64031         Log: Subject: Re: [perl #22941] Can't build perl with -Duseshrplib if /usr/bin/gcc is a perl script
64032              From: Andy Dougherty <doughera@lafayette.edu>
64033              Date: Tue, 15 Jul 2003 10:52:58 -0400 (EDT)
64034              Message-ID: <Pine.SOL.4.53.0307151011550.7002@maxwell.phys.lafayette.edu>
64035
64036              plus a clarification to INSTALL :
64037              Subject: [PATCH] Re: [perl #22941] Can't build perl with -Duseshrplib if /usr/bin/gcc is a perl script
64038              From: Andy Dougherty <doughera@lafayette.edu>
64039              Date: Wed, 16 Jul 2003 11:01:24 -0400 (EDT)
64040              Message-ID: <Pine.SOL.4.53.0307161059400.10258@maxwell.phys.lafayette.edu>
64041      Branch: perl
64042            ! INSTALL Makefile.SH
64043 ____________________________________________________________________________
64044 [ 20171] By: rgs                                   on 2003/07/20  20:12:54
64045         Log: The warning "Possible precedence problem on bitwise operator"
64046              was incorrectly produced with the bitwise-assignment operators.
64047              Fix it. (bug #23065 concerning 5.8.1 RC2)
64048      Branch: perl
64049            ! op.c t/lib/warnings/op
64050 ____________________________________________________________________________
64051 [ 20170] By: rgs                                   on 2003/07/18  08:03:02
64052         Log: Rename get_seed() to get_hash_seed(), as suggested by
64053              Eric J Kidder, to solve a name conflict on HP_UX 11.00.
64054      Branch: perl
64055            ! embed.fnc embed.h perl.c proto.h util.c
64056 ____________________________________________________________________________
64057 [ 20169] By: rgs                                   on 2003/07/18  06:36:20
64058         Log: Subject: Re: [PATCH] Re: Oops - Can't calculate our powers
64059              From: Andreas J Koenig <andreas.koenig@anima.de>
64060              Date: Fri, 18 Jul 2003 09:36:47 +0200
64061              Message-ID: <87fzl4thf4.fsf@franz.ak.mind.de>
64062      Branch: perl
64063            ! t/op/pow.t
64064 ____________________________________________________________________________
64065 [ 20168] By: rgs                                   on 2003/07/18  06:21:15
64066         Log: Subject: [ PATCH] Re: isa(UNIVERSAL)?
64067              From: Dave Mitchell <davem@fdgroup.com>
64068              Date: Thu, 17 Jul 2003 21:51:12 +0100
64069              Message-ID: <20030717205112.GA2994@fdgroup.com>
64070      Branch: perl
64071            ! t/op/universal.t universal.c
64072 ____________________________________________________________________________
64073 [ 20167] By: rgs                                   on 2003/07/18  06:14:33
64074         Log: Subject: [PATCH] Re: Oops - Can't calculate our powers
64075              From: Stephen McCamant <smcc@mit.edu>
64076              Date: Fri, 18 Jul 2003 02:26:14 -0400
64077              Message-ID: <16151.37638.162561.84142@syllepsis.MIT.EDU>
64078      Branch: perl
64079            ! pp.c t/op/pow.t
64080 ____________________________________________________________________________
64081 [ 20166] By: rgs                                   on 2003/07/17  21:49:10
64082         Log: Subject: [PATCH] Increment cop_seqmax in utilize()
64083              From: Stephen McCamant <smcc@mit.edu>
64084              Date: Tue, 15 Jul 2003 09:57:26 -0400
64085              Message-ID: <16148.2118.348073.76671@syllepsis.MIT.EDU>
64086
64087              Subject: [PATCH] B::Concise 0.56: refcount and BEGIN improvements
64088              From: Stephen McCamant <smcc@mit.edu>
64089              Date: Tue, 15 Jul 2003 09:57:31 -0400
64090              Message-ID: <16148.2123.305325.480187@syllepsis.MIT.EDU>
64091      Branch: perl
64092            ! ext/B/B/Concise.pm ext/B/B/Terse.pm op.c
64093 ____________________________________________________________________________
64094 [ 20165] By: rgs                                   on 2003/07/17  21:24:46
64095         Log: Subject: [PATCH] Re: POSIX::div
64096              From: Michael G Schwern <schwern@pobox.com>
64097              Date: Mon, 14 Jul 2003 14:00:58 -0700
64098              Message-ID: <20030714210057.GK18517@windhund.schwern.org>
64099      Branch: perl
64100            ! ext/POSIX/POSIX.pm
64101 ____________________________________________________________________________
64102 [ 20164] By: rgs                                   on 2003/07/17  21:15:51
64103         Log: PERL5LIB is not colon-separated everywhere
64104      Branch: perl
64105            ! pod/perlrun.pod
64106 ____________________________________________________________________________
64107 [ 20163] By: rgs                                   on 2003/07/17  20:59:15
64108         Log: Subject: [PATCH] fix $^N-related coredump
64109              From: Anton Berezin <tobez@tobez.org>
64110              Date: Mon, 14 Jul 2003 13:50:35 +0200
64111              Message-ID: <20030714115035.GA10971@heechee.tobez.org>
64112      Branch: perl
64113            ! pp_hot.c sv.c
64114 ____________________________________________________________________________
64115 [ 20162] By: rgs                                   on 2003/07/17  20:39:31
64116         Log: Subject: PATCH: tweak 'split' docs for case of explicit 0 LIMIT
64117              From: Tony Bowden <tony@kasei.com>
64118              Date: Thu, 17 Jul 2003 16:49:35 +0100
64119              Message-ID: <20030717154935.GA20302@soto.kasei.com>
64120      Branch: perl
64121            ! pod/perlfunc.pod
64122 ____________________________________________________________________________
64123 [ 20161] By: rgs                                   on 2003/07/17  20:25:52
64124         Log: Minor nits in perlsyn.pod
64125      Branch: perl
64126            ! pod/perlsyn.pod
64127 ____________________________________________________________________________
64128 [ 20159] By: rgs                                   on 2003/07/13  20:02:34
64129         Log: Subject: [PATCH] incorrect error message from Attribute::Handlers
64130              From: Claes Jacobsson <claes@surfar.nu>
64131              Date: Sat, 12 Jul 2003 16:30:42 +0200
64132              Message-Id: <6A6A99C4-B475-11D7-AB05-000393C12F9E@surfar.nu>
64133      Branch: perl
64134            ! lib/Attribute/Handlers.pm
64135 ____________________________________________________________________________
64136 [ 20158] By: rgs                                   on 2003/07/13  19:52:58
64137         Log: Add a TODO test for perlbug #19049
64138              Subject: Re: [perl #19049] Incorrect $` after replacement (test for same)
64139              From: Alex Gough <alex-p5p@earth.li>
64140              Date: Fri, 11 Jul 2003 01:12:42 +0100
64141              Message-ID: <20030711001242.GD2484@the.earth.li>
64142      Branch: perl
64143            ! t/op/pat.t
64144 ____________________________________________________________________________
64145 [ 20157] By: rgs                                   on 2003/07/13  19:43:29
64146         Log: Minor updates of the charnames documentation.
64147      Branch: perl
64148            ! lib/charnames.pm
64149 ____________________________________________________________________________
64150 [ 20156] By: rgs                                   on 2003/07/11  19:37:34
64151         Log: Subject: Re: Sort sub and NaNs
64152              From: "John P. Linderman" <jpl@research.att.com>
64153              Date: Thu, 10 Jul 2003 10:45:06 -0400
64154              Message-Id: <200307101445.KAA79110@raptor.research.att.com>
64155
64156              Warn against a potential edge case with sort, <=> and NaNs.
64157      Branch: perl
64158            ! pod/perlfunc.pod
64159 ____________________________________________________________________________
64160 [ 20155] By: rgs                                   on 2003/07/11  19:11:17
64161         Log: Subject: [DOCPATCH] perlfunc/read
64162              From: Steve Grazzini <grazz@pobox.com>
64163              Date: Tue, 8 Jul 2003 10:23:03 -0400
64164              Message-ID: <20030708142303.GB23698@grazzini.net>
64165
64166              Clarify the OFFSET parameter to read().
64167      Branch: perl
64168            ! pod/perlfunc.pod
64169 ____________________________________________________________________________
64170 [ 20154] By: rgs                                   on 2003/07/11  18:54:09
64171         Log: Subject: [PATCH pod/perlsyn.pod pod/perltrap.pod] New introduction
64172              From: Michael G Schwern <schwern@pobox.com>
64173              Date: Tue, 13 May 2003 18:33:05 -0700
64174              Message-ID: <20030514013305.GB22001@windhund.schwern.org>
64175      Branch: perl
64176            ! pod/perlsyn.pod pod/perltrap.pod
64177 ____________________________________________________________________________
64178 [ 20145] By: jhi                                   on 2003/07/11  05:07:09
64179         Log: I think the API for mod_perl v2 should be simply that
64180              PL_modperl sets the PL_hash_seed (and PL_hash_seed_set)
64181              itself, hopefully from a good source of random bits.
64182      Branch: perl
64183            ! perl.c
64184 ____________________________________________________________________________
64185 [ 20143] By: jhi                                   on 2003/07/11  00:35:07
64186         Log: pTHX.
64187      Branch: perl
64188            ! util.c
64189 ____________________________________________________________________________
64190 [ 20139] By: jhi                                   on 2003/07/11  00:21:43
64191         Log: New order of seed.
64192      Branch: perl
64193            ! pod/perlrun.pod
64194 ____________________________________________________________________________
64195 [ 20138] By: jhi                                   on 2003/07/11  00:13:11
64196         Log: More retraction.
64197      Branch: perl
64198            ! INSTALL
64199 ____________________________________________________________________________
64200 [ 20137] By: jhi                                   on 2003/07/11  00:10:14
64201         Log: Retract the statements.
64202      Branch: perl
64203            ! pod/perlfunc.pod pod/perlsec.pod
64204 ____________________________________________________________________________
64205 [ 20135] By: jhi                                   on 2003/07/11  00:03:33
64206         Log: Chicken out: the hash randomisation is not on by default.
64207              We switch over to the explicit mode: in other words, if
64208              the $ENV{PERL_HASH_SEED} is on, we randomise.  Also, we
64209              randomise only if PL_hash_seed_set is FALSE (this means
64210              one can use PERL_HASH() before perl_run.)  Also, since
64211              now PERL_HASH_SEED is okay even under -T, all should be fine.
64212              (Ha!)
64213      Branch: perl
64214            ! embed.fnc embed.h embedvar.h intrpvar.h perl.c perl.h
64215            ! perlapi.h pod/perldiag.pod pod/perlrun.pod proto.h util.c
64216 ____________________________________________________________________________
64217 [ 20134] By: jhi                                   on 2003/07/10  23:23:38
64218         Log: Check PERL_HASH_SEED even when tainted.
64219      Branch: perl
64220            ! perl.c pod/perlrun.pod
64221 ____________________________________________________________________________
64222 [ 20131] By: jhi                                   on 2003/07/10  22:42:29
64223         Log: &Time::HiRes::d_nanosleep was broken.
64224      Branch: perl
64225            ! ext/Time/HiRes/Makefile.PL
64226 ____________________________________________________________________________
64227 [ 20130] By: jhi                                   on 2003/07/10  22:37:02
64228         Log: Subject: [PATCH} db-recno.t on Mac OS X
64229              From: slaven@rezic.de
64230              Date: Thu, 10 Jul 2003 12:41:05 +0000
64231              Message-Id: <1057840865.9622@devpc01.iconmobile.de>
64232      Branch: perl
64233            ! ext/DB_File/t/db-recno.t
64234 ____________________________________________________________________________
64235 [ 20129] By: jhi                                   on 2003/07/10  22:31:39
64236         Log: Subject: [comment patch]
64237              From: Stas Bekman <stas@stason.org>
64238              Date: Thu, 10 Jul 2003 14:19:22 -0700
64239              Message-ID: <3F0DD85A.1070902@stason.org>
64240      Branch: perl
64241            ! perl.c
64242 ____________________________________________________________________________
64243 [ 20127] By: jhi                                   on 2003/07/10  22:21:04
64244         Log: Be vague enough.
64245      Branch: perl
64246            ! pod/perldata.pod
64247 ____________________________________________________________________________
64248 [ 20125] By: rgs                                   on 2003/07/10  19:28:48
64249         Log: regen embed.pl for the bleadperl branch as well.
64250      Branch: perl
64251            ! embedvar.h
64252 ____________________________________________________________________________
64253 [ 20124] By: jhi                                   on 2003/07/10  18:33:56
64254         Log: Time travel noticed by Enache.
64255      Branch: perl
64256            ! pod/perlhist.pod
64257 ____________________________________________________________________________
64258 [ 20120] By: jhi                                   on 2003/07/10  17:38:28
64259         Log: I can see the future.  It is cloudy.
64260      Branch: perl
64261            ! pod/perlhist.pod
64262 ____________________________________________________________________________
64263 [ 20119] By: jhi                                   on 2003/07/10  17:37:25
64264         Log: Subject: [PATCH] configure.gnu --prefix
64265              From: slaven@rezic.de
64266              Date: Thu, 10 Jul 2003 09:33:27 +0000
64267              Message-Id: <1057829607.9622@devpc01.iconmobile.de>
64268      Branch: perl
64269            ! configure.gnu
64270 ____________________________________________________________________________
64271 [ 20118] By: jhi                                   on 2003/07/10  17:35:32
64272         Log: malloc alignment patch from Spider, needed for Tru64 + longdouble.
64273      Branch: perl
64274            ! malloc.c
64275 ____________________________________________________________________________
64276 [ 20117] By: jhi                                   on 2003/07/10  17:33:53
64277         Log: Subject: [PATCH] Restore SIGFPE on exec()
64278              From: Chip Salzenberg <chip@pobox.com>
64279              Date: Thu, 10 Jul 2003 13:13:20 -0400
64280              Message-ID: <20030710171319.GA21588@perlsupport.com>
64281      Branch: perl
64282            ! doio.c perl.c perl.h perlapi.h perlvars.h toke.c
64283 ____________________________________________________________________________
64284 [ 20116] By: jhi                                   on 2003/07/10  17:28:00
64285         Log: The *right* way to make the csighandler visible.
64286      Branch: perl
64287            ! embed.fnc embed.h global.sym
64288 ____________________________________________________________________________
64289 [ 20114] By: jhi                                   on 2003/07/10  15:06:41
64290         Log: Retract #20112.
64291      Branch: perl
64292            ! embed.fnc embedvar.h intrpvar.h perlapi.h
64293 ____________________________________________________________________________
64294 [ 20112] By: jhi                                   on 2003/07/10  14:17:59
64295         Log: Argh.  At least AIX builds choke because of this.
64296      Branch: perl
64297            ! embed.fnc embedvar.h intrpvar.h perlapi.h
64298 ____________________________________________________________________________
64299 [ 20106] By: jhi                                   on 2003/07/10  04:50:05
64300         Log: Upgrade to podlators 1.27.
64301      Branch: perl
64302            ! lib/Pod/Text/Termcap.pm
64303 ____________________________________________________________________________
64304 [ 20104] By: jhi                                   on 2003/07/10  04:40:02
64305         Log: Deprecate v-strings.
64306      Branch: perl
64307            ! pod/perldata.pod
64308 ____________________________________________________________________________
64309 [ 20103] By: jhi                                   on 2003/07/10  04:28:40
64310         Log: perlfaq sync.
64311      Branch: perl
64312            ! pod/perlfaq1.pod
64313 ____________________________________________________________________________
64314 [ 20100] By: jhi                                   on 2003/07/09  17:40:41
64315         Log: Detypo.
64316      Branch: perl
64317            ! hints/darwin.sh
64318 ____________________________________________________________________________
64319 [ 20098] By: jhi                                   on 2003/07/09  17:29:53
64320         Log: Fixes from Ron Kimball.
64321      Branch: perl
64322            ! pod/perldata.pod
64323 ____________________________________________________________________________
64324 [ 20097] By: jhi                                   on 2003/07/09  17:27:35
64325         Log: Fix for the 'print v65' plus safety tweaks from Rafael.
64326      Branch: perl
64327            ! toke.c
64328 ____________________________________________________________________________
64329 [ 20096] By: jhi                                   on 2003/07/09  17:06:29
64330         Log: More Darwin/MacOSX paths twiddling.
64331      Branch: perl
64332            ! hints/darwin.sh
64333 ____________________________________________________________________________
64334 [ 20093] By: jhi                                   on 2003/07/09  11:43:09
64335         Log: Play safe and use the system malloc in FreeBSD.
64336              Yes, performance suffers.  But that is better than
64337              random core dumps.
64338      Branch: perl
64339            ! hints/freebsd.sh
64340 ____________________________________________________________________________
64341 [ 20090] By: jhi                                   on 2003/07/09  08:12:32
64342         Log: Upgrade to Encode 1.97.
64343      Branch: perl
64344            ! ext/Encode/Changes ext/Encode/Encode.pm ext/Encode/META.yml
64345            ! ext/Encode/encoding.pm ext/Encode/lib/Encode/Alias.pm
64346            ! ext/Encode/lib/Encode/Encoder.pm
64347            ! ext/Encode/lib/Encode/Guess.pm
64348            ! ext/Encode/lib/Encode/JP/JIS7.pm
64349 ____________________________________________________________________________
64350 [ 20089] By: jhi                                   on 2003/07/09  08:08:30
64351         Log: Rework the perldata vXX => ... entry a bit.
64352      Branch: perl
64353            ! pod/perldata.pod
64354 ____________________________________________________________________________
64355 [ 20088] By: jhi                                   on 2003/07/09  08:04:04
64356         Log: Document the vXX => change in perldata, too.
64357      Branch: perl
64358            ! pod/perldata.pod
64359 ____________________________________________________________________________
64360 [ 20085] By: jhi                                   on 2003/07/09  07:49:46
64361         Log: Test the vX => ... fix.
64362      Branch: perl
64363            ! t/op/ver.t
64364 ____________________________________________________________________________
64365 [ 20084] By: jhi                                   on 2003/07/09  06:58:39
64366         Log: Subject: Re: [REPATCH] was Re: [perl #16010] v-strings left of a => don't get quoted.
64367              From: John Peacock <jpeacock@rowman.com>
64368              Date: Wed, 09 Jul 2003 01:05:38 -0700
64369              Message-ID: <3F0BCCD2.1020009@rowman.com>
64370      Branch: perl
64371            ! embed.fnc pod/perlapi.pod toke.c util.c
64372 ____________________________________________________________________________
64373 [ 20083] By: jhi                                   on 2003/07/09  06:27:15
64374         Log: Darwin/Mac OS X: if -Dprefix=/foo, do nothing special
64375              for the install dirs.
64376      Branch: perl
64377            ! hints/darwin.sh
64378 ____________________________________________________________________________
64379 [ 20082] By: jhi                                   on 2003/07/09  05:57:16
64380         Log: Enable avoiding /System/Library in Mac OS X by
64381              doing Configure -Dprefix=/some/where -Uvendorlib.
64382      Branch: perl
64383            ! hints/darwin.sh
64384 ____________________________________________________________________________
64385 [ 20081] By: jhi                                   on 2003/07/09  05:53:56
64386         Log: Subject: [PATCH] Safe signals via POSIX::sigaction
64387              From: Chip Salzenberg <chip@pobox.com>
64388              Date: Wed, 9 Jul 2003 01:49:10 -0400
64389              Message-ID: <20030709054910.GH2021@perlsupport.com>
64390      Branch: perl
64391            ! embed.fnc embed.h ext/POSIX/POSIX.pm ext/POSIX/POSIX.pod
64392            ! ext/POSIX/POSIX.xs ext/POSIX/t/sigaction.t proto.h
64393 ____________________________________________________________________________
64394 [ 20079] By: rgs                                   on 2003/07/08  20:26:20
64395         Log: The CHECKOP macro was not invoked on some newly created ops
64396              (to match them against the current opmask.) As a consequence,
64397              Safe compartments were unable to trap some ops (pattern
64398              match, slices, conditionals.) This fixes the holes.
64399      Branch: perl
64400            ! op.c
64401 ____________________________________________________________________________
64402 [ 20078] By: jhi                                   on 2003/07/08  19:30:13
64403         Log: Revert #20077.
64404      Branch: perl
64405            ! lib/CPAN.pm
64406 ____________________________________________________________________________
64407 [ 20077] By: jhi                                   on 2003/07/08  18:40:51
64408         Log: Don't recommend to upgrade the base.pm in the core with
64409              the base.pm from Class::Fields.  They are not the same.
64410      Branch: perl
64411            ! lib/CPAN.pm
64412 ____________________________________________________________________________
64413 [ 20076] By: jhi                                   on 2003/07/08  17:39:49
64414         Log: Subject: Re: [PATCH] $^VARIABLES in 'perl -Dt' output
64415              From: Enache Adrian <enache@rdslink.ro>
64416              Date: Tue, 8 Jul 2003 20:47:58 +0300
64417              Message-ID: <20030708174758.GA1177@ratsnest.hole>
64418
64419              (ByteLoader tweak avoiding a leaked scalar)
64420      Branch: perl
64421            ! op.c
64422 ____________________________________________________________________________
64423 [ 20071] By: jhi                                   on 2003/07/08  09:18:19
64424         Log: In 5.8.x, fast stdio places still do use stdio.
64425      Branch: perl
64426            ! ext/Digest/MD5/t/badfile.t
64427 ____________________________________________________________________________
64428 [ 20069] By: jhi                                   on 2003/07/08  08:41:01
64429         Log: Subject: [PATCH] format 'botched' in malloc.c
64430              From: Enache Adrian <enache@rdslink.ro>
64431              Date: Mon, 7 Jul 2003 21:57:06 +0300
64432              Message-ID: <20030707185706.GB7017@ratsnest.hole>
64433      Branch: perl
64434            ! malloc.c
64435 ____________________________________________________________________________
64436 [ 20068] By: jhi                                   on 2003/07/08  08:36:27
64437         Log: Subject: [PATCH: maint @ 20046] warnings, line numbers & windows
64438              From: Marcus Holland-Moritz <mhx-perl@gmx.net>
64439              Date: Tue, 8 Jul 2003 11:14:05 +0200 (MEST)
64440              Message-ID: <12022.1057655645@www59.gmx.net>
64441      Branch: perl
64442            ! ext/B/B.xs lib/Pod/Text/Termcap.pm mg.c op.c
64443 ____________________________________________________________________________
64444 [ 20066] By: jhi                                   on 2003/07/08  05:24:58
64445         Log: Retract #20065: I don't think this is the right way
64446              to patch this issue.
64447      Branch: perl
64448            ! Configure INSTALL Policy_sh.SH pod/perltoc.pod
64449 ____________________________________________________________________________
64450 [ 20065] By: jhi                                   on 2003/07/08  05:14:31
64451         Log: Configure tweak from Johnny Lam so that the
64452              INSTALLSITEMAN[13]DIR get correctly set.
64453      Branch: perl
64454            ! Configure INSTALL Policy_sh.SH pod/perltoc.pod
64455 ____________________________________________________________________________
64456 [ 20063] By: rgs                                   on 2003/07/07  18:58:47
64457         Log: Regexp bug in the docs, spotted by Enache's eagle eyes.
64458      Branch: perl
64459            ! pod/perlsyn.pod
64460 ____________________________________________________________________________
64461 [ 20062] By: jhi                                   on 2003/07/07  18:27:02
64462         Log: Mark Bixby ++.
64463      Branch: perl
64464            ! perl.c
64465 ____________________________________________________________________________
64466 [ 20061] By: jhi                                   on 2003/07/07  18:26:35
64467         Log: The nanosleep() probe was kaputt, fixed by Mark Bixby.
64468      Branch: perl
64469            ! ext/Time/HiRes/Makefile.PL
64470 ____________________________________________________________________________
64471 [ 20059] By: jhi                                   on 2003/07/07  15:06:35
64472         Log: Good catch from Gisle.
64473      Branch: perl
64474            ! pod/perlfunc.pod
64475 ____________________________________________________________________________
64476 [ 20058] By: jhi                                   on 2003/07/07  14:12:27
64477         Log: Refashioned #20055: we cannot trust stdio to fail here.
64478      Branch: perl
64479            ! ext/Digest/MD5/t/badfile.t
64480 ____________________________________________________________________________
64481 [ 20057] By: jhi                                   on 2003/07/07  14:08:16
64482         Log: Retract #20056, #20055, #20052, #20050, #20048: the changes
64483              are just breaking more than they are fixing.
64484      Branch: perl
64485            ! ext/Digest/MD5/MD5.xs ext/Digest/MD5/t/badfile.t
64486            ! ext/Digest/MD5/t/files.t perlio.c
64487 ____________________________________________________________________________
64488 [ 20056] By: jhi                                   on 2003/07/07  13:31:14
64489         Log: Returning zero from PerlIO_read() is okay;
64490              update MD5 sums.
64491      Branch: perl
64492            ! ext/Digest/MD5/MD5.xs ext/Digest/MD5/t/files.t
64493 ____________________________________________________________________________
64494 [ 20055] By: jhi                                   on 2003/07/07  13:23:58
64495         Log: If perlio is completely out of the picture, we can
64496              get tripped by different stdio implementations.
64497      Branch: perl
64498            ! ext/Digest/MD5/t/badfile.t
64499 ____________________________________________________________________________
64500 [ 20054] By: jhi                                   on 2003/07/07  12:58:06
64501         Log: AUTHORS tweak.
64502      Branch: perl
64503            ! AUTHORS
64504 ____________________________________________________________________________
64505 [ 20053] By: jhi                                   on 2003/07/07  12:04:26
64506         Log: Subject: Patch to README.solaris
64507              From: Alan Burlison <Alan.Burlison@sun.com>
64508              Date: Mon, 07 Jul 2003 14:15:57 +0100
64509              Message-ID: <3F09728D.1070408@sun.com>
64510      Branch: perl
64511            ! README.solaris
64512 ____________________________________________________________________________
64513 [ 20052] By: jhi                                   on 2003/07/07  10:28:35
64514         Log: Update MD5 checksums.
64515      Branch: perl
64516            ! ext/Digest/MD5/t/files.t
64517 ____________________________________________________________________________
64518 [ 20051] By: jhi                                   on 2003/07/07  09:56:48
64519         Log: Be more explicit than just 'characters'.
64520      Branch: perl
64521            ! pod/perlfunc.pod
64522 ____________________________________________________________________________
64523 [ 20050] By: jhi                                   on 2003/07/07  09:38:28
64524         Log: Try making PerlIO errors more consistent.
64525              (1) Check early whether the filehandle is capable of
64526              the requested action.
64527              (2) PerlIO_read() really can return -1, and so can
64528              PerlIOUnix_read().
64529              (3) Some stdio implementations are more forgiving
64530              than others, so check also for errors recorded
64531              by PerlIO in PerlStdio_errno().
64532      Branch: perl
64533            ! perlio.c
64534 ____________________________________________________________________________
64535 [ 20049] By: jhi                                   on 2003/07/07  09:08:19
64536         Log: Linewrapping.
64537      Branch: perl
64538            ! pod/perlapio.pod
64539 ____________________________________________________________________________
64540 [ 20048] By: jhi                                   on 2003/07/07  09:06:58
64541         Log: PerlIO_read() can return negative.
64542      Branch: perl
64543            ! ext/Digest/MD5/MD5.xs
64544 ____________________________________________________________________________
64545 [ 20043] By: jhi                                   on 2003/07/07  04:36:22
64546         Log: Use the existence, instead of the truth, to decide
64547              whether to scan for a symbol.
64548              (Also remove trailing spaces.)
64549      Branch: perl
64550            ! ext/Time/HiRes/Makefile.PL
64551 ____________________________________________________________________________
64552 [ 20042] By: jhi                                   on 2003/07/07  04:29:35
64553         Log: MPE/iX tweak from Mark Bixby.
64554      Branch: perl
64555            ! ext/Time/HiRes/Makefile.PL
64556 ____________________________________________________________________________
64557 [ 20041] By: rgs                                   on 2003/07/06  21:45:37
64558         Log: Upgrade BigInt and BigRat
64559              Subject: BigInt v1.65, Bigrat v0.10 - reloaded
64560              From: Tels <perl_dummy@bloodgate.com>
64561              Date: Sun, 6 Jul 2003 15:41:36 +0200
64562              Message-Id: <200307061158.23576@bloodgate.com>
64563      Branch: perl
64564            ! lib/Math/BigFloat.pm lib/Math/BigInt.pm
64565            ! lib/Math/BigInt/Calc.pm lib/Math/BigInt/t/biglog.t
64566            ! lib/Math/BigInt/t/mbimbf.t lib/Math/BigRat.pm
64567            ! lib/Math/BigRat/t/bigrat.t lib/Math/BigRat/t/bigratpm.inc
64568            ! lib/Math/BigRat/t/bigratpm.t
64569 ____________________________________________________________________________
64570 [ 20040] By: rgs                                   on 2003/07/06  21:11:20
64571         Log: Subject: Re: [perl #5025] #line directive explination wrong
64572              From: Casey West <casey@geeknest.com>
64573              Date: Sun, 6 Jul 2003 18:24:46 -0400
64574              Message-ID: <20030706222446.GL7506@geeknest.com>
64575      Branch: perl
64576            ! pod/perlsyn.pod
64577 ____________________________________________________________________________
64578 [ 20039] By: jhi                                   on 2003/07/06  20:19:31
64579         Log: Update the CPAN mirrors list.
64580      Branch: perl
64581            ! pod/perlmodlib.PL pod/perlmodlib.pod
64582 ____________________________________________________________________________
64583 [ 20036] By: gsar                                  on 2003/07/06  17:11:59
64584         Log: yet another symbol missing in change#20018
64585      Branch: perl
64586            ! makedef.pl
64587 ____________________________________________________________________________
64588 [ 20035] By: gsar                                  on 2003/07/06  17:02:21
64589         Log: PerlIOBase_pushed seems to have gone missing in change#20018
64590      Branch: perl
64591            ! makedef.pl
64592 ____________________________________________________________________________
64593 [ 20034] By: jhi                                   on 2003/07/06  16:46:20
64594         Log: Subject: [PATCH @19834] DProf fixes
64595              From: Radu Greab <radu@netsoft.ro>
64596              Date: Sun, 6 Jul 2003 20:09:12 +0300
64597              Message-ID: <16136.22456.99575.573777@ix.netsoft.ro>
64598      Branch: perl
64599            + t/lib/dprof/test7_t t/lib/dprof/test7_v t/lib/dprof/test8_t
64600            + t/lib/dprof/test8_v
64601            ! MANIFEST ext/Devel/DProf/DProf.pm ext/Devel/DProf/DProf.t
64602            ! ext/Devel/DProf/DProf.xs perl.c pod/perldiag.pod
64603            ! pod/perltodo.pod pod/perlvar.pod pp_ctl.c
64604 ____________________________________________________________________________
64605 [ 20032] By: jhi                                   on 2003/07/06  16:21:33
64606         Log: Forgotten from change #20031.
64607      Branch: perl
64608            ! makedef.pl malloc_ctl.h
64609 ____________________________________________________________________________
64610 [ 20031] By: jhi                                   on 2003/07/06  16:16:08
64611         Log: Subject: [PATCH] improve WinCE port
64612              From: "Vadim Konovalov" <vkonovalov@peterstar.ru>
64613              Date: Sun, 6 Jul 2003 18:46:09 +0400
64614              Message-ID: <001401c343cd$8069cd40$ce5ec3d9@vad>
64615
64616              Subject: [PATCH] improve WinCE port -- addition
64617              From: "Vadim Konovalov" <vkonovalov@peterstar.ru>
64618              Date: Sun, 6 Jul 2003 19:50:47 +0400
64619              Message-ID: <000b01c343d6$7ff96920$5b5dc3d9@vad>
64620      Branch: perl
64621            + wince/perlhost.h wince/vdir.h wince/vmem.h
64622            ! MANIFEST wince/Makefile.ce wince/config.ce wince/perllib.c
64623            ! wince/win32.h wince/win32io.c wince/win32iop.h
64624            ! wince/win32thread.c wince/win32thread.h wince/wince.c
64625            ! wince/wince.h
64626 ____________________________________________________________________________
64627 [ 20030] By: jhi                                   on 2003/07/06  15:59:25
64628         Log: Subject: [PATCH] for pod/perlfaq2.pod against latest snapshot for Alpaca
64629              From: merlyn@stonehenge.com (Randal L. Schwartz)
64630              Date: 05 Jul 2003 16:29:14 -0700
64631              Message-ID: <867k6weenp.fsf@blue.stonehenge.com>
64632      Branch: perl
64633            ! pod/perlfaq2.pod
64634 ____________________________________________________________________________
64635 [ 20026] By: jhi                                   on 2003/07/06  08:14:48
64636         Log: FreeBSD: if someone *really* wants to use the system malloc.
64637      Branch: perl
64638            ! hints/freebsd.sh
64639 ____________________________________________________________________________
64640 [ 20025] By: jhi                                   on 2003/07/06  07:48:01
64641         Log: Make the 'slow ok' feature optional.
64642      Branch: perl
64643            ! lib/Test/Harness.pm
64644 ____________________________________________________________________________
64645 [ 20024] By: jhi                                   on 2003/07/06  07:44:57
64646         Log: The change #20022 didn't work for Command.t.
64647      Branch: perl
64648            ! lib/ExtUtils/t/Command.t
64649 ____________________________________________________________________________
64650 [ 20023] By: jhi                                   on 2003/07/06  07:29:22
64651         Log: Subject: Re: maint @ 19975 [PATCH lib/Test/Harness.pm]
64652              From: Michael G Schwern <schwern@pobox.com>
64653              Date: Sat, 5 Jul 2003 13:34:37 -0700
64654              Message-ID: <20030705203437.GB2598@windhund.schwern.org>
64655
64656              Print out the "ok" messages only once every second,
64657              this should make output much less and therefore testing
64658              much faster, especially on slower connections.
64659      Branch: perl
64660            ! lib/Test/Harness.pm
64661 ____________________________________________________________________________
64662 [ 20022] By: jhi                                   on 2003/07/06  07:26:52
64663         Log: Subject: [PATCH] ExtUtils::MakeMaker 6.10_07
64664              From: Michael G Schwern <schwern@pobox.com>
64665              Date: Sat, 5 Jul 2003 16:59:49 -0700
64666              Message-ID: <20030705235949.GB3485@windhund.schwern.org>
64667      Branch: perl
64668            ! lib/ExtUtils/Changes lib/ExtUtils/META.yml
64669            ! lib/ExtUtils/MM_Unix.pm lib/ExtUtils/MM_VMS.pm
64670            ! lib/ExtUtils/MM_Win32.pm lib/ExtUtils/MakeMaker/FAQ.pod
64671            ! lib/ExtUtils/t/Command.t
64672 ____________________________________________________________________________
64673 [ 20021] By: jhi                                   on 2003/07/06  07:19:17
64674         Log: Reintroduce changes #19723 and #19723 that were not
64675              in Net::Ping 2.31; needed for Windows.
64676      Branch: perl
64677            ! lib/Net/Ping/t/250_ping_hires.t lib/Net/Ping/t/450_service.t
64678 ____________________________________________________________________________
64679 [ 20020] By: jhi                                   on 2003/07/05  19:12:21
64680         Log: Upgrade to Digest::MD5 2.25.
64681      Branch: perl
64682            + ext/Digest/MD5/t/clone.t
64683            ! MANIFEST ext/Digest/MD5/Changes ext/Digest/MD5/MD5.pm
64684            ! ext/Digest/MD5/MD5.xs ext/Digest/MD5/t/badfile.t
64685            ! ext/Digest/MD5/t/files.t
64686 ____________________________________________________________________________
64687 [ 20019] By: jhi                                   on 2003/07/05  18:40:51
64688         Log: Make a read from a write-only fh to set errno
64689              (found by Gisle)
64690      Branch: perl
64691            ! perlio.c
64692 ____________________________________________________________________________
64693 [ 20018] By: jhi                                   on 2003/07/05  18:05:19
64694         Log: Add PerlIOBuf_close to makedef.pl as pointed out by
64695              Vadim Konovalov; add also PerlIOBuf_dup; sort and remove
64696              duplicates.
64697      Branch: perl
64698            ! makedef.pl
64699 ____________________________________________________________________________
64700 [ 20017] By: jhi                                   on 2003/07/05  17:47:47
64701         Log: Subject: [PATCH] fix for ext/threads/t/problems.t failures
64702              From: Dave Mitchell <davem@fdgroup.com>
64703              Date: Sat, 5 Jul 2003 19:12:51 +0100
64704              Message-ID: <20030705181251.GA14502@fdgroup.com>
64705      Branch: perl
64706            ! ext/threads/t/problems.t
64707 ____________________________________________________________________________
64708 [ 20016] By: jhi                                   on 2003/07/05  17:36:34
64709         Log: OpenBSD sometimes gets -0, probably due to fp fuzziness..
64710      Branch: perl
64711            ! lib/Benchmark.t
64712 ____________________________________________________________________________
64713 [ 20012] By: jhi                                   on 2003/07/05  13:46:05
64714         Log: Be explicit about the $0 pain in Linux 2.2.
64715      Branch: perl
64716            ! pod/perlvar.pod
64717 ____________________________________________________________________________
64718 [ 20010] By: rgs                                   on 2003/07/05  12:06:41
64719         Log: Comment out some debugging output in Math::BigInt, that
64720              causes confusion in t/TEST when running Math/BigInt/t/bare_mbi.t.
64721      Branch: perl
64722            ! lib/Math/BigInt.pm
64723 ____________________________________________________________________________
64724 [ 20009] By: jhi                                   on 2003/07/05  10:56:55
64725         Log: The logic for additional randomisation for 64-bit UV
64726              cases was wrong.
64727      Branch: perl
64728            ! perl.c
64729 ____________________________________________________________________________
64730 [ 20008] By: jhi                                   on 2003/07/05  09:10:46
64731         Log: IIRC gcc would complain about if (s = ...).
64732      Branch: perl
64733            ! perl.c
64734 ____________________________________________________________________________
64735 [ 20007] By: jhi                                   on 2003/07/05  09:09:44
64736         Log: Allow $ENV{PERL_HASH_SEED_DEBUG} to work even under taint;
64737              since CGI scripts are (should be) run under -T, being able
64738              to show the HASH_SEED in case of problems is good.
64739              The $ENV{PERL_HASH_SEED} is still ignored under taint.
64740      Branch: perl
64741            ! perl.c
64742 ____________________________________________________________________________
64743 [ 20006] By: jhi                                   on 2003/07/05  07:56:56
64744         Log: Subject: [PATCH] MM_VMS.pm -- fix xs installation
64745              From: "Craig A. Berry" <craigberry@mac.com>
64746              Date: Sat, 05 Jul 2003 00:38:28 -0500
64747              Message-ID: <3F066454.90003@mac.com>
64748      Branch: perl
64749            ! lib/ExtUtils/MM_VMS.pm
64750 ____________________________________________________________________________
64751 [ 20004] By: jhi                                   on 2003/07/05  07:47:02
64752         Log: Subject: [PATCH] dump.c -Wformat; Re: maint @ 19975, maint @ 19997
64753              From: Robin Barker <Robin.Barker@npl.co.uk>
64754              Date: Fri, 4 Jul 2003 19:15:01 +0100
64755              Message-ID: <533D273D4014D411AB1D00062938C4D9040465BD@hotel.npl.co.uk>
64756      Branch: perl
64757            ! dump.c
64758 ____________________________________________________________________________
64759 [ 20003] By: rgs                                   on 2003/07/05  07:45:16
64760         Log: Allow to create more than one Shell object :
64761              Subject: [patch] Shell.pm fix
64762              From: Stéphane Payrard <stef@payrard.net>
64763              Date: Sat, 5 Jul 2003 01:16:50 +0200
64764              Message-ID: <20030704231650.GA19701@stefp.dyndns.org>
64765      Branch: perl
64766            ! lib/Shell.pm
64767 ____________________________________________________________________________
64768 [ 20002] By: rgs                                   on 2003/07/04  21:49:05
64769         Log: Author list update (to be continued...)
64770      Branch: perl
64771            ! AUTHORS
64772 ____________________________________________________________________________
64773 [ 20001] By: rgs                                   on 2003/07/04  21:42:12
64774         Log: Add a new test target in the makefile, test_harness_notty.
64775              It's like test_harness, but sets HARNESS_NOTTY=1 to make
64776              Test::Harness' output less blinking.
64777      Branch: perl
64778            ! Makefile.SH
64779 ____________________________________________________________________________
64780 [ 20000] By: rgs                                   on 2003/07/04  20:58:05
64781         Log: Upgrade to Math::BigInt v1.65, Math::BigRat v0.10,
64782              and bignum v0.14.
64783      Branch: perl
64784            + lib/Math/BigInt/t/biglog.t lib/Math/BigInt/t/req_mbf0.t
64785            + lib/Math/BigInt/t/req_mbf1.t lib/Math/BigInt/t/req_mbfa.t
64786            + lib/Math/BigInt/t/req_mbfi.t lib/Math/BigInt/t/req_mbfn.t
64787            + lib/Math/BigInt/t/req_mbfw.t lib/Math/BigInt/t/trap.t
64788            + lib/Math/BigInt/t/use_mbfw.t lib/Math/BigRat/t/bigratup.t
64789            + lib/Math/BigRat/t/requirer.t lib/Math/BigRat/t/trap.t
64790            ! MANIFEST lib/Math/BigFloat.pm lib/Math/BigInt.pm
64791            ! lib/Math/BigInt/Calc.pm lib/Math/BigInt/t/bare_mbf.t
64792            ! lib/Math/BigInt/t/bare_mbi.t lib/Math/BigInt/t/bare_mif.t
64793            ! lib/Math/BigInt/t/bigfltpm.inc lib/Math/BigInt/t/bigfltpm.t
64794            ! lib/Math/BigInt/t/bigintc.t lib/Math/BigInt/t/bigintpm.inc
64795            ! lib/Math/BigInt/t/bigintpm.t lib/Math/BigInt/t/bigints.t
64796            ! lib/Math/BigInt/t/config.t lib/Math/BigInt/t/inf_nan.t
64797            ! lib/Math/BigInt/t/mbi_rand.t lib/Math/BigInt/t/mbimbf.inc
64798            ! lib/Math/BigInt/t/mbimbf.t lib/Math/BigInt/t/require.t
64799            ! lib/Math/BigInt/t/sub_mbf.t lib/Math/BigInt/t/sub_mbi.t
64800            ! lib/Math/BigInt/t/sub_mif.t lib/Math/BigInt/t/upgrade.inc
64801            ! lib/Math/BigInt/t/upgrade.t lib/Math/BigInt/t/with_sub.t
64802            ! lib/Math/BigRat.pm lib/Math/BigRat/t/bigrat.t
64803            ! lib/Math/BigRat/t/bigratpm.inc lib/Math/BigRat/t/bigratpm.t
64804            ! lib/bigint.pm lib/bignum.pm lib/bignum/t/bigint.t
64805            ! lib/bignum/t/bignum.t lib/bignum/t/bigrat.t
64806            ! lib/bignum/t/biinfnan.t lib/bignum/t/bninfnan.t
64807            ! lib/bignum/t/brinfnan.t lib/bigrat.pm
64808            ! t/lib/Math/BigFloat/Subclass.pm t/lib/Math/BigInt/BareCalc.pm
64809            ! t/lib/Math/BigInt/Subclass.pm
64810 ____________________________________________________________________________
64811 [ 19999] By: rgs                                   on 2003/07/04  19:39:01
64812         Log: Macro reorganization in the Makefile, so that $(LDLIBPTH) always
64813              appears just before the name of the command to be run. See
64814
64815              Subject: Re: PERL_SKIP_TTY_TEST fix
64816              From: Alexey Tourbin <at@altlinux.ru>
64817              Date: Fri, 4 Jul 2003 17:25:34 +0400
64818              Message-ID: <20030704132534.GC1531@julia.office.altlinux.ru>
64819      Branch: perl
64820            ! Makefile.SH
64821 ____________________________________________________________________________
64822 [ 19998] By: rgs                                   on 2003/07/04  19:31:33
64823         Log: Fix non-numeric $VERSION.
64824      Branch: perl
64825            ! lib/Math/BigInt.pm
64826 ____________________________________________________________________________
64827 [ 19995] By: jhi                                   on 2003/07/04  14:36:56
64828         Log: According to Tels our M::BI is _better_ than the 1.64 in CPAN.
64829      Branch: perl
64830            ! lib/Math/BigInt.pm
64831 ____________________________________________________________________________
64832 [ 19994] By: jhi                                   on 2003/07/04  14:36:17
64833         Log: More $0 sad tales.
64834      Branch: perl
64835            ! pod/perlvar.pod
64836 ____________________________________________________________________________
64837 [ 19993] By: jhi                                   on 2003/07/04  14:34:40
64838         Log: Oops.
64839      Branch: perl
64840            ! ext/Digest/MD5/MD5.xs ext/Digest/MD5/t/files.t
64841 ____________________________________________________________________________
64842 [ 19990] By: jhi                                   on 2003/07/04  13:50:29
64843         Log: Upgrade to PodParser 1.23; but do not update
64844              t/pod/find.t or t/pod/testp2pt.pl since the
64845              first one does not work at all under core,
64846              and the second change would drop MacOS Classic
64847              portability tweaks introduced by change #18669.
64848      Branch: perl
64849            ! lib/Pod/Find.pm lib/Pod/Usage.pm
64850 ____________________________________________________________________________
64851 [ 19989] By: jhi                                   on 2003/07/04  13:20:51
64852         Log: Upgrade to Text::Balanced 1.94.
64853      Branch: perl
64854            ! lib/Text/Balanced.pm lib/Text/Balanced/Changes
64855            ! lib/Text/Balanced/README lib/Text/Balanced/t/extcbk.t
64856            ! lib/Text/Balanced/t/extvar.t lib/Text/Balanced/t/gentag.t
64857 ____________________________________________________________________________
64858 [ 19988] By: jhi                                   on 2003/07/04  13:17:22
64859         Log: Upgrade to Net::Ping 2.31.
64860      Branch: perl
64861            ! lib/Net/Ping.pm lib/Net/Ping/Changes
64862            ! lib/Net/Ping/t/250_ping_hires.t
64863            ! lib/Net/Ping/t/300_ping_stream.t lib/Net/Ping/t/450_service.t
64864 ____________________________________________________________________________
64865 [ 19987] By: jhi                                   on 2003/07/04  13:09:04
64866         Log: Upgrade to Locale::Maketext 1.06.
64867      Branch: perl
64868            + lib/Locale/Maketext/Guts.pm lib/Locale/Maketext/GutsLoader.pm
64869            + lib/Locale/Maketext/t/90utf8.t
64870            ! MANIFEST lib/Locale/Maketext.pm lib/Locale/Maketext/ChangeLog
64871 ____________________________________________________________________________
64872 [ 19986] By: jhi                                   on 2003/07/04  12:59:45
64873         Log: Upgrade to Digest::MD5 2.24, with few extra tweaks:
64874              (1) make the PATCHLEVEL logic as it is with List::Util
64875              (more portable to older Perls)
64876              (2) regen the MD5 checksums with ...
64877              (3) ... the Mac OS Classic checksums generated via MacRoman
64878              (just a guess)
64879              (4) Keep the core Makefile.PL.
64880      Branch: perl
64881            ! ext/Digest/MD5/Changes ext/Digest/MD5/MD5.pm
64882            ! ext/Digest/MD5/MD5.xs ext/Digest/MD5/t/files.t
64883 ____________________________________________________________________________
64884 [ 19985] By: jhi                                   on 2003/07/04  12:43:10
64885         Log: Upgrade to CPAN 1.71.
64886      Branch: perl
64887            ! lib/CPAN.pm
64888 ____________________________________________________________________________
64889 [ 19984] By: jhi                                   on 2003/07/04  12:39:20
64890         Log: Upgrade to CGI.pm 2.97.
64891      Branch: perl
64892            ! lib/CGI.pm lib/CGI/Carp.pm
64893 ____________________________________________________________________________
64894 [ 19982] By: jhi                                   on 2003/07/04  10:45:05
64895         Log: No energy now to figure out what is wrong with $0
64896              (or ps) in Tru64.  The test works fine when run from
64897              command line.
64898      Branch: perl
64899            ! ext/threads/t/join.t
64900 ____________________________________________________________________________
64901 [ 19981] By: jhi                                   on 2003/07/04  10:34:42
64902         Log: AUTHORS updates.
64903      Branch: perl
64904            ! AUTHORS
64905 ____________________________________________________________________________
64906 [ 19980] By: jhi                                   on 2003/07/04  08:40:51
64907         Log: line_t is U32, not I32.
64908      Branch: perl
64909            ! bytecode.pl
64910 ____________________________________________________________________________
64911 [ 19979] By: jhi                                   on 2003/07/04  08:33:32
64912         Log: Remove PL_earlytaint since the hash seed code
64913              can be delayed until perl_parse().
64914      Branch: perl
64915            ! dosish.h embedvar.h epoc/epocish.h mpeix/mpeixish.h
64916            ! os2/os2ish.h perl.c perl.h perlapi.h perlvars.h
64917            ! plan9/plan9ish.h unixish.h vms/vmsish.h
64918 ____________________________________________________________________________
64919 [ 19977] By: jhi                                   on 2003/07/04  04:56:41
64920         Log: $0 is pain.
64921      Branch: perl
64922            ! ext/threads/t/join.t
64923 ____________________________________________________________________________
64924 [ 19976] By: jhi                                   on 2003/07/04  04:48:37
64925         Log: Subject: [PATCH: perl@19956] switch vmspipe.com over to using local symbols instead of global
64926              From: PPrymmer@factset.com
64927              Date: Thu, 3 Jul 2003 23:59:51 -0400
64928              Message-ID: <OF4DF4AA68.1EF12116-ON85256D59.00120F5E-85256D59.0015F58D@factset.com>
64929      Branch: perl
64930            ! vms/vms.c vms/vmspipe.com
64931 ____________________________________________________________________________
64932 [ 19973] By: jhi                                   on 2003/07/03  21:34:03
64933         Log: Bump Time::HiRes version to 1.50.
64934      Branch: perl
64935            ! ext/Time/HiRes/HiRes.pm
64936 ____________________________________________________________________________
64937 [ 19972] By: jhi                                   on 2003/07/03  21:33:10
64938         Log: Subject: [PATCH] installperl -n
64939              From: Slaven Rezic <slaven@rezic.de>
64940              Date: Fri, 4 Jul 2003 00:41:36 +0200 (CEST)
64941              Message-Id: <200307032241.h63Mfaka041281@vran.herceg.de>
64942      Branch: perl
64943            ! installperl
64944 ____________________________________________________________________________
64945 [ 19971] By: jhi                                   on 2003/07/03  21:31:47
64946         Log: Subject: [PATCH] t/op/magic.t on FreeBSD
64947              From: Slaven Rezic <slaven@rezic.de>
64948              Date: Fri, 4 Jul 2003 00:35:51 +0200 (CEST)
64949              Message-Id: <200307032235.h63MZpKY036791@vran.herceg.de>
64950      Branch: perl
64951            ! t/op/magic.t
64952 ____________________________________________________________________________
64953 [ 19969] By: jhi                                   on 2003/07/03  21:27:11
64954         Log: Ask Schwern.
64955      Branch: perl
64956            - Porting/Modules
64957            ! AUTHORS MANIFEST
64958 ____________________________________________________________________________
64959 [ 19967] By: jhi                                   on 2003/07/03  19:02:40
64960         Log: Add autarch and Time::Local to Modules.
64961      Branch: perl
64962            ! Porting/Modules
64963 ____________________________________________________________________________
64964 [ 19966] By: jhi                                   on 2003/07/03  18:59:44
64965         Log: Subject: Re: [PATCH] Bring Time::Local to 1.07
64966              From: Dave Rolsky <autarch@urth.org>
64967              Date: Thu, 3 Jul 2003 14:35:56 -0500 (CDT)
64968              Message-ID: <Pine.LNX.4.56.0307031435270.29915@urth.org>
64969      Branch: perl
64970            ! lib/Time/Local.pm
64971 ____________________________________________________________________________
64972 [ 19965] By: jhi                                   on 2003/07/03  18:58:25
64973         Log: Subject: [PATCH] Win32: fix WM_TIMER handling
64974              From: Mattia Barbon <mbarbon@dsi.unive.it>
64975              Date: Thu, 3 Jul 2003 16:05:23 +0200 (ora legale Europa occidentale)
64976              Message-ID: <Mahogany-0.64.2-1016-20030703-160523.00@rbnet.it>
64977      Branch: perl
64978            ! win32/win32.c
64979 ____________________________________________________________________________
64980 [ 19964] By: jhi                                   on 2003/07/03  18:56:26
64981         Log: Subject: Re: randomly untainting?
64982              From: Rafael Garcia-Suarez <rgarciasuarez@free.fr>
64983              Date: Thu, 3 Jul 2003 17:35:09 +0200
64984              Message-Id: <20030703173509.0c007f0f.rgarciasuarez@free.fr>
64985      Branch: perl
64986            ! t/TestInit.pm
64987 ____________________________________________________________________________
64988 [ 19963] By: jhi                                   on 2003/07/03  18:55:37
64989         Log: Revert #19957 as requested by Rafael.
64990      Branch: perl
64991            ! ext/List/Util/t/tainted.t
64992 ____________________________________________________________________________
64993 [ 19962] By: jhi                                   on 2003/07/03  18:54:09
64994         Log: Add at least meager beginnings of assertion checks for
64995              the UTF-8 length/pos cache.  It's not as full as I would
64996              like since the exact behaviour of the second half of the
64997              cache, used in substr(), eludes me right now.
64998      Branch: perl
64999            ! sv.c
65000 ____________________________________________________________________________
65001 [ 19961] By: jhi                                   on 2003/07/03  13:57:47
65002         Log: Extra light testing for the UTF-8 cache
65003              (that it isn't broken, not that it helps).
65004      Branch: perl
65005            ! t/op/length.t
65006 ____________________________________________________________________________
65007 [ 19957] By: jhi                                   on 2003/07/03  12:01:25
65008         Log: Subject: Re: randomly untainting?
65009              From: Rafael Garcia-Suarez <rgarciasuarez@free.fr>
65010              Date: Thu, 3 Jul 2003 14:58:18 +0200
65011              Message-Id: <20030703145818.5bdd2873.rgarciasuarez@free.fr>
65012              (plus extra debug printing)
65013      Branch: perl
65014            ! ext/List/Util/t/tainted.t
65015 ____________________________________________________________________________
65016 [ 19954] By: jhi                                   on 2003/07/03  11:10:21
65017         Log: Subject: Re: maint @ 19923
65018              From: "Vadim Konovalov" <vkonovalov@peterstar.ru>
65019              Date: Thu, 3 Jul 2003 15:57:55 +0400
65020              Message-ID: <048e01c3415b$da0fe510$7c5ec3d9@vad>
65021      Branch: perl
65022            ! wince/Makefile.ce wince/wince.c
65023 ____________________________________________________________________________
65024 [ 19952] By: jhi                                   on 2003/07/03  10:56:45
65025         Log: Tiny tweak to perlartistic from Robin Barker.
65026      Branch: perl
65027            ! pod/perlartistic.pod
65028 ____________________________________________________________________________
65029 [ 19950] By: jhi                                   on 2003/07/03  07:46:45
65030         Log: Mention Modules in AUTHORS.
65031      Branch: perl
65032            ! AUTHORS
65033 ____________________________________________________________________________
65034 [ 19949] By: jhi                                   on 2003/07/03  06:58:01
65035         Log: No fancy binmode() if no perlio.
65036      Branch: perl
65037            ! ext/IO/lib/IO/t/io_sock.t
65038 ____________________________________________________________________________
65039 [ 19948] By: jhi                                   on 2003/07/03  06:55:12
65040         Log: Underline the fact that XSLoader is not DynaLoader
65041              ([perl #21974] dl_load_flags not honored by XSLoader)
65042      Branch: perl
65043            ! ext/DynaLoader/XSLoader_pm.PL
65044 ____________________________________________________________________________
65045 [ 19947] By: jhi                                   on 2003/07/03  06:35:29
65046         Log: Apply Schwern's suggested warning code from
65047              [perl #22209] Test::Harness::Straps vs. $Config{path_sep}
65048      Branch: perl
65049            ! lib/Test/Harness/Straps.pm
65050 ____________________________________________________________________________
65051 [ 19944] By: jhi                                   on 2003/07/03  06:30:11
65052         Log: Subject: [PATCH] "without parens" vs "without parentheses"
65053              From: Iain Truskett <spoon@cpan.org>
65054              Date: Thu, 3 Jul 2003 12:40:42 +1000
65055              Message-ID: <20030703024042.GI12380@ouroboros.anu.edu.au>
65056      Branch: perl
65057            ! t/lib/warnings/toke toke.c
65058 ____________________________________________________________________________
65059 [ 19943] By: jhi                                   on 2003/07/03  06:27:18
65060         Log: Subject: [PATCH] Re: ext/List/Util/t/weak.t panic
65061              From: Dave Mitchell <davem@fdgroup.com>
65062              Date: Thu, 3 Jul 2003 01:32:11 +0100
65063              Message-ID: <20030703003211.GB3747@fdgroup.com>
65064      Branch: perl
65065            ! mg.c sv.c
65066 ____________________________________________________________________________
65067 [ 19942] By: jhi                                   on 2003/07/03  06:25:30
65068         Log: Nicer options for Porting/Modules.
65069      Branch: perl
65070            ! MANIFEST Porting/Modules
65071 ____________________________________________________________________________
65072 [ 19941] By: rgs                                   on 2003/07/02  21:38:19
65073         Log: Minor test adjustments :
65074              - test name correction in op/concat.t by Yitzchak Scott-Thoennes
65075              - prototypes added to some public functions in t/test.pl,
65076              as suggested by Enache Adrian
65077      Branch: perl
65078            ! t/op/concat.t t/test.pl
65079 ____________________________________________________________________________
65080 [ 19940] By: rgs                                   on 2003/07/02  20:58:19
65081         Log: Skip a socketpair test on SCO OSR
65082      Branch: perl
65083            ! ext/Socket/socketpair.t
65084 ____________________________________________________________________________
65085 [ 19939] By: jhi                                   on 2003/07/02  20:10:47
65086         Log: Subject: [PATCH] various Deparse fixes
65087              From: Dave Mitchell <davem@fdgroup.com>
65088              Date: Wed, 2 Jul 2003 18:10:45 +0100
65089              Message-ID: <20030702171045.GF2137@fdgroup.com>
65090      Branch: perl
65091            ! ext/B/B/Concise.pm ext/B/B/Debug.pm ext/B/B/Deparse.pm
65092            ! ext/B/defsubs_h.PL t/TEST t/op/ord.t
65093 ____________________________________________________________________________
65094 [ 19935] By: jhi                                   on 2003/07/02  20:01:06
65095         Log: It would seem that in Linux 2.2 there is no way
65096              we can do the right thing to make ps(1) see $0
65097              our way.  Also amend the $0 documentation a bit.
65098      Branch: perl
65099            ! pod/perlvar.pod t/op/magic.t
65100 ____________________________________________________________________________
65101 [ 19934] By: jhi                                   on 2003/07/02  19:39:11
65102         Log: Subject: [PATCH] line numbers are given % 64k
65103              From: James Jurach <muaddib@erf.net>
65104              Date: Wed, 2 Jul 2003 13:31:05 -0500
65105              Message-ID: <20030702183105.GA4837@lebowski>
65106      Branch: perl
65107            ! bytecode.pl ext/B/B/Asmdata.pm ext/ByteLoader/byterun.c
65108            ! handy.h pp_ctl.c scope.h
65109 ____________________________________________________________________________
65110 [ 19933] By: jhi                                   on 2003/07/02  14:55:49
65111         Log: Subject: Re: maint @ 19923
65112              From: Ronald J Kimball <rjk@linguist.thayer.dartmouth.edu>
65113              Date: Wed, 2 Jul 2003 11:43:05 -0400
65114              Message-ID: <20030702154304.GD206089@linguist.thayer.dartmouth.edu>
65115      Branch: perl
65116            ! pod/perlfunc.pod
65117 ____________________________________________________________________________
65118 [ 19932] By: jhi                                   on 2003/07/02  14:29:42
65119         Log: Subject: Re: maint @ 19923
65120              From: Jim Cromie <jcromie@divsol.com>
65121              Date: Wed, 02 Jul 2003 05:35:06 -0600
65122              Message-ID: <3F02C36A.9030704@divsol.com>
65123      Branch: perl
65124            ! pod/perlfunc.pod
65125 ____________________________________________________________________________
65126 [ 19931] By: jhi                                   on 2003/07/02  11:34:49
65127         Log: Fix for [perl #22759 insufficient format string checking];
65128              using ewix makes no sense, assuming evix was intended,
65129              no old tests fail; add the test case.
65130      Branch: perl
65131            ! sv.c t/op/sprintf.t
65132 ____________________________________________________________________________
65133 [ 19929] By: jhi                                   on 2003/07/02  09:13:33
65134         Log: Better links.
65135      Branch: perl
65136            ! pod/perlipc.pod pod/perlrun.pod
65137 ____________________________________________________________________________
65138 [ 19928] By: jhi                                   on 2003/07/02  08:58:26
65139         Log: Darwin: -Dprefix=$HOME/Perl tried to install to /Library.
65140      Branch: perl
65141            ! hints/darwin.sh
65142 ____________________________________________________________________________
65143 [ 19927] By: jhi                                   on 2003/07/02  08:48:00
65144         Log: ...and getting the comma right, too.
65145      Branch: perl
65146            ! t/op/magic.t
65147 ____________________________________________________________________________
65148 [ 19926] By: jhi                                   on 2003/07/02  08:46:18
65149         Log: Getting the whitespace right.
65150      Branch: perl
65151            ! t/op/magic.t
65152 ____________________________________________________________________________
65153 [ 19925] By: jhi                                   on 2003/07/02  08:40:36
65154         Log: FreeBSD $0 dance.
65155      Branch: perl
65156            ! pod/perlvar.pod t/op/magic.t
65157 ____________________________________________________________________________
65158 [ 19924] By: jhi                                   on 2003/07/02  08:17:31
65159         Log: Fix from Enache Adrian for the magic.t failure in
65160              FreeBSD: setproctitle() cannot get rid of the " (perl)".
65161      Branch: perl
65162            ! t/op/magic.t
65163 ____________________________________________________________________________
65164 [ 19921] By: jhi                                   on 2003/07/02  05:26:33
65165         Log: VMS: with this, 100% make test in Compaq C V6.5-001
65166              on OpenVMS Alpha V7.3-1, from Craig Berry.
65167      Branch: perl
65168            ! configure.com ext/Devel/DProf/DProf.t t/op/magic.t
65169 ____________________________________________________________________________
65170 [ 19920] By: jhi                                   on 2003/07/02  05:21:23
65171         Log: Move the libgcc.a hack into a section for pre-1.6 NetBSD releases.
65172              The latest releases of NetBSD don't require the hack.  From
65173              Johnny Lam.
65174      Branch: perl
65175            ! hints/netbsd.sh
65176 ____________________________________________________________________________
65177 [ 19918] By: jhi                                   on 2003/07/01  20:02:33
65178         Log: Add a new utility, Porting/Modules.
65179      Branch: perl
65180            + Porting/Modules
65181            ! MANIFEST
65182 ____________________________________________________________________________
65183 [ 19917] By: jhi                                   on 2003/07/01  17:00:02
65184         Log: Subject: [PATCH] long C<=item>s in pod/perlunicode.pod
65185              From: Robin Barker <Robin.Barker@npl.co.uk>
65186              Date: Tue, 1 Jul 2003 18:21:34 +0100
65187              Message-ID: <533D273D4014D411AB1D00062938C4D9040465A9@hotel.npl.co.uk>
65188
65189              Subject:  [PATCH] long C<=item>s in lib/CGI.pm
65190              From: Robin Barker <Robin.Barker@npl.co.uk>
65191              Message-ID: <533D273D4014D411AB1D00062938C4D9040465AA@hotel.npl.co.uk>
65192              Date: Tue, 1 Jul 2003 18:25:17 +0100
65193
65194              Subject: [PATCH] long <=item>s  in lib/ExtUtils/MakeMaker/FAQ.pod
65195              From: Robin Barker <Robin.Barker@npl.co.uk>
65196              Date: Tue, 1 Jul 2003 18:29:09 +0100
65197              Message-ID: <533D273D4014D411AB1D00062938C4D9040465AB@hotel.npl.co.uk>
65198      Branch: perl
65199            ! lib/CGI.pm lib/ExtUtils/MakeMaker/FAQ.pod pod/perlunicode.pod
65200 ____________________________________________________________________________
65201 [ 19916] By: jhi                                   on 2003/07/01  16:51:31
65202         Log: Subject: [PATCH] B:: fixes + 'When were CVOPs gone ?'
65203              From: Enache Adrian <enache@rdslink.ro>
65204              Date: Tue, 1 Jul 2003 19:51:25 +0300
65205              Message-ID: <20030701165125.GA1521@ratsnest.hole>
65206      Branch: perl
65207            ! ext/B/B.pm ext/B/B.xs ext/B/B/Debug.pm ext/B/defsubs_h.PL
65208            ! ext/B/typemap t/op/magic.t
65209 ____________________________________________________________________________
65210 [ 19915] By: jhi                                   on 2003/07/01  16:22:09
65211         Log: Upgrade to Unicode::Normalize 0.23.
65212      Branch: perl
65213            ! ext/Unicode/Normalize/Changes
65214            ! ext/Unicode/Normalize/Normalize.pm
65215            ! ext/Unicode/Normalize/Normalize.xs
65216 ____________________________________________________________________________
65217 [ 19914] By: jhi                                   on 2003/07/01  13:08:44
65218         Log: A naked values() caused shuffling of lib/Config.pm,
65219              which in turn caused unnecessary rebuilds.
65220      Branch: perl
65221            ! configpm
65222 ____________________________________________________________________________
65223 [ 19913] By: jhi                                   on 2003/07/01  13:01:10
65224         Log: Even more :utf8 socket testing, now in both directions.
65225      Branch: perl
65226            ! ext/IO/lib/IO/t/io_sock.t
65227 ____________________________________________________________________________
65228 [ 19912] By: jhi                                   on 2003/07/01  12:44:32
65229         Log: One more test (does binmode()ing a socket succeed)
65230              and add -w.
65231      Branch: perl
65232            ! ext/IO/lib/IO/t/io_sock.t
65233 ____________________________________________________________________________
65234 [ 19911] By: jhi                                   on 2003/07/01  12:38:13
65235         Log: Tweak an existing IO test to test also the change #19910.
65236      Branch: perl
65237            ! ext/IO/lib/IO/t/io_sock.t
65238 ____________________________________________________________________________
65239 [ 19910] By: jhi                                   on 2003/07/01  11:18:27
65240         Log: Integrate from perlio:
65241              [ 19909]
65242              binmode() should affect IoOFP() as well as IoIFP() if it is
65243              distinct (e.g. sockets).
65244      Branch: perl
65245           !> pp_sys.c
65246 ____________________________________________________________________________
65247 [ 19906] By: jhi                                   on 2003/07/01  08:03:17
65248         Log: Do the "aligned contiguous" check only if the arguments
65249              look like aligned; re-introduce the "traditional contiguous"
65250              checks with OS/2 special quirks and all.
65251      Branch: perl
65252            ! perl.c
65253 ____________________________________________________________________________
65254 [ 19903] By: jhi                                   on 2003/07/01  06:22:12
65255         Log: Switch on PERL_IMPLICIT_SYS, not on Win32.
65256      Branch: perl
65257            ! perl.c
65258 ____________________________________________________________________________
65259 [ 19902] By: jhi                                   on 2003/07/01  06:20:48
65260         Log: Regen Glossary et al.
65261      Branch: perl
65262            ! Porting/Glossary Porting/config.sh Porting/config_H
65263 ____________________________________________________________________________
65264 [ 19900] By: jhi                                   on 2003/07/01  05:56:38
65265         Log: Regen Configure.
65266      Branch: perl
65267            ! Configure
65268 ____________________________________________________________________________
65269 [ 19899] By: jhi                                   on 2003/07/01  05:56:14
65270         Log: More nanosleep removal.
65271      Branch: perl
65272            ! Cross/config.sh-arm-linux NetWare/config_H.wc epoc/config.sh
65273            ! hints/vos.sh win32/config.gc win32/config.vc win32/config.vc64
65274            ! win32/config_H.bc win32/config_H.gc win32/config_H.vc
65275            ! win32/config_H.vc64 wince/config.ce wince/config_H.ce
65276 ____________________________________________________________________________
65277 [ 19898] By: jhi                                   on 2003/07/01  05:54:58
65278         Log: Rework Time::HiRes not to need HAS_NANOSLEEP from Configure.
65279      Branch: perl
65280            + ext/Time/HiRes/hints/dec_osf.pl
65281            ! MANIFEST ext/Time/HiRes/HiRes.xs ext/Time/HiRes/Makefile.PL
65282            ! ext/Time/HiRes/hints/sco.pl
65283 ____________________________________________________________________________
65284 [ 19897] By: jhi                                   on 2003/07/01  05:04:50
65285         Log: Subject: Re: Subject: Problems: 5.8.1, Solaris, Configure, sched_yield(), -lrt & -lposix4
65286              From: Alan Burlison <Alan.Burlison@sun.com>
65287              Date: Tue, 01 Jul 2003 00:03:24 +0100
65288              Message-ID: <3F00C1BC.3020103@sun.com>
65289      Branch: perl
65290            ! Configure Makefile.SH config_h.SH configure.com
65291            ! hints/solaris_2.sh perl.h uconfig.h uconfig.sh
65292 ____________________________________________________________________________
65293 [ 19896] By: jhi                                   on 2003/06/30  20:20:54
65294         Log: Integrate #19892, #19895 from perlio to compile and avoid
65295              crashing on Win32.
65296      Branch: perl
65297           !> perl.c
65298 ____________________________________________________________________________
65299 [ 19890] By: jhi                                   on 2003/06/30  08:41:51
65300         Log: int is not UV.
65301      Branch: perl
65302            ! perl.c
65303 ____________________________________________________________________________
65304 [ 19889] By: jhi                                   on 2003/06/30  08:36:38
65305         Log: The 'contiguous' test for argv[], envp[] was bogus
65306              since those need not be in memory end-to-end, e.g.
65307              in Tru64 they are aligned by eight.  Loosen the test
65308              so that 'contiguousness' is fulfilled if the elements
65309              are within PTRSIZE alignment.  This makes Tru64 to pass
65310              the join.t, too.
65311      Branch: perl
65312            ! ext/threads/t/join.t mg.c perl.c
65313 ____________________________________________________________________________
65314 [ 19888] By: jhi                                   on 2003/06/30  07:24:18
65315         Log: $0 doc tweakage.
65316      Branch: perl
65317            ! pod/perlvar.pod
65318 ____________________________________________________________________________
65319 [ 19887] By: jhi                                   on 2003/06/30  07:20:58
65320         Log: $0 test tweaks from Andreas.
65321      Branch: perl
65322            ! ext/threads/t/join.t t/op/magic.t
65323 ____________________________________________________________________________
65324 [ 19886] By: rgs                                   on 2003/06/29  19:18:43
65325         Log: Misc Pod Nits.
65326      Branch: perl
65327            ! ext/B/B.pm pod/perlrun.pod
65328 ____________________________________________________________________________
65329 [ 19885] By: jhi                                   on 2003/06/29  15:49:52
65330         Log: Fix a faulty alias.
65331      Branch: perl
65332            ! ext/Encode/lib/Encode/Alias.pm
65333 ____________________________________________________________________________
65334 [ 19884] By: jhi                                   on 2003/06/29  15:41:05
65335         Log: The joy of $0.  Undoing the #16399 makes Andreas'
65336              tests (see [perl #22811]) pass (yes, padding with space    instead
65337              of nul makes no sense, but that seems to work, maybe Linux does
65338              some deep magic in ps(1)?); moving the PL_origalen computation
65339              earlier makes also the threaded-first case fully pass.
65340
65341              But in general modifying the argv[] is very non-portable.
65342              (e.g. in Tru64 it seems to be limited to the size of the
65343              original argv[0] since the argv[] are not contiguous?)
65344
65345              Everybody should just have setproctitle().
65346      Branch: perl
65347            ! mg.c perl.c pod/perlvar.pod
65348 ____________________________________________________________________________
65349 [ 19883] By: jhi                                   on 2003/06/29  13:47:36
65350         Log: More on the macro debugging and expansion.
65351      Branch: perl
65352            ! pod/perlhack.pod
65353 ____________________________________________________________________________
65354 [ 19882] By: rgs                                   on 2003/06/29  13:17:09
65355         Log: Perl_doing_taint must be public, for programs that embed perl
65356      Branch: perl
65357            ! embed.fnc embed.h global.sym
65358 ____________________________________________________________________________
65359 [ 19881] By: jhi                                   on 2003/06/29  10:17:28
65360         Log: More coffee...
65361      Branch: perl
65362            ! lib/Test/Harness.pm
65363 ____________________________________________________________________________
65364 [ 19880] By: jhi                                   on 2003/06/29  09:48:50
65365         Log: argc, argv.
65366      Branch: perl
65367            ! perl.h
65368 ____________________________________________________________________________
65369 [ 19879] By: jhi                                   on 2003/06/29  09:34:47
65370         Log: Another spot where a zero $test{$max} can make things go boom.
65371      Branch: perl
65372            ! lib/Test/Harness.pm
65373 ____________________________________________________________________________
65374 [ 19878] By: jhi                                   on 2003/06/29  09:28:58
65375         Log: Move the PL_earlytaint initialization to the PERL_SYS_INIT()
65376              as per suggestion from Sarathy.
65377      Branch: perl
65378            ! dosish.h epoc/epocish.h miniperlmain.c mpeix/mpeixish.h
65379            ! os2/os2ish.h perl.h plan9/plan9ish.h unixish.h vms/vmsish.h
65380 ____________________________________________________________________________
65381 [ 19877] By: jhi                                   on 2003/06/28  18:28:01
65382         Log: The #19842 is no more needed thanks to #19876,
65383              and the #19842 was wrong anyway (it affected
65384              only the threaded case.)
65385      Branch: perl
65386            ! hints/dec_osf.sh
65387 ____________________________________________________________________________
65388 [ 19876] By: jhi                                   on 2003/06/28  18:24:46
65389         Log: Subject: Re: your malloc patches
65390              From: Ilya Zakharevich <ilya@Math.Berkeley.EDU>
65391              Date: Fri, 27 Jun 2003 06:54:06 -0700
65392              Message-ID: <20030627135406.GA8914@math.berkeley.edu>
65393
65394              More malloc patches: now they seem to work even in Tru64.
65395      Branch: perl
65396            ! malloc.c
65397 ____________________________________________________________________________
65398 [ 19875] By: jhi                                   on 2003/06/28  18:09:30
65399         Log: Duh.
65400      Branch: perl
65401            ! perl.h
65402 ____________________________________________________________________________
65403 [ 19874] By: jhi                                   on 2003/06/28  17:30:52
65404         Log: Retract #19867; the bug was really much simpler:
65405              the < max must be <= max instead.
65406      Branch: perl
65407            ! hv.c
65408 ____________________________________________________________________________
65409 [ 19873] By: rgs                                   on 2003/06/28  16:02:53
65410         Log: Using $1 without testing success of the regexp, bad.
65411      Branch: perl
65412            ! pod/perlretut.pod
65413 ____________________________________________________________________________
65414 [ 19872] By: rgs                                   on 2003/06/28  16:01:08
65415         Log: Some clarification about the current semantics of CHECK and
65416              INIT blocks. See bug [perl #22826].
65417      Branch: perl
65418            ! pod/perlmod.pod
65419 ____________________________________________________________________________
65420 [ 19871] By: rgs                                   on 2003/06/28  15:47:22
65421         Log: Subject: [Encode] pre-1.97 patches
65422              From: Dan Kogai <dankogai@dan.co.jp>
65423              Date: Sat, 28 Jun 2003 01:20:59 +0900
65424              Message-Id: <56D5BFEE-A8BB-11D7-9092-000393AE4244@dan.co.jp>
65425      Branch: perl
65426            ! ext/Encode/Changes ext/Encode/Encode.pm
65427            ! ext/Encode/lib/Encode/Guess.pm
65428 ____________________________________________________________________________
65429 [ 19870] By: rgs                                   on 2003/06/28  15:39:57
65430         Log: Two debugging patches.
65431              The first allows to hold symbolic switches in $^D
65432              and more generally fixes assignment to $^D. The
65433              second one improves the information given by -Dl.
65434
65435              Subject: [PATCH] allow $^D = "flags"
65436              From: Dave Mitchell <davem@fdgroup.com>
65437              Date: Fri, 27 Jun 2003 22:26:24 +0100
65438              Message-ID: <20030627212624.GB12887@fdgroup.com>
65439
65440              Subject: [PATCH] make -Dl show more scope info
65441              From: Dave Mitchell <davem@fdgroup.com>
65442              Date: Fri, 27 Jun 2003 23:00:36 +0100
65443              Message-ID: <20030627220036.GC12887@fdgroup.com>
65444      Branch: perl
65445            ! cop.h embed.fnc embed.h mg.c perl.c perl.h pod/perlvar.pod
65446            ! proto.h scope.h
65447 ____________________________________________________________________________
65448 [ 19869] By: rgs                                   on 2003/06/28  14:39:40
65449         Log: Fix test count, by Abe Timmerman.
65450      Branch: perl
65451            ! t/comp/require.t
65452 ____________________________________________________________________________
65453 [ 19867] By: jhi                                   on 2003/06/27  10:08:20
65454         Log: The two-for-loops is no more a valid way to walk through
65455              a hash (this was the reason the Hash/Util.t intermittently
65456              failed, the two-loop didn't find all the SVs of the HV).
65457      Branch: perl
65458            ! hv.c
65459 ____________________________________________________________________________
65460 [ 19866] By: jhi                                   on 2003/06/27  08:54:16
65461         Log: Some warnings about the (im)proper uses of the hash randomisation.
65462      Branch: perl
65463            ! pod/perlsec.pod
65464 ____________________________________________________________________________
65465 [ 19865] By: jhi                                   on 2003/06/27  08:40:45
65466         Log: atoi() doesn't cut the mustard if the PERL_HASH_SEED
65467              is larger than INT_MAX (atoi() returns -1 in that case).
65468      Branch: perl
65469            ! perl.c
65470 ____________________________________________________________________________
65471 [ 19864] By: jhi                                   on 2003/06/27  08:18:47
65472         Log: Use the PL_earlytaint.  (PL_earlytaint is a global,
65473              not per-interp, since perl_construct() is not passed
65474              the argc, argv, and therefore it can't set the per-interp
65475              PL_tainting.)
65476      Branch: perl
65477            ! perl.c perl.h
65478 ____________________________________________________________________________
65479 [ 19863] By: jhi                                   on 2003/06/27  08:15:11
65480         Log: Introduce (global) variable PL_earlytaint which
65481              is set very early in main(), before perl_parse()
65482              has been called and PL_tainting (or PL_taint_warn)
65483              might have been set.
65484      Branch: perl
65485            ! embed.fnc embedvar.h miniperlmain.c perl.c perl.h perlapi.h
65486            ! perlvars.h proto.h
65487 ____________________________________________________________________________
65488 [ 19862] By: jhi                                   on 2003/06/27  07:39:58
65489         Log: Make doing_taint() always available (though not
65490              part of the public API).
65491      Branch: perl
65492            ! embed.fnc embed.h perl.c proto.h
65493 ____________________________________________________________________________
65494 [ 19861] By: jhi                                   on 2003/06/27  05:30:03
65495         Log: Do not obey PERL_HASH_SEED or PERL_HASH_SEED_DEBUG
65496              if tainting-- but is this a good thing or a bad thing?
65497              (At least it makes debugging lib/Hash/Util.t harder,
65498              since it has, for no apparent good reason, -T: one must
65499              make a copy of it without the -T.)
65500      Branch: perl
65501            ! perl.c
65502 ____________________________________________________________________________
65503 [ 19860] By: jhi                                   on 2003/06/27  05:02:14
65504         Log: Subject: Re: Change 19854: Bite the bullet and apply the hash randomisation patch.
65505              From: Tim Bunce <Tim.Bunce@pobox.com>
65506              Date: Thu, 26 Jun 2003 10:53:22 +0100
65507              Message-ID: <20030626095322.GE97463@dansat.data-plan.com>
65508      Branch: perl
65509            ! INSTALL
65510 ____________________________________________________________________________
65511 [ 19859] By: jhi                                   on 2003/06/27  04:59:23
65512         Log: Hash/Util.t and Encode/t/Aliases.t seem to be having
65513              random failures.  To make these easier to reproduce,
65514              add a variable, PERL_HASH_SEED_DEBUG, to display the
65515              hash seed.  E.g. in Debian/x86 Linux 3.0 PERL_HASH_SEED
65516              of 82972356 makes the first one to fail.
65517      Branch: perl
65518            ! perl.c pod/perlrun.pod
65519 ____________________________________________________________________________
65520 [ 19858] By: rgs                                   on 2003/06/26  20:21:53
65521         Log: perlhack update, by Steve Grazzini
65522              about macro support in gdb and gcc.
65523      Branch: perl
65524            ! pod/perlhack.pod
65525 ____________________________________________________________________________
65526 [ 19854] By: jhi                                   on 2003/06/26  05:32:02
65527         Log: Bite the bullet and apply the hash randomisation patch.
65528              [perl #22371] Algorimic Complexity Attack on Perl 5.6.1, 5.8.0
65529      Branch: perl
65530            ! INSTALL embedvar.h ext/Data/Dumper/Dumper.pm
65531            ! ext/Data/Dumper/t/dumper.t hv.h intrpvar.h perl.c perl.h
65532            ! perlapi.h pod/perlfunc.pod pod/perlrun.pod pod/perlsec.pod
65533            ! sv.c
65534 ____________________________________________________________________________
65535 [ 19853] By: rgs                                   on 2003/06/25  19:35:02
65536         Log: Subject: Re: P and V
65537              From: "Philip Newton" <pnewton@gmx.de>
65538              Date: Wed, 25 Jun 2003 17:50:22 +0200
65539              Message-ID: <3EF9E0DE.4786.16A6869@localhost>
65540      Branch: perl
65541            ! lib/Thread/Semaphore.pm
65542 ____________________________________________________________________________
65543 [ 19852] By: rgs                                   on 2003/06/25  19:27:42
65544         Log: Enhance some macro robustness.
65545      Branch: perl
65546            ! opcode.h opcode.pl
65547 ____________________________________________________________________________
65548 [ 19851] By: rgs                                   on 2003/06/25  19:25:47
65549         Log: Fix [perl #21742] :
65550              require() should always be called in scalar context,
65551              even when it's the last statement in an eval("").
65552      Branch: perl
65553            ! pp_ctl.c t/comp/require.t
65554 ____________________________________________________________________________
65555 [ 19849] By: jhi                                   on 2003/06/24  17:32:37
65556         Log: Subject: [PATCH] Re: [perl #22719] ISA cache problem with blessed stash objects
65557              From: Dave Mitchell <davem@fdgroup.com>
65558              Date: Tue, 24 Jun 2003 13:16:18 +0100
65559              Message-ID: <20030624121618.GC22675@fdgroup.com>
65560      Branch: perl
65561            ! sv.c t/op/ref.t
65562 ____________________________________________________________________________
65563 [ 19848] By: merijn                                on 2003/06/24  08:06:57
65564         Log: Subject: [PATCH] lib/Perldoc.pm patch for Cygwin Bleadperl
65565              From: "Gerrit P. Haase" <gerrit@familiehaase.de>
65566              Date: Tue, 24 Jun 2003 11:00:34 +0200
65567              Message-ID: <186930306740.20030624110034@familiehaase.de>
65568      Branch: perl
65569            ! lib/Pod/Perldoc.pm
65570 ____________________________________________________________________________
65571 [ 19847] By: jhi                                   on 2003/06/24  04:52:42
65572         Log: Subject: [PATCH] version.pm up to date with CPAN
65573              From: John Peacock <jpeacock@rowman.com>
65574              Date: Mon, 23 Jun 2003 21:58:18 -0400
65575              Message-ID: <3EF7B03A.2060705@rowman.com>
65576      Branch: perl
65577            ! lib/version.pm lib/version.t universal.c
65578 ____________________________________________________________________________
65579 [ 19846] By: rgs                                   on 2003/06/23  20:52:26
65580         Log: Subject: [perlport.pod] code point of \cU
65581              From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
65582              Date: Tue, 24 Jun 2003 01:00:16 +0900
65583              Message-Id: <20030624004743.1237.BQW10602@nifty.com>
65584      Branch: perl
65585            ! pod/perlport.pod
65586 ____________________________________________________________________________
65587 [ 19845] By: jhi                                   on 2003/06/23  04:55:39
65588         Log: Test tweaks for VMS from Craig Berry.
65589      Branch: perl
65590            ! lib/strict.t lib/warnings.t
65591 ____________________________________________________________________________
65592 [ 19843] By: jhi                                   on 2003/06/22  17:00:10
65593         Log: Move the (pseudo)seed functio for (pseudo)random numbers to util.c.
65594      Branch: perl
65595            ! embed.fnc embed.h pp.c proto.h util.c
65596 ____________________________________________________________________________
65597 [ 19842] By: jhi                                   on 2003/06/22  16:44:16
65598         Log: Until the Perl malloc problems in Tru64 are fixed.
65599      Branch: perl
65600            ! hints/dec_osf.sh
65601 ____________________________________________________________________________
65602 [ 19841] By: jhi                                   on 2003/06/22  16:35:33
65603         Log: Subject: [PATCH] Re: Is it a Bug? ($c .= "5") . "6"
65604              From: Enache Adrian <enache@rdslink.ro>
65605              Date: Sat, 21 Jun 2003 03:19:31 +0300
65606              Message-ID: <20030621001931.GB1255@ratsnest.hole>
65607      Branch: perl
65608            ! op.c t/op/concat.t
65609 ____________________________________________________________________________
65610 [ 19840] By: jhi                                   on 2003/06/22  16:33:25
65611         Log: Subject: [perl #22753] overload::StrVal() fails for regexp refs
65612              From: "fergal@esatclear.ie (via RT)" <perlbug-followup@perl.org>
65613              Date: 21 Jun 2003 19:02:30 -0000
65614              Message-ID: <rt-22753-59662.14.6066295633041@rt.perl.org>
65615      Branch: perl
65616            ! lib/overload.pm lib/overload.t
65617 ____________________________________________________________________________
65618 [ 19839] By: jhi                                   on 2003/06/22  16:31:05
65619         Log: Subject: FileCache 1.03 broken on VMS -- possible patch
65620              From: "Craig A. Berry" <craigberry@mac.com>
65621              Date: Sat, 21 Jun 2003 10:31:59 -0500
65622              Message-ID: <3EF47A6F.9060904@mac.com>
65623      Branch: perl
65624            ! lib/FileCache.pm lib/FileCache/t/01open.t
65625            ! lib/FileCache/t/03append.t lib/FileCache/t/05override.t
65626 ____________________________________________________________________________
65627 [ 19838] By: jhi                                   on 2003/06/22  16:16:01
65628         Log: Debian fix from Brendan O'Dea:
65629              Adjust output to screen width.
65630              (adjusted to probe for the stty command)
65631      Branch: perl
65632            ! utils/dprofpp.PL
65633 ____________________________________________________________________________
65634 [ 19837] By: jhi                                   on 2003/06/22  15:56:45
65635         Log: Debian fix from Brendan O'Dea:
65636              Use a temporary directory to avoid symlink attacks.
65637              Specify -gstabs explicitly (not the default format for gcc 3.2).
65638      Branch: perl
65639            ! utils/c2ph.PL
65640 ____________________________________________________________________________
65641 [ 19836] By: jhi                                   on 2003/06/22  15:55:13
65642         Log: Debian fix from Brendan O'Dea:
65643              Bug#156284: the stucture used by pp_accept is too small to hold an
65644              IPv6 address.
65645      Branch: perl
65646            ! pp_sys.c
65647 ____________________________________________________________________________
65648 [ 19835] By: jhi                                   on 2003/06/22  15:46:50
65649         Log: For characters beyond the BMP the $bits will be undef,
65650              which will cause utf8_heavy.pl noise (reported by Daniel Yacob,
65651              analysis and fix from SADAHIRO Tomoyuki)
65652      Branch: perl
65653            ! lib/utf8_heavy.pl
65654 ____________________________________________________________________________
65655 [ 19834] By: jhi                                   on 2003/06/20  08:42:58
65656         Log: Allow for things like -DFILL_CHECK_DEFAULT=0 (from Ilya).
65657      Branch: perl
65658            ! malloc.c
65659 ____________________________________________________________________________
65660 [ 19833] By: jhi                                   on 2003/06/20  08:16:02
65661         Log: Don't do sprintf().
65662      Branch: perl
65663            ! malloc.c
65664 ____________________________________________________________________________
65665 [ 19832] By: jhi                                   on 2003/06/20  07:43:48
65666         Log: Show the source code location of an "assertion botch".
65667      Branch: perl
65668            ! malloc.c
65669 ____________________________________________________________________________
65670 [ 19831] By: jhi                                   on 2003/06/20  07:31:11
65671         Log: More Perl malloc debugging magic from Ilya.  Seems to work in
65672              Linux, Solaris, AIX.  Had to do #ifdef OS2 for the <io.h> in
65673              malloc.c, found in AIX since there is no such header.
65674              In Tru64 miniperl fails an assert: "free()ed/realloc()ed-away
65675              memory was overwritten?"
65676              (In IRIX compiles but that doesn't prove much since in IRIX
65677              Perl's malloc is simply not used.)
65678      Branch: perl
65679            + malloc_ctl.h
65680            ! MANIFEST dosish.h epoc/epocish.h malloc.c os2/os2ish.h perl.c
65681            ! perl.h plan9/plan9ish.h sv.c unixish.h vms/vmsish.h
65682 ____________________________________________________________________________
65683 [ 19830] By: jhi                                   on 2003/06/20  06:02:21
65684         Log: Retract #19785 and #19756: JPL nowadays works without this
65685              (verified by a true JPL user).
65686      Branch: perl
65687            ! perl.c
65688 ____________________________________________________________________________
65689 [ 19827] By: jhi                                   on 2003/06/19  20:18:31
65690         Log: Apparently this is needed for VMS (Craig Berry).
65691      Branch: perl
65692            ! lib/Tie/File.pm
65693 ____________________________________________________________________________
65694 [ 19824] By: jhi                                   on 2003/06/19  15:11:48
65695         Log: Bump Time::HiRes to 1.49.
65696      Branch: perl
65697            ! ext/Time/HiRes/Changes ext/Time/HiRes/HiRes.pm
65698            ! ext/Time/HiRes/HiRes.xs
65699 ____________________________________________________________________________
65700 [ 19822] By: jhi                                   on 2003/06/19  14:49:37
65701         Log: This change chunk doesn't work well with blead.
65702      Branch: perl
65703            ! lib/ExtUtils/t/Command.t
65704 ____________________________________________________________________________
65705 [ 19821] By: jhi                                   on 2003/06/19  14:27:52
65706         Log: A tweak from Alan Burlison for MM 6.10_07 that makes Solaris
65707              make happy.
65708      Branch: perl
65709            ! lib/ExtUtils/MM_Unix.pm
65710 ____________________________________________________________________________
65711 [ 19820] By: jhi                                   on 2003/06/19  14:25:53
65712         Log: Upgrade to MakeMaker 6.10_07 (from makemaker.org snapshot
65713              as of 2003-06-19 18:39 EET).
65714      Branch: perl
65715            ! lib/ExtUtils/MM_Any.pm lib/ExtUtils/MM_OS2.pm
65716            ! lib/ExtUtils/MM_Unix.pm lib/ExtUtils/MM_VMS.pm
65717            ! lib/ExtUtils/MakeMaker.pm lib/ExtUtils/t/Command.t
65718            ! lib/ExtUtils/t/MM_OS2.t lib/ExtUtils/t/MM_Unix.t
65719 ____________________________________________________________________________
65720 [ 19819] By: jhi                                   on 2003/06/19  14:08:13
65721         Log: Subject: [PATCH] Re: [perl #17934] tied STDERR and internal warnings
65722              From: grazz@pobox.com (Steve Grazzini)
65723              Date: Wed, 18 Jun 2003 19:42:37 -0400
65724              Message-ID: <20030618234237.GA6267@grazzini.net>
65725      Branch: perl
65726            ! embed.fnc embed.h pod/perltie.pod pp_ctl.c proto.h
65727            ! t/op/runlevel.t t/op/tiehandle.t util.c
65728 ____________________________________________________________________________
65729 [ 19818] By: jhi                                   on 2003/06/19  13:57:55
65730         Log: Subject: [PATCH -current] email address correction
65731              Date: Thu, 19 Jun 2003 02:19:31 -0700
65732              Message-ID: <CGEAIAFGDFMPCFCBLLCOEENKCBAA.rs@crystalflame.net>
65733              From: rs@crystalflame.net (Richard Soderberg)
65734      Branch: perl
65735            ! ext/threads/threads.pm
65736 ____________________________________________________________________________
65737 [ 19816] By: jhi                                   on 2003/06/19  05:02:22
65738         Log: MPE/iX gets serious indigestion on w-packed infinities.
65739      Branch: perl
65740            ! t/op/pack.t
65741 ____________________________________________________________________________
65742 [ 19815] By: rgs                                   on 2003/06/18  20:47:47
65743         Log: A bunch of minor changes to perlguts.pod.
65744      Branch: perl
65745            ! pod/perlguts.pod
65746 ____________________________________________________________________________
65747 [ 19814] By: jhi                                   on 2003/06/18  19:19:38
65748         Log: Subject: Re: [perl #22727] split() with re_eval segfaults/panics
65749              From: Enache Adrian <enache@rdslink.ro>
65750              Date: Wed, 18 Jun 2003 23:00:43 +0300
65751              Message-ID: <20030618200043.GA1249@ratsnest.hole>
65752      Branch: perl
65753            ! pp.c regexec.c t/op/pat.t
65754 ____________________________________________________________________________
65755 [ 19813] By: jhi                                   on 2003/06/18  17:31:50
65756         Log: Upgrade to Tie::File 0.97.
65757      Branch: perl
65758            ! lib/Tie/File.pm lib/Tie/File/t/00_version.t
65759            ! lib/Tie/File/t/09_gen_rs.t lib/Tie/File/t/28_mtwrite.t
65760            ! lib/Tie/File/t/29_downcopy.t
65761 ____________________________________________________________________________
65762 [ 19812] By: gbarr                                 on 2003/06/18  16:41:31
65763         Log: Sync with libnet 1.16
65764      Branch: perl
65765            ! lib/Net/ChangeLog.libnet lib/Net/FTP.pm
65766 ____________________________________________________________________________
65767 [ 19811] By: jhi                                   on 2003/06/18  12:11:07
65768         Log: Subject: Encode] 1.96 Released
65769              From: Dan Kogai <dankogai@dan.co.jp>
65770              Date: Wed, 18 Jun 2003 19:09:11 +0900
65771              Message-Id: <E7FFAE2E-A174-11D7-ACE4-000393AE4244@dan.co.jp>
65772      Branch: perl
65773            ! ext/Encode/Changes ext/Encode/Encode.pm ext/Encode/Encode.xs
65774            ! ext/Encode/META.yml ext/Encode/Unicode/Unicode.pm
65775            ! ext/Encode/Unicode/Unicode.xs ext/Encode/bin/piconv
65776            ! ext/Encode/encoding.pm ext/Encode/lib/Encode/Encoding.pm
65777            ! ext/Encode/lib/Encode/JP/JIS7.pm ext/Encode/t/Unicode.t
65778            ! ext/Encode/t/guess.t
65779 ____________________________________________________________________________
65780 [ 19810] By: jhi                                   on 2003/06/18  09:20:43
65781         Log: Oops in change #19809.
65782      Branch: perl
65783            ! ext/POSIX/POSIX.xs
65784 ____________________________________________________________________________
65785 [ 19809] By: jhi                                   on 2003/06/18  09:08:47
65786         Log: If the first argument of sigaction() was a string, not a number
65787              (or a SIGXXX 'constant') one got first (if using -w) 'Argument "FOO"
65788              isn't numeric in subroutine entry ...' but after that one got
65789              (depending on the OS) either a coredump (because of trying to
65790              assign to *0 in mg_get) or a hang (because of the sigprocmask()
65791              blocking signals inside POSIX::sigaction, a nasty hang since
65792              one obviously cannot interrupt it...only SIGKILL works).
65793              In older Perls (tried with 5.6.1) one got 'No such signal: SIGZERO ...'
65794              because of the string becoming zero due to the XS typemap magic.
65795              Resolved by making the POSIX::sigaction to try harder to figure
65796              out a valid signal number (one still gets the warning, though),
65797              and returning undef if no sense can be made.
65798      Branch: perl
65799            ! ext/POSIX/POSIX.pod ext/POSIX/POSIX.xs ext/POSIX/t/sigaction.t
65800 ____________________________________________________________________________
65801 [ 19808] By: rgs                                   on 2003/06/17  21:10:06
65802         Log: Some docs for the assertions.
65803      Branch: perl
65804            ! lib/assertions.pm lib/assertions/activate.pm
65805            ! pod/perllexwarn.pod pod/perlrun.pod t/run/switch_A.t
65806 ____________________________________________________________________________
65807 [ 19806] By: jhi                                   on 2003/06/17  18:12:26
65808         Log: io_dir.t tweak from Craig Berry.
65809      Branch: perl
65810            ! ext/IO/lib/IO/t/io_dir.t
65811 ____________________________________________________________________________
65812 [ 19805] By: jhi                                   on 2003/06/17  16:47:06
65813         Log: Subject: /ext/DynaLoader/dl_dyld.xs
65814              From: "Peter O'Gorman" <peter@pogma.com>
65815              Date: Tue, 17 Jun 2003 23:45:47 +0900
65816              Message-Id: <619B6B53-A0D2-11D7-BAF7-003065F6C222@pogma.com>
65817
65818              No need to see dlclose() and dlsym() outside the dl_dyld.xs
65819              (Mac OS X, NeXT), and seeing them is harmful for libdlcompat
65820              of OpenDarwin.
65821      Branch: perl
65822            ! ext/DynaLoader/dl_dyld.xs
65823 ____________________________________________________________________________
65824 [ 19804] By: jhi                                   on 2003/06/17  13:12:21
65825         Log: Subject: DOCPATCH Re: $1 remains uncleared for failed matches
65826              From: david nicol <whatever@davidnicol.com>
65827              Date: 16 Jun 2003 20:35:24 -0500
65828              Message-Id: <1055813724.1580.19.camel@plaza.davidnicol.com>
65829
65830              Subject: Re: DOCPATCH Re: $1 remains uncleared for failed matches
65831              From: Ronald J Kimball <rjk@linguist.Thayer.dartmouth.edu>
65832              Date: Tue, 17 Jun 2003 00:12:04 -0400
65833              Message-ID: <20030617041204.GA34960@linguist.thayer.dartmouth.edu>
65834      Branch: perl
65835            ! pod/perlre.pod pod/perltrap.pod
65836 ____________________________________________________________________________
65837 [ 19802] By: jhi                                   on 2003/06/17  04:51:33
65838         Log: UNICOS: try papering over the Configure symbol scan problems
65839              by disavowing any knowledge of dynaloading.
65840      Branch: perl
65841            ! hints/unicos.sh
65842 ____________________________________________________________________________
65843 [ 19801] By: rgs                                   on 2003/06/16  22:47:28
65844         Log: Revert change #19126, a poor attempt at fixing bug #21742.
65845              The test for #21742 is marked as TODO.
65846              Plus new regression tests from :
65847
65848              Subject: [perl #22708] void context in string eval is broken
65849              From: "Marcus Holland-Moritz" (via RT) <perlbug-followup@perl.org>
65850              Date: 15 Jun 2003 23:09:03 -0000
65851              Message-ID: <rt-22708-59432.14.6755501393177@rt.perl.org>
65852      Branch: perl
65853            ! pp_ctl.c t/comp/require.t t/op/eval.t
65854 ____________________________________________________________________________
65855 [ 19800] By: rgs                                   on 2003/06/16  21:14:26
65856         Log: Subject: [PATCH] unnecessary stringification in eval/die
65857              From: Steve Grazzini <grazz@pobox.com>
65858              Date: 15 Jun 2003 21:02:26 -0000
65859              Message-ID: <20030615210226.56430.qmail@onion.perl.org>
65860              (See also <slrnbek5u6.cfi.joey@dragon.kitenet.net>
65861              in c.l.p.misc and bug #17763)
65862      Branch: perl
65863            ! pod/perlfunc.pod pp_ctl.c
65864 ____________________________________________________________________________
65865 [ 19799] By: rgs                                   on 2003/06/16  20:15:28
65866         Log: Subject: [perl #22622] Bogus error codes from File::Copy::move
65867              From: "Amick, Eric" (via RT) <perlbug-followup@perl.org>
65868              Date: 9 Jun 2003 15:48:09 -0000
65869              Message-ID: <rt-22622-59134.12.3966151660257@rt.perl.org>
65870      Branch: perl
65871            ! lib/File/Copy.pm
65872 ____________________________________________________________________________
65873 [ 19798] By: jhi                                   on 2003/06/16  12:26:29
65874         Log: And even more glibc fcntl constants, this time mostly F_XXX.
65875              Be more conservative and use @EXPORT_OK instead of @EXPORT.
65876      Branch: perl
65877            ! ext/Fcntl/Fcntl.pm ext/Fcntl/Makefile.PL
65878 ____________________________________________________________________________
65879 [ 19797] By: jhi                                   on 2003/06/16  08:05:11
65880         Log: Even more glibc O_ modes.
65881      Branch: perl
65882            ! ext/Fcntl/Fcntl.pm ext/Fcntl/Makefile.PL
65883 ____________________________________________________________________________
65884 [ 19796] By: jhi                                   on 2003/06/16  07:59:26
65885         Log: Add O_NOATIME.
65886      Branch: perl
65887            ! ext/Fcntl/Fcntl.pm ext/Fcntl/Makefile.PL
65888 ____________________________________________________________________________
65889 [ 19795] By: jhi                                   on 2003/06/16  06:51:19
65890         Log: Instead of fancy condvar footwork do a simple join,
65891              as suggested by Arthur.
65892      Branch: perl
65893            ! ext/threads/shared/t/hv_refs.t
65894 ____________________________________________________________________________
65895 [ 19794] By: rgs                                   on 2003/06/15  21:01:18
65896         Log: Rename again the warning about $* being no longer supported
65897              (and update perldiag this time!)
65898      Branch: perl
65899            ! gv.c pod/perldiag.pod t/lib/warnings/gv
65900 ____________________________________________________________________________
65901 [ 19793] By: rgs                                   on 2003/06/15  19:47:21
65902         Log: Remove all magic in untie()
65903
65904              Subject: Re: untie from within FETCH/STORE not working under 5.8.0 (fwd)
65905              From: Aaron J Mackey <ajm6q@virginia.edu>
65906              Date: Fri, 13 Jun 2003 08:22:05 -0400 (EDT)
65907              Message-ID: <Pine.OSF.4.33.0306130820570.29017-100000@alpha10.bioch.virginia.edu>
65908              (plus a test case)
65909      Branch: perl
65910            ! pp_sys.c t/op/tie.t
65911 ____________________________________________________________________________
65912 [ 19790] By: jhi                                   on 2003/06/15  17:22:08
65913         Log: Start using Perl malloc in FreeBSD since the system malloc
65914              is reaaally slooow for Perl.
65915
65916              Subject: FreeBSD 5.1 vs. -Uusemymalloc
65917              From: Dan Kogai <dankogai@dan.co.jp>
65918              Date: Mon, 16 Jun 2003 01:48:49 +0900
65919              Message-Id: <3CE9B94D-9F51-11D7-AF50-000393AE4244@dan.co.jp>
65920      Branch: perl
65921            ! hints/freebsd.sh
65922 ____________________________________________________________________________
65923 [ 19789] By: jhi                                   on 2003/06/15  17:08:02
65924         Log: Subject: [PATCH 5.8.1 @19774] OS2 patches
65925              From: Ilya Zakharevich <ilya@Math.Berkeley.EDU>
65926              Date: Sat, 14 Jun 2003 17:49:57 -0700
65927              Message-ID: <20030615004956.GA28272@math.berkeley.edu>
65928      Branch: perl
65929            + os2/OS2/typemap os2/perlrexx.cmd
65930            - os2/OS2/PrfDB/typemap
65931            ! MANIFEST doio.c emacs/ptags ext/Time/HiRes/Makefile.PL handy.h
65932            ! hints/os2.sh lib/ExtUtils/t/MM_OS2.t makedef.pl
65933            ! os2/OS2/Process/Makefile.PL os2/OS2/Process/Process.pm
65934            ! os2/OS2/Process/Process.xs os2/OS2/REXX/DLL/DLL.pm
65935            ! os2/OS2/REXX/DLL/DLL.xs os2/OS2/REXX/t/rx_emxrv.t
65936            ! os2/OS2/REXX/t/rx_objcall.t os2/dl_os2.c os2/os2.c
65937            ! os2/os2ish.h pp_sys.c utils/h2xs.PL
65938 ____________________________________________________________________________
65939 [ 19788] By: jhi                                   on 2003/06/15  15:05:40
65940         Log: Reindent a section of the file.
65941      Branch: perl
65942            ! universal.c
65943 ____________________________________________________________________________
65944 [ 19787] By: jhi                                   on 2003/06/15  15:01:26
65945         Log: Unused variable.
65946      Branch: perl
65947            ! universal.c
65948 ____________________________________________________________________________
65949 [ 19786] By: jhi                                   on 2003/06/15  07:41:23
65950         Log: Subject: Re: [PATCH: sv.c] strchr() running amok in sv_vcatpvfn()
65951              From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
65952              Date: Sun, 15 Jun 2003 10:48:40 +0200
65953              Message-ID: <004a01c3331a$ec001320$3445eed9@R2D2>
65954      Branch: perl
65955            ! embed.fnc embed.h proto.h sv.c
65956 ____________________________________________________________________________
65957 [ 19785] By: jhi                                   on 2003/06/15  07:37:02
65958         Log: Most often unused variables.
65959      Branch: perl
65960            ! perl.c
65961 ____________________________________________________________________________
65962 [ 19784] By: rgs                                   on 2003/06/14  20:08:52
65963         Log: Rename the warning about $* being removed,
65964              as suggested by Dave Mitchell
65965      Branch: perl
65966            ! gv.c t/lib/warnings/gv
65967 ____________________________________________________________________________
65968 [ 19783] By: jhi                                   on 2003/06/14  16:30:23
65969         Log: The FileCache 1.03 tests from belg4mit.
65970      Branch: perl
65971            + lib/FileCache/t/01open.t lib/FileCache/t/02maxopen.t
65972            + lib/FileCache/t/03append.t lib/FileCache/t/04twoarg.t
65973            + lib/FileCache/t/05override.t
65974            - lib/FileCache.t
65975            ! MANIFEST
65976 ____________________________________________________________________________
65977 [ 19782] By: jhi                                   on 2003/06/14  13:45:01
65978         Log: Mention the Unicode::Regex::Set module.
65979      Branch: perl
65980            ! pod/perlunicode.pod
65981 ____________________________________________________________________________
65982 [ 19781] By: jhi                                   on 2003/06/14  13:39:45
65983         Log: Followup on #19779: make the helper function static,
65984              and rename it for paranoia reasons.
65985      Branch: perl
65986            ! embed.fnc embed.h proto.h sv.c
65987 ____________________________________________________________________________
65988 [ 19779] By: jhi                                   on 2003/06/14  13:13:34
65989         Log: Subject: [PATCH: sv.c] strchr() running amok in sv_vcatpvfn()
65990              From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
65991              Date: Sat, 14 Jun 2003 12:51:31 +0200
65992              Message-ID: <041901c33262$eac8ae30$f248eed9@R2D2>
65993
65994              (choosing the safe alternative)
65995      Branch: perl
65996            ! sv.c
65997 ____________________________________________________________________________
65998 [ 19778] By: jhi                                   on 2003/06/14  09:28:01
65999         Log: Exercise the utf8:: "internal" functions.
66000      Branch: perl
66001            ! lib/utf8.pm lib/utf8.t
66002 ____________________________________________________________________________
66003 [ 19777] By: jhi                                   on 2003/06/14  09:05:07
66004         Log: Having to pull in the whole Encode just to get SvUTF8()
66005              is a bit too much: introduce utf8::is_utf8().
66006      Branch: perl
66007            ! lib/utf8.pm pod/perluniintro.pod universal.c
66008 ____________________________________________________________________________
66009 [ 19776] By: jhi                                   on 2003/06/14  08:56:11
66010         Log: Slight tweaks on the length() and chr() entries,
66011              passing-by rewrapping on the rmdir entry.
66012      Branch: perl
66013            ! pod/perlfunc.pod
66014 ____________________________________________________________________________
66015 [ 19775] By: jhi                                   on 2003/06/14  08:50:16
66016         Log: test.pl-ify and add a couple of tests.
66017      Branch: perl
66018            ! lib/bytes.t
66019 ____________________________________________________________________________
66020 [ 19773] By: jhi                                   on 2003/06/14  08:05:01
66021         Log: Slight reorg of the binmode() entry.
66022      Branch: perl
66023            ! pod/perlfunc.pod
66024 ____________________________________________________________________________
66025 [ 19772] By: jhi                                   on 2003/06/14  07:07:38
66026         Log: Illegal cpp.
66027      Branch: perl
66028            ! util.c
66029 ____________________________________________________________________________
66030 [ 19770] By: jhi                                   on 2003/06/14  04:36:18
66031         Log: Subject: Re: FileCache
66032              From: belg4mit <belg4mit@MIT.EDU>
66033              Date: Sat, 14 Jun 2003 01:35:05 -0400
66034              Message-ID: <3EEAB409.7B4C21EA@mit.edu>
66035
66036              FileCache 1.03.
66037      Branch: perl
66038            ! lib/FileCache.pm
66039 ____________________________________________________________________________
66040 [ 19769] By: rgs                                   on 2003/06/13  19:17:50
66041         Log: Remove the deprecated $* variable.
66042              Incidentally, this fixes bug #22354, about unwanted
66043              action-at-distance of the /m regexp modifier.
66044              Add a new warning to advertise this fact.
66045      Branch: perl
66046            ! gv.c lib/English.pm mg.c pod/perldelta.pod pod/perldiag.pod
66047            ! pod/perlre.pod pod/perlvar.pod pp.c pp_hot.c t/lib/warnings/gv
66048            ! t/op/pat.t t/op/study.t
66049 ____________________________________________________________________________
66050 [ 19768] By: jhi                                   on 2003/06/13  17:08:45
66051         Log: Encode simply needs more work on EBCDIC.
66052      Branch: perl
66053            ! ext/Encode/t/Unicode.t
66054 ____________________________________________________________________________
66055 [ 19767] By: jhi                                   on 2003/06/13  17:05:01
66056         Log: Redundancy removal from Brian De Pradine;
66057              both the forms, pthread_mutexattr_settype() and
66058              pthread_mutexattr_setkind_np(), exist on z/OS.
66059      Branch: perl
66060            ! thread.h
66061 ____________________________________________________________________________
66062 [ 19766] By: jhi                                   on 2003/06/13  17:02:57
66063         Log: Somehow MPE/iX managed to get
66064              "18/0Illegal division by zero at ../lib/Test/Harness.pm line 921."
66065      Branch: perl
66066            ! lib/Test/Harness.pm
66067 ____________________________________________________________________________
66068 [ 19765] By: jhi                                   on 2003/06/13  14:36:18
66069         Log: Subject: [PATCH] Re: [perl #18849] fork/system bug on FreeBSD
66070              From: alan <alan@pair.com>
66071              Date: Wed, 11 Jun 2003 14:07:00 -0400 (EDT)
66072              Message-ID: <Pine.BSF.4.30.0306111348450.32145-100000@smx.pair.com>
66073
66074              (the first alternative)
66075      Branch: perl
66076            ! util.c
66077 ____________________________________________________________________________
66078 [ 19764] By: jhi                                   on 2003/06/13  14:33:51
66079         Log: Apparently the __APPLE__ cpp symbol is not Officially Sanctioned
66080              way of detecting Darwin/Mac OS X; instead it is recommended to
66081              detect the OS at a higher level and pass the information manually
66082              down to the application, using e.g. a -Ddefinition.
66083      Branch: perl
66084            ! hints/darwin.sh perl.h x2p/util.c
66085 ____________________________________________________________________________
66086 [ 19763] By: jhi                                   on 2003/06/13  14:12:13
66087         Log: Define a cpp symbol, BSDish, if that looks appropriate.
66088      Branch: perl
66089            ! perl.h
66090 ____________________________________________________________________________
66091 [ 19760] By: jhi                                   on 2003/06/13  12:00:06
66092         Log: Even more tweakage on symbol scanning from Alan Burlison.
66093      Branch: perl
66094            ! Configure
66095 ____________________________________________________________________________
66096 [ 19758] By: gbarr                                 on 2003/06/13  07:01:11
66097         Log: Sync with libnet 1.15
66098      Branch: perl
66099            ! lib/Net/ChangeLog.libnet lib/Net/FTP.pm
66100 ____________________________________________________________________________
66101 [ 19756] By: jhi                                   on 2003/06/13  05:09:17
66102         Log: The changes #8803 and #8896 that fixed JPL for use with
66103              JDK 1.2/1.3 had somehow disappeared.
66104      Branch: perl
66105            ! perl.c perl.h
66106 ____________________________________________________________________________
66107 [ 19752] By: rgs                                   on 2003/06/12  20:49:25
66108         Log: Add a new warning, "Newline in left-justified string for printf/sprintf"
66109              to be issued if the string to be left-justified by s?printf contains
66110              a newline.
66111
66112              Subject: [PATCH] RE: [perl #22599] Strange behaviour when combining foreac h and printf
66113              From: Robin Barker <Robin.Barker@npl.co.uk>
66114              Date: Wed, 11 Jun 2003 18:10:14 +0100
66115              Message-ID: <533D273D4014D411AB1D00062938C4D904046571@hotel.npl.co.uk>
66116      Branch: perl
66117            ! pod/perldiag.pod sv.c t/lib/warnings/sv
66118 ____________________________________________________________________________
66119 [ 19751] By: rgs                                   on 2003/06/12  20:25:41
66120         Log: Patch for a warning emitted twice, from :
66121              Subject: [PATCH: perl@19733] "perldoc -f -X" + "extra warning from -T"
66122              From: Steve Grazzini <grazz@pobox.com>
66123              Date: Wed, 11 Jun 2003 00:46:47 -0400
66124              Message-ID: <20030611044647.GA16696@grazzini.net>
66125      Branch: perl
66126            ! pp_sys.c
66127 ____________________________________________________________________________
66128 [ 19750] By: sky                                   on 2003/06/12  15:03:55
66129         Log: In free we want to destroy, not init, thanks to Tim Bunce for
66130              detecting this. Should hopefully fix memory leak on Tru64
66131      Branch: perl
66132            ! ext/threads/shared/shared.xs
66133 ____________________________________________________________________________
66134 [ 19749] By: jhi                                   on 2003/06/12  13:27:44
66135         Log: More perlio ->Open paranoia.  Set errno to EINVAL if there's
66136              no ->Open, not if ->Open returns NULL.
66137      Branch: perl
66138            ! perlio.c
66139 ____________________________________________________________________________
66140 [ 19748] By: jhi                                   on 2003/06/12  11:32:44
66141         Log: Further perlio doc tweaks.
66142      Branch: perl
66143            ! lib/PerlIO.pm pod/perlrun.pod
66144 ____________________________________________________________________________
66145 [ 19747] By: jhi                                   on 2003/06/12  11:25:19
66146         Log: Slightly amended version of the proposed patch for
66147              "[perl #22390] export PERLIO=bytes segfaults";
66148              the amendment is to set errno.
66149              TODO: we really should not get here if the layer
66150              stack is corrupt or non-sensical (like "bytes").
66151      Branch: perl
66152            ! perlio.c
66153 ____________________________________________________________________________
66154 [ 19746] By: sky                                   on 2003/06/12  08:37:39
66155         Log: Be polite and destroy the mutexes and conditions we use!
66156      Branch: perl
66157            ! ext/threads/shared/shared.xs
66158 ____________________________________________________________________________
66159 [ 19744] By: rgs                                   on 2003/06/11  20:49:04
66160         Log: Subject: Re: [PATCH] Annoyingly unhelpful messages from lib/File/Temp/t/security.t
66161              From: Andy Dougherty <doughera@lafayette.edu>
66162              Date: Wed, 11 Jun 2003 12:57:58 -0400 (EDT)
66163              Message-ID: <Pine.SOL.4.53.0306111252540.19074@maxwell.phys.lafayette.edu>
66164      Branch: perl
66165            ! lib/File/Temp/t/security.t
66166 ____________________________________________________________________________
66167 [ 19742] By: jhi                                   on 2003/06/11  18:28:12
66168         Log: Subject: [PATCH] Configure -Dnoextensions would not accept a list
66169              From: Andy Dougherty <doughera@lafayette.edu>
66170              Date: Wed, 11 Jun 2003 13:35:26 -0400 (EDT)
66171              Message-ID: <Pine.SOL.4.53.0306111331550.2477@maxwell.phys.lafayette.edu>
66172      Branch: perl
66173            ! Configure
66174 ____________________________________________________________________________
66175 [ 19741] By: merijn                                on 2003/06/11  14:06:49
66176         Log: Subject: [PATCH: perl@19733] fix vmsish.t #25 by letting $0 find itself in the face of chdir() calls
66177              From: PPrymmer@factset.com
66178              Date: Wed, 11 Jun 2003 09:00:34 -0400
66179              Message-ID: <OF2535E971.A30D9C74-ON85256D42.00461FF9-85256D42.004776C4@factset.com>
66180      Branch: perl
66181            ! lib/vmsish.t
66182 ____________________________________________________________________________
66183 [ 19740] By: jhi                                   on 2003/06/11  13:29:59
66184         Log: Doc nit.
66185      Branch: perl
66186            ! INSTALL
66187 ____________________________________________________________________________
66188 [ 19739] By: jhi                                   on 2003/06/11  05:30:53
66189         Log: Integrate from maint:
66190              [ 19738]
66191              Subject: Re: [PATCH: maint @ 19733] CL compiler warnings on MSWin32
66192              From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
66193              Date: Tue, 10 Jun 2003 22:10:47 +0200
66194              Message-ID: <011701c32f8c$62d85ee0$0c2f1fac@R2D2>
66195      Branch: perl
66196           !> ext/Encode/encengine.c ext/List/Util/Util.xs
66197           !> ext/POSIX/POSIX.xs ext/Storable/Storable.xs
66198           !> ext/Thread/Thread.xs ext/threads/threads.xs op.c perl.c pp.h
66199           !> sv.c
66200 ____________________________________________________________________________
66201 [ 19735] By: jhi                                   on 2003/06/10  05:27:33
66202         Log: Upgrade to Unicode::Normalize 0.22.
66203      Branch: perl
66204            ! ext/Unicode/Normalize/Changes
66205            ! ext/Unicode/Normalize/Makefile.PL
66206            ! ext/Unicode/Normalize/Normalize.pm
66207            ! ext/Unicode/Normalize/Normalize.xs
66208            ! ext/Unicode/Normalize/README ext/Unicode/Normalize/mkheader
66209            ! ext/Unicode/Normalize/t/func.t ext/Unicode/Normalize/t/norm.t
66210            ! ext/Unicode/Normalize/t/test.t
66211 ____________________________________________________________________________
66212 [ 19734] By: jhi                                   on 2003/06/10  05:14:18
66213         Log: Upgrade to Unicode::Collate 0.25.
66214      Branch: perl
66215            ! lib/Unicode/Collate.pm lib/Unicode/Collate/Changes
66216            ! lib/Unicode/Collate/README lib/Unicode/Collate/t/index.t
66217            ! lib/Unicode/Collate/t/test.t
66218 ____________________________________________________________________________
66219 [ 19731] By: jhi                                   on 2003/06/09  20:48:14
66220         Log: On a real multicpu box the child thread could still be running
66221              when the parent thread was already testing.
66222      Branch: perl
66223            ! ext/threads/shared/t/hv_refs.t
66224 ____________________________________________________________________________
66225 [ 19730] By: rgs                                   on 2003/06/09  19:56:29
66226         Log: Subject: [PATCH] Annoyingly unhelpful messages from lib/File/Temp/t/security.t
66227              From: Andy Dougherty <doughera@lafayette.edu>
66228              Date: Mon, 9 Jun 2003 14:45:38 -0400 (EDT)
66229              Message-ID: <Pine.SOL.4.53.0306091323300.4467@maxwell.phys.lafayette.edu>
66230      Branch: perl
66231            ! INSTALL
66232 ____________________________________________________________________________
66233 [ 19729] By: rgs                                   on 2003/06/09  19:13:16
66234         Log: Subject: [PATCH] Re: nitpick with \(0..2)
66235              From: Steve Grazzini <grazz@pobox.com>
66236              Date: Fri, 6 Jun 2003 01:42:59 -0400
66237              Message-ID: <20030606054259.GA30249@grazzini.net>
66238      Branch: perl
66239            ! op.c pod/perlop.pod t/op/ref.t
66240 ____________________________________________________________________________
66241 [ 19726] By: jhi                                   on 2003/06/09  18:45:00
66242         Log: Possible fix for the problems in EBCDIC from Sadahiro Tomoyuki.
66243      Branch: perl
66244            ! ext/Unicode/Normalize/Normalize.pm
66245 ____________________________________________________________________________
66246 [ 19725] By: rgs                                   on 2003/06/09  18:33:50
66247         Log: In the debugger, flush stdout/stderr before the prompt is printed
66248              Subject: Re: [PATCH] Perlbug #15228
66249              From: Alex Vandiver <alexmv@MIT.EDU>
66250              Date: 04 Jun 2003 04:50:10 -0400
66251              Message-Id: <1054716610.21402.45.camel@supox>
66252      Branch: perl
66253            ! lib/perl5db.pl
66254 ____________________________________________________________________________
66255 [ 19724] By: gsar                                  on 2003/06/09  18:17:42
66256         Log: mark 450_service.t#18 as a todo test on windows
66257      Branch: perl
66258            ! lib/Net/Ping/t/450_service.t
66259 ____________________________________________________________________________
66260 [ 19723] By: gsar                                  on 2003/06/09  18:00:57
66261         Log: one of the Net::Ping time-dependent tests fails sporadically
66262              when the response from localhost is "too quick"
66263      Branch: perl
66264            ! lib/Net/Ping/t/250_ping_hires.t
66265 ____________________________________________________________________________
66266 [ 19721] By: jhi                                   on 2003/06/09  17:04:50
66267         Log: Subject: [PATCH] ExtUtils::MakeMaker 6.10_06 (plus FAQ update)
66268              From: Michael G Schwern <schwern@pobox.com>
66269              Date: Sat, 7 Jun 2003 01:16:32 -0700
66270              Message-ID: <20030607081632.GA16228@windhund.schwern.org>
66271      Branch: perl
66272            ! lib/ExtUtils/Changes lib/ExtUtils/META.yml
66273            ! lib/ExtUtils/MM_Any.pm lib/ExtUtils/MakeMaker/FAQ.pod
66274            ! lib/ExtUtils/t/Liblist.t
66275 ____________________________________________________________________________
66276 [ 19720] By: gsar                                  on 2003/06/09  15:59:52
66277         Log: fix for perlio.t failures on windows (from Dan Kogai)
66278      Branch: perl
66279            ! ext/Encode/t/perlio.t
66280 ____________________________________________________________________________
66281 [ 19719] By: jhi                                   on 2003/06/09  15:28:18
66282         Log: Subject: [PATCH: perl@19683] fix ups for perlivp on VMS plus more symbols for utils
66283              From: PPrymmer@factset.com
66284              Date: Mon, 9 Jun 2003 09:57:43 -0400
66285              Message-ID: <OFBA811434.A612F1C0-ON85256D40.004B5ECC-85256D40.004CB24D@factset.com>
66286      Branch: perl
66287            ! configure.com utils/perlivp.PL
66288 ____________________________________________________________________________
66289 [ 19717] By: gsar                                  on 2003/06/09  14:09:55
66290         Log: windows: fix memory leak in %ENV handling (shows up as a
66291              leak even in the simplest fork() loop, because perl_construct()
66292              now does the equivalent of %ENV assignments using mg_set())
66293      Branch: perl
66294            ! win32/perlhost.h
66295 ____________________________________________________________________________
66296 [ 19715] By: sky                                   on 2003/06/09  09:35:47
66297         Log: Support blessed shared references.
66298      Branch: perl
66299            ! ext/threads/shared/shared.pm ext/threads/shared/shared.xs
66300            ! ext/threads/shared/t/hv_refs.t
66301 ____________________________________________________________________________
66302 [ 19714] By: jhi                                   on 2003/06/09  04:29:04
66303         Log: Subject: [PATCH] pack.t tweak for non-IEEE VMS systems
66304              From: "Craig A. Berry" <craigberry@mac.com>
66305              Date: Sun, 08 Jun 2003 16:49:43 -0500
66306              Message-ID: <3EE3AF77.7060302@mac.com>
66307      Branch: perl
66308            ! t/op/pack.t
66309 ____________________________________________________________________________
66310 [ 19712] By: jhi                                   on 2003/06/08  17:05:59
66311         Log: Subject: Re: forwarded you a test result
66312              From: Dan Kogai <dankogai@dan.co.jp>
66313              Date: Sun, 8 Jun 2003 11:04:43 +0900
66314              Message-Id: <92344ED4-9955-11D7-8DFA-000393AE4244@dan.co.jp>
66315      Branch: perl
66316            ! ext/Encode/t/Encode.t
66317 ____________________________________________________________________________
66318 [ 19710] By: jhi                                   on 2003/06/08  17:03:07
66319         Log: Regen Configure et al.
66320      Branch: perl
66321            ! Configure Porting/config.sh Porting/config_H
66322 ____________________________________________________________________________
66323 [ 19709] By: jhi                                   on 2003/06/08  16:45:50
66324         Log: More symbol scan logic from Alan Burlison.
66325      Branch: perl
66326            ! Configure Porting/Glossary hints/solaris_2.sh
66327 ____________________________________________________________________________
66328 [ 19708] By: sky                                   on 2003/06/07  13:28:50
66329         Log: Major (internal) change to make it much more easy to embed
66330              threaded perl because we don't use our own TLS for the current
66331              thread info, but instead use PL_modglobal. Should make the
66332              mod_perl2 team (Hi Stas!) happy. Should also be more robust.
66333      Branch: perl
66334            ! ext/threads/threads.xs
66335 ____________________________________________________________________________
66336 [ 19707] By: sky                                   on 2003/06/07  13:27:01
66337         Log: Last patch broke this slightly because INC was wrong.
66338      Branch: perl
66339            ! ext/threads/t/thread.t
66340 ____________________________________________________________________________
66341 [ 19706] By: sky                                   on 2003/06/07  13:07:53
66342         Log: Remove warnings from tests.
66343      Branch: perl
66344            ! ext/threads/t/basic.t ext/threads/t/end.t ext/threads/t/join.t
66345            ! ext/threads/t/list.t
66346 ____________________________________________________________________________
66347 [ 19705] By: sky                                   on 2003/06/07  12:42:28
66348         Log: Work in non core env.
66349      Branch: perl
66350            ! ext/threads/t/basic.t ext/threads/t/end.t ext/threads/t/join.t
66351            ! ext/threads/t/libc.t ext/threads/t/list.t
66352            ! ext/threads/t/problems.t ext/threads/t/stress_cv.t
66353            ! ext/threads/t/stress_re.t ext/threads/t/stress_string.t
66354            ! ext/threads/t/thread.t
66355 ____________________________________________________________________________
66356 [ 19703] By: jhi                                   on 2003/06/07  05:11:50
66357         Log: Subject: [PATCH] ExtUtils::MakeMaker 6.10_04 -> 6.10_05
66358              From: Michael G Schwern <schwern@pobox.com>
66359              Date: Fri, 6 Jun 2003 18:41:45 -0700
66360              Message-ID: <20030607014145.GB12031@windhund.schwern.org>
66361      Branch: perl
66362            ! lib/ExtUtils/Changes lib/ExtUtils/Install.pm
66363            ! lib/ExtUtils/Liblist/Kid.pm lib/ExtUtils/META.yml
66364            ! lib/ExtUtils/MM_Any.pm lib/ExtUtils/MM_Unix.pm
66365            ! lib/ExtUtils/MakeMaker.pm lib/ExtUtils/Manifest.pm
66366            ! lib/ExtUtils/TODO lib/ExtUtils/t/00compile.t
66367            ! lib/ExtUtils/t/Install.t lib/ExtUtils/t/basic.t
66368            ! lib/ExtUtils/t/zz_cleanup_dummy.t
66369 ____________________________________________________________________________
66370 [ 19702] By: rgs                                   on 2003/06/06  23:00:00
66371         Log: Upgrade to Time::Local 1.06, by Dave Rolsky
66372      Branch: perl
66373            ! lib/Time/Local.pm lib/Time/Local.t
66374 ____________________________________________________________________________
66375 [ 19701] By: rgs                                   on 2003/06/06  22:50:37
66376         Log: Complement to change #19698 :
66377              add also this information (=> and curly braces doesn't
66378              quote compound identifiers) to the strict manpage.
66379              As an experiment in documentation, add a "HISTORY" section
66380              to the strict manpage.
66381      Branch: perl
66382            ! lib/strict.pm
66383 ____________________________________________________________________________
66384 [ 19700] By: rgs                                   on 2003/06/06  22:31:50
66385         Log: Minor grammatical nit.
66386      Branch: perl
66387            ! README.hpux
66388 ____________________________________________________________________________
66389 [ 19699] By: rgs                                   on 2003/06/06  22:29:38
66390         Log: Subject: [patch] L<perlguts/"API LISTING"> is now L<perlapi>
66391              From: Stas Bekman <stas@stason.org>
66392              Date: Thu, 05 Jun 2003 10:10:36 +1000
66393              Message-ID: <3EDE8A7C.2080302@stason.org>
66394
66395              Subject: [patch] perlguts authors dup
66396              From: Stas Bekman <stas@stason.org>
66397              Date: Thu, 05 Jun 2003 10:14:12 +1000
66398              Message-ID: <3EDE8B54.6090808@stason.org>
66399      Branch: perl
66400            ! pod/perl5005delta.pod pod/perlguts.pod pod/perlxs.pod
66401 ____________________________________________________________________________
66402 [ 19698] By: rgs                                   on 2003/06/06  22:23:56
66403         Log: Clarify that => doesn't quote compound identifiers.
66404      Branch: perl
66405            ! pod/perldata.pod
66406 ____________________________________________________________________________
66407 [ 19696] By: merijn                                on 2003/06/06  12:21:43
66408         Log: Perl *is* 100% 64bit compliant on HP-UX 11.00 and up (as long
66409              as the compiler supports it)
66410      Branch: perl
66411            ! README.hpux
66412 ____________________________________________________________________________
66413 [ 19695] By: jhi                                   on 2003/06/05  18:50:51
66414         Log: Subject: [PATCH] Re: SPUG:-s option doesn't always work!
66415              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
66416              Date: Wed, 04 Jun 2003 00:08:32 -0700
66417              Message-ID: <wrZ3+gzkg2iX092yn@efn.org>
66418      Branch: perl
66419            ! t/run/switches.t toke.c
66420 ____________________________________________________________________________
66421 [ 19694] By: jhi                                   on 2003/06/05  18:37:02
66422         Log: Subject: [PATCH] RE: maint @ 19683
66423              From: Robin Barker <Robin.Barker@npl.co.uk>
66424              Date: Thu, 5 Jun 2003 17:16:58 +0100
66425              Message-ID: <533D273D4014D411AB1D00062938C4D904046564@hotel.npl.co.uk>
66426
66427              (skipped the MIME::Base64 part, leaving that to Gisle)
66428      Branch: perl
66429            ! ext/POSIX/POSIX.xs gv.c op.c perl.c perl.h
66430 ____________________________________________________________________________
66431 [ 19693] By: jhi                                   on 2003/06/05  17:26:04
66432         Log: SKIP label was missing.
66433      Branch: perl
66434            ! t/io/utf8.t
66435 ____________________________________________________________________________
66436 [ 19692] By: jhi                                   on 2003/06/05  16:58:23
66437         Log: z/OS makedepend fix from Peter Prymmer;
66438              still needed as reported by Brian De Pradine.
66439      Branch: perl
66440            ! makedepend.SH
66441 ____________________________________________________________________________
66442 [ 19691] By: jhi                                   on 2003/06/05  16:56:01
66443         Log: Even more getspecific patches from Brian De Pradine;
66444              macrofy the construct.
66445      Branch: perl
66446            ! ext/threads/threads.xs
66447 ____________________________________________________________________________
66448 [ 19690] By: jhi                                   on 2003/06/05  16:19:40
66449         Log: z/OS threads tweak from Brian De Pradine.
66450      Branch: perl
66451            ! ext/threads/threads.xs
66452 ____________________________________________________________________________
66453 [ 19689] By: jhi                                   on 2003/06/05  05:43:31
66454         Log: Upgrade to Time::HiRes 1.48.
66455      Branch: perl
66456            ! ext/Time/HiRes/Changes ext/Time/HiRes/HiRes.pm
66457 ____________________________________________________________________________
66458 [ 19688] By: rgs                                   on 2003/06/04  18:53:48
66459         Log: Prevent a potential null pointer dereference.
66460              Noticed by Ryan Koga <rkoga@caida.org> in
66461              Message-ID: <Pine.BSF.4.44.0306031659090.1489-100000@login.caida.org>
66462      Branch: perl
66463            ! perlio.c
66464 ____________________________________________________________________________
66465 [ 19687] By: jhi                                   on 2003/06/04  18:26:08
66466         Log: Subject: Re: [MacOS X] consider useshrplib='false' by default
66467              From: Andy Dougherty <doughera@lafayette.edu>
66468              Date: Wed, 4 Jun 2003 11:33:29 -0400 (EDT)
66469              Message-ID: <Pine.SOL.4.53.0306041128350.15343@maxwell.phys.lafayette.edu>
66470      Branch: perl
66471            ! hints/darwin.sh
66472 ____________________________________________________________________________
66473 [ 19686] By: jhi                                   on 2003/06/04  11:02:54
66474         Log: On closer reading the proposed UTS#18 update required
66475              even more changes.
66476      Branch: perl
66477            ! lib/unicore/lib/Blank.pl lib/unicore/lib/Graph.pl
66478            ! lib/unicore/lib/Print.pl lib/unicore/lib/Space.pl
66479            ! lib/unicore/lib/SpacePer.pl lib/unicore/lib/Word.pl
66480            ! lib/unicore/mktables
66481 ____________________________________________________________________________
66482 [ 19685] By: jhi                                   on 2003/06/04  10:14:09
66483         Log: Align the 'graph' property definition with the proposed
66484              Unicode UTS #18 update (v7).
66485      Branch: perl
66486            ! lib/unicore/lib/Graph.pl lib/unicore/mktables
66487 ____________________________________________________________________________
66488 [ 19681] By: jhi                                   on 2003/06/04  05:16:38
66489         Log: Subject: [MacOS X] consider useshrplib='false' by default
66490              From: Dan Kogai <dankogai@dan.co.jp>
66491              Date: Wed, 4 Jun 2003 01:29:42 +0900
66492              Message-Id: <94213618-95E0-11D7-8A27-000393AE4244@dan.co.jp>
66493      Branch: perl
66494            ! hints/darwin.sh
66495 ____________________________________________________________________________
66496 [ 19679] By: jhi                                   on 2003/06/03  15:51:36
66497         Log: Urk.  Joe's patches were for the maint branch,
66498              not for the blead (which has assertions and stuff).
66499              Retract #19677, #19676, #19674.
66500      Branch: perl
66501            ! lib/perl5db.pl
66502 ____________________________________________________________________________
66503 [ 19678] By: jhi                                   on 2003/06/03  15:05:19
66504         Log: According to Arthur this should help
66505              #22060 Perl 5.8.0 on FreeBSD 5.0 threads (threads->list) possible bug
66506      Branch: perl
66507            ! ext/threads/threads.xs
66508 ____________________________________________________________________________
66509 [ 19677] By: jhi                                   on 2003/06/03  14:07:06
66510         Log: Tiny tweaks from Joe McMahon.
66511      Branch: perl
66512            ! lib/perl5db.pl
66513 ____________________________________________________________________________
66514 [ 19676] By: jhi                                   on 2003/06/03  12:38:46
66515         Log: Tiny pod and speling tweaks.
66516      Branch: perl
66517            ! lib/perl5db.pl
66518 ____________________________________________________________________________
66519 [ 19674] By: jhi                                   on 2003/06/03  12:20:59
66520         Log: Subject: Extensive documentation patch redux
66521              From: Joe McMahon <mcmahon@ibiblio.org>
66522              Date: Mon, 2 Jun 2003 09:53:40 -0400
66523              Message-Id: <9DB6529E-9501-11D7-9377-000393BCA0FC@ibiblio.org>
66524
66525              Subject: RE: [PATCH] RE: Extensive documentation patch redux
66526              From: Robin Barker <Robin.Barker@npl.co.uk>
66527              Date: Tue, 3 Jun 2003 10:00:22 +0100
66528              Message-ID: <533D273D4014D411AB1D00062938C4D904046555@hotel.npl.co.uk>
66529      Branch: perl
66530            ! lib/perl5db.pl
66531 ____________________________________________________________________________
66532 [ 19673] By: jhi                                   on 2003/06/03  09:51:59
66533         Log: Salvage parts of #19667.
66534      Branch: perl
66535            ! perlio.c win32/win32.c win32/win32iop.h
66536 ____________________________________________________________________________
66537 [ 19672] By: jhi                                   on 2003/06/03  09:26:45
66538         Log: Salvage parts of #19418 (the ext/PerlIO/t/open.t
66539              still is there).
66540      Branch: perl
66541            ! MANIFEST pod/perlfunc.pod
66542 ____________________________________________________________________________
66543 [ 19671] By: merijn                                on 2003/06/03  08:27:07
66544         Log: Subject: Re: [PATCH] perl.h, README.cygwin: Cygwin O_TEXT <> O_BINARY issue
66545              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
66546              Date: Tue, 03 Jun 2003 01:55:06 -0700
66547              Message-ID: <qJG3+gzkgajL092yn@efn.org>
66548      Branch: perl
66549            ! README.cygwin
66550 ____________________________________________________________________________
66551 [ 19670] By: jhi                                   on 2003/06/03  08:04:39
66552         Log: Retract #19667, #19660, #19659, #19658, #19657, #19656,
66553              #19655, #19418; File::Temp no more used internally.
66554              Some parts of these will be salvaged later.
66555      Branch: perl
66556            ! MANIFEST embed.fnc embed.h op.c perlio.c pod/perlfunc.pod
66557            ! proto.h win32/win32.c win32/win32iop.h
66558 ____________________________________________________________________________
66559 [ 19669] By: gsar                                  on 2003/06/02  20:59:39
66560         Log: fix for 09_gen_rs.t#59 failure on windows
66561      Branch: perl
66562            ! lib/Tie/File/t/09_gen_rs.t
66563 ____________________________________________________________________________
66564 [ 19668] By: gsar                                  on 2003/06/02  20:40:19
66565         Log: resurrect change#19628 and make it work by generalizing
66566              a spot that had a hardcoded dependency on the cmd.exe
66567              arguments being "/x/c" or "/c"
66568      Branch: perl
66569            ! pod/perlrun.pod win32/win32.c
66570 ____________________________________________________________________________
66571 [ 19667] By: gsar                                  on 2003/06/02  18:44:34
66572         Log: don't use File::Temp to implement PerlIO_tmpfile() on windows;
66573              reuse the straightforward native implementation instead
66574
66575              this fixes the warning from io_xs.t
66576
66577              NOTE: File::Temp has a less-than-robust implementation on windows
66578              that relies on END blocks being run (this may not happen always)
66579      Branch: perl
66580            ! op.c win32/win32.c win32/win32iop.h
66581 ____________________________________________________________________________
66582 [ 19666] By: gsar                                  on 2003/06/02  18:29:46
66583         Log: change#19628 broke many win32/system.t tests, so back it out
66584      Branch: perl
66585            ! pod/perlrun.pod win32/win32.c
66586 ____________________________________________________________________________
66587 [ 19665] By: rgs                                   on 2003/06/02  18:22:06
66588         Log: A little bit more of weird-code-proofing in B::Deparse.
66589              Fixes a bug reported by Alexey Tourbin in
66590              Message-ID: <20030602085348.GA24023@solemn.turbinal.org>
66591      Branch: perl
66592            ! ext/B/B/Deparse.pm
66593 ____________________________________________________________________________
66594 [ 19664] By: jhi                                   on 2003/06/02  16:41:37
66595         Log: Upgrade to the CGI.pm 2.93.
66596
66597              (Lincoln keeps ripping out the BEGIN/PERL_CORE blocks.  Sigh.)
66598      Branch: perl
66599            + lib/CGI/t/util-58.t
66600            ! MANIFEST lib/CGI.pm lib/CGI/Carp.pm lib/CGI/Cookie.pm
66601            ! lib/CGI/Fast.pm lib/CGI/Pretty.pm lib/CGI/Util.pm
66602            ! lib/CGI/t/apache.t lib/CGI/t/carp.t lib/CGI/t/cookie.t
66603            ! lib/CGI/t/fast.t lib/CGI/t/form.t lib/CGI/t/function.t
66604            ! lib/CGI/t/html.t lib/CGI/t/push.t lib/CGI/t/request.t
66605            ! lib/CGI/t/switch.t lib/CGI/t/util.t
66606 ____________________________________________________________________________
66607 [ 19663] By: jhi                                   on 2003/06/02  16:16:51
66608         Log: Whitespace tweaks.
66609      Branch: perl
66610            ! hints/uwin.sh
66611 ____________________________________________________________________________
66612 [ 19662] By: jhi                                   on 2003/06/02  16:08:22
66613         Log: U/WIN: final (for now) touches from John P. Linderman;
66614              now we get 97% success rate, the remaining failures are
66615              quite obscure.
66616      Branch: perl
66617            ! hints/uwin.sh lib/locale.t
66618 ____________________________________________________________________________
66619 [ 19661] By: gbarr                                 on 2003/06/02  12:13:35
66620         Log: Sync with libnet 1.14
66621      Branch: perl
66622            ! lib/Net/ChangeLog.libnet lib/Net/Cmd.pm lib/Net/Domain.pm
66623            ! lib/Net/FTP.pm lib/Net/FTP/A.pm lib/Net/NNTP.pm
66624            ! lib/Net/POP3.pm lib/Net/README.libnet lib/Net/SMTP.pm
66625            ! lib/Net/libnetFAQ.pod lib/Net/t/hostname.t
66626 ____________________________________________________________________________
66627 [ 19660] By: jhi                                   on 2003/06/02  09:28:30
66628         Log: Beautification.
66629      Branch: perl
66630            ! op.c
66631 ____________________________________________________________________________
66632 [ 19659] By: jhi                                   on 2003/06/02  09:07:38
66633         Log: Duplicate definition bad.
66634      Branch: perl
66635            ! op.c
66636 ____________________________________________________________________________
66637 [ 19658] By: jhi                                   on 2003/06/02  09:02:18
66638         Log: I thought I tried building threaded.  Never think.  Try.
66639      Branch: perl
66640            ! perlio.c
66641 ____________________________________________________________________________
66642 [ 19657] By: jhi                                   on 2003/06/02  08:54:04
66643         Log: Stick with the original (5.8.0) logic.
66644      Branch: perl
66645            ! op.c
66646 ____________________________________________________________________________
66647 [ 19656] By: jhi                                   on 2003/06/02  08:28:51
66648         Log: Since pulling in File::Temp for tempfiles would pull in
66649              also Fcntl, miniperl could not open up tempfiles.  This broke
66650              the use of miniperl in VMS, as noticed by Craig Berry.
66651              Try to cure this by moving the creation of tempfile into its
66652              own routine, my_tmpfp(), which gets compiled differently
66653              for miniperl and perl.
66654      Branch: perl
66655            ! embed.fnc embed.h op.c perlio.c proto.h
66656 ____________________________________________________________________________
66657 [ 19655] By: jhi                                   on 2003/06/02  06:54:05
66658         Log: A pointless test, noticed by Craig Berry.
66659      Branch: perl
66660            ! perlio.c
66661 ____________________________________________________________________________
66662 [ 19654] By: rgs                                   on 2003/06/01  07:37:50
66663         Log: Two Cygwin patches from Gerrit.
66664
66665              Subject: [PATCH] perl.h, README.cygwin: Cygwin O_TEXT <> O_BINARY issue
66666              From: "Gerrit P. Haase" <gp@familiehaase.de>
66667              Date: Sat, 31 May 2003 14:12:07 +0200
66668              Message-ID: <179860591535.20030531141207@familiehaase.de>
66669
66670              Subject: [PATCH] t/io/layers.t, Cygwin != DOSISH
66671              Date: Sat, 31 May 2003 13:57:49 +0200
66672              Message-ID: <11859733881.20030531135749@familiehaase.de>
66673      Branch: perl
66674            ! README.cygwin perl.h t/io/layers.t
66675 ____________________________________________________________________________
66676 [ 19652] By: rgs                                   on 2003/05/31  19:54:31
66677         Log: Fix a case of segfault in gv_check(), by making
66678              it ignore non-GV values in stashes.
66679      Branch: perl
66680            ! gv.c t/op/stash.t
66681 ____________________________________________________________________________
66682 [ 19651] By: rgs                                   on 2003/05/31  18:48:59
66683         Log: Don't install test.pl files.
66684      Branch: perl
66685            ! installperl
66686 ____________________________________________________________________________
66687 [ 19650] By: rgs                                   on 2003/05/31  18:47:50
66688         Log: Regenerate internals pods.
66689      Branch: perl
66690            ! pod/perlapi.pod pod/perlintern.pod
66691 ____________________________________________________________________________
66692 [ 19649] By: rgs                                   on 2003/05/31  18:33:07
66693         Log: Subject: [PATCH] jumbo closure patch broke formats
66694              From: Dave Mitchell <davem@fdgroup.com>
66695              Date: Sat, 31 May 2003 19:54:48 +0100
66696              Message-ID: <20030531185448.GA6055@fdgroup.com>
66697              Plus restore the original test script for bug #22372
66698      Branch: perl
66699            ! pad.c t/op/write.t
66700 ____________________________________________________________________________
66701 [ 19648] By: jhi                                   on 2003/05/31  17:37:36
66702         Log: Better patch from Inaba Hiroto for
66703              [perl #22375] 'split'/'index' problem for utf8
66704      Branch: perl
66705            ! sv.c
66706 ____________________________________________________________________________
66707 [ 19647] By: rgs                                   on 2003/05/31  11:46:52
66708         Log: Subject: Re: [perl #22372] [PATCH] sv_chop() broken
66709              From: Enache Adrian <enache@rdslink.ro>
66710              Date: Sat, 31 May 2003 14:18:11 +0300
66711              Message-ID: <20030531111811.GA1240@ratsnest.hole>
66712      Branch: perl
66713            ! t/op/write.t
66714 ____________________________________________________________________________
66715 [ 19646] By: jhi                                   on 2003/05/31  05:40:15
66716         Log: Interesting patch(1) glitch.
66717      Branch: perl
66718            ! lib/Tie/File.pm
66719 ____________________________________________________________________________
66720 [ 19645] By: jhi                                   on 2003/05/31  05:37:10
66721         Log: Subject: Re: [perl #22372] [PATCH] sv_chop() broken
66722              From: Enache Adrian <enache@rdslink.ro>
66723              Date: Fri, 30 May 2003 18:52:28 +0300
66724              Message-ID: <20030530155228.GA872@ratsnest.hole>
66725      Branch: perl
66726            ! sv.c t/op/write.t
66727 ____________________________________________________________________________
66728 [ 19644] By: jhi                                   on 2003/05/31  05:31:11
66729         Log: Subject: [PATCH] ext/Encode/t/perlio.t filename tweak
66730              From: "Craig A. Berry" <craigberry@mac.com>
66731              Date: Fri, 30 May 2003 13:08:01 -0500
66732              Message-ID: <3ED79E01.8050401@mac.com>
66733      Branch: perl
66734            ! ext/Encode/t/perlio.t
66735 ____________________________________________________________________________
66736 [ 19643] By: jhi                                   on 2003/05/31  05:28:56
66737         Log: Upgrade to Tie::File 0.96.
66738      Branch: perl
66739            ! lib/Tie/File.pm lib/Tie/File/t/00_version.t
66740            ! lib/Tie/File/t/09_gen_rs.t
66741 ____________________________________________________________________________
66742 [ 19642] By: jhi                                   on 2003/05/30  19:06:02
66743         Log: test.pl-isation.
66744      Branch: perl
66745            ! t/op/index.t
66746 ____________________________________________________________________________
66747 [ 19641] By: jhi                                   on 2003/05/30  15:59:57
66748         Log: A bit of networking notworking negativity.
66749              (Inspiration from Jos.)
66750      Branch: perl
66751            ! pod/perlport.pod
66752 ____________________________________________________________________________
66753 [ 19640] By: jhi                                   on 2003/05/30  05:47:15
66754         Log: Fix for "#22375 'split'/'index' problem for utf8".
66755      Branch: perl
66756            ! sv.c t/op/index.t
66757 ____________________________________________________________________________
66758 [ 19639] By: jhi                                   on 2003/05/29  19:07:35
66759         Log: Add the test case for the already fixed
66760              [perl #22351] perl bug with 'e' substitution modifier
66761      Branch: perl
66762            ! t/op/subst.t
66763 ____________________________________________________________________________
66764 [ 19638] By: jhi                                   on 2003/05/29  18:56:46
66765         Log: Comment tweakage.
66766      Branch: perl
66767            ! intrpvar.h
66768 ____________________________________________________________________________
66769 [ 19637] By: rgs                                   on 2003/05/29  18:47:40
66770         Log: Subject: [PATCH] jumbo closure fix
66771              From: Dave Mitchell <davem@fdgroup.com>
66772              Date: Wed, 26 Feb 2003 14:49:47 +0000
66773              Message-ID: <20030226144947.A14444@fdgroup.com>
66774      Branch: perl
66775            ! embed.fnc embed.h embedvar.h ext/Devel/Peek/Peek.t intrpvar.h
66776            ! op.c pad.c perlapi.h pod/perldiag.pod pod/perlintern.pod
66777            ! pod/perlref.pod proto.h regcomp.c t/lib/warnings/pad
66778            ! t/op/closure.t
66779 ____________________________________________________________________________
66780 [ 19635] By: jhi                                   on 2003/05/29  09:13:06
66781         Log: Subject: Credits patch
66782              From: Ed Avis <ed@membled.com>
66783              Date: Sun, 18 May 2003 18:08:55 +0100 (BST)
66784              Message-ID: <Pine.LNX.4.20L2.0305181807080.10859-100000@budvar.future-i.net>
66785      Branch: perl
66786            ! lib/Tie/RefHash.pm
66787 ____________________________________________________________________________
66788 [ 19634] By: jhi                                   on 2003/05/29  09:11:30
66789         Log: Subject: [patch] IO::File->open() with encoding
66790              From: Pradeep Hodigere <phodigere@yahoo.com>
66791              Date: Mon, 19 May 2003 16:05:47 -0700 (PDT)
66792              Message-ID: <20030519230547.39731.qmail@web12302.mail.yahoo.com>
66793      Branch: perl
66794            + ext/IO/lib/IO/t/io_utf8.t
66795            ! MANIFEST ext/IO/lib/IO/File.pm
66796 ____________________________________________________________________________
66797 [ 19633] By: jhi                                   on 2003/05/29  08:18:09
66798         Log: A *much* cut-down version of the patches in the thread
66799              Subject: [perl #22224] 2 patches to perldiag.pod; for POSIX and Win32 errors
66800              From: Jim Cromie (via RT) <perlbug-followup@perl.org>
66801              Date: 16 May 2003 19:04:28 -0000
66802              Message-Id: <rt-22224-57743.7.22990607358@bugs6.perl.org>
66803      Branch: perl
66804            ! pod/perldiag.pod
66805 ____________________________________________________________________________
66806 [ 19632] By: jhi                                   on 2003/05/29  08:12:46
66807         Log: Subject: [PATCH] $x = $empty_hash{$undef_val} doesn't give a warning
66808              From: Dave Mitchell <davem@fdgroup.com>
66809              Date: Tue, 27 May 2003 19:31:10 +0100
66810              Message-ID: <20030527183110.GA22715@fdgroup.com>
66811      Branch: perl
66812            ! hv.c
66813 ____________________________________________________________________________
66814 [ 19631] By: jhi                                   on 2003/05/29  08:11:42
66815         Log: Document that setvbuf() is not probably any more available.
66816              Many reports, most recently by mjd in
66817              [perl #22339] IO::Handle::setvbuf not defined properly
66818      Branch: perl
66819            ! ext/IO/lib/IO/Handle.pm
66820 ____________________________________________________________________________
66821 [ 19630] By: jhi                                   on 2003/05/29  07:59:51
66822         Log: Subject: typo in pod/perlfunc.pod
66823              From: Alexey Mahotkin <alexm@w-m.ru>
66824              Date: Wed, 28 May 2003 15:18:04 +0400
66825              Message-ID: <878ysrs4k3.fsf@dim.w-m.ru>
66826      Branch: perl
66827            ! pod/perlfunc.pod
66828 ____________________________________________________________________________
66829 [ 19629] By: merijn                                on 2003/05/28  12:24:42
66830         Log: Subject: [PATCH] Re: a2p is linked against too many libraries
66831              From: Andy Dougherty <doughera@lafayette.edu>
66832              Date: Wed, 28 May 2003 09:20:06 -0400 (EDT)
66833              Message-ID: <Pine.SOL.4.53.0305280913350.27138@maxwell.phys.lafayette.edu>
66834      Branch: perl
66835            ! x2p/Makefile.SH
66836 ____________________________________________________________________________
66837 [ 19628] By: jhi                                   on 2003/05/28  05:26:43
66838         Log: Subject: [PATCH] Use "cmd.exe /x/d/c" as the default PERL5SHELL on Windows NT/2K/XP
66839              From: Jan Dubois <jand@ActiveState.com>
66840              Date: Mon, 26 May 2003 23:33:53 -0700
66841              Message-ID: <dv06dv48900iqv5hqddmbc6vt0efvto8d6@4ax.com>
66842      Branch: perl
66843            ! pod/perlrun.pod win32/win32.c
66844 ____________________________________________________________________________
66845 [ 19627] By: jhi                                   on 2003/05/28  05:08:07
66846         Log: OpenZaurus cross-compilation patches from Redvers Davies.
66847      Branch: perl
66848            ! Cross/Makefile Cross/Makefile.SH.patch Cross/README
66849            ! Cross/config.sh-arm-linux Cross/generate_config_sh
66850            ! Cross/installperl.patch
66851 ____________________________________________________________________________
66852 [ 19626] By: jhi                                   on 2003/05/27  06:30:54
66853         Log: For now reword the sysread/syswrite description to
66854              stress the fact that by default everything is still bytes.
66855      Branch: perl
66856            ! pod/perlfunc.pod
66857 ____________________________________________________________________________
66858 [ 19625] By: jhi                                   on 2003/05/26  20:31:56
66859         Log: Subject: Re: [perl #22299] goto doesn't find label
66860              From: Dave Mitchell <davem@fdgroup.com>
66861              Date: Sat, 24 May 2003 12:25:17 +0100
66862              Message-ID: <20030524112517.GA11761@fdgroup.com>
66863
66864              Subject: [PATCH] Re: [perl #22299] goto doesn't find label
66865              From: Dave Mitchell <davem@fdgroup.com>
66866              Date: Mon, 26 May 2003 13:47:11 +0100
66867              Message-ID: <20030526124710.GA17670@fdgroup.com>
66868      Branch: perl
66869            ! pp_ctl.c t/op/goto.t
66870 ____________________________________________________________________________
66871 [ 19623] By: merijn                                on 2003/05/26  11:19:38
66872         Log: Subject: [PATCH] for cygwin/perlld.in
66873              From: "Gerrit P. Haase" <gp@familiehaase.de>
66874              Date: Sat, 24 May 2003 16:51:29 +0200
66875              Message-ID: <162265353578.20030524165129@familiehaase.de>
66876      Branch: perl
66877            ! cygwin/perlld.in
66878 ____________________________________________________________________________
66879 [ 19622] By: jhi                                   on 2003/05/25  18:57:18
66880         Log: Regen modlib and toc.
66881      Branch: perl
66882            ! pod/perlmodlib.pod pod/perltoc.pod
66883 ____________________________________________________________________________
66884 [ 19621] By: jhi                                   on 2003/05/25  18:51:00
66885         Log: Run external commands only with localized sanitized $ENV{PATH}.
66886      Branch: perl
66887            ! ext/Sys/Hostname/Hostname.pm
66888 ____________________________________________________________________________
66889 [ 19620] By: jhi                                   on 2003/05/25  18:39:04
66890         Log: Subject: Re: [PATCH: perlio.h] maint snap @ 19613
66891              From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
66892              Date: Sun, 25 May 2003 21:17:42 +0200
66893              Message-ID: <003701c322f2$517fb5e0$0c2f1fac@R2D2>
66894      Branch: perl
66895            ! perlio.h
66896 ____________________________________________________________________________
66897 [ 19619] By: jhi                                   on 2003/05/25  18:36:17
66898         Log: Protect against race conditions: if the pid is not seen,
66899              neither will be the $0 change be seen (and vice versa).
66900      Branch: perl
66901            ! ext/threads/t/join.t
66902 ____________________________________________________________________________
66903 [ 19618] By: jhi                                   on 2003/05/24  19:54:39
66904         Log: Subject: [Encode] Minor bug in piconv induced by Getopt::Long
66905              From: Dan Kogai <dankogai@dan.co.jp>
66906              Date: 24 May 2003 19:50:48 -0000
66907              Message-ID: <20030524195048.16052.qmail@dan-gm.gm.dan.co.jp>
66908      Branch: perl
66909            ! ext/Encode/bin/piconv
66910 ____________________________________________________________________________
66911 [ 19610] By: jhi                                   on 2003/05/24  06:42:52
66912         Log: Subject: [PATCH #2] Re: [perl #22181] goto undefines my() variables
66913              From: Dave Mitchell <davem@fdgroup.com>
66914              Date: Thu, 22 May 2003 10:13:19 +0100
66915              Message-ID: <20030522091319.GA4568@fdgroup.com>
66916
66917              Subject: Re: [PATCH #2] Re: [perl #22181] goto undefines my() variables
66918              From: Dave Mitchell <davem@fdgroup.com>
66919              Date: Fri, 23 May 2003 17:09:44 +0100
66920              Message-ID: <20030523160944.GC9194@fdgroup.com>
66921      Branch: perl
66922            ! ext/B/B/Concise.pm ext/B/B/Deparse.pm ext/B/t/debug.t
66923            ! ext/B/t/deparse.t op.c op.h t/op/goto.t t/run/switchd.t
66924 ____________________________________________________________________________
66925 [ 19608] By: jhi                                   on 2003/05/24  06:30:40
66926         Log: Missing "to".
66927      Branch: perl
66928            ! NetWare/config_H.wc Porting/config_H config_h.SH
66929            ! plan9/config.plan9 plan9/config_h.sample uconfig.h
66930            ! win32/config_H.bc win32/config_H.gc win32/config_H.vc
66931            ! win32/config_H.vc64 wince/config_H.ce
66932 ____________________________________________________________________________
66933 [ 19607] By: jhi                                   on 2003/05/24  06:23:51
66934         Log: Introduce (undefined) pthread_attr_setscope to non-Configure lands.
66935      Branch: perl
66936            ! Cross/config.sh-arm-linux NetWare/config.wc
66937            ! NetWare/config_H.wc configure.com epoc/config.sh
66938            ! plan9/config.plan9 plan9/config_h.sample
66939            ! plan9/config_sh.sample uconfig.h uconfig.sh win32/config.bc
66940            ! win32/config.gc win32/config.vc win32/config.vc64
66941            ! win32/config_H.bc win32/config_H.gc win32/config_H.vc
66942            ! win32/config_H.vc64 wince/config.ce wince/config_H.ce
66943 ____________________________________________________________________________
66944 [ 19606] By: jhi                                   on 2003/05/24  06:05:17
66945         Log: Regen Glossary et al.
66946      Branch: perl
66947            ! Porting/Glossary Porting/config.sh Porting/config_H
66948 ____________________________________________________________________________
66949 [ 19604] By: jhi                                   on 2003/05/24  05:57:49
66950         Log: Add a real scan for pthread_attr_setscope().
66951      Branch: perl
66952            ! Configure config_h.SH ext/threads/threads.xs
66953 ____________________________________________________________________________
66954 [ 19603] By: jhi                                   on 2003/05/24  05:32:34
66955         Log: lib/ftp.pl requires the obsoleted (and removed) chat2.pl.
66956      Branch: perl
66957            - lib/ftp.pl
66958            ! MANIFEST
66959 ____________________________________________________________________________
66960 [ 19602] By: jhi                                   on 2003/05/23  17:02:28
66961         Log: Noticed by John P. Linderman.
66962      Branch: perl
66963            ! epoc/epocish.h mpeix/mpeixish.h perl.h unixish.h
66964 ____________________________________________________________________________
66965 [ 19601] By: jhi                                   on 2003/05/23  16:58:04
66966         Log: Subject: [PATCH] RE: state of deparse?
66967              From: Robin Barker <Robin.Barker@npl.co.uk>
66968              Date: Fri, 23 May 2003 17:42:37 +0100
66969              Message-ID: <533D273D4014D411AB1D00062938C4D90404653E@hotel.npl.co.uk>
66970      Branch: perl
66971            ! ext/B/B/Deparse.pm
66972 ____________________________________________________________________________
66973 [ 19600] By: jhi                                   on 2003/05/23  16:55:09
66974         Log: Subject: [PATCH] for Configure -Dnoextensions=Encode
66975              From: Robin Barker <Robin.Barker@npl.co.uk>
66976              Date: Fri, 23 May 2003 17:37:09 +0100
66977              Message-ID: <533D273D4014D411AB1D00062938C4D90404653D@hotel.npl.co.uk>
66978      Branch: perl
66979            ! ext/PerlIO/t/encoding.t ext/PerlIO/t/fallback.t
66980            ! ext/Storable/t/utf8hash.t lib/open.pm lib/open.t
66981 ____________________________________________________________________________
66982 [ 19599] By: jhi                                   on 2003/05/23  16:51:18
66983         Log: Subject: [PATCH] RE: [PATCH] RE: maint snapshot @ 19525
66984              From: Robin Barker <Robin.Barker@npl.co.uk>
66985              Date: Fri, 23 May 2003 17:32:22 +0100
66986              Message-ID: <533D273D4014D411AB1D00062938C4D90404653C@hotel.npl.co.uk>
66987      Branch: perl
66988            ! embed.pl perl.h perlio.c perlio.h proto.h
66989 ____________________________________________________________________________
66990 [ 19598] By: jhi                                   on 2003/05/23  16:05:36
66991         Log: Hasty editing, grumble.
66992      Branch: perl
66993            ! ext/POSIX/POSIX.xs
66994 ____________________________________________________________________________
66995 [ 19597] By: jhi                                   on 2003/05/23  16:02:30
66996         Log: Linewrapping MUAs, grumble.
66997      Branch: perl
66998            ! ext/POSIX/POSIX.xs
66999 ____________________________________________________________________________
67000 [ 19596] By: jhi                                   on 2003/05/23  16:00:51
67001         Log: U/WIN extension fix from John P. Linderman.
67002      Branch: perl
67003            ! ext/POSIX/POSIX.xs
67004 ____________________________________________________________________________
67005 [ 19595] By: jhi                                   on 2003/05/23  14:19:53
67006         Log: Subject: Re: Stateful PerlIO implemented [Was: [perl #22261] Was: Unrecognised BOM...]
67007              From: Dan Kogai <dankogai@dan.co.jp>
67008              Date: Sat, 24 May 2003 00:15:49 +0900
67009              Message-Id: <6F7B29DA-8D31-11D7-9F95-000393AE4244@dan.co.jp>
67010      Branch: perl
67011            ! ext/Encode/Changes ext/Encode/Unicode/Unicode.xs
67012            ! ext/Encode/t/perlio.t ext/PerlIO/encoding/encoding.pm
67013 ____________________________________________________________________________
67014 [ 19594] By: jhi                                   on 2003/05/23  13:06:25
67015         Log: Subject: [PATCH] ExtUtils::MakeMaker 6.10_03 -> 6.10_04
67016              From: Michael G Schwern <schwern@pobox.com>
67017              Date: Fri, 23 May 2003 02:10:46 -0700
67018              Message-ID: <20030523091046.GB11662@windhund.schwern.org>
67019      Branch: perl
67020            + lib/ExtUtils/META.yml lib/ExtUtils/MakeMaker/bytes.pm
67021            + lib/ExtUtils/t/bytes.t lib/ExtUtils/t/vmsish.t
67022            ! MANIFEST lib/ExtUtils/Changes lib/ExtUtils/Install.pm
67023            ! lib/ExtUtils/Liblist/Kid.pm lib/ExtUtils/MM_Any.pm
67024            ! lib/ExtUtils/MM_MacOS.pm lib/ExtUtils/MM_Unix.pm
67025            ! lib/ExtUtils/MM_VMS.pm lib/ExtUtils/MakeMaker.pm
67026            ! lib/ExtUtils/MakeMaker/FAQ.pod
67027            ! lib/ExtUtils/MakeMaker/Tutorial.pod lib/ExtUtils/Manifest.pm
67028            ! lib/ExtUtils/TODO lib/ExtUtils/t/Install.t
67029            ! lib/ExtUtils/t/Manifest.t lib/ExtUtils/t/basic.t
67030 ____________________________________________________________________________
67031 [ 19593] By: jhi                                   on 2003/05/23  12:56:23
67032         Log: Subject: Stateful PerlIO implemented [Was: [perl #22261] Was: Unrecognised BOM...]
67033              From: Dan Kogai <dankogai@dan.co.jp>
67034              Date: Fri, 23 May 2003 20:17:16 +0900
67035              Message-Id: <1C123D88-8D10-11D7-B277-000393AE4244@dan.co.jp>
67036      Branch: perl
67037            ! ext/Encode/Encode.pm ext/Encode/Encode.xs
67038            ! ext/Encode/Unicode/Unicode.pm ext/Encode/Unicode/Unicode.xs
67039            ! ext/Encode/lib/Encode/Encoding.pm
67040            ! ext/PerlIO/encoding/encoding.xs
67041 ____________________________________________________________________________
67042 [ 19592] By: jhi                                   on 2003/05/23  12:52:05
67043         Log: Workaround for buggy gcc 2.95.3 in openbsd/sparc64.
67044      Branch: perl
67045            ! ext/Time/HiRes/HiRes.pm ext/Time/HiRes/HiRes.t
67046            ! ext/Time/HiRes/HiRes.xs
67047 ____________________________________________________________________________
67048 [ 19590] By: jhi                                   on 2003/05/22  11:51:46
67049         Log: Subject: Re: [cpan #2629] Wrong assumption in numeric comparison
67050              From: Dan Kogai <dankogai@dan.co.jp>
67051              Date: Thu, 22 May 2003 18:46:40 +0900
67052              Message-Id: <49E36875-8C3A-11D7-9C91-000393AE4244@dan.co.jp>
67053      Branch: perl
67054            ! ext/Encode/encoding.pm
67055 ____________________________________________________________________________
67056 [ 19589] By: rgs                                   on 2003/05/21  21:37:28
67057         Log: Subject: [PATCH] [perl #21887] h2xs becoming enum-aware
67058              From: Tassilo von Parseval <tassilo.parseval@post.rwth-aachen.de>
67059              Date: Tue, 13 May 2003 10:36:32 +0200
67060              Message-id: <20030513083631.GA21782@ethan>
67061      Branch: perl
67062            ! utils/h2xs.PL
67063 ____________________________________________________________________________
67064 [ 19588] By: rgs                                   on 2003/05/21  21:03:04
67065         Log: New warning "Useless localization of %s", based on
67066              Subject: [PATCH] new warning "Useless localization of %s is deprecated"
67067              From: Dave Mitchell <davem@fdgroup.com>
67068              Date: Wed, 30 Apr 2003 21:17:38 +0100
67069              Message-ID: <20030430201738.GA22054@fdgroup.com>
67070
67071              The proposed patch added this warning in the 'deprecated' category ;
67072              I think this category is for things that exist and will be removed,
67073              rather than for things that don't exist and that will maybe be added.
67074      Branch: perl
67075            ! op.c pod/perldiag.pod t/lib/warnings/op
67076 ____________________________________________________________________________
67077 [ 19586] By: rgs                                   on 2003/05/21  19:56:38
67078         Log: Introduce a new preprocessor symbol, PERL_DISABLE_PMC, to
67079              disable the loading of .pmc files if defined.
67080              Rename the function S_doopen_pmc to S_doopen_pm.
67081      Branch: perl
67082            ! Porting/thirdclean embed.fnc embed.h pp_ctl.c proto.h
67083 ____________________________________________________________________________
67084 [ 19585] By: jhi                                   on 2003/05/21  19:28:23
67085         Log: More U/WIN tweaks from John P. Linderman.
67086      Branch: perl
67087            ! t/io/layers.t t/io/tell.t
67088 ____________________________________________________________________________
67089 [ 19584] By: rgs                                   on 2003/05/21  19:27:13
67090         Log: Subject: [PATCH] perldata.pod revamp rev. 3
67091              From: Shlomi Fish <shlomif@vipe.technion.ac.il>
67092              Date: Wed, 14 May 2003 17:46:05 +0300 (IDT)
67093              Message-ID: <Pine.LNX.4.33L2.0305141744520.24207-200000@vipe.technion.ac.il>
67094      Branch: perl
67095            ! pod/perldata.pod
67096 ____________________________________________________________________________
67097 [ 19583] By: jhi                                   on 2003/05/21  19:18:21
67098         Log: Subject: Re: [perl #22231] <$foo> is parsed as glob(' ' . $foo) if Switch.pm is used
67099              From: Ronald J Kimball <rjk@linguist.Thayer.dartmouth.edu>
67100              Date: Mon, 19 May 2003 17:53:25 -0400
67101              Message-ID: <20030519215325.GE1629175@linguist.thayer.dartmouth.edu>
67102
67103              (the bug id corrected to be #22231, not #22238)
67104      Branch: perl
67105            ! lib/Switch.pm
67106 ____________________________________________________________________________
67107 [ 19582] By: jhi                                   on 2003/05/21  14:17:14
67108         Log: MAN3PODS => {} good.  (Was in 5.8.0, has been lost at some point.)
67109      Branch: perl
67110            ! ext/MIME/Base64/Makefile.PL
67111 ____________________________________________________________________________
67112 [ 19581] By: jhi                                   on 2003/05/21  14:15:26
67113         Log: U/WIN test tweak from John P. Linderman.
67114      Branch: perl
67115            ! t/op/chdir.t
67116 ____________________________________________________________________________
67117 [ 19580] By: jhi                                   on 2003/05/21  13:06:13
67118         Log: VMS test tweak from Craig Berry.
67119      Branch: perl
67120            ! lib/DirHandle.t
67121 ____________________________________________________________________________
67122 [ 19579] By: jhi                                   on 2003/05/21  13:03:34
67123         Log: U/WIN test nit for John P. Linderman.
67124      Branch: perl
67125            ! ext/Cwd/t/cwd.t
67126 ____________________________________________________________________________
67127 [ 19578] By: jhi                                   on 2003/05/21  13:01:42
67128         Log: Subject: [Encode] 1.95 released
67129              From: Dan Kogai <dankogai@dan.co.jp>
67130              Date: Wed, 21 May 2003 18:26:26 +0900
67131              Message-Id: <4B8D9AB5-8B6E-11D7-848A-000393AE4244@dan.co.jp>
67132      Branch: perl
67133            ! ext/Encode/Changes ext/Encode/Encode.pm ext/Encode/MANIFEST
67134            ! ext/Encode/META.yml ext/Encode/Unicode/Unicode.pm
67135            ! ext/Encode/lib/Encode/Alias.pm ext/Encode/lib/Encode/Config.pm
67136            ! ext/Encode/lib/Encode/Unicode/UTF7.pm ext/Encode/t/Unicode.t
67137            ! ext/Encode/ucm/8859-1.ucm ext/Encode/ucm/8859-10.ucm
67138            ! ext/Encode/ucm/8859-11.ucm ext/Encode/ucm/8859-13.ucm
67139            ! ext/Encode/ucm/8859-14.ucm ext/Encode/ucm/8859-15.ucm
67140            ! ext/Encode/ucm/8859-16.ucm ext/Encode/ucm/8859-2.ucm
67141            ! ext/Encode/ucm/8859-3.ucm ext/Encode/ucm/8859-4.ucm
67142            ! ext/Encode/ucm/8859-5.ucm ext/Encode/ucm/8859-6.ucm
67143            ! ext/Encode/ucm/8859-7.ucm ext/Encode/ucm/8859-8.ucm
67144            ! ext/Encode/ucm/8859-9.ucm
67145 ____________________________________________________________________________
67146 [ 19575] By: rgs                                   on 2003/05/20  19:22:30
67147         Log: Enhance the failure reporting for the pod2html tests
67148      Branch: perl
67149            ! lib/Pod/t/htmlview.t lib/Pod/t/pod2html-lib.pl
67150 ____________________________________________________________________________
67151 [ 19574] By: rgs                                   on 2003/05/20  18:52:21
67152         Log: Upgrade to Getopt::Long 2.33
67153              (mostly a version number increment)
67154      Branch: perl
67155            ! lib/Getopt/Long.pm lib/Getopt/Long/CHANGES
67156            ! lib/Getopt/Long/README
67157 ____________________________________________________________________________
67158 [ 19573] By: rgs                                   on 2003/05/20  18:43:37
67159         Log: Upgrade to CPAN 1.70_54
67160              Subject: Re: CPAN.pm into blead
67161              From: Andreas J Koenig <andreas.koenig@anima.de>
67162              Date: Tue, 20 May 2003 11:31:16 +0200
67163              Message-ID: <87of1y6k2j.fsf@franz.ak.mind.de>
67164      Branch: perl
67165            - lib/CPAN/README
67166            ! MANIFEST lib/CPAN.pm lib/CPAN/FirstTime.pm lib/CPAN/Nox.pm
67167 ____________________________________________________________________________
67168 [ 19571] By: jhi                                   on 2003/05/19  19:52:23
67169         Log: Further -Uuseperlio tweaking.
67170      Branch: perl
67171            ! ext/Encode/t/Unicode.t
67172 ____________________________________________________________________________
67173 [ 19570] By: rgs                                   on 2003/05/19  19:20:48
67174         Log: Subject: Re: Possible precedence problem on bitwise ^ operator
67175              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
67176              Date: Sun, 18 May 2003 19:21:01 -0700
67177              Message-ID: <N+Dy+gzkg+XX092yn@efn.org>
67178              (with tweaks to perldiag.pod)
67179      Branch: perl
67180            ! op.c pod/perldiag.pod
67181 ____________________________________________________________________________
67182 [ 19569] By: jhi                                   on 2003/05/19  19:02:23
67183         Log: More Ultrix double definition avoidance.
67184      Branch: perl
67185            ! ext/Socket/Socket.xs
67186 ____________________________________________________________________________
67187 [ 19566] By: jhi                                   on 2003/05/19  04:58:25
67188         Log: Integrate perlio:
67189              [ 19556]
67190              Fix ticket 18265
67191
67192              [ 19557]
67193              EINTR retry should exit on count >= 0 not !=0
67194      Branch: perl
67195           !> perlio.c
67196 ____________________________________________________________________________
67197 [ 19565] By: jhi                                   on 2003/05/19  04:56:16
67198         Log: Nekkid numbers.
67199      Branch: perl
67200            ! ext/threads/threads.xs
67201 ____________________________________________________________________________
67202 [ 19564] By: jhi                                   on 2003/05/19  04:52:49
67203         Log: Meaningless cosmetics.
67204      Branch: perl
67205            ! ext/threads/threads.xs
67206 ____________________________________________________________________________
67207 [ 19563] By: jhi                                   on 2003/05/19  04:47:53
67208         Log: Make Perl_ithread_self() a bit more helpful when
67209              finding the thread fails (suggested by Stas in
67210              perl-ithreads Mar 01)
67211      Branch: perl
67212            ! ext/threads/threads.xs
67213 ____________________________________________________________________________
67214 [ 19562] By: jhi                                   on 2003/05/19  04:40:11
67215         Log: Slightly wrong panic messages.
67216      Branch: perl
67217            ! ext/threads/threads.xs
67218 ____________________________________________________________________________
67219 [ 19561] By: jhi                                   on 2003/05/19  04:33:31
67220         Log: Ultrix: the #19435 helped the IO extension, so this should
67221              help the Socket extension (socket structs redefinitions).
67222      Branch: perl
67223            ! ext/Socket/Socket.xs
67224 ____________________________________________________________________________
67225 [ 19560] By: jhi                                   on 2003/05/19  04:30:01
67226         Log: Based on
67227
67228              Subject: [PATCH threads.xs] no system scope on VMS
67229              From: "Craig A. Berry" <craigberry@mac.com>
67230              Date: Sun, 18 May 2003 23:02:07 -0500
67231              Message-ID: <3EC8573F.6050005@mac.com>
67232
67233              but instead go for #ifdef PTHREAD_SCOPE_SYSTEM.
67234      Branch: perl
67235            ! ext/threads/threads.xs
67236 ____________________________________________________________________________
67237 [ 19559] By: jhi                                   on 2003/05/19  04:24:27
67238         Log: Make the test work without perlio, from Dan Kogai.
67239      Branch: perl
67240            ! ext/Encode/t/Unicode.t
67241 ____________________________________________________________________________
67242 [ 19558] By: rgs                                   on 2003/05/18  21:40:10
67243         Log: Subject: [PATCH] Re: [PATCH pod/perlsyn.pod pod/perltrap.pod] Unseding perlsyn
67244              From: Michael G Schwern <schwern@pobox.com>
67245              Date: Wed, 14 May 2003 15:36:23 -0700
67246              Message-ID: <20030514223623.GD23350@windhund.schwern.org>
67247      Branch: perl
67248            ! pod/perlsyn.pod pod/perltrap.pod
67249 ____________________________________________________________________________
67250 [ 19552] By: jhi                                   on 2003/05/18  07:57:23
67251         Log: Integrate from perlio:
67252              [ 19542]
67253              Fix ticket #22219
67254
67255              [ 19543]
67256              Spotted a bare close() where PerlLIO_close() seems correct.
67257      Branch: perl
67258           !> doio.c perlio.c
67259 ____________________________________________________________________________
67260 [ 19550] By: jhi                                   on 2003/05/18  06:23:50
67261         Log: UTF-7 tweak from Dan Kogai.
67262      Branch: perl
67263            ! ext/Encode/lib/Encode/Unicode/UTF7.pm
67264 ____________________________________________________________________________
67265 [ 19549] By: jhi                                   on 2003/05/18  05:58:58
67266         Log: The 'quotes' really are important (caught by Enache Adrian).
67267      Branch: perl
67268            ! Makefile.SH
67269 ____________________________________________________________________________
67270 [ 19548] By: jhi                                   on 2003/05/17  16:39:19
67271         Log: Subject: [Encode] UTF-7 Support
67272              From: Dan Kogai <dankogai@dan.co.jp>
67273              Date: Sun, 18 May 2003 00:45:35 +0900
67274              Message-Id: <99C4504E-887E-11D7-840A-000393AE4244@dan.co.jp>
67275      Branch: perl
67276            + ext/Encode/lib/Encode/Unicode/UTF7.pm
67277            ! MANIFEST ext/Encode/Changes ext/Encode/MANIFEST
67278            ! ext/Encode/Unicode/Unicode.pm ext/Encode/lib/Encode/Alias.pm
67279            ! ext/Encode/lib/Encode/Config.pm
67280            ! ext/Encode/lib/Encode/Supported.pod ext/Encode/t/Unicode.t
67281 ____________________________________________________________________________
67282 [ 19547] By: jhi                                   on 2003/05/17  16:26:47
67283         Log: Old (4.2BSD, like Ultrix) Bourne shells do not understand
67284              non-left-aligned heredocs.
67285      Branch: perl
67286            ! Makefile.SH
67287 ____________________________________________________________________________
67288 [ 19545] By: jhi                                   on 2003/05/17  15:51:07
67289         Log: Subject: Re: Last Call For (Least) Favourite Issues For 5.8.1
67290              From: Alan Burlison <Alan.Burlison@sun.com>
67291              Date: Thu, 15 May 2003 22:17:55 +0100
67292              Message-ID: <3EC40403.9000804@sun.com>
67293
67294              (fixed symbol scanning for Solaris 10)
67295      Branch: perl
67296            ! Configure
67297 ____________________________________________________________________________
67298 [ 19541] By: rgs                                   on 2003/05/17  12:10:14
67299         Log: Upgrade to Getopt::Long 2.32_05
67300      Branch: perl
67301            ! lib/Getopt/Long.pm lib/Getopt/Long/CHANGES
67302            ! lib/Getopt/Long/README lib/Getopt/Long/t/gol-basic.t
67303            ! lib/Getopt/Long/t/gol-compat.t lib/Getopt/Long/t/gol-linkage.t
67304            ! lib/Getopt/Long/t/gol-oo.t
67305 ____________________________________________________________________________
67306 [ 19540] By: rgs                                   on 2003/05/17  11:46:25
67307         Log: Clarify the explanation of the warning "Possible precedence problem
67308              on bitwise operator".
67309      Branch: perl
67310            ! pod/perldiag.pod
67311 ____________________________________________________________________________
67312 [ 19539] By: rgs                                   on 2003/05/17  11:36:08
67313         Log: Fix bug #22216 : B::Deparse can't handle "use Module Version"
67314              with fractional version numbers or v-strings.
67315      Branch: perl
67316            ! ext/B/B/Deparse.pm
67317 ____________________________________________________________________________
67318 [ 19537] By: gsar                                  on 2003/05/17  06:32:46
67319         Log: missing init in change#19533
67320      Branch: perl
67321            ! win32/win32sck.c
67322 ____________________________________________________________________________
67323 [ 19536] By: gsar                                  on 2003/05/17  06:07:07
67324         Log: apply Net::Ping patch that makes the fork()-based approach
67325              work better on windows (Marcus Holland-Moritz <mhx-perl@gmx.net>)
67326
67327              the code this affects is currently not enabled anywhere, but
67328              could be enabled if the non-blocking approach runs into problems
67329              on older windows versions
67330      Branch: perl
67331            ! lib/Net/Ping.pm
67332 ____________________________________________________________________________
67333 [ 19535] By: gsar                                  on 2003/05/17  05:54:39
67334         Log: improve the implementation of Net::Ping on windows by avoiding
67335              fork(), which is pretty heavy-weight for this kind of
67336              application; use non-blocking sockets instead
67337
67338              has been verified to work on Win2k but will need testing on
67339              other flavors of windows
67340
67341              there is a single known failure on windows in 450_service.t (test 18)
67342              due to what appears to be bugs in the ping_syn()/ack() code
67343      Branch: perl
67344            ! lib/Net/Ping.pm
67345 ____________________________________________________________________________
67346 [ 19534] By: gsar                                  on 2003/05/17  04:53:06
67347         Log: change#16723 broke the ioctl() return value on platforms
67348              that have ioctl() but no fcntl() (e.g. windows)
67349
67350              change#17577 then attempted to fix the bustage, but got
67351              it wrong
67352      Branch: perl
67353            ! pp_sys.c
67354 ____________________________________________________________________________
67355 [ 19533] By: gsar                                  on 2003/05/17  04:49:18
67356         Log: avoid select() on windows destroying errno (used to typically
67357              always sets it to EINVAL due to the way it maps the FD_SETs)
67358      Branch: perl
67359            ! win32/win32sck.c
67360 ____________________________________________________________________________
67361 [ 19532] By: jhi                                   on 2003/05/16  18:21:27
67362         Log: The suggested patch for [perl #22201] "patch: perl 5.8.0
67363              compile error on ia64/HP-UX (comparing incompatible pointers)"
67364              plus a possible cure for the warning mentioned in the case.
67365      Branch: perl
67366            ! ext/Storable/Storable.xs
67367 ____________________________________________________________________________
67368 [ 19531] By: jhi                                   on 2003/05/16  17:56:06
67369         Log: Apply the supplied patch for [perl #22195]
67370              "File::Find, sorted directory traversal order is inverted"
67371      Branch: perl
67372            ! lib/File/Find.pm
67373 ____________________________________________________________________________
67374 [ 19528] By: jhi                                   on 2003/05/16  15:56:33
67375         Log: Subject: [PATCH] RE: maint snapshot @ 19525
67376              From: Robin Barker <Robin.Barker@npl.co.uk>
67377              Date: Fri, 16 May 2003 17:16:57 +0100
67378              Message-ID: <533D273D4014D411AB1D00062938C4D90404651D@hotel.npl.co.uk>
67379
67380              (Part #2: the hv.c SVf)
67381      Branch: perl
67382            ! hv.c
67383 ____________________________________________________________________________
67384 [ 19527] By: jhi                                   on 2003/05/16  15:55:10
67385         Log: Subject: [PATCH] RE: maint snapshot @ 19525
67386              From: Robin Barker <Robin.Barker@npl.co.uk>
67387              Date: Fri, 16 May 2003 17:16:57 +0100
67388              Message-ID: <533D273D4014D411AB1D00062938C4D90404651D@hotel.npl.co.uk>
67389
67390              (Part #1: the __format__ and __printf__)
67391      Branch: perl
67392            ! Configure embed.pl perlio.c proto.h
67393 ____________________________________________________________________________
67394 [ 19523] By: jhi                                   on 2003/05/14  05:19:05
67395         Log: Subject: Re: [PATCH] Sync up MIME-Base64 to latest on CPAN
67396              From: Gisle Aas <gisle@ActiveState.com>
67397              Date: 13 May 2003 19:51:19 -0700
67398              Message-ID: <lrptmmw89k.fsf@caliper.activestate.com>
67399      Branch: perl
67400            ! ext/MIME/Base64/Base64.pm ext/MIME/Base64/Base64.xs
67401            ! ext/MIME/Base64/Changes ext/MIME/Base64/QuotedPrint.pm
67402            ! ext/MIME/Base64/t/quoted-print.t
67403 ____________________________________________________________________________
67404 [ 19522] By: jhi                                   on 2003/05/14  05:11:49
67405         Log: More Panther moves.
67406      Branch: perl
67407            ! Makefile.SH hints/darwin.sh
67408 ____________________________________________________________________________
67409 [ 19521] By: jhi                                   on 2003/05/13  19:33:44
67410         Log: Curliff and liff with ease.
67411      Branch: perl
67412            + Porting/curliff.pl
67413            ! MANIFEST
67414 ____________________________________________________________________________
67415 [ 19520] By: jhi                                   on 2003/05/13  18:59:51
67416         Log: Use /usr/bin/perl (de facto in Porting/ scripts).
67417      Branch: perl
67418            ! Porting/sort_perldiag.pl
67419 ____________________________________________________________________________
67420 [ 19518] By: jhi                                   on 2003/05/13  18:53:48
67421         Log: Subject: [PATCH] [perl #8599] s/catenate/concatenate/
67422              From: Casey West <casey@geeknest.com>
67423              Date: Fri, 9 May 2003 04:00:44 -0400
67424              Message-ID: <20030509080044.GA49820@geeknest.com>
67425
67426              (except for the dup.t patch which diddled with system().)
67427      Branch: perl
67428            ! Configure NetWare/config_H.wc Porting/config_H README.Y2K
67429            ! config_h.SH lib/File/Spec.pm lib/File/Spec/Unix.pm
67430            ! plan9/config.plan9 plan9/config_h.sample uconfig.h
67431            ! win32/config_H.bc win32/config_H.gc win32/config_H.vc
67432            ! win32/config_H.vc64 wince/config_H.ce
67433 ____________________________________________________________________________
67434 [ 19517] By: jhi                                   on 2003/05/13  18:39:40
67435         Log: Subject: [PATCH] Sync up MIME-Base64 to latest on CPAN
67436              From: Gisle Aas <gisle@ActiveState.com>
67437              Date: 13 May 2003 09:59:50 -0700
67438              Message-ID: <lru1byzss9.fsf@caliper.activestate.com>
67439      Branch: perl
67440            ! ext/MIME/Base64/Base64.pm ext/MIME/Base64/Base64.xs
67441            ! ext/MIME/Base64/Changes ext/MIME/Base64/QuotedPrint.pm
67442            ! ext/MIME/Base64/t/quoted-print.t
67443 ____________________________________________________________________________
67444 [ 19516] By: jhi                                   on 2003/05/13  18:37:11
67445         Log: Subject: [PATCH] More perldiag.pod sorting
67446              From: Ronald J Kimball <rjk@linguist.thayer.dartmouth.edu>
67447              Date: Tue, 13 May 2003 15:13:53 -0400
67448              Message-ID: <20030513191353.GB1556429@linguist.thayer.dartmouth.edu>
67449
67450              (plus add 'no locale;')
67451      Branch: perl
67452            + Porting/sort_perldiag.pl
67453            ! MANIFEST pod/perldiag.pod
67454 ____________________________________________________________________________
67455 [ 19514] By: jhi                                   on 2003/05/13  17:38:09
67456         Log: Detypo.
67457      Branch: perl
67458            ! lib/Unicode/UCD.pm
67459 ____________________________________________________________________________
67460 [ 19512] By: gsar                                  on 2003/05/13  13:28:42
67461         Log: make it easier to reproduce the bug
67462      Branch: perl
67463            ! lib/Tie/File.pm
67464 ____________________________________________________________________________
67465 [ 19511] By: gsar                                  on 2003/05/13  13:08:47
67466         Log: the \do {local *FH} trick in Tie::File was really only needed
67467              on 5.005 and earlier, since later versions can autovivify
67468              the handle
67469
67470              however, a search in the p5p archives reveals the trick doesn't
67471              fully work in the versions it is needed in, so use the more
67472              standard Symbol::gensym() way
67473      Branch: perl
67474            ! lib/Tie/File.pm lib/Tie/File/t/09_gen_rs.t
67475 ____________________________________________________________________________
67476 [ 19510] By: gsar                                  on 2003/05/13  12:36:01
67477         Log: $Config{usethreads} wasn't being set on windows
67478      Branch: perl
67479            ! win32/Makefile win32/makefile.mk
67480 ____________________________________________________________________________
67481 [ 19509] By: jhi                                   on 2003/05/13  12:24:19
67482         Log: Reinstate the #19498 but now skip the crashing
67483              tests (when threaded) as TODOs.
67484      Branch: perl
67485            ! lib/Tie/File.pm lib/Tie/File/t/09_gen_rs.t
67486 ____________________________________________________________________________
67487 [ 19508] By: jhi                                   on 2003/05/13  11:22:06
67488         Log: Revert #19498 since it broke threaded builds.
67489      Branch: perl
67490            ! lib/Tie/File.pm
67491 ____________________________________________________________________________
67492 [ 19507] By: jhi                                   on 2003/05/13  05:20:56
67493         Log: Better be explicit with dangling elses.
67494      Branch: perl
67495            ! pp.c
67496 ____________________________________________________________________________
67497 [ 19506] By: jhi                                   on 2003/05/13  04:46:18
67498         Log: Detypo Pantherisms.
67499      Branch: perl
67500            ! Makefile.SH hints/darwin.sh
67501 ____________________________________________________________________________
67502 [ 19505] By: rgs                                   on 2003/05/12  21:49:21
67503         Log: Subject: Re: Bug stomping fun. [PATCH: bug #1016]
67504              From: Alex Vandiver <alexmv@MIT.EDU>
67505              Date: 02 May 2003 06:45:05 -0400
67506              Message-Id: <1051872303.26203.104.camel@supox>
67507              (plus perldiag nit)
67508      Branch: perl
67509            ! dump.c gv.c hv.c pod/perldiag.pod pp.c pp_hot.c sv.c
67510            ! t/comp/package.t
67511 ____________________________________________________________________________
67512 [ 19504] By: rgs                                   on 2003/05/12  20:52:52
67513         Log: Small nit in perlsyn about the new // operator
67514      Branch: perl
67515            ! pod/perlsyn.pod
67516 ____________________________________________________________________________
67517 [ 19503] By: rgs                                   on 2003/05/12  19:43:07
67518         Log: Use a more sophisticated heuristics to produce the warning
67519              'Parentheses missing around "%s" list'. This fixes bug #22147.
67520              Also, the warning is now produced for C<local *a,*b;>.
67521      Branch: perl
67522            ! op.c t/lib/warnings/op
67523 ____________________________________________________________________________
67524 [ 19502] By: jhi                                   on 2003/05/12  19:34:10
67525         Log: Work also without perlio.
67526      Branch: perl
67527            ! t/io/dup.t
67528 ____________________________________________________________________________
67529 [ 19500] By: jhi                                   on 2003/05/12  05:25:14
67530         Log: Panther preparation.
67531      Branch: perl
67532            ! Makefile.SH hints/darwin.sh
67533 ____________________________________________________________________________
67534 [ 19499] By: jhi                                   on 2003/05/12  04:49:57
67535         Log: More moves to intrpvar.h.
67536      Branch: perl
67537            ! embedvar.h intrpvar.h perlapi.h perlvars.h sv.c
67538 ____________________________________________________________________________
67539 [ 19498] By: gsar                                  on 2003/05/12  01:40:46
67540         Log: fix for Tie::File test failures on windows: the problem was
67541              that Tie::File did not close any file handles it opens internally,
67542              leading to file handle leaks and t/tf* temporary file littering;
67543              we now close the handle iff Tie::File opened it
67544
67545              this fix unearths what appears to be a perl bug in localizing globs:
67546              09_gen_rs.t fails due to a prematurely closed filehandle, although
67547              it wasn't explicitly closed anywhere by the code (renaming the
67548              *FH at line 97 to *FH1 makes it work, but I haven't done this
67549              to allow the bug to be tracked down)
67550      Branch: perl
67551            ! lib/Tie/File.pm
67552 ____________________________________________________________________________
67553 [ 19497] By: jhi                                   on 2003/05/11  20:17:30
67554         Log: Move the thread *hook into interpreter.
67555      Branch: perl
67556            ! embedvar.h intrpvar.h perlapi.h perlvars.h sv.c
67557 ____________________________________________________________________________
67558 [ 19496] By: rgs                                   on 2003/05/11  20:06:03
67559         Log: Subject: [PATCH] [perl #7391] Perl crashes with certain write() formats.
67560              From: Dave Mitchell <davem@fdgroup.com>
67561              Date: Sat, 10 May 2003 01:45:23 +0100
67562              Message-ID: <20030510004523.GC20871@fdgroup.com>
67563      Branch: perl
67564            ! pp_ctl.c
67565 ____________________________________________________________________________
67566 [ 19495] By: rgs                                   on 2003/05/11  20:01:10
67567         Log: Open UNIX is not really "formerly Unixware", since the most
67568              recent releases are known as Unixware, not as Open UNIX.
67569      Branch: perl
67570            ! pod/perlport.pod
67571 ____________________________________________________________________________
67572 [ 19494] By: jhi                                   on 2003/05/11  19:52:38
67573         Log: Slight tweaks to the platform list.
67574      Branch: perl
67575            ! pod/perlport.pod
67576 ____________________________________________________________________________
67577 [ 19493] By: rgs                                   on 2003/05/11  19:13:00
67578         Log: Subject: Re: [PATCH] [perl #8636] [perl #8634] Both patches together for perlop
67579              From: Casey West <casey@geeknest.com>
67580              Date: Fri, 9 May 2003 10:30:13 -0400
67581              Message-ID: <20030509143013.GM49820@geeknest.com>
67582      Branch: perl
67583            ! pod/perlop.pod
67584 ____________________________________________________________________________
67585 [ 19492] By: rgs                                   on 2003/05/11  19:04:27
67586         Log: perlport.pod nit for doc bug #8253.
67587      Branch: perl
67588            ! pod/perlport.pod
67589 ____________________________________________________________________________
67590 [ 19491] By: jhi                                   on 2003/05/11  17:50:49
67591         Log: Use test.pl.
67592      Branch: perl
67593            ! t/io/fflush.t
67594 ____________________________________________________________________________
67595 [ 19490] By: jhi                                   on 2003/05/11  17:46:09
67596         Log: Try to handle a $^X with spaces in it.
67597      Branch: perl
67598            ! t/test.pl
67599 ____________________________________________________________________________
67600 [ 19489] By: jhi                                   on 2003/05/11  17:44:28
67601         Log: Separate the creation of the command to run by
67602              runperl() into its own function, _create_runperl().
67603      Branch: perl
67604            ! t/test.pl
67605 ____________________________________________________________________________
67606 [ 19488] By: jhi                                   on 2003/05/11  16:52:00
67607         Log: Fixup the method behaviour table.
67608      Branch: perl
67609            ! pod/perliol.pod
67610 ____________________________________________________________________________
67611 [ 19487] By: jhi                                   on 2003/05/11  16:43:26
67612         Log: Integrate from perlio:
67613              [ 19474]
67614              Tweaks to Jarkko's NULL deref checks in perlio.c
67615
67616              [ 19475]
67617              Fix for bugs 21717 and 22140.
67618              Win32's lseek claims to have succeeded in pipes etc. Which confuses :perlio
67619              and derived layers. So have :unix's "pushed" method stat() the fd and
67620              cache non S_ISREG nature. Have Unix_seek fail if fd is NOT S_ISREG to match
67621              UNIX behaviour.
67622
67623              [ 19479]
67624              Better but still unproven fix for lseek() on pipes.
67625
67626              [ 19483]
67627              Unused variable
67628
67629              [ 19485]
67630              Tests to prove Ticket 9468 is fixed.
67631
67632              [ 19486]
67633              add test for change#19475,19479 (bugs#21717,22140)
67634      Branch: perl
67635           !> ext/Encode/Encode.xs perlio.c perliol.h t/io/dup.t
67636           !> t/io/fflush.t
67637 ____________________________________________________________________________
67638 [ 19484] By: gsar                                  on 2003/05/11  15:37:14
67639         Log: fix Embed.t failure on windows: PERL_SYS_TERM() is implemented
67640              in terms of an exported function rather than as an inlined
67641              macro (latter wants PL_op_mutex which isn't exported as such)
67642
67643              Jarkko: please merge into maint-5.8
67644      Branch: perl
67645            ! dosish.h makedef.pl win32/win32.c win32/win32.h
67646 ____________________________________________________________________________
67647 [ 19482] By: jhi                                   on 2003/05/11  07:53:26
67648         Log: Test _getcode().
67649      Branch: perl
67650            ! lib/Unicode/UCD.t
67651 ____________________________________________________________________________
67652 [ 19481] By: jhi                                   on 2003/05/11  06:25:08
67653         Log: Clarify the doc (and the code) for Unicode code points.
67654      Branch: perl
67655            ! lib/Unicode/UCD.pm
67656 ____________________________________________________________________________
67657 [ 19480] By: jhi                                   on 2003/05/11  06:18:06
67658         Log: Another doc suggestion from terry@eatoni.com (terry jones):
67659              use codepoints that return undef.
67660      Branch: perl
67661            ! lib/Unicode/UCD.pm
67662 ____________________________________________________________________________
67663 [ 19478] By: jhi                                   on 2003/05/10  19:01:17
67664         Log: Add Encode's META.yml.
67665      Branch: perl
67666            + ext/Encode/META.yml
67667            ! MANIFEST
67668 ____________________________________________________________________________
67669 [ 19477] By: jhi                                   on 2003/05/10  18:59:29
67670         Log: Upgrade to Encode 1.94.
67671      Branch: perl
67672            ! ext/Encode/AUTHORS ext/Encode/Changes ext/Encode/Encode.pm
67673            ! ext/Encode/MANIFEST ext/Encode/bin/piconv
67674            ! ext/Encode/lib/Encode/MIME/Header.pm ext/Encode/t/enc_module.t
67675            ! ext/Encode/t/mime-header.t
67676 ____________________________________________________________________________
67677 [ 19476] By: jhi                                   on 2003/05/10  18:56:08
67678         Log: Doc bug noticed by terry@eatoni.com (terry jones).
67679      Branch: perl
67680            ! lib/Unicode/UCD.pm
67681 ____________________________________________________________________________
67682 [ 19472] By: jhi                                   on 2003/05/10  10:55:49
67683         Log: Try to plug more potential PerlIO NULL method
67684              dereferences; try to document the matter.
67685      Branch: perl
67686            ! perlio.c pod/perliol.pod
67687 ____________________________________________________________________________
67688 [ 19471] By: jhi                                   on 2003/05/10  07:07:30
67689         Log: UseNicerNames instead of SHOUTING_LIKE_THIS.
67690      Branch: perl
67691            ! perlio.c
67692 ____________________________________________________________________________
67693 [ 19470] By: jhi                                   on 2003/05/10  06:51:24
67694         Log: In eof() the errno can get stomped by the peek-ahead.
67695      Branch: perl
67696            ! doio.c ext/Socket/socketpair.t
67697 ____________________________________________________________________________
67698 [ 19469] By: rgs                                   on 2003/05/09  21:33:15
67699         Log: A regression test for the remaining "Final $ should be..." error.
67700      Branch: perl
67701            ! t/comp/parser.t
67702 ____________________________________________________________________________
67703 [ 19468] By: rgs                                   on 2003/05/09  21:23:57
67704         Log: Remove the error messages "Final @ should be \@ or @name"
67705              and "Final % should be \% or %name", that appear to be
67706              only produced in addition to another syntax error, and therefore
67707              misleading, if I understand correctly that kind of black magic.
67708      Branch: perl
67709            ! pod/perldiag.pod toke.c
67710 ____________________________________________________________________________
67711 [ 19467] By: jhi                                   on 2003/05/09  20:11:18
67712         Log: Have to think this test more when I'm awake.
67713      Branch: perl
67714            ! ext/Socket/socketpair.t
67715 ____________________________________________________________________________
67716 [ 19466] By: rgs                                   on 2003/05/09  19:56:37
67717         Log: Document that perl tries to load .pmc files before .pm files.
67718              Subject: Re: [perl #8860] [not RESOLVED] .pmc extension not documented in require
67719              From: Casey West <casey@geeknest.com>
67720              Date: Fri, 9 May 2003 17:03:50 -0400
67721              Message-ID: <20030509210350.GW49820@geeknest.com>
67722      Branch: perl
67723            ! pod/perlfunc.pod
67724 ____________________________________________________________________________
67725 [ 19465] By: rgs                                   on 2003/05/09  19:47:49
67726         Log: Fix for doc bug #8602 : clarify eof() example comments
67727      Branch: perl
67728            ! pod/perlfunc.pod
67729 ____________________________________________________________________________
67730 [ 19464] By: rgs                                   on 2003/05/09  19:34:30
67731         Log: Subject: [PATCH] [perl #8702] Clean up perltrap mis-information
67732              From: Casey West <casey@geeknest.com>
67733              Date: Fri, 9 May 2003 11:09:39 -0400
67734              Message-ID: <20030509150939.GN49820@geeknest.com>
67735      Branch: perl
67736            ! pod/perltrap.pod
67737 ____________________________________________________________________________
67738 [ 19463] By: rgs                                   on 2003/05/09  19:33:25
67739         Log: Subject: Re: [DOC PATCH] [perl #1165] crypt accepts any character as salt
67740              From: Casey West <casey@geeknest.com>
67741              Date: Fri, 9 May 2003 15:25:59 -0400
67742              Message-ID: <20030509192559.GS49820@geeknest.com>
67743      Branch: perl
67744            ! pod/perlfunc.pod
67745 ____________________________________________________________________________
67746 [ 19462] By: jhi                                   on 2003/05/09  18:53:27
67747         Log: Try to comprehensively have a plan B if a PerlIO
67748              layer doesn't have a particular function.
67749              (1) If there's a corresponding PerlIOBase, call it.
67750              (2) If not having the function is 'harmless', be silently happy.
67751              (Currently only Flush is in this category.)
67752              (3) Otherwise set errno and return failure.
67753      Branch: perl
67754            ! perlio.c
67755 ____________________________________________________________________________
67756 [ 19461] By: rgs                                   on 2003/05/09  18:45:39
67757         Log: Subject: [PATCH] [perl #8703] unescaped @ is fine
67758              From: Casey West <casey@geeknest.com>
67759              Date: Fri, 9 May 2003 11:17:53 -0400
67760              Message-ID: <20030509151753.GO49820@geeknest.com>
67761      Branch: perl
67762            ! pod/perltrap.pod
67763 ____________________________________________________________________________
67764 [ 19460] By: jhi                                   on 2003/05/09  14:25:49
67765         Log: Add the PerlIOBase_noop_* to the public API as suggested by Stas.
67766      Branch: perl
67767            ! makedef.pl
67768 ____________________________________________________________________________
67769 [ 19459] By: jhi                                   on 2003/05/09  14:22:08
67770         Log: Result of change #19458.
67771      Branch: perl
67772            ! MANIFEST
67773 ____________________________________________________________________________
67774 [ 19458] By: jhi                                   on 2003/05/09  14:21:51
67775         Log: Subject: Weekend fun: MANIFEST sorting
67776              From: andreas.koenig@anima.de (Andreas J. Koenig)
67777              Date: Fri, 09 May 2003 15:12:05 +0200
67778              Message-ID: <m3y91g463e.fsf@franz.ak.mind.de>
67779
67780              (both sorts need LC_ALL=C)
67781              (add also manicheck target)
67782      Branch: perl
67783            ! Makefile.SH
67784 ____________________________________________________________________________
67785 [ 19457] By: jhi                                   on 2003/05/09  04:30:13
67786         Log: Better skip this test on OpenBSD and BSD/OS since it
67787              does not seem to work (Slaven Rezic).
67788      Branch: perl
67789            ! lib/filetest.t
67790 ____________________________________________________________________________
67791 [ 19456] By: jhi                                   on 2003/05/09  03:41:56
67792         Log: Subject: [PATCH] Re: [perl #16834] Anomolous behaviour of SUBSTR() used as LValue
67793              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
67794              Date: Wed, 07 May 2003 23:37:47 -0700
67795              Message-ID: <7sfu+gzkg+AY092yn@efn.org>
67796      Branch: perl
67797            ! pod/perlfunc.pod
67798 ____________________________________________________________________________
67799 [ 19455] By: jhi                                   on 2003/05/09  03:36:54
67800         Log: Missing files.
67801      Branch: perl
67802            ! MANIFEST
67803 ____________________________________________________________________________
67804 [ 19454] By: rgs                                   on 2003/05/08  18:49:25
67805         Log: Suppress a few compilation warnings in pp_hot.c.
67806      Branch: perl
67807            ! pp_hot.c
67808 ____________________________________________________________________________
67809 [ 19453] By: rgs                                   on 2003/05/08  18:42:16
67810         Log: Remove duplicate entries from perldiag
67811      Branch: perl
67812            ! pod/perldiag.pod
67813 ____________________________________________________________________________
67814 [ 19452] By: jhi                                   on 2003/05/08  18:12:46
67815         Log: Subject: Re: [perl #17718] %tiedhash in bool context doesn't check if hash is empty
67816              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
67817              Date: Wed, 07 May 2003 15:27:07 -0700
67818              Message-ID: <7gYu+gzkgaFU092yn@efn.org>
67819      Branch: perl
67820            ! pod/perldata.pod pod/perldiag.pod pod/perltie.pod pp.c
67821            ! pp_hot.c t/op/magic.t
67822 ____________________________________________________________________________
67823 [ 19451] By: jhi                                   on 2003/05/08  17:47:13
67824         Log: Tiny nit from mjd.
67825      Branch: perl
67826            ! lib/Tie/File.pm
67827 ____________________________________________________________________________
67828 [ 19450] By: jhi                                   on 2003/05/08  17:46:26
67829         Log: Upgrade to Tie::File 0.95.
67830      Branch: perl
67831            + lib/Tie/File/t/27_iwrite.t lib/Tie/File/t/28_mtwrite.t
67832            + lib/Tie/File/t/29_downcopy.t lib/Tie/File/t/29a_upcopy.t
67833            + lib/Tie/File/t/42_offset.t
67834            ! lib/Tie/File.pm lib/Tie/File/t/00_version.t
67835            ! lib/Tie/File/t/01_gen.t lib/Tie/File/t/04_splice.t
67836            ! lib/Tie/File/t/09_gen_rs.t lib/Tie/File/t/16_handle.t
67837            ! lib/Tie/File/t/19_cache.t lib/Tie/File/t/21_win32.t
67838            ! lib/Tie/File/t/25_gen_nocache.t lib/Tie/File/t/26_twrite.t
67839            ! lib/Tie/File/t/30_defer.t
67840 ____________________________________________________________________________
67841 [ 19449] By: jhi                                   on 2003/05/08  17:35:10
67842         Log: Subject: [perl #22141] patch for Time::HiRes to get rid of -lrt on linux
67843              From: Marc Lehmann (via RT) <perlbug-followup@perl.org>
67844              Message-Id: <rt-22141-56710.3.69543054121962@bugs6.perl.org>
67845              Date: 8 May 2003 00:42:18 -0000
67846      Branch: perl
67847            ! ext/Time/HiRes/Changes ext/Time/HiRes/HiRes.pm
67848            ! ext/Time/HiRes/Makefile.PL
67849 ____________________________________________________________________________
67850 [ 19448] By: jhi                                   on 2003/05/08  17:27:47
67851         Log: Subject: [PATCH] alphabetize perldiag.pod
67852              From: Ronald J Kimball <rjk@linguist.Thayer.dartmouth.edu>
67853              Date: Thu, 8 May 2003 11:52:39 -0400
67854              Message-ID: <20030508155239.GC1495587@linguist.thayer.dartmouth.edu>
67855      Branch: perl
67856            ! pod/perldiag.pod
67857 ____________________________________________________________________________
67858 [ 19447] By: jhi                                   on 2003/05/08  17:19:06
67859         Log: Subject: [PATCH] [perl #22127] get(av|cv|hv|sv) added to Devel::PPPort
67860              From: Tassilo von Parseval <tassilo.parseval@post.rwth-aachen.de>
67861              Date: Thu, 08 May 2003 08:42:20 +0200
67862              Message-id: <20030508064220.GA763@ethan>
67863      Branch: perl
67864            ! ext/Devel/PPPort/Changes ext/Devel/PPPort/PPPort.pm
67865            ! ext/Devel/PPPort/t/test.t
67866 ____________________________________________________________________________
67867 [ 19445] By: jhi                                   on 2003/05/08  05:21:44
67868         Log: A variant of
67869
67870              Subject: Re: 0 is not perl (was Re: Report /export/home/nwc10/Gripping-Smoke/Smoke)
67871              From: enache@rdslink.ro (Enache Adrian)
67872              Date: Tue, 22 Apr 2003 02:54:05 +0300
67873              Message-ID: <20030421235405.GA1162@ratsnest.hole>
67874
67875              to quench the black smoke from the BSD builds.
67876      Branch: perl
67877            ! lib/ExtUtils/MM_Unix.pm
67878 ____________________________________________________________________________
67879 [ 19444] By: rgs                                   on 2003/05/07  20:25:45
67880         Log: Subject: Re: [DOC PATCH] & More File::Path issues
67881              From: Casey West <casey@geeknest.com>
67882              Date: Mon, 5 May 2003 13:25:47 -0400
67883              Message-ID: <20030505172547.GB20508@geeknest.com>
67884      Branch: perl
67885            ! lib/File/Path.pm
67886 ____________________________________________________________________________
67887 [ 19443] By: jhi                                   on 2003/05/07  20:03:58
67888         Log: Spelling correction from Nicholas Clark.
67889      Branch: perl
67890            ! ext/POSIX/POSIX.pod
67891 ____________________________________________________________________________
67892 [ 19440] By: jhi                                   on 2003/05/07  19:20:53
67893         Log: One more possible extensions permutation.
67894      Branch: perl
67895            ! Configure
67896 ____________________________________________________________________________
67897 [ 19437] By: jhi                                   on 2003/05/07  16:58:21
67898         Log: Allow platforms to manipulate their archname by creating
67899              a archname.cbu in their hints files.
67900      Branch: perl
67901            ! Configure
67902 ____________________________________________________________________________
67903 [ 19436] By: jhi                                   on 2003/05/07  16:53:26
67904         Log: More long double logic from Alan Burlison.
67905      Branch: perl
67906            ! Configure
67907 ____________________________________________________________________________
67908 [ 19435] By: jhi                                   on 2003/05/06  15:21:55
67909         Log: Worth a try for [perl #17146]
67910      Branch: perl
67911            ! ext/IO/poll.c
67912 ____________________________________________________________________________
67913 [ 19433] By: jhi                                   on 2003/05/06  05:12:23
67914         Log: Document which interfaces are NOT Unicode-aware.
67915      Branch: perl
67916            ! pod/perltodo.pod pod/perlunicode.pod
67917 ____________________________________________________________________________
67918 [ 19432] By: rgs                                   on 2003/05/05  20:31:22
67919         Log: Subject: [PATCH] [perl #8063] perlfilter doesn't mention potential DATA clobber
67920              From: Casey West <casey@geeknest.com>
67921              Date: Mon, 28 Apr 2003 11:07:36 -0400
67922              Message-ID: <20030428150736.GD62281@geeknest.com>
67923      Branch: perl
67924            ! pod/perlfilter.pod
67925 ____________________________________________________________________________
67926 [ 19431] By: rgs                                   on 2003/05/05  20:07:33
67927         Log: Subject: [patch] Re: [perl #21728] regexp SEGV
67928              From: Enache Adrian <enache@rdslink.ro>
67929              Date: Fri, 28 Mar 2003 23:53:09 +0200
67930              Message-ID: <20030328215309.GA6413@ratsnest.hole>
67931              (with minor tweaks)
67932      Branch: perl
67933            ! embed.fnc embed.h global.sym proto.h regexec.c scope.c scope.h
67934 ____________________________________________________________________________
67935 [ 19430] By: rgs                                   on 2003/05/05  20:01:36
67936         Log: Fix doc bug #22067, noticed by Mark Knutsen
67937      Branch: perl
67938            ! pod/perlfunc.pod
67939 ____________________________________________________________________________
67940 [ 19429] By: rgs                                   on 2003/05/05  18:59:59
67941         Log: Fix : the svr5 hints file doesn't propagate libswanted with
67942              threads enabled. Now threads are OK on OpenUNIX 8, except a
67943              mysterious failure in ext/POSIX/t/sigaction.t.
67944      Branch: perl
67945            ! hints/svr5.sh
67946 ____________________________________________________________________________
67947 [ 19428] By: jhi                                   on 2003/05/05  16:54:34
67948         Log: Snip away the perlunicode slowness demo since the new
67949              caching scheme should help things a bit.
67950      Branch: perl
67951            ! pod/perlunicode.pod
67952 ____________________________________________________________________________
67953 [ 19427] By: jhi                                   on 2003/05/05  16:14:09
67954         Log: Subject: Re: Minor change to strict.pm. Who? How?
67955              From: Adam Kennedy <adam@ali.as>
67956              Date: Wed, 30 Apr 2003 00:02:40 +1000
67957              Message-ID: <3EAE8600.2000806@ali.as>
67958
67959              Subject: [PATCH] Re: Minor change to strict.pm. Who? How?
67960              From: Michael G Schwern <schwern@pobox.com>
67961              Date: Tue, 29 Apr 2003 12:26:32 -0700
67962              Message-ID: <20030429192632.GA6129@windhund.schwern.org>
67963      Branch: perl
67964            ! lib/strict.pm
67965 ____________________________________________________________________________
67966 [ 19426] By: jhi                                   on 2003/05/05  15:48:57
67967         Log: Subject: [DOC PATCH] missing ')' in File::Path docs
67968              From: "Jos I.Boumans" <kane@dwim.org>
67969              Date: 30 Apr 2003 09:45:16 -0000
67970              Message-ID: <20030430114513165+0200@nntp.perl.org>
67971      Branch: perl
67972            ! lib/File/Path.pm
67973 ____________________________________________________________________________
67974 [ 19425] By: jhi                                   on 2003/05/05  15:47:19
67975         Log: Subject: [PATCH pod/perlmod.pod] Simpler $Revision$ based $VERSION. Plus, repentance!
67976              From: Michael G Schwern <schwern@pobox.com>
67977              Date: Sat, 3 May 2003 15:30:16 -0700
67978              Message-ID: <20030503223016.GE1234@windhund.schwern.org>
67979      Branch: perl
67980            ! pod/perlmod.pod
67981 ____________________________________________________________________________
67982 [ 19424] By: jhi                                   on 2003/05/05  15:44:39
67983         Log: Subject: [PATCH] [perl #3096] undefing hash with object values
67984              From: Dave Mitchell <davem@fdgroup.com>
67985              Date: Thu, 1 May 2003 21:06:57 +0100
67986              Message-ID: <20030501200657.GA25456@fdgroup.com>
67987      Branch: perl
67988            ! hv.c t/op/undef.t
67989 ____________________________________________________________________________
67990 [ 19423] By: jhi                                   on 2003/05/05  15:42:58
67991         Log: Subject: Re: hv.c patch - pathological hashes too easy
67992              From: "Tye McQueen" <tye@metronet.com>
67993              Date: Thu, 1 May 2003 13:34:50 -0500 (CDT)
67994              Message-Id: <200305011834.h41IYoE08503@metronet.com>
67995      Branch: perl
67996            ! hv.c
67997 ____________________________________________________________________________
67998 [ 19422] By: jhi                                   on 2003/05/05  15:40:02
67999         Log: Subject: [PATCH] [perl #18341] random nits in perlrequick.pod
68000              From: Casey West <casey@geeknest.com>
68001              Date: Tue, 29 Apr 2003 16:14:20 -0400
68002              Message-ID: <20030429201420.GT62281@geeknest.com>
68003      Branch: perl
68004            ! pod/perlrequick.pod
68005 ____________________________________________________________________________
68006 [ 19421] By: jhi                                   on 2003/05/05  15:38:23
68007         Log: Subject: [PATCH] ExtUtils::Install and the don't-really-do-it switch
68008              From: Slaven Rezic <slaven@rezic.de>
68009              Date: Thu, 24 Apr 2003 00:42:11 +0200 (CEST)
68010              Message-Id: <200304232242.h3NMgBqD028515@vran.herceg.de>
68011      Branch: perl
68012            ! lib/ExtUtils/Install.pm lib/ExtUtils/t/Install.t
68013 ____________________________________________________________________________
68014 [ 19420] By: jhi                                   on 2003/05/05  15:36:39
68015         Log: Subject: [PATCH 5.8.0 UTIL] h2xs generates false comments about ABSTRACT
68016              From: Steve Hay <steve.hay@uk.radan.com>
68017              Date: Wed, 30 Apr 2003 09:52:30 +0100
68018              Message-ID: <3EAF8ECE.8060403@uk.radan.com>
68019      Branch: perl
68020            ! utils/h2xs.PL
68021 ____________________________________________________________________________
68022 [ 19419] By: jhi                                   on 2003/05/05  08:20:34
68023         Log: Reintroduce the mention of the fact that the Artistic/GPL
68024              also are Perl's own licenses.
68025      Branch: perl
68026            ! pod/perlartistic.pod pod/perlgpl.pod
68027 ____________________________________________________________________________
68028 [ 19418] By: jhi                                   on 2003/05/05  07:23:57
68029         Log: Switch the new perlio way of opening anonymous temporary files
68030              open my $fh, '+>', undef
68031              to using File::Temp.  Test it, and test also the "accidental
68032              feature" of +< working the same way.
68033              This should address [perl #21937].
68034      Branch: perl
68035            + ext/PerlIO/t/open.t
68036            ! MANIFEST perlio.c pod/perlfunc.pod
68037 ____________________________________________________________________________
68038 [ 19417] By: jhi                                   on 2003/05/05  05:52:47
68039         Log: perlartistic and perlgpl reformatting from Sean Burke.
68040      Branch: perl
68041            ! pod/perlartistic.pod pod/perlgpl.pod
68042 ____________________________________________________________________________
68043 [ 19416] By: jhi                                   on 2003/05/05  05:33:43
68044         Log: pack/unpack fixes from Wolfgang Laun:
68045              - fix bug in UNICOS (where SIZE16 != sizeof(short))
68046              - introduce and use new internal pack/unpack API
68047              (packlist, unpackstring)
68048              that does away with the unused arguments in the old API
68049              (pack_cat, unpack_str).
68050      Branch: perl
68051            ! embed.fnc embed.h global.sym pod/perlapi.pod pp_pack.c proto.h
68052 ____________________________________________________________________________
68053 [ 19415] By: jhi                                   on 2003/05/05  04:58:39
68054         Log: Subject: [PATCH] Embed.t flushing problem
68055              From: "Craig A. Berry" <craigberry@mac.com>
68056              Date: Sun, 04 May 2003 16:25:38 -0500
68057              Message-ID: <3EB58552.2070207@mac.com>
68058      Branch: perl
68059            ! lib/ExtUtils/t/Embed.t
68060 ____________________________________________________________________________
68061 [ 19414] By: jhi                                   on 2003/05/05  04:52:37
68062         Log: Doc nit from mjd.
68063      Branch: perl
68064            ! ext/DB_File/DB_File.pm
68065 ____________________________________________________________________________
68066 [ 19413] By: ams                                   on 2003/05/05  04:03:10
68067         Log: None of that "our" stuff here, please.
68068      Branch: perl
68069            ! ext/Storable/t/tied.t
68070 ____________________________________________________________________________
68071 [ 19412] By: ams                                   on 2003/05/05  03:57:06
68072         Log: Oops. More Storable 2.07 preparations.
68073      Branch: perl
68074            ! ext/Storable/README ext/Storable/Storable.pm
68075 ____________________________________________________________________________
68076 [ 19411] By: ams                                   on 2003/05/05  03:53:44
68077         Log: Update changelog for 2.07 release.
68078      Branch: perl
68079            ! ext/Storable/ChangeLog
68080 ____________________________________________________________________________
68081 [ 19410] By: ams                                   on 2003/05/05  03:31:36
68082         Log: Update Changes.
68083      Branch: perl
68084            ! Changes
68085 ____________________________________________________________________________
68086 [ 19409] By: ams                                   on 2003/05/05  03:21:41
68087         Log: Subject: Re: Bug in Storable???
68088              From: Slaven Rezic <slaven@rezic.de>
68089              Date: 04 May 2003 18:00:40 +0200
68090              Message-Id: <87of2iwvkn.fsf@vran.herceg.de>
68091      Branch: perl
68092            ! ext/Storable/Storable.xs ext/Storable/t/integer.t
68093 ____________________________________________________________________________
68094 [ 19407] By: jhi                                   on 2003/05/04  19:39:01
68095         Log: This way reads a bit better with pod2man.
68096      Branch: perl
68097            ! pod/perlartistic.pod pod/perlgpl.pod
68098 ____________________________________________________________________________
68099 [ 19406] By: jhi                                   on 2003/05/04  12:01:00
68100         Log: Integrate from maint:
68101              [ 18568]
68102              Add the POSIX::sigaction() trick by Slaven Rezic
68103              for [perl #17341].
68104      Branch: perl
68105           !> pod/perlfunc.pod pod/perlipc.pod
68106 ____________________________________________________________________________
68107 [ 19401] By: jhi                                   on 2003/05/04  09:25:48
68108         Log: Add Artistic as perlartistic and GPL (the Copying) as perlgpl;
68109              regen perltoc, perlmodlib.  The GPL added as verbatim as possible,
68110              the perlartistic is a straightforward podification.
68111      Branch: perl
68112            + pod/perlartistic.pod pod/perlgpl.pod
68113            ! MANIFEST pod/buildtoc.PL pod/perl.pod pod/perlmodlib.PL
68114            ! pod/perlmodlib.pod pod/perlmodstyle.pod pod/perltoc.pod
68115 ____________________________________________________________________________
68116 [ 19398] By: jhi                                   on 2003/05/04  08:19:14
68117         Log: Doesn't make any difference for the test but is more logical.
68118      Branch: perl
68119            ! t/lib/Devel/switchd.pm
68120 ____________________________________________________________________________
68121 [ 19396] By: jhi                                   on 2003/05/03  15:42:54
68122         Log: Plagued by thinkos tonight.
68123      Branch: perl
68124            ! lib/filetest.t
68125 ____________________________________________________________________________
68126 [ 19395] By: jhi                                   on 2003/05/03  15:37:35
68127         Log: Must skip more.
68128      Branch: perl
68129            ! lib/filetest.t
68130 ____________________________________________________________________________
68131 [ 19394] By: jhi                                   on 2003/05/03  15:30:45
68132         Log: Subject: Re: Does filetest work at all?
68133              From: Slaven Rezic <slaven@rezic.de>
68134              Date: 03 May 2003 18:26:49 +0200
68135              Message-ID: <87ade4q9me.fsf@vran.herceg.de>
68136      Branch: perl
68137            ! lib/filetest.t pp_sys.c
68138 ____________________________________________________________________________
68139 [ 19393] By: jhi                                   on 2003/05/03  05:34:21
68140         Log: Extra tweakage from Rafael for #19392.
68141      Branch: perl
68142            ! ext/B/B/Concise.pm lib/filetest.pm
68143 ____________________________________________________________________________
68144 [ 19392] By: jhi                                   on 2003/05/03  05:33:04
68145         Log: Salvage 'use filetest "access"' from compiletime to runtime.
68146      Branch: perl
68147            ! dump.c op.c op.h pp_sys.c
68148 ____________________________________________________________________________
68149 [ 19391] By: jhi                                   on 2003/05/03  05:19:23
68150         Log: Upgrade to Unicode 4.0.0.  (Well, upgrade at least
68151              the Unicode character database to 4.0.0.)
68152      Branch: perl
68153            + lib/unicore/HangulSyllableType.txt
68154            + lib/unicore/NormalizationCorrections.txt
68155            + lib/unicore/StandardizedVariants.txt
68156            + lib/unicore/lib/Braille.pl lib/unicore/lib/Cypriot.pl
68157            + lib/unicore/lib/InAegean.pl lib/unicore/lib/InCyprio.pl
68158            + lib/unicore/lib/InKhmerS.pl lib/unicore/lib/InLimbu.pl
68159            + lib/unicore/lib/InLinea2.pl lib/unicore/lib/InLinear.pl
68160            + lib/unicore/lib/InMisce5.pl lib/unicore/lib/InOsmany.pl
68161            + lib/unicore/lib/InPhonet.pl lib/unicore/lib/InShavia.pl
68162            + lib/unicore/lib/InTaiLe.pl lib/unicore/lib/InTaiXua.pl
68163            + lib/unicore/lib/InUgarit.pl lib/unicore/lib/InVaria2.pl
68164            + lib/unicore/lib/InYijing.pl lib/unicore/lib/Limbu.pl
68165            + lib/unicore/lib/LinearB.pl lib/unicore/lib/Osmanya.pl
68166            + lib/unicore/lib/OtherIdS.pl lib/unicore/lib/Shavian.pl
68167            + lib/unicore/lib/TaiLe.pl lib/unicore/lib/Ugaritic.pl
68168            ! (edit 129 files)
68169 ____________________________________________________________________________
68170 [ 19390] By: jhi                                   on 2003/05/03  04:52:09
68171         Log: Tru64: PerlIO_tell() was returning about one _megabyte_ for
68172              the fp offset, which was quite a big larger than the input file,
68173              which meant that the SvGROW tried to grow the file to about
68174              2**64-2**20, which made safesysrealloc() to understandably
68175              croak (in argv.t).
68176      Branch: perl
68177            ! sv.c
68178 ____________________________________________________________________________
68179 [ 19387] By: jhi                                   on 2003/05/02  19:18:35
68180         Log: Regen Configure (no changes but that's fine).
68181      Branch: perl
68182            ! Configure
68183 ____________________________________________________________________________
68184 [ 19386] By: jhi                                   on 2003/05/02  19:06:39
68185         Log: Subject: [PATCH] Re: maintperl on OpenUNIX 8
68186              From: Andy Dougherty <doughera@lafayette.edu>
68187              Date: Mon, 28 Apr 2003 12:24:38 -0400 (EDT)
68188              Message-ID: <Pine.SOL.4.53.0304281208490.25038@maxwell.phys.lafayette.edu>
68189      Branch: perl
68190            ! Configure
68191 ____________________________________________________________________________
68192 [ 19385] By: jhi                                   on 2003/05/02  19:01:04
68193         Log: Subject: [PATCH] OpenUNIX 8 support
68194              From: Rafael Garcia-Suarez <rgarciasuarez@free.fr>
68195              Date: Fri, 2 May 2003 12:12:08 +0200
68196              Message-Id: <20030502121208.3d235027.rgarciasuarez@free.fr>
68197      Branch: perl
68198            ! Configure ext/Socket/socketpair.t hints/svr5.sh pp_sys.c
68199 ____________________________________________________________________________
68200 [ 19384] By: jhi                                   on 2003/05/02  18:58:32
68201         Log: Subject: [PATCH win32/win32.c] silence compiler warnings
68202              From: Abe Timmerman <abe@ztreet.demon.nl>
68203              Date: Fri, 2 May 2003 00:51:42 +0200
68204              Message-Id: <200305020051.43166.abe@ztreet.demon.nl>
68205      Branch: perl
68206            ! win32/win32.c
68207 ____________________________________________________________________________
68208 [ 19383] By: jhi                                   on 2003/05/02  18:55:37
68209         Log: Subject: [PATCH win32/win32.h] Re: Smoke [5.9.0] 19367 FAIL(F) MSWin32 5.0 Service Pack 3 (x86/1 cpu)
68210              From: Abe Timmerman <abe@ztreet.demon.nl>
68211              Date: Thu, 1 May 2003 18:34:35 +0200
68212              Message-Id: <200305011834.35685.abe@ztreet.demon.nl>
68213      Branch: perl
68214            ! win32/win32.h
68215 ____________________________________________________________________________
68216 [ 19382] By: jhi                                   on 2003/05/02  18:50:25
68217         Log: Subject: [PATCH ext/POSIX/POSIX.pod] Deceptive POSIX exporting docs
68218              From: Michael G Schwern <schwern@pobox.com>
68219              Date: Wed, 30 Apr 2003 18:19:32 -0700
68220              Message-ID: <20030501011932.GM701@windhund.schwern.org>
68221      Branch: perl
68222            ! ext/POSIX/POSIX.pod
68223 ____________________________________________________________________________
68224 [ 19381] By: jhi                                   on 2003/05/02  15:12:47
68225         Log: Forgot to check in the -d: file.
68226      Branch: perl
68227            + t/lib/Devel/switchd.pm
68228            ! MANIFEST t/run/switchd.t
68229 ____________________________________________________________________________
68230 [ 19380] By: jhi                                   on 2003/05/02  15:02:04
68231         Log: Solaris: make -Duse64bitall'ed to have an archname of
68232              sun4-solaris-64, from Alan Burlison.  (The default is to not
68233              to suffix anything with -Duse64bitall if longs are 64 bit.
68234              This may lead into confusion and much sorrow if 32-bit binaries
68235              and 64-bit binaries are installed under the same directories.
68236              Why is "-64" or something like that the default?  Well, there
68237              are platforms where 64 bits really is the default default.
68238              There adding a "-64" would be kind of odd.  Better to let
68239              each 64-bit capable platform to choose their archnames.)
68240      Branch: perl
68241            ! hints/solaris_2.sh
68242 ____________________________________________________________________________
68243 [ 19378] By: jhi                                   on 2003/05/02  08:41:40
68244         Log: The [perl #21890] (Devel::Coverage breakage) has been fixed
68245              by change #18589 (it was broken by change #9754); add test case.
68246      Branch: perl
68247            + t/run/switchd.t
68248            ! MANIFEST
68249 ____________________________________________________________________________
68250 [ 19376] By: jhi                                   on 2003/05/02  05:31:52
68251         Log: great_circle_direction() was broken,
68252              reported by Alexander Becher.
68253      Branch: perl
68254            ! lib/Math/Trig.pm lib/Math/Trig.t
68255 ____________________________________________________________________________
68256 [ 19375] By: jhi                                   on 2003/05/01  18:18:06
68257         Log: OS X: could not -Doptimize=-g.
68258      Branch: perl
68259            ! hints/darwin.sh
68260 ____________________________________________________________________________
68261 [ 19374] By: jhi                                   on 2003/05/01  12:33:44
68262         Log: OS X test tweak.
68263      Branch: perl
68264            ! ext/Cwd/t/cwd.t
68265 ____________________________________________________________________________
68266 [ 19373] By: jhi                                   on 2003/05/01  11:09:42
68267         Log: Subject: [PATCH] RE: perl@19333
68268              From: Robin Barker <Robin.Barker@npl.co.uk>
68269              Date: Tue, 29 Apr 2003 17:30:23 +0100
68270              Message-ID: <533D273D4014D411AB1D00062938C4D9040464F7@hotel.npl.co.uk>
68271      Branch: perl
68272            ! embed.pl pp_hot.c pp_pack.c proto.h
68273 ____________________________________________________________________________
68274 [ 19372] By: jhi                                   on 2003/05/01  09:52:52
68275         Log: miniperl cannot handle layers.t.
68276      Branch: perl
68277            ! t/io/layers.t
68278 ____________________________________________________________________________
68279 [ 19371] By: jhi                                   on 2003/05/01  08:26:06
68280         Log: The solution in change #19363 was too unportable.
68281      Branch: perl
68282            ! t/io/openpid.t
68283 ____________________________________________________________________________
68284 [ 19369] By: jhi                                   on 2003/05/01  07:48:06
68285         Log: perlreftut updates from mjd.
68286      Branch: perl
68287            ! pod/perlreftut.pod
68288 ____________________________________________________________________________
68289 [ 19368] By: jhi                                   on 2003/05/01  07:45:06
68290         Log: z/OS: More threaded build tweaks from Brian De Pradine--
68291              apparently now it works!
68292      Branch: perl
68293            ! ext/threads/threads.xs handy.h hints/os390.sh thread.h
68294 ____________________________________________________________________________
68295 [ 19367] By: rgs                                   on 2003/04/29  20:31:07
68296         Log: Subject: [PATCH] buglet: sub a(;&) { } doesn't work
68297              From: Enache Adrian <enache@rdslink.ro>
68298              Date: Sat, 19 Apr 2003 01:41:07 +0300
68299              Message-ID: <20030418224107.GA2751@ratsnest.hole>
68300      Branch: perl
68301            ! t/comp/parser.t toke.c
68302 ____________________________________________________________________________
68303 [ 19366] By: jhi                                   on 2003/04/29  08:55:12
68304         Log: If it's S_, it should be STATIC.
68305      Branch: perl
68306            ! embed.fnc embed.h numeric.c proto.h
68307 ____________________________________________________________________________
68308 [ 19365] By: sky                                   on 2003/04/28  16:30:03
68309         Log: Subject: [PATCH] [perl #7592] Clarify what qw() does in scalar context
68310              From: Casey West <casey@geeknest.com>
68311              Date: mÂŒn apr 28, 2003  16:00:05 Europe/Stockholm
68312              Message-Id: <20030428140005.GC62281@geeknest.com>
68313      Branch: perl
68314            ! pod/perlop.pod
68315 ____________________________________________________________________________
68316 [ 19364] By: sky                                   on 2003/04/28  16:20:43
68317         Log: Subject: [PATCH] [patch #7514] Bug in perlop regex explination
68318              From: Casey West <casey@geeknest.com>
68319              Date: mÂŒn apr 28, 2003  19:22:06 Europe/Stockholm
68320              Message-Id: <20030428172206.GK62281@geeknest.com>
68321      Branch: perl
68322            ! pod/perlop.pod
68323 ____________________________________________________________________________
68324 [ 19363] By: sky                                   on 2003/04/28  15:32:35
68325         Log: Fix bug 2681, change the test not to use the shell and use 3+arg
68326              open.
68327      Branch: perl
68328            ! t/io/openpid.t
68329 ____________________________________________________________________________
68330 [ 19359] By: jhi                                   on 2003/04/28  08:43:23
68331         Log: Feel-good cleanup.
68332      Branch: perl
68333            ! intrpvar.h sv.c
68334 ____________________________________________________________________________
68335 [ 19358] By: jhi                                   on 2003/04/28  08:27:15
68336         Log: SysV msg queues can be something hanging (witnessed in IRIX),
68337              so let's use IPC_NOWAIT.
68338      Branch: perl
68339            ! ext/IPC/SysV/t/msg.t t/op/taint.t
68340 ____________________________________________________________________________
68341 [ 19357] By: jhi                                   on 2003/04/28  06:32:47
68342         Log: Detecting errors of reentrant APIs: getgrgid_r and the like
68343              when returning an int can either return the error in the return
68344              value or in the errno.  We need a new per-interp variable to store
68345              the return value instead of clobbering the errno with it.  The new
68346              variable, PL_reentrant_retint, is only used within the reentrancy
68347              framework, and immediately after it's set, so there should not be
68348              similar visibility issues as for the errno.  Spotted by Edward Moy.
68349      Branch: perl
68350            ! embedvar.h intrpvar.h perlapi.h reentr.c reentr.h reentr.pl
68351 ____________________________________________________________________________
68352 [ 19356] By: rgs                                   on 2003/04/27  20:09:01
68353         Log: Newer glibc's nice(2) return the new nice value, instead of 0 or -1.
68354              Check errno to see if the call to nice(2) succeeded.
68355              Subject: Re: [PATCH++] all about the recent standard conforming glibc's nic
68356              From: Enache Adrian <enache@rdslink.ro>
68357              Date: Wed, 23 Apr 2003 22:48:20 +0300
68358              Message-ID: <20030423194820.GA874@ratsnest.hole>
68359      Branch: perl
68360            ! ext/POSIX/POSIX.xs
68361 ____________________________________________________________________________
68362 [ 19355] By: jhi                                   on 2003/04/27  19:56:09
68363         Log: Document a faint compilation noise.
68364      Branch: perl
68365            ! README.aix
68366 ____________________________________________________________________________
68367 [ 19354] By: rgs                                   on 2003/04/27  19:35:11
68368         Log: $[ clarifications.
68369      Branch: perl
68370            ! pod/perlvar.pod
68371 ____________________________________________________________________________
68372 [ 19353] By: rgs                                   on 2003/04/27  18:51:37
68373         Log: utime() doc clarifications
68374              based on :
68375              Subject: Re: [PATCH] [perl #18589] Add NFS warning, clarify touch example
68376              From: Casey West <casey@geeknest.com>
68377              Date: Fri, 25 Apr 2003 08:00:54 -0400
68378              Message-ID: <20030425120054.GQ34510@geeknest.com>
68379      Branch: perl
68380            ! pod/perlfunc.pod
68381 ____________________________________________________________________________
68382 [ 19351] By: jhi                                   on 2003/04/27  08:13:34
68383         Log: Add a test case for [perl #15288] (already solved).
68384      Branch: perl
68385            ! t/op/pack.t
68386 ____________________________________________________________________________
68387 [ 19350] By: jhi                                   on 2003/04/27  07:38:17
68388         Log: Add Dave Mitchell's test case for fields.
68389      Branch: perl
68390            ! lib/fields.t
68391 ____________________________________________________________________________
68392 [ 19349] By: jhi                                   on 2003/04/27  06:50:09
68393         Log: Subject: [PATCH] VMS::Stdio test tweak
68394              From: "Craig A. Berry" <craigberry@mac.com>
68395              Date: Sat, 26 Apr 2003 15:53:07 -0500
68396              Message-ID: <3EAAF1B3.7020708@mac.com>
68397      Branch: perl
68398            ! vms/ext/Stdio/test.pl
68399 ____________________________________________________________________________
68400 [ 19348] By: jhi                                   on 2003/04/27  06:46:16
68401         Log: Subject: Re: [COMPLETE PATCH lib/UNIVERSAL.pm] RE: [perl #22018] UNIVERSAL documentatio n contradicts itself
68402              From: Casey West <casey@geeknest.com>
68403              Date: Thu, 24 Apr 2003 08:18:42 -0400
68404              Message-ID: <20030424121842.GW34510@geeknest.com>
68405      Branch: perl
68406            ! lib/UNIVERSAL.pm
68407 ____________________________________________________________________________
68408 [ 19346] By: jhi                                   on 2003/04/27  06:03:48
68409         Log: Document that restricted hashes are not atomic
68410              (from Dave Mitchell).
68411      Branch: perl
68412            ! lib/Hash/Util.pm
68413 ____________________________________________________________________________
68414 [ 19345] By: jhi                                   on 2003/04/27  05:59:39
68415         Log: Subject: [PATCH] Re: the revenge of the bride of the son of the night of the living pseudohashes
68416              From: Dave Mitchell <davem@fdgroup.com>
68417              Date: Sat, 26 Apr 2003 18:45:28 +0100
68418              Message-ID: <20030426174528.GA9588@fdgroup.com>
68419      Branch: perl
68420            ! hv.c lib/Hash/Util.t pod/perldiag.pod
68421 ____________________________________________________________________________
68422 [ 19344] By: rgs                                   on 2003/04/26  22:48:32
68423         Log: Some doc patches by Casey West :
68424
68425              Subject: Re: [PATCH] Re: [perl #21260] adding error handling info to perlfunc/readline
68426              From: Casey West <casey@geeknest.com>
68427              Date: Fri, 25 Apr 2003 10:46:39 -0400
68428              Message-ID: <20030425144639.GY34510@geeknest.com>
68429
68430              Subject: Re: [perl #21785] [PATCH] clarify readdir in for conditional
68431              From: Casey West <casey@geeknest.com>
68432              Date: Fri, 25 Apr 2003 07:52:13 -0400
68433              Message-ID: <20030425115213.GP34510@geeknest.com>
68434
68435              Subject: Re: [perl #7213] [PATCH] Updating example in perldata
68436              From: Casey West <casey@geeknest.com>
68437              Date: Thu, 24 Apr 2003 21:27:22 -0400
68438              Message-ID: <20030425012722.GN34510@geeknest.com>
68439      Branch: perl
68440            ! pod/perldata.pod pod/perlfunc.pod pod/perlsyn.pod
68441 ____________________________________________________________________________
68442 [ 19343] By: rgs                                   on 2003/04/26  22:30:07
68443         Log: Document that splice() doesn't extend arrays
68444              Subject: Re: slice autoextending ? still another revised doc patch; COW
68445              From: david nicol <whatever@davidnicol.com>
68446              Date: 22 Apr 2003 22:05:02 -0500
68447              Message-Id: <1051067101.1086.113.camel@plaza.davidnicol.com>
68448      Branch: perl
68449            ! pod/perlfunc.pod
68450 ____________________________________________________________________________
68451 [ 19342] By: sky                                   on 2003/04/26  21:43:32
68452         Log: Fix bug #15161 by increasing the refcount on the RE and making
68453              sure to restore it correctly. Deals with both s//e and s///g.
68454      Branch: perl
68455            ! pp_ctl.c pp_hot.c
68456 ____________________________________________________________________________
68457 [ 19341] By: jhi                                   on 2003/04/26  04:36:03
68458         Log: Integrate:
68459              [ 19340]
68460              Caught by Mark Lutz in UNICOS: A declaration cannot appear
68461              after an executable statement in a block.
68462      Branch: perl
68463           !> pp_pack.c
68464 ____________________________________________________________________________
68465 [ 19337] By: jhi                                   on 2003/04/25  20:19:36
68466         Log: Now the -Dnoextensions and -Dnoextensions have the
68467              chance of actually doing something.
68468      Branch: perl
68469            ! Configure
68470 ____________________________________________________________________________
68471 [ 19334] By: jhi                                   on 2003/04/25  19:48:31
68472         Log: Subject: [PATCH] Configure's extension sanity check is too strict
68473              From: Andy Dougherty <doughera@lafayette.edu>
68474              Date: Fri, 25 Apr 2003 16:23:45 -0400 (EDT)
68475              Message-ID: <Pine.SOL.4.53.0304251621250.24848@maxwell.phys.lafayette.edu>
68476      Branch: perl
68477            ! Configure
68478 ____________________________________________________________________________
68479 [ 19330] By: jhi                                   on 2003/04/25  14:11:33
68480         Log: Subject: [PATCH Encode 1.93] another spin on the enc_module.t merry-go-round
68481              From: "Craig A. Berry" <craigberry@mac.com>
68482              Date: Thu, 24 Apr 2003 20:09:48 -0500
68483              Message-ID: <3EA88ADC.3000300@mac.com>
68484      Branch: perl
68485            ! ext/Encode/t/enc_module.t
68486 ____________________________________________________________________________
68487 [ 19329] By: jhi                                   on 2003/04/25  07:06:49
68488         Log: Upgrade to Time::HiRes 1.46.
68489      Branch: perl
68490            ! ext/Time/HiRes/Changes ext/Time/HiRes/HiRes.pm
68491            ! ext/Time/HiRes/Makefile.PL
68492 ____________________________________________________________________________
68493 [ 19328] By: jhi                                   on 2003/04/25  06:57:10
68494         Log: Subject: typo in Time::HiRes docs
68495              From: mjd@plover.com
68496              Date: 19 Apr 2003 15:13:44 -0000
68497              Message-ID: <20030419151344.28237.qmail@plover.com>
68498      Branch: perl
68499            ! ext/Time/HiRes/HiRes.pm
68500 ____________________________________________________________________________
68501 [ 19327] By: jhi                                   on 2003/04/25  04:45:05
68502         Log: Clarify(?) the perlio default layers table.
68503      Branch: perl
68504            ! lib/PerlIO.pm t/io/layers.t
68505 ____________________________________________________________________________
68506 [ 19326] By: jhi                                   on 2003/04/25  04:22:49
68507         Log: Upgrade to Test::Harness 2.28.
68508      Branch: perl
68509            ! lib/Test/Harness.pm lib/Test/Harness/Changes
68510            ! lib/Test/Harness/t/pod.t
68511 ____________________________________________________________________________
68512 [ 19325] By: jhi                                   on 2003/04/24  19:06:29
68513         Log: Upgrade to Encode 1.93.
68514      Branch: perl
68515            ! ext/Encode/Changes ext/Encode/Encode.pm ext/Encode/Makefile.PL
68516            ! ext/Encode/lib/Encode/CJKConstants.pm
68517            ! ext/Encode/lib/Encode/CN/HZ.pm
68518            ! ext/Encode/lib/Encode/Encoding.pm
68519            ! ext/Encode/lib/Encode/Guess.pm
68520            ! ext/Encode/lib/Encode/KR/2022_KR.pm
68521            ! ext/Encode/lib/Encode/PerlIO.pod ext/Encode/t/CJKT.t
68522            ! ext/Encode/t/enc_eucjp.t ext/Encode/t/enc_module.t
68523            ! ext/Encode/t/guess.t ext/Encode/ucm/euc-cn.ucm
68524            ! ext/Encode/ucm/euc-jp.ucm ext/Encode/ucm/euc-kr.ucm
68525 ____________________________________________________________________________
68526 [ 19323] By: jhi                                   on 2003/04/24  16:57:13
68527         Log: VMS patch for faststdio from Craig Berry.
68528      Branch: perl
68529            ! configure.com
68530 ____________________________________________________________________________
68531 [ 19320] By: rgs                                   on 2003/04/23  20:20:58
68532         Log: Subject: Re: [PATCH] [perl #18055] Clarify for bug resolution.
68533              From: Casey West <casey@geeknest.com>
68534              Date: Wed, 23 Apr 2003 14:03:20 -0400
68535              Message-ID: <20030423180320.GZ15574@geeknest.com>
68536      Branch: perl
68537            ! pod/perlmodlib.PL pod/perlmodlib.pod
68538 ____________________________________________________________________________
68539 [ 19319] By: rgs                                   on 2003/04/23  19:54:31
68540         Log: Subject: [perl #22011] [PATCH] pod/perlmod.pod (v5.8.0)
68541              From: Chris Pepper (via RT) <perlbug-followup@perl.org>
68542              Date: 22 Apr 2003 04:31:17 -0000
68543              Message-Id: <rt-22011-55473.11.0523590303906@bugs6.perl.org>
68544              (with minor further corrections)
68545      Branch: perl
68546            ! pod/perlmod.pod
68547 ____________________________________________________________________________
68548 [ 19316] By: rgs                                   on 2003/04/23  19:11:01
68549         Log: A new fatal error :
68550              Subject: [PATCH] Perl_croak("Use of freed value in iteration")
68551              From: Dave Mitchell <davem@fdgroup.com>
68552              Date: Mon, 21 Apr 2003 13:19:50 +0100
68553              Message-ID: <20030421121950.GB18189@fdgroup.com>
68554              Message-ID: <20030421125433.GC18189@fdgroup.com>
68555      Branch: perl
68556            ! pod/perldiag.pod pp_hot.c t/cmd/for.t
68557 ____________________________________________________________________________
68558 [ 19314] By: jhi                                   on 2003/04/23  18:53:46
68559         Log: Introduce 'fast stdio' symbols to non-Configure lands.
68560      Branch: perl
68561            ! NetWare/config.wc NetWare/config_H.wc configure.com
68562            ! epoc/config.sh plan9/config.plan9 plan9/config_h.sample
68563            ! plan9/config_sh.sample uconfig.h uconfig.sh win32/config.bc
68564            ! win32/config.gc win32/config.vc win32/config.vc64
68565            ! win32/config_H.bc win32/config_H.gc win32/config_H.vc
68566            ! win32/config_H.vc64 wince/config.ce wince/config_H.ce
68567 ____________________________________________________________________________
68568 [ 19312] By: jhi                                   on 2003/04/23  18:21:47
68569         Log: Regen Configure, Glossary, et alia.
68570      Branch: perl
68571            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
68572            ! config_h.SH
68573 ____________________________________________________________________________
68574 [ 19310] By: jhi                                   on 2003/04/23  08:34:33
68575         Log: Handle the combination of dosish and non-faststdio.
68576      Branch: perl
68577            ! t/io/layers.t
68578 ____________________________________________________________________________
68579 [ 19308] By: rgs                                   on 2003/04/22  20:53:20
68580         Log: Subject: 5.8.0: two problems
68581              From: Ilya Zakharevich <ilya@Math.Berkeley.EDU>
68582              Date: Tue, 22 Apr 2003 11:43:17 -0700
68583              Message-ID: <20030422184316.GA8602@math.berkeley.edu>
68584      Branch: perl
68585            ! XSUB.h
68586 ____________________________________________________________________________
68587 [ 19307] By: ams                                   on 2003/04/22  16:39:51
68588         Log: Subject: [PATCH] Doc pointers in perlbot.
68589              From: Casey West <casey@geeknest.com>
68590              Date: Tue, 22 Apr 2003 11:19:09 -0400
68591              Message-Id: <20030422151909.GC11119@geeknest.com>
68592              (Applied by hand.)
68593      Branch: perl
68594            ! pod/perlbot.pod
68595 ____________________________________________________________________________
68596 [ 19306] By: jhi                                   on 2003/04/22  13:09:21
68597         Log: z/OS: changes for building threaded from "Brian De Pradine"
68598              <PRADINE@uk.ibm.com>.
68599      Branch: perl
68600            ! Makefile.SH hints/os390.sh thread.h util.c
68601 ____________________________________________________________________________
68602 [ 19305] By: jhi                                   on 2003/04/22  11:42:35
68603         Log: Enache's turn.
68604      Branch: perl
68605            ! ext/Encode/t/enc_module.t
68606 ____________________________________________________________________________
68607 [ 19304] By: jhi                                   on 2003/04/22  10:48:47
68608         Log: Re-merge Encode 1.92.
68609      Branch: perl
68610            ! ext/Encode/Makefile.PL ext/Encode/t/enc_module.t
68611 ____________________________________________________________________________
68612 [ 19302] By: jhi                                   on 2003/04/22  05:26:21
68613         Log: Argh, cut-and-pasto.
68614      Branch: perl
68615            ! perlio.c
68616 ____________________________________________________________________________
68617 [ 19301] By: sky                                   on 2003/04/21  21:33:14
68618         Log: Fix bug 17964 by properly refcounting the gv top.
68619              Seems like the entries in rsfp are way different than
68620              normal PVIO objects.
68621      Branch: perl
68622            ! sv.c
68623 ____________________________________________________________________________
68624 [ 19300] By: rgs                                   on 2003/04/21  19:42:04
68625         Log: Fix another segfault case (warn called from UNIVERSAL::DESTROY).
68626
68627              Subject: Re: [perl #21347] segfault in UNIVERSAL::AUTOLOAD
68628              From: Enache Adrian <enache@rdslink.ro>
68629              Date: Sun, 20 Apr 2003 02:45:48 +0300
68630              Message-ID: <20030419234548.GA849@ratsnest.hole>
68631              and
68632              Date: Wed, 2 Apr 2003 07:52:28 +0300
68633              Message-ID: <20030402045227.GA1023@ratsnest.hole>
68634      Branch: perl
68635            ! pp_sys.c t/op/ref.t util.c
68636 ____________________________________________________________________________
68637 [ 19299] By: sky                                   on 2003/04/21  17:05:31
68638         Log: Croak on non ref to shared methods instead of segfault.
68639              This can really only happen for &share("string").
68640      Branch: perl
68641            ! ext/threads/shared/shared.xs
68642 ____________________________________________________________________________
68643 [ 19297] By: jhi                                   on 2003/04/21  16:24:36
68644         Log: Add OpenZaurus cross-compilation patches.
68645      Branch: perl
68646            + Cross/Makefile Cross/Makefile.SH.patch Cross/TODO Cross/config
68647            + Cross/config.sh-arm-linux Cross/generate_config_sh
68648            + Cross/installperl.patch Cross/warp
68649            ! Cross/README INSTALL MANIFEST
68650 ____________________________________________________________________________
68651 [ 19289] By: sky                                   on 2003/04/21  13:24:40
68652         Log: Fixes bug #17043, resets PL_srand_called before the cloning.
68653              Allows people to override the resetting by using srand() in CLONE.
68654      Branch: perl
68655            ! ext/threads/t/thread.t ext/threads/threads.xs
68656 ____________________________________________________________________________
68657 [ 19286] By: jhi                                   on 2003/04/21  06:50:42
68658         Log: Introduce two new Configure symbols:
68659              [1] d_faststdio  = d_stdstdio && d_stdio_ptr_lval &&
68660              (d_stdio_cnt_lval || d_stdio_ptr_lval_sets_cnt)
68661              [2] usefaststdio = do we use fast stdio if we have it?
68662              For 5.[68], we do.  For anything else, we don't.
68663              (At least, unless otherwise instructed by -Dusefaststdio.)
68664              This means that for bleadperl we no more use stdio, but instead
68665              default to perlio: the effect of PERLIO=perlio, in other words.
68666              (PERLIO=stdio will still switch to using stdio.)
68667              This change may endanger extensions using FILE*-- but if we are
68668              to migrate fully to perlio, better start swallowing the poison now.
68669              For maintperl, the usefaststdio still defaults to yes.
68670      Branch: perl
68671            ! Configure config_h.SH perlio.c t/io/layers.t
68672 ____________________________________________________________________________
68673 [ 19285] By: jhi                                   on 2003/04/21  05:43:55
68674         Log: Upgrade to Locale::Maketext 1.05.
68675      Branch: perl
68676            ! lib/Locale/Maketext.pm lib/Locale/Maketext/ChangeLog
68677 ____________________________________________________________________________
68678 [ 19284] By: jhi                                   on 2003/04/21  05:40:34
68679         Log: Upgrade to Test 1.24.
68680      Branch: perl
68681            ! lib/Test.pm
68682 ____________________________________________________________________________
68683 [ 19283] By: rgs                                   on 2003/04/20  22:01:28
68684         Log: Subject: [PATCH] goto &sub doesn't empty @_
68685              From: Dave Mitchell <davem@fdgroup.com>
68686              Date: Sun, 20 Apr 2003 21:46:51 +0100
68687              Message-ID: <20030420204651.GE15591@fdgroup.com>
68688      Branch: perl
68689            ! pp_ctl.c
68690 ____________________________________________________________________________
68691 [ 19282] By: rgs                                   on 2003/04/20  21:22:29
68692         Log: Remove, in the main Makefile, the $(LDLIBPTH) variable from
68693              the commands that invoke $(CC).
68694              Subject: Re: Smoke failure
68695              From: Enache Adrian <enache@rdslink.ro>
68696              Date: Fri, 18 Apr 2003 19:06:07 +0300
68697              Message-ID: <20030418160606.GA797@ratsnest.hole>
68698      Branch: perl
68699            ! Makefile.SH
68700 ____________________________________________________________________________
68701 [ 19281] By: rgs                                   on 2003/04/20  19:53:53
68702         Log: Subject: Re: [perl #22000] AutoReply: [PATCH] Naughty sv_gets/RsRECORD bug
68703              From: Enache Adrian <enache@rdslink.ro>
68704              Date: Sat, 19 Apr 2003 20:12:18 +0300
68705              Message-ID: <20030419171218.GA974@ratsnest.hole>
68706      Branch: perl
68707            ! sv.c
68708 ____________________________________________________________________________
68709 [ 19280] By: rgs                                   on 2003/04/20  18:55:40
68710         Log: Document PERL_DEBUGGING_MSTATS in INSTALL and in the Win32 Makefile.
68711              Subject: [DOC PATCH 5.8.0] Re: Problem with Devel::Peek on Perl 5.8.0
68712              From: Steve Hay <steve.hay@uk.radan.com>
68713              Date: Wed, 16 Apr 2003 11:12:22 +0100
68714              Message-ID: <3E9D2C86.8040104@uk.radan.com>
68715      Branch: perl
68716            ! INSTALL win32/Makefile
68717 ____________________________________________________________________________
68718 [ 19278] By: jhi                                   on 2003/04/20  07:42:17
68719         Log: Give more information of what to do when -Dusexxx fail.
68720      Branch: perl
68721            ! Configure
68722 ____________________________________________________________________________
68723 [ 19277] By: rgs                                   on 2003/04/19  19:40:22
68724         Log: Fix bug #21347 (segfault in UNIVERSAL::AUTOLOAD with qr//)
68725              by adding a dummy destructor method Regexp::DESTROY.
68726              This prevents infinite recursion, since Regexp::DESTROY
68727              is no more autoloaded.
68728
68729              Subject: Re: [perl #21347] segfault in UNIVERSAL::AUTOLOAD
68730              From: Enache Adrian <enache@rdslink.ro>
68731              Date: Wed, 2 Apr 2003 05:02:42 +0300
68732              Message-ID: <20030402020242.GA2966@ratsnest.hole>
68733      Branch: perl
68734            ! ext/B/t/stash.t t/op/ref.t universal.c
68735 ____________________________________________________________________________
68736 [ 19276] By: rgs                                   on 2003/04/19  19:32:25
68737         Log: Subject: Re: [PATCH] [perl #21875] Hash ref transformed as a list
68738              From: Dave Mitchell <davem@fdgroup.com>
68739              Date: Sat, 19 Apr 2003 20:06:51 +0100
68740              Message-ID: <20030419190651.GD13333@fdgroup.com>
68741      Branch: perl
68742            ! t/comp/parser.t toke.c
68743 ____________________________________________________________________________
68744 [ 19275] By: jhi                                   on 2003/04/19  18:52:24
68745         Log: Restore the two variables retired by the change #19268
68746              (for binary backward compatibility)
68747      Branch: perl
68748            ! embedvar.h perlapi.h thrdvar.h
68749 ____________________________________________________________________________
68750 [ 19273] By: jhi                                   on 2003/04/19  17:36:33
68751         Log: Fail if the specified -Duse64xxx cannot be fulfilled.
68752              (And undo a doublesize probe glitch from change #19272.)
68753      Branch: perl
68754            ! Configure
68755 ____________________________________________________________________________
68756 [ 19272] By: jhi                                   on 2003/04/19  16:38:12
68757         Log: If long doubles fail, we really cannot sensibly
68758              drop back to doubles anymore, therefore abort.
68759              Pointed out by Slaven Rezic. (I tried to fix this
68760              via metaconfig but ended up with a vicious cyclic
68761              dependency.)
68762      Branch: perl
68763            ! Configure
68764 ____________________________________________________________________________
68765 [ 19270] By: jhi                                   on 2003/04/19  12:09:21
68766         Log: Upgrade to Net::Ping 2.30.
68767      Branch: perl
68768            ! lib/Net/Ping.pm lib/Net/Ping/Changes
68769            ! lib/Net/Ping/t/450_service.t
68770 ____________________________________________________________________________
68771 [ 19269] By: jhi                                   on 2003/04/19  07:10:57
68772         Log: Bump the test count.
68773      Branch: perl
68774            ! ext/Storable/t/tied.t
68775 ____________________________________________________________________________
68776 [ 19268] By: jhi                                   on 2003/04/19  07:06:13
68777         Log: Subject: [PATCH] allow recursive FETCHes
68778              From: Dave Mitchell <davem@fdgroup.com>
68779              Date: Mon, 7 Apr 2003 10:00:41 +0100
68780              Message-ID: <20030407100041.A1617@fdgroup.com>
68781      Branch: perl
68782            ! av.c dump.c embed.fnc embed.h embedvar.h
68783            ! ext/Storable/t/st-dump.pl hv.c perl.c perlapi.h proto.h sv.c
68784            ! sv.h t/op/tie.t thrdvar.h
68785 ____________________________________________________________________________
68786 [ 19267] By: jhi                                   on 2003/04/19  06:54:34
68787         Log: Subject: [PATCH] readline.t tweak for VMS
68788              From: "Craig A. Berry" <craigberry@mac.com>
68789              Date: Thu, 17 Apr 2003 17:18:19 -0500
68790              Message-ID: <3E9F282B.6090603@mac.com>
68791      Branch: perl
68792            ! t/op/readline.t
68793 ____________________________________________________________________________
68794 [ 19266] By: jhi                                   on 2003/04/19  06:46:48
68795         Log: Subject: [PATCH] Re: any takers for this Storable bug?
68796              From: Enache Adrian <enache@rdslink.ro>
68797              Date: Wed, 16 Apr 2003 21:11:11 +0300
68798              Message-ID: <20030416181111.GA6687@ratsnest.hole>
68799
68800              ams had already fixed the bug by #19227, but take the
68801              test case.
68802      Branch: perl
68803            ! ext/Storable/t/tied.t
68804 ____________________________________________________________________________
68805 [ 19265] By: sky                                   on 2003/04/19  00:40:42
68806         Log: Don't use the stack to allocate a SV that we hand out to another
68807              function, only badness can ensure.
68808              Message-Id: <20030418180131.GD10086@fdgroup.com>
68809              Thanks go to Dave Mitchell for help in tracking down the bug!
68810      Branch: perl
68811            ! sv.c
68812 ____________________________________________________________________________
68813 [ 19264] By: jhi                                   on 2003/04/18  19:28:04
68814         Log: UTF8 regexp patch from Inaba Hiroto.
68815      Branch: perl
68816            ! regcomp.c t/op/pat.t
68817 ____________________________________________________________________________
68818 [ 19263] By: jhi                                   on 2003/04/18  19:16:43
68819         Log: Unused variables.
68820      Branch: perl
68821            ! perlio.c universal.c
68822 ____________________________________________________________________________
68823 [ 19262] By: sky                                   on 2003/04/17  20:02:33
68824         Log: Another needle in the voodoo doll.
68825              Now I think it should work with the shared
68826              strings.
68827      Branch: perl
68828            ! sv.c
68829 ____________________________________________________________________________
68830 [ 19254] By: sky                                   on 2003/04/17  17:31:52
68831         Log: Extreme Voodoo programming, by not pinching the SV if it is a
68832              PADTMP it happily keeps it's value later on!
68833      Branch: perl
68834            ! sv.c
68835 ____________________________________________________________________________
68836 [ 19253] By: jhi                                   on 2003/04/17  17:09:16
68837         Log: Implement -Dnoextensions=... and -Donlyextensions=...
68838      Branch: perl
68839            ! Configure INSTALL
68840 ____________________________________________________________________________
68841 [ 19252] By: ams                                   on 2003/04/17  16:19:31
68842         Log: Speculative fix: don't set GvNAMELEN to 1 if GvNAME is "".
68843              Anything that's broken by this change should be fixed.
68844      Branch: perl
68845            ! gv.c
68846 ____________________________________________________________________________
68847 [ 19251] By: jhi                                   on 2003/04/17  15:39:56
68848         Log: Introduce the new *l APIs, undefined, to non-Configure lands.
68849      Branch: perl
68850            ! NetWare/config.wc NetWare/config_H.wc configure.com
68851            ! djgpp/configure.bat epoc/config.sh plan9/config.plan9
68852            ! plan9/config_h.sample plan9/config_sh.sample win32/config.bc
68853            ! win32/config.gc win32/config.vc win32/config.vc64
68854            ! win32/config_H.bc win32/config_H.gc win32/config_H.vc
68855            ! win32/config_H.vc64 wince/config.ce wince/config_H.ce
68856 ____________________________________________________________________________
68857 [ 19250] By: jhi                                   on 2003/04/17  15:07:08
68858         Log: Regen Glossary et alia.
68859      Branch: perl
68860            ! Porting/Glossary Porting/config.sh Porting/config_H
68861 ____________________________________________________________________________
68862 [ 19248] By: jhi                                   on 2003/04/17  14:53:41
68863         Log: Small tidying up of the selectminbits code, but most
68864              importantly allocate the buffer from the heap using
68865              malloc, not from the stack: using stack causes unaligned
68866              access in LP64 Solaris since stack data is not guaranteed
68867              to be 64-bit aligned, while a fd_set is (it has 1024 longs).
68868              (via Alan Burlison)
68869      Branch: perl
68870            ! Configure
68871 ____________________________________________________________________________
68872 [ 19247] By: ams                                   on 2003/04/17  12:24:57
68873         Log: Subject: Re: [perl #21950] 5.8.x -- :scalar and magic strings
68874              From: Enache Adrian <enache@rdslink.ro>
68875              Date: Thu, 17 Apr 2003 14:35:36 +0300
68876              Message-Id: <20030417113536.GA898@ratsnest.hole>
68877      Branch: perl
68878            ! ext/PerlIO/scalar/scalar.xs ext/PerlIO/t/scalar.t
68879 ____________________________________________________________________________
68880 [ 19245] By: jhi                                   on 2003/04/17  09:20:27
68881         Log: Document that the open pragma does not affect
68882              the three-headed hydra, ummm, open.
68883      Branch: perl
68884            ! lib/open.pm
68885 ____________________________________________________________________________
68886 [ 19244] By: jhi                                   on 2003/04/17  06:45:26
68887         Log: More maneuvering closer to proposed POSIX classes
68888              mapping to Unicode: (1) The definitions of "graph" and
68889              "print" are still in flux: move closer back to how Perl
68890              5.8.0 defined it (though drop Co, that did not make sense)
68891              (2) Add U+0085 (NEL) to "space".
68892      Branch: perl
68893            ! lib/unicore/lib/Graph.pl lib/unicore/lib/Print.pl
68894            ! lib/unicore/lib/Space.pl lib/unicore/mktables
68895 ____________________________________________________________________________
68896 [ 19243] By: jhi                                   on 2003/04/17  05:29:24
68897         Log: Detect the 'fast stdio' case.
68898      Branch: perl
68899            ! lib/PerlIO.pm t/io/layers.t
68900 ____________________________________________________________________________
68901 [ 19242] By: jhi                                   on 2003/04/16  20:14:01
68902         Log: Fix up Larry's copyright statements to my best knowledge.
68903              (Lots of Perl 5 source code archaeology was involved.)
68904              Larry didn't make strangled noises when I showed him
68905              the patch, either :-)
68906      Branch: perl
68907            ! EXTERN.h INTERN.h Porting/pumpkin.pod README XSUB.h av.c av.h
68908            ! cc_runtime.h cop.h cv.h deb.c doio.c doop.c dosish.h dump.c
68909            ! embed.h embed.pl embedvar.h fakesdio.h fakethr.h form.h
68910            ! global.sym globals.c gv.c gv.h handy.h hv.c hv.h keywords.h
68911            ! keywords.pl locale.c mg.c mg.h miniperlmain.c nostdio.h
68912            ! numeric.c op.c op.h opcode.h opcode.pl opnames.h pad.c pad.h
68913            ! patchlevel.h perl.c perl.h perlapi.c perlapi.h perlio.h
68914            ! perlsdio.h perlsfio.h perlvars.h pp.c pp.h pp_ctl.c pp_hot.c
68915            ! pp_pack.c pp_sort.c pp_sys.c proto.h reentr.c reentr.h
68916            ! reentr.pl regcomp.c regcomp.h regexec.c regexp.h run.c scope.c
68917            ! scope.h sv.c sv.h taint.c thrdvar.h thread.h toke.c
68918            ! universal.c unixish.h utf8.c utf8.h utfebcdic.h util.c util.h
68919            ! x2p/EXTERN.h x2p/INTERN.h x2p/a2p.c x2p/a2p.h x2p/a2p.y
68920            ! x2p/a2py.c x2p/hash.c x2p/hash.h x2p/proto.h x2p/str.c
68921            ! x2p/str.h x2p/util.c x2p/util.h x2p/walk.c xsutils.c
68922 ____________________________________________________________________________
68923 [ 19241] By: jhi                                   on 2003/04/16  17:24:24
68924         Log: Handle PERLIO= and document a bit.
68925      Branch: perl
68926            ! lib/PerlIO.pm pod/perlrun.pod t/io/layers.t
68927 ____________________________________________________________________________
68928 [ 19240] By: sky                                   on 2003/04/16  16:27:43
68929         Log: Fix double join problem for those places where free
68930              actually means free (solaris for example :)
68931              Fixes bug #16681
68932      Branch: perl
68933            ! ext/threads/t/join.t ext/threads/threads.xs
68934 ____________________________________________________________________________
68935 [ 19239] By: jhi                                   on 2003/04/16  14:57:47
68936         Log: Try to get the layers.t working also for dosish platforms.
68937      Branch: perl
68938            ! lib/PerlIO.pm t/io/layers.t
68939 ____________________________________________________________________________
68940 [ 19238] By: jhi                                   on 2003/04/16  13:27:24
68941         Log: A -C parsed from the #! line can still have line endings in it.
68942      Branch: perl
68943            ! util.c
68944 ____________________________________________________________________________
68945 [ 19237] By: jhi                                   on 2003/04/16  13:23:37
68946         Log: What does an empty PERLIO= mean, anyway?
68947      Branch: perl
68948            ! t/io/layers.t
68949 ____________________________________________________________________________
68950 [ 19236] By: jhi                                   on 2003/04/16  13:09:42
68951         Log: Document the effect of thread creation context.
68952      Branch: perl
68953            ! ext/threads/threads.pm
68954 ____________________________________________________________________________
68955 [ 19235] By: jhi                                   on 2003/04/16  12:13:07
68956         Log: Use the right prototype and a glob is fine (from Rafael).
68957      Branch: perl
68958            ! lib/PerlIO.pm universal.c
68959 ____________________________________________________________________________
68960 [ 19234] By: jhi                                   on 2003/04/16  10:20:46
68961         Log: PerlIO::get_layers() usage tip.
68962      Branch: perl
68963            ! lib/PerlIO.pm
68964 ____________________________________________________________________________
68965 [ 19233] By: jhi                                   on 2003/04/16  10:07:48
68966         Log: Syntax terror.
68967      Branch: perl
68968            ! lib/unicore/mktables
68969 ____________________________________________________________________________
68970 [ 19232] By: jhi                                   on 2003/04/16  09:45:51
68971         Log: Redundant test.
68972      Branch: perl
68973            ! lib/unicore/mktables
68974 ____________________________________________________________________________
68975 [ 19231] By: jhi                                   on 2003/04/16  09:21:25
68976         Log: Synchronize the specifications of the POSIX character
68977              classes alnum, graph, and print closer to the planned
68978              Unicode proposal.
68979      Branch: perl
68980            ! lib/unicore/lib/Alnum.pl lib/unicore/lib/Graph.pl
68981            ! lib/unicore/lib/Print.pl lib/unicore/mktables utf8.c
68982 ____________________________________________________________________________
68983 [ 19230] By: jhi                                   on 2003/04/16  08:57:01
68984         Log: Patch from Merijn.
68985      Branch: perl
68986            ! perl.h
68987 ____________________________________________________________________________
68988 [ 19228] By: jhi                                   on 2003/04/16  08:27:26
68989         Log: Thinko in modfl detection.
68990      Branch: perl
68991            ! Configure
68992 ____________________________________________________________________________
68993 [ 19227] By: ams                                   on 2003/04/16  02:32:11
68994         Log: Storable now handles self-tied scalars with NULL mg_obj.
68995      Branch: perl
68996            ! ext/Storable/Storable.xs
68997 ____________________________________________________________________________
68998 [ 19226] By: jhi                                   on 2003/04/15  18:00:21
68999         Log: Upgrade to Pod::LaTeX 0.55.
69000      Branch: perl
69001            + lib/Pod/t/pod2latex.t
69002            - lib/Pod/t/latex.t
69003            ! MANIFEST lib/Pod/LaTeX.pm pod/pod2latex.PL
69004 ____________________________________________________________________________
69005 [ 19224] By: jhi                                   on 2003/04/15  17:01:27
69006         Log: The 'disable-longdouble-if-no-modfl-sqrtl' part didn't stick.
69007      Branch: perl
69008            ! Configure
69009 ____________________________________________________________________________
69010 [ 19223] By: jhi                                   on 2003/04/15  16:36:32
69011         Log: Handle PERLIO=stdio, PERLIO=perlio, PERLIO=mmap, and no PERLIO.
69012      Branch: perl
69013            ! t/io/layers.t
69014 ____________________________________________________________________________
69015 [ 19221] By: jhi                                   on 2003/04/15  16:27:49
69016         Log: False alarm: no cyclic dependency.
69017      Branch: perl
69018            ! Configure config_h.SH
69019 ____________________________________________________________________________
69020 [ 19219] By: jhi                                   on 2003/04/15  16:08:11
69021         Log: Backport of _most_ of the changes in #19218: not one big
69022              cyclic dependency, though, it must be broken up somehow.
69023      Branch: perl
69024            ! Configure config_h.SH
69025 ____________________________________________________________________________
69026 [ 19218] By: jhi                                   on 2003/04/15  14:09:31
69027         Log: Big patch from Alan Burlison to make Solaris long doubles work.
69028              (Also spreads more <stdlib.h> joy.)
69029              Needs backporting to metaconfig units and introducing the new
69030              symbols to non-Configure lands.
69031      Branch: perl
69032            ! Configure config_h.SH hints/solaris_2.sh numeric.c perl.h pp.c
69033 ____________________________________________________________________________
69034 [ 19217] By: jhi                                   on 2003/04/15  14:01:03
69035         Log: Don't skip the whole test for PERLIO=perlio.
69036      Branch: perl
69037            ! t/io/layers.t
69038 ____________________________________________________________________________
69039 [ 19215] By: jhi                                   on 2003/04/15  05:54:17
69040         Log: Add a test for [perl #17753].
69041      Branch: perl
69042            ! t/op/undef.t
69043 ____________________________________________________________________________
69044 [ 19214] By: jhi                                   on 2003/04/15  05:40:52
69045         Log: "proto.h": 'id' is a reserved word in Objective-C.
69046      Branch: perl
69047            ! embed.fnc op.c proto.h
69048 ____________________________________________________________________________
69049 [ 19213] By: sky                                   on 2003/04/14  21:42:10
69050         Log: Ook, run tests on correct build-dir next time.
69051              We must check if the hv is a stash, otherwise we try to delete
69052              something that is a HvNAME of null.....  tests pass better now
69053      Branch: perl
69054            ! gv.c
69055 ____________________________________________________________________________
69056 [ 19212] By: sky                                   on 2003/04/14  21:15:00
69057         Log: Fixes to bugs introduced by PL_stashcache
69058              A) Follow suggestion by Benjamin Goldberg to use hv_delete
69059              instead of hv_delete_ent to avoid creating a temporary SV
69060              B) Don't increment the refcount, sneak it into an IV instead
69061              C) When a GP is a deleted that contains a stash, remove the
69062              corresponding entry since hv might be in use in other places.
69063              D) Note that no test cases test the deletion of packages to catch
69064              this bug.
69065      Branch: perl
69066            ! gv.c hv.c pp_hot.c
69067 ____________________________________________________________________________
69068 [ 19211] By: rgs                                   on 2003/04/14  21:11:11
69069         Log: Mention that "make test_harness" lets messages sent through
69070              standard error out. Complements change #19206.
69071      Branch: perl
69072            ! pod/perlhack.pod
69073 ____________________________________________________________________________
69074 [ 19210] By: rgs                                   on 2003/04/14  20:48:02
69075         Log: Subject: Re: Parse::RecDescent triggers infinete loop in perl5.9.0 and 5.8.1  [perl #17757]
69076              From: Inaba Hiroto <inaba@st.rim.or.jp>
69077              Date: Fri, 21 Mar 2003 17:35:21 +0900
69078              Message-ID: <3E7ACEC8.E0D57221@st.rim.or.jp>
69079              Date: Sat, 22 Mar 2003 11:28:05 +0900
69080              Message-ID: <3E7BCA34.6824269F@st.rim.or.jp>
69081      Branch: perl
69082            ! regexec.c t/op/pat.t
69083 ____________________________________________________________________________
69084 [ 19209] By: jhi                                   on 2003/04/14  20:36:55
69085         Log: PERLIO=perlio requires extra steps.
69086      Branch: perl
69087            ! lib/PerlIO.pm t/io/layers.t
69088 ____________________________________________________________________________
69089 [ 19208] By: jhi                                   on 2003/04/14  20:02:04
69090         Log: Skip as early as possible if no perlio since the
69091              use open would be compile-time.
69092      Branch: perl
69093            ! t/io/layers.t
69094 ____________________________________________________________________________
69095 [ 19207] By: rgs                                   on 2003/04/14  19:34:42
69096         Log: Document and test autovivified dirhandles.
69097              Subject: [perl #21952] [patch] t/op/readdir.t and perlfunc.pod
69098              From: Nathan Torkington (via RT) <perlbug-followup@perl.org>
69099              Date: 12 Apr 2003 12:40:45 -0000
69100              Message-Id: <rt-21952-55079.8.08945458828887@bugs6.perl.org>
69101      Branch: perl
69102            ! pod/perlfunc.pod t/op/readdir.t
69103 ____________________________________________________________________________
69104 [ 19206] By: rgs                                   on 2003/04/14  19:13:26
69105         Log: More docs about running tests and the test suite.
69106              Update perlhack.pod in various places.
69107              Add 'test_harness' as a .PHONY dependency in the Makefile.
69108      Branch: perl
69109            ! Makefile.SH pod/perlhack.pod t/README
69110 ____________________________________________________________________________
69111 [ 19205] By: jhi                                   on 2003/04/14  18:58:01
69112         Log: Build get_layers() also under -Uuseperlio.
69113      Branch: perl
69114            ! universal.c
69115 ____________________________________________________________________________
69116 [ 19204] By: jhi                                   on 2003/04/14  18:48:04
69117         Log: Bump up the version and admonish against aspiring (ab)use.
69118      Branch: perl
69119            ! lib/PerlIO.pm
69120 ____________________________________________________________________________
69121 [ 19203] By: jhi                                   on 2003/04/14  17:35:51
69122         Log: Introduce PerlIO::get_layers() to allow people to peek
69123              at the PerlIO layer stack.
69124      Branch: perl
69125            + t/io/layers.t
69126            ! MANIFEST lib/PerlIO.pm perlio.c perlio.h t/io/open.t
69127            ! universal.c
69128 ____________________________________________________________________________
69129 [ 19202] By: merijn                                on 2003/04/14  05:42:18
69130         Log: Subject: [PATCH] vms/vms.c waitpid tweak
69131              From: "Craig A. Berry" <craigberry@mac.com>
69132              Date: Mon, 14 Apr 2003 00:43:00 -0500
69133              Message-ID: <3E9A4A64.6030205@mac.com>
69134      Branch: perl
69135            ! vms/vms.c
69136 ____________________________________________________________________________
69137 [ 19201] By: sky                                   on 2003/04/13  19:26:46
69138         Log: Fix bug #16253, use all the CPU that we can :-)
69139      Branch: perl
69140            ! ext/threads/threads.xs
69141 ____________________________________________________________________________
69142 [ 19200] By: sky                                   on 2003/04/13  18:38:58
69143         Log: Fix bug #15893 by creating shared scalars with a refcount of 1
69144              instead of 2 and make push and pop increase the refcount.
69145      Branch: perl
69146            ! ext/threads/shared/shared.xs
69147 ____________________________________________________________________________
69148 [ 19199] By: jhi                                   on 2003/04/13  11:45:42
69149         Log: Because we chdir to 'Big-Dummy' the lib/utf8.pm may be at
69150              ../../lib for the lc() at line 66 (UTF-8 data possible
69151              if using UTF-8 locales).
69152      Branch: perl
69153            ! lib/ExtUtils/t/Install.t
69154 ____________________________________________________________________________
69155 [ 19198] By: jhi                                   on 2003/04/13  09:43:09
69156         Log: The lib/ipc_sysv.t test has a new name.
69157      Branch: perl
69158            ! INSTALL
69159 ____________________________________________________________________________
69160 [ 19197] By: jhi                                   on 2003/04/13  09:32:05
69161         Log: Continue hunting for the cause of the Tru64 failed threaded smokes
69162              most probably introduced by the change #19157.  The tweak suggested
69163              by Stephen McCamant trades a possible dangling pointer (CopFILE()
69164              is tricky like that with threads) to a memory leak.  (This means
69165              that this tweak shouldn't be left in as-is, but if this helps,
69166              we at least know that the failure was caused by the #19157.)
69167      Branch: perl
69168            ! op.c
69169 ____________________________________________________________________________
69170 [ 19196] By: jhi                                   on 2003/04/13  09:20:02
69171         Log: Upgrade to Net::Ping 2.29.
69172      Branch: perl
69173            + lib/Net/Ping/t/510_ping_udp.t
69174            - lib/Net/Ping/README
69175            ! MANIFEST lib/Net/Ping.pm lib/Net/Ping/Changes
69176 ____________________________________________________________________________
69177 [ 19195] By: jhi                                   on 2003/04/13  09:02:05
69178         Log: Upgrade to Test::Harness 2.27_04.
69179      Branch: perl
69180            + lib/Test/Harness/t/pod.t t/lib/sample-tests/switches
69181            ! MANIFEST lib/Test/Harness.pm lib/Test/Harness/Straps.pm
69182            ! lib/Test/Harness/t/test-harness.t
69183 ____________________________________________________________________________
69184 [ 19194] By: rgs                                   on 2003/04/12  21:21:04
69185         Log: Darwin/Rhapsody hints files updates by Wilfredo Sánchez
69186      Branch: perl
69187            ! hints/darwin.sh hints/rhapsody.sh
69188 ____________________________________________________________________________
69189 [ 19192] By: jhi                                   on 2003/04/12  18:23:40
69190         Log: The debugging aid #19182 didn't.
69191      Branch: perl
69192            ! ext/B/t/deparse.t
69193 ____________________________________________________________________________
69194 [ 19191] By: jhi                                   on 2003/04/12  16:51:12
69195         Log: Benchmark nit from Nicholas Clark (in OpenBSD the result could
69196              be a negative zero, -0).
69197      Branch: perl
69198            ! lib/Benchmark.t
69199 ____________________________________________________________________________
69200 [ 19190] By: rgs                                   on 2003/04/12  13:41:25
69201         Log: Subject: [PATCH] MakeMaker 6.10_02 -> 6.10_03
69202              From: Michael G Schwern <schwern@pobox.com>
69203              Date: Fri, 11 Apr 2003 00:32:02 -0700
69204              Message-ID: <20030411073202.GC5916@windhund.schwern.org>
69205      Branch: perl
69206            ! lib/ExtUtils/MM_Any.pm lib/ExtUtils/MM_MacOS.pm
69207            ! lib/ExtUtils/MM_Unix.pm lib/ExtUtils/MM_VMS.pm
69208            ! lib/ExtUtils/MakeMaker.pm lib/ExtUtils/TODO
69209            ! lib/ExtUtils/t/00compile.t lib/ExtUtils/t/00setup_dummy.t
69210            ! lib/ExtUtils/t/Installed.t lib/ExtUtils/t/basic.t
69211            ! lib/ExtUtils/t/zz_cleanup_dummy.t
69212 ____________________________________________________________________________
69213 [ 19189] By: rgs                                   on 2003/04/10  20:40:14
69214         Log: Peter Scott suggests that the docs for base.pm should
69215              state explicitely that base.pm doesn't call import()
69216              on base classes. Plus a few typos.
69217      Branch: perl
69218            ! lib/base.pm
69219 ____________________________________________________________________________
69220 [ 19188] By: rgs                                   on 2003/04/10  19:45:08
69221         Log: PerlFAQ sync.
69222      Branch: perl
69223            ! pod/perlfaq.pod pod/perlfaq3.pod pod/perlfaq4.pod
69224            ! pod/perlfaq7.pod pod/perlfaq9.pod
69225 ____________________________________________________________________________
69226 [ 19187] By: rgs                                   on 2003/04/10  19:25:18
69227         Log: Fix bug #21914, 3-arg open + local $fh + strict coredump.
69228              There used to be a nullstash (%{"<none>::"}) to hold illegal
69229              variables under strict 'vars'. It has been removed by change #17942.
69230              This can lead to segfaults during the parsing, because some illegal
69231              variables might have been discarded before the compilation of the
69232              current statement had completed.
69233              Bug analysis and test case by Enache Adrian.
69234      Branch: perl
69235            ! gv.c t/lib/strict/vars
69236 ____________________________________________________________________________
69237 [ 19186] By: jhi                                   on 2003/04/10  19:13:40
69238         Log: Be more descriptive.
69239      Branch: perl
69240            ! MANIFEST
69241 ____________________________________________________________________________
69242 [ 19185] By: jhi                                   on 2003/04/10  19:06:02
69243         Log: Noted by Nat: -0 didn't work that well with Unicode.
69244      Branch: perl
69245            ! perl.c pod/perlrun.pod
69246 ____________________________________________________________________________
69247 [ 19184] By: jhi                                   on 2003/04/10  17:26:43
69248         Log: Add an option for the grok_xxx() to silently ignore bad digits.
69249      Branch: perl
69250            ! numeric.c perl.h
69251 ____________________________________________________________________________
69252 [ 19183] By: jhi                                   on 2003/04/10  10:56:25
69253         Log: The test doesn't work that well when -Uusedl.
69254              Some of the tests could be salvaged even then I guess.
69255      Branch: perl
69256            ! lib/ExtUtils/t/Constant.t
69257 ____________________________________________________________________________
69258 [ 19182] By: jhi                                   on 2003/04/10  09:40:24
69259         Log: A temporary debugging aid for Tru64 threaded builds.
69260      Branch: perl
69261            ! ext/B/t/deparse.t
69262 ____________________________________________________________________________
69263 [ 19181] By: jhi                                   on 2003/04/10  08:02:10
69264         Log: Unless Inuits are involved...
69265      Branch: perl
69266            ! pod/perlrun.pod
69267 ____________________________________________________________________________
69268 [ 19180] By: jhi                                   on 2003/04/10  07:02:44
69269         Log: With AFS the cwds have little chance of agreeing.
69270      Branch: perl
69271            ! ext/Cwd/t/cwd.t
69272 ____________________________________________________________________________
69273 [ 19179] By: jhi                                   on 2003/04/10  06:46:50
69274         Log: I assume the idea was to use the *cwd variables for testing.
69275      Branch: perl
69276            ! ext/Cwd/t/cwd.t
69277 ____________________________________________________________________________
69278 [ 19177] By: jhi                                   on 2003/04/10  04:34:48
69279         Log: perlport information about portably embedding string data.
69280      Branch: perl
69281            ! pod/perlport.pod
69282 ____________________________________________________________________________
69283 [ 19176] By: jhi                                   on 2003/04/10  04:18:45
69284         Log: Also locale names can contain illegal UTF-8.
69285      Branch: perl
69286            ! lib/locale.t
69287 ____________________________________________________________________________
69288 [ 19175] By: jhi                                   on 2003/04/10  04:03:48
69289         Log: In case someone is using UTF-8 locales.
69290      Branch: perl
69291            ! lib/ExtUtils/MM_MacOS.pm
69292 ____________________________________________________________________________
69293 [ 19174] By: merijn                                on 2003/04/09  14:33:12
69294         Log: Even more promotion for -lc128 (long doubles on AIX)
69295              More obvious detection of C compiler
69296              cc_type should not promote to config.sh
69297
69298              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
69299              Date: Wed, 09 Apr 2003 14:31:48 +0200
69300              Message-Id: <20030409143007.B4A4.H.M.BRAND@hccnet.nl>
69301      Branch: perl
69302            ! hints/aix.sh
69303 ____________________________________________________________________________
69304 [ 19173] By: jhi                                   on 2003/04/09  12:39:35
69305         Log: open(my $fh, ">&", STDOUT) should not warn under strict.
69306      Branch: perl
69307            ! op.c t/io/open.t
69308 ____________________________________________________________________________
69309 [ 19172] By: jhi                                   on 2003/04/09  10:40:31
69310         Log: Try to be more descriptive than just __ANONIO__ which is what
69311              you get when you autovivify filehandles into array/hash elements.
69312      Branch: perl
69313            ! doio.c op.c t/io/open.t
69314 ____________________________________________________________________________
69315 [ 19171] By: rgs                                   on 2003/04/08  20:44:20
69316         Log: Implement support for --help and --version in Getopt::Std
69317              Subject: Re: [PATCH 5.8.1 @19053] Getopt::Std
69318              From: Ilya Zakharevich <ilya@Math.Berkeley.EDU>
69319              Date: Mon, 7 Apr 2003 17:07:15 -0700
69320              Message-ID: <20030408000714.GA953@math.berkeley.edu>
69321      Branch: perl
69322            ! lib/Getopt/Std.pm
69323 ____________________________________________________________________________
69324 [ 19170] By: rgs                                   on 2003/04/08  19:47:05
69325         Log: Subject: [PATCH] Re: Error: Unknown error
69326              From: Enache Adrian <enache@rdslink.ro>
69327              Date: Tue, 8 Apr 2003 07:12:13 +0300
69328              Message-ID: <20030408041213.GA13553@ratsnest.hole>
69329      Branch: perl
69330            ! lib/fields.t lib/strict.t op.c t/lib/strict/subs
69331 ____________________________________________________________________________
69332 [ 19169] By: rgs                                   on 2003/04/08  19:19:34
69333         Log: Subject: [PATCH] (vaguely connected with) [perl #21875] Hash ref transformed as a list
69334              From: Dave Mitchell <davem@fdgroup.com>
69335              Date: Mon, 7 Apr 2003 21:43:17 +0100
69336              Message-ID: <20030407204317.GA8796@fdgroup.com>
69337
69338              The new XTERMORDORDOR lexer expectation must also be named
69339              in debugging perls, to be used in the output of -DT.
69340      Branch: perl
69341            ! perl.h toke.c
69342 ____________________________________________________________________________
69343 [ 19168] By: rgs                                   on 2003/04/08  19:05:22
69344         Log: Document that perl recognizes 2>&1 on the command-line on VMS.
69345      Branch: perl
69346            ! vms/perlvms.pod
69347 ____________________________________________________________________________
69348 [ 19167] By: rgs                                   on 2003/04/08  18:47:18
69349         Log: Typos fixes by Stas Bekman.
69350      Branch: perl
69351            ! cv.h lib/attributes.pm sv.h
69352 ____________________________________________________________________________
69353 [ 19166] By: rgs                                   on 2003/04/08  18:43:22
69354         Log: Subject: [PATCH pod/perlpod.pod] was RE: How cross-platform is `foo 2>&1`  these days?
69355              From: Robin Barker <Robin.Barker@npl.co.uk>
69356              Date: Tue, 8 Apr 2003 14:23:04 +0100
69357              Message-ID: <533D273D4014D411AB1D00062938C4D904046395@hotel.npl.co.uk>
69358      Branch: perl
69359            ! pod/perlpod.pod
69360 ____________________________________________________________________________
69361 [ 19164] By: jhi                                   on 2003/04/08  04:42:05
69362         Log: Few more words about safe/unsafe signals.
69363      Branch: perl
69364            ! pod/perlipc.pod pod/perlrun.pod pod/perlvar.pod
69365 ____________________________________________________________________________
69366 [ 19163] By: jhi                                   on 2003/04/07  19:25:39
69367         Log: The SvGROW() might move the PV.
69368      Branch: perl
69369            ! pp.c
69370 ____________________________________________________________________________
69371 [ 19162] By: jhi                                   on 2003/04/07  18:23:29
69372         Log: Subject: Re: [PATCH] ExtUtils::MakeMaker 6.10_02
69373              From: Michael G Schwern <schwern@pobox.com>
69374              Date: Mon, 7 Apr 2003 02:09:17 -0700
69375              Message-ID: <20030407090917.GA9221@windhund.schwern.org>
69376      Branch: perl
69377            + lib/ExtUtils/t/MM_Any.t
69378            ! MANIFEST lib/ExtUtils/Command.pm lib/ExtUtils/Command/MM.pm
69379            ! lib/ExtUtils/Install.pm lib/ExtUtils/Installed.pm
69380            ! lib/ExtUtils/Liblist.pm lib/ExtUtils/Liblist/Kid.pm
69381            ! lib/ExtUtils/MM_Any.pm lib/ExtUtils/MM_BeOS.pm
69382            ! lib/ExtUtils/MM_Cygwin.pm lib/ExtUtils/MM_DOS.pm
69383            ! lib/ExtUtils/MM_MacOS.pm lib/ExtUtils/MM_NW5.pm
69384            ! lib/ExtUtils/MM_OS2.pm lib/ExtUtils/MM_UWIN.pm
69385            ! lib/ExtUtils/MM_Unix.pm lib/ExtUtils/MM_VMS.pm
69386            ! lib/ExtUtils/MM_Win32.pm lib/ExtUtils/MM_Win95.pm
69387            ! lib/ExtUtils/MakeMaker.pm lib/ExtUtils/MakeMaker/FAQ.pod
69388            ! lib/ExtUtils/Manifest.pm lib/ExtUtils/PATCHING
69389            ! lib/ExtUtils/README lib/ExtUtils/TODO
69390            ! lib/ExtUtils/t/00compile.t lib/ExtUtils/t/MM_Cygwin.t
69391            ! lib/ExtUtils/t/basic.t t/lib/MakeMaker/Test/Utils.pm
69392 ____________________________________________________________________________
69393 [ 19160] By: jhi                                   on 2003/04/07  04:17:38
69394         Log: Time::HiRes: Do not create files in blib directories under core
69395              (from Rafael)
69396      Branch: perl
69397            ! ext/Time/HiRes/Makefile.PL
69398 ____________________________________________________________________________
69399 [ 19159] By: jhi                                   on 2003/04/07  03:53:01
69400         Log: Future binary compat wishful thinking:
69401              maint will use the stashcache, but not the dbassertion.
69402      Branch: perl
69403            ! intrpvar.h
69404 ____________________________________________________________________________
69405 [ 19158] By: jhi                                   on 2003/04/07  03:41:17
69406         Log: More WinCE tweaking for Vadim Konovalov.
69407      Branch: perl
69408            ! wince/Makefile.ce wince/compile-all.bat wince/compile.bat
69409            ! wince/makedist.pl
69410 ____________________________________________________________________________
69411 [ 19157] By: rgs                                   on 2003/04/06  20:53:29
69412         Log: Subject: CvFILE for constant subs
69413              From: Stephen McCamant <smcc@mit.edu>
69414              Date: Sun, 6 Apr 2003 16:39:13 -0400
69415              Message-ID: <16016.36977.667436.279778@syllepsis.MIT.EDU>
69416      Branch: perl
69417            ! op.c
69418 ____________________________________________________________________________
69419 [ 19156] By: rgs                                   on 2003/04/06  20:44:09
69420         Log: Subject: [PATCH] B::Deparse: sv_no != 0
69421              From: Stephen McCamant <smcc@mit.edu>
69422              Date: Sun, 6 Apr 2003 17:00:48 -0400
69423              Message-ID: <16016.38272.921140.343901@syllepsis.MIT.EDU>
69424      Branch: perl
69425            ! ext/B/B/Deparse.pm
69426 ____________________________________________________________________________
69427 [ 19154] By: jhi                                   on 2003/04/06  19:46:35
69428         Log: An unconditional carp is not nice.
69429      Branch: perl
69430            ! ext/Sys/Syslog/Syslog.pm
69431 ____________________________________________________________________________
69432 [ 19153] By: rgs                                   on 2003/04/06  18:37:58
69433         Log: Subject: [DOC PATCH] README.solaris and -Dcc=gcc
69434              From: Robert Spier <rspier@pobox.com>
69435              Date: Sat, 05 Apr 2003 21:12:20 -0800
69436              Message-ID: <m37ka88b0r.wl_rspier@pobox.com>
69437      Branch: perl
69438            ! README.solaris
69439 ____________________________________________________________________________
69440 [ 19152] By: rgs                                   on 2003/04/06  18:24:38
69441         Log: Remove unportable ">|" shell syntax
69442              Subject: Re: Change 19150: LD_PRELOAD hack, still badly flawed / a solution
69443              From: Enache Adrian <enache@rdslink.ro>
69444              Date: Sun, 6 Apr 2003 21:13:27 +0300
69445              Message-ID: <20030406181326.GA873@ratsnest.hole>
69446      Branch: perl
69447            ! Makefile.SH
69448 ____________________________________________________________________________
69449 [ 19151] By: jhi                                   on 2003/04/06  18:14:44
69450         Log: Subject: PATCH (was: Re: [perl #18180] problem with sys:syslog on solaris 8 with perl 5.8.0)
69451              From: Joost van Baal <J.E.vanBaal@uvt.nl>
69452              Date: Mon, 25 Nov 2002 17:35:37 +0100
69453              Message-ID: <20021125163537.GC4745@banach.uvt.nl>
69454
69455              (The .pm patch modified a bit, and removed the false
69456              claim that _PATH_INFO would be coming from syslog.ph)
69457      Branch: perl
69458            ! ext/Sys/Syslog/Makefile.PL ext/Sys/Syslog/Syslog.pm
69459            ! ext/Sys/Syslog/syslog.t
69460 ____________________________________________________________________________
69461 [ 19150] By: rgs                                   on 2003/04/05  21:10:00
69462         Log: Subject: LD_PRELOAD hack, still badly flawed / a solution
69463              From: Enache Adrian <enache@rdslink.ro>
69464              Date: Thu, 3 Apr 2003 15:50:48 +0300
69465              Message-ID: <20030403125048.GA6107@ratsnest.hole>
69466
69467              On linux, when building a shared library, generate
69468              a small shell wrapper, "preload", that preloads libperl.so
69469              only if it exists. Useful when the 'make' process stops
69470              before the link phase.
69471      Branch: perl
69472            ! Makefile.SH
69473 ____________________________________________________________________________
69474 [ 19149] By: jhi                                   on 2003/04/05  20:44:25
69475         Log: Upgrade to Locale::Maketext 1.04.
69476      Branch: perl
69477            + lib/Locale/Maketext/t/00about.t lib/Locale/Maketext/t/01make.t
69478            + lib/Locale/Maketext/t/02get.t lib/Locale/Maketext/t/03http.t
69479            - lib/Locale/Maketext/test.pl
69480            ! MANIFEST lib/Locale/Maketext.pm lib/Locale/Maketext.pod
69481            ! lib/Locale/Maketext/ChangeLog lib/Locale/Maketext/README
69482 ____________________________________________________________________________
69483 [ 19148] By: jhi                                   on 2003/04/05  20:38:30
69484         Log: perluniintro.pod: nice_string() doesn't escape
69485              literal escape chars -- use Sadahiro-san's fix(es).
69486      Branch: perl
69487            ! pod/perluniintro.pod
69488 ____________________________________________________________________________
69489 [ 19147] By: rgs                                   on 2003/04/05  19:12:30
69490         Log: Subject: [PATCH 5.8.1 @19053] Embedding
69491              From: Ilya Zakharevich <ilya@Math.Berkeley.EDU>
69492              Date: Mon, 31 Mar 2003 12:39:24 -0800
69493              Message-ID: <20030331203924.GA3602@math.berkeley.edu>
69494
69495              Advertise the pair of macros PERL_SYS_INIT3 / PERL_SYS_TERM
69496              to be used in a C program's main function.
69497      Branch: perl
69498            ! lib/ExtUtils/t/Embed.t pod/perlembed.pod
69499 ____________________________________________________________________________
69500 [ 19146] By: jhi                                   on 2003/04/05  19:08:37
69501         Log: Heredocs and use encoding didn't work for SJIS;
69502              patch from Inaba Hiroto.
69503      Branch: perl
69504            ! toke.c
69505 ____________________________________________________________________________
69506 [ 19145] By: rgs                                   on 2003/04/05  11:45:36
69507         Log: The manpages don't have to be built by MakeMaker for the
69508              core modules in ext/. Disable this in Devel::PPPort (not
69509              up-to-date on CPAN), Unicode::Normalize (the CPAN version
69510              uses a different Makefile.PL anyway) and XS::APItest
69511              (not CPANized.)
69512      Branch: perl
69513            ! ext/Devel/PPPort/Makefile.PL ext/Unicode/Normalize/Makefile.PL
69514            ! ext/XS/APItest/Makefile.PL
69515 ____________________________________________________________________________
69516 [ 19144] By: rgs                                   on 2003/04/05  11:28:22
69517         Log: Upgrade to Unicode::Normalize 0.21 and Unicode::Collate 0.24,
69518              by SADAHIRO Tomoyuki.
69519      Branch: perl
69520            ! ext/Unicode/Normalize/Changes
69521            ! ext/Unicode/Normalize/Normalize.pm
69522            ! ext/Unicode/Normalize/README ext/Unicode/Normalize/mkheader
69523            ! ext/Unicode/Normalize/t/func.t ext/Unicode/Normalize/t/norm.t
69524            ! ext/Unicode/Normalize/t/test.t lib/Unicode/Collate.pm
69525            ! lib/Unicode/Collate/Changes lib/Unicode/Collate/README
69526            ! lib/Unicode/Collate/t/index.t lib/Unicode/Collate/t/test.t
69527 ____________________________________________________________________________
69528 [ 19143] By: merijn                                on 2003/04/03  08:55:33
69529         Log: Subject: [PATCH] VMS %ENV fix (follow-up to 18852)
69530              From: "Craig A. Berry" <craigberry@mac.com>
69531              Date: Wed, 02 Apr 2003 18:09:03 -0600
69532              Message-Id: <5.2.0.9.0.20030402173822.01ba1df0@dcichiexc1>
69533      Branch: perl
69534            ! vms/vms.c vms/vmsish.h
69535 ____________________________________________________________________________
69536 [ 19142] By: merijn                                on 2003/04/03  08:50:55
69537         Log: Subject: Re: [PATCH 5.8.0 DOC] Fix missing functions when splitting perlfunc
69538              From: andreas.koenig@anima.de (Andreas J. Koenig)
69539              Date: Thu, 03 Apr 2003 08:28:52 +0200
69540              Message-ID: <m3u1dgnlgb.fsf@franz.ak.mind.de>
69541      Branch: perl
69542            ! lib/Pod/t/Functions.t
69543 ____________________________________________________________________________
69544 [ 19141] By: jhi                                   on 2003/04/03  05:00:36
69545         Log: Don't recurse from threads to threads/shared (since
69546              threads/shared is built separately, temp solution from
69547              Schwern while MM is being fixed.)
69548      Branch: perl
69549            ! ext/threads/Makefile.PL
69550 ____________________________________________________________________________
69551 [ 19140] By: rgs                                   on 2003/04/02  20:41:46
69552         Log: Subject: [PATCH 5.8.0 DOC] Fix missing functions when splitting perlfunc
69553              From: Steve Hay <steve.hay@uk.radan.com>
69554              Date: Thu, 20 Mar 2003 11:55:01 +0000
69555              Message-ID: <3E79AC15.80307@uk.radan.com>
69556      Branch: perl
69557            ! installhtml lib/Pod/Functions.pm pod/perlfunc.pod pod/splitpod
69558 ____________________________________________________________________________
69559 [ 19139] By: jhi                                   on 2003/04/02  19:44:07
69560         Log: Make perldiag agree with #19138.
69561      Branch: perl
69562            ! pod/perldiag.pod
69563 ____________________________________________________________________________
69564 [ 19138] By: jhi                                   on 2003/04/02  19:37:59
69565         Log: Make at least the thread count make sense.
69566      Branch: perl
69567            ! ext/threads/threads.xs
69568 ____________________________________________________________________________
69569 [ 19137] By: rgs                                   on 2003/04/02  19:24:47
69570         Log: Adjust test for the recent change (#19136) to Pod::Html
69571      Branch: perl
69572            ! lib/Pod/t/htmlview.t
69573 ____________________________________________________________________________
69574 [ 19136] By: rgs                                   on 2003/04/02  18:46:31
69575         Log: Fixes for "installhtml --splithead", based on :
69576              Subject: Re: [PATCH 5.8.0 UTIL] Fix installhtml for splitting and PM/POD conflicts
69577              From: Steve Hay <steve.hay@uk.radan.com>
69578              Date: Wed, 02 Apr 2003 11:33:41 +0100
69579              Message-ID: <3E8ABC85.5060807@uk.radan.com>
69580
69581              This also includes a small patch to Pod::Html : when generating
69582              anchor names, play on the safe side and turn every non-alphanumeric
69583              character into an '_'. Moreover, Pod::Html::anchorify() is now
69584              optionally exported.
69585      Branch: perl
69586            ! installhtml lib/Pod/Html.pm
69587 ____________________________________________________________________________
69588 [ 19135] By: rgs                                   on 2003/04/02  18:42:50
69589         Log: Subject: Re: [perl #21765] $s = ""; $n = @a = split(/,/, $s); results in undef $n
69590              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
69591              Date: Tue, 01 Apr 2003 16:32:46 -0800
69592              Message-ID: <u+ii+gzkgqkV092yn@efn.org>
69593      Branch: perl
69594            ! pp.c t/op/split.t
69595 ____________________________________________________________________________
69596 [ 19134] By: sky                                   on 2003/04/02  18:01:40
69597         Log: Fix some small nits, thanks to Rafael.
69598      Branch: perl
69599            ! pp_hot.c
69600 ____________________________________________________________________________
69601 [ 19133] By: sky                                   on 2003/04/02  13:41:14
69602         Log: Add packname->stash cache before the check if a packname is a
69603              filehandle or a package, it works because only packnames
69604              that have been resolved to stashes are added to the cache,
69605              and when a newIO is created we clean the cache.
69606              Results in roughly 1.8 speed increase for class->method()
69607              calls.
69608      Branch: perl
69609            ! embedvar.h gv.c hv.c intrpvar.h perl.c perlapi.h pp_hot.c sv.c
69610 ____________________________________________________________________________
69611 [ 19132] By: merijn                                on 2003/04/02  11:28:02
69612         Log: #19122 should have been tested on non-glibc system (like AIX)
69613      Branch: perl
69614            ! pp.c
69615 ____________________________________________________________________________
69616 [ 19131] By: jhi                                   on 2003/04/02  05:25:19
69617         Log: Spread IlyaZ's PERL_CORE detection trick.
69618      Branch: perl
69619            ! ext/Encode/Makefile.PL
69620 ____________________________________________________________________________
69621 [ 19130] By: jhi                                   on 2003/04/02  04:42:40
69622         Log: Cannot portably compare files if one of them is still open
69623              (from Craig Berry).
69624      Branch: perl
69625            ! ext/Encode/t/enc_module.t
69626 ____________________________________________________________________________
69627 [ 19129] By: jhi                                   on 2003/04/02  04:30:45
69628         Log: MM_VMS tweak from Craig Berry:
69629              http://nntp.x.perl.org/group/perl.makemaker/1002
69630      Branch: perl
69631            ! lib/ExtUtils/MM_VMS.pm
69632 ____________________________________________________________________________
69633 [ 19128] By: rgs                                   on 2003/04/01  21:30:12
69634         Log: Subject: [PATCH 5.8.0 UTIL] Fix installhtml for splitting and PM/POD conflicts
69635              From: Steve Hay <steve.hay@uk.radan.com>
69636              Date: Thu, 20 Mar 2003 12:34:15 +0000
69637              Message-ID: <3E79B547.6030201@uk.radan.com>
69638              (with a few minor tweaks)
69639      Branch: perl
69640            ! installhtml
69641 ____________________________________________________________________________
69642 [ 19127] By: rgs                                   on 2003/04/01  19:01:20
69643         Log: Subject: Re: [perl #21744] Deparse bug: "\::" deparsed as "::"
69644              From: Enache Adrian <enache@rdslink.ro>
69645              Date: Sat, 29 Mar 2003 19:45:41 +0200
69646              Message-ID: <20030329174541.GA8138@ratsnest.hole>
69647      Branch: perl
69648            ! ext/B/B/Deparse.pm
69649 ____________________________________________________________________________
69650 [ 19126] By: rgs                                   on 2003/04/01  18:39:43
69651         Log: Fix bug #21742. require should be always invoked in
69652              scalar context. This wasn't the case when called from
69653              an eval(""), because the void context doesn't propagate
69654              through the leaveeval op. Instead of making scalarvoid()
69655              handle OP_LEAVEEVAL -- this breaks AutoLoader -- implement
69656              a workaround in doeval().
69657      Branch: perl
69658            ! pp_ctl.c t/comp/require.t
69659 ____________________________________________________________________________
69660 [ 19124] By: jhi                                   on 2003/04/01  16:52:28
69661         Log: Subject: [patch] fix HiRes.t failures on Stratus VOS
69662              From: "Green, Paul" <Paul.Green@stratus.com>
69663              Date: Tue, 1 Apr 2003 12:37:38 -0500
69664              Message-ID: <A2A34F15EE916148BC4C4748223E67A403D99C9D@exna4.stratus.com>
69665      Branch: perl
69666            ! hints/vos.sh
69667 ____________________________________________________________________________
69668 [ 19122] By: jhi                                   on 2003/04/01  16:36:52
69669         Log: Integrate:
69670              [ 19119]
69671              Address "5.8.1@19053: crypt_r() takes 128K per thread".
69672      Branch: perl
69673           !> pp.c reentr.c reentr.h reentr.pl
69674 ____________________________________________________________________________
69675 [ 19121] By: jhi                                   on 2003/04/01  16:36:02
69676         Log: Integrate:
69677              [ 19109]
69678              Subject: [PATCH 5.8.1 @19053] Time::HiRes
69679              From: Ilya Zakharevich <ilya@Math.Berkeley.EDU>
69680              Date: Mon, 31 Mar 2003 12:53:01 -0800
69681              Message-ID: <20030331205301.GA3687@math.berkeley.edu>
69682
69683              [ 19111]
69684              A cleaner way to detect PERL_CORE, from IlyaZ.
69685      Branch: perl
69686           !> ext/Time/HiRes/HiRes.t ext/Time/HiRes/Makefile.PL
69687 ____________________________________________________________________________
69688 [ 19120] By: jhi                                   on 2003/04/01  16:32:03
69689         Log: Integrate:
69690              [ 19106]
69691              Subject: [PATCH 5.8.1 @19053] OS/2-related patches
69692              From: Ilya Zakharevich <ilya@Math.Berkeley.EDU>
69693              Date: Mon, 31 Mar 2003 12:43:37 -0800
69694              Message-ID: <20030331204337.GA3634@math.berkeley.edu>
69695
69696              and regen Configure.
69697      Branch: perl
69698            ! Configure config_h.SH embedvar.h
69699           !> Makefile.SH embed.fnc embed.h embed.pl ext/threads/threads.xs
69700           !> intrpvar.h makedef.pl os2/Makefile.SHs os2/OS2/ExtAttr/Changes
69701           !> os2/OS2/ExtAttr/ExtAttr.pm os2/OS2/PrfDB/Changes
69702           !> os2/OS2/PrfDB/PrfDB.pm os2/OS2/REXX/DLL/DLL.pm
69703           !> os2/OS2/REXX/REXX.pm os2/dl_os2.c os2/os2.c os2/os2ish.h
69704           !> os2/os2thread.h perlapi.h perlio.c perlvars.h reentr.c
69705           !> reentr.h reentr.pl sv.c
69706 ____________________________________________________________________________
69707 [ 19118] By: jhi                                   on 2003/04/01  16:17:04
69708         Log: Document the _exit() issue with threads in Linux [perl #17057].
69709      Branch: perl
69710            ! ext/POSIX/POSIX.pod
69711 ____________________________________________________________________________
69712 [ 19117] By: jhi                                   on 2003/04/01  16:07:59
69713         Log: Subject: Re: 5.8.1@19053 bug: make minitest fails with threads
69714              From: Rafael Garcia-Suarez <rgarciasuarez@free.fr>
69715              Date: Tue, 1 Apr 2003 11:02:35 +0200
69716              Message-Id: <20030401110235.3f20ffb2.rgarciasuarez@free.fr>
69717      Branch: perl
69718            ! t/op/getpid.t
69719 ____________________________________________________________________________
69720 [ 19116] By: jhi                                   on 2003/04/01  16:06:12
69721         Log: Subject: [PATCH ext/SDBM_File/sdbm/Makefile.PL] MM hackery and whitespace changes
69722              From: Michael G Schwern <schwern@pobox.com>
69723              Date: Mon, 31 Mar 2003 15:16:57 -0800
69724              Message-ID: <20030331231657.GJ17529@windhund.schwern.org>
69725      Branch: perl
69726            ! ext/SDBM_File/sdbm/Makefile.PL
69727 ____________________________________________________________________________
69728 [ 19115] By: jhi                                   on 2003/04/01  15:58:45
69729         Log: Subject: [PATCH] overdue perlhack.pod corrections for RT
69730              From: Richard.Foley@ubsw.com
69731              Date: Mon, 31 Mar 2003 16:27:14 +0200
69732              Message-ID: <B374141B0A424D4F9CF143CC51B3ADD9857B39@NZURC900PEX1.ubsgs.ubsgroup.net>
69733      Branch: perl
69734            ! pod/perlhack.pod
69735 ____________________________________________________________________________
69736 [ 19114] By: jhi                                   on 2003/04/01  15:56:27
69737         Log: Subject: [PATCH] Text::Abbrev warnings safe
69738              From: Peter Scott <Peter@PSDT.com>
69739              Date: Fri, 28 Mar 2003 16:34:47 -0800
69740              Message-id: <5.2.0.9.2.20030328161002.00b45f08@shell2.webquarry.com>
69741      Branch: perl
69742            ! lib/Text/Abbrev.pm lib/Text/Abbrev.t
69743 ____________________________________________________________________________
69744 [ 19113] By: merijn                                on 2003/04/01  14:12:33
69745         Log: Implemented AIX longdouble support in hints/aix.sh, which now
69746              actually work.  Thanks to John L. Allen for the hint.
69747
69748              Subject: Re: AIX longdoubles
69749              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
69750              Date: Tue, 01 Apr 2003 17:18:57 +0200
69751              Message-Id: <20030401171819.D8E6.H.M.BRAND@hccnet.nl>
69752      Branch: perl
69753            ! hints/aix.sh
69754 ____________________________________________________________________________
69755 [ 19104] By: jhi                                   on 2003/03/31  10:51:36
69756         Log: Tabify; strictly speaking unnecessary but anyway...
69757      Branch: perl
69758            ! MANIFEST
69759 ____________________________________________________________________________
69760 [ 19102] By: jhi                                   on 2003/03/31  10:36:48
69761         Log: Upgrade to Test::Harness 2.27_02.
69762      Branch: perl
69763            + t/lib/sample-tests/no_output t/lib/sample-tests/segfault
69764            + t/lib/sample-tests/too_many
69765            ! MANIFEST lib/Test/Harness.pm lib/Test/Harness/Changes
69766            ! lib/Test/Harness/Straps.pm lib/Test/Harness/t/strap-analyze.t
69767            ! lib/Test/Harness/t/strap.t lib/Test/Harness/t/test-harness.t
69768 ____________________________________________________________________________
69769 [ 19101] By: jhi                                   on 2003/03/31  10:07:35
69770         Log: Upgrade to podlators 1.26.
69771      Branch: perl
69772            ! lib/Pod/Man.pm
69773 ____________________________________________________________________________
69774 [ 19100] By: jhi                                   on 2003/03/31  10:03:50
69775         Log: Upgrade to Encode 1.92.
69776      Branch: perl
69777            ! ext/Encode/AUTHORS ext/Encode/Changes ext/Encode/Encode.pm
69778            ! ext/Encode/encoding.pm ext/Encode/lib/Encode/Guess.pm
69779            ! ext/Encode/t/CJKT.t ext/Encode/t/enc_module.t
69780            ! ext/Encode/ucm/big5-eten.ucm ext/Encode/ucm/big5-hkscs.ucm
69781            ! ext/Encode/ucm/cp932.ucm ext/Encode/ucm/cp936.ucm
69782            ! ext/Encode/ucm/cp949.ucm ext/Encode/ucm/cp950.ucm
69783 ____________________________________________________________________________
69784 [ 19099] By: jhi                                   on 2003/03/31  09:54:52
69785         Log: Subject: [PATCH] ExtUtils::MakeMaker 6.03 -> 6.06_05ish
69786              From: Michael G Schwern <schwern@pobox.com>
69787              Date: Mon, 31 Mar 2003 02:42:58 -0800
69788              Message-ID: <20030331104257.GB15327@windhund.schwern.org>
69789      Branch: perl
69790            + lib/ExtUtils/MakeMaker/FAQ.pod
69791            + lib/ExtUtils/MakeMaker/Tutorial.pod
69792            + lib/ExtUtils/MakeMaker/vmsish.pm lib/ExtUtils/NOTES
69793            + lib/ExtUtils/PATCHING lib/ExtUtils/README lib/ExtUtils/TODO
69794            + lib/ExtUtils/t/00compile.t lib/ExtUtils/t/Install.t
69795            + lib/ExtUtils/t/Liblist.t lib/ExtUtils/t/oneliner.t
69796            + lib/ExtUtils/t/prompt.t lib/ExtUtils/t/split_command.t
69797            + t/lib/TieIn.pm
69798            ! MANIFEST lib/ExtUtils/Changes lib/ExtUtils/Command.pm
69799            ! lib/ExtUtils/Command/MM.pm lib/ExtUtils/Install.pm
69800            ! lib/ExtUtils/Liblist.pm lib/ExtUtils/Liblist/Kid.pm
69801            ! lib/ExtUtils/MANIFEST.SKIP lib/ExtUtils/MM_Any.pm
69802            ! lib/ExtUtils/MM_BeOS.pm lib/ExtUtils/MM_Cygwin.pm
69803            ! lib/ExtUtils/MM_DOS.pm lib/ExtUtils/MM_MacOS.pm
69804            ! lib/ExtUtils/MM_NW5.pm lib/ExtUtils/MM_OS2.pm
69805            ! lib/ExtUtils/MM_UWIN.pm lib/ExtUtils/MM_Unix.pm
69806            ! lib/ExtUtils/MM_VMS.pm lib/ExtUtils/MM_Win32.pm
69807            ! lib/ExtUtils/MM_Win95.pm lib/ExtUtils/MakeMaker.pm
69808            ! lib/ExtUtils/Manifest.pm lib/ExtUtils/t/00setup_dummy.t
69809            ! lib/ExtUtils/t/Command.t lib/ExtUtils/t/INST.t
69810            ! lib/ExtUtils/t/INST_PREFIX.t lib/ExtUtils/t/MM_BeOS.t
69811            ! lib/ExtUtils/t/MM_Cygwin.t lib/ExtUtils/t/MM_NW5.t
69812            ! lib/ExtUtils/t/MM_OS2.t lib/ExtUtils/t/MM_Unix.t
69813            ! lib/ExtUtils/t/MM_VMS.t lib/ExtUtils/t/MM_Win32.t
69814            ! lib/ExtUtils/t/Manifest.t lib/ExtUtils/t/basic.t
69815            ! lib/ExtUtils/t/hints.t lib/ExtUtils/t/prefixify.t
69816 ____________________________________________________________________________
69817 [ 19098] By: jhi                                   on 2003/03/31  09:36:11
69818         Log: Subject: [PATCH dump.c] stray n_a
69819              From: Michael G Schwern <schwern@pobox.com>
69820              Date: Mon, 31 Mar 2003 00:55:49 -0800
69821              Message-ID: <20030331085549.GB1300@windhund.schwern.org>
69822      Branch: perl
69823            ! dump.c
69824 ____________________________________________________________________________
69825 [ 19097] By: jhi                                   on 2003/03/31  05:00:07
69826         Log: Some low-hanging fruit for EBCDIC portability
69827              (or for marking as EBCDIC todos)
69828      Branch: perl
69829            ! ext/List/Util/t/isvstring.t lib/utf8.t t/run/switchC.t
69830            ! t/uni/write.t
69831 ____________________________________________________________________________
69832 [ 19094] By: jhi                                   on 2003/03/30  15:54:35
69833         Log: Upgrade to Time::HiRes 1.44.
69834      Branch: perl
69835            ! ext/Time/HiRes/Changes ext/Time/HiRes/HiRes.pm
69836 ____________________________________________________________________________
69837 [ 19092] By: jhi                                   on 2003/03/30  15:09:02
69838         Log: IRIX 5.3 update.
69839      Branch: perl
69840            ! README.irix
69841 ____________________________________________________________________________
69842 [ 19091] By: jhi                                   on 2003/03/30  10:26:32
69843         Log: Not all compilers like #ifdefs within cpp macros
69844              (follow-up on #19086)
69845      Branch: perl
69846            ! pp_sys.c
69847 ____________________________________________________________________________
69848 [ 19090] By: jhi                                   on 2003/03/30  09:50:33
69849         Log: Ending strings is customary (typo from #19084).
69850      Branch: perl
69851            ! ext/Socket/Socket.t
69852 ____________________________________________________________________________
69853 [ 19089] By: jhi                                   on 2003/03/30  09:24:08
69854         Log: Re-sort MANIFEST (LC_ALL=C sort -fo MANIFEST MANIFEST)
69855      Branch: perl
69856            ! MANIFEST
69857 ____________________________________________________________________________
69858 [ 19088] By: jhi                                   on 2003/03/30  09:09:42
69859         Log: Another victim of IRIX 5.3's inability to resolve 'localhost'
69860              as the test expects.
69861      Branch: perl
69862            ! lib/Net/hostent.t
69863 ____________________________________________________________________________
69864 [ 19087] By: jhi                                   on 2003/03/30  09:08:07
69865         Log: In IRIX 5.3 turn off some of the warnings that cannot
69866              really be helped (e.g. warnings coming from system headers,
69867              or linker warnings during Configure).
69868      Branch: perl
69869            ! hints/irix_5.sh
69870 ____________________________________________________________________________
69871 [ 19086] By: jhi                                   on 2003/03/30  08:59:24
69872         Log: In IRIX 5.3 the cc is awfully confused about the prototype
69873              of select().
69874      Branch: perl
69875            ! hints/irix_5.sh pp_sys.c
69876 ____________________________________________________________________________
69877 [ 19085] By: jhi                                   on 2003/03/30  08:43:53
69878         Log: In IRIX 5.3 being too POSIXly hides the struct timespec.
69879      Branch: perl
69880            + ext/Time/HiRes/hints/irix.pl
69881            ! MANIFEST
69882 ____________________________________________________________________________
69883 [ 19084] By: jhi                                   on 2003/03/30  08:31:53
69884         Log: gethostbyname('localhost') is not that portable.
69885              inet_aton('localhost') in IRIX 5.3 returned an undef,
69886              which in turn made pack_sockaddr_in to barf on zero
69887              length in_addr.
69888      Branch: perl
69889            ! ext/Socket/Socket.t pod/perlfunc.pod pod/perlport.pod
69890 ____________________________________________________________________________
69891 [ 19083] By: jhi                                   on 2003/03/30  07:49:46
69892         Log: Subject: [PATCH] COW formats (was Re: Smoke [5.9.0] 19044 FAIL(F) linux 2.4.18-3 (i686/1 cpu))
69893              From: Nicholas Clark <nick@unfortu.net>
69894              Date: Sun, 30 Mar 2003 00:35:48 +0000
69895              Message-ID: <20030330003547.GO274@Bagpuss.unfortu.net>
69896      Branch: perl
69897            ! sv.c
69898 ____________________________________________________________________________
69899 [ 19082] By: jhi                                   on 2003/03/29  21:18:32
69900         Log: IRIX 5.3 can have PF_LINK defined to be AF_LINK but
69901              not defined AF_LINK.
69902      Branch: perl
69903            ! ext/Socket/Socket.xs
69904 ____________________________________________________________________________
69905 [ 19081] By: jhi                                   on 2003/03/29  20:41:56
69906         Log: Subject: [unPATCH] Re: Smoke [5.8.1] 19076 FAIL(F) openbsd 3.2 (i386/1 cpu)
69907              From: Nicholas Clark <nick@unfortu.net>
69908              Date: Sat, 29 Mar 2003 18:58:09 +0000
69909              Message-ID: <20030329185807.GL274@Bagpuss.unfortu.net>
69910      Branch: perl
69911            ! dump.c
69912 ____________________________________________________________________________
69913 [ 19080] By: rgs                                   on 2003/03/29  20:39:34
69914         Log: Minor rephrasing in perlopentut,
69915              noticed by Bob Wilkinson (RT [perl #21725])
69916      Branch: perl
69917            ! pod/perlopentut.pod
69918 ____________________________________________________________________________
69919 [ 19079] By: rgs                                   on 2003/03/29  20:21:11
69920         Log: Subject: [DOCPATCH] Re: [PATCH] Re: [perl #21614] 5.8.0 Unbalanced string table refcount
69921              From: Nicholas Clark <nick@unfortu.net>
69922              Date: Thu, 27 Mar 2003 22:37:35 +0000
69923              Message-ID: <20030327223735.GD277@Bagpuss.unfortu.net>
69924      Branch: perl
69925            ! pod/perlapi.pod sv.h
69926 ____________________________________________________________________________
69927 [ 19078] By: jhi                                   on 2003/03/29  07:23:00
69928         Log: It seems that in Tru64 V5 gcc cannot be used to
69929              compile a threaded Perl because <pthread.h> explicitly
69930              checks for supported compilers (gcc not being one of them).
69931              This is not so bad since the system C compiler is always there.
69932      Branch: perl
69933            ! README.tru64 hints/dec_osf.sh
69934 ____________________________________________________________________________
69935 [ 19077] By: jhi                                   on 2003/03/28  06:03:16
69936         Log: Feeding illegal QP (like \x80) to this
69937              ./perl -Ilib -wne 'use PerlIO::via::QuotedPrint;BEGIN{binmode(STDIN, ":via(QuotedPrint)")};print'
69938              caused a coredump in av_length() <- nextargv() because
69939              the av was NULL.  I don't know that returning Nullfp is
69940              the best thing to do, but it dodges the segfault and
69941              introduces no test failures.
69942      Branch: perl
69943            ! doio.c
69944 ____________________________________________________________________________
69945 [ 19074] By: jhi                                   on 2003/03/27  18:17:20
69946         Log: Missing final \n.
69947      Branch: perl
69948            ! lib/Attribute/Handlers/Changes
69949 ____________________________________________________________________________
69950 [ 19072] By: rgs                                   on 2003/03/26  22:30:09
69951         Log: Subject: [perl #21672] IO::New and undefined filename behaviour
69952              From: "mike@exegenix.com (via RT)" <perlbug-followup@perl.org>
69953              Date: 24 Mar 2003 16:29:08 -0000
69954              Message-Id: <rt-21672-54038.2.07650993465862@bugs6.perl.org>
69955              plus a regression test
69956      Branch: perl
69957            ! ext/IO/lib/IO/File.pm lib/FileHandle.t
69958 ____________________________________________________________________________
69959 [ 19071] By: rgs                                   on 2003/03/26  22:08:16
69960         Log: Better version of change #19069
69961              Subject: [PATCH] Re: [PATCH] Re: [perl #21614] 5.8.0 Unbalanced string table refcount
69962              From: Nicholas Clark <nick@unfortu.net>
69963              Date: Wed, 26 Mar 2003 23:01:46 +0000
69964              Message-ID: <20030326230145.GC279@Bagpuss.unfortu.net>
69965      Branch: perl
69966            ! pp_hot.c sv.c t/op/readline.t
69967 ____________________________________________________________________________
69968 [ 19070] By: rgs                                   on 2003/03/26  21:31:55
69969         Log: Subject: [patch] for Stratus VOS
69970              From: "Green, Paul" <Paul.Green@stratus.com>
69971              Date: Wed, 26 Mar 2003 17:24:38 -0500
69972              Message-ID: <A2A34F15EE916148BC4C4748223E67A403D99C74@exna4.stratus.com>
69973              (plus a small tweak to the test script)
69974      Branch: perl
69975            ! README.vos t/op/pack.t
69976 ____________________________________________________________________________
69977 [ 19069] By: rgs                                   on 2003/03/26  21:14:33
69978         Log: Subject: [PATCH] Re: [perl #21614] 5.8.0 Unbalanced string table refcount
69979              From: Nicholas Clark <nick@unfortu.net>
69980              Date: Tue, 25 Mar 2003 22:59:17 +0000
69981              Message-ID: <20030325225917.GE284@Bagpuss.unfortu.net>
69982      Branch: perl
69983            ! sv.c t/op/readline.t
69984 ____________________________________________________________________________
69985 [ 19068] By: rgs                                   on 2003/03/26  20:53:18
69986         Log: Win32 counterpart of change #19065
69987      Branch: perl
69988            ! win32/Makefile win32/makefile.mk
69989 ____________________________________________________________________________
69990 [ 19067] By: rgs                                   on 2003/03/26  20:34:32
69991         Log: VMS counterpart of change #19065
69992      Branch: perl
69993            ! vms/descrip_mms.template
69994 ____________________________________________________________________________
69995 [ 19066] By: jhi                                   on 2003/03/26  20:05:40
69996         Log: Upgrade to Term::ANSIColor 1.07.
69997      Branch: perl
69998            ! lib/Term/ANSIColor.pm lib/Term/ANSIColor/ChangeLog
69999            ! lib/Term/ANSIColor/README
70000 ____________________________________________________________________________
70001 [ 19065] By: rgs                                   on 2003/03/26  19:55:20
70002         Log: Add a file utils/cpan.PL to generate the "cpan" utility,
70003              also separately maintained on CPAN, and now moved as
70004              lib/CPAN/bin/cpan. Tweak installperl to avoid installing
70005              this last file.
70006      Branch: perl
70007            + utils/cpan.PL
70008           +> lib/CPAN/bin/cpan
70009            - utils/cpan
70010            ! MANIFEST installperl utils/Makefile
70011 ____________________________________________________________________________
70012 [ 19064] By: jhi                                   on 2003/03/26  19:48:32
70013         Log: Subject: [PATCH] Re: [perl #21542] local $_ [0] = $_ [0] fails.
70014              From: Dave Mitchell <davem@fdgroup.com>
70015              Date: Thu, 20 Mar 2003 01:26:19 +0000
70016              Message-ID: <20030320012619.C19869@fdgroup.com>
70017
70018              Subject: Re: [PATCH] Re: [perl #21542] local $_ [0] = $_ [0] fails.
70019              From: Dave Mitchell <davem@fdgroup.com>
70020              Date: Mon, 24 Mar 2003 16:06:51 +0000
70021              Message-ID: <20030324160651.D1798@fdgroup.com>
70022      Branch: perl
70023            ! pp_ctl.c pp_hot.c scope.c t/op/args.t
70024 ____________________________________________________________________________
70025 [ 19063] By: jhi                                   on 2003/03/26  19:33:09
70026         Log: Subject: [perl #21648] Doc typo in Net::servent
70027              From: Andy Lester (via RT) <perlbug-followup@perl.org>
70028              Date: 22 Mar 2003 05:02:31 -0000
70029              Message-Id: <rt-21648-53986.0.682889311382979@bugs6.perl.org>
70030      Branch: perl
70031            ! lib/Net/servent.pm
70032 ____________________________________________________________________________
70033 [ 19062] By: jhi                                   on 2003/03/26  19:29:39
70034         Log: Subject: [PATCH README.qnx] for QNX 6.2
70035              From: Norton Allen <allen@huarp.harvard.edu>
70036              Date: Tue, 25 Mar 2003 12:09:42 -0500 (est)
70037              Message-Id: <200303251709.MAA11391@bottesini.harvard.edu>
70038      Branch: perl
70039            ! README.qnx
70040 ____________________________________________________________________________
70041 [ 19060] By: merijn                                on 2003/03/26  13:13:23
70042         Log: Subject: [PATCH] lib/vmsish.t GMT bug fix
70043              From: "Craig A. Berry" <craigberry@mac.com>
70044              Date: Tue, 25 Mar 2003 22:52:58 -0600
70045              Message-ID: <3E81322A.3040508@mac.com>
70046      Branch: perl
70047            ! lib/vmsish.t
70048 ____________________________________________________________________________
70049 [ 19059] By: rgs                                   on 2003/03/24  21:43:03
70050         Log: Change 19056 wasn't good enough.
70051              ldlibpth should be changed later, to avoid spaces to be quoted.
70052      Branch: perl
70053            ! Makefile.SH
70054 ____________________________________________________________________________
70055 [ 19058] By: rgs                                   on 2003/03/24  21:37:59
70056         Log: Subject: [PATCH pod/perlhist.pod] Adding the latest version of Perl
70057              From: Michael G Schwern <schwern@pobox.com>
70058              Date: Mon, 24 Mar 2003 00:50:39 -0800
70059              Message-ID: <20030324085039.GA19981@windhund.schwern.org>
70060      Branch: perl
70061            ! pod/perlhist.pod
70062 ____________________________________________________________________________
70063 [ 19057] By: rgs                                   on 2003/03/24  21:33:43
70064         Log: Typo, spotted by Doru Petrescu
70065              Message-ID: <Pine.LNX.4.31.0303241134170.13160-100000@linux.kappa.ro>
70066      Branch: perl
70067            ! ext/Data/Dumper/Dumper.pm
70068 ____________________________________________________________________________
70069 [ 19056] By: rgs                                   on 2003/03/24  21:05:48
70070         Log: Subject: Re: Smoke [5.9.0] 19055 FAIL(m) linux 2.4.18-3 (i686/1 cpu)
70071              From: Enache Adrian <enache@rdslink.ro>
70072              Date: Mon, 24 Mar 2003 23:56:25 +0200
70073              Message-ID: <20030324215625.GB853@ratsnest.hole>
70074      Branch: perl
70075            ! Makefile.SH
70076 ____________________________________________________________________________
70077 [ 19055] By: merijn                                on 2003/03/24  07:05:39
70078         Log: Subject: no more 'make install && make test' with shared libperl.so on Linux
70079              From: Enache Adrian <enache@rdslink.ro>
70080              Date: Sat, 22 Mar 2003 22:49:49 +0200
70081              Message-ID: <20030322204949.GB794@ratsnest.hole>
70082
70083              This is a slightly more defensive patch than Chip's patch that
70084              fell through the cracks, but does the same
70085              Subject: Shared libperl.so and build issues
70086              From: Chip Turner <cturner@redhat.com>
70087              Date: Tue 31 Dec 2002 17:21
70088      Branch: perl
70089            ! Makefile.SH
70090 ____________________________________________________________________________
70091 [ 19054] By: merijn                                on 2003/03/24  06:54:23
70092         Log: Subject: [PATCH bleadperl] vms.c thread clean-up
70093              From: "Craig A. Berry" <craigberry@mac.com>
70094              Date: Sun, 23 Mar 2003 15:32:58 -0600
70095              Message-ID: <3E7E280A.5000304@mac.com>
70096      Branch: perl
70097            ! vms/vms.c
70098 ____________________________________________________________________________
70099 [ 19052] By: jhi                                   on 2003/03/24  04:28:13
70100         Log: For change #19051: a new .bat to CRLF.
70101      Branch: perl
70102            ! Porting/makerel
70103 ____________________________________________________________________________
70104 [ 19051] By: jhi                                   on 2003/03/24  04:27:55
70105         Log: WinCE update from Vadim Konovalov.
70106      Branch: perl
70107            + wince/compile-all.bat wince/makedist.pl
70108            - wince/include/sys/stat.h wince/xbuildall.ksh
70109            - wince/xdistclean.ksh wince/xmakediffs.ksh
70110            ! MANIFEST README.ce dosish.h wince/Makefile.ce
70111            ! wince/compile.bat wince/config.ce
70112 ____________________________________________________________________________
70113 [ 19050] By: jhi                                   on 2003/03/24  04:25:15
70114         Log: Oops (change #19013 missed changing the Perl version number).
70115      Branch: perl
70116            ! cygwin/perlld.in
70117 ____________________________________________________________________________
70118 [ 19047] By: jhi                                   on 2003/03/23  17:54:33
70119         Log: Integrate from maint-5.8:
70120              [ 19045]
70121              If no IVSIZE == 8, no need for modulo_1.
70122      Branch: perl
70123           !> pp.c
70124 ____________________________________________________________________________
70125 [ 19044] By: rgs                                   on 2003/03/21  21:09:15
70126         Log: Subject: [PATCH] p4genpatch
70127              From: andreas.koenig@anima.de (Andreas J. Koenig)
70128              Date: Sat, 15 Mar 2003 12:04:18 +0100
70129              Message-ID: <m3hea4gabx.fsf@k242.linux.bogus>
70130      Branch: perl
70131            ! Porting/p4genpatch
70132 ____________________________________________________________________________
70133 [ 19043] By: rgs                                   on 2003/03/21  20:43:55
70134         Log: Subject: [PATCH] perlsub.pod and perlsyn.pod: better organise scoping info for modifiers
70135              From: Martien Verbruggen <mgjv@tradingpost.com.au>
70136              Date: Sat, 15 Mar 2003 12:31:47 +1100
70137              Message-Id: <slrnb750k3.j8t.mgjv@martien.heliotrope.home>
70138      Branch: perl
70139            ! pod/perlsub.pod pod/perlsyn.pod
70140 ____________________________________________________________________________
70141 [ 19042] By: merijn                                on 2003/03/21  07:45:54
70142         Log: Subject: [PATCH] readdir_r for VMS (was Re: [PATCH] configure.com: sig_num, etc.)
70143              From: "Craig A. Berry" <craigberry@mac.com>
70144              Date: Thu, 20 Mar 2003 23:03:36 -0600
70145              Message-ID: <3E7A9D28.1040706@mac.com>
70146      Branch: perl
70147            ! configure.com vms/vms.c vms/vmsish.h
70148 ____________________________________________________________________________
70149 [ 19039] By: rgs                                   on 2003/03/20  22:40:38
70150         Log: Subject: Re: [patch] [perl #21628] rcatline issue
70151              From: Enache Adrian <enache@rdslink.ro>
70152              Date: Thu, 20 Mar 2003 22:39:06 +0200
70153              Message-ID: <20030320203906.GA31199@ratsnest.hole>
70154      Branch: perl
70155            ! MANIFEST pp_hot.c t/op/readline.t
70156 ____________________________________________________________________________
70157 [ 19038] By: rgs                                   on 2003/03/20  22:07:50
70158         Log: Subject: Re: Bytecode? Back into service.
70159              From: Enache Adrian <enache@rdslink.ro>
70160              Date: Thu, 20 Mar 2003 07:38:39 +0200
70161              Message-ID: <20030320053839.GA4044@ratsnest.hole>
70162      Branch: perl
70163            ! bytecode.pl ext/B/B/Asmdata.pm ext/ByteLoader/byterun.c
70164            ! ext/ByteLoader/byterun.h op.c
70165 ____________________________________________________________________________
70166 [ 19037] By: rgs                                   on 2003/03/20  20:16:43
70167         Log: Subject: [DOC-PATCH] for README.cygwin, bleadperl version
70168              From: "Gerrit P. Haase" <gp@familiehaase.de>
70169              Date: Thu, 20 Mar 2003 21:23:28 +0100
70170              Message-ID: <941032389637.20030320212328@familiehaase.de>
70171      Branch: perl
70172            ! README.cygwin
70173 ____________________________________________________________________________
70174 [ 19036] By: jhi                                   on 2003/03/20  05:23:15
70175         Log: Integrate:
70176              [ 19033]
70177              file test operators weren't doing the right thing if the SV
70178              passed to them wasn't NUL-terminated
70179
70180              [ 19034]
70181              ensure SVs returned by Win32::Get{Short,Full}PathName() are
70182              NUL-terminated
70183      Branch: perl
70184           !> doio.c win32/win32.c
70185 ____________________________________________________________________________
70186 [ 19028] By: jhi                                   on 2003/03/19  09:46:27
70187         Log: Better wording as requested by Rafael, and
70188              the module is BerkeleyDB, not BerkeleyFile.
70189      Branch: perl
70190            ! README.tru64
70191 ____________________________________________________________________________
70192 [ 19026] By: jhi                                   on 2003/03/19  09:11:43
70193         Log: Update the DB_File instructions in Tru64.
70194      Branch: perl
70195            ! README.tru64
70196 ____________________________________________________________________________
70197 [ 19025] By: rgs                                   on 2003/03/18  21:59:33
70198         Log: Subject: [PATCH] [perl #9990] avoid goto &tmpsub coredump
70199              From: Dave Mitchell <davem@fdgroup.com>
70200              Date: Tue, 18 Mar 2003 21:55:05 +0000
70201              Message-ID: <20030318215505.A16787@fdgroup.com>
70202      Branch: perl
70203            ! pp_ctl.c t/op/goto.t
70204 ____________________________________________________________________________
70205 [ 19024] By: rgs                                   on 2003/03/18  21:24:27
70206         Log: Subject: [PATCH] VMS pod install tweaks
70207              From: "Craig A. Berry" <craigberry@mac.com>
70208              Date: Sat, 15 Mar 2003 16:06:07 -0600
70209              Message-ID: <3E73A3CF.3060502@mac.com>
70210      Branch: perl
70211            ! vms/descrip_mms.template
70212 ____________________________________________________________________________
70213 [ 19023] By: rgs                                   on 2003/03/18  21:22:03
70214         Log: Subject: [PATCH] poll() help for VMS
70215              From: "Craig A. Berry" <craigberry@mac.com>
70216              Date: Tue, 18 Mar 2003 01:10:10 -0600
70217              Message-ID: <3E76C652.30205@mac.com>
70218      Branch: perl
70219            ! configure.com ext/IO/poll.h
70220 ____________________________________________________________________________
70221 [ 19021] By: jhi                                   on 2003/03/18  06:56:26
70222         Log: The description of SIG_SIZE was off.
70223      Branch: perl
70224            ! Configure NetWare/config_H.wc Porting/Glossary
70225            ! Porting/config.sh Porting/config_H config_h.SH
70226            ! plan9/config.plan9 plan9/config_h.sample win32/config_H.bc
70227            ! win32/config_H.gc win32/config_H.vc win32/config_H.vc64
70228            ! wince/config_H.ce
70229 ____________________________________________________________________________
70230 [ 19020] By: merijn                                on 2003/03/18  05:45:50
70231         Log: Minor updates of Wolfgang's pack patch
70232
70233              Subject: Re: pack changes and related fixes
70234              From: Philip Newton <Philip.Newton@gmx.net>
70235              Date: Tue, 18 Mar 2003 06:19:30 +0100
70236              Message-ID: <tb9d7vo1ocb14o73lnhabbmh5bsjoe5m46@4ax.com>
70237      Branch: perl
70238            ! embed.fnc pod/perldiag.pod
70239 ____________________________________________________________________________
70240 [ 19019] By: gsar                                  on 2003/03/18  05:06:07
70241         Log: regenerate win32/config_H.*
70242      Branch: perl
70243            ! win32/config_H.bc win32/config_H.gc win32/config_H.vc
70244            ! win32/config_H.vc64
70245 ____________________________________________________________________________
70246 [ 19018] By: gsar                                  on 2003/03/18  03:02:38
70247         Log: there is no trailing NULL in sig_name or sig_num, so don't
70248              talk about it
70249      Branch: perl
70250            ! Porting/Glossary
70251 ____________________________________________________________________________
70252 [ 19017] By: gsar                                  on 2003/03/18  03:01:02
70253         Log: according to the new Porting/Glossary, sig_num doesn't have an
70254              extra '0' at the end
70255      Branch: perl
70256            ! win32/config.bc win32/config.gc win32/config.vc
70257            ! win32/config.vc64
70258 ____________________________________________________________________________
70259 [ 19016] By: hv                                    on 2003/03/18  00:52:09
70260         Log: add tests for existing behaviour of undef postinc/dec
70261      Branch: perl
70262            ! t/op/inc.t
70263 ____________________________________________________________________________
70264 [ 19015] By: hv                                    on 2003/03/18  00:46:18
70265         Log: add comment at undef postinc special case
70266      Branch: perl
70267            ! pp.c
70268 ____________________________________________________________________________
70269 [ 19014] By: hv                                    on 2003/03/18  00:27:19
70270         Log: clarify behaviour of $a++
70271      Branch: perl
70272            ! pod/perlop.pod
70273 ____________________________________________________________________________
70274 [ 19013] By: jhi                                   on 2003/03/17  19:52:06
70275         Log: Integrate:
70276              [ 19012]
70277              We don't have the new Perl at this stage.
70278      Branch: perl
70279           !> cygwin/perlld.in
70280 ____________________________________________________________________________
70281 [ 19010] By: jhi                                   on 2003/03/17  17:16:44
70282         Log: Subject: pack changes and related fixes
70283              From: LAUN Wolfgang <wolfgang.laun@alcatel.at>
70284              Date: Mon, 17 Mar 2003 13:55:37 +0100
70285              Message-ID: <75A46BF1A9D8D311863A00508B6259A405F17EB8@ATTMSX4>
70286      Branch: perl
70287            ! embed.fnc embed.h lib/diagnostics.pm perl.h pod/perldiag.pod
70288            ! pod/perlfunc.pod pod/perlpacktut.pod pp_pack.c proto.h
70289            ! t/lib/warnings/pp_pack t/op/pack.t
70290 ____________________________________________________________________________
70291 [ 19007] By: jhi                                   on 2003/03/17  04:45:40
70292         Log: Integrate:
70293              [ 19006]
70294              Subject: Re: [Patch] Maintperl versioning for Cygwin
70295              From: Slaven Rezic <slaven@rezic.de>
70296              Date: 17 Mar 2003 00:42:43 +0100
70297              Message-ID: <87ptoqev4c.fsf@vran.herceg.de>
70298      Branch: perl
70299           !> cygwin/perlld.in
70300 ____________________________________________________________________________
70301 [ 19005] By: hv                                    on 2003/03/17  02:06:20
70302         Log: Subject: Patch for Data::Dumper 2.12 to Allow Custom Hash Key/Value Separator
70303              From: chocolateboy <chocolateboy@chocolatey.com>
70304              Date: Sat, 22 Feb 2003 12:17:28 +0000
70305              Message-ID: <3E576A58.8010901@chocolatey.com>
70306      Branch: perl
70307            + ext/Data/Dumper/t/pair.t
70308            ! MANIFEST ext/Data/Dumper/Dumper.pm ext/Data/Dumper/Dumper.xs
70309 ____________________________________________________________________________
70310 [ 19004] By: hv                                    on 2003/03/17  01:38:23
70311         Log: Subject: [patch] utils/h2xs.PL (get rid of \t and '')
70312              From: Stas Bekman <stas@stason.org>
70313              Date: Fri, 14 Feb 2003 11:59:53 +1100
70314              Message-ID: <3E4C3F89.6050005@stason.org>
70315      Branch: perl
70316            ! utils/h2xs.PL
70317 ____________________________________________________________________________
70318 [ 19003] By: hv                                    on 2003/03/17  01:23:02
70319         Log: Subject: [perl #20724] Patch for dprofpp
70320              From: Nicholas "Oxhøj" (via RT) <perlbug-followup@perl.org>
70321              Date: 5 Feb 2003 08:41:17 -0000
70322              Message-Id: <rt-20724-50329.7.50247680562964@bugs6.perl.org>
70323      Branch: perl
70324            ! utils/dprofpp.PL
70325 ____________________________________________________________________________
70326 [ 19002] By: hv                                    on 2003/03/16  23:36:57
70327         Log: Subject: [perl #19898] [PATCH] forking to Perl children with IPC::Open3
70328              From: Adam Spiers (via RT) <perlbug-followup@perl.org>
70329              Date: 10 Jan 2003 10:59:44 -0000
70330              Message-Id: <rt-19898-47213.12.0892150698178@bugs6.perl.org>
70331      Branch: perl
70332            ! lib/IPC/Open3.pm
70333 ____________________________________________________________________________
70334 [ 19001] By: jhi                                   on 2003/03/16  21:50:24
70335         Log: getservbyname_r() kaputt in OpenBSD (might get fixed
70336              for 3.3, but only might)
70337      Branch: perl
70338            ! hints/openbsd.sh
70339 ____________________________________________________________________________
70340 [ 18999] By: jhi                                   on 2003/03/16  21:33:49
70341         Log: Stay within known facts: what platforms the skippage helps,
70342              and in which it is not needed.
70343      Branch: perl
70344            ! ext/POSIX/t/posix.t
70345 ____________________________________________________________________________
70346 [ 18998] By: jhi                                   on 2003/03/16  18:15:42
70347         Log: This seems to fix (well, dodge) the problems in FreeBSD for
70348              Enache Adrian; in _theory_ this patch could be good for NetBSD,
70349              too, but Alian gets a core dump already at subtest #9 (anyone
70350              with a real NetBSD, Alian's is a VMware one, which has in the
70351              past caused similar odd crashes).  OpenBSD threaded build result
70352              still unknown.
70353      Branch: perl
70354            ! ext/POSIX/t/posix.t
70355 ____________________________________________________________________________
70356 [ 18997] By: jhi                                   on 2003/03/16  18:07:30
70357         Log: IRIX ls -l marks sockets with 'S'.
70358      Branch: perl
70359            ! t/op/stat.t
70360 ____________________________________________________________________________
70361 [ 18996] By: jhi                                   on 2003/03/16  17:41:42
70362         Log: Turn on UTF-8 flag only if the $str is valid utf8
70363              (pointed out by Dan Kogai).
70364      Branch: perl
70365            ! lib/Term/ReadLine.pm
70366 ____________________________________________________________________________
70367 [ 18995] By: jhi                                   on 2003/03/16  16:40:06
70368         Log: Signedness nits.
70369      Branch: perl
70370            ! regcomp.c
70371 ____________________________________________________________________________
70372 [ 18994] By: jhi                                   on 2003/03/16  15:41:44
70373         Log: Fix for [perl #21479] Term::ReadLine(::Stub) doesn't set UTF-8 flag.
70374              Should work both for PERL_UNICODE/-C and use encoding 'foo';
70375      Branch: perl
70376            ! lib/Term/ReadLine.pm
70377 ____________________________________________________________________________
70378 [ 18991] By: jhi                                   on 2003/03/16  15:14:31
70379         Log: Pod fix from Philip Newton.
70380      Branch: perl
70381            ! pod/perlfunc.pod
70382 ____________________________________________________________________________
70383 [ 18990] By: jhi                                   on 2003/03/16  15:12:00
70384         Log: Further potential pitfalls for the utf8 len/pos cache
70385              found by Inaba Hiroto.  No test cases, yet.
70386      Branch: perl
70387            ! regcomp.c
70388 ____________________________________________________________________________
70389 [ 18989] By: jhi                                   on 2003/03/16  08:02:31
70390         Log: Make the :bytes conditional on PerlIO.
70391      Branch: perl
70392            ! ext/Encode/t/CJKT.t
70393 ____________________________________________________________________________
70394 [ 18988] By: jhi                                   on 2003/03/15  18:27:36
70395         Log: Needs PerlIO for :bytes.
70396      Branch: perl
70397            ! ext/Encode/t/CJKT.t
70398 ____________________________________________________________________________
70399 [ 18986] By: rgs                                   on 2003/03/14  20:28:20
70400         Log: Subject: Re: [fix] [perl #21575] Bug with print( followed by a newline
70401              From: Enache Adrian <enache@rdslink.ro>
70402              Date: Fri, 14 Mar 2003 23:02:42 +0200
70403              Message-ID: <20030314210242.GA1159@ratsnest.hole>
70404              (with an added test)
70405      Branch: perl
70406            ! t/comp/parser.t toke.c
70407 ____________________________________________________________________________
70408 [ 18985] By: rgs                                   on 2003/03/14  19:45:18
70409         Log: Time::HiRes is a core module
70410      Branch: perl
70411            ! pod/perlfunc.pod
70412 ____________________________________________________________________________
70413 [ 18984] By: rgs                                   on 2003/03/14  19:38:57
70414         Log: Subject: [patch ext/B/typemap] STRLEN T_UV
70415              From: Stas Bekman <stas@stason.org>
70416              Date: Fri, 14 Mar 2003 17:45:09 +1100
70417              Message-ID: <3E717A75.2060300@stason.org>
70418      Branch: perl
70419            ! ext/B/typemap
70420 ____________________________________________________________________________
70421 [ 18982] By: jhi                                   on 2003/03/14  15:16:18
70422         Log: Better pass in the $self for a method.
70423      Branch: perl
70424            ! lib/File/Spec/Unix.pm
70425 ____________________________________________________________________________
70426 [ 18980] By: jhi                                   on 2003/03/14  13:42:32
70427         Log: Cleanup the File::Spec tmpdir() implementations:
70428              now all the platforms specific modules call _tmpdir()
70429              (inherited from Unix.pm) with the list of platform
70430              specific list of temporary directories, and _tmpdir()
70431              then does the appropriate suitability checking.
70432      Branch: perl
70433            ! lib/File/Spec.pm lib/File/Spec/Cygwin.pm lib/File/Spec/Epoc.pm
70434            ! lib/File/Spec/Functions.pm lib/File/Spec/Mac.pm
70435            ! lib/File/Spec/OS2.pm lib/File/Spec/Unix.pm
70436            ! lib/File/Spec/VMS.pm lib/File/Spec/Win32.pm
70437 ____________________________________________________________________________
70438 [ 18979] By: jhi                                   on 2003/03/14  12:48:09
70439         Log: whichsig() really does return -1 for unknown signals.
70440      Branch: perl
70441            ! mg.c
70442 ____________________________________________________________________________
70443 [ 18977] By: jhi                                   on 2003/03/14  10:42:33
70444         Log: Rework the @Config{/sig.*/} tests.
70445      Branch: perl
70446            ! lib/Config.t
70447 ____________________________________________________________________________
70448 [ 18976] By: jhi                                   on 2003/03/14  10:31:50
70449         Log: Subject: [PATCH] configure.com: sig_num, etc.
70450              From: "Craig A. Berry" <craigberry@mac.com>
70451              Date: Thu, 13 Mar 2003 21:38:19 -0600
70452              Message-ID: <3E714EAB.6030001@mac.com>
70453      Branch: perl
70454            ! configure.com
70455 ____________________________________________________________________________
70456 [ 18975] By: jhi                                   on 2003/03/14  10:30:53
70457         Log: Make whichsig() to work also if some system defines
70458              zero signals (now -1 is the "not found").  Note that
70459              in couple of mg.c spots only whichsig() > 0 branches
70460              are taken because signal handlers et al don't make
70461              much sense for the zero signal.
70462      Branch: perl
70463            ! doio.c mg.c
70464 ____________________________________________________________________________
70465 [ 18973] By: jhi                                   on 2003/03/14  10:27:46
70466         Log: Since Configure does the signal name/number probe with awk
70467              based on the cpp results (not by really running code), testing
70468              for the signum value is not really helpful if we have runtime
70469              function calls (some signal numbers are dynamic, for example)
70470              (or other extra stuff where the signum value is expected).
70471              (Runtimeness also means that Configure cannot get these right,
70472              anyway.) Better filter in just the constant non-negative numbers.
70473      Branch: perl
70474            ! Configure
70475 ____________________________________________________________________________
70476 [ 18971] By: jhi                                   on 2003/03/14  09:30:18
70477         Log: Signal issues.
70478              (1) Filter out negative signals.
70479              (2) Correct sig_num* and sig_name* descriptions.
70480      Branch: perl
70481            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
70482            ! config_h.SH
70483 ____________________________________________________________________________
70484 [ 18970] By: jhi                                   on 2003/03/14  06:21:48
70485         Log: Hopefully this works also in Win32.
70486      Branch: perl
70487            ! ext/Encode/t/CJKT.t
70488 ____________________________________________________________________________
70489 [ 18969] By: jhi                                   on 2003/03/14  05:43:34
70490         Log: Subject: [PATCH] Perldoc.pm tweak for VMS
70491              From: "Craig A. Berry" <craigberry@mac.com>
70492              Date: Thu, 13 Mar 2003 13:44:55 -0600
70493              Message-ID: <3E70DFB7.8070405@mac.com>
70494      Branch: perl
70495            ! lib/Pod/Perldoc.pm
70496 ____________________________________________________________________________
70497 [ 18968] By: gsar                                  on 2003/03/14  04:41:25
70498         Log: fix for switchC.t test#6 failure on windows
70499      Branch: perl
70500            ! perl.c
70501 ____________________________________________________________________________
70502 [ 18967] By: gsar                                  on 2003/03/14  04:29:10
70503         Log: Config.t wasn't getting the sig_num and sig_size relationship
70504              right, and therefore failed test#35 on windows
70505
70506              note that config_h.SH documents that $sig_size does NOT include
70507              the final NULL in $sig_num!
70508      Branch: perl
70509            ! lib/Config.t
70510 ____________________________________________________________________________
70511 [ 18966] By: gsar                                  on 2003/03/14  04:20:51
70512         Log: another fix for failing test on windows ("use encoding" puts
70513              STDIN in :raw mode, so chomp() wasn't stripping the CR)
70514      Branch: perl
70515            ! ext/Encode/t/enc_module.t
70516 ____________________________________________________________________________
70517 [ 18965] By: gsar                                  on 2003/03/14  04:06:31
70518         Log: fix CJKT.t failures on windows due to incorrect binmode()
70519      Branch: perl
70520            ! ext/Encode/t/CJKT.t
70521 ____________________________________________________________________________
70522 [ 18964] By: rgs                                   on 2003/03/13  21:47:52
70523         Log: Skip the last test of Config.t on HP-UX.
70524              (This test should be skipped for every system that
70525              actually defines a negative signal number. Maybe that
70526              test should be removed, to be future-proof.)
70527      Branch: perl
70528            ! lib/Config.t
70529 ____________________________________________________________________________
70530 [ 18963] By: rgs                                   on 2003/03/13  20:57:32
70531         Log: Subject: [perl #20755] [PATCH] 5.8.0 h2ph barfs on checksum.h on RH6.2/7.2
70532              From: Kurt Starsinic <kstar@cpan.org>
70533              Date: Mon, 10 Mar 2003 00:54:49 -0500
70534              Message-ID: <m3d6kyvazx.wl_rspier@pobox.com>
70535      Branch: perl
70536            ! t/lib/h2ph.h t/lib/h2ph.pht utils/h2ph.PL
70537 ____________________________________________________________________________
70538 [ 18962] By: rgs                                   on 2003/03/13  20:46:53
70539         Log: Subject: [PATCH] checking for magic in hv.c and ext/POSIX/POSIX.xs
70540              From: "Craig A. Berry" <craigberry@mac.com>
70541              Date: Tue, 11 Mar 2003 21:29:31 -0600
70542              Message-ID: <3E6EA99B.9060902@mac.com>
70543              Patch by Scott Lepage (scott.lepage@hp.com)
70544      Branch: perl
70545            ! hv.c
70546 ____________________________________________________________________________
70547 [ 18959] By: jhi                                   on 2003/03/13  20:05:50
70548         Log: Some more stdlib.h inclusions and change the gccversion
70549              test to use return (could have used that for all, sigh).
70550      Branch: perl
70551            ! Configure
70552 ____________________________________________________________________________
70553 [ 18958] By: rgs                                   on 2003/03/12  20:46:58
70554         Log: Trims slashes from the argument to rmdir(), likewise
70555              to what happens with rmdir(). Factorize the code in a
70556              local macro, TRIMSLASHES.
70557      Branch: perl
70558            ! pp_sys.c
70559 ____________________________________________________________________________
70560 [ 18957] By: jhi                                   on 2003/03/12  14:23:02
70561         Log: VOS nit from Paul Green.
70562      Branch: perl
70563            ! vos/configure_full_perl.sh
70564 ____________________________________________________________________________
70565 [ 18956] By: jhi                                   on 2003/03/12  13:58:26
70566         Log: File::Spec: Do not fall back to '', use curdir instead.
70567              Note: Mac used to use cwd(), now curdir, slight change
70568              (relative vs. absolute).
70569      Branch: perl
70570            ! lib/File/Spec/Cygwin.pm lib/File/Spec/Mac.pm
70571            ! lib/File/Spec/OS2.pm lib/File/Spec/Unix.pm
70572            ! lib/File/Spec/VMS.pm lib/File/Spec/Win32.pm
70573 ____________________________________________________________________________
70574 [ 18955] By: jhi                                   on 2003/03/12  13:49:15
70575         Log: File::Temp tests were failing in Cygwin if $ENV{TMPDIR}
70576              was unset (the tests attempted to create files at the /)
70577      Branch: perl
70578            ! lib/File/Spec/Cygwin.pm
70579 ____________________________________________________________________________
70580 [ 18954] By: jhi                                   on 2003/03/12  10:59:03
70581         Log: Another finding by IRIX cc: non-void function
70582              sv_cat_decode() should return a value.
70583      Branch: perl
70584            ! sv.c
70585 ____________________________________________________________________________
70586 [ 18952] By: jhi                                   on 2003/03/12  10:53:02
70587         Log: Integrate:
70588              [ 18949]
70589              pudge> never integrate anything from macos/
70590      Branch: perl
70591            - macos/MacPerlTests.cmd macos/Makefile.mk macos/configpm
70592            - macos/macperl.sym
70593           !> MANIFEST
70594 ____________________________________________________________________________
70595 [ 18951] By: jhi                                   on 2003/03/12  10:52:17
70596         Log: Integrate:
70597              [ 18946]
70598              Integrate from maint-5.8/macperl:
70599              [ 18937]
70600              Various MacOS portability fixes for tests
70601
70602              [ 18938]
70603              File::Spec::Unix method should be called on $self
70604
70605              [ 18939]
70606              lib.pm:_get_dirs() should use $_[0], not $_
70607
70608              [ 18940]
70609              Update MacOS for new configpm
70610
70611              [ 18941]
70612              Update MacOS build
70613              Update Makefile for new source files,
70614              update test script, add additional symbol for APItest
70615      Branch: perl
70616           +> macos/MacPerlTests.cmd macos/Makefile.mk macos/configpm
70617           +> macos/macperl.sym
70618           !> ext/Digest/MD5/t/files.t ext/Filter/t/call.t
70619           !> ext/POSIX/t/taint.t lib/File/Spec/Unix.pm
70620           !> lib/Unicode/Collate/t/index.t lib/Unicode/Collate/t/test.t
70621           !> lib/charnames.t lib/lib_pm.PL t/io/crlf.t t/op/method.t
70622           !> t/op/mkdir.t t/op/recurse.t t/op/sprintf.t t/op/stat.t
70623           !> t/op/taint.t t/pod/testp2pt.pl t/run/switchI.t
70624 ____________________________________________________________________________
70625 [ 18950] By: jhi                                   on 2003/03/12  10:49:27
70626         Log: Cygwin doesn't like initing the $0 mutex in perl_construct()
70627              (Too early? If inited there the pthread_mutex_init() returns
70628              an integer much too large be an errno), but initing the mutex
70629              later, in perl_alloc(), seems to be okay with Cygwin, and also
70630              with Linux.
70631      Branch: perl
70632            ! perl.c
70633 ____________________________________________________________________________
70634 [ 18944] By: jhi                                   on 2003/03/12  06:00:48
70635         Log: Ouch.  Missed one more, the void flags check (and exit() is void).
70636      Branch: perl
70637            ! Configure
70638 ____________________________________________________________________________
70639 [ 18943] By: jhi                                   on 2003/03/12  05:51:21
70640         Log: Tell how to possibly dodge 'Out of memory' errors.
70641      Branch: perl
70642            ! pod/perldiag.pod
70643 ____________________________________________________________________________
70644 [ 18935] By: jhi                                   on 2003/03/11  22:00:54
70645         Log: WinCE tweaks from Vadim Konovalov.
70646      Branch: perl
70647            ! perl.c perlio.c wince/Makefile.ce
70648 ____________________________________________________________________________
70649 [ 18932] By: jhi                                   on 2003/03/11  20:22:07
70650         Log: Missed one.
70651      Branch: perl
70652            ! Configure
70653 ____________________________________________________________________________
70654 [ 18929] By: jhi                                   on 2003/03/11  20:15:51
70655         Log: Single vs doublequoted context is important...
70656      Branch: perl
70657            ! Configure
70658 ____________________________________________________________________________
70659 [ 18927] By: jhi                                   on 2003/03/11  20:04:33
70660         Log: """glob.*""" patch for VMS, from Peter Prymmer.
70661      Branch: perl
70662            ! vms/perlvms.pod vms/vms.c
70663 ____________________________________________________________________________
70664 [ 18926] By: rgs                                   on 2003/03/11  19:44:54
70665         Log: Questionable construct.
70666      Branch: perl
70667            ! pod/perltooc.pod
70668 ____________________________________________________________________________
70669 [ 18925] By: jhi                                   on 2003/03/11  19:15:15
70670         Log: Better setmode() prototype for cygwin.
70671      Branch: perl
70672            ! perl.h
70673 ____________________________________________________________________________
70674 [ 18923] By: jhi                                   on 2003/03/11  19:11:39
70675         Log: Solaris cc wants prototype for exit(), so <stdlib.h> needed.
70676      Branch: perl
70677            ! Configure
70678 ____________________________________________________________________________
70679 [ 18921] By: jhi                                   on 2003/03/11  18:15:45
70680         Log: The 0, in the assert_not_ROK() makes IRIX cc to worry
70681              (cc-1171 cc: WARNING ... The indicated expression has no effect.)
70682              So make the macro to include the , and the non-gcc case empty.
70683      Branch: perl
70684            ! sv.h
70685 ____________________________________________________________________________
70686 [ 18919] By: jhi                                   on 2003/03/11  17:43:10
70687         Log: Uid_t and Gid_t can easily be shorts and one cannot
70688              pull shorts off the va_args, int is the shortest (ahem).
70689      Branch: perl
70690            ! reentr.c reentr.pl
70691 ____________________________________________________________________________
70692 [ 18918] By: jhi                                   on 2003/03/11  17:32:23
70693         Log: Subject: [PATCH] io_sock.t
70694              From: Norton Allen <allen@huarp.harvard.edu>
70695              Date: Tue, 11 Mar 2003 13:37:36 -0500 (est)
70696              Message-Id: <200303111837.NAA30438@bottesini.harvard.edu>
70697      Branch: perl
70698            ! README.qnx ext/IO/lib/IO/t/io_sock.t
70699 ____________________________________________________________________________
70700 [ 18917] By: jhi                                   on 2003/03/11  17:30:43
70701         Log: Get rid of one Cygwin warning by introducing a prototype
70702              for the init_os_extras().  Since there is no header file
70703              in Perl specific to cygwin, use perl.h.
70704      Branch: perl
70705            ! perl.h
70706 ____________________________________________________________________________
70707 [ 18916] By: jhi                                   on 2003/03/11  11:40:38
70708         Log: Upgrade to Time-HiRes 1.43.
70709      Branch: perl
70710            ! ext/Time/HiRes/Changes ext/Time/HiRes/HiRes.pm
70711            ! ext/Time/HiRes/Makefile.PL
70712 ____________________________________________________________________________
70713 [ 18915] By: jhi                                   on 2003/03/11  09:19:54
70714         Log: Be more lax about the out of memory error message.
70715      Branch: perl
70716            ! t/op/recurse.t
70717 ____________________________________________________________________________
70718 [ 18914] By: jhi                                   on 2003/03/11  09:18:25
70719         Log: Try to handle hitting the heap/data limit in small systems.
70720              (One can simulate this with e.g. 32MB or 64MB datasize,
70721              use your shell's ulimit/limit/limits command.)
70722      Branch: perl
70723            ! t/op/recurse.t
70724 ____________________________________________________________________________
70725 [ 18912] By: hv                                    on 2003/03/11  07:36:00
70726         Log: typo for utf8locale in #18907
70727      Branch: perl
70728            ! sv.c
70729 ____________________________________________________________________________
70730 [ 18910] By: jhi                                   on 2003/03/11  06:55:29
70731         Log: Subject: [PATCH] clear PL_exitlist in perl_destruct
70732              From: "Craig A. Berry" <craigberry@mac.com>
70733              Date: Tue, 11 Mar 2003 00:34:39 -0600
70734              Message-ID: <3E6D837F.7000506@mac.com>
70735      Branch: perl
70736            ! perl.c
70737 ____________________________________________________________________________
70738 [ 18909] By: jhi                                   on 2003/03/11  06:29:35
70739         Log: Upgrade to cperl-mode 5.0, from IlyaZ.
70740      Branch: perl
70741            ! emacs/cperl-mode.el
70742 ____________________________________________________________________________
70743 [ 18908] By: jhi                                   on 2003/03/11  06:09:05
70744         Log: Missed some, cryptically.
70745      Branch: perl
70746            ! pod/perlfunc.pod
70747 ____________________________________________________________________________
70748 [ 18907] By: jhi                                   on 2003/03/11  06:01:28
70749         Log: Add missing intrpvar clonings to perl_clone.
70750              Also move the IDBassertion to the end since there's
70751              no particular reason to break bincompat for that.
70752      Branch: perl
70753            ! intrpvar.h sv.c
70754 ____________________________________________________________________________
70755 [ 18906] By: jhi                                   on 2003/03/11  05:43:30
70756         Log: Add reminders to intrpvar.h about perl_clone(), as suggested by Stas.
70757      Branch: perl
70758            ! intrpvar.h
70759 ____________________________________________________________________________
70760 [ 18905] By: jhi                                   on 2003/03/11  05:38:10
70761         Log: Subject: [patch] PL_taint_warn falls between chairs in perl_clone()
70762              From: Stas Bekman <stas@stason.org>
70763              Date: Tue, 11 Mar 2003 17:09:02 +1100
70764              Message-ID: <3E6D7D7E.5000704@stason.org>
70765      Branch: perl
70766            ! sv.c
70767 ____________________________________________________________________________
70768 [ 18904] By: jhi                                   on 2003/03/11  05:33:10
70769         Log: Subject: [PATCH] typos and other minor things
70770              From: "Todd C. Miller" <Todd.Miller@courtesan.com>
70771              Date: Mon, 10 Mar 2003 21:00:55 -0700
70772              Message-Id: <200303110400.h2B40tEQ018838@xerxes.courtesan.com>
70773      Branch: perl
70774            ! emacs/cperl-mode.el ext/B/B/Concise.pm ext/DB_File/DB_File.pm
70775            ! ext/DB_File/DB_File.xs ext/Devel/PPPort/PPPort.pm
70776            ! ext/IO/lib/IO/Socket.pm ext/PerlIO/encoding/encoding.xs
70777            ! ext/PerlIO/via/via.pm ext/Storable/Storable.xs lib/Net/FTP.pm
70778            ! lib/Net/NNTP.pm lib/Net/Ping.pm lib/Pod/Perldoc.pm
70779            ! lib/Tie/File/t/05_size.t lib/charnames.pm lib/ftp.pl
70780            ! lib/utf8.t pad.c pod/perlfunc.pod pod/perlintern.pod
70781            ! pod/perlthrtut.pod pod/pod2latex.PL regcomp.c t/op/sprintf.t
70782            ! utils/libnetcfg.PL vms/vms.c win32/vmem.h
70783 ____________________________________________________________________________
70784 [ 18903] By: jhi                                   on 2003/03/11  05:29:12
70785         Log: A rejected hunk of #18902 reapplied.
70786      Branch: perl
70787            ! t/io/utf8.t
70788 ____________________________________________________________________________
70789 [ 18902] By: jhi                                   on 2003/03/11  05:19:15
70790         Log: Patch from Craig Berry to resolve test failures in VMS.
70791              Will poke the Net::Ping author.
70792      Branch: perl
70793            ! ext/threads/shared/t/cond.t lib/Net/Ping/t/190_alarm.t
70794            ! t/io/utf8.t t/op/magic.t
70795 ____________________________________________________________________________
70796 [ 18900] By: rgs                                   on 2003/03/10  22:12:37
70797         Log: Integrate (by hand) change #18386 from maint-5.8
70798      Branch: perl
70799            ! t/op/split.t
70800 ____________________________________________________________________________
70801 [ 18899] By: jhi                                   on 2003/03/10  21:44:12
70802         Log: VMS has an extra \n at the end, and I assume Windows has \r\n.
70803      Branch: perl
70804            ! t/run/switchC.t
70805 ____________________________________________________________________________
70806 [ 18891] By: rgs                                   on 2003/03/10  20:22:39
70807         Log: A new test, to check that signal numbers are actually positive,
70808              and that there is a consistent number of signals available.
70809      Branch: perl
70810            ! lib/Config.t
70811 ____________________________________________________________________________
70812 [ 18889] By: rgs                                   on 2003/03/10  19:55:06
70813         Log: Subject: Re: odd (or not so odd?) segmentation fault in 5.8.0
70814              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
70815              Date: Fri, 07 Mar 2003 13:12:49 -0800
70816              Message-ID: <RtQa+gzkg2kF092yn@efn.org>
70817      Branch: perl
70818            ! mg.c pod/perldiag.pod t/op/tie.t
70819 ____________________________________________________________________________
70820 [ 18888] By: rgs                                   on 2003/03/10  19:37:40
70821         Log: Subject: Re: [perl #21505] 5.8.0 lib/Config test failure due to compiler flag
70822              From: Nicholas Clark <nick@unfortu.net>
70823              Date: Sun, 9 Mar 2003 21:24:46 +0000
70824              Message-ID: <20030309212445.GE277@Bagpuss.unfortu.net>
70825      Branch: perl
70826            ! lib/Config.t
70827 ____________________________________________________________________________
70828 [ 18880] By: jhi                                   on 2003/03/10  16:17:50
70829         Log: Integrate from maint:
70830              [ 18428]
70831              Somehow I managed to get makefile.olds that didn't get cleaned away.
70832      Branch: perl
70833           !> Makefile.SH x2p/Makefile.SH
70834 ____________________________________________________________________________
70835 [ 18876] By: jhi                                   on 2003/03/10  06:35:20
70836         Log: Comment fix.
70837      Branch: perl
70838            ! t/io/utf8.t
70839 ____________________________________________________________________________
70840 [ 18875] By: jhi                                   on 2003/03/10  05:31:00
70841         Log: Remove the foo-old files.
70842      Branch: perl
70843            ! opcode.pl
70844 ____________________________________________________________________________
70845 [ 18874] By: jhi                                   on 2003/03/10  05:23:32
70846         Log: Subject: Re: Shared libperl.so and build issues
70847              From: Chip Turner <cturner@redhat.com>
70848              Date: 05 Jan 2003 10:35:40 -0500
70849              Message-ID: <vzky95z8v8z.fsf@minbar.devel.redhat.com>
70850      Branch: perl
70851            ! INSTALL
70852 ____________________________________________________________________________
70853 [ 18873] By: jhi                                   on 2003/03/10  05:18:02
70854         Log: Bunch of doc patches from Stas; plus regen.
70855
70856              Subject: [doc patch] perl.c's pod api entry
70857              From: Stas Bekman <stas@stason.org>
70858              Date: Mon, 10 Mar 2003 12:35:52 +1100
70859              Message-ID: <3E6BEBF8.80402@stason.org>
70860
70861              Subject: Re: [patch] perlguts.pod
70862              From: Stas Bekman <stas@stason.org>
70863              Date: Mon, 10 Mar 2003 12:38:57 +1100
70864              Message-ID: <3E6BECB1.7050009@stason.org>
70865
70866              Subject: Re: [PATCH ext/DynaLoader/DynaLoader_pm.PL] doc fix: s/dl_loadflags/dl_load_flags/
70867              From: Stas Bekman <stas@stason.org>
70868              Date: Mon, 10 Mar 2003 12:41:46 +1100
70869              Message-ID: <3E6BED5A.801@stason.org>
70870
70871              Subject: Re: [patch] perlapi.pod fix
70872              From: Stas Bekman <stas@stason.org>
70873              Date: Mon, 10 Mar 2003 12:43:33 +1100
70874              Message-ID: <3E6BEDC5.6010405@stason.org>
70875
70876              Subject: Re: [docs patch] replace gets() with fgets() in example
70877              From: Stas Bekman <stas@stason.org>
70878              Date: Mon, 10 Mar 2003 12:45:41 +1100
70879              Message-ID: <3E6BEE45.9030901@stason.org>
70880
70881              Subject: [doc patch] perlrun.pod
70882              From: Stas Bekman <stas@stason.org>
70883              Date: Mon, 10 Mar 2003 14:49:59 +1100
70884              Message-ID: <3E6C0B67.4050606@stason.org>
70885      Branch: perl
70886            ! ext/DynaLoader/DynaLoader_pm.PL handy.h perl.c pod/perlapi.pod
70887            ! pod/perlembed.pod pod/perlguts.pod pod/perlrun.pod
70888 ____________________________________________________________________________
70889 [ 18871] By: jhi                                   on 2003/03/09  20:15:13
70890         Log: Must not hide the protos, though.
70891      Branch: perl
70892            ! embed.pl proto.h
70893 ____________________________________________________________________________
70894 [ 18870] By: jhi                                   on 2003/03/09  20:12:11
70895         Log: I hate embed*.  Tell me what you know.
70896      Branch: perl
70897            ! embed.fnc embed.h
70898 ____________________________________________________________________________
70899 [ 18869] By: jhi                                   on 2003/03/09  19:32:19
70900         Log: Upgrade to Encode 1.91.
70901      Branch: perl
70902            ! ext/Encode/AUTHORS ext/Encode/Changes ext/Encode/Encode.pm
70903            ! ext/Encode/encoding.pm ext/Encode/t/enc_module.t
70904 ____________________________________________________________________________
70905 [ 18868] By: jhi                                   on 2003/03/09  19:04:22
70906         Log: Export the symbols from #18863; do not prototype (but export)
70907              Nicholas Clark's experimental COW functions.
70908              Sidenote: the embed.fnc/embed.fnc/makedef.pl thing is becoming
70909              a mess of Herculean proportions.  Someone should redesign and
70910              clean up the stables.
70911      Branch: perl
70912            ! embed.fnc embed.pl global.sym proto.h
70913 ____________________________________________________________________________
70914 [ 18867] By: jhi                                   on 2003/03/09  17:12:55
70915         Log: Upgrade to Encode 1.90 (plus the one extra use lib in enc_module.t)
70916      Branch: perl
70917            ! ext/Encode/Changes ext/Encode/Encode.pm ext/Encode/Encode.xs
70918            ! ext/Encode/MANIFEST ext/Encode/encoding.pm
70919            ! ext/Encode/t/Mod_EUCJP.pm ext/Encode/t/enc_data.t
70920            ! ext/Encode/t/enc_module.t
70921 ____________________________________________________________________________
70922 [ 18865] By: jhi                                   on 2003/03/09  13:50:57
70923         Log: From Inaba Hiroto: DATA wasn't properly utf8ed
70924              under 'use encoding'.
70925      Branch: perl
70926            + ext/Encode/t/enc_data.t
70927            ! MANIFEST ext/Encode/MANIFEST toke.c
70928 ____________________________________________________________________________
70929 [ 18864] By: jhi                                   on 2003/03/09  13:21:09
70930         Log: Tru64: additional instructions for building a newer Berkeley DB.
70931      Branch: perl
70932            ! README.tru64 hints/dec_osf.sh
70933 ____________________________________________________________________________
70934 [ 18863] By: jhi                                   on 2003/03/09  12:07:28
70935         Log: At Sarathy's request restore the bin5005compat Perl_foo_sv()
70936              function stubs, should be helpful for really simple extensions.
70937              Undoes large parts of changes #16289 and #16290.
70938      Branch: perl
70939            ! sv.c
70940 ____________________________________________________________________________
70941 [ 18862] By: rgs                                   on 2003/03/09  11:48:37
70942         Log: ... and add a test case for bug #20798
70943      Branch: perl
70944            ! t/op/eval.t
70945 ____________________________________________________________________________
70946 [ 18861] By: jhi                                   on 2003/03/09  11:46:17
70947         Log: Subject: Re: [perl #21498] printf behaviour changes 5.6.1(and earlier) -> 5.8
70948              From: Enache Adrian <enache@rdslink.ro>
70949              Date: Fri, 7 Mar 2003 23:28:37 +0200
70950              Message-ID: <20030307212837.GB765@ratsnest.hole>
70951
70952              (and few more test cases from the thread)
70953      Branch: perl
70954            ! sv.c t/op/sprintf.t
70955 ____________________________________________________________________________
70956 [ 18860] By: rgs                                   on 2003/03/09  11:33:09
70957         Log: Subject: Re: [perl #20798] foo(eval {}) crashes Perl 5.8
70958              From: Enache Adrian <enache@rdslink.ro>
70959              Date: Fri, 7 Mar 2003 00:12:03 +0200
70960              Message-ID: <20030306221203.GB13330@ratsnest.hole>
70961      Branch: perl
70962            ! op.c
70963 ____________________________________________________________________________
70964 [ 18859] By: rgs                                   on 2003/03/09  11:30:22
70965         Log: Adjust test count.
70966      Branch: perl
70967            ! t/op/pat.t
70968 ____________________________________________________________________________
70969 [ 18858] By: jhi                                   on 2003/03/09  10:54:10
70970         Log: From Inaba Hiroto: re_intuit_start set a value to
70971              PL_bostr before calling find_byclass when regexp has
70972              ROPT_UTF8 flag on. But right value for PL_bostr is set
70973              before re_intuit_start is called.  PL_regdata is always
70974              assigned by cache_re(), so the whole if(prog->reganch & ROPT_UTF8){}
70975              can be deleted.
70976      Branch: perl
70977            ! regexec.c t/op/pat.t
70978 ____________________________________________________________________________
70979 [ 18857] By: jhi                                   on 2003/03/09  10:46:23
70980         Log: From Inaba Hiroto: the UTF-8 length cache wasn't
70981              updated when fbm_compile() appended a "\n".
70982      Branch: perl
70983            ! t/op/pat.t util.c
70984 ____________________________________________________________________________
70985 [ 18856] By: rgs                                   on 2003/03/08  20:16:36
70986         Log: Add a B::COP::io() method, to return the cop_io field of COPs.
70987              Print it in B::Debug. Can be used later in B::Deparse to deparse
70988              the open pragma.
70989      Branch: perl
70990            ! ext/B/B.pm ext/B/B.xs ext/B/B/Debug.pm
70991 ____________________________________________________________________________
70992 [ 18855] By: rgs                                   on 2003/03/08  19:51:40
70993         Log: Subject: [PATCH perldebug.pod] to explain new [<>{] behaviour - attached
70994              From: Richard.Foley@ubsw.com
70995              Date: Fri, 21 Feb 2003 13:51:51 +0100
70996              Message-ID: <B374141B0A424D4F9CF143CC51B3ADD98579F1@NZURC900PEX1.ubsgs.ubsgroup.net>
70997      Branch: perl
70998            ! pod/perldebug.pod
70999 ____________________________________________________________________________
71000 [ 18854] By: jhi                                   on 2003/03/08  19:41:25
71001         Log: Enache Adrian reads comments.
71002      Branch: perl
71003            ! perl.h
71004 ____________________________________________________________________________
71005 [ 18853] By: rgs                                   on 2003/03/08  19:40:13
71006         Log: Subject: [PATCH] Re: [perl #20551] Documentation error for IO::Select
71007              From: Richard Soderberg <perl@crystalflame.net>
71008              Date: Sat, 15 Feb 2003 01:27:17 -0500
71009              Message-Id: <87D7A731-40AE-11D7-9B07-000393801F84@crystalflame.net>
71010      Branch: perl
71011            ! ext/IO/lib/IO/Select.pm
71012 ____________________________________________________________________________
71013 [ 18852] By: jhi                                   on 2003/03/08  19:05:04
71014         Log: Subject: [PATCH] long %ENV values for VMS
71015              From: "Craig A. Berry" <craigberry@mac.com>
71016              Date: Fri, 07 Mar 2003 13:49:50 -0600
71017              Message-ID: <3E68F7DE.8070603@mac.com>
71018      Branch: perl
71019            ! vms/vms.c
71020 ____________________________________________________________________________
71021 [ 18851] By: jhi                                   on 2003/03/08  06:49:35
71022         Log: regen_headers tiny tidying:
71023              - regen.pl renamed as regen_lib.pl
71024              - regen_headers.pl renamed as regen.pl
71025              - added make target 'regen' (kept target 'regen_headers'
71026              for porters' brains' backward compatibility)
71027              - regen.pl fancified a bit to display the names
71028              of the files that got changed by running the scripts
71029      Branch: perl
71030            + regen_lib.pl
71031            - regen_headers.pl
71032            ! MANIFEST Makefile.SH autodoc.pl bytecode.pl embed.pl
71033            ! keywords.pl opcode.pl regcomp.pl regen.pl
71034 ____________________________________________________________________________
71035 [ 18848] By: jhi                                   on 2003/03/07  08:40:52
71036         Log: Give pointers to runtime Unicode changes.
71037      Branch: perl
71038            ! pod/perlrun.pod pod/perlvar.pod
71039 ____________________________________________________________________________
71040 [ 18847] By: jhi                                   on 2003/03/07  08:02:50
71041         Log: Extra character noticed by Tels.
71042      Branch: perl
71043            ! MANIFEST
71044 ____________________________________________________________________________
71045 [ 18846] By: jhi                                   on 2003/03/07  05:28:11
71046         Log: Subject: [PATCH] FreeBSD 5.0 gethostbyaddr_r hints update
71047              From: Kay Roepke <kay@dolphin-services.de>
71048              Date: Thu, 06 Mar 2003 23:00:10 +0100
71049              Message-ID: <3E67C4EA.A55FFE5C@dolphin-services.de>
71050
71051              (plus change the d_gethostbyaddr_r_proto default to "0",
71052              that is what an undefined r_proto looks like)
71053      Branch: perl
71054            ! hints/freebsd.sh
71055 ____________________________________________________________________________
71056 [ 18845] By: jhi                                   on 2003/03/07  05:21:43
71057         Log: Define the Perl_pp_i_modulo_1() only iff we have glibc.
71058              (Stronger variant of "pp.c: Perl_pp_i_modulo_1 needs help
71059              in non-glibc case", from Craig Berry)
71060      Branch: perl
71061            ! pp.c
71062 ____________________________________________________________________________
71063 [ 18844] By: jhi                                   on 2003/03/07  05:05:57
71064         Log: Good observation from Philip Newton.
71065      Branch: perl
71066            ! pod/perlrun.pod
71067 ____________________________________________________________________________
71068 [ 18843] By: rgs                                   on 2003/03/06  21:59:02
71069         Log: Make the -A switch work without an assertion name.
71070              by Salvador Fandiño.
71071      Branch: perl
71072            ! perl.c t/run/switch_A.t
71073 ____________________________________________________________________________
71074 [ 18842] By: rgs                                   on 2003/03/06  21:27:15
71075         Log: Subject: Re: [PATCH] let perlmodstyle mention Module::Build and Test::More
71076              From: "Jos I. Boumans" <kane@dwim.org>
71077              Date: Fri, 21 Feb 2003 20:33:53 +0100
71078              Message-ID: <3E567F21.6020006@dwim.org>
71079              (with some minor tweaks)
71080      Branch: perl
71081            ! pod/perlmodstyle.pod
71082 ____________________________________________________________________________
71083 [ 18841] By: rgs                                   on 2003/03/06  20:56:32
71084         Log: Subject: Re: [perl #20682] [fix] @- array not visible in s///
71085              From: Enache Adrian <enache@rdslink.ro>
71086              Date: Sun, 2 Mar 2003 06:05:22 +0200
71087              Message-ID: <20030302040522.GB4905@ratsnest.hole>
71088      Branch: perl
71089            ! t/op/subst.t
71090 ____________________________________________________________________________
71091 [ 18840] By: rgs                                   on 2003/03/06  20:45:08
71092         Log: Subject: cleaning up tests of the 'eval { decl. } <=> runtime decl.' assumption
71093              From: Enache Adrian <enache@rdslink.ro>
71094              Date: Wed, 5 Mar 2003 12:06:20 +0200
71095              Message-ID: <20030305100620.GA909@ratsnest.hole>
71096      Branch: perl
71097            ! ext/POSIX/t/sigaction.t ext/POSIX/t/waitpid.t t/op/method.t
71098            ! t/op/sub_lval.t t/op/ver.t t/run/fresh_perl.t
71099 ____________________________________________________________________________
71100 [ 18839] By: jhi                                   on 2003/03/06  17:21:36
71101         Log: Subject: [PATCH perl@18838] mg.c needs Perl_csighandler prototype
71102              From: "Craig A. Berry" <craigberry@mac.com>
71103              Date: Thu, 06 Mar 2003 10:42:05 -0600
71104              Message-ID: <3E677A5D.10805@mac.com>
71105      Branch: perl
71106            ! mg.c
71107 ____________________________________________________________________________
71108 [ 18838] By: jhi                                   on 2003/03/06  10:11:22
71109         Log: Thinko fix.
71110      Branch: perl
71111            ! Porting/findrfuncs
71112 ____________________________________________________________________________
71113 [ 18837] By: jhi                                   on 2003/03/06  09:33:33
71114         Log: PERL_UNICODE explanation saga continues.
71115      Branch: perl
71116            ! pod/perlrun.pod
71117 ____________________________________________________________________________
71118 [ 18836] By: jhi                                   on 2003/03/06  07:55:03
71119         Log: Handle also extra directories et alia.
71120      Branch: perl
71121            ! Porting/manicheck
71122 ____________________________________________________________________________
71123 [ 18835] By: jhi                                   on 2003/03/06  07:48:05
71124         Log: Add mani(fest) check(ing) utility.
71125      Branch: perl
71126            + Porting/manicheck
71127            ! MANIFEST
71128 ____________________________________________________________________________
71129 [ 18833] By: jhi                                   on 2003/03/06  05:36:13
71130         Log: Subject: [patch config_h.SH] redefining __attribute__
71131              From: Stas Bekman <stas@stason.org>
71132              Date: Thu, 06 Mar 2003 12:03:39 +1100
71133              Message-ID: <3E669E6B.1060606@stason.org>
71134      Branch: perl
71135            ! Configure NetWare/config_H.wc Porting/config.sh
71136            ! Porting/config_H config_h.SH plan9/config.plan9
71137            ! plan9/config_h.sample win32/config_H.bc win32/config_H.gc
71138            ! win32/config_H.vc win32/config_H.vc64 wince/config_H.ce
71139 ____________________________________________________________________________
71140 [ 18831] By: jhi                                   on 2003/03/05  19:56:41
71141         Log: Couple more _r possibilities (found in a RH 8.0 box), and
71142              the random() macros were all wrong.  (I don't know why
71143              metaconfig did so much reordering of config_h.SH.)
71144      Branch: perl
71145            ! Configure config_h.SH reentr.h reentr.pl
71146 ____________________________________________________________________________
71147 [ 18830] By: rgs                                   on 2003/03/04  23:25:01
71148         Log: Change #18829 makes this test workaround obsolete.
71149      Branch: perl
71150            ! ext/B/t/deparse.t
71151 ____________________________________________________________________________
71152 [ 18829] By: rgs                                   on 2003/03/04  22:23:41
71153         Log: Patch by Salvador Fandiño to read the warning mask
71154              returned by caller() and ${^WARNING_BITS} from
71155              $warnings::Bits{all} and not from the hardcoded core
71156              constant. (This mask could have been extended by
71157              warnings::register.) Plus tests.
71158      Branch: perl
71159            ! mg.c pp_ctl.c t/op/caller.t
71160 ____________________________________________________________________________
71161 [ 18828] By: rgs                                   on 2003/03/04  20:49:59
71162         Log: Subject: [PATCH] assertions
71163              From: Salvador Fandiño <sfandino@yahoo.com>
71164              Date: Fri, 21 Feb 2003 17:26:16 +0000
71165              Message-ID: <3E566138.4090709@yahoo.com>
71166              and the complement : (with added comments)
71167              Subject: [PATCH] bug in ext/B/t/deparse.t
71168              Message-ID: <3E563E16.7060303@yahoo.com>
71169              plus perldiag.pod patch for the new warning
71170              (previous change was, once again, empty)
71171      Branch: perl
71172            ! ext/B/t/deparse.t lib/assertions.pm lib/assertions/activate.pm
71173            ! lib/perl5db.pl lib/warnings.pm op.c perl.h perlapi.c
71174            ! pod/perldiag.pod warnings.h warnings.pl
71175 ____________________________________________________________________________
71176 [ 18827] By: rgs                                   on 2003/03/04  20:48:09
71177         Log: Subject: [PATCH] assertions
71178              From: Salvador Fandiño <sfandino@yahoo.com>
71179              Date: Fri, 21 Feb 2003 17:26:16 +0000
71180              Message-ID: <3E566138.4090709@yahoo.com>
71181              and the complement : (with added comments)
71182              Subject: [PATCH] bug in ext/B/t/deparse.t
71183              Message-ID: <3E563E16.7060303@yahoo.com>
71184              plus perldiag.pod patch for the new warning
71185      Branch: perl
71186            ! ext/B/t/deparse.t lib/assertions.pm lib/assertions/activate.pm
71187            ! lib/perl5db.pl lib/warnings.pm op.c perl.h perlapi.c
71188            ! pod/perldiag.pod warnings.h warnings.pl
71189 ____________________________________________________________________________
71190 [ 18826] By: jhi                                   on 2003/03/04  20:22:25
71191         Log: Try to make PPPort.pm 5.005-friendlier (see [perl #21339]).
71192              The variant is from how List::Util Util.xs does it.
71193      Branch: perl
71194            ! ext/Devel/PPPort/PPPort.pm
71195 ____________________________________________________________________________
71196 [ 18825] By: rgs                                   on 2003/03/04  19:56:28
71197         Log: Doc typos.
71198      Branch: perl
71199            ! lib/File/Find.pm
71200 ____________________________________________________________________________
71201 [ 18823] By: jhi                                   on 2003/03/04  05:33:50
71202         Log: Try to give rcatline() a good jog on Unicode.
71203      Branch: perl
71204            ! t/io/utf8.t
71205 ____________________________________________________________________________
71206 [ 18822] By: jhi                                   on 2003/03/04  05:14:13
71207         Log: Subject: Re: [perl #21395] rcatline doesn't grok utf8
71208              From: Enache Adrian <enache@rdslink.ro>
71209              Date: Sun, 2 Mar 2003 05:43:54 +0200
71210              Message-ID: <20030302034354.GA4905@ratsnest.hole>
71211      Branch: perl
71212            ! sv.c t/io/utf8.t
71213 ____________________________________________________________________________
71214 [ 18821] By: jhi                                   on 2003/03/04  04:58:36
71215         Log: Can't test this without PerlIO.
71216      Branch: perl
71217            ! t/uni/write.t
71218 ____________________________________________________________________________
71219 [ 18820] By: sky                                   on 2003/03/04  01:01:07
71220         Log: Fixes bug #15654 bizarre constant mangling in 5.8.0
71221              What happened was that a constant was freed, the pad released but
71222              the pad slot still held the SV, when pad slot was reallocated
71223              to be a target for a stringify, it did a sv_setpv on the target
71224              and the original SV was wiped out. When this SV was later on
71225              to new places using the constant, they got the wrong value.
71226              By replacing pad_free with pad_swipe for these cases, we
71227              won't have such a problem. (pad_swipe also removes the
71228              pointer to the original SV).
71229      Branch: perl
71230            ! op.c
71231 ____________________________________________________________________________
71232 [ 18819] By: jhi                                   on 2003/03/03  19:15:07
71233         Log: Further clarification on PERL_UNICODE's semantics.
71234      Branch: perl
71235            ! pod/perlrun.pod
71236 ____________________________________________________________________________
71237 [ 18818] By: gbarr                                 on 2003/03/03  10:07:44
71238         Log: Sync with libnet-1.13
71239      Branch: perl
71240            ! lib/Net/ChangeLog.libnet lib/Net/Cmd.pm lib/Net/FTP.pm
71241            ! lib/Net/POP3.pm lib/Net/SMTP.pm
71242 ____________________________________________________________________________
71243 [ 18817] By: jhi                                   on 2003/03/03  06:45:59
71244         Log: Upgrade to Unicode::Normalize 0.20.
71245      Branch: perl
71246            ! ext/Unicode/Normalize/Changes
71247            ! ext/Unicode/Normalize/Normalize.pm
71248            ! ext/Unicode/Normalize/Normalize.xs
71249            ! ext/Unicode/Normalize/README ext/Unicode/Normalize/mkheader
71250            ! ext/Unicode/Normalize/t/func.t ext/Unicode/Normalize/t/norm.t
71251            ! ext/Unicode/Normalize/t/test.t
71252 ____________________________________________________________________________
71253 [ 18816] By: jhi                                   on 2003/03/03  06:17:28
71254         Log: Upgrade to Encode 1.89.  The enc_module.t required
71255              a little tweak, sending that to Dan.
71256      Branch: perl
71257            + ext/Encode/t/Mod_EUCJP.pm ext/Encode/t/enc_module.enc
71258            + ext/Encode/t/enc_module.t
71259            ! MANIFEST ext/Encode/AUTHORS ext/Encode/Changes
71260            ! ext/Encode/Encode.pm ext/Encode/Encode.xs ext/Encode/MANIFEST
71261            ! ext/Encode/Unicode/Unicode.xs ext/Encode/encoding.pm
71262            ! ext/Encode/t/enc_eucjp.t ext/Encode/t/enc_utf8.t
71263            ! ext/Encode/ucm/viscii.ucm
71264 ____________________________________________________________________________
71265 [ 18813] By: jhi                                   on 2003/03/03  05:33:21
71266         Log: Use a macro for abs() to avoid the possible truncation to an int;
71267              also make an explicit (double)cast for the arguments to fabs().
71268      Branch: perl
71269            ! perl.h pp.c sv.c util.c
71270 ____________________________________________________________________________
71271 [ 18812] By: hv                                    on 2003/03/02  22:36:05
71272         Log: Subject: Re: [PATCH] Make adding notes to patchlevel.h easier
71273              From: andreas.koenig@anima.de (Andreas J. Koenig)
71274              Date: Wed, 19 Feb 2003 11:05:28 +0100
71275              Message-ID: <m3d6lozitz.fsf@k242.linux.bogus>
71276      Branch: perl
71277            ! patchlevel.h
71278 ____________________________________________________________________________
71279 [ 18811] By: hv                                    on 2003/03/02  22:30:50
71280         Log: Subject: [perl #21289] [Fwd: IPC::Msg bug report]
71281              From: Edmund Bacon (via RT) <perlbug-followup@perl.org>
71282              Date: 18 Feb 2003 21:05:15 -0000
71283              Message-Id: <rt-21289-52384.13.2700974026643@bugs6.perl.org>
71284      Branch: perl
71285            ! ext/IPC/SysV/Msg.pm
71286 ____________________________________________________________________________
71287 [ 18810] By: hv                                    on 2003/03/02  21:59:10
71288         Log: Subject: [PATCH] Re: [perl #18872] File::Basename example misleading
71289              From: Richard Soderberg <perl@crystalflame.net>
71290              Date: Sat, 15 Feb 2003 01:27:21 -0500
71291              Message-Id: <89FAC8B9-40AE-11D7-9B07-000393801F84@crystalflame.net>
71292      Branch: perl
71293            ! lib/File/Basename.pm
71294 ____________________________________________________________________________
71295 [ 18809] By: hv                                    on 2003/03/02  21:54:53
71296         Log: Subject: [perl #21031] $File::Find::name ne $_ w/no_chdir
71297              From: "Anders Johnson" (via RT) <perlbug-followup@perl.org>
71298              Date: 15 Feb 2003 00:21:41 -0000
71299              Message-Id: <rt-21031-51306.12.8541374577158@bugs6.perl.org>
71300      Branch: perl
71301            ! lib/File/Find.pm
71302 ____________________________________________________________________________
71303 [ 18807] By: hv                                    on 2003/03/02  21:22:56
71304         Log: Reverse copyright update (#18801) for files not changed in 2003.
71305      Branch: perl
71306            ! EXTERN.h INTERN.h README av.h cc_runtime.h deb.c doop.c
71307            ! dosish.h fakethr.h form.h globals.c gv.h handy.h hv.h
71308            ! keywords.h keywords.pl mg.h miniperlmain.c numeric.c pad.h
71309            ! perlapi.c perlsdio.h perlsfio.h perlvars.h perly.y pp.h
71310            ! regcomp.h run.c scope.h taint.c thread.h unixish.h utf8.h
71311            ! utfebcdic.h util.h x2p/EXTERN.h x2p/INTERN.h x2p/a2p.c
71312            ! x2p/a2p.h x2p/a2p.y x2p/hash.c x2p/hash.h x2p/proto.h
71313            ! x2p/str.c x2p/str.h x2p/util.c x2p/util.h x2p/walk.c
71314 ____________________________________________________________________________
71315 [ 18805] By: hv                                    on 2003/03/02  16:29:28
71316         Log: Subject: Re: [perl #21411] [fix] Postponed RE with split()
71317              From: Enache Adrian <enache@rdslink.ro>
71318              Date: Sun, 2 Mar 2003 10:11:27 +0200
71319              Message-ID: <20030302081127.GA10782@ratsnest.hole>
71320      Branch: perl
71321            ! pp.c t/op/pat.t
71322 ____________________________________________________________________________
71323 [ 18803] By: hv                                    on 2003/03/02  16:12:34
71324         Log: Subject: RE: [perl #20613] Perl_magic_setsig/clearsig problems (patch   included)
71325              From: "Anders Johnson" <ajohnson@wischip.com>
71326              Date: Mon, 10 Feb 2003 14:09:46 -0800
71327              Message-ID: <000e01c2d151$2228ca90$9800a8c0@wis.com>
71328      Branch: perl
71329            ! mg.c t/op/magic.t
71330 ____________________________________________________________________________
71331 [ 18802] By: jhi                                   on 2003/03/02  15:39:06
71332         Log: Narrow down the -C test skippage.
71333      Branch: perl
71334            ! t/run/switchC.t
71335 ____________________________________________________________________________
71336 [ 18801] By: hv                                    on 2003/03/02  15:24:22
71337         Log: Update all copyrights to 2003, from Jarkko
71338      Branch: perl
71339            ! EXTERN.h INTERN.h README XSUB.h av.c av.h cc_runtime.h cop.h
71340            ! cv.h deb.c doio.c doop.c dosish.h dump.c embed.h embed.pl
71341            ! embedvar.h fakesdio.h fakethr.h form.h global.sym globals.c
71342            ! gv.c gv.h handy.h hv.c hv.h keywords.h keywords.pl locale.c
71343            ! mg.c mg.h miniperlmain.c nostdio.h numeric.c op.c op.h
71344            ! opcode.h opcode.pl opnames.h pad.c pad.h patchlevel.h perl.c
71345            ! perl.h perlapi.c perlapi.h perlio.h perlsdio.h perlsfio.h
71346            ! perlvars.h perly.y pp.c pp.h pp_ctl.c pp_hot.c pp_pack.c
71347            ! pp_sort.c pp_sys.c proto.h reentr.c reentr.h reentr.pl
71348            ! regcomp.c regcomp.h regexec.c regexp.h run.c scope.c scope.h
71349            ! sv.c sv.h taint.c thrdvar.h thread.h toke.c universal.c
71350            ! unixish.h utf8.c utf8.h utfebcdic.h util.c util.h x2p/EXTERN.h
71351            ! x2p/INTERN.h x2p/a2p.c x2p/a2p.h x2p/a2p.y x2p/hash.c
71352            ! x2p/hash.h x2p/proto.h x2p/str.c x2p/str.h x2p/util.c
71353            ! x2p/util.h x2p/walk.c xsutils.c
71354 ____________________________________________________________________________
71355 [ 18800] By: hv                                    on 2003/03/02  15:16:38
71356         Log: Subject: [PATCH] for perl5db.pl against missing args destroying pre-post command setups
71357              From: Richard.Foley@ubsw.com
71358              Date: Wed, 19 Feb 2003 13:24:38 +0100
71359              Message-ID: <B374141B0A424D4F9CF143CC51B3ADD98579DB@NZURC900PEX1.ubsgs.ubsgroup.net>
71360      Branch: perl
71361            ! lib/perl5db.pl
71362 ____________________________________________________________________________
71363 [ 18799] By: jhi                                   on 2003/03/02  13:34:13
71364         Log: The -CI cannot be easily tested under UTF-8 locale with
71365              the t/test.pl (the 'stdin' data gets doubly UTF-8-ied).
71366              Also other small tweaks in the -C neighbourhood.
71367      Branch: perl
71368            ! perl.c perl.h t/run/switchC.t util.c
71369 ____________________________________________________________________________
71370 [ 18798] By: jhi                                   on 2003/03/02  09:12:06
71371         Log: Go with "right = -right" for greater portability, some platforms
71372              might require llabs() to get abs() of long longs.
71373      Branch: perl
71374            ! pp.c
71375 ____________________________________________________________________________
71376 [ 18797] By: jhi                                   on 2003/03/02  08:07:32
71377         Log: Patch for [perl #9402], known also as "glibc _moddi3 bug
71378              with negative quads", or also as RedHat bug #65612.
71379      Branch: perl
71380            ! pp.c
71381 ____________________________________________________________________________
71382 [ 18796] By: jhi                                   on 2003/03/02  07:34:54
71383         Log: Forgotten from change #18795.
71384      Branch: perl
71385            ! global.sym
71386 ____________________________________________________________________________
71387 [ 18795] By: jhi                                   on 2003/03/02  07:27:44
71388         Log: Subject: Re: [PATCH embed.fnc] Re: [PATCH] Get MSWin32 back compiling
71389              From: Abe Timmerman <abe@ztreet.demon.nl>
71390              Date: Sun, 2 Mar 2003 02:03:16 +0100
71391              Message-Id: <200303020203.16708.abe@ztreet.demon.nl>
71392      Branch: perl
71393            ! embed.fnc embed.h makedef.pl
71394 ____________________________________________________________________________
71395 [ 18794] By: jhi                                   on 2003/03/02  07:21:36
71396         Log: Further Unicode formats patching from Inaba Hiroto.
71397      Branch: perl
71398            + t/uni/write.t
71399            ! MANIFEST pp_ctl.c
71400 ____________________________________________________________________________
71401 [ 18793] By: jhi                                   on 2003/03/01  08:18:35
71402         Log: Integrate change #18788 from maint.
71403      Branch: perl
71404           !> perl.h
71405 ____________________________________________________________________________
71406 [ 18792] By: jhi                                   on 2003/03/01  08:14:43
71407         Log: Subject: [PATCH] Get MSWin32 back compiling
71408              From: Abe Timmerman <abe@ztreet.demon.nl>
71409              Date: Sat, 1 Mar 2003 04:31:19 +0100
71410              Message-Id: <200303010431.20205.abe@ztreet.demon.nl>
71411      Branch: perl
71412            ! embed.fnc embed.h global.sym makedef.pl
71413 ____________________________________________________________________________
71414 [ 18785] By: jhi                                   on 2003/02/26  20:38:55
71415         Log: Subject: Re: [PATCH] Re: format, PerlIO and utf8
71416              From: Inaba Hiroto <inaba@st.rim.or.jp>
71417              Date: Mon, 10 Feb 2003 00:04:51 +0900
71418              Message-ID: <3E466E12.E5349D84@st.rim.or.jp>
71419      Branch: perl
71420            ! pp_ctl.c toke.c
71421 ____________________________________________________________________________
71422 [ 18784] By: jhi                                   on 2003/02/26  19:45:53
71423         Log: An already fixed bug from perl-unicode.
71424      Branch: perl
71425            ! t/op/pat.t
71426 ____________________________________________________________________________
71427 [ 18782] By: hv                                    on 2003/02/26  01:36:49
71428         Log: Subject: Re: [perl #20683] [fix] Better Patch
71429              From: Enache Adrian <enache@rdslink.ro>
71430              Date: Sun, 23 Feb 2003 20:16:39 +0200
71431              Message-ID: <20030223181639.GA18713@ratsnest.hole>
71432      Branch: perl
71433            ! embed.fnc embed.h ext/Devel/Peek/Peek.t mg.c perl.h proto.h
71434            ! regexec.c sv.c t/op/pat.t
71435 ____________________________________________________________________________
71436 [ 18781] By: hv                                    on 2003/02/26  01:11:14
71437         Log: regen headers
71438      Branch: perl
71439            ! perlapi.h pod/perlapi.pod
71440 ____________________________________________________________________________
71441 [ 18780] By: hv                                    on 2003/02/26  00:25:32
71442         Log: Two typos found by Philip Newton <pnewton@gmx.de>
71443      Branch: perl
71444            ! configpm ext/DB_File/DB_File.pm
71445 ____________________________________________________________________________
71446 [ 18779] By: jhi                                   on 2003/02/25  18:20:01
71447         Log: Add tests for the -C switch.  Depending on the
71448              CLIs some $^O dance may be needed.
71449      Branch: perl
71450            + t/run/switchC.t
71451            ! MANIFEST
71452 ____________________________________________________________________________
71453 [ 18778] By: hv                                    on 2003/02/25  15:24:17
71454         Log: Add missing file from change #18774.
71455      Branch: perl
71456            + t/op/localref.t
71457 ____________________________________________________________________________
71458 [ 18777] By: hv                                    on 2003/02/25  14:07:59
71459         Log: More variables for change #18776.
71460      Branch: perl
71461            ! op.c
71462 ____________________________________________________________________________
71463 [ 18776] By: hv                                    on 2003/02/25  14:04:03
71464         Log: Subject: [perl #20682] [fix] @- array not visible in s///
71465              From: Enache Adrian <enache@rdslink.ro>
71466              Date: Fri, 21 Feb 2003 17:50:14 +0200
71467              Message-ID: <20030221155014.GB793@ratsnest.hole>
71468      Branch: perl
71469            ! op.c t/op/subst.t
71470 ____________________________________________________________________________
71471 [ 18775] By: hv                                    on 2003/02/25  13:53:11
71472         Log: Subject: [perl #20684] [fix] s/// with (??{..}) inside returns wrong count
71473              From: Enache Adrian <enache@rdslink.ro>
71474              Date: Fri, 21 Feb 2003 17:49:41 +0200
71475              Message-ID: <20030221154941.GA793@ratsnest.hole>
71476      Branch: perl
71477            ! pp_ctl.c t/op/subst.t
71478 ____________________________________________________________________________
71479 [ 18774] By: hv                                    on 2003/02/25  13:21:19
71480         Log: Subject: Re: [perl #21321] local ${"FOO"} does not work
71481              From: Rafael Garcia-Suarez <rgarciasuarez@free.fr>
71482              Date: Sun, 23 Feb 2003 00:03:27 +0100
71483              Message-Id: <20030223000327.6f0c11fa.rgarciasuarez@free.fr>
71484      Branch: perl
71485            ! MANIFEST op.c perl.h pp.c pp_hot.c t/op/local.t
71486 ____________________________________________________________________________
71487 [ 18773] By: hv                                    on 2003/02/25  12:45:01
71488         Log: Subject: [Encode] 1.88 Released
71489              From: Dan Kogai <dankogai@dan.co.jp>
71490              Date: Thu, 20 Feb 2003 23:49:55 +0900
71491              Message-Id: <935F75D0-44E2-11D7-B310-000393AE4244@dan.co.jp>
71492      Branch: perl
71493            ! ext/Encode/AUTHORS ext/Encode/Changes ext/Encode/Encode.pm
71494            ! ext/Encode/Encode.xs ext/Encode/Unicode/Unicode.xs
71495            ! ext/Encode/lib/Encode/CJKConstants.pm
71496            ! ext/Encode/lib/Encode/Encoder.pm ext/Encode/t/enc_eucjp.t
71497            ! ext/Encode/t/enc_utf8.t ext/Encode/ucm/viscii.ucm
71498 ____________________________________________________________________________
71499 [ 18772] By: merijn                                on 2003/02/25  12:12:14
71500         Log: Subject: [perl@18752] warnings from CGI tests under cygwin
71501              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
71502              Date: Wed, 19 Feb 2003 13:37:39 -0800
71503              Message-ID: <jk/U+gzkg2DE092yn@efn.org>
71504      Branch: perl
71505            ! lib/CGI.pm
71506 ____________________________________________________________________________
71507 [ 18771] By: jhi                                   on 2003/02/25  07:46:53
71508         Log: Cleanup #18770 as suggested by Rafael.
71509      Branch: perl
71510            ! mg.c perl.h
71511 ____________________________________________________________________________
71512 [ 18770] By: jhi                                   on 2003/02/25  06:01:09
71513         Log: A new try at #18765 (for [perl #20920]).
71514      Branch: perl
71515            ! mg.c
71516 ____________________________________________________________________________
71517 [ 18769] By: jhi                                   on 2003/02/25  05:33:10
71518         Log: Retract change #18765: makes HiRes.t hang after subtest #11.
71519      Branch: perl
71520            ! mg.c
71521 ____________________________________________________________________________
71522 [ 18768] By: chip                                  on 2003/02/24  21:42:57
71523         Log: Include p4d2p in Porting again, because p4genpatch doesn't work
71524              until a change has been submitted.
71525      Branch: perl
71526            + Porting/p4d2p
71527            ! MANIFEST
71528 ____________________________________________________________________________
71529 [ 18767] By: chip                                  on 2003/02/24  21:35:56
71530         Log: In Porting scripts, use standard perl path of "/usr/bin/perl".
71531      Branch: perl
71532            ! Porting/check83.pl Porting/findvars Porting/fixCORE
71533            ! Porting/fixvars Porting/genlog Porting/makerel Porting/patchls
71534 ____________________________________________________________________________
71535 [ 18766] By: jhi                                   on 2003/02/24  20:04:36
71536         Log: PERL_SIGNALS=unsafe enables the old unsafe/immediate signals.
71537      Branch: perl
71538            ! embedvar.h intrpvar.h mg.c perl.c perl.h pod/perldiag.pod
71539            ! pod/perlipc.pod pod/perlrun.pod pp_sys.c util.c
71540 ____________________________________________________________________________
71541 [ 18765] By: jhi                                   on 2003/02/24  19:56:23
71542         Log: Subject: Re: [perl #20920] Segmentation fault ("Safe Signal" queue problem?)
71543              From: Slaven Rezic <slaven@rezic.de>
71544              Date: 14 Feb 2003 09:11:15 +0100
71545              Message-ID: <878ywji8nw.fsf@vran.herceg.de>
71546
71547              (with slight tweaks)
71548      Branch: perl
71549            ! mg.c
71550 ____________________________________________________________________________
71551 [ 18764] By: jhi                                   on 2003/02/24  18:44:41
71552         Log: Patching magic from Inaba-san's keyboard: fix for [perl #8769]:
71553              "scalar upgraded to UTF-8 as a side effect of quote-interpolation
71554              when 'use encoding' is engaged"-- wasn't actually encoding's fault.
71555      Branch: perl
71556            ! pp_ctl.c pp_hot.c sv.c sv.h t/op/concat.t
71557 ____________________________________________________________________________
71558 [ 18763] By: chip                                  on 2003/02/24  14:54:36
71559         Log: Use PL_{argv,stdin,stdout}gv to avoid unnecessary gv_fetch calls.
71560      Branch: perl
71561            ! op.c win32/perlhost.h
71562 ____________________________________________________________________________
71563 [ 18762] By: hv                                    on 2003/02/24  00:18:42
71564         Log: Remove no-longer-true line from perlop
71565      Branch: perl
71566            ! pod/perlop.pod
71567 ____________________________________________________________________________
71568 [ 18761] By: jhi                                   on 2003/02/23  12:07:53
71569         Log: Chip noticed that the intended optionality of the 'IV' was
71570              forgotten in the change #18758.
71571      Branch: perl
71572            ! ext/Devel/Peek/Peek.t
71573 ____________________________________________________________________________
71574 [ 18760] By: jhi                                   on 2003/02/22  19:17:04
71575         Log: API doc tweaks.
71576      Branch: perl
71577            ! utf8.c
71578 ____________________________________________________________________________
71579 [ 18759] By: sky                                   on 2003/02/21  09:08:30
71580         Log: Change regex to be a bit more friendly against various
71581              outputs from ps -f, regex suggest by rgs
71582      Branch: perl
71583            ! ext/threads/t/join.t
71584 ____________________________________________________________________________
71585 [ 18758] By: jhi                                   on 2003/02/20  17:28:44
71586         Log: Subject: [PATCH: perl@18639] add some IV stuff to ext/Devel/Peek/Peek.t test 21
71587              From: PPrymmer@factset.com
71588              Date: Thu, 20 Feb 2003 13:28:09 -0500
71589              Message-ID: <OF2DC297F4.A63F24F9-ON85256CD3.006513E4@factset.com>
71590      Branch: perl
71591            ! ext/Devel/Peek/Peek.t
71592 ____________________________________________________________________________
71593 [ 18757] By: jhi                                   on 2003/02/20  17:27:17
71594         Log: Subject: [PATCH: perl@186389] add probe for yet another dangerous logical name: COMP
71595              From: PPrymmer@factset.com
71596              Date: Wed, 19 Feb 2003 15:04:40 -0500
71597              Message-ID: <OFC0A627AD.02B9D968-ON85256CD2.006DDC21@factset.com>
71598      Branch: perl
71599            ! README.vms configure.com
71600 ____________________________________________________________________________
71601 [ 18756] By: jhi                                   on 2003/02/20  06:16:05
71602         Log: Doc tweakage on -C.
71603      Branch: perl
71604            ! pod/perlrun.pod
71605 ____________________________________________________________________________
71606 [ 18755] By: rgs                                   on 2003/02/19  21:31:43
71607         Log: Subject: [PATCH] 5.8.0: typo in pod/perlcompile.pod
71608              From: Brendan O'Dea <bod@debian.org>
71609              Date: Sun, 16 Feb 2003 21:09:23 +1100
71610              Message-ID: <20030216100923.GA29761@londo.c47.org>
71611      Branch: perl
71612            ! pod/perlcompile.pod
71613 ____________________________________________________________________________
71614 [ 18754] By: rgs                                   on 2003/02/19  21:14:37
71615         Log: Document clearly that "_" is always in package "main".
71616      Branch: perl
71617            ! pod/perlvar.pod
71618 ____________________________________________________________________________
71619 [ 18753] By: rgs                                   on 2003/02/19  20:55:09
71620         Log: Subject: Re: [perl #20716] scope error with brackets
71621              From: Enache Adrian <enache@rdslink.ro>
71622              Date: Thu, 13 Feb 2003 04:52:21 +0200
71623              Message-ID: <20030213025221.GA1215@ratsnest.hole>
71624              (better version of change #18687)
71625      Branch: perl
71626            ! t/comp/parser.t toke.c
71627 ____________________________________________________________________________
71628 [ 18752] By: jhi                                   on 2003/02/19  05:10:26
71629         Log: 'A' is not 65 everywhere.
71630      Branch: perl
71631            ! t/op/pack.t
71632 ____________________________________________________________________________
71633 [ 18751] By: chip                                  on 2003/02/19  03:54:45
71634         Log: Support one-parameter unpack(), which unpacks $_.
71635      Branch: perl
71636            ! opcode.h opcode.pl pod/perlfunc.pod pp_pack.c t/op/pack.t
71637 ____________________________________________________________________________
71638 [ 18750] By: hv                                    on 2003/02/19  00:53:03
71639         Log: more complex assertions activation:
71640              Subject: Re: Did the assertion patch/feature submission get overlooked?
71641              From: =?ISO-8859-1?Q?Salvador_Fandi=F1o?= <sfandino@yahoo.com>
71642              Date: Tue, 18 Feb 2003 19:24:13 +0000
71643              Message-ID: <3E52885D.5060903@yahoo.com>
71644      Branch: perl
71645            ! lib/assertions.pm lib/assertions/activate.pm
71646            ! t/comp/assertions.t
71647 ____________________________________________________________________________
71648 [ 18749] By: hv                                    on 2003/02/19  00:19:21
71649         Log: Subject: [PATCH] Make adding notes to patchlevel.h easier
71650              From: andreas.koenig@anima.de (Andreas J. Koenig)
71651              Date: Tue, 18 Feb 2003 11:48:40 +0100
71652              Message-ID: <m3n0kt27av.fsf@k242.linux.bogus>
71653      Branch: perl
71654            ! patchlevel.h
71655 ____________________________________________________________________________
71656 [ 18748] By: hv                                    on 2003/02/19  00:00:41
71657         Log: Subject: [PATCH IO/Socket/INET.pm] Blocking option ignored
71658              From: Dave Mitchell <davem@fdgroup.com>
71659              Date: Tue, 18 Feb 2003 21:45:45 +0000
71660              Message-ID: <20030218214545.C18547@fdgroup.com>
71661
71662              and tests for the same:
71663              From: Dave Mitchell <davem@fdgroup.com>
71664              Date: Wed, 19 Feb 2003 00:42:01 +0000
71665              Message-ID: <20030219004201.F18547@fdgroup.com>
71666      Branch: perl
71667            ! ext/IO/lib/IO/Socket/INET.pm ext/IO/lib/IO/t/io_sock.t
71668 ____________________________________________________________________________
71669 [ 18747] By: hv                                    on 2003/02/18  23:47:06
71670         Log: Shouldn't have added as t/run/switchA.t in #18739 - it'll cause
71671              problems on case-insensitive file systems. Rename it back to
71672              t/run/switch_A.t
71673      Branch: perl
71674           +> t/run/switch_A.t
71675            - t/run/switchA.t
71676            ! MANIFEST
71677 ____________________________________________________________________________
71678 [ 18746] By: sky                                   on 2003/02/18  21:31:37
71679         Log: Subject: Re: -Os for Darwin why?
71680              From: schwern@pobox.com
71681              Date: tis feb 18, 2003  20:37:39 Europe/Stockholm
71682              Message-Id: <20030218113739.D25848@ttul.org>
71683      Branch: perl
71684            ! hints/darwin.sh
71685 ____________________________________________________________________________
71686 [ 18741] By: jhi                                   on 2003/02/18  14:01:34
71687         Log: Format nit.
71688      Branch: perl
71689            ! util.c
71690 ____________________________________________________________________________
71691 [ 18740] By: sky                                   on 2003/02/18  06:33:57
71692         Log: Re: -Os for Darwin why?
71693              From: schwern@pobox.com
71694              Date: tis feb 18, 2003  04:14:03 Europe/Stockholm
71695              Message-Id: <20030217191403.A17553@ttul.org>
71696      Branch: perl
71697            ! hints/darwin.sh
71698 ____________________________________________________________________________
71699 [ 18739] By: hv                                    on 2003/02/18  01:04:01
71700         Log: Subject: Re: Did the assertion patch/feature submission get overlooked?
71701              From: =?ISO-8859-1?Q?Salvador_Fandi=F1o?= <sfandino@yahoo.com>
71702              Date: Mon, 17 Feb 2003 23:38:05 +0000
71703              Message-ID: <3E51725D.5060303@yahoo.com>
71704      Branch: perl
71705            + t/comp/assertions.t t/run/switchA.t
71706            ! MANIFEST
71707 ____________________________________________________________________________
71708 [ 18738] By: hv                                    on 2003/02/18  00:51:24
71709         Log: Subject: [PATCH] Re: [PATCH] Re: [PATCH] Copy on write for $& and $1...
71710              From: Nicholas Clark <nick@ccl4.org>
71711              Date: Mon, 17 Feb 2003 21:07:03 +0000
71712              Message-ID: <20030217210330.A8611@plum.flirble.org>
71713      Branch: perl
71714            ! sv.c
71715 ____________________________________________________________________________
71716 [ 18737] By: hv                                    on 2003/02/18  00:47:00
71717         Log: Subject: [PATCH] Re: [perl #21261] B::Terse not outputting correct constants or variable names
71718              From: Stephen McCamant <smcc@mit.edu>
71719              Date: Mon, 17 Feb 2003 19:34:36 -0500
71720              Date: Mon, 17 Feb 2003 19:34:36 -0500
71721              Message-ID: <15953.32668.277063.470885@syllepsis.MIT.EDU>
71722      Branch: perl
71723            ! ext/B/B.xs ext/B/B/Bblock.pm ext/B/B/Concise.pm
71724            ! ext/B/B/Terse.pm ext/B/t/terse.t
71725 ____________________________________________________________________________
71726 [ 18736] By: hv                                    on 2003/02/17  09:33:47
71727         Log: Subject: [PATCH] Re: [PATCH] Copy on write for $& and $1...
71728              From: Nicholas Clark <nick@unfortu.net>
71729              Date: Sun, 16 Feb 2003 23:09:50 +0000
71730              Message-ID: <20030216230950.GB276@Bagpuss.unfortu.net>
71731      Branch: perl
71732            ! sv.c
71733 ____________________________________________________________________________
71734 [ 18735] By: hv                                    on 2003/02/17  09:13:02
71735         Log: Use the escape E<ntilde> in source files rather than the actual char.
71736      Branch: perl
71737            ! lib/assertions.pm lib/assertions/activate.pm
71738 ____________________________________________________________________________
71739 [ 18734] By: hv                                    on 2003/02/17  09:06:44
71740         Log: Suppress empty #ifdef blocks in embed.pl
71741      Branch: perl
71742            ! embed.h embed.pl
71743 ____________________________________________________________________________
71744 [ 18733] By: hv                                    on 2003/02/17  08:51:53
71745         Log: fix typo in sv.c and regenerate perlapi.pod
71746      Branch: perl
71747            ! pod/perlapi.pod sv.c
71748 ____________________________________________________________________________
71749 [ 18732] By: jhi                                   on 2003/02/17  06:40:09
71750         Log: Philip Newton has eagle eyes :-)
71751      Branch: perl
71752            ! pod/perlrun.pod
71753 ____________________________________________________________________________
71754 [ 18731] By: jhi                                   on 2003/02/17  05:31:18
71755         Log: Doc tweaks (and one code tweak) based on Philip Newton's comments.
71756      Branch: perl
71757            ! locale.c pod/perlrun.pod pod/perlunicode.pod
71758            ! pod/perluniintro.pod pod/perlvar.pod util.c
71759 ____________________________________________________________________________
71760 [ 18730] By: jhi                                   on 2003/02/17  04:44:53
71761         Log: Make also the -CAL conditional on locale.
71762      Branch: perl
71763            ! perl.c pod/perlrun.pod
71764 ____________________________________________________________________________
71765 [ 18729] By: jhi                                   on 2003/02/16  18:33:05
71766         Log: NO_SHORT_NAMES is better than HIDE_SHORT_NAMES.
71767      Branch: perl
71768            ! embed.h embed.pl pod/perlembed.pod
71769 ____________________________________________________________________________
71770 [ 18728] By: jhi                                   on 2003/02/16  18:20:04
71771         Log: According to Sarathy it's better have the Ministry
71772              of Information to remove all memory of NO_EMBED.
71773              What NO_EMBED?
71774      Branch: perl
71775            ! embed.h embed.pl
71776 ____________________________________________________________________________
71777 [ 18727] By: hv                                    on 2003/02/16  13:55:10
71778         Log: add support for assertions. Updated form of:
71779              Subject: Re: Did the assertion patch/feature submission get overlooked?
71780              From: Salvador =?ISO-8859-1?Q?Fandi=F1o?= <sfandino@yahoo.com>
71781              Date: Sat, 30 Nov 2002 17:24:09 +0000
71782              Message-ID: <3DE8F439.50402@yahoo.com>
71783      Branch: perl
71784            + lib/assertions.pm lib/assertions/activate.pm
71785            ! MANIFEST cv.h dump.c embed.pl embedvar.h ext/B/B/Deparse.pm
71786            ! ext/B/defsubs_h.PL intrpvar.h lib/perl5db.pl op.c perl.c
71787            ! perl.h perlapi.h pp_hot.c sv.c toke.c xsutils.c
71788 ____________________________________________________________________________
71789 [ 18726] By: hv                                    on 2003/02/16  13:10:32
71790         Log: COW regexps:
71791              Subject: [PATCH] Copy on write for $& and $1...
71792              From: Nicholas Clark <nick@unfortu.net>
71793              Date: Sun, 9 Feb 2003 23:00:09 +0000
71794              Message-ID: <20030209230008.GF299@Bagpuss.unfortu.net>
71795      Branch: perl
71796            ! embed.fnc embed.h global.sym pod/perlapi.pod pp_ctl.c pp_hot.c
71797            ! proto.h regcomp.c regexec.c regexp.h sv.c sv.h thrdvar.h
71798 ____________________________________________________________________________
71799 [ 18725] By: hv                                    on 2003/02/16  13:08:52
71800         Log: inline SvREFCNT_dec:
71801              Subject: [PATCH] Copy on write for $& and $1...
71802              From: Nicholas Clark <nick@unfortu.net>
71803              Date: Sun, 9 Feb 2003 23:00:09 +0000
71804              Message-ID: <20030209230008.GF299@Bagpuss.unfortu.net>
71805      Branch: perl
71806            ! embed.fnc embed.h proto.h sv.c sv.h
71807 ____________________________________________________________________________
71808 [ 18723] By: hv                                    on 2003/02/16  11:12:58
71809         Log: Subject: Re: [perl #20798] foo(eval {}) crashes Perl 5.8
71810              From: Enache Adrian <enache@rdslink.ro>
71811              Date: Sun, 16 Feb 2003 00:05:10 +0200
71812              Message-ID: <20030215220510.GB893@ratsnest.hole>
71813      Branch: perl
71814            ! op.c
71815 ____________________________________________________________________________
71816 [ 18722] By: hv                                    on 2003/02/16  11:08:06
71817         Log: outdent else-if chain in scope()
71818      Branch: perl
71819            ! op.c
71820 ____________________________________________________________________________
71821 [ 18721] By: hv                                    on 2003/02/16  11:00:47
71822         Log: Subject: [PATCH] arcane tainting bug in vms.c
71823              From: "Craig A. Berry" <craigberry@mac.com>
71824              Date: Sat, 15 Feb 2003 12:29:03 -0600
71825              Message-ID: <3E4E86EF.8090609@mac.com>
71826      Branch: perl
71827            ! vms/vms.c
71828 ____________________________________________________________________________
71829 [ 18720] By: hv                                    on 2003/02/16  10:54:58
71830         Log: restrict PERL_PRESERVE_IVUV to things that should really give an
71831              integer, but extend to runtime. Based on:
71832              Subject: Re: [perl #20827] Unexpected scientific notation.
71833              From: hv@crypt.org
71834              Date: Wed, 12 Feb 2003 03:12:43 +0000
71835              Message-Id: <200302120312.h1C3ChS02613@crypt.compulink.co.uk>
71836      Branch: perl
71837            ! op.c pp.c
71838 ____________________________________________________________________________
71839 [ 18718] By: jhi                                   on 2003/02/16  09:47:02
71840         Log: As suggested by Sarathy, add -DPERL_HIDE_SHORT_NAMES option
71841              which will disable the short forms of the Perl_ API, good for
71842              embedding stuff.  (Kind of like the old NO_EMBED, but better.)
71843      Branch: perl
71844            ! embed.h embed.pl pod/perlembed.pod
71845 ____________________________________________________________________________
71846 [ 18717] By: jhi                                   on 2003/02/16  09:44:57
71847         Log: Clarify the -C syntax a bit.
71848      Branch: perl
71849            ! pod/perlrun.pod
71850 ____________________________________________________________________________
71851 [ 18716] By: jhi                                   on 2003/02/16  08:29:54
71852         Log: Forgotten from #18715.
71853      Branch: perl
71854            ! embed.h proto.h
71855 ____________________________________________________________________________
71856 [ 18715] By: jhi                                   on 2003/02/15  21:19:37
71857         Log: The new(er) way of controlling Unicode I/O (and other) features;
71858              -C (or PERL_UNICODE).  See perlrun/-C for more details.
71859      Branch: perl
71860            ! embed.fnc embedvar.h gv.c intrpvar.h locale.c mg.c perl.c
71861            ! perl.h perlapi.h pod/perldiag.pod pod/perlrun.pod
71862            ! pod/perlunicode.pod pod/perluniintro.pod pod/perlvar.pod
71863            ! util.c
71864 ____________________________________________________________________________
71865 [ 18714] By: jhi                                   on 2003/02/15  12:31:25
71866         Log: Also Storable really wants the PATCHLEVEL, not PERL_VERSION.
71867      Branch: perl
71868            ! ext/Storable/Storable.xs
71869 ____________________________________________________________________________
71870 [ 18712] By: jhi                                   on 2003/02/15  08:39:38
71871         Log: Bring the CPAN Digest::MD5 (2.23) and the core Digest::MD5
71872              even closer to each other.  The dec_osf.pl is irrelevant
71873              for the current core but adding it makes for one less exception
71874              when integrating.
71875      Branch: perl
71876            + ext/Digest/MD5/hints/dec_osf.pl
71877            ! MANIFEST ext/Digest/MD5/MD5.pm ext/Digest/MD5/Makefile.PL
71878            ! ext/Digest/MD5/t/files.t
71879 ____________________________________________________________________________
71880 [ 18711] By: jhi                                   on 2003/02/15  08:32:04
71881         Log: Update MD5 Changes; update checksums.
71882      Branch: perl
71883            ! ext/Digest/MD5/Changes ext/Digest/MD5/t/files.t
71884 ____________________________________________________________________________
71885 [ 18710] By: jhi                                   on 2003/02/15  08:19:20
71886         Log: Update the MD5 checksums.
71887      Branch: perl
71888            ! ext/Digest/MD5/t/files.t
71889 ____________________________________________________________________________
71890 [ 18709] By: jhi                                   on 2003/02/15  08:16:26
71891         Log: Make the patchlevel.h inclusion attempt pre-5.6.0-safe(r)
71892              (problem noticed by Graham with List::Util).
71893      Branch: perl
71894            ! ext/Data/Dumper/Dumper.xs ext/Digest/MD5/MD5.xs
71895            ! ext/MIME/Base64/Base64.xs ext/Storable/Storable.xs
71896 ____________________________________________________________________________
71897 [ 18708] By: jhi                                   on 2003/02/15  07:31:17
71898         Log: Subject: Re: [perl #20912] UTF8 related glitch + fix
71899              From: Enache Adrian <enache@rdslink.ro>
71900              Date: Sat, 15 Feb 2003 00:37:40 +0200
71901              Message-ID: <20030214223740.GA13575@ratsnest.hole>
71902      Branch: perl
71903            ! pp.c t/op/split.t
71904 ____________________________________________________________________________
71905 [ 18707] By: hv                                    on 2003/02/15  06:38:15
71906         Log: Subject: [doc patch] ext/threads/shared/shared.pm
71907              From: Stas Bekman <stas@stason.org>
71908              Date: Fri, 14 Feb 2003 11:12:39 +1100
71909              Message-ID: <3E4C3477.7030306@stason.org>
71910      Branch: perl
71911            ! ext/threads/shared/shared.pm
71912 ____________________________________________________________________________
71913 [ 18706] By: hv                                    on 2003/02/15  06:32:35
71914         Log: Subject: Re: perlvar phrasing clarification for $^S
71915              From: "Iain 'Spoon' Truskett" <perl@dellah.anu.edu.au>
71916              Date: Fri, 14 Feb 2003 10:12:00 +1100
71917              Message-ID: <20030213231200.GE16300@ouroboros.anu.edu.au>
71918      Branch: perl
71919            ! pod/perlvar.pod
71920 ____________________________________________________________________________
71921 [ 18705] By: hv                                    on 2003/02/15  06:27:07
71922         Log: Subject: Re: [perl #20933] \substr reuses lvalues (sometimes)
71923              From: Dave Mitchell <davem@fdgroup.com>
71924              Date: Fri, 14 Feb 2003 22:48:27 +0000
71925              Message-ID: <20030214224827.B6783@fdgroup.com>
71926
71927              with tests:
71928              From: Slaven Rezic <slaven@rezic.de>
71929              Date: 14 Feb 2003 20:23:20 +0100
71930              Message-ID: <87bs1e4qfr.fsf@vran.herceg.de>
71931      Branch: perl
71932            ! pp.c t/op/substr.t t/op/vec.t
71933 ____________________________________________________________________________
71934 [ 18704] By: hv                                    on 2003/02/15  06:17:06
71935         Log: Subject: Re: overriding builtins quirk
71936              From: Jerrad Pierce <belg4mit@MIT.EDU>
71937              Date: Fri, 14 Feb 2003 09:28:13 -0500
71938              Message-Id: <200302141428.JAA25752@cathedral-seven.mit.edu>
71939      Branch: perl
71940            ! pod/perlsub.pod
71941 ____________________________________________________________________________
71942 [ 18703] By: rgs                                   on 2003/02/14  22:23:56
71943         Log: Subject: Re: trying to fix #20154, #20357
71944              From: Enache Adrian <enache@rdslink.ro>
71945              Date: Sat, 8 Feb 2003 21:05:14 +0200
71946              Message-ID: <20030208190514.GA866@ratsnest.hole>
71947              (fixes #19061 as well)
71948      Branch: perl
71949            ! pp_ctl.c t/op/goto.t
71950 ____________________________________________________________________________
71951 [ 18702] By: gbarr                                 on 2003/02/14  19:26:23
71952         Log: Update to Scalar-List-Utils 1.11
71953      Branch: perl
71954            + ext/List/Util/t/proto.t
71955            ! MANIFEST ext/List/Util/ChangeLog ext/List/Util/Util.xs
71956            ! ext/List/Util/lib/List/Util.pm
71957            ! ext/List/Util/lib/Scalar/Util.pm ext/List/Util/t/isvstring.t
71958 ____________________________________________________________________________
71959 [ 18699] By: jhi                                   on 2003/02/13  09:43:33
71960         Log: gcc 3.2.1 does not have -Wall faith that tmp
71961              will not be used uninitialized.
71962      Branch: perl
71963            ! toke.c
71964 ____________________________________________________________________________
71965 [ 18698] By: hv                                    on 2003/02/12  03:01:32
71966         Log: Subject: perlbug (was: Re: [perl #20606] [no subject])
71967              From: Slaven Rezic <slaven@rezic.de>
71968              Date: 30 Jan 2003 19:03:41 +0100
71969              Message-ID: <87fzra7bwi.fsf@vran.herceg.de>
71970      Branch: perl
71971            ! utils/perlbug.PL
71972 ____________________________________________________________________________
71973 [ 18697] By: hv                                    on 2003/02/12  02:20:39
71974         Log: Subject: [PATCH 5.9.0] to silence compiler warning
71975              From: Robin Barker <Robin.Barker@npl.co.uk>
71976              Date: Tue, 28 Jan 2003 13:27:17 -0000
71977              Message-ID: <533D273D4014D411AB1D00062938C4D9040462CC@hotel.npl.co.uk>
71978      Branch: perl
71979            ! ext/PerlIO/scalar/scalar.xs ext/Storable/Storable.xs
71980            ! universal.c util.c
71981 ____________________________________________________________________________
71982 [ 18696] By: rgs                                   on 2003/02/11  20:13:21
71983         Log: Subject: [perl #20654] %*v02x considered invalid in printf
71984              From: Robin Barker (via RT) <perlbug-followup@perl.org>
71985              Date: 10 Feb 2003 16:43:23 -0000
71986              Message-Id: <rt-20654-50711.19.9711009821137@bugs6.perl.org>
71987      Branch: perl
71988            ! sv.c t/op/sprintf.t
71989 ____________________________________________________________________________
71990 [ 18695] By: rgs                                   on 2003/02/11  20:00:23
71991         Log: Subject: mini-[patch] perlrun "^$W" typo
71992              From: Iain Truskett <spoon@dellah.org>
71993              Date: Tue, 11 Feb 2003 08:38:52 +1100
71994              Message-ID: <20030210213851.GC31721@ouroboros.anu.edu.au>
71995      Branch: perl
71996            ! pod/perlrun.pod
71997 ____________________________________________________________________________
71998 [ 18694] By: rgs                                   on 2003/02/11  19:44:00
71999         Log: Subject: [PATCH] More B::Concise fixes
72000              From: Stephen McCamant <smcc@mit.edu>
72001              Date: Sun, 9 Feb 2003 17:28:38 -0500
72002              Message-ID: <15942.54806.381678.173391@syllepsis.MIT.EDU>
72003      Branch: perl
72004            ! ext/B/B/Concise.pm
72005 ____________________________________________________________________________
72006 [ 18693] By: merijn                                on 2003/02/11  08:14:29
72007         Log: More code cleanup.
72008
72009              Subject: Re: New SV Flag
72010              Date: Fri, 07 Feb 2003 09:57:43 +0100
72011              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
72012              Message-Id: <20030207095258.6E05.H.M.BRAND@hccnet.nl>
72013      Branch: perl
72014            ! sv.c sv.h
72015 ____________________________________________________________________________
72016 [ 18692] By: jhi                                   on 2003/02/11  07:53:26
72017         Log: Dueling patches.
72018      Branch: perl
72019            - lib/CPAN/ChangeLog
72020            ! MANIFEST
72021 ____________________________________________________________________________
72022 [ 18691] By: hv                                    on 2003/02/11  00:27:56
72023         Log: Subject: PATCH: sv_rvweaken() deficiency (against 5.8.0)
72024              From: Mark Mielke <mark@mark.mielke.cc>
72025              Date: Mon, 20 Jan 2003 19:56:13 -0500
72026              Message-ID: <20030121005613.GA31739@mark.mielke.cc>
72027      Branch: perl
72028            ! sv.c
72029 ____________________________________________________________________________
72030 [ 18690] By: hv                                    on 2003/02/10  22:08:05
72031         Log: fix comment in change #18689
72032      Branch: perl
72033            ! sv.c
72034 ____________________________________________________________________________
72035 [ 18689] By: hv                                    on 2003/02/10  21:59:34
72036         Log: Fix for [perl #20339]: "%lf" rejected as invalid by recent sprintf.
72037              Now allows but ignores the 'l' modifier on floating point formats
72038              and adds a couple of tests.
72039      Branch: perl
72040            ! sv.c t/op/sprintf.t
72041 ____________________________________________________________________________
72042 [ 18688] By: sky                                   on 2003/02/10  19:54:13
72043         Log: Subject: Re: [perl #20777] [PATCH] goto &subroutine leaks memory
72044              From: Enache Adrian <enache@rdslink.ro>
72045              Date: sun feb 9, 2003  21:10:25 Europe/Stockholm
72046              Message-Id: <20030209201025.GA1247@ratsnest.hole>
72047      Branch: perl
72048            ! pp_ctl.c
72049 ____________________________________________________________________________
72050 [ 18687] By: sky                                   on 2003/02/10  18:13:29
72051         Log: Subject: Re: [perl #20716] [FIX] scope error with brackets
72052              From: Enache Adrian <enache@rdslink.ro>
72053              Date: mon feb 10, 2003  18:48:58 Europe/Stockholm
72054              Message-id: <20030210174858.GA872@ratsnest.hole>
72055      Branch: perl
72056            ! t/comp/parser.t toke.c
72057 ____________________________________________________________________________
72058 [ 18686] By: sky                                   on 2003/02/10  18:11:35
72059         Log: Compile under threads and MacOSX. For some reason newSVpvf
72060              was not exapnded.
72061      Branch: perl
72062            ! universal.c
72063 ____________________________________________________________________________
72064 [ 18685] By: ams                                   on 2003/02/10  03:44:07
72065         Log: No, we don't really want the utility scripts.
72066      Branch: perl
72067            - ext/MIME/Base64/decode-base64 ext/MIME/Base64/decode-qp
72068            - ext/MIME/Base64/encode-base64 ext/MIME/Base64/encode-qp
72069            ! MANIFEST ext/MIME/Base64/Makefile.PL
72070 ____________________________________________________________________________
72071 [ 18684] By: hv                                    on 2003/02/10  01:43:12
72072         Log: fix for C< use if qw/ 1 open :utf8 / > based on:
72073              Subject: [perl #20536] use if 1, open => ':utf8' fails
72074              From: Autrijus Tang (via RT) <perlbug-followup@perl.org>
72075              Date: 24 Jan 2003 22:39:06 -0000
72076              Message-Id: <rt-20536-49670.13.2464320257255@bugs6.perl.org>
72077      Branch: perl
72078            ! lib/if.pm lib/if.t
72079 ____________________________________________________________________________
72080 [ 18683] By: hv                                    on 2003/02/10  01:15:52
72081         Log: Subject: RE: perldebug.pod suggestion
72082              From: "Jay Hannah" <jhannah@omnihotels.com>
72083              Date: Fri, 24 Jan 2003 11:28:44 -0600
72084              Message-ID: <00b001c2c3ce$0c4716e0$4709a8c0@omarests2>
72085      Branch: perl
72086            ! pod/perldebug.pod
72087 ____________________________________________________________________________
72088 [ 18682] By: hv                                    on 2003/02/10  00:26:50
72089         Log: Subject: [PATCH] version objects final(?) patch
72090              From: John Peacock <jpeacock@rowman.com>
72091              Date: Sun, 05 Jan 2003 21:28:41 -0500
72092              Message-ID: <3E18E9D9.2040908@rowman.com>
72093      Branch: perl
72094            ! lib/version.pm lib/version.t universal.c util.c
72095 ____________________________________________________________________________
72096 [ 18680] By: chip                                  on 2003/02/09  17:39:33
72097         Log: Add CPAN ChangeLog to MANIFEST.
72098      Branch: perl
72099            ! MANIFEST
72100 ____________________________________________________________________________
72101 [ 18678] By: jhi                                   on 2003/02/09  14:37:38
72102         Log: CPAN ChangeLog not needed, says Andreas.
72103      Branch: perl
72104            ! MANIFEST
72105 ____________________________________________________________________________
72106 [ 18677] By: jhi                                   on 2003/02/09  08:42:19
72107         Log: Subject: [perl #20785] glitches with $PerlIO::encoding::fallback
72108              From: "autrijus@ossf.iis.sinica.edu.tw (via RT)" <perlbug-followup@perl.org>
72109              Date: 8 Feb 2003 11:54:11 -0000
72110              Message-Id: <rt-20785-50586.6.45611613038412@bugs6.perl.org>
72111      Branch: perl
72112            ! ext/PerlIO/encoding/encoding.pm
72113 ____________________________________________________________________________
72114 [ 18676] By: jhi                                   on 2003/02/09  08:35:25
72115         Log: Subject: Re: utime undef, undef, "/tmp/test" and warnings
72116              From: Stas Bekman <stas@stason.org>
72117              Date: Sat, 08 Feb 2003 11:12:28 +1100
72118              Message-ID: <3E444B6C.5060407@stason.org>
72119      Branch: perl
72120            ! doio.c
72121 ____________________________________________________________________________
72122 [ 18675] By: jhi                                   on 2003/02/08  19:49:40
72123         Log: Possible cruft removal.
72124      Branch: perl
72125            ! x2p/Makefile.SH
72126 ____________________________________________________________________________
72127 [ 18674] By: jhi                                   on 2003/02/08  18:22:42
72128         Log: Signedness nits.
72129      Branch: perl
72130            ! toke.c
72131 ____________________________________________________________________________
72132 [ 18672] By: jhi                                   on 2003/02/08  08:45:35
72133         Log: Upgrade to CPAN 1.64, from Andreas Koenig.
72134      Branch: perl
72135            + lib/CPAN/ChangeLog lib/CPAN/README utils/cpan
72136            ! MANIFEST lib/CPAN.pm lib/CPAN/FirstTime.pm lib/CPAN/t/Nox.t
72137            ! lib/CPAN/t/loadme.t lib/CPAN/t/mirroredby.t lib/CPAN/t/vcmp.t
72138            ! utils.lst
72139 ____________________________________________________________________________
72140 [ 18671] By: jhi                                   on 2003/02/08  08:35:06
72141         Log: Upgrade to Net::Ping 2.28, from Rob Brown.
72142      Branch: perl
72143            + lib/Net/Ping/t/190_alarm.t lib/Net/Ping/t/500_ping_icmp.t
72144            ! MANIFEST lib/Net/Ping.pm lib/Net/Ping/Changes
72145            ! lib/Net/Ping/README lib/Net/Ping/t/300_ping_stream.t
72146            ! lib/Net/Ping/t/400_ping_syn.t lib/Net/Ping/t/410_syn_host.t
72147 ____________________________________________________________________________
72148 [ 18670] By: jhi                                   on 2003/02/08  07:23:02
72149         Log: Subject: [PATCH] perluniintro nit
72150              From: Autrijus Tang <autrijus@autrijus.org>
72151              Date: Fri, 7 Feb 2003 00:02:49 +0800
72152              Message-ID: <20030206160249.GA12984@not.autrijus.org>
72153      Branch: perl
72154            ! pod/perluniintro.pod
72155 ____________________________________________________________________________
72156 [ 18669] By: jhi                                   on 2003/02/06  20:06:09
72157         Log: Subject: [PATCH: perl@186389] path tweak fix up for t/pod/find.t on VMS
72158              From: PPrymmer@factset.com
72159              Date: Wed, 5 Feb 2003 12:00:05 -0500
72160              Message-ID: <OFF5FDC924.68DBF580-ON85256CC4.005CC78E@factset.com>
72161      Branch: perl
72162            ! t/pod/find.t
72163 ____________________________________________________________________________
72164 [ 18668] By: jhi                                   on 2003/02/06  20:00:52
72165         Log: sv_cat_recode() proto was missing, noticed by Craig Berry.
72166      Branch: perl
72167            ! proto.h
72168 ____________________________________________________________________________
72169 [ 18666] By: sky                                   on 2003/02/06  09:39:24
72170         Log: Patch from Richard Soderberg, cleanup the code a bit and comment
72171              why we are not using SvOOK_on.
72172      Branch: perl
72173            ! sv.c
72174 ____________________________________________________________________________
72175 [ 18664] By: jhi                                   on 2003/02/06  09:26:53
72176         Log: Things forgotten from Encode 1.87.
72177      Branch: perl
72178            ! ext/Encode/Unicode/Unicode.xs ext/Encode/t/CJKT.t
72179 ____________________________________________________________________________
72180 [ 18663] By: jhi                                   on 2003/02/06  04:03:31
72181         Log: Upgrade to Encode 1.87.
72182      Branch: perl
72183            ! ext/Encode/AUTHORS ext/Encode/Byte/Byte.pm ext/Encode/Changes
72184            ! ext/Encode/Encode.pm ext/Encode/Encode.xs ext/Encode/KR/KR.pm
72185            ! ext/Encode/Unicode/Unicode.pm ext/Encode/Unicode/Unicode.xs
72186            ! ext/Encode/encoding.pm ext/Encode/lib/Encode/Alias.pm
72187            ! ext/Encode/lib/Encode/CJKConstants.pm
72188            ! ext/Encode/lib/Encode/Encoder.pm
72189            ! ext/Encode/lib/Encode/Encoding.pm
72190            ! ext/Encode/lib/Encode/JP/JIS7.pm ext/Encode/t/CJKT.t
72191            ! ext/Encode/t/enc_eucjp.t
72192 ____________________________________________________________________________
72193 [ 18662] By: jhi                                   on 2003/02/05  19:40:38
72194         Log: Add the test of [perl #8760] (fixed by change #18656).
72195      Branch: perl
72196            ! t/run/fresh_perl.t
72197 ____________________________________________________________________________
72198 [ 18661] By: jhi                                   on 2003/02/05  19:28:37
72199         Log: has become fixed too (by changes #18653
72200              and #18658, methinks), adding the test(s).
72201      Branch: perl
72202            ! t/op/pat.t
72203 ____________________________________________________________________________
72204 [ 18660] By: jhi                                   on 2003/02/05  17:15:35
72205         Log: Subject: [Patch] parsing under encoding (Re: [Encode] HEADS-UP; $Encode::VERSION++ to enhance filter option)([perl #16823])
72206              From: Inaba HIroto <inaba@st.rim.or.jp>
72207              Date: Sat, 01 Feb 2003 21:58:20 +0900
72208              Message-ID: <3E3BC46B.6C687CFD@st.rim.or.jp>
72209      Branch: perl
72210            ! embed.fnc embed.h ext/Encode/Encode.pm ext/Encode/Encode.xs
72211            ! ext/Encode/Encode/encode.h ext/Encode/encengine.c
72212            ! ext/Encode/lib/Encode/Encoding.pm
72213            ! ext/Encode/lib/Encode/JP/JIS7.pm global.sym lib/utf8.t
72214            ! pod/perlapi.pod sv.c t/uni/tr_7jis.t toke.c
72215 ____________________________________________________________________________
72216 [ 18659] By: jhi                                   on 2003/02/05  11:51:30
72217         Log: Subject: [PATCH: perl@186389] fix for PerlIO/Via compilation on VMS
72218              From: PPrymmer@factset.com
72219              Date: Tue, 4 Feb 2003 12:03:17 -0500
72220              Message-ID: <OFCBC6AE62.FF2B83D4-ON85256CC3.005D7A9F@factset.com>
72221      Branch: perl
72222            ! ext/PerlIO/via/via.xs
72223 ____________________________________________________________________________
72224 [ 18658] By: jhi                                   on 2003/02/05  05:45:11
72225         Log: s/S_cache_re/cache_re/ for building with threads.
72226      Branch: perl
72227            ! regexec.c
72228 ____________________________________________________________________________
72229 [ 18657] By: rgs                                   on 2003/02/04  20:06:19
72230         Log: Subject: [PATCH] B::Concise updates (incl. avoiding use of op_seq)
72231              From: Stephen McCamant <smcc@mit.edu>
72232              Date: Mon, 3 Feb 2003 21:01:07 -0500
72233              Message-ID: <15935.7907.976943.74729@syllepsis.MIT.EDU>
72234      Branch: perl
72235            ! ext/B/B/Concise.pm ext/B/t/concise.t
72236 ____________________________________________________________________________
72237 [ 18656] By: rgs                                   on 2003/02/04  20:02:56
72238         Log: Better version of change #18648, by Enache Adrian
72239              Message-ID: <20030204101533.GA11817@ratsnest.hole>
72240      Branch: perl
72241            ! op.c
72242 ____________________________________________________________________________
72243 [ 18655] By: jhi                                   on 2003/02/04  15:56:36
72244         Log: Add the new test to MANIFEST.
72245      Branch: perl
72246            ! MANIFEST
72247 ____________________________________________________________________________
72248 [ 18654] By: gbarr                                 on 2003/02/04  14:42:51
72249         Log: Sync with 1.10
72250      Branch: perl
72251            + ext/List/Util/t/lln.t
72252            ! ext/List/Util/ChangeLog ext/List/Util/Util.xs
72253            ! ext/List/Util/lib/List/Util.pm
72254            ! ext/List/Util/lib/Scalar/Util.pm
72255 ____________________________________________________________________________
72256 [ 18653] By: jhi                                   on 2003/02/04  11:04:25
72257         Log: Fix "[perl #20667] unicode regex vs non-unicode regex".
72258              The PL_regdata was not set up (S_cache_re()) before it
72259              was needed (S_reginclass()).  The test put in fresh_perl.t
72260              because we need a pristine state to start.
72261      Branch: perl
72262            ! regexec.c t/run/fresh_perl.t
72263 ____________________________________________________________________________
72264 [ 18652] By: jhi                                   on 2003/02/04  06:35:51
72265         Log: Comment tweak.
72266      Branch: perl
72267            ! t/op/pat.t
72268 ____________________________________________________________________________
72269 [ 18651] By: jhi                                   on 2003/02/04  06:28:53
72270         Log: Signedness issue.
72271      Branch: perl
72272            ! ext/MIME/Base64/Base64.xs
72273 ____________________________________________________________________________
72274 [ 18650] By: rgs                                   on 2003/02/03  22:02:44
72275         Log: Force the C locale in makedepend, to prevent gcc from
72276              producing locale-dependent messages.
72277      Branch: perl
72278            ! makedepend.SH
72279 ____________________________________________________________________________
72280 [ 18649] By: rgs                                   on 2003/02/03  22:00:21
72281         Log: Document the environment variable PERL_UTF8_LOCALE in perlrun.
72282      Branch: perl
72283            ! pod/perlrun.pod
72284 ____________________________________________________________________________
72285 [ 18648] By: rgs                                   on 2003/02/03  19:32:57
72286         Log: Fix bug #8760 : cop_line isn't properly restored
72287              when a module is loaded at runtime behind the scenes.
72288      Branch: perl
72289            ! op.c t/lib/warnings/perlio
72290 ____________________________________________________________________________
72291 [ 18647] By: merijn                                on 2003/02/03  16:14:00
72292         Log: Subject: Re: [perl #20606] [PATCH} openbsd hints
72293              From: Abe Timmerman <abe@ztreet.demon.nl>
72294              Date: Sun, 2 Feb 2003 18:27:57 +0100
72295              Message-Id: <200302021827.57240.abe@ztreet.demon.nl>
72296      Branch: perl
72297            ! hints/openbsd.sh
72298 ____________________________________________________________________________
72299 [ 18644] By: jhi                                   on 2003/02/03  12:41:51
72300         Log: Duh, test -e ENOPORTABLE, I should've remembered that.
72301              (Made Solaris go boom.)
72302      Branch: perl
72303            ! Configure
72304 ____________________________________________________________________________
72305 [ 18643] By: jhi                                   on 2003/02/03  10:36:15
72306         Log: Detypo.
72307      Branch: perl
72308            ! cop.h
72309 ____________________________________________________________________________
72310 [ 18642] By: ams                                   on 2003/02/03  08:26:36
72311         Log: Integrate MIME::Base64 2.16 from CPAN. (Do we really want the
72312              utility scripts?)
72313      Branch: perl
72314            + ext/MIME/Base64/decode-base64 ext/MIME/Base64/decode-qp
72315            + ext/MIME/Base64/encode-base64 ext/MIME/Base64/encode-qp
72316            ! MANIFEST ext/MIME/Base64/Base64.pm ext/MIME/Base64/Base64.xs
72317            ! ext/MIME/Base64/Changes ext/MIME/Base64/Makefile.PL
72318            ! ext/MIME/Base64/QuotedPrint.pm ext/MIME/Base64/t/base64.t
72319            ! ext/MIME/Base64/t/quoted-print.t
72320 ____________________________________________________________________________
72321 [ 18641] By: sky                                   on 2003/02/02  23:46:24
72322         Log: In any case, never copy this but use the same SV since
72323              if we copy we loose the hash we so badly need.
72324              For op_const we might still need to copy however.
72325      Branch: perl
72326            ! op.c
72327 ____________________________________________________________________________
72328 [ 18640] By: sky                                   on 2003/02/02  23:38:40
72329         Log: Move SvPVIV out of ->op_sv of METHOD_NAMED into the pad, fixes
72330              threading issue. Should perhaps be a PVOP to save memory, but then
72331              we have nowhere to store the hash of the function!
72332      Branch: perl
72333            ! dump.c op.c pp_hot.c
72334 ____________________________________________________________________________
72335 [ 18637] By: jhi                                   on 2003/02/02  20:07:57
72336         Log: Plan 9: Some time has passed.
72337      Branch: perl
72338            ! plan9/buildinfo
72339 ____________________________________________________________________________
72340 [ 18636] By: jhi                                   on 2003/02/02  20:02:11
72341         Log: Subject: Re: typo in checkin 18616
72342              From: Nick Ing-Simmons <nick@ing-simmons.net>
72343              Date: Sun, 02 Feb 2003 17:23:08 +0000
72344              Message-Id: <20030202172308.9244.1@bactrian.ni-s.u-net.com>
72345      Branch: perl
72346            ! XSUB.h
72347 ____________________________________________________________________________
72348 [ 18635] By: jhi                                   on 2003/02/02  19:46:35
72349         Log: Plan 9: Add also config.sh sample for 5.8.0 from Russ Cox.
72350      Branch: perl
72351            + plan9/config_sh.sample
72352            ! MANIFEST
72353 ____________________________________________________________________________
72354 [ 18634] By: ams                                   on 2003/02/02  18:07:01
72355         Log: Subject: [PATCH] pod/perlfunc.pod
72356              From: abigail@abigail.nl
72357              Date: Sun, 2 Feb 2003 16:59:48 +0100
72358              Message-Id: <20030202155948.7971.qmail@abigail.nl>
72359      Branch: perl
72360            ! pod/perlfunc.pod
72361 ____________________________________________________________________________
72362 [ 18633] By: jhi                                   on 2003/02/02  16:48:26
72363         Log: Subject: [perl #18232] [PATCH] store PL_reg_match_utf8 in reganch
72364              From: Rafael Garcia-Suarez <rgarciasuarez@free.fr>
72365              Date: Wed, 22 Jan 2003 22:35:56 +0100
72366              Message-Id: <20030122223556.57d597a3.rgarciasuarez@free.fr>
72367      Branch: perl
72368            ! mg.c pp.c pp_ctl.c pp_hot.c regexec.c regexp.h t/op/pat.t
72369 ____________________________________________________________________________
72370 [ 18632] By: jhi                                   on 2003/02/02  15:31:36
72371         Log: Also [perl #3547] has been fixed; add its test case.
72372      Branch: perl
72373            ! t/op/pat.t
72374 ____________________________________________________________________________
72375 [ 18631] By: jhi                                   on 2003/02/02  15:26:10
72376         Log: The [perl #7471] seems to have been fixed; add its test.
72377      Branch: perl
72378            ! t/op/pat.t
72379 ____________________________________________________________________________
72380 [ 18630] By: jhi                                   on 2003/02/02  15:21:23
72381         Log: seems to have been fixed; add its test.
72382      Branch: perl
72383            ! t/op/pat.t
72384 ____________________________________________________________________________
72385 [ 18629] By: jhi                                   on 2003/02/02  15:09:39
72386         Log: Plan 9: Supply also Russ Cox' original config.h for 5.8.0.
72387      Branch: perl
72388            + plan9/config_h.sample
72389            ! MANIFEST
72390 ____________________________________________________________________________
72391 [ 18628] By: jhi                                   on 2003/02/02  14:46:26
72392         Log: Plan 9: Update config.plan9 based on Russ Cox' work.
72393      Branch: perl
72394            ! plan9/config.plan9
72395 ____________________________________________________________________________
72396 [ 18627] By: jhi                                   on 2003/02/02  14:24:00
72397         Log: Plan 9: Update the list of object files.
72398      Branch: perl
72399            ! plan9/mkfile
72400 ____________________________________________________________________________
72401 [ 18626] By: jhi                                   on 2003/02/02  14:03:16
72402         Log: Plan 9: No Configure.
72403      Branch: perl
72404            ! Configure
72405 ____________________________________________________________________________
72406 [ 18624] By: jhi                                   on 2003/02/02  13:29:02
72407         Log: Plan 9: doesn't really do Configure (undo #18585/#18586)
72408      Branch: perl
72409            ! Configure
72410 ____________________________________________________________________________
72411 [ 18622] By: jhi                                   on 2003/02/02  12:49:13
72412         Log: minitest wasn't working.  (The $^X /miniperl/ test in
72413              io/crlf.t didn't work in Tru64, $^X was "./perl", used
72414              the same 'eval q/use .../' trick everywhere.)
72415      Branch: perl
72416            ! t/io/crlf.t t/uni/tr_7jis.t t/uni/tr_eucjp.t t/uni/tr_sjis.t
72417            ! t/uni/tr_utf8.t
72418 ____________________________________________________________________________
72419 [ 18621] By: jhi                                   on 2003/02/02  12:23:28
72420         Log: Fix and test for [perl #15549 Empty \Q\E not permitted]
72421              (test.pl-ise quotemeta.t, too)
72422      Branch: perl
72423            ! t/op/quotemeta.t toke.c
72424 ____________________________________________________________________________
72425 [ 18618] By: sky                                   on 2003/02/01  21:04:36
72426         Log: Fix bug #15837, temporary from storable call hadn't gotten
72427              freed yet and was cloned but without a real (AvREAL)
72428              reference to it. @_ doesn't refcount!
72429      Branch: perl
72430            ! ext/threads/threads.xs
72431 ____________________________________________________________________________
72432 [ 18616] By: jhi                                   on 2003/02/01  19:43:09
72433         Log: Integrate from perlio:
72434
72435              [ 18591]
72436              PERL_IMPLICIT_SYS does NOT vector PerlIO_xxx but PerlSIO_xxx, so
72437              correct XSUB.h
72438
72439              [ 18611]
72440              Michael Schroeder's fix for re-try if stdio ops after
72441              interrupts. (Calls to PERL_ASYNC_CHECK added by NI-S).
72442
72443              [ 18612]
72444              PerlIO friendly version of speed up of $/ = undef case.
72445
72446              [ 18613]
72447              fflush() before invalidating stdio's fileno.
72448      Branch: perl
72449           !> XSUB.h perlio.c sv.c
72450 ____________________________________________________________________________
72451 [ 18615] By: sky                                   on 2003/02/01  12:01:01
72452         Log: Don't free thread before using it, breaks platforms that
72453              trust that I really want to free what I free, (like HPUX
72454              and AIX).
72455      Branch: perl
72456            ! ext/threads/threads.xs
72457 ____________________________________________________________________________
72458 [ 18614] By: ams                                   on 2003/02/01  12:00:29
72459         Log: Subject: Re: bleadperl: PerlIOStdio_invalidate_fileno breaks fclose semantics
72460              From: Nick Ing-Simmons <nick@ing-simmons.net>
72461              Date: Sat, 01 Feb 2003 13:03:52 +0000
72462              Message-Id: <20030201130352.1872.12@bactrian.ni-s.u-net.com>
72463      Branch: perl
72464            ! perlio.c
72465 ____________________________________________________________________________
72466 [ 18609] By: jhi                                   on 2003/01/31  08:58:40
72467         Log: Go even further (back) than change #18608 and revert
72468              to the 5.8.0 code, since otherwise split.t #40 fails.
72469              The four new tests of pat.t should keep us more honest.
72470      Branch: perl
72471            ! regexec.c
72472 ____________________________________________________________________________
72473 [ 18608] By: jhi                                   on 2003/01/31  08:24:53
72474         Log: Subject: [FIX] Re: UTF-8 failures (surprise!)
72475              From: Enache Adrian <enache@rdslink.ro>
72476              Date: Fri, 31 Jan 2003 09:20:59 +0200
72477              Message-ID: <20030131072059.GB6045@ratsnest.hole>
72478      Branch: perl
72479            ! regexec.c t/op/pat.t
72480 ____________________________________________________________________________
72481 [ 18607] By: ams                                   on 2003/01/31  02:29:56
72482         Log: Fix typo in version check ($[ to $]).
72483      Branch: perl
72484            ! ext/Storable/t/restrict.t
72485 ____________________________________________________________________________
72486 [ 18606] By: rgs                                   on 2003/01/30  22:02:47
72487         Log: Subject: [PATCH] Upper<->Lower case mistake in perlunicode.pod ?
72488              From: Jose.auguste-etienne@cgss-guyane.fr
72489              Date: Thu, 30 Jan 2003 12:40:53 -0300
72490              Message-ID: <OF8E7C1B73.22FEA7CE-ON03256CBE.00528AB8@Cgss-Guyane.fr>
72491      Branch: perl
72492            ! pod/perlunicode.pod
72493 ____________________________________________________________________________
72494 [ 18605] By: rgs                                   on 2003/01/30  20:58:52
72495         Log: code example in the FAQ that isn't strict-friendly.
72496              Subject: [perl #20616] Tie::IxHash doc error.
72497              From: Beckett Richard-qswi266 (via RT) <perlbug-followup@perl.org>
72498              Date: 30 Jan 2003 11:43:17 -0000
72499              Message-Id: <rt-20616-49904.16.891027432675@bugs6.perl.org>
72500      Branch: perl
72501            ! pod/perlfaq4.pod
72502 ____________________________________________________________________________
72503 [ 18604] By: rgs                                   on 2003/01/30  20:52:05
72504         Log: FAQ sync.
72505      Branch: perl
72506            ! pod/perlfaq.pod pod/perlfaq2.pod pod/perlfaq3.pod
72507            ! pod/perlfaq4.pod pod/perlfaq5.pod pod/perlfaq7.pod
72508            ! pod/perlfaq8.pod
72509 ____________________________________________________________________________
72510 [ 18603] By: jhi                                   on 2003/01/30  08:05:22
72511         Log: Subject: [FIX] Re: UTF-8 failures (surprise!)
72512              From: Enache Adrian <enache@rdslink.ro>
72513              Date: Thu, 30 Jan 2003 10:48:09 +0200
72514              Message-ID: <20030130084809.GA16902@ratsnest.hole>
72515
72516              Fix for half of the failures, with an expanded test.
72517      Branch: perl
72518            ! lib/utf8.t sv.c
72519 ____________________________________________________________________________
72520 [ 18602] By: merijn                                on 2003/01/30  06:31:50
72521         Log: Updates to the openbsd hints
72522
72523              Subject: [perl #20606] [no subject]
72524              Date: 29 Jan 2003 18:38:37 -0000
72525              From: "Todd C. Miller" (via RT) <perlbug-followup@perl.org>
72526              Message-Id: <rt-20606-49879.4.78874436094841@bugs6.perl.org>
72527      Branch: perl
72528            ! hints/openbsd.sh
72529 ____________________________________________________________________________
72530 [ 18601] By: jhi                                   on 2003/01/29  05:58:36
72531         Log: More of the #18600.
72532      Branch: perl
72533            ! pad.c
72534 ____________________________________________________________________________
72535 [ 18600] By: jhi                                   on 2003/01/29  05:37:12
72536         Log: Retract the %_/SVf change (part of #18456) for PROTOTYPE (CV)
72537              dumping (but now use SvPV_nolen).  (This change made an empty
72538              prototype to show up as "_" under -Uuseperlio.)
72539      Branch: perl
72540            ! dump.c
72541 ____________________________________________________________________________
72542 [ 18599] By: rgs                                   on 2003/01/28  21:07:08
72543         Log: Fix a very small memory leak in op_free, by reserving the
72544              case op_seq == (U16)-1 for the compiler backend
72545
72546              Subject: Re: Freeing code
72547              From: "Paul Johnson" <paul@pjcj.net>
72548              Date: Tue, 28 Jan 2003 14:13:09 +0100 (CET)
72549              Message-ID: <18918.193.134.254.145.1043759589.squirrel@wesley.pjcj.net>
72550      Branch: perl
72551            ! op.c
72552 ____________________________________________________________________________
72553 [ 18598] By: rgs                                   on 2003/01/28  20:43:02
72554         Log: Integrate from maint-5.8:
72555              Change 18450 :
72556              Tiny output tweak.
72557              Change 18429 :
72558              AIX gcc (2.9) threaded build tweak (without the _THREAD_SAFE
72559              things like drand48_data are undefined).
72560              Change 18388 :
72561              List the PERL_MAGIC_utf8 ('w') flag.
72562      Branch: perl
72563           !> hints/aix.sh pod/perlguts.pod t/op/pat.t
72564 ____________________________________________________________________________
72565 [ 18597] By: rgs                                   on 2003/01/27  21:52:00
72566         Log: Subject: Re: [perl #20274] perlbug requires dynamic loading
72567              From: Slaven Rezic <slaven@rezic.de>
72568              Date: 14 Jan 2003 20:58:54 +0100
72569              Message-ID: <87n0m3v6yp.fsf@vran.herceg.de>
72570      Branch: perl
72571            ! ext/Sys/Hostname/Hostname.pm
72572 ____________________________________________________________________________
72573 [ 18596] By: rgs                                   on 2003/01/27  20:38:21
72574         Log: Introduce the PUSHSUB_DB macro, equivalent to PUSHSUB, but
72575              without the lval context tweak. Used in OP_DBSTATE.
72576              Subject: Re: [PATCH] Re: change #9754: 5 x slowdown for perl -d
72577              From: Dave Mitchell <davem@fdgroup.com>
72578              Date: Sun, 26 Jan 2003 17:42:42 +0000
72579              Message-ID: <20030126174242.H16182@fdgroup.com>
72580      Branch: perl
72581            ! cop.h pp_ctl.c
72582 ____________________________________________________________________________
72583 [ 18595] By: rgs                                   on 2003/01/27  20:32:01
72584         Log: Subject: [PATCH] make Copy On Write work once again
72585              From: Nicholas Clark <nick@unfortu.net>
72586              Date: Sat, 25 Jan 2003 00:25:50 +0000
72587              Message-ID: <20030125002550.GG278@Bagpuss.unfortu.net>
72588      Branch: perl
72589            ! sv.h
72590 ____________________________________________________________________________
72591 [ 18594] By: jhi                                   on 2003/01/27  20:01:44
72592         Log: Update the pod list for Plan 9.
72593      Branch: perl
72594            ! plan9/mkfile
72595 ____________________________________________________________________________
72596 [ 18593] By: sky                                   on 2003/01/26  22:37:21
72597         Log: When we copy things out of a hash and increment the
72598              refcount of the shared scalar, we really must protect
72599              that refcount increase with a lock, or else it might not
72600              happen. Fixes segfault when objects would prematurely
72601              be killed.
72602      Branch: perl
72603            ! ext/threads/shared/shared.xs
72604 ____________________________________________________________________________
72605 [ 18592] By: jhi                                   on 2003/01/26  21:54:36
72606         Log: Missing (STRLEN)casts.
72607      Branch: perl
72608            ! sv.c
72609 ____________________________________________________________________________
72610 [ 18589] By: rgs                                   on 2003/01/26  13:06:49
72611         Log: OPf_SPECIAL on OP_DBSTATE now indicates a breakpoint.
72612
72613              Subject: Re: [PATCH] Re: change #9754: 5 x slowdown for perl -d
72614              From: Dave Mitchell <davem@fdgroup.com>
72615              Date: Fri, 24 Jan 2003 18:44:19 +0000
72616              Message-ID: <20030124184419.F11179@fdgroup.com>
72617      Branch: perl
72618            ! mg.c op.h pp_ctl.c
72619 ____________________________________________________________________________
72620 [ 18588] By: jhi                                   on 2003/01/26  12:18:10
72621         Log: Lest people get worried about not having PerlIO.
72622      Branch: perl
72623            ! pod/perluniintro.pod
72624 ____________________________________________________________________________
72625 [ 18586] By: jhi                                   on 2003/01/26  09:19:01
72626         Log: Plan 9 doesn't do nm, from Russ Cox.
72627      Branch: perl
72628            ! Configure
72629 ____________________________________________________________________________
72630 [ 18584] By: jhi                                   on 2003/01/26  09:11:23
72631         Log: Plan 9 doesn't really have the symlink API, from Russ Cox.
72632      Branch: perl
72633            ! plan9/plan9ish.h
72634 ____________________________________________________________________________
72635 [ 18583] By: jhi                                   on 2003/01/26  09:08:36
72636         Log: Plan 9 compiler can't return quads from the ?: (condop).
72637              (There may be more spots like this, so a Configure test
72638              maybe in order, but this works for now.)  From Russ Cox.
72639      Branch: perl
72640            ! ext/PerlIO/via/via.xs plan9/plan9ish.h
72641 ____________________________________________________________________________
72642 [ 18581] By: ams                                   on 2003/01/26  05:29:40
72643         Log: Subject: Re: truncate using a globref
72644              From: Slaven Rezic <slaven@rezic.de>
72645              Date: Thu, 23 Jan 2003 15:48:52 +0100 (CET)
72646              Message-Id: <200301231448.h0NEmqnu022591@vran.herceg.de>
72647      Branch: perl
72648            ! pp_sys.c t/io/fs.t
72649 ____________________________________________________________________________
72650 [ 18580] By: ams                                   on 2003/01/26  04:57:47
72651         Log: Subject: patch to speed up Perl's slurp mode
72652              From: Enache Adrian <enache@rdslink.ro>
72653              Date: Fri, 24 Jan 2003 06:23:54 +0200
72654              Message-Id: <20030124042354.GA30362@ratsnest.hole>
72655      Branch: perl
72656            ! sv.c
72657 ____________________________________________________________________________
72658 [ 18579] By: ams                                   on 2003/01/26  02:50:44
72659         Log: Subject: Re: [perl #20408] SV's SvPVX get freed even when its SvLEN is zero
72660              From: Enache Adrian <enache@rdslink.ro>
72661              Date: Sun, 26 Jan 2003 04:55:48 +0200
72662              Message-Id: <20030126025548.GB812@ratsnest.hole>
72663      Branch: perl
72664            ! pp_ctl.c
72665 ____________________________________________________________________________
72666 [ 18578] By: ams                                   on 2003/01/26  02:40:20
72667         Log: Subject: [PATCH Storable 2.06] const declaration fixup
72668              From: "Craig A. Berry" <craigberry@mac.com>
72669              Date: Thu, 23 Jan 2003 16:24:46 -0600
72670              Message-Id: <3E306BAE.4030807@mac.com>
72671      Branch: perl
72672            ! ext/Storable/Storable.xs
72673 ____________________________________________________________________________
72674 [ 18577] By: rgs                                   on 2003/01/23  20:46:00
72675         Log: Subject: [PATCH] move pad.c warnings to different test file
72676              From: Dave Mitchell <davem@fdgroup.com>
72677              Date: Thu, 23 Jan 2003 20:56:47 +0000
72678              Message-ID: <20030123205647.C8696@fdgroup.com>
72679      Branch: perl
72680            + t/lib/warnings/pad
72681            ! MANIFEST t/lib/warnings/op
72682 ____________________________________________________________________________
72683 [ 18573] By: nick                                  on 2003/01/23  07:26:43
72684         Log: Fix Solaris 32-bit invalidate case.
72685      Branch: perl
72686            ! perlio.c
72687 ____________________________________________________________________________
72688 [ 18572] By: rgs                                   on 2003/01/22  21:40:21
72689         Log: Integrate change 18448 from maint-5.8 :
72690
72691              Subject: Partial Data::Dumper patch
72692              From: Richard Clamp <richardc@unixbeard.net>
72693              Date: Sat, 4 Jan 2003 00:52:47 +0000
72694              Message-ID: <20030104005247.GA27685@mirth.demon.co.uk>
72695
72696              Subject: Re: Partial Data::Dumper patch
72697              From: Slaven Rezic <slaven@rezic.de>
72698              Date: 04 Jan 2003 02:48:08 +0100
72699              Message-ID: <87u1gp4rdz.fsf@vran.herceg.de>
72700      Branch: perl
72701           !> ext/Data/Dumper/Dumper.xs ext/Data/Dumper/t/dumper.t
72702 ____________________________________________________________________________
72703 [ 18571] By: rgs                                   on 2003/01/22  21:22:31
72704         Log: Subject: [PATCH] Re: difference between my and our before introduction
72705              From: Dave Mitchell <davem@fdgroup.com>
72706              Date: Thu, 16 Jan 2003 17:12:37 +0000
72707              Message-ID: <20030116171237.C420@fdgroup.com>
72708              (with a small test tweak)
72709      Branch: perl
72710            ! pad.c t/comp/our.t toke.c
72711 ____________________________________________________________________________
72712 [ 18569] By: rgs                                   on 2003/01/22  21:00:59
72713         Log: Fix [perl #19860] by adding a POSIX::fsync() stub.
72714      Branch: perl
72715            ! ext/POSIX/POSIX.pm ext/POSIX/POSIX.pod
72716 ____________________________________________________________________________
72717 [ 18561] By: jhi                                   on 2003/01/22  17:43:45
72718         Log: Integrate from perlio:
72719              [ 18560]
72720              Fixes for open.pm which attempts to load layers:
72721              1. C equivalent of local $SIG{__WARN__} = sub {}
72722              while loading layers to supress warnings lib/open.t does
72723              not want.
72724              2. The loading scheme does not recurse now so look for
72725              new symptom of bad layer which is that a good module
72726              fails to load (as we cannot open any files).
72727
72728              NOTE: In my opinion open.pm should probably die on bad layer
72729              spec rather than just (maybe) warning and then allowing opens
72730              to fail.
72731      Branch: perl
72732           !> lib/open.t perlio.c
72733 ____________________________________________________________________________
72734 [ 18559] By: jhi                                   on 2003/01/22  13:19:31
72735         Log: Upgrade to Encode 1.86.
72736      Branch: perl
72737            ! ext/Encode/Changes ext/Encode/Encode.pm ext/Encode/MANIFEST
72738            ! ext/Encode/Unicode/Unicode.xs ext/Encode/encoding.pm
72739            ! ext/Encode/t/enc_eucjp.t ext/Encode/t/enc_utf8.t
72740 ____________________________________________________________________________
72741 [ 18558] By: jhi                                   on 2003/01/22  13:05:27
72742         Log: Subject: Re: slight tweak to -DR flag - display whether on tmps stack
72743              From: Dave Mitchell <davem@fdgroup.com>
72744              Date: Sun, 19 Jan 2003 17:22:05 +0000
72745              Message-ID: <20030119172204.D24444@fdgroup.com>
72746      Branch: perl
72747            ! dump.c
72748 ____________________________________________________________________________
72749 [ 18557] By: jhi                                   on 2003/01/22  13:01:15
72750         Log: Subject: [PATCH] Re: [perl #9394] Re: [ID 20020525.002] coredump/ bad free warning   in blead with SIGWARN
72751              From: Nicholas Clark <nick@unfortu.net>
72752              Date: Tue, 21 Jan 2003 22:27:21 +0000
72753              Message-ID: <20030121222720.GG293@Bagpuss.unfortu.net>
72754      Branch: perl
72755            ! sv.c t/op/ref.t
72756 ____________________________________________________________________________
72757 [ 18556] By: jhi                                   on 2003/01/22  12:59:02
72758         Log: Subject: [PATCH perlio.h] (was RE: [PATCH] %_ (was Re: [PATCH] operation on `PL_na' may be undefined))
72759              From: Robin Barker <Robin.Barker@npl.co.uk>
72760              Date: Mon, 20 Jan 2003 15:26:21 -0000
72761              Message-ID: <533D273D4014D411AB1D00062938C4D904046299@hotel.npl.co.uk>
72762      Branch: perl
72763            ! perlio.h
72764 ____________________________________________________________________________
72765 [ 18555] By: jhi                                   on 2003/01/22  12:57:20
72766         Log: Integrate from perlio:
72767              [ 18539]
72768              Try the invalidate_fileno() idea for non-leaky stdio sockets.
72769
72770              [ 18540]
72771              stdio does NOT set errno==EBADF on invalidated fileno
72772
72773              [ 18547]
72774              Tweak APItest for new semantics of printf.
72775              Now printf() is always real printf() and not #define'd to
72776              PerlIO_stdoutf() so PerlIO_flush() when STDOUT is redirected
72777              back to original file does not affect stdout unless we are
72778              using :stdio as implementation. So things printf()ed XS side
72779              are not written to file (and turn up at end of test).
72780              So add an XS function which does fflush(stdout), modify .pm
72781              file to export it and .t file to call it.
72782
72783              [ 18548]
72784              Add defined(__osf__) case to invalidate_fileno (for Tru64).
72785
72786              [ 18549]
72787              Report layer name (without arg) on fail, and attempt to
72788              autoload layer name. (Fix for [perl #20460]).
72789
72790              [ 18550]
72791              #if defined(__irix__) (for stdio invalidate) from Jarkko.
72792      Branch: perl
72793           !> ext/XS/APItest/APItest.pm ext/XS/APItest/APItest.xs
72794           !> ext/XS/APItest/t/printf.t lib/open.pm perlio.c
72795 ____________________________________________________________________________
72796 [ 18554] By: jhi                                   on 2003/01/22  12:47:03
72797         Log: Subject: [PATCH av.c] Re: [perl #15439] unreferenced scalar due to double DESTROY
72798              From: Dave Mitchell <davem@fdgroup.com>
72799              Date: Sun, 19 Jan 2003 16:43:54 +0000
72800              Message-ID: <20030119164353.B24444@fdgroup.com>
72801      Branch: perl
72802            ! av.c t/op/array.t
72803 ____________________________________________________________________________
72804 [ 18553] By: jhi                                   on 2003/01/22  12:43:31
72805         Log: Subject: Term::Complete problem + fix (Was: Re: muttprofile + perl 5.8)
72806              From: Martti Rahkila <martti.rahkila@hut.fi>
72807              Date: Sat, 18 Jan 2003 00:25:39 +0200
72808              Message-ID: <20030118002539.A30585@wurlitzer.hut.fi>
72809
72810              (chose the 'even safer' version)
72811      Branch: perl
72812            ! lib/Term/Complete.pm
72813 ____________________________________________________________________________
72814 [ 18552] By: jhi                                   on 2003/01/22  12:34:06
72815         Log: Subject: [PATCH] assert PV isn't RV
72816              From: Nicholas Clark <nick@unfortu.net>
72817              Date: Fri, 17 Jan 2003 19:40:45 +0000
72818              Message-ID: <20030117194044.GB297@Bagpuss.unfortu.net>
72819      Branch: perl
72820            ! sv.h
72821 ____________________________________________________________________________
72822 [ 18551] By: jhi                                   on 2003/01/22  12:28:11
72823         Log: Integrate from maint-5.8:
72824              [ 18375]
72825              Better version of change #18370; use the new 'E' flag
72826              so that cxinc is exposed (as cpp) only to List::Util
72827              (well, any extension) (well, anyone who does -DPERL_EXT),
72828              no need to export it globally.
72829      Branch: perl
72830           !> embed.fnc embed.h ext/List/Util/Makefile.PL global.sym
72831 ____________________________________________________________________________
72832 [ 18545] By: ams                                   on 2003/01/22  06:06:26
72833         Log: Subject: [PATCH perl-current] AUTHORS correction
72834              From: Richard Soderberg <rs@crystalflame.net>
72835              Date: Wed, 22 Jan 2003 02:08:13 -0500
72836              Message-Id: <45B4D3AE-2DD8-11D7-8CF9-000393801F84@crystalflame.net>
72837      Branch: perl
72838            ! AUTHORS
72839 ____________________________________________________________________________
72840 [ 18544] By: jhi                                   on 2003/01/22  03:45:01
72841         Log: Continuation of #18542.
72842      Branch: perl
72843            ! sv.c
72844 ____________________________________________________________________________
72845 [ 18543] By: jhi                                   on 2003/01/22  03:21:23
72846         Log: Update the MD5 checksums.
72847      Branch: perl
72848            ! ext/Digest/MD5/t/files.t
72849 ____________________________________________________________________________
72850 [ 18542] By: hv                                    on 2003/01/22  01:37:52
72851         Log: #18530 misses a couple of pTHX definitions
72852      Branch: perl
72853            ! sv.c
72854 ____________________________________________________________________________
72855 [ 18541] By: jhi                                   on 2003/01/21  22:08:51
72856         Log: Try to make including patchlevel.h a bit more
72857              robust (use <> instead of "") and in case of
72858              failure (PERL_VERSION didn't get defined) try
72859              to fail (by trying to #include an "obviously"
72860              named file that should not exist) (didn't use
72861              #error since IIRC older cpps do not have it)
72862              (Tries to address [perl #20276].)
72863      Branch: perl
72864            ! ext/Data/Dumper/Dumper.xs ext/Devel/PPPort/PPPort.pm
72865            ! ext/Digest/MD5/MD5.xs ext/List/Util/Util.xs
72866            ! ext/Storable/Storable.xs
72867 ____________________________________________________________________________
72868 [ 18538] By: merijn                                on 2003/01/21  16:54:00
72869         Log: Subject: [PATCH] Re: FreeBSD 5 hints patch
72870              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
72871              Date: Mon, 30 Dec 2002 18:01:16 -0800
72872              Message-ID: <spPE+gzkg+6F092yn@efn.org>
72873      Branch: perl
72874            ! Configure
72875 ____________________________________________________________________________
72876 [ 18536] By: jhi                                   on 2003/01/21  14:18:40
72877         Log: Allow explicit -C enable/disable by -C:1/-C:0
72878              (suggested by Peter Haworth).
72879      Branch: perl
72880            ! perl.c pod/perlrun.pod
72881 ____________________________________________________________________________
72882 [ 18534] By: hv                                    on 2003/01/21  02:22:53
72883         Log: Subject: PATCH: perldoc in MAINT branch (probably unstable too)
72884              From: Chip Turner <cturner@redhat.com>
72885              Date: 02 Jan 2003 11:35:57 -0500
72886              Message-ID: <vzksmwb8q6q.fsf@minbar.devel.redhat.com>
72887      Branch: perl
72888            ! lib/Pod/Perldoc.pm
72889 ____________________________________________________________________________
72890 [ 18533] By: hv                                    on 2003/01/21  02:15:29
72891         Log: Subject: Re: [perl #17757] s///g fails when using English & study in 5.8.0
72892              From: hv@crypt.org
72893              Date: Thu, 02 Jan 2003 14:33:49 +0000
72894              Message-Id: <200301021433.h02EXno03562@crypt.compulink.co.uk>
72895      Branch: perl
72896            ! regexec.c t/op/subst.t
72897 ____________________________________________________________________________
72898 [ 18532] By: hv                                    on 2003/01/21  01:56:31
72899         Log: Subject: Re: [perl #19236] perlsyn: implicit localisation in while()
72900              From: Martien Verbruggen <mgjv@tradingpost.com.au>
72901              Date: Tue, 31 Dec 2002 16:42:28 +1100
72902              Message-Id: <slrnb12bi4.4tt.mgjv@martien.heliotrope.home>
72903      Branch: perl
72904            ! pod/perlsyn.pod
72905 ____________________________________________________________________________
72906 [ 18531] By: hv                                    on 2003/01/21  01:52:49
72907         Log: integrate #18366-18370 from maint-5.8:
72908              Implement the CPP namespace protection from [perl #8610];
72909              unless a function has an 'A' flag, it's defined only if
72910              PERL_CORE.  (Why do we have so many many functions with an
72911              'A' flag, is another matter.)  (The number of #ifdef PERL_COREs
72912              could be cut down further by having a state variable and
72913              inserting #ifdefs and #endifs when the state flips.)
72914
72915              Caught by change #18366; thanks to the re extension we have some
72916              functions that are file static but yet part of "the public API"...
72917              Maybe a new class of exportability (a new embed.fnc flag) is
72918              required for this case.
72919
72920              Continue on change #18367; implement the said flag, 'E'.
72921              (Some nm output studying was needed to get the right set
72922              of re symbols defined.)
72923
72924              In AIX (strict symbol exports) the cxinc is needed for List::Util.
72925      Branch: perl
72926            ! embed.fnc embed.h embed.pl ext/re/Makefile.PL global.sym
72927 ____________________________________________________________________________
72928 [ 18530] By: hv                                    on 2003/01/21  01:37:03
72929         Log: integrate (by hand) #18353 and #18359 from maint-5.8:
72930              Introduce a cache for UTF-8 data: length and byte<->char offset
72931              mapping are stored in a new type of magic.  Speeds up length(),
72932              substr(), index(), rindex(), pos(), and some parts of s///.
72933
72934              The speedup varies a lot (on the usual suspects: what is the
72935              access pattern of the data, compiler, CPU), but should be at
72936              least one order of magnitude, and getting to the same magnitude
72937              as byte string speeds, and in some cases  (length on unchanged data)
72938              even reaching the byte string speed.  On the other hand, in some
72939              cases (index) the byte speed is still faster by a factor of five
72940              or so, but the bottleneck there does not seem to be any more
72941              the byte<->char offset mapping (instead, the fbm_instr() speed).
72942
72943              There is one cache slot for the length, and only two for the
72944              byte<->char offset mapping (the first one for the start->offset,
72945              and the second for the offset->offset+length, when talking
72946              in substr() terms).
72947
72948              Code this hairy is bound to have hairy trolls hiding under it.
72949              [...]
72950              A small tweak on top of #18353: don't display mg_len bytes of
72951              mg_ptr for PERL_MAGIC_utf8 because that's not what's there.
72952      Branch: perl
72953            ! dump.c embed.fnc embed.h mg.c perl.h pod/perlapi.pod proto.h
72954            ! sv.c util.c
72955 ____________________________________________________________________________
72956 [ 18529] By: hv                                    on 2003/01/21  00:44:20
72957         Log: integrate #18349 from maint-5.8:
72958              At least partially address [perl #10000] by speeding
72959              up both the ASCII case (by about 2-3%) and the UTF-8 case
72960              (by about 45%).  The major trick is to avoid hitting the
72961              costly S_reginclass().  (Even before this patch the speedup
72962              since 5.8.0 was about 40-50%.)  After this the UTF-8 case is
72963              still about 30-60% slower than the ASCII case.  (Note that
72964              I'm unable to reproduce the 10-fold speed difference of the
72965              original bug report; I can see a factor of 2 or 3, but no more.)
72966      Branch: perl
72967           !> regexec.c
72968 ____________________________________________________________________________
72969 [ 18528] By: hv                                    on 2003/01/21  00:24:11
72970         Log: Subject: [PATCH pp_ctl.c] silence warning
72971              From: Dave Mitchell <davem@fdgroup.com>
72972              Date: Sun, 29 Dec 2002 15:09:31 +0000
72973              Message-ID: <20021229150931.C2325@fdgroup.com>
72974      Branch: perl
72975            ! pp_ctl.c
72976 ____________________________________________________________________________
72977 [ 18527] By: hv                                    on 2003/01/21  00:04:14
72978         Log: Subject: perl version reporting
72979              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
72980              Date: Wed, 18 Dec 2002 08:30:32 +0100
72981              Message-Id: <20021218081957.ABD8.H.M.BRAND@hccnet.nl>
72982      Branch: perl
72983            ! perl.c
72984 ____________________________________________________________________________
72985 [ 18526] By: hv                                    on 2003/01/20  23:21:22
72986         Log: Subject: Re: When Storable and Devel::DProf mix, core dump [perl #19385]
72987              From: Blair Zajac <blair@orcaware.com>
72988              Date: Wed, 08 Jan 2003 12:28:35 -0800
72989              Message-ID: <3E1C89F3.2B4759C@orcaware.com>
72990      Branch: perl
72991            ! ext/Devel/DProf/Changes ext/Devel/DProf/DProf.pm
72992            ! ext/Devel/DProf/DProf.xs ext/Devel/DProf/Makefile.PL
72993 ____________________________________________________________________________
72994 [ 18524] By: jhi                                   on 2003/01/20  17:51:10
72995         Log: Integrate from perlio:
72996              [ 18520]
72997              Move #define printf out of perl.h into appropriate
72998              PerlIO files.
72999      Branch: perl
73000           !> fakesdio.h nostdio.h perl.h
73001 ____________________________________________________________________________
73002 [ 18523] By: jhi                                   on 2003/01/20  17:48:51
73003         Log: Upgrade to Digest 1.02.
73004      Branch: perl
73005            ! lib/Digest.pm lib/Digest.t
73006 ____________________________________________________________________________
73007 [ 18522] By: jhi                                   on 2003/01/20  17:43:15
73008         Log: Subject: [perl #20408] SV's SvPVX get freed even when its SvLEN is zero
73009              From: "enache@rdslink.ro (via RT)" <perlbug-followup@perl.org>
73010              Date: 20 Jan 2003 01:54:07 -0000
73011              Message-Id: <rt-20408-49009.18.2567818321236@bugs6.perl.org>
73012      Branch: perl
73013            ! pp_hot.c
73014 ____________________________________________________________________________
73015 [ 18521] By: jhi                                   on 2003/01/20  17:37:35
73016         Log: Retract #18154 (integrate of perlio #18507), not enough
73017              threadsafety.
73018      Branch: perl
73019            ! perlio.c
73020 ____________________________________________________________________________
73021 [ 18519] By: jhi                                   on 2003/01/20  12:25:43
73022         Log: Encode MANIFEST update.
73023      Branch: perl
73024            ! ext/Encode/MANIFEST
73025 ____________________________________________________________________________
73026 [ 18517] By: nick                                  on 2003/01/20  08:34:10
73027         Log: Integrate #18405 from maint-5.8 which fixes whitespac
73028              issues in open(FH,"&...")
73029      Branch: perl
73030           !> doio.c
73031 ____________________________________________________________________________
73032 [ 18516] By: jhi                                   on 2003/01/19  13:48:10
73033         Log: microperl update.
73034      Branch: perl
73035            ! Makefile.micro uconfig.h uconfig.sh
73036 ____________________________________________________________________________
73037 [ 18514] By: jhi                                   on 2003/01/18  18:36:00
73038         Log: Integrate from perlio:
73039              [ 18507]
73040              Thread-protection for dup/fclose/dup2 scheme of stdio leak
73041              avoidance.
73042      Branch: perl
73043           !> perlio.c t/io/tell.t
73044 ____________________________________________________________________________
73045 [ 18513] By: jhi                                   on 2003/01/18  18:07:01
73046         Log: Slight pod reformatting based on [perl #20284].
73047      Branch: perl
73048            ! README.mint ext/Data/Dumper/Dumper.pm
73049 ____________________________________________________________________________
73050 [ 18512] By: jhi                                   on 2003/01/17  21:00:15
73051         Log: EPOC perl address updates.
73052      Branch: perl
73053            ! README.epoc
73054 ____________________________________________________________________________
73055 [ 18511] By: jhi                                   on 2003/01/17  20:23:42
73056         Log: Upgrade to Digest 1.01.
73057      Branch: perl
73058            ! lib/Digest.pm
73059 ____________________________________________________________________________
73060 [ 18510] By: jhi                                   on 2003/01/17  19:53:37
73061         Log: Typo fixes from jmc@prioris.mini.pw.edu.pl (from openbsd.bugs)
73062      Branch: perl
73063            ! utils/libnetcfg.PL
73064 ____________________________________________________________________________
73065 [ 18509] By: jhi                                   on 2003/01/17  19:45:11
73066         Log: Upgrade to Digest::MD5 2.22.
73067      Branch: perl
73068            ! ext/Digest/MD5/Changes ext/Digest/MD5/MD5.pm
73069            ! ext/Digest/MD5/MD5.xs ext/Digest/MD5/README
73070            ! ext/Digest/MD5/t/files.t
73071 ____________________________________________________________________________
73072 [ 18508] By: merijn                                on 2003/01/17  14:12:53
73073         Log: Subject: Re: 18457 on cygwin/20030113
73074              From: Nick Ing-Simmons <nick.ing-simmons@elixent.com>
73075              Date: Fri, 17 Jan 2003 15:10:34 +0000
73076              Message-Id: <20030117151034.2651.3@bactrian.elixent.com>
73077      Branch: perl
73078            ! t/io/tell.t
73079 ____________________________________________________________________________
73080 [ 18504] By: jhi                                   on 2003/01/17  13:21:51
73081         Log: Integrate from perlio:
73082              [ 18476]
73083              Remove workaround for :stdio layer bug now fixed
73084              (Fixes #18975)
73085      Branch: perl
73086           !> pp_sys.c
73087 ____________________________________________________________________________
73088 [ 18502] By: jhi                                   on 2003/01/16  22:53:23
73089         Log: Integrate from maint-5.6:
73090              [ 18477]
73091              search utility doesn't skip exe/lib/pdb files properly on windows
73092      Branch: perl
73093           !> win32/bin/search.pl
73094 ____________________________________________________________________________
73095 [ 18501] By: rgs                                   on 2003/01/16  21:28:42
73096         Log: Subject: Re: [perl #19977] unlocalized $_ in File::Find clobbers upstream $_
73097              From: "Jos I. Boumans" <kane@dwim.org>
73098              Date: Thu, 16 Jan 2003 14:04:48 +0100
73099              Message-ID: <3E26ADF0.6010605@dwim.org>
73100              (with test tweaks)
73101      Branch: perl
73102            ! lib/File/Find.pm lib/File/Find/t/find.t
73103 ____________________________________________________________________________
73104 [ 18500] By: rgs                                   on 2003/01/16  21:17:14
73105         Log: Integrate #18447 from maint-5.8 :
73106              test.pl-ise t/op/fh.t.
73107      Branch: perl
73108           !> t/op/fh.t
73109 ____________________________________________________________________________
73110 [ 18499] By: rgs                                   on 2003/01/16  20:58:59
73111         Log: Integrate changes to Attribute::Handlers from maint-5.8
73112              (18404 and 18427).
73113              Subject: [PATCH] Re: Attribute::Handlers phase variance
73114              From: Richard Clamp <richardc@unixbeard.net>
73115              Date: Mon, 9 Dec 2002 11:10:24 +0000
73116              Message-ID: <20021209111024.GA14365@mirth.demon.co.uk>
73117      Branch: perl
73118           !> lib/Attribute/Handlers.pm lib/Attribute/Handlers/t/multi.t
73119 ____________________________________________________________________________
73120 [ 18498] By: rgs                                   on 2003/01/16  20:48:10
73121         Log: Integrate changes #18422 and #18423 from maint-5.8.
73122              18422 :
73123              Third Degree found a read of uninit memory (after setting
73124              grent_size with sysconf(), pwent_size was read).  Also make
73125              the ERANGE/INVARG more consistent.
73126              18423 :
73127              spent_size was still off.  (As far as I can tell
73128              _SC_GETPW_R_SIZE_MAX is supposed to be used also
73129              for spents, not just pwents.)
73130      Branch: perl
73131           !> reentr.c reentr.h reentr.pl
73132 ____________________________________________________________________________
73133 [ 18497] By: rgs                                   on 2003/01/16  20:40:58
73134         Log: Subject: [PATCH] Re: [perl #19393] Bug in Time::localtime?
73135              From: Dave Mitchell <davem@fdgroup.com>
73136              Date: Wed, 1 Jan 2003 21:43:24 +0000
73137              Message-ID: <20030101214324.F12907@fdgroup.com>
73138              (integrated from change #18397 in maint-5.8)
73139      Branch: perl
73140           !> lib/Time/Local.pm lib/Time/Local.t
73141 ____________________________________________________________________________
73142 [ 18496] By: jhi                                   on 2003/01/16  20:36:23
73143         Log: Fix 'use encoding' I/O for code points 0x80..0xFF;
73144              code changes from Inaba Hiroto; test tweaks by jhi.
73145      Branch: perl
73146            + ext/Encode/t/enc_eucjp.t
73147            ! MANIFEST doio.c ext/Encode/encoding.pm ext/Encode/t/enc_utf8.t
73148            ! pp.c sv.c sv.h t/uni/tr_utf8.t
73149 ____________________________________________________________________________
73150 [ 18495] By: jhi                                   on 2003/01/16  20:19:36
73151         Log: It seems the binmode() is needed with UTF-8 locales enabled.
73152      Branch: perl
73153            ! ext/Encode/t/CJKT.t
73154 ____________________________________________________________________________
73155 [ 18494] By: jhi                                   on 2003/01/16  20:11:35
73156         Log: Upgrade to CGI.pm 2.89.
73157      Branch: perl
73158            ! lib/CGI.pm lib/CGI/Carp.pm lib/CGI/Cookie.pm lib/CGI/Pretty.pm
73159            ! lib/CGI/t/carp.t lib/CGI/t/html.t lib/CGI/t/pretty.t
73160 ____________________________________________________________________________
73161 [ 18493] By: jhi                                   on 2003/01/16  20:03:01
73162         Log: Subject: Update for ext/MIME/Base64/
73163              From: Gisle Aas <gisle@ActiveState.com>
73164              Date: 30 Dec 2002 07:34:34 -0800
73165              Message-ID: <lrhecvzfjp.fsf@caliper.activestate.com>
73166      Branch: perl
73167            ! ext/MIME/Base64/Base64.pm ext/MIME/Base64/Changes
73168            ! ext/MIME/Base64/QuotedPrint.pm
73169            ! ext/MIME/Base64/t/quoted-print.t ext/MIME/Base64/t/unicode.t
73170 ____________________________________________________________________________
73171 [ 18492] By: jhi                                   on 2003/01/16  19:56:07
73172         Log: Subject: Update for ext/Digest/MD5/
73173              From: Gisle Aas <gisle@ActiveState.com>
73174              Date: 30 Dec 2002 07:38:16 -0800
73175              Message-ID: <lrd6njzfdj.fsf@caliper.activestate.com>
73176      Branch: perl
73177            ! ext/Digest/MD5/Changes ext/Digest/MD5/MD5.pm
73178            ! ext/Digest/MD5/Makefile.PL ext/Digest/MD5/t/align.t
73179            ! ext/Digest/MD5/t/files.t
73180 ____________________________________________________________________________
73181 [ 18491] By: jhi                                   on 2003/01/16  19:24:10
73182         Log: if (0) the PL_widesyscalls code for now: Sarathy
73183              should take another look to see whether it is really
73184              safe to remove the code, too.
73185      Branch: perl
73186            ! win32/win32.h wince/win32.h
73187 ____________________________________________________________________________
73188 [ 18490] By: jhi                                   on 2003/01/16  01:58:39
73189         Log: Make the locale-induced UTF-8-ification of STD fhs
73190              and the default file open layer explicit (either -C
73191              or PERL_UTF8_LOCALE), instead of implicit (and unasked-for).
73192      Branch: perl
73193            ! embedvar.h gv.c intrpvar.h locale.c mg.c perl.c perlapi.h
73194            ! pod/perlrun.pod pod/perlunicode.pod pod/perluniintro.pod
73195            ! pod/perlvar.pod
73196 ____________________________________________________________________________
73197 [ 18489] By: rgs                                   on 2003/01/15  20:55:00
73198         Log: Subject: [PATCH 5.8.0] perlrun.pod: fix -i examples
73199              From: Brendan O'Dea <bod@debian.org>
73200              Date: Sun, 12 Jan 2003 06:18:32 +1100
73201              Message-ID: <20030111191832.GA19441@londo.c47.org>
73202      Branch: perl
73203            ! pod/perlrun.pod
73204 ____________________________________________________________________________
73205 [ 18488] By: rgs                                   on 2003/01/15  20:51:48
73206         Log: Subject: [PATCH 5.8.0] diagnostics.pm: useful apropos description for splain
73207              From: Brendan O'Dea <bod@debian.org>
73208              Date: Sun, 12 Jan 2003 06:17:30 +1100
73209              Message-ID: <20030111191730.GA19420@londo.c47.org>
73210      Branch: perl
73211            ! lib/diagnostics.pm
73212 ____________________________________________________________________________
73213 [ 18487] By: rgs                                   on 2003/01/15  20:45:14
73214         Log: Add a test case for bug [perl #19545]
73215      Branch: perl
73216            ! t/op/do.t
73217 ____________________________________________________________________________
73218 [ 18486] By: rgs                                   on 2003/01/15  20:34:52
73219         Log: isa() and can() didn't work on magic variables
73220              see Message-Id: <20030114220737.2190ba7c.rgarciasuarez@free.fr>
73221              plus a test case by B. Goldberg
73222      Branch: perl
73223            ! t/op/universal.t universal.c
73224 ____________________________________________________________________________
73225 [ 18485] By: rgs                                   on 2003/01/15  20:10:57
73226         Log: Subject: [PATCH] Re: [perl #19566] Perl 5.8.0 segfault
73227              From: Stephen McCamant <smcc@mit.edu>
73228              Date: Thu, 2 Jan 2003 18:08:23 -0500
73229              Message-ID: <15892.50791.692636.982873@syllepsis.MIT.EDU>
73230              Plus a test by Jarkko
73231              Integrated from changes 18444 and 18446 from maint-5.8
73232      Branch: perl
73233           +> t/op/readline.t
73234           !> MANIFEST pp_hot.c
73235 ____________________________________________________________________________
73236 [ 18484] By: jhi                                   on 2003/01/15  14:09:57
73237         Log: Upgrade to Time::HiRes 1.42.
73238      Branch: perl
73239            + ext/Time/HiRes/fallback/const-c.inc
73240            + ext/Time/HiRes/fallback/const-xs.inc
73241            ! MANIFEST ext/Time/HiRes/Changes ext/Time/HiRes/HiRes.pm
73242            ! ext/Time/HiRes/HiRes.xs ext/Time/HiRes/Makefile.PL
73243 ____________________________________________________________________________
73244 [ 18483] By: jhi                                   on 2003/01/15  00:23:20
73245         Log: Detypo.
73246      Branch: perl
73247            ! ext/Encode/Unicode/Unicode.xs
73248 ____________________________________________________________________________
73249 [ 18482] By: rgs                                   on 2003/01/14  21:41:04
73250         Log: Integrate change #18365 from maint-5.8 :
73251              Doc tweak on the S_ macros.
73252      Branch: perl
73253           !> pod/perlfunc.pod
73254 ____________________________________________________________________________
73255 [ 18481] By: jhi                                   on 2003/01/14  12:40:24
73256         Log: Apparently some stdios have bugs (no! don't tell it is so!)
73257              or there is a corner of stdio that is substandardised.
73258      Branch: perl
73259            ! t/io/tell.t
73260 ____________________________________________________________________________
73261 [ 18480] By: jhi                                   on 2003/01/14  01:25:14
73262         Log: Encode 1.84 broke the subtest #7, further study required.
73263      Branch: perl
73264            ! t/uni/tr_utf8.t
73265 ____________________________________________________________________________
73266 [ 18479] By: jhi                                   on 2003/01/13  23:13:02
73267         Log: Add a test for encoding 'utf8'.
73268      Branch: perl
73269            + ext/Encode/t/enc_utf8.t
73270            ! MANIFEST ext/Encode/MANIFEST
73271 ____________________________________________________________________________
73272 [ 18478] By: jhi                                   on 2003/01/13  23:10:55
73273         Log: Upgrade to Encode 1.84.
73274      Branch: perl
73275            ! ext/Encode/Changes ext/Encode/Encode.pm ext/Encode/Encode.xs
73276            ! ext/Encode/Unicode/Unicode.xs ext/Encode/encoding.pm
73277 ____________________________________________________________________________
73278 [ 18475] By: jhi                                   on 2003/01/13  02:42:47
73279         Log: Integrate from perlio:
73280              [ 18471]
73281              Fix #18711 and add test for it (and indeed tell on write
73282              handles at all !
73283
73284              (#18711 Serious bug of tell() in perl)
73285      Branch: perl
73286           !> perlio.c t/io/tell.t
73287 ____________________________________________________________________________
73288 [ 18474] By: jhi                                   on 2003/01/13  02:41:04
73289         Log: Integrate from perlio:
73290              [ 18470]
73291              Fix #16306 and #16880
73292
73293              (#16306 Big Badda leak in Sockets)
73294              (#16880 Memory leak with IO::Socket in Perl v5.8.0)
73295      Branch: perl
73296           !> perlio.c
73297 ____________________________________________________________________________
73298 [ 18473] By: jhi                                   on 2003/01/13  02:38:33
73299         Log: Integrate perlio #18040 and #18043 (no real changes;
73300              some whitespace changes but ignored them so that Dan's
73301              version of Encode wins)
73302      Branch: perl
73303           !> ext/Encode/Encode.xs
73304 ____________________________________________________________________________
73305 [ 18472] By: jhi                                   on 2003/01/13  01:31:01
73306         Log: Integrate perlio to mainline:
73307              [ 18240]
73308              Avoid eqtime() wiping the file (as suggested by
73309              "Luis G. Uribe C." <GUribe@SoftHome.net>
73310      Branch: perl
73311           !> lib/ExtUtils/Command.pm
73312 ____________________________________________________________________________
73313 [ 18468] By: rgs                                   on 2003/01/09  21:07:44
73314         Log: Subject: [PATCH] VMS perly build tweak
73315              From: "Craig A. Berry" <craigberry@mac.com>
73316              Date: Thu, 9 Jan 2003 14:44:40 -0600
73317              Message-Id: <a05200f03ba4389ff49eb@[172.16.52.1]>
73318      Branch: perl
73319            ! vms/descrip_mms.template
73320 ____________________________________________________________________________
73321 [ 18467] By: rgs                                   on 2003/01/09  21:03:07
73322         Log: Document that ${^TAINT} is read-only.
73323      Branch: perl
73324            ! pod/perlvar.pod
73325 ____________________________________________________________________________
73326 [ 18465] By: rgs                                   on 2003/01/08  22:02:26
73327         Log: Fix the doc for splitpath() in the File::Spec modules :
73328              this function doesn't return undef in any case.
73329      Branch: perl
73330            ! lib/File/Spec.pm lib/File/Spec/Mac.pm lib/File/Spec/OS2.pm
73331            ! lib/File/Spec/Unix.pm lib/File/Spec/Win32.pm
73332 ____________________________________________________________________________
73333 [ 18464] By: rgs                                   on 2003/01/08  21:40:37
73334         Log: Subject: [PATCH] label code in pp_ctl.c
73335              From: Nicholas Clark <nick@unfortu.net>
73336              Date: Thu, 26 Dec 2002 21:19:36 +0000
73337              Message-ID: <20021226211935.GE284@Bagpuss.unfortu.net>
73338              (Integrated from change #18400 from maint-5.8)
73339      Branch: perl
73340           !> pp_ctl.c
73341 ____________________________________________________________________________
73342 [ 18463] By: rgs                                   on 2003/01/08  21:27:49
73343         Log: Subject: [DOCPATCH] hv_store and hv_store_ent
73344              From: Nicholas Clark <nick@unfortu.net>
73345              Date: Wed, 1 Jan 2003 18:17:59 +0000
73346              Message-ID: <20030101181757.GB296@Bagpuss.unfortu.net>
73347              (Integrated from change #18399 from maint-5.8)
73348      Branch: perl
73349           !> hv.c
73350 ____________________________________________________________________________
73351 [ 18462] By: rgs                                   on 2003/01/08  21:24:09
73352         Log: Integrate change #18391 from maint-5.8:
73353              Document the installprefix trick for compiling PASE Perl in AIX.
73354      Branch: perl
73355           !> README.os400
73356 ____________________________________________________________________________
73357 [ 18461] By: rgs                                   on 2003/01/08  21:16:54
73358         Log: Integrate change #18362 from maint-5.8:
73359              Fix [perl #18666] (taking the more conservative approach).
73360      Branch: perl
73361           !> lib/File/Spec/Unix.pm
73362 ____________________________________________________________________________
73363 [ 18460] By: rgs                                   on 2003/01/08  21:14:20
73364         Log: Integrate change #18361 from maint-5.8:
73365              Document that the socketpair tests are unhappy in old SCO,
73366              as per [perl #18537].
73367      Branch: perl
73368           !> pod/perl58delta.pod
73369 ____________________________________________________________________________
73370 [ 18459] By: rgs                                   on 2003/01/08  20:48:19
73371         Log: PerlFAQ sync.
73372      Branch: perl
73373            ! pod/perlfaq.pod pod/perlfaq1.pod pod/perlfaq2.pod
73374            ! pod/perlfaq3.pod pod/perlfaq4.pod pod/perlfaq5.pod
73375            ! pod/perlfaq6.pod pod/perlfaq7.pod pod/perlfaq8.pod
73376            ! pod/perlfaq9.pod
73377 ____________________________________________________________________________
73378 [ 18456] By: hv                                    on 2003/01/07  09:20:22
73379         Log: Subject: [PATCH] %_ (was Re: [PATCH] operation on `PL_na' may be undefined)
73380              From: Nicholas Clark <nick@unfortu.net>
73381              Date: Thu, 26 Dec 2002 21:16:27 +0000
73382              Message-ID: <20021226211626.GD284@Bagpuss.unfortu.net>
73383      Branch: perl
73384            ! doio.c dump.c ext/Data/Dumper/Dumper.xs gv.c op.c pad.c perl.c
73385            ! pp_ctl.c pp_hot.c pp_sort.c pp_sys.c sv.c toke.c universal.c
73386            ! utf8.c
73387 ____________________________________________________________________________
73388 [ 18455] By: hv                                    on 2003/01/07  08:54:38
73389         Log: Subject: [PATCH] integrate more with report_evil_fh
73390              From: Nicholas Clark <nick@unfortu.net>
73391              Date: Thu, 26 Dec 2002 20:56:21 +0000
73392              Message-ID: <20021226205620.GA16584@Bagpuss.unfortu.net>
73393      Branch: perl
73394            ! pp_sys.c
73395 ____________________________________________________________________________
73396 [ 18454] By: hv                                    on 2003/01/07  08:45:54
73397         Log: Integrate podlators-1.25
73398      Branch: perl
73399            ! lib/Pod/Man.pm lib/Pod/t/man.t
73400 ____________________________________________________________________________
73401 [ 18453] By: rgs                                   on 2003/01/06  20:31:43
73402         Log: Change the value of ${^TAINT} : 0 without taint checks,
73403              1 with -T, and -1 with -t or -TU.
73404      Branch: perl
73405            ! mg.c pod/perlvar.pod t/op/taint.t t/run/runenv.t
73406            ! t/run/switcht.t
73407 ____________________________________________________________________________
73408 [ 18451] By: merijn                                on 2003/01/06  06:43:11
73409         Log: Subject: [PATCH perl@18746] VMS test adjustments
73410              Date: Sat, 04 Jan 2003 11:26:00 -0600
73411              From: "Craig A. Berry" <craigberry@mac.com>
73412              Message-ID: <3E171928.1040100@mac.com>
73413      Branch: perl
73414            ! ext/Devel/Peek/Peek.t ext/Filter/t/call.t lib/charnames.t
73415            ! t/run/switchI.t
73416 ____________________________________________________________________________
73417 [ 18441] By: rgs                                   on 2003/01/04  20:06:45
73418         Log: Subject: [DOCPATCH] File::Copy's synopsis
73419              From: Nicholas Clark <nick@unfortu.net>
73420              Date: Wed, 1 Jan 2003 21:09:30 +0000
73421              Message-ID: <20030101210930.GE296@Bagpuss.unfortu.net>
73422      Branch: perl
73423            ! lib/File/Copy.pm
73424 ____________________________________________________________________________
73425 [ 18440] By: rgs                                   on 2003/01/04  16:31:31
73426         Log: Integrate change #18420 from maint-5.8:
73427              Mea culpa: the join() was the string join, not the
73428              ithreads join().
73429      Branch: perl
73430           !> ext/threads/t/join.t
73431 ____________________________________________________________________________
73432 [ 18439] By: rgs                                   on 2003/01/04  15:34:54
73433         Log: Subject: [PATCH] [perl #15184] ExtUtils/t/Embed.t fails with -Duseshrplib -Dlibperl=...
73434              From: Rafael Garcia-Suarez <rgarciasuarez@free.fr>
73435              Date: Fri, 13 Dec 2002 00:54:43 +0100
73436              Message-Id: <20021213005443.3077a229.rgarciasuarez@free.fr>
73437              Same as change 18403 for maint-5.8 branch
73438      Branch: perl
73439            ! lib/ExtUtils/t/Embed.t
73440 ____________________________________________________________________________
73441 [ 18438] By: rgs                                   on 2003/01/04  15:24:22
73442         Log: Subject: Re: [PATCH] Tiny nits in perlre.pod
73443              From: andreas.koenig@anima.de (Andreas J. Koenig)
73444              Date: Fri, 03 Jan 2003 00:57:15 +0100
73445              Message-ID: <m33cob14x0.fsf@k242.linux.bogus>
73446      Branch: perl
73447            ! pod/perlre.pod
73448 ____________________________________________________________________________
73449 [ 18435] By: jhi                                   on 2003/01/04  14:36:08
73450         Log: The problems.t is back.
73451      Branch: perl
73452            ! MANIFEST
73453 ____________________________________________________________________________
73454 [ 18434] By: sky                                   on 2003/01/04  07:43:50
73455         Log: Forgot to add problems.t with change #18419
73456      Branch: perl
73457            + ext/threads/t/problems.t
73458 ____________________________________________________________________________
73459 [ 18432] By: jhi                                   on 2003/01/04  04:48:30
73460         Log: One more (or, rather, less) //.
73461      Branch: perl
73462            ! ext/threads/threads.xs
73463 ____________________________________________________________________________
73464 [ 18431] By: jhi                                   on 2003/01/04  04:39:01
73465         Log: Integrate from maintperl:
73466              [ 18430]
73467              // is still not portable C commentary.
73468      Branch: perl
73469           !> ext/threads/threads.xs
73470 ____________________________________________________________________________
73471 [ 18425] By: jhi                                   on 2003/01/04  03:37:04
73472         Log: Until Arthur really adds the problems.t.
73473      Branch: perl
73474            ! MANIFEST
73475 ____________________________________________________________________________
73476 [ 18421] By: sky                                   on 2003/01/04  01:27:55
73477         Log: Fix long standing memory leak with pop and shift!
73478      Branch: perl
73479            ! ext/threads/shared/shared.xs
73480 ____________________________________________________________________________
73481 [ 18419] By: sky                                   on 2003/01/03  23:45:34
73482         Log: Fixes bug #15273, the return of the object caused
73483              the stash of the object to be cloned, cloning the entire syntax
73484              tree and all lexicals in there creating danglning copies to the
73485              object. (Pararell but unlinked STASH tree).
73486              This adds a new flag, when set it will use STASHES from the
73487              thread we are joining into avoiding the problem.
73488      Branch: perl
73489            ! MANIFEST ext/threads/threads.xs sv.c sv.h
73490 ____________________________________________________________________________
73491 [ 18417] By: sky                                   on 2003/01/03  18:16:46
73492         Log: Fake what context we are running in for CLONE and DESTROY so
73493              threads->tid() returns the correct value.
73494              This is reported as bug #10046
73495      Branch: perl
73496            ! ext/threads/t/basic.t ext/threads/threads.xs
73497 ____________________________________________________________________________
73498 [ 18413] By: sky                                   on 2003/01/03  15:15:14
73499         Log: Change pp_lock to take a reference instead of a
73500              scalar since it wouldn't fork for the HELEM/AELEM
73501              case. This was reported in bug #10045
73502      Branch: perl
73503            ! ext/threads/shared/t/hv_refs.t opcode.h opcode.pl opnames.h
73504 ____________________________________________________________________________
73505 [ 18412] By: hv                                    on 2003/01/03  11:14:51
73506         Log: Integrate from maint-5.8 #18348:
73507              Make Math::Trig a little bit more better behaved module citizen.
73508      Branch: perl
73509           !> lib/Math/Trig.pm
73510 ____________________________________________________________________________
73511 [ 18411] By: hv                                    on 2003/01/03  11:11:09
73512         Log: Subject: Re: [perl #19061] 'goto' confuses 'redo'
73513              From: Stephen McCamant <smcc@mit.edu>
73514              Date: Sun, 22 Dec 2002 22:09:51 -0500
73515              Message-ID: <15878.32383.94274.950128@syllepsis.MIT.EDU>
73516      Branch: perl
73517            ! pp_ctl.c
73518 ____________________________________________________________________________
73519 [ 18410] By: hv                                    on 2003/01/03  11:06:40
73520         Log: Subject: new flag SvPADSTALE
73521              From: Dave Mitchell <davem@fdgroup.com>
73522              Date: Thu, 19 Dec 2002 19:00:21 +0000
73523              Message-ID: <20021219190021.D9530@fdgroup.com>
73524      Branch: perl
73525            ! dump.c scope.c sv.h
73526 ____________________________________________________________________________
73527 [ 18409] By: hv                                    on 2003/01/03  11:05:09
73528         Log: Subject: remove flag SvPADBUSY
73529              From: Dave Mitchell <davem@fdgroup.com>
73530              Date: Thu, 19 Dec 2002 18:55:43 +0000
73531              Message-ID: <20021219185543.C9530@fdgroup.com>
73532      Branch: perl
73533            ! dump.c ext/Devel/Peek/Peek.t pad.c scope.c sv.h
73534 ____________________________________________________________________________
73535 [ 18408] By: hv                                    on 2003/01/03  10:56:54
73536         Log: Subject: win32_msgwait() problem
73537              From: Gurusamy Sarathy <gsar@ActiveState.com>
73538              Date: Fri, 13 Dec 2002 17:31:59 -0800
73539              Message-Id: <200212140132.gBE1Vxp02090@smtp3.ActiveState.com>
73540      Branch: perl
73541            ! win32/win32.c
73542 ____________________________________________________________________________
73543 [ 18407] By: hv                                    on 2003/01/03  10:30:05
73544         Log: Subject: Re: [perl #18257] Attempt to free unreferenced scalar (in 5 lines)
73545              From: hv@crypt.org
73546              Date: Thu, 02 Jan 2003 17:16:04 +0000
73547              Message-Id: <200301021716.h02HG5809404@crypt.compulink.co.uk>
73548      Branch: perl
73549            ! sv.c
73550 ____________________________________________________________________________
73551 [ 18406] By: sky                                   on 2003/01/03  08:23:16
73552         Log: Under darwin 6.0+ (MacOSX 10.2) we have threadsafe
73553              libc_r functions.
73554      Branch: perl
73555            ! hints/darwin.sh
73556 ____________________________________________________________________________
73557 [ 18393] By: merijn                                on 2003/01/02  19:41:29
73558         Log: Subject: [PATCH perl-5.8/win32/makefile.mk] Re: Smoke [5.8.0] 18389 FAIL(Fm) MSWin32 5.0 Service Pack 3 (x86/1 cpu)
73559              Date: Thu, 2 Jan 2003 19:02:21 +0100
73560              Message-ID: <200301021902.22444.abe@ztreet.demon.nl>
73561              From: abe@ztreet.demon.nl (Abe Timmerman)
73562      Branch: perl
73563            ! win32/makefile.mk
73564 ____________________________________________________________________________
73565 [ 18390] By: merijn                                on 2003/01/02  07:32:00
73566         Log: Use a more likely location for the perl binary
73567      Branch: perl
73568            ! Porting/genlog
73569 ____________________________________________________________________________
73570 [ 18378] By: gsar                                  on 2002/12/31  04:07:56
73571         Log: integrate change#18377 from maint-5.6 branch
73572
73573              change#17566 needs to be more defensive about win32_dup2()
73574              itself calling SetStdHandle() (at least MSVCRT does this)
73575      Branch: perl
73576           !> win32/win32.c
73577 ____________________________________________________________________________
73578 [ 18376] By: hv                                    on 2002/12/31  02:02:17
73579         Log: Update Changes
73580      Branch: perl
73581            ! Changes patchlevel.h
73582 ____________________________________________________________________________
73583 [ 18374] By: hv                                    on 2002/12/30  03:32:22
73584         Log: Remove duplicate entry
73585      Branch: perl
73586            ! MANIFEST
73587 ____________________________________________________________________________
73588 [ 18373] By: hv                                    on 2002/12/30  03:19:17
73589         Log: Subject: [perl #19343] perlfunc.pod patch for stat() and lstat()
73590              From: Dave Paris (via RT) <perlbug-followup@perl.org>
73591              Date: 22 Dec 2002 05:15:14 -0000
73592              Message-Id: <rt-19343-46041.7.82970696202895@bugs6.perl.org>
73593      Branch: perl
73594            ! pod/perlfunc.pod
73595 ____________________________________________________________________________
73596 [ 18372] By: hv                                    on 2002/12/30  03:13:42
73597         Log: Subject: [PATCH lib/AutoSplit.pm] Holding filehandle open
73598              From: Michael G Schwern <schwern@pobox.com>
73599              Date: Sat, 21 Dec 2002 19:29:41 -0800
73600              Message-ID: <20021222032941.GD24887@blackrider.schwern.org>
73601      Branch: perl
73602            ! lib/AutoSplit.pm
73603 ____________________________________________________________________________
73604 [ 18371] By: hv                                    on 2002/12/30  03:08:12
73605         Log: Subject: [PATCH] Re: [perl #19330] Uneffective increment of $\
73606              From: Rafael Garcia-Suarez <rgarciasuarez@free.fr>
73607              Date: Fri, 27 Dec 2002 16:14:24 +0100
73608              Message-Id: <20021227161424.17234e3c.rgarciasuarez@free.fr>
73609      Branch: perl
73610            ! mg.c t/op/magic.t
73611 ____________________________________________________________________________
73612 [ 18358] By: gsar                                  on 2002/12/28  03:30:49
73613         Log: save_re_context() was not saving many regexec.c state
73614              variables, resulting in various reentrancy problems when
73615              the swatches were autoloaded by perl in the midst of a
73616              match
73617      Branch: perl
73618            ! regcomp.c
73619 ____________________________________________________________________________
73620 [ 18357] By: gsar                                  on 2002/12/28  02:16:51
73621         Log: silence another signed/unsigned mismatch warning
73622      Branch: perl
73623            ! op.c
73624 ____________________________________________________________________________
73625 [ 18356] By: gsar                                  on 2002/12/28  02:08:23
73626         Log: fix signed/unsigned mismatch warning from change#18266
73627      Branch: perl
73628            ! regcomp.c
73629 ____________________________________________________________________________
73630 [ 18355] By: gsar                                  on 2002/12/28  02:05:14
73631         Log: these variables are not in use anywhere since 5.8.0
73632      Branch: perl
73633            ! embedvar.h perlapi.h sv.c thrdvar.h
73634 ____________________________________________________________________________
73635 [ 18354] By: ams                                   on 2002/12/26  03:54:09
73636         Log: Subject: [PATCH] docpatch for cv.h
73637              From: Nicholas Clark <nick@unfortu.net>
73638              Date: Wed, 25 Dec 2002 21:01:04 +0000
73639              Message-Id: <20021225210102.GA284@Bagpuss.unfortu.net>
73640      Branch: perl
73641            ! cv.h
73642 ____________________________________________________________________________
73643 [ 18351] By: hv                                    on 2002/12/25  02:29:17
73644         Log: #18345 was still broken; should be fixed now.
73645      Branch: perl
73646            ! sv.c
73647 ____________________________________________________________________________
73648 [ 18350] By: merijn                                on 2002/12/24  05:26:40
73649         Log: Removal of duplicate comment block
73650
73651              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
73652              Subject: Re: [perl #19306] Sys::Syslog issues.
73653              Date: Mon, 23 Dec 2002 15:25:51 -0800
73654              Message-ID: </t5B+gzkg6DR092yn@efn.org>
73655      Branch: perl
73656            ! ext/Sys/Syslog/Syslog.pm
73657 ____________________________________________________________________________
73658 [ 18346] By: hv                                    on 2002/12/23  06:14:22
73659         Log: integrate maint-5.8 #18301
73660      Branch: perl
73661           !> lib/perl5db.pl
73662 ____________________________________________________________________________
73663 [ 18345] By: hv                                    on 2002/12/23  06:01:17
73664         Log: more on #18344.
73665      Branch: perl
73666            ! sv.c
73667 ____________________________________________________________________________
73668 [ 18344] By: hv                                    on 2002/12/23  05:56:43
73669         Log: more on #18312: sv.c:ss_dup()
73670      Branch: perl
73671            ! sv.c
73672 ____________________________________________________________________________
73673 [ 18343] By: hv                                    on 2002/12/23  05:47:17
73674         Log: Subject: [perl #19153] Term::Complete (the argument of stty)
73675              From: OKAIE Yutaka (via RT) <perlbug-followup@perl.org>
73676              Date: 15 Dec 2002 13:45:23 -0000
73677              Message-Id: <rt-19153-45441.1.2145712923207@bugs6.perl.org>
73678      Branch: perl
73679            ! lib/Term/Complete.pm
73680 ____________________________________________________________________________
73681 [ 18342] By: hv                                    on 2002/12/23  05:27:25
73682         Log: Subject: [perl #18544] Patch included to fix problem.
73683              From: Richard Kandarian <richard.kandarian@lanl.gov>
73684              Date: Thu, 21 Nov 2002 08:00:20 -0700
73685              (from RT)
73686      Branch: perl
73687            ! regexec.c
73688 ____________________________________________________________________________
73689 [ 18341] By: hv                                    on 2002/12/23  05:08:49
73690         Log: Subject: [PATCH] operation on `PL_na' may be undefined
73691              From: Nicholas Clark <nick@unfortu.net>
73692              Date: Tue, 10 Dec 2002 19:59:18 +0000
73693              Message-ID: <20021210195917.GJ288@Bagpuss.unfortu.net>
73694      Branch: perl
73695            ! universal.c
73696 ____________________________________________________________________________
73697 [ 18340] By: hv                                    on 2002/12/23  05:04:29
73698         Log: Subject: [PATCH] 2% speedup (pp_entersub needs to go on a diet)
73699              From: Nicholas Clark <nick@unfortu.net>
73700              Date: Tue, 10 Dec 2002 18:55:28 +0000
73701              Message-ID: <20021210185527.GG288@Bagpuss.unfortu.net>
73702      Branch: perl
73703            ! pp_hot.c
73704 ____________________________________________________________________________
73705 [ 18339] By: hv                                    on 2002/12/23  04:39:48
73706         Log: Integrate Time::HiRes v1.39 (for VMS build tweak)
73707      Branch: perl
73708            ! ext/Time/HiRes/Changes ext/Time/HiRes/HiRes.pm
73709            ! ext/Time/HiRes/Makefile.PL
73710 ____________________________________________________________________________
73711 [ 18338] By: hv                                    on 2002/12/23  03:43:09
73712         Log: Subject: [PATCH] read permissions for h2ph-generated files
73713              From: Slaven Rezic <slaven.rezic@berlin.de>
73714              Date: Fri, 22 Nov 2002 14:49:14 +0100 (CET)
73715              Message-Id: <200211221349.gAMDnEAK014033@vran.herceg.de>
73716      Branch: perl
73717            ! utils/h2ph.PL
73718 ____________________________________________________________________________
73719 [ 18337] By: hv                                    on 2002/12/23  03:38:59
73720         Log: handy hint: getting a perforce change as a usable patch
73721      Branch: perl
73722            ! Porting/repository.pod
73723 ____________________________________________________________________________
73724 [ 18336] By: hv                                    on 2002/12/23  03:36:26
73725         Log: Reverse #18285, for reasons given in:
73726              Subject: Re: Precedence of ? :
73727              From: hv@crypt.org
73728              Date: Fri, 20 Dec 2002 00:35:27 +0000
73729              Message-Id: <200212200035.gBK0ZRm29309@crypt.compulink.co.uk>
73730      Branch: perl
73731            ! perly.c perly.y perly_c.diff pod/perldelta.pod t/op/cond.t
73732            ! vms/perly_c.vms
73733 ____________________________________________________________________________
73734 [ 18335] By: gsar                                  on 2002/12/18  23:12:14
73735         Log: my_fflush_all() wasn't doing the right thing under useperlio
73736              on many platforms
73737      Branch: perl
73738            ! util.c
73739 ____________________________________________________________________________
73740 [ 18334] By: merijn                                on 2002/12/18  06:48:11
73741         Log: AIX compiler version updates
73742      Branch: perl
73743            ! README.aix
73744 ____________________________________________________________________________
73745 [ 18332] By: gsar                                  on 2002/12/18  03:20:27
73746         Log: $Config{prefixexp} was set incorrectly on windows
73747      Branch: perl
73748            ! win32/config.bc win32/config.gc win32/config.vc
73749            ! win32/config.vc64
73750 ____________________________________________________________________________
73751 [ 18330] By: gsar                                  on 2002/12/18  02:32:20
73752         Log: remove CRs from a couple of files (these show up as CRCRLF
73753              on windows)
73754      Branch: perl
73755            ! jpl/JNI/JNI.xs jpl/JNI/Makefile.PL
73756 ____________________________________________________________________________
73757 [ 18328] By: gsar                                  on 2002/12/18  02:27:10
73758         Log: fix for GPF in C<print Win32::GetFullPathName('\\\\host\share')>
73759      Branch: perl
73760            ! win32/win32.c
73761 ____________________________________________________________________________
73762 [ 18327] By: gsar                                  on 2002/12/18  02:08:12
73763         Log: windows: support for large files
73764
73765              note that this change will break binary compatibility with the
73766              default 5.8.0 build options; nevertheless I think it is worth
73767              having in 5.8.1 (people who want the compatibility can disable
73768              the option in the makefile)
73769      Branch: perl
73770            ! ext/Devel/DProf/DProf.xs ext/POSIX/POSIX.xs
73771            ! ext/PerlIO/scalar/scalar.xs ext/PerlIO/via/via.xs iperlsys.h
73772            ! pp_sys.c win32/Makefile win32/config.bc win32/config.gc
73773            ! win32/config.vc win32/config.vc64 win32/config_H.bc
73774            ! win32/config_H.gc win32/config_H.vc win32/config_H.vc64
73775            ! win32/config_sh.PL win32/makefile.mk win32/perlhost.h
73776            ! win32/win32.c win32/win32iop.h
73777 ____________________________________________________________________________
73778 [ 18326] By: gsar                                  on 2002/12/18  00:57:46
73779         Log: Win32.pod update
73780      Branch: perl
73781            ! lib/Win32.pod
73782 ____________________________________________________________________________
73783 [ 18325] By: gsar                                  on 2002/12/18  00:42:45
73784         Log: PerlIO_{stdoutf,vprintf} don't exist, should be PerlSIO_*
73785      Branch: perl
73786            ! XSUB.h
73787 ____________________________________________________________________________
73788 [ 18324] By: gsar                                  on 2002/12/18  00:34:08
73789         Log: windows: avoid prompting under some shells during $(MAKE) distclean
73790      Branch: perl
73791            ! win32/Makefile win32/makefile.mk
73792 ____________________________________________________________________________
73793 [ 18323] By: gsar                                  on 2002/12/18  00:17:29
73794         Log: PerlSIO_stderr et al are not functions
73795      Branch: perl
73796            ! XSUB.h
73797 ____________________________________________________________________________
73798 [ 18321] By: gsar                                  on 2002/12/17  22:56:25
73799         Log: integrate change#18320 from maint-5.6 branch
73800
73801              C<require '\foo\bar.pm'> fails on windows if not running
73802              from the root directory; for a test case, see:
73803
73804              http://bugs.activestate.com/show_bug.cgi?id=19317
73805
73806              this was due to not recognizing \foo\bar.pm as an absolute
73807              path name
73808      Branch: perl
73809           !> util.h
73810 ____________________________________________________________________________
73811 [ 18319] By: hv                                    on 2002/12/17  10:08:24
73812         Log: Whoops, these are the changes supposed to be in #18318.
73813      Branch: perl
73814            ! pad.c t/op/eval.t
73815 ____________________________________________________________________________
73816 [ 18318] By: hv                                    on 2002/12/17  03:12:18
73817         Log: Subject: Re: [PATCH] Re: [perl #19022] POSIX failures in bleadperl
73818              From: Nicholas Clark <nick@unfortu.net>
73819              Date: Sat, 14 Dec 2002 23:13:37 +0000
73820              Message-ID: <20021214231337.GF306@Bagpuss.unfortu.net>
73821      Branch: perl
73822            ! pad.c t/op/eval.t
73823 ____________________________________________________________________________
73824 [ 18317] By: hv                                    on 2002/12/17  02:58:12
73825         Log: Integrate Net::Ping v2.26. (lib/Net/Ping/t/450_service.t should work now)
73826      Branch: perl
73827            + lib/Net/Ping/t/410_syn_host.t
73828            ! MANIFEST lib/Net/Ping.pm lib/Net/Ping/t/400_ping_syn.t
73829            ! lib/Net/Ping/t/450_service.t
73830 ____________________________________________________________________________
73831 [ 18316] By: hv                                    on 2002/12/17  02:17:16
73832         Log: Subject: [PATCH 5.8.1 @oldish-18156] build
73833              From: Ilya Zakharevich <ilya@Math.Berkeley.EDU>
73834              Date: Fri, 13 Dec 2002 13:54:05 -0800
73835              Message-ID: <20021213215404.GA2597@math.berkeley.edu>
73836      Branch: perl
73837            ! os2/os2.c t/run/runenv.t
73838 ____________________________________________________________________________
73839 [ 18315] By: hv                                    on 2002/12/17  02:03:58
73840         Log: Subject: [PATCH 5.8.1 @oldish-18156] deprecated warnings
73841              From: Ilya Zakharevich <ilya@Math.Berkeley.EDU>
73842              Date: Fri, 13 Dec 2002 13:47:08 -0800
73843              Message-ID: <20021213214707.GA2588@math.berkeley.edu>
73844      Branch: perl
73845            ! lib/constant.t lib/fields.t
73846 ____________________________________________________________________________
73847 [ 18314] By: hv                                    on 2002/12/17  01:58:32
73848         Log: Subject: [PATCH 5.8.1 @oldish-18156] Morphing to PM on OS/2
73849              From: Ilya Zakharevich <ilya@Math.Berkeley.EDU>
73850              Date: Fri, 13 Dec 2002 14:00:48 -0800
73851              Message-ID: <20021213220048.GA2606@math.berkeley.edu>
73852      Branch: perl
73853            ! os2/OS2/Process/t/os2_process.t os2/os2.c
73854 ____________________________________________________________________________
73855 [ 18313] By: hv                                    on 2002/12/17  01:54:19
73856         Log: Subject: [PATCH 5.8.1 @oldish-18156] OS/2 REXX interface assuming Object REXX
73857              From: Ilya Zakharevich <ilya@Math.Berkeley.EDU>
73858              Date: Fri, 13 Dec 2002 14:08:00 -0800
73859              Message-ID: <20021213220800.GA2625@math.berkeley.edu>
73860      Branch: perl
73861            ! os2/OS2/REXX/REXX.xs
73862 ____________________________________________________________________________
73863 [ 18312] By: hv                                    on 2002/12/17  01:43:28
73864         Log: Subject: [Fwd: Patch for perl utf8-related bug]
73865              From: Richard Hitt <rbh00@utsglobal.com>
73866              Date: Fri, 06 Dec 2002 16:47:42 -0800
73867              [perl #18932]
73868      Branch: perl
73869            ! embed.fnc embed.h global.sym perl.h proto.h regcomp.c scope.c
73870            ! scope.h
73871 ____________________________________________________________________________
73872 [ 18311] By: hv                                    on 2002/12/17  00:52:05
73873         Log: Subject: [PATCH] Re: [jhi@iki.fi: enums are not nums]
73874              From: Dave Mitchell <davem@fdgroup.com>
73875              Date: Sat, 14 Dec 2002 19:16:49 +0000
73876              Message-ID: <20021214191649.B3992@fdgroup.com>
73877      Branch: perl
73878            ! embed.fnc pad.c pad.h pod/perlintern.pod proto.h
73879 ____________________________________________________________________________
73880 [ 18310] By: hv                                    on 2002/12/17  00:51:46
73881         Log: regen-headers to get new API docs from #18306
73882      Branch: perl
73883            ! pod/perlapi.pod
73884 ____________________________________________________________________________
73885 [ 18308] By: rgs                                   on 2002/12/16  22:06:23
73886         Log: Subject: [PATCH] Re: [perl #19017] lexical "my" variables not visible in debugger "x" command
73887              From: peter@PSDT.com (Peter Scott)
73888              Date: 12 Dec 2002 18:13:17 -0000
73889              Message-ID: <20021212181317.50538.qmail@onion.perl.org>
73890              (fix bug [perl #19058])
73891      Branch: perl
73892            ! lib/perl5db.pl
73893 ____________________________________________________________________________
73894 [ 18307] By: rgs                                   on 2002/12/16  22:01:14
73895         Log: Subject: [PATCH] Re: [perl #19017] lexical "my" variables not visible in debugger "x" command
73896              From: Dave Mitchell <davem@fdgroup.com>
73897              Date: Thu, 12 Dec 2002 23:42:35 +0000
73898              Message-ID: <20021212234235.A29245@fdgroup.com>
73899              and
73900              Date: Sat, 14 Dec 2002 19:16:38 +0000
73901              Message-ID: <20021214191638.A3992@fdgroup.com>
73902      Branch: perl
73903            ! embed.fnc embed.h pod/perlfunc.pod pod/perlintern.pod pp_ctl.c
73904            ! proto.h t/op/eval.t
73905 ____________________________________________________________________________
73906 [ 18306] By: sky                                   on 2002/12/16  21:41:40
73907         Log: More documentation of obscure flags is good, even if the
73908              documentation might be not so good. Atleast it's not false!
73909              Documents the flags one can give to perl_clone
73910      Branch: perl
73911            ! sv.c
73912 ____________________________________________________________________________
73913 [ 18305] By: merijn                                on 2002/12/16  10:53:19
73914         Log: Enough changes to Configure and metaunits warrant an update.
73915              Several small changes and three additions
73916      Branch: perl
73917            ! Porting/Glossary
73918 ____________________________________________________________________________
73919 [ 18304] By: merijn                                on 2002/12/16  10:44:57
73920         Log: Redone #18011 from metaunits
73921      Branch: perl
73922            ! Configure
73923 ____________________________________________________________________________
73924 [ 18302] By: rgs                                   on 2002/12/14  22:34:25
73925         Log: Subject: Proper fix for CvOUTSIDE weak refcounting
73926              From: Dave Mitchell <davem@fdgroup.com>
73927              Date: Tue, 10 Dec 2002 01:26:44 +0000
73928              Message-ID: <20021210012644.A7843@fdgroup.com>
73929      Branch: perl
73930            ! cv.h dump.c embed.fnc ext/B/B/Deparse.pm ext/B/defsubs_h.PL
73931            ! ext/Devel/Peek/Peek.t op.c pad.c pod/perlapi.pod
73932            ! pod/perlintern.pod pp_ctl.c sv.c t/op/closure.t
73933 ____________________________________________________________________________
73934 [ 18300] By: rgs                                   on 2002/12/12  20:40:22
73935         Log: Subject: [patch] typo in perlop
73936              From: andreas.koenig@anima.de (Andreas J. Koenig)
73937              Date: Wed, 11 Dec 2002 21:31:14 +0100
73938              Message-ID: <m3k7igjo19.fsf@k242.linux.bogus>
73939      Branch: perl
73940            ! pod/perlop.pod
73941 ____________________________________________________________________________
73942 [ 18299] By: rgs                                   on 2002/12/12  20:35:29
73943         Log: Integrate from maint-5.8 : changes 18290-1, 18293-5, 18297
73944      Branch: perl
73945           !> ext/POSIX/POSIX.pod ext/POSIX/t/is.t ext/POSIX/t/posix.t
73946           !> pod/perlre.pod pod/perlretut.pod regexec.c t/op/pat.t
73947           !> t/op/subst.t
73948 ____________________________________________________________________________
73949 [ 18298] By: rgs                                   on 2002/12/12  20:00:36
73950         Log: Whitespace and indentation fix in the output of B::Debug.
73951      Branch: perl
73952            ! ext/B/B/Debug.pm
73953 ____________________________________________________________________________
73954 [ 18292] By: gbarr                                 on 2002/12/12  09:23:04
73955         Log: Update to Scalar-List-Utils 1.09
73956      Branch: perl
73957            ! ext/List/Util/ChangeLog ext/List/Util/Util.xs
73958            ! ext/List/Util/lib/List/Util.pm
73959 ____________________________________________________________________________
73960 [ 18287] By: gsar                                  on 2002/12/11  18:53:07
73961         Log: this has been incorrect for a while now, and has changed
73962              again recently
73963      Branch: perl
73964            ! Porting/repository.pod
73965 ____________________________________________________________________________
73966 [ 18285] By: hv                                    on 2002/12/11  10:35:01
73967         Log: Subject: [PATCH] Re: Precedence of ? :
73968              From: Stephen McCamant <smcc@mit.edu>
73969              Date: Tue, 10 Dec 2002 00:57:07 -0500 (EST)
73970              Message-Id: <20021210055707.974F073CCC@syllepsis>
73971      Branch: perl
73972            ! perly.c perly.y perly_c.diff pod/perldelta.pod t/op/cond.t
73973            ! vms/perly_c.vms
73974 ____________________________________________________________________________
73975 [ 18284] By: hv                                    on 2002/12/11  10:21:12
73976         Log: One more email address for #18282
73977      Branch: perl
73978            ! lib/Pod/Perldoc.pm
73979 ____________________________________________________________________________
73980 [ 18283] By: hv                                    on 2002/12/11  10:18:07
73981         Log: More email addresses for #18282
73982      Branch: perl
73983            ! hints/aix.sh hints/apollo.sh hints/epix.sh hints/freebsd.sh
73984            ! hints/irix_6.sh hints/isc.sh hints/isc_2.sh hints/machten.sh
73985            ! hints/machten_2.sh hints/openbsd.sh hints/os2.sh
73986            ! hints/os390.sh hints/sunos_4_1.sh hints/titanos.sh
73987            ! hints/ultrix_4.sh hints/umips.sh hints/utekv.sh
73988 ____________________________________________________________________________
73989 [ 18282] By: hv                                    on 2002/12/11  10:16:05
73990         Log: Subject: Remove stale e-mail addresses
73991              From: Andy Dougherty <doughera@lafayette.edu>
73992              Date: Wed, 20 Nov 2002 09:40:33 -0500 (EST)
73993              Message-ID: <Pine.SOL.4.10.10211200938110.19608-100000@maxwell.phys.lafayette.edu>
73994      Branch: perl
73995            ! Porting/pumpkin.pod configure.gnu
73996            ! ext/ODBM_File/hints/dec_osf.pl ext/ODBM_File/hints/hpux.pl
73997            ! ext/ODBM_File/hints/ultrix.pl ext/SDBM_File/sdbm/README.too
73998            ! lib/File/Spec.pm perly.fixer pod/checkpods.PL
73999 ____________________________________________________________________________
74000 [ 18281] By: hv                                    on 2002/12/11  09:59:31
74001         Log: Integrate from maint-5.8 #18156, #18218.
74002      Branch: perl
74003           !> lib/Unicode/UCD.t lib/unicore/Category.pl
74004           !> lib/unicore/SpecialCasing.txt lib/unicore/UnicodeData.txt
74005           !> lib/unicore/lib/C.pl lib/unicore/lib/Cf.pl
74006           !> lib/unicore/lib/Cntrl.pl lib/unicore/lib/Graph.pl
74007           !> lib/unicore/lib/P.pl lib/unicore/lib/Pd.pl
74008           !> lib/unicore/lib/Print.pl lib/unicore/lib/Punct.pl t/op/pack.t
74009 ____________________________________________________________________________
74010 [ 18280] By: rgs                                   on 2002/12/10  21:30:10
74011         Log: Integrate from the maint-5.8/ branch :
74012              changes 18219, 18236, 18242-3, 18247-8,
74013              18253-5, 18257, 18273-6
74014      Branch: perl
74015           +> t/op/lc_user.t
74016           !> MANIFEST hints/irix_6.sh lib/File/Copy.pm lib/utf8_heavy.pl
74017           !> pod/perldiag.pod pod/perlguts.pod pod/perlsec.pod
74018           !> pod/perlunicode.pod pp.c t/op/lc.t t/op/pat.t t/op/split.t
74019           !> t/uni/tr_utf8.t
74020 ____________________________________________________________________________
74021 [ 18279] By: merijn                                on 2002/12/10  14:10:03
74022         Log: Subject: Re: ANSIColor 1.06 released
74023              Version bump only after typo fix to sync with CPAN
74024      Branch: perl
74025            ! lib/Term/ANSIColor.pm
74026 ____________________________________________________________________________
74027 [ 18277] By: merijn                                on 2002/12/10  08:46:05
74028         Log: Subject: [PATCH perl@18251] VMS build update
74029              Message-ID: <3DF56BE2.9000300@mac.com>
74030              Date: Mon, 09 Dec 2002 22:21:54 -0600
74031              From: "Craig A. Berry" <craigberry@mac.com>
74032      Branch: perl
74033            ! configure.com ext/Time/HiRes/Makefile.PL
74034            ! vms/descrip_mms.template
74035 ____________________________________________________________________________
74036 [ 18272] By: merijn                                on 2002/12/09  15:31:28
74037         Log: RT#15950
74038
74039              Subject: [PATCH] Typo in Term::ANSIColor
74040              Date: Fri, 2 Aug 2002 14:13:19 -0700 (PDT)
74041              From: "Mr. Nobody" <mrnobo1024  at  yahoo.com>
74042      Branch: perl
74043            ! lib/Term/ANSIColor.pm
74044 ____________________________________________________________________________
74045 [ 18270] By: hv                                    on 2002/12/09  00:25:26
74046         Log: Subject: [perl #18256] xsubpp can make nested comments in C code
74047              From: Nicholas Clark (via RT) <perlbug@perl.org>
74048              Date: 7 Nov 2002 14:58:14 -0000
74049              Message-Id: <rt-18256-41218.19.7625495305233@bugs6.perl.org>
74050      Branch: perl
74051            ! lib/ExtUtils/xsubpp
74052 ____________________________________________________________________________
74053 [ 18269] By: hv                                    on 2002/12/09  00:19:33
74054         Log: Subject: Re: Bug in Filter::Simple
74055              From: Slaven Rezic <slaven.rezic@berlin.de>
74056              Date: 07 Nov 2002 10:01:41 +0100
74057              Message-ID: <87of91u51m.fsf@vran.herceg.de>
74058      Branch: perl
74059            ! ext/Filter/Util/Call/Call.xs ext/Filter/t/call.t
74060 ____________________________________________________________________________
74061 [ 18268] By: hv                                    on 2002/12/09  00:14:58
74062         Log: fix #18266 sprintf format mismatch
74063      Branch: perl
74064            ! regcomp.c
74065 ____________________________________________________________________________
74066 [ 18267] By: hv                                    on 2002/12/09  00:10:09
74067         Log: Subject: Re: [perl #18238] timezone and gmt offset as output by POSIX::strftime()  are sometimes wrong
74068              From: Slaven Rezic <slaven.rezic@berlin.de>
74069              Date: 09 Nov 2002 23:21:16 +0100
74070              Message-ID: <874raqz8o3.fsf@vran.herceg.de>
74071      Branch: perl
74072            ! config_h.SH ext/POSIX/t/posix.t util.c
74073 ____________________________________________________________________________
74074 [ 18266] By: hv                                    on 2002/12/09  00:02:57
74075         Log: Subject: Re: [perl #18107] lc(), uc() and ucfirst() broken inside utf8 regex
74076              From: Abhijit Menon-Sen <ams@wiw.org>
74077              Date: Wed, 6 Nov 2002 19:38:11 +0530
74078              Message-ID: <20021106193811.E20858@lustre.dyn.wiw.org>
74079      Branch: perl
74080            ! regcomp.c t/op/lc.t
74081 ____________________________________________________________________________
74082 [ 18265] By: rgs                                   on 2002/12/08  22:10:45
74083         Log: Subject: Re: [perl #18927] barewords with no errors
74084              From: Abe Timmerman <abe@ztreet.demon.nl>
74085              Date: Sun, 8 Dec 2002 17:12:56 +0100
74086              Message-Id: <200212081712.56102.abe@ztreet.demon.nl>
74087      Branch: perl
74088            ! t/lib/strict/subs
74089 ____________________________________________________________________________
74090 [ 18264] By: rgs                                   on 2002/12/08  22:04:39
74091         Log: Subject: Re: [perl #18165] "0" fails as right-hand argument to ..
74092              From: Slaven Rezic <slaven.rezic@berlin.de>
74093              Date: 30 Nov 2002 00:07:05 +0100
74094              Message-ID: <8765ugnffq.fsf@vran.herceg.de>
74095      Branch: perl
74096            ! pp_ctl.c t/cmd/for.t
74097 ____________________________________________________________________________
74098 [ 18263] By: rgs                                   on 2002/12/08  21:56:13
74099         Log: Subject: Re: [perl #18888] $Exporter::Verbose=1 does not work for testing, $Heavy::Verbose is not setting the value to $Exporter::Verbose
74100              From: Slaven Rezic <slaven.rezic@berlin.de>
74101              Date: 08 Dec 2002 01:31:45 +0100
74102              Message-ID: <874r9pmjv2.fsf@vran.herceg.de>
74103      Branch: perl
74104            ! lib/Exporter/Heavy.pm
74105 ____________________________________________________________________________
74106 [ 18262] By: rgs                                   on 2002/12/08  20:31:42
74107         Log: getservbyport() should accept an empty string as its
74108              proto argument (as does getservbyname()).
74109
74110              Subject: Re: Is this a bug or am I being stupid?
74111              From: Slaven Rezic <slaven.rezic@berlin.de>
74112              Date: 08 Dec 2002 01:54:37 +0100
74113              Message-ID: <87znrhl48i.fsf@vran.herceg.de>
74114      Branch: perl
74115            ! pp_sys.c
74116 ____________________________________________________________________________
74117 [ 18261] By: rgs                                   on 2002/12/08  20:17:37
74118         Log: Change the set of characters that are considered to be
74119              safe in $ENV{TERM} for taint checkings.
74120      Branch: perl
74121            ! taint.c
74122 ____________________________________________________________________________
74123 [ 18260] By: rgs                                   on 2002/12/08  20:14:57
74124         Log: Document that $ENV{TERM} may produce taint failures.
74125              Subject: Re: [perl #18717] spurious failures in regression test
74126              From: Slaven Rezic <slaven.rezic@berlin.de>
74127              Date: 29 Nov 2002 22:11:46 +0100
74128              Message-ID: <87hee0nkrx.fsf@vran.herceg.de>
74129      Branch: perl
74130            ! pod/perldiag.pod
74131 ____________________________________________________________________________
74132 [ 18259] By: rgs                                   on 2002/12/08  19:34:34
74133         Log: Subject: [PATCH] Re: [perl #18651] Hash::Util's lock_key() breaks hash
74134              From: Nicholas Clark <nick@unfortu.net>
74135              Date: Mon, 2 Dec 2002 21:48:29 +0000
74136              Message-ID: <20021202214828.GA284@Bagpuss.unfortu.net>
74137      Branch: perl
74138            ! hv.c lib/Hash/Util.t
74139 ____________________________________________________________________________
74140 [ 18251] By: rgs                                   on 2002/12/06  21:27:55
74141         Log: Fix two cases of buffer overflow in the lexer.
74142      Branch: perl
74143            ! t/comp/parser.t toke.c
74144 ____________________________________________________________________________
74145 [ 18250] By: rgs                                   on 2002/12/06  20:44:26
74146         Log: Fix bug #18874, essentially by reverting change #11890.
74147              Add a regression test for it.
74148      Branch: perl
74149            ! lib/English.pm lib/English.t
74150 ____________________________________________________________________________
74151 [ 18249] By: rgs                                   on 2002/12/06  20:42:01
74152         Log: Suppress a compilation warning reported by Jarkko
74153              (variable initialization skipped by goto).
74154      Branch: perl
74155            ! toke.c
74156 ____________________________________________________________________________
74157 [ 18239] By: jhi                                   on 2002/12/03  12:49:01
74158         Log: Fix up #18229.
74159      Branch: perl
74160            ! embedvar.h ext/threads/t/join.t perl.c perlapi.h perlvars.h
74161            ! pod/perlintern.pod
74162 ____________________________________________________________________________
74163 [ 18233] By: rgs                                   on 2002/12/02  20:03:09
74164         Log: Fix bug #18573 : in a double-quoted string, a \c not followed
74165              by any character may corrupt memory due to reading past the
74166              end of the input buffer. Add a new error message corresponding
74167              to this case.
74168      Branch: perl
74169            ! pod/perldiag.pod t/comp/parser.t toke.c
74170 ____________________________________________________________________________
74171 [ 18232] By: rgs                                   on 2002/12/02  19:59:07
74172         Log: Skip test #17 of lib/open.t when useperlio is not defined.
74173      Branch: perl
74174            ! lib/open.t
74175 ____________________________________________________________________________
74176 [ 18231] By: merijn                                on 2002/12/02  16:00:12
74177         Log: Subject: Re: [perl #15129] building a dynamically linked Perl 5.6.1 on HPUX 11.0
74178              Date: Mon, 2 Dec 2002 12:04:40 -0500 (EST)
74179              From: Andy Dougherty <doughera@lafayette.edu>
74180              Message-ID: <Pine.SOL.4.10.10212021200050.24023-100000@maxwell.phys.lafayette.edu>
74181      Branch: perl
74182            ! README.hpux
74183 ____________________________________________________________________________
74184 [ 18230] By: merijn                                on 2002/12/02  15:45:31
74185         Log: $0 modifying part II (HP-UX only)
74186
74187              Date: Sat, 30 Nov 2002 20:16:51 +0200
74188              From: Jarkko Hietaniemi <jhi@iki.fi>
74189              Subject: [PATCH] $0 modifying
74190              Message-ID: <20021130181651.GA5876@kosh.hut.fi>
74191      Branch: perl
74192            ! mg.c
74193 ____________________________________________________________________________
74194 [ 18229] By: merijn                                on 2002/12/02  15:43:16
74195         Log: $0 mofifying part I
74196
74197              Date: Sat, 30 Nov 2002 20:16:51 +0200
74198              From: Jarkko Hietaniemi <jhi@iki.fi>
74199              Subject: [PATCH] $0 modifying
74200              Message-ID: <20021130181651.GA5876@kosh.hut.fi>
74201      Branch: perl
74202            ! ext/threads/t/join.t makedef.pl mg.c perl.c pod/perlvar.pod
74203            ! sv.c t/op/magic.t thread.h
74204 ____________________________________________________________________________
74205 [ 18228] By: hv                                    on 2002/12/02  13:37:59
74206         Log: integrate Pod-Perldoc-3.07. This replaces the original inline perldoc
74207              with a module-driven version, and separates out its docs.
74208      Branch: perl
74209            + lib/Pod/Perldoc.pm lib/Pod/Perldoc/BaseTo.pm
74210            + lib/Pod/Perldoc/GetOptsOO.pm lib/Pod/Perldoc/ToChecker.pm
74211            + lib/Pod/Perldoc/ToMan.pm lib/Pod/Perldoc/ToNroff.pm
74212            + lib/Pod/Perldoc/ToPod.pm lib/Pod/Perldoc/ToRtf.pm
74213            + lib/Pod/Perldoc/ToText.pm lib/Pod/Perldoc/ToTk.pm
74214            + lib/Pod/Perldoc/ToXml.pm lib/Pod/Perldoc/t/checkerbasic.t
74215            + lib/Pod/Perldoc/t/perldocbasic.t lib/Pod/Perldoc/t/textbasic.t
74216            + pod/perldoc.pod
74217            ! MANIFEST utils/perldoc.PL
74218 ____________________________________________________________________________
74219 [ 18226] By: hv                                    on 2002/12/02  12:44:35
74220         Log: missed the new file from #18224
74221      Branch: perl
74222            + lib/Pod/PlainText.pm
74223            ! MANIFEST
74224 ____________________________________________________________________________
74225 [ 18225] By: hv                                    on 2002/12/02  03:09:42
74226         Log: integrate util.c fragment from #18200 to undef SA_RESTART on MacOS
74227      Branch: perl
74228            ! util.c
74229 ____________________________________________________________________________
74230 [ 18224] By: hv                                    on 2002/12/02  02:59:02
74231         Log: Integrate PodParser-1.20, with matching tweaks to lib/Pod/t/latex.t
74232              and lib/Pod/t/utils.t to cater for simpler output text.
74233      Branch: perl
74234            ! lib/Pod/Checker.pm lib/Pod/ParseUtils.pm lib/Pod/Usage.pm
74235            ! lib/Pod/t/latex.t lib/Pod/t/utils.t pod/podselect.PL
74236            ! t/pod/emptycmd.t t/pod/for.t t/pod/headings.t t/pod/include.t
74237            ! t/pod/included.t t/pod/lref.t t/pod/lref.xr
74238            ! t/pod/multiline_items.t t/pod/multiline_items.xr
74239            ! t/pod/nested_items.t t/pod/nested_seqs.t t/pod/oneline_cmds.t
74240            ! t/pod/pod2usage.t t/pod/pod2usage.xr t/pod/poderrs.t
74241            ! t/pod/poderrs.xr t/pod/podselect.t t/pod/podselect.xr
74242            ! t/pod/special_seqs.t t/pod/special_seqs.xr t/pod/testp2pt.pl
74243 ____________________________________________________________________________
74244 [ 18223] By: hv                                    on 2002/12/02  02:46:17
74245         Log: Subject: [PATCH] SvFAKE lexicals in scope for all of the sub
74246              From: Dave Mitchell <davem@fdgroup.com>
74247              Date: Mon, 25 Nov 2002 21:25:33 +0000
74248              Message-ID: <20021125212533.B29157@fdgroup.com>
74249      Branch: perl
74250            ! ext/Devel/Peek/Peek.t pad.c t/op/closure.t
74251 ____________________________________________________________________________
74252 [ 18222] By: hv                                    on 2002/12/02  02:23:28
74253         Log: #18221 broke t/op/eval.t
74254      Branch: perl
74255            ! t/op/eval.t
74256 ____________________________________________________________________________
74257 [ 18221] By: hv                                    on 2002/12/02  02:18:19
74258         Log: integrate 5.8-maint: changes #18174 18187 18189-92 18202 18209 18214-5
74259      Branch: perl
74260           +> ext/POSIX/t/is.t
74261           !> INSTALL MANIFEST README.os2 ext/Fcntl/t/syslfs.t
74262           !> ext/GDBM_File/GDBM_File.pm ext/GDBM_File/Makefile.PL
74263           !> lib/Unicode/UCD.pm lib/Unicode/UCD.t pod/perldiag.pod
74264           !> t/op/eval.t t/op/grep.t t/op/lfs.t t/op/subst.t
74265 ____________________________________________________________________________
74266 [ 18220] By: hv                                    on 2002/12/02  00:58:54
74267         Log: Subject: [PATCH 2nd attempt] allow evals to see the full lexical scope
74268              From: Dave Mitchell <davem@fdgroup.com>
74269              Date: Sun, 24 Nov 2002 22:19:06 +0000
74270              Message-ID: <20021124221906.A25386@fdgroup.com>
74271      Branch: perl
74272            ! cop.h cv.h dump.c embed.fnc embed.h ext/B/B.pm ext/B/B.xs
74273            ! ext/B/B/Bytecode.pm ext/B/B/C.pm ext/B/B/Debug.pm
74274            ! ext/Devel/Peek/Peek.t op.c pad.c pod/perlintern.pod pp_ctl.c
74275            ! pp_hot.c proto.h sv.c sv.h t/op/eval.t toke.c
74276 ____________________________________________________________________________
74277 [ 18217] By: rgs                                   on 2002/11/29  12:11:28
74278         Log: Document the hint constants and where they're used.
74279      Branch: perl
74280            ! ext/re/re.pm lib/File/Basename.pm lib/charnames.pm
74281            ! lib/filetest.pm lib/open.pm lib/overload.pm lib/vmsish.pm
74282            ! perl.h
74283 ____________________________________________________________________________
74284 [ 18216] By: merijn                                on 2002/11/29  10:00:54
74285         Log: 64bit Peek failure on HP-UX 11.00
74286
74287              Subject: Re: Smoke 18188
74288              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
74289              From: Slaven Rezic <slaven.rezic@berlin.de>
74290              Date: 28 Nov 2002 19:25:25 +0100
74291              Message-ID: <877kexsga2.fsf@vran.herceg.de>
74292      Branch: perl
74293            ! ext/Devel/Peek/Peek.t
74294 ____________________________________________________________________________
74295 [ 18203] By: jhi                                   on 2002/11/28  14:54:34
74296         Log: Slight beauty tweak.
74297      Branch: perl
74298            ! intrpvar.h
74299 ____________________________________________________________________________
74300 [ 18188] By: hv                                    on 2002/11/27  01:32:52
74301         Log: Subject: Re: [perl #18203] Recursive call in PerlIO_find_layer
74302              From: Slaven Rezic <slaven.rezic@berlin.de>
74303              Date: 03 Nov 2002 10:59:43 +0100
74304              Message-ID: <877kfvnfcg.fsf@vran.herceg.de>
74305      Branch: perl
74306            ! embedvar.h intrpvar.h lib/open.t perlapi.h perlio.c
74307 ____________________________________________________________________________
74308 [ 18186] By: hv                                    on 2002/11/27  00:57:18
74309         Log: Subject: DESTROY called in scalar context ?
74310              From: Rafael Garcia-Suarez <rgarciasuarez@free.fr>
74311              Date: Tue, 29 Oct 2002 22:04:23 +0100
74312              Message-Id: <20021029220423.6f8e6600.rgarciasuarez@free.fr>
74313      Branch: perl
74314            ! sv.c
74315 ____________________________________________________________________________
74316 [ 18185] By: rgs                                   on 2002/11/26  21:06:48
74317         Log: PerlFAQ sync.
74318      Branch: perl
74319            ! pod/perlfaq.pod pod/perlfaq1.pod pod/perlfaq2.pod
74320            ! pod/perlfaq3.pod pod/perlfaq4.pod pod/perlfaq5.pod
74321            ! pod/perlfaq6.pod pod/perlfaq7.pod pod/perlfaq8.pod
74322            ! pod/perlfaq9.pod
74323 ____________________________________________________________________________
74324 [ 18184] By: rgs                                   on 2002/11/26  20:42:25
74325         Log: Subject: [PATCH] 2 Pod errors in perlop.pod
74326              From: andreas.koenig@anima.de (Andreas J. Koenig)
74327              Date: Mon, 25 Nov 2002 10:21:08 +0100
74328              Message-ID: <m31y5admyj.fsf@k242.linux.bogus>
74329
74330              Plus a few similar POD fixes
74331      Branch: perl
74332            ! pod/perl570delta.pod pod/perl572delta.pod pod/perlop.pod
74333            ! pod/perltie.pod
74334 ____________________________________________________________________________
74335 [ 18183] By: rgs                                   on 2002/11/26  19:53:26
74336         Log: Subject: Re: [perl #18626] bug in perlipc man page
74337              From: Slaven Rezic <slaven.rezic@berlin.de>
74338              Date: 23 Nov 2002 21:23:20 +0100
74339              Message-ID: <87bs4gdohz.fsf@vran.herceg.de>
74340      Branch: perl
74341            ! pod/perlipc.pod
74342 ____________________________________________________________________________
74343 [ 18182] By: merijn                                on 2002/11/26  08:44:39
74344         Log: Subject: #17171: ld flag for shrplib on OpenBSD
74345              Date: Wed, 11 Sep 2002 13:44:12 -0600 (MDT)
74346              From: "Todd C. Miller" <Todd.Miller  at  courtesan.com>
74347      Branch: perl
74348            ! Configure
74349 ____________________________________________________________________________
74350 [ 18180] By: hv                                    on 2002/11/25  03:10:03
74351         Log: integrate #18144 updates to pod/perlport.pod
74352      Branch: perl
74353            ! pod/perlport.pod
74354 ____________________________________________________________________________
74355 [ 18179] By: hv                                    on 2002/11/25  03:06:44
74356         Log: Subject: [PATCH] UTF8 regexp {n} bug
74357              From: Inaba Hiroto <inaba@st.rim.or.jp>
74358              Date: Sat, 16 Nov 2002 19:23:00 +0900
74359              Message-ID: <3DD61C83.62FF9887@st.rim.or.jp>
74360      Branch: perl
74361            ! regcomp.c t/op/pat.t
74362 ____________________________________________________________________________
74363 [ 18178] By: hv                                    on 2002/11/25  02:43:40
74364         Log: Subject: Re: Storable bug #1698
74365              From: Slaven Rezic <slaven.rezic@berlin.de>
74366              Date: 18 Nov 2002 10:41:36 +0100
74367              Message-ID: <87ptt343lb.fsf@vran.herceg.de>
74368      Branch: perl
74369            ! ext/Storable/Storable.xs ext/Storable/t/blessed.t
74370            ! ext/Storable/t/forgive.t
74371 ____________________________________________________________________________
74372 [ 18177] By: hv                                    on 2002/11/25  02:37:07
74373         Log: add support for STASH and MAGIC information for REFs to sv_dump().
74374              Subject: [PATCH]
74375              From: Slaven Rezic <slaven.rezic@berlin.de>
74376              Date: Mon, 18 Nov 2002 11:09:51 +0100 (CET)
74377              Message-Id: <200211181009.gAIA9pFG034877@vran.herceg.de>
74378      Branch: perl
74379            ! dump.c ext/Devel/Peek/Peek.t
74380 ____________________________________________________________________________
74381 [ 18176] By: hv                                    on 2002/11/25  02:31:10
74382         Log: Subject: Re: [perl #18479] Error when no strict refs in effect
74383              From: Slaven Rezic <slaven.rezic@berlin.de>
74384              Date: 18 Nov 2002 22:50:04 +0100
74385              Message-ID: <87smxya6pf.fsf@vran.herceg.de>
74386      Branch: perl
74387            ! pp_ctl.c
74388 ____________________________________________________________________________
74389 [ 18175] By: hv                                    on 2002/11/25  02:20:48
74390         Log: Subject: [Encode] 1.83 + bleedperl patch released
74391              From: Dan Kogai <dankogai@dan.co.jp>
74392              Date: Tue, 19 Nov 2002 03:18:44 +0900
74393              Message-Id: <2C132F6D-FB22-11D6-87FC-0003939A104C@dan.co.jp>
74394      Branch: perl
74395            ! ext/Encode/AUTHORS ext/Encode/Changes ext/Encode/Encode.pm
74396            ! ext/Encode/Encode.xs ext/Encode/MANIFEST ext/Encode/bin/enc2xs
74397            ! ext/Encode/lib/Encode/JP/JIS7.pm ext/Encode/t/rt.pl
74398            ! t/uni/tr_7jis.t t/uni/tr_sjis.t t/uni/tr_utf8.t
74399 ____________________________________________________________________________
74400 [ 18172] By: rgs                                   on 2002/11/22  21:44:09
74401         Log: Subject: [PATCH] Historic version labels
74402              From: andreas.koenig@anima.de (Andreas J. Koenig)
74403              Date: Fri, 22 Nov 2002 14:39:41 +0100
74404              Message-ID: <m3lm3loh9e.fsf@k242.linux.bogus>
74405      Branch: perl
74406            ! Changes5.005 Changes5.6
74407 ____________________________________________________________________________
74408 [ 18171] By: rgs                                   on 2002/11/22  21:15:54
74409         Log: A new test for $^S, based on a patch by Iain 'Spoon' Truskett.
74410              Fix the existing tests that didn't checked the difference
74411              between 0 and undef.
74412      Branch: perl
74413            ! t/op/magic.t
74414 ____________________________________________________________________________
74415 [ 18170] By: rgs                                   on 2002/11/22  20:49:12
74416         Log: Move some tests from t/run/fresh_perl.t
74417              to the new t/comp/parser.t. The goal being to
74418              get rid of fresh_perl.t at some point.
74419      Branch: perl
74420            ! t/comp/parser.t t/run/fresh_perl.t
74421 ____________________________________________________________________________
74422 [ 18169] By: rgs                                   on 2002/11/21  20:49:36
74423         Log: Add a test for bug #17920, and a new test file for it.
74424      Branch: perl
74425            + t/comp/parser.t
74426            ! MANIFEST
74427 ____________________________________________________________________________
74428 [ 18168] By: merijn                                on 2002/11/21  13:59:12
74429         Log: Subject: [PATCH] hires sleeping wants libs
74430              Date: Wed, 20 Nov 2002 17:18:31 +0200
74431              From: Jarkko Hietaniemi <jhi@iki.fi>
74432              Message-ID: <20021120151830.GC127060@lyta.hut.fi>
74433      Branch: perl
74434            ! Configure hints/irix_6.sh
74435 ____________________________________________________________________________
74436 [ 18166] By: rgs                                   on 2002/11/19  23:02:31
74437         Log: Fix perl bug #17920 : a case of parser coredump.
74438              The fix is to disable Perl_block_start and Perl_block_end
74439              when the yacc parser has encountered errors. This prevents
74440              corruption of the internal stack, at the expense of correctness,
74441              but this doesn't matter as the code is unparseable anyway.
74442      Branch: perl
74443            ! op.c
74444 ____________________________________________________________________________
74445 [ 18165] By: rgs                                   on 2002/11/19  22:45:36
74446         Log: Subject: Re: [PATCH] UTF-8 enabling via locale (was: Re: Redhat 8 issue?)
74447              From: Jarkko Hietaniemi <jhi@iki.fi>
74448              Date: Sun, 3 Nov 2002 17:50:08 +0200
74449              Message-ID: <20021103155008.GA382682@lyta.hut.fi>
74450      Branch: perl
74451            ! lib/open.pm locale.c pod/perl58delta.pod
74452 ____________________________________________________________________________
74453 [ 18164] By: rgs                                   on 2002/11/19  22:32:52
74454         Log: t/io/crlf.t failed with miniperl.
74455      Branch: perl
74456            ! t/io/crlf.t
74457 ____________________________________________________________________________
74458 [ 18163] By: rgs                                   on 2002/11/19  22:11:24
74459         Log: Subject: Re: [PATCH] AutoLoader gives wrong message
74460              From: Peter Scott <Peter@PSDT.com>
74461              Date: Thu, 07 Nov 2002 19:04:27 -0800
74462              Message-id: <4.3.2.7.2.20021107185902.00b93ec0@shell2.webquarry.com>
74463
74464              With a tweak to the END cleanup block to fully remove the
74465              temporary test directory
74466      Branch: perl
74467            ! lib/AutoLoader.t
74468 ____________________________________________________________________________
74469 [ 18162] By: rgs                                   on 2002/11/19  21:29:25
74470         Log: Subject: [PATCH ext/threads/threads.xs] trivial typo
74471              From: Dave Mitchell <davem@fdgroup.com>
74472              Date: Thu, 14 Nov 2002 22:55:39 +0000
74473              Message-ID: <20021114225539.A18614@fdgroup.com>
74474      Branch: perl
74475            ! ext/threads/threads.xs
74476 ____________________________________________________________________________
74477 [ 18161] By: rgs                                   on 2002/11/19  21:26:21
74478         Log: Subject: [PATCH Win32] Document wperl.exe
74479              From: "Brent Dax" <brentdax@cpan.org>
74480              Date: Fri, 15 Nov 2002 23:02:01 -0800
74481              Message-ID: <034e01c28d3e$0fed1680$6501a8c0@deepblue>
74482      Branch: perl
74483            ! README.win32
74484 ____________________________________________________________________________
74485 [ 18160] By: hv                                    on 2002/11/19  12:07:25
74486         Log: Subject: [PATCH] regen_headers outside Makefile (was Re: [PATCH] embed.pl doc)
74487              From: Nicholas Clark <nick@unfortu.net>
74488              Date: Tue, 29 Oct 2002 23:00:05 +0000
74489              Message-ID: <20021029230003.GF287@Bagpuss.unfortu.net>
74490      Branch: perl
74491            + regen.pl regen_headers.pl
74492            ! MANIFEST Makefile.SH autodoc.pl bytecode.pl embed.pl
74493            ! keywords.pl opcode.pl regcomp.pl
74494 ____________________________________________________________________________
74495 [ 18159] By: hv                                    on 2002/11/19  11:48:30
74496         Log: Subject: Re: [perl #18113] UNIVERSAL::AUTOLOAD doesn't work if the stash doesn't exist yet
74497              From: Gurusamy Sarathy <gsar@ActiveState.com>
74498              Date: Wed, 30 Oct 2002 20:58:15 -0800
74499              Message-Id: <200210310458.g9V4wFK00513@smtp3.ActiveState.com>
74500              Date: Wed, 30 Oct 2002 21:56:22 -0800
74501              Message-Id: <200210310556.g9V5uMK05748@smtp3.ActiveState.com>
74502              Date: Wed, 30 Oct 2002 22:55:30 -0800
74503              Message-Id: <200210310655.g9V6tUK10959@smtp3.ActiveState.com>
74504      Branch: perl
74505            ! gv.c pp_hot.c t/op/method.t
74506 ____________________________________________________________________________
74507 [ 18158] By: hv                                    on 2002/11/19  11:35:16
74508         Log: Remove duplicate my() declaration giving warnings from change #18105.
74509      Branch: perl
74510            ! lib/Class/Struct.t
74511 ____________________________________________________________________________
74512 [ 18154] By: rgs                                   on 2002/11/16  22:08:44
74513         Log: Correction to change #18152, by Dave Mitchell.
74514      Branch: perl
74515            ! pod/perlhack.pod
74516 ____________________________________________________________________________
74517 [ 18152] By: rgs                                   on 2002/11/16  21:23:15
74518         Log: Subject: Re: [PATCH] optional code for debugging leaking scalars
74519              From: Dave Mitchell <davem@fdgroup.com>
74520              Date: Sat, 16 Nov 2002 22:18:23 +0000
74521              Message-ID: <20021116221823.A23614@fdgroup.com>
74522              Documentation for change #18150.
74523      Branch: perl
74524            ! pod/perlhack.pod
74525 ____________________________________________________________________________
74526 [ 18151] By: rgs                                   on 2002/11/16  20:45:26
74527         Log: Document PRIVSHIFT.
74528              Subject: [PATCH] two small doc patches
74529              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
74530              Date: Thu, 14 Nov 2002 15:07:35 -0800
74531              Message-ID: <3yC19gzkguTO092yn@efn.org>
74532      Branch: perl
74533            ! sv.h
74534 ____________________________________________________________________________
74535 [ 18150] By: rgs                                   on 2002/11/16  20:25:57
74536         Log: Subject: [PATCH] optional code for debugging leaking scalars
74537              From: Dave Mitchell <davem@fdgroup.com>
74538              Date: Thu, 14 Nov 2002 23:03:00 +0000
74539              Message-ID: <20021114230300.B18614@fdgroup.com>
74540      Branch: perl
74541            ! perl.c sv.c
74542 ____________________________________________________________________________
74543 [ 18149] By: rgs                                   on 2002/11/16  20:10:50
74544         Log: New B::Lint option, bare-subs, that checks for implicitely
74545              quoted barewords that are also subroutines, from
74546              Ian Phillipps <ip@tarragon-et.co.uk>.
74547              Message-ID: <20021107122909.A11199@bob.tarragon-et.co.uk>
74548              With a few tweaks to the implementation and tests.
74549              (previous change was empty)
74550      Branch: perl
74551            ! ext/B/B/Lint.pm ext/B/t/lint.t
74552 ____________________________________________________________________________
74553 [ 18148] By: rgs                                   on 2002/11/16  20:05:34
74554         Log: New B::Lint option, bare-subs, that checks for implicitely
74555              quoted barewords that are also subroutines, from
74556              Ian Phillipps <ip@tarragon-et.co.uk>.
74557              Message-ID: <20021107122909.A11199@bob.tarragon-et.co.uk>
74558              With a few tweaks to the implementation and tests.
74559      Branch: perl
74560            ! ext/B/B/Lint.pm ext/B/t/lint.t
74561 ____________________________________________________________________________
74562 [ 18147] By: rgs                                   on 2002/11/16  19:52:54
74563         Log: Subject: [PATCH] Typo in perl58delta
74564              From: andreas.koenig@anima.de (Andreas J. Koenig)
74565              Date: Sat, 16 Nov 2002 16:29:14 +0100
74566              Message-ID: <m3u1ihjzxx.fsf@k242.linux.bogus>
74567      Branch: perl
74568            ! pod/perl58delta.pod
74569 ____________________________________________________________________________
74570 [ 18142] By: rgs                                   on 2002/11/12  22:09:39
74571         Log: Subject: [PATCH] Re: threads and Win2000 (Smoke 18064 FAIL(F) MSWin32 5.0 W2000Pro)
74572              From: Dave Mitchell <davem@fdgroup.com>
74573              Date: Thu, 7 Nov 2002 16:38:02 +0000
74574              Message-ID: <20021107163802.C25337@fdgroup.com>
74575      Branch: perl
74576            ! pad.h
74577 ____________________________________________________________________________
74578 [ 18141] By: merijn                                on 2002/11/12  16:15:30
74579         Log: repair 18139 (missing awk command)
74580      Branch: perl
74581            ! Configure
74582 ____________________________________________________________________________
74583 [ 18139] By: merijn                                on 2002/11/12  14:20:36
74584         Log: Date: Tue, 12 Nov 2002 16:49:22 +0200
74585              From: Jarkko Hietaniemi <jhi@iki.fi>
74586              Subject: [PATCH] Tru64 osvers
74587              Message-ID: <20021112144922.GI511825@lyta.hut.fi>
74588      Branch: perl
74589            ! Configure
74590 ____________________________________________________________________________
74591 [ 18137] By: rgs                                   on 2002/11/10  21:57:04
74592         Log: Subject: [PATCH] warning fix in SYNOPSIS example of Term::ReadLine pod
74593              From: Slaven Rezic <slaven.rezic@berlin.de>
74594              Date: Sat, 9 Nov 2002 22:31:31 +0100 (CET)
74595              Message-Id: <200211092131.gA9LVVAV007663@vran.herceg.de>
74596      Branch: perl
74597            ! lib/Term/ReadLine.pm
74598 ____________________________________________________________________________
74599 [ 18136] By: rgs                                   on 2002/11/10  21:38:44
74600         Log: Subject: t/run/runenv.t bug
74601              From: Salvador "Fandiño" <sfandino@yahoo.com>
74602              Date: Fri, 8 Nov 2002 08:07:13 -0800 (PST)
74603              Message-ID: <20021108160713.78109.qmail@web13409.mail.yahoo.com>
74604      Branch: perl
74605            ! t/run/runenv.t
74606 ____________________________________________________________________________
74607 [ 18135] By: rgs                                   on 2002/11/10  21:30:36
74608         Log: Subject: [PATCH] perlopentut and PerlIO documentation
74609              From: Slaven Rezic <slaven.rezic@berlin.de>
74610              Date: 08 Nov 2002 22:22:19 +0100
74611              Message-ID: <8765v7kb90.fsf@vran.herceg.de>
74612      Branch: perl
74613            ! lib/PerlIO.pm pod/perlopentut.pod
74614 ____________________________________________________________________________
74615 [ 18125] By: hv                                    on 2002/11/07  14:01:57
74616         Log: Subject: Re: The Inaba patch for tr/// vs. use encoding
74617              From: Dan Kogai <dankogai@dan.co.jp>
74618              Date: Fri, 25 Oct 2002 13:04:00 +0900
74619              Message-Id: <CAC896FE-E7CE-11D6-9228-0003939A104C@dan.co.jp>
74620      Branch: perl
74621            + t/uni/tr_7jis.t t/uni/tr_eucjp.t t/uni/tr_sjis.t
74622            + t/uni/tr_utf8.t
74623            ! MANIFEST
74624 ____________________________________________________________________________
74625 [ 18124] By: hv                                    on 2002/11/07  13:51:39
74626         Log: Subject: [PATCH] File::Temp documentation fix
74627              From: Slaven Rezic <slaven.rezic@berlin.de>
74628              Date: Thu, 24 Oct 2002 19:04:20 +0200 (CEST)
74629              Message-Id: <200210241704.g9OH4KlR030883@vran.herceg.de>
74630      Branch: perl
74631            ! lib/File/Temp.pm
74632 ____________________________________________________________________________
74633 [ 18123] By: hv                                    on 2002/11/07  13:46:59
74634         Log: Subject: PATCH x2p/find2perl.PL
74635              From: "Newton, Philip" <Philip.Newton@datenrevision.de>
74636              Date: Thu, 24 Oct 2002 10:05:19 +0200
74637              Message-ID: <C9A98F2128EDD411B0920008C7B337A13DCF41@hamsem01.de.gedas.vwg>
74638      Branch: perl
74639            ! x2p/find2perl.PL
74640 ____________________________________________________________________________
74641 [ 18122] By: hv                                    on 2002/11/07  13:40:25
74642         Log: Subject: [perl #18065] LFS related bug in perl-5.8.0 testsuite
74643              From: "david@dhaller.de (via RT)" <perlbug@perl.org>
74644              Date: 23 Oct 2002 18:42:51 -0000
74645              Message-Id: <rt-18065-40384.14.044473925414@bugs6.perl.org>
74646      Branch: perl
74647            ! ext/Fcntl/t/syslfs.t t/op/lfs.t
74648 ____________________________________________________________________________
74649 [ 18121] By: hv                                    on 2002/11/07  13:21:15
74650         Log: Subject: Re: [perl #18038] DESTROY change in 5.8.0?
74651              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
74652              Date: Sun, 03 Nov 2002 15:48:18 -0800
74653              Message-ID: <CXbx9gzkgS8W092yn@efn.org>
74654      Branch: perl
74655            ! sv.c t/op/tie.t
74656 ____________________________________________________________________________
74657 [ 18120] By: hv                                    on 2002/11/07  13:14:21
74658         Log: Subject: Re: Is this true that Perl 5.8 uses :crlf as default DISCIPLINE on so ckets?
74659              From: Gurusamy Sarathy <gsar@ActiveState.com>
74660              Date: Sat, 19 Oct 2002 12:11:43 -0700
74661              Message-Id: <200210191911.g9JJBhK02618@smtp3.ActiveState.com>
74662      Branch: perl
74663            ! doio.c ext/DB_File/t/db-recno.t perl.h pp_sys.c win32/win32.h
74664 ____________________________________________________________________________
74665 [ 18119] By: hv                                    on 2002/11/07  12:13:28
74666         Log: Subject: [perl #18154] Problem found in calculating offsets in regex
74667              From: Mark Pease (via RT) <perlbug@perl.org>
74668              Date: 29 Oct 2002 20:23:54 -0000
74669              Message-Id: <rt-18154-40762.0.46361502706489@bugs6.perl.org>
74670      Branch: perl
74671            ! regcomp.c
74672 ____________________________________________________________________________
74673 [ 18118] By: hv                                    on 2002/11/07  11:33:38
74674         Log: Subject: Re: [perl #17605] strange behaviour (difference between perl 5.6 and perl 5.8.0) in the regexp
74675              From: hv@crypt.org
74676              Date: Sun, 03 Nov 2002 16:41:24 +0000
74677              Message-Id: <200211031641.gA3GfOm08609@crypt.compulink.co.uk>
74678      Branch: perl
74679            ! ext/B/B/Concise.pm op.c pp_hot.c t/op/closure.t
74680            ! t/op/sub_lval.t
74681 ____________________________________________________________________________
74682 [ 18117] By: rgs                                   on 2002/11/06  22:15:36
74683         Log: "make distclean" should remove the generated file lib/Config.pod.
74684      Branch: perl
74685            ! Makefile.SH
74686 ____________________________________________________________________________
74687 [ 18116] By: rgs                                   on 2002/11/06  22:11:06
74688         Log: The new test introduced in #18114 failed with threads
74689      Branch: perl
74690            ! ext/B/t/concise.t
74691 ____________________________________________________________________________
74692 [ 18115] By: rgs                                   on 2002/11/06  20:43:14
74693         Log: Subject: Re: [perl #18048] read \*FH, ... returns undef but doesn' t set $! if \*FH not open
74694              From: Slaven Rezic <slaven.rezic@berlin.de>
74695              Date: 24 Oct 2002 00:44:35 +0200
74696              Message-ID: <87vg3sixm4.fsf@vran.herceg.de>
74697      Branch: perl
74698            ! pod/perldiag.pod pod/perlfunc.pod pp_sys.c t/io/binmode.t
74699            ! t/io/print.t t/io/read.t t/lib/warnings/pp_sys
74700 ____________________________________________________________________________
74701 [ 18114] By: rgs                                   on 2002/11/06  20:08:53
74702         Log: Subject: Re: [PATCH] [perl #18175] B::Concise,-exec doesn't handle // operator well
74703              From: Stephen McCamant <smcc@mit.edu>
74704              Date: Thu, 31 Oct 2002 01:35:29 -0500
74705              Message-ID: <15808.53041.181907.308803@syllepsis.MIT.EDU>
74706
74707              plus a test case in ext/B/t/concise.t
74708              plus a (less intrusive, but less future-proof) fix for a
74709              similar problem in B::walkoptree_exec().
74710      Branch: perl
74711            ! ext/B/B.pm ext/B/B/Concise.pm ext/B/t/concise.t
74712 ____________________________________________________________________________
74713 [ 18113] By: rgs                                   on 2002/11/05  20:11:55
74714         Log: make regen_headers.
74715              Backport change #18078 to warnings.pl.
74716      Branch: perl
74717            ! global.sym perlapi.c perlapi.h proto.h warnings.pl
74718 ____________________________________________________________________________
74719 [ 18109] By: ams                                   on 2002/11/05  13:03:34
74720         Log: Subject: Re: [perl #18107] lc(), uc() and ucfirst() broken inside utf8 regex
74721              From: hv@crypt.org
74722              Date: Tue, 05 Nov 2002 13:30:00 +0000
74723              Message-Id: <200211051330.gA5DU0p00718@crypt.compulink.co.uk>
74724
74725              This is half of the fix for #18107. The swash_init() problems
74726              described in <20021105143646.M18101@lustre.dyn.wiw.org> remain,
74727              but can now be seen only with UTF-8 test cases.
74728      Branch: perl
74729            ! pp.c
74730 ____________________________________________________________________________
74731 [ 18108] By: merijn                                on 2002/11/05  07:52:08
74732         Log: Put back the DO NOT EDIT headers in proto.h and global.sym
74733
74734              Subject: Re: [perl #18066] Bug in -I when path has double colons?
74735              From: Slaven Rezic <slaven.rezic@berlin.de>
74736              Date: 03 Nov 2002 10:25:10 +0100
74737              Message-ID: <87adkrngy1.fsf@vran.herceg.de>
74738      Branch: perl
74739            ! embed.pl
74740 ____________________________________________________________________________
74741 [ 18107] By: ams                                   on 2002/11/05  03:43:46
74742         Log: 1. Update pp_ucfirst to enter the UTF-8 branch only if the first
74743              character is UTF-8. (Copied from pp_lcfirst.)
74744              2. sv_dump() should display FLAGS=...,UTF8 for both POK and pPOK.
74745      Branch: perl
74746            ! dump.c pp.c
74747 ____________________________________________________________________________
74748 [ 18106] By: hv                                    on 2002/11/05  01:43:27
74749         Log: new test based on:
74750              Subject: [TEST] for [PATCH] bug in utf8.c(?)
74751              From: Marty Pauley <marty+p5p@kasei.com>
74752              Date: Fri, 18 Oct 2002 21:02:38 +0100
74753              Message-ID: <20021018200238.GY3764@soto.kasei.com>
74754      Branch: perl
74755            ! lib/utf8.t
74756 ____________________________________________________________________________
74757 [ 18105] By: hv                                    on 2002/11/05  00:59:30
74758         Log: Subject: Re: Class::Struct, simple patch, tests
74759              From: Marty Pauley <marty+p5p@kasei.com>
74760              Date: Fri, 18 Oct 2002 22:26:38 +0100
74761              Message-ID: <20021018212638.GB3764@soto.kasei.com>
74762      Branch: perl
74763            ! lib/Class/Struct.pm lib/Class/Struct.t
74764 ____________________________________________________________________________
74765 [ 18102] By: rgs                                   on 2002/11/04  21:43:53
74766         Log: Subject: Re: [perl #18066] Bug in -I when path has double colons?
74767              From: Slaven Rezic <slaven.rezic@berlin.de>
74768              Date: 30 Oct 2002 11:18:47 +0100
74769              Message-ID: <87of9c2prs.fsf@vran.herceg.de>
74770
74771              With the corresponding change to embed.fnc
74772      Branch: perl
74773            + t/run/switchI.t
74774            ! MANIFEST embed.fnc embed.h embedvar.h global.sym perl.c
74775            ! proto.h t/run/runenv.t
74776 ____________________________________________________________________________
74777 [ 18094] By: merijn                                on 2002/11/04  16:08:22
74778         Log: Changed the warning detection pattern because of:
74779
74780              Subject: ccache gcc3.2 doesn't work
74781              From: Nicholas Clark <nick@ccl4.org>
74782              Date: Tue, 29 Oct 2002 15:01:39
74783              Message-ID: <20021029150139.J82080@plum.flirble.org>
74784      Branch: perl
74785            ! Configure
74786 ____________________________________________________________________________
74787 [ 18093] By: jhi                                   on 2002/11/04  16:06:39
74788         Log: s/Perlf/Perl/ (thanks rgs)
74789      Branch: perl
74790            ! pod/perldiag.pod
74791 ____________________________________________________________________________
74792 [ 18091] By: jhi                                   on 2002/11/04  15:50:07
74793         Log: How pre-5.9.0 Perl can be fooled by a defined-or.
74794      Branch: perl
74795            ! pod/perldiag.pod
74796 ____________________________________________________________________________
74797 [ 18090] By: hv                                    on 2002/11/04  15:49:29
74798         Log: extend #13786 to cover the other four identical chunks of code
74799              to avoid looping under overload.
74800      Branch: perl
74801            ! sv.c
74802 ____________________________________________________________________________
74803 [ 18088] By: merijn                                on 2002/11/04  15:37:06
74804         Log: Charnames take 4
74805              Mon, 04 Nov 2002; H.Merijn Brand <h.m.brand@hccnet.nl>
74806      Branch: perl
74807            ! lib/charnames.pm lib/charnames.t
74808 ____________________________________________________________________________
74809 [ 18086] By: hv                                    on 2002/11/04  15:16:34
74810         Log: integrate from perlio: changes #17709, #17795, #17796, #18032
74811      Branch: perl
74812           !> Porting/apply ext/PerlIO/t/encoding.t ext/PerlIO/t/via.t
74813           !> ext/PerlIO/via/via.xs perlio.c t/io/crlf.t
74814 ____________________________________________________________________________
74815 [ 18085] By: hv                                    on 2002/11/04  12:17:12
74816         Log: Subject: Re: [perl #17064] illegal legal unicode character
74817              From: hv@crypt.org
74818              Date: Mon, 04 Nov 2002 13:23:49 +0000
74819              Message-Id: <200211041323.gA4DNn313132@crypt.compulink.co.uk>
74820      Branch: perl
74821            ! regexec.c t/op/split.t
74822 ____________________________________________________________________________
74823 [ 18084] By: merijn                                on 2002/11/04  11:04:45
74824         Log: Tru64, gcc -O3, datasize
74825              Sun, 3 Nov 2002; Jarkko Hietaniemi <jhi@iki.fi>
74826      Branch: perl
74827            ! README.tru64 hints/dec_osf.sh
74828 ____________________________________________________________________________
74829 [ 18083] By: merijn                                on 2002/11/04  10:58:52
74830         Log: Typo configpm
74831              Mon, 4 Nov 2002; Rafael Garcia-Suarez <rgarciasuarez@free.fr>
74832      Branch: perl
74833            ! configpm
74834 ____________________________________________________________________________
74835 [ 18078] By: hv                                    on 2002/11/03  13:20:50
74836         Log: avoid reliance on croak() prototype
74837      Branch: perl
74838            ! lib/warnings.pm
74839 ____________________________________________________________________________
74840 [ 18077] By: hv                                    on 2002/11/03  13:18:17
74841         Log: Subject: [PATCH lib/Config.*] Document and test Config::config_re().
74842              (with tweaks)
74843              From: Michael G Schwern <schwern@pobox.com>
74844              Date: Wed, 4 Sep 2002 12:06:08 -0700
74845              Message-ID: <20020904190607.GG8367@ool-18b93024.dyn.optonline.net>
74846      Branch: perl
74847            ! configpm lib/Config.t
74848 ____________________________________________________________________________
74849 [ 18076] By: gbarr                                 on 2002/11/03  10:11:18
74850         Log: Update to Scalar-List-Utils 1.08
74851      Branch: perl
74852            + ext/List/Util/t/isvstring.t ext/List/Util/t/refaddr.t
74853            ! MANIFEST ext/List/Util/ChangeLog ext/List/Util/README
74854            ! ext/List/Util/Util.xs ext/List/Util/lib/List/Util.pm
74855            ! ext/List/Util/lib/Scalar/Util.pm ext/List/Util/t/first.t
74856            ! ext/List/Util/t/reduce.t
74857 ____________________________________________________________________________
74858 [ 18075] By: rgs                                   on 2002/10/31  20:58:12
74859         Log: Adjust the number of tests in t/op/range.t
74860      Branch: perl
74861            ! t/op/range.t
74862 ____________________________________________________________________________
74863 [ 18074] By: ams                                   on 2002/10/30  22:30:32
74864         Log: Subject: Re: [perl #18114] [no subject] BUG: "-4\n".."0\n" is not DWIM
74865              but "-4\n".."-0\n" is!
74866              From: Slaven Rezic <slaven.rezic@berlin.de>
74867              Date: 30 Oct 2002 16:22:36 +0100
74868              Message-Id: <87n0ow0x4z.fsf@vran.herceg.de>
74869
74870              Subject: RE: [perl #18114] [no subject] [TEST PATCH]BUG: "-4\n".."0\n"
74871              is not DWIM but "-4\n".."-0\n" is!
74872              From: "Orton, Yves" <yves.orton@mciworldcom.de>
74873              Date: Wed, 30 Oct 2002 11:59:31 -0000
74874              Message-Id: <71B318898201D311845C0008C75DAD1C07B78BF7@defra1ex2>
74875
74876              (Applied over previous fix.)
74877      Branch: perl
74878            ! pp_ctl.c t/op/range.t
74879 ____________________________________________________________________________
74880 [ 18073] By: ams                                   on 2002/10/30  19:47:12
74881         Log: Subject: [perl #18165] "0" fails as right-hand argument to ..
74882              From: Mark-Jason Dominus (via RT) <perlbug@perl.org>
74883              Date: 30 Oct 2002 17:27:53 -0000
74884              Message-Id: <rt-18165-40816.6.86096008382222@bugs6.perl.org>
74885
74886              (Fixed by making an exception for .."0" in pp_flop.)
74887      Branch: perl
74888            ! pp_ctl.c t/op/range.t
74889 ____________________________________________________________________________
74890 [ 18072] By: rgs                                   on 2002/10/29  20:37:31
74891         Log: Partial fix of bug [perl #17589] : prevent the parser to
74892              segfault when encountering the erroneous construct "sub;".
74893      Branch: perl
74894            ! pod/perldiag.pod t/op/anonsub.t toke.c
74895 ____________________________________________________________________________
74896 [ 18071] By: rgs                                   on 2002/10/28  21:57:25
74897         Log: Subject: RE: [PATCH] Warning on pararameterless 'use IO' and doc update
74898              From: "Paul Marquess" <Paul.Marquess@btinternet.com>
74899              Date: Mon, 28 Oct 2002 12:53:52 -0000
74900              Message-ID: <AIEAJICLCBDNAAOLLOKLAEOEFLAA.Paul.Marquess@btinternet.com>
74901      Branch: perl
74902            ! ext/IO/IO.pm ext/IO/lib/IO/t/IO.t
74903 ____________________________________________________________________________
74904 [ 18070] By: rgs                                   on 2002/10/28  20:46:33
74905         Log: Subject: [PATCH] Re: Not OK: perl v5.9.0 +DEVEL17881 on i386-freebsd 4.6-release (UNINSTALLED)
74906              From: Nicholas Clark <nick@unfortu.net>
74907              Date: Sun, 27 Oct 2002 18:39:03 +0000
74908              Message-ID: <20021027183902.GJ292@Bagpuss.unfortu.net>
74909      Branch: perl
74910            ! util.c
74911 ____________________________________________________________________________
74912 [ 18069] By: rgs                                   on 2002/10/28  20:44:12
74913         Log: Subject: [PATCH] Re: [PATCH] Re: [perl #17772] pack "w" /* this cannot happen ;-) */ is fallacious
74914              From: Nicholas Clark <nick@unfortu.net>
74915              Date: Sun, 27 Oct 2002 22:31:08 +0000
74916              Message-ID: <20021027223108.GK292@Bagpuss.unfortu.net>
74917      Branch: perl
74918            ! t/op/pack.t
74919 ____________________________________________________________________________
74920 [ 18068] By: merijn                                on 2002/10/27  17:57:15
74921         Log: Repair broken previous patch. I don't like it, but not repairing it
74922              breaks each and every build. Will teach me to test on the same
74923              machine where I patched it. Sorry.
74924      Branch: perl
74925            ! embed.pl
74926 ____________________________________________________________________________
74927 [ 18067] By: merijn                                on 2002/10/27  06:02:21
74928         Log: embed.pl doc. (embed.pl reorganization for doc headers)
74929              Wed, 23 Oct 2002; Jarkko Hietaniemi <jhi@iki.fi>
74930              With some additional modifications
74931      Branch: perl
74932            ! embed.pl
74933 ____________________________________________________________________________
74934 [ 18064] By: merijn                                on 2002/10/25  11:47:07
74935         Log: The 5005thread todo list; 2 down 25 to go
74936      Branch: perl
74937            ! README.irix README.tru64
74938 ____________________________________________________________________________
74939 [ 18063] By: hv                                    on 2002/10/25  00:28:48
74940         Log: change #18038 gives too many problems on t/450_service.t; disable
74941              it for now
74942      Branch: perl
74943            ! lib/Net/Ping/t/450_service.t
74944 ____________________________________________________________________________
74945 [ 18062] By: hv                                    on 2002/10/25  00:21:17
74946         Log: Subject: [PATCH] DB_File 1.806
74947              From: "Paul Marquess" <Paul.Marquess@btinternet.com>
74948              Date: Tue, 22 Oct 2002 11:16:21 +0100
74949              Message-ID: <AIEAJICLCBDNAAOLLOKLCEDMFLAA.Paul.Marquess@btinternet.com>
74950      Branch: perl
74951            ! ext/DB_File/Changes ext/DB_File/DB_File.pm
74952            ! ext/DB_File/DB_File.xs ext/DB_File/t/db-btree.t
74953            ! ext/DB_File/t/db-hash.t ext/DB_File/t/db-recno.t
74954 ____________________________________________________________________________
74955 [ 18061] By: hv                                    on 2002/10/25  00:13:07
74956         Log: Subject: [PATCH lib/IO.t] Add tests for IO.pm
74957              From: chromatic <chromatic@wgz.org>
74958              Date: Mon, 21 Oct 2002 20:27:43 -0700
74959              Message-ID: <20021022033253.57952.qmail@onion.perl.org>
74960      Branch: perl
74961            + ext/IO/lib/IO/t/IO.t
74962            ! MANIFEST lib/Net/Ping/t/450_service.t
74963 ____________________________________________________________________________
74964 [ 18060] By: hv                                    on 2002/10/24  23:54:50
74965         Log: 2 lines of change #18039 had several problems
74966      Branch: perl
74967            ! ext/IO/IO.pm
74968 ____________________________________________________________________________
74969 [ 18059] By: hv                                    on 2002/10/24  23:46:29
74970         Log: Subject: [perl #18036] perldoc refuses to run on BeOS
74971              From: "mauzo@csv.warwick.ac.uk (via RT)" <perlbug@perl.org>
74972              Date: 21 Oct 2002 10:18:50 -0000
74973              Message-Id: <rt-18036-40246.15.4017814246886@bugs6.perl.org>
74974      Branch: perl
74975            ! utils/perldoc.PL
74976 ____________________________________________________________________________
74977 [ 18058] By: hv                                    on 2002/10/24  23:36:48
74978         Log: Subject: The Inaba patch for tr/// vs. use encoding
74979              From: Dan Kogai <dankogai@dan.co.jp>
74980              Date: Mon, 21 Oct 2002 17:36:02 +0900
74981              Message-Id: <218B4434-E4D0-11D6-A668-0003939A104C@dan.co.jp>
74982      Branch: perl
74983            ! mg.c regcomp.c sv.c toke.c
74984 ____________________________________________________________________________
74985 [ 18057] By: hv                                    on 2002/10/24  23:16:15
74986         Log: Subject: [Encode] 1.80 released
74987              From: Dan Kogai <dankogai@dan.co.jp>
74988              Date: Tue, 22 Oct 2002 05:47:16 +0900
74989              Message-Id: <48F1B85D-E536-11D6-A87D-0003939A104C@dan.co.jp>
74990      Branch: perl
74991            + ext/Encode/bin/ucmsort ext/Encode/t/rt.pl
74992            ! MANIFEST ext/Encode/AUTHORS ext/Encode/Changes
74993            ! ext/Encode/Encode.pm ext/Encode/Encode.xs
74994            ! ext/Encode/lib/Encode/MIME/Header.pm
74995            ! ext/Encode/lib/Encode/Supported.pod ext/Encode/t/CJKT.t
74996            ! ext/Encode/t/jperl.t ext/Encode/t/mime-header.t
74997            ! ext/Encode/ucm/cp932.ucm ext/Encode/ucm/cp936.ucm
74998            ! ext/Encode/ucm/cp949.ucm ext/Encode/ucm/cp950.ucm
74999 ____________________________________________________________________________
75000 [ 18056] By: hv                                    on 2002/10/24  22:48:06
75001         Log: Subject: [PATCH] B/C.pm: make $0 to argv[0] again
75002              From: Autrijus Tang <autrijus@autrijus.org>
75003              Date: Sat, 19 Oct 2002 17:51:57 +0800
75004              Message-ID: <20021019095157.GA430@not.autrijus.org>
75005      Branch: perl
75006            ! ext/B/B/C.pm
75007 ____________________________________________________________________________
75008 [ 18055] By: hv                                    on 2002/10/24  22:34:10
75009         Log: Reverse change #8066 and sense of test, to satisfy [perl #17763]
75010      Branch: perl
75011            ! pp_sys.c t/run/fresh_perl.t
75012 ____________________________________________________________________________
75013 [ 18054] By: hv                                    on 2002/10/24  22:17:40
75014         Log: change #18030 needs the removal of ext/Thread/thr5005.t
75015      Branch: perl
75016            - ext/Thread/thr5005.t
75017 ____________________________________________________________________________
75018 [ 18053] By: merijn                                on 2002/10/24  08:20:09
75019         Log: charnames pragma extended with :alias for customized
75020              unicode naming aliases
75021              Mon, 21 Oct 2002; "H.Merijn Brand" <h.m.brand@hccnet.nl>
75022      Branch: perl
75023            ! lib/charnames.pm lib/charnames.t
75024 ____________________________________________________________________________
75025 [ 18052] By: rgs                                   on 2002/10/23  19:16:50
75026         Log: Further tweaks to perlmodlib.pod.
75027              Add a note about perllocal.pod, which wasn't documented.
75028      Branch: perl
75029            ! pod/perlmodlib.PL pod/perlmodlib.pod
75030 ____________________________________________________________________________
75031 [ 18051] By: rgs                                   on 2002/10/23  18:56:08
75032         Log: Further tweaks to perluniintro.pod
75033      Branch: perl
75034            ! pod/perluniintro.pod
75035 ____________________________________________________________________________
75036 [ 18050] By: rgs                                   on 2002/10/22  19:11:12
75037         Log: perlmodlib.pod nit suggested by David Dyck (bug #18055)
75038              Regenerate perlmodlib.pod
75039      Branch: perl
75040            ! pod/perlmodlib.PL pod/perlmodlib.pod
75041 ____________________________________________________________________________
75042 [ 18049] By: rgs                                   on 2002/10/22  18:48:00
75043         Log: Subject: [PATCH] perluniintro
75044              From: Jarkko Hietaniemi <jhi@iki.fi>
75045              Date: Sun, 20 Oct 2002 15:48:09 +0300
75046              Message-ID: <20021020124809.GE444369@lyta.hut.fi>
75047      Branch: perl
75048            ! pod/perluniintro.pod
75049 ____________________________________________________________________________
75050 [ 18048] By: hv                                    on 2002/10/22  17:04:26
75051         Log: Subject: [PATCH] PL_curpad == AvARRAY(PL_comppad) always
75052              From: Dave Mitchell <davem@fdgroup.com>
75053              Date: Fri, 18 Oct 2002 13:36:40 +0100
75054              Message-ID: <20021018133640.A19172@fdgroup.com>
75055      Branch: perl
75056            ! cop.h embed.fnc ext/List/Util/Util.xs global.sym op.c pad.c
75057            ! pad.h perl.c perlapi.h pod/perlintern.pod pp_ctl.c proto.h
75058            ! regcomp.c regexec.c scope.c scope.h sv.c t/op/closure.t
75059 ____________________________________________________________________________
75060 [ 18047] By: hv                                    on 2002/10/22  16:20:18
75061         Log: Subject: [PATCH] AutoLoader gives wrong message
75062              From: Peter Scott <peter@psdt.com>
75063              Date: Thu, 17 Oct 2002 19:54:56 -0700
75064              Message-id: <4.3.2.7.2.20021017192450.00b3dce0@shell2.webquarry.com>
75065      Branch: perl
75066            ! lib/AutoLoader.pm
75067 ____________________________________________________________________________
75068 [ 18046] By: hv                                    on 2002/10/22  15:52:40
75069         Log: Subject: Re: Smoke 18027 FAIL(F) MSWin32 5.0 Win2000Pro (MSWin32-x86)
75070              From: Alain Barbet <alian@alianwebserver.com>
75071              Date: Fri, 18 Oct 2002 15:29:29 +0200
75072              Message-ID: <3DB00CB9.70708@alianwebserver.com>
75073      Branch: perl
75074            ! README.win32 win32/makefile.mk win32/win32.c
75075 ____________________________________________________________________________
75076 [ 18045] By: hv                                    on 2002/10/22  15:47:21
75077         Log: improve 'atomicity' wording
75078      Branch: perl
75079            ! lib/filetest.pm
75080 ____________________________________________________________________________
75081 [ 18044] By: hv                                    on 2002/10/22  15:43:55
75082         Log: Subject: [PATCH] Shell.pm object methods broken
75083              From: Dan Brook <dbrook@easyspace.com>
75084              Date: Thu, 17 Oct 2002 16:05:04 +0100
75085              Message-Id: <20021017160504.63926a1b.dbrook@easyspace.com>
75086      Branch: perl
75087            ! lib/Shell.pm lib/Shell.t
75088 ____________________________________________________________________________
75089 [ 18042] By: hv                                    on 2002/10/21  09:20:54
75090         Log: Subject: Re: [perl #16184] Unexpected warning when using C<< open FH => >>
75091              From: hv@crypt.org
75092              Date: Mon, 21 Oct 2002 11:27:40 +0100
75093              Message-Id: <200210211027.g9LARef05722@crypt.compulink.co.uk>
75094      Branch: perl
75095            ! t/lib/warnings/toke toke.c
75096 ____________________________________________________________________________
75097 [ 18041] By: hv                                    on 2002/10/21  01:14:48
75098         Log: Subject: Re: [perl #18019] regex overoptimization
75099              From: hv@crypt.org
75100              Date: Mon, 21 Oct 2002 03:21:54 +0100
75101              Message-Id: <200210210221.g9L2LsU32598@crypt.compulink.co.uk>
75102      Branch: perl
75103            ! regcomp.c t/op/re_tests
75104 ____________________________________________________________________________
75105 [ 18039] By: hv                                    on 2002/10/20  14:33:16
75106         Log: Subject: Re: [PATCH] Warning on pararameterless 'use IO' and doc update
75107              From: =?iso-8859-1?Q?St=E9phane?= Payrard <s.payrard@wanadoo.fr>
75108              Date: Tue, 15 Oct 2002 02:17:03 +0200
75109              Message-ID: <20021015001703.GG7914@stefp.dyndns.org>
75110      Branch: perl
75111            ! ext/IO/IO.pm
75112 ____________________________________________________________________________
75113 [ 18038] By: hv                                    on 2002/10/20  14:23:06
75114         Log: Update to Net::Ping v2.23
75115      Branch: perl
75116            + lib/Net/Ping/t/150_syn_inst.t lib/Net/Ping/t/400_ping_syn.t
75117            + lib/Net/Ping/t/450_service.t
75118            ! MANIFEST lib/Net/Ping.pm lib/Net/Ping/t/110_icmp_inst.t
75119            ! lib/Net/Ping/t/200_ping_tcp.t
75120 ____________________________________________________________________________
75121 [ 18037] By: hv                                    on 2002/10/20  13:57:06
75122         Log: Subject: [PATCH] t/op/pack.t: Tru64 5.1A gcc 3.2.1 no inf
75123              From: Jarkko Hietaniemi <jhi@iki.fi>
75124              Date: Mon, 14 Oct 2002 14:49:54 +0300
75125              Message-ID: <20021014114954.GB80937@lyta.hut.fi>
75126      Branch: perl
75127            ! t/op/pack.t
75128 ____________________________________________________________________________
75129 [ 18036] By: hv                                    on 2002/10/20  13:43:56
75130         Log: Subject: Re: [perl #17892] Perl's mkdir() doesn't remove trailing slashes
75131              From: Slaven Rezic <slaven.rezic@berlin.de>
75132              Date: 14 Oct 2002 09:37:18 +0200
75133              Message-ID: <8765w5wjwx.fsf@vran.herceg.de>
75134      Branch: perl
75135            ! pp_sys.c t/op/mkdir.t
75136 ____________________________________________________________________________
75137 [ 18035] By: hv                                    on 2002/10/20  13:39:09
75138         Log: Subject: Re: [perl #17951] Strange UTF error
75139              From: Jarkko Hietaniemi <jhi@iki.fi>
75140              Date: Wed, 16 Oct 2002 18:50:51 +0300
75141              Message-ID: <20021016155051.GB268437@lyta.hut.fi>
75142      Branch: perl
75143            ! lib/utf8_heavy.pl t/run/fresh_perl.t
75144 ____________________________________________________________________________
75145 [ 18034] By: hv                                    on 2002/10/20  13:23:16
75146         Log: Update to Time::HiRes v1.38
75147      Branch: perl
75148            + ext/Time/HiRes/typemap
75149            ! MANIFEST ext/Time/HiRes/Changes ext/Time/HiRes/HiRes.pm
75150            ! ext/Time/HiRes/HiRes.t ext/Time/HiRes/HiRes.xs
75151            ! ext/Time/HiRes/Makefile.PL
75152 ____________________________________________________________________________
75153 [ 18033] By: hv                                    on 2002/10/20  13:12:25
75154         Log: Upgrade to Test.pm v1.23
75155      Branch: perl
75156            ! lib/Test.pm
75157 ____________________________________________________________________________
75158 [ 18030] By: merijn                                on 2002/10/19  14:10:21
75159         Log: Happy chainsaw stories; The removal of the 5005 threads
75160              Still imcomplete. Configure will follow
75161      Branch: perl
75162            ! MANIFEST NetWare/Makefile NetWare/config.wc
75163            ! NetWare/config_H.wc NetWare/nw5thread.c NetWare/nw5thread.h
75164            ! Porting/Glossary Porting/config.sh Porting/config_H
75165            ! config_h.SH cop.h cv.h deb.c dosish.h dump.c embed.fnc embed.h
75166            ! embed.pl embedvar.h epoc/config.sh ext/B/B.xs ext/B/B/C.pm
75167            ! ext/B/ramblings/runtime.porting ext/B/t/lint.t
75168            ! ext/DynaLoader/dl_aix.xs ext/Thread/README.threads
75169            ! ext/Thread/Thread.xs ext/Thread/thr5005.t gv.c hints/darwin.sh
75170            ! installperl intrpvar.h makedef.pl mg.c miniperlmain.c
75171            ! myconfig.SH op.c os2/os2.c os2/os2ish.h pad.c perl.c perl.h
75172            ! perlvars.h pod/perltoc.pod pp.c pp.h pp_ctl.c pp_hot.c
75173            ! pp_sort.c proto.h scope.c sv.c sv.h thrdvar.h thread.h toke.c
75174            ! uconfig.h uconfig.sh util.c vms/vms.c win32/Makefile
75175            ! win32/config.bc win32/config.gc win32/config.vc
75176            ! win32/config.vc64 win32/config_H.bc win32/config_H.gc
75177            ! win32/config_H.vc win32/config_H.vc64 win32/config_sh.PL
75178            ! win32/makefile.mk win32/perllib.c win32/win32.c win32/win32.h
75179            ! win32/win32sck.c win32/win32thread.c win32/win32thread.h
75180            ! wince/Makefile.ce wince/config.ce wince/config_H.ce
75181            ! wince/config_sh.PL wince/win32.h wince/win32thread.c
75182            ! wince/win32thread.h wince/wincesck.c
75183 ____________________________________________________________________________
75184 [ 18029] By: merijn                                on 2002/10/18  07:28:21
75185         Log: minor tweaks in Porting/pumpkin.pod
75186              Fri, 18 Oct 2002; Philip Newton <Philip.Newton@gmx.net>
75187      Branch: perl
75188            ! Porting/pumpkin.pod
75189 ____________________________________________________________________________
75190 [ 18028] By: rgs                                   on 2002/10/17  20:33:32
75191         Log: Subject: [PATCH t/run/switches.t] Re: Smoke 18027 FAIL(F) MSWin32 5.0 Win2000Pro (MSWin32-x86)
75192              From: Abe Timmerman <abe@ztreet.demon.nl>
75193              Date: Thu, 17 Oct 2002 23:38:34 +0200
75194              Message-Id: <200210172338.34728.abe@ztreet.demon.nl>
75195      Branch: perl
75196            ! t/run/switches.t
75197 ____________________________________________________________________________
75198 [ 18027] By: hv                                    on 2002/10/17  14:39:27
75199         Log: Subject: Re: versions too accurate
75200              From: John Peacock <jpeacock@rowman.com>
75201              Date: Mon, 14 Oct 2002 22:36:48 -0400
75202              Message-ID: <3DAB7F40.1050200@rowman.com>
75203      Branch: perl
75204            ! lib/version.pm util.c
75205 ____________________________________________________________________________
75206 [ 18026] By: hv                                    on 2002/10/17  14:29:41
75207         Log: Subject: Re: [PATCH] Version object combined patch
75208              From: John Peacock <jpeacock@rowman.com>
75209              Date: Thu, 10 Oct 2002 21:23:01 -0400
75210              Message-ID: <3DA627F5.5050907@rowman.com>
75211      Branch: perl
75212            ! lib/version.pm lib/version.t pod/perldiag.pod util.c
75213 ____________________________________________________________________________
75214 [ 18025] By: hv                                    on 2002/10/17  13:37:04
75215         Log: definition of MAXPATHLEN
75216              Subject: [PATCH] standard lawyerism
75217              From: Jarkko Hietaniemi <jhi@iki.fi>
75218              Date: Fri, 11 Oct 2002 02:48:26 +0300
75219              Message-ID: <20021010234825.GM292305@lyta.hut.fi>
75220      Branch: perl
75221            ! perl.h
75222 ____________________________________________________________________________
75223 [ 18024] By: hv                                    on 2002/10/17  13:34:01
75224         Log: Subject: Re: [perl #17061] no strict 'garbage'
75225              From: Slaven Rezic <slaven.rezic@berlin.de>
75226              Date: 10 Oct 2002 16:23:22 +0200
75227              Message-ID: <87ptui5q5h.fsf@vran.herceg.de>
75228      Branch: perl
75229            ! ext/Storable/Storable.pm
75230 ____________________________________________________________________________
75231 [ 18023] By: hv                                    on 2002/10/17  12:56:28
75232         Log: Subject: Re: [perl #17830] open FH, "<&", $fd
75233              From: Steve Grazzini <grazz@nyc.rr.com>
75234              Date: 11 Oct 2002 22:28:58 -0000
75235              Message-ID: <20021011222858.452.qmail@onion.perl.org>
75236      Branch: perl
75237            ! doio.c t/io/open.t
75238 ____________________________________________________________________________
75239 [ 18022] By: hv                                    on 2002/10/17  12:24:42
75240         Log: Subject: Re: [perl #17809] Different warning behaviour between normal and tied hashes
75241              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
75242              Date: Tue, 15 Oct 2002 17:01:43 -0700
75243              Message-ID: <nxKr9gzkgmBO092yn@efn.org>
75244      Branch: perl
75245            ! t/op/assignwarn.t
75246 ____________________________________________________________________________
75247 [ 18021] By: hv                                    on 2002/10/17  11:28:38
75248         Log: Subject: [PATCH] minor tweaks in Porting/pumpkin.pod
75249              From: Slaven Rezic <slaven.rezic@berlin.de>
75250              Date: Thu, 3 Oct 2002 21:54:22 +0200 (CEST)
75251              Message-Id: <200210031954.g93JsMiZ034457@vran.herceg.de>
75252      Branch: perl
75253            ! Porting/pumpkin.pod
75254 ____________________________________________________________________________
75255 [ 18020] By: rgs                                   on 2002/10/16  18:43:21
75256         Log: prototype() didn't warn when used in void context.
75257      Branch: perl
75258            ! op.c t/lib/warnings/op
75259 ____________________________________________________________________________
75260 [ 18019] By: ams                                   on 2002/10/15  20:54:53
75261         Log: Subject: Japanese translation of Storable
75262              From: "KAWAI,Takanori" <GCD00051@nifty.ne.jp>
75263              Date: Tue, 15 Oct 2002 06:31:01 +0900
75264              Message-Id: <003801c273c9$05888910$1401a8c0@hipposam>
75265      Branch: perl
75266            ! ext/Storable/README
75267 ____________________________________________________________________________
75268 [ 18018] By: rgs                                   on 2002/10/15  19:08:20
75269         Log: Subject: Re: [PATCH] cv.h: Comment update
75270              From: Paul Johnson <paul@pjcj.net>
75271              Date: Mon, 14 Oct 2002 20:00:50 +0200
75272              Message-ID: <20021014180050.GC7333@pjcj.net>
75273      Branch: perl
75274            ! cv.h
75275 ____________________________________________________________________________
75276 [ 18017] By: rgs                                   on 2002/10/14  20:37:06
75277         Log: Subject: [PATCH] perlipc.pod
75278              From: Slaven Rezic <slaven.rezic@berlin.de>
75279              Date: Sun, 13 Oct 2002 14:26:26 +0200 (CEST)
75280              Message-Id: <200210131226.g9DCQQLN014591@vran.herceg.de>
75281      Branch: perl
75282            ! pod/perlipc.pod
75283 ____________________________________________________________________________
75284 [ 18016] By: rgs                                   on 2002/10/14  20:30:03
75285         Log: Subject: [PATCH] minor typos in perlhist.pod and perlunicode.pod
75286              From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
75287              Date: Sun, 13 Oct 2002 09:02:36 +0900
75288              Message-Id: <20021013090227.FFCD.BQW10602@nifty.com>
75289      Branch: perl
75290            ! pod/perlunicode.pod
75291 ____________________________________________________________________________
75292 [ 18015] By: rgs                                   on 2002/10/12  20:22:37
75293         Log: The -0 command-line switch wasn't setting $/ at compile-time.
75294              Move the initialization of $/ just after switch parsing
75295              (it was done after yyparse().)
75296      Branch: perl
75297            ! perl.c t/run/switches.t
75298 ____________________________________________________________________________
75299 [ 18014] By: rgs                                   on 2002/10/12  20:18:55
75300         Log: Subject: Re: [PATCH] perl573delta delinting
75301              From: Philip Newton <Philip.Newton@gmx.net>
75302              Date: Sat, 12 Oct 2002 21:25:49 +0200
75303              Message-ID: <iotgqucnbttvvc43o0j7kv55p5dstui4oc@4ax.com>
75304      Branch: perl
75305            ! pod/perl573delta.pod
75306 ____________________________________________________________________________
75307 [ 18013] By: hv                                    on 2002/10/12  15:41:50
75308         Log: Subject: [PATCH] for -Dm
75309              From: Slaven Rezic <slaven.rezic@berlin.de>
75310              Date: Wed, 9 Oct 2002 00:49:33 +0200 (CEST)
75311              Message-Id: <200210082249.g98MnXqM076566@vran.herceg.de>
75312      Branch: perl
75313            ! malloc.c
75314 ____________________________________________________________________________
75315 [ 18012] By: hv                                    on 2002/10/12  15:39:49
75316         Log: #18005 was not enough
75317              Subject: [PATCH win32/makefile.mk] (Was Re: Building bleadperl (minperl) fails completely under VC7)
75318              From: Abe Timmerman <abeltje@cpan.org>
75319              Date: Sat, 12 Oct 2002 17:56:39 +0200
75320              Message-Id: <200210121756.39803.abeltje@cpan.org>
75321      Branch: perl
75322            ! win32/makefile.mk
75323 ____________________________________________________________________________
75324 [ 18011] By: hv                                    on 2002/10/12  15:36:43
75325         Log: Subject: [perl #17805] BUG: Grammar bug during Configure
75326              From: Richard Hitt (via RT) <perlbug@perl.org>
75327              Date: 8 Oct 2002 21:04:30 -0000
75328              Message-Id: <rt-17805-39395.9.0319493317925@bugs6.perl.org>
75329      Branch: perl
75330            ! Configure
75331 ____________________________________________________________________________
75332 [ 18010] By: hv                                    on 2002/10/12  15:31:06
75333         Log: Subject: [PATCH] Re: [perl #17772] pack "w" /* this cannot happen ;-) */ is fallacious
75334              From: Nicholas Clark <nick@unfortu.net>
75335              Date: Tue, 8 Oct 2002 21:52:53 +0100
75336              Message-ID: <20021008205253.GA283@Bagpuss.unfortu.net>
75337      Branch: perl
75338            ! pod/perldiag.pod pp_pack.c t/op/pack.t
75339 ____________________________________________________________________________
75340 [ 18009] By: hv                                    on 2002/10/12  15:12:18
75341         Log: Subject: [PATCH perldoc] For screaming hell's sake
75342              From: Simon Cozens <simon@netthink.co.uk>
75343              Date: Tue, 8 Oct 2002 11:13:07 +0100
75344              Message-ID: <20021008101307.GA8175@netthink.co.uk>
75345      Branch: perl
75346            ! utils/perldoc.PL
75347 ____________________________________________________________________________
75348 [ 18008] By: hv                                    on 2002/10/12  14:38:19
75349         Log: Subject: [PATCH] Storable 2.06 (was Re: Bug in ext/Storable/t/integer.t)
75350              From: Nicholas Clark <nick@unfortu.net>
75351              Date: Mon, 7 Oct 2002 23:35:34 +0100
75352              Message-ID: <20021007223534.GD286@Bagpuss.unfortu.net>
75353      Branch: perl
75354            ! ext/Storable/ChangeLog ext/Storable/Makefile.PL
75355            ! ext/Storable/README ext/Storable/Storable.pm
75356            ! ext/Storable/Storable.xs ext/Storable/t/downgrade.t
75357            ! ext/Storable/t/forgive.t ext/Storable/t/integer.t
75358            ! ext/Storable/t/malice.t ext/Storable/t/restrict.t
75359 ____________________________________________________________________________
75360 [ 18007] By: hv                                    on 2002/10/12  14:22:36
75361         Log: Subject: [perl #17773] errors in c2ph(1) man page
75362              From: Eric Melville (via RT) <perlbug@perl.org>
75363              Date: 7 Oct 2002 02:58:34 -0000
75364              Message-Id: <rt-17773-39313.12.4820309875481@bugs6.perl.org>
75365      Branch: perl
75366            ! utils/c2ph.PL
75367 ____________________________________________________________________________
75368 [ 18006] By: hv                                    on 2002/10/12  14:19:55
75369         Log: Subject: [PATCH pad.c] Re: closure failures
75370              From: Dave Mitchell <davem@fdgroup.com>
75371              Date: Mon, 7 Oct 2002 02:42:13 +0100
75372              Message-ID: <20021007024213.B29760@fdgroup.com>
75373      Branch: perl
75374            ! pad.c
75375 ____________________________________________________________________________
75376 [ 18005] By: hv                                    on 2002/10/12  14:17:07
75377         Log: Subject: Re: Building bleadperl (minperl) fails completely under VC7
75378              From: Abe Timmerman <abeltje@cpan.org>
75379              Date: Tue, 8 Oct 2002 14:16:56 +0200
75380              Message-Id: <200210081416.56942.abeltje@cpan.org>
75381      Branch: perl
75382            ! win32/Makefile
75383 ____________________________________________________________________________
75384 [ 18004] By: hv                                    on 2002/10/12  14:06:59
75385         Log: updated hints for Darwin from Wilfredo Sanchez <wsanchez@mit.edu>
75386      Branch: perl
75387            ! hints/darwin.sh
75388 ____________________________________________________________________________
75389 [ 18003] By: hv                                    on 2002/10/12  13:48:34
75390         Log: Second attempt to fix Devel::Peek test of $ENV{PATH}, after #17956
75391              and #18001.
75392      Branch: perl
75393            ! ext/Devel/Peek/Peek.t
75394 ____________________________________________________________________________
75395 [ 18002] By: hv                                    on 2002/10/11  23:22:56
75396         Log: Subject: [Encode] 1.77 Released
75397              From: Dan Kogai <dankogai@dan.co.jp>
75398              Date: Sun, 6 Oct 2002 12:52:52 +0900
75399              Message-Id: <16D4C6C9-D8DF-11D6-A5EA-0003939A104C@dan.co.jp>
75400      Branch: perl
75401            ! ext/Encode/Changes ext/Encode/Encode.pm
75402            ! ext/Encode/Unicode/Unicode.pm ext/Encode/encoding.pm
75403            ! ext/Encode/lib/Encode/Alias.pm
75404            ! ext/Encode/lib/Encode/Encoding.pm ext/Encode/t/jperl.t
75405            ! ext/Encode/ucm/big5-eten.ucm
75406 ____________________________________________________________________________
75407 [ 18001] By: hv                                    on 2002/10/11  22:52:43
75408         Log: Subject: Re: Smoke 17977 FAIL(F) MSWin32 5.0 W2000Pro (MSWin32-x86)
75409              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
75410              Date: Thu, 10 Oct 2002 14:28:55 -0700
75411              Message-ID: <XEfp9gzkgquV092yn@efn.org>
75412      Branch: perl
75413            ! ext/Devel/Peek/Peek.t
75414 ____________________________________________________________________________
75415 [ 18000] By: hv                                    on 2002/10/11  22:30:36
75416         Log: Subject: [PATCH] perl573delta delinting
75417              From: Jarkko Hietaniemi <jhi@iki.fi>
75418              Date: Fri, 4 Oct 2002 16:19:31 +0300
75419              Message-ID: <20021004131931.GE278184@lyta.hut.fi>
75420      Branch: perl
75421            ! pod/perl573delta.pod
75422 ____________________________________________________________________________
75423 [ 17999] By: hv                                    on 2002/10/11  22:28:36
75424         Log: Subject: [PATCH] No warn, just ERANGE (Was: Re: [PATCH] reentrant buffers)
75425              From: Jarkko Hietaniemi <jhi@iki.fi>
75426              Date: Fri, 4 Oct 2002 16:11:57 +0300
75427              Message-ID: <20021004131157.GD278184@lyta.hut.fi>
75428      Branch: perl
75429            ! pod/perldiag.pod reentr.c reentr.pl
75430 ____________________________________________________________________________
75431 [ 17998] By: rgs                                   on 2002/10/11  19:53:05
75432         Log: Fix bug #17771 : segfault with the 'for' statement modifier
75433              used inside a map or a grep.
75434      Branch: perl
75435            ! pp_ctl.c t/op/grep.t
75436 ____________________________________________________________________________
75437 [ 17997] By: hv                                    on 2002/10/11  12:10:39
75438         Log: Subject: [perl #17751] File::Spec::Win32::canonpath patch try#3
75439              From: Information Service <info@lingo.kiev.ua>
75440              Date: Wed, 09 Oct 2002 07:17:00 +0400
75441              Message-ID: <3DA39FAC.85471200@lingo.kiev.ua>
75442      Branch: perl
75443            ! lib/File/Spec/Win32.pm lib/File/Spec/t/Spec.t
75444 ____________________________________________________________________________
75445 [ 17996] By: hv                                    on 2002/10/11  11:55:53
75446         Log: Subject: [PROPOSED PATCH lib/AutoLoader.t lib/AutoLoader.pm] Test and Improve unimport()
75447              From: chromatic <chromatic@wgz.org>
75448              Date: Thu, 03 Oct 2002 22:56:54 -0700
75449              Message-ID: <20021004060120.33329.qmail@onion.perl.org>
75450      Branch: perl
75451            ! lib/AutoLoader.pm lib/AutoLoader.t
75452 ____________________________________________________________________________
75453 [ 17995] By: ams                                   on 2002/10/11  05:24:20
75454         Log: Subject: [perl #17819] Typo in perltooc?
75455              From: Bob Wilkinson (via RT) <perlbug@perl.org>
75456              Date: 9 Oct 2002 09:50:40 -0000
75457              Message-Id: <rt-17819-39445.14.7484532089852@bugs6.perl.org>
75458
75459              Subject: [perl #17821] Typo in perltooc
75460              From: Bob Wilkinson (via RT) <perlbug@perl.org>
75461              Date: 9 Oct 2002 10:12:51 -0000
75462              Message-Id: <rt-17821-39458.9.41452851965508@bugs6.perl.org>
75463      Branch: perl
75464            ! pod/perltooc.pod
75465 ____________________________________________________________________________
75466 [ 17994] By: rgs                                   on 2002/10/10  20:19:27
75467         Log: Fix bug #17776 : memory corruption in qr/##/x
75468      Branch: perl
75469            ! sv.c t/op/pat.t
75470 ____________________________________________________________________________
75471 [ 17993] By: rgs                                   on 2002/10/10  19:52:00
75472         Log: croak() is better written Perl_croak() in C code.
75473      Branch: perl
75474            ! util.c
75475 ____________________________________________________________________________
75476 [ 17992] By: hv                                    on 2002/10/10  11:29:12
75477         Log: Subject: Re: Hash::Util::lock_keys inhibits bless
75478              From: andreas.koenig@anima.de (Andreas J. Koenig)
75479              Date: Fri, 04 Oct 2002 06:38:57 +0200
75480              Message-ID: <m3bs6astr2.fsf@k242.linux.bogus>
75481      Branch: perl
75482            ! lib/Hash/Util.pm
75483 ____________________________________________________________________________
75484 [ 17991] By: hv                                    on 2002/10/10  11:20:41
75485         Log: new files lib/version.pm and lib/version.t for change #17990.
75486      Branch: perl
75487            + lib/version.pm lib/version.t
75488 ____________________________________________________________________________
75489 [ 17990] By: hv                                    on 2002/10/10  11:19:57
75490         Log: Subject: [PATCH] Version object combined patch
75491              From: John Peacock <jpeacock@rowman.com>
75492              Date: Fri, 04 Oct 2002 23:15:10 -0400
75493              Message-ID: <3D9E593E.1060605@rowman.com>
75494      Branch: perl
75495            ! MANIFEST embed.fnc embed.h global.sym pod/perlapi.pod
75496            ! pod/perlintern.pod proto.h t/comp/use.t universal.c util.c
75497 ____________________________________________________________________________
75498 [ 17989] By: hv                                    on 2002/10/10  10:48:42
75499         Log: Subject: PATCH: lib/ExtUtils/typemap
75500              From: Brian Ingerson <ingy@ttul.org>
75501              Date: Sat, 28 Sep 2002 13:03:24 -0700
75502              Message-ID: <20020928130324.A16900@ttul.org>
75503      Branch: perl
75504            ! lib/ExtUtils/typemap
75505 ____________________________________________________________________________
75506 [ 17988] By: hv                                    on 2002/10/10  10:45:19
75507         Log: Subject: [PATCH] Make Exporter cope with changing EXPORT_OK (was Re: Recent changes to Exporter::Heavy break Math::Pari)
75508              From: Nicholas Clark <nick@unfortu.net>
75509              Date: Sat, 28 Sep 2002 18:52:00 +0100
75510              Message-ID: <20020928175159.GC403@Bagpuss.unfortu.net>
75511      Branch: perl
75512            ! lib/Exporter.t lib/Exporter/Heavy.pm
75513 ____________________________________________________________________________
75514 [ 17987] By: hv                                    on 2002/10/10  10:27:40
75515         Log: Subject: Re: [perl #17075] sprintf: '%.[num](g|G)' documentation incorrect
75516              From: "Allen Smith" <easmith@beatrice.rutgers.edu>
75517              Date: Mon, 9 Sep 2002 17:36:55 -0400
75518              Message-Id: <10209091736.ZM1631710@puck2.rutgers.edu>
75519      Branch: perl
75520            ! pod/perlfunc.pod
75521 ____________________________________________________________________________
75522 [ 17986] By: hv                                    on 2002/10/10  09:51:24
75523         Log: Remove use of caller() in strict.pm, and tighten Safe compartment
75524              for Storable tests to match.
75525      Branch: perl
75526            ! ext/Storable/t/code.t lib/strict.pm lib/strict.t
75527 ____________________________________________________________________________
75528 [ 17985] By: hv                                    on 2002/10/10  09:27:00
75529         Log: Subject: Re: README.cygwin draft update
75530              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
75531              Date: Mon, 07 Oct 2002 17:15:09 -0700
75532              Message-ID: <NOio9gzkg6oR092yn@efn.org>
75533      Branch: perl
75534            ! README.cygwin pod/perl58delta.pod
75535 ____________________________________________________________________________
75536 [ 17984] By: rgs                                   on 2002/10/09  19:17:08
75537         Log: Fix bug #17823 : non-modifying tr/// stringifies references
75538      Branch: perl
75539            ! doop.c t/op/tr.t
75540 ____________________________________________________________________________
75541 [ 17983] By: merijn                                on 2002/10/09  12:22:26
75542         Log: Tru64 and gcc and threads
75543              Sat, 5 Oct 2002; Jarkko Hietaniemi <jhi@iki.fi>
75544      Branch: perl
75545            ! thread.h
75546 ____________________________________________________________________________
75547 [ 17982] By: merijn                                on 2002/10/09  10:34:40
75548         Log: Correct mailing list archive URL
75549              Wed, 9 Oct 2002; Slaven Rezic <slaven.rezic@berlin.de>
75550      Branch: perl
75551            ! Porting/pumpkin.pod
75552 ____________________________________________________________________________
75553 [ 17981] By: merijn                                on 2002/10/09  04:49:06
75554         Log: Try #3 for Porting/pumpkin.pod APPLLIB_EXP quoting
75555              Tue, 8 Oct 2002; Andy Dougherty <doughera@lafayette.edu>
75556      Branch: perl
75557            ! Porting/pumpkin.pod
75558 ____________________________________________________________________________
75559 [ 17980] By: sky                                   on 2002/10/06  15:40:56
75560         Log: Upgrade Safe.pm to 2.09 after CPAN backport.
75561              Fix testcases to run properly outside perl core build enviroment.
75562      Branch: perl
75563            ! ext/Opcode/Safe.pm ext/Safe/safe1.t ext/Safe/safe2.t
75564            ! ext/Safe/safe3.t
75565 ____________________________________________________________________________
75566 [ 17979] By: sky                                   on 2002/10/06  07:03:19
75567         Log: Subject: [PATCH] fix typo in Tie::Array
75568              From: "Jos I. Boumans" <kane@cpan.org>
75569              Date: sat okt 5, 2002  20:39:17 Europe/Stockholm
75570              Message-Id: <20021005183920.14746.qmail@onion.perl.org>
75571      Branch: perl
75572            ! lib/Tie/Array.pm
75573 ____________________________________________________________________________
75574 [ 17978] By: sky                                   on 2002/10/05  04:44:10
75575         Log: Upgrade to Attribute::Handlers 0.78
75576      Branch: perl
75577            ! lib/Attribute/Handlers.pm lib/Attribute/Handlers/Changes
75578            ! lib/Attribute/Handlers/README
75579 ____________________________________________________________________________
75580 [ 17977] By: rgs                                   on 2002/10/04  20:01:54
75581         Log: Complement to change #17976 :
75582              there was a similar bug on rdo().
75583              Increment $Safe::VERSION.
75584      Branch: perl
75585            ! ext/Opcode/Safe.pm ext/Safe/safe3.t
75586 ____________________________________________________________________________
75587 [ 17976] By: rgs                                   on 2002/10/04  19:44:48
75588         Log: Fix bug #17744, suggested by Andreas Jurenda,
75589              tweaked by rgs (security hole in Safe).
75590      Branch: perl
75591            + ext/Safe/safe3.t
75592            ! MANIFEST ext/Opcode/Safe.pm
75593 ____________________________________________________________________________
75594 [ 17975] By: merijn                                on 2002/10/04  13:30:17
75595         Log: Non ANSI feature detection in enum
75596      Branch: perl
75597            ! pad.h
75598 ____________________________________________________________________________
75599 [ 17974] By: rgs                                   on 2002/10/03  21:00:50
75600         Log: Fix a precedence problem.
75601      Branch: perl
75602            ! ext/Storable/t/integer.t
75603 ____________________________________________________________________________
75604 [ 17973] By: rgs                                   on 2002/10/03  20:34:13
75605         Log: Change the warning message "%s trapped by operation mask"
75606              to include '' around the op name. Document it in perldiag.
75607      Branch: perl
75608            ! ext/Opcode/Opcode.t ext/Opcode/Safe.pm ext/Safe/safe2.t op.c
75609            ! pod/perldiag.pod
75610 ____________________________________________________________________________
75611 [ 17972] By: rgs                                   on 2002/10/03  20:26:54
75612         Log: Add a new warning, "Possible precedence problem on bitwise
75613              %c operator", triggerred when a bitwise op has a numeric
75614              comparison op as child.
75615      Branch: perl
75616            ! op.c pod/perldiag.pod t/lib/warnings/op
75617 ____________________________________________________________________________
75618 [ 17971] By: ams                                   on 2002/10/03  11:03:41
75619         Log: Subject: Re: Not OK 17969
75620              From: Slaven Rezic <slaven.rezic@berlin.de>
75621              Date: 03 Oct 2002 13:12:58 +0200
75622              Message-Id: <87lm5fn5c5.fsf@vran.herceg.de>
75623      Branch: perl
75624            ! ext/Storable/Storable.pm ext/Storable/t/code.t
75625            ! ext/Storable/t/downgrade.t ext/Storable/t/forgive.t
75626            ! ext/Storable/t/malice.t
75627 ____________________________________________________________________________
75628 [ 17970] By: ams                                   on 2002/10/03  02:21:15
75629         Log: Add a line about 2.05.
75630      Branch: perl
75631            ! ext/Storable/ChangeLog
75632 ____________________________________________________________________________
75633 [ 17969] By: ams                                   on 2002/10/03  02:12:27
75634         Log: Subject: [PATCH] Storable and code serialization: documentation
75635              From: Slaven Rezic <slaven.rezic@berlin.de>
75636              Date: Wed, 2 Oct 2002 10:21:37 +0200 (CEST)
75637              Message-Id: <200210020821.g928Lb2i003767@vran.herceg.de>
75638      Branch: perl
75639            ! ext/Storable/MANIFEST ext/Storable/Storable.pm
75640            ! ext/Storable/t/code.t
75641 ____________________________________________________________________________
75642 [ 17968] By: ams                                   on 2002/10/03  01:40:51
75643         Log: Subject: [PATCH] Re: speed of my
75644              From: Stephen McCamant <smcc@mit.edu>
75645              Date: Wed, 2 Oct 2002 21:48:59 -0400
75646              Message-Id: <15771.41483.524281.299958@syllepsis.MIT.EDU>
75647      Branch: perl
75648            ! pp.c
75649 ____________________________________________________________________________
75650 [ 17967] By: hv                                    on 2002/10/02  15:04:57
75651         Log: Subject: [PATCH] reentrant buffers
75652              From: Jarkko Hietaniemi <jhi@iki.fi>
75653              Date: Fri, 27 Sep 2002 01:08:56 +0300
75654              Message-ID: <20020926220856.GA339120@lyta.hut.fi>
75655      Branch: perl
75656            ! INSTALL pod/perldiag.pod pod/perlthrtut.pod reentr.c reentr.pl
75657 ____________________________________________________________________________
75658 [ 17966] By: hv                                    on 2002/10/02  14:46:52
75659         Log: Subject: [PATCH] retropatch
75660              From: Jarkko Hietaniemi <jhi@iki.fi>
75661              Date: Fri, 27 Sep 2002 03:51:34 +0300
75662              Message-ID: <20020927005134.GB339120@lyta.hut.fi>
75663      Branch: perl
75664            + pod/perl573delta.pod
75665            ! MANIFEST pod/buildtoc.PL pod/perl.pod
75666 ____________________________________________________________________________
75667 [ 17965] By: hv                                    on 2002/10/02  14:42:21
75668         Log: op/tr.t test is affected by #17962
75669      Branch: perl
75670            ! t/op/tr.t
75671 ____________________________________________________________________________
75672 [ 17964] By: hv                                    on 2002/10/02  14:38:59
75673         Log: Subject: Re: [PATCH] Re: builtin die parsed differently to CORE::GLOBAL::die
75674              From: Rafael Garcia-Suarez <rgarciasuarez@free.fr>
75675              Date: Tue, 1 Oct 2002 23:34:35 +0200
75676              Message-Id: <20021001233435.318514f3.rgarciasuarez@free.fr>
75677      Branch: perl
75678            ! t/op/override.t toke.c
75679 ____________________________________________________________________________
75680 [ 17963] By: hv                                    on 2002/10/02  14:15:22
75681         Log: Subject: Re: [perl #17376] Bug Report - our(%)
75682              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
75683              Date: Tue, 01 Oct 2002 09:54:30 -0700
75684              Message-ID: <GNdm9gzkgWOS092yn@efn.org>
75685      Branch: perl
75686            ! op.c pp_hot.c t/comp/our.t
75687 ____________________________________________________________________________
75688 [ 17962] By: ams                                   on 2002/10/02  14:10:07
75689         Log: Subject: [PATCH] no [] in tr///
75690              From: Jarkko Hietaniemi <jhi@iki.fi>
75691              Date: Wed, 2 Oct 2002 17:09:11 +0300
75692              Message-Id: <20021002140911.GH278184@lyta.hut.fi>
75693      Branch: perl
75694            ! pod/perldiag.pod toke.c
75695 ____________________________________________________________________________
75696 [ 17961] By: hv                                    on 2002/10/02  14:09:11
75697         Log: Subject: Re: Hash::Util::lock_keys inhibits bless
75698              From: andreas.koenig@anima.de (Andreas J. Koenig)
75699              Date: Mon, 30 Sep 2002 17:24:06 +0200
75700              Message-ID: <m3zntzwlex.fsf@k242.linux.bogus>
75701      Branch: perl
75702            ! lib/Hash/Util.pm
75703 ____________________________________________________________________________
75704 [ 17959] By: hv                                    on 2002/10/02  14:06:29
75705         Log: Subject: [DOCPATCH] Unicode porting advice
75706              From: andreas.koenig@anima.de (Andreas J. Koenig)
75707              Date: Fri, 27 Sep 2002 15:30:16 +0200
75708              Message-ID: <m3znu3zhjr.fsf@k242.linux.bogus>
75709      Branch: perl
75710            ! pod/perlunicode.pod
75711 ____________________________________________________________________________
75712 [ 17958] By: hv                                    on 2002/10/02  13:57:06
75713         Log: missing quote from #17957
75714      Branch: perl
75715            ! Porting/pumpkin.pod
75716 ____________________________________________________________________________
75717 [ 17957] By: hv                                    on 2002/10/02  13:55:56
75718         Log: document how to set APPLLIB_EXP
75719              Subject: Re: [perl #15957] error installing perl 5.8.0
75720              From: Andy Dougherty <doughera@lafayette.edu>
75721              Date: Fri, 27 Sep 2002 09:13:29 -0400 (EDT)
75722              Message-ID: <Pine.SOL.4.10.10209270902210.6800-100000@maxwell.phys.lafayette.edu>
75723      Branch: perl
75724            ! Porting/pumpkin.pod
75725 ____________________________________________________________________________
75726 [ 17956] By: hv                                    on 2002/10/02  13:51:12
75727         Log: Devel::Peek tests from:
75728              Subject: [PATCH] MGf_TAINTEDDIR and MGf_MINMATCH reuse unknown to dump.c
75729              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
75730              Date: Thu, 26 Sep 2002 22:16:39 -0700
75731              Message-ID: <3m+k9gzkgqnP092yn@efn.org>
75732      Branch: perl
75733            ! ext/Devel/Peek/Peek.t
75734 ____________________________________________________________________________
75735 [ 17955] By: hv                                    on 2002/10/02  13:43:26
75736         Log: add precedence warning for bitwise docs
75737              Subject: [PATCH] Bug in ARM's floating point emulation - Need someone, really...
75738              From: Mike Guy <mjtg@cam.ac.uk>
75739              Date: Thu, 26 Sep 2002 13:20:45 +0100
75740              Message-Id: <E17uXdN-0003ko-00@libra.cus.cam.ac.uk>
75741      Branch: perl
75742            ! pod/perlop.pod
75743 ____________________________________________________________________________
75744 [ 17954] By: hv                                    on 2002/10/02  13:18:01
75745         Log: Subject: [PATCH] Re: perlio bug?
75746              From: Rafael Garcia-Suarez <rgarciasuarez@free.fr>
75747              Date: Wed, 25 Sep 2002 21:58:12 +0200
75748              Message-Id: <20020925215812.3b7adb0d.rgarciasuarez@free.fr>
75749      Branch: perl
75750            ! doio.c pod/perldiag.pod t/lib/warnings/doio
75751 ____________________________________________________________________________
75752 [ 17953] By: hv                                    on 2002/10/02  12:55:29
75753         Log: Subject: [PATCH pad.c,h] move all pad-related code to its own src file
75754              From: Dave Mitchell <davem@fdgroup.com>
75755              Date: Wed, 25 Sep 2002 23:40:23 +0100
75756              Message-ID: <20020925234023.A20044@fdgroup.com>
75757      Branch: perl
75758            + pad.c pad.h
75759            ! MANIFEST Makefile.SH Makefile.micro cop.h cv.h dump.c
75760            ! embed.fnc embed.h embedvar.h ext/B/B.xs ext/Devel/Peek/Peek.t
75761            ! op.c op.h perl.c perl.h perlapi.h pod/perlapi.pod
75762            ! pod/perlintern.pod pp.c pp_ctl.c pp_hot.c pp_sort.c pp_sys.c
75763            ! proto.h scope.c sv.c toke.c
75764 ____________________________________________________________________________
75765 [ 17952] By: hv                                    on 2002/10/02  11:23:38
75766         Log: better handling of whitespace in autodoc declarations; fragment from:
75767              Subject: [PATCH pad.c,h] move all pad-related code to its own src file
75768              From: Dave Mitchell <davem@fdgroup.com>
75769              Date: Wed, 25 Sep 2002 23:40:23 +0100
75770              Message-ID: <20020925234023.A20044@fdgroup.com>
75771      Branch: perl
75772            ! autodoc.pl
75773 ____________________________________________________________________________
75774 [ 17951] By: merijn                                on 2002/10/02  09:15:18
75775         Log: MakeMaker's INSTALLSITEMANXDIR Configure's counterpart
75776              Thu, 25 Jul 2002, Andy Dougherty
75777      Branch: perl
75778            ! Configure Policy_sh.SH
75779 ____________________________________________________________________________
75780 [ 17950] By: ams                                   on 2002/10/02  03:43:41
75781         Log: Add silly bandaid to stop segfaults on subsequent accesses to
75782              the Nullgv returned by gv_fetchpv() in S_scan_inputsymbol()
75783              (<$fred>).
75784      Branch: perl
75785            ! op.c
75786 ____________________________________________________________________________
75787 [ 17949] By: hv                                    on 2002/10/01  08:49:02
75788         Log: patch based on:
75789              Subject: Re: [perl #17376] Bug Report - our(%)
75790              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
75791              Date: Mon, 30 Sep 2002 15:22:18 -0700
75792              Message-ID: <a6Mm9gzkgK0P092yn@efn.org>
75793      Branch: perl
75794            ! op.c
75795 ____________________________________________________________________________
75796 [ 17948] By: hv                                    on 2002/10/01  08:26:44
75797         Log: Subject: [REPATCH lib/AutoLoader.pm] Remove Dependency on Exporter (take 2 or 3)
75798              From: chromatic <chromatic@wgz.org>
75799              Date: Fri, 13 Sep 2002 14:26:08 -0700
75800              Message-Id: <200209131426.08116.chromatic@wgz.org>
75801      Branch: perl
75802            ! lib/AutoLoader.pm
75803 ____________________________________________________________________________
75804 [ 17947] By: hv                                    on 2002/10/01  08:10:21
75805         Log: Subject: Re: sv_2pv_flags and ROK and UTF8 flags
75806              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
75807              Date: Wed, 11 Sep 2002 22:22:45 -0700
75808              Message-ID: <lSCg9gzkgymX092yn@efn.org>
75809      Branch: perl
75810            ! dump.c mg.h regexec.c sv.c t/op/pat.t
75811 ____________________________________________________________________________
75812 [ 17946] By: merijn                                on 2002/09/30  15:19:36
75813         Log: nanosleep on VMS not present
75814      Branch: perl
75815            ! configure.com
75816 ____________________________________________________________________________
75817 [ 17945] By: merijn                                on 2002/09/30  09:51:40
75818         Log: -Dgccansipedantic only for gcc 3+
75819              Mon, 30 Sep 2002, Jarkko Hietaniemi <jhi@iki.fi>
75820      Branch: perl
75821            ! Porting/pumpkin.pod cflags.SH
75822 ____________________________________________________________________________
75823 [ 17944] By: merijn                                on 2002/09/30  08:29:33
75824         Log: nanosleep probes as per Jarkko's request
75825      Branch: perl
75826            ! Configure NetWare/config_H.wc Porting/config.sh
75827            ! Porting/config_H config_h.SH epoc/config.sh perl.h
75828            ! win32/config.bc win32/config.gc win32/config.vc
75829            ! win32/config.vc64 win32/config_H.bc win32/config_H.gc
75830            ! win32/config_H.vc win32/config_H.vc64 wince/config.ce
75831            ! wince/config_H.ce
75832 ____________________________________________________________________________
75833 [ 17942] By: ams                                   on 2002/09/29  22:26:37
75834         Log: Remove package; (Heh heh.)
75835      Branch: perl
75836            ! gv.c intrpvar.h op.c perl.c perly.c perly.h perly.y
75837            ! perly_c.diff sv.c t/lib/warnings/op t/op/anonsub.t
75838            ! vms/perly_c.vms vms/perly_h.vms
75839 ____________________________________________________________________________
75840 [ 17941] By: hv                                    on 2002/09/29  12:11:06
75841         Log: Subject: [perl #16796] Configure script buglet
75842              From: "Amick, Eric" (via RT) <perlbug@perl.org>
75843              Date: 27 Aug 2002 20:09:29 -0000
75844              Message-Id: <rt-16796-35837.19.7072355819815@bugs6.perl.org>
75845      Branch: perl
75846            ! Configure
75847 ____________________________________________________________________________
75848 [ 17940] By: hv                                    on 2002/09/29  11:59:28
75849         Log: Subject: Re: [perl #17587] Attribute::Handlers and Config in 5.9.0
75850              From: Rafael Garcia-Suarez <rgarciasuarez@free.fr>
75851              Date: Fri, 27 Sep 2002 13:52:18 +0200
75852              Message-Id: <20020927135218.3a20dd68.rgarciasuarez@free.fr>
75853      Branch: perl
75854            ! lib/Attribute/Handlers.pm
75855 ____________________________________________________________________________
75856 [ 17939] By: hv                                    on 2002/09/29  11:55:17
75857         Log: Subject: [perl #17222] [PATCH] h2ph and Fortran, other wacky headers on IRIX
75858              From: Allen Smith (via RT) <perlbug@perl.org>
75859              Date: 13 Sep 2002 03:01:30 -0000
75860              Message-Id: <rt-17222-37356.6.04859798196188@bugs6.perl.org>
75861      Branch: perl
75862            ! t/lib/h2ph.pht utils/h2ph.PL
75863 ____________________________________________________________________________
75864 [ 17938] By: rgs                                   on 2002/09/28  20:42:59
75865         Log: Email address change for Stéphane Payrard
75866      Branch: perl
75867            ! AUTHORS
75868 ____________________________________________________________________________
75869 [ 17937] By: hv                                    on 2002/09/27  10:05:42
75870         Log: Subject: Re: [REVISED PATCH] Magic v-strings
75871              From: John Peacock <jpeacock@rowman.com>
75872              Date: Thu, 19 Sep 2002 22:30:58 -0400
75873              Message-ID: <3D8A8862.3000602@rowman.com>
75874      Branch: perl
75875            ! sv.c util.c
75876 ____________________________________________________________________________
75877 [ 17936] By: hv                                    on 2002/09/27  10:00:42
75878         Log: Subject: [PATCH] configure.com -- don't exclude threads::shared
75879              From: "Craig A. Berry" <craigberry@mac.com>
75880              Date: Wed, 25 Sep 2002 17:14:33 -0500
75881              Message-ID: <3D923549.6050809@mac.com>
75882      Branch: perl
75883            ! configure.com
75884 ____________________________________________________________________________
75885 [ 17935] By: hv                                    on 2002/09/27  09:48:19
75886         Log: Subject: [PATCH 5.8.0 DOC] perlopentut.pod, #3: The last of the content changes.
75887              From: Andy Lester <andy@petdance.com>
75888              Date: Fri, 20 Sep 2002 12:23:41 -0500
75889              Message-ID: <20020920172341.GA15672@petdance.com>
75890      Branch: perl
75891            ! pod/perlopentut.pod
75892 ____________________________________________________________________________
75893 [ 17934] By: hv                                    on 2002/09/26  18:50:02
75894         Log: missing '.' in test from #17932
75895      Branch: perl
75896            ! t/lib/strict/subs
75897 ____________________________________________________________________________
75898 [ 17933] By: hv                                    on 2002/09/26  17:01:11
75899         Log: Subject: [PATCH] perl #17453
75900              From: Jarkko Hietaniemi <jhi@iki.fi>
75901              Date: Fri, 20 Sep 2002 17:22:45 +0300
75902              Message-ID: <20020920142245.GG280265@lyta.hut.fi>
75903      Branch: perl
75904            ! lib/utf8_heavy.pl t/op/pat.t
75905 ____________________________________________________________________________
75906 [ 17932] By: hv                                    on 2002/09/26  16:47:32
75907         Log: #17931 checked for wrong constant
75908      Branch: perl
75909            ! op.c
75910 ____________________________________________________________________________
75911 [ 17931] By: hv                                    on 2002/09/26  16:29:26
75912         Log: Subject: [PATCH] [perl #10021] Fixing bareword usage under strict.pm
75913              From: Kay_Röpke <kay@dolphin-services.de>
75914              Date: Fri, 20 Sep 2002 16:09:08 +0200
75915              Message-Id: <8775B355-CCA2-11D6-AADE-000393414688@dolphin-services.de>
75916      Branch: perl
75917            ! op.c t/lib/strict/subs
75918 ____________________________________________________________________________
75919 [ 17930] By: hv                                    on 2002/09/26  15:56:07
75920         Log: Subject: [perl #17445] Class::Struct patch: version number, examples
75921              From: Ken Neighbors (via RT) <perlbug@perl.org>
75922              Date: 19 Sep 2002 18:48:22 -0000
75923              Message-Id: <rt-17445-38150.7.26118647008619@bugs6.perl.org>
75924      Branch: perl
75925            ! lib/Class/Struct.pm
75926 ____________________________________________________________________________
75927 [ 17928] By: hv                                    on 2002/09/26  09:54:05
75928         Log: Subject: [PATCH] bug in utf8.c(?)
75929              From: Marty Pauley <marty+p5p@kasei.com>
75930              Date: Fri, 20 Sep 2002 10:55:33 +0100
75931              Subject: [PATCH] bug in utf8.c(?)
75932      Branch: perl
75933            ! utf8.c
75934 ____________________________________________________________________________
75935 [ 17927] By: hv                                    on 2002/09/26  09:37:19
75936         Log: Subject: [PATCH] Re: [perl #17439] broken Locale::Language in a UTF environment
75937              From: Marty Pauley <marty+p5p@kasei.com>
75938              Date: Fri, 20 Sep 2002 09:52:16 +0100
75939              Message-Id: 20020920085216.GC10512@soto.kasei.com
75940      Branch: perl
75941            ! lib/Locale/Codes/t/languages.t lib/Locale/Language.pm
75942 ____________________________________________________________________________
75943 [ 17926] By: hv                                    on 2002/09/26  09:28:06
75944         Log: Subject: [PATCH] defuse installusrbinperl
75945              From: Jarkko Hietaniemi <jhi@iki.fi>
75946              Date: Thu, 19 Sep 2002 18:01:03 +0300
75947              Message-ID: <20020919150103.GI208696@lyta.hut.fi>
75948      Branch: perl
75949            ! Configure
75950 ____________________________________________________________________________
75951 [ 17925] By: hv                                    on 2002/09/26  09:15:55
75952         Log: Subject: [PATCH v2] enable -ansi -pedantic
75953              From: Jarkko Hietaniemi <jhi@iki.fi>
75954              Date: Wed, 18 Sep 2002 01:19:25 +0300
75955              Message-ID: <20020917221925.GF85044@lyta.hut.fi>
75956      Branch: perl
75957            ! Configure Porting/pumpkin.pod cflags.SH doio.c mg.c perl.c
75958            ! perl.h perlio.c pp_ctl.c pp_hot.c pp_sys.c sv.h toke.c util.c
75959 ____________________________________________________________________________
75960 [ 17924] By: hv                                    on 2002/09/26  08:44:16
75961         Log: Subject: [PATCH] ANSI-clean? (was Re: [PATCH] COW for ithreads)
75962              From: Nicholas Clark <nick@unfortu.net>
75963              Date: Sat, 14 Sep 2002 18:49:10 +0100
75964              Message-ID: <20020914174909.GG285@Bagpuss.unfortu.net>
75965      Branch: perl
75966            ! sv.c
75967 ____________________________________________________________________________
75968 [ 17923] By: hv                                    on 2002/09/26  08:33:54
75969         Log: Subject: [PATCH] Re: Advice on coredump
75970              From: Rafael Garcia-Suarez <rgarciasuarez@free.fr>
75971              Date: Wed, 18 Sep 2002 22:14:57 +0200
75972              Message-Id: <20020918221457.16cb1b43.rgarciasuarez@free.fr>
75973      Branch: perl
75974            ! op.c t/op/closure.t
75975 ____________________________________________________________________________
75976 [ 17922] By: hv                                    on 2002/09/26  08:25:28
75977         Log: Subject: Re: [PATCH] spurious t/auto directory appears
75978              From: Michael G Schwern <schwern@pobox.com>
75979              Date: Fri, 13 Sep 2002 23:56:05 -0400
75980              Message-ID: <20020914035605.GF18928@ool-18b93024.dyn.optonline.net>
75981      Branch: perl
75982            ! lib/ExtUtils/t/Installed.t
75983 ____________________________________________________________________________
75984 [ 17921] By: hv                                    on 2002/09/26  08:21:59
75985         Log: add TODO tests for slow our() declaration
75986              Subject: Re: [perl #17376] Bug Report - our(%)
75987              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
75988              Date: Thu, 19 Sep 2002 22:34:01 -0700
75989              Message-ID: <JNri9gzkgSBB092yn@efn.org>
75990      Branch: perl
75991            + t/comp/our.t
75992            ! MANIFEST
75993 ____________________________________________________________________________
75994 [ 17920] By: hv                                    on 2002/09/26  08:16:43
75995         Log: LEAKTEST is dead, RIP
75996              Subject: Re: [perl #17197] SIGSEGV in perl 5.8.0 multithread build with -DLEAKTEST
75997              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
75998              Date: Mon, 23 Sep 2002 18:33:12 +0200
75999              Message-Id: <20020923182824.C7B6.H.M.BRAND@hccnet.nl>
76000      Branch: perl
76001            ! av.c embed.fnc embed.h ext/GDBM_File/GDBM_File.xs global.sym
76002            ! handy.h perl.c perl.h pod/perlrun.pod proto.h sv.c util.c
76003 ____________________________________________________________________________
76004 [ 17919] By: hv                                    on 2002/09/26  07:59:42
76005         Log: Subject: [PATCH] AIX hints missinga  >&4
76006              From: Jarkko Hietaniemi <jhi@iki.fi>
76007              Date: Fri, 13 Sep 2002 16:48:42 +0300
76008              Message-ID: <20020913134842.GD8929@lyta.hut.fi>
76009      Branch: perl
76010            ! hints/aix.sh
76011 ____________________________________________________________________________
76012 [ 17918] By: hv                                    on 2002/09/26  07:51:10
76013         Log: Subject: [PATCH] perldoc -f stat (perlfunc.pod)
76014              From: "Brendan O'Dea" <bod@debian.org>
76015              Date: Mon, 23 Sep 2002 22:45:40 +1000
76016              Message-ID: <20020923124540.GB28031@londo.odea.dropbear.id.au>
76017      Branch: perl
76018            ! pod/perlfunc.pod
76019 ____________________________________________________________________________
76020 [ 17917] By: hv                                    on 2002/09/26  07:46:43
76021         Log: Subject: Re: [perl #17141] Text::Wrap "this should not happen" message
76022              From: Slaven Rezic <slaven.rezic@berlin.de>
76023              Date: 11 Sep 2002 19:37:09 +0200
76024              Message-ID: <871y80a0my.fsf@vran.herceg.de>
76025      Branch: perl
76026            ! lib/Text/TabsWrap/t/wrap.t lib/Text/Wrap.pm
76027 ____________________________________________________________________________
76028 [ 17916] By: hv                                    on 2002/09/26  07:31:42
76029         Log: Subject: [PATCH 5.8.0] perlembed.pod: make some examples work with multiplicity
76030              From: "Brendan O'Dea" <bod@debian.org>
76031              Date: Tue, 10 Sep 2002 09:19:05 +1000
76032              Message-ID: <20020909231905.GA31868@londo.odea.dropbear.id.au>
76033      Branch: perl
76034            ! pod/perlembed.pod
76035 ____________________________________________________________________________
76036 [ 17915] By: rgs                                   on 2002/09/24  20:19:22
76037         Log: Patch #17914 was empty ; this should have been applied instead.
76038      Branch: perl
76039            ! hints/aix.sh
76040 ____________________________________________________________________________
76041 [ 17914] By: rgs                                   on 2002/09/21  19:58:57
76042         Log: Subject: [PATCH] PASE saga continues
76043              From: Jarkko Hietaniemi <jhi@iki.fi>
76044              Date: Thu, 19 Sep 2002 23:30:20 +0300
76045              Message-ID: <20020919203020.GB274453@lyta.hut.fi>
76046      Branch: perl
76047            ! hints/aix.sh
76048 ____________________________________________________________________________
76049 [ 17913] By: rgs                                   on 2002/09/21  19:46:56
76050         Log: Subject: [PATCH perl@17882] file spec tweaks for VMS
76051              From: "Craig A. Berry" <craigberry@mac.com>
76052              Date: Wed, 18 Sep 2002 16:57:02 -0500
76053              Message-ID: <3D88F6AE.3020708@mac.com>
76054      Branch: perl
76055            ! lib/File/Spec/VMS.pm vms/ext/filespec.t
76056 ____________________________________________________________________________
76057 [ 17912] By: ams                                   on 2002/09/19  17:21:24
76058         Log: Subject: [PATCH] AIX test shouldn't trip OS/400 PASE
76059              From: Jarkko Hietaniemi <jhi@iki.fi>
76060              Date: Thu, 19 Sep 2002 18:59:48 +0300
76061              Message-Id: <20020919155948.GU208696@lyta.hut.fi>
76062
76063              Subject: [PATCH] more PASE tweakage
76064              From: Jarkko Hietaniemi <jhi@iki.fi>
76065              Date: Thu, 19 Sep 2002 18:01:44 +0300
76066              Message-Id: <20020919150144.GJ208696@lyta.hut.fi>
76067      Branch: perl
76068            ! README.os400 hints/aix.sh
76069 ____________________________________________________________________________
76070 [ 17911] By: ams                                   on 2002/09/17  19:29:53
76071         Log: Typo fix.
76072      Branch: perl
76073            ! ext/POSIX/POSIX.pod
76074 ____________________________________________________________________________
76075 [ 17910] By: ams                                   on 2002/09/17  18:09:32
76076         Log: Fix #17375 (rcatline didn't work on a formerly-defined undef) by
76077              checking for SvOK in do_readline().
76078      Branch: perl
76079            ! pp_hot.c t/op/gv.t
76080 ____________________________________________________________________________
76081 [ 17909] By: rgs                                   on 2002/09/16  21:49:27
76082         Log: Pod formatting nit, found by Merijn and Jos Boumans.
76083      Branch: perl
76084            ! pod/perlunicode.pod
76085 ____________________________________________________________________________
76086 [ 17908] By: rgs                                   on 2002/09/16  21:34:55
76087         Log: Subject: [perl #17340] When used/requied Locale::*** modules unexpectedly modify $_
76088              From: (Ilya Martynov) (via RT) <perlbug@perl.org>
76089              Date: 15 Sep 2002 19:06:56 -0000
76090              Message-Id: <rt-17340-37749.5.67862754668525@bugs6.perl.org>
76091      Branch: perl
76092            ! lib/Locale/Country.pm lib/Locale/Currency.pm
76093            ! lib/Locale/Language.pm lib/Locale/Script.pm
76094 ____________________________________________________________________________
76095 [ 17907] By: rgs                                   on 2002/09/16  20:33:51
76096         Log: Subject: Re: [perl #17174] perl 5.8.0 fails tests on NetBSD/Alpha
76097              From: Jarkko Hietaniemi <jhi@iki.fi>
76098              Date: Sun, 15 Sep 2002 18:02:17 +0300
76099              Message-ID: <20020915150217.GB21300@lyta.hut.fi>
76100      Branch: perl
76101            ! hints/netbsd.sh
76102 ____________________________________________________________________________
76103 [ 17906] By: rgs                                   on 2002/09/15  11:30:38
76104         Log: Fix pod/perlmodlib.PL (it wasn't generating a complete list
76105              of modules.) Regenerate pod/perlmodlib.pod. Add a warning :
76106              not all modules listed in perlmodlib are necessarily installed.
76107              Plus some corrections by Vincent Lefevre.
76108      Branch: perl
76109            ! lib/Term/ReadLine.pm pod/perlmodlib.PL pod/perlmodlib.pod
76110 ____________________________________________________________________________
76111 [ 17904] By: merijn                                on 2002/09/13  14:02:18
76112         Log: Tabs erroneusly expanded to spaces, causing AIX to fail
76113              in building DProf
76114      Branch: perl
76115            ! Configure
76116 ____________________________________________________________________________
76117 [ 17902] By: merijn                                on 2002/09/13  07:47:29
76118         Log: configure.com needs d_modflproto
76119              Thu 12 Sep 2002 23:19, "Craig A. Berry"
76120      Branch: perl
76121            ! configure.com
76122 ____________________________________________________________________________
76123 [ 17901] By: rgs                                   on 2002/09/12  20:19:55
76124         Log: Subject: [PATCH] more PASE wisdom
76125              From: Jarkko Hietaniemi <jhi@iki.fi>
76126              Date: Fri, 13 Sep 2002 00:17:39 +0300
76127              Message-ID: <20020912211739.GB6980@lyta.hut.fi>
76128      Branch: perl
76129            ! README.os400
76130 ____________________________________________________________________________
76131 [ 17900] By: rgs                                   on 2002/09/12  19:33:06
76132         Log: Fix a syntax incompatibility introduced by the // operator.
76133              (Note that C<print $fh //> is still a syntax error, it
76134              wasn't with perl 5.8.0.)
76135      Branch: perl
76136            ! t/op/dor.t toke.c
76137 ____________________________________________________________________________
76138 [ 17898] By: rgs                                   on 2002/09/11  20:58:46
76139         Log: Fix bug #17006 : remove spurious do{} in the deparsing
76140              of s/.../.../e.
76141      Branch: perl
76142            ! ext/B/B/Deparse.pm ext/B/t/deparse.t
76143 ____________________________________________________________________________
76144 [ 17897] By: rgs                                   on 2002/09/11  20:56:21
76145         Log: Subject: [perl #17119] typo in utils/dprofpp.PL
76146              From: "Todd C. Miller" (via RT) <perlbug@perl.org>
76147              Date: 10 Sep 2002 18:49:56 -0000
76148              Message-ID: <rt-17119-37126.4.55444095171472@bugs6.perl.org>
76149      Branch: perl
76150            ! utils/dprofpp.PL
76151 ____________________________________________________________________________
76152 [ 17896] By: merijn                                on 2002/09/11  08:31:45
76153         Log: re-synced Configure to backported metaunits
76154      Branch: perl
76155            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
76156            ! config_h.SH
76157 ____________________________________________________________________________
76158 [ 17892] By: merijn                                on 2002/09/10  15:43:53
76159         Log: Callback behaviour in hints
76160              Mon, 9 Sep 2002, Allen Smith
76161      Branch: perl
76162            ! hints/README.hints
76163 ____________________________________________________________________________
76164 [ 17888] By: merijn                                on 2002/09/10  09:20:52
76165         Log: New low-price HP servers
76166      Branch: perl
76167            ! README.hpux
76168 ____________________________________________________________________________
76169 [ 17887] By: rgs                                   on 2002/09/09  21:00:08
76170         Log: Subject: Re: [PATCH] Quieten warnings in Deparse.pm
76171              From: Paul Johnson <paul@pjcj.net>
76172              Date: Mon, 9 Sep 2002 23:37:33 +0200
76173              Message-ID: <20020909213733.GD879@pjcj.net>
76174      Branch: perl
76175            ! ext/B/B/Deparse.pm
76176 ____________________________________________________________________________
76177 [ 17886] By: rgs                                   on 2002/09/09  20:38:01
76178         Log: Subject: [PATCH] Re: [PATCH] Attempt at speeding up Config.pm.  Didn't work.
76179              From: Nicholas Clark <nick@unfortu.net>
76180              Date: Sun, 8 Sep 2002 23:05:54 +0100
76181              Message-ID: <20020908220553.GO286@Bagpuss.unfortu.net>
76182      Branch: perl
76183            ! configpm
76184 ____________________________________________________________________________
76185 [ 17885] By: rgs                                   on 2002/09/09  20:35:34
76186         Log: Subject: [PATCH] strict.pm pod at __END__
76187              From: Nicholas Clark <nick@unfortu.net>
76188              Date: Sun, 8 Sep 2002 22:36:09 +0100
76189              Message-ID: <20020908213608.GM286@Bagpuss.unfortu.net>
76190      Branch: perl
76191            ! lib/strict.pm
76192 ____________________________________________________________________________
76193 [ 17884] By: rgs                                   on 2002/09/09  19:33:11
76194         Log: Subject: [PATCH] File/Find/t/find.t tests 1 and 2 (was Re: [perl #17061] no strict 'garbage')
76195              From: Nicholas Clark <nick@unfortu.net>
76196              Date: Sun, 8 Sep 2002 19:45:52 +0100
76197              Message-ID: <20020908184551.GH286@Bagpuss.unfortu.net>
76198      Branch: perl
76199            ! lib/File/Find/t/find.t
76200 ____________________________________________________________________________
76201 [ 17883] By: rgs                                   on 2002/09/09  19:10:08
76202         Log: Subject: [PATCH] Quieten warnings in Deparse.pm
76203              From: Paul Johnson <paul@pjcj.net>
76204              Date: Sun, 8 Sep 2002 23:50:11 +0200
76205              Message-ID: <20020908215011.GA879@pjcj.net>
76206      Branch: perl
76207            ! ext/B/B/Deparse.pm
76208 ____________________________________________________________________________
76209 [ 17882] By: hv                                    on 2002/09/09  10:33:58
76210         Log: Update Changes
76211      Branch: perl
76212            ! Changes patchlevel.h
76213 ____________________________________________________________________________
76214 [ 17881] By: hv                                    on 2002/09/09  09:54:55
76215         Log: Subject: Re: [PATCH: perl #17849] (corrected) Long double bugs - sprintf.t _and_ num.t
76216              From: "Allen Smith" <easmith@beatrice.rutgers.edu>
76217              Date: Mon, 9 Sep 2002 01:48:08 -0400
76218              Message-Id: <10209090148.ZM1555835@puck2.rutgers.edu>
76219      Branch: perl
76220            ! perl.h sv.c
76221 ____________________________________________________________________________
76222 [ 17880] By: hv                                    on 2002/09/09  09:33:55
76223         Log: integrate Math::BigInt-1.63
76224              Subject: Re: [perl #16997] Math::BigFloat hang on bsqrt [ANNOUNCE v1.63
76225              From: Tels <perl_dummy@bloodgate.com>
76226              Date: Mon, 09 Sep 2002 00:23:01 +0200 (CEST)
76227              Message-Id: <200209082022.g88KMGY20194@crypt.org>
76228      Branch: perl
76229            ! lib/Math/BigFloat.pm lib/Math/BigInt.pm
76230            ! lib/Math/BigInt/t/bare_mif.t lib/Math/BigInt/t/constant.t
76231            ! lib/Math/BigInt/t/mbimbf.inc lib/Math/BigInt/t/mbimbf.t
76232            ! lib/Math/BigInt/t/sub_mif.t
76233 ____________________________________________________________________________
76234 [ 17879] By: hv                                    on 2002/09/09  09:23:53
76235         Log: Subject: [PATCH] Configure locincpth vs Jaguar gcc 3
76236              From: Jarkko Hietaniemi <jhi@iki.fi>
76237              Date: Mon, 9 Sep 2002 00:07:46 +0300
76238              Message-ID: <20020908210746.GB4136@lyta.hut.fi>
76239      Branch: perl
76240            ! Configure
76241 ____________________________________________________________________________
76242 [ 17878] By: hv                                    on 2002/09/09  09:11:57
76243         Log: small grammar fix in Benchmark docs
76244      Branch: perl
76245            ! lib/Benchmark.pm
76246 ____________________________________________________________________________
76247 [ 17877] By: hv                                    on 2002/09/09  09:09:30
76248         Log: Subject: [PATCH] configpm
76249              From: Abe Timmerman <abe@ztreet.demon.nl>
76250              Date: Sun, 8 Sep 2002 17:21:19 +0200
76251              Message-Id: <200209081721.19233.abe@ztreet.demon.nl>
76252      Branch: perl
76253            ! configpm
76254 ____________________________________________________________________________
76255 [ 17876] By: hv                                    on 2002/09/09  08:48:35
76256         Log: Subject: Re: Smoke 17849 MSWin32 (w2k/GCC)
76257              From: Abe Timmerman <abe@ztreet.demon.nl>
76258              Date: Mon, 9 Sep 2002 01:32:19 +0200
76259              Message-Id: <200209090132.19891.abe@ztreet.demon.nl>
76260      Branch: perl
76261            ! makedef.pl
76262 ____________________________________________________________________________
76263 [ 17875] By: rgs                                   on 2002/09/08  18:55:01
76264         Log: Subject: [PATCH] cleanup temp files (was Re: Smoke 17805 irix 6.5 6.5.16m IP32 r5000 /usr/share/src/cpan-current-benedick)
76265              From: Nicholas Clark <nick@unfortu.net>
76266              Date: Sun, 8 Sep 2002 15:46:44 +0100
76267              Message-ID: <20020908144643.GC286@Bagpuss.unfortu.net>
76268
76269              Plus two other similar tweaks
76270      Branch: perl
76271            ! ext/SDBM_File/sdbm.t
76272 ____________________________________________________________________________
76273 [ 17874] By: hv                                    on 2002/09/08  17:10:38
76274         Log: Subject: Re: [PATCH: perl #17849] (corrected) Long double bugs - sprintf.t _and_ num.t
76275              From: "Allen Smith" <easmith@beatrice.rutgers.edu>
76276              Date: Sat, 7 Sep 2002 05:25:45 -0400
76277              Message-Id: <10209070525.ZM1584639@puck2.rutgers.edu>
76278      Branch: perl
76279            ! hints/irix_6.sh numeric.c perl.h sv.c t/base/num.t
76280            ! t/op/sprintf.t
76281 ____________________________________________________________________________
76282 [ 17873] By: hv                                    on 2002/09/08  16:48:54
76283         Log: Subject: [PATCH] COW for ithreads (was Re: what copies scalars in ithreads?)
76284              From: Nicholas Clark <nick@unfortu.net>
76285              Date: Sat, 7 Sep 2002 00:20:53 +0100
76286              Message-ID: <20020906232052.GB901@Bagpuss.unfortu.net>
76287      Branch: perl
76288            ! op.c sv.c
76289 ____________________________________________________________________________
76290 [ 17872] By: hv                                    on 2002/09/08  16:35:46
76291         Log: temporarily skip failing Storable tests caused by #17869
76292      Branch: perl
76293            ! ext/Storable/t/code.t
76294 ____________________________________________________________________________
76295 [ 17871] By: hv                                    on 2002/09/08  16:23:49
76296         Log: Subject: [PATCH] tiddly tidy up for util.c
76297              From: Nicholas Clark <nick@unfortu.net>
76298              Date: Fri, 6 Sep 2002 23:00:14 +0100
76299              Message-ID: <20020906220013.GD428@Bagpuss.unfortu.net>
76300      Branch: perl
76301            ! util.c
76302 ____________________________________________________________________________
76303 [ 17870] By: hv                                    on 2002/09/08  16:21:23
76304         Log: regularise whitespace and formatting in util.c
76305      Branch: perl
76306            ! util.c
76307 ____________________________________________________________________________
76308 [ 17869] By: hv                                    on 2002/09/08  15:46:08
76309         Log: Subject: [perl #17061] no strict 'garbage'
76310              From: Elizabeth Mattijsen (via RT) <perlbug@perl.org>
76311              Date: 6 Sep 2002 19:31:02 -0000
76312              Message-Id: <rt-17061-36808.6.19994322284541@bugs6.perl.org>
76313              Date: Sat, 07 Sep 2002 13:40:22 +0200
76314              Message-Id: <4.2.0.58.20020907133846.02476d40@mickey.dijkmat.nl>
76315      Branch: perl
76316            ! lib/strict.pm lib/strict.t
76317 ____________________________________________________________________________
76318 [ 17868] By: hv                                    on 2002/09/08  15:24:08
76319         Log: small fix to perl58delta for MIME::QuotedPrint, from Jarkko
76320      Branch: perl
76321            ! pod/perl58delta.pod
76322 ____________________________________________________________________________
76323 [ 17867] By: hv                                    on 2002/09/08  15:10:46
76324         Log: Subject: [PATCH] allow using hires time() in Benchmark
76325              From: Jarkko Hietaniemi <jhi@iki.fi>
76326              Date: Fri, 6 Sep 2002 00:38:11 +0300
76327              Message-ID: <20020905213811.GA23771@lyta.hut.fi>
76328      Branch: perl
76329            ! lib/Benchmark.pm
76330 ____________________________________________________________________________
76331 [ 17866] By: hv                                    on 2002/09/08  15:06:05
76332         Log: Subject: [PATCH] OS/400 PASE symbol scan tweak
76333              From: Jarkko Hietaniemi <jhi@kosh.hut.fi>
76334              Date: Thu, 5 Sep 2002 21:46:20 +0300 (EET DST)
76335              Message-Id: <200209051846.g85IkKOk013697@kosh.hut.fi>
76336      Branch: perl
76337            ! Configure
76338 ____________________________________________________________________________
76339 [ 17865] By: hv                                    on 2002/09/08  15:03:23
76340         Log: Subject: Unicode::Collate 0.23 Released
76341              From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
76342              Date: Thu, 05 Sep 2002 23:28:32 +0900
76343              Message-Id: <20020905232316.8151.BQW10602@nifty.com>
76344      Branch: perl
76345            + lib/Unicode/Collate/t/index.t
76346            ! MANIFEST lib/Unicode/Collate.pm lib/Unicode/Collate/Changes
76347            ! lib/Unicode/Collate/README lib/Unicode/Collate/t/test.t
76348 ____________________________________________________________________________
76349 [ 17864] By: hv                                    on 2002/09/08  14:55:31
76350         Log: Subject: sv_2pv_flags and ROK and UTF8 flags
76351              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
76352              Date: Wed, 04 Sep 2002 21:09:01 -0700
76353              Message-ID: <djtd9gzkgyLd092yn@efn.org>
76354              Date: Fri, 06 Sep 2002 09:23:03 -0700
76355              Message-ID: <nZNe9gzkgKdH092yn@efn.org>
76356      Branch: perl
76357            ! lib/overload.t sv.c sv.h t/op/pat.t
76358 ____________________________________________________________________________
76359 [ 17863] By: hv                                    on 2002/09/08  14:11:54
76360         Log: setting PERL_CORE as in #17861 violates assumptions made by taint tests
76361      Branch: perl
76362            ! t/op/taint.t
76363 ____________________________________________________________________________
76364 [ 17862] By: hv                                    on 2002/09/08  14:01:07
76365         Log: Subject: [PATCH t/TestInit.pm] Set env PERL_CORE
76366              From: Michael G Schwern <schwern@pobox.com>
76367              Date: Wed, 4 Sep 2002 11:38:01 -0700
76368              Message-ID: <20020904183801.GF8367@ool-18b93024.dyn.optonline.net>
76369      Branch: perl
76370            ! t/TestInit.pm
76371 ____________________________________________________________________________
76372 [ 17861] By: hv                                    on 2002/09/08  13:58:10
76373         Log: Subject: Re: [PATCH t/test.pl] Let is/isnt() handle undef without warnings
76374              From: Michael G Schwern <schwern@pobox.com>
76375              Date: Fri, 6 Sep 2002 14:03:16 -0700
76376              Message-ID: <20020906210315.GC808@ool-18b93024.dyn.optonline.net>
76377      Branch: perl
76378            ! t/test.pl
76379 ____________________________________________________________________________
76380 [ 17860] By: hv                                    on 2002/09/08  13:48:49
76381         Log: #17859 misuses s/// return values
76382      Branch: perl
76383            ! configpm
76384 ____________________________________________________________________________
76385 [ 17859] By: hv                                    on 2002/09/08  13:17:46
76386         Log: Subject: Re: [PATCH] Attempt at speeding up Config.pm.  Didn't work.
76387              From: Nicholas Clark <nick@unfortu.net>
76388              Date: Mon, 2 Sep 2002 23:22:32 +0100
76389              Message-ID: <20020902222231.GG284@Bagpuss.unfortu.net>
76390      Branch: perl
76391            ! configpm
76392 ____________________________________________________________________________
76393 [ 17850] By: ams                                   on 2002/09/06  03:31:32
76394         Log: Subject: [PATCH] (mostly (Unicode)) pod nits
76395              From: Jarkko Hietaniemi <jhi@iki.fi>
76396              Date: Fri, 6 Sep 2002 06:01:57 +0300
76397              Message-Id: <20020906030157.GA28252@lyta.hut.fi>
76398      Branch: perl
76399            ! pod/perl.pod pod/perlunicode.pod pod/perluniintro.pod
76400 ____________________________________________________________________________
76401 [ 17849] By: gsar                                  on 2002/09/05  06:28:36
76402         Log: document setting the email address
76403      Branch: perl
76404            ! Porting/repository.pod
76405 ____________________________________________________________________________
76406 [ 17848] By: hv                                    on 2002/09/04  23:12:15
76407         Log: AUTHORS: preferred address for Allen Smith
76408      Branch: perl
76409            ! AUTHORS
76410 ____________________________________________________________________________
76411 [ 17847] By: hv                                    on 2002/09/04  23:10:37
76412         Log: copy on write: fixes and debugging
76413              Subject: what copies scalars in ithreads?
76414              From: Nicholas Clark <nick@unfortu.net>
76415              Date: Wed, 4 Sep 2002 21:52:47 +0100
76416              Message-ID: <20020904205247.GA280@Bagpuss.unfortu.net>
76417      Branch: perl
76418            ! sv.c
76419 ____________________________________________________________________________
76420 [ 17846] By: hv                                    on 2002/09/04  23:02:43
76421         Log: Subject: Re: [PATCH] A variety of README nitpicks.
76422              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
76423              Date: Wed, 04 Sep 2002 09:10:05 +0200
76424              Message-Id: <20020904090853.F13D.H.M.BRAND@hccnet.nl>
76425      Branch: perl
76426            ! README.hpux
76427 ____________________________________________________________________________
76428 [ 17845] By: hv                                    on 2002/09/04  15:06:33
76429         Log: Avoid 'unportable' warnings for lib/Math/BigInt/t/constant.t
76430      Branch: perl
76431            ! lib/Math/BigInt/t/constant.t
76432 ____________________________________________________________________________
76433 [ 17844] By: hv                                    on 2002/09/04  14:32:19
76434         Log: #17836 (DB_File-1.805) misses a couple of dTHX declarations
76435      Branch: perl
76436            ! ext/DB_File/DB_File.xs
76437 ____________________________________________________________________________
76438 [ 17843] By: hv                                    on 2002/09/04  14:09:13
76439         Log: #17842 was only half the story
76440              Subject: [PATCH deb.c] Re: HiRes failure is success?
76441              From: Dave Mitchell <davem@fdgroup.com>
76442              Date: Wed, 4 Sep 2002 16:11:15 +0100
76443              Message-ID: <20020904161115.E27603@fdgroup.com>
76444      Branch: perl
76445            ! deb.c
76446 ____________________________________________________________________________
76447 [ 17842] By: hv                                    on 2002/09/04  14:04:40
76448         Log: printf argument mismatch in Perl_deb_stack_all() from change #17718
76449      Branch: perl
76450            ! deb.c
76451 ____________________________________________________________________________
76452 [ 17841] By: hv                                    on 2002/09/04  13:57:27
76453         Log: Subject: [PATCH] op/getpid.t failure
76454              From: Michael G Schwern <schwern@pobox.com>
76455              Date: Tue, 3 Sep 2002 17:48:24 -0700
76456              Message-ID: <20020904004824.GG2701@ool-18b93024.dyn.optonline.net>
76457      Branch: perl
76458            ! t/op/getpid.t
76459 ____________________________________________________________________________
76460 [ 17840] By: hv                                    on 2002/09/04  13:55:20
76461         Log: Subject: [PATCH] File::Basename doesn't lazy load Carp right.
76462              and Subject: [PATCH] More modules that don't lazy load Carp right.
76463              From: Michael G Schwern <schwern@pobox.com>
76464              Date: Tue, 3 Sep 2002 17:21:57 -0700
76465              Message-ID: <20020904002157.GD2701@ool-18b93024.dyn.optonline.net>
76466              and Message-ID: <20020904003857.GE2701@ool-18b93024.dyn.optonline.net>
76467      Branch: perl
76468            ! ext/Encode/Unicode/Unicode.pm
76469            ! ext/Encode/lib/Encode/Encoding.pm ext/Sys/Hostname/Hostname.pm
76470            ! lib/File/Basename.pm
76471 ____________________________________________________________________________
76472 [ 17839] By: hv                                    on 2002/09/04  13:47:12
76473         Log: Subject: Re: [PATCH 5.8.0] add accessors for POSIX::SigAction
76474              From: "Brendan O'Dea" <bod@debian.org>
76475              Date: Wed, 4 Sep 2002 02:36:10 +1000
76476              Message-ID: <20020903163610.GA14595@londo.odea.dropbear.id.au>
76477      Branch: perl
76478            ! ext/POSIX/POSIX.pm ext/POSIX/POSIX.pod
76479 ____________________________________________________________________________
76480 [ 17838] By: hv                                    on 2002/09/04  13:41:27
76481         Log: Subject: [PATCHes] Still no working Berkeley DB in OS X 10.2
76482              From: =?ISO-8859-1?Q?Kay_R=F6pke?= <kay@dolphin-services.de>
76483              Date: Tue, 3 Sep 2002 13:46:18 +0200
76484              Message-Id: <C287A20E-BF32-11D6-A454-000393414688@dolphin-services.de>
76485      Branch: perl
76486            ! ext/DB_File/t/db-btree.t ext/DB_File/t/db-recno.t
76487 ____________________________________________________________________________
76488 [ 17837] By: hv                                    on 2002/09/04  13:38:27
76489         Log: Subject: [PATCH lib/Config.t] test grandfathered Config variables
76490              From: Michael G Schwern <schwern@pobox.com>
76491              Date: Mon, 2 Sep 2002 22:29:07 -0700
76492              Message-ID: <20020903052907.GR8061@ool-18b93024.dyn.optonline.net>
76493      Branch: perl
76494            ! lib/Config.t
76495 ____________________________________________________________________________
76496 [ 17836] By: hv                                    on 2002/09/04  13:35:36
76497         Log: Subject: [PATCH] DB_File 1.805
76498              From: "Paul Marquess" <Paul.Marquess@btinternet.com>
76499              Date: Mon, 2 Sep 2002 23:56:40 +0100
76500              Message-ID: <AIEAJICLCBDNAAOLLOKLAEMCFFAA.Paul.Marquess@btinternet.com>
76501      Branch: perl
76502            ! ext/DB_File/Changes ext/DB_File/DB_File.pm
76503            ! ext/DB_File/DB_File.xs ext/DB_File/dbinfo
76504            ! ext/DB_File/t/db-btree.t ext/DB_File/t/db-hash.t
76505            ! ext/DB_File/t/db-recno.t ext/DB_File/typemap
76506 ____________________________________________________________________________
76507 [ 17835] By: hv                                    on 2002/09/04  13:23:17
76508         Log: fix coredump after 64k-deep recursion
76509              Subject: Re: debugging coredump with -DD
76510              From: hv@crypt.org
76511              Date: Tue, 03 Sep 2002 14:34:20 +0100
76512              Message-Id: <200209031334.g83DYLN09709@crypt.compulink.co.uk>
76513      Branch: perl
76514            ! cop.h t/op/recurse.t
76515 ____________________________________________________________________________
76516 [ 17834] By: hv                                    on 2002/09/04  13:08:36
76517         Log: perldoc: allow arguments for pager
76518              Subject: perldoc patch for better $Config{pager} support, mandir patch, fhs patch
76519              From: Chip Turner <cturner@redhat.com>
76520              Date: 02 Sep 2002 01:17:23 -0400
76521              Message-ID: <vzku1l9x95o.fsf@minbar.devel.redhat.com>
76522      Branch: perl
76523            ! utils/perldoc.PL
76524 ____________________________________________________________________________
76525 [ 17833] By: hv                                    on 2002/09/04  12:55:54
76526         Log: Subject: [PATCH] use sysconf(_SC_CLK_TCK) for times()
76527              From: Jarkko Hietaniemi <jhi@iki.fi>
76528              Date: Sun, 1 Sep 2002 19:23:55 +0300
76529              Message-ID: <20020901162355.GH12536@lyta.hut.fi>
76530      Branch: perl
76531            ! embedvar.h intrpvar.h perl.c perlapi.h pp_sys.c
76532 ____________________________________________________________________________
76533 [ 17832] By: hv                                    on 2002/09/04  12:39:42
76534         Log: Subject: Re: [PATCH] Correct/completes Overloading in XS mods
76535              From: John Peacock <jpeacock@rowman.com>
76536              Date: Sun, 01 Sep 2002 15:00:12 -0400
76537              Message-ID: <3D7263BC.9020608@rowman.com>
76538      Branch: perl
76539            ! lib/ExtUtils/xsubpp pod/perlxs.pod
76540 ____________________________________________________________________________
76541 [ 17831] By: hv                                    on 2002/09/04  11:47:10
76542         Log: #17827 misses some win32 tweaks
76543      Branch: perl
76544            ! win32/Makefile win32/makefile.mk
76545 ____________________________________________________________________________
76546 [ 17830] By: hv                                    on 2002/09/04  11:41:22
76547         Log: update email address for Paul Marquess
76548      Branch: perl
76549            ! AUTHORS
76550 ____________________________________________________________________________
76551 [ 17829] By: hv                                    on 2002/09/04  11:38:39
76552         Log: Subject: Correction for AUTHORS.html
76553              From: Sean Davis <dive@ender.com>
76554              Date: Fri, 30 Aug 2002 03:51:16 -0700
76555              Message-ID: <20020830035116.A18739@endersgame.net>
76556      Branch: perl
76557            ! AUTHORS
76558 ____________________________________________________________________________
76559 [ 17828] By: hv                                    on 2002/09/04  11:31:42
76560         Log: Subject: [PATCH] File::Spec->catfile not canonicalizing consistently
76561              From: Michael G Schwern <schwern@pobox.com>
76562              Date: Fri, 30 Aug 2002 03:40:45 -0700
76563              Message-ID: <20020830104044.GF859@ool-18b93024.dyn.optonline.net>
76564      Branch: perl
76565            ! lib/File/Spec/Unix.pm lib/File/Spec/Win32.pm
76566            ! lib/File/Spec/t/Spec.t
76567 ____________________________________________________________________________
76568 [ 17827] By: hv                                    on 2002/09/04  11:21:57
76569         Log: Subject: [PATCH] OS/400 PASE port
76570              From: Jarkko Hietaniemi <jhi@iki.fi>
76571              Date: Thu, 29 Aug 2002 22:22:51 +0300
76572              Message-ID: <20020829192251.GA27102@lyta.hut.fi>
76573      Branch: perl
76574            + README.os400 hints/os400.sh
76575            ! Configure MANIFEST hints/aix.sh lib/Cwd.pm pod/buildtoc.PL
76576            ! pod/perl.pod pod/perlebcdic.pod pod/perlport.pod
76577 ____________________________________________________________________________
76578 [ 17826] By: hv                                    on 2002/09/04  11:10:54
76579         Log: Subject: [PATCH 5.8.0] allow Sys::Syslog test to fail gracefully
76580              From: "Brendan O'Dea" <bod@debian.org>
76581              Date: Thu, 29 Aug 2002 22:42:39 +1000
76582              Message-ID: <20020829124239.GA31934@londo.odea.dropbear.id.au>
76583      Branch: perl
76584            ! ext/Sys/Syslog/syslog.t
76585 ____________________________________________________________________________
76586 [ 17825] By: hv                                    on 2002/09/04  10:53:59
76587         Log: Subject: Re: Possible bug in IPC/Semaphore.pm [PATCH]
76588              From: "John P. Linderman" <jpl@research.att.com>
76589              Date: Wed, 28 Aug 2002 08:04:29 -0400 (EDT)
76590              Message-Id: <200208271900.PAA98096@raptor.research.att.com>
76591      Branch: perl
76592            ! ext/IPC/SysV/Semaphore.pm
76593 ____________________________________________________________________________
76594 [ 17824] By: rgs                                   on 2002/09/03  20:02:36
76595         Log: Subject: [perl #16971] [PATCH] Fix a couple of URLs that changed recently.
76596              From: Richard Soderberg (via RT) <perlbug@perl.org>
76597              Date: 3 Sep 2002 18:48:54 -0000
76598              Message-ID: <rt-16971-36426.15.5276119194873@bugs6.perl.org>
76599
76600              Subject: [PATCH] A variety of README nitpicks.
76601              From: Richard Soderberg <rs@crystalflame.net>
76602              Date: Tue, 3 Sep 2002 11:54:39 -0700 (PDT)
76603              Message-ID: <Pine.LNX.4.33.0209031148280.32671-200000@oregonnet.com>
76604      Branch: perl
76605            ! README.amiga README.dgux README.dos README.epoc README.hpux
76606            ! README.mint README.netware README.vmesa
76607 ____________________________________________________________________________
76608 [ 17823] By: rgs                                   on 2002/09/03  19:47:05
76609         Log: Fix bug #16828.
76610              Add a few tests to ext/B/t/b.t, make it use Test::More.
76611      Branch: perl
76612            ! ext/B/B.xs ext/B/t/b.t
76613 ____________________________________________________________________________
76614 [ 17822] By: rgs                                   on 2002/09/02  19:29:52
76615         Log: Some simple tests for the POSIX::isXXX() functions.
76616      Branch: perl
76617            ! ext/POSIX/t/posix.t
76618 ____________________________________________________________________________
76619 [ 17821] By: rgs                                   on 2002/08/30  19:56:53
76620         Log: Advertise Linux::Pid.
76621      Branch: perl
76622            ! pod/perlfunc.pod pod/perlvar.pod
76623 ____________________________________________________________________________
76624 [ 17819] By: hv                                    on 2002/08/30  13:42:02
76625         Log: Subject: [PATCH] Tweaks to Bleadperl Version Object Support
76626              From: John Peacock <jpeacock@rowman.com>
76627              Date: Wed, 28 Aug 2002 22:13:48 -0400
76628              Message-ID: <3D6D835C.50809@rowman.com>
76629      Branch: perl
76630            ! universal.c util.c
76631 ____________________________________________________________________________
76632 [ 17818] By: hv                                    on 2002/08/30  13:16:05
76633         Log: add test related to change #17799:
76634              Subject: Re: if.pm bug.
76635              From: "Steffen Mueller" <kjx9zthh3001@sneakemail.com>
76636              Date: Thu, 29 Aug 2002 19:39:58 +0200
76637              Message-ID: <20020829173358.34731.qmail@onion.perl.org>
76638      Branch: perl
76639            ! lib/if.t
76640 ____________________________________________________________________________
76641 [ 17817] By: hv                                    on 2002/08/30  13:12:20
76642         Log: Subject: [PATCH] AUTHORS
76643              From: "Brendan O'Dea" <bod@debian.org>
76644              Date: Thu, 29 Aug 2002 22:49:34 +1000
76645              Message-ID: <20020829124934.GA1984@londo.odea.dropbear.id.au>
76646      Branch: perl
76647            ! AUTHORS
76648 ____________________________________________________________________________
76649 [ 17816] By: hv                                    on 2002/08/30  13:10:45
76650         Log: Subject: [PATCH 5.8.0] Term::Cap allow # comments in infcocmp output
76651              From: "Brendan O'Dea" <bod@debian.org>
76652              Date: Thu, 29 Aug 2002 22:46:47 +1000
76653              Message-ID: <20020829124647.GA1498@londo.odea.dropbear.id.au>
76654      Branch: perl
76655            ! lib/Term/Cap.pm
76656 ____________________________________________________________________________
76657 [ 17815] By: hv                                    on 2002/08/30  13:02:41
76658         Log: formatting cleanup and:
76659              Subject: Re: perl-5.8.0 on HP porting center
76660              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
76661              Date: Thu, 29 Aug 2002 12:23:31 +0200
76662              Message-Id: <20020829122221.0CA3.H.M.BRAND@hccnet.nl>
76663      Branch: perl
76664            ! installperl
76665 ____________________________________________________________________________
76666 [ 17814] By: hv                                    on 2002/08/30  12:23:33
76667         Log: Subject: [PATCH] perlmod.pod nit
76668              From: Autrijus Tang <autrijus@autrijus.org>
76669              Date: Thu, 29 Aug 2002 03:49:34 +0800
76670              Message-ID: <20020828194934.GA12244@not.autrijus.org>
76671      Branch: perl
76672            ! pod/perlmod.pod
76673 ____________________________________________________________________________
76674 [ 17813] By: hv                                    on 2002/08/30  12:19:15
76675         Log: Subject: [PATCH] Re: glob names and Regexp type introspection
76676              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
76677              Date: Thu, 29 Aug 2002 17:31:31 -0700
76678              Message-ID: <jzrb9gzkgO7W092yn@efn.org>
76679      Branch: perl
76680            ! sv.c t/op/pat.t
76681 ____________________________________________________________________________
76682 [ 17812] By: hv                                    on 2002/08/30  12:06:20
76683         Log: Subject: [PATCH] typos in Hash::Util documentation
76684              From: Slaven Rezic <slaven.rezic@berlin.de>
76685              Date: Wed, 28 Aug 2002 17:08:50 +0200 (CEST)
76686              Message-Id: <200208281508.g7SF8o9Z015197@vran.herceg.de>
76687      Branch: perl
76688            ! lib/Hash/Util.pm
76689 ____________________________________________________________________________
76690 [ 17811] By: hv                                    on 2002/08/30  12:02:59
76691         Log: Subject: Re: Recent changes on the HP porting center
76692              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
76693              Date: Wed, 28 Aug 2002 17:39:27 +0200
76694              Message-Id: <20020828173024.3E95.H.M.BRAND@hccnet.nl>
76695      Branch: perl
76696            ! README.hpux
76697 ____________________________________________________________________________
76698 [ 17810] By: hv                                    on 2002/08/30  11:58:18
76699         Log: Subject: [PATCH] Fixes to threads::shared when disabled
76700              From: Michael G Schwern <schwern@pobox.com>
76701              Date: Wed, 28 Aug 2002 06:04:18 -0700
76702              Message-ID: <20020828130418.GG773@ool-18b93024.dyn.optonline.net>
76703      Branch: perl
76704            + ext/threads/shared/t/disabled.t
76705            ! MANIFEST ext/threads/shared/shared.pm
76706            ! ext/threads/shared/t/hv_refs.t
76707 ____________________________________________________________________________
76708 [ 17808] By: ams                                   on 2002/08/30  02:59:31
76709         Log: Subject: [PATCH] Tru64 vs Berkeley DB
76710              From: Jarkko Hietaniemi <jhi@iki.fi>
76711              Date: Fri, 30 Aug 2002 06:56:38 +0300
76712              Message-Id: <20020830035638.GB874@lyta.hut.fi>
76713      Branch: perl
76714            ! README.tru64 hints/dec_osf.sh
76715 ____________________________________________________________________________
76716 [ 17807] By: ams                                   on 2002/08/30  02:32:30
76717         Log: Subject: [PATCH] IRIX + INSTALL
76718              From: Jarkko Hietaniemi <jhi@iki.fi>
76719              Date: Fri, 30 Aug 2002 06:31:48 +0300
76720              Message-Id: <20020830033148.GA874@lyta.hut.fi>
76721      Branch: perl
76722            ! INSTALL hints/irix_6.sh
76723 ____________________________________________________________________________
76724 [ 17806] By: hv                                    on 2002/08/29  22:56:45
76725         Log: #17449 failed to apply the actual patch. This is it.
76726      Branch: perl
76727            ! lib/Exporter.pm lib/Exporter/Heavy.pm
76728 ____________________________________________________________________________
76729 [ 17805] By: hv                                    on 2002/08/29  13:49:04
76730         Log: Fix based on:
76731              Subject: [perl #16799] Perl 5.8.0 breaks POSIX::isprint() (and other POSIX::xxx)
76732              From: "esm@pobox.com (via RT)" <perlbug@perl.org>
76733              Date: 27 Aug 2002 22:10:16 -0000
76734              Message-Id: <rt-16799-35846.14.4842888832041@bugs6.perl.org>
76735      Branch: perl
76736            ! ext/POSIX/POSIX.xs
76737 ____________________________________________________________________________
76738 [ 17804] By: hv                                    on 2002/08/29  13:29:43
76739         Log: Subject: [PATCH] B::check_av() ; B::Deparse for CHECK blocks
76740              From: Rafael Garcia-Suarez <rgarciasuarez@free.fr>
76741              Date: Tue, 27 Aug 2002 23:36:53 +0200
76742              Message-Id: <20020827233653.535bc211.rgarciasuarez@free.fr>
76743      Branch: perl
76744            ! embedvar.h ext/B/B.pm ext/B/B.xs ext/B/B/Deparse.pm intrpvar.h
76745            ! perl.c perlapi.h sv.c
76746 ____________________________________________________________________________
76747 [ 17803] By: ams                                   on 2002/08/29  13:09:47
76748         Log: Subject: [PATCH] AIX compiler setup sanity checking
76749              From: Jarkko Hietaniemi <jhi@iki.fi>
76750              Date: Thu, 29 Aug 2002 16:43:51 +0300
76751              Message-Id: <20020829134351.GG5219@lyta.hut.fi>
76752      Branch: perl
76753            ! hints/aix.sh
76754 ____________________________________________________________________________
76755 [ 17802] By: hv                                    on 2002/08/29  12:32:51
76756         Log: Subject: [perl #16769] Documention bug
76757              From: "dformosa@dformosa.zeta.org.au (via RT)" <perlbug@perl.org>
76758              Date: 26 Aug 2002 10:01:04 -0000
76759              Message-Id: <rt-16769-35720.17.1057454913803@bugs6.perl.org>
76760      Branch: perl
76761            ! pod/perl58delta.pod
76762 ____________________________________________________________________________
76763 [ 17801] By: hv                                    on 2002/08/29  12:19:30
76764         Log: Subject: [PATCH] ExtUtils::Constant 0.14
76765              From: Nicholas Clark <nick@unfortu.net>
76766              Date: Sun, 25 Aug 2002 18:06:00 +0100
76767              Message-ID: <20020825170600.GE322@Bagpuss.unfortu.net>
76768      Branch: perl
76769            ! lib/ExtUtils/Constant.pm lib/ExtUtils/t/Constant.t
76770 ____________________________________________________________________________
76771 [ 17800] By: hv                                    on 2002/08/29  12:08:59
76772         Log: Subject: Patch: Put local($^I, @ARGV) = ... trick back into perlfaq5
76773              From: Mark-Jason Dominus <mjd@plover.com>
76774              Date: Sun, 25 Aug 2002 12:09:53 -0400
76775              Message-ID: <20020825160953.15987.qmail@plover.com>
76776      Branch: perl
76777            ! pod/perlfaq5.pod
76778 ____________________________________________________________________________
76779 [ 17799] By: hv                                    on 2002/08/29  11:48:39
76780         Log: Subject: Re: if.pm bug.
76781              From: "Steffen Mueller" <kjx9zthh3001@sneakemail.com>
76782              Date: Sun, 25 Aug 2002 00:27:59 +0200
76783              Message-ID: <20020824222210.16387.qmail@onion.perl.org>
76784      Branch: perl
76785            ! lib/if.pm
76786 ____________________________________________________________________________
76787 [ 17798] By: hv                                    on 2002/08/29  11:44:00
76788         Log: Subject: [PATCH] posixify getppid on linux-multithread
76789              From: Rafael Garcia-Suarez <rgarciasuarez@free.fr>
76790              Date: Tue, 6 Aug 2002 21:56:46 +0200
76791              Message-Id: <20020806215646.3f6852bb.rgarciasuarez@free.fr>
76792      Branch: perl
76793            + t/op/getpid.t
76794            ! MANIFEST embedvar.h hints/linux.sh perl.c perlapi.h perlvars.h
76795            ! pod/perlfunc.pod pod/perlvar.pod pp_sys.c util.c
76796 ____________________________________________________________________________
76797 [ 17797] By: hv                                    on 2002/08/29  10:55:41
76798         Log: Subject: Re: [perl #16677] B::SV::FLAGS dumps core
76799              From: Mark-Jason Dominus <mjd@plover.com>
76800              Date: Sun, 25 Aug 2002 22:31:54 -0400
76801              Message-ID: <20020826023154.22986.qmail@plover.com>
76802      Branch: perl
76803            ! ext/B/B.pm
76804 ____________________________________________________________________________
76805 [ 17791] By: hv                                    on 2002/08/27  11:28:32
76806         Log: Missing MANIFEST files for #17783.
76807      Branch: perl
76808            ! MANIFEST
76809 ____________________________________________________________________________
76810 [ 17790] By: hv                                    on 2002/08/27  11:22:36
76811         Log: #17783 introduced an outdated test module, causing failure in
76812              lib/ExtUtils/t/problems.t. This grabs a more recent copy from
76813              ExtUtils::MakeMaker.
76814      Branch: perl
76815            ! t/lib/TieOut.pm
76816 ____________________________________________________________________________
76817 [ 17789] By: ams                                   on 2002/08/27  04:04:48
76818         Log: Subject: Patch perlvar.pod
76819              From: mjd@plover.com
76820              Date: 27 Aug 2002 03:03:01 -0000
76821              Message-Id: <20020827030301.32481.qmail@plover.com>
76822      Branch: perl
76823            ! pod/perlvar.pod
76824 ____________________________________________________________________________
76825 [ 17788] By: hv                                    on 2002/08/26  23:59:47
76826         Log: Update Changes
76827      Branch: perl
76828            ! Changes patchlevel.h
76829 ____________________________________________________________________________
76830 [ 17787] By: hv                                    on 2002/08/26  19:22:27
76831         Log: fix for:
76832              Subject: [perl #16773] "abc" =~ /(ab)()(c)??/ broken
76833              From: (Randal L. Schwartz) (via RT) <perlbug@perl.org>
76834              Date: 26 Aug 2002 15:01:36 -0000
76835              Message-Id: <rt-16773-35748.5.13188490159294@bugs6.perl.org>
76836      Branch: perl
76837            ! regexec.c t/op/re_tests
76838 ____________________________________________________________________________
76839 [ 17786] By: hv                                    on 2002/08/26  15:34:25
76840         Log: Subject: CPAN Upload: S/SB/SBURKE/Test-1.21.tar.gz
76841              From: "Sean M. Burke" <sburke@cpan.org>
76842              Date: Mon, 26 Aug 2002 04:38:19 -0600
76843              Message-Id: <5.1.0.14.1.20020826043702.022ca320@mail.spinn.net>
76844      Branch: perl
76845            ! lib/Test.pm lib/Test/t/fail.t lib/Test/t/mix.t
76846            ! lib/Test/t/todo.t
76847 ____________________________________________________________________________
76848 [ 17785] By: hv                                    on 2002/08/26  15:18:41
76849         Log: fix non-ANSI C++-style comment
76850              Subject: [ PATCH ]  Smoke 17780 /pro/3gl/CPAN/perl-current
76851              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
76852              Date: Mon, 26 Aug 2002 09:15:18 +0200
76853              Message-Id: <20020826090145.6975.H.M.BRAND@hccnet.nl>
76854      Branch: perl
76855            ! ext/Storable/Storable.xs
76856 ____________________________________________________________________________
76857 [ 17784] By: hv                                    on 2002/08/26  15:15:19
76858         Log: #17780 relies on unixy paths to locate own directory for bignum tests.
76859      Branch: perl
76860            ! lib/bignum/t/biinfnan.t lib/bignum/t/bninfnan.t
76861            ! lib/bignum/t/brinfnan.t
76862 ____________________________________________________________________________
76863 [ 17783] By: hv                                    on 2002/08/26  15:07:21
76864         Log: Subject: [ANNOUNCE] Test::Simple 0.47
76865              From: Michael G Schwern <schwern@pobox.com>
76866              Date: Mon, 26 Aug 2002 04:13:03 -0700
76867              Message-ID: <20020826111303.GJ758@ool-18b93024.dyn.optonline.net>
76868      Branch: perl
76869            + lib/Test/Simple/t/details.t lib/Test/Simple/t/fork.t
76870            + lib/Test/Simple/t/has_plan.t lib/Test/Simple/t/has_plan2.t
76871            + lib/Test/Simple/t/ok_obj.t
76872            + t/lib/Test/Simple/sample_tests/pre_plan_death.plx
76873            ! lib/Test/Builder.pm lib/Test/More.pm lib/Test/Simple.pm
76874            ! lib/Test/Simple/Changes lib/Test/Simple/t/exit.t
76875            ! lib/Test/Simple/t/plan.t lib/Test/Simple/t/threads.t
76876            ! lib/Test/Tutorial.pod t/lib/TieOut.pm
76877 ____________________________________________________________________________
76878 [ 17782] By: hv                                    on 2002/08/26  15:00:55
76879         Log: new test for change #17773
76880              Subject: lib/Pod/t/htmlview.t and lib/Pod/t/htmlview.pod patch (to account for the Pod::Html patch)
76881              From: DH <crazyinsomniac@yahoo.com>
76882              Date: Mon, 26 Aug 2002 01:36:27 -0700 (PDT)
76883              Message-ID: <20020826083627.46199.qmail@web40207.mail.yahoo.com>
76884      Branch: perl
76885            ! lib/Pod/t/htmlview.pod lib/Pod/t/htmlview.t
76886 ____________________________________________________________________________
76887 [ 17781] By: hv                                    on 2002/08/26  14:48:35
76888         Log: #17775 changed reentr.c instead of reentr.pl, which generates it
76889      Branch: perl
76890            ! reentr.pl
76891 ____________________________________________________________________________
76892 [ 17780] By: hv                                    on 2002/08/25  19:03:50
76893         Log: fix bignum test failures
76894      Branch: perl
76895            ! lib/bignum/t/biinfnan.t lib/bignum/t/bninfnan.t
76896            ! lib/bignum/t/brinfnan.t
76897 ____________________________________________________________________________
76898 [ 17779] By: hv                                    on 2002/08/25  18:56:29
76899         Log: upgrade bignum to v0.13: fix test failures and update docs
76900      Branch: perl
76901            ! lib/bignum.pm lib/bignum/t/bignum.t lib/bignum/t/bninfnan.t
76902 ____________________________________________________________________________
76903 [ 17778] By: hv                                    on 2002/08/25  18:43:06
76904         Log: Subject: Encode 1.76 Released
76905              From: Dan Kogai <dankogai@dan.co.jp>
76906              Date: su elo 25, 2002  11:27:07 US/Eastern
76907              Message-Id: <1DE68466-B83F-11D6-8805-0003939A104C@dan.co.jp>
76908      Branch: perl
76909            ! ext/Encode/Changes ext/Encode/Encode.pm ext/Encode/bin/piconv
76910            ! ext/Encode/encoding.pm ext/Encode/lib/Encode/Alias.pm
76911            ! ext/Encode/lib/Encode/MIME/Header.pm
76912            ! ext/Encode/t/big5-eten.utf ext/Encode/ucm/big5-eten.ucm
76913 ____________________________________________________________________________
76914 [ 17777] By: rgs                                   on 2002/08/25  18:42:46
76915         Log: Fix parsing problems with the // operator.
76916              Make // able to follow various unary operators used without
76917              arguments or parens (shift, pop, getc, pos, readline,
76918              readlink, undef, umask, and the filetest operators), as
76919              well as the <FH> operator.
76920      Branch: perl
76921            ! perl.h t/op/dor.t toke.c
76922 ____________________________________________________________________________
76923 [ 17776] By: hv                                    on 2002/08/25  15:56:37
76924         Log: Subject: [PATCH] ExtUtils::Constant 0.13
76925              From: Nicholas Clark <nick@unfortu.net>
76926              Date: Fri, 23 Aug 2002 19:21:12 +0100
76927              Message-ID: <20020823182111.GA281@Bagpuss.unfortu.net>
76928      Branch: perl
76929            ! lib/ExtUtils/Constant.pm lib/ExtUtils/t/Constant.t
76930 ____________________________________________________________________________
76931 [ 17775] By: hv                                    on 2002/08/25  15:46:28
76932         Log: Subject: [perl #16729] crypt() doesn't work in multithreaded perl
76933              From: "mls@suse.de (via RT)" <perlbug@perl.org>
76934              Date: 23 Aug 2002 15:24:39 -0000
76935              Message-Id: <rt-16729-35555.9.25145891475907@bugs6.perl.org>
76936      Branch: perl
76937            ! reentr.c
76938 ____________________________________________________________________________
76939 [ 17774] By: hv                                    on 2002/08/25  15:29:42
76940         Log: Subject: [PATCH lib/Benchmark.(pm|t)]  Make cmpthese work as documented.
76941              From: Abigail <abigail@foad.org>
76942              Date: Thu, 22 Aug 2002 04:10:39 -0700
76943              Message-ID: <20020822041039.A2089@ucan.foad.org>
76944      Branch: perl
76945            ! lib/Benchmark.pm lib/Benchmark.t
76946 ____________________________________________________________________________
76947 [ 17773] By: hv                                    on 2002/08/25  15:17:16
76948         Log: Subject: Re: a bugfix for Pod::Html (in diff -u format)
76949              From: DH <crazyinsomniac@yahoo.com>
76950              Date: Thu, 22 Aug 2002 02:32:50 -0700 (PDT)
76951              Message-ID: <20020822093250.30523.qmail@web40205.mail.yahoo.com>
76952      Branch: perl
76953            ! lib/Pod/Html.pm
76954 ____________________________________________________________________________
76955 [ 17772] By: hv                                    on 2002/08/25  14:49:37
76956         Log: Subject: Re: p5p patches
76957              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
76958              Date: Fri, 23 Aug 2002 15:27:48 +0200
76959              Message-Id: <20020823152535.D3EA.H.M.BRAND@hccnet.nl>
76960      Branch: perl
76961            ! Porting/patching.pod
76962 ____________________________________________________________________________
76963 [ 17771] By: hv                                    on 2002/08/25  14:45:46
76964         Log: Subject: Newdated info for HP-UX
76965              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
76966              Date: Wed, 21 Aug 2002 20:20:17 +0200
76967              Message-Id: <20020821201737.697B.H.M.BRAND@hccnet.nl>
76968      Branch: perl
76969            ! README.hpux
76970 ____________________________________________________________________________
76971 [ 17770] By: hv                                    on 2002/08/25  14:26:36
76972         Log: Subject: [PATCH] let perlfaq1.pod mention 5.8 as the current stable release
76973              From: "Jos I. Boumans" <kane@cpan.org>
76974              Date: Wed, 21 Aug 2002 14:55:51 +0200
76975              Message-ID: <20020821124817.34761.qmail@onion.perl.org>
76976      Branch: perl
76977            ! pod/perlfaq1.pod
76978 ____________________________________________________________________________
76979 [ 17769] By: hv                                    on 2002/08/25  14:16:50
76980         Log: Subject: bit more for WinCE
76981              From: "Vadim Konovalov" <vkonovalov@peterstar.ru>
76982              Date: Wed, 21 Aug 2002 01:31:52 +0400
76983              Message-ID: <000f01c24891$045c4990$2b5ec3d9@vad>
76984      Branch: perl
76985            ! wince/Makefile.ce wince/compile.bat wince/win32io.c
76986            ! wince/wince.c
76987 ____________________________________________________________________________
76988 [ 17768] By: hv                                    on 2002/08/25  14:02:47
76989         Log: Subject: [PATCH] fix lib.pm's import() to accept readonly parameters
76990              From: Anton Berezin <tobez@tobez.org>
76991              Date: Tue, 20 Aug 2002 23:44:25 +0200
76992              Message-ID: <20020820214425.GG16178@heechee.tobez.org>
76993      Branch: perl
76994            ! lib/lib.t lib/lib_pm.PL
76995 ____________________________________________________________________________
76996 [ 17767] By: hv                                    on 2002/08/25  13:52:08
76997         Log: Subject: [perl #16281] patch to enable perldoc -n for MSWin32 (perl-5.8.0)
76998              From: "Randy W. Sims" (via RT) <perlbug@perl.org>
76999              Date: 18 Aug 2002 13:27:12 -0000
77000              Message-Id: <rt-16281-34264.3.49471192322156@bugs6.perl.org>
77001      Branch: perl
77002            ! utils/perldoc.PL
77003 ____________________________________________________________________________
77004 [ 17766] By: rgs                                   on 2002/08/24  20:33:05
77005         Log: Subject: [perl #16737] [PATCH] Perl5.8.0 two simple typos in perlxstut
77006              From: Peter BARABAS (via RT) <perlbug@perl.org>
77007              Date: 24 Aug 2002 08:16:19 -0000
77008              Message-ID: <rt-16737-35573.3.51579548306248@bugs6.perl.org>
77009      Branch: perl
77010            ! pod/perlxstut.pod
77011 ____________________________________________________________________________
77012 [ 17765] By: rgs                                   on 2002/08/24  19:03:52
77013         Log: Subject: [PATCH] remove 2 unit warnings from lib/Net/t/hostname.t
77014              From: Nicholas Clark <nick@unfortu.net>
77015              Date: Sat, 24 Aug 2002 17:01:08 +0100
77016              Message-ID: <20020824160107.GI280@Bagpuss.unfortu.net>
77017              (plus a typo fix)
77018      Branch: perl
77019            ! lib/Net/t/hostname.t
77020 ____________________________________________________________________________
77021 [ 17764] By: rgs                                   on 2002/08/24  12:29:27
77022         Log: a2p wasn't installed with -Dversiononly
77023      Branch: perl
77024            ! installperl
77025 ____________________________________________________________________________
77026 [ 17763] By: hv                                    on 2002/08/23  12:23:31
77027         Log: #17747 caused bad free()s with PERL_DESTRUCT by calling newXS()
77028              with a NULL subaddr. Fix that, and stop it happening again.
77029      Branch: perl
77030            ! op.c universal.c
77031 ____________________________________________________________________________
77032 [ 17762] By: hv                                    on 2002/08/23  11:02:35
77033         Log: fixup threaded build for vstring changes
77034      Branch: perl
77035            ! universal.c util.c
77036 ____________________________________________________________________________
77037 [ 17761] By: ams                                   on 2002/08/23  02:54:09
77038         Log: Incorporate fix from JHI at:
77039              http://rt.perl.org/rt2/Ticket/Display.html?id=16708
77040      Branch: perl
77041            ! ext/NDBM_File/NDBM_File.xs ext/ODBM_File/ODBM_File.xs
77042 ____________________________________________________________________________
77043 [ 17760] By: ams                                   on 2002/08/23  01:30:46
77044         Log: Subject: [PATCH] PPPort IVSIZE and SvPV_nolen
77045              From: Jarkko Hietaniemi <jhi@iki.fi>
77046              Date: Fri, 23 Aug 2002 05:29:09 +0300
77047              Message-Id: <20020823022909.GC9135@lyta.hut.fi>
77048      Branch: perl
77049            ! ext/Devel/PPPort/PPPort.pm
77050 ____________________________________________________________________________
77051 [ 17759] By: ams                                   on 2002/08/23  01:27:23
77052         Log: Subject: [PATCH] x2p/str.c signedness nits
77053              From: Jarkko Hietaniemi <jhi@iki.fi>
77054              Date: Fri, 23 Aug 2002 02:43:30 +0300
77055              Message-Id: <20020822234330.GC31624@lyta.hut.fi>
77056      Branch: perl
77057            ! x2p/str.c
77058 ____________________________________________________________________________
77059 [ 17758] By: hv                                    on 2002/08/22  22:29:45
77060         Log: bignum-0.12 updates from:
77061              Subject: [ANNOUCNE] Big Math::Big* update
77062              From: Tels <perl_dummy@bloodgate.com>
77063              Date: Tue, 13 Aug 2002 22:02:09 +0200 (CEST)
77064              Message-Id: <200208132121.g7DLLRV21408@crypt.org>
77065      Branch: perl
77066            + lib/bignum/t/biinfnan.t lib/bignum/t/bn_lite.t
77067            + lib/bignum/t/bninfnan.t lib/bignum/t/br_lite.t
77068            + lib/bignum/t/brinfnan.t lib/bignum/t/infnan.inc
77069            ! MANIFEST lib/bigint.pm lib/bignum.pm lib/bignum/t/bignum.t
77070            ! lib/bigrat.pm
77071 ____________________________________________________________________________
77072 [ 17757] By: hv                                    on 2002/08/22  22:19:42
77073         Log: new file for #17756
77074      Branch: perl
77075            ! MANIFEST
77076 ____________________________________________________________________________
77077 [ 17756] By: hv                                    on 2002/08/22  22:16:41
77078         Log: Subject: ANNOUCNE: Math::BigRat v0.09
77079              From: Tels <perl_dummy@bloodgate.com>
77080              Date: Wed, 14 Aug 2002 20:12:03 +0200 (CEST)
77081              Message-Id: <200208141812.g7EICrV23771@crypt.org>
77082      Branch: perl
77083            + lib/Math/BigRat/t/big_ap.t
77084            ! lib/Math/BigRat.pm lib/Math/BigRat/t/bigrat.t
77085            ! lib/Math/BigRat/t/bigratpm.inc
77086 ____________________________________________________________________________
77087 [ 17755] By: hv                                    on 2002/08/22  19:44:03
77088         Log: new files from #17754
77089      Branch: perl
77090            + lib/Math/BigInt/Scalar.pm lib/Math/BigInt/t/bigints.t
77091 ____________________________________________________________________________
77092 [ 17754] By: hv                                    on 2002/08/22  19:42:58
77093         Log: Subject: ANNOUNCE: Math-BigInt v1.62
77094              From: Tels <perl_dummy@bloodgate.com>
77095              Date: Wed, 21 Aug 2002 19:12:59 +0200 (CEST)
77096              Message-Id: <200208211513.g7LFDUs02512@crypt.org>
77097      Branch: perl
77098            ! MANIFEST lib/Math/BigFloat.pm lib/Math/BigInt.pm
77099            ! lib/Math/BigInt/Calc.pm lib/Math/BigInt/t/bare_mbf.t
77100            ! lib/Math/BigInt/t/bare_mbi.t lib/Math/BigInt/t/bare_mif.t
77101            ! lib/Math/BigInt/t/bigfltpm.inc lib/Math/BigInt/t/bigfltpm.t
77102            ! lib/Math/BigInt/t/bigintc.t lib/Math/BigInt/t/bigintpm.inc
77103            ! lib/Math/BigInt/t/bigintpm.t lib/Math/BigInt/t/calling.t
77104            ! lib/Math/BigInt/t/constant.t lib/Math/BigInt/t/mbimbf.inc
77105            ! lib/Math/BigInt/t/mbimbf.t lib/Math/BigInt/t/sub_mbf.t
77106            ! lib/Math/BigInt/t/sub_mbi.t lib/Math/BigInt/t/sub_mif.t
77107            ! lib/Math/BigInt/t/upgrade.inc lib/Math/BigInt/t/upgrade.t
77108            ! lib/Math/BigInt/t/with_sub.t t/lib/Math/BigFloat/Subclass.pm
77109 ____________________________________________________________________________
77110 [ 17753] By: hv                                    on 2002/08/22  12:05:57
77111         Log: Subject: podlators 1.24 released
77112              From: Russ Allbery <rra@stanford.edu>
77113              Date: Sat, 03 Aug 2002 20:56:42 -0700
77114              Message-ID: <ylbs8jff9h.fsf@windlord.stanford.edu>
77115      Branch: perl
77116            + lib/Pod/t/text-options.t
77117            ! MANIFEST lib/Pod/Text.pm lib/Pod/Text/Overstrike.pm
77118            ! lib/Pod/t/basic.t pod/pod2text.PL
77119 ____________________________________________________________________________
77120 [ 17752] By: hv                                    on 2002/08/22  11:13:17
77121         Log: Subject: [Announce] Unicode::Collate 0.20 -> UCA version 9
77122              From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
77123              Date: Fri, 26 Jul 2002 02:59:12 +0900
77124              Message-Id: <20020726025828.B5E9.BQW10602@nifty.com>
77125      Branch: perl
77126            ! lib/Unicode/Collate.pm lib/Unicode/Collate/Changes
77127            ! lib/Unicode/Collate/README lib/Unicode/Collate/keys.txt
77128            ! lib/Unicode/Collate/t/test.t
77129 ____________________________________________________________________________
77130 [ 17751] By: hv                                    on 2002/08/22  11:08:35
77131         Log: fix test failure from #17747
77132      Branch: perl
77133            ! ext/B/t/stash.t
77134 ____________________________________________________________________________
77135 [ 17750] By: hv                                    on 2002/08/22  10:46:19
77136         Log: Subject: [PATCH] Fix DBM filters
77137              From: "Paul Marquess" <Paul.Marquess@btinternet.com>
77138              Date: Wed, 21 Aug 2002 11:40:49 +0100
77139              Message-ID: <AIEAJICLCBDNAAOLLOKLAEHCFEAA.Paul.Marquess@btinternet.com>
77140      Branch: perl
77141            ! XSUB.h ext/DB_File/DB_File.xs ext/DB_File/typemap
77142            ! ext/GDBM_File/GDBM_File.xs ext/GDBM_File/gdbm.t
77143            ! ext/GDBM_File/typemap ext/NDBM_File/NDBM_File.xs
77144            ! ext/NDBM_File/ndbm.t ext/NDBM_File/typemap
77145            ! ext/ODBM_File/ODBM_File.xs ext/ODBM_File/odbm.t
77146            ! ext/ODBM_File/typemap ext/SDBM_File/SDBM_File.xs
77147            ! ext/SDBM_File/sdbm.t ext/SDBM_File/typemap
77148 ____________________________________________________________________________
77149 [ 17749] By: hv                                    on 2002/08/22  01:04:32
77150         Log: avoid use of %caller::EXPORT
77151              Subject: [PATCH] Re: question about Exporter::import
77152              From: Nicholas Clark <nick@unfortu.net>
77153              Date: Wed, 14 Aug 2002 21:33:12 +0100
77154              Message-id: <20020814203311.GD278@Bagpuss.unfortu.net>
77155      Branch: perl
77156            ! lib/Exporter.pm lib/Exporter/Heavy.pm
77157 ____________________________________________________________________________
77158 [ 17748] By: hv                                    on 2002/08/22  00:54:03
77159         Log: todo test for linux $0 modification
77160              Subject: Re: [perl #16206] $0 in 5.8
77161              From: Slaven Rezic <slaven.rezic@berlin.de>
77162              Date: 17 Aug 2002 21:32:37 +0200
77163              Message-id: <87elcx2sdm.fsf@vran.herceg.de>
77164      Branch: perl
77165            ! t/op/magic.t
77166 ____________________________________________________________________________
77167 [ 17747] By: hv                                    on 2002/08/22  00:11:34
77168         Log: Subject: Re: [PATCH] Version object patch #1
77169              From: John Peacock <jpeacock@rowman.com>
77170              Date: Tue, 20 Aug 2002 22:51:46 -0400 (Wed 03:51 BST)
77171              Message-id: <3D630042.6020407@rowman.com>
77172
77173              Subject: Re: [REVISED PATCH] Magic v-strings
77174              From: John Peacock <jpeacock@rowman.com>
77175              Date: Wed, 21 Aug 2002 15:08:34 -0400 (20:08 BST)
77176              Message-id: <3D63E532.7020305@rowman.com>
77177      Branch: perl
77178            ! sv.c t/op/ver.t universal.c util.c
77179 ____________________________________________________________________________
77180 [ 17746] By: hv                                    on 2002/08/20  16:48:05
77181         Log: Subject: [PATCH] Version object patch #1
77182              From: John Peacock <jpeacock@rowman.com>
77183              Date: Thu, 15 Aug 2002 10:06:21 -0400 (15:06 BST)
77184              Message-id: <3D5BB55D.6090603@rowman.com>
77185              and Message-id: <3D627D1A.4050607@rowman.com>
77186              and t/lib/warnings/universal tweak to skip
77187      Branch: perl
77188            ! embed.fnc embed.h global.sym pod/perlapi.pod proto.h sv.h
77189            ! t/lib/warnings/universal toke.c util.c
77190 ____________________________________________________________________________
77191 [ 17745] By: hv                                    on 2002/08/20  16:27:01
77192         Log: perldelta for #17727
77193      Branch: perl
77194            ! pod/perldelta.pod
77195 ____________________________________________________________________________
77196 [ 17744] By: hv                                    on 2002/08/20  15:34:36
77197         Log: Subject: typo in perfunc.pod
77198              From: "John P. Linderman" <jpl@research.att.com>
77199              Date: Mon, 19 Aug 2002 08:45:31 -0400 (EDT) (13:45 BST)
77200              Message-id: <200208191245.IAA20072@raptor.research.att.com>
77201      Branch: perl
77202            ! pod/perlfunc.pod
77203 ____________________________________________________________________________
77204 [ 17743] By: hv                                    on 2002/08/20  15:31:40
77205         Log: Subject: Re: [PATCH] fix typos in perlpacktut
77206              From: "Mr. Nobody" <mrnobo1024@yahoo.com>
77207              Date: Fri, 16 Aug 2002 20:40:58 -0700 (PDT) (Sat 04:40 BST)
77208              Message-id: <20020817034058.45633.qmail@web20802.mail.yahoo.com>
77209      Branch: perl
77210            ! pod/perlpacktut.pod
77211 ____________________________________________________________________________
77212 [ 17742] By: hv                                    on 2002/08/20  14:51:16
77213         Log: Subject: [REVISED PATCH] Magic v-strings
77214              From: John Peacock <jpeacock@rowman.com>
77215              Date: Sat, 10 Aug 2002 15:56:22 -0400 (20:56 BST)
77216              Message-id: <3D556FE6.6000404@rowman.com>
77217              plus a bit of cleanup
77218      Branch: perl
77219            ! dump.c perl.h pod/perlguts.pod sv.c sv.h util.c
77220 ____________________________________________________________________________
77221 [ 17741] By: hv                                    on 2002/08/20  14:20:16
77222         Log: Subject: Re: [PATCH] Storable and CODE references
77223              From: Slaven Rezic <slaven.rezic@berlin.de>
77224              Date: 17 Aug 2002 21:58:03 +0200
77225              Message-id: <87bs812r78.fsf@vran.herceg.de>
77226      Branch: perl
77227            + ext/Storable/t/code.t
77228            ! MANIFEST ext/Storable/Storable.xs ext/Storable/t/forgive.t
77229            ! ext/Storable/t/malice.t
77230 ____________________________________________________________________________
77231 [ 17740] By: hv                                    on 2002/08/20  14:07:56
77232         Log: Clean up copy-on-write macros and debug facilities (new flag 'C').
77233              Handle CoW in hashes:
77234              Subject: Re: why would tr/// be performing hash copies?
77235              From: Nicholas Clark <nick@unfortu.net>
77236              Date: Sun, 18 Aug 2002 23:17:01 +0100
77237              Message-id: <20020818221700.GD294@Bagpuss.unfortu.net>
77238      Branch: perl
77239            ! hv.c perl.c perl.h pod/perlrun.pod sv.c sv.h
77240 ____________________________________________________________________________
77241 [ 17739] By: hv                                    on 2002/08/20  13:52:18
77242         Log: Subject: Re: [perl #15326] Not OK: perl v5.8.0 on i686-linux-64int-ld 2.4.5
77243              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
77244              Date: Tue, 23 Jul 2002 09:21:10 +0200
77245              Message-id: <20020723092051.184C.H.M.BRAND@hccnet.nl>
77246      Branch: perl
77247            ! Configure
77248 ____________________________________________________________________________
77249 [ 17737] By: ams                                   on 2002/08/19  07:48:39
77250         Log: Effect a speedy recovery from POD affected by (ahem, Australian)
77251              negligence.
77252      Branch: perl
77253            ! pod/perlrun.pod
77254 ____________________________________________________________________________
77255 [ 17736] By: hv                                    on 2002/08/18  18:27:28
77256         Log: Subject: [PATCH] Re: 5.8.0 sprintf (?) problem with floats?
77257              From: Dave Mitchell <davem@fdgroup.com>
77258              Date: Fri, 16 Aug 2002 23:31:07 +0100
77259              Message-id: <20020816233107.E9388@fdgroup.com>
77260      Branch: perl
77261            ! numeric.c t/base/num.t
77262 ____________________________________________________________________________
77263 [ 17735] By: hv                                    on 2002/08/18  02:22:21
77264         Log: Subject: Re: [perl #16198] pod tpyo in hostent.pm
77265              From: Mark-Jason Dominus <mjd@plover.com>
77266              Date: Tue, 13 Aug 2002 21:19:08 -0400 (Wed 02:19 BST)
77267              Message-id: <20020814011909.22744.qmail@plover.com>
77268      Branch: perl
77269            ! lib/Net/hostent.pm
77270 ____________________________________________________________________________
77271 [ 17734] By: hv                                    on 2002/08/18  02:20:05
77272         Log: Subject: [PATCH] Re: Pod::Functions tpyo
77273              From: Abe Timmerman <abe@ztreet.demon.nl>
77274              Date: Tue, 13 Aug 2002 23:47:00 +0200
77275              Message-id: <200208132347.00782.abe@ztreet.demon.nl>
77276      Branch: perl
77277            ! lib/Pod/Functions.pm
77278 ____________________________________________________________________________
77279 [ 17733] By: hv                                    on 2002/08/18  02:17:18
77280         Log: Subject: Server rename revisited
77281              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
77282              Date: Tue, 13 Aug 2002 19:19:03 +0200
77283              Message-id: <20020813191821.DC98.H.M.BRAND@hccnet.nl>
77284      Branch: perl
77285            ! README.hpux
77286 ____________________________________________________________________________
77287 [ 17732] By: hv                                    on 2002/08/18  02:11:49
77288         Log: Subject: [PATCH] Remove old VOS build methods
77289              From: Paul_GreenVOS@vos.stratus.com
77290              Date: Tue, 13 Aug 02 10:25 edt (15:25 BST)
77291              Message-id: <200208131426.KAA01012@mailhub1.stratus.com>
77292      Branch: perl
77293            - vos/Makefile vos/build.cm vos/compile_perl.cm
77294            - vos/config.alpha.def vos/config.alpha.h vos/config.ga.def
77295            - vos/config.ga.h vos/config.pl vos/configure_perl.cm
77296            - vos/install_perl.cm vos/perl.bind vos/test_vos_dummies.c
77297            - vos/vos_dummies.c
77298            ! MANIFEST README.vos pod/perlport.pod vos/Changes
77299 ____________________________________________________________________________
77300 [ 17731] By: hv                                    on 2002/08/18  01:57:12
77301         Log: Subject: [PATCH] Configure missing d_modflproto=''
77302              From: "Gerrit P. Haase" <gp@familiehaase.de>
77303              Date: Tue, 13 Aug 2002 15:11:05 +0200
77304              Message-id: <11417599086.20020813151105@familiehaase.de>
77305      Branch: perl
77306            ! Configure
77307 ____________________________________________________________________________
77308 [ 17730] By: hv                                    on 2002/08/18  01:41:33
77309         Log: missing chunk from #17725 causes lib/constant.t test failures
77310      Branch: perl
77311            ! lib/constant.t
77312 ____________________________________________________________________________
77313 [ 17729] By: hv                                    on 2002/08/17  02:33:15
77314         Log: Subject: [PATCH] Safe.pm documentation
77315              From: Slaven Rezic <slaven.rezic@berlin.de>
77316              Date: Sat, 10 Aug 2002 19:30:38 +0200 (CEST)
77317              Message-id: <200208101730.g7AHUc9p001668@vran.herceg.de>
77318      Branch: perl
77319            ! ext/Opcode/Safe.pm pod/perlre.pod
77320 ____________________________________________________________________________
77321 [ 17728] By: hv                                    on 2002/08/17  02:07:24
77322         Log: Subject: Copy On Write
77323              From: Nicholas Clark <nick@ccl4.org>
77324              Date: Thu, 15 Aug 2002 00:10:35 +0100
77325              Message-id: <20020815001035.A69079@plum.flirble.org>
77326              specify "-Accflags='-DPERL_COPY_ON_WRITE'" to use
77327      Branch: perl
77328            ! doop.c dump.c embed.fnc embed.h mg.c pod/perlapi.pod pp.c
77329            ! pp_hot.c proto.h sv.c sv.h
77330 ____________________________________________________________________________
77331 [ 17727] By: hv                                    on 2002/08/17  01:20:05
77332         Log: Subject: [PATCH 5.7.3] Negative subscripts optionally passed to tied array methods
77333              From: Mark-Jason Dominus <mjd@plover.com>
77334              Date: Sun, 14 Apr 2002 23:38:55 -0400 (Mon 04:38 BST)
77335              Message-id: <20020415033855.6343.qmail@plover.com>
77336      Branch: perl
77337            ! av.c av.h pod/perltie.pod t/op/tiearray.t
77338 ____________________________________________________________________________
77339 [ 17726] By: hv                                    on 2002/08/17  01:17:09
77340         Log: pp.c warns that sv may be used uninitialised in pp_delete()
77341      Branch: perl
77342            ! pp.c
77343 ____________________________________________________________________________
77344 [ 17725] By: hv                                    on 2002/08/17  00:51:19
77345         Log: Subject: [PATCH] Remove pseudo-hashes (complete)
77346              From: Michael G Schwern <schwern@pobox.com>
77347              Date: Tue, 6 Aug 2002 13:05:10 -0700 (21:05 BST)
77348              Message-id: <20020806200510.GC31473@ool-18b93024.dyn.optonline.net>
77349      Branch: perl
77350            ! av.c doop.c dump.c embed.fnc embed.h ext/B/B/Concise.pm
77351            ! global.sym lib/fields.pm lib/fields.t lib/overload.pm mg.c
77352            ! op.c op.h pod/perldiag.pod pod/perlfunc.pod pod/perlref.pod
77353            ! pp.c pp_hot.c proto.h t/op/avhv.t t/op/hashwarn.t
77354 ____________________________________________________________________________
77355 [ 17724] By: hv                                    on 2002/08/17  00:27:33
77356         Log: ext/B/defsubs.h also depends on the program that builds it
77357      Branch: perl
77358            ! ext/B/Makefile.PL
77359 ____________________________________________________________________________
77360 [ 17723] By: hv                                    on 2002/08/17  00:10:24
77361         Log: Subject: Re: deb.c compile time error (patchlevel 17721)
77362              From: Dave Mitchell <davem@fdgroup.com>
77363              Date: Tue, 13 Aug 2002 14:42:15 +0100
77364              Message-ID: <20020813144215.G11939@fdgroup.com>
77365      Branch: perl
77366            ! embed.fnc embed.h global.sym proto.h
77367 ____________________________________________________________________________
77368 [ 17722] By: ams                                   on 2002/08/16  05:20:22
77369         Log: Subject: Minor perlrun.pod patch
77370              From: Iain Truskett <spoon@cpan.org>
77371              Date: Fri, 16 Aug 2002 16:20:27 +1000
77372              Message-Id: <20020816162027.D17196@eh.org>
77373      Branch: perl
77374            ! pod/perlrun.pod
77375 ____________________________________________________________________________
77376 [ 17721] By: hv                                    on 2002/08/12  12:17:19
77377         Log: #17717 needed tests fixing up
77378      Branch: perl
77379            ! t/op/chop.t
77380 ____________________________________________________________________________
77381 [ 17720] By: hv                                    on 2002/08/12  12:10:07
77382         Log: Subject: Re: [PATCH] Re: taint news
77383              From: Rick Delaney <rick.delaney@rogers.com>
77384              Date: 04 Aug 2002 00:28:58 EDT
77385              Message-ID: <m3heibs0vp.fsf@cs839290-a.mtth.phub.net.cable.rogers.com>
77386              missed patch fragment from Change #17676
77387      Branch: perl
77388            ! pod/perlsec.pod
77389 ____________________________________________________________________________
77390 [ 17719] By: hv                                    on 2002/08/12  12:03:53
77391         Log: Subject: [perl #15987] Tests fail when sources are under CVS control
77392              From: Warren Jones (via RT) <perlbug@perl.org>
77393              Date: 5 Aug 2002 19:08:50 -0000 (Mon 20:08 BST)
77394              Message-id: <rt-15987-32864.15.6255441902154@bugs6.perl.org>
77395      Branch: perl
77396            ! lib/strict.t lib/warnings.t
77397 ____________________________________________________________________________
77398 [ 17718] By: hv                                    on 2002/08/12  11:57:17
77399         Log: Subject: [PATCH] add verbose stack display option, -Dvs
77400              From: Dave Mitchell <davem@fdgroup.com>
77401              Date: Mon, 5 Aug 2002 00:55:33 +0100
77402              Message-id: <20020805005533.B26111@fdgroup.com>
77403      Branch: perl
77404            ! deb.c dump.c embed.fnc embed.h perl.c perl.h pod/perlapi.pod
77405            ! pod/perlrun.pod proto.h
77406 ____________________________________________________________________________
77407 [ 17717] By: hv                                    on 2002/08/12  11:44:06
77408         Log: Subject: Re: [PATCH@8545] [ID 20000808.005] OP_REFGEN as an lvalue
77409              From: Stephen McCamant <smcc@CSUA.Berkeley.EDU>
77410              Date: Sat, 27 Jan 2001 19:31:29 -0800 (PST)
77411              Message-ID: <14963.32943.102669.67625@soda.csua.berkeley.edu>
77412      Branch: perl
77413            ! op.c t/op/chop.t t/op/ref.t
77414 ____________________________________________________________________________
77415 [ 17716] By: hv                                    on 2002/08/12  11:29:53
77416         Log: Subject: Re: [ID 20020713.001] chomp($data=<tied_fh>) strangeness.
77417              From: Hugo van der Sanden <hv@crypt.compulink.co.uk>
77418              Date: Sat, 13 Jul 2002 17:44:02 +0100
77419              Message-id: <200207131644.g6DGi2214456@crypt.compulink.co.uk>
77420      Branch: perl
77421            ! pp_hot.c t/op/tiehandle.t
77422 ____________________________________________________________________________
77423 [ 17715] By: hv                                    on 2002/08/12  11:28:26
77424         Log: Subject: [PATCH] better modfl detection
77425              From: Nicholas Clark <nick@unfortu.net>
77426              Date: Sun, 11 Aug 2002 20:05:49 +0100
77427              Message-id: <20020811190548.GK300@Bagpuss.unfortu.net>
77428      Branch: perl
77429            ! Configure config_h.SH perl.h
77430 ____________________________________________________________________________
77431 [ 17714] By: hv                                    on 2002/08/12  11:26:23
77432         Log: Subject: [PATCH] perltodo.pod
77433              From: Richard.Foley@t-online.de
77434              Date: Sun, 11 Aug 2002 18:26:10 +0200
77435              Message-id: <17dwY1-0spbdoC@fwd06.sul.t-online.com>
77436              perlbug credits
77437      Branch: perl
77438            ! pod/perltodo.pod
77439 ____________________________________________________________________________
77440 [ 17713] By: hv                                    on 2002/08/12  11:24:44
77441         Log: Subject: [PATCH] gv_fullname3 as call to gv_fullname4
77442              From: Nicholas Clark <nick@unfortu.net>
77443              Date: Sun, 11 Aug 2002 16:59:16 +0100
77444              Message-id: <20020811155914.GE300@Bagpuss.unfortu.net>
77445      Branch: perl
77446            ! gv.c
77447 ____________________________________________________________________________
77448 [ 17712] By: hv                                    on 2002/08/12  11:23:06
77449         Log: Subject: Re: Smoke 17703 /pro/3gl/CPAN/perl-current
77450              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
77451              Date: Mon, 12 Aug 2002 10:25:20 +0200
77452              Message-id: <20020812102347.AFB6.H.M.BRAND@hccnet.nl>
77453              gcc bug test needs -lm
77454      Branch: perl
77455            ! hints/hpux.sh
77456 ____________________________________________________________________________
77457 [ 17711] By: hv                                    on 2002/08/12  11:20:49
77458         Log: Subject: [PATCH s2p] Small typo correction
77459              From: "Newton, Philip" <Philip.Newton@datenrevision.de>
77460              Date: Wed, 7 Aug 2002 11:50:51 +0200
77461              Message-id: <C9A98F2128EDD411B0920008C7B337A13DCE2B@hamsem01.de.gedas.vwg>
77462      Branch: perl
77463            ! x2p/s2p.PL
77464 ____________________________________________________________________________
77465 [ 17710] By: hv                                    on 2002/08/12  11:17:21
77466         Log: Subject: [PATCH] pod/perlfaq4.pod
77467              From: Abigail <abigail@foad.org>
77468              Date: Tue, 30 Jul 2002 09:52:02 -0700 (17:52 BST)
77469              Message-id: <20020730095202.A6462@ucan.foad.org>
77470              Add references to Regexp::Common.
77471      Branch: perl
77472            ! pod/perlfaq4.pod
77473 ____________________________________________________________________________
77474 [ 17707] By: rgs                                   on 2002/08/09  21:23:20
77475         Log: Subject: New HP-UX itanium servers
77476              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
77477              Date: Wed, 07 Aug 2002 13:25:57 +0200
77478              Message-ID: <20020807132518.FCBF.H.M.BRAND@hccnet.nl>
77479      Branch: perl
77480            ! README.hpux
77481 ____________________________________________________________________________
77482 [ 17706] By: rgs                                   on 2002/08/09  21:00:41
77483         Log: Subject: Re: missing lower range in {} regex
77484              From: "John P. Linderman" <jpl@research.att.com>
77485              Date: Fri, 09 Aug 2002 12:48:55 -0400
77486              Message-ID: <200208091648.MAA77577@raptor.research.att.com>
77487      Branch: perl
77488            ! pod/perlre.pod
77489 ____________________________________________________________________________
77490 [ 17705] By: rgs                                   on 2002/08/08  20:57:59
77491         Log: More tests for the attribute syntax, from the
77492              attributes manpage.
77493      Branch: perl
77494            ! t/op/attrs.t
77495 ____________________________________________________________________________
77496 [ 17704] By: rgs                                   on 2002/08/08  19:47:44
77497         Log: Fix bug #16080 : an attribute list should end at '}'
77498      Branch: perl
77499            ! t/op/attrs.t toke.c
77500 ____________________________________________________________________________
77501 [ 17703] By: hv                                    on 2002/08/08  15:30:12
77502         Log: Update Changes
77503      Branch: perl
77504            ! Changes patchlevel.h
77505 ____________________________________________________________________________
77506 [ 17702] By: hv                                    on 2002/08/08  15:08:57
77507         Log: Subject: Re: README.aix
77508              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
77509              Date: Tue, 30 Jul 2002 13:30:29 +0200
77510              Message-id: <20020730130812.48B9.H.M.BRAND@hccnet.nl>
77511      Branch: perl
77512            ! README.aix
77513 ____________________________________________________________________________
77514 [ 17701] By: hv                                    on 2002/08/08  15:06:01
77515         Log: Subject: [PATCH] Re: pp_sys.c compile failed..
77516              From: Andy Dougherty <doughera@lafayette.edu>
77517              Date: Tue, 6 Aug 2002 10:42:07 -0400 (EDT) (15:42 BST)
77518              Message-id: <Pine.SOL.4.10.10208061024250.5315-100000@maxwell.phys.lafayette.edu>
77519      Branch: perl
77520            ! hints/aix.sh
77521 ____________________________________________________________________________
77522 [ 17700] By: hv                                    on 2002/08/08  15:02:57
77523         Log: Subject: [DOC PATCH] perlipc.pod
77524              From: Arjen Laarhoven <arjen@nl.demon.net>
77525              Date: Tue, 6 Aug 2002 14:16:01 +0200
77526              Message-id: <20020806121601.GK40785@aragorn.noc.nl.demon.net>
77527      Branch: perl
77528            ! pod/perlipc.pod
77529 ____________________________________________________________________________
77530 [ 17699] By: hv                                    on 2002/08/08  14:56:56
77531         Log: Subject: [PATCH] Re: [perl #15898] coredump with variable our
77532              From: Rafael Garcia-Suarez <rgarciasuarez@free.fr>
77533              Date: Fri, 2 Aug 2002 23:44:21 +0200
77534              Message-id: <20020802234421.11c62fe6.rgarciasuarez@free.fr>
77535      Branch: perl
77536            ! op.c t/op/attrs.t
77537 ____________________________________________________________________________
77538 [ 17698] By: hv                                    on 2002/08/08  14:52:45
77539         Log: Subject: [perl #16000] Configure -Dstatic_ext=foo builds foo as both static and dynamic
77540              From: Yitzchak Scott-Thoennes (via RT) <perlbug@perl.org>
77541              Date: 6 Aug 2002 04:28:15 -0000 (Tue 05:28 BST)
77542              Message-id: <rt-16000-32913.8.41582281961522@bugs6.perl.org>
77543      Branch: perl
77544            ! Configure
77545 ____________________________________________________________________________
77546 [ 17697] By: hv                                    on 2002/08/08  14:49:00
77547         Log: Subject: Doc patch for Class::Struct under 5.8.0
77548              From: Damian Conway <damian@conway.org>
77549              Date: Tue, 30 Jul 2002 23:03:14 +1000
77550              Message-id: <3D471FCF.1C7C6E6B@conway.org>
77551      Branch: perl
77552            ! lib/Class/Struct.pm
77553 ____________________________________________________________________________
77554 [ 17696] By: hv                                    on 2002/08/08  14:44:21
77555         Log: Subject: Re: [perl #15523] Memory Leak in split with trailing empty elements
77556              From: Slaven Rezic <slaven.rezic@berlin.de>
77557              Date: 31 Jul 2002 09:50:06 +0200
77558              Message-id: <87ado85ob5.fsf@vran.herceg.de>
77559      Branch: perl
77560            ! pp.c
77561 ____________________________________________________________________________
77562 [ 17695] By: hv                                    on 2002/08/08  14:40:41
77563         Log: Subject: [PATCH] Re: [perl #15479] perl 5.8.0 segfault
77564              From: Rafael Garcia-Suarez <rgarciasuarez@free.fr>
77565              Date: Fri, 2 Aug 2002 00:13:10 +0200
77566              Message-id: <20020802001310.7e1dc694.rgarciasuarez@free.fr>
77567      Branch: perl
77568            + t/op/stash.t
77569            ! MANIFEST perl.h
77570 ____________________________________________________________________________
77571 [ 17694] By: hv                                    on 2002/08/08  14:31:55
77572         Log: Subject: Re: [RE-PATCH] Not OK: perl v5.8.0 on PA-RISC2.0 11.00
77573              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
77574              Date: Wed, 31 Jul 2002 16:04:02 +0200
77575              Message-id: <20020731155005.4915.H.M.BRAND@hccnet.nl>
77576      Branch: perl
77577            ! hints/hpux.sh
77578 ____________________________________________________________________________
77579 [ 17693] By: hv                                    on 2002/08/08  14:25:16
77580         Log: Subject: [PATCH: lib/ExtUtils/MM_Unix.pm] Be less strict about what's POD.
77581              From: Abigail <abigail@foad.org>
77582              Date: Thu, 25 Jul 2002 08:52:52 -0700 (16:52 BST)
77583              Message-id: <20020725085252.A2703@ucan.foad.org>
77584      Branch: perl
77585            ! lib/ExtUtils/MM_Unix.pm
77586 ____________________________________________________________________________
77587 [ 17692] By: hv                                    on 2002/08/08  14:20:05
77588         Log: Subject: [PATCH] README.jp and README.cn
77589              From: Autrijus Tang <autrijus@autrijus.org>
77590              Date: Thu, 25 Jul 2002 07:05:11 +0800
77591              Message-id: <20020724230511.GA1327@not.autrijus.org>
77592      Branch: perl
77593            ! README.cn README.jp
77594 ____________________________________________________________________________
77595 [ 17691] By: hv                                    on 2002/08/08  14:01:50
77596         Log: Subject: [perl #15398] Usage::pod2usage looks for perldoc in $Config{bin} and not in $Config{scriptdir}
77597              From: Henrik Tougaard (via RT) <perlbug@perl.org>
77598              Date: 23 Jul 2002 13:45:49 -0000 (Tue 14:45 BST)
77599              Message-id: <rt-15398-31095.6.30466042998663@perl>
77600      Branch: perl
77601            ! lib/Pod/Usage.pm
77602 ____________________________________________________________________________
77603 [ 17690] By: rgs                                   on 2002/08/07  19:56:42
77604         Log: Doc fix : the symbol for COPs wasn't documented.
77605      Branch: perl
77606            ! opcode.pl
77607 ____________________________________________________________________________
77608 [ 17689] By: rgs                                   on 2002/08/06  20:45:30
77609         Log: Subject: Re: no warnings 'io';
77610              From: Nicholas Clark <nick@unfortu.net>
77611              Date: Sat, 27 Jul 2002 21:49:55 +0100
77612              Message-ID: <20020727204954.GB5117@Bagpuss.unfortu.net>
77613
77614              Plus a little bit of regression tests.
77615      Branch: perl
77616            ! t/lib/warnings/pp_hot util.c
77617 ____________________________________________________________________________
77618 [ 17688] By: rgs                                   on 2002/08/06  20:04:19
77619         Log: Subject: [PATCH] XS build fix for VMS
77620              From: "Craig A. Berry" <craigberry@mac.com>
77621              Date: Sun, 4 Aug 2002 12:13:06 -0500
77622              Message-ID: <a05111b07b97256e1c335@[172.16.52.1]>
77623      Branch: perl
77624            ! vms/descrip_mms.template
77625 ____________________________________________________________________________
77626 [ 17687] By: rgs                                   on 2002/08/06  19:50:12
77627         Log: PerlIO::scalar wasn't able to read from non-string
77628              scalar ; now stringifies its argument.
77629      Branch: perl
77630            ! ext/PerlIO/scalar/scalar.xs ext/PerlIO/t/scalar.t
77631 ____________________________________________________________________________
77632 [ 17686] By: rgs                                   on 2002/08/06  19:10:51
77633         Log: More regression tests for $^H and %^H.
77634              Add a TODO test for eval "" preserving %^H.
77635      Branch: perl
77636            ! t/comp/hints.t
77637 ____________________________________________________________________________
77638 [ 17685] By: hv                                    on 2002/08/05  22:42:09
77639         Log: Subject: Re: mention of "use sort" botched in perlfunc? + PATCH
77640              From: "John P. Linderman" <jpl@research.att.com>
77641              Date: Sun, 21 Jul 2002 12:13:32 -0400 (17:13 BST)
77642              Message-id: <200207211613.MAA69505@raptor.research.att.com>
77643      Branch: perl
77644            ! lib/sort.pm lib/sort.t
77645 ____________________________________________________________________________
77646 [ 17684] By: hv                                    on 2002/08/05  22:35:22
77647         Log: Integrate from perlio: change #17653 fixes bug RT15283
77648      Branch: perl
77649           !> ext/PerlIO/via/via.xs
77650 ____________________________________________________________________________
77651 [ 17683] By: hv                                    on 2002/08/05  22:26:45
77652         Log: Integrate from maint-5.6/macperl via macperl
77653              Changes 17660, 17661, 17662, 17663, 17664
77654      Branch: perl
77655           !> perl.c
77656 ____________________________________________________________________________
77657 [ 17682] By: hv                                    on 2002/08/05  15:04:54
77658         Log: Subject: Defined-or patch (cleaned up)
77659              From: "Brent Dax" <brentdax@cpan.org>
77660              Date: Fri, 26 Jul 2002 05:41:52 -0700 (13:41 BST)
77661              Message-id: <000001c234a1$d1ca72c0$6501a8c0@deepblue>
77662      Branch: perl
77663            + t/op/dor.t
77664            ! MANIFEST embed.h ext/B/B/Deparse.pm ext/Opcode/Opcode.pm
77665            ! keywords.h keywords.pl op.c opcode.h opcode.pl opnames.h
77666            ! perly.c perly.h perly.y perly_c.diff pod/perlop.pod pp.sym
77667            ! pp_ctl.c pp_hot.c pp_proto.h toke.c vms/perly_c.vms
77668            ! vms/perly_h.vms
77669 ____________________________________________________________________________
77670 [ 17681] By: hv                                    on 2002/08/05  14:41:23
77671         Log: typo
77672      Branch: perl
77673            ! keywords.h keywords.pl
77674 ____________________________________________________________________________
77675 [ 17680] By: hv                                    on 2002/08/05  14:33:39
77676         Log: warn that keywords.h is generated
77677      Branch: perl
77678            ! keywords.h keywords.pl
77679 ____________________________________________________________________________
77680 [ 17679] By: hv                                    on 2002/08/04  23:40:22
77681         Log: again: #17678 caused test failures in pod2html,
77682              in which $1 could leak from previous regexp
77683      Branch: perl
77684            ! mg.c
77685 ____________________________________________________________________________
77686 [ 17678] By: hv                                    on 2002/08/04  15:34:19
77687         Log: Subject: Re: [ID 20020704.001] my $foo = $1 won't taint $foo (with use re 'taint')
77688              From: hv@crypt.org
77689              Date: Sun, 04 Aug 2002 17:40:30 +0100
77690              Message-id: <200208041640.g74GeUU25061@crypt.compulink.co.uk>
77691      Branch: perl
77692            ! mg.c t/op/taint.t
77693 ____________________________________________________________________________
77694 [ 17677] By: hv                                    on 2002/08/04  15:25:25
77695         Log: Main branch no longer needs op/taint.t version check.
77696      Branch: perl
77697            ! t/op/taint.t
77698 ____________________________________________________________________________
77699 [ 17676] By: hv                                    on 2002/08/04  15:14:09
77700         Log: Subject: Re: [PATCH] Re: taint news
77701              From: Rick Delaney <rick.delaney@rogers.com>
77702              Date: 04 Aug 2002 00:28:58 EDT
77703              Message-ID: <m3heibs0vp.fsf@cs839290-a.mtth.phub.net.cable.rogers.com>
77704              Ref: 20020208.005
77705      Branch: perl
77706            ! pp_sys.c
77707 ____________________________________________________________________________
77708 [ 17675] By: hv                                    on 2002/08/04  01:48:36
77709         Log: Fix email address for Kragen Sitaker <kragen@pobox.com>.
77710      Branch: perl
77711            ! AUTHORS
77712 ____________________________________________________________________________
77713 [ 17674] By: hv                                    on 2002/08/04  01:30:11
77714         Log: Subject: [PATCH] AUTHORS
77715              From: Colin Watson <colinw@zeus.com>
77716              Date: Thu, 25 Jul 2002 15:54:37 +0100
77717              Message-id: <20020725145437.GC4921@zeus.com>
77718      Branch: perl
77719            ! AUTHORS
77720 ____________________________________________________________________________
77721 [ 17673] By: hv                                    on 2002/08/04  01:27:36
77722         Log: Subject: [PATCH] AUTHORS
77723              From: Walt Mankowski <waltman@pobox.com>
77724              Date: Sat, 20 Jul 2002 22:56:12 -0400 (Sun 03:56 BST)
77725              Message-id: <20020721025612.GB15958@pobox.com>
77726      Branch: perl
77727            ! AUTHORS
77728 ____________________________________________________________________________
77729 [ 17672] By: hv                                    on 2002/08/04  01:25:14
77730         Log: Subject: Re: mention of "use sort" botched in perlfunc?
77731              From: Michael G Schwern <schwern@pobox.com>
77732              Date: Sat, 20 Jul 2002 13:49:58 -0400 (18:49 BST)
77733              Message-id: <20020720174958.GL362@ool-18b93024.dyn.optonline.net>
77734      Branch: perl
77735            ! pod/perlfunc.pod
77736 ____________________________________________________________________________
77737 [ 17671] By: hv                                    on 2002/08/04  01:11:32
77738         Log: Change version from 5.8.0 to 5.9.0.
77739      Branch: perl
77740            ! Configure NetWare/Makefile NetWare/config_H.wc
77741            ! Porting/config.sh Porting/config_H README.win32 config_h.SH
77742            ! cygwin/perlld.in epoc/config.sh epoc/createpkg.pl
77743            ! hints/dgux.sh installperl lib/ExtUtils/MM_NW5.pm makedef.pl
77744            ! patchlevel.h win32/Makefile win32/makefile.mk
77745            ! wince/Makefile.ce
77746 ____________________________________________________________________________
77747 [ 17656] By: ams                                   on 2002/07/28  06:12:33
77748         Log: Subject: [PATCH] Typo in regcomp.c
77749              From: Chris Ball <chris@cpan.org>
77750              Date: 26 Jul 2002 17:49:35 +0100
77751              Message-Id: <868z3yzb6o.fsf@void.printf.net>
77752              (With additional tweak to s_reginclasslen.)
77753      Branch: perl
77754            ! regcomp.c
77755 ____________________________________________________________________________
77756 [ 17655] By: jhi                                   on 2002/07/25  20:37:16
77757         Log: Upgrade to Unicode::Collate 0.20.
77758      Branch: perl
77759            ! lib/Unicode/Collate.pm lib/Unicode/Collate/Changes
77760            ! lib/Unicode/Collate/README lib/Unicode/Collate/t/test.t
77761 ____________________________________________________________________________
77762 [ 17654] By: jhi                                   on 2002/07/23  16:33:52
77763         Log: Commas, schcommas.
77764      Branch: perl
77765            ! patchlevel.h
77766 ____________________________________________________________________________
77767 [ 17644] By: jhi                                   on 2002/07/19  18:55:18
77768         Log: Copy perldelta as perl58delta, purge the perldelta.
77769      Branch: perl
77770            + pod/perl58delta.pod
77771            ! MANIFEST pod/perldelta.pod
77772 ____________________________________________________________________________
77773 [ 17642] By: jhi                                   on 2002/07/19  16:37:39
77774         Log: Update Changes; mainly to get the DEVELNNNNN stamp back in business.
77775      Branch: perl
77776            ! Changes patchlevel.h
77777 ____________________________________________________________________________
77778 [ 17641] By: jhi                                   on 2002/07/19  16:31:08
77779         Log: Integrate perlio (no changes, but that's fine).
77780      Branch: perl
77781           !> embed.fnc perl.h
77782 ____________________________________________________________________________
77783 [ 17639] By: jhi                                   on 2002/07/19  00:47:18
77784         Log: It's all yours, Hugo.
77785      Branch: perl
77786            + Changes5.8
77787            ! Changes MANIFEST