Integrate perlio:
[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 perlhack.pod for the details.
7
8
9 [The "CAST AND CREW" list has been moved to AUTHORS.]
10
11 NOTE: Each change entry shows the change number; who checked it into the
12 repository; when; description of the change; which branch the change
13 happened in; and the affected files.  The file lists have a short symbolic
14 indicator:
15
16             !       modified
17             +       added
18             -       deleted
19             +>      branched (from elsewhere)
20             !>      merged changes (from elsewhere)
21
22 The Message-Ids in the change entries refer to the email messages sent
23 to the perl5-porters mailing list.  You can retrieve the messages for
24 example from http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/
25
26 This file contains only changes that affect the mainline branch,
27 not those that affect the (now decommissioned) cfgperl, or vmsperl,
28 or any other branch.
29
30 --------------
31 Version v5.7.1          Development release working toward v5.8
32 --------------
33 ____________________________________________________________________________
34 [  9274] By: jhi                                   on 2001/03/21  03:48:24
35         Log: First stab at making Data::Dumper to grok Unicode.
36              
37              TODO: tests, EBCDICify.
38      Branch: perl
39            ! ext/Data/Dumper/Dumper.pm ext/Data/Dumper/Dumper.xs
40 ____________________________________________________________________________
41 [  9273] By: jhi                                   on 2001/03/21  02:23:00
42         Log: Fix for
43              
44              Subject: Memory leak in unquoted print   
45              From: Benjamin Sugars <bsugars@canoe.ca> 
46              Date: Tue, 20 Mar 2001 10:02:56 -0500 (EST)
47              Message-ID: <Pine.LNX.4.21.0103200958180.1538-100000@marmot.rim.canoe.ca>
48      Branch: perl
49            ! perlio.c
50 ____________________________________________________________________________
51 [  9272] By: jhi                                   on 2001/03/21  01:33:17
52         Log: Subject: Re: [PATCH] POSIX::getcwd()
53              From: Benjamin Sugars <bsugars@canoe.ca> 
54              Date: Mon, 19 Mar 2001 15:07:03 -0500 (EST)
55              Message-ID: <Pine.LNX.4.21.0103191454500.1820-100000@marmot.rim.canoe.ca>      
56      Branch: perl
57            ! ext/POSIX/POSIX.pm ext/POSIX/POSIX.xs
58 ____________________________________________________________________________
59 [  9271] By: jhi                                   on 2001/03/21  01:22:52
60         Log: Subject: [PATCH] Cwd.pm docs
61              From: Benjamin Sugars <bsugars@canoe.ca>
62              Date: Tue, 20 Mar 2001 15:33:32 -0500 (EST)
63              Message-ID: <Pine.LNX.4.21.0103201516550.7893-100000@marmot.rim.canoe.ca>
64      Branch: perl
65            ! lib/Cwd.pm
66 ____________________________________________________________________________
67 [  9270] By: jhi                                   on 2001/03/21  01:16:29
68         Log: Continue 4-arg substr() UTF-8 fixage.
69      Branch: perl
70            ! pp.c t/op/substr.t
71 ____________________________________________________________________________
72 [  9269] By: jhi                                   on 2001/03/21  00:46:14
73         Log: Integrate changes #9262,9264,9265,9266 from maintperl to mainline.
74              
75              revert the leak fix in change#9142 (problem needs a more experimental
76              fix unsuitable for 5.6.1)
77              
78              do alphabetical sorting by default (for csh compatibility)
79              
80              cut-n-paste goof in change#9264
81              
82              VMS piping fixes (from Charles Lane)
83      Branch: perl
84           !> ext/File/Glob/Changes ext/File/Glob/Glob.pm
85           !> ext/File/Glob/Glob.xs ext/File/Glob/bsd_glob.c
86           !> ext/File/Glob/bsd_glob.h scope.c vms/vms.c vms/vmspipe.com
87 ____________________________________________________________________________
88 [  9268] By: jhi                                   on 2001/03/21  00:37:04
89         Log: Integrate perlio.
90      Branch: perl
91           !> embed.pl lib/utf8.pm op.c regcomp.c regexec.c sv.c toke.c
92           !> utf8.c utf8.h utfebcdic.h
93 ____________________________________________________________________________
94 [  9267] By: nick                                  on 2001/03/20  20:04:39
95         Log: More EBCDIC stuff:
96              - Loose the extra level of function on ASCII.
97              - spotted a chr(0) issue in sv.c
98              - re-work of UTF-X tr/// ranges to work in Unicode
99              space. Still issues with the "0xff is illegal UTF-8" hack.
100              - Yet another ad. hoc. utf8 'upgrade' in op.c recoded
101              (why do it once when you can do it all over the place :-(
102              - Enable HINTS_UTF8 on EBCDIC - then ignore it in toke.c,
103              need utf8.pm for swashes.
104              - Simplified and commented scan_const() in toke.c
105              Still something wrong regexp and tr (swashes?).
106      Branch: perlio
107            ! embed.pl lib/utf8.pm op.c regcomp.c regexec.c sv.c toke.c
108            ! utf8.c utf8.h utfebcdic.h
109 ____________________________________________________________________________
110 [  9266] By: gsar                                  on 2001/03/20  19:16:43
111         Log: VMS piping fixes (from Charles Lane)
112      Branch: maint-5.6/perl
113            ! vms/vms.c vms/vmspipe.com
114 ____________________________________________________________________________
115 [  9265] By: gsar                                  on 2001/03/20  17:53:52
116         Log: cut-n-paste goof in change#9264
117      Branch: maint-5.6/perl
118            ! ext/File/Glob/Glob.xs
119 ____________________________________________________________________________
120 [  9264] By: gsar                                  on 2001/03/20  17:43:47
121         Log: do alphabetical sorting by default (for csh compatibility);
122              bsd_glob() does ASCII sort by default as usual, unless
123              GLOB_ALPHASORT was specified
124      Branch: maint-5.6/perl
125            ! ext/File/Glob/Changes ext/File/Glob/Glob.pm
126            ! ext/File/Glob/Glob.xs ext/File/Glob/bsd_glob.c
127            ! ext/File/Glob/bsd_glob.h
128 ____________________________________________________________________________
129 [  9263] By: gsar                                  on 2001/03/20  16:40:08
130         Log: integrate change#9255 from mainline (unicode fix)
131              
132              substr($bytestr, i, n, $charstr)
133      Branch: maint-5.6/perl
134           !> Todo-5.6 pp.c t/op/substr.t
135 ____________________________________________________________________________
136 [  9262] By: gsar                                  on 2001/03/20  15:57:41
137         Log: revert the leak fix in change#9142 (problem needs a more experimental
138              fix unsuitable for 5.6.1)
139      Branch: maint-5.6/perl
140            ! scope.c
141 ____________________________________________________________________________
142 [  9261] By: jhi                                   on 2001/03/20  14:26:25
143         Log: Integrate changes #9259,9260 from maintperl into mainline.
144              
145              Subject: [MacPerl-Porters] [PATCH] POSIX, File::Path (Mac OS) for 5.6.1 and 5.7
146              
147              Subject: [PATCH perl-5.6.1-TRIAL3/run.c] printf warning
148      Branch: perl
149           !> ext/POSIX/POSIX.xs lib/File/Path.pm run.c
150 ____________________________________________________________________________
151 [  9260] By: jhi                                   on 2001/03/20  14:05:46
152         Log: Subject: [PATCH perl-5.6.1-TRIAL3/run.c] printf warning
153              From: Robin Barker <rmb1@cise.npl.co.uk>
154              Date: Tue, 20 Mar 2001 10:12:04 GMT
155              Message-Id: <200103201012.KAA04738@tempest.npl.co.uk>
156      Branch: maint-5.6/perl
157            ! run.c
158 ____________________________________________________________________________
159 [  9259] By: jhi                                   on 2001/03/20  14:04:39
160         Log: Subject: [MacPerl-Porters] [PATCH] POSIX, File::Path (Mac OS) for 5.6.1 and 5.7
161              From: Chris Nandor <pudge@pobox.com>
162              Date: Tue, 20 Mar 2001 00:40:56 -0500
163              Message-Id: <p05010401b6dc9d57a62d@[10.0.1.107]>
164      Branch: maint-5.6/perl
165            ! ext/POSIX/POSIX.xs lib/File/Path.pm
166 ____________________________________________________________________________
167 [  9258] By: jhi                                   on 2001/03/20  05:09:34
168         Log: Update Changes.
169      Branch: perl
170            ! Changes patchlevel.h
171 ____________________________________________________________________________
172 [  9257] By: jhi                                   on 2001/03/20  05:04:25
173         Log: tr/// UTF-8 tests for Inaba Hiroto's latest patches.
174      Branch: perl
175            ! t/op/tr.t
176 ____________________________________________________________________________
177 [  9256] By: jhi                                   on 2001/03/20  04:43:12
178         Log: Subject: [PATCH: 5.6.1-trial3] test fixes and installation cleanliness for OS/390
179              From: Peter Prymmer <pvhp@forte.com>
180              Date: Mon, 19 Mar 2001 16:43:13 -0800 (PST)
181              Message-ID: <Pine.OSF.4.10.10103191627310.162127-100000@aspara.forte.com>
182      Branch: maint-5.6/perl
183            ! installperl t/comp/proto.t t/comp/require.t t/op/regmesg.t
184 ____________________________________________________________________________
185 [  9255] By: jhi                                   on 2001/03/19  23:17:17
186         Log: substr($bytestr, i, n, $charstr)
187
188              TODO: we are still broken if $bytestr needs UTF-8 upgrading.
189      Branch: perl
190            ! Todo-5.6 pp.c t/op/substr.t
191 ____________________________________________________________________________
192 [  9254] By: jhi                                   on 2001/03/19  22:25:09
193         Log: Rearrange the make test target prerequisites so that
194              in a parallel make 'all' is finished before 'test'.
195      Branch: perl
196            ! Makefile.SH
197 ____________________________________________________________________________
198 [  9253] By: jhi                                   on 2001/03/19  21:48:07
199         Log: Subject: PATCH: cosmetic tweak in pp_ctl.c
200              From: Robin Houston <robin@kitsite.com>
201              Date: Mon, 19 Mar 2001 15:48:41 +0000
202              Message-ID: <20010319154841.A28174@puffinry.freeserve.co.uk>
203      Branch: perl
204            ! pp_ctl.c
205 ____________________________________________________________________________
206 [  9252] By: jhi                                   on 2001/03/19  21:42:27
207         Log: Integrate perlio.
208      Branch: perl
209           !> doop.c perly.c perly.y sv.c t/camel-III/vstring.t t/op/each.t
210           !> t/op/length.t t/op/pack.t t/op/ver.t toke.c utf8.c utf8.h
211           !> utfebcdic.h vms/perly_c.vms
212 ____________________________________________________________________________
213 [  9251] By: jhi                                   on 2001/03/19  21:31:28
214         Log: Integrate changes #9244,9247,9250 from maintperl into mainline.
215              
216              Dynaloading in 64-bit AIX with vac.
217      Branch: perl
218           !> ext/DynaLoader/dl_aix.xs ext/DynaLoader/hints/aix.pl
219           !> hints/aix.sh
220 ____________________________________________________________________________
221 [  9250] By: jhi                                   on 2001/03/19  21:18:00
222         Log: A more robust solution for the 64bitall AIX dynaloading
223              problem, from Jens-Uwe Mager.
224      Branch: maint-5.6/perl
225            ! ext/DynaLoader/dl_aix.xs ext/DynaLoader/hints/aix.pl
226 ____________________________________________________________________________
227 [  9249] By: nick                                  on 2001/03/19  20:59:37
228         Log: Integrate mainline.
229      Branch: perlio
230           !> (integrate 42 files)
231 ____________________________________________________________________________
232 [  9248] By: nick                                  on 2001/03/19  20:22:07
233         Log: Tweak to perly.y to allow -DDEBUGGING to compile on OS390.
234              (Building on OS390 uses native YACC and YYDEBUG has other
235              side effects.)
236      Branch: perlio
237            ! perly.c perly.y vms/perly_c.vms
238 ____________________________________________________________________________
239 [  9247] By: jhi                                   on 2001/03/19  19:59:53
240         Log: 64-bit AIX dynaloading problem (see #9244) idea
241              from Jens-Uwe Mager.
242      Branch: maint-5.6/perl
243            ! ext/DynaLoader/dl_aix.xs
244 ____________________________________________________________________________
245 [  9246] By: nick                                  on 2001/03/19  19:27:57
246         Log: More EBCDIC fixes.
247      Branch: perlio
248            ! doop.c sv.c t/camel-III/vstring.t t/op/each.t t/op/length.t
249            ! t/op/pack.t t/op/ver.t toke.c utf8.c utf8.h utfebcdic.h
250 ____________________________________________________________________________
251 [  9245] By: jhi                                   on 2001/03/19  19:05:19
252         Log: Integrate change #9243 from mainline into maintperl.
253              
254              Subject: [PATCH perl-5.6.1-TRIAL3/README.vmesa] bad =item paragraphs
255      Branch: maint-5.6/perl
256           !> README.vmesa
257 ____________________________________________________________________________
258 [  9244] By: jhi                                   on 2001/03/19  19:03:15
259         Log: Get 64bitall AIX building, but still does not test okay:
260              dynaloading anything fails, for example for op/defins:
261              Can't load '../lib/auto/File/Glob/Glob.so' for module File::Glob: loadbind: A system call received a parameter that is not valid. at ../lib/XSLoader.pm line 75. at ../lib/File/Glob.pm line 99
262              (update: fixed by #9247,9250)
263      Branch: maint-5.6/perl
264            ! hints/aix.sh
265 ____________________________________________________________________________
266 [  9243] By: jhi                                   on 2001/03/19  19:00:16
267         Log: Subject: [PATCH perl-5.6.1-TRIAL3/README.vmesa] bad =item paragraphs
268              From: Robin Barker <rmb1@cise.npl.co.uk>
269              Date: Mon, 19 Mar 2001 18:01:57 GMT
270              Message-Id: <200103191801.SAA01072@tempest.npl.co.uk>
271      Branch: perl
272            ! README.vmesa
273 ____________________________________________________________________________
274 [  9242] By: jhi                                   on 2001/03/19  18:58:43
275         Log: UTF-8 tr/// battle continues, ammunition from Inaba Hiroto.
276              
277              TODO: tests.
278      Branch: perl
279            ! doop.c op.c
280 ____________________________________________________________________________
281 [  9241] By: gsar                                  on 2001/03/19  17:34:46
282         Log: VMSify tests (from Charles Lane)
283      Branch: maint-5.6/perl
284            ! t/lib/filehand.t t/lib/texttabs.t
285 ____________________________________________________________________________
286 [  9240] By: jhi                                   on 2001/03/19  14:24:26
287         Log: Integrate change #9233 from maintperl into mainline.
288              
289              some refcounts were incorrect in perl_clone()
290      Branch: perl
291           !> sv.c
292 ____________________________________________________________________________
293 [  9239] By: gsar                                  on 2001/03/19  09:23:17
294         Log: this is 5.6.1-trial3
295      Branch: maint-5.6/perl
296            ! Changes
297 ____________________________________________________________________________
298 [  9238] By: gsar                                  on 2001/03/19  08:47:04
299         Log: some new symbols are only available under ithreads
300      Branch: maint-5.6/perl
301            ! makedef.pl
302 ____________________________________________________________________________
303 [  9237] By: gsar                                  on 2001/03/19  08:42:28
304         Log: update patchlevel.h, Changes, &c.
305      Branch: maint-5.6/perl
306            ! Changes patchlevel.h pod/perlhist.pod
307           !> AUTHORS
308 ____________________________________________________________________________
309 [  9236] By: gsar                                  on 2001/03/19  08:17:49
310         Log: integrate changes#8068,8717 from mainline
311              
312              [PATCH 5.7.0@8047] RE: [ID 20001013.009] DB_File issues warning when setting element to    undef
313              
314              [PATCH CPAN 1.59_51] warning message (not!)
315      Branch: maint-5.6/perl
316           !> ext/GDBM_File/GDBM_File.pm ext/GDBM_File/typemap
317           !> ext/NDBM_File/NDBM_File.pm ext/NDBM_File/typemap
318           !> ext/ODBM_File/ODBM_File.pm ext/ODBM_File/typemap
319           !> ext/SDBM_File/SDBM_File.pm ext/SDBM_File/typemap lib/CPAN.pm
320           !> t/lib/gdbm.t t/lib/ndbm.t t/lib/odbm.t t/lib/sdbm.t
321 ____________________________________________________________________________
322 [  9235] By: gsar                                  on 2001/03/19  08:07:09
323         Log: integrate changes#8617,8713,8715,8716,8721,8953,8963 from mainline
324              
325              [PATCH] Add missing CV flags to dump.c
326              
327              Re: [patch] Re: PL_ptr_table
328              
329              Fixup non-ithread build after 8713
330              
331              Generated files form 8713 etc.
332              
333              Correct the correction :-(
334              
335              Documenting coderef @INC (Re: CPAN "make this script work" feature)
336              
337              Subject: Re: sync sync sync: have I missed any patches?
338              Replace djSP with dSP.
339      Branch: maint-5.6/perl
340           !> cop.h doio.c doop.c dump.c embed.h embed.pl ext/B/B/C.pm
341           !> ext/B/B/CC.pm global.sym objXSUB.h perl.c perlapi.c
342           !> pod/perlhack.pod pp.c pp.h pp_ctl.c pp_hot.c pp_sys.c proto.h
343           !> sv.c sv.h win32/perlhost.h
344 ____________________________________________________________________________
345 [  9234] By: gsar                                  on 2001/03/19  07:22:05
346         Log: revert the change#9090 integrate for now (change looks somewhat
347              incomplete in that [ha]v_exists() need something similar; lacks
348              tests; &c.)
349      Branch: maint-5.6/perl
350            ! hv.c
351 ____________________________________________________________________________
352 [  9233] By: gsar                                  on 2001/03/19  07:10:01
353         Log: some refcounts were incorrect in perl_clone(); avoid hang in global
354              destruction when there are unreferenced scalars (SvREFCNT==0)
355      Branch: maint-5.6/perl
356            ! sv.c
357 ____________________________________________________________________________
358 [  9232] By: jhi                                   on 2001/03/19  05:11:02
359         Log: Regen api and toc.
360      Branch: maint-5.6/perl
361            ! pod/perlapi.pod pod/perltoc.pod
362 ____________________________________________________________________________
363 [  9231] By: jhi                                   on 2001/03/19  04:06:03
364         Log: Integrate changes in #9070,9072,9101 from mainline into maintperl,
365              add a lost line in pp.c:pp_chop(), update to new op/chop.
366              
367              Clarify the description differentiating for and while; inspired by
368              
369              Subject: [ID 20010306.004] || != named unary operator
370              
371              The $Is_MacOS needs to be declared.
372      Branch: maint-5.6/perl
373            ! pp.c t/op/chop.t
374           !> lib/ExtUtils/Manifest.pm pod/perlop.pod pod/perlsyn.pod
375 ____________________________________________________________________________
376 [  9230] By: jhi                                   on 2001/03/19  03:48:16
377         Log: Integrate changes #7971(perlio),8982,9061,9062,9068,9069,
378              9079,9083,9089,9090,9091 from mainline to maintperl.
379              
380              Quieten some noise in Win32 builds
381              
382              Fixes the bugs 20010221.005 and 20010221.008: "the taint checker..."
383              
384              The perlretut was still talking about the old \p and \P
385              definitions.
386              
387              More tweakage on the Unicode character class descriptions.
388              
389              Subject: Re: [ID 20010305.012] chop() against list assignment returns char chopped from el zero
390              
391              Subject: 'no *POSIX' Patch speeding up make on BS2000 
392              
393              Subject: [PATCH] perldata.pod here-doc docs
394              
395              Add /sbin and /usr/sbin to the list of directories scanned
396              for setuid programs.  Takes care of bug id 20010309.003.
397              
398              Subject: Re: [ID 19990808.001] [PATCH] FETCH triggered on exists()
399              
400              In op/stat #35 better to scan all the potential directories
401              for setuids, not just the first one.
402      Branch: maint-5.6/perl
403            ! Makefile.SH
404           !> doio.c hv.c lib/unicode/mktables.PL makedepend.SH perl.h
405           !> pod/perldata.pod pod/perlretut.pod pp.c t/op/chop.t
406           !> t/op/stat.t toke.c win32/win32.h
407 ____________________________________________________________________________
408 [  9229] By: jhi                                   on 2001/03/19  02:31:50
409         Log: Subject: [MacPerl-Porters] [PATCH] Portability fixes for Mac OS / maint-5.6
410              From: Chris Nandor <pudge@pobox.com>
411              Date: Sat, 10 Mar 2001 14:22:19 -0500
412              Message-Id: <p0501042db6cf0a8d0b63@[10.0.1.177]>
413      Branch: maint-5.6/perl
414            ! ext/B/defsubs_h.PL ext/DynaLoader/dl_mac.xs
415            ! ext/Errno/Errno_pm.PL lib/ExtUtils/Manifest.pm perlsfio.h
416            ! t/lib/b.t t/lib/errno.t
417 ____________________________________________________________________________
418 [  9228] By: jhi                                   on 2001/03/19  02:29:59
419         Log: Integrate changes #9113,9122 from mainline into maintperl.
420              
421              Subject: [PATCH: perl@9092, dist-3.0@70] OS/390 mydomain last gasp before silly guess (was Re: What do I need to build EBCDIC perl?)
422      Branch: maint-5.6/perl
423           !> Configure README.os390 hints/os390.sh
424 ____________________________________________________________________________
425 [  9227] By: jhi                                   on 2001/03/19  02:22:35
426         Log: Integrate #9115,9121,9128,9163,9171,9174,9175 from mainline
427              into maintperl.
428              
429              Subject: Re: [ID 20010305.005] "use integer" doesn't make rand() return integers
430              
431              Forgot to check-in the larger part of #9120, duh.
432              
433              Subject: Another patch for integer.pm POD 
434              
435              h2ph strictness and cleanliness from Kurt Starsinic.
436              
437              Borland filename case problem.
438              
439              h2ph strictness and cleanliness from Kurt Starsinic.
440              
441              Subject: [PATCH] the uncontroversial doc patches
442      Branch: maint-5.6/perl
443           +> win32/sncfnmcs.pl
444           !> MANIFEST README.os2 README.win32 ext/GDBM_File/GDBM_File.pm
445           !> ext/GDBM_File/GDBM_File.xs lib/integer.pm
446           !> pod/perl5005delta.pod pod/perldebtut.pod pod/perlfunc.pod
447           !> pod/perlhack.pod pod/perllexwarn.pod pod/perllocale.pod
448           !> pod/perllol.pod pod/perlmod.pod pod/perlmodlib.pod
449           !> pod/perlport.pod pod/perlrun.pod pod/perltoc.pod
450           !> pod/perlxs.pod pod/perlxstut.pod utils/h2ph.PL
451 ____________________________________________________________________________
452 [  9226] By: jhi                                   on 2001/03/19  02:10:21
453         Log: Integrate changes #9207,9214 from mainline into maintperl.
454              
455              podchecker relaxations: =over has an *optional* number after it,
456              and whitespace in L<> is okay.
457      Branch: maint-5.6/perl
458           !> lib/Pod/Checker.pm lib/Pod/ParseUtils.pm pod/perlpod.pod
459           !> t/pod/poderrs.xr
460 ____________________________________________________________________________
461 [  9225] By: jhi                                   on 2001/03/19  02:07:38
462         Log: Integrate change #9219 from maintperl into mainline.
463              
464              remove duplicated tests
465      Branch: perl
466           !> t/op/re_tests
467 ____________________________________________________________________________
468 [  9224] By: jhi                                   on 2001/03/19  02:06:11
469         Log: Integrate change #9223 from mainline to maintperl.
470              
471              Document -Dmksymlinks.
472      Branch: maint-5.6/perl
473           !> INSTALL
474 ____________________________________________________________________________
475 [  9223] By: jhi                                   on 2001/03/19  02:01:25
476         Log: Document -Dmksymlinks.
477      Branch: perl
478            ! INSTALL
479 ____________________________________________________________________________
480 [  9222] By: jhi                                   on 2001/03/19  01:15:35
481         Log: The -Dmksymlinks wasn't working for maintperl.
482      Branch: maint-5.6/perl
483            ! Configure
484 ____________________________________________________________________________
485 [  9221] By: jhi                                   on 2001/03/19  00:49:43
486         Log: Cleanup pixie residue.
487      Branch: perl
488            ! Makefile.SH
489 ____________________________________________________________________________
490 [  9220] By: jhi                                   on 2001/03/19  00:44:47
491         Log: Document the use of pixie/prof; create make targets for it.
492              
493              TODO: make t/TEST pixie-aware.
494      Branch: perl
495            ! Makefile.SH pod/perlhack.pod
496 ____________________________________________________________________________
497 [  9219] By: gsar                                  on 2001/03/19  00:16:55
498         Log: remove duplicated tests
499      Branch: maint-5.6/perl
500            ! t/op/re_tests
501 ____________________________________________________________________________
502 [  9218] By: jhi                                   on 2001/03/18  23:59:31
503         Log: Document Third Degree some more, and also PERL_DESTRUCT_LEVEL.
504      Branch: perl
505            ! pod/perlhack.pod pod/perlobj.pod pod/perlrun.pod
506 ____________________________________________________________________________
507 [  9217] By: jhi                                   on 2001/03/18  23:25:20
508         Log: Rewrite the tests section of Makefile to be less redundant
509              and to allow for more flexible test targets, many recursive
510              make calls introduced.
511      Branch: perl
512            ! Makefile.SH
513 ____________________________________________________________________________
514 [  9216] By: jhi                                   on 2001/03/18  22:30:04
515         Log: Document the use of Third Degree (sparsely).
516      Branch: perl
517            ! pod/perlhack.pod t/TEST
518 ____________________________________________________________________________
519 [  9215] By: jhi                                   on 2001/03/18  22:10:30
520         Log: Make targets for testing with Third Degree.
521      Branch: perl
522            ! Makefile.SH
523 ____________________________________________________________________________
524 [  9214] By: jhi                                   on 2001/03/18  21:08:53
525         Log: The podchecker relaxations need to mirrored also at the tests.
526      Branch: perl
527            ! t/pod/poderrs.xr
528 ____________________________________________________________________________
529 [  9213] By: jhi                                   on 2001/03/18  20:56:21
530         Log: Update Changes.
531      Branch: perl
532            ! Changes patchlevel.h
533 ____________________________________________________________________________
534 [  9212] By: jhi                                   on 2001/03/18  20:36:59
535         Log: Looking for config.sh in parent directories isn't
536              very useful for the toplevel Makefile.
537      Branch: perl
538            ! Makefile.SH
539 ____________________________________________________________________________
540 [  9211] By: jhi                                   on 2001/03/18  20:33:37
541         Log: On "make clean" take care of Third Degree droppings.
542      Branch: perl
543            ! Makefile.SH
544 ____________________________________________________________________________
545 [  9210] By: jhi                                   on 2001/03/18  20:21:34
546         Log: Add a hook for running the tests under the Third Degree
547              debugging tool (set $ENV{PERL_3LOG} to non-zero)
548              
549              TODO: Document the use of Third Degree.
550      Branch: perl
551            ! t/TEST
552 ____________________________________________________________________________
553 [  9209] By: jhi                                   on 2001/03/18  20:19:07
554         Log: Regen toc and api pods.
555      Branch: perl
556            ! pod/perlapi.pod pod/perltoc.pod
557 ____________________________________________________________________________
558 [  9208] By: jhi                                   on 2001/03/18  20:12:12
559         Log: Integrate changes #8128,9132 from mainline into maintperl,
560              Tie::SubstrHash fixes.
561      Branch: maint-5.6/perl
562           !> lib/Tie/SubstrHash.pm t/lib/tie-substrhash.t
563 ____________________________________________________________________________
564 [  9207] By: jhi                                   on 2001/03/18  20:07:43
565         Log: podchecker relaxations from Michael Stevens.
566      Branch: perl
567            ! lib/Pod/Checker.pm lib/Pod/ParseUtils.pm pod/perlpod.pod
568 ____________________________________________________________________________
569 [  9206] By: jhi                                   on 2001/03/18  20:04:24
570         Log: Retract the changes made at #9176 to Neil's and Ilya's module pods.
571      Branch: perl
572            ! lib/Locale/Constants.pm lib/Locale/Country.pm
573            ! lib/Locale/Currency.pm lib/Locale/Language.pm lib/overload.pm
574            ! os2/OS2/ExtAttr/ExtAttr.pm os2/OS2/Process/Process.pm
575 ____________________________________________________________________________
576 [  9205] By: jhi                                   on 2001/03/18  19:54:45
577         Log: Integrate changes #9161,9162 from maintperl to mainline.
578              
579              clearing of $ENV{PERL_DESTRUCT_LEVEL} interferes with purify
580              results
581      Branch: perl
582           !> t/op/magic.t
583 ____________________________________________________________________________
584 [  9204] By: jhi                                   on 2001/03/18  19:37:46
585         Log: Make perl.third checks more understandable to the builder.
586      Branch: perl
587            ! Makefile.SH
588 ____________________________________________________________________________
589 [  9203] By: jhi                                   on 2001/03/18  19:20:54
590         Log: Re-integrate #9138 from maintperl to mainline,
591              the squelching of the unneeded "Scalars leaked" messages.
592      Branch: perl
593           !> t/comp/proto.t t/op/lex_assign.t t/op/local.t t/op/pat.t
594           !> t/op/regexp.t t/pragma/strict-vars t/pragma/warn/op
595           !> t/pragma/warn/regcomp t/pragma/warn/toke t/pragma/warnings.t
596 ____________________________________________________________________________
597 [  9202] By: jhi                                   on 2001/03/18  18:48:36
598         Log: More robust and more paranoid perl.third target.
599      Branch: perl
600            ! Makefile.SH
601 ____________________________________________________________________________
602 [  9201] By: jhi                                   on 2001/03/18  18:39:21
603         Log: Integrate change #9197 from maintperl to mainline.
604              
605              more thorough cleaning of arenas.
606      Branch: perl
607           !> embed.pl perl.c proto.h sv.c t/op/sort.t
608 ____________________________________________________________________________
609 [  9200] By: jhi                                   on 2001/03/18  18:25:17
610         Log: Integrate perlio.
611      Branch: perl
612           !> doop.c ext/Encode/Encode.pm ext/Encode/Encode.xs
613           !> ext/Encode/compile lib/utf8.pm pp_ctl.c sv.c t/lib/b.t
614           !> t/lib/encode.t toke.c universal.c utf8.c
615 ____________________________________________________________________________
616 [  9199] By: nick                                  on 2001/03/18  15:23:51
617         Log: Prefer !UTF8_IS_INVARIANT() over UTF8_IS_CONTINUED() when that
618              is the sense of the test being done. Avoid some magical 127 and 128 values
619              by using macros.
620      Branch: perlio
621            ! doop.c pp_ctl.c sv.c toke.c
622 ____________________________________________________________________________
623 [  9198] By: nick                                  on 2001/03/18  14:18:12
624         Log: UTF-X encoding invariance for Encode:
625              - move Encode::utf8_encode to utf8::encode (likewise decode,upgrade,downgrade,valid)
626              - move the XS code for those to universal.c (so in miniperl)
627              - add utf8::unicode_to_native and its inverse to allow EBCDIC to work in true unicode.
628              - change ext/Encode/compile to use above.
629              - Fix t/lib/encode.t for above
630              - Teach t/lib/b.t to expect -uutf8
631              - In utf8.c look for SWASHNEW rather than just utf8:: package to see if
632              utf8.pm is needed.
633      Branch: perlio
634            ! ext/Encode/Encode.pm ext/Encode/Encode.xs ext/Encode/compile
635            ! lib/utf8.pm t/lib/b.t t/lib/encode.t universal.c utf8.c
636 ____________________________________________________________________________
637 [  9197] By: gsar                                  on 2001/03/18  12:15:57
638         Log: more thorough cleaning of arenas--keep going until no more
639              SvREFCNT_dec()s occur (this fixes the problem that causes the
640              pesky "Scalars leaked" warnings)
641      Branch: maint-5.6/perl
642            ! embed.pl perl.c proto.h sv.c t/op/sort.t
643 ____________________________________________________________________________
644 [  9196] By: nick                                  on 2001/03/18  10:57:29
645         Log: Fix pragma/utf8.t # 15
646              - if toke.c is processing a SvUTF8 string then single quoted '...' etc.
647              are SvUTF8 as well.
648      Branch: perlio
649            ! toke.c
650 ____________________________________________________________________________
651 [  9195] By: nick                                  on 2001/03/18  09:27:06
652         Log: Integrate mainline
653      Branch: perlio
654           !> MANIFEST Makefile.SH doop.c mg.c op.c op.h t/op/misc.t
655           !> t/op/pat.t
656 ____________________________________________________________________________
657 [  9194] By: jhi                                   on 2001/03/18  05:29:59
658         Log: Sarathy's clear_pmop patch with Radu Greab's fix,
659              Hiroto's, Nick Clark's, and Vadim Konovalov's tests.
660      Branch: perl
661            ! op.c op.h t/op/misc.t t/op/pat.t
662 ____________________________________________________________________________
663 [  9193] By: jhi                                   on 2001/03/18  05:15:06
664         Log: NI-S' cunning idea of how to de-UTF8 the "\C-broken" submatches.
665      Branch: perl
666            ! mg.c t/op/pat.t
667 ____________________________________________________________________________
668 [  9192] By: jhi                                   on 2001/03/18  04:22:43
669         Log: tr/// UTF-8 patches from Inaba Hiroto.
670      Branch: perl
671            ! doop.c op.c
672 ____________________________________________________________________________
673 [  9191] By: jhi                                   on 2001/03/18  04:21:17
674         Log: Integrate perlio.
675      Branch: perl
676           !> utf8.c utfebcdic.h
677 ____________________________________________________________________________
678 [  9190] By: nick                                  on 2001/03/17  20:32:01
679         Log: Correct #if EBCDIC side typos.
680              Builds and passes many tests on OS390.
681      Branch: perlio
682            ! utf8.c utfebcdic.h
683 ____________________________________________________________________________
684 [  9189] By: jhi                                   on 2001/03/17  18:55:49
685         Log: Add prerequisites for the perl.third target.
686      Branch: perl
687            ! Makefile.SH
688 ____________________________________________________________________________
689 [  9188] By: jhi                                   on 2001/03/17  18:46:00
690         Log: Integrate perlio.
691      Branch: perl
692           +> utfebcdic.h
693           !> MANIFEST doop.c perl.h pp.c utf8.c utf8.h
694 ____________________________________________________________________________
695 [  9187] By: jhi                                   on 2001/03/17  18:38:47
696         Log: Add a make rule for perl.third (the Third Degree memory debugging
697              tool of Tru64 / Digital UNIX / DEC OSF/1, see man third or man atom)
698      Branch: perl
699            ! Makefile.SH
700 ____________________________________________________________________________
701 [  9186] By: nick                                  on 2001/03/17  18:34:48
702         Log: MANIFEST addition :-(
703      Branch: perlio
704            ! MANIFEST
705 ____________________________________________________________________________
706 [  9185] By: nick                                  on 2001/03/17  18:29:50
707         Log: Infrastructure to use UTF-EBCDIC rather than UTF-8 as the internal
708              encoding on EBCDIC platforms. This has property that U+0000..U+009F i.e.
709              a superset of ASCII are invariant under the encoding. This is EBCDIC
710              friendly as an encoded string can be looked at as being EBCDIC by lexer
711              sprintf("%d",...) etc. in same manner that a UTF-8 string be considered
712              ASCII on ASCII machines.
713              
714              - re-arrange utf8.h to get ASCII specific vs Unicode generic bits
715              seperate.
716              - Add some more macros to comprehend different shift amounts and
717              possible swizzle in UTF-EBCDIC vs UTF-8. Change utf8.c to use them.
718              - add utfebcdic.h which provides UTF-EBCDIC versions of the macros,
719              and conditionaly #include it.
720              
721              EBCDIC build as yet untested.  ASCII still fails the one test.
722      Branch: perlio
723            + utfebcdic.h
724            ! utf8.c utf8.h
725 ____________________________________________________________________________
726 [  9184] By: nick                                  on 2001/03/17  17:44:16
727         Log: Minor naming change UTF8_IS_ASCII => UTF8_IS_INVARIANT
728      Branch: perlio
729            ! doop.c perl.h pp.c utf8.h
730 ____________________________________________________________________________
731 [  9183] By: jhi                                   on 2001/03/17  15:55:42
732         Log: Integrate perlio.
733      Branch: perl
734            ! MANIFEST
735           !> perl.h sv.c t/op/pat.t toke.c utf8.c utf8.h
736 ____________________________________________________________________________
737 [  9182] By: nick                                  on 2001/03/17  09:16:06
738         Log: Allow test to pass even when \C leaves SvUTF8 set by adding 'use bytes'
739      Branch: perlio
740            ! t/op/pat.t
741 ____________________________________________________________________________
742 [  9181] By: nick                                  on 2001/03/17  09:15:11
743         Log: Integrate mainline.
744      Branch: perlio
745           +> lib/Locale/Constants.pm lib/Locale/Country.pm
746           +> lib/Locale/Currency.pm lib/Locale/Language.pm t/lib/lc-all.t
747           +> t/lib/lc-constants.t t/lib/lc-country.t t/lib/lc-currency.t
748           +> t/lib/lc-language.t t/lib/lc-uk.t win32/sncfnmcs.pl
749           !> (integrate 83 files)
750 ____________________________________________________________________________
751 [  9180] By: nick                                  on 2001/03/16  17:23:21
752         Log: EBCDIC Fixes.
753      Branch: perlio
754            ! perl.h sv.c toke.c utf8.c utf8.h
755 ____________________________________________________________________________
756 [  9179] By: jhi                                   on 2001/03/16  14:10:12
757         Log: Re-apply #9024 as the Storable 1.0.11 (#9069) overwrote
758              a change needed to work around an AIX compiler bug.
759      Branch: perl
760            ! ext/Storable/Storable.xs
761 ____________________________________________________________________________
762 [  9178] By: jhi                                   on 2001/03/16  03:19:59
763         Log: With Damian's approval synchronize damian's modules'
764              licensing with Perl's standard module licensing.
765      Branch: perl
766            ! lib/Filter/Simple.pm lib/Switch.pm lib/Text/Balanced.pod
767 ____________________________________________________________________________
768 [  9177] By: jhi                                   on 2001/03/16  03:15:34
769         Log: Make the Filter::Util:Call files have their own copies
770              of the Perl standard module licensing, from Paul Marquess.
771      Branch: perl
772            ! ext/Filter/Util/Call/Call.pm ext/Filter/Util/Call/Call.xs
773 ____________________________________________________________________________
774 [  9176] By: jhi                                   on 2001/03/16  02:56:04
775         Log: Subject: [PATCH] more pod patches
776              From: Michael Stevens <michael@etla.org>
777              Date: Thu, 15 Mar 2001 21:25:18 +0000
778              Message-ID: <20010315212518.A18870@firedrake.org>
779      Branch: perl
780            ! configpm ext/B/B/Bytecode.pm ext/DB_File/DB_File.pm
781            ! ext/Data/Dumper/Dumper.pm ext/Devel/Peek/Peek.pm
782            ! ext/Filter/Util/Call/Call.pm ext/IO/lib/IO/Handle.pm
783            ! ext/IO/lib/IO/Seekable.pm ext/IO/lib/IO/Socket/UNIX.pm
784            ! ext/IPC/SysV/Msg.pm ext/IPC/SysV/Semaphore.pm
785            ! ext/IPC/SysV/SysV.pm ext/NDBM_File/NDBM_File.pm
786            ! ext/ODBM_File/ODBM_File.pm ext/Socket/Socket.pm
787            ! ext/Storable/Storable.pm ext/Sys/Syslog/Syslog.pm
788            ! ext/Thread/Thread.pm ext/Thread/Thread/Queue.pm
789            ! ext/attrs/attrs.pm jpl/JNI/JNI.pm lib/CPAN.pm
790            ! lib/Class/Struct.pm lib/Dumpvalue.pm lib/ExtUtils/Embed.pm
791            ! lib/ExtUtils/Installed.pm lib/ExtUtils/MM_Cygwin.pm
792            ! lib/ExtUtils/MM_OS2.pm lib/ExtUtils/MM_VMS.pm
793            ! lib/ExtUtils/MM_Win32.pm lib/ExtUtils/Manifest.pm
794            ! lib/ExtUtils/Mksymlists.pm lib/ExtUtils/Packlist.pm
795            ! lib/File/Basename.pm lib/File/Spec/VMS.pm
796            ! lib/File/Spec/Win32.pm lib/FileHandle.pm lib/Filter/Simple.pm
797            ! lib/Getopt/Long.pm lib/Locale/Constants.pm
798            ! lib/Locale/Country.pm lib/Locale/Language.pm
799            ! lib/Term/ANSIColor.pm lib/Test.pm lib/Test/Harness.pm
800            ! lib/Text/Wrap.pm lib/Tie/Array.pm lib/Tie/Handle.pm
801            ! lib/Tie/Hash.pm lib/Tie/Scalar.pm lib/User/pwent.pm
802            ! lib/autouse.pm lib/overload.pm os2/OS2/ExtAttr/ExtAttr.pm
803            ! os2/OS2/Process/Process.pm
804 ____________________________________________________________________________
805 [  9175] By: jhi                                   on 2001/03/16  02:53:32
806         Log: Subject: [PATCH] the uncontroversial doc patches
807              From: Michael Stevens <michael@etla.org>
808              Date: Thu, 15 Mar 2001 20:01:12 +0000
809              Message-ID: <20010315200112.A7636@firedrake.org>
810      Branch: perl
811            ! pod/perl5005delta.pod pod/perldebtut.pod pod/perldelta.pod
812            ! pod/perlfunc.pod pod/perlhack.pod pod/perllexwarn.pod
813            ! pod/perllocale.pod pod/perllol.pod pod/perlmod.pod
814            ! pod/perlmodlib.pod pod/perlport.pod pod/perlrun.pod
815            ! pod/perltoc.pod pod/perlxs.pod pod/perlxstut.pod
816 ____________________________________________________________________________
817 [  9174] By: jhi                                   on 2001/03/16  02:50:49
818         Log: Subject: [PATCH 5.6.1] ext/GDBM_File GDBM_NOLOCK constant
819              From: Paul Lindner <lindner@inuus.com>
820              Date: Fri, 16 Mar 2001 11:28:03 -0800
821              Message-ID: <20010316112803.A7577@inuus.com>
822      Branch: perl
823            ! ext/GDBM_File/GDBM_File.pm ext/GDBM_File/GDBM_File.xs
824 ____________________________________________________________________________
825 [  9173] By: nick                                  on 2001/03/15  20:21:03
826         Log: 1st day's EBCDIC fixes:
827              - toke.c's parsing of strings needed attention
828              needed to conditionally e2a if string was already UTF-8
829              - e2a/a2e tables where wrong way round.
830              - new macros in utf8.h
831      Branch: perlio
832            ! perl.h toke.c utf8.h
833 ____________________________________________________________________________
834 [  9172] By: jhi                                   on 2001/03/15  15:17:17
835         Log: Update Changes.
836      Branch: perl
837            ! Changes patchlevel.h
838 ____________________________________________________________________________
839 [  9171] By: jhi                                   on 2001/03/15  15:09:32
840         Log: Subject: Re: Another Borland C++ problem.
841              From: "Vadim Konovalov" <watman@inbox.ru>
842              Date: Sat, 10 Mar 2001 19:26:07 +0300
843              Message-ID: <001601c0a97f$143fcc40$da7b55c2@vad>
844              
845              Borland filename case problem.
846      Branch: perl
847            + win32/sncfnmcs.pl
848            ! MANIFEST README.win32
849 ____________________________________________________________________________
850 [  9170] By: jhi                                   on 2001/03/15  14:54:23
851         Log: Add Locale::Codes 1.06, from Neil Bowers.
852      Branch: perl
853            + lib/Locale/Constants.pm lib/Locale/Country.pm
854            + lib/Locale/Currency.pm lib/Locale/Language.pm t/lib/lc-all.t
855            + t/lib/lc-constants.t t/lib/lc-country.t t/lib/lc-currency.t
856            + t/lib/lc-language.t t/lib/lc-uk.t
857            ! MANIFEST
858 ____________________________________________________________________________
859 [  9169] By: jhi                                   on 2001/03/15  14:19:01
860         Log: Upgrade to Storable 1.0.11, from Raphael Manfredi.
861      Branch: perl
862            ! ext/Storable/ChangeLog ext/Storable/Storable.pm
863            ! ext/Storable/Storable.xs
864 ____________________________________________________________________________
865 [  9168] By: jhi                                   on 2001/03/15  14:13:22
866         Log: Integrate changes #9120,9167 from mainline to maintperl.
867              
868              Subject: [PATCH 5.6.1] OS/2 docs
869              
870              Subject: [PATCH 5.6.1] perldoc
871      Branch: maint-5.6/perl
872           !> os2/Changes utils/perldoc.PL
873 ____________________________________________________________________________
874 [  9167] By: jhi                                   on 2001/03/15  14:07:42
875         Log: Subject: [PATCH 5.6.1] perldoc
876              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
877              Date: Wed, 14 Mar 2001 23:46:52 -0500
878              Message-ID: <20010314234652.A7972@math.ohio-state.edu>
879      Branch: perl
880            ! utils/perldoc.PL
881 ____________________________________________________________________________
882 [  9166] By: jhi                                   on 2001/03/15  13:53:15
883         Log: sigaction test condition tweakage.
884      Branch: perl
885            ! t/lib/sigaction.t
886 ____________________________________________________________________________
887 [  9165] By: alanbur                               on 2001/03/15  03:49:17
888         Log: Resynchronised with parent
889      Branch: maint-5.6/pureperl
890           +> os2/os2add.sym t/op/anonsub.t
891           !> (integrate 72 files)
892 ____________________________________________________________________________
893 [  9164] By: jhi                                   on 2001/03/15  01:05:01
894         Log: Avoid stomping off the beginning of an array in tr///.
895      Branch: perl
896            ! op.c
897 ____________________________________________________________________________
898 [  9163] By: jhi                                   on 2001/03/15  00:58:57
899         Log: h2ph strictness and cleanliness from Kurt Starsinic.
900      Branch: perl
901            ! utils/h2ph.PL
902 ____________________________________________________________________________
903 [  9162] By: gsar                                  on 2001/03/15  00:56:53
904         Log: avoid warnings
905      Branch: maint-5.6/perl
906            ! t/op/magic.t
907 ____________________________________________________________________________
908 [  9161] By: gsar                                  on 2001/03/15  00:52:09
909         Log: clearing of $ENV{PERL_DESTRUCT_LEVEL} interferes with purify
910              results
911      Branch: maint-5.6/perl
912            ! t/op/magic.t
913 ____________________________________________________________________________
914 [  9160] By: jhi                                   on 2001/03/14  22:02:10
915         Log: Do not use the Perl malloc in IRIX, suggested by
916              Helmus Jarausch.
917      Branch: perl
918            ! hints/irix_6.sh
919 ____________________________________________________________________________
920 [  9159] By: nick                                  on 2001/03/14  21:45:59
921         Log: Integrate mainline
922      Branch: perlio
923           +> t/op/loopctl.t
924           !> (integrate 41 files)
925 ____________________________________________________________________________
926 [  9158] By: jhi                                   on 2001/03/14  21:10:09
927         Log: The Day of the Retractions continues: the #9138
928              (integrated in #9144) doesn't work well in mainline.
929      Branch: perl
930            ! t/comp/proto.t t/op/lex_assign.t t/op/local.t t/op/pat.t
931            ! t/op/regexp.t t/pragma/strict-vars t/pragma/warn/op
932            ! t/pragma/warn/regcomp t/pragma/warn/toke t/pragma/warnings.t
933 ____________________________________________________________________________
934 [  9157] By: jhi                                   on 2001/03/14  20:58:12
935         Log: The #9145 CANNOT be enabled: the clear_pmop code still
936              dumps core all over in Tru64.
937      Branch: perl
938            ! op.c op.h t/op/pat.t
939 ____________________________________________________________________________
940 [  9156] By: jhi                                   on 2001/03/14  20:48:06
941         Log: Integrate change #9154 from maintperl to mainline.
942              
943              PerlIO_stdoutf() wasn't properly supported under PERL_IMPLICIT_SYS
944              (caused Storable 1.0.10 to break on windows)
945      Branch: perl
946           !> embed.h embed.pl global.sym globals.c iperlsys.h objXSUB.h
947           !> perlapi.c proto.h
948 ____________________________________________________________________________
949 [  9155] By: jhi                                   on 2001/03/14  20:23:53
950         Log: Retract #9136: breaks threading (and binary compatibility).
951      Branch: perl
952            ! ext/DynaLoader/dl_aix.xs hints/aix.sh makedef.pl
953 ____________________________________________________________________________
954 [  9154] By: gsar                                  on 2001/03/14  17:48:18
955         Log: PerlIO_stdoutf() wasn't properly supported under PERL_IMPLICIT_SYS
956              (caused Storable 1.0.10 to break on windows)
957      Branch: maint-5.6/perl
958            ! embed.h embed.pl global.sym globals.c iperlsys.h objXSUB.h
959            ! perlapi.c proto.h
960 ____________________________________________________________________________
961 [  9153] By: jhi                                   on 2001/03/14  13:35:21
962         Log: Tweaked a tweak from H.Merijn Brand on the sigaction test.
963      Branch: perl
964            ! t/lib/sigaction.t
965 ____________________________________________________________________________
966 [  9152] By: gsar                                  on 2001/03/14  07:29:40
967         Log: back out changes#9012,9010,9009 and parts of change#9016
968              (causes ABRs under purify, and some prerequisites don't
969              seem to be there in 5.6.x)
970      Branch: maint-5.6/perl
971            ! doop.c op.c t/op/tr.t toke.c
972 ____________________________________________________________________________
973 [  9151] By: gsar                                  on 2001/03/14  07:01:29
974         Log: reenable change#9145 (the test was busted due to a missing
975              C<print "ok 27\n">)
976      Branch: perl
977            ! op.c op.h t/op/pat.t
978 ____________________________________________________________________________
979 [  9150] By: jhi                                   on 2001/03/14  06:38:36
980         Log: Retract #9145.
981      Branch: perl
982            ! op.c op.h t/op/pat.t
983 ____________________________________________________________________________
984 [  9149] By: jhi                                   on 2001/03/14  06:14:56
985         Log: Retract #9143.
986      Branch: perl
987            ! op.c
988 ____________________________________________________________________________
989 [  9148] By: gsar                                  on 2001/03/14  06:13:02
990         Log: Uninitialized Memory Read in regexec.c
991      Branch: perl
992            ! regexec.c
993 ____________________________________________________________________________
994 [  9147] By: jhi                                   on 2001/03/14  04:59:54
995         Log: Subject: PATCH: make goto work in nested eval ""
996              From: Robin Houston <robin@kitsite.com>
997              Date: Wed, 14 Mar 2001 04:16:10 +0000
998              Message-ID: <20010314041610.A16307@puffinry.freeserve.co.uk>
999      Branch: perl
1000            ! pp_ctl.c t/op/goto.t
1001 ____________________________________________________________________________
1002 [  9146] By: jhi                                   on 2001/03/14  04:42:54
1003         Log: Preserve the #ifdef PERL_CORE in perly.h.
1004      Branch: perl
1005            ! perly.fixer
1006 ____________________________________________________________________________
1007 [  9145] By: jhi                                   on 2001/03/14  03:57:41
1008         Log: (Retracted by #9150.)
1009      Branch: perl
1010            ! op.c op.h t/op/pat.t
1011 ____________________________________________________________________________
1012 [  9144] By: jhi                                   on 2001/03/14  03:50:38
1013         Log: Integrate changes #9137,9138,9142 from maintperl into mainline.
1014              
1015              fix leak in pregcomp() when RE fails to compile (e.g. m/\\/)
1016              
1017              remove squelch controls for "Scalars leaked" messages in most places
1018              (these are now cured)
1019              
1020              fix another memory leak reported by purify (tie callbacks that
1021              croak can leak when wiping out magic)
1022      Branch: perl
1023           !> regcomp.c scope.c t/comp/proto.t t/op/lex_assign.t
1024           !> t/op/local.t t/op/pat.t t/op/regexp.t t/pragma/strict-vars
1025           !> t/pragma/warn/op t/pragma/warn/regcomp t/pragma/warn/toke
1026           !> t/pragma/warnings.t
1027 ____________________________________________________________________________
1028 [  9143] By: jhi                                   on 2001/03/14  03:37:53
1029         Log: (Retracted by #9149.)
1030      Branch: perl
1031            ! op.c
1032 ____________________________________________________________________________
1033 [  9142] By: gsar                                  on 2001/03/14  03:20:48
1034         Log: fix another memory leak reported by purify (tie callbacks that
1035              croak can leak when wiping out magic)
1036      Branch: maint-5.6/perl
1037            ! scope.c
1038 ____________________________________________________________________________
1039 [  9141] By: jhi                                   on 2001/03/14  02:55:00
1040         Log: Subject: PATCH for [ID 20010305.003]
1041              From: Robin Houston <robin@kitsite.com>
1042              Date: Wed, 14 Mar 2001 02:45:51 +0000
1043              Message-ID: <20010314024551.A16207@puffinry.freeserve.co.uk>
1044      Branch: perl
1045            ! pp_ctl.c t/op/eval.t
1046 ____________________________________________________________________________
1047 [  9140] By: jhi                                   on 2001/03/14  02:41:54
1048         Log: Subject: Re: [ID 20010309.004] my-variables lose values while goto'ing within a for(;;)-loop
1049              Date: Wed, 14 Mar 2001 01:52:51 +0000
1050              From: Robin Houston <robin@kitsite.com>
1051              Message-ID: <20010314015251.B16112@puffinry.freeserve.co.uk>
1052              
1053              Fix for 2000313.004.
1054      Branch: perl
1055            ! pp_ctl.c t/op/goto.t
1056 ____________________________________________________________________________
1057 [  9139] By: jhi                                   on 2001/03/14  02:40:50
1058         Log: Subject: Re: [ID 20010309.004] my-variables lose values while goto'ing within a for(;;)-loop
1059              From: Robin Houston <robin@kitsite.com>
1060              Date: Wed, 14 Mar 2001 00:43:45 +0000
1061              Message-ID: <20010314004345.A15892@puffinry.freeserve.co.uk>
1062      Branch: perl
1063            + t/op/loopctl.t
1064            ! AUTHORS MANIFEST perly.c perly.y perly_c.diff t/op/goto.t
1065            ! vms/perly_c.vms
1066 ____________________________________________________________________________
1067 [  9138] By: gsar                                  on 2001/03/14  01:18:00
1068         Log: remove squelch controls for "Scalars leaked" messages in most places
1069              (these are now cured)
1070      Branch: maint-5.6/perl
1071            ! t/comp/proto.t t/op/lex_assign.t t/op/local.t t/op/pat.t
1072            ! t/op/regexp.t t/pragma/strict-vars t/pragma/warn/op
1073            ! t/pragma/warn/regcomp t/pragma/warn/toke t/pragma/warnings.t
1074 ____________________________________________________________________________
1075 [  9137] By: gsar                                  on 2001/03/14  00:57:04
1076         Log: fix leak in pregcomp() when RE fails to compile (e.g. m/\\/)
1077      Branch: maint-5.6/perl
1078            ! regcomp.c
1079 ____________________________________________________________________________
1080 [  9136] By: jhi                                   on 2001/03/13  23:12:24
1081         Log: (Retracted by #9155)
1082              
1083              Subject: Re: [gsar@ActiveState.com: v5.6.1 trial2 is available]
1084              From: Jens-Uwe Mager <jum@helios.de>
1085              Date: Wed, 21 Feb 2001 21:32:04 +0100
1086              Message-ID: <20010221213203.A18340@ans.helios.de>
1087      Branch: perl
1088            ! ext/DynaLoader/dl_aix.xs hints/aix.sh makedef.pl
1089 ____________________________________________________________________________
1090 [  9135] By: jhi                                   on 2001/03/13  22:50:05
1091         Log: Integrate perlio.
1092      Branch: perl
1093           !> pp.c
1094 ____________________________________________________________________________
1095 [  9134] By: jhi                                   on 2001/03/13  22:49:05
1096         Log: Integrate change #9131 from maintperl into mainline.
1097              
1098              make the error text look more consistent in hints/hpux.sh
1099      Branch: perl
1100           !> hints/hpux.sh
1101 ____________________________________________________________________________
1102 [  9133] By: gsar                                  on 2001/03/13  22:46:20
1103         Log: integrate change#9067 from mainline
1104              
1105              Re: [PATCH: 5.6.1 trial2] DynaLoading for OS/390 build option
1106      Branch: maint-5.6/perl
1107           !> lib/ExtUtils/MM_Unix.pm
1108 ____________________________________________________________________________
1109 [  9132] By: jhi                                   on 2001/03/13  22:41:21
1110         Log: Subject:  Re: [ID 20010309.004] my-variables lose values while goto'ing within a for(;;)-loop
1111              From: "John P. Linderman" <jpl@research.att.com>
1112              Date: Tue, 13 Mar 2001 12:36:32 -0500 (EST)
1113              Message-Id: <200103131736.MAA35615@raptor.research.att.com>
1114              
1115              A more correct prime finder.
1116      Branch: perl
1117            ! lib/Tie/SubstrHash.pm
1118 ____________________________________________________________________________
1119 [  9131] By: gsar                                  on 2001/03/13  22:30:42
1120         Log: make the error text look more consistent in hints/hpux.sh
1121      Branch: maint-5.6/perl
1122            ! hints/hpux.sh
1123 ____________________________________________________________________________
1124 [  9130] By: jhi                                   on 2001/03/13  22:23:44
1125         Log: Subject: Re: 9122 and sigaction/switch on HP-UX 11.00
1126              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
1127              Date: Tue, 13 Mar 2001 18:41:26 +0100
1128              Message-Id: <20010313184043.BFFC.H.M.BRAND@hccnet.nl>
1129              
1130              If the test is run non-interactively the default handler
1131              is different.
1132      Branch: perl
1133            ! t/lib/sigaction.t
1134 ____________________________________________________________________________
1135 [  9129] By: jhi                                   on 2001/03/13  22:20:21
1136         Log: Subject:  [PATCH perl@9125] t/lib/1_compile.t  VMS mod
1137              From: lane@DUPHY4.Physics.Drexel.Edu (Charles Lane)
1138              Message-Id: <010313164414.d1225@DUPHY4.Physics.Drexel.Edu>
1139              Date:     Tue, 13 Mar 2001 16:44:32 EST
1140      Branch: perl
1141            ! t/lib/1_compile.t
1142 ____________________________________________________________________________
1143 [  9128] By: jhi                                   on 2001/03/13  22:18:34
1144         Log: Subject: Another patch for integer.pm POD 
1145              From: "John L. Allen" <allen@grumman.com>
1146              Date: Tue, 13 Mar 2001 16:14:02 -0500 (EST)
1147              Message-ID: <Pine.SOL.3.91.1010313160755.1630A-100000@gateway.grumman.com>
1148      Branch: perl
1149            ! lib/integer.pm
1150 ____________________________________________________________________________
1151 [  9127] By: nick                                  on 2001/03/13  21:26:30
1152         Log: Integrate mainline.
1153      Branch: perlio
1154           +> lib/Switch.pm lib/Text/Balanced.pm lib/Text/Balanced.pod
1155           +> t/lib/switch.t t/lib/tb-genxt.t t/lib/tb-xbrak.t
1156           +> t/lib/tb-xcode.t t/lib/tb-xdeli.t t/lib/tb-xmult.t
1157           +> t/lib/tb-xquot.t t/lib/tb-xtagg.t t/lib/tb-xvari.t
1158           !> Changes Configure MANIFEST README.os2 README.os390
1159           !> ext/re/Makefile.PL hints/aix.sh hints/os390.sh lib/integer.pm
1160           !> os2/Changes patchlevel.h win32/perlhost.h
1161 ____________________________________________________________________________
1162 [  9126] By: nick                                  on 2001/03/13  20:39:51
1163         Log: #ifdef'ed out code to make packed side of pack/unpack
1164              octets. (i.e. pack('U') => encode_utf8).
1165      Branch: perlio
1166            ! pp.c
1167 ____________________________________________________________________________
1168 [  9125] By: jhi                                   on 2001/03/13  15:07:16
1169         Log: Update Changes.
1170      Branch: perl
1171            ! Changes patchlevel.h
1172 ____________________________________________________________________________
1173 [  9124] By: jhi                                   on 2001/03/13  14:22:45
1174         Log: Workaround for the buggy ("internal compiler error")
1175              AIX C compiler 5.0.1.0: skip the optimization for regcomp.c
1176              (and ext/re/re_comp.c).  The MakeMaker dark magic courtesy
1177              of Andreas König.
1178      Branch: perl
1179            ! ext/re/Makefile.PL hints/aix.sh
1180 ____________________________________________________________________________
1181 [  9123] By: jhi                                   on 2001/03/13  03:24:34
1182         Log: Typo in #9114.
1183      Branch: metaconfig
1184            ! U/modified/myhostname.U
1185 ____________________________________________________________________________
1186 [  9122] By: jhi                                   on 2001/03/13  03:24:06
1187         Log: Typo in #9113.
1188      Branch: perl
1189            ! Configure
1190 ____________________________________________________________________________
1191 [  9121] By: jhi                                   on 2001/03/13  01:53:05
1192         Log: Forgot to check-in the larger part of #9120, duh.
1193      Branch: perl
1194            ! README.os2
1195 ____________________________________________________________________________
1196 [  9120] By: jhi                                   on 2001/03/13  01:51:31
1197         Log: Subject: [PATCH 5.6.1] OS/2 docs
1198              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
1199              Date: Mon, 12 Mar 2001 03:27:32 -0500
1200              Message-ID: <20010312032732.A19283@math.ohio-state.edu>
1201      Branch: perl
1202            ! os2/Changes
1203 ____________________________________________________________________________
1204 [  9119] By: jhi                                   on 2001/03/13  01:49:41
1205         Log: Integrate change #9116 from maintperl into mainline.
1206              
1207              Win32::GetCwd() returns C: instead of C:\ in the root directory
1208              under ithreads
1209      Branch: perl
1210           !> win32/perlhost.h
1211 ____________________________________________________________________________
1212 [  9118] By: jhi                                   on 2001/03/13  01:13:39
1213         Log: Add Switch 2.01, resort MANIFEST (forgot that in #9117)
1214      Branch: perl
1215            + lib/Switch.pm t/lib/switch.t
1216            ! MANIFEST
1217 ____________________________________________________________________________
1218 [  9117] By: jhi                                   on 2001/03/13  01:03:17
1219         Log: Add Text::Balanced 1.83.
1220      Branch: perl
1221            + lib/Text/Balanced.pm lib/Text/Balanced.pod t/lib/tb-genxt.t
1222            + t/lib/tb-xbrak.t t/lib/tb-xcode.t t/lib/tb-xdeli.t
1223            + t/lib/tb-xmult.t t/lib/tb-xquot.t t/lib/tb-xtagg.t
1224            + t/lib/tb-xvari.t
1225            ! MANIFEST
1226 ____________________________________________________________________________
1227 [  9116] By: gsar                                  on 2001/03/13  00:55:53
1228         Log: Win32::GetCwd() returns C: instead of C:\ in the root directory
1229              under ithreads
1230      Branch: maint-5.6/perl
1231            ! win32/perlhost.h
1232 ____________________________________________________________________________
1233 [  9115] By: jhi                                   on 2001/03/13  00:54:09
1234         Log: Subject: Re: [ID 20010305.005] "use integer" doesn't make rand() return integers
1235              From: "John L. Allen" <allen@grumman.com>
1236              Date: Tue, 6 Mar 2001 10:50:51 -0500 (EST)
1237              Message-ID: <Pine.SOL.3.91.1010306103113.9094A-100000@gateway.grumman.com>
1238              
1239              use integer document clarification.
1240      Branch: perl
1241            ! lib/integer.pm
1242 ____________________________________________________________________________
1243 [  9114] By: jhi                                   on 2001/03/13  00:38:54
1244         Log: Metaconfig unit change for #9113.
1245      Branch: metaconfig
1246            ! U/modified/myhostname.U
1247 ____________________________________________________________________________
1248 [  9113] By: jhi                                   on 2001/03/13  00:38:35
1249         Log: Subject: [PATCH: perl@9092, dist-3.0@70] OS/390 mydomain last gasp before silly guess (was Re: What do I need to build EBCDIC perl?)
1250              From: Peter Prymmer <pvhp@forte.com>
1251              Date: Mon, 12 Mar 2001 16:25:56 -0800 (PST)
1252              Message-ID: <Pine.OSF.4.10.10103121619020.180841-100000@aspara.forte.com>
1253      Branch: perl
1254            ! Configure README.os390 hints/os390.sh
1255 ____________________________________________________________________________
1256 [  9112] By: jhi                                   on 2001/03/13  00:29:00
1257         Log: Integrate perlio.
1258      Branch: perl
1259           !> sv.c utf8.h
1260 ____________________________________________________________________________
1261 [  9111] By: nick                                  on 2001/03/12  21:16:33
1262         Log: Integrate mainline.
1263      Branch: perlio
1264           +> t/op/anonsub.t
1265           !> MANIFEST embed.h embed.pl op.c op.h pod/perlapi.pod pp_ctl.c
1266           !> proto.h sv.c
1267 ____________________________________________________________________________
1268 [  9110] By: nick                                  on 2001/03/12  21:00:13
1269         Log: #ifdef'ed out code for 'USE_BYTES_DOWNGRADES' case.
1270      Branch: perlio
1271            ! sv.c utf8.h
1272 ____________________________________________________________________________
1273 [  9109] By: jhi                                   on 2001/03/12  16:04:47
1274         Log: Integrate change #9108 from maintperl to mainline.
1275              
1276              fix memory leak in C<sub X { sub {} }> arising from a refcount
1277              loop between the outer sub and the inner prototype anonsub
1278              
1279              this also enables closures returned by subroutines that
1280              subsequently get redefined to work without generating coredumps :)
1281              
1282              completely removed the free_closures() hack--it shouldn't be
1283              needed anymore
1284      Branch: perl
1285           +> t/op/anonsub.t
1286           !> MANIFEST embed.h embed.pl op.c op.h pod/perlapi.pod pp_ctl.c
1287           !> proto.h sv.c
1288 ____________________________________________________________________________
1289 [  9108] By: gsar                                  on 2001/03/12  10:21:31
1290         Log: fix memory leak in C<sub X { sub {} }> arising from a refcount
1291              loop between the outer sub and the inner prototype anonsub
1292              
1293              this also enables closures returned by subroutines that
1294              subsequently get redefined to work without generating coredumps :)
1295              
1296              completely removed the free_closures() hack--it shouldn't be
1297              needed anymore
1298      Branch: maint-5.6/perl
1299            + t/op/anonsub.t
1300            ! MANIFEST embed.h embed.pl op.c op.h pod/perlapi.pod pp_ctl.c
1301            ! proto.h sv.c
1302 ____________________________________________________________________________
1303 [  9107] By: jhi                                   on 2001/03/12  05:15:31
1304         Log: Integrate perlio.
1305      Branch: perl
1306           !> ext/Encode/Encode.xs makedef.pl regcomp.c sv.c toke.c utf8.c
1307 ____________________________________________________________________________
1308 [  9106] By: nick                                  on 2001/03/11  20:10:12
1309         Log: regcomp.c is working in native space, not Unicode space (if different)
1310              as it is doing compare against 'W' in \W etc.
1311      Branch: perlio
1312            ! regcomp.c
1313 ____________________________________________________________________________
1314 [  9105] By: nick                                  on 2001/03/11  19:39:34
1315         Log: Audit #ifdef EBCDIC and #ifndef ASCIIish, replace latter with former.
1316              Use ASCII_TO_NATIVE and NATIVE_TO_ASCII to avoid some #ifs.
1317      Branch: perlio
1318            ! regcomp.c toke.c utf8.c
1319 ____________________________________________________________________________
1320 [  9104] By: nick                                  on 2001/03/11  18:15:44
1321         Log: Put utf8_downgrade in CRIPPLED_CC versions of SvPVbyte* before I forget.
1322      Branch: perlio
1323            ! sv.c
1324 ____________________________________________________________________________
1325 [  9103] By: nick                                  on 2001/03/11  18:03:28
1326         Log: Integrate mainline (for regexp stuff).
1327      Branch: perlio
1328           !> ext/B/defsubs_h.PL ext/DynaLoader/dl_mac.xs
1329           !> ext/Encode/Encode.xs ext/Errno/Errno_pm.PL
1330           !> lib/ExtUtils/Manifest.pm regcomp.c regexec.c t/lib/b.t
1331           !> t/lib/errno.t t/op/pat.t
1332 ____________________________________________________________________________
1333 [  9102] By: nick                                  on 2001/03/11  17:44:20
1334         Log: USE_SFIO issues as observed by Chris Nandor <pudge@pobox.com>
1335              - exclude layer syms in makedef.pl for sfio
1336              - also inhibit Encode from trying to build ":encode()" layer.
1337      Branch: perlio
1338            ! ext/Encode/Encode.xs makedef.pl
1339 ____________________________________________________________________________
1340 [  9101] By: jhi                                   on 2001/03/10  22:38:13
1341         Log: The $Is_MacOS needs to be declared.
1342      Branch: perl
1343            ! lib/ExtUtils/Manifest.pm
1344 ____________________________________________________________________________
1345 [  9100] By: jhi                                   on 2001/03/10  22:14:29
1346         Log: Use #if defined(USE_PERLIO) && !defined(USE_SFIO) instead of just
1347              #ifdef USE_PERLIO in Encode.xs so that the perlio symbols don't
1348              pollute the symbolspace if using sfio.
1349      Branch: perl
1350            ! ext/Encode/Encode.xs
1351 ____________________________________________________________________________
1352 [  9099] By: jhi                                   on 2001/03/10  21:58:48
1353         Log: Subject: [PATCH] Portability fixes for Mac OS / bleadperl
1354              Date: Sat, 10 Mar 2001 14:23:55 -0500
1355              From: Chris Nandor <pudge@pobox.com>
1356              Message-Id: <p05010401b6d02f70211f@[10.0.1.177]>
1357      Branch: perl
1358            ! ext/B/defsubs_h.PL ext/DynaLoader/dl_mac.xs
1359            ! ext/Errno/Errno_pm.PL lib/ExtUtils/Manifest.pm t/lib/b.t
1360            ! t/lib/errno.t
1361 ____________________________________________________________________________
1362 [  9098] By: jhi                                   on 2001/03/10  21:38:30
1363         Log: Fix for ID 20010306.008, UTF-8 and \w without 'use utf8' coredump.
1364      Branch: perl
1365            ! regcomp.c regexec.c t/op/pat.t
1366 ____________________________________________________________________________
1367 [  9097] By: jhi                                   on 2001/03/10  14:38:07
1368         Log: Integrate perlio.
1369      Branch: perl
1370           !> doop.c embed.h embed.pl ext/Encode/Encode.xs global.sym
1371           !> handy.h objXSUB.h op.c perl.c perlapi.c pp.c pp_ctl.c proto.h
1372           !> regcomp.c regexec.c sv.c toke.c utf8.c utf8.h
1373 ____________________________________________________________________________
1374 [  9096] By: nick                                  on 2001/03/10  11:55:43
1375         Log: EBCDIC sanity - phase I
1376              - rename utf8/uv functions to indicate what sort of uv they provide (uvuni/uvchr)
1377              - use utf8n_xxxx (c.f. pvn) for forms which take length.
1378              - back out vN.N and $^V exceptions to e2a/a2e
1379              - make "locale" isxxx macros be uvchr (may be redundant?)
1380              
1381              Not clear yet that toUPPER_uni et. al. return being handled correctly.
1382              The tr// and rexexp stuff still needs an audit, assumption is they are working
1383              in Unicode space.
1384              
1385              Need to provide v5.6 names for XS modules (decide is uni or chr ?).
1386      Branch: perlio
1387            ! doop.c embed.h embed.pl ext/Encode/Encode.xs global.sym
1388            ! handy.h objXSUB.h op.c perl.c perlapi.c pp.c pp_ctl.c proto.h
1389            ! regcomp.c regexec.c sv.c toke.c utf8.c utf8.h
1390 ____________________________________________________________________________
1391 [  9095] By: jhi                                   on 2001/03/09  22:10:01
1392         Log: Integrate perlio.
1393      Branch: perl
1394           !> dump.c
1395 ____________________________________________________________________________
1396 [  9094] By: nick                                  on 2001/03/09  17:36:38
1397         Log: Builds an passes all tests after integrate and this tweak.
1398      Branch: perlio
1399            ! dump.c
1400 ____________________________________________________________________________
1401 [  9093] By: nick                                  on 2001/03/09  17:16:03
1402         Log: Integrate mainline (does not build - sv_catpvf issue in dump.c)
1403      Branch: perlio
1404           +> lib/unicode/Scripts.txt t/lib/sigaction.t
1405           !> (integrate 79 files)
1406 ____________________________________________________________________________
1407 [  9092] By: jhi                                   on 2001/03/09  15:28:26
1408         Log: Update Changes.
1409      Branch: perl
1410            ! Changes patchlevel.h
1411 ____________________________________________________________________________
1412 [  9091] By: jhi                                   on 2001/03/09  15:25:05
1413         Log: In op/stat #35 better to scan all the potential directories
1414              for setuids, not just the first one.
1415      Branch: perl
1416            ! t/op/stat.t
1417 ____________________________________________________________________________
1418 [  9090] By: jhi                                   on 2001/03/09  15:01:27
1419         Log: Subject: Re: [ID 19990808.001] [PATCH] FETCH triggered on exists() 
1420              From: rspier@pobox.com (Robert Spier)
1421              Date: Fri, 9 Mar 2001 03:30:20 -0500
1422              Message-ID: <15016.38044.381174.160189@rls.cx>
1423              
1424              EXISTS() returning undef mistakenly triggered a FETCH().
1425      Branch: perl
1426            ! hv.c
1427 ____________________________________________________________________________
1428 [  9089] By: jhi                                   on 2001/03/09  14:59:02
1429         Log: Add /sbin and /usr/sbin to the list of directories scanned
1430              for setuid programs.  Takes care of bug id 20010309.003.
1431      Branch: perl
1432            ! t/op/stat.t
1433 ____________________________________________________________________________
1434 [  9088] By: jhi                                   on 2001/03/09  14:48:32
1435         Log: Regen perlapi, perltoc.
1436      Branch: perl
1437            ! ext/Encode/Encode/Tcl.pm pod/perlapi.pod pod/perltoc.pod
1438 ____________________________________________________________________________
1439 [  9087] By: jhi                                   on 2001/03/09  14:38:56
1440         Log: Subject: Re: [ PATCH perl@8956 ] new debug option -DR shows ref counts
1441              From: David Mitchell <davem@fdgroup.co.uk>
1442              Date: Fri, 9 Mar 2001 13:49:31 +0000 (GMT)
1443              Message-Id: <200103091349.NAA16617@tiree.fdgroup.co.uk>
1444      Branch: perl
1445            ! dump.c perl.c perl.h pod/perlrun.pod
1446 ____________________________________________________________________________
1447 [  9086] By: jhi                                   on 2001/03/09  01:47:16
1448         Log: A modified version of
1449              
1450              Subject: [ID 20010307.005] POSIX::sigaction has various problems
1451              From: anders@broadcom.com
1452              Date: Wed, 7 Mar 2001 14:35:24 -0800 (PST) 
1453              Message-Id: <200103072235.OAA25368@dt-sj1-130.sj.broadcom.com>
1454              
1455              Currently the sigaction.t test #6 fails (and is fudged to look
1456              like an "ok") in Linux (at least in Debian 2.2 Linux 2.4.2 x86).
1457              This may well be a genuine bug in Linux sigaction() (since at
1458              least Tru64, Solaris, and HP-UX disagree with Linux).
1459              Anyone with POSIX / SUSv2 tome handy?  The problem is that
1460              the flags of the oldaction don't match with the flags in
1461              the previously installed disposition.
1462      Branch: perl
1463            + t/lib/sigaction.t
1464            ! MANIFEST ext/POSIX/POSIX.pm ext/POSIX/POSIX.xs
1465 ____________________________________________________________________________
1466 [  9085] By: jhi                                   on 2001/03/09  01:30:13
1467         Log: Subject: Re: mission impossible for the day
1468              From: Alex Gough <alex@rcon.org>
1469              Date: Thu, 08 Mar 2001 17:18:19 +0000
1470              Message-ID: <3AA7BEDB.8070409@rcon.org>
1471              
1472              If references (are overloaded) and can be directly stringified,
1473              show that instead of "stringified".
1474              
1475              (The problem, infinite mutual recursion caused by overloaded bool
1476              in Switch.pm, tracked by David Mitchell)
1477      Branch: perl
1478            ! lib/Carp/Heavy.pm
1479 ____________________________________________________________________________
1480 [  9084] By: jhi                                   on 2001/03/09  01:20:39
1481         Log: Subject: Re: [ PATCH perl@8956 ] new debug option -DR shows ref counts
1482              Date: Thu, 8 Mar 2001 12:06:57 +0000 (GMT)
1483              From: David Mitchell <davem@fdgroup.co.uk>
1484              Message-Id: <200103081206.MAA06281@tiree.fdgroup.co.uk>
1485      Branch: perl
1486            ! ext/re/re.xs malloc.c mg.c perl.c perl.h perly.c perly.y
1487            ! pp_ctl.c regexec.c sv.c vms/perly_c.vms
1488 ____________________________________________________________________________
1489 [  9083] By: jhi                                   on 2001/03/09  01:16:51
1490         Log: Subject: [PATCH] perldata.pod here-doc docs
1491              From: Jeff Pinyan <jeffp@crusoe.net>
1492              Date: Thu, 8 Mar 2001 13:18:55 -0500 (EST)
1493              Message-ID: <Pine.GSO.4.21.0103081317530.20957-100000@crusoe.crusoe.net>
1494      Branch: perl
1495            ! pod/perldata.pod
1496 ____________________________________________________________________________
1497 [  9082] By: jhi                                   on 2001/03/09  01:01:27
1498         Log: Subject: Re: Unicode/EBCDIC
1499              From: Peter Prymmer <pvhp@forte.com>
1500              Date: Thu, 8 Mar 2001 16:23:25 -0800 (PST)
1501              Message-ID: <Pine.OSF.4.10.10103081617390.377472-100000@aspara.forte.com>
1502      Branch: perl
1503            ! perl.c perl.h sv.c toke.c utf8.c utf8.h
1504 ____________________________________________________________________________
1505 [  9081] By: jhi                                   on 2001/03/08  13:41:30
1506         Log: Subject: Ooops, wrong 'no *POSIX' Patch
1507              From: Dorner Thomas <Thomas.Dorner@start.de>
1508              Date: Thu, 8 Mar 2001 08:43:28 +0100
1509              Message-ID: <6727B1DACFCDD311A757009027CA8D69010A88D3@Ex02.inhouse.start.de>
1510      Branch: perl
1511            ! hints/posix-bc.sh
1512 ____________________________________________________________________________
1513 [  9080] By: jhi                                   on 2001/03/08  13:11:42
1514         Log: It's Scripts.txt, not Script.txt.
1515      Branch: perl
1516            ! MANIFEST
1517 ____________________________________________________________________________
1518 [  9079] By: jhi                                   on 2001/03/08  12:59:05
1519         Log: Subject: 'no *POSIX' Patch speeding up make on BS2000 
1520              From: Dorner Thomas <Thomas.Dorner@start.de>
1521              Date: Wed, 7 Mar 2001 14:13:31 +0100
1522              Message-ID: <6727B1DACFCDD311A757009027CA8D69010A88CB@Ex02.inhouse.start.de>
1523      Branch: perl
1524            ! makedepend.SH
1525 ____________________________________________________________________________
1526 [  9078] By: jhi                                   on 2001/03/08  12:57:43
1527         Log: Retract #9069, wrong patch.
1528      Branch: perl
1529            ! Makefile.SH
1530 ____________________________________________________________________________
1531 [  9077] By: jhi                                   on 2001/03/08  01:06:13
1532         Log: Upgrade to Unicode 3.1 beta 2001-03-01.  The 3.1 final
1533              should come out March 14.
1534      Branch: perl
1535            + lib/unicode/Scripts.txt
1536            ! MANIFEST lib/unicode/Category.pl lib/unicode/Decomposition.pl
1537            ! lib/unicode/EAWidth.txt lib/unicode/Is/Alnum.pl
1538            ! lib/unicode/Is/Alpha.pl lib/unicode/Is/L.pl
1539            ! lib/unicode/Is/LbrkAI.pl lib/unicode/Is/LbrkAL.pl
1540            ! lib/unicode/Is/LbrkB2.pl lib/unicode/Is/LbrkBA.pl
1541            ! lib/unicode/Is/LbrkBB.pl lib/unicode/Is/LbrkBK.pl
1542            ! lib/unicode/Is/LbrkCB.pl lib/unicode/Is/LbrkCL.pl
1543            ! lib/unicode/Is/LbrkCM.pl lib/unicode/Is/LbrkCR.pl
1544            ! lib/unicode/Is/LbrkEX.pl lib/unicode/Is/LbrkGL.pl
1545            ! lib/unicode/Is/LbrkHY.pl lib/unicode/Is/LbrkID.pl
1546            ! lib/unicode/Is/LbrkIN.pl lib/unicode/Is/LbrkIS.pl
1547            ! lib/unicode/Is/LbrkLF.pl lib/unicode/Is/LbrkNS.pl
1548            ! lib/unicode/Is/LbrkNU.pl lib/unicode/Is/LbrkOP.pl
1549            ! lib/unicode/Is/LbrkPO.pl lib/unicode/Is/LbrkPR.pl
1550            ! lib/unicode/Is/LbrkQU.pl lib/unicode/Is/LbrkSA.pl
1551            ! lib/unicode/Is/LbrkSG.pl lib/unicode/Is/LbrkSP.pl
1552            ! lib/unicode/Is/LbrkSY.pl lib/unicode/Is/LbrkZW.pl
1553            ! lib/unicode/Is/Ll.pl lib/unicode/Is/Lower.pl
1554            ! lib/unicode/Is/S.pl lib/unicode/Is/Sm.pl
1555            ! lib/unicode/Is/Word.pl lib/unicode/Names.txt
1556            ! lib/unicode/PropList.txt lib/unicode/ReadMe.txt
1557            ! lib/unicode/Unicode.txt lib/unicode/mktables.PL
1558            ! lib/unicode/version
1559 ____________________________________________________________________________
1560 [  9076] By: jhi                                   on 2001/03/07  22:59:39
1561         Log: Integrate change #7784 from mainline into maintperl.
1562              
1563              Subject: [PATCH 5.7.0] lexicals not recognized in a run-time (?{})
1564      Branch: maint-5.6/perl
1565           !> pp_ctl.c t/op/pat.t
1566 ____________________________________________________________________________
1567 [  9075] By: jhi                                   on 2001/03/07  22:05:11
1568         Log: More UTF-8 test tweaks.
1569      Branch: perl
1570            ! t/op/pat.t t/op/split.t t/pragma/utf8.t
1571 ____________________________________________________________________________
1572 [  9074] By: nick                                  on 2001/03/07  21:39:29
1573         Log: Integrate mainline.
1574      Branch: perlio
1575           !> Changes Makefile.SH lib/ExtUtils/MM_Unix.pm
1576           !> lib/unicode/mktables.PL patchlevel.h perl.c pod/perlop.pod
1577           !> pod/perlretut.pod pod/perlsyn.pod pp.c pp_sys.c
1578           !> t/camel-III/vstring.t t/lib/charnames.t t/op/chop.t
1579           !> t/op/pack.t t/op/pat.t t/op/split.t t/pragma/utf8.t
1580 ____________________________________________________________________________
1581 [  9073] By: jhi                                   on 2001/03/07  16:37:09
1582         Log: Update Changes.
1583      Branch: perl
1584            ! Changes patchlevel.h
1585 ____________________________________________________________________________
1586 [  9072] By: jhi                                   on 2001/03/07  16:32:30
1587         Log: Subject: [ID 20010306.004] || != named unary operator
1588              From: abela@geneanet.org
1589              Date: Tue,  6 Mar 2001 15:57:57 +0100 (CET)
1590              Message-Id: <20010306145757.0CB03D183@little-roots.geneanet.org>
1591      Branch: perl
1592            ! pod/perlop.pod
1593 ____________________________________________________________________________
1594 [  9071] By: jhi                                   on 2001/03/07  15:14:11
1595         Log: Subject: downgrading to bytes for common functions
1596              From: andrew@pimlott.ne.mediaone.net (Andrew Pimlott)
1597              Date: Wed, 7 Mar 2001 02:36:55 -0500
1598              Message-ID: <20010307023655.J24024@pimlott.ne.mediaone.net>
1599      Branch: perl
1600            ! pp_sys.c
1601 ____________________________________________________________________________
1602 [  9070] By: jhi                                   on 2001/03/07  15:04:58
1603         Log: Clarify the description differentiating for and while; inspired by
1604              
1605              Subject: [ID 20010306.002] for/while difference in for definition
1606              From: abela@geneanet.org
1607              Date: Tue,  6 Mar 2001 09:40:36 +0100 (CET)
1608              Message-Id: <20010306084036.7BFD0D17F@little-roots.geneanet.org>
1609      Branch: perl
1610            ! pod/perlsyn.pod
1611 ____________________________________________________________________________
1612 [  9069] By: jhi                                   on 2001/03/07  14:55:30
1613         Log: Subject: 'no *POSIX' Patch speeding up make on BS2000 
1614              From: Dorner Thomas <Thomas.Dorner@start.de>
1615              Date: Wed, 7 Mar 2001 14:13:31 +0100
1616              Message-ID: <6727B1DACFCDD311A757009027CA8D69010A88CB@Ex02.inhouse.start.de>
1617      Branch: perl
1618            ! Makefile.SH
1619 ____________________________________________________________________________
1620 [  9068] By: jhi                                   on 2001/03/07  14:51:17
1621         Log: Subject: Re: [ID 20010305.012] chop() against list assignment returns char chopped from el zero
1622              From: Radu Greab <radu@netsoft.ro>
1623              Date: Tue, 6 Mar 2001 23:04:44 +0200 (EET)
1624              Message-ID: <15013.20716.201459.540421@ix.netsoft.ro>
1625      Branch: perl
1626            ! pp.c t/op/chop.t
1627 ____________________________________________________________________________
1628 [  9067] By: jhi                                   on 2001/03/07  14:48:57
1629         Log: Subject: Re: [PATCH: 5.6.1 trial2] DynaLoading for OS/390 build option
1630              From: Simon Cozens <simon@netthink.co.uk>
1631              Date: Wed, 7 Mar 2001 13:59:28 +0000
1632              Message-ID: <20010307135928.A21620@pembro26.pmb.ox.ac.uk>
1633              
1634              In order to allow MakeMaker to build correct Makefiles,
1635              you need to change the order of the arguments in MM_Unix.pm
1636              as well. (Unless you have C89_CCMODE set, but we're trying
1637              to be POSIXly correct)
1638              
1639              Thanks to Merijn Broeren for tracking this down.
1640      Branch: perl
1641            ! lib/ExtUtils/MM_Unix.pm
1642 ____________________________________________________________________________
1643 [  9066] By: jhi                                   on 2001/03/07  14:30:02
1644         Log: Floating point too messy.
1645      Branch: perl
1646            ! t/camel-III/vstring.t
1647 ____________________________________________________________________________
1648 [  9065] By: jhi                                   on 2001/03/07  14:17:44
1649         Log: Integrate change #9064 from maintperl into mainline.
1650              
1651              fix memory leak in pack("Bb",...)
1652      Branch: perl
1653           !> perl.c
1654 ____________________________________________________________________________
1655 [  9064] By: gsar                                  on 2001/03/07  06:29:24
1656         Log: fix memory leak in pack("Bb",...)
1657      Branch: maint-5.6/perl
1658            ! perl.c
1659 ____________________________________________________________________________
1660 [  9063] By: jhi                                   on 2001/03/07  00:55:04
1661         Log: Major utf8 test reorganisation and rewrite.
1662              Hopefully no tests were lost in the shuffle.
1663              (The beginning of pragma/utf8 was lost intentionally,
1664              the tests were rather bogus and incomplete.)
1665      Branch: perl
1666            ! t/lib/charnames.t t/op/pack.t t/op/pat.t t/op/split.t
1667            ! t/pragma/utf8.t
1668 ____________________________________________________________________________
1669 [  9062] By: jhi                                   on 2001/03/07  00:41:16
1670         Log: More tweakage on the Unicode character class descriptions.
1671      Branch: perl
1672            ! lib/unicode/mktables.PL pod/perlretut.pod
1673 ____________________________________________________________________________
1674 [  9061] By: jhi                                   on 2001/03/06  23:12:38
1675         Log: The perlretut was still talking about the old \p and \P
1676              definitions.
1677      Branch: perl
1678            ! pod/perlretut.pod
1679 ____________________________________________________________________________
1680 [  9060] By: nick                                  on 2001/03/06  20:52:37
1681         Log: Integrate mainline (make test works again now).
1682      Branch: perlio
1683           !> op.c op.h regcomp.c t/camel-III/vstring.t t/op/pat.t
1684 ____________________________________________________________________________
1685 [  9059] By: jhi                                   on 2001/03/06  15:36:14
1686         Log: 0.999... does equal 1.0, doesn't it?
1687      Branch: perl
1688            ! t/camel-III/vstring.t
1689 ____________________________________________________________________________
1690 [  9058] By: jhi                                   on 2001/03/06  15:34:00
1691         Log: Make /x{abcd}/ to work without use utf8.
1692      Branch: perl
1693            ! regcomp.c
1694 ____________________________________________________________________________
1695 [  9057] By: jhi                                   on 2001/03/06  03:02:36
1696         Log: Easier to outcomment all the three reset() tests for now.
1697      Branch: perl
1698            ! t/op/pat.t
1699 ____________________________________________________________________________
1700 [  9056] By: jhi                                   on 2001/03/06  02:30:02
1701         Log: Comment out the deadly reset; until the 20010301.005
1702              is finally fixed.
1703      Branch: perl
1704            ! t/op/pat.t
1705 ____________________________________________________________________________
1706 [  9055] By: jhi                                   on 2001/03/06  02:21:26
1707         Log: Integrate the change #9054 from mainline:
1708              retract the PMOP cleanup patch pending further investigation.
1709      Branch: maint-5.6/perl
1710           !> op.c op.h
1711 ____________________________________________________________________________
1712 [  9054] By: jhi                                   on 2001/03/06  02:19:57
1713         Log: Retract the PMOP cleanup patch: I'm seeing strange core dumps
1714              with oddly familiar stack traces.
1715      Branch: perl
1716            ! op.c op.h
1717 ____________________________________________________________________________
1718 [  9053] By: jhi                                   on 2001/03/05  23:20:28
1719         Log: Integrate perlio.
1720      Branch: perl
1721           +> ext/Encode/Encode/koi8-r.ucm
1722           !> MANIFEST ext/Encode/Encode.pm ext/Encode/Makefile.PL
1723           !> makedef.pl
1724 ____________________________________________________________________________
1725 [  9052] By: nick                                  on 2001/03/05  23:08:17
1726         Log: skipping USE_PERLIO symbols correction.
1727      Branch: perlio
1728            ! makedef.pl
1729 ____________________________________________________________________________
1730 [  9051] By: nick                                  on 2001/03/05  22:35:07
1731         Log: More Encode alias tidying.
1732      Branch: perlio
1733            + ext/Encode/Encode/koi8-r.ucm
1734            ! MANIFEST ext/Encode/Encode.pm ext/Encode/Makefile.PL
1735 ____________________________________________________________________________
1736 [  9050] By: jhi                                   on 2001/03/05  21:44:29
1737         Log: Integrate changes #9033 and #9044 from mainline into maintperl,
1738              Sarathy's fix for ID 20010301.005.
1739      Branch: maint-5.6/perl
1740           !> op.c op.h
1741 ____________________________________________________________________________
1742 [  9049] By: nick                                  on 2001/03/05  19:54:04
1743         Log: Integrate Jarkko's Encode.pm tweak.
1744      Branch: perlio
1745           !> ext/Encode/Encode.pm
1746 ____________________________________________________________________________
1747 [  9048] By: nick                                  on 2001/03/05  19:47:57
1748         Log: Integrate mainline (mostly - holding of on Encode.pm for a bit.)
1749      Branch: perlio
1750           +> os2/os2add.sym
1751           !> lib/ExtUtils/MM_OS2.pm lib/ExtUtils/MM_Unix.pm makedef.pl op.c
1752           !> op.h os2/Changes os2/Makefile.SHs os2/OS2/REXX/Makefile.PL
1753           !> os2/OS2/REXX/REXX.pm os2/OS2/REXX/REXX.xs
1754           !> os2/OS2/REXX/t/rx_cmprt.t os2/os2.c os2/os2.sym os2/os2ish.h
1755           !> pod/perlapi.pod t/op/pat.t t/op/tr.t
1756 ____________________________________________________________________________
1757 [  9047] By: jhi                                   on 2001/03/05  19:25:26
1758         Log: Regen perlapi.
1759      Branch: perl
1760            ! pod/perlapi.pod
1761 ____________________________________________________________________________
1762 [  9046] By: jhi                                   on 2001/03/05  19:12:14
1763         Log: Integrate perlio.
1764      Branch: perl
1765           +> t/camel-III/vstring.t
1766           !> MANIFEST pp.h pp_sys.c t/TEST t/harness
1767 ____________________________________________________________________________
1768 [  9045] By: jhi                                   on 2001/03/05  19:10:36
1769         Log: The mapping of ISO Latin X to ISO 8859-Y is tricky.
1770      Branch: perl
1771            ! ext/Encode/Encode.pm
1772 ____________________________________________________________________________
1773 [  9044] By: jhi                                   on 2001/03/05  18:49:12
1774         Log: Forgot the other half of the PMOP patch (#9033).
1775      Branch: perl
1776            ! op.h
1777 ____________________________________________________________________________
1778 [  9043] By: nick                                  on 2001/03/05  18:14:47
1779         Log: Update MANIFEST for new test.
1780      Branch: perlio
1781            ! MANIFEST
1782 ____________________________________________________________________________
1783 [  9042] By: nick                                  on 2001/03/05  18:12:41
1784         Log: Some tests for Camel 3rd edition features.
1785              Make gethostbyaddr() test in above work.
1786      Branch: perlio
1787            + t/camel-III/vstring.t
1788            ! pp.h pp_sys.c t/TEST t/harness
1789 ____________________________________________________________________________
1790 [  9041] By: jhi                                   on 2001/03/05  17:41:48
1791         Log: Add more ISO 8859 encoding aliases.
1792      Branch: perl
1793            ! ext/Encode/Encode.pm
1794 ____________________________________________________________________________
1795 [  9040] By: jhi                                   on 2001/03/05  17:30:43
1796         Log: Integrate perlio.
1797      Branch: perl
1798           !> MANIFEST sv.c
1799 ____________________________________________________________________________
1800 [  9039] By: nick                                  on 2001/03/05  17:11:36
1801         Log: Missed added file.
1802      Branch: perlio
1803            ! MANIFEST
1804 ____________________________________________________________________________
1805 [  9038] By: jhi                                   on 2001/03/05  15:58:01
1806         Log: Add tr tests for EBCDIC, from Karsten Sperling.
1807      Branch: perl
1808            ! t/op/tr.t
1809 ____________________________________________________________________________
1810 [  9037] By: nick                                  on 2001/03/05  15:56:35
1811         Log: Long-standing "defined but not used" SvPVbyte*() are about to get used
1812              for auto-downgrade hooks in gethostbyaddr() etc. (as per Camel-III).
1813              
1814              Make SvPVbyte*() symetric with respect to SvPVutf8*() in that:
1815              - it does a sv_utf8_downgrade (c.f. SvPVutf8's sv_utf8_upgrade())
1816              - uses SvPV() rather than sv_2pv() in case it isn't a string.
1817      Branch: perlio
1818            ! sv.c
1819 ____________________________________________________________________________
1820 [  9036] By: jhi                                   on 2001/03/05  15:49:15
1821         Log: Add matching tests currently failing in EBCDIC,
1822              suggested by Karsten Sperling.
1823      Branch: perl
1824            ! t/op/pat.t
1825 ____________________________________________________________________________
1826 [  9035] By: jhi                                   on 2001/03/05  15:36:55
1827         Log: The #9034 needs a MANIFESTation.
1828      Branch: perl
1829            ! MANIFEST
1830 ____________________________________________________________________________
1831 [  9034] By: jhi                                   on 2001/03/05  15:35:14
1832         Log: Integrate perlio.
1833      Branch: perl
1834           +> ext/Encode/Encode/Tcl.pm
1835           !> ext/Encode/Encode.pm ext/Encode/Encode.xs
1836           !> ext/Encode/Encode/ascii.ucm ext/Encode/Encode/cp1250.ucm
1837           !> ext/Encode/Encode/iso8859-1.ucm
1838           !> ext/Encode/Encode/iso8859-10.ucm
1839           !> ext/Encode/Encode/iso8859-13.ucm
1840           !> ext/Encode/Encode/iso8859-14.ucm
1841           !> ext/Encode/Encode/iso8859-15.ucm
1842           !> ext/Encode/Encode/iso8859-16.ucm
1843           !> ext/Encode/Encode/iso8859-2.ucm
1844           !> ext/Encode/Encode/iso8859-3.ucm
1845           !> ext/Encode/Encode/iso8859-4.ucm
1846           !> ext/Encode/Encode/iso8859-5.ucm
1847           !> ext/Encode/Encode/iso8859-6.ucm
1848           !> ext/Encode/Encode/iso8859-7.ucm
1849           !> ext/Encode/Encode/iso8859-8.ucm
1850           !> ext/Encode/Encode/iso8859-9.ucm ext/Encode/compile
1851           !> t/lib/encode.t
1852 ____________________________________________________________________________
1853 [  9033] By: jhi                                   on 2001/03/05  15:33:18
1854         Log: Subject: Re: [ID 20010301.005] corrupt memory (since @8531, in 5.6.1-T2)
1855              From: Gurusamy Sarathy <gsar@ActiveState.com>
1856              Date: Sun, 04 Mar 2001 22:33:15 -0800
1857              Message-Id: <200103050633.f256XFo06998@smtp3.ActiveState.com>
1858              
1859              PMOPs need to remember their own stash so that they can
1860              gracefully remove themselves from their linked list.
1861      Branch: perl
1862            ! op.c
1863 ____________________________________________________________________________
1864 [  9032] By: nick                                  on 2001/03/05  14:51:50
1865         Log: Encode implementation "completion"
1866              Implement and document define_encoding()
1867              Implement and document encoding aliases including define_alias()
1868              Make Encode::XS use define_encoding() rather than back-door.
1869              Move run-time *.enc to separate Encode::Tcl module.
1870              Make 'compile' honour <codeset_name>
1871              Change canonical names of to iso-8859-* and US-ascii.
1872      Branch: perlio
1873            + ext/Encode/Encode/Tcl.pm
1874            ! ext/Encode/Encode.pm ext/Encode/Encode.xs
1875            ! ext/Encode/Encode/ascii.ucm ext/Encode/Encode/cp1250.ucm
1876            ! ext/Encode/Encode/iso8859-1.ucm
1877            ! ext/Encode/Encode/iso8859-10.ucm
1878            ! ext/Encode/Encode/iso8859-13.ucm
1879            ! ext/Encode/Encode/iso8859-14.ucm
1880            ! ext/Encode/Encode/iso8859-15.ucm
1881            ! ext/Encode/Encode/iso8859-16.ucm
1882            ! ext/Encode/Encode/iso8859-2.ucm
1883            ! ext/Encode/Encode/iso8859-3.ucm
1884            ! ext/Encode/Encode/iso8859-4.ucm
1885            ! ext/Encode/Encode/iso8859-5.ucm
1886            ! ext/Encode/Encode/iso8859-6.ucm
1887            ! ext/Encode/Encode/iso8859-7.ucm
1888            ! ext/Encode/Encode/iso8859-8.ucm
1889            ! ext/Encode/Encode/iso8859-9.ucm ext/Encode/compile
1890            ! t/lib/encode.t
1891 ____________________________________________________________________________
1892 [  9031] By: jhi                                   on 2001/03/05  13:51:17
1893         Log: Integrate change #9030 from maintperl into mainline.
1894              
1895              Subject: [PATCH 5.6.1] OS/2 cleanup
1896      Branch: perl
1897           +> os2/os2add.sym
1898           !> MANIFEST lib/ExtUtils/MM_OS2.pm lib/ExtUtils/MM_Unix.pm
1899           !> makedef.pl os2/Changes os2/Makefile.SHs
1900           !> os2/OS2/REXX/Makefile.PL os2/OS2/REXX/REXX.pm
1901           !> os2/OS2/REXX/REXX.xs os2/OS2/REXX/t/rx_cmprt.t os2/os2.c
1902           !> os2/os2.sym os2/os2ish.h
1903 ____________________________________________________________________________
1904 [  9030] By: jhi                                   on 2001/03/05  13:46:49
1905         Log: Subject: [PATCH 5.6.1] OS/2 cleanup
1906              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
1907              Date: Mon, 5 Mar 2001 02:29:44 -0500
1908              Message-ID: <20010305022944.A10117@math.ohio-state.edu>
1909      Branch: maint-5.6/perl
1910            + os2/os2add.sym
1911            ! MANIFEST lib/ExtUtils/MM_OS2.pm lib/ExtUtils/MM_Unix.pm
1912            ! makedef.pl os2/Changes os2/Makefile.SHs
1913            ! os2/OS2/REXX/Makefile.PL os2/OS2/REXX/REXX.pm
1914            ! os2/OS2/REXX/REXX.xs os2/OS2/REXX/t/rx_cmprt.t os2/os2.c
1915            ! os2/os2.sym os2/os2ish.h
1916 ____________________________________________________________________________
1917 [  9029] By: jhi                                   on 2001/03/05  13:40:35
1918         Log: Integrate change #9028 from maintperl into mainline.
1919              
1920              various nits in MM_Unix.pm found by disabling SelfLoader
1921      Branch: perl
1922           !> lib/ExtUtils/MM_Unix.pm
1923 ____________________________________________________________________________
1924 [  9028] By: gsar                                  on 2001/03/05  09:58:38
1925         Log: various nits in MM_Unix.pm found by disabling SelfLoader
1926      Branch: maint-5.6/perl
1927            ! lib/ExtUtils/MM_Unix.pm
1928 ____________________________________________________________________________
1929 [  9027] By: nick                                  on 2001/03/05  08:35:22
1930         Log: Integrate mainline
1931      Branch: perlio
1932           !> (integrate 28 files)
1933 ____________________________________________________________________________
1934 [  9026] By: jhi                                   on 2001/03/05  02:14:59
1935         Log: Integrate change #9025 from mainline to maintperl,
1936              retract \N{U+HHHH}.
1937      Branch: maint-5.6/perl
1938           !> lib/charnames.pm pod/perldiag.pod pod/perlretut.pod
1939           !> t/lib/charnames.t toke.c
1940 ____________________________________________________________________________
1941 [  9025] By: jhi                                   on 2001/03/05  02:13:09
1942         Log: Retracting \N{U+HHHH}.
1943      Branch: perl
1944            ! lib/charnames.pm pod/perldiag.pod pod/perlretut.pod
1945            ! t/lib/charnames.t toke.c
1946 ____________________________________________________________________________
1947 [  9024] By: jhi                                   on 2001/03/04  20:51:07
1948         Log: Subject: Re: Smoking patch 8898 for perl v5.7.0 on aix 4.3.0.0
1949              From: "H.Merijn Brand" <h.m.brand@hccnet.nl> 
1950              Date: Fri, 02 Mar 2001 18:25:26 +0100
1951              Message-Id: <20010302182416.1BF4.H.M.BRAND@hccnet.nl>
1952              
1953              Casting problem.
1954      Branch: perl
1955            ! ext/Storable/Storable.xs
1956 ____________________________________________________________________________
1957 [  9023] By: jhi                                   on 2001/03/04  19:46:45
1958         Log: Subject: [ID 20010303.009] SOCKS5 work around breaks other sockets
1959              From: nick@talking.bollo.cx
1960              Date: Sat, 03 Mar 2001 21:41:33 +0000
1961              Message-Id: <E14ZJmP-0000mE-00@Bagpuss.unfortu.net>
1962              
1963              Revert the workaround.
1964      Branch: perl
1965            ! perlio.c
1966 ____________________________________________________________________________
1967 [  9022] By: jhi                                   on 2001/03/04  19:36:28
1968         Log: Update Changes.
1969      Branch: perl
1970            ! Changes patchlevel.h
1971 ____________________________________________________________________________
1972 [  9021] By: jhi                                   on 2001/03/04  18:41:00
1973         Log: makedef.pl updates suggested by Chris Nandor; double-checking
1974              the changes in AIX, OS/2 Win32 would be nice.
1975      Branch: perl
1976            ! makedef.pl
1977 ____________________________________________________________________________
1978 [  9020] By: jhi                                   on 2001/03/04  18:23:58
1979         Log: Integrate change #9012 from maintperl into mainline,
1980              quench a compiler warning.
1981      Branch: perl
1982           !> toke.c
1983 ____________________________________________________________________________
1984 [  9019] By: jhi                                   on 2001/03/04  18:18:43
1985         Log: Integrate changes #9017 and 9018 from mainline into maintperl.
1986              
1987              \N{U+HHHH} fix.
1988              
1989              pattern in G_ARRAY context
1990      Branch: maint-5.6/perl
1991           !> pp_hot.c t/op/pat.t toke.c
1992 ____________________________________________________________________________
1993 [  9018] By: jhi                                   on 2001/03/04  18:07:48
1994         Log: Subject: [PATCH pp_hot.c regexp.t] pattern in G_ARRAY context
1995              From: Jeff Pinyan <jeffp@crusoe.net>
1996              Date: Sat, 3 Mar 2001 17:14:07 -0500 (EST)
1997              Message-ID: <Pine.GSO.4.21.0103031712070.1035-100000@crusoe.crusoe.net>
1998      Branch: perl
1999            ! pp_hot.c t/op/pat.t
2000 ____________________________________________________________________________
2001 [  9017] By: jhi                                   on 2001/03/04  18:06:21
2002         Log: I thought I tested the #9014.
2003      Branch: perl
2004            ! toke.c
2005 ____________________________________________________________________________
2006 [  9016] By: jhi                                   on 2001/03/04  17:41:22
2007         Log: Integrate changes #9013,9014,9015 from mainline into maintperl.
2008              
2009              Tweak the get*ent() OS/2 prototypes.
2010              
2011              Add the \N{U+HHHH} syntax.
2012              
2013              More tr/// UTF-8 fixes from Inaba Hiroto.
2014      Branch: maint-5.6/perl
2015           !> doop.c lib/charnames.pm os2/os2.c pod/perldiag.pod
2016           !> pod/perlretut.pod t/lib/charnames.t t/op/tr.t toke.c
2017 ____________________________________________________________________________
2018 [  9015] By: jhi                                   on 2001/03/04  17:36:04
2019         Log: More tr/// UTF-8 fixes from Inaba Hiroto.
2020      Branch: perl
2021            ! doop.c t/op/tr.t
2022 ____________________________________________________________________________
2023 [  9014] By: jhi                                   on 2001/03/04  17:24:49
2024         Log: Add the \N{U+HHHH} syntax.
2025      Branch: perl
2026            ! lib/charnames.pm pod/perldiag.pod pod/perlretut.pod
2027            ! t/lib/charnames.t toke.c
2028 ____________________________________________________________________________
2029 [  9013] By: jhi                                   on 2001/03/04  17:20:45
2030         Log: Tweak the get*ent() OS/2 prototypes.
2031      Branch: perl
2032            ! os2/os2.c
2033 ____________________________________________________________________________
2034 [  9012] By: gsar                                  on 2001/03/04  06:26:14
2035         Log: avoid warning (nit in change#9009)
2036      Branch: maint-5.6/perl
2037            ! toke.c
2038 ____________________________________________________________________________
2039 [  9011] By: gsar                                  on 2001/03/04  06:15:24
2040         Log: lib/charnames.t fails in 5.6.x because of older Unicode
2041              data
2042              
2043              TODO: need to revisit this after updating lib/unicode/...
2044      Branch: maint-5.6/perl
2045            ! t/lib/charnames.t
2046 ____________________________________________________________________________
2047 [  9010] By: gsar                                  on 2001/03/04  06:08:36
2048         Log: change#9009 breaks build (no "didrange" variable in 5.6.x)
2049      Branch: maint-5.6/perl
2050            ! toke.c
2051 ____________________________________________________________________________
2052 [  9009] By: jhi                                   on 2001/03/03  19:27:20
2053         Log: Integrate change #9008 from mainline to maintperl,
2054              UTF-8 tr/// fixes from Inaba Hiroto.
2055      Branch: maint-5.6/perl
2056           !> doop.c op.c t/op/tr.t toke.c
2057 ____________________________________________________________________________
2058 [  9008] By: jhi                                   on 2001/03/03  19:19:42
2059         Log: UTF8 tr/// fixes from Inaba Hiroto.
2060      Branch: perl
2061            ! doop.c op.c t/op/tr.t toke.c
2062 ____________________________________________________________________________
2063 [  9007] By: jhi                                   on 2001/03/03  19:00:30
2064         Log: Integrate change #9006 from maintperl to mainline,
2065              more robust quest for the infinite.
2066      Branch: perl
2067           !> lib/Math/Complex.pm
2068 ____________________________________________________________________________
2069 [  9006] By: jhi                                   on 2001/03/03  18:58:06
2070         Log: Subject: [PATCH 5.6.1] More robust Math::Complex
2071              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
2072              Date: Sat, 3 Mar 2001 12:51:50 -0500
2073              Message-ID: <20010303125150.A2147@math.ohio-state.edu>
2074              
2075              Be more robust in our quest for the infinite.
2076      Branch: maint-5.6/perl
2077            ! lib/Math/Complex.pm
2078 ____________________________________________________________________________
2079 [  9005] By: jhi                                   on 2001/03/03  17:55:50
2080         Log: The #8982 modified for perl 5.6.x, from Radu Greab.
2081      Branch: maint-5.6/perl
2082            ! doio.c
2083 ____________________________________________________________________________
2084 [  9004] By: jhi                                   on 2001/03/03  17:40:14
2085         Log: Rewrite REPORT() and REPORT2() (used for -DT) slightly
2086              so that picky compilers like IRIX won't get huffy about
2087              "statements without effect" (like 1;).
2088      Branch: perl
2089            ! toke.c
2090 ____________________________________________________________________________
2091 [  9003] By: jhi                                   on 2001/03/03  17:15:52
2092         Log: Integrate change #9002 from mainline to maintperl.
2093              
2094              Subject: [perl-5.6.x, perl-current] accept for EPOC
2095      Branch: maint-5.6/perl
2096           !> pp_sys.c
2097 ____________________________________________________________________________
2098 [  9002] By: jhi                                   on 2001/03/03  17:14:30
2099         Log: Subject: [perl-5.6.x, perl-current] accept for EPOC
2100              From: Olaf Flebbe <O.Flebbe@science-computing.de>
2101              Date: Sat, 3 Mar 2001 16:36:04 +0100 (CET)
2102              Message-ID: <Pine.LNX.4.02.10103031635190.4825-100000@milkyway.science-computing.de>
2103      Branch: perl
2104            ! pp_sys.c
2105 ____________________________________________________________________________
2106 [  9001] By: jhi                                   on 2001/03/03  17:13:13
2107         Log: Subject: [PATCH perl@8989] t/pod/find.t on VMS
2108              From: "Craig A. Berry" <craigberry@mac.com>
2109              Date: Fri, 02 Mar 2001 17:44:40 -0600
2110              Message-Id: <5.0.2.1.0.20010302172145.038d3c10@mail.mac.com>
2111      Branch: perl
2112            ! t/pod/find.t
2113 ____________________________________________________________________________
2114 [  9000] By: jhi                                   on 2001/03/03  17:11:55
2115         Log: Integrate changes #8997,8999 from maintperl.
2116              
2117              Subject: [PATCH 5.6.1] compiling on OS/2
2118              (Better error message from hints/os2.sh)
2119              
2120              Subject: [PATCH 5.6.1] syslog.t
2121      Branch: perl
2122           !> hints/os2.sh t/lib/syslog.t
2123 ____________________________________________________________________________
2124 [  8999] By: jhi                                   on 2001/03/03  17:09:28
2125         Log: Subject: [PATCH 5.6.1] syslog.t
2126              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
2127              Date: Sat, 3 Mar 2001 02:11:17 -0500
2128              Message-ID: <20010303021116.A11897@math.ohio-state.edu>
2129      Branch: maint-5.6/perl
2130            ! t/lib/syslog.t
2131 ____________________________________________________________________________
2132 [  8998] By: jhi                                   on 2001/03/03  17:07:50
2133         Log: Subject: Re: [PATCH 5.7.0] compiling on OS/2: 5.6.1 too
2134              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
2135              Date: Sat, 3 Mar 2001 01:53:52 -0500
2136              Message-ID: <20010303015352.A11741@math.ohio-state.edu>
2137      Branch: maint-5.6/perl
2138            ! opcode.pl os2/os2.c
2139 ____________________________________________________________________________
2140 [  8997] By: jhi                                   on 2001/03/03  17:03:30
2141         Log: Subject: [PATCH 5.6.1] compiling on OS/2
2142              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
2143              Date: Sat, 3 Mar 2001 01:59:59 -0500
2144              Message-ID: <20010303015959.B11741@math.ohio-state.edu>
2145      Branch: maint-5.6/perl
2146            ! hints/os2.sh
2147 ____________________________________________________________________________
2148 [  8996] By: jhi                                   on 2001/03/03  00:55:58
2149         Log: Regen files for mainline.
2150      Branch: perl
2151            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
2152            ! config_h.SH pod/perlapi.pod pod/perltoc.pod
2153 ____________________________________________________________________________
2154 [  8995] By: jhi                                   on 2001/03/03  00:35:22
2155         Log: Integrate changes #8099,8218,8220,8221,8227,8304,8317,
2156              8318,8320,8337,8503,8877,8890,8903,8971 from mainline
2157              to maintperl.
2158              
2159              Subject: Re: [ID 20000328.039] [PATCH] Eliminate Configure use of /tmp
2160              
2161              Add Configure option -Dmksymlinks which will create a symlink
2162              forest if the current/build differs from the source directory.
2163              (8218,8220,8221,8317,8318,8971)
2164              
2165              Subject: Re: A Configure option like 'otherlibdirs' but for *pre*pending?
2166              (Document APPLLIB_EXP in INSTALL.)
2167              
2168              If running byacc write-enable also perly.h.
2169              
2170              DB3 NDBM/ODBM emulation tweaks from Stanislav Brabec <utx@penguin.cz>.
2171              
2172              Subject: [PATCH 5.7.1/Configure] failure to set src='.'
2173              
2174              Sanity check for conflicting thread flavours.
2175              
2176              Fix the sys/fcntl.h problem reported by Peter Prymmer.
2177              
2178              Add few CPUs/architectures to the Cppsym scan,
2179              add -perlio to archname if so selected (modified 8890)
2180              
2181              Be more helpful for devel builders, suggested by John L. Allen.
2182              (admittedly pointless change for maintperl, but the usedevel
2183              code is there already)
2184      Branch: maint-5.6/perl
2185           !> Configure INSTALL Makefile.SH Porting/Glossary
2186           !> Porting/config.sh Porting/config_H config_h.SH embed.pl
2187           !> epoc/config.sh ext/NDBM_File/NDBM_File.xs
2188           !> ext/ODBM_File/ODBM_File.xs t/io/fs.t warnings.pl
2189           !> win32/config.bc win32/config.gc win32/config.vc
2190 ____________________________________________________________________________
2191 [  8994] By: jhi                                   on 2001/03/02  23:31:41
2192         Log: Use also $ccflags, not just $ldflags, when testing for gccness.
2193      Branch: metaconfig/U/perl
2194            ! gccvers.U
2195 ____________________________________________________________________________
2196 [  8993] By: jhi                                   on 2001/03/02  23:22:12
2197         Log: Regenerate various files for maint.
2198      Branch: maint-5.6/perl
2199            ! Porting/Glossary Porting/config.sh Porting/config_H objXSUB.h
2200            ! perlapi.c pod/perlapi.pod pod/perltoc.pod proto.h
2201 ____________________________________________________________________________
2202 [  8992] By: alanbur                               on 2001/03/02  22:48:34
2203         Log: Resync wuth parent
2204      Branch: maint-5.6/pureperl
2205           +> pod/perlclib.pod t/lib/cgi-esc.t t/run/runenv.t
2206           !> (integrate 60 files)
2207 ____________________________________________________________________________
2208 [  8991] By: jhi                                   on 2001/03/02  21:00:08
2209         Log: Retract the #8742 part of #8986, backward compat.
2210      Branch: maint-5.6/perl
2211            ! embed.pl
2212 ____________________________________________________________________________
2213 [  8990] By: jhi                                   on 2001/03/02  20:40:07
2214         Log: Retract the #8919 part of #8987, not applicable to the 5.6 branch.
2215      Branch: maint-5.6/perl
2216            ! hv.c
2217 ____________________________________________________________________________
2218 [  8989] By: jhi                                   on 2001/03/02  19:59:56
2219         Log: Update Changes.
2220      Branch: perl
2221            ! Changes patchlevel.h
2222 ____________________________________________________________________________
2223 [  8988] By: jhi                                   on 2001/03/02  19:57:08
2224         Log: Integrate perlio.
2225      Branch: perl
2226           !> ext/Encode/Encode/ascii.ucm ext/Encode/Encode/cp1047.ucm
2227           !> ext/Encode/Encode/cp1250.ucm ext/Encode/Encode/cp37.ucm
2228           !> ext/Encode/Encode/dingbats.ucm ext/Encode/Encode/iso8859-1.ucm
2229           !> ext/Encode/Encode/iso8859-10.ucm
2230           !> ext/Encode/Encode/iso8859-13.ucm
2231           !> ext/Encode/Encode/iso8859-14.ucm
2232           !> ext/Encode/Encode/iso8859-15.ucm
2233           !> ext/Encode/Encode/iso8859-16.ucm
2234           !> ext/Encode/Encode/iso8859-2.ucm
2235           !> ext/Encode/Encode/iso8859-3.ucm
2236           !> ext/Encode/Encode/iso8859-4.ucm
2237           !> ext/Encode/Encode/iso8859-5.ucm
2238           !> ext/Encode/Encode/iso8859-6.ucm
2239           !> ext/Encode/Encode/iso8859-7.ucm
2240           !> ext/Encode/Encode/iso8859-8.ucm
2241           !> ext/Encode/Encode/iso8859-9.ucm ext/Encode/Encode/posix-bc.ucm
2242           !> ext/Encode/Encode/symbol.ucm ext/Encode/compile
2243 ____________________________________________________________________________
2244 [  8987] By: jhi                                   on 2001/03/02  19:43:40
2245         Log: Integrate changes #8784,8839,8843,8847,8849,8859,8866,
2246              8873,8874,8876,8879,8901,8902,8908,8913,8918,8919,8946,8947,8948,
2247              8950,8952,8955 from mainline to maintperl.
2248              
2249              Subject: [PATCH: perl@8773] small fixups to perlclib.pod
2250              
2251              Put to rest the 20010205.001, the email address checking (not) regex.
2252              
2253              fork() not everywhere, cleanup temp files.
2254              
2255              The #8843 wasn't quite right: %Config needs to imported.
2256              
2257              Subject: [PATCH perl@8841] glob-basic.t, runenv.t fix-ups
2258              (#8849: the glob-basic hunk needed massaging as it depended
2259              on Schwern's large-scale (unintegrated) patches)
2260              
2261              Skip the Perl_sys_intern_clear and Perl_sys_intern_init.
2262              
2263              Upgrade to CGI.pm 2.752, from Lincoln Stein.
2264              (Note: there were some conflicts due to EBCDIC and EPOC
2265              patches, in general I preferred the repository code.)
2266              (When 2.753 comes out, we need to synchronize.)
2267              
2268              Subject: [PATCH] fix for charnames above FFFF
2269              
2270              Subject: [patch perl@8841] One URL update and a possible OS Version snag for perlport.pod
2271              
2272              If no sfio, no -lsfio.
2273              
2274              Run run/*.t also in minitest.
2275              
2276              Subject:  [PATCH perl 5.7.0] malloc message address offset
2277              
2278              Subject:  [PATCH 5.7.0] don't zero CvFLAGS before checking for CvCONST!
2279              
2280              Subject: fix for parameter -Dm (for perl@8867)
2281              
2282              Subject: [PATCH: perl@8892] was Re: hashing order difference?
2283              (make the test more portable)
2284              
2285              Subject: Re: [PATCH] fix for charnames above FFFF
2286              
2287              Subject: Re: I'm losing the war...
2288              (hv_store() not working correctly in ENV_IS_CASELESS case.)
2289              
2290              Subject: Modified README.bs2000 
2291              
2292              Subject: [PATCH: perl@8935] -Dt padsv($var)
2293              
2294              Subject: [PATCH: perl@8890] small fix in pod/perlop.pod
2295              
2296              Subject: PATCH: extra tests to check on negative float to unsigned cast
2297              
2298              Subject: [PATCH] XPUSH[insp] was Re: progress
2299              
2300              Subject: Re: Compile with perlcc..
2301      Branch: maint-5.6/perl
2302           !> (integrate 36 files)
2303 ____________________________________________________________________________
2304 [  8986] By: jhi                                   on 2001/03/02  18:51:25
2305         Log: Integrate changes #8689,8697,8724,8726,8731,8742,8754,8755,
2306              8763,8767,8770,8772,8795,8796,8813,8822,8823 from mainline
2307              to maintperl.
2308              
2309              Subject: Re: [PATCH lots of pod/] s/chop/chomp/g
2310              
2311              Subject: [DOC PATCH] overload.pm nits
2312              
2313              Add header for LIB$ prototypes (C. Berry)
2314              
2315              Convert fwrite()s to sockets to write()s, since some socket stacks
2316              don't take kindly to stdio.
2317              Ignore "expected" SS$_NOLOGNAM when doing internal LNM lookups
2318              (for often optional LNMs)
2319              Correct a few typos
2320              (C. Bailey)
2321              
2322              Subject: [PATCH: 5.6.1 trial2 && perl@8671] provide EBCDIC CGI::Util::escape() and test
2323              
2324              De-cut-and-pasto.
2325              
2326              Subject: Re: [PATCH embed.pl] Forgot to add ./lib to @INC for File::Glob
2327              
2328              Upgrade to Text-Tabs+Wrap-2001.0131 from David Muir Sharnoff.
2329              
2330              Upgrade to CPAN 1.59_54, from Andreas König.
2331              
2332              Bogus shebang.
2333              
2334              Subject: [PATCH] Document makepatch in Porting/patching
2335              
2336              UTF-8 documentation.
2337              
2338              Subject: Re: [PATCH] pod/perlclib.pod - Replacements for C library functions
2339              
2340              Sort the MANIFEST.
2341              
2342              Subject: [ID 20010210.002] perldiag doesn't include the "Scalars leaked" message
2343              
2344              Subject: [PATCH @8807] toke.c cleanup: scan_str()
2345              
2346              Subject: [PATCH perl.c] Fixing PERL5OPT (was Re: Warnings, strict, and CPAN)
2347              
2348              Add run/*.t to testables.
2349              
2350              TODO: integrate #8784.
2351      Branch: maint-5.6/perl
2352           +> pod/perlclib.pod t/lib/cgi-esc.t t/run/runenv.t
2353           !> (integrate 28 files)
2354 ____________________________________________________________________________
2355 [  8985] By: nick                                  on 2001/03/02  18:15:45
2356         Log: Integrate mainline
2357      Branch: perlio
2358           !> doio.c lib/File/Copy.pm pod/perldata.pod pod/perlfaq1.pod
2359           !> vms/vms.c
2360 ____________________________________________________________________________
2361 [  8984] By: jhi                                   on 2001/03/02  16:00:17
2362         Log: Integrate changes #8978,8979,8980,8981,8983 from mainline.
2363              
2364              perlfaq1 reworded to suggest 5.6.0 or 5.005_03, or POSSIBLY
2365              5.004_05, and mention the suidperl August 2000 security problem.
2366              (#8978,#8981)
2367              
2368              Subject: [ID 20010301.004] Technically speaking in perldata
2369              
2370              Subject: [PATCH] File::Copy for bleadperl, maintperl
2371              
2372              Subject:  [PATCH 5.7.0/5.6.0+] VMS piping ... cleanup at interpreter exit
2373              
2374              (The #8982, fix for 20010221.005 and 20010221.008,
2375              would be nice too but it didn't integrate cleanly.)
2376      Branch: maint-5.6/perl
2377           !> lib/File/Copy.pm pod/perldata.pod pod/perlfaq1.pod vms/vms.c
2378 ____________________________________________________________________________
2379 [  8983] By: jhi                                   on 2001/03/02  15:51:16
2380         Log: Subject:  [PATCH 5.7.0/5.6.0+] VMS piping ... cleanup at interpreter exit
2381              From: lane@DUPHY4.Physics.Drexel.Edu (Charles Lane)
2382              Date:     Thu, 1 Mar 2001 15:54:09 EST
2383              Message-Id: <010301155258.b8cc1@DUPHY4.Physics.Drexel.Edu>
2384      Branch: perl
2385            ! vms/vms.c
2386 ____________________________________________________________________________
2387 [  8982] By: jhi                                   on 2001/03/02  15:43:31
2388         Log: Subject: Re: sync sync sync: have I missed any patches?
2389              From: Radu Greab <radu@netsoft.ro> 
2390              Date: Thu, 1 Mar 2001 21:47:22 +0200 (EET)
2391              Message-ID: <15006.42826.747914.669893@ix.netsoft.ro>
2392              
2393              Fixes the bugs 20010221.005 and 20010221.008: "the taint checker
2394              was checking argv[0] regardless of whether a different pathname
2395              will actually be executed."  Test case not supplied because 
2396              drafting that, ironically enough, revealed another bug
2397              (or a feature).
2398      Branch: perl
2399            ! doio.c
2400 ____________________________________________________________________________
2401 [  8981] By: jhi                                   on 2001/03/02  15:28:03
2402         Log: Misdate in #8978.
2403      Branch: perl
2404            ! pod/perlfaq1.pod
2405 ____________________________________________________________________________
2406 [  8980] By: jhi                                   on 2001/03/02  15:24:20
2407         Log: Subject: [PATCH] File::Copy for bleadperl, maintperl
2408              From: Chris Nandor <pudge@pobox.com>
2409              Date: Wed, 28 Feb 2001 22:10:15 -0500
2410              Message-Id: <p05010400b6c36d959ae8@[10.0.1.177]>
2411      Branch: perl
2412            ! lib/File/Copy.pm
2413 ____________________________________________________________________________
2414 [  8979] By: jhi                                   on 2001/03/02  15:17:16
2415         Log: Subject: [ID 20010301.004] Technically speaking in perldata
2416              From: abela@geneanet.org
2417              Date: Thu,  1 Mar 2001 17:59:27 +0100 (CET)
2418              Message-Id: <20010301165927.262C2D17D@little-roots.geneanet.org>
2419      Branch: perl
2420            ! pod/perldata.pod
2421 ____________________________________________________________________________
2422 [  8978] By: jhi                                   on 2001/03/02  15:15:27
2423         Log: Subject: [ID 20010301.003] ref to 5.004
2424              From: abela@geneanet.org
2425              Date: Thu,  1 Mar 2001 14:48:40 +0100 (CET)
2426              Message-Id: <20010301134840.C0CD1D171@little-roots.geneanet.org>
2427              
2428              Reworded to suggest 5.6.0 or 5.005_03, or POSSIBLY 5.004_05,
2429              and mention the suidperl August 2000 security problem.
2430      Branch: perl
2431            ! pod/perlfaq1.pod
2432 ____________________________________________________________________________
2433 [  8977] By: alanbur                               on 2001/03/02  14:17:45
2434         Log: Resynchronised with parent
2435      Branch: maint-5.6/pureperl
2436           !> AUTHORS README.epoc configure.com epoc/createpkg.pl
2437           !> lib/File/Temp.pm perl.c pp_sys.c t/lib/ftmp-mktemp.t
2438           !> t/lib/ftmp-posix.t t/op/append.t t/op/sprintf.t toke.c util.c
2439           !> vms/descrip_mms.template win32/win32.c win32/win32.h
2440           !> win32/win32iop.h
2441 ____________________________________________________________________________
2442 [  8976] By: nick                                  on 2001/03/01  23:25:30
2443         Log: Integrate mainline.
2444      Branch: perlio
2445            - t/op/qu.t
2446           !> (integrate 55 files)
2447 ____________________________________________________________________________
2448 [  8975] By: jhi                                   on 2001/03/01  16:51:34
2449         Log: Integrate change #8974 from maintperl, fix for bugid 20010226.008.
2450      Branch: perl
2451           !> toke.c
2452 ____________________________________________________________________________
2453 [  8974] By: gsar                                  on 2001/03/01  16:28:21
2454         Log: fix for bugid 20010226.008
2455              
2456              the problem was that some of the pointers (PL_last_lop and
2457              PL_last_uni specifically) into the lex buffers weren't correctly
2458              being invalidated when the buffer changed; this would leave the
2459              pointers pointing at an arbitrary location in the buffer if
2460              the buffer didn't need to be reallocated, or point into freed
2461              memory if the buffer had to be realloced
2462              
2463              TODO item for bugdb maintainers: check other seemingly random
2464              parser-related bugs--they might be cured by this
2465      Branch: maint-5.6/perl
2466            ! toke.c
2467 ____________________________________________________________________________
2468 [  8973] By: jhi                                   on 2001/03/01  02:23:25
2469         Log: Retract #8970 because of a completely mysterious core dump:
2470              adding the tests 241..244 causes op/pat dump core at test #25.
2471              The test needs a lot of whittling down before the bug can be solved.
2472      Branch: perl
2473            ! t/op/pat.t
2474 ____________________________________________________________________________
2475 [  8972] By: jhi                                   on 2001/03/01  01:58:38
2476         Log: Regen perlapi.
2477      Branch: perl
2478            ! pod/perlapi.pod
2479 ____________________________________________________________________________
2480 [  8971] By: jhi                                   on 2001/03/01  01:34:09
2481         Log: Subject: [PATCH] don't write along symlinks into a read only source tree (was Re: [ID 20010129.006] OK: perl v5.7.0 +DEVEL8584 on i586-linux-64all 2.2.12 (UNINSTALLED))
2482              From: Nicholas Clark <nick@ccl4.org>
2483              Date: Wed, 28 Feb 2001 23:28:49 +0000
2484              Message-ID: <20010228232849.A55187@plum.flirble.org>
2485              
2486              Allow a completely write protected source code tree
2487              when using the Configure -Dmksymlinks.
2488      Branch: perl
2489            ! embed.pl warnings.pl
2490 ____________________________________________________________________________
2491 [  8970] By: jhi                                   on 2001/03/01  01:32:04
2492         Log: Add back the EBCDIC character range tests (for matching).
2493      Branch: perl
2494            ! t/op/pat.t
2495 ____________________________________________________________________________
2496 [  8969] By: nick                                  on 2001/02/28  18:18:01
2497         Log: Add charname comments to .ucm files writen by 'compile',
2498              also order charmaps in those files by source encoding.
2499              regenerate distrubuted .ucm files
2500      Branch: perlio
2501            ! ext/Encode/Encode/ascii.ucm ext/Encode/Encode/cp1047.ucm
2502            ! ext/Encode/Encode/cp1250.ucm ext/Encode/Encode/cp37.ucm
2503            ! ext/Encode/Encode/dingbats.ucm ext/Encode/Encode/iso8859-1.ucm
2504            ! ext/Encode/Encode/iso8859-10.ucm
2505            ! ext/Encode/Encode/iso8859-13.ucm
2506            ! ext/Encode/Encode/iso8859-14.ucm
2507            ! ext/Encode/Encode/iso8859-15.ucm
2508            ! ext/Encode/Encode/iso8859-16.ucm
2509            ! ext/Encode/Encode/iso8859-2.ucm
2510            ! ext/Encode/Encode/iso8859-3.ucm
2511            ! ext/Encode/Encode/iso8859-4.ucm
2512            ! ext/Encode/Encode/iso8859-5.ucm
2513            ! ext/Encode/Encode/iso8859-6.ucm
2514            ! ext/Encode/Encode/iso8859-7.ucm
2515            ! ext/Encode/Encode/iso8859-8.ucm
2516            ! ext/Encode/Encode/iso8859-9.ucm ext/Encode/Encode/posix-bc.ucm
2517            ! ext/Encode/Encode/symbol.ucm ext/Encode/compile
2518 ____________________________________________________________________________
2519 [  8968] By: jhi                                   on 2001/02/28  16:26:37
2520         Log: Expand usemorebits early if d_casti32 needs to be undefined.
2521      Branch: perl
2522            ! hints/hpux.sh hints/irix_6.sh
2523 ____________________________________________________________________________
2524 [  8967] By: jhi                                   on 2001/02/28  16:22:26
2525         Log: Undo qu.  Retract #8814, rewrite op/each part of #8615,
2526              retract toke.c/qu parts of #8583, retract #8485, retract
2527              or rewrite qu parts of #8439 of toke.c, keywords.h, keywords.pl,
2528              op/length.t, and MANIFEST, and delete t/op/qu.t.
2529      Branch: perl
2530            - t/op/qu.t
2531            ! MANIFEST pod/perlfunc.pod pod/perlop.pod pod/perlre.pod
2532            ! pod/perlretut.pod pod/perlunicode.pod t/op/each.t
2533            ! t/op/length.t toke.c
2534 ____________________________________________________________________________
2535 [  8966] By: jhi                                   on 2001/02/28  15:00:27
2536         Log: Retract #8865 and #8869, un?pack C now again agree with Camel 3
2537              by not changing from pre-Unicode days into being Unicode-aware.
2538              Sniff.
2539      Branch: perl
2540            ! pp.c t/op/pack.t t/op/qu.t
2541 ____________________________________________________________________________
2542 [  8965] By: jhi                                   on 2001/02/28  14:37:55
2543         Log: Subject: Re: Errors in core PODs
2544              From: Michael Stevens <michael@etla.org> 
2545              Date: Fri, 23 Feb 2001 15:47:56 +0000
2546              Message-ID: <20010223154756.A7723@firedrake.org> 
2547      Branch: perl
2548            ! ext/Encode/Encode.pm lib/Exporter/Heavy.pm
2549            ! lib/File/Spec/Epoc.pm lib/Test/Harness.pm lib/utf8.pm
2550            ! makedef.pl vms/ext/DCLsym/DCLsym.pm vms/ext/Stdio/Stdio.pm
2551            ! x2p/a2p.pod
2552 ____________________________________________________________________________
2553 [  8964] By: jhi                                   on 2001/02/28  14:35:35
2554         Log: Do not force d_casti32 to undef if we are on a 64-bit environment.
2555              (The #8961 was too bold.)
2556      Branch: perl
2557            ! hints/hpux.sh hints/irix_6.sh
2558 ____________________________________________________________________________
2559 [  8963] By: jhi                                   on 2001/02/28  14:33:39
2560         Log: Subject: Re: sync sync sync: have I missed any patches?
2561              From: Tim Jenness <t.jenness@jach.hawaii.edu>
2562              In-Reply-To: <20010227140737.Y10633@chaos.wustl.edu>
2563              Date: Tue, 27 Feb 2001 13:24:58 -1000 (HST)
2564              Message-ID: <Pine.LNX.4.30.0102271322070.8623-100000@lapaki.jach.hawaii.edu>
2565              
2566              Replace djSP with dSP.
2567      Branch: perl
2568            ! cop.h doio.c doop.c ext/B/B/C.pm ext/B/B/CC.pm
2569            ! pod/perlhack.pod pp.c pp.h pp_ctl.c pp_hot.c pp_sys.c sv.c
2570            ! win32/perlhost.h
2571 ____________________________________________________________________________
2572 [  8962] By: jhi                                   on 2001/02/27  23:21:14
2573         Log: Upgrade to Filter::Simple 0.50 (just few doc tweaks).
2574      Branch: perl
2575            ! lib/Filter/Simple.pm
2576 ____________________________________________________________________________
2577 [  8961] By: jhi                                   on 2001/02/27  22:55:26
2578         Log: The casting mystery in HP-UX and IRIX needs at least a workaround
2579              and this would be it.
2580      Branch: perl
2581            ! hints/hpux.sh hints/irix_6.sh
2582 ____________________________________________________________________________
2583 [  8960] By: jhi                                   on 2001/02/27  22:51:33
2584         Log: Subject: [PATCH perl@8958 and 5.6.1-trial2] configure.com bug fixing spree
2585              From: "Craig A. Berry" <craigberry@mac.com>
2586              Date: Tue, 27 Feb 2001 16:11:44 -0600
2587              Message-Id: <5.0.2.1.0.20010227150548.02a200f8@exchi01>
2588      Branch: maint-5.6/perl
2589            ! configure.com vms/descrip_mms.template
2590 ____________________________________________________________________________
2591 [  8959] By: jhi                                   on 2001/02/27  22:47:23
2592         Log: Subject: [PATCH perl@8958 and 5.6.1-trial2] configure.com bug fixing spree
2593              From: "Craig A. Berry" <craigberry@mac.com>
2594              Date: Tue, 27 Feb 2001 16:11:44 -0600
2595              Message-Id: <5.0.2.1.0.20010227150548.02a200f8@exchi01>
2596      Branch: perl
2597            ! configure.com vms/descrip_mms.template
2598 ____________________________________________________________________________
2599 [  8958] By: jhi                                   on 2001/02/27  15:16:42
2600         Log: Update Changes.
2601      Branch: perl
2602            ! Changes patchlevel.h
2603 ____________________________________________________________________________
2604 [  8957] By: jhi                                   on 2001/02/27  06:15:07
2605         Log: Subject: [5.6.x] EPOC additions
2606              From: Olaf Flebbe <O.Flebbe@science-computing.de>
2607              Date: Mon, 26 Feb 2001 23:33:46 +0100 (CET)
2608              Message-ID: <Pine.LNX.4.02.10102262333040.3736-100000@milkyway.science-computing.de>
2609      Branch: maint-5.6/perl
2610            ! AUTHORS README.epoc epoc/createpkg.pl pp_sys.c
2611 ____________________________________________________________________________
2612 [  8956] By: jhi                                   on 2001/02/27  06:12:11
2613         Log: Subject: [perl-current] EPOC 
2614              From: Olaf Flebbe <O.Flebbe@science-computing.de>
2615              Date: Mon, 26 Feb 2001 23:34:36 +0100 (CET)
2616              Message-ID: <Pine.LNX.4.02.10102262333490.3781-100000@milkyway.science-computing.de>
2617      Branch: perl
2618            ! AUTHORS README.epoc epoc/createpkg.pl epoc/epoc.c
2619            ! epoc/epocish.c epoc/epocish.h pp_sys.c
2620 ____________________________________________________________________________
2621 [  8955] By: jhi                                   on 2001/02/27  05:59:50
2622         Log: Subject: Re: Compile with perlcc..
2623              From: Edward Peschko <edwardp@excitehome.net>
2624              Date: Mon, 26 Feb 2001 18:51:58 -0800
2625              Message-ID: <20010226185158.A9871@excitehome.net>
2626              
2627              plus add a simple usage message if no arguments given.
2628      Branch: perl
2629            ! lib/Test/Harness.pm pod/Makefile.SH t/TEST t/harness
2630            ! utils/Makefile utils/perlcc.PL win32/pod.mak
2631 ____________________________________________________________________________
2632 [  8954] By: nick                                  on 2001/02/26  21:02:59
2633         Log: Integrate mainline
2634      Branch: perlio
2635           !> README.bs2000 ext/Encode/compile lib/Test.pm op.c perlio.c
2636           !> pod/perlguts.pod pod/perlop.pod pp_ctl.c run.c t/op/bop.t
2637           !> t/op/sprintf.t
2638 ____________________________________________________________________________
2639 [  8953] By: jhi                                   on 2001/02/26  14:43:54
2640         Log: Subject: Documenting coderef @INC (Re: CPAN "make this script work" feature)
2641              From: Nicholas Clark <nick@ccl4.org>
2642              Date: Mon, 26 Feb 2001 00:42:07 +0000
2643              Message-ID: <20010226004207.F23333@plum.flirble.org>
2644      Branch: perl
2645            ! pp_ctl.c
2646 ____________________________________________________________________________
2647 [  8952] By: jhi                                   on 2001/02/26  14:42:13
2648         Log: Subject: [PATCH] XPUSH[insp] was Re: progress
2649              From: Simon Cozens <simon@netthink.co.uk>
2650              Date: Mon, 26 Feb 2001 12:23:48 +0000
2651              Message-ID: <20010226122348.A25536@pembro26.pmb.ox.ac.uk>
2652      Branch: perl
2653            ! pod/perlguts.pod
2654 ____________________________________________________________________________
2655 [  8951] By: jhi                                   on 2001/02/26  14:39:15
2656         Log: Subject: [PATCH] perlio - unknown layer
2657              From: Nicholas Clark <nick@ccl4.org>
2658              Date: Mon, 26 Feb 2001 00:27:19 +0000
2659              Message-ID: <20010226002719.E23333@plum.flirble.org>
2660      Branch: perl
2661            ! perlio.c
2662 ____________________________________________________________________________
2663 [  8950] By: jhi                                   on 2001/02/26  14:38:04
2664         Log: Subject: PATCH: extra tests to check on negative float to unsigned cast
2665              From: Jeff Okamoto <okamoto@xfiles.corp.hp.com>
2666              Message-Id: <200102232128.NAA28938@xfiles.corp.hp.com>
2667              Date: Fri, 23 Feb 2001 13:28:33 -0800 (PST)
2668      Branch: perl
2669            ! t/op/bop.t
2670 ____________________________________________________________________________
2671 [  8949] By: jhi                                   on 2001/02/26  14:37:07
2672         Log: Subject: Re: [PATCH: perl 5.005_03] Record I/O fix for Test.pm in older perl
2673              From: Peter Prymmer <pvhp@forte.com>
2674              Date: Fri, 23 Feb 2001 10:51:37 -0800 (PST)
2675              Message-ID: <Pine.OSF.4.10.10102231042010.79050-100000@aspara.forte.com>
2676      Branch: perl
2677            ! lib/Test.pm
2678 ____________________________________________________________________________
2679 [  8948] By: jhi                                   on 2001/02/26  14:35:53
2680         Log: Subject: [PATCH: perl@8890] small fix in pod/perlop.pod
2681              From: Radu Greab <radu@netsoft.ro>
2682              Date: Fri, 23 Feb 2001 18:50:48 +0200 (EET)
2683              Message-ID: <14998.38120.623015.916165@ix.netsoft.ro>
2684      Branch: perl
2685            ! pod/perlop.pod
2686 ____________________________________________________________________________
2687 [  8947] By: jhi                                   on 2001/02/26  14:34:46
2688         Log: Subject: [PATCH: perl@8935] -Dt padsv($var)
2689              From: David Mitchell <davem@fdgroup.co.uk>
2690              Date: Mon, 26 Feb 2001 11:01:24 +0000 (GMT)
2691              Message-Id: <200102261101.LAA12915@tiree.fdgroup.co.uk>
2692      Branch: perl
2693            ! run.c
2694 ____________________________________________________________________________
2695 [  8946] By: jhi                                   on 2001/02/26  14:32:37
2696         Log: Subject: Modified README.bs2000 
2697              From: Dorner Thomas <Thomas.Dorner@start.de>
2698              Date: Mon, 26 Feb 2001 09:22:17 +0100
2699              Message-ID: <6727B1DACFCDD311A757009027CA8D69010A889D@Ex02.inhouse.start.de>
2700      Branch: perl
2701            ! README.bs2000
2702 ____________________________________________________________________________
2703 [  8945] By: jhi                                   on 2001/02/26  14:19:53
2704         Log: Integrate the t/op/sprintf.t parts of #7909 and #8944 from mainline
2705              to maintperl, listing the known failures on the tests 129 and 130.
2706      Branch: maint-5.6/perl
2707           !> t/op/sprintf.t
2708 ____________________________________________________________________________
2709 [  8944] By: jhi                                   on 2001/02/26  14:14:15
2710         Log: Add more known sprintf failures.
2711      Branch: perl
2712            ! t/op/sprintf.t
2713 ____________________________________________________________________________
2714 [  8943] By: jhi                                   on 2001/02/26  13:56:22
2715         Log: perlglob.exe needs to be found in Win32, patch from
2716              Vadim Konovalov.  Nick I-S comments: "Perhaps a lingering glob()
2717              which needs external glob at mini-perl time."
2718      Branch: perl
2719            ! ext/Encode/compile
2720 ____________________________________________________________________________
2721 [  8942] By: jhi                                   on 2001/02/26  13:52:19
2722         Log: A missing dTHX from Vadim Konovalov.
2723      Branch: perl
2724            ! perlio.c
2725 ____________________________________________________________________________
2726 [  8941] By: jhi                                   on 2001/02/26  13:37:05
2727         Log: Miscommunication at #8914: #8902 was okay, #8881 was to be retracted.
2728      Branch: perl
2729            ! op.c
2730 ____________________________________________________________________________
2731 [  8940] By: jhi                                   on 2001/02/26  13:35:40
2732         Log: Integrate perlio.
2733      Branch: perl
2734           !> ext/Encode/Encode.pm
2735 ____________________________________________________________________________
2736 [  8939] By: nick                                  on 2001/02/25  23:47:09
2737         Log: Integrate mainline.
2738      Branch: perlio
2739           !> Changes lib/Pod/Find.pm patchlevel.h perl.h regcomp.c
2740           !> t/op/pat.t t/op/tr.t t/pod/find.t toke.c utf8.c
2741 ____________________________________________________________________________
2742 [  8938] By: nick                                  on 2001/02/25  19:36:28
2743         Log: Encode implementations docs.
2744      Branch: perlio
2745            ! ext/Encode/Encode.pm
2746 ____________________________________________________________________________
2747 [  8937] By: jhi                                   on 2001/02/25  19:26:16
2748         Log: Script wasn't aligned with reality.
2749      Branch: perl
2750            ! t/pod/find.t
2751 ____________________________________________________________________________
2752 [  8936] By: jhi                                   on 2001/02/25  18:54:55
2753         Log: Update Changes.
2754      Branch: perl
2755            ! Changes patchlevel.h
2756 ____________________________________________________________________________
2757 [  8935] By: jhi                                   on 2001/02/25  18:46:36
2758         Log: Retract #8929,8930,8932,8933 for now.
2759      Branch: perl
2760            ! perl.h regcomp.c t/op/pat.t t/op/tr.t toke.c
2761 ____________________________________________________________________________
2762 [  8934] By: jhi                                   on 2001/02/25  17:34:35
2763         Log: Integrate perlio.
2764      Branch: perl
2765           !> embed.pl ext/Encode/Encode.pm ext/Encode/Encode.xs
2766           !> lib/ExtUtils/typemap perl.h perlapi.c proto.h sv.c
2767           !> t/lib/encode.t
2768 ____________________________________________________________________________
2769 [  8933] By: jhi                                   on 2001/02/25  17:33:12
2770         Log: (Retracted by #8395.)
2771              
2772              Slight tweaks in scan_const(), not fixes yet, it seems like
2773              lots of work remains to be done...
2774      Branch: perl
2775            ! toke.c
2776 ____________________________________________________________________________
2777 [  8932] By: jhi                                   on 2001/02/25  17:27:11
2778         Log: (Retracted by #8395.)
2779              
2780              Missing from #8930.
2781      Branch: perl
2782            ! perl.h
2783 ____________________________________________________________________________
2784 [  8931] By: jhi                                   on 2001/02/25  17:26:19
2785         Log: A comment tweak.
2786      Branch: perl
2787            ! utf8.c
2788 ____________________________________________________________________________
2789 [  8930] By: jhi                                   on 2001/02/25  17:25:47
2790         Log: (Retracted by #8395.)
2791              
2792              Attempt to fix the EBCDIC character range problwm with //.
2793      Branch: perl
2794            ! regcomp.c
2795 ____________________________________________________________________________
2796 [  8929] By: jhi                                   on 2001/02/25  17:23:45
2797         Log: (Retracted by #8395.)
2798              
2799              Expand the EBCDIC character range tests, and add few nasty
2800              tr tests from Karsten Sperling.
2801      Branch: perl
2802            ! t/op/pat.t t/op/tr.t
2803 ____________________________________________________________________________
2804 [  8928] By: jhi                                   on 2001/02/25  17:18:49
2805         Log: Missing check-in.
2806      Branch: perl
2807            ! lib/Pod/Find.pm
2808 ____________________________________________________________________________
2809 [  8927] By: nick                                  on 2001/02/25  11:30:22
2810         Log: Change method names in Encode implementation classes to something
2811              less confusing (preparing to "go public").
2812      Branch: perlio
2813            ! ext/Encode/Encode.pm ext/Encode/Encode.xs t/lib/encode.t
2814 ____________________________________________________________________________
2815 [  8926] By: nick                                  on 2001/02/25  10:53:24
2816         Log: GCC __atribute__ / printf fix
2817      Branch: perlio
2818            ! perl.h
2819 ____________________________________________________________________________
2820 [  8925] By: nick                                  on 2001/02/25  10:52:25
2821         Log: Checked in the wrong one ...
2822      Branch: perlio
2823            ! ext/Encode/Encode.pm
2824 ____________________________________________________________________________
2825 [  8924] By: nick                                  on 2001/02/24  18:46:51
2826         Log: Integrate mainline - to see what Jarkko has in ...
2827      Branch: perlio
2828           +> t/pod/testpods/lib/Pod/Stuff.pm
2829           !> MANIFEST t/TEST t/lib/glob-basic.t t/op/pat.t t/pod/find.t
2830 ____________________________________________________________________________
2831 [  8923] By: nick                                  on 2001/02/24  17:05:23
2832         Log: Encode API documentation nd tidy up.
2833              Minor additions to test.
2834              Tweaks sv_utf8_upgrade() to force SvPV, and always SvUTF8_on and return length.
2835              Adds STRLEN to standard typemap.
2836      Branch: perlio
2837            ! embed.pl ext/Encode/Encode.pm ext/Encode/Encode.xs
2838            ! lib/ExtUtils/typemap perlapi.c proto.h sv.c t/lib/encode.t
2839 ____________________________________________________________________________
2840 [  8922] By: jhi                                   on 2001/02/24  16:38:12
2841         Log: Add a test for the "character range should match in EBCDIC
2842              if specified using explicit numerics" bug found by Karsten
2843              Sperling.
2844      Branch: perl
2845            ! t/op/pat.t
2846 ____________________________________________________________________________
2847 [  8921] By: jhi                                   on 2001/02/24  16:30:16
2848         Log: Subject: [PATCH t/pod/find.t t/TEST] fixing t/pod/find.t, running t/pod
2849              From: schwern@pobox.com
2850              Date: Fri, 23 Feb 2001 03:21:37 -0500
2851              Message-ID: <20010223032137.A26022@magnonel.guild.net>
2852              
2853              plus Charles Lane's fixes, plus tweaks.
2854      Branch: perl
2855            + t/pod/testpods/lib/Pod/Stuff.pm
2856            ! MANIFEST t/TEST t/lib/glob-basic.t t/pod/find.t
2857 ____________________________________________________________________________
2858 [  8920] By: nick                                  on 2001/02/24  10:30:11
2859         Log: Integrate mainline
2860      Branch: perlio
2861           !> (integrate 33 files)
2862 ____________________________________________________________________________
2863 [  8919] By: jhi                                   on 2001/02/24  00:23:35
2864         Log: Subject: Re: I'm losing the war...
2865              From: "Vadim Konovalov" <watman@inbox.ru>
2866              Date: Sat, 24 Feb 2001 00:10:14 +0300
2867              Message-ID: <007501c09dde$a9b84420$2f7b55c2@vad>
2868              
2869              hv_store() not working correctly in ENV_IS_CASELESS case.
2870      Branch: perl
2871            ! hv.c
2872 ____________________________________________________________________________
2873 [  8918] By: jhi                                   on 2001/02/24  00:20:09
2874         Log: Subject: Re: [PATCH] fix for charnames above FFFF
2875              From: andreas.koenig@anima.de (Andreas J. Koenig)
2876              Date: 23 Feb 2001 02:39:03 +0100
2877              Message-ID: <m3u25mxjns.fsf@ak-71.mind.de>
2878              
2879              A further efficiency tweak.
2880      Branch: perl
2881            ! lib/charnames.pm
2882 ____________________________________________________________________________
2883 [  8917] By: jhi                                   on 2001/02/23  20:27:51
2884         Log: Integrate change #8916 from mainline,
2885              do away with USE_WIN32_RTL_ENV.
2886      Branch: maint-5.6/perl
2887           !> perl.c util.c win32/win32.c win32/win32.h win32/win32iop.h
2888 ____________________________________________________________________________
2889 [  8916] By: jhi                                   on 2001/02/23  20:02:25
2890         Log: Abolish USE_WIN32_RTL_ENV.
2891      Branch: perl
2892            ! perl.c util.c win32/win32.c win32/win32.h win32/win32iop.h
2893 ____________________________________________________________________________
2894 [  8915] By: jhi                                   on 2001/02/23  19:36:00
2895         Log: Retract #8893, zero-initializing may be costly, maybe reintroduce
2896              later protected by some #define.
2897      Branch: perl
2898            ! gv.c
2899 ____________________________________________________________________________
2900 [  8914] By: jhi                                   on 2001/02/23  19:31:38
2901         Log: Retract #8902 for now, requested by Charles Lane, the correct
2902              fix will be something else.
2903      Branch: perl
2904            ! op.c
2905 ____________________________________________________________________________
2906 [  8913] By: jhi                                   on 2001/02/23  19:11:36
2907         Log: Subject: [PATCH: perl@8892] was Re: hashing order difference?
2908              From: Peter Prymmer <pvhp@forte.com>
2909              Date: Fri, 23 Feb 2001 10:54:09 -0800 (PST)
2910              Message-ID: <Pine.OSF.4.10.10102231036100.79050-100000@aspara.forte.com>
2911      Branch: perl
2912            ! t/op/lex_assign.t
2913 ____________________________________________________________________________
2914 [  8912] By: jhi                                   on 2001/02/23  18:38:20
2915         Log: Subject: [patch] perlio + useithreads
2916              From: Doug MacEachern <dougm@covalent.net>
2917              Date: Fri, 23 Feb 2001 00:05:37 -0800 (PST)
2918              Message-ID: <Pine.LNX.4.21.0102222356460.14249-100000@mako.covalent.net>
2919              
2920              Gets things running but not complete.
2921      Branch: perl
2922            ! intrpvar.h objXSUB.h perlapi.c perlio.h proto.h sv.c
2923 ____________________________________________________________________________
2924 [  8911] By: jhi                                   on 2001/02/23  04:20:02
2925         Log: Integrate changes #8896,8897,8898,8906,8907,8908 from mainline.
2926              
2927              Duplicated environment freeing, File::Temp 0.12,
2928              op/append portability (EBCDIC) tweak.
2929      Branch: maint-5.6/perl
2930           !> lib/File/Temp.pm perl.c t/lib/ftmp-mktemp.t t/lib/ftmp-posix.t
2931           !> t/op/append.t
2932 ____________________________________________________________________________
2933 [  8910] By: jhi                                   on 2001/02/23  02:07:33
2934         Log: Integrate change #8909 from mainline, a better Borland
2935              putenv() workaround.
2936      Branch: maint-5.6/perl
2937           !> perl.c
2938 ____________________________________________________________________________
2939 [  8909] By: jhi                                   on 2001/02/23  02:05:46
2940         Log: A better workaround for Borland putenv() brokenness from Sarathy.
2941      Branch: perl
2942            ! perl.c
2943 ____________________________________________________________________________
2944 [  8908] By: jhi                                   on 2001/02/23  02:04:14
2945         Log: Subject: fix for parameter -Dm (for perl@8867)
2946              From: "Vadim Konovalov" <watman@inbox.ru>
2947              Date: Thu, 22 Feb 2001 17:30:12 +0300
2948              Message-ID: <001801c09cdc$2faba490$2a7b55c2@vad>
2949      Branch: perl
2950            ! perl.h
2951 ____________________________________________________________________________
2952 [  8907] By: jhi                                   on 2001/02/23  01:58:20
2953         Log: Subject: [PATCH: perl@8892] treat unicoding and null bytes in op/append.t
2954              From: Peter Prymmer <pvhp@forte.com>
2955              Date: Thu, 22 Feb 2001 13:23:59 -0800 (PST)
2956              Message-ID: <Pine.OSF.4.10.10102221319460.47500-100000@aspara.forte.com>
2957      Branch: perl
2958            ! t/op/append.t
2959 ____________________________________________________________________________
2960 [  8906] By: jhi                                   on 2001/02/23  01:48:34
2961         Log: Upgrade to File::Temp 0.12, from Tim Jenness.
2962      Branch: perl
2963            ! lib/File/Temp.pm t/lib/ftmp-mktemp.t t/lib/ftmp-posix.t
2964 ____________________________________________________________________________
2965 [  8905] By: jhi                                   on 2001/02/23  01:43:30
2966         Log: Subject: [PATCH: perl@8892] fix a patcho in t/lib/st-06compat.t
2967              From: Peter Prymmer <pvhp@forte.com>
2968              Date: Thu, 22 Feb 2001 12:54:31 -0800 (PST)
2969              Message-ID: <Pine.OSF.4.10.10102221249170.47500-100000@aspara.forte.com>
2970      Branch: perl
2971            ! t/lib/st-06compat.t
2972 ____________________________________________________________________________
2973 [  8904] By: jhi                                   on 2001/02/23  01:42:39
2974         Log: Metaconfig unit change for #8903.
2975      Branch: metaconfig/U/perl
2976            ! Devel.U
2977 ____________________________________________________________________________
2978 [  8903] By: jhi                                   on 2001/02/23  01:42:12
2979         Log: Be more helpful for devel builders, suggested by John L. Allen.
2980      Branch: perl
2981            ! Configure
2982 ____________________________________________________________________________
2983 [  8902] By: jhi                                   on 2001/02/23  01:37:41
2984         Log: (Retracted by #8914)
2985              (Wrongly, reinstated by #8941)             
2986
2987              Subject:  [PATCH 5.7.0] don't zero CvFLAGS before checking for CvCONST!
2988              From: lane@DUPHY4.Physics.Drexel.Edu (Charles Lane)
2989              Date:     Thu, 22 Feb 2001 09:43:57 EST
2990              Message-Id: <010222094237.9d22e@DUPHY4.Physics.Drexel.Edu>
2991      Branch: perl
2992            ! op.c
2993 ____________________________________________________________________________
2994 [  8901] By: jhi                                   on 2001/02/23  01:20:32
2995         Log: Subject:  [PATCH perl 5.7.0] malloc message address offset
2996              From: lane@DUPHY4.Physics.Drexel.Edu (Charles Lane)
2997              Date:     Thu, 22 Feb 2001 08:01:35 EST
2998              Message-Id: <010222075625.9d22e@DUPHY4.Physics.Drexel.Edu>
2999      Branch: perl
3000            ! malloc.c
3001 ____________________________________________________________________________
3002 [  8900] By: jhi                                   on 2001/02/23  01:18:02
3003         Log: Integrate changes #8898,8899 from mainline, environ handling.
3004      Branch: maint-5.6/perl
3005           !> perl.c
3006 ____________________________________________________________________________
3007 [  8899] By: jhi                                   on 2001/02/23  01:16:25
3008         Log: Rewrite putenv() using my_setenv().  (In general the vendors'
3009              putenv() is not to be relied on, they are either broken or leaky
3010              or both.)
3011      Branch: perl
3012            ! perl.c
3013 ____________________________________________________________________________
3014 [  8898] By: jhi                                   on 2001/02/22  23:36:59
3015         Log: Fix #8803 as #8897 fixed #8896: with environ safesysmalloc()
3016              and safesysfree() must be used.
3017      Branch: perl
3018            ! perl.c
3019 ____________________________________________________________________________
3020 [  8897] By: jhi                                   on 2001/02/22  23:25:45
3021         Log: With environ one must use safesysmalloc()/safesysfree().
3022      Branch: perl
3023            ! perl.c
3024 ____________________________________________________________________________
3025 [  8896] By: jhi                                   on 2001/02/22  22:13:18
3026         Log: If we have a duplicated environment free it
3027              if PERL_DESTRUCT_LEVEL.
3028      Branch: perl
3029            ! perl.c
3030 ____________________________________________________________________________
3031 [  8895] By: alanbur                               on 2001/02/22  19:31:57
3032         Log: Synchronised with parent
3033      Branch: maint-5.6/pureperl
3034           !> embed.h embed.pl ext/POSIX/POSIX.xs lib/File/Temp.pm op.c
3035 ____________________________________________________________________________
3036 [  8894] By: gsar                                  on 2001/02/22  19:06:18
3037         Log: integrate changes#6162,6163 from mainline (missing leak fixes!)
3038              
3039              fix memory leak in method call optimization (change#3768);
3040              made C<eval "$x->foo()"> leak
3041              
3042              fix memory leak in C<eval "BEGIN {}"> (bug in change#4579)
3043      Branch: maint-5.6/perl
3044           !> op.c
3045 ____________________________________________________________________________
3046 [  8893] By: jhi                                   on 2001/02/22  18:35:27
3047         Log: (Retracted by #8915.)
3048              
3049              Third Degree finding:
3050              reading uninitialized local variable smallbuf + 8 bytes of Perl_gv_fetchfile
3051      Branch: perl
3052            ! gv.c
3053 ____________________________________________________________________________
3054 [  8892] By: jhi                                   on 2001/02/22  14:28:32
3055         Log: Update Changes.
3056      Branch: perl
3057            ! Changes patchlevel.h
3058 ____________________________________________________________________________
3059 [  8891] By: jhi                                   on 2001/02/22  13:22:45
3060         Log: Metaconfig unit changes for #8890.
3061      Branch: metaconfig
3062            ! U/modified/Cppsym.U U/threads/archname.U
3063 ____________________________________________________________________________
3064 [  8890] By: jhi                                   on 2001/02/22  13:22:12
3065         Log: Add -stdio to the archname if no perlio selected,
3066              no -perlio added since that is now the default.
3067              
3068              Add few CPUs/architectures to the Cppsym scan.
3069      Branch: perl
3070            ! Configure config_h.SH
3071 ____________________________________________________________________________
3072 [  8889] By: jhi                                   on 2001/02/22  13:05:59
3073         Log: Metaconfig unit change for #8888.
3074      Branch: metaconfig/U/perl
3075            ! useperlio.U
3076 ____________________________________________________________________________
3077 [  8888] By: jhi                                   on 2001/02/22  13:05:28
3078         Log: *drum roll*  Make perlio the default.
3079      Branch: perl
3080            ! Configure config_h.SH
3081 ____________________________________________________________________________
3082 [  8887] By: jhi                                   on 2001/02/22  12:50:52
3083         Log: Integrate change #8665 from maintperl to mainline,
3084              IA64-induced POSIX::SigSet masking with IVs instead of NVs.
3085      Branch: perl
3086           !> ext/POSIX/POSIX.xs
3087 ____________________________________________________________________________
3088 [  8886] By: jhi                                   on 2001/02/22  12:49:24
3089         Log: Integrate changes #8883,8884 from mainline to maintperl.
3090              
3091              Subject: [patch: perl@8867] embed.{h|pl} need not mention ebcdic_control ...
3092              Subject: Re: File::Temp::_gettemp warning
3093      Branch: maint-5.6/perl
3094           !> embed.h embed.pl lib/File/Temp.pm
3095 ____________________________________________________________________________
3096 [  8885] By: jhi                                   on 2001/02/22  12:43:59
3097         Log: Based on
3098              
3099              Subject: [ID 20010222.001] POSIX.xs IV vs NV bug
3100              From: schwab@suse.de
3101              Date: Thu, 22 Feb 2001 13:08:09 +0100
3102              Message-Id: <200102221208.f1MC89H09364@sykes.suse.de>
3103              
3104              but the fix done slightly differently because the other
3105              half was already done in #8664.
3106      Branch: maint-5.6/perl
3107            ! ext/POSIX/POSIX.xs
3108 ____________________________________________________________________________
3109 [  8884] By: jhi                                   on 2001/02/22  12:37:15
3110         Log: Subject: Re: File::Temp::_gettemp warning
3111              From: Tim Jenness <t.jenness@jach.hawaii.edu>
3112              Date: Wed, 21 Feb 2001 22:15:32 -1000 (HST)
3113              Message-ID: <Pine.LNX.4.30.0102212211190.18964-100000@lapaki.jach.hawaii.edu>
3114              
3115              This patch to File::Temp does two things:
3116              
3117              1. Fixes the problem with CGI::Carp when determining
3118              the Fcntl constants
3119              
3120              2. Removes most of the carps and consolidates them so that all the
3121              reasons are included in a single die that is caught by the test. This
3122              means that the correct skipping behaviour is displayed by the test.
3123      Branch: perl
3124            ! lib/File/Temp.pm
3125 ____________________________________________________________________________
3126 [  8883] By: jhi                                   on 2001/02/22  12:29:19
3127         Log: Subject: [patch: perl@8867] embed.{h|pl} need not mention ebcdic_control ...
3128              From: Peter Prymmer <pvhp@forte.com>
3129              Date: Wed, 21 Feb 2001 16:30:06 -0800 (PST)
3130              Message-ID: <Pine.OSF.4.10.10102211624490.12601-100000@aspara.forte.com>
3131      Branch: perl
3132            ! embed.h embed.pl
3133 ____________________________________________________________________________
3134 [  8882] By: jhi                                   on 2001/02/21  19:41:33
3135         Log: Integrate change #8881 from mainlin to maintperl.
3136              
3137              Subject:  [PATCH - perl8585] glob-in-eval memory leak fix
3138      Branch: maint-5.6/perl
3139           !> op.c
3140 ____________________________________________________________________________
3141 [  8881] By: jhi                                   on 2001/02/21  19:38:57
3142         Log: Subject:  [PATCH - perl8585] glob-in-eval memory leak fix
3143              From: lane@DUPHY4.Physics.Drexel.Edu (Charles Lane)
3144              Date:     Wed, 21 Feb 2001 13:08:03 EST
3145              Message-Id: <010221130721.7a2ab@DUPHY4.Physics.Drexel.Edu>
3146      Branch: perl
3147            ! op.c
3148 ____________________________________________________________________________
3149 [  8880] By: jhi                                   on 2001/02/21  19:34:34
3150         Log: Retract #8875, cannot let go of the old semantics of unpack U
3151              without rethinking utf8decode.t.
3152      Branch: perl
3153            ! pp.c t/op/pack.t
3154 ____________________________________________________________________________
3155 [  8879] By: jhi                                   on 2001/02/21  19:08:02
3156         Log: Run run/*.t also in minitest.
3157      Branch: perl
3158            ! Makefile.SH
3159 ____________________________________________________________________________
3160 [  8878] By: nick                                  on 2001/02/21  18:55:37
3161         Log: Integrate mainline
3162      Branch: perlio
3163           !> (integrate 76 files)
3164 ____________________________________________________________________________
3165 [  8877] By: jhi                                   on 2001/02/21  15:09:33
3166         Log: Fix the sys/fcntl.h problem reported by Peter Prymmer.
3167      Branch: metaconfig
3168            ! U/compline/nblock_io.U
3169      Branch: perl
3170            ! Configure config_h.SH
3171 ____________________________________________________________________________
3172 [  8876] By: jhi                                   on 2001/02/21  14:54:45
3173         Log: If no sfio, no -lsfio.
3174      Branch: metaconfig/U/perl
3175            ! d_sfio.U
3176      Branch: perl
3177            ! Configure config_h.SH
3178 ____________________________________________________________________________
3179 [  8875] By: jhi                                   on 2001/02/21  14:54:00
3180         Log: Make unpack C and unpack C truly equivalent.
3181      Branch: perl
3182            ! pp.c t/op/pack.t
3183 ____________________________________________________________________________
3184 [  8874] By: jhi                                   on 2001/02/21  14:26:02
3185         Log: Subject: [patch perl@8841] One URL update and a possible OS Version snag for perlport.pod
3186              From: Peter Prymmer <pvhp@forte.com>
3187              Date: Tue, 20 Feb 2001 14:51:55 -0800 (PST)
3188              Message-ID: <Pine.OSF.4.10.10102201447380.501692-100000@aspara.forte.com>
3189      Branch: perl
3190            ! pod/perlport.pod
3191 ____________________________________________________________________________
3192 [  8873] By: jhi                                   on 2001/02/21  14:24:31
3193         Log: Subject: [PATCH] fix for charnames above FFFF
3194              From: andreas.koenig@anima.de (Andreas J. Koenig)
3195              Date: 21 Feb 2001 07:05:45 +0100
3196              Message-ID: <m366i44ll2.fsf@ak-71.mind.de>
3197      Branch: perl
3198            ! lib/charnames.pm t/lib/charnames.t
3199 ____________________________________________________________________________
3200 [  8872] By: jhi                                   on 2001/02/21  14:15:25
3201         Log: Integrate change #8868 from pureperl to mainline.
3202              
3203              Fixed reference count loop caused by sv_magic.
3204      Branch: perl
3205           !> sv.c
3206 ____________________________________________________________________________
3207 [  8871] By: jhi                                   on 2001/02/21  14:07:29
3208         Log: Integrate change #8868 from pureperl to maintperl.
3209              
3210              Fixed reference count loop caused by sv_magic.
3211      Branch: maint-5.6/perl
3212           !> sv.c
3213 ____________________________________________________________________________
3214 [  8870] By: jhi                                   on 2001/02/21  14:04:41
3215         Log: Put back the #8840, it was innocent.
3216      Branch: perl
3217            ! embed.h embed.pl global.sym objXSUB.h perlapi.c
3218            ! pod/perlapi.pod pod/perlfunc.pod pod/perlguts.pod proto.h sv.c
3219 ____________________________________________________________________________
3220 [  8869] By: jhi                                   on 2001/02/21  14:00:03
3221         Log: unpack("C", ...) was left slightly unfinished by #8865.
3222      Branch: perl
3223            ! pp.c t/op/pack.t
3224 ____________________________________________________________________________
3225 [  8868] By: alanbur                               on 2001/02/21  01:33:45
3226         Log: Fixed reference count loop caused by sv_magic.  sv_magic is called
3227              from gv_fetchpv to create single-character magic variables (e.g. $!),
3228              and it is passed a sv and the gv that contains the sv as the mg_obj
3229              value.  When sv_magic stores the mg_obj pointer it increments the gv
3230              refcount, thus causing a sv-gv pair that can't be freed.  There is
3231              already a check for sv == obj which is used to prevent such reference
3232              loops.  This change extends the check to cover the case described above.
3233      Branch: maint-5.6/pureperl
3234            ! sv.c
3235 ____________________________________________________________________________
3236 [  8867] By: jhi                                   on 2001/02/21  00:52:39
3237         Log: Update Changes.
3238      Branch: perl
3239            ! Changes patchlevel.h
3240 ____________________________________________________________________________
3241 [  8866] By: jhi                                   on 2001/02/21  00:34:20
3242         Log: Upgrade to CGI.pm 2.752, from Lincoln Stein.
3243              (Note: there were some conflicts due to EBCDIC and EPOC
3244              patches, in general I preferred the repository code.)
3245              (When 2.753 comes out, we need to synchronize.)
3246      Branch: perl
3247            ! lib/CGI.pm lib/CGI/Carp.pm lib/CGI/Cookie.pm lib/CGI/Pretty.pm
3248            ! lib/CGI/Push.pm lib/CGI/Util.pm t/lib/cgi-form.t
3249            ! t/lib/cgi-html.t
3250 ____________________________________________________________________________
3251 [  8865] By: jhi                                   on 2001/02/21  00:24:22
3252         Log: Make pack("C", 0x100) to create Unicode, unless under the
3253              evil influence of 'use bytes'.  Similarly, unpack("C", ...)
3254              will understand Unicode, unless you under know what.
3255      Branch: perl
3256            ! pp.c t/op/pack.t t/op/qu.t
3257 ____________________________________________________________________________
3258 [  8864] By: alanbur                               on 2001/02/20  22:35:34
3259         Log: Resynchronised with parent
3260      Branch: maint-5.6/pureperl
3261           !> README.win32 ext/GDBM_File/GDBM_File.pm
3262           !> ext/NDBM_File/NDBM_File.pm ext/ODBM_File/ODBM_File.pm
3263           !> ext/SDBM_File/SDBM_File.pm handy.h lib/Test.pm makedef.pl mg.c
3264           !> pod/perlop.pod t/lib/gdbm.t t/lib/ndbm.t t/lib/odbm.t
3265           !> t/lib/sdbm.t util.c
3266 ____________________________________________________________________________
3267 [  8863] By: jhi                                   on 2001/02/20  20:55:11
3268         Log: Integrate change #8860,8861 from mainline into maintperl.
3269              
3270              "pseudo-literal j"
3271              
3272              Subject: [PATCH: 5.6.1 trial2 && perl@8807] workaround VMS I/O problem in Test.pm for bug ID 20010213.009
3273      Branch: maint-5.6/perl
3274           !> lib/Test.pm pod/perlop.pod
3275 ____________________________________________________________________________
3276 [  8862] By: jhi                                   on 2001/02/20  20:30:07
3277         Log: Don't do casting between pointers pointing to differently sized
3278              integers.
3279      Branch: perl
3280            ! hv.c sv.c
3281 ____________________________________________________________________________
3282 [  8861] By: jhi                                   on 2001/02/20  19:53:44
3283         Log: Subject: [PATCH: 5.6.1 trial2 && perl@8807] workaround VMS I/O problem in Test.pm for bug ID 20010213.009
3284              From: Peter Prymmer <pvhp@forte.com>
3285              Message-ID: <Pine.OSF.4.10.10102141617350.197219-100000@aspara.forte.com>
3286              Date: Wed, 14 Feb 2001 16:28:16 -0800 (PST)
3287      Branch: perl
3288            ! lib/Test.pm
3289 ____________________________________________________________________________
3290 [  8860] By: jhi                                   on 2001/02/20  19:48:02
3291         Log: "pseudo-literal j", a documentation glitch reported to Debian.
3292              The text recovered from Perl 5.005_03, and pseudo-literal replaced
3293              by "backtick string".
3294      Branch: perl
3295            ! pod/perlop.pod
3296 ____________________________________________________________________________
3297 [  8859] By: jhi                                   on 2001/02/20  19:15:46
3298         Log: Skip the Perl_sys_intern_clear and Perl_sys_intern_init,
3299              from Chris Nandor.
3300      Branch: perl
3301            ! makedef.pl
3302 ____________________________________________________________________________
3303 [  8858] By: jhi                                   on 2001/02/20  17:36:53
3304         Log: Integrate pureperl changes #8844,8845,8850 to mainline
3305              (via maintperl #8855).
3306              
3307              Fixed %^H scoping bug
3308              
3309              Removed GV <-> CV refcount loop
3310              
3311              Removed %ENV refcount loop
3312      Branch: perl
3313           !> gv.c op.c perl.c pp.c scope.c
3314 ____________________________________________________________________________
3315 [  8857] By: jhi                                   on 2001/02/20  17:34:32
3316         Log: Integrate changes #8853,8854 from maintperl to mainline.
3317              
3318              EBDIC fixes, README.win32 Borland update.
3319      Branch: perl
3320           !> README.win32 handy.h util.c
3321 ____________________________________________________________________________
3322 [  8856] By: jhi                                   on 2001/02/20  17:33:16
3323         Log: Integrate change #8848 from mainline to maintperl: ?DBM_File cleanup.
3324      Branch: maint-5.6/perl
3325           !> ext/GDBM_File/GDBM_File.pm ext/NDBM_File/NDBM_File.pm
3326           !> ext/ODBM_File/ODBM_File.pm ext/SDBM_File/SDBM_File.pm
3327           !> t/lib/gdbm.t t/lib/ndbm.t t/lib/odbm.t t/lib/sdbm.t
3328 ____________________________________________________________________________
3329 [  8855] By: jhi                                   on 2001/02/20  17:32:13
3330         Log: Integrate pureperl changes #8844,8845,8850 to maintperl.
3331              
3332              Fixed %^H scoping bug
3333              
3334              Removed GV <-> CV refcount loop
3335              
3336              Removed %ENV refcount loop
3337      Branch: maint-5.6/perl
3338           !> gv.c op.c perl.c pp.c scope.c
3339 ____________________________________________________________________________
3340 [  8854] By: jhi                                   on 2001/02/20  17:25:06
3341         Log: Subject: Addition to readme.win32 for Borland C++ compilers
3342              Date: Tue, 20 Feb 2001 02:15:25 +0300
3343              From: "Vadim Konovalov" <watman@inbox.ru>
3344              Message-ID: <011c01c09aca$93bbbec0$367b55c2@vad>
3345              
3346              Document Borland compiler misbehaviour.
3347      Branch: maint-5.6/perl
3348            ! README.win32
3349 ____________________________________________________________________________
3350 [  8853] By: jhi                                   on 2001/02/20  17:22:25
3351         Log: The assimilation of ebcdic.c didn't quite work at the first try,
3352              patches from Thomas Dorner.
3353      Branch: maint-5.6/perl
3354            ! handy.h util.c
3355 ____________________________________________________________________________
3356 [  8852] By: jhi                                   on 2001/02/20  17:20:15
3357         Log: Subject: [PATCH] More Mac OS patches for maint-5.6
3358              From: Chris Nandor <pudge@pobox.com>
3359              Date: Tue, 20 Feb 2001 08:32:45 -0500
3360              Message-Id: <p05010403b6b81ee8dca0@[10.0.1.177]>
3361      Branch: maint-5.6/perl
3362            ! makedef.pl mg.c
3363 ____________________________________________________________________________
3364 [  8851] By: jhi                                   on 2001/02/20  17:15:52
3365         Log: Filter::Util::Call update to 1.05, from Paul Marquess.
3366      Branch: perl
3367            ! ext/Filter/Util/Call/Call.pm t/lib/filter-util.pl
3368            ! t/lib/filter-util.t
3369 ____________________________________________________________________________
3370 [  8850] By: alanbur                               on 2001/02/20  17:12:40
3371         Log: Removed %ENV refcount loop.  Elements of %ENV are magical,
3372              and the magic pointer points back to the GV that contains the
3373              %ENV hash.  This creates a refcount loop that prevents members
3374              of %ENV from being freed correctly.  This change removes the
3375              refcount loop - the magic pointer was never used anyway, the
3376              only use of the magic was to check the type ('E') so that the
3377              appropriate environment manipulation code is called when %ENV
3378              is modified.
3379      Branch: maint-5.6/pureperl
3380            ! perl.c
3381 ____________________________________________________________________________
3382 [  8849] By: jhi                                   on 2001/02/20  17:12:20
3383         Log: Subject: [PATCH perl@8841] glob-basic.t, runenv.t fix-ups
3384              From: "Craig A. Berry" <craigberry@mac.com>
3385              Date: Mon, 19 Feb 2001 23:36:12 -0600
3386              Message-Id: <5.0.2.1.0.20010219230450.02762648@exchi01>
3387              
3388              Case-forgiving systems match TestInit.pm with TES*.
3389      Branch: perl
3390            ! t/lib/glob-basic.t
3391 ____________________________________________________________________________
3392 [  8848] By: jhi                                   on 2001/02/20  17:10:02
3393         Log: strict-w-proof the ?DBM_File, from Paul Marquess.
3394      Branch: perl
3395            ! ext/GDBM_File/GDBM_File.pm ext/NDBM_File/NDBM_File.pm
3396            ! ext/ODBM_File/ODBM_File.pm ext/SDBM_File/SDBM_File.pm
3397            ! t/lib/gdbm.t t/lib/ndbm.t t/lib/odbm.t t/lib/sdbm.t
3398 ____________________________________________________________________________
3399 [  8847] By: jhi                                   on 2001/02/20  15:34:41
3400         Log: The #8843 wasn't quite right: %Config needs to imported.
3401      Branch: perl
3402            ! t/run/runenv.t
3403 ____________________________________________________________________________
3404 [  8846] By: jhi                                   on 2001/02/20  15:31:50
3405         Log: Retract the #8838 and #8840 for now because of
3406              the DB_File tie problem.
3407      Branch: perl
3408            ! embed.h embed.pl global.sym lib/ExtUtils/xsubpp objXSUB.h
3409            ! perlapi.c pod/perlapi.pod pod/perlfunc.pod pod/perlguts.pod
3410            ! proto.h sv.c
3411 ____________________________________________________________________________
3412 [  8845] By: alanbur                               on 2001/02/20  14:25:41
3413         Log: Removed GV <-> CV refcount loop
3414              CvGV(mycv) points to the parent GV of the CV, and was previously
3415              refcounted.  The pointer remains, but the refcounting has been removed
3416              as it causes a refcount loop between the CV and GV that means the CV
3417              can't ever be deleted.
3418      Branch: maint-5.6/pureperl
3419            ! gv.c op.c pp.c
3420 ____________________________________________________________________________
3421 [  8844] By: alanbur                               on 2001/02/20  14:23:13
3422         Log: Fixed %^H scoping bug
3423      Branch: maint-5.6/pureperl
3424            ! scope.c
3425 ____________________________________________________________________________
3426 [  8843] By: jhi                                   on 2001/02/19  13:38:08
3427         Log: fork() not everywhere, cleanup temp files.
3428      Branch: perl
3429            ! t/run/runenv.t
3430 ____________________________________________________________________________
3431 [  8842] By: alanbur                               on 2001/02/19  12:42:07
3432         Log: Resynchronised with parent
3433      Branch: maint-5.6/pureperl
3434           !> pod/perlfaq4.pod sv.c utf8.c
3435 ____________________________________________________________________________
3436 [  8841] By: jhi                                   on 2001/02/19  03:35:51
3437         Log: Update Changes.
3438      Branch: perl
3439            ! Changes patchlevel.h
3440 ____________________________________________________________________________
3441 [  8840] By: jhi                                   on 2001/02/19  00:23:41
3442         Log: Subject: [patch] add sv_setref_uv
3443              From: Doug MacEachern <dougm@covalent.net>
3444              Date: Sun, 18 Feb 2001 14:49:33 -0800 (PST)
3445              Message-ID: <Pine.LNX.4.21.0102181448290.10021-100000@mako.covalent.net>
3446      Branch: perl
3447            ! embed.h embed.pl global.sym objXSUB.h perlapi.c
3448            ! pod/perlapi.pod pod/perlfunc.pod pod/perlguts.pod proto.h sv.c
3449 ____________________________________________________________________________
3450 [  8839] By: jhi                                   on 2001/02/19  00:01:38
3451         Log: Put to rest the 20010205.001, the email address checking (not) regex.
3452      Branch: perl
3453            ! pod/perlfaq9.pod
3454 ____________________________________________________________________________
3455 [  8838] By: jhi                                   on 2001/02/18  22:17:54
3456         Log: Subject: [patch] xsubpp: make sv_setref_* targetable
3457              From: Doug MacEachern <dougm@covalent.net>
3458              Date: Sun, 18 Feb 2001 12:58:23 -0800 (PST)
3459              Message-ID: <Pine.LNX.4.21.0102181256310.10021-100000@mako.covalent.net>
3460      Branch: perl
3461            ! lib/ExtUtils/xsubpp
3462 ____________________________________________________________________________
3463 [  8837] By: jhi                                   on 2001/02/18  22:16:50
3464         Log: Subject: [patch] -Wall cleanup round 2
3465              From: Doug MacEachern <dougm@covalent.net>
3466              Date: Sun, 18 Feb 2001 13:08:04 -0800 (PST)
3467              Message-ID: <Pine.LNX.4.21.0102181304520.10021-100000@mako.covalent.net>
3468      Branch: perl
3469            ! ext/B/B.xs ext/Data/Dumper/Dumper.xs ext/Devel/DProf/DProf.xs
3470            ! ext/Devel/Peek/Peek.xs ext/Fcntl/Fcntl.xs
3471            ! ext/File/Glob/Glob.xs ext/Filter/Util/Call/Call.xs
3472            ! ext/GDBM_File/GDBM_File.xs ext/IO/IO.xs ext/IPC/SysV/SysV.xs
3473            ! ext/Opcode/Opcode.xs ext/POSIX/POSIX.xs
3474            ! ext/SDBM_File/SDBM_File.xs
3475 ____________________________________________________________________________
3476 [  8836] By: jhi                                   on 2001/02/18  22:11:20
3477         Log: Misapplied regex optimizations when \C is present.
3478              Fixes 20001230.002.
3479              
3480              What still remains broken is that the submatches that
3481              have \C in them get their UTF8 flag on because their
3482              parent SV has it on.  This will result in malformed
3483              UTF8 if a \C happened to match a non-ASCII byte.
3484      Branch: perl
3485            ! regcomp.c regcomp.h regexec.c regexp.h t/op/pat.t
3486            ! t/pragma/utf8.t
3487 ____________________________________________________________________________
3488 [  8835] By: jhi                                   on 2001/02/18  20:12:02
3489         Log: Fix for "[ID 20010213.005] utf8 + localized hash elems + 64 bits?"
3490              
3491              The hash key got wrongly UTF8fied.
3492      Branch: perl
3493            ! pod/perlapi.pod toke.c utf8.c
3494 ____________________________________________________________________________
3495 [  8834] By: jhi                                   on 2001/02/18  19:44:25
3496         Log: Tweak on #8234 (Subject: Re: [PATCH] Warn on use of reference as array elem):
3497              don't warn on magical or overloaded things.
3498      Branch: perl
3499            ! pp_hot.c
3500 ____________________________________________________________________________
3501 [  8833] By: nick                                  on 2001/02/18  19:31:22
3502         Log: Integrate mainline
3503      Branch: perlio
3504           +> t/TestInit.pm t/run/runenv.t
3505            - t/UTEST
3506           !> MANIFEST Makefile.SH ext/Storable/ChangeLog
3507           !> ext/Storable/Storable.pm ext/Storable/Storable.xs
3508           !> lib/Test/Harness.pm perl.c pod/perlfaq4.pod sv.c t/TEST
3509           !> t/lib/charnames.t t/lib/glob-basic.t t/lib/st-06compat.t
3510           !> t/lib/st-overload.t t/lib/st-recurse.t t/lib/st-tiedhook.t
3511           !> t/op/chop.t t/op/eval.t t/op/regexp_noamp.t t/op/subst_wamp.t
3512           !> utf8.c
3513 ____________________________________________________________________________
3514 [  8832] By: jhi                                   on 2001/02/18  19:21:18
3515         Log: Integrate perlio.
3516      Branch: perl
3517           !> perlio.c pod/perldiag.pod
3518 ____________________________________________________________________________
3519 [  8831] By: jhi                                   on 2001/02/18  19:14:20
3520         Log: Integrate change #8827 from mainline.
3521              
3522              UTF8 tweaks.
3523      Branch: maint-5.6/perl
3524           !> sv.c utf8.c
3525 ____________________________________________________________________________
3526 [  8830] By: nick                                  on 2001/02/18  19:10:34
3527         Log: Apply the spirit of patch from Nick Clark:
3528              Subject: [PATCH] Re: extensions that provide layers
3529              From: Nicholas Clark <nick@ccl4.org>
3530              Date: Mon, 12 Feb 2001 16:43:51 +0000
3531              Message-Id: <20010212164350.Q3652@plum.flirble.org>
3532      Branch: perlio
3533            ! perlio.c pod/perldiag.pod
3534 ____________________________________________________________________________
3535 [  8829] By: jhi                                   on 2001/02/18  19:03:25
3536         Log: Subject: [PATCH t/TEST t/TestSetup.pm] Adding in TestSetup.pm to replace BEGIN  preamble on tests.
3537              From: schwern@pobox.com 
3538              Date: Sun, 18 Feb 2001 13:44:35 -0500
3539              Message-ID: <20010218134435.A17544@magnonel.guild.net>
3540              
3541              Applied, but as t/TestInit.pm.
3542      Branch: perl
3543            + t/TestInit.pm
3544            ! MANIFEST t/TEST t/op/eval.t t/op/regexp_noamp.t
3545            ! t/op/subst_wamp.t
3546 ____________________________________________________________________________
3547 [  8828] By: jhi                                   on 2001/02/18  18:43:52
3548         Log: Integrate perlio.
3549      Branch: perl
3550           !> perlio.c
3551 ____________________________________________________________________________
3552 [  8827] By: jhi                                   on 2001/02/18  18:41:33
3553         Log: UTF-8 tweaks.
3554      Branch: perl
3555            ! sv.c utf8.c
3556 ____________________________________________________________________________
3557 [  8826] By: nick                                  on 2001/02/18  17:40:59
3558         Log: Fix [ID 20010217.002]
3559              open FOO, "<:raw:perlio", ...
3560              :raw now inserts default base layer below itself.
3561              Also
3562              open FOO, "<:unix", ...
3563              works as well - but leaves buffer layer on stack under the unix layer.
3564      Branch: perlio
3565            ! perlio.c
3566 ____________________________________________________________________________
3567 [  8825] By: jhi                                   on 2001/02/18  17:15:39
3568         Log: Integrate perlio.
3569      Branch: perl
3570           !> perlio.c perliol.h
3571 ____________________________________________________________________________
3572 [  8824] By: jhi                                   on 2001/02/18  17:10:53
3573         Log: Subject: [PATCH t/TEST lib/Test/Harness.pm] Adding todo tests
3574              From: schwern@pobox.com
3575              Date: Sun, 18 Feb 2001 01:48:50 -0500
3576              Message-ID: <20010218014850.C19957@magnonel.guild.net>
3577      Branch: perl
3578            ! lib/Test/Harness.pm t/TEST t/op/chop.t
3579 ____________________________________________________________________________
3580 [  8823] By: jhi                                   on 2001/02/18  17:01:06
3581         Log: Add run/*.t to testables.
3582      Branch: perl
3583            ! t/TEST
3584 ____________________________________________________________________________
3585 [  8822] By: jhi                                   on 2001/02/18  16:58:58
3586         Log: Subject: [PATCH perl.c] Fixing PERL5OPT (was Re: Warnings, strict, and CPAN)
3587              From: schwern@pobox.com
3588              Date: Sun, 18 Feb 2001 01:11:35 -0500
3589              Message-ID: <20010218011135.A19957@magnonel.guild.net>
3590              
3591              Revive mjd's and Simon's PERL5OPT fix.
3592      Branch: perl
3593            + t/run/runenv.t
3594            ! MANIFEST perl.c
3595 ____________________________________________________________________________
3596 [  8821] By: jhi                                   on 2001/02/18  16:53:46
3597         Log: Subject: Re: Why t/TEST and not Test::Harness?
3598              From: schwern@pobox.com
3599              Date: Sat, 17 Feb 2001 22:44:44 -0500
3600              Message-ID: <20010217224444.A6679@magnonel.guild.net>
3601              
3602              Replace UTEST with TEST -utf8.
3603      Branch: perl
3604            - t/UTEST
3605            ! MANIFEST Makefile.SH t/TEST t/lib/charnames.t
3606            ! t/lib/glob-basic.t
3607 ____________________________________________________________________________
3608 [  8820] By: nick                                  on 2001/02/18  13:06:16
3609         Log: Clean up a few core dumps when layers are used in unexpected ways.
3610              (Still not "right"...)
3611      Branch: perlio
3612            ! perlio.c perliol.h
3613 ____________________________________________________________________________
3614 [  8819] By: jhi                                   on 2001/02/18  02:25:55
3615         Log: Integrate change #8818 from maintperl, a FAQ nit.
3616      Branch: perl
3617           !> pod/perlfaq4.pod
3618 ____________________________________________________________________________
3619 [  8818] By: jhi                                   on 2001/02/18  02:24:50
3620         Log: FAQ nit from Chris Fedde.
3621      Branch: maint-5.6/perl
3622            ! pod/perlfaq4.pod
3623 ____________________________________________________________________________
3624 [  8817] By: nick                                  on 2001/02/17  18:20:14
3625         Log: Integrate mainline
3626      Branch: perlio
3627           +> lib/unicode/UCD.html lib/unicode/Unicode.html
3628           +> lib/unicode/Unicode.txt lib/unicode/rename lib/unicode/version
3629           +> pod/perlclib.pod
3630            - ebcdic.c lib/unicode/UCD301.html lib/unicode/UCDFF301.html
3631            - lib/unicode/Unicode.301
3632           !> (integrate 324 files)
3633 ____________________________________________________________________________
3634 [  8816] By: jhi                                   on 2001/02/17  16:56:58
3635         Log: Upgrade to Storable 1.0.10, from Raphael Manfredi.
3636      Branch: perl
3637            ! ext/Storable/ChangeLog ext/Storable/Storable.pm
3638            ! ext/Storable/Storable.xs t/lib/st-06compat.t
3639            ! t/lib/st-overload.t t/lib/st-recurse.t t/lib/st-tiedhook.t
3640 ____________________________________________________________________________
3641 [  8815] By: jhi                                   on 2001/02/17  16:40:07
3642         Log: Subject: [patch] -Wall
3643              From: Doug MacEachern <dougm@covalent.net>
3644              Date: Fri, 16 Feb 2001 15:25:36 -0800 (PST)
3645              Message-ID: <Pine.LNX.4.21.0102161519500.30352-100000@mako.covalent.net>
3646      Branch: perl
3647            ! doio.c doop.c embed.h embed.pl gv.c objXSUB.h op.c perl.c
3648            ! perlapi.c pp_ctl.c pp_hot.c pp_sys.c proto.h sv.c toke.c
3649 ____________________________________________________________________________
3650 [  8814] By: jhi                                   on 2001/02/16  19:27:18
3651         Log: Document qu better.
3652      Branch: perl
3653            ! pod/perlop.pod
3654 ____________________________________________________________________________
3655 [  8813] By: jhi                                   on 2001/02/15  13:54:37
3656         Log: Subject: [PATCH @8807] toke.c cleanup: scan_str()
3657              From: Hugo <hv@crypt.compulink.co.uk>
3658              Date: Thu, 15 Feb 2001 13:39:49 +0000
3659              Message-Id: <200102151339.NAA32248@crypt.compulink.co.uk>
3660      Branch: perl
3661            ! toke.c
3662 ____________________________________________________________________________
3663 [  8812] By: alanbur                               on 2001/02/15  13:52:16
3664         Log: Resynchronised with parent
3665      Branch: maint-5.6/pureperl
3666            - ebcdic.c
3667           !> (integrate 36 files)
3668 ____________________________________________________________________________
3669 [  8811] By: jhi                                   on 2001/02/15  13:51:16
3670         Log: Integrate changes #8659,8702,8808,8809,8810 from maintperl.
3671              
3672              Subject: [PATCH 5.6.1-TRIAL? and 5.7.?] perldoc uses unescaped backslashes in filenames
3673              From: Jan Dubois <JanD@ActiveState.com>
3674              Date: Wed, 31 Jan 2001 21:17:03 -0800
3675              Message-ID: <8qrh7t069jt32m98sap53l9dfoge0vjrle@4ax.com>
3676              
3677              tweak change#8659 to keep it simple
3678              
3679              Subject: [PATCH 5.6.1-TRIAL2] perldoc.PL using install directories
3680              From: Russ Allbery <rra@stanford.edu>
3681              Date: 14 Feb 2001 10:15:41 -0800
3682              Message-ID: <ylzofpf7w2.fsf@windlord.stanford.edu>
3683              
3684              (8809 empty)
3685
3686              Upgrade to podlators 1.08, from Russ Allbery.
3687      Branch: perl
3688           !> lib/Pod/Man.pm lib/Pod/Text.pm lib/Test/Harness.pm
3689           !> utils/perldoc.PL
3690 ____________________________________________________________________________
3691 [  8810] By: jhi                                   on 2001/02/15  13:35:08
3692         Log: Upgrade to podlators 1.08, from Russ Allbery.
3693      Branch: maint-5.6/perl
3694            ! lib/Pod/Man.pm lib/Pod/Text.pm
3695 ____________________________________________________________________________
3696 [  8809] By: jhi                                   on 2001/02/15  13:26:38
3697         Log: (accidentally empty check-in)
3698      Branch: maint-5.6/perl
3699            ! lib/Test/Harness.pm
3700 ____________________________________________________________________________
3701 [  8808] By: jhi                                   on 2001/02/15  13:23:47
3702         Log: Subject: [PATCH 5.6.1-TRIAL2] perldoc.PL using install directories
3703              From: Russ Allbery <rra@stanford.edu>
3704              Date: 14 Feb 2001 10:15:41 -0800
3705              Message-ID: <ylzofpf7w2.fsf@windlord.stanford.edu>
3706              
3707              perldoc was hardcoding $Config{installscript}, which breaks
3708              when install* isn't where Perl ends up (such as with AFS).
3709              
3710              Use $Config{scriptdir} instead.
3711      Branch: maint-5.6/perl
3712            ! utils/perldoc.PL
3713 ____________________________________________________________________________
3714 [  8807] By: jhi                                   on 2001/02/14  14:37:27
3715         Log: Update Changes.
3716      Branch: perl
3717            ! Changes patchlevel.h
3718 ____________________________________________________________________________
3719 [  8806] By: jhi                                   on 2001/02/14  14:25:31
3720         Log: Integrate changes #8803,8804,8805 from mainline.
3721              
3722              Duplicate environment for JPL so that JDK 1.2/1.3 don't get upset.
3723              
3724              Don't skip too much of the locale error message if no environ array,
3725              from Chris Nandor.
3726              
3727              More MacOS Classic fixes from Chris Nandor.
3728      Branch: maint-5.6/perl
3729           !> doop.c lib/Cwd.pm perl.c perl.h util.c
3730 ____________________________________________________________________________
3731 [  8805] By: jhi                                   on 2001/02/14  03:29:01
3732         Log: More MacOS Classic fixes from Chris Nandor.
3733      Branch: perl
3734            ! doop.c lib/Cwd.pm
3735 ____________________________________________________________________________
3736 [  8804] By: jhi                                   on 2001/02/14  03:18:35
3737         Log: Don't skip too much of the locale error message if no environ array,
3738              from Chris Nandor.
3739      Branch: perl
3740            ! util.c
3741 ____________________________________________________________________________
3742 [  8803] By: jhi                                   on 2001/02/14  03:14:14
3743         Log: Duplicate environment for JPL so that JDK 1.2/1.3 don't get upset.
3744      Branch: perl
3745            ! perl.c perl.h
3746 ____________________________________________________________________________
3747 [  8802] By: jhi                                   on 2001/02/13  18:31:33
3748         Log: AUTHORS update.
3749      Branch: perl
3750            ! AUTHORS
3751 ____________________________________________________________________________
3752 [  8801] By: jhi                                   on 2001/02/13  17:55:19
3753         Log: Integrate change #8792 from mainline.
3754              
3755              Subject: buncha MacPerl patches for bleadperl
3756              From: Chris Nandor <pudge@pobox.com>
3757              Date: Tue, 13 Feb 2001 00:02:43 -0500
3758              Message-Id: <p05010404b6ae6f85e07a@[10.0.1.177]>
3759      Branch: maint-5.6/perl
3760           !> lib/AutoLoader.pm lib/AutoSplit.pm lib/ExtUtils/MakeMaker.pm
3761           !> lib/File/Basename.pm makedef.pl perl.c pp_ctl.c
3762           !> t/lib/basename.t toke.c util.h
3763 ____________________________________________________________________________
3764 [  8800] By: jhi                                   on 2001/02/13  17:46:43
3765         Log: When doing that Fpos_t used in PerlIO_getpos proto needs
3766              to be forced to Off_t.
3767              
3768              Subject: [ID 20010201.009] 5.6.1-TRIAL2 sfio build fails
3769              From: nick@ccl4.org
3770              Date: Thu, 1 Feb 2001 12:01:04 +0000
3771              Message-Id: <20010201120103.E11401@plum.flirble.org>
3772      Branch: maint-5.6/perl
3773            ! iperlsys.h perlio.c
3774 ____________________________________________________________________________
3775 [  8799] By: jhi                                   on 2001/02/13  16:52:51
3776         Log: Duplex duplex hunk hunk.
3777      Branch: maint-5.6/perl
3778            ! Makefile.SH
3779 ____________________________________________________________________________
3780 [  8797] By: jhi                                   on 2001/02/13  14:52:04
3781         Log: Subject: [PATCH perl@8773] integral ok lines for VMS
3782              From: "Craig A. Berry" <craigberry@mac.com>
3783              Date: Mon, 12 Feb 2001 11:05:25 -0600
3784              Message-Id: <p04330104b6ac5dfe6d45@[172.16.52.1]>
3785      Branch: perl
3786            ! t/lib/filehand.t t/lib/test-harness.t t/lib/texttabs.t
3787 ____________________________________________________________________________
3788 [  8796] By: jhi                                   on 2001/02/13  14:36:47
3789         Log: Subject: [ID 20010210.002] perldiag doesn't include the "Scalars leaked" message
3790              From: simon.cozens@pembroke.oxford.ac.uk 
3791              Date: Sat, 10 Feb 2001 17:57:02 +0000
3792              Message-Id: <E14ReGc-0005Pk-00@pembro26.pmb.ox.ac.uk>
3793              
3794              Now it does include.
3795      Branch: perl
3796            ! pod/perldiag.pod
3797 ____________________________________________________________________________
3798 [  8795] By: jhi                                   on 2001/02/13  14:30:11
3799         Log: Sort the MANIFEST.
3800      Branch: perl
3801            ! MANIFEST
3802 ____________________________________________________________________________
3803 [  8794] By: jhi                                   on 2001/02/13  14:26:51
3804         Log: Integrate change #8793 from mainline, FAQ updates.
3805      Branch: maint-5.6/perl
3806           !> pod/perlfaq5.pod pod/perlfaq6.pod pod/perlfaq9.pod
3807 ____________________________________________________________________________
3808 [  8793] By: jhi                                   on 2001/02/13  14:25:13
3809         Log: FAQ updates from Chris Fedde <chris@fedde.littleton.co.us>.
3810      Branch: perl
3811            ! pod/perlfaq5.pod pod/perlfaq6.pod pod/perlfaq9.pod
3812 ____________________________________________________________________________
3813 [  8792] By: jhi                                   on 2001/02/13  14:22:50
3814         Log: Subject: buncha MacPerl patches for bleadperl
3815              From: Chris Nandor <pudge@pobox.com>
3816              Date: Tue, 13 Feb 2001 00:02:43 -0500
3817              Message-Id: <p05010404b6ae6f85e07a@[10.0.1.177]>
3818      Branch: perl
3819            ! lib/AutoLoader.pm lib/AutoSplit.pm lib/ExtUtils/MakeMaker.pm
3820            ! lib/File/Basename.pm makedef.pl perl.c pp_ctl.c
3821            ! t/lib/basename.t toke.c util.h
3822 ____________________________________________________________________________
3823 [  8791] By: jhi                                   on 2001/02/13  14:10:39
3824         Log: Integrate change #8790 from mainline.
3825              
3826              environ array wrongly assumed in Perl_init_i18nl10n(),
3827      Branch: maint-5.6/perl
3828           !> util.c
3829 ____________________________________________________________________________
3830 [  8790] By: jhi                                   on 2001/02/13  14:06:15
3831         Log: environ array wrongly assumed in Perl_init_i18nl10n(),
3832              noticed by Chris Nandor in MacOS Classic.
3833      Branch: perl
3834            ! util.c
3835 ____________________________________________________________________________
3836 [  8789] By: jhi                                   on 2001/02/13  13:58:07
3837         Log: Integrate changes #8373,8487,8544,8783 from mainline.
3838              
3839              Synchronize the EBCDIC platforms (os390,posix-bc,vmesa):
3840              hints files, the dynaloading, assimilate ebcdic into util.c.
3841      Branch: maint-5.6/perl
3842            - ebcdic.c
3843            ! MANIFEST hints/posix-bc.sh
3844           !> Makefile.SH embed.h embed.pl ext/DynaLoader/dl_dllload.xs
3845           !> handy.h hints/os390.sh hints/vmesa.sh installperl objXSUB.h
3846           !> perlapi.c proto.h util.c
3847 ____________________________________________________________________________
3848 [  8788] By: alanbur                               on 2001/02/13  10:33:13
3849         Log: Integrated changes from maint-5.6
3850      Branch: maint-5.6/pureperl
3851           !> Makefile.SH README.vos hints/openbsd.sh pod/perlport.pod
3852           !> regcomp.c t/op/re_tests vos/Changes vos/build.cm
3853           !> vos/config.alpha.def vos/config.alpha.h vos/config.ga.def
3854           !> vos/config.ga.h vos/configure_perl.cm
3855 ____________________________________________________________________________
3856 [  8787] By: jhi                                   on 2001/02/13  05:56:36
3857         Log: Integrate change #8786 from maintperl, posix-bc byacc handling.
3858      Branch: perl
3859           !> Makefile.SH
3860 ____________________________________________________________________________
3861 [  8786] By: jhi                                   on 2001/02/13  05:54:34
3862         Log: Subject: perl@8671 on posix-bc aka BS2000 Posix (small Patch included!)
3863              From: Dorner Thomas <Thomas.Dorner@start.de>
3864              Date: Mon, 12 Feb 2001 15:06:26 +0100
3865              Message-ID: <6727B1DACFCDD311A757009027CA8D69010A8853@Ex02.inhouse.start.de>
3866      Branch: maint-5.6/perl
3867            ! Makefile.SH
3868 ____________________________________________________________________________
3869 [  8785] By: jhi                                   on 2001/02/13  05:29:04
3870         Log: Integrate change #8781 from maintperl, OpenBSD hints update.
3871      Branch: perl
3872           !> hints/openbsd.sh
3873 ____________________________________________________________________________
3874 [  8784] By: jhi                                   on 2001/02/13  02:25:24
3875         Log: Subject: [PATCH: perl@8773] small fixups to perlclib.pod
3876              From: Peter Prymmer <pvhp@forte.com>
3877              Date: Mon, 12 Feb 2001 18:23:09 -0800 (PST)
3878              Message-ID: <Pine.OSF.4.10.10102121821090.126445-100000@aspara.forte.com>
3879      Branch: perl
3880            ! pod/perlclib.pod
3881 ____________________________________________________________________________
3882 [  8783] By: jhi                                   on 2001/02/13  02:22:36
3883         Log: Merge ebcdic.c (only one function, ebcdic_control()) into util.c.
3884      Branch: perl
3885            - ebcdic.c
3886            ! MANIFEST embed.h embed.pl handy.h hints/os390.sh
3887            ! hints/posix-bc.sh hints/vmesa.sh objXSUB.h perlapi.c proto.h
3888            ! util.c
3889 ____________________________________________________________________________
3890 [  8782] By: jhi                                   on 2001/02/13  02:00:07
3891         Log: Add OpenBSD to the list of 5.6.1-okay platforms.
3892      Branch: maint-5.6/perl
3893            ! pod/perlport.pod
3894 ____________________________________________________________________________
3895 [  8781] By: jhi                                   on 2001/02/13  01:58:44
3896         Log: OpenBSD hints update for 5.6.1-TRIAL2 from Todd C. Miller.
3897      Branch: maint-5.6/perl
3898            ! hints/openbsd.sh
3899 ____________________________________________________________________________
3900 [  8780] By: jhi                                   on 2001/02/13  01:57:33
3901         Log: Synchronize the regexp tests between maintperl and mainline.
3902      Branch: maint-5.6/perl
3903           !> t/op/re_tests
3904 ____________________________________________________________________________
3905 [  8779] By: jhi                                   on 2001/02/13  01:49:35
3906         Log: Subject: Re: [ID 20010212.006] Core dump with /((?:hard|soft)cover)?/ 
3907              From: Hugo <hv@crypt.compulink.co.uk>
3908              Date: Tue, 13 Feb 2001 00:11:11 +0000
3909              Message-Id: <200102130011.AAA14310@crypt.compulink.co.uk>
3910      Branch: perl
3911            ! regcomp.c t/op/re_tests
3912 ____________________________________________________________________________
3913 [  8778] By: jhi                                   on 2001/02/13  00:23:10
3914         Log: Comments do not nest.
3915      Branch: perl
3916            ! perl.h
3917 ____________________________________________________________________________
3918 [  8777] By: jhi                                   on 2001/02/13  00:17:54
3919         Log: Subject: Re: [ID 20010212.006] Core dump with /((?:hard|soft)cover)?/ 
3920              From: Hugo <hv@crypt.compulink.co.uk>
3921              Date: Tue, 13 Feb 2001 00:11:11 +0000
3922              Message-Id: <200102130011.AAA14310@crypt.compulink.co.uk>
3923      Branch: maint-5.6/perl
3924            ! regcomp.c t/op/re_tests
3925 ____________________________________________________________________________
3926 [  8776] By: jhi                                   on 2001/02/12  23:25:52
3927         Log: Add VOS to the list of 5.6.1 known-to-be-working platforms.
3928      Branch: maint-5.6/perl
3929            ! pod/perlport.pod
3930 ____________________________________________________________________________
3931 [  8775] By: jhi                                   on 2001/02/12  23:04:28
3932         Log: VOS updates for 5.6-TRIAL2 from Paul Green.
3933      Branch: maint-5.6/perl
3934            ! README.vos vos/Changes vos/build.cm vos/config.alpha.def
3935            ! vos/config.alpha.h vos/config.ga.def vos/config.ga.h
3936            ! vos/configure_perl.cm
3937 ____________________________________________________________________________
3938 [  8774] By: jhi                                   on 2001/02/12  22:59:11
3939         Log: Subject: Re: [patch] context for 'U' magic functions
3940              From: Doug MacEachern <dougm@covalent.net>
3941              Date: Mon, 12 Feb 2001 09:22:45 -0800 (PST)
3942              Message-ID: <Pine.LNX.4.21.0102120919040.26437-100000@mako.covalent.net>
3943              
3944              plus the suggestion by Nick Ing-Simmons to name the macro
3945              as PERL_MG_UFUNC to avoid namespace pollution, plus add
3946              the advice by Doug for XS writers to perl.h
3947      Branch: perl
3948            ! mg.c perl.h
3949 ____________________________________________________________________________
3950 [  8773] By: jhi                                   on 2001/02/11  20:14:12
3951         Log: Update Changes.
3952      Branch: perl
3953            ! Changes patchlevel.h
3954 ____________________________________________________________________________
3955 [  8772] By: jhi                                   on 2001/02/11  18:47:52
3956         Log: Subject: Re: [PATCH] pod/perlclib.pod - Replacements for C library functions
3957              From: Simon Cozens <simon@cozens.net>
3958              Date: Wed, 31 Jan 2001 16:31:43 +0000
3959              Message-ID: <20010131163143.A1427@pembro26.pmb.ox.ac.uk>
3960      Branch: perl
3961            + pod/perlclib.pod
3962            ! MANIFEST pod/buildtoc.PL pod/perl.pod pod/perlguts.pod
3963            ! pod/perltoc.pod
3964 ____________________________________________________________________________
3965 [  8771] By: jhi                                   on 2001/02/11  18:36:48
3966         Log: Upgrade to Unicode 3.1 beta 2001-02-11.
3967              
3968              Blocks-4d3.beta.txt
3969              CaseFolding-3d4.beta.txt
3970              CompositionExclusions-3d6.beta.txt
3971              EastAsianWidth-4d4.beta.txt
3972              LineBreak-6d3.beta.txt
3973              NamesList-3.1.0d1.beta.txt
3974              PropList-3.1.0d4.beta.txt
3975              SpecialCasing-4d1.beta.txt
3976              UnicodeData-3.1.0d6.beta.txt
3977      Branch: perl
3978            + lib/unicode/Unicode.txt lib/unicode/rename lib/unicode/version
3979           +> lib/unicode/UCD.html lib/unicode/Unicode.html
3980            - lib/unicode/UCD301.html lib/unicode/UCDFF301.html
3981            - lib/unicode/Unicode.301
3982            ! (edit 257 files)
3983 ____________________________________________________________________________
3984 [  8770] By: jhi                                   on 2001/02/11  17:26:22
3985         Log: UTF-8 documentation.
3986      Branch: perl
3987            ! utf8.h
3988 ____________________________________________________________________________
3989 [  8769] By: jhi                                   on 2001/02/11  17:12:49
3990         Log: Retract #8762.
3991      Branch: perl
3992            ! regexec.c
3993 ____________________________________________________________________________
3994 [  8768] By: jhi                                   on 2001/02/11  16:54:45
3995         Log: Subject: [PATCH] Test::Harness
3996              From: andreas.koenig@anima.de (Andreas J. Koenig)
3997              Date: 11 Feb 2001 14:37:00 +0100
3998              Message-ID: <m3g0hll4sj.fsf@ak-71.mind.de>
3999      Branch: perl
4000            ! lib/Test/Harness.pm
4001 ____________________________________________________________________________
4002 [  8767] By: jhi                                   on 2001/02/11  16:53:52
4003         Log: Subject: [PATCH] Document makepatch in Porting/patching
4004              From: andreas.koenig@anima.de (Andreas J. Koenig)
4005              Date: 11 Feb 2001 16:46:28 +0100
4006              Message-ID: <m3bss9kysr.fsf@ak-71.mind.de>
4007      Branch: perl
4008            ! Porting/patching.pod
4009 ____________________________________________________________________________
4010 [  8766] By: jhi                                   on 2001/02/11  06:30:23
4011         Log: Subject: Re: [patch] GvSHARED
4012              Date: Sat, 10 Feb 2001 14:04:40 -0800 (PST)
4013              From: Doug MacEachern <dougm@covalent.net>
4014              Message-ID: <Pine.LNX.4.21.0102101356000.15298-100000@mako.covalent.net>
4015              
4016              Subject: Re: [patch] GvSHARED
4017              From: Doug MacEachern <dougm@covalent.net>
4018              Date: Sat, 10 Feb 2001 15:00:54 -0800 (PST)
4019              Message-ID: <Pine.LNX.4.21.0102101453220.15298-100000@mako.covalent.net>
4020              
4021              Subject: [patch] attributes.pm support for `shared'
4022              From: Doug MacEachern <dougm@covalent.net>
4023              Date: Sat, 10 Feb 2001 20:08:48 -0800 (PST)
4024              Message-ID: <Pine.LNX.4.21.0102102004190.15298-100000@mako.covalent.net>
4025              
4026              our() attributes were ignored, our :shared pieces missing,
4027              allow attributes.pm to turn on shared.
4028      Branch: perl
4029            ! op.c t/op/attrs.t toke.c xsutils.c
4030 ____________________________________________________________________________
4031 [  8765] By: alanbur                               on 2001/02/10  23:11:19
4032         Log: Resync with parent (hopefully sucessfully this time)
4033      Branch: maint-5.6/pureperl
4034           !> MANIFEST README.bs2000 README.hpux README.vmesa installhtml
4035           !> lib/Math/Complex.pm lib/Pod/Find.pm pod/buildtoc.PL
4036           !> pod/perl.pod pod/perlapi.pod pod/perlboot.pod pod/perlcall.pod
4037           !> pod/perlfaq2.pod pod/perlfaq3.pod pod/perlfaq9.pod
4038           !> pod/perlmodlib.PL pod/perlobj.pod pod/perlport.pod
4039           !> pod/perlre.pod pod/perltoc.pod pod/perltoot.pod
4040           !> pod/perltootc.pod win32/Makefile win32/makefile.mk
4041 ____________________________________________________________________________
4042 [  8764] By: jhi                                   on 2001/02/10  22:54:38
4043         Log: Make TEST and UTEST more verbose in case something goes
4044              wrong in running/compiling a script, suggested by Doug
4045              MacEachern.
4046      Branch: perl
4047            ! t/TEST t/UTEST
4048 ____________________________________________________________________________
4049 [  8763] By: jhi                                   on 2001/02/10  22:11:34
4050         Log: Bogus shebang.
4051      Branch: perl
4052            ! t/lib/texttabs.t
4053 ____________________________________________________________________________
4054 [  8762] By: jhi                                   on 2001/02/10  21:56:02
4055         Log: (Retracted by #8769)
4056      Branch: perl
4057            ! regexec.c
4058 ____________________________________________________________________________
4059 [  8761] By: jhi                                   on 2001/02/10  21:26:15
4060         Log: Subject: Re: [patch] GvSHARED 
4061              From: Doug MacEachern <dougm@covalent.net>
4062              Date: Sat, 10 Feb 2001 13:11:14 -0800 (PST)
4063              Message-ID: <Pine.LNX.4.21.0102101253070.15298-100000@mako.covalent.net>
4064              
4065              our @EXPORT : shared = (...);
4066      Branch: perl
4067            ! toke.c
4068 ____________________________________________________________________________
4069 [  8760] By: jhi                                   on 2001/02/10  21:25:07
4070         Log: Subject: [patch] GvSHARED
4071              From: Doug MacEachern <dougm@covalent.net>
4072              Date: Sat, 10 Feb 2001 10:57:12 -0800 (PST)
4073              Message-ID: <Pine.LNX.4.21.0102101047320.15298-100000@mako.covalent.net>
4074      Branch: perl
4075            ! embed.h embed.pl gv.c gv.h op.c pp_sys.c proto.h sv.c
4076 ____________________________________________________________________________
4077 [  8759] By: alanbur                               on 2001/02/10  21:24:27
4078         Log: Backed out mismerge.
4079      Branch: maint-5.6/pureperl
4080            ! MANIFEST README.hpux README.vmesa gv.c installhtml
4081            ! lib/Math/Complex.pm lib/Pod/Find.pm perl.c pod/buildtoc.PL
4082            ! pod/perl.pod pod/perlapi.pod pod/perlboot.pod pod/perlcall.pod
4083            ! pod/perlfaq2.pod pod/perlfaq3.pod pod/perlfaq9.pod
4084            ! pod/perlmodlib.PL pod/perlobj.pod pod/perlport.pod
4085            ! pod/perlre.pod pod/perltoc.pod pod/perltoot.pod
4086            ! pod/perltootc.pod sv.c win32/Makefile win32/makefile.mk
4087 ____________________________________________________________________________
4088 [  8758] By: jhi                                   on 2001/02/10  18:01:17
4089         Log: Integrate changes #8701,8704,8756 from pureperl to maintperl.
4090              
4091              Fixed UMRs and leak in Perl_pmtrans()
4092              
4093              Several leaks an UMRs fixed, mainly in the area of Perl_pmtrans and
4094              associated UTFied tr/// code.  Also fixed scoping leak of
4095              PL_reg_start_tmp.
4096              
4097              newATTRSUB leaks when an attempt to redefine the active sort sub is
4098              made.
4099      Branch: maint-5.6/perl
4100           !> op.c regcomp.c
4101 ____________________________________________________________________________
4102 [  8757] By: alanbur                               on 2001/02/10  17:56:46
4103         Log: Resynchronised with parent
4104      Branch: maint-5.6/pureperl
4105           +> README.bs2000
4106            - README.posix-bc
4107            ! gv.c perl.c sv.c
4108           !> MANIFEST README.hpux README.vmesa installhtml
4109           !> lib/Math/Complex.pm lib/Pod/Find.pm pod/buildtoc.PL
4110           !> pod/perl.pod pod/perlapi.pod pod/perlboot.pod pod/perlcall.pod
4111           !> pod/perlfaq2.pod pod/perlfaq3.pod pod/perlfaq9.pod
4112           !> pod/perlmodlib.PL pod/perlobj.pod pod/perlport.pod
4113           !> pod/perlre.pod pod/perltoc.pod pod/perltoot.pod
4114           !> pod/perltootc.pod win32/Makefile win32/makefile.mk
4115 ____________________________________________________________________________
4116 [  8756] By: alanbur                               on 2001/02/10  17:51:15
4117         Log: newATTRSUB leaks when an attempt to redefine the active sort sub is
4118              made.
4119      Branch: maint-5.6/pureperl
4120            ! op.c
4121 ____________________________________________________________________________
4122 [  8755] By: jhi                                   on 2001/02/09  22:41:35
4123         Log: Upgrade to CPAN 1.59_54, from Andreas König.
4124      Branch: perl
4125            ! lib/CPAN.pm lib/CPAN/FirstTime.pm
4126 ____________________________________________________________________________
4127 [  8754] By: jhi                                   on 2001/02/09  22:29:20
4128         Log: Upgrade to Text-Tabs+Wrap-2001.0131 from David Muir Sharnoff.
4129              
4130              Didn't upgrade the fill.t since it has a dependency to File::Slurp
4131              purely for debugging purposes, the actual test hasn't changed.
4132      Branch: perl
4133            ! lib/Text/Tabs.pm lib/Text/Wrap.pm t/lib/texttabs.t
4134            ! t/lib/textwrap.t
4135 ____________________________________________________________________________
4136 [  8753] By: jhi                                   on 2001/02/09  20:17:50
4137         Log: Integrate change #8682 from maintperl.
4138              
4139              IRIX hints fix from Scott Henry, get Configure -Dcc="cc -64 -mips3"
4140              to work correctly.
4141      Branch: perl
4142           !> hints/irix_6.sh
4143 ____________________________________________________________________________
4144 [  8752] By: jhi                                   on 2001/02/09  20:00:46
4145         Log: Update Changes.
4146      Branch: perl
4147            ! Changes patchlevel.h
4148 ____________________________________________________________________________
4149 [  8751] By: nick                                  on 2001/02/09  19:48:37
4150         Log: Integrate mainline
4151      Branch: perlio
4152           +> README.bs2000 t/lib/cgi-esc.t
4153            - README.posix-bc
4154           !> (integrate 53 files)
4155 ____________________________________________________________________________
4156 [  8750] By: nick                                  on 2001/02/09  19:25:16
4157         Log: Subject: RE: Biannual Competition to Improve Hashing Function
4158              From: Fisher Mark <fisherm@tce.com>
4159              Date: Thu, 8 Feb 2001 10:44:00 -0500
4160              Message-Id: <A5E22933E3D5D4118FFE00508BF373C706A52F@indyexch28.indy.tce.
4161              Date: Thu, 8 Feb 2001 15:02:47 -0500
4162              Message-Id: <A5E22933E3D5D4118FFE00508BF373C706A52B@indyexch28.indy.tce.
4163      Branch: perl
4164            ! hv.h pod/perldelta.pod t/lib/dumper.t t/pragma/warn/perl
4165 ____________________________________________________________________________
4166 [  8749] By: jhi                                   on 2001/02/09  19:02:35
4167         Log: Forgotten fragment.
4168      Branch: perl
4169            ! pod/perlapi.pod
4170 ____________________________________________________________________________
4171 [  8748] By: jhi                                   on 2001/02/09  18:31:34
4172         Log: Integrate changes #8673,8674,8676 from maintperl into mainline,
4173              plus manual tweakage.
4174              
4175              Sync the perlfaq2 between mainline and maintperl.
4176      Branch: maint-5.6/perl
4177            ! pod/perlfaq2.pod
4178      Branch: perl
4179           !> pod/perlfaq2.pod
4180 ____________________________________________________________________________
4181 [  8747] By: jhi                                   on 2001/02/09  18:12:04
4182         Log: Subject: versiononly and installperl
4183              From: abigail@foad.org
4184              Date: Wed, 7 Feb 2001 22:43:12 +0100
4185              Message-ID: <20010207214312.7045.qmail@foad.org>    
4186              
4187              Add +v flag to force a normal install of the perl binary
4188              and the utilities.
4189              
4190              Subject: [PATCH] installperl
4191              From: Nicholas Clark <nick@ccl4.org>
4192              Date: Fri, 9 Feb 2001 16:28:57 +0000
4193              Message-ID: <20010209162857.B10931@plum.flirble.org>
4194              
4195              Add -A flag which also hardlinks the binary with
4196              the full architecture name.
4197      Branch: perl
4198            ! installperl
4199 ____________________________________________________________________________
4200 [  8746] By: jhi                                   on 2001/02/09  18:03:43
4201         Log: Integrate changes #8699,8708,8709,8744,8745 from mainline.
4202              
4203              Subject: perlfaq2, re: perlmongers
4204              
4205              Subject: Re: [PATCH pod/[bt]ootc?.pod] Adding mention of useful CPAN modules
4206              
4207              Subject: [PATCH pod/perlmodlib.PL 5.6.1-TRIAL2] Up to date CPAN mirror list
4208              
4209              Subject: [ID 20010205.001] typo in perlfaq9
4210              
4211              Subject: [ID 20010208.002] unordered explanation in perlcall
4212      Branch: maint-5.6/perl
4213           !> pod/perlapi.pod pod/perlboot.pod pod/perlcall.pod
4214           !> pod/perlfaq2.pod pod/perlfaq9.pod pod/perlmodlib.PL
4215           !> pod/perlobj.pod pod/perltoot.pod pod/perltootc.pod
4216 ____________________________________________________________________________
4217 [  8745] By: jhi                                   on 2001/02/09  17:59:09
4218         Log: Subject: [ID 20010208.002] unordered explanation in perlcall
4219              From: abela@geneanet.org
4220              Date: Thu,  8 Feb 2001 16:11:46 +0100 (CET)
4221              Message-Id: <20010208151146.0937BC97E@little-roots.geneanet.org>
4222      Branch: perl
4223            ! pod/perlcall.pod
4224 ____________________________________________________________________________
4225 [  8744] By: jhi                                   on 2001/02/09  17:48:16
4226         Log: Subject: [ID 20010205.001] typo in perlfaq9
4227              From: eserte@vran.herceg.de
4228              Date: Sun, 4 Feb 2001 23:44:09 +0100 (CET)
4229              Message-Id: <200102042244.XAA21926@vran.herceg.de>
4230      Branch: perl
4231            ! pod/perlfaq9.pod
4232 ____________________________________________________________________________
4233 [  8743] By: jhi                                   on 2001/02/09  17:25:12
4234         Log: Integrate change #8695 from maintperl.
4235              
4236              thread.h tweak to enable 5005threads on HP-UX 10.20 with DCE threads
4237      Branch: perl
4238           !> thread.h
4239 ____________________________________________________________________________
4240 [  8742] By: jhi                                   on 2001/02/09  17:21:22
4241         Log: Subject: Re: [PATCH embed.pl] Forgot to add ./lib to @INC for File::Glob
4242              From: Andy Dougherty <doughera@lafayette.edu>
4243              Date: Mon, 5 Feb 2001 10:19:29 -0500 (EST)
4244              Message-ID: <Pine.SOL.4.10.10102051013380.11242-100000@maxwell.phys.lafayette.edu>
4245      Branch: perl
4246            ! embed.pl
4247 ____________________________________________________________________________
4248 [  8741] By: jhi                                   on 2001/02/09  17:05:19
4249         Log: Integrate changes #8738,8739,8740 from maintperl.
4250              
4251              Html files will be installed in a more logical and easier to
4252              find directory. E.g. c:\perl\html instead of c:\perl\lib\pod\html
4253              
4254              Html files will be generated with a header to make them look
4255              a little less bare.
4256              
4257              Subject: [PATCH perl-current] perlfaq3.pod, URL for vile
4258      Branch: perl
4259           !> installhtml pod/perlfaq3.pod win32/Makefile win32/makefile.mk
4260 ____________________________________________________________________________
4261 [  8740] By: jhi                                   on 2001/02/09  17:03:46
4262         Log: Subject: [PATCH perl-current] perlfaq3.pod, URL for vile
4263              From: "Brendan O'Dea" <bod@compusol.com.au>
4264              Date: Sun, 4 Feb 2001 11:17:56 +1100
4265              Message-ID: <20010204111756.A16301@compusol.com.au>
4266      Branch: maint-5.6/perl
4267            ! pod/perlfaq3.pod
4268 ____________________________________________________________________________
4269 [  8739] By: jhi                                   on 2001/02/09  17:01:59
4270         Log: Subject: [PATCH: perl-5.6.1-TRIAL2] installhtml change to build prettier html files
4271              From: "Indy Singh" <indy@nusphere.com>
4272              Date: Fri, 2 Feb 2001 15:09:59 -0500
4273              Message-ID: <02b601c08d54$23fd3560$d24b7018@cr637287a>
4274              
4275              Html files will be generated with a header to make them look
4276              a little less bare.
4277      Branch: maint-5.6/perl
4278            ! installhtml
4279 ____________________________________________________________________________
4280 [  8738] By: jhi                                   on 2001/02/09  16:58:48
4281         Log: Subject: [PATCH: perl-5.6.1-TRIAL2] Win32 Makefile change to move html directory
4282              From: "Indy Singh" <indy@nusphere.com>
4283              Date: Fri, 2 Feb 2001 15:08:23 -0500
4284              Message-ID: <02b501c08d53$ec354550$d24b7018@cr637287a>
4285              
4286              Html files will be installed in a more logical and easier to
4287              find directory. E.g. c:\perl\html instead of c:\perl\lib\pod\html
4288      Branch: maint-5.6/perl
4289            ! win32/Makefile win32/makefile.mk
4290 ____________________________________________________________________________
4291 [  8737] By: jhi                                   on 2001/02/09  16:46:54
4292         Log: Integrate changes #8687,8736 from maintperl.
4293              
4294              HP-UX thread patches from Merijn H. Brand.
4295              
4296              Latin nit from Philip Newton.
4297      Branch: perl
4298           !> README.hpux hints/hpux.sh
4299 ____________________________________________________________________________
4300 [  8736] By: jhi                                   on 2001/02/09  16:42:31
4301         Log: Latin nit from Philip Newton.
4302      Branch: maint-5.6/perl
4303            ! README.hpux
4304 ____________________________________________________________________________
4305 [  8735] By: jhi                                   on 2001/02/09  16:24:03
4306         Log: Integrate changes #8704,8710 from pureperl.
4307              
4308              Fixed UMRs and leak in Perl_pmtrans()
4309              
4310              Several leaks an UMRs fixed, mainly in the area of Perl_pmtrans and
4311              associated UTFied tr/// code.  Also fixed scoping leak of
4312              PL_reg_start_tmp.
4313      Branch: perl
4314           !> op.c regcomp.c
4315 ____________________________________________________________________________
4316 [  8734] By: jhi                                   on 2001/02/09  15:40:21
4317         Log: Integrate change #8733 from maintperl.
4318              
4319              Subject: Re: [PATCH: 5.6.1 trial 2 && perl@8671] some coded char set issues in perlre.pod
4320      Branch: perl
4321           !> pod/perlre.pod
4322 ____________________________________________________________________________
4323 [  8733] By: jhi                                   on 2001/02/09  15:35:47
4324         Log: Subject: Re: [PATCH: 5.6.1 trial 2 && perl@8671] some coded char set issues in perlre.pod
4325              From: Prymmer/Kahn <pvhp@best.com>
4326              Date: Thu, 8 Feb 2001 21:21:22 -0800 (PST)
4327              Message-ID: <Pine.BSF.4.21.0102082048360.1499-100000@shell8.ba.best.com>
4328      Branch: maint-5.6/perl
4329            ! pod/perlre.pod
4330 ____________________________________________________________________________
4331 [  8732] By: jhi                                   on 2001/02/09  15:26:17
4332         Log: Rename README.posix-bc to README.bs2000 (to avoid the
4333              confusion of a "perlposix-bc.pod"), add a few missing
4334              arch pods, regen toc.
4335      Branch: maint-5.6/perl
4336           +> README.bs2000
4337            - README.posix-bc
4338            ! MANIFEST pod/buildtoc.PL pod/perl.pod pod/perlport.pod
4339            ! pod/perltoc.pod win32/Makefile win32/makefile.mk
4340 ____________________________________________________________________________
4341 [  8731] By: jhi                                   on 2001/02/09  15:23:39
4342         Log: De-cut-and-pasto.
4343      Branch: perl
4344            ! pod/perl.pod
4345 ____________________________________________________________________________
4346 [  8730] By: jhi                                   on 2001/02/09  15:11:13
4347         Log: Rename README.posix-bc to README.bs2000 to avoid confusion
4348              when people think that perlposix-bc.pod tells anything about
4349              Perl and POSIX.  Regen toc.
4350      Branch: perl
4351           +> README.bs2000
4352            - README.posix-bc
4353            ! MANIFEST pod/buildtoc.PL pod/perl.pod pod/perlport.pod
4354            ! pod/perltoc.pod win32/Makefile win32/makefile.mk
4355 ____________________________________________________________________________
4356 [  8729] By: jhi                                   on 2001/02/09  14:52:28
4357         Log: The README.vmesa part of #8712 from maintperl.
4358      Branch: perl
4359            ! README.vmesa
4360 ____________________________________________________________________________
4361 [  8728] By: jhi                                   on 2001/02/09  14:46:06
4362         Log: Subject: [PATCH: 5.6.1 trial 2 && perl@8671] podify README.vmesa
4363              From: Peter Prymmer <pvhp@forte.com>
4364              Date: Thu, 8 Feb 2001 13:00:30 -0800 (PST)
4365              Message-ID: <Pine.OSF.4.10.10102081246030.445810-100000@aspara.forte.com>
4366      Branch: maint-5.6/perl
4367            ! README.vmesa win32/Makefile win32/makefile.mk
4368 ____________________________________________________________________________
4369 [  8727] By: jhi                                   on 2001/02/09  14:33:25
4370         Log: Integrate change #8712 from mainline.
4371              
4372              [PATCH: perl-5.6.1 trial2 && perl@8671] VMS specific simplification for Pod::Find
4373      Branch: maint-5.6/perl
4374           !> lib/Pod/Find.pm
4375 ____________________________________________________________________________
4376 [  8726] By: jhi                                   on 2001/02/09  14:30:28
4377         Log: Subject: [PATCH: 5.6.1 trial2 && perl@8671] provide EBCDIC CGI::Util::escape() and test
4378              From: Peter Prymmer <pvhp@forte.com>
4379              Date: Mon, 5 Feb 2001 16:26:36 -0800 (PST)
4380              Message-ID: <Pine.OSF.4.10.10102051615260.280619-100000@aspara.forte.com>
4381      Branch: perl
4382            + t/lib/cgi-esc.t
4383            ! MANIFEST lib/CGI/Util.pm
4384 ____________________________________________________________________________
4385 [  8725] By: jhi                                   on 2001/02/09  04:56:47
4386         Log: Add NonStopUX to the list of 5.6.1-proven platforms.
4387      Branch: maint-5.6/perl
4388            ! pod/perlport.pod
4389 ____________________________________________________________________________
4390 [  8724] By: jhi                                   on 2001/02/09  04:40:59
4391         Log: Integrate changes 7819,7820 from vmsperl into mainline.
4392              
4393              Add header for LIB$ prototypes (C. Berry)
4394              
4395              Convert fwrite()s to sockets to write()s, since some socket stacks
4396              don't take kindly to stdio.
4397              Ignore "expected" SS$_NOLOGNAM when doing internal LNM lookups
4398              (for often optional LNMs)
4399              Correct a few typos
4400              (C. Bailey)
4401      Branch: perl
4402           !> ext/Devel/DProf/DProf.xs vms/vms.c vms/vmsish.h
4403 ____________________________________________________________________________
4404 [  8723] By: jhi                                   on 2001/02/09  03:29:29
4405         Log: Integrate change #8722 from mainline.
4406              
4407              The Im() function wasn't returning zero for non-Math::Complex
4408              arguments.  The bug reported by John Gamble.
4409      Branch: maint-5.6/perl
4410           !> lib/Math/Complex.pm
4411 ____________________________________________________________________________
4412 [  8722] By: jhi                                   on 2001/02/09  03:28:33
4413         Log: The Im() function wasn't returning zero for non-Math::Complex
4414              arguments.  The bug reported by John Gamble.
4415      Branch: perl
4416            ! lib/Math/Complex.pm
4417 ____________________________________________________________________________
4418 [  8721] By: nick                                  on 2001/02/08  22:11:35
4419         Log: Correct the correction :-(
4420      Branch: perl
4421            ! perl.c
4422 ____________________________________________________________________________
4423 [  8720] By: bailey                                on 2001/02/08  20:59:22
4424         Log: Convert frwite()s to sockets to write()s, since some socket stacks
4425              don't take kindly to stdio.
4426              Ignore "expected" SS$_NOLOGNAM when doing internal LNM lookups
4427              (for often optional LNMs)
4428              Correct a few typos
4429              (C. Bailey)
4430      Branch: vmsperl
4431            ! vms/vms.c vms/vmsish.h
4432 ____________________________________________________________________________
4433 [  8719] By: bailey                                on 2001/02/08  20:51:02
4434         Log: Add header for LIB$ prototypes (C. Berry)
4435      Branch: vmsperl
4436            ! ext/Devel/DProf/DProf.xs
4437 ____________________________________________________________________________
4438 [  8718] By: bailey                                on 2001/02/08  20:49:00
4439         Log: SYN SYN
4440      Branch: vmsperl
4441           +> pod/perliol.pod t/lib/sample-tests/bailout
4442           +> t/lib/sample-tests/combined t/lib/sample-tests/descriptive
4443           +> t/lib/sample-tests/duplicates t/lib/sample-tests/header_at_end
4444           +> t/lib/sample-tests/no_nums t/lib/sample-tests/simple
4445           +> t/lib/sample-tests/simple_fail t/lib/sample-tests/skip
4446           +> t/lib/sample-tests/skip_all t/lib/sample-tests/todo
4447           +> t/lib/sample-tests/with_comments t/lib/test-harness.t
4448            - lib/unicode/Is/DCinital.pl
4449           !> (integrate 101 files)
4450 ____________________________________________________________________________
4451 [  8717] By: nick                                  on 2001/02/08  19:38:48
4452         Log: Subject: [PATCH CPAN 1.59_51] warning message (not!)
4453              From: Robin Barker <rmb1@cise.npl.co.uk>
4454              Date: Thu, 8 Feb 2001 14:38:07 GMT
4455              Message-Id: <200102081438.OAA20498@tempest.npl.co.uk>
4456      Branch: perl
4457            ! lib/CPAN.pm
4458 ____________________________________________________________________________
4459 [  8716] By: nick                                  on 2001/02/08  19:29:07
4460         Log: Generated files form 8713 etc.
4461      Branch: perl
4462            ! embed.h global.sym objXSUB.h perlapi.c proto.h
4463 ____________________________________________________________________________
4464 [  8715] By: nick                                  on 2001/02/08  19:26:08
4465         Log: Fixup non-ithread build after 8713
4466      Branch: perl
4467            ! perl.c
4468 ____________________________________________________________________________
4469 [  8714] By: nick                                  on 2001/02/08  19:17:45
4470         Log: Subject: [ID 20010206.010] S_ functions not declared STATIC
4471              From: nick@ccl4.org
4472              Date: Wed, 7 Feb 2001 00:27:47 +0000
4473              Message-Id: <20010207002747.B63724@plum.flirble.org>
4474      Branch: perl
4475            ! sv.c toke.c
4476 ____________________________________________________________________________
4477 [  8713] By: nick                                  on 2001/02/08  19:15:58
4478         Log: Subject: Re: [patch] Re: PL_ptr_table
4479              From: Doug Maceachern <dougm@covalent.net>
4480              Date: Wed, 7 Feb 2001 19:18:52 -0800 (PST)
4481              Message-Id: <Pine.LNX.4.21.0102071916270.29229-100000@mako.covalent.net>
4482      Branch: perl
4483            ! embed.pl perl.c sv.c sv.h
4484 ____________________________________________________________________________
4485 [  8712] By: nick                                  on 2001/02/08  19:12:47
4486         Log: Subject: [PATCH: perl-5.6.1 trial2 && perl@8671] VMS specific simplificationfor Pod::Find
4487              From: Peter Prymmer <pvhp@forte.com>
4488              Date: Wed, 7 Feb 2001 17:07:39 -0800 (PST)
4489              Message-Id: <Pine.OSF.4.10.10102071704150.411763-100000@aspara.forte.com
4490      Branch: perl
4491            ! lib/Pod/Find.pm
4492 ____________________________________________________________________________
4493 [  8711] By: nick                                  on 2001/02/07  21:06:11
4494         Log: Manually appliued version for dev branch of Alan/Sarathy 5.6 patch.
4495              Subject: Re: Incorrect scoping of PL_reg_start_tmp causes leak
4496              From: Alan Burlison <Alan.Burlison@uk.sun.com>
4497              Date: Tue, 06 Feb 2001 23:37:01 +0000
4498              Message-Id: <3A808A9D.20F7A035@uk.sun.com>
4499      Branch: perl
4500            ! regcomp.c
4501 ____________________________________________________________________________
4502 [  8710] By: alanbur                               on 2001/02/07  00:22:04
4503         Log: Several leaks an UMRs fixed, mainly in the area of Perl_pmtrans and
4504              associated UTFied tr/// code.  Also fixed scoping leak of
4505              PL_reg_start_tmp.
4506      Branch: maint-5.6/pureperl
4507            ! op.c regcomp.c
4508 ____________________________________________________________________________
4509 [  8709] By: nick                                  on 2001/02/06  21:16:49
4510         Log: Subject: [PATCH pod/perlmodlib.PL 5.6.1-TRIAL2] Up to date CPAN mirror list
4511              From: Michael G Schwern <schwern@pobox.com>
4512              Date: Sun, 4 Feb 2001 19:47:14 -0500
4513              Message-Id: <20010204194714.A4698@blackrider.aocn.com>
4514      Branch: perl
4515            ! pod/perlapi.pod pod/perlmodlib.PL
4516 ____________________________________________________________________________
4517 [  8708] By: nick                                  on 2001/02/06  20:41:20
4518         Log: Subject: Re: [PATCH pod/[bt]ootc?.pod] Adding mention of useful CPAN modules
4519              From: Michael G Schwern <schwern@pobox.com>
4520              Date: Sun, 4 Feb 2001 21:17:49 -0500
4521              Message-Id: <20010204211748.A13415@blackrider.aocn.com>
4522      Branch: perl
4523            ! pod/perlboot.pod pod/perlobj.pod pod/perltoot.pod
4524            ! pod/perltootc.pod
4525 ____________________________________________________________________________
4526 [  8707] By: nick                                  on 2001/02/06  20:29:11
4527         Log: Subject: [PATCH lib/ExtUtils/MANIFEST.SKIP] Skipping CVS conflict backup files
4528              From: Michael G Schwern <schwern@pobox.com>
4529              Date: Tue, 6 Feb 2001 05:54:30 -0500
4530              Message-Id: <20010206055430.A951@blackrider.aocn.com>
4531      Branch: perl
4532            ! lib/ExtUtils/MANIFEST.SKIP lib/ExtUtils/Manifest.pm
4533 ____________________________________________________________________________
4534 [  8706] By: nick                                  on 2001/02/06  20:21:40
4535         Log: Subject: RE: some win32 fixes
4536              Date: Tue, 6 Feb 2001 09:23:20 +0300
4537              From: Vadim Konovalov <vkonovalov@lucent.com>
4538              Message-ID: <402099F49BEED211999700805FC7359F9CAF49@ru0028exch01.spb.lucent.com>
4539      Branch: perl
4540            ! toke.c win32/Makefile win32/config.bc win32/config.gc
4541            ! win32/config.vc win32/config_H.bc win32/makefile.mk
4542 ____________________________________________________________________________
4543 [  8705] By: alanbur                               on 2001/02/06  15:00:03
4544         Log: Synchronised with parent
4545      Branch: maint-5.6/pureperl
4546            ! regexec.c
4547           !> t/lib/db-btree.t t/lib/db-hash.t t/lib/db-recno.t
4548           !> utils/perldoc.PL win32/Makefile win32/makefile.mk
4549 ____________________________________________________________________________
4550 [  8704] By: alanbur                               on 2001/02/06  14:55:24
4551         Log: Fixed UMRs and leak in Perl_pmtrans()
4552      Branch: maint-5.6/pureperl
4553            ! op.c
4554 ____________________________________________________________________________
4555 [  8703] By: gsar                                  on 2001/02/06  02:29:37
4556         Log: $(MAKE) distclean doesn't clean up properly on windows
4557      Branch: maint-5.6/perl
4558            ! win32/Makefile win32/makefile.mk
4559 ____________________________________________________________________________
4560 [  8702] By: gsar                                  on 2001/02/06  01:00:46
4561         Log: tweak change#8659 to keep it simple
4562      Branch: maint-5.6/perl
4563            ! utils/perldoc.PL
4564 ____________________________________________________________________________
4565 [  8701] By: gsar                                  on 2001/02/05  22:45:41
4566         Log: change#8693 was missing testsuite changes
4567      Branch: maint-5.6/perl
4568           !> t/lib/db-btree.t t/lib/db-hash.t t/lib/db-recno.t
4569 ____________________________________________________________________________
4570 [  8700] By: nick                                  on 2001/02/05  20:32:52
4571         Log: Integrate mainline
4572      Branch: perlio
4573           +> t/lib/sample-tests/bailout t/lib/sample-tests/combined
4574           +> t/lib/sample-tests/descriptive t/lib/sample-tests/duplicates
4575           +> t/lib/sample-tests/header_at_end t/lib/sample-tests/no_nums
4576           +> t/lib/sample-tests/simple t/lib/sample-tests/simple_fail
4577           +> t/lib/sample-tests/skip t/lib/sample-tests/skip_all
4578           +> t/lib/sample-tests/todo t/lib/sample-tests/with_comments
4579           +> t/lib/test-harness.t
4580           !> Configure MANIFEST lib/Test/Harness.pm lib/overload.pm
4581           !> perlio.c pod/perldiag.pod pod/perlfaq2.pod pod/perlfaq8.pod
4582           !> pod/perlfunc.pod pod/perlop.pod pod/perlport.pod
4583           !> pod/perlutil.pod t/TEST utils/h2xs.PL
4584 ____________________________________________________________________________
4585 [  8699] By: nick                                  on 2001/02/05  19:41:07
4586         Log: Subject: perlfaq2, re: perlmongers
4587              From: David H. Adler <dha@panix.com>
4588              Date: Sun, 4 Feb 2001 23:48:23 -0500
4589              Message-Id: <20010204234823.A13429@panix.com>
4590      Branch: perl
4591            ! pod/perlfaq2.pod
4592 ____________________________________________________________________________
4593 [  8698] By: nick                                  on 2001/02/05  19:39:31
4594         Log: Missed file f#rom the testharness mess.
4595      Branch: perl
4596            + t/lib/test-harness.t
4597 ____________________________________________________________________________
4598 [  8697] By: nick                                  on 2001/02/05  19:37:21
4599         Log: Subject: [DOC PATCH] overload.pm nits
4600              From: John Tobey <jtobey@john-edwin-tobey.org>
4601              Date: Sun, 4 Feb 2001 20:40:47 -0500 (EST)
4602              Message-Id: <m14Pae7-000FOoC@feynman.localnet>
4603      Branch: perl
4604            ! lib/overload.pm
4605 ____________________________________________________________________________
4606 [  8696] By: alanbur                               on 2001/02/05  11:56:00
4607         Log: Sync with parent
4608      Branch: maint-5.6/pureperl
4609           !> thread.h
4610 ____________________________________________________________________________
4611 [  8695] By: gsar                                  on 2001/02/05  03:27:34
4612         Log: thread.h tweak to enable 5005threads on HP-UX 10.20 with DCE threads
4613      Branch: maint-5.6/perl
4614            ! thread.h
4615 ____________________________________________________________________________
4616 [  8694] By: alanbur                               on 2001/02/05  00:07:47
4617         Log: Initial branch creation from //depot/maint-5.6/perl
4618      Branch: maint-5.6/pureperl
4619           +> (branch 1719 files)
4620 ____________________________________________________________________________
4621 [  8693] By: gsar                                  on 2001/02/04  22:38:49
4622         Log: integrate changes#7801,8068,8094,8108,8196 from mainline (DB_File
4623              changes)
4624      Branch: maint-5.6/perl
4625           !> ext/DB_File/Changes ext/DB_File/DB_File.pm
4626           !> ext/DB_File/DB_File.xs ext/DB_File/dbinfo ext/DB_File/typemap
4627           !> ext/DB_File/version.c
4628 ____________________________________________________________________________
4629 [  8692] By: nick                                  on 2001/02/04  18:15:57
4630         Log: The missed t/TEST part of the grand testharness upgrade.
4631      Branch: perl
4632            ! t/TEST
4633 ____________________________________________________________________________
4634 [  8691] By: nick                                  on 2001/02/04  18:05:17
4635         Log: New improved test harness
4636              Subject: Re: [PATCH Test::Harness] Third time's a charm?
4637              From: Michael G Schwern <schwern@pobox.com>
4638              Date: Sun, 4 Feb 2001 08:01:20 -0500
4639              Message-Id: <20010204080120.G10493@blackrider.aocn.com>
4640      Branch: perl
4641            + t/lib/sample-tests/bailout t/lib/sample-tests/combined
4642            + t/lib/sample-tests/descriptive t/lib/sample-tests/duplicates
4643            + t/lib/sample-tests/header_at_end t/lib/sample-tests/no_nums
4644            + t/lib/sample-tests/simple t/lib/sample-tests/simple_fail
4645            + t/lib/sample-tests/skip t/lib/sample-tests/skip_all
4646            + t/lib/sample-tests/todo t/lib/sample-tests/with_comments
4647            ! MANIFEST lib/Test/Harness.pm
4648 ____________________________________________________________________________
4649 [  8690] By: nick                                  on 2001/02/04  17:57:51
4650         Log: Subject: [PATCH h2xs.PL perl@8670] Small usage change and author gueesing
4651              From: Jonathan Stowe <gellyfish@gellyfish.com>
4652              Date: Sun, 4 Feb 2001 10:46:01 +0000 (GMT)
4653              Message-Id: <Pine.LNX.4.32.0102041037510.1555-100000@orpheus.gellyfish.com>
4654      Branch: perl
4655            ! utils/h2xs.PL
4656 ____________________________________________________________________________
4657 [  8689] By: nick                                  on 2001/02/04  17:55:24
4658         Log: Subject: Re: [PATCH lots of pod/] s/chop/chomp/g
4659              From: Michael G Schwern <schwern@pobox.com>
4660              Date: Sat, 3 Feb 2001 22:46:38 -0500
4661              Message-Id: <20010203224638.E10493@blackrider.aocn.com>
4662      Branch: perl
4663            ! pod/perldiag.pod pod/perlfaq8.pod pod/perlfunc.pod
4664            ! pod/perlop.pod pod/perlport.pod pod/perlutil.pod
4665 ____________________________________________________________________________
4666 [  8688] By: nick                                  on 2001/02/04  17:43:55
4667         Log: Subject: [ID 20010203.006] perlio.c is mis-reporting argument
4668              length byfailing to spot lack of closing )
4669              From: nick@talking.bollo.cx
4670              Date: Sat, 03 Feb 2001 23:53:16 +0000
4671              Message-Id: <E14PCUW-0001Qo-00@Bagpuss.unfortu.net>
4672      Branch: perl
4673            ! perlio.c pod/perldiag.pod
4674 ____________________________________________________________________________
4675 [  8687] By: jhi                                   on 2001/02/03  17:11:42
4676         Log: HP-UX thread patches from Merijn H. Brand.
4677      Branch: maint-5.6/perl
4678            ! README.hpux hints/hpux.sh
4679 ____________________________________________________________________________
4680 [  8686] By: jhi                                   on 2001/02/03  16:40:12
4681         Log: Metaconfig changes for #8685.
4682      Branch: metaconfig
4683            ! U/installdirs/instubperl.U
4684      Branch: metaconfig/U/perl
4685            ! Devel.U versiononly.U
4686 ____________________________________________________________________________
4687 [  8685] By: jhi                                   on 2001/02/03  16:39:49
4688         Log: For -Dusedevel builds turn off installusrbinperl and turn on
4689              versiononly, a combined idea of Richard Soderberg and Merijn
4690              H. Brand.  You can still override both of these from the command
4691              line if you need to, -Dinstallusrbinperl and -Uversiononly.
4692      Branch: perl
4693            ! Configure
4694 ____________________________________________________________________________
4695 [  8684] By: jhi                                   on 2001/02/03  16:16:34
4696         Log: Metaconfig unit fix for #8683.
4697      Branch: metaconfig
4698            ! U/compline/nblock_io.U
4699 ____________________________________________________________________________
4700 [  8683] By: jhi                                   on 2001/02/03  16:16:12
4701         Log: Configure fix for the DYNIX/ptx F_SETFL problem,
4702              reported by Peter Prymmer for 5.6-TRIAL1.
4703      Branch: perl
4704            ! Configure
4705 ____________________________________________________________________________
4706 [  8682] By: jhi                                   on 2001/02/03  05:52:11
4707         Log: IRIX hints fix from Scott Henry, get Configure -Dcc="cc -64 -mips3"
4708              to work correctly.
4709      Branch: maint-5.6/perl
4710            ! hints/irix_6.sh
4711 ____________________________________________________________________________
4712 [  8681] By: jhi                                   on 2001/02/03  05:47:33
4713         Log: perlport tweaks from Peter Prymmer and Chris Nandor.
4714      Branch: maint-5.6/perl
4715            ! pod/perlport.pod
4716 ____________________________________________________________________________
4717 [  8680] By: jhi                                   on 2001/02/02  21:39:49
4718         Log: perlport update from Peter Prymmer.
4719      Branch: maint-5.6/perl
4720            ! pod/perlport.pod
4721 ____________________________________________________________________________
4722 [  8679] By: nick                                  on 2001/02/02  20:50:48
4723         Log: Integrate mainline
4724      Branch: perlio
4725           !> Changes Porting/makerel embed.pl embedvar.h ext/POSIX/POSIX.xs
4726           !> lib/Getopt/Long.pm patchlevel.h pod/perlfunc.pod
4727           !> pod/perlmodlib.PL pod/perlmodlib.pod pp.h sv.c t/lib/peek.t
4728 ____________________________________________________________________________
4729 [  8678] By: gsar                                  on 2001/02/02  16:02:12
4730         Log: note about bincompat, slightly modified (from Lupe Christoph)
4731      Branch: maint-5.6/perl
4732            ! README.solaris
4733 ____________________________________________________________________________
4734 [  8677] By: jhi                                   on 2001/02/02  15:46:20
4735         Log: Supported platforms updates.
4736      Branch: maint-5.6/perl
4737            ! pod/perlport.pod
4738 ____________________________________________________________________________
4739 [  8676] By: jhi                                   on 2001/02/02  03:41:26
4740         Log: A couple more perlfaq2 tweaks.
4741      Branch: maint-5.6/perl
4742            ! pod/perlfaq2.pod
4743 ____________________________________________________________________________
4744 [  8675] By: jhi                                   on 2001/02/02  03:17:44
4745         Log: Misedit in #8661.
4746      Branch: maint-5.6/perl
4747            ! Configure
4748 ____________________________________________________________________________
4749 [  8674] By: jhi                                   on 2001/02/02  03:14:38
4750         Log: Damien again.
4751      Branch: maint-5.6/perl
4752            ! pod/perlfaq2.pod
4753 ____________________________________________________________________________
4754 [  8673] By: jhi                                   on 2001/02/02  03:12:40
4755         Log: perlfaq update from Elaine Ashton.
4756      Branch: maint-5.6/perl
4757            ! pod/perlfaq2.pod
4758 ____________________________________________________________________________
4759 [  8672] By: jhi                                   on 2001/02/02  03:07:08
4760         Log: UTF-8 s/// patch from Inaba Hiroto.
4761      Branch: maint-5.6/perl
4762            ! pp_ctl.c pp_hot.c
4763 ____________________________________________________________________________
4764 [  8671] By: jhi                                   on 2001/02/01  22:34:31
4765         Log: Update Changes.
4766      Branch: perl
4767            ! Changes patchlevel.h
4768 ____________________________________________________________________________
4769 [  8670] By: jhi                                   on 2001/02/01  22:15:29
4770         Log: Integrate changes #8641,8644,8649,8654,8662,8663,8664,8665,8667,8669
4771              from maintperl.
4772              
4773              Upgrade to Getopt::Long 2.25, from Johan Vromans.
4774              
4775              more files need to be writable in the source distribution
4776              
4777              perl_clone() wants to clone PL_numeric_radix_sv (fix for change#8626)
4778              
4779              Solaris 2.7 i386 #defines SP in /usr/include/sys/reg.h
4780              
4781              Subject: Re: [PATCH perl5.6.1-TRIAL2] long C<=item>s in perlmodlib.pod
4782              
4783              Allow the float to be fuzzier.
4784              
4785              need to use INT2PTR instead of a straight cast or ia64 fails
4786              
4787              Subject: Re: [ID 20010201.006] bad pointer from perlfunc to perlmod 
4788              
4789              add ppaddr as one of the compatibility symbols under -DPERL_POLLUTE
4790      Branch: perl
4791           !> Porting/makerel embed.pl embedvar.h ext/POSIX/POSIX.xs
4792           !> lib/Getopt/Long.pm pod/perlfunc.pod pod/perlmodlib.PL
4793           !> pod/perlmodlib.pod pp.h sv.c t/lib/peek.t
4794 ____________________________________________________________________________
4795 [  8669] By: jhi                                   on 2001/02/01  21:57:02
4796         Log: Subject: Re: [PATCH perl5.6.1-TRIAL2] long C<=item>s in perlmodlib.pod
4797              From: Robin Barker <rmb1@cise.npl.co.uk>
4798              Date: Thu, 1 Feb 2001 16:59:05 GMT
4799              Message-Id: <200102011659.QAA01274@tempest.npl.co.uk>
4800      Branch: maint-5.6/perl
4801            ! pod/perlmodlib.PL
4802 ____________________________________________________________________________
4803 [  8668] By: nick                                  on 2001/02/01  19:41:40
4804         Log: Integrate mainline
4805      Branch: perlio
4806           !> dump.c ext/Errno/Errno_pm.PL intrpvar.h mg.c perl.c perl.h
4807           !> pod/perlapi.pod pp.c pp.h pp_hot.c sv.c t/op/arith.t
4808           !> t/op/each.t utf8.c utf8.h util.c vms/test.com
4809 ____________________________________________________________________________
4810 [  8667] By: gsar                                  on 2001/02/01  16:59:11
4811         Log: add ppaddr as one of the compatibility symbols under -DPERL_POLLUTE
4812      Branch: maint-5.6/perl
4813            ! embed.pl embedvar.h
4814 ____________________________________________________________________________
4815 [  8666] By: gsar                                  on 2001/02/01  16:34:51
4816         Log: add missing entries to win32/config.?c
4817      Branch: maint-5.6/perl
4818            ! win32/config.bc win32/config.gc win32/config.vc
4819            ! win32/config_H.bc win32/config_H.gc win32/config_H.vc
4820 ____________________________________________________________________________
4821 [  8665] By: jhi                                   on 2001/02/01  14:58:51
4822         Log: Subject: Re: [ID 20010201.006] bad pointer from perlfunc to perlmod 
4823              From: "Stephen P. Potter" <spp@spotter.yi.org>
4824              Date: Thu, 01 Feb 2001 10:45:46 -0500
4825              Message-Id: <200102011545.KAA31479@spotter.yi.org>
4826      Branch: maint-5.6/perl
4827            ! pod/perlfunc.pod
4828 ____________________________________________________________________________
4829 [  8664] By: gsar                                  on 2001/02/01  14:52:37
4830         Log: need to use INT2PTR instead of a straight cast or ia64 fails
4831              posix.t (from Brendan O'Dea <bod@compusol.com.au>)
4832      Branch: maint-5.6/perl
4833            ! ext/POSIX/POSIX.xs
4834 ____________________________________________________________________________
4835 [  8663] By: jhi                                   on 2001/02/01  14:09:13
4836         Log: Allow the float to be fuzzier.
4837      Branch: maint-5.6/perl
4838            ! t/lib/peek.t
4839 ____________________________________________________________________________
4840 [  8662] By: jhi                                   on 2001/02/01  13:59:00
4841         Log: Subject: [PATCH perl5.6.1-TRIAL2] long C<=item>s in perlmodlib.pod
4842              From: Robin Barker <rmb1@cise.npl.co.uk>
4843              Date: Thu, 1 Feb 2001 13:05:39 GMT
4844              Message-Id: <200102011305.NAA26160@tempest.npl.co.uk>
4845      Branch: maint-5.6/perl
4846            ! pod/perlmodlib.pod
4847 ____________________________________________________________________________
4848 [  8661] By: jhi                                   on 2001/02/01  13:57:38
4849         Log: Subject: [PATCH] Re: v5.6.1 trial2 is available
4850              Date: Thu, 01 Feb 2001 14:15:41 +0100
4851              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
4852              Message-Id: <20010201141104.303F.H.M.BRAND@hccnet.nl>
4853              
4854              Have the $ccflags in the gcc version test (strange, this change
4855              is claimed to be have been integrated already)
4856      Branch: maint-5.6/perl
4857            ! Configure
4858 ____________________________________________________________________________
4859 [  8660] By: jhi                                   on 2001/02/01  13:44:10
4860         Log: Integrate changes #7950,7964,7962 from mainline.
4861              
4862              Find the stdchar signedness using cpp, should fix some of
4863              the Solaris compiler warnings reported by Alan Burlison.
4864      Branch: maint-5.6/perl
4865           !> Configure config_h.SH
4866 ____________________________________________________________________________
4867 [  8659] By: jhi                                   on 2001/02/01  05:35:32
4868         Log: Subject: [PATCH 5.6.1-TRIAL? and 5.7.?] perldoc uses unescaped backslashes in filenames
4869              From: Jan Dubois <JanD@ActiveState.com>
4870              Date: Wed, 31 Jan 2001 21:17:03 -0800
4871              Message-ID: <8qrh7t069jt32m98sap53l9dfoge0vjrle@4ax.com>
4872      Branch: maint-5.6/perl
4873            ! utils/perldoc.PL
4874 ____________________________________________________________________________
4875 [  8658] By: jhi                                   on 2001/02/01  04:33:17
4876         Log: Integrate the README.os390 and README.posix-bc parts of mainline
4877              changes #8373,8486, 8544,8556.  (The hints/os390.sh,Makefile.SH,
4878              installperl parts were taken care of by #8657.)
4879      Branch: maint-5.6/perl
4880           !> README.os390 README.posix-bc
4881 ____________________________________________________________________________
4882 [  8657] By: jhi                                   on 2001/02/01  04:29:21
4883         Log: Subject: [PATCH: 5.6.1 trial2] DynaLoading for OS/390 build option
4884              From: Peter Prymmer <pvhp@forte.com>
4885              Date: Wed, 31 Jan 2001 18:18:11 -0800 (PST)
4886              Message-ID: <Pine.OSF.4.10.10101311815560.336633-100000@aspara.forte.com>
4887      Branch: maint-5.6/perl
4888            + ext/DynaLoader/dl_dllload.xs
4889            ! MANIFEST Makefile.SH hints/os390.sh installperl
4890 ____________________________________________________________________________
4891 [  8656] By: jhi                                   on 2001/02/01  04:25:45
4892         Log: Subject: [PATCH: 5.6.1 trial2]Not OK: perl v5.6.1 +v5.6.1-TRIAL2 on os390 05.00 (UNINSTALLED)
4893              From: Peter Prymmer <pvhp@forte.com>
4894              Date: Wed, 31 Jan 2001 15:26:57 -0800 (PST)
4895              Message-ID: <Pine.OSF.4.10.10101311523101.336633-100000@aspara.forte.com>
4896      Branch: maint-5.6/perl
4897            ! lib/Math/BigInt.pm lib/bigint.pl t/lib/b.t t/pragma/sub_lval.t
4898 ____________________________________________________________________________
4899 [  8655] By: jhi                                   on 2001/02/01  04:14:47
4900         Log: Subject: [ID 20010131.066] Not OK: perl v5.6.1 +v5.6.1-TRIAL2 on os2 2.40 (UNINSTALLED)
4901              From: troc@netrus.net
4902              Date: Wed, 31 Jan 2001 22:31:26 -0500
4903              Message-Id: <200102010331.WAA117.85@rocco.homenet>
4904      Branch: maint-5.6/perl
4905            ! os2/os2.c
4906 ____________________________________________________________________________
4907 [  8654] By: jhi                                   on 2001/02/01  04:12:52
4908         Log: Solaris 2.7 i386 #defines SP in /usr/include/sys/reg.h
4909              as reported by Alan Burlison.
4910      Branch: maint-5.6/perl
4911            ! pp.h
4912 ____________________________________________________________________________
4913 [  8653] By: jhi                                   on 2001/02/01  04:05:12
4914         Log: Subject: [ID 20010131.042] Not OK: perl v5.6.1 +v5.6.1-TRIAL2 on VMS_AXP V7.2-1
4915              From: dsugalski@northernlight.com
4916              Date: Wed, 31 Jan 2001 18:54:11 -0500
4917              Message-Id: <01013118541126@monsoon.stratus.northernlight.com>
4918      Branch: maint-5.6/perl
4919            ! configure.com
4920 ____________________________________________________________________________
4921 [  8652] By: jhi                                   on 2001/02/01  04:03:11
4922         Log: Misplaced #endif.
4923              
4924              Subject: [perl-5-6-1-trial2] patches for EPOC
4925              From: Olaf Flebbe <O.Flebbe@science-computing.de>
4926              Date: Wed, 31 Jan 2001 23:15:34 +0100 (CET)
4927              Message-ID: <Pine.LNX.4.02.10101312314470.5682-100000@milkyway.science-computing.de>
4928      Branch: maint-5.6/perl
4929            ! epoc/epocish.c
4930 ____________________________________________________________________________
4931 [  8651] By: jhi                                   on 2001/02/01  04:00:25
4932         Log: Integrate changes #8647,8648,8650 from mainline.
4933              
4934              Macrofy a magic UTF-8 test.
4935              
4936              Protect PL_numeric_radix_sv with USE_NUMERIC_LOCALE.
4937              
4938              Watch out for cross compiling for EPOC (usually done on linux).
4939      Branch: maint-5.6/perl
4940           !> ext/Errno/Errno_pm.PL sv.c utf8.c utf8.h
4941 ____________________________________________________________________________
4942 [  8650] By: jhi                                   on 2001/02/01  03:56:20
4943         Log: Watch out for cross compiling for EPOC (usually done on linux)
4944              
4945              Subject: [perl-5-6-1-trial2] patches for EPOC
4946              From: Olaf Flebbe <O.Flebbe@science-computing.de>
4947              Date: Wed, 31 Jan 2001 23:15:34 +0100 (CET)
4948              Message-ID: <Pine.LNX.4.02.10101312314470.5682-100000@milkyway.science-computing.de>
4949      Branch: perl
4950            ! ext/Errno/Errno_pm.PL
4951 ____________________________________________________________________________
4952 [  8649] By: gsar                                  on 2001/02/01  00:46:00
4953         Log: perl_clone() wants to clone PL_numeric_radix_sv (fix for change#8626)
4954      Branch: maint-5.6/perl
4955            ! sv.c
4956 ____________________________________________________________________________
4957 [  8648] By: jhi                                   on 2001/01/31  23:35:36
4958         Log: All the uses of PL_numeric_radix must be protected by
4959              USE_LOCALE_NUMERIC, noticed by Olaf Flebbe in
4960              
4961              Subject: [perl-5-6-1-trial2] patches for EPOC
4962              From: Olaf Flebbe <O.Flebbe@science-computing.de>
4963              Date: Wed, 31 Jan 2001 23:15:34 +0100 (CET)
4964              Message-ID: <Pine.LNX.4.02.10101312314470.5682-100000@milkyway.science-computing.de>
4965      Branch: perl
4966            ! sv.c
4967 ____________________________________________________________________________
4968 [  8647] By: jhi                                   on 2001/01/31  22:56:16
4969         Log: Macrofy a magic UTF-8 test.
4970      Branch: perl
4971            ! utf8.c utf8.h
4972 ____________________________________________________________________________
4973 [  8646] By: gsar                                  on 2001/01/31  15:55:12
4974         Log: update Changes
4975      Branch: maint-5.6/perl
4976            ! Changes
4977 ____________________________________________________________________________
4978 [  8645] By: gsar                                  on 2001/01/31  15:10:14
4979         Log: Configure tweak suggested by Peter Prymmer
4980      Branch: maint-5.6/perl
4981            ! Configure
4982 ____________________________________________________________________________
4983 [  8644] By: gsar                                  on 2001/01/31  15:06:32
4984         Log: more files need to be writable in the source distribution
4985      Branch: maint-5.6/perl
4986            ! Porting/makerel
4987 ____________________________________________________________________________
4988 [  8643] By: jhi                                   on 2001/01/31  14:59:46
4989         Log: Integrate changes #8258,8278,8279 from mainline.
4990              
4991              Make the large file tests more robust/talkative.
4992      Branch: maint-5.6/perl
4993           !> t/lib/syslfs.t t/op/lfs.t
4994 ____________________________________________________________________________
4995 [  8642] By: gsar                                  on 2001/01/31  14:53:48
4996         Log: integrate changes#8311,8334 from mainline
4997              
4998              Add a new MakeMaker variable PM_FILTER that defines a Unix
4999              filter to be run on each .pm during the pm_to_blib() phase,
5000              a fixed version of
5001              Subject: PATCH (blead 8269) ExtUtils::MakeMaker
5002              
5003              Subject: PATCH 5.6.1 & blead 8327 -- workaround for t/io/fs.t
5004              Apparently, the glibc2.2 + linux 2.4.0 + NFS combination prevent
5005              accurate reading of the "atime".  
5006      Branch: maint-5.6/perl
5007           !> lib/ExtUtils/Install.pm lib/ExtUtils/MM_Unix.pm
5008           !> lib/ExtUtils/MM_VMS.pm lib/ExtUtils/MM_Win32.pm
5009           !> lib/ExtUtils/MakeMaker.pm t/io/fs.t
5010 ____________________________________________________________________________
5011 [  8641] By: jhi                                   on 2001/01/31  14:46:37
5012         Log: Upgrade to Getopt::Long 2.25, from Johan Vromans.
5013      Branch: maint-5.6/perl
5014            ! lib/Getopt/Long.pm
5015 ____________________________________________________________________________
5016 [  8640] By: gsar                                  on 2001/01/31  14:40:24
5017         Log: make regen_all
5018      Branch: maint-5.6/perl
5019            ! patchlevel.h pod/perlmodlib.pod pod/perltoc.pod
5020 ____________________________________________________________________________
5021 [  8639] By: gsar                                  on 2001/01/31  14:37:25
5022         Log: refresh windows config files
5023      Branch: maint-5.6/perl
5024            ! win32/Makefile win32/config_H.bc win32/config_H.gc
5025            ! win32/config_H.vc win32/makefile.mk
5026 ____________________________________________________________________________
5027 [  8638] By: gsar                                  on 2001/01/31  14:28:10
5028         Log: makefile tweaks for windows: introduce a bulk-switch to enable
5029              same options as ActivePerl; sync changes with makefile.mk
5030      Branch: maint-5.6/perl
5031            ! win32/Makefile win32/makefile.mk
5032 ____________________________________________________________________________
5033 [  8637] By: jhi                                   on 2001/01/31  04:41:30
5034         Log: Subject: [PATCH] Re: [PATCH] Re: [ID 20010105.023] numeric problems in IRIX
5035              From: Nicholas Clark <nick@ccl4.org>
5036              Date: Tue, 30 Jan 2001 19:51:05 +0000
5037              Message-ID: <20010130195105.R76607@plum.flirble.org> 
5038              
5039              op/inc cure.
5040      Branch: perl
5041            ! pp.c pp.h pp_hot.c t/op/arith.t
5042 ____________________________________________________________________________
5043 [  8636] By: jhi                                   on 2001/01/31  02:38:32
5044         Log: Integrate changes #7884,8122,8155,8197,8213[just to /nolog part,
5045              no perlio],8257,8380,8479,8515 from mainline.
5046              
5047              Subject:  [PATCH perl@7795 (and earlier)] VMS test cleanup
5048              
5049              Subject: Re: [ID 20001214.011] Unreachable value in a search list logical name
5050              Subject: [PATCH perl@8133] fix-up for VMS extensions
5051              
5052              In VMS embedded perls couldn't access the statically built Socket.
5053              
5054              Subject: [patch: perl@8211]VMS: add -Duseperlio capacity to configure.com (8213)
5055              
5056              Further VMS piping fixes from Charles Lane.
5057              
5058              Subject:  [PATCH] make t/op/misc.t work on VMS
5059              
5060              Add tracing for debugging extensions builds in VMS.
5061              
5062              Subject: [PATCH perl@8506] typo in last week's configure.com frenzy
5063      Branch: maint-5.6/perl
5064           !> configure.com doio.c t/op/misc.t vms/descrip_mms.template
5065           !> vms/ext/DCLsym/Makefile.PL vms/ext/Stdio/Makefile.PL
5066           !> vms/test.com vms/vms.c vms/vmsish.h vms/vmspipe.com
5067 ____________________________________________________________________________
5068 [  8635] By: jhi                                   on 2001/01/31  01:46:41
5069         Log: Integrate change #7732 from mainline.
5070              
5071              Sparc 64-bit pack() fix from Jens Hamisch.
5072      Branch: maint-5.6/perl
5073           !> pp.c
5074 ____________________________________________________________________________
5075 [  8634] By: jhi                                   on 2001/01/31  01:41:16
5076         Log: One spot missing from #8626.
5077      Branch: maint-5.6/perl
5078            ! sv.c
5079 ____________________________________________________________________________
5080 [  8633] By: jhi                                   on 2001/01/31  00:49:17
5081         Log: Integrate change #7495 from mainline.
5082              
5083              Subject: [PATCH: perl@7483] generalize AIX ccversion hack for re extension
5084      Branch: maint-5.6/perl
5085           !> MANIFEST ext/re/Makefile.PL
5086 ____________________________________________________________________________
5087 [  8632] By: jhi                                   on 2001/01/30  23:38:49
5088         Log: Integrate change #8396 from mainline.
5089              
5090              Subject: [PATCH] add SO_REUSEPORT to export list in Socket.pm for
5091              better multicast support (resend)
5092      Branch: maint-5.6/perl
5093           !> ext/Socket/Socket.pm
5094 ____________________________________________________________________________
5095 [  8631] By: jhi                                   on 2001/01/30  23:28:03
5096         Log: Integrate changes #7514,7813,8113,8144,8397,8398,8490 from mainline.
5097              
5098              More AIX lore. (7514, ext/re/hints/aix.pl)
5099              
5100              Subject: Re: [PATCH bleadperl] Re: Not OK: perl5.7.0 +DEVEL7706    +Duseperlio on AIX4.[23]
5101              
5102              Subject: Re: [PATCH bleadperl] Re: Not OK: perl5.7.0 +DEVEL7706    +Duseperlio on AIX4.[23] (7813, strictly speaking not yet necessary, but harmless and goes well with #8490)
5103              
5104              Subject: [ID 20001214.002] Net::Ping patch
5105              
5106              Subject: [patch perl@8133] Typo in my Net::Ping doc patch :(
5107              
5108              Subject: [PATCH] add ReusePort option to IO::Socket::INET for better multicast support (resend)
5109              
5110              Add ReuseAddr as a (preferred) alias for Reuse as we now
5111              also have ReusePort.
5112              
5113              Subject: [PATCH: perl@8482] minor typos in some dl_$foo.xs files
5114      Branch: maint-5.6/perl
5115           +> ext/re/hints/aix.pl
5116           !> ext/DynaLoader/dl_aix.xs ext/DynaLoader/dl_dlopen.xs
5117           !> ext/IO/lib/IO/Socket/INET.pm lib/Net/Ping.pm
5118 ____________________________________________________________________________
5119 [  8630] By: jhi                                   on 2001/01/30  23:03:59
5120         Log: Integrate changes #8215,8587 from mainline: missing pod nits.
5121              
5122              read() documentation tweak for 20001121.004.
5123              
5124              Subject: [ID 20010128.003] [PATCH] perlre.pod buglet
5125      Branch: maint-5.6/perl
5126           !> pod/perlfunc.pod pod/perlre.pod
5127 ____________________________________________________________________________
5128 [  8629] By: jhi                                   on 2001/01/30  22:41:57
5129         Log: Integrate change #8098 from mainline.
5130              
5131              fastgetcwd is defined using a glob alias on a $^O dependent basis
5132              and there was no default assignment or perl subroutine.
5133      Branch: maint-5.6/perl
5134           !> lib/Cwd.pm
5135 ____________________________________________________________________________
5136 [  8628] By: jhi                                   on 2001/01/30  21:58:52
5137         Log: Integrate change #7866 from mainline.
5138              
5139              File::Temp 0.11.
5140      Branch: maint-5.6/perl
5141           !> lib/File/Temp.pm t/lib/ftmp-tempfile.t
5142 ____________________________________________________________________________
5143 [  8627] By: jhi                                   on 2001/01/30  21:39:44
5144         Log: Integrate changes #8075,8086,8228 from mainline.  
5145              
5146              Darwin is not Windows. (8075,8086)
5147              
5148              Subject: [PATCH 5.6.1-TRIAL1 and @8223]; was Re: Perlbug 20000322.006 status +update
5149      Branch: maint-5.6/perl
5150           !> lib/CGI.pm lib/Pod/Select.pm lib/Text/ParseWords.pm
5151           !> pod/perl.pod pod/perl5004delta.pod pod/perl5005delta.pod
5152           !> pod/perldiag.pod pod/perlembed.pod pod/perlfaq4.pod
5153           !> pod/perllocale.pod pod/perlmodlib.pod pod/perlretut.pod
5154 ____________________________________________________________________________
5155 [  8626] By: jhi                                   on 2001/01/30  21:22:11
5156         Log: Integrate with tweakery the change #8625 from mainline,
5157              the multibyte decimal separator fix ("fa_IR locale failure").
5158      Branch: maint-5.6/perl
5159            ! embedvar.h perlapi.h
5160           !> intrpvar.h perl.c perl.h sv.c util.c
5161 ____________________________________________________________________________
5162 [  8625] By: jhi                                   on 2001/01/30  20:26:33
5163         Log: Fix for the fa_IR locale failure.  The reason for the failure
5164              was that Perl was assuming the decimal separator aka the radix
5165              separator is one character.  The Farsi-Iranian locale crushed
5166              that bad assumption since there the separator is 'Momayyez',
5167              glyphwise looking somewhat like a slash, and in Unicode UTF-8
5168              encoded in two bytes, 0xd9 0xab.
5169      Branch: perl
5170            ! intrpvar.h perl.c perl.h sv.c util.c
5171 ____________________________________________________________________________
5172 [  8624] By: gsar                                  on 2001/01/30  20:17:03
5173         Log: regen_headers
5174      Branch: maint-5.6/perl
5175            ! Makefile.SH pod/perlintern.pod
5176 ____________________________________________________________________________
5177 [  8623] By: gsar                                  on 2001/01/30  19:42:34
5178         Log: backout change#7431 and its dependents (causes spurious rebuilds
5179              of autogenerated files)
5180              
5181              fix benign b.t failure
5182      Branch: maint-5.6/perl
5183            ! Makefile.SH t/lib/b.t
5184 ____________________________________________________________________________
5185 [  8622] By: jhi                                   on 2001/01/30  19:41:41
5186         Log: Microperl sync.
5187      Branch: perl
5188            ! mg.c perl.h
5189 ____________________________________________________________________________
5190 [  8621] By: gsar                                  on 2001/01/30  19:24:47
5191         Log: integrate changes#8259,8442,8444,8445,8448,8449,8451,8455
5192              from mainline
5193              
5194              Subject: podlators 1.06 released
5195              
5196              Subject: [PATCH @8436] Eliminate op_children
5197              
5198              (Replaced by #8448)  Traces of op_children (cleanup of #8442)
5199              
5200              (Replaced by #8448)  More op_children traces (cleanup of #8442).
5201              
5202              Subject: [PATCH #3 @8436] Re: Eliminate op_children
5203              Replace #8444 and #8445.
5204              
5205              Under 5.005 threads and debugging crashed in Debian 2.2 Linux/x86
5206              at the setting of the ofs_sv in new_struct_thread() as the
5207              thr->Tofs_sv (PL_ofs_sv) was still 0xabab.... (this is what
5208              uninitialized fields are, uh, initialized with),
5209              SvREFCNT_inc()ing that invited a core dump.
5210              
5211              podlators 1.07, from Russ Allbery.
5212              
5213              Subject: [PATCH] regcomp.c old feature removal
5214              From: mjd@plover.com
5215              Date: 16 Jan 2001 14:43:18 -0000 
5216              Message-ID: <20010116144318.7140.qmail@plover.com> 
5217      Branch: maint-5.6/perl
5218           +> lib/Pod/Text/Overstrike.pm
5219           !> MANIFEST bytecode.pl ext/B/B.xs ext/B/B/Asmdata.pm
5220           !> ext/B/B/Bytecode.pm ext/B/B/C.pm ext/B/B/Concise.pm
5221           !> ext/B/B/Debug.pm ext/ByteLoader/byterun.c
5222           !> ext/ByteLoader/byterun.h lib/Pod/Man.pm lib/Pod/Text/Color.pm
5223           !> lib/Pod/Text/Termcap.pm op.c op.h pod/pod2text.PL regcomp.c
5224           !> util.c
5225 ____________________________________________________________________________
5226 [  8620] By: gsar                                  on 2001/01/30  18:48:32
5227         Log: integrate changes#8243,8254,8255,8313,8314,8363,8383,8390,8416,
5228              8417,8418,8419,8424,8427,8430,8441,8563 from mainline (TODO: b.t
5229              now fails one test)
5230              
5231              Subject: [PATCH] lvalue AUTOLOAD. No, really.
5232              
5233              Subject: [PATCH] Interesting syntax idea
5234              Make opens + bareword assigns do typeglob assigns.
5235              
5236              Tests for #8254.
5237              
5238              Subject: [PATCH @8269] Continue blocks and B::Deparse
5239              Make the peephole optimizer to bypass more null ops and
5240              and rewrite the deparse handling of continue blocks.
5241              
5242              Subject: Re: [PATCH @8269] Continue blocks and B::Deparse
5243              Doc tweak on #8313.
5244              
5245              Subject: [PATCH @8344] Fix spurious GVSV OPpOUR_INTRO
5246              
5247              Subject: [PATCH @8382] Remove FileHandle/IO dependence in t/io/openpid.t
5248              
5249              Subject:  [PATCH perl@8269] Opcode.XS, fix memory leak
5250              
5251              Subject: RE: [PATCH] [ID 20001223.002] lvalues in list context
5252              Replace 10000 with RETVAL_MAX, and compute RETVAL_MAX
5253              according to the platform.
5254              
5255              Subject: [PATCH @8404] Consolidated lvalue sub changes
5256              
5257              Subject: Re: [PATCH] [ID 20001223.002] lvalues in list context
5258              
5259              Rename RETVAL_MAX to RETURN_UNLIMITED_NUMBER.
5260              
5261              Subject: B::Concise -- an improved replacement for B::Terse 
5262              
5263              The B::Terse drop-in replacement wasn't quite drop-in.
5264              
5265              The LVRET macro needed an aTHX.
5266              
5267              Use the /^Perl_/-less form of is_lvalue_sub().
5268              
5269              Subject: [PATCH @8545] [ID 20000808.005] OP_REFGEN as an lvalue
5270      Branch: maint-5.6/perl
5271           +> ext/B/B/Concise.pm
5272           !> (integrate 27 files)
5273 ____________________________________________________________________________
5274 [  8619] By: nick                                  on 2001/01/30  18:40:28
5275         Log: Integrate mainline
5276      Branch: perlio
5277           !> (integrate 40 files)
5278 ____________________________________________________________________________
5279 [  8618] By: jhi                                   on 2001/01/30  18:37:18
5280         Log: Subject: [PATCH perl@8585] protect VMS test harness from chdir switcheroo
5281              Date: Mon, 29 Jan 2001 22:51:29 -0600
5282              From: "Craig A. Berry" <craigberry@mac.com>
5283              Message-Id: <p04330101b69bef0ebab4@[172.16.52.1]>
5284      Branch: perl
5285            ! vms/test.com
5286 ____________________________________________________________________________
5287 [  8617] By: jhi                                   on 2001/01/30  18:34:53
5288         Log: Subject: [PATCH] Add missing CV flags to dump.c
5289              From: Tim Jenness <t.jenness@jach.hawaii.edu>
5290              Date: Mon, 29 Jan 2001 21:48:55 -1000 (HST)
5291              Message-ID: <Pine.LNX.4.30.0101292144280.14179-100000@lapaki.jach.hawaii.edu>
5292      Branch: perl
5293            ! dump.c
5294 ____________________________________________________________________________
5295 [  8616] By: jhi                                   on 2001/01/30  18:20:58
5296         Log: Integrate partly the change #8615 from mainline, the t/op/each.t
5297              part isn't applicable to maintperl.
5298              
5299              UTF-8 nit from Inaba Hiroto.
5300      Branch: maint-5.6/perl
5301           !> pod/perlapi.pod utf8.c
5302 ____________________________________________________________________________
5303 [  8615] By: jhi                                   on 2001/01/30  18:18:51
5304         Log: UTF-8 nit from Inaba Hiroto.
5305      Branch: perl
5306            ! pod/perlapi.pod t/op/each.t utf8.c
5307 ____________________________________________________________________________
5308 [  8614] By: jhi                                   on 2001/01/30  18:13:38
5309         Log: Integrate changes #8608,8609,8610,8611,8612,8613 from maintperl.
5310              
5311              perl's internal variables are not for public consumption,
5312              move their docs from perlapi.pod to perlintern.pod
5313              
5314              support for -Dusethreads build under HP-UX 10.20 and DCE threads
5315              library (11.0 and later have pthreads but 10.x don't)
5316              
5317              avoid uninitialized value warnings
5318              
5319              canonicalize paths when doing chdir() on windows (or Cwd::getcwd()
5320              gets weird results)
5321              
5322              perldoc nit on windows
5323              
5324              make it possible to run the tests outside the source tree
5325              (there's still a dependency on ../lib being the library
5326              location)
5327      Branch: perl
5328           !> hints/hpux.sh intrpvar.h perlapi.c pod/perlapi.pod
5329           !> pod/perlintern.pod t/base/term.t t/io/tell.t t/lib/dprof/V.pm
5330           !> t/op/flip.t thrdvar.h thread.h utils/perldoc.PL
5331           !> win32/bin/search.pl win32/vdir.h
5332 ____________________________________________________________________________
5333 [  8613] By: gsar                                  on 2001/01/30  16:39:59
5334         Log: make it possible to run the tests outside the source tree
5335              (there's still a dependency on ../lib being the library
5336              location)
5337      Branch: maint-5.6/perl
5338            ! t/base/term.t t/io/tell.t t/lib/dprof/V.pm t/op/flip.t
5339 ____________________________________________________________________________
5340 [  8612] By: gsar                                  on 2001/01/30  16:31:12
5341         Log: perldoc nit on windows
5342      Branch: maint-5.6/perl
5343            ! utils/perldoc.PL
5344 ____________________________________________________________________________
5345 [  8611] By: gsar                                  on 2001/01/30  16:22:54
5346         Log: canonicalize paths when doing chdir() on windows (or Cwd::getcwd()
5347              gets weird results)
5348      Branch: maint-5.6/perl
5349            ! win32/vdir.h
5350 ____________________________________________________________________________
5351 [  8610] By: gsar                                  on 2001/01/30  16:12:45
5352         Log: avoid uninitialized value warnings
5353      Branch: maint-5.6/perl
5354            ! win32/bin/search.pl
5355 ____________________________________________________________________________
5356 [  8609] By: gsar                                  on 2001/01/30  16:08:01
5357         Log: support for -Dusethreads build under HP-UX 10.20 and DCE threads
5358              library (11.0 and later have pthreads but 10.x don't)
5359      Branch: maint-5.6/perl
5360            ! hints/hpux.sh thread.h
5361 ____________________________________________________________________________
5362 [  8608] By: gsar                                  on 2001/01/30  15:48:55
5363         Log: perl's internal variables are not for public consumption,
5364              move their docs from perlapi.pod to perlintern.pod
5365      Branch: maint-5.6/perl
5366            ! intrpvar.h perlapi.c pod/perlapi.pod pod/perlintern.pod
5367            ! thrdvar.h
5368 ____________________________________________________________________________
5369 [  8607] By: gsar                                  on 2001/01/30  15:44:27
5370         Log: mistakenly branched perl56delta.pod, revert
5371      Branch: maint-5.6/perl
5372            - pod/perl56delta.pod
5373           !> pod/perldelta.pod
5374 ____________________________________________________________________________
5375 [  8606] By: gsar                                  on 2001/01/30  14:20:24
5376         Log: integrate changes#7984,7987,8010 from mainline (gets rid of
5377              dTHR which has been a noop for a while now, except for the
5378              compatibility definition in thread.h)
5379      Branch: maint-5.6/perl
5380           !> (integrate 45 files)
5381 ____________________________________________________________________________
5382 [  8605] By: jhi                                   on 2001/01/30  05:43:58
5383         Log: Mark the UTF-8 APIs as experimental.
5384      Branch: maint-5.6/perl
5385            ! embed.pl pod/perlapi.pod
5386 ____________________________________________________________________________
5387 [  8604] By: jhi                                   on 2001/01/30  05:38:40
5388         Log: Nits from earlier integrates.
5389      Branch: maint-5.6/perl
5390            ! lib/Carp/Heavy.pm
5391           !> sv.c
5392 ____________________________________________________________________________
5393 [  8603] By: jhi                                   on 2001/01/30  05:27:26
5394         Log: Regenerate Porting files.
5395      Branch: maint-5.6/perl
5396            ! Porting/Glossary Porting/config.sh Porting/config_H
5397 ____________________________________________________________________________
5398 [  8602] By: jhi                                   on 2001/01/30  05:14:59
5399         Log: Integrate changes #7891,8034,8078,8110,8111,8112,8277,8291,
5400              8310,8339,8447,8492,8493,8505,8525: documentation changes.
5401              
5402              Subject: Re: perlfaq style changes
5403              
5404              Subject: DOC PATCH 5.6.0: -s return value incompletely documented
5405              
5406              Subject: [PATCH] docs on NaN
5407              
5408              Subject: [patch] perlfaq7
5409              
5410              Subject: [ID 20001214.003] [PATCH bleadperl] POSIX::tmpnam() is dangerous
5411              
5412              Subject: [PATCH] Re: [ID 20001013.006] XS subs are not define()ed
5413              
5414              Subject: [PATCH] open() example in perlfunc.pod
5415              
5416              Podify README.mpeix (a new version from the web)
5417              
5418              Subject: [PATCH 5.[67].1]; as Re: [PATCH 5.6.1-TRIAL1 and @8223]; was Re: Perlbug 20000322.006 status update
5419              
5420              Subject: [PATCH] format and rewording in perlfaq.pod
5421              
5422              Subject: [PATCH] API Variable documentation   
5423              
5424              Memory management calls documentation.
5425              
5426              Subject: [PATCH: perl@8482] README.vms URL updates
5427              
5428              Subject: Minor typos in perlfaq2.pod
5429              
5430              Subject: [PATCH] pod/perlvar.pod
5431      Branch: maint-5.6/perl
5432           +> pod/perl56delta.pod
5433            ! pod/buildtoc.PL pod/perl.pod pod/perltoc.pod
5434           !> README.amiga README.epoc README.mpeix README.vms
5435           !> ext/POSIX/POSIX.pod lib/CPAN.pm lib/Carp/Heavy.pm
5436           !> lib/Win32.pod pod/perlapi.pod pod/perlfaq.pod pod/perlfaq1.pod
5437           !> pod/perlfaq2.pod pod/perlfaq6.pod pod/perlfaq7.pod
5438           !> pod/perlfunc.pod pod/perlop.pod pod/perlrequick.pod
5439           !> pod/perlvar.pod thrdvar.h
5440 ____________________________________________________________________________
5441 [  8601] By: jhi                                   on 2001/01/30  04:38:35
5442         Log: Integrate changes #8036,8096,8253 from mainline:
5443              hints changes.
5444              
5445              Subject: [ID 20001207.004] [PATCH 5.6.0 and 5.7.x] add NCR MP-RAS support
5446              Subject: [8095] HP-UX 11.00 / cc / 64bitint & 64bitall / perlio 
5447              
5448              Output the (apparent) version of gcc in Tru64.
5449      Branch: maint-5.6/perl
5450           +> ext/POSIX/hints/svr4.pl
5451           !> MANIFEST ext/POSIX/Makefile.PL hints/dec_osf.sh hints/hpux.sh
5452           !> hints/svr4.sh t/lib/bigfltpm.t
5453 ____________________________________________________________________________
5454 [  8600] By: jhi                                   on 2001/01/30  04:04:01
5455         Log: Integrate changes #7863,7868,7875,7876,7888,8384,8480 from mainline:
5456              locale fixes.
5457              
5458              sprintf() does not taint since print() does not. (7863,7875,7876,7888)
5459              
5460              Debian allows /usr/bin/locale to exist without any locales. (7868)
5461              
5462              Allow the locale test needing POSIX and the taint test
5463              needing IPC::SysV to run under 'minitest' (basically,
5464              bail out if loading the extension fails). (8384)
5465              
5466              Cleanup the locale.t output  (8480)
5467      Branch: maint-5.6/perl
5468           !> pod/perllocale.pod sv.c t/op/misc.t t/op/taint.t
5469           !> t/pragma/locale.t
5470 ____________________________________________________________________________
5471 [  8599] By: jhi                                   on 2001/01/30  03:51:04
5472         Log: Missing generated files from #8598.
5473      Branch: maint-5.6/perl
5474            ! embed.h global.sym objXSUB.h perlapi.c proto.h
5475 ____________________________________________________________________________
5476 [  8598] By: jhi                                   on 2001/01/30  03:41:54
5477         Log: Integrate change #8555 from mainline, manually integrate parts
5478              of changes 8452 and 8583.
5479              
5480              Subject: [PATCH] utf8.c documentation (8452)
5481              
5482              No point in checking the length if the pointer is bogus. (8555)
5483              
5484              Introduce bytes_from_utf8() and implement sv_eq() using it,
5485              tr/// did not handle UTF-8 ranges, \ before a raw UTF-8 character
5486              produced "Malformed UTF-8 character" warning, "\x{100}\N{CENT SIGN}"
5487              was malformed. (8583)
5488      Branch: maint-5.6/perl
5489            ! embed.pl t/lib/charnames.t t/op/tr.t toke.c
5490           !> pod/perlapi.pod sv.c utf8.c
5491 ____________________________________________________________________________
5492 [  8597] By: gsar                                  on 2001/01/30  02:37:26
5493         Log: get PERL_OBJECT build going again on windows
5494      Branch: maint-5.6/perl
5495            ! embed.h embed.pl global.sym objXSUB.h perlapi.c
5496            ! pod/perlapi.pod proto.h sv.c
5497 ____________________________________________________________________________
5498 [  8596] By: jhi                                   on 2001/01/30  02:16:17
5499         Log: Signedness nit.
5500      Branch: perl
5501            ! sv.c
5502 ____________________________________________________________________________
5503 [  8595] By: jhi                                   on 2001/01/30  02:11:07
5504         Log: EBCDIC patch for Storable, from Peter Prymmer.
5505      Branch: perl
5506            ! t/lib/st-06compat.t
5507 ____________________________________________________________________________
5508 [  8594] By: jhi                                   on 2001/01/30  01:04:48
5509         Log: Subject: [PATCH: perl@8585] yet another tweak to lib/b.t for EBCDIC
5510              From: Peter Prymmer <pvhp@forte.com>
5511              Date: Mon, 29 Jan 2001 16:51:38 -0800 (PST)
5512              Message-ID: <Pine.OSF.4.10.10101291646320.230748-100000@aspara.forte.com>
5513      Branch: perl
5514            ! t/lib/b.t
5515 ____________________________________________________________________________
5516 [  8593] By: jhi                                   on 2001/01/30  00:56:47
5517         Log: Subject: [PATCH: perl@8585] pod problems in io
5518              From: Peter Prymmer <pvhp@forte.com>
5519              Date: Mon, 29 Jan 2001 16:46:25 -0800 (PST)
5520              Message-ID: <Pine.OSF.4.10.10101291636420.230748-100000@aspara.forte.com>
5521      Branch: perl
5522            ! pod/perlapio.pod pod/perliol.pod
5523 ____________________________________________________________________________
5524 [  8592] By: jhi                                   on 2001/01/30  00:48:20
5525         Log: Integrate perlio.
5526      Branch: perl
5527           !> pod/perlapio.pod pod/perliol.pod
5528 ____________________________________________________________________________
5529 [  8591] By: nick                                  on 2001/01/29  22:02:28
5530         Log: GNU 'merge' Simon's copy of perliol.pod with version
5531              patched by Craig's patch.
5532      Branch: perlio
5533            ! pod/perliol.pod
5534 ____________________________________________________________________________
5535 [  8590] By: nick                                  on 2001/01/29  21:55:10
5536         Log: PerlIO doc tweaks from Craig A. Berry <craig.berry@psinetcs.com>
5537      Branch: perlio
5538            ! pod/perlapio.pod pod/perliol.pod
5539 ____________________________________________________________________________
5540 [  8589] By: jhi                                   on 2001/01/29  15:35:33
5541         Log: Integrate change #8586 from maint-5.6/perl.
5542              
5543              make the BOM detection code not call tell() until it has to
5544              (meant to fix esoteric compatibility issues where PL_rsfp
5545              is overridden)
5546      Branch: perl
5547           !> toke.c
5548 ____________________________________________________________________________
5549 [  8588] By: jhi                                   on 2001/01/29  15:29:11
5550         Log: Subject: MAking Solaris malloc() the default
5551              From: Lupe Christoph <lupe@lupe-christoph.de>
5552              Date: Mon, 29 Jan 2001 12:59:36 +0100
5553              Message-ID: <20010129125936.Z4830@alanya.lupe-christoph.de>
5554              
5555              The README.solaris part slightly tweaked.
5556      Branch: perl
5557            ! README.solaris hints/solaris_2.sh
5558 ____________________________________________________________________________
5559 [  8587] By: jhi                                   on 2001/01/29  15:17:34
5560         Log: Subject: [ID 20010128.003] [PATCH] perlre.pod \b buglet
5561              From: root@ak-75.mind.de
5562              Date: Sun, 28 Jan 2001 20:32:29 +0100
5563              Message-Id: <200101281932.UAA15768@ak-75.mind.de>
5564      Branch: perl
5565            ! pod/perlre.pod
5566 ____________________________________________________________________________
5567 [  8586] By: gsar                                  on 2001/01/29  13:43:44
5568         Log: make the BOM detection code not call tell() until it has to
5569              (meant to fix esoteric compatibility issues where PL_rsfp
5570              is overridden)
5571      Branch: maint-5.6/perl
5572            ! toke.c
5573 ____________________________________________________________________________
5574 [  8585] By: jhi                                   on 2001/01/28  20:05:45
5575         Log: Update Changes.
5576      Branch: perl
5577            ! Changes patchlevel.h
5578 ____________________________________________________________________________
5579 [  8584] By: jhi                                   on 2001/01/28  19:30:02
5580         Log: Integrate perlio.
5581      Branch: perl
5582           +> pod/perliol.pod
5583           !> MANIFEST pod/perlapio.pod
5584 ____________________________________________________________________________
5585 [  8583] By: jhi                                   on 2001/01/28  19:28:40
5586         Log: Patch from Inaba Hiroto:
5587              - canonical UTF-8 hash keys: if a key string for a hash is
5588              UTF8-on, try downgrade the string and use it if
5589              unicode::distinct is not in effect.
5590              For the task, I added a function bytes_from_utf8() to utf8.c.
5591              It might resemble utf8_to_bytes() but it is not convenient
5592              to the task.
5593              Made a test for it and added to t/op/each.t
5594              - Changed do_print in doio.c to apply sv_utf8_(downgrade|upgrade) to
5595              the mortal copy of the argument SV.
5596              And changed t/io/utf8.t test 18 which expects print() to
5597              upgrade its argument.
5598              - re-implement sv_eq with bytes_from_utf8()
5599              - some bug fixes
5600              - tr/// does not handle UTF8 range (\x{}-\x{})
5601              - \ before raw UTF8 character produced
5602              "Malformed UTF-8 character" warning.
5603              - "\x{100}\N{CENT SIGN}" is Malformed.
5604              Added tests for these 3.
5605              - and one silly bug (by me) with qu operator.
5606      Branch: perl
5607            ! doio.c embed.h embed.pl global.sym hv.c objXSUB.h perlapi.c
5608            ! pod/perlapi.pod proto.h sv.c t/io/utf8.t t/lib/charnames.t
5609            ! t/op/each.t t/op/tr.t t/pragma/utf8.t toke.c utf8.c
5610 ____________________________________________________________________________
5611 [  8582] By: nick                                  on 2001/01/28  19:25:04
5612         Log: Add pod/perliol.pod to MANIFEST :-(
5613      Branch: perlio
5614            ! MANIFEST
5615 ____________________________________________________________________________
5616 [  8581] By: nick                                  on 2001/01/28  19:22:40
5617         Log: PerlIO documentation. Proofing and sub-editing requested.
5618      Branch: perlio
5619            + pod/perliol.pod
5620            ! pod/perlapio.pod
5621 ____________________________________________________________________________
5622 [  8580] By: jhi                                   on 2001/01/28  05:16:25
5623         Log: Revert the change to sv_2pv() done by #8054: Someone who
5624              did SvNV_set() on a scalar that also happened to be POK,
5625              followed by sv_2pv() won't get the right coercion anymore.
5626              [Sarathy]
5627      Branch: maint-5.6/perl
5628            ! sv.c
5629 ____________________________________________________________________________
5630 [  8579] By: jhi                                   on 2001/01/28  05:15:04
5631         Log: Remove the #8084 effect: do not allow -Q to be interpreted
5632              as -&Q(), this is too much wiggle room.
5633      Branch: maint-5.6/perl
5634            ! toke.c
5635 ____________________________________________________________________________
5636 [  8578] By: jhi                                   on 2001/01/28  05:12:45
5637         Log: Needed bits of #8439 (should have been in #8576),
5638              mainly for lval substr().
5639      Branch: maint-5.6/perl
5640            ! mg.c pp.c pp_hot.c
5641 ____________________________________________________________________________
5642 [  8577] By: jhi                                   on 2001/01/28  05:02:46
5643         Log: A missing check-in.
5644      Branch: maint-5.6/perl
5645            ! utf8.c
5646 ____________________________________________________________________________
5647 [  8576] By: jhi                                   on 2001/01/28  04:26:18
5648         Log: Integrate changes #8425,8436,8439,8517 from mainline.
5649              The 8439 was not truly integrated because it had too many
5650              dependencies on the development branch and because it introduced
5651              concepts too bold for a maintenance branch (such as the qu operator).
5652              
5653              Subject: [PATCH perl@8342] -Wformat
5654              
5655              Tighten some of the UTF-8 tests a bit.
5656              
5657              More UTF-8 patches from Inaba Hiroto. (8439, but only partly)
5658              - The substr lval was still not okay.
5659              - Now pp_stringify and sv_setsv copies source's UTF8 flag
5660              even if IN_BYTE.  pp_stringify is called from fold_constants
5661              at optimization phase and "\x{100}" was made SvUTF8_off under
5662              use bytes (the bytes pragma is for "byte semantics" and not
5663              for "do not produce UTF8 data")
5664      Branch: maint-5.6/perl
5665            ! t/lib/charnames.t t/op/substr.t toke.c
5666           !> sv.c t/pragma/utf8.t
5667 ____________________________________________________________________________
5668 [  8575] By: jhi                                   on 2001/01/28  04:01:51
5669         Log: Integrate changes #8378,8379,8385,8386,8405 from mainline.
5670              
5671              Subject: One more patch for UTF8  (UTF-8 fixes for 'x' and tr////)
5672              
5673              Subject: [ID 20001230.003] UTF-8 tr still hurts
5674              
5675              Test cases for #8385 (from Simon's "torture.pl")
5676              
5677              Start fixing UTF-8 lval substr() (8405)
5678      Branch: maint-5.6/perl
5679           !> doop.c embed.h embed.pl mg.c op.c pod/perlapi.pod pp.c proto.h
5680           !> regcomp.c regexec.c t/op/substr.t t/op/tr.t toke.c utf8.c
5681 ____________________________________________________________________________
5682 [  8574] By: jhi                                   on 2001/01/28  03:09:06
5683         Log: Integrate changes #8328,8329,8330,8331,8332,8341,8343,8377
5684              from mainline.
5685              
5686              UTF-8 cleanup.
5687              
5688              Subject: [PATCH perl@8327] strings with \x{..} in the middle are corrupted 
5689              
5690              "\x{FF}\xFF" was broken.
5691              
5692              Tests for #8329 and #8330.
5693              
5694              Add a note about EBCDIC versus UTF-8 to a potential problem spot.
5695              
5696              IRIX compiler noticed that the bof initialization might be
5697              bypassed by control flow.
5698              
5699              Make explicit our assumption that (for now) "\x{80}" produces UTF-8.
5700      Branch: maint-5.6/perl
5701           !> doop.c op.c pp.c pp_ctl.c pp_hot.c pp_sys.c regcomp.c
5702           !> regexec.c sv.c t/op/bop.t toke.c utf8.c
5703 ____________________________________________________________________________
5704 [  8573] By: jhi                                   on 2001/01/28  02:06:12
5705         Log: Retract #8552.
5706      Branch: perl
5707            ! lib/Text/Wrap.pm t/lib/textwrap.t
5708 ____________________________________________________________________________
5709 [  8572] By: jhi                                   on 2001/01/28  02:04:49
5710         Log: Integrate changes #8267,8272[perlio],8274,8298,8300,8303,
5711              8305,8323,8324 from mainline.  The 8267,8272, and 8298 were
5712              not really integrated but instead salvaged by hand
5713              (they had too many dependencies on the development release
5714              to be cleanly integratable).
5715              
5716              Subject: more UTF8 test suites and an UTF8 patch
5717              
5718              Tweak for MULTIPLICITY/USE_PERLIO
5719              
5720              Signedness nit.
5721              
5722              Turn SvUTF8 off if not required in pp_chr and pp_stringify.
5723              
5724              Use the UTF8_XXX macros in is_utf8_char().
5725              
5726              Rewrite pp_concat() in terms of sv_catsv().  The . operator
5727              should now be UTF-8-proof.
5728              
5729              Subject: [PATCH perl@8269] scanning two hex-constants
5730              fails on EBCDIC environment (script length.t)
5731              
5732              Add some Unicode chop() tests.
5733      Branch: maint-5.6/perl
5734            ! doop.c mg.c pp.c pp_hot.c toke.c utf8.c
5735           !> sv.c t/op/chop.t utf8.h
5736 ____________________________________________________________________________
5737 [  8571] By: jhi                                   on 2001/01/28  00:35:59
5738         Log: Integrate changes #8090,8093[perlio,only the sv.c tweak],
5739              8245,8247,8248,8249,8250,8251,8260,8263,8264,8265 from mainline.
5740              
5741              Subject: [PATCH] Re: Breadperl & Tk (sv_utf8_upgrade fixes)
5742              
5743              The maxiters upper limit sanity check (guarding against
5744              non-progress) assumed bytes instead of characters in s///
5745              and split().
5746              
5747              Signedness nit.
5748              
5749              sv_catsv() rewrite (8248,8249,8251,8260,8263,8264,8265)
5750              join() should now be UTF-8-proof.
5751              
5752              More split // UTF-8 tests. (8250)
5753      Branch: maint-5.6/perl
5754           !> doop.c hv.c pp.c pp_hot.c sv.c t/op/join.t utf8.c utf8.h
5755           !> util.c
5756 ____________________________________________________________________________
5757 [  8570] By: jhi                                   on 2001/01/27  22:15:46
5758         Log: Integrate changes #7941,7943,7944,7958,7967,7995,7996,7998,
5759              8004,8005,8023,8024,8028,8030,8031,8033,8039,8042,8052[perlio],
5760              8053[perlio],8054[perlio,+sv.c(-PerlIO_isutf8),+require.t],
5761              8084,8204,8244,8333 from mainline.
5762              
5763              For -Q where Q might be a one-letter sub name one does no more
5764              get a warning about an unknown filetest (7941,7943,7944,8084).
5765              
5766              Subject: Re: [ID 20001130.011] expression parsing bug ?
5767              
5768              Make uv_to_utf8() to zero-terminate its output buffer.
5769              
5770              Split off t/op/length.t (7995)
5771              
5772              Split off t/op/utf8decode.t (7996)
5773              
5774              Remove an unnecessary 'use utf8' from the utf8.t (7998)
5775              
5776              Split off t/op/concat.t (8004)
5777              
5778              Split off t/op/ver.t (8005)
5779              
5780              Document utf8_length(), utf8_distance(), and utf8_hop().
5781              
5782              Document utf8_to_uv() better.
5783              
5784              Introduce macros for UTF8 decoding (8028,8033).
5785              
5786              Add test for reverse() (8030,8031).
5787              
5788              Subject: [PATCH] Re: ebcdic <-> ascii tables interjected in uv <-> utf8 considered harmful (8039,8333)
5789              
5790              Do not return the Unicode replacement character    on UTF-8
5791              decoding failure.
5792              
5793              Typo/thinko in S_scan_const() - seeing high bit sets has_utf8
5794              not this_utf8 i.e. the output string has one, but don't mess
5795              with source assumption. (8052,8053)
5796              
5797              Tweak t/comp/require.t to add a 'use bytes' to permit its dubious
5798              writing of BOM to a non-utf8 stream.  Fix SvPVutf8() - sv_2pv()
5799              was not expecting to be called with something that was already
5800              SvPOK() - (we just fossiked with SvUTF8 bit). Fix that and also
5801              just use the SvPV macro in sv_2pvutf8() to avoid the issue/overhead.
5802              (8054)
5803              
5804              Recode the naughty binary bytes in utf8decode.t using the \xHH.
5805              
5806              Make some panic messages a bit more logical.
5807      Branch: maint-5.6/perl
5808           +> t/op/concat.t t/op/length.t t/op/reverse.t t/op/utf8decode.t
5809           !> MANIFEST doop.c embed.pl lib/ExtUtils/Liblist.pm op.c
5810           !> pod/perlapi.pod pod/perldiag.pod pp.c pp_hot.c regcomp.c
5811           !> regexec.c sv.c t/comp/require.t t/op/misc.t t/op/ver.t
5812           !> t/pragma/utf8.t t/pragma/warn/toke t/pragma/warn/utf8 toke.c
5813           !> utf8.c utf8.h
5814 ____________________________________________________________________________
5815 [  8569] By: jhi                                   on 2001/01/27  19:16:43
5816         Log: Integrate changes #7750 from perlio and #8566 from mainline.
5817      Branch: maint-5.6/perl
5818           !> regexec.c sv.c
5819 ____________________________________________________________________________
5820 [  8568] By: jhi                                   on 2001/01/27  18:06:51
5821         Log: Integrate changes #7355[-doio.c],7691,7744,7753[perlio],
5822              7783,7790[perlio],7869,7871,7872,7911,7916,7932,
5823              7935[-perlio.c],7936,7959,7965 from mainline.
5824              
5825              Change the "big byte" error message to "Wide character".
5826              (7355, the croak-if-wide-chars-in-print part ignored)
5827              
5828              Use UINT64_C().
5829              
5830              Introduce Perl_utf8_length().
5831              
5832              diff -se shows these as different (7753, forgotten check-ins)
5833              
5834              Subject: [PATCH] doop.c - UTF8 tr///
5835              
5836              If we use (aTHX_ ...) then put Perl_ on the front.
5837              
5838              Make utf8_length() and utf8_distance() to be less forgiving
5839              about bad UTF-8.
5840              
5841              Test line numbers are different with utf8.
5842              
5843              No need to scan till infinity, 13 is enough. (7872,7911)
5844              
5845              Subject: [PATCH] Tokeniser debugging
5846              
5847              Subject: Re: question about retlen in utf8.c:Perl_utf8_to_uv()
5848              
5849              Subject: [PATCH perl@7930] toke.c perlio.c -Wformat nits (only toke.c)
5850              
5851              Be more careful in Perl_sv_utf8_downgrade().
5852              
5853              Use DO_UTF8().
5854              
5855              Raw zero bytes in text files confuse at least GNU patch 2.1.
5856      Branch: maint-5.6/perl
5857           !> doop.c embed.h embed.pl global.sym handy.h objXSUB.h op.c
5858           !> perl.c perl.h perlapi.c pod/perlapi.pod pod/perldiag.pod
5859           !> pod/perlrun.pod proto.h scope.h sv.c t/op/re_tests
5860           !> t/pragma/utf8.t toke.c utf8.c utf8.h
5861 ____________________________________________________________________________
5862 [  8567] By: nick                                  on 2001/01/27  11:10:38
5863         Log: Integrate mainline
5864      Branch: perlio
5865           !> Changes README.os390 embed.h embed.pl op.c patchlevel.h pp.c
5866           !> proto.h regexec.c sv.c t/lib/1_compile.t t/lib/b.t
5867           !> t/lib/st-06compat.t t/pragma/overload.t t/pragma/sub_lval.t
5868           !> toke.c
5869 ____________________________________________________________________________
5870 [  8566] By: jhi                                   on 2001/01/27  06:22:48
5871         Log: More documentation for the regexp context stack.
5872      Branch: perl
5873            ! regexec.c
5874 ____________________________________________________________________________
5875 [  8565] By: jhi                                   on 2001/01/27  05:21:57
5876         Log: Update Changes.
5877      Branch: perl
5878            ! Changes patchlevel.h
5879 ____________________________________________________________________________
5880 [  8564] By: jhi                                   on 2001/01/27  04:44:04
5881         Log: Threadedness patch for #8562 from Doug MacEachern.
5882      Branch: perl
5883            ! toke.c
5884 ____________________________________________________________________________
5885 [  8563] By: jhi                                   on 2001/01/27  04:26:24
5886         Log: Subject: [PATCH @8545] [ID 20000808.005] OP_REFGEN as an lvalue
5887              From: Stephen McCamant <smcc@CSUA.Berkeley.EDU>
5888              Date: Thu, 25 Jan 2001 01:17:21 -0800 (PST)
5889              Message-ID: <14959.59703.507462.978833@soda.csua.berkeley.edu>
5890      Branch: perl
5891            ! op.c
5892 ____________________________________________________________________________
5893 [  8562] By: jhi                                   on 2001/01/27  04:20:30
5894         Log: Subject: Re: Announce : Tokener reporting patch
5895              From: Simon Cozens <simon@cozens.net>
5896              Date: Mon, 22 Jan 2001 02:17:22 +0000
5897              Message-ID: <20010122021722.A9334@pembro26.pmb.ox.ac.uk>
5898      Branch: perl
5899            ! embed.h embed.pl proto.h toke.c
5900 ____________________________________________________________________________
5901 [  8561] By: jhi                                   on 2001/01/27  04:17:24
5902         Log: Forgot from #8545.  Oops.
5903      Branch: perl
5904            ! pp.c t/pragma/overload.t
5905 ____________________________________________________________________________
5906 [  8560] By: jhi                                   on 2001/01/27  03:01:47
5907         Log: A better module compilation test, use MANIFEST as suggested
5908              by Spider.
5909      Branch: perl
5910            ! t/lib/1_compile.t
5911 ____________________________________________________________________________
5912 [  8559] By: jhi                                   on 2001/01/27  02:50:48
5913         Log: Subject: [PATCH: perl@8531] EBCDIC cleanup for B test
5914              From: Peter Prymmer <pvhp@forte.com>
5915              Date: Fri, 26 Jan 2001 16:38:08 -0800 (PST)
5916              Message-ID: <Pine.OSF.4.10.10101261635400.14820-100000@aspara.forte.com>
5917      Branch: perl
5918            ! t/lib/b.t
5919 ____________________________________________________________________________
5920 [  8558] By: jhi                                   on 2001/01/27  02:27:05
5921         Log: Subject: [PATCH: perl@8531] EBCDIC branch for pragma/sub-lval.t
5922              From: Peter Prymmer <pvhp@forte.com>
5923              Date: Fri, 26 Jan 2001 16:05:11 -0800 (PST)
5924              Message-ID: <Pine.OSF.4.10.10101261603460.14820-100000@aspara.forte.com>
5925      Branch: perl
5926            ! t/pragma/sub_lval.t
5927 ____________________________________________________________________________
5928 [  8557] By: jhi                                   on 2001/01/27  02:26:03
5929         Log: Subject: [PATCH: perl@8531] a peek at uuencoded EBCDIC (st-06compat.t)
5930              From: Peter Prymmer <pvhp@forte.com>
5931              Date: Fri, 26 Jan 2001 14:47:46 -0800 (PST)
5932              Message-ID: <Pine.OSF.4.10.10101261443561.14820-100000@aspara.forte.com>
5933      Branch: perl
5934            ! t/lib/st-06compat.t
5935 ____________________________________________________________________________
5936 [  8556] By: jhi                                   on 2001/01/27  02:24:33
5937         Log: Subject: [PATCH: perl@8531] minor update to README.os390
5938              From: Peter Prymmer <pvhp@forte.com>
5939              Date: Fri, 26 Jan 2001 14:33:27 -0800 (PST)
5940              Message-ID: <Pine.OSF.4.10.10101261425560.14820-100000@aspara.forte.com>
5941      Branch: perl
5942            ! README.os390
5943 ____________________________________________________________________________
5944 [  8555] By: jhi                                   on 2001/01/27  00:35:47
5945         Log: No point in checking the length before we know whether the pointer
5946              is bogus or not, fixes Abigail's odbm failures in Linux.
5947      Branch: perl
5948            ! sv.c
5949 ____________________________________________________________________________
5950 [  8554] By: nick                                  on 2001/01/26  19:01:31
5951         Log: Integrate mainline
5952      Branch: perlio
5953           !> lib/Text/Wrap.pm t/lib/textwrap.t
5954 ____________________________________________________________________________
5955 [  8553] By: jhi                                   on 2001/01/26  15:19:39
5956         Log: Integrate change #7792 from perlio (multiplicity fix),
5957              fix the AV leak in regex DEBUGGING (tiny part of the
5958              polymorphic regexp patch #8143).
5959      Branch: maint-5.6/perl
5960            ! regcomp.c
5961           !> scope.h
5962 ____________________________________________________________________________
5963 [  8552] By: jhi                                   on 2001/01/26  15:03:23
5964         Log: Subject: [PATCH Text::Wrap 2000.06292219] Spurious leading whitespace
5965              From: Michael G Schwern <schwern@pobox.com>
5966              Date: Fri, 26 Jan 2001 09:28:31 -0500
5967              Message-ID: <20010126092831.A15328@blackrider.aocn.com>
5968      Branch: perl
5969            ! lib/Text/Wrap.pm t/lib/textwrap.t
5970 ____________________________________________________________________________
5971 [  8551] By: jhi                                   on 2001/01/26  02:33:19
5972         Log: Integrate changes #7760,7815,7870,7873,7874,7877,7878,7879,7881,
5973              7937,7938,7939,7940,7968,7969,8403,8414,8510 from mainline.
5974              
5975              Subject: [PATCH 5.7.0] The first step in removing recursion from the REx engine
5976              
5977              Subject: [PATCH 5.7.0] Overeager visited-positions optimizations
5978              
5979              Message nit.
5980              
5981              BOUND regex opcodes (\b, \B) could try to scan zero length UTF-8.
5982              
5983              Debug dump of ANYOFUTF8 was garbage (data from ANYOF).
5984              
5985              (the cleanup of unused submatches in regtry() and regcppop())
5986              
5987              Fix for 20001130.008 and 20001130.010, the PL_regnpar wasn't
5988              stored and restored, and thusly was trounced by the utf8 swash
5989              routines.
5990              
5991              use utf8 not required to use \x{}.
5992              
5993              Removed two more tests that make no sense in UTF-8 since the test
5994              data is not in UTF-8.
5995              
5996              Get the three different space character classes right under utf8.
5997              
5998              Implement ANYOFUTF8 regprop() dumping.
5999              
6000              Subject: Re: [ID 20001029.005] Regex error: "cd. (A. Tw)" !~ /\((\w\. \w+)\)/
6001              
6002              Document the regex context pushing/popping a bit better.
6003      Branch: maint-5.6/perl
6004           +> lib/unicode/Is/Blank.pl lib/unicode/Is/SpacePerl.pl
6005           !> MANIFEST lib/unicode/mktables.PL pod/perlre.pod regcomp.c
6006           !> regexec.c scope.h t/op/pat.t t/op/re_tests t/op/regexp.t
6007           !> t/op/regmesg.t utf8.c
6008 ____________________________________________________________________________
6009 [  8550] By: nick                                  on 2001/01/25  19:42:30
6010         Log: Integrate mainline
6011      Branch: perlio
6012           !> Makefile.SH README.os390 gv.c hints/os390.sh installperl
6013           !> lib/Math/BigFloat.pm lib/Math/BigInt.pm lib/overload.pm perl.h
6014           !> pod/perlguts.pod t/lib/bigfloat.t t/lib/bigfltpm.t
6015           !> t/lib/bigint.t t/lib/bigintpm.t
6016 ____________________________________________________________________________
6017 [  8549] By: jhi                                   on 2001/01/25  15:22:28
6018         Log: Undo 6475: { use utf8; chr(128..255) } is better off producing bytes.
6019      Branch: maint-5.6/perl
6020            ! pod/perlfunc.pod pp.c t/pragma/utf8.t
6021 ____________________________________________________________________________
6022 [  8548] By: jhi                                   on 2001/01/25  15:02:55
6023         Log: Integrate changes #7997,8063,8492,8547 from mainline.
6024              
6025              Subject: Re: STRLEN - what?
6026              
6027              Subject: [PATCH] perlguts.pod
6028              
6029              Memory management calls documentation.
6030              
6031              Layout using tabulator is not a good idea in a pod.
6032      Branch: maint-5.6/perl
6033           !> pod/perlguts.pod
6034 ____________________________________________________________________________
6035 [  8547] By: jhi                                   on 2001/01/25  14:49:05
6036         Log: Layout using tabulator is not a good idea in a pod.
6037      Branch: perl
6038            ! pod/perlguts.pod
6039 ____________________________________________________________________________
6040 [  8546] By: jhi                                   on 2001/01/25  14:31:12
6041         Log: Integrate changes #8188,8189,8208,8209,8210,8212,8374,8388
6042              from mainline.
6043              
6044              Subject: [DOC PATCH: perl@7953] update list of lang. sensitive editors/IDES
6045              
6046              Subject: [DOC PATCH: perl@8150, 5.6.1-TRIAL1] update list of lang. sensitive editors/IDES
6047              
6048              More Win32 editor/IDE/shell hints.
6049              
6050              More Win32 Perling.
6051              
6052              Yet another editor edit.
6053              
6054              Edit edit edit.
6055              
6056              IDE/editor section tweaking.
6057              
6058              Few more IDE/editor nits from p5p.
6059      Branch: maint-5.6/perl
6060           !> pod/perlfaq3.pod
6061 ____________________________________________________________________________
6062 [  8545] By: jhi                                   on 2001/01/25  04:16:32
6063         Log: Subject: [PATCH 5.7.0] overload int()
6064              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
6065              Date: Wed, 24 Jan 2001 19:06:57 -0500
6066              Message-ID: <20010124190657.A8512@math.ohio-state.edu>
6067      Branch: perl
6068            ! gv.c lib/Math/BigFloat.pm lib/Math/BigInt.pm lib/overload.pm
6069            ! perl.h t/lib/bigfloat.t t/lib/bigfltpm.t t/lib/bigint.t
6070            ! t/lib/bigintpm.t
6071 ____________________________________________________________________________
6072 [  8544] By: jhi                                   on 2001/01/25  04:15:11
6073         Log: Subject: [PATCH: perl@8506]completion and docs for dynamic loading on OS/390
6074              From: Peter Prymmer <pvhp@forte.com>
6075              Date: Wed, 24 Jan 2001 17:17:14 -0800 (PST)
6076              Message-ID: <Pine.OSF.4.10.10101241706120.411912-100000@aspara.forte.com>
6077      Branch: perl
6078            ! Makefile.SH README.os390 hints/os390.sh installperl
6079 ____________________________________________________________________________
6080 [  8543] By: jhi                                   on 2001/01/25  03:52:08
6081         Log: Integrate change #8462,8469 from mainline.
6082              
6083              In VMS Perl subversion (perl -V) is undef.
6084      Branch: maint-5.6/perl
6085           !> configure.com
6086 ____________________________________________________________________________
6087 [  8542] By: jhi                                   on 2001/01/25  03:44:55
6088         Log: Integrate changes #7835,7850,8315,8316 from mainline.
6089              
6090              Solaris hints.
6091      Branch: maint-5.6/perl
6092           !> hints/solaris_2.sh
6093 ____________________________________________________________________________
6094 [  8541] By: jhi                                   on 2001/01/25  03:39:28
6095         Log: Integrate #8336 from mainline.
6096      Branch: maint-5.6/perl
6097           !> hv.c
6098 ____________________________________________________________________________
6099 [  8540] By: jhi                                   on 2001/01/25  03:23:50
6100         Log: Retract #8539.
6101      Branch: maint-5.6/perl
6102            ! pod/perlfaq3.pod
6103 ____________________________________________________________________________
6104 [  8539] By: jhi                                   on 2001/01/25  03:21:55
6105         Log: (Retracted by #5940.)
6106      Branch: maint-5.6/perl
6107            ! pod/perlfaq3.pod
6108 ____________________________________________________________________________
6109 [  8538] By: jhi                                   on 2001/01/25  03:14:07
6110         Log: Subject: [re-patch: 5.6.1-TRIAL1] was Re: [PATCH 5.6.1-TRIAL1]VMS buildpatches
6111              From: Peter Prymmer <pvhp@forte.com>
6112              Date: Mon, 18 Dec 2000 13:10:35 -0800 (PST)
6113              Message-ID: <Pine.OSF.4.10.10012181249310.410192-100000@aspara.forte.com>
6114              
6115              The VMS bits.
6116      Branch: maint-5.6/perl
6117            ! configure.com vms/descrip_mms.template
6118 ____________________________________________________________________________
6119 [  8537] By: jhi                                   on 2001/01/25  03:06:09
6120         Log: Integrate #7710,7824,7973 from mainline.
6121      Branch: maint-5.6/perl
6122           !> Configure Porting/Glossary Porting/config.sh Porting/config_H
6123           !> config_h.SH configure.com epoc/config.sh hints/aix.sh malloc.c
6124           !> regcomp.c sv.c vos/config.alpha.def vos/config.alpha.h
6125           !> vos/config.ga.def vos/config.ga.h win32/config.bc
6126           !> win32/config.gc win32/config.vc
6127 ____________________________________________________________________________
6128 [  8536] By: jhi                                   on 2001/01/24  13:50:20
6129         Log: Revert the edits made by me so far to the 5.6 branch since
6130              the TRIAL1 since I did edits when I should have been using
6131              integrates.  Bad programmer.   (Will integrate them properly later.)
6132              Undoes #8347, #8349, #8350, #8351, #8353, #8355, #8376, #8463, #8470.
6133              The #8353 will not be reapplied at least for now since
6134              the UTF-8 hash keys need more thinking.
6135              (The patches #8347, #8354, #8454, #8473 were okay since they
6136              were original edits made specifically for the 5.6.1-TRIAL1.)
6137      Branch: maint-5.6/perl
6138            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
6139            ! config_h.SH configure.com embed.pl epoc/config.sh hints/aix.sh
6140            ! hints/solaris_2.sh hv.c hv.h malloc.c perlapi.c
6141            ! pod/perlapi.pod pod/perlfaq3.pod proto.h regcomp.c sv.c
6142            ! t/op/each.t vms/descrip_mms.template vos/config.alpha.def
6143            ! vos/config.alpha.h vos/config.ga.def vos/config.ga.h
6144            ! win32/config.bc win32/config.gc win32/config.vc
6145 ____________________________________________________________________________
6146 [  8535] By: bailey                                on 2001/01/24  06:37:02
6147         Log: SYN SYN
6148      Branch: vmsperl
6149           +> (branch 26 files)
6150           !> (integrate 130 files)
6151 ____________________________________________________________________________
6152 [  8534] By: nick                                  on 2001/01/23  19:30:57
6153         Log: Integrate mainline.
6154      Branch: perlio
6155           !> Changes Configure Porting/Glossary Porting/config.sh
6156           !> Porting/config_H embed.h embed.pl ext/Encode/compile
6157           !> ext/Opcode/Opcode.xs ext/Opcode/Safe.pm installperl objXSUB.h
6158           !> patchlevel.h perlapi.c perly.y pod/perlfunc.pod
6159           !> pod/perlvar.pod proto.h t/lib/1_compile.t
6160 ____________________________________________________________________________
6161 [  8533] By: jhi                                   on 2001/01/23  16:15:46
6162         Log: Forgotten from #8501.
6163      Branch: perl
6164            ! Porting/Glossary Porting/config.sh Porting/config_H
6165 ____________________________________________________________________________
6166 [  8532] By: jhi                                   on 2001/01/23  16:13:27
6167         Log: Subject: RE: [PATCH perl@8269] Corrections for Perl_yylex_r (used by a reentrant parser as Bison) 
6168              From: "Roca, Ignasi" <ignasi.roca@fujitsu.siemens.es>
6169              Date: Mon, 22 Jan 2001 17:51:58 +0100
6170              Message-ID: <5930DC161690D21196670090271575470397E915@madt009a.siemens.es>
6171      Branch: perl
6172            ! embed.h embed.pl objXSUB.h perlapi.c perly.y proto.h
6173 ____________________________________________________________________________
6174 [  8531] By: jhi                                   on 2001/01/23  15:46:01
6175         Log: Update Changes.
6176      Branch: perl
6177            ! Changes patchlevel.h
6178 ____________________________________________________________________________
6179 [  8530] By: jhi                                   on 2001/01/23  15:38:39
6180         Log: De-cut-and-pasto.
6181      Branch: perl
6182            ! t/lib/1_compile.t
6183 ____________________________________________________________________________
6184 [  8529] By: jhi                                   on 2001/01/23  15:11:04
6185         Log: Document the mkdir trailing slashes case.
6186      Branch: perl
6187            ! pod/perlfunc.pod
6188 ____________________________________________________________________________
6189 [  8528] By: jhi                                   on 2001/01/23  15:08:28
6190         Log: lib/lib.pm is arch dependent, and lib/lib_pm.PL shouldn't
6191              get installed:
6192              
6193              Subject: lib/lib.pm
6194              From: <abigail@foad.org>
6195              Date: Mon, 28 Aug 2000 20:35:08 -0400
6196              Message-ID: <20000829003508.21281.qmail@foad.org>
6197      Branch: perl
6198            ! installperl
6199 ____________________________________________________________________________
6200 [  8527] By: jhi                                   on 2001/01/23  14:44:04
6201         Log: Metaconfig unit change for #8526.
6202      Branch: metaconfig
6203            ! U/threads/archname.U
6204 ____________________________________________________________________________
6205 [  8526] By: jhi                                   on 2001/01/23  14:43:19
6206         Log: Attach -perlio to the archname if so selected.
6207      Branch: perl
6208            ! Configure
6209 ____________________________________________________________________________
6210 [  8525] By: jhi                                   on 2001/01/23  14:24:01
6211         Log: Subject: [PATCH] pod/perlvar.pod
6212              From: abigail@foad.org
6213              Date: Tue, 23 Jan 2001 01:41:10 +0100
6214              Message-ID: <20010123004110.22259.qmail@foad.org>
6215      Branch: perl
6216            ! pod/perlvar.pod
6217 ____________________________________________________________________________
6218 [  8524] By: jhi                                   on 2001/01/23  14:22:32
6219         Log: A bug introduced in #8217 (the undefined variable in the
6220              lib/safe1_t #3) fixed, by Charles Lane:
6221              
6222              The earlier patch made it so that stuff running in Safe
6223              compartments could do a "caller" and see "main".  That
6224              little change in name is done right before the code in
6225              the compartment is run, and apparantly the parser
6226              was picking up the stash name before it got changed.
6227              
6228              (why it was threaded vs. unthreaded Perl that was sensitive to this
6229              I still don't know...and it probably doesn't matter).
6230              
6231              I tryed removing the stash name-change and saw that threaded Perl
6232              did indeed pass the lib/safe1.t tests.
6233              
6234              So here's a patch; a routine (_safe_pkg_prep) is added to Opcode to
6235              do the name change (and to connect _ in the compartment to the global
6236              _) which is removed from _safe_call_sv.   Then Safe.pm is modified
6237              to call _safe_pkg_prep when creating a new compartment.
6238              
6239              Passes all tests with threaded perl on linux; passes all tests
6240              with unthreaded perl on VMS.
6241              
6242              At some point I'll probably want to revisit Safe and Opcode to
6243              provide more sensible handling of global variables...and to get
6244              formats working in Safe compartments, which they don't do currently.
6245      Branch: perl
6246            ! ext/Opcode/Opcode.xs ext/Opcode/Safe.pm
6247 ____________________________________________________________________________
6248 [  8523] By: jhi                                   on 2001/01/23  14:11:58
6249         Log: Also the lib/Thread.pm itself needs to be ignored if
6250              the Thread extension hasn't been built.
6251      Branch: perl
6252            ! t/lib/1_compile.t
6253 ____________________________________________________________________________
6254 [  8522] By: jhi                                   on 2001/01/23  13:51:28
6255         Log: print() instead of warn() so that stderr doesn't get
6256              unncessarily polluted.
6257      Branch: perl
6258            ! ext/Encode/compile
6259 ____________________________________________________________________________
6260 [  8521] By: jhi                                   on 2001/01/23  13:49:48
6261         Log: Integrate perlio.
6262      Branch: perl
6263           !> ext/Encode/Encode.xs ext/Encode/Makefile.PL ext/Encode/compile
6264           !> ext/Encode/encode.h
6265 ____________________________________________________________________________
6266 [  8520] By: nick                                  on 2001/01/22  21:44:00
6267         Log: More messing with Encode:
6268              Extra fields in header to allow multiple names and to record
6269              other things "compile" knows.
6270              Re-organise compile to factor out common output routines.
6271      Branch: perlio
6272            ! ext/Encode/Encode.xs ext/Encode/compile ext/Encode/encode.h
6273 ____________________________________________________________________________
6274 [  8519] By: nick                                  on 2001/01/22  20:33:50
6275         Log: Change file-of-files command line from -F to -f to avoid case issues on VMS.
6276      Branch: perlio
6277            ! ext/Encode/Makefile.PL ext/Encode/compile
6278 ____________________________________________________________________________
6279 [  8518] By: nick                                  on 2001/01/22  20:28:13
6280         Log: Integrate mainline
6281      Branch: perlio
6282           !> MANIFEST configure.com epoc/config.sh pp_sys.c regexec.c sv.c
6283           !> vos/config.alpha.def vos/config.alpha.h
6284 ____________________________________________________________________________
6285 [  8517] By: jhi                                   on 2001/01/22  15:37:17
6286         Log: Add sv_force_normal() to sv_utf8_downgrade() as suggested
6287              by Inaba Hiroto.
6288      Branch: perl
6289            ! sv.c
6290 ____________________________________________________________________________
6291 [  8516] By: jhi                                   on 2001/01/22  14:55:15
6292         Log: More SIG_SIZE fixes.
6293      Branch: perl
6294            ! epoc/config.sh vos/config.alpha.def vos/config.alpha.h
6295 ____________________________________________________________________________
6296 [  8515] By: jhi                                   on 2001/01/22  14:50:27
6297         Log: Subject: [PATCH perl@8506] typo in last week's configure.com frenzy
6298              From: "Craig A. Berry" <craigberry@mac.com>
6299              Date: Mon, 22 Jan 2001 00:42:24 -0600
6300              Message-Id: <p04330103b6917f35375b@[172.16.52.1]>
6301      Branch: perl
6302            ! configure.com
6303 ____________________________________________________________________________
6304 [  8514] By: jhi                                   on 2001/01/22  14:31:17
6305         Log: Subject: [PATCH perl@8506] VMS catches up with change #8501
6306              From: "Craig A. Berry" <craigberry@mac.com>
6307              Date: Sun, 21 Jan 2001 23:03:25 -0600
6308              Message-Id: <p04330101b691596f577f@[172.16.52.1]>
6309      Branch: perl
6310            ! configure.com
6311 ____________________________________________________________________________
6312 [  8513] By: jhi                                   on 2001/01/22  14:14:00
6313         Log: Add the .ucm encoding tables to the MANIFEST.
6314      Branch: perl
6315            ! MANIFEST
6316 ____________________________________________________________________________
6317 [  8512] By: jhi                                   on 2001/01/22  13:43:33
6318         Log: Integrate perlio.
6319      Branch: perl
6320           +> ext/Encode/Encode/ascii.ucm ext/Encode/Encode/cp1047.ucm
6321           +> ext/Encode/Encode/cp1250.ucm ext/Encode/Encode/cp37.ucm
6322           +> ext/Encode/Encode/dingbats.ucm ext/Encode/Encode/iso8859-1.ucm
6323           +> ext/Encode/Encode/iso8859-10.ucm
6324           +> ext/Encode/Encode/iso8859-13.ucm
6325           +> ext/Encode/Encode/iso8859-14.ucm
6326           +> ext/Encode/Encode/iso8859-15.ucm
6327           +> ext/Encode/Encode/iso8859-16.ucm
6328           +> ext/Encode/Encode/iso8859-2.ucm
6329           +> ext/Encode/Encode/iso8859-3.ucm
6330           +> ext/Encode/Encode/iso8859-4.ucm
6331           +> ext/Encode/Encode/iso8859-5.ucm
6332           +> ext/Encode/Encode/iso8859-6.ucm
6333           +> ext/Encode/Encode/iso8859-7.ucm
6334           +> ext/Encode/Encode/iso8859-8.ucm
6335           +> ext/Encode/Encode/iso8859-9.ucm ext/Encode/Encode/posix-bc.ucm
6336           +> ext/Encode/Encode/symbol.ucm
6337           !> ext/Encode/Makefile.PL ext/Encode/compile lib/open.pm perlio.c
6338           !> perliol.h
6339 ____________________________________________________________________________
6340 [  8511] By: nick                                  on 2001/01/21  23:44:47
6341         Log: Make "real" layers of ":utf8" and ":raw".
6342              So now PERLIO=utf8 perl ...
6343              does what Andreas wanted.
6344              Fix arg passing in open.pm (still have a Carp issue).
6345      Branch: perlio
6346            ! lib/open.pm perlio.c perliol.h
6347 ____________________________________________________________________________
6348 [  8510] By: jhi                                   on 2001/01/21  22:56:53
6349         Log: Document the regex context pushing/popping a bit better.
6350      Branch: perl
6351            ! regexec.c
6352 ____________________________________________________________________________
6353 [  8509] By: jhi                                   on 2001/01/21  22:55:44
6354         Log: Tweak the mkdir trailing slash code some more.
6355              
6356              TO DO: the same handling should probably be done for
6357              all the other filesystem functions that can have directories
6358              as their arguments.
6359      Branch: perl
6360            ! pp_sys.c
6361 ____________________________________________________________________________
6362 [  8508] By: nick                                  on 2001/01/21  21:37:43
6363         Log: Switch "compiled in" encodings to .ucm format.
6364              (Leave others as .enc till we can run-time load .ucm,
6365              or find some other way to load them.)
6366      Branch: perlio
6367            + ext/Encode/Encode/ascii.ucm ext/Encode/Encode/cp1047.ucm
6368            + ext/Encode/Encode/cp1250.ucm ext/Encode/Encode/cp37.ucm
6369            + ext/Encode/Encode/dingbats.ucm ext/Encode/Encode/iso8859-1.ucm
6370            + ext/Encode/Encode/iso8859-10.ucm
6371            + ext/Encode/Encode/iso8859-13.ucm
6372            + ext/Encode/Encode/iso8859-14.ucm
6373            + ext/Encode/Encode/iso8859-15.ucm
6374            + ext/Encode/Encode/iso8859-16.ucm
6375            + ext/Encode/Encode/iso8859-2.ucm
6376            + ext/Encode/Encode/iso8859-3.ucm
6377            + ext/Encode/Encode/iso8859-4.ucm
6378            + ext/Encode/Encode/iso8859-5.ucm
6379            + ext/Encode/Encode/iso8859-6.ucm
6380            + ext/Encode/Encode/iso8859-7.ucm
6381            + ext/Encode/Encode/iso8859-8.ucm
6382            + ext/Encode/Encode/iso8859-9.ucm ext/Encode/Encode/posix-bc.ucm
6383            + ext/Encode/Encode/symbol.ucm
6384            ! ext/Encode/Makefile.PL ext/Encode/compile
6385 ____________________________________________________________________________
6386 [  8507] By: nick                                  on 2001/01/21  21:02:03
6387         Log: Integrate (partial) mainline.
6388      Branch: perlio
6389           !> Changes Configure config_h.SH patchlevel.h pod/perlfaq2.pod
6390           !> sv.c uconfig.h uconfig.sh vos/config.alpha.h vos/config.ga.h
6391           !> win32/config_H.bc win32/config_H.gc win32/config_H.vc
6392 ____________________________________________________________________________
6393 [  8506] By: jhi                                   on 2001/01/21  20:09:30
6394         Log: Update Changes.
6395      Branch: perl
6396            ! Changes patchlevel.h
6397 ____________________________________________________________________________
6398 [  8505] By: jhi                                   on 2001/01/21  19:39:59
6399         Log: Subject: Minor typos in perlfaq2.pod
6400              From: "Stephen P. Potter" <spp@spotter.yi.org>
6401              Message-Id: <200101192101.QAA11911@spotter.yi.org>
6402              Date: Fri, 19 Jan 2001 16:01:13 -0500
6403              
6404              with a nit from Philip Netwon.
6405      Branch: perl
6406            ! pod/perlfaq2.pod
6407 ____________________________________________________________________________
6408 [  8504] By: jhi                                   on 2001/01/21  19:33:05
6409         Log: Metaconfig change for #8503.
6410      Branch: metaconfig
6411            ! U/threads/usethreads.U
6412 ____________________________________________________________________________
6413 [  8503] By: jhi                                   on 2001/01/21  19:32:21
6414         Log: Sanity check for conflicting thread flavours.
6415      Branch: perl
6416            ! Configure config_h.SH
6417 ____________________________________________________________________________
6418 [  8502] By: jhi                                   on 2001/01/21  19:23:00
6419         Log: Metaconfig change for #8501.
6420      Branch: metaconfig
6421            ! U/modified/sig_name.U
6422 ____________________________________________________________________________
6423 [  8501] By: jhi                                   on 2001/01/21  19:22:26
6424         Log: The SIG_SIZE is the number of the elements *excluding*
6425              the terminating NULL.
6426      Branch: perl
6427            ! Configure config_h.SH uconfig.h uconfig.sh vos/config.alpha.h
6428            ! vos/config.ga.h win32/config_H.bc win32/config_H.gc
6429            ! win32/config_H.vc
6430 ____________________________________________________________________________
6431 [  8500] By: jhi                                   on 2001/01/21  18:31:31
6432         Log: Integrate perlio.
6433      Branch: perl
6434           !> doio.c embed.h embed.pl ext/Encode/Encode.xs
6435           !> ext/Encode/Makefile.PL ext/Encode/compile global.sym objXSUB.h
6436           !> opcode.h opcode.pl opnames.h perlapi.c pp.sym pp_proto.h
6437           !> pp_sys.c proto.h sv.c
6438 ____________________________________________________________________________
6439 [  8499] By: jhi                                   on 2001/01/21  17:43:57
6440         Log: Subject: Re: 8482 busted for $^V sprintf()s on OS/390 
6441              From: Hugo <hv@crypt.compulink.co.uk>
6442              Date: Sun, 21 Jan 2001 13:34:05 +0000
6443              Message-Id: <200101211334.NAA18121@crypt.compulink.co.uk>
6444              
6445              In sprintf UTF8ize only if necessary.
6446      Branch: perl
6447            ! sv.c
6448 ____________________________________________________________________________
6449 [  8498] By: nick                                  on 2001/01/21  16:25:32
6450         Log: Encode cleanup.
6451              Add command line control over "compile" so that Makefile.PL
6452              needs can be combined with other uses.
6453              Use command line options in Makefile.PL.
6454              Fix multi-byte parsing in .ucm files.
6455      Branch: perlio
6456            ! ext/Encode/Makefile.PL ext/Encode/compile
6457 ____________________________________________________________________________
6458 [  8497] By: nick                                  on 2001/01/21  12:56:27
6459         Log: Warn and set errno when open(...,":encoding(xxxxx)",...) cannot find xxxxx.
6460      Branch: perlio
6461            ! ext/Encode/Encode.xs
6462 ____________________________________________________________________________
6463 [  8496] By: nick                                  on 2001/01/21  12:18:45
6464         Log: Fixup after integrate:
6465              missed the .sym files that are changed by regen_headers
6466              sv.c and proto.h disagreed about pTHX_ ness of EXPECT_NUMBER.
6467      Branch: perlio
6468            ! global.sym pp.sym sv.c
6469 ____________________________________________________________________________
6470 [  8495] By: nick                                  on 2001/01/21  11:51:07
6471         Log: Integrate mainline.
6472      Branch: perlio
6473           +> ext/DynaLoader/dl_dllload.xs t/op/qu.t
6474           !> MANIFEST Makefile.SH README.os390 README.posix-bc README.vms
6475           !> embed.h embed.pl ext/DynaLoader/dl_aix.xs
6476           !> ext/DynaLoader/dl_dlopen.xs hints/os390.sh pod/perlfunc.pod
6477           !> pod/perlguts.pod pod/perlop.pod pod/perlre.pod
6478           !> pod/perlretut.pod pod/perlunicode.pod proto.h sv.c
6479           !> win32/Makefile win32/makefile.mk
6480 ____________________________________________________________________________
6481 [  8494] By: jhi                                   on 2001/01/20  23:12:11
6482         Log: Forgot the expect_number() prototype.
6483      Branch: perl
6484            ! embed.h embed.pl proto.h
6485 ____________________________________________________________________________
6486 [  8493] By: jhi                                   on 2001/01/20  22:56:39
6487         Log: Subject: [PATCH: perl@8482] README.vms URL updates
6488              From: Peter Prymmer <pvhp@forte.com>
6489              Date: Fri, 19 Jan 2001 18:59:02 -0800 (PST)
6490              Message-ID: <Pine.OSF.4.10.10101191856510.61572-100000@aspara.forte.com>
6491              
6492              Plus Craig A. Berry's suggestion to use compaq.com instead
6493              of digital.com.
6494      Branch: perl
6495            ! README.vms
6496 ____________________________________________________________________________
6497 [  8492] By: jhi                                   on 2001/01/20  22:50:05
6498         Log: Memory management calls documentation.
6499      Branch: perl
6500            ! pod/perlguts.pod
6501 ____________________________________________________________________________
6502 [  8491] By: jhi                                   on 2001/01/20  22:38:33
6503         Log: Signedness nit plus few memcpy/Copy nits.
6504      Branch: perl
6505            ! sv.c
6506 ____________________________________________________________________________
6507 [  8490] By: jhi                                   on 2001/01/20  22:25:53
6508         Log: Subject: [PATCH: perl@8482] minor typos in some dl_$foo.xs files
6509              From: Peter Prymmer <pvhp@forte.com>
6510              Date: Fri, 19 Jan 2001 18:43:14 -0800 (PST)
6511              Message-ID: <Pine.OSF.4.10.10101191841080.61505-100000@aspara.forte.com>
6512      Branch: perl
6513            ! ext/DynaLoader/dl_aix.xs ext/DynaLoader/dl_dlopen.xs
6514 ____________________________________________________________________________
6515 [  8489] By: jhi                                   on 2001/01/20  22:24:41
6516         Log: Subject: [PATCH: perl@8482] win32 Makefile(s) handle podified READMEs
6517              From: Peter Prymmer <pvhp@forte.com>
6518              Date: Fri, 19 Jan 2001 18:33:43 -0800 (PST)
6519              Message-ID: <Pine.OSF.4.10.10101191828050.61158-100000@aspara.forte.com>
6520      Branch: perl
6521            ! win32/Makefile win32/makefile.mk
6522 ____________________________________________________________________________
6523 [  8488] By: jhi                                   on 2001/01/20  22:22:27
6524         Log: Subject: [PATCH: perl@8482] remove redundant dependencies that are unneeded
6525              From: Peter Prymmer <pvhp@forte.com>
6526              Date: Fri, 19 Jan 2001 18:25:38 -0800 (PST)
6527              Message-ID: <Pine.OSF.4.10.10101191816550.61158-100000@aspara.forte.com>
6528      Branch: perl
6529            ! Makefile.SH
6530 ____________________________________________________________________________
6531 [  8487] By: jhi                                   on 2001/01/20  22:21:18
6532         Log: Subject: [PATCH: perl@8482] partial support for dynaloading on OS/390
6533              From: Peter Prymmer <pvhp@forte.com>
6534              Date: Fri, 19 Jan 2001 18:12:05 -0800 (PST)
6535              Message-ID: <Pine.OSF.4.10.10101191646420.61158-100000@aspara.forte.com>
6536      Branch: perl
6537            + ext/DynaLoader/dl_dllload.xs
6538            ! MANIFEST Makefile.SH hints/os390.sh
6539 ____________________________________________________________________________
6540 [  8486] By: jhi                                   on 2001/01/20  22:17:53
6541         Log: Subject: [PATCH: perl@8482] floating point mangling warnings for README.os390 and README.posix-bc
6542              From: Peter Prymmer <pvhp@forte.com>
6543              Date: Fri, 19 Jan 2001 13:48:15 -0800 (PST)
6544              Message-ID: <Pine.OSF.4.10.10101191347140.59299-100000@aspara.forte.com>
6545      Branch: perl
6546            ! README.os390 README.posix-bc
6547 ____________________________________________________________________________
6548 [  8485] By: jhi                                   on 2001/01/20  20:15:30
6549         Log: Document and test the new qu operator.
6550      Branch: perl
6551            + t/op/qu.t
6552            ! MANIFEST pod/perlfunc.pod pod/perlop.pod pod/perlre.pod
6553            ! pod/perlretut.pod pod/perlunicode.pod
6554 ____________________________________________________________________________
6555 [  8484] By: nick                                  on 2001/01/20  19:42:30
6556         Log: Infrastructure to allow:
6557              open($fh,"|-",@array);
6558              to be implemented
6559              i.e. mark pp_open as needing a stack mark, and make pp_open
6560              process its args in that style (and pass them _all_ to tied handles OPEN).
6561              Invent do_openn() which takes SV ** at allow it to see multiple args.
6562              Note this does not _do_ anything yet.
6563      Branch: perlio
6564            ! doio.c embed.h embed.pl objXSUB.h opcode.h opcode.pl opnames.h
6565            ! perlapi.c pp_proto.h pp_sys.c proto.h
6566 ____________________________________________________________________________
6567 [  8483] By: nick                                  on 2001/01/20  17:23:14
6568         Log: Integrate mainline.
6569      Branch: perlio
6570           !> Changes configure.com patchlevel.h sv.c t/lib/1_compile.t
6571           !> t/op/sprintf.t t/op/ver.t t/pragma/locale.t
6572 ____________________________________________________________________________
6573 [  8482] By: jhi                                   on 2001/01/19  15:37:49
6574         Log: Update Changes.
6575      Branch: perl
6576            ! Changes patchlevel.h
6577 ____________________________________________________________________________
6578 [  8481] By: jhi                                   on 2001/01/19  14:41:24
6579         Log: Subject: Re: new feature: s?printf parameter reordering 
6580              From: Hugo <hv@crypt.compulink.co.uk>
6581              Date: Thu, 11 Jan 2001 17:09:03 +0000
6582              Message-Id: <200101111709.RAA23756@crypt.compulink.co.uk>
6583              
6584              - support reordering for all parameters: %, *v, *, .*
6585              - lay down that the reordering specification must immediately
6586              follow that parameter: %3$, *v3$, *3$, .*3$
6587              - fix vectorisation of a zero-length string
6588              - factor out the code choosing the argument to format
6589              
6590              Possibly unwanted side-effects:
6591              - the special format specifiers ' +-0' must now precede any
6592              vectorisation specifier. Tests in op/sprintf and op/ver
6593              have been changed to reflect this.
6594              - sprintf.t test #214 changed its expectations because in many
6595              cases, the next parameter has already been consumed when an
6596              invalid type letter is detected.
6597              
6598              Probably wanted side-effects:
6599              - attempts to format a non-existent parameter will warn as if C<undef>
6600              - attempt to write to non-existent parameter with '%n' will complain
6601              of "attempt to modify read-only value" instead of being silent
6602      Branch: perl
6603            ! sv.c t/op/sprintf.t t/op/ver.t
6604 ____________________________________________________________________________
6605 [  8480] By: jhi                                   on 2001/01/19  14:08:37
6606         Log: Subject: PATCH pragma/locale.t
6607              From: andreas.koenig@anima.de (Andreas J. Koenig)
6608              Date: 18 Jan 2001 09:45:37 +0100
6609              Message-ID: <m3lms98czy.fsf@ak-71.mind.de>
6610      Branch: perl
6611            ! t/pragma/locale.t
6612 ____________________________________________________________________________
6613 [  8479] By: jhi                                   on 2001/01/19  13:19:58
6614         Log: Add tracing for debugging extensions builds in VMS, from Charles Lane.
6615      Branch: perl
6616            ! configure.com
6617 ____________________________________________________________________________
6618 [  8478] By: jhi                                   on 2001/01/19  02:12:35
6619         Log: Automate 1_compile.t.
6620      Branch: perl
6621            ! t/lib/1_compile.t
6622 ____________________________________________________________________________
6623 [  8477] By: jhi                                   on 2001/01/19  01:49:56
6624         Log: Integrate perlio.
6625      Branch: perl
6626           !> sv.c win32/config.bc win32/config.gc win32/config.vc
6627           !> win32/config_H.bc win32/config_H.gc win32/config_H.vc
6628 ____________________________________________________________________________
6629 [  8476] By: nick                                  on 2001/01/18  21:51:52
6630         Log: Integrate mainline
6631      Branch: perlio
6632           +> t/lib/1_compile.t t/lib/compmod.pl
6633           !> MANIFEST configure.com lib/unicode/distinct.pm
6634 ____________________________________________________________________________
6635 [  8475] By: nick                                  on 2001/01/18  21:48:02
6636         Log: Win32 "safe signals" co-existance fix.
6637              Fix SIG_SIZE value.
6638              Clear PL_sig_pending when cloning (fork).
6639      Branch: perlio
6640            ! sv.c win32/config.bc win32/config.gc win32/config.vc
6641            ! win32/config_H.bc win32/config_H.gc win32/config_H.vc
6642 ____________________________________________________________________________
6643 [  8474] By: jhi                                   on 2001/01/18  14:40:57
6644         Log: It's Pod::Text::Overstrike, not Pod::Overstrike.
6645      Branch: perl
6646            ! t/lib/1_compile.t
6647 ____________________________________________________________________________
6648 [  8473] By: gsar                                  on 2001/01/18  11:42:31
6649         Log: unsubmitted trial1 change
6650      Branch: maint-5.6/perl
6651            ! Changes
6652 ____________________________________________________________________________
6653 [  8472] By: jhi                                   on 2001/01/18  04:30:24
6654         Log: The first bug found by 1_compile.t.
6655      Branch: perl
6656            ! lib/unicode/distinct.pm
6657 ____________________________________________________________________________
6658 [  8471] By: jhi                                   on 2001/01/18  04:29:42
6659         Log: Add Schwern's 1_compile test.  The compile_module script renamed
6660              to be a bit shorter for the 8.3 people.
6661      Branch: perl
6662            + t/lib/1_compile.t t/lib/compmod.pl
6663            ! MANIFEST
6664 ____________________________________________________________________________
6665 [  8470] By: jhi                                   on 2001/01/18  04:16:00
6666         Log: Subject: [PATCH: perl@8453] Re: subversion undef on VMS (was Re: [ID 20001218.033] Not OK: perl v5.6.1 +v5.6.1-TRIAL1 on   VMS_AXP V7.2-1)
6667              From: Peter Prymmer <pvhp@forte.com>
6668              Date: Wed, 17 Jan 2001 13:07:11 -0800 (PST)
6669              Message-ID: <Pine.OSF.4.10.10101171255380.289071-100000@aspara.forte.com>
6670              Replace #8463.
6671      Branch: maint-5.6/perl
6672            ! configure.com
6673 ____________________________________________________________________________
6674 [  8469] By: jhi                                   on 2001/01/18  04:13:02
6675         Log: Subject: [PATCH: perl@8453] Re: subversion undef on VMS (was Re: [ID 20001218.033] Not OK: perl v5.6.1 +v5.6.1-TRIAL1 on   VMS_AXP V7.2-1)
6676              From: Peter Prymmer <pvhp@forte.com>
6677              Date: Wed, 17 Jan 2001 13:07:11 -0800 (PST)
6678              Message-ID: <Pine.OSF.4.10.10101171255380.289071-100000@aspara.forte.com>
6679              Replace #8462.
6680      Branch: perl
6681            ! configure.com
6682 ____________________________________________________________________________
6683 [  8468] By: jhi                                   on 2001/01/18  03:42:08
6684         Log: Integrate perlio.
6685      Branch: perl
6686           !> gv.c mg.c perlio.c util.c
6687 ____________________________________________________________________________
6688 [  8467] By: nick                                  on 2001/01/17  22:41:10
6689         Log: "Safe" signals - trial implementation.
6690              gv.c tweaked to zero PL_sig_pend array
6691              perlio.c tweaked to PERL_ASYNC_CHECK() on EINTR
6692              util.c tweaked to not set SA_RESTART to give perlio.c a chance.
6693              Odd thing is that it "works" with PERLIO=stdio as well (linux).
6694      Branch: perlio
6695            ! gv.c mg.c perlio.c util.c
6696 ____________________________________________________________________________
6697 [  8466] By: nick                                  on 2001/01/17  20:40:20
6698         Log: Integrate mainline.
6699      Branch: perlio
6700           !> Configure Porting/Glossary Porting/config.sh Porting/config_H
6701           !> config_h.SH configure.com epoc/config.sh gv.c pod/perltoc.pod
6702           !> pp.c pp_sys.c sv.c t/op/int.t uconfig.h uconfig.sh
6703           !> vos/config.alpha.def vos/config.alpha.h vos/config.ga.def
6704           !> vos/config.ga.h win32/config.bc win32/config.gc
6705           !> win32/config.vc
6706 ____________________________________________________________________________
6707 [  8465] By: jhi                                   on 2001/01/17  18:37:13
6708         Log: Subject: [PATCH] Re: [PATCH: perl@8429]  lib/tie-substrhash.t FAILED at test 11
6709              From: Nicholas Clark <nick@ccl4.org>
6710              Date: Wed, 17 Jan 2001 17:31:33 +0000
6711              Message-ID: <20010117173133.I2633@plum.flirble.org>
6712      Branch: perl
6713            ! t/op/int.t
6714 ____________________________________________________________________________
6715 [  8464] By: jhi                                   on 2001/01/17  14:43:17
6716         Log: Subject: [PATCH: perl@8429]  lib/tie-substrhash.t FAILED at test 11
6717              From: "Roca, Ignasi" <ignasi.roca@fujitsu.siemens.es>
6718              Date: Wed, 17 Jan 2001 15:16:43 +0100
6719              Message-ID: <5930DC161690D2119667009027157547038C8A85@madt009a.siemens.es> 
6720              
6721              pp_int() was dropping an NV to the floor,
6722              int(279964589018079/59) either returned not an integer
6723              4745162525730.15, or one got "Attempt to free unreferenced scalar."
6724      Branch: perl
6725            ! pp.c
6726 ____________________________________________________________________________
6727 [  8463] By: jhi                                   on 2001/01/17  06:12:42
6728         Log: (Replaced by #8470)
6729              
6730              Subject: subversion undef on VMS (was Re: [ID 20001218.033] Not OK: perl v5.6.1 +v5.6.1-TRIAL1 on   VMS_AXP V7.2-1)
6731              From: "Craig A. Berry" <craigberry@mac.com>
6732              Date: Tue, 16 Jan 2001 23:38:46 -0600
6733              Message-Id: <p04330103b68ad8cfcbfd@[172.16.52.1]>
6734      Branch: maint-5.6/perl
6735            ! configure.com
6736 ____________________________________________________________________________
6737 [  8462] By: jhi                                   on 2001/01/17  06:11:31
6738         Log: (Replaced by #8469)
6739              
6740              Subject: subversion undef on VMS (was Re: [ID 20001218.033] Not OK: perl v5.6.1 +v5.6.1-TRIAL1 on   VMS_AXP V7.2-1)
6741              From: "Craig A. Berry" <craigberry@mac.com>
6742              Date: Tue, 16 Jan 2001 23:38:46 -0600
6743              Message-Id: <p04330103b68ad8cfcbfd@[172.16.52.1]>
6744      Branch: perl
6745            ! configure.com
6746 ____________________________________________________________________________
6747 [  8461] By: jhi                                   on 2001/01/17  05:56:12
6748         Log: Allow for one trailing slash in the directory of mkdir().
6749      Branch: perl
6750            ! pp_sys.c
6751 ____________________________________________________________________________
6752 [  8460] By: jhi                                   on 2001/01/17  03:26:01
6753         Log: Metaconfig unit changes for #8459.
6754      Branch: metaconfig
6755            ! U/modified/Loc.U U/modified/sig_name.U
6756 ____________________________________________________________________________
6757 [  8459] By: jhi                                   on 2001/01/17  03:24:48
6758         Log: Define SIG_SIZE, the number of elements in the sig_name and
6759              sig_num arrays, including the final NULL entry.
6760      Branch: perl
6761            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
6762            ! config_h.SH configure.com epoc/config.sh gv.c pod/perltoc.pod
6763            ! sv.c uconfig.h uconfig.sh vos/config.alpha.def
6764            ! vos/config.alpha.h vos/config.ga.def vos/config.ga.h
6765            ! win32/config.bc win32/config.gc win32/config.vc
6766 ____________________________________________________________________________
6767 [  8458] By: jhi                                   on 2001/01/17  01:41:33
6768         Log: Integrate perlio.
6769      Branch: perl
6770           !> embed.h embed.pl embedvar.h gv.c intrpvar.h mg.c perl.c perl.h
6771           !> perlapi.h proto.h sv.c
6772 ____________________________________________________________________________
6773 [  8457] By: nick                                  on 2001/01/16  22:07:26
6774         Log: Provide infrastructure for PERL_ASYNC_CHECK() style safe signals.
6775              Provides all the "cost" but no benefit yet - it is to allow cost
6776              to be measured, and implementation experiments (just in mg.c?).
6777      Branch: perlio
6778            ! embed.h embed.pl embedvar.h gv.c intrpvar.h mg.c perl.c perl.h
6779            ! perlapi.h proto.h sv.c
6780 ____________________________________________________________________________
6781 [  8456] By: nick                                  on 2001/01/16  21:07:07
6782         Log: Integrate mainline.
6783      Branch: perlio
6784           !> (integrate 51 files)
6785 ____________________________________________________________________________
6786 [  8455] By: jhi                                   on 2001/01/16  18:13:43
6787         Log: Subject: [PATCH] regcomp.c old feature removal
6788              From: mjd@plover.com
6789              Date: 16 Jan 2001 14:43:18 -0000 
6790              Message-ID: <20010116144318.7140.qmail@plover.com> 
6791      Branch: perl
6792            ! regcomp.c
6793 ____________________________________________________________________________
6794 [  8454] By: jhi                                   on 2001/01/16  16:12:39
6795         Log: Subject: [PATCH: perl-5.6.1-TRIAL1] Win32 Makefile fixes - v2
6796              From: "Indy Singh" <indy@nusphere.com>
6797              Date: Wed, 10 Jan 2001 20:17:49 -0500
6798              Message-ID: <003001c07b6c$524630b0$00957018@roadhog>
6799      Branch: maint-5.6/perl
6800            ! win32/Makefile
6801 ____________________________________________________________________________
6802 [  8453] By: jhi                                   on 2001/01/16  16:09:33
6803         Log: Update Changes.
6804      Branch: perl
6805            ! Changes patchlevel.h
6806 ____________________________________________________________________________
6807 [  8452] By: jhi                                   on 2001/01/16  15:42:04
6808         Log: Subject: Re: API Cleanup
6809              To: perl5-porters@perl.org
6810              Date: Tue, 16 Jan 2001 13:42:30 +0000
6811              Message-ID: <20010116134230.A13420@pembro26.pmb.ox.ac.uk>
6812              
6813              Subject: [PATCH] utf8.c documentation
6814              From: Simon Cozens <simon@cozens.net>
6815              Date: Tue, 16 Jan 2001 13:52:48 +0000
6816              Message-ID: <20010116135248.A13496@pembro26.pmb.ox.ac.uk>
6817              
6818              Subject: Re: API Cleanup
6819              From: Simon Cozens <simon@cozens.net>
6820              Date: Tue, 16 Jan 2001 14:58:55 +0000
6821              Message-ID: <20010116145855.A13794@pembro26.pmb.ox.ac.uk>
6822              
6823              UTF-8 doc patches.
6824      Branch: perl
6825            ! embed.pl pod/perlapi.pod utf8.c
6826 ____________________________________________________________________________
6827 [  8451] By: jhi                                   on 2001/01/16  14:41:39
6828         Log: podlators 1.07, from Russ Allbery.
6829      Branch: perl
6830            ! lib/Pod/Man.pm
6831 ____________________________________________________________________________
6832 [  8450] By: jhi                                   on 2001/01/16  14:24:19
6833         Log: Subject: [PATCH: perl@8429] Win32 Makefile fixes
6834              From: "Indy Singh" <indy@nusphere.com>
6835              Date: Mon, 15 Jan 2001 20:59:40 -0500
6836              Message-ID: <07be01c07f5f$fdadf270$d24b7018@cr637287a>
6837      Branch: perl
6838            ! win32/Makefile
6839 ____________________________________________________________________________
6840 [  8449] By: jhi                                   on 2001/01/16  03:42:55
6841         Log: Under 5.005 threads and debugging crashed in Debian 2.2 Linux/x86
6842              at the setting of the ofs_sv in new_struct_thread() as the
6843              thr->Tofs_sv (PL_ofs_sv) was still 0xabab...., SvREFCNT_inc()ing
6844              that invited a core dump.
6845      Branch: perl
6846            ! util.c
6847 ____________________________________________________________________________
6848 [  8448] By: jhi                                   on 2001/01/16  01:49:07
6849         Log: Subject: [PATCH #3 @8436] Re: Eliminate op_children
6850              From: Stephen McCamant <smcc@CSUA.Berkeley.EDU>
6851              Date: Mon, 15 Jan 2001 17:14:37 -0800 (PST)
6852              Message-ID: <14947.40656.841280.551785@soda.csua.berkeley.edu>
6853              
6854              Replace #8444 and #8445.
6855      Branch: perl
6856            ! ext/B/B.xs ext/B/B/Debug.pm
6857 ____________________________________________________________________________
6858 [  8447] By: jhi                                   on 2001/01/15  21:05:35
6859         Log: Subject: [PATCH] API Variable documentation   
6860              From: Simon Cozens <simon@cozens.net>
6861              Date: Mon, 15 Jan 2001 19:35:54 +0000
6862              Message-ID: <20010115193554.A9919@pembro26.pmb.ox.ac.uk> 
6863      Branch: perl
6864            ! pod/perlapi.pod thrdvar.h
6865 ____________________________________________________________________________
6866 [  8446] By: jhi                                   on 2001/01/15  20:49:20
6867         Log: Signedness nit.
6868      Branch: perl
6869            ! pp_ctl.c
6870 ____________________________________________________________________________
6871 [  8445] By: jhi                                   on 2001/01/15  20:28:48
6872         Log: (Replaced by #8448)  More op_children traces (cleanup of #8442).
6873      Branch: perl
6874            ! ext/B/B/Debug.pm
6875 ____________________________________________________________________________
6876 [  8444] By: jhi                                   on 2001/01/15  13:09:10
6877         Log: (Replaced by #8448)  Traces of op_children (cleanup of #8442)
6878      Branch: perl
6879            ! ext/B/B.xs
6880 ____________________________________________________________________________
6881 [  8443] By: jhi                                   on 2001/01/15  13:06:26
6882         Log: Missing from #8439.
6883      Branch: perl
6884            ! keywords.h mg.c
6885 ____________________________________________________________________________
6886 [  8442] By: jhi                                   on 2001/01/15  13:02:38
6887         Log: Subject: [PATCH @8436] Eliminate op_children
6888              From: Stephen McCamant <smcc@CSUA.Berkeley.EDU>
6889              Date: Sun, 14 Jan 2001 03:00:13 -0800 (PST)
6890              Message-ID: <14945.32919.44271.685122@soda.csua.berkeley.edu>
6891              
6892              Subject: [PATCH @8436] Re: Eliminate op_children
6893              From: Stephen McCamant <smcc@CSUA.Berkeley.EDU>
6894              Date: Sun, 14 Jan 2001 03:23:56 -0800 (PST)
6895              Message-ID: <14945.35680.571387.810763@soda.csua.berkeley.edu>
6896      Branch: perl
6897            ! bytecode.pl ext/B/B/Asmdata.pm ext/B/B/Bytecode.pm
6898            ! ext/B/B/C.pm ext/ByteLoader/byterun.c ext/ByteLoader/byterun.h
6899            ! op.c op.h
6900 ____________________________________________________________________________
6901 [  8441] By: jhi                                   on 2001/01/15  12:57:08
6902         Log: Use the /^Perl_/-less form of is_lvalue_sub().
6903      Branch: perl
6904            ! pp.h
6905 ____________________________________________________________________________
6906 [  8440] By: jhi                                   on 2001/01/15  05:13:09
6907         Log: Revert #8437 and #8438, the Linux large files story is more complex.
6908      Branch: metaconfig/U/perl
6909            ! d_fpos64_t.U d_off64_t.U
6910      Branch: perl
6911            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
6912            ! config_h.SH configure.com epoc/config.sh perl.h
6913            ! pod/perltoc.pod uconfig.h uconfig.sh vos/config.alpha.def
6914            ! vos/config.alpha.h vos/config.ga.def vos/config.ga.h
6915            ! win32/config.bc win32/config.gc win32/config.vc
6916 ____________________________________________________________________________
6917 [  8439] By: jhi                                   on 2001/01/15  05:02:24
6918         Log: More UTF-8 patches from Inaba Hiroto.
6919              - The substr lval was still not okay.
6920              - Now pp_stringify and sv_setsv copies source's UTF8 flag
6921              even if IN_BYTE.  pp_stringify is called from fold_constants
6922              at optimization phase and "\x{100}" was made SvUTF8_off under
6923              use bytes (the bytes pragma is for "byte semantics" and not
6924              for "do not produce UTF8 data")
6925              - New `qu' operator to generate UTF8 string explicitly.
6926              Though I agree with the policy "0x00-0xff always produce bytes",
6927              sometimes want to such a string to be coded in UTF8.
6928              I can use pack"U0a*" but it requires more typing and has
6929              runtime overhead.
6930              - Fix pp_regcomp bug uncovered by "0x00-0xff always produce bytes"
6931              change, the bug apears if a pm has PMdf_UTF8 flag but interpolated
6932              string is not UTF8_on and has char 0x80-0xff.
6933              
6934              TODO: document and test qu.
6935      Branch: perl
6936            ! keywords.h keywords.pl mg.c pp.c pp_ctl.c pp_hot.c sv.c
6937            ! t/lib/charnames.t t/op/length.t t/op/substr.t t/pragma/utf8.t
6938            ! toke.c
6939 ____________________________________________________________________________
6940 [  8438] By: jhi                                   on 2001/01/14  05:10:23
6941         Log: Metaconfig unit changes for #8437.
6942      Branch: metaconfig/U/perl
6943            ! d_fpos64_t.U d_off64_t.U
6944 ____________________________________________________________________________
6945 [  8437] By: jhi                                   on 2001/01/14  04:55:34
6946         Log: Add <features.h> probing, seems to be needed for (some?)
6947              Linux largefileness.
6948      Branch: perl
6949            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
6950            ! config_h.SH configure.com epoc/config.sh perl.h
6951            ! pod/perltoc.pod uconfig.h uconfig.sh vos/config.alpha.def
6952            ! vos/config.alpha.h vos/config.ga.def vos/config.ga.h
6953            ! win32/config.bc win32/config.gc win32/config.vc
6954 ____________________________________________________________________________
6955 [  8436] By: jhi                                   on 2001/01/13  17:47:21
6956         Log: Tighten some of the tests a bit.
6957      Branch: perl
6958            ! t/pragma/utf8.t
6959 ____________________________________________________________________________
6960 [  8435] By: jhi                                   on 2001/01/13  17:31:54
6961         Log: Integrate perlio.
6962      Branch: perl
6963           !> ext/Encode/Makefile.PL ext/Encode/compile win32/config_H.bc
6964           !> win32/config_H.gc win32/config_H.vc
6965 ____________________________________________________________________________
6966 [  8434] By: nick                                  on 2001/01/13  11:36:53
6967         Log: Run dmake regen_config_h for Win32
6968      Branch: perlio
6969            ! win32/config_H.bc win32/config_H.gc win32/config_H.vc
6970 ____________________________________________________________________________
6971 [  8433] By: nick                                  on 2001/01/13  11:31:55
6972         Log: VMS friendly patch to Encode compile process
6973      Branch: perlio
6974            ! ext/Encode/Makefile.PL ext/Encode/compile
6975 ____________________________________________________________________________
6976 [  8432] By: nick                                  on 2001/01/13  11:06:44
6977         Log: Integrate mainline
6978      Branch: perlio
6979           +> ext/B/B/Concise.pm
6980           !> (integrate 52 files)
6981 ____________________________________________________________________________
6982 [  8431] By: jhi                                   on 2001/01/13  05:55:55
6983         Log: Subject: [PATCH @8429] Re: B::Concise -- an improved replacement for B::Terse
6984              From: Stephen McCamant <smcc@CSUA.Berkeley.EDU>
6985              Date: Fri, 12 Jan 2001 21:45:17 -0800 (PST)
6986              Message-ID: <14943.59712.993695.180189@soda.csua.berkeley.edu>
6987      Branch: perl
6988            ! ext/B/B/Concise.pm
6989 ____________________________________________________________________________
6990 [  8430] By: jhi                                   on 2001/01/13  04:24:18
6991         Log: The LVRET macro needed an aTHX.
6992      Branch: perl
6993            ! pp.h
6994 ____________________________________________________________________________
6995 [  8429] By: jhi                                   on 2001/01/13  02:12:42
6996         Log: Update Changes.
6997      Branch: perl
6998            ! Changes patchlevel.h
6999 ____________________________________________________________________________
7000 [  8428] By: jhi                                   on 2001/01/13  02:08:50
7001         Log: Subject: Re: [PATCH: perl@8342]  lib/bigfloat.t FAILED at test 351
7002              From: Peter Prymmer <pvhp@forte.com>
7003              Date: Fri, 12 Jan 2001 16:27:36 -0800 (PST)
7004              Message-ID: <Pine.OSF.4.10.10101121623130.478096-100000@aspara.forte.com>
7005              
7006              Add a BEGIN guard for sloppy floating point division.
7007      Branch: perl
7008            ! lib/Math/BigInt.pm lib/bigint.pl
7009 ____________________________________________________________________________
7010 [  8427] By: jhi                                   on 2001/01/13  01:47:16
7011         Log: The B::Terse drop-in replacement wasn't quite drop-in.
7012      Branch: perl
7013            ! ext/B/B/Terse.pm
7014 ____________________________________________________________________________
7015 [  8426] By: jhi                                   on 2001/01/12  21:20:43
7016         Log: Use UVXf.
7017      Branch: perl
7018            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
7019            ! config_h.SH configure.com epoc/config.sh sv.c uconfig.h
7020            ! uconfig.sh vos/config.alpha.def vos/config.alpha.h
7021            ! vos/config.ga.def vos/config.ga.h win32/config.bc
7022            ! win32/config.gc win32/config.vc
7023 ____________________________________________________________________________
7024 [  8425] By: jhi                                   on 2001/01/12  20:20:14
7025         Log: Subject: [PATCH perl@8342] -Wformat
7026              From: Robin Barker <rmb1@cise.npl.co.uk>
7027              Date: Fri, 12 Jan 2001 20:03:14 GMT
7028              Message-Id: <200101122003.UAA29599@tempest.npl.co.uk>
7029      Branch: perl
7030            ! ext/Encode/Encode.xs mg.c sv.c toke.c
7031 ____________________________________________________________________________
7032 [  8424] By: jhi                                   on 2001/01/12  20:01:48
7033         Log: Subject: B::Concise -- an improved replacement for B::Terse 
7034              From: Stephen McCamant <smcc@CSUA.Berkeley.EDU>
7035              Date: Sat,  6 Jan 2001 20:18:05 -0800 (PST)
7036              Message-ID: <14935.43597.962940.803717@soda.csua.berkeley.edu>
7037      Branch: perl
7038            + ext/B/B/Concise.pm
7039            ! MANIFEST ext/B/B/Terse.pm
7040 ____________________________________________________________________________
7041 [  8423] By: jhi                                   on 2001/01/12  19:24:02
7042         Log: The new metaconfig unit from the #8421.
7043      Branch: metaconfig/U/perl
7044            + d_sigprocmask.U
7045 ____________________________________________________________________________
7046 [  8422] By: jhi                                   on 2001/01/12  19:23:43
7047         Log: Forgot the microperl config from the #8421.
7048      Branch: perl
7049            ! uconfig.h uconfig.sh
7050 ____________________________________________________________________________
7051 [  8421] By: jhi                                   on 2001/01/12  19:05:27
7052         Log: Add sigprocmask() probe, regen Configure, regen toc.
7053      Branch: perl
7054            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
7055            ! config_h.SH configure.com epoc/config.sh mg.c pod/perltoc.pod
7056            ! vos/config.alpha.def vos/config.alpha.h vos/config.ga.def
7057            ! vos/config.ga.h win32/config.bc win32/config.gc
7058            ! win32/config.vc
7059 ____________________________________________________________________________
7060 [  8420] By: jhi                                   on 2001/01/12  18:34:31
7061         Log: Add sockatmark() to the todo list.
7062      Branch: perl
7063            ! Todo-5.6
7064 ____________________________________________________________________________
7065 [  8419] By: jhi                                   on 2001/01/12  18:09:46
7066         Log: Rename RETVAL_MAX to RETURN_UNLIMITED_NUMBER.
7067      Branch: perl
7068            ! op.c
7069 ____________________________________________________________________________
7070 [  8418] By: jhi                                   on 2001/01/12  18:05:30
7071         Log: Subject: Re: [PATCH] [ID 20001223.002] lvalues in list context
7072              From: Radu Greab <radu@netsoft.ro>
7073              Message-ID: <14943.15321.515713.119805@ix.netsoft.ro>
7074              Date: Fri, 12 Jan 2001 19:16:09 +0200 (EET)
7075      Branch: perl
7076            ! op.c t/pragma/sub_lval.t
7077 ____________________________________________________________________________
7078 [  8417] By: jhi                                   on 2001/01/12  16:09:09
7079         Log: Subject: [PATCH @8404] Consolidated lvalue sub changes
7080              From: Stephen McCamant <smcc@CSUA.Berkeley.EDU> 
7081              Date: Wed, 10 Jan 2001 21:36:51 -0800 (PST)
7082              Message-ID: <14941.16925.736415.785818@soda.csua.berkeley.edu>
7083      Branch: perl
7084            ! doop.c embed.h embed.pl op.c op.h opcode.h opcode.pl
7085            ! pod/perldiag.pod pod/perlintern.pod pod/perlsub.pod pp.c pp.h
7086            ! pp.sym pp_ctl.c pp_hot.c pp_proto.h proto.h t/lib/b.t
7087            ! t/pragma/sub_lval.t toke.c
7088 ____________________________________________________________________________
7089 [  8416] By: jhi                                   on 2001/01/12  15:42:06
7090         Log: Subject: RE: [PATCH] [ID 20001223.002] lvalues in list context
7091              From: "Richard Soderberg" <rs@crystalflame.net>
7092              Date: Fri, 12 Jan 2001 04:49:35 -0800
7093              Message-ID: <NAEKLNAAHLMBPMPNBMLEAELDCKAA.rs@crystalflame.net>
7094              
7095              Replace 10000 with RETVAL_MAX, and compute RETVAL_MAX
7096              according to the platform.
7097      Branch: perl
7098            ! op.c
7099 ____________________________________________________________________________
7100 [  8415] By: jhi                                   on 2001/01/12  15:33:41
7101         Log: One more UTF-8 fix from Inaba Hiroto.
7102      Branch: perl
7103            ! pp.c regexec.c t/pragma/utf8.t
7104 ____________________________________________________________________________
7105 [  8414] By: jhi                                   on 2001/01/12  15:30:18
7106         Log: Mea culpa: I botched up Hugo's "Tw" bug fix when applying it.
7107      Branch: perl
7108            ! regexec.c
7109 ____________________________________________________________________________
7110 [  8413] By: jhi                                   on 2001/01/12  15:22:10
7111         Log: Subject: [Patch perl@8375] pragma/subs.t ......FAILED tests 1-2 using Bison's parser
7112              From: "Roca, Ignasi" <ignasi.roca@fujitsu.siemens.es>
7113              Date: Thu, 11 Jan 2001 12:53:36 +0100
7114              Message-ID: <5930DC161690D2119667009027157547038123E1@madt009a.siemens.es>
7115      Branch: perl
7116            ! toke.c
7117 ____________________________________________________________________________
7118 [  8412] By: jhi                                   on 2001/01/12  15:20:25
7119         Log: Subject: [PATCH: perl@8342] updates to posix-bc hints file
7120              From: "Roca, Ignasi" <ignasi.roca@fujitsu.siemens.es>
7121              Date: Fri, 12 Jan 2001 14:37:55 +0100
7122              Message-ID: <5930DC161690D21196670090271575470384E3FC@madt009a.siemens.es>
7123      Branch: perl
7124            ! hints/posix-bc.sh
7125 ____________________________________________________________________________
7126 [  8411] By: jhi                                   on 2001/01/12  15:14:14
7127         Log: Subject: [PATCH: perl@8342]  op/regmesg FAILED at test 33 on EBCDIC machines
7128              From: "Roca, Ignasi" <ignasi.roca@fujitsu.siemens.es>
7129              Date: Fri, 12 Jan 2001 10:42:21 +0100
7130              Message-ID: <5930DC161690D211966700902715754703812F33@madt009a.siemens.es>
7131      Branch: perl
7132            ! t/op/regmesg.t
7133 ____________________________________________________________________________
7134 [  8410] By: jhi                                   on 2001/01/12  05:48:55
7135         Log: Subject: Re: [ID 20010101.004] Not OK: perl v5.7.0 +DEVEL8268 on i586-linux-64int-ld 2.2.17-21mdk (UNINSTALLED)
7136              From: Nicholas Clark <nick@ccl4.org> 
7137              Date: Sun, 7 Jan 2001 19:47:14 +0000
7138              Message-ID: <20010107194714.B1048@plum.flirble.org>
7139      Branch: perl
7140            ! t/op/numconvert.t
7141 ____________________________________________________________________________
7142 [  8409] By: jhi                                   on 2001/01/12  05:41:28
7143         Log: Integrate perlio.
7144      Branch: perl
7145           !> mg.c scope.h
7146 ____________________________________________________________________________
7147 [  8408] By: nick                                  on 2001/01/11  22:43:28
7148         Log: Remove variables that were used in experiments.
7149      Branch: perlio
7150            ! mg.c
7151 ____________________________________________________________________________
7152 [  8407] By: nick                                  on 2001/01/11  20:57:44
7153         Log: Catch die in %SIG handler and unblock the signal before re-dying.
7154              This make Linux work _without_ sigsetjmp().
7155              Turn off sigsetjmp() to see what else it does.
7156              May need Configure probe for sigprocmask() if anything has sigaction()
7157              but not sigprocmask().
7158      Branch: perlio
7159            ! mg.c scope.h
7160 ____________________________________________________________________________
7161 [  8406] By: nick                                  on 2001/01/11  19:32:07
7162         Log: Integrate mainline
7163      Branch: perlio
7164           !> Changes ext/IO/lib/IO/Socket/INET.pm ext/Socket/Socket.pm mg.c
7165           !> patchlevel.h perl.h regexec.c t/op/re_tests t/op/split.t
7166           !> t/op/substr.t
7167 ____________________________________________________________________________
7168 [  8405] By: jhi                                   on 2001/01/11  17:11:01
7169         Log: Fix UTF-8 lval substr().
7170      Branch: perl
7171            ! mg.c t/op/substr.t
7172 ____________________________________________________________________________
7173 [  8404] By: jhi                                   on 2001/01/11  05:13:58
7174         Log: Update Changes.
7175      Branch: perl
7176            ! Changes patchlevel.h
7177 ____________________________________________________________________________
7178 [  8403] By: jhi                                   on 2001/01/11  04:38:24
7179         Log: Subject: Re: [ID 20001029.005] Regex error: "cd. (A. Tw)" !~ /\((\w\. \w+)\)/
7180              From: Hugo <hv@crypt.compulink.co.uk>
7181              Date: Mon, 30 Oct 2000 01:33:26 +0000
7182              Message-Id: <200010300133.BAA10390@crypt.compulink.co.uk>
7183      Branch: perl
7184            ! regexec.c t/op/re_tests
7185 ____________________________________________________________________________
7186 [  8402] By: jhi                                   on 2001/01/11  04:26:12
7187         Log: Integrate perlio.
7188      Branch: perl
7189           !> scope.h util.c
7190 ____________________________________________________________________________
7191 [  8401] By: nick                                  on 2001/01/10  22:52:55
7192         Log: Allow control of 2nd arg to segsetjmp() via -DSCOPE_SAVES_SIGNAL_MASK.
7193              (So Alan and Ilya can try setting via hints.)
7194              Verified Linux "works" with it true and fails to re-enable SIGINT if false.
7195              Restoring sigmask in Perl_sighandler() if handler dies is not equivalent;
7196              doing the save everywhere seems to restart read() correctly, but just
7197              doing it once "round" the handler does not.
7198      Branch: perlio
7199            ! scope.h
7200 ____________________________________________________________________________
7201 [  8400] By: jhi                                   on 2001/01/10  21:57:54
7202         Log: Not defining PERL_PRESERVE_IVUV fixes only the op/inc problem
7203              of IRIX, HP-UX is unaffected.
7204      Branch: perl
7205            ! perl.h
7206 ____________________________________________________________________________
7207 [  8399] By: nick                                  on 2001/01/10  21:29:19
7208         Log: Safe fix for Simon's pclose() doing SvIVX of undef -> core bug.
7209      Branch: perlio
7210            ! util.c
7211 ____________________________________________________________________________
7212 [  8398] By: jhi                                   on 2001/01/10  20:55:31
7213         Log: Add ReuseAddr as a (preferred) alias for Reuse as we now
7214              also have ReusePort.
7215      Branch: perl
7216            ! ext/IO/lib/IO/Socket/INET.pm
7217 ____________________________________________________________________________
7218 [  8397] By: jhi                                   on 2001/01/10  20:50:57
7219         Log: Subject: [PATCH] add ReusePort option to IO::Socket::INET for better multicast support (resend)
7220              From: "Jeremy D. Zawodny" <jzawodn@yahoo-inc.com>
7221              Date: Wed, 10 Jan 2001 01:38:13 -0800
7222              Message-ID: <20010110013813.B41744@yahoo-inc.com>
7223      Branch: perl
7224            ! ext/IO/lib/IO/Socket/INET.pm
7225 ____________________________________________________________________________
7226 [  8396] By: jhi                                   on 2001/01/10  20:49:30
7227         Log: Subject: [PATCH] add SO_REUSEPORT to export list in Socket.pm for better multicast support (resend)
7228              From: "Jeremy D. Zawodny" <jzawodn@yahoo-inc.com>
7229              Date: Wed, 10 Jan 2001 01:37:32 -0800
7230              Message-ID: <20010110013732.A41744@yahoo-inc.com>
7231      Branch: perl
7232            ! ext/Socket/Socket.pm
7233 ____________________________________________________________________________
7234 [  8395] By: jhi                                   on 2001/01/10  20:41:37
7235         Log: Test for bug id 20010105.016 (fixed by #8378).
7236      Branch: perl
7237            ! t/op/split.t
7238 ____________________________________________________________________________
7239 [  8394] By: jhi                                   on 2001/01/10  20:26:32
7240         Log: Integrate perlio.
7241      Branch: perl
7242            ! util.c
7243 ____________________________________________________________________________
7244 [  8393] By: nick                                  on 2001/01/10  19:34:30
7245         Log: Back out Simon's pid hackery for now.
7246      Branch: perlio
7247            ! util.c
7248 ____________________________________________________________________________
7249 [  8392] By: nick                                  on 2001/01/10  19:23:13
7250         Log: Integrate mainline. (Builds but does not work - something broke pipes...)
7251      Branch: perlio
7252           !> (integrate 29 files)
7253 ____________________________________________________________________________
7254 [  8391] By: jhi                                   on 2001/01/10  18:43:15
7255         Log: Subject: [PATCH] Fix my_pclose segfault
7256              From: Simon Cozens <simon@cozens.net>
7257              Date: Wed, 10 Jan 2001 18:39:35 +0000
7258              Message-ID: <20010110183934.A25640@pembro26.pmb.ox.ac.uk>
7259      Branch: perl
7260            ! util.c
7261 ____________________________________________________________________________
7262 [  8390] By: jhi                                   on 2001/01/10  18:42:08
7263         Log: Subject:  [PATCH perl@8269] Opcode.XS, fix memory leak
7264              From: lane@DUPHY4.Physics.Drexel.Edu (Charles Lane)
7265              Date:     Wed, 10 Jan 2001 13:23:02 EST
7266              Message-Id: <010110132245.8129a@DUPHY4.Physics.Drexel.Edu>
7267      Branch: perl
7268            ! ext/Opcode/Opcode.xs
7269 ____________________________________________________________________________
7270 [  8389] By: jhi                                   on 2001/01/10  15:16:07
7271         Log: Turn off the integer preservation for now.
7272      Branch: perl
7273            ! perl.h
7274 ____________________________________________________________________________
7275 [  8388] By: jhi                                   on 2001/01/10  15:01:25
7276         Log: Few more IDE/editor nits from p5p.
7277      Branch: perl
7278            ! pod/perlfaq3.pod
7279 ____________________________________________________________________________
7280 [  8387] By: jhi                                   on 2001/01/10  06:53:16
7281         Log: Subject: Re: [ID 20010109.003] Patch 8138 broke a test in libwww
7282              To: "Andreas J. Koenig" <andreas.koenig@anima.de>
7283              Date: Tue, 9 Jan 2001 23:16:02 +0000
7284              Message-ID: <20010109231602.A81101@plum.flirble.org>
7285      Branch: perl
7286            ! sv.c
7287 ____________________________________________________________________________
7288 [  8386] By: jhi                                   on 2001/01/10  03:17:54
7289         Log: Test cases for #8385 (from Simon's "torture.pl")
7290      Branch: perl
7291            ! t/op/tr.t
7292 ____________________________________________________________________________
7293 [  8385] By: jhi                                   on 2001/01/10  03:17:11
7294         Log: Subject: Re: more UTF8 test suites and an UTF8 patch
7295              From: Inaba Hiroto <inaba@sdd.tokyo-sc.toshiba.co.jp>
7296              Date: Wed, 10 Jan 2001 11:39:39 +0900
7297              Message-Id: <10101100239.AA10002@tux0017.sdd.tokyo-sc.toshiba.co.jp>
7298              
7299              Some more UTF-8 tr cases fixed.
7300      Branch: perl
7301            ! doop.c
7302 ____________________________________________________________________________
7303 [  8384] By: jhi                                   on 2001/01/09  22:45:40
7304         Log: Allow the locale test needing POSIX and the taint test
7305              needing IPC::SysV to run under 'minitest' (basically,
7306              bail out if loading the extension fails)
7307      Branch: perl
7308            ! t/op/misc.t t/op/taint.t
7309 ____________________________________________________________________________
7310 [  8383] By: jhi                                   on 2001/01/09  21:36:04
7311         Log: Subject: [PATCH @8382] Remove FileHandle/IO dependence in t/io/openpid.t
7312              From: Stephen McCamant <smcc@CSUA.Berkeley.EDU>
7313              Date: Tue,  9 Jan 2001 13:33:22 -0800 (PST)
7314              Message-ID: <14939.33475.474459.147429@soda.csua.berkeley.edu>
7315      Branch: perl
7316            ! t/io/openpid.t
7317 ____________________________________________________________________________
7318 [  8382] By: jhi                                   on 2001/01/09  21:06:08
7319         Log: save_delete(), err, SAVEDELETE() fixes from Charles Lane.
7320              Should finish up the bug id 20001205.022.
7321      Branch: perl
7322            ! pp.c pp_hot.c scope.c
7323 ____________________________________________________________________________
7324 [  8381] By: jhi                                   on 2001/01/09  18:27:43
7325         Log: Subject: Re: [PATCH: perl@8342] comp/proto..........FAILED tests 112-123
7326              From: Andy Dougherty <doughera@lafayette.edu>
7327              Date: Tue, 9 Jan 2001 12:11:16 -0500 (EST)
7328              Message-ID: <Pine.SOL.4.10.10101091144440.13124-100000@maxwell.phys.lafayette.edu>
7329              
7330              More robust yacc/bison error detection.
7331      Branch: perl
7332            ! t/comp/proto.t
7333 ____________________________________________________________________________
7334 [  8380] By: jhi                                   on 2001/01/09  15:21:38
7335         Log: Subject:  [PATCH] make t/op/misc.t work on VMS
7336              From: lane@DUPHY4.Physics.Drexel.Edu (Charles Lane)
7337              Date:     Tue, 9 Jan 2001 07:53:55 EST
7338              Message-Id: <010109075323.91c8f@DUPHY4.Physics.Drexel.Edu> 
7339      Branch: perl
7340            ! t/op/misc.t vms/test.com
7341 ____________________________________________________________________________
7342 [  8379] By: jhi                                   on 2001/01/09  15:20:38
7343         Log: Subject: [ID 20001230.003] UTF-8 tr still hurts
7344              From: jhi@cc.hut.fi
7345              Date: Sat, 30 Dec 2000 22:57:32 +0200 (EET)
7346              Message-Id: <200012302057.WAA31168@alpha.hut.fi>
7347              
7348              The #8378 fixed this.
7349      Branch: perl
7350            ! t/op/tr.t
7351 ____________________________________________________________________________
7352 [  8378] By: jhi                                   on 2001/01/09  15:05:32
7353         Log: Subject: One more patch for UTF8 
7354              From: Inaba Hiroto <inaba@st.rim.or.jp>
7355              Date: Tue, 09 Jan 2001 01:04:32 +0900
7356              Message-ID: <3A59E510.52BAB5B9@st.rim.or.jp>
7357              
7358              UTF-8 fixes for 'x' and tr///.
7359      Branch: perl
7360            ! doop.c embed.h embed.pl op.c pod/perlapi.pod pp.c proto.h
7361            ! regcomp.c regexec.c toke.c utf8.c
7362 ____________________________________________________________________________
7363 [  8377] By: jhi                                   on 2001/01/09  14:32:17
7364         Log: Make explicit our assumption that (for now) "\x{80}" produces UTF-8.
7365      Branch: perl
7366            ! t/op/length.t
7367 ____________________________________________________________________________
7368 [  8376] By: jhi                                   on 2001/01/09  04:32:32
7369         Log: integrate changes #7775, #8316, #8316 from mainline
7370      Branch: maint-5.6/perl
7371            ! hints/solaris_2.sh
7372 ____________________________________________________________________________
7373 [  8375] By: jhi                                   on 2001/01/09  04:26:43
7374         Log: Update Changes.
7375      Branch: perl
7376            ! Changes patchlevel.h
7377 ____________________________________________________________________________
7378 [  8374] By: jhi                                   on 2001/01/09  04:14:32
7379         Log: IDE/editor section tweaking.
7380      Branch: perl
7381            ! pod/perlfaq3.pod
7382 ____________________________________________________________________________
7383 [  8373] By: jhi                                   on 2001/01/09  02:38:26
7384         Log: Subject: [PATCH: perl@8342] updates to OS/390 hints file
7385              From: Peter Prymmer <pvhp@forte.com>
7386              Date: Mon, 8 Jan 2001 18:06:51 -0800 (PST)
7387              Message-ID: <Pine.OSF.4.10.10101081805530.239173-100000@aspara.forte.com>
7388              
7389              In preparation os OS/390 dynamic loading.
7390      Branch: perl
7391            ! README.os390 hints/os390.sh
7392 ____________________________________________________________________________
7393 [  8372] By: jhi                                   on 2001/01/09  00:24:30
7394         Log: Integrate with perlio.
7395      Branch: perl
7396           !> embed.h embed.pl gv.c mg.c perl.h proto.h sv.c
7397 ____________________________________________________________________________
7398 [  8371] By: nick                                  on 2001/01/08  23:54:33
7399         Log: Fix "scalars leaked" bugs caused by overload magic
7400              (Highlighted by Ilya's DESTROY optimization.)
7401      Branch: perlio
7402            ! embed.h embed.pl gv.c mg.c perl.h proto.h sv.c
7403 ____________________________________________________________________________
7404 [  8370] By: nick                                  on 2001/01/08  20:19:41
7405         Log: Integrate mainline
7406      Branch: perlio
7407           !> README.epoc dump.c ext/GDBM_File/GDBM_File.xs gv.c
7408           !> lib/Getopt/Long.pm mg.c op.c scope.c sv.c t/io/pipe.t
7409           !> t/op/64bitint.t
7410 ____________________________________________________________________________
7411 [  8369] By: jhi                                   on 2001/01/08  17:30:52
7412         Log: save_delete() Safefree() doesn't (anymore?) work with shared
7413              strings, one test failure in op/misc and almost all of lib/b.
7414              (Outcomments #8369.)
7415      Branch: perl
7416            ! scope.c
7417 ____________________________________________________________________________
7418 [  8368] By: jhi                                   on 2001/01/08  14:47:10
7419         Log: (Outcommented by #8369.)
7420              
7421              Subject: Re: Perl BugID 20001205.022 ---- save_delete
7422              From: Simon Cozens <simon@cozens.net>
7423              Date: Sat, 6 Jan 2001 11:48:40 +0000
7424              Message-ID: <20010106114840.A13227@deep-dark-truthful-mirror.perlhacker.org>
7425              
7426              The save_delete() does need the Safefree.
7427      Branch: perl
7428            ! scope.c
7429 ____________________________________________________________________________
7430 [  8367] By: bailey                                on 2001/01/08  08:53:52
7431         Log: Once again syncing after too long an absence
7432      Branch: vmsperl
7433           +> (branch 55 files)
7434            - MAINTAIN fix_pl vos/config.def vos/config.h
7435            - vos/config_h.SH_orig
7436           !> (integrate 498 files)
7437 ____________________________________________________________________________
7438 [  8366] By: jhi                                   on 2001/01/08  02:42:59
7439         Log: Subject: [ID 20010107.012] [PATCH] 18446744073709551616e0 was treated as UV=18446744073709551615
7440              From: nick@ccl4.org
7441              Date: Sun, 7 Jan 2001 21:07:18 +0000
7442              Message-Id: <20010107210717.D1048@plum.flirble.org>
7443      Branch: perl
7444            ! sv.c t/op/64bitint.t
7445 ____________________________________________________________________________
7446 [  8365] By: jhi                                   on 2001/01/08  02:35:16
7447         Log: Subject: [PATCH] environ nit
7448              From: Simon Cozens <simon@cozens.net>
7449              Date: Sun, 7 Jan 2001 17:57:07 +0000
7450              Message-ID: <20010107175707.A2013@pembro26.pmb.ox.ac.uk>
7451              
7452              Use environ only if we have it.
7453      Branch: perl
7454            ! mg.c
7455 ____________________________________________________________________________
7456 [  8364] By: jhi                                   on 2001/01/08  02:24:51
7457         Log: Replace #6721, GDBM, system malloc, and LEAKTEST.
7458      Branch: perl
7459            ! ext/GDBM_File/GDBM_File.xs
7460 ____________________________________________________________________________
7461 [  8363] By: jhi                                   on 2001/01/08  02:19:24
7462         Log: Subject: [PATCH @8344] Fix spurious GVSV OPpOUR_INTRO
7463              From: Stephen McCamant <smcc@CSUA.Berkeley.EDU>
7464              Date: Sat,  6 Jan 2001 15:25:02 -0800 (PST)
7465              Message-ID: <14935.41722.239364.55174@soda.csua.berkeley.edu>
7466      Branch: perl
7467            ! dump.c op.c
7468 ____________________________________________________________________________
7469 [  8362] By: jhi                                   on 2001/01/08  02:17:43
7470         Log: Subject: [patch] xsub AUTOLOAD fix/optimization
7471              From: Doug MacEachern <dougm@covalent.net>
7472              Date: Sat, 6 Jan 2001 09:30:05 -0800 (PST)
7473              Message-ID: <Pine.LNX.4.10.10101060924280.24460-100000@mojo.covalent.net>
7474              
7475              Allow AUTOLOAD to be an xsub and allow such xsubs
7476              to avoid use of $AUTOLOAD.
7477      Branch: perl
7478            ! gv.c
7479 ____________________________________________________________________________
7480 [  8361] By: jhi                                   on 2001/01/08  02:16:07
7481         Log: Subject: Re: [PATCH] Re: [ID 20010105.002] close() on process filehandle leaves defunct process
7482              From: Radu Greab <radu@netsoft.ro>
7483              Date: Sun, 7 Jan 2001 03:16:55 +0200 (EET)
7484              Message-ID: <14935.50055.838449.408835@ix.netsoft.ro>
7485              
7486              No need for the potentially unportable $SIG{CHLD}.
7487      Branch: perl
7488            ! t/io/pipe.t
7489 ____________________________________________________________________________
7490 [  8360] By: jhi                                   on 2001/01/08  01:58:23
7491         Log: Update to Getopt::Long 2.24_02, from Johan Vromans.
7492      Branch: perl
7493            ! lib/Getopt/Long.pm
7494 ____________________________________________________________________________
7495 [  8359] By: jhi                                   on 2001/01/08  01:55:44
7496         Log: Integrate perlio.
7497      Branch: perl
7498           !> ext/Encode/Encode.xs lib/ExtUtils/typemap perl.c perlio.c
7499           !> perlio.h pp.c pp_hot.c pp_sys.c sv.c t/lib/tie-refhash.t
7500           !> utf8.c win32/Makefile
7501 ____________________________________________________________________________
7502 [  8358] By: jhi                                   on 2001/01/07  21:16:50
7503         Log: Update the EPOC cross SDK URL.
7504      Branch: perl
7505            ! README.epoc
7506 ____________________________________________________________________________
7507 [  8357] By: jhi                                   on 2001/01/07  21:16:09
7508         Log: Update the EPOC cross SDK URL.
7509      Branch: maint-5.6/perl
7510            ! README.epoc
7511 ____________________________________________________________________________
7512 [  8356] By: nick                                  on 2001/01/06  21:47:52
7513         Log: FILE * in XS code for PerlIO world:
7514              - make PERLIO_NOT_STDIO 0 (co-existance) default for non PERL_CORE case.
7515              - Add FILE * T_STDIO typemap.
7516              - Finish PerlIO_findFILE() and PerlIO_extprtFILE()
7517      Branch: perlio
7518            ! lib/ExtUtils/typemap perlio.c perlio.h
7519 ____________________________________________________________________________
7520 [  8355] By: jhi                                   on 2001/01/06  20:27:15
7521         Log: integrate change #8336 from mainline
7522              
7523              Scoping of %^H still broken in both perl@8269 and perl-5.6.1-TRIAL1
7524      Branch: maint-5.6/perl
7525            ! hv.c
7526 ____________________________________________________________________________
7527 [  8354] By: jhi                                   on 2001/01/06  20:24:29
7528         Log: Subject: [PATCH 5.6.1-TRIAL1 and @8223]; was Re: Perlbug 20000322.006 status update
7529              From: Robin Barker <rmb1@cise.npl.co.uk>
7530              Date: Fri, 22 Dec 2000 12:17:38 GMT
7531              Message-Id: <200012221217.MAA21332@tempest.npl.co.uk>
7532              
7533              The patch reformats some long =item lines so they give
7534              correct output via pod2man | nroff -man
7535              
7536              Subject: [PATCH 5.[67].1]; as Re: [PATCH 5.6.1-TRIAL1 and @8223]; was Re: Perlbug 20000322.006 status update
7537              From: Robin Barker <rmb1@cise.npl.co.uk>
7538              Date: Tue, 2 Jan 2001 15:35:03 GMT
7539              Message-Id: <200101021535.PAA15161@tempest.npl.co.uk>
7540              
7541              Here is a _further_ patch which corrects a few more errors:
7542              * an empty C<=item> in CPAN.pm
7543              * patching the wrong file (pod/perlamiga.pod not README.amiga)
7544              * leaving empty C<=item>s which formatted incorrectly
7545              * over long C<=item>s revealed by latest patch to Pod::Man
7546      Branch: maint-5.6/perl
7547            ! README.amiga lib/CGI.pm lib/CPAN.pm lib/Pod/Select.pm
7548            ! lib/Text/ParseWords.pm lib/Win32.pod pod/perl.pod
7549            ! pod/perl5004delta.pod pod/perl5005delta.pod pod/perlapi.pod
7550            ! pod/perldelta.pod pod/perldiag.pod pod/perlembed.pod
7551            ! pod/perlfaq4.pod pod/perllocale.pod pod/perlmodlib.pod
7552            ! pod/perlrequick.pod pod/perlretut.pod pod/perlsub.pod
7553 ____________________________________________________________________________
7554 [  8353] By: jhi                                   on 2001/01/06  20:21:10
7555         Log: integrate changes #7980, 7990, 8056, 8057 from mainline
7556              
7557              UTF-8 hash keys.
7558      Branch: maint-5.6/perl
7559            ! embed.h embed.pl hv.c hv.h perlapi.c proto.h t/op/each.t
7560 ____________________________________________________________________________
7561 [  8352] By: jhi                                   on 2001/01/06  20:18:44
7562         Log: Forgotten from #8438.
7563      Branch: maint-5.6/perl
7564            ! epoc/epocish.h
7565 ____________________________________________________________________________
7566 [  8351] By: jhi                                   on 2001/01/06  20:18:12
7567         Log: Forgotten from #8347.
7568      Branch: maint-5.6/perl
7569            ! config_h.SH
7570 ____________________________________________________________________________
7571 [  8350] By: jhi                                   on 2001/01/06  20:00:19
7572         Log: Thinko in #8347.
7573      Branch: maint-5.6/perl
7574            ! regcomp.c
7575 ____________________________________________________________________________
7576 [  8349] By: jhi                                   on 2001/01/06  18:05:30
7577         Log: Copy the FAQ3 IDE section from the development branch,
7578              changes originally by Peter Prymmer.
7579      Branch: maint-5.6/perl
7580            ! pod/perlfaq3.pod
7581 ____________________________________________________________________________
7582 [  8348] By: jhi                                   on 2001/01/06  18:03:02
7583         Log: EPOC updates for TRIAL1.
7584              
7585              Subject: [5.6.1 trial1] EPOC update
7586              From: Olaf Flebbe <O.Flebbe@science-computing.de>
7587              Date: Sun, 31 Dec 2000 16:04:52 +0100 (CET)
7588              Message-ID: <Pine.LNX.4.02.10012311603040.14097-100000@milkyway.science-computing.de> 
7589              
7590              Subject: epoc patch2 for perl-5.6.1-trial1
7591              From: Olaf Flebbe <O.Flebbe@science-computing.de>
7592              Date: Sat, 6 Jan 2001 13:55:53 +0100 (CET)
7593              Message-ID: <Pine.LNX.4.02.10101061355220.26469-100000@milkyway.science-computing.de> 
7594      Branch: maint-5.6/perl
7595            ! README.epoc epoc/config.sh epoc/createpkg.pl epoc/epoc.c
7596            ! epoc/epocish.c
7597 ____________________________________________________________________________
7598 [  8347] By: jhi                                   on 2001/01/06  17:29:10
7599         Log: integrate changes #7710,7824,7973 from mainline,
7600              plus VMS nits from Peter Prymmer and Dan Sugalski.
7601              
7602              AIX 4.2 (using latest patchlevels on 20001130) has a broken bind
7603              library (getprotobyname and getprotobynumber are outversioned by
7604              the same calls in libc, at least for xlc version 3.
7605              
7606              Add HAS_SBRK_PROTO.
7607              
7608              Fixes for signedness warnings noticed by VMSperlers.
7609      Branch: maint-5.6/perl
7610            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
7611            ! configure.com epoc/config.sh hints/aix.sh malloc.c regcomp.c
7612            ! sv.c vms/descrip_mms.template vos/config.alpha.def
7613            ! vos/config.alpha.h vos/config.ga.def vos/config.ga.h
7614            ! win32/config.bc win32/config.gc win32/config.vc
7615 ____________________________________________________________________________
7616 [  8346] By: nick                                  on 2001/01/06  14:36:01
7617         Log: Fixup accumulated integrate muddles (perlio == devperl again)
7618      Branch: perlio
7619            ! ext/Encode/Encode.xs perl.c pp_sys.c t/lib/tie-refhash.t
7620 ____________________________________________________________________________
7621 [  8345] By: nick                                  on 2001/01/06  14:24:58
7622         Log: Integrate mainline
7623      Branch: perlio
7624           !> (integrate 55 files)
7625 ____________________________________________________________________________
7626 [  8344] By: jhi                                   on 2001/01/06  02:24:02
7627         Log: Subject: [patch] PerlIO_cleanup() prototype
7628              From: Doug MacEachern <dougm@covalent.net>
7629              Date: Fri, 5 Jan 2001 18:15:31 -0800 (PST)
7630              Message-ID: <Pine.LNX.4.10.10101051813220.340-100000@mojo.covalent.net>
7631      Branch: perl
7632            ! perlio.h
7633 ____________________________________________________________________________
7634 [  8343] By: jhi                                   on 2001/01/06  01:04:09
7635         Log: IRIX compiler noticed that the bof initialization might be
7636              bypassed by control flow.
7637      Branch: perl
7638            ! toke.c
7639 ____________________________________________________________________________
7640 [  8342] By: jhi                                   on 2001/01/06  00:10:48
7641         Log: Update Changes.
7642      Branch: perl
7643            ! Changes patchlevel.h
7644 ____________________________________________________________________________
7645 [  8341] By: jhi                                   on 2001/01/05  23:52:33
7646         Log: Add a note about EBCDIC versus UTF-8 to a potential problem spot.
7647      Branch: perl
7648            ! toke.c
7649 ____________________________________________________________________________
7650 [  8340] By: jhi                                   on 2001/01/05  22:44:08
7651         Log: Subject: [PATCH] Re: [ID 20010105.002] close() on process filehandle leaves defunct process
7652              From: Radu Greab <radu@netsoft.ro>
7653              Date: Fri, 5 Jan 2001 21:04:33 +0200 (EET)
7654              Message-ID: <14934.6849.742435.23178@ix.netsoft.ro>
7655      Branch: perl
7656            ! t/io/pipe.t util.c
7657 ____________________________________________________________________________
7658 [  8339] By: jhi                                   on 2001/01/05  22:35:17
7659         Log: Subject: [PATCH] format and rewording in perlfaq.pod
7660              From: Robin Barker <rmb1@cise.npl.co.uk>
7661              Date: Fri, 5 Jan 2001 18:51:20 GMT
7662              Message-Id: <200101051851.SAA03310@tempest.npl.co.uk>
7663      Branch: perl
7664            ! pod/perlfaq.pod
7665 ____________________________________________________________________________
7666 [  8338] By: jhi                                   on 2001/01/05  22:31:17
7667         Log: Subject: [patch: perl@8327] have perlbug's Save to File respect -F flag
7668              From: Peter Prymmer <pvhp@forte.com>
7669              Date: Fri, 5 Jan 2001 14:02:13 -0800 (PST)
7670              Message-ID: <Pine.OSF.4.10.10101051357400.28294-100000@aspara.forte.com>
7671      Branch: perl
7672            ! utils/perlbug.PL
7673 ____________________________________________________________________________
7674 [  8337] By: jhi                                   on 2001/01/05  18:15:11
7675         Log: Subject: [PATCH 5.7.1/Configure] failure to set src='.'
7676              From: Robin Barker <rmb1@cise.npl.co.uk>
7677              Date: Tue, 2 Jan 2001 15:24:07 GMT
7678              Message-Id: <200101021524.PAA15145@tempest.npl.co.uk>
7679              
7680              If you call configure as C<./Configure> or C<sh ./Configure>,
7681              $src is set to the absolute path name, not '.'.
7682              
7683              This, in turn, means -Dmksymlink tries to do its stuff because
7684              it does not think it is in the src directory.
7685              
7686              (plus a metaconfig nitfix)
7687      Branch: metaconfig
7688            ! U/compline/ccflags.U U/modified/src.U
7689      Branch: perl
7690            ! Configure config_h.SH
7691 ____________________________________________________________________________
7692 [  8336] By: jhi                                   on 2001/01/05  17:48:32
7693         Log: Subject: Re: [Fwd: Scoping of %^H still broken in both perl@8269 and perl-5.6.1-TRIAL1]
7694              From: Alan Burlison <Alan.Burlison@uk.sun.com>
7695              Message-ID: <3A5606C4.473D2226@uk.sun.com>
7696              Date: Fri, 05 Jan 2001 17:39:16 +0000
7697      Branch: perl
7698            ! hv.c
7699 ____________________________________________________________________________
7700 [  8335] By: jhi                                   on 2001/01/05  16:05:44
7701         Log: Upgrade to Getopt::Long 2.24_01, from Johan Vromans.
7702      Branch: perl
7703            ! lib/Getopt/Long.pm
7704 ____________________________________________________________________________
7705 [  8334] By: jhi                                   on 2001/01/05  16:00:51
7706         Log: Subject: PATCH 5.6.1 & blead 8327 -- workaround for t/io/fs.t
7707              From: Raphael Manfredi <Raphael_Manfredi@pobox.com>
7708              Date: Fri, 05 Jan 2001 13:46:51 +0100
7709              Message-ID: <13693.978698811@nice.ram.loc>
7710              
7711              Apparently, the glibc2.2 + linux 2.4.0 + NFS combination prevent
7712              accurate reading of the "atime".  
7713      Branch: perl
7714            ! t/io/fs.t
7715 ____________________________________________________________________________
7716 [  8333] By: jhi                                   on 2001/01/05  15:57:37
7717         Log: Subject: [PATCH] Re: ebcdic <-> ascii tables interjected in uv <-> utf8 considered harmful 
7718              From: Simon Cozens <simon@cozens.net>
7719              Date: Fri, 8 Dec 2000 13:33:31 +0000
7720              Message-ID: <20001208133331.A11535@deep-dark-truthful-mirror.perlhacker.org> 
7721              
7722              A lost patch fragment.
7723      Branch: perl
7724            ! doop.c
7725 ____________________________________________________________________________
7726 [  8332] By: jhi                                   on 2001/01/05  15:40:42
7727         Log: Do away with strncpy() and a fixed length buffer.
7728      Branch: perl
7729            ! utf8.c
7730 ____________________________________________________________________________
7731 [  8331] By: jhi                                   on 2001/01/05  15:03:07
7732         Log: Tests for #8329 and #8330.
7733      Branch: perl
7734            ! t/op/bop.t
7735 ____________________________________________________________________________
7736 [  8330] By: jhi                                   on 2001/01/05  15:02:38
7737         Log: "\x{FF}\xFF" was broken, the \xFF was appended in its
7738              raw 8-bit form to the UTF-8 string.
7739      Branch: perl
7740            ! toke.c
7741 ____________________________________________________________________________
7742 [  8329] By: jhi                                   on 2001/01/05  14:55:13
7743         Log: Subject: [PATCH perl@8327] strings with \x{..} in the middle are corrupted 
7744              From: "Roca, Ignasi" <ignasi.roca@fujitsu.siemens.es>
7745              Date: Fri, 5 Jan 2001 12:28:52 +0100
7746              Message-ID: <5930DC161690D211966700902715754703738F96@madt009a.siemens.es>
7747              
7748              UTF-8 parsing fix that seems to be needed for EBCDIC, in ASCII
7749              no effect.  (changed the strncpy() to Copy())
7750      Branch: perl
7751            ! toke.c
7752 ____________________________________________________________________________
7753 [  8328] By: jhi                                   on 2001/01/05  06:44:27
7754         Log: UTF-8 cleanup.
7755      Branch: perl
7756            ! doop.c op.c pp.c pp_ctl.c pp_hot.c pp_sys.c regcomp.c
7757            ! regexec.c sv.c toke.c
7758 ____________________________________________________________________________
7759 [  8327] By: jhi                                   on 2001/01/05  01:11:29
7760         Log: Subject: [PATCH perl@8268] Test::Harness doesn't use IO (was Re: [PATCH 5.7.0] Re: Tests depending on extensions,    and `make minitest')
7761              From: Radu Greab <radu@netsoft.ro>
7762              Message-ID: <14933.5458.672637.641215@ix.netsoft.ro>
7763              Date: Fri, 5 Jan 2001 02:29:06 +0200 (EET)
7764              
7765              Cleans up Harness to not use FileHandle, which uses IO.
7766      Branch: perl
7767            ! lib/Test/Harness.pm t/lib/ftmp-mktemp.t t/lib/ftmp-posix.t
7768 ____________________________________________________________________________
7769 [  8326] By: jhi                                   on 2001/01/05  00:56:37
7770         Log: Update Changes.
7771      Branch: perl
7772            ! Changes patchlevel.h
7773 ____________________________________________________________________________
7774 [  8325] By: jhi                                   on 2001/01/05  00:53:18
7775         Log: Subject: Re: [patch bug 20010103.019] Re: perl@8269: failure to build on NT 4.0.1381 with MSVC (fwd)
7776              From: Peter Prymmer <pvhp@forte.com>
7777              Date: Thu, 4 Jan 2001 14:20:15 -0800 (PST)
7778              Message-ID: <Pine.OSF.4.10.10101041406420.492782-100000@aspara.forte.com>
7779              
7780              plus a couple more tailing whitespace removals.
7781      Branch: perl
7782            ! win32/Makefile
7783 ____________________________________________________________________________
7784 [  8324] By: jhi                                   on 2001/01/05  00:47:39
7785         Log: Add some Unicode chop() tests.
7786      Branch: perl
7787            ! t/op/chop.t
7788 ____________________________________________________________________________
7789 [  8323] By: jhi                                   on 2001/01/05  00:47:23
7790         Log: Unify UTF-8 malformedness handling.
7791      Branch: perl
7792            ! doop.c pp.c sv.c toke.c utf8.c utf8.h
7793 ____________________________________________________________________________
7794 [  8322] By: jhi                                   on 2001/01/04  22:21:54
7795         Log: The new $issymlink was unknown to Mksymlinks.
7796      Branch: metaconfig/U/perl
7797            ! Mksymlinks.U issymlink.U
7798      Branch: perl
7799            ! Configure config_h.SH
7800 ____________________________________________________________________________
7801 [  8321] By: jhi                                   on 2001/01/04  21:51:05
7802         Log: The test didn't work under the core test framework.
7803      Branch: perl
7804            ! t/lib/st-lock.t
7805 ____________________________________________________________________________
7806 [  8320] By: jhi                                   on 2001/01/04  21:14:22
7807         Log: DB3 NDBM/ODBM emulation tweaks from Stanislav Brabec <utx@penguin.cz>.
7808      Branch: perl
7809            ! INSTALL ext/NDBM_File/NDBM_File.xs ext/ODBM_File/ODBM_File.xs
7810 ____________________________________________________________________________
7811 [  8319] By: jhi                                   on 2001/01/04  20:46:17
7812         Log: Typo in #8312 when manually appying a problematic patch fragment.
7813      Branch: perl
7814            ! ext/Storable/Storable.xs
7815 ____________________________________________________________________________
7816 [  8318] By: jhi                                   on 2001/01/04  20:43:01
7817         Log: The $sh_c didn't fly.
7818      Branch: metaconfig
7819            ! U/compline/ccflags.U U/compline/d_keepsig.U U/modified/Head.U
7820            ! U/modified/Loc.U U/modified/myhostname.U
7821            ! U/modified/spitshell.U
7822      Branch: metaconfig/U/perl
7823            ! issymlink.U
7824      Branch: perl
7825            ! Configure config_h.SH
7826 ____________________________________________________________________________
7827 [  8317] By: jhi                                   on 2001/01/04  19:58:01
7828         Log: AIX builtin test -h is broken, changes based on
7829              
7830              Subject: [PATCH] 8297. Symlink stuff breaks on AIX 4 bsh
7831              Date: Tue, 02 Jan 2001 11:24:39 +0100
7832              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
7833              Message-Id: <20010102093747.A6F7.H.M.BRAND@hccnet.nl>
7834      Branch: metaconfig
7835            + U/modified/spitshell.U
7836            ! U/compline/ccflags.U U/compline/d_keepsig.U U/modified/Head.U
7837            ! U/modified/Loc.U U/modified/myhostname.U
7838      Branch: metaconfig/U/perl
7839            ! Mksymlinks.U issymlink.U
7840      Branch: perl
7841            ! Configure
7842 ____________________________________________________________________________
7843 [  8316] By: jhi                                   on 2001/01/04  19:02:22
7844         Log: Subject: [PATCH] Re: New attempt on hints/solaris_2.sh
7845              From: Andy Dougherty <doughera@lafayette.edu>
7846              Message-ID: <Pine.SOL.4.10.10101031518320.28840-100000@maxwell.phys.lafayette.edu>
7847              Date: Wed, 3 Jan 2001 15:36:06 -0500 (EST)
7848              
7849              Beware of GNU ld.
7850      Branch: perl
7851            ! hints/solaris_2.sh
7852 ____________________________________________________________________________
7853 [  8315] By: jhi                                   on 2001/01/04  18:56:48
7854         Log: From: Lupe Christoph <lupe@lupe-christoph.de>
7855              Subject: Re: [PATCH 5.7.1/Configure] failure to set src='.'
7856              Date: Wed, 3 Jan 2001 07:58:51 +0100
7857              Message-ID: <20010103075851.P4594@alanya.lupe-christoph.de>
7858      Branch: perl
7859            ! hints/solaris_2.sh
7860 ____________________________________________________________________________
7861 [  8314] By: jhi                                   on 2001/01/04  18:54:07
7862         Log: Subject: Re: [PATCH @8269] Continue blocks and B::Deparse
7863              From: Stephen McCamant <smcc@CSUA.Berkeley.EDU>
7864              Date: Wed,  3 Jan 2001 13:48:04 -0800 (PST)
7865              Message-ID: <14931.40265.379608.910008@soda.csua.berkeley.edu>
7866              
7867              Doc tweak on #8313.
7868      Branch: perl
7869            ! ext/B/B/Deparse.pm
7870 ____________________________________________________________________________
7871 [  8313] By: jhi                                   on 2001/01/04  18:52:27
7872         Log: Subject: [PATCH @8269] Continue blocks and B::Deparse
7873              Date: Wed,  3 Jan 2001 13:31:53 -0800 (PST)
7874              From: Stephen McCamant <smcc@CSUA.Berkeley.EDU>
7875              Message-ID: <14931.37732.62835.279605@soda.csua.berkeley.edu>
7876              
7877              Make the peephole optimizer to bypass more null ops and
7878              and rewrite the deparse handling of continue blocks.
7879      Branch: perl
7880            ! ext/B/B/Deparse.pm op.c op.h t/lib/b.t
7881 ____________________________________________________________________________
7882 [  8312] By: jhi                                   on 2001/01/04  18:47:39
7883         Log: Upgrade to Storable 1.0.7, from Raphael Manfredi.
7884      Branch: perl
7885            ! ext/Storable/ChangeLog ext/Storable/Makefile.PL
7886            ! ext/Storable/Storable.pm ext/Storable/Storable.xs
7887            ! t/lib/st-lock.t
7888 ____________________________________________________________________________
7889 [  8311] By: jhi                                   on 2001/01/04  18:36:08
7890         Log: Add a new MakeMaker variable PM_FILTER that defines a Unix
7891              filter to be run on each .pm during the pm_to_blib() phase,
7892              a fixed version of
7893              
7894              Subject: PATCH (blead 8269) ExtUtils::MakeMaker
7895              From: Raphael Manfredi <Raphael_Manfredi@pobox.com>
7896              Date: Wed, 03 Jan 2001 22:01:30 +0100
7897              Message-ID: <5296.978555690@nice.ram.loc>
7898      Branch: perl
7899            ! lib/ExtUtils/Install.pm lib/ExtUtils/MM_Unix.pm
7900            ! lib/ExtUtils/MM_VMS.pm lib/ExtUtils/MM_Win32.pm
7901            ! lib/ExtUtils/MakeMaker.pm
7902 ____________________________________________________________________________
7903 [  8310] By: jhi                                   on 2001/01/04  18:32:54
7904         Log: Subject: [PATCH 5.[67].1]; as Re: [PATCH 5.6.1-TRIAL1 and @8223]; was Re: Perlbug 20000322.006 status update
7905              From: Robin Barker <rmb1@cise.npl.co.uk>
7906              Date: Tue, 2 Jan 2001 15:35:03 GMT
7907              Message-Id: <200101021535.PAA15161@tempest.npl.co.uk>
7908      Branch: perl
7909            ! README.amiga lib/CPAN.pm lib/Win32.pod pod/perl56delta.pod
7910            ! pod/perlrequick.pod
7911 ____________________________________________________________________________
7912 [  8309] By: jhi                                   on 2001/01/04  18:29:07
7913         Log: Subject: Re: [patch] static-ize XS()
7914              From: Doug MacEachern <dougm@covalent.net>
7915              Date: Mon, 1 Jan 2001 15:26:01 -0800 (PST)
7916              Message-ID: <Pine.LNX.4.10.10101011523560.3379-100000@mojo.covalent.net>
7917              
7918              Provide prototypes for the XS functions.
7919      Branch: perl
7920            ! lib/ExtUtils/xsubpp
7921 ____________________________________________________________________________
7922 [  8308] By: jhi                                   on 2001/01/04  18:27:44
7923         Log: Subject: [patch] typemap =~ s/croak/Perl_croak/
7924              From: Doug MacEachern <dougm@covalent.net>
7925              Date: Mon, 1 Jan 2001 11:41:57 -0800 (PST)
7926              Message-ID: <Pine.LNX.4.10.10101011139570.3379-100000@mojo.covalent.net>
7927      Branch: perl
7928            ! lib/ExtUtils/typemap
7929 ____________________________________________________________________________
7930 [  8307] By: jhi                                   on 2001/01/04  18:25:25
7931         Log: Subject: Re: [patch] MM_Unix cpprun shortcut
7932              From: Doug MacEachern <dougm@covalent.net>
7933              Date: Wed, 3 Jan 2001 20:09:57 -0800 (PST)
7934              Message-ID: <Pine.LNX.4.10.10101032009330.280-100000@mojo.covalent.net>
7935              
7936              Add a .c.i: MakeMaker make rule to create cpreprocessed outputs.
7937      Branch: perl
7938            ! lib/ExtUtils/MM_Unix.pm
7939 ____________________________________________________________________________
7940 [  8306] By: jhi                                   on 2001/01/04  18:23:00
7941         Log: Subject: [PATCH perl@8269] Corrections for Perl_yylex_r (used by a reentrant parser as Bison)
7942              From: "Roca, Ignasi" <ignasi.roca@fujitsu.siemens.es>
7943              Date: Thu, 4 Jan 2001 12:47:10 +0100 
7944              Message-ID: <5930DC161690D21196670090271575470370111A@madt009a.siemens.es>
7945              
7946              The toke.c part only, patching embed.h and proto.h is futile.
7947      Branch: perl
7948            ! toke.c
7949 ____________________________________________________________________________
7950 [  8305] By: jhi                                   on 2001/01/04  18:05:51
7951         Log: Subject: [PATCH perl@8269] scanning two hex-constants fails on EBCDIC environment (script length.t)
7952              From: "Roca, Ignasi" <ignasi.roca@fujitsu.siemens.es>
7953              Date: Thu, 4 Jan 2001 17:50:12 +0100 
7954              Message-ID: <5930DC161690D211966700902715754703738AA6@madt009a.siemens.es>
7955      Branch: perl
7956            ! toke.c
7957 ____________________________________________________________________________
7958 [  8304] By: jhi                                   on 2001/01/04  18:03:26
7959         Log: Subject: [PATCH perl@8269]
7960              From: "Roca, Ignasi" <ignasi.roca@fujitsu.siemens.es>
7961              Date: Thu, 4 Jan 2001 12:53:39 +0100 
7962              Message-ID: <5930DC161690D211966700902715754703701130@madt009a.siemens.es>
7963              
7964              If running byacc write-enable also perly.h.
7965      Branch: perl
7966            ! Makefile.SH
7967 ____________________________________________________________________________
7968 [  8303] By: jhi                                   on 2001/01/04  15:40:49
7969         Log: Rewrite pp_concat() in terms of sv_catsv().
7970      Branch: perl
7971            ! pp_hot.c
7972 ____________________________________________________________________________
7973 [  8302] By: nick                                  on 2001/01/03  22:43:22
7974         Log: Integrate mainline.
7975      Branch: perlio
7976           !> ext/Encode/Encode.xs sv.c utf8.c
7977 ____________________________________________________________________________
7978 [  8301] By: jhi                                   on 2001/01/02  23:40:26
7979         Log: Variable naming tweak.
7980      Branch: perl
7981            ! sv.c
7982 ____________________________________________________________________________
7983 [  8300] By: jhi                                   on 2001/01/02  23:40:02
7984         Log: Use the UTF8_XXX macros in is_utf8_char(), a performance nit
7985              in is_utf8_string().
7986      Branch: perl
7987            ! utf8.c
7988 ____________________________________________________________________________
7989 [  8299] By: jhi                                   on 2001/01/02  22:14:40
7990         Log: Integrate perlio.
7991      Branch: perl
7992           !> pp.c pp_hot.c win32/Makefile
7993 ____________________________________________________________________________
7994 [  8298] By: nick                                  on 2001/01/02  22:03:06
7995         Log: Turn SvUTF8 off if not required in pp_chr and pp_stringify.
7996      Branch: perlio
7997            ! pp.c pp_hot.c
7998 ____________________________________________________________________________
7999 [  8297] By: jhi                                   on 2001/01/02  04:26:28
8000         Log: Signedness nit.
8001      Branch: perl
8002            ! ext/Encode/Encode.xs
8003 ____________________________________________________________________________
8004 [  8296] By: nick                                  on 2001/01/01  23:49:36
8005         Log: Add Encode and correct Filter/Util/Call in nmake Makefile
8006      Branch: perlio
8007            ! win32/Makefile
8008 ____________________________________________________________________________
8009 [  8295] By: jhi                                   on 2001/01/01  23:05:48
8010         Log: Integrate perlio.
8011      Branch: perl
8012           !> ext/Encode/Encode.pm ext/Encode/Encode.xs pp_hot.c
8013           !> t/lib/encode.t
8014 ____________________________________________________________________________
8015 [  8294] By: nick                                  on 2001/01/01  22:48:34
8016         Log: Integrate mainline
8017      Branch: perlio
8018            ! pp_hot.c t/lib/encode.t
8019           !> (integrate 65 files)
8020 ____________________________________________________________________________
8021 [  8293] By: nick                                  on 2001/01/01  21:58:50
8022         Log: More rigor in UTF-8-ness of Encode's toUnicode
8023              XS export some of the utf8 internal functions.
8024              Test some of the functions.
8025              Fix pp_concat() bug shown by said tests.
8026      Branch: perlio
8027            ! ext/Encode/Encode.pm ext/Encode/Encode.xs pp_hot.c
8028            ! t/lib/encode.t
8029 ____________________________________________________________________________
8030 [  8292] By: jhi                                   on 2001/01/01  18:11:44
8031         Log: Integrate perlio.
8032      Branch: perl
8033           !> ext/Encode/Encode.pm ext/Encode/Encode.xs ext/Encode/compile
8034           !> ext/Encode/encengine.c ext/Encode/encode.h
8035 ____________________________________________________________________________
8036 [  8291] By: jhi                                   on 2001/01/01  18:10:58
8037         Log: Podify README.mpeix (a new version from the web),
8038              add a dummy NAME to Carp::Heavy, regen toc.
8039      Branch: perl
8040            ! README.mpeix lib/Carp/Heavy.pm pod/buildtoc.PL pod/perl.pod
8041            ! pod/perltoc.pod
8042 ____________________________________________________________________________
8043 [  8290] By: nick                                  on 2001/01/01  17:43:47
8044         Log: Loose the "Loading..." warning.
8045              Another bug in fallback support
8046      Branch: perlio
8047            ! ext/Encode/Encode.pm ext/Encode/encengine.c
8048 ____________________________________________________________________________
8049 [  8289] By: jhi                                   on 2001/01/01  00:01:57
8050         Log: Bump up Larry's copyright.
8051      Branch: perl
8052            ! EXTERN.h INTERN.h README av.c av.h cop.h cv.h deb.c doio.c
8053            ! doop.c dump.c ext/DynaLoader/dl_dld.xs form.h gv.c gv.h
8054            ! handy.h hv.c hv.h mg.c mg.h op.c op.h perl.c perl.h perly.y
8055            ! pp.c pp.h pp_ctl.c pp_hot.c pp_sys.c regcomp.c regexec.c run.c
8056            ! scope.c sv.c sv.h toke.c utf8.c utf8.h util.c util.h
8057            ! x2p/EXTERN.h x2p/INTERN.h x2p/a2p.c x2p/a2p.h x2p/a2p.y
8058            ! x2p/a2py.c x2p/hash.c x2p/hash.h x2p/proto.h x2p/str.c
8059            ! x2p/str.h x2p/util.c x2p/util.h x2p/walk.c
8060 ____________________________________________________________________________
8061 [  8288] By: nick                                  on 2000/12/31  21:27:53
8062         Log: Fix .ucm reading - forgot a chr()
8063              Start of .ucm write (for .enc to .ucm)
8064      Branch: perlio
8065            ! ext/Encode/compile
8066 ____________________________________________________________________________
8067 [  8287] By: jhi                                   on 2000/12/31  18:15:56
8068         Log: Comment away a diagnostic message as noted by Craig A. Berry
8069              (the unexpected message was confusing testing)
8070      Branch: perl
8071            ! ext/Encode/Encode.pm
8072 ____________________________________________________________________________
8073 [  8286] By: jhi                                   on 2000/12/31  18:14:51
8074         Log: Subject: [PATCH perl@8269] ext/Encode/Makefile.PL line shortening
8075              Date: Sun, 31 Dec 2000 11:17:37 -0600
8076              From: "Craig A. Berry" <craigberry@mac.com>
8077              Message-Id: <5.0.2.1.0.20001230195844.025636c0@exchi01>
8078      Branch: perl
8079            ! ext/Encode/Makefile.PL
8080 ____________________________________________________________________________
8081 [  8285] By: nick                                  on 2000/12/31  18:11:54
8082         Log: Start of support of ICU-style .ucm files:
8083              - teach compile how to read a .ucm file
8084              - first guess at how to represent fallbacks in "tries".
8085              - use fallbacks if check == 0
8086              - new return code to indicate we used one.
8087      Branch: perlio
8088            ! ext/Encode/Encode.pm ext/Encode/Encode.xs ext/Encode/compile
8089            ! ext/Encode/encengine.c ext/Encode/encode.h
8090 ____________________________________________________________________________
8091 [  8284] By: jhi                                   on 2000/12/31  18:04:41
8092         Log: Pacify picky VMS compiler.
8093              
8094              Subject: perl@8269, whiny Compaq C compiler, unsigned expressions
8095              From: "Craig A. Berry" <craig.berry@psinetcs.com>
8096              Date: Sat, 30 Dec 2000 18:10:02 -0600
8097              Message-Id: <200012310010.CAA09719@tiku.hut.fi>
8098      Branch: perl
8099            ! sv.c
8100 ____________________________________________________________________________
8101 [  8283] By: jhi                                   on 2000/12/31  16:11:47
8102         Log: Wrong alarm: cygwin's getpwuid() is just fine (from Gerrit P. Haase)
8103      Branch: perl
8104            ! t/lib/glob-basic.t
8105 ____________________________________________________________________________
8106 [  8282] By: jhi                                   on 2000/12/31  15:26:11
8107         Log: Integrate perlio.
8108      Branch: perl
8109           !> makedef.pl opcode.pl os2/os2.c perlio.c
8110 ____________________________________________________________________________
8111 [  8281] By: nick                                  on 2000/12/31  10:06:15
8112         Log: Tweak perlio.c so that makedef.pl-exported perlsio_binmode()
8113              is available to be exported
8114      Branch: perlio
8115            ! makedef.pl perlio.c
8116 ____________________________________________________________________________
8117 [  8280] By: nick                                  on 2000/12/31  09:41:26
8118         Log: Ilya's OS2 patch (testing for damage on Win32)
8119      Branch: perlio
8120            ! makedef.pl opcode.pl os2/os2.c
8121 ____________________________________________________________________________
8122 [  8279] By: jhi                                   on 2000/12/30  21:52:07
8123         Log: Test nits.
8124      Branch: perl
8125            ! t/lib/syslfs.t t/op/lfs.t
8126 ____________________________________________________________________________
8127 [  8278] By: jhi                                   on 2000/12/30  21:47:49
8128         Log: Subject: Re: [ID 20001229.001] Not OK: perl v5.7.0 +DEVEL8221 on i686-linux 2.4.0-test13pre4-ac2 -2 (UNINSTALLED)
8129              From: andreas.koenig@anima.de (Andreas J. Koenig)
8130              Date: 30 Dec 2000 22:35:37 +0100
8131              Message-ID: <m3vgs1a8ye.fsf@ak-71.mind.de>
8132              
8133              The 32-bit wraparound test wasn't quite right.
8134      Branch: perl
8135            ! t/lib/syslfs.t t/op/lfs.t
8136 ____________________________________________________________________________
8137 [  8277] By: jhi                                   on 2000/12/30  21:33:44
8138         Log: Subject: [PATCH] open() example in perlfunc.pod 
8139              From: Karsten Sperling <s_sperli@ira.uka.de>
8140              Date: Sat, 30 Dec 2000 22:27:09 +0100
8141              Message-ID: <"iraun1.ira.0090801:001230.213049"@ira.uka.de>
8142      Branch: perl
8143            ! pod/perlfunc.pod
8144 ____________________________________________________________________________
8145 [  8276] By: jhi                                   on 2000/12/30  20:32:40
8146         Log: Not quite that many tests yet.
8147      Branch: perl
8148            ! t/op/pat.t
8149 ____________________________________________________________________________
8150 [  8275] By: jhi                                   on 2000/12/30  20:26:58
8151         Log: Integrate perlio.
8152      Branch: perl
8153           !> toke.c
8154 ____________________________________________________________________________
8155 [  8274] By: jhi                                   on 2000/12/30  20:24:56
8156         Log: Signedness nit.
8157      Branch: perl
8158            ! utf8.c
8159 ____________________________________________________________________________
8160 [  8273] By: jhi                                   on 2000/12/30  20:15:46
8161         Log: Add a test case for 20000731.001 which was fixed by the #8267.
8162      Branch: perl
8163            ! t/op/pat.t
8164 ____________________________________________________________________________
8165 [  8272] By: nick                                  on 2000/12/30  19:47:51
8166         Log: Tweak for MULTIPLICITY/USE_PERLIO
8167      Branch: perlio
8168            ! toke.c
8169 ____________________________________________________________________________
8170 [  8271] By: nick                                  on 2000/12/30  19:46:45
8171         Log: Integrate mainline
8172      Branch: perlio
8173           +> lib/unicode/distinct.pm
8174           !> Changes MANIFEST doop.c embed.h embed.pl mg.c op.c op.h
8175           !> patchlevel.h perl.h pod/perlapi.pod pp.c pp_ctl.c pp_hot.c
8176           !> proto.h regcomp.c regcomp.h regexec.c sv.c t/op/split.t utf8.c
8177 ____________________________________________________________________________
8178 [  8270] By: jhi                                   on 2000/12/30  19:39:50
8179         Log: Subject: RE: perl@8269
8180              From: "Richard Soderberg" <rs@crystalflame.net>
8181              Date: Sat, 30 Dec 2000 11:36:27 -0800
8182              Message-ID: <NAEKLNAAHLMBPMPNBMLEIEAKCKAA.rs@crystalflame.net>
8183              
8184              A missing aTHX_.
8185      Branch: perl
8186            ! toke.c
8187 ____________________________________________________________________________
8188 [  8269] By: jhi                                   on 2000/12/30  18:55:48
8189         Log: Update Changes.
8190      Branch: perl
8191            ! Changes patchlevel.h
8192 ____________________________________________________________________________
8193 [  8268] By: jhi                                   on 2000/12/30  17:18:40
8194         Log: Add a test for Unicode split //.  The #8267 was the cure.
8195      Branch: perl
8196            ! t/op/split.t
8197 ____________________________________________________________________________
8198 [  8267] By: jhi                                   on 2000/12/30  17:14:19
8199         Log: Subject: more UTF8 test suites and an UTF8 patch
8200              From: Inaba Hiroto <inaba@st.rim.or.jp>
8201              Date: Sat, 30 Dec 2000 14:27:10 +0900
8202              Message-ID: <3A4D722D.243AFD88@st.rim.or.jp> 
8203              
8204              Just the patch part for now, and the pragma renamed
8205              as unicode::distinct.
8206      Branch: perl
8207            + lib/unicode/distinct.pm
8208            ! MANIFEST doop.c embed.h embed.pl mg.c op.c op.h perl.h
8209            ! pod/perlapi.pod pp.c pp_ctl.c pp_hot.c proto.h regcomp.c
8210            ! regcomp.h regexec.c sv.c toke.c utf8.c
8211 ____________________________________________________________________________
8212 [  8266] By: nick                                  on 2000/12/30  16:40:49
8213         Log: Integrate mainline
8214      Branch: perlio
8215           +> lib/Pod/Text/Overstrike.pm
8216           !> MANIFEST doio.c hints/dec_osf.sh hv.c lib/Pod/Man.pm
8217           !> lib/Pod/Text/Color.pm lib/Pod/Text/Termcap.pm op.c
8218           !> pod/pod2text.PL sv.c t/lib/syslfs.t t/op/join.t t/op/lfs.t
8219           !> t/pragma/constant.t t/pragma/sub_lval.t t/pragma/utf8.t util.c
8220           !> vms/vms.c vms/vmsish.h vms/vmspipe.com
8221 ____________________________________________________________________________
8222 [  8265] By: jhi                                   on 2000/12/30  07:28:55
8223         Log: The sv_catsv() fix, take two.
8224      Branch: perl
8225            ! sv.c t/op/join.t
8226 ____________________________________________________________________________
8227 [  8264] By: jhi                                   on 2000/12/30  06:19:18
8228         Log: Undo all the join-related changes since #8248: relevant
8229              portions of 8248, 8249, 8250, 8251, 8260, 8263 must go.
8230              The new sv_catsv() doesn't fly so it must go back to
8231              the drawing board.
8232      Branch: perl
8233            ! sv.c t/op/join.t t/pragma/utf8.t
8234 ____________________________________________________________________________
8235 [  8263] By: jhi                                   on 2000/12/30  01:08:32
8236         Log: (Retracted by #8264)  Tweak sv_catsv() some more.
8237      Branch: perl
8238            ! sv.c
8239 ____________________________________________________________________________
8240 [  8262] By: jhi                                   on 2000/12/30  00:45:14
8241         Log: Retract #8261.
8242      Branch: perl
8243            ! hv.c util.c
8244 ____________________________________________________________________________
8245 [  8261] By: jhi                                   on 2000/12/30  00:38:32
8246         Log: (Retracted by #8261). (Unsuccessful memory access tweaks.)
8247      Branch: perl
8248            ! hv.c util.c
8249 ____________________________________________________________________________
8250 [  8260] By: jhi                                   on 2000/12/29  22:51:33
8251         Log: (Retracted by #8264)  More fixing for #8251.
8252      Branch: perl
8253            ! sv.c
8254 ____________________________________________________________________________
8255 [  8259] By: jhi                                   on 2000/12/29  18:27:30
8256         Log: Subject: podlators 1.06 released
8257              From: Russ Allbery <rra@stanford.edu>
8258              Date: 25 Dec 2000 05:09:30 -0800
8259              Message-ID: <ylwvcosl4l.fsf@windlord.stanford.edu>
8260      Branch: perl
8261            + lib/Pod/Text/Overstrike.pm
8262            ! MANIFEST lib/Pod/Man.pm lib/Pod/Text/Color.pm
8263            ! lib/Pod/Text/Termcap.pm pod/pod2text.PL
8264 ____________________________________________________________________________
8265 [  8258] By: jhi                                   on 2000/12/29  18:20:45
8266         Log: Make the large file tests more robust/talkative as suggested by
8267              
8268              Subject: Re: [ID 20001229.001] Not OK: perl v5.7.0 +DEVEL8221 on i686-linux 2.4.0-test13pre4-ac2 -2 (UNINSTALLED)
8269              From: andreas.koenig@anima.de (Andreas J. Koenig)
8270              Date: 29 Dec 2000 14:23:01 +0100
8271              Message-ID: <m3snn7uzt6.fsf@ak-71.mind.de>
8272      Branch: perl
8273            ! t/lib/syslfs.t t/op/lfs.t
8274 ____________________________________________________________________________
8275 [  8257] By: jhi                                   on 2000/12/29  17:48:04
8276         Log: Further VMS piping fixes from Charles Lane:
8277              
8278              In summary, error messages produced when a subprocess terminated
8279              abnormally were being sent not just to the parent process, but to
8280              grandparents, because of default values for error output that were
8281              not completely overridden when the subprocess was started.
8282              
8283              This patch fixes this behavior by defining user-mode (i.e., temporary
8284              for the duration of the program) logical names for SYS$OUTPUT and
8285              SYS$ERROR when they are (re)opened inside Perl.  And a bunch of other
8286              changes to make it so that the user-mode logicals are the ones that
8287              control where Perl's error messages go if it terminates abnormally.
8288              
8289              I also added some gratuitous fixes to the indentation of braces in
8290              the piping code.  It just looked ugly, before.
8291      Branch: perl
8292            ! doio.c vms/vms.c vms/vmsish.h vms/vmspipe.com
8293 ____________________________________________________________________________
8294 [  8256] By: jhi                                   on 2000/12/29  17:45:12
8295         Log: Subject: [PATCH] Idea: Declare multiple constants at once (fwd)
8296              From: "Casey R. Tweten" <crt@kiski.net>
8297              Date: Fri, 29 Dec 2000 12:03:00 -0500 (EST)
8298              Message-ID: <Pine.OSF.4.21.0012291201150.17186-100000@home.kiski.net>
8299              
8300              Tests for for #8240.
8301      Branch: perl
8302            ! t/pragma/constant.t
8303 ____________________________________________________________________________
8304 [  8255] By: jhi                                   on 2000/12/29  17:43:07
8305         Log: Subject: Re: [PATCH] Interesting syntax idea
8306              From: Simon Cozens <simon@cozens.net>
8307              Date: Fri, 29 Dec 2000 14:34:04 +0000
8308              Message-ID: <20001229143404.A7762@deep-dark-truthful-mirror.perlhacker.org>
8309              
8310              Tests for #8254.
8311      Branch: perl
8312            ! t/pragma/sub_lval.t
8313 ____________________________________________________________________________
8314 [  8254] By: jhi                                   on 2000/12/29  17:42:11
8315         Log: Subject: [PATCH] Interesting syntax idea
8316              From: Simon Cozens <simon@cozens.net>
8317              Date: Wed, 27 Dec 2000 05:08:57 +0000
8318              Message-ID: <20001227050857.A11296@deep-dark-truthful-mirror.perlhacker.org>
8319              
8320              Make opens + bareword assigns do typeglob assigns.
8321      Branch: perl
8322            ! op.c
8323 ____________________________________________________________________________
8324 [  8253] By: jhi                                   on 2000/12/29  17:36:45
8325         Log: Output the (apparent) version of gcc, as suggested by
8326              
8327              Subject: [ID 20001226.001] dec_osf.sh mis-parses gcc version 2.95.2 as less than 2.95, causing installation-failure
8328              From: jhbrown@ai.mit.edu (Jeremy H. Brown)
8329              Date: 26 Dec 2000 04:29:17 -0500
8330              Message-Id: <uv6puify1hu.fsf@suspiria.ai.mit.edu>
8331              
8332              (The patch as such didn't any more apply as the misparsing had
8333              already been addressed in #6474.)  Also change the wording about
8334              gcc 2.95.2, for Jeremy it didn't break sdbm, for me it did.
8335      Branch: perl
8336            ! hints/dec_osf.sh
8337 ____________________________________________________________________________
8338 [  8252] By: nick                                  on 2000/12/29  12:14:31
8339         Log: Integrate mainline
8340      Branch: perlio
8341           !> (integrate 27 files)
8342 ____________________________________________________________________________
8343 [  8251] By: jhi                                   on 2000/12/29  08:45:46
8344         Log: (Retracted by #8264)
8345              
8346              (Fixed by #8260.)
8347              
8348              sv_catsv() needs one more byte space than seems reasonable.
8349              (for join() and PERL_DESTRUCT_LEVEL=2, built with debugging).
8350              Curiouser and curiouser.
8351      Branch: perl
8352            ! sv.c
8353 ____________________________________________________________________________
8354 [  8250] By: jhi                                   on 2000/12/29  07:57:52
8355         Log: More split // UTF-8 tests.
8356      Branch: perl
8357            ! t/pragma/utf8.t
8358 ____________________________________________________________________________
8359 [  8249] By: jhi                                   on 2000/12/29  07:54:51
8360         Log: (Retracted by #8264)  More join() testing which was good because
8361              it revealed a bug in #8248 (the UTF8_EIGHT_BIT_LO() was wrong).
8362      Branch: perl
8363            ! pp.c t/op/join.t utf8.c utf8.h
8364 ____________________________________________________________________________
8365 [  8248] By: jhi                                   on 2000/12/29  07:08:32
8366         Log: (Retracted by #8264)  Externally: join() was still quite UTF-8-unaware.
8367              Internally: sv_catsv() wasn't quite okay on UTF-8, it assumed
8368              that the only cases to care about are byte+byte and byte+character.
8369              
8370              TODO: See how well pp_concat() could be implemented in terms
8371              of sv_catsv().
8372      Branch: perl
8373            ! doop.c sv.c t/op/join.t utf8.h
8374 ____________________________________________________________________________
8375 [  8247] By: jhi                                   on 2000/12/29  06:35:23
8376         Log: Signedness nit.
8377      Branch: perl
8378            ! pp_hot.c
8379 ____________________________________________________________________________
8380 [  8246] By: jhi                                   on 2000/12/29  01:23:31
8381         Log: Subject: Re: [ID 20001226.002] Not OK: perl v5.7.0 +DEVEL8221 on i86pc-solaris 2.8 (UNINSTALLED)
8382              From: Lupe Christoph <lupe@lupe-christoph.de>
8383              Date: Thu, 28 Dec 2000 23:00:00 +0100
8384              Message-ID: <20001228230000.F2574@alanya.lupe-christoph.de>
8385              
8386              Suggest rsync --delete --dry-run.
8387      Branch: perl
8388            ! pod/perlhack.pod
8389 ____________________________________________________________________________
8390 [  8245] By: jhi                                   on 2000/12/28  23:57:05
8391         Log: The maxiters upper limit sanity check (guarding against
8392              non-progress) assumed bytes instead of characters in s///
8393              and split().
8394      Branch: perl
8395            ! pp.c pp_hot.c
8396 ____________________________________________________________________________
8397 [  8244] By: jhi                                   on 2000/12/28  23:34:08
8398         Log: Make some panic messages a bit more logical.
8399      Branch: perl
8400            ! doop.c pod/perldiag.pod pp.c pp_hot.c
8401 ____________________________________________________________________________
8402 [  8243] By: jhi                                   on 2000/12/28  22:59:16
8403         Log: Subject: [PATCH] lvalue AUTOLOAD. No, really.
8404              From: Simon Cozens <simon@cozens.net>
8405              Date: Wed, 27 Dec 2000 02:30:03 +0000
8406              Message-ID: <20001227023003.A7677@deep-dark-truthful-mirror.perlhacker.org>
8407      Branch: perl
8408            ! pp.c t/pragma/sub_lval.t
8409 ____________________________________________________________________________
8410 [  8242] By: jhi                                   on 2000/12/28  22:56:53
8411         Log: Subject: [PATCH blead] Fix B::Terse indentation
8412              From: Daniel Chetlin <daniel@chetlin.com>
8413              Date: Wed, 27 Dec 2000 06:43:30 -0800
8414              Message-ID: <20001227064329.B9573@darkstar>
8415      Branch: perl
8416            ! ext/B/B.pm ext/B/B/Terse.pm t/lib/b.t
8417 ____________________________________________________________________________
8418 [  8241] By: jhi                                   on 2000/12/28  22:48:59
8419         Log: The latter patch from the
8420              
8421              Subject: [PATCH: perl@8211] directory depth typo in one win32 Makefile
8422              From: Peter Prymmer <pvhp@forte.com> 
8423              Date: Fri, 22 Dec 2000 14:52:12 -0800 (PST)
8424              Message-ID: <Pine.OSF.4.10.10012221433140.195493-100000@aspara.forte.com>
8425              
8426              (the former patch from the above should have been
8427              taken care of by Nick I-S)
8428      Branch: perl
8429            ! win32/Makefile
8430 ____________________________________________________________________________
8431 [  8240] By: jhi                                   on 2000/12/28  22:45:22
8432         Log: Subject: Re: [PATCH] Idea: Declare multiple constants at once
8433              From: "Casey R. Tweten" <crt@kiski.net>
8434              Date: Fri, 22 Dec 2000 10:35:53 -0500 (EST)
8435              Message-ID: <Pine.OSF.4.21.0012221032030.28992-100000@home.kiski.net>
8436      Branch: perl
8437            ! lib/constant.pm
8438 ____________________________________________________________________________
8439 [  8239] By: jhi                                   on 2000/12/28  22:37:45
8440         Log: Subject: [PATCH] Re: [ID 19991001.003] sort(sub(arg)) misparsed as sort sub args
8441              From: Simon Cozens <simon@cozens.net>
8442              Date: Wed, 27 Dec 2000 14:12:44 +0000
8443              Message-ID: <20001227141244.A13344@deep-dark-truthful-mirror.perlhacker.org>
8444      Branch: perl
8445            ! t/op/method.t t/op/sort.t toke.c
8446 ____________________________________________________________________________
8447 [  8238] By: jhi                                   on 2000/12/28  22:30:32
8448         Log: Subject: [PATCH perl@8229] Call.pm
8449              From: "Paul Marquess" <Paul.Marquess@btinternet.com>
8450              Date: Mon, 25 Dec 2000 10:47:15 -0000
8451              Message-ID: <000201c06e60$0b967760$a20a140a@bfs.phone.com>
8452      Branch: perl
8453            ! ext/Filter/Util/Call/Call.pm
8454 ____________________________________________________________________________
8455 [  8237] By: jhi                                   on 2000/12/28  22:19:21
8456         Log: Subject: [PATCH blead] Fix problem with `&' prototype
8457              From: Daniel Chetlin <daniel@chetlin.com>
8458              Date: Wed, 27 Dec 2000 15:55:32 -0800
8459              Message-ID: <20001227155532.D9573@darkstar>
8460      Branch: perl
8461            ! op.c t/comp/proto.t
8462 ____________________________________________________________________________
8463 [  8236] By: jhi                                   on 2000/12/28  22:09:25
8464         Log: Subject: Re: [PATCH blead] Fix segfault in gv_handler/mg_find
8465              From: Daniel Chetlin <daniel@chetlin.com>
8466              Date: Sun, 24 Dec 2000 04:09:49 -0800
8467              Message-ID: <20001224040949.B3090@darkstar>
8468      Branch: perl
8469            ! gv.c mg.c t/op/attrs.t
8470 ____________________________________________________________________________
8471 [  8235] By: jhi                                   on 2000/12/28  22:07:11
8472         Log: Subject: [PATCH] Win32::Spawn() didn't inherit cwd and env correctly
8473              From: Jan Dubois <jand@ActiveState.com>
8474              Date: Tue, 26 Dec 2000 20:57:31 -0800
8475              Message-ID: <reti4ts0php3anruv0qcjru3tl850g3sfd@4ax.com>
8476      Branch: perl
8477            ! win32/win32.c
8478 ____________________________________________________________________________
8479 [  8234] By: jhi                                   on 2000/12/28  21:52:42
8480         Log: Subject: Re: [PATCH] Warn on use of reference as array elem
8481              From: Simon Cozens <simon@cozens.net>
8482              Date: Thu, 28 Dec 2000 20:33:13 +0000
8483              Message-ID: <20001228203313.A2607@deep-dark-truthful-mirror.perlhacker.org>
8484      Branch: perl
8485            ! pod/perldiag.pod pp_hot.c t/pragma/warn/pp_hot
8486 ____________________________________________________________________________
8487 [  8233] By: jhi                                   on 2000/12/28  19:40:49
8488         Log: Integrate perlio.
8489      Branch: perl
8490           !> ext/Encode/Makefile.PL ext/Encode/compile
8491 ____________________________________________________________________________
8492 [  8232] By: nick                                  on 2000/12/23  16:06:00
8493         Log: Encode's Makefile.PL fix not good for dmake $(MAKEFILE) is set to -f Makefile
8494              and fails to make '-f'. (Also handle case where xxxx.c files have not been deleted.)
8495      Branch: perlio
8496            ! ext/Encode/Makefile.PL
8497 ____________________________________________________________________________
8498 [  8231] By: nick                                  on 2000/12/23  14:30:34
8499         Log: "Compiled" encode build cleanup
8500              - Makefile uses catfile $(MAKEFILE) etc. for platform issues.
8501              - .c files do not export sub-tables
8502      Branch: perlio
8503            ! ext/Encode/Makefile.PL ext/Encode/compile
8504 ____________________________________________________________________________
8505 [  8230] By: nick                                  on 2000/12/23  12:50:37
8506         Log: Integrate mainline
8507      Branch: perlio
8508           !> INSTALL lib/CGI.pm lib/CPAN.pm lib/Pod/Select.pm
8509           !> lib/Text/ParseWords.pm lib/Win32.pod pod/perl.pod
8510           !> pod/perl5004delta.pod pod/perl5005delta.pod
8511           !> pod/perl56delta.pod pod/perldelta.pod pod/perldiag.pod
8512           !> pod/perlembed.pod pod/perlfaq4.pod pod/perllocale.pod
8513           !> pod/perlmodlib.pod pod/perlrequick.pod pod/perlretut.pod
8514           !> pod/perlsub.pod
8515 ____________________________________________________________________________
8516 [  8229] By: jhi                                   on 2000/12/22  15:32:12
8517         Log: Integrate perlio.
8518      Branch: perl
8519           +> win32/distclean.bat
8520           !> MANIFEST t/io/utf8.t
8521 ____________________________________________________________________________
8522 [  8228] By: jhi                                   on 2000/12/22  15:29:40
8523         Log: Subject: [PATCH 5.6.1-TRIAL1 and @8223]; was Re: Perlbug 20000322.006 status +update
8524              From: Robin Barker <rmb1@cise.npl.co.uk>
8525              Date: Fri, 22 Dec 2000 12:17:38 GMT
8526              Message-Id: <200012221217.MAA21332@tempest.npl.co.uk>
8527      Branch: perl
8528            ! lib/CGI.pm lib/CPAN.pm lib/Pod/Select.pm
8529            ! lib/Text/ParseWords.pm lib/Win32.pod pod/perl.pod
8530            ! pod/perl5004delta.pod pod/perl5005delta.pod
8531            ! pod/perl56delta.pod pod/perldelta.pod pod/perldiag.pod
8532            ! pod/perlembed.pod pod/perlfaq4.pod pod/perllocale.pod
8533            ! pod/perlmodlib.pod pod/perlrequick.pod pod/perlretut.pod
8534            ! pod/perlsub.pod
8535 ____________________________________________________________________________
8536 [  8227] By: jhi                                   on 2000/12/22  15:24:28
8537         Log: Subject: Re: A Configure option like 'otherlibdirs' but for *pre*pending?
8538              From: "John L. Allen" <allen@grumman.com>
8539              Date: Thu, 21 Dec 2000 14:39:58 -0500 (EST)
8540              Message-ID: <Pine.SOL.3.91.1001221133227.23511A-100000@gateway.grumman.com>
8541              
8542              Document APPLLIB_EXP.
8543      Branch: perl
8544            ! INSTALL
8545 ____________________________________________________________________________
8546 [  8226] By: nick                                  on 2000/12/21  22:11:50
8547         Log: Handy script for when one forgets to "dmake clean" 
8548      Branch: perlio
8549            + win32/distclean.bat
8550            ! MANIFEST
8551 ____________________________________________________________________________
8552 [  8225] By: nick                                  on 2000/12/21  21:54:04
8553         Log: CRLF platform issue with io/utf8 fix.
8554      Branch: perlio
8555            ! t/io/utf8.t
8556 ____________________________________________________________________________
8557 [  8224] By: nick                                  on 2000/12/21  21:02:20
8558         Log: Integrate mainline
8559      Branch: perlio
8560           !> Changes Configure Makefile.SH Porting/Glossary
8561           !> Porting/config.sh Porting/config_H configure.com
8562           !> epoc/config.sh ext/Thread/Thread.xs patchlevel.h
8563           !> pod/perlfaq3.pod pod/perlfunc.pod pod/perltoc.pod pp_sys.c
8564           !> sv.c t/io/fs.t t/op/misc.t t/op/utf8decode.t t/pragma/utf8.t
8565           !> win32/config.bc win32/config.gc win32/config.vc
8566 ____________________________________________________________________________
8567 [  8223] By: jhi                                   on 2000/12/21  17:09:16
8568         Log: Update Changes.
8569      Branch: perl
8570            ! Changes patchlevel.h
8571 ____________________________________________________________________________
8572 [  8222] By: jhi                                   on 2000/12/21  16:24:01
8573         Log: Metaconfig unit changes for #8221.
8574      Branch: metaconfig/U/perl
8575           +> issymlink.U
8576            - testsyml.U
8577            ! Mksymlinks.U
8578 ____________________________________________________________________________
8579 [  8221] By: jhi                                   on 2000/12/21  16:23:48
8580         Log: Rename testsyml to issymlink.
8581      Branch: perl
8582            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
8583            ! epoc/config.sh pod/perltoc.pod win32/config.bc win32/config.gc
8584            ! win32/config.vc
8585 ____________________________________________________________________________
8586 [  8220] By: jhi                                   on 2000/12/21  15:47:26
8587         Log: Robustness support for #8218 (symlink forest) since the GNU
8588              tools seem to be overly picky about symlinkage depths.
8589      Branch: perl
8590            ! Makefile.SH t/io/fs.t
8591 ____________________________________________________________________________
8592 [  8219] By: jhi                                   on 2000/12/21  15:38:27
8593         Log: Metaconfig changes for #8218.
8594      Branch: metaconfig
8595            ! U/modified/Oldconfig.U
8596      Branch: metaconfig/U/perl
8597            + Mksymlinks.U
8598            ! testsyml.U
8599 ____________________________________________________________________________
8600 [  8218] By: jhi                                   on 2000/12/21  15:37:57
8601         Log: Add Configure option -Dmksymlinks which will create a symlink
8602              forest if the current/build differs from the source directory.
8603              TODO: mkdir -p is not portable.
8604      Branch: perl
8605            ! Configure
8606 ____________________________________________________________________________
8607 [  8217] By: jhi                                   on 2000/12/21  14:39:12
8608         Log: Subject: [PATCH] Re: Latest tarball doesn't build with threads
8609              From: Nick Ing-Simmons <nik@tiuk.ti.com> 
8610              Date: Thu, 21 Dec 2000 09:38:18 GMT
8611              Message-Id: <200012210938.JAA29043@mikado.tiuk.ti.com>
8612              
8613              The ofs became an SV.
8614      Branch: perl
8615            ! ext/Thread/Thread.xs
8616 ____________________________________________________________________________
8617 [  8216] By: jhi                                   on 2000/12/21  05:40:21
8618         Log: The polymorphism seems to have fixed 20000517.001.
8619      Branch: perl
8620            ! t/pragma/utf8.t
8621 ____________________________________________________________________________
8622 [  8215] By: jhi                                   on 2000/12/21  04:44:52
8623         Log: read() documentation tweak for 20001121.004.
8624      Branch: perl
8625            ! pod/perlfunc.pod
8626 ____________________________________________________________________________
8627 [  8214] By: jhi                                   on 2000/12/21  03:54:11
8628         Log: Fix for 20001210.003, "write(FH) on closed FH causes segv".
8629      Branch: perl
8630            ! pp_sys.c t/op/misc.t
8631 ____________________________________________________________________________
8632 [  8213] By: jhi                                   on 2000/12/21  00:28:10
8633         Log: Subject: [patch: perl@8211]VMS: add -Duseperlio capacity to configure.com
8634              From: Peter Prymmer <pvhp@forte.com>
8635              Date: Wed, 20 Dec 2000 16:13:32 -0800 (PST)
8636              Message-ID: <Pine.OSF.4.10.10012201609140.11967-100000@aspara.forte.com>
8637      Branch: perl
8638            ! configure.com
8639 ____________________________________________________________________________
8640 [  8212] By: jhi                                   on 2000/12/21  00:26:21
8641         Log: Edit edit edit.
8642      Branch: perl
8643            ! pod/perlfaq3.pod
8644 ____________________________________________________________________________
8645 [  8211] By: jhi                                   on 2000/12/20  18:52:46
8646         Log: Update Changes.
8647      Branch: perl
8648            ! Changes patchlevel.h
8649 ____________________________________________________________________________
8650 [  8210] By: jhi                                   on 2000/12/20  18:34:47
8651         Log: Yet another editor edit.
8652      Branch: perl
8653            ! pod/perlfaq3.pod
8654 ____________________________________________________________________________
8655 [  8209] By: jhi                                   on 2000/12/20  15:33:28
8656         Log: More Win32 Perling.
8657      Branch: perl
8658            ! pod/perlfaq3.pod
8659 ____________________________________________________________________________
8660 [  8208] By: jhi                                   on 2000/12/20  15:07:46
8661         Log: More Win32 editor/IDE/shell hints.
8662      Branch: perl
8663            ! pod/perlfaq3.pod
8664 ____________________________________________________________________________
8665 [  8207] By: jhi                                   on 2000/12/20  03:54:08
8666         Log: Subject: [PATCH] obscure timing knowledge
8667              From: Nicholas Clark <nick@ccl4.org>
8668              Date: Tue, 19 Dec 2000 19:22:31 +0000
8669              Message-ID: <20001219192231.F2827@plum.flirble.org>
8670      Branch: perl
8671            ! sv.c
8672 ____________________________________________________________________________
8673 [  8206] By: jhi                                   on 2000/12/20  03:45:57
8674         Log: Subject: [ID 20001219.011] Not OK: perl v5.7.1 +DEVEL8205 on alpha-dec_osf-perlio-multi 4.0f (UNINSTALLED)
8675              From: Spider Boardman <spider@leggy.zk3.dec.com>
8676              Date: Tue, 19 Dec 2000 21:30:16 -0500
8677              Message-Id: <200012200230.VAA17619@leggy.zk3.dec.com>
8678      Branch: perl
8679            ! sv.c
8680 ____________________________________________________________________________
8681 [  8205] By: jhi                                   on 2000/12/19  23:02:01
8682         Log: Update Changes.
8683      Branch: perl
8684            ! Changes patchlevel.h
8685 ____________________________________________________________________________
8686 [  8204] By: jhi                                   on 2000/12/19  22:58:18
8687         Log: Recode the naughty binary bytes ([\x00-\x08\x0b-\x1f\x7f-\xff])
8688              using the \xHH notation.  No more inlined UTF-8, sigh, but easier
8689              on editors and diffing/patching.
8690      Branch: perl
8691            ! t/op/utf8decode.t
8692 ____________________________________________________________________________
8693 [  8203] By: nick                                  on 2000/12/19  21:36:16
8694         Log: Integrate mainline (forgot my own change...)
8695      Branch: perlio
8696           !> ext/Encode/compile
8697 ____________________________________________________________________________
8698 [  8202] By: nick                                  on 2000/12/19  21:34:42
8699         Log: Integrate mainline.
8700      Branch: perlio
8701           !> (integrate 61 files)
8702 ____________________________________________________________________________
8703 [  8201] By: nick                                  on 2000/12/19  21:34:06
8704         Log: Avoid looking for File::Glob when we don't need it.
8705      Branch: perl
8706            ! ext/Encode/compile
8707 ____________________________________________________________________________
8708 [  8200] By: jhi                                   on 2000/12/19  18:35:49
8709         Log: Update Changes.
8710      Branch: perl
8711            ! Changes patchlevel.h
8712 ____________________________________________________________________________
8713 [  8199] By: jhi                                   on 2000/12/19  18:35:07
8714         Log: Microperl tweaks.
8715      Branch: perl
8716            ! sv.c uconfig.h uconfig.sh
8717 ____________________________________________________________________________
8718 [  8198] By: jhi                                   on 2000/12/19  18:29:59
8719         Log: Regen Configure, nitfix uconfig.sh (d_vendorarch is needed).
8720      Branch: perl
8721            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
8722            ! config_h.SH pod/perltoc.pod uconfig.h uconfig.sh
8723 ____________________________________________________________________________
8724 [  8197] By: jhi                                   on 2000/12/19  17:55:29
8725         Log: In VMS embedded perls couldn't access the statically built Socket,
8726              from Charles Lane.
8727      Branch: perl
8728            ! configure.com
8729 ____________________________________________________________________________
8730 [  8196] By: jhi                                   on 2000/12/19  17:49:50
8731         Log: Subject: [PATCH perl@8143] DB_File-1.75 (was RE: [8104] DB_File)
8732              From: "Paul Marquess" <Paul_Marquess@yahoo.co.uk> 
8733              Date: Sun, 17 Dec 2000 19:11:44 -0000
8734              Message-ID: <000801c0685d$3224e5a0$a20a140a@bfs.phone.com> 
8735      Branch: perl
8736            ! ext/DB_File/Changes ext/DB_File/DB_File.pm
8737            ! ext/DB_File/DB_File.xs ext/DB_File/dbinfo
8738 ____________________________________________________________________________
8739 [  8195] By: jhi                                   on 2000/12/19  17:47:53
8740         Log: Subject: [patch perl@8150] h2xs SYNOPSIS
8741              From: Jonathan Stowe <gellyfish@gellyfish.com>
8742              Date: Mon, 18 Dec 2000 10:24:38 +0000 (GMT)
8743              Message-ID: <Pine.LNX.4.10.10012181021180.20731-100000@orpheus.gellyfish.com>
8744      Branch: perl
8745            ! utils/h2xs.PL
8746 ____________________________________________________________________________
8747 [  8194] By: jhi                                   on 2000/12/19  17:46:28
8748         Log: Subject: Re: useless use of void context work-around
8749              From: andreas.koenig@anima.de (Andreas J. Koenig)
8750              Date: 16 Dec 2000 15:13:36 +0100
8751              Message-ID: <m3g0jofo8f.fsf@ak-71.mind.de>
8752              
8753              Document (comment) the q(di ds ig) trick in the code.
8754      Branch: perl
8755            ! op.c
8756 ____________________________________________________________________________
8757 [  8193] By: jhi                                   on 2000/12/19  17:10:57
8758         Log: Subject: [ID 20001215.004] Sys::Syslog::xlate doesn't handle LOG_EMERG
8759              From: "Mark J. Reed" <mreed@strange.turner.com>
8760              Date: Fri, 15 Dec 2000 21:22:29 -0500 (EST)
8761              Message-Id: <200012160222.VAA13986@strange.turner.com>
8762      Branch: perl
8763            ! ext/Sys/Syslog/Syslog.pm
8764 ____________________________________________________________________________
8765 [  8192] By: jhi                                   on 2000/12/19  17:07:45
8766         Log: Subject: [PATCH] Re: [PATCH] strtoq, strtou(q|ll|l) testing
8767              From: Nicholas Clark <nick@ccl4.org>
8768              Date: Sat, 16 Dec 2000 19:03:13 +0000
8769              Message-ID: <20001216190313.D68304@plum.flirble.org>
8770      Branch: perl
8771            ! t/op/64bitint.t
8772 ____________________________________________________________________________
8773 [  8191] By: jhi                                   on 2000/12/19  17:06:13
8774         Log: Subject: [ID 20001218.005] Not OK: perl v5.7.0 +DEVEL8148 on powerpc-machten 4.1.4
8775              From: Dominic Dunlop <domo@computer.org>
8776              Date: Mon, 18 Dec 2000 12:00:15 +0100
8777              Message-Id: <p04320404b6639e7aa043@[192.168.1.4]>
8778              
8779              This patchlet is needed in order that perl can be statically linked.  
8780      Branch: perl
8781            ! regexec.c
8782 ____________________________________________________________________________
8783 [  8190] By: jhi                                   on 2000/12/19  17:03:08
8784         Log: Subject: [PATCH perl@8133] finding PerlIO symbols for VMS
8785              From: "Craig A. Berry" <craig.berry@psinetcs.com>
8786              Date: Sun, 17 Dec 2000 00:18:35 -0600
8787              Message-Id: <p04330102b661bc01daba@[172.16.52.1]>
8788      Branch: perl
8789            ! perlio.h vms/gen_shrfls.pl
8790 ____________________________________________________________________________
8791 [  8189] By: jhi                                   on 2000/12/19  16:20:28
8792         Log: Subject: [DOC PATCH: perl@8150, 5.6.1-TRIAL1] update list of lang. sensitive editors/IDES
8793              From: Prymmer/Kahn <pvhp@best.com>
8794              Date: Tue, 19 Dec 2000 08:08:31 -0800 (PST)
8795              Message-ID: <Pine.BSF.4.21.0012190804040.14656-100000@shell8.ba.best.com>
8796              
8797              A better version of #8188.
8798      Branch: perl
8799            ! pod/perlfaq3.pod
8800 ____________________________________________________________________________
8801 [  8188] By: jhi                                   on 2000/12/19  15:57:06
8802         Log: (Replaced by #8189)
8803              
8804              Subject: [DOC PATCH: perl@7953] update list of lang. sensitive editors/IDES
8805              Date: Mon, 18 Dec 2000 08:03:34 -0800 (PST)
8806              From: Prymmer/Kahn <pvhp@best.com>
8807              Message-ID: <Pine.BSF.4.21.0012180802090.27110-100000@shell8.ba.best.com>
8808              Subject: Re: [DOC PATCH: perl@7953] update list of lang. sensitive editors/IDES
8809              From: Ronald J Kimball <rjk@linguist.Thayer.Dartmouth.EDU>
8810              Date: Mon, 18 Dec 2000 11:10:45 -0500
8811              Message-ID: <20001218111044.B180222@linguist.thayer.dartmouth.edu>
8812      Branch: perl
8813            ! pod/perlfaq3.pod
8814 ____________________________________________________________________________
8815 [  8187] By: jhi                                   on 2000/12/19  15:54:19
8816         Log: Email address fix for Anton Berezin.
8817      Branch: perl
8818            ! AUTHORS
8819 ____________________________________________________________________________
8820 [  8186] By: jhi                                   on 2000/12/19  15:38:54
8821         Log: Subject: [PATCH perl@8102] cygwin port
8822              From: "Eric Fifer" <efifer@dircon.co.uk> 
8823              Date: Thu, 14 Dec 2000 13:41:29 -0000
8824              Message-Id: <200012141340.NAA54236@mailhost1.dircon.co.uk>
8825              
8826              When compiling modules the data item that is being imported
8827              from libperl.dll needs to be tagged as imported/shared data:
8828              extern __declspec(dllimport) PerlIO_funcs PerlIO_pending;
8829      Branch: perl
8830            ! perliol.h
8831 ____________________________________________________________________________
8832 [  8185] By: jhi                                   on 2000/12/19  14:53:24
8833         Log: Regen uconfig.h and uconfig.sh.
8834      Branch: perl
8835            ! uconfig.h uconfig.sh
8836 ____________________________________________________________________________
8837 [  8184] By: jhi                                   on 2000/12/18  20:43:49
8838         Log: Comments work so much better when they are closed.
8839      Branch: perl
8840            ! regcomp.c
8841 ____________________________________________________________________________
8842 [  8183] By: jhi                                   on 2000/12/18  18:04:02
8843         Log: Some compilers (e.g. HP-UX) can't switch on 64-bit integers.
8844              Fixes the bug 20001218.016.
8845      Branch: perl
8846            ! regcomp.c
8847 ____________________________________________________________________________
8848 [  8182] By: gsar                                  on 2000/12/18  09:53:47
8849         Log: delete spurious files
8850      Branch: maint-5.6/perl
8851            - lib/CGI/eg/make_links.pl lib/CGI/eg/wilogo.gif vos/config.def
8852            - vos/config.h vos/config_h.SH_orig
8853 ____________________________________________________________________________
8854 [  8181] By: gsar                                  on 2000/12/18  09:46:08
8855         Log: regen perltoc
8856      Branch: maint-5.6/perl
8857            ! pod/buildtoc.PL pod/perl.pod pod/perlapi.pod pod/perltoc.pod
8858 ____________________________________________________________________________
8859 [  8180] By: gsar                                  on 2000/12/18  09:20:27
8860         Log: integrate changes#7924..7926,7946,7952 from mainline
8861      Branch: maint-5.6/perl
8862           !> lib/CPAN.pm lib/CPAN/FirstTime.pm lib/ExtUtils/MM_Unix.pm
8863           !> lib/File/stat.pm t/lib/class-struct.t
8864 ____________________________________________________________________________
8865 [  8179] By: gsar                                  on 2000/12/18  08:55:54
8866         Log: integrate changes#7889,7890,7900,7903,7904,7907,7910,7917,
8867              7918,7919,7988,8907 from mainline (various)
8868      Branch: maint-5.6/perl
8869           +> t/lib/class-struct.t
8870           !> MANIFEST README.amiga ext/Sys/Syslog/Syslog.pm gv.c
8871           !> lib/Class/Struct.pm pod/perlipc.pod pod/perltie.pod
8872           !> t/lib/syslfs.t t/op/lfs.t utils/perlcc.PL
8873 ____________________________________________________________________________
8874 [  8178] By: gsar                                  on 2000/12/18  08:16:30
8875         Log: avoid redefinition warnings on windows due to sys/socket.h getting
8876              #included before win32.h
8877      Branch: maint-5.6/perl
8878            ! win32/include/sys/socket.h
8879 ____________________________________________________________________________
8880 [  8177] By: gsar                                  on 2000/12/18  05:24:04
8881         Log: make regen_headers; fix POSIX.xs problems; remove outdated
8882              code from sys/socket.h that makes build fail now
8883      Branch: maint-5.6/perl
8884            ! ext/POSIX/POSIX.xs global.sym objXSUB.h perlapi.c
8885            ! pod/perlapi.pod
8886           !> win32/include/sys/socket.h
8887 ____________________________________________________________________________
8888 [  8176] By: gsar                                  on 2000/12/18  05:20:17
8889         Log: update Changes
8890      Branch: maint-5.6/perl
8891            ! Changes patchlevel.h
8892 ____________________________________________________________________________
8893 [  8175] By: gsar                                  on 2000/12/18  04:57:48
8894         Log: integrate changes#7643,7646..7649,7651..7654,7658,7659,
8895              7661..7665,7667..7669,7671,7673,7676,7677,7681..7683,
8896              7689..7697,7699..7701,7703,7705,7714,7715,7718..7723,
8897              7725,7726,7729..7732,7737,7748,7749,7758,7759,7761,7773,
8898              7775,7776,7782,7785..7787,7804,7807,7808,7810,7811,7816,
8899              7823,7825,7838
8900      Branch: maint-5.6/perl
8901           +> lib/File/Spec/Epoc.pm
8902           !> (integrate 88 files)
8903 ____________________________________________________________________________
8904 [  8174] By: gsar                                  on 2000/12/18  03:53:09
8905         Log: integrate changes#7602,7604..7611,7614,7616..7619,7621..7623,
8906              7625..7629,7631..7634,7637,7639,7642 from mainline
8907      Branch: maint-5.6/perl
8908           +> README.solaris
8909           !> (integrate 26 files)
8910 ____________________________________________________________________________
8911 [  8173] By: gsar                                  on 2000/12/18  03:37:02
8912         Log: integrate changes#7472,7474..7479,7481,7485,7489,7493,7494,7496,
8913              7497,7499..7503,7505..7507,7509..7513,7515..7523,7526..7534,
8914              7536,7540,7542,7544..7546,7549,7553,7556,7557,7559,7561..7563,
8915              7565,7568..7572,7576,7578..7589,9592..7594,7596..7601 from mainline
8916      Branch: maint-5.6/perl
8917           +> t/lib/tie-refhash.t t/lib/tie-substrhash.t
8918            - MAINTAIN
8919           !> (integrate 111 files)
8920 ____________________________________________________________________________
8921 [  8172] By: jhi                                   on 2000/12/18  02:49:27
8922         Log: Regen pods.
8923      Branch: perl
8924            ! pod/perlmodlib.pod pod/perltoc.pod
8925 ____________________________________________________________________________
8926 [  8171] By: gsar                                  on 2000/12/18  02:49:24
8927         Log: integrate changes#7447,7448,7450,7454,7456,7457,7460,7462,
8928              7465..7471 from mainline
8929              
8930              Remains of the old UTF-8 API, utf8_to_uv_chk(): didn't link
8931              in platforms that strictly require all the symbols being present
8932              at link time.
8933              
8934              Subject: [PATCH: perl@7446] restore missing d_stdio_cnt_lval to VMS
8935              
8936              Subject: [ID 20001025.011] [PATCH] t/io/open.t perl@7369[  7350] breaks VMS perl
8937              
8938              Subject: [ID 20001026.006] C<use integer; $x += 1> gives uninitialized warning
8939              
8940              Subject: [PATCH] todo
8941              
8942              Subject: [ID 20001027.002] Patch 7380 followup - Perl_modfl *must* be defined
8943              
8944              Use $sort, $uniq (and $tr) consistently as wondered
8945              by Nicholas Clark.
8946              
8947              Too enthusiastic editing in #7460.
8948              
8949              The reëntrant version shouldn't be needed unless USE_PURE_BISON.
8950              
8951              Upgrade to CPAN 1.58_55.
8952              Subject: CPAN.pm status
8953              
8954              Subject: [ID 20001027.005] Nit in perlos2.pod - space needs deleted on line 118
8955              
8956              Make target reordering to avoid pointless re-makes.
8957              Subject: Re: Total re-make of 'make okfile' after 7451 ?
8958              
8959              Subject: [ID 20001027.010] [PATCH] Add info on building CPAN modules to README.dos
8960              
8961              Subject: DOC PATCH 5.6.0
8962              
8963              Add the repository doc by Malcolm, Sarathy, and by Simon,
8964              name as suggested by Michael Bletzinger <mbletzin@ncsa.uiuc.edu>.
8965      Branch: maint-5.6/perl
8966           +> Porting/repository.pod
8967           !> Configure MANIFEST Makefile.SH README.dos README.os2
8968           !> config_h.SH configure.com embed.h embed.pl handy.h lib/CPAN.pm
8969           !> lib/CPAN/FirstTime.pm perl.h pod/perlfunc.pod pod/perltodo.pod
8970           !> pp.c proto.h t/io/open.t t/op/assignwarn.t toke.c
8971 ____________________________________________________________________________
8972 [  8169] By: gsar                                  on 2000/12/18  02:33:34
8973         Log: integrate changes#7416,7417,7420..7422,7424,7426..7429,7431..7433,
8974              7435..7441,7445 from mainline
8975              
8976              Make the UTF-8 decoding stricter and more verbose when
8977              malformation happens.  This involved adding an argument
8978              to utf8_to_uv_chk(), which involved changing its prototype,
8979              and prefer STRLEN over I32 for the UTF-8 length, which as
8980              a domino effect necessitated changing the prototypes of
8981              scan_bin(), scan_oct(), scan_hex(), and reg_uni().
8982              The stricter UTF-8 decoding checking uses Markus Kuhn's
8983              UTF-8 Decode Stress Tester from
8984              http://www.cl.cam.ac.uk/~mgk25/ucs/examples/UTF-8-test.txt
8985              
8986              Run vms/vms_yfix.pl, should have done that after changing
8987              perly.c in #7382.
8988              
8989              Subject: [PATCH 5.7.0] static linking with uninstalled perl
8990              
8991              (Replaced by #7440.)
8992              Subject: Re: [ID 20001022.001] Not OK: perl v5.7.0 +DEVEL7368 on i686-linux 2.2.16
8993              
8994              Fix the bug ID 20001024.005, the bug introduced by #7416.
8995              
8996              Subject: Re: [ID 20001023.003] PATCH perlfaq5 [perl-current]
8997              
8998              Fix the bug reported in
8999              From: andreas.koenig@anima.de (Andreas J. Koenig)
9000              Also make is_utf8_char() stricter.
9001              
9002              Missed the header file changes from #7425.
9003              
9004              Check if stdio supports tweaking lval and cnt simultaneously.
9005              Subject: PATCH (Re: PerlIO - Configure tweak for Linux/glibc?)
9006              
9007              Stratus VOS updates from Paul Green.
9008              
9009              Podify README.epoc and README.vos.
9010              
9011              Add targets to Makefile.SH, most importantly
9012              'regen_all' which also remembers to update vms/perly*.
9013              
9014              Subject: Minor update to find2perl, for portability
9015              
9016              Subject: patch 7416 breaks sv.c on AIX and HP-UX (patch included)
9017              
9018              Subject: [ID 20001024.007] [PATCH] "Dump local *FH" causes SEGV
9019              
9020              Rename UTF8LEN() to be UNISKIP(), too confusing to have
9021              UTF8LEN() and UTF8SKIP(). 
9022              
9023              Allow poking holes at the UTF-8 decoding strictness.
9024              
9025              Continue the internal UTF-8 API tweaking.
9026              Rename utf8_to_uv_chk() back to utf8_to_uv() because it's
9027              used much more than the simpler API, now called utf8_to_uv_simple().
9028              Still not quite happy with API, too much partial duplication
9029              of functionality.
9030              
9031              A new version of making the syslog test more robust.
9032              (Replaces #7421.)
9033              Subject: Re: [ID 20001022.001] Not OK: perl v5.7.0 +DEVEL7368 on i686-linux 2.2.16
9034              
9035              buildtoc target tweaks.
9036              
9037              Integrate with vmsperl #7430 by Charles Bailey:
9038              
9039              Cleanup from prior patch (Charles Lane?):
9040              - improve handling of MFDs in Basename and Path
9041              - default to no xsubpp line # munging when building debug images
9042      Branch: maint-5.6/perl
9043           +> vos/config.alpha.def vos/config.alpha.h vos/config.ga.def
9044           +> vos/config.ga.h vos/configure_perl.cm vos/install_perl.cm
9045           !> (integrate 67 files)
9046 ____________________________________________________________________________
9047 [  8168] By: gsar                                  on 2000/12/18  02:05:49
9048         Log: integrate changes#7512,7733 from mainline (regex bugfixes)
9049              
9050              Subject: [ID 20001031.004] Uninitialized auto variable in regcomp.c
9051              From: Martin Husemann <martin@duskware.de>
9052              
9053              Subject: [PATCH 5.7.0] restore match data on backtracing
9054              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
9055      Branch: maint-5.6/perl
9056           !> regcomp.c regexec.c t/op/re_tests
9057 ____________________________________________________________________________
9058 [  8167] By: gsar                                  on 2000/12/18  01:55:22
9059         Log: integrate changes#7858,7986 from mainline
9060              
9061              C<foreach my $x ...> in pseudo-fork()ed process may diddle
9062              parent's memory; fix it by keeping track of the actual pad
9063              offset rather than a raw pointer (this change is probably also
9064              relevant to non-ithreads case to avoid fallout from reallocs of
9065              the pad array, but is currently only enabled for the ithreads
9066              case in the interests of minimal disruption to existing "well
9067              tested" code)
9068              
9069              fix open(FOO, ">&MYSOCK") failure under Windows 9x (problem is
9070              due to the notorious GetFileType() bug in Windows 9x, which fstat()
9071              tickles)
9072      Branch: maint-5.6/perl
9073           !> embed.h embed.pl global.sym objXSUB.h perlapi.c pp_ctl.c
9074           !> proto.h scope.c scope.h sv.c t/op/fork.t win32/perlhost.h
9075           !> win32/win32.c win32/win32.h win32/win32sck.c
9076 ____________________________________________________________________________
9077 [  8166] By: gsar                                  on 2000/12/18  01:52:59
9078         Log: integrate changes#7626,7632,7717,7738,7814,7817,7902,7912,7915
9079              from mainline (xsubpp and ExtUtils::LibList fixups, various
9080              other small items)
9081      Branch: maint-5.6/perl
9082           !> emacs/cperl-mode.el emacs/ptags lib/ExtUtils/Liblist.pm
9083           !> lib/ExtUtils/MM_VMS.pm lib/ExtUtils/MakeMaker.pm
9084           !> lib/ExtUtils/xsubpp lib/unicode/syllables.txt minimod.pl
9085           !> pod/perlfunc.pod pod/perlxs.pod pod/perlxstut.pod t/op/split.t
9086           !> win32/bin/search.pl
9087 ____________________________________________________________________________
9088 [  8165] By: gsar                                  on 2000/12/18  01:28:45
9089         Log: integrate changes#7533,7563,7611,7623 from mainline (various
9090              malloc.c embellishments)
9091      Branch: maint-5.6/perl
9092           !> malloc.c pod/perldiag.pod
9093 ____________________________________________________________________________
9094 [  8164] By: gsar                                  on 2000/12/18  01:23:33
9095         Log: integrate changes#7419,7806,8129 from mainline (various h2xs
9096              fixups)
9097      Branch: maint-5.6/perl
9098           !> utils/h2xs.PL
9099 ____________________________________________________________________________
9100 [  8163] By: gsar                                  on 2000/12/18  01:17:50
9101         Log: integrate changes#7493,7599,7803 from mainline (various perlbug
9102              fixups)
9103      Branch: maint-5.6/perl
9104           !> Makefile.SH utils/perlbug.PL
9105 ____________________________________________________________________________
9106 [  8162] By: gsar                                  on 2000/12/18  00:25:43
9107         Log: always export Perl_deb() (it is required by re.xs whether
9108              Perl is built with or without -DDEBUGGING)
9109      Branch: maint-5.6/perl
9110            ! makedef.pl
9111 ____________________________________________________________________________
9112 [  8161] By: gsar                                  on 2000/12/18  00:23:38
9113         Log: integrate change#7414 from mainline
9114              
9115              Undo the basename() part of #7412 since the lib/basename
9116              tests would need upgrading too.
9117              
9118              squelch two tests in tr.t that rely on tr/// paranoia change
9119              that's not in 5.6.x
9120      Branch: maint-5.6/perl
9121            ! t/op/tr.t
9122           !> lib/File/Basename.pm
9123 ____________________________________________________________________________
9124 [  8160] By: gsar                                  on 2000/12/18  00:05:30
9125         Log: missing change in previous integrate
9126      Branch: maint-5.6/perl
9127           !> README.aix
9128 ____________________________________________________________________________
9129 [  8159] By: gsar                                  on 2000/12/18  00:03:38
9130         Log: integrate changes#7205..7210,7212,7214..7219,7222,7223,7225,7226,
9131              7228,7230..7241,7243,7346,7347,7350..7354,7356,7358..7360,7362,
9132              7363,7365..7368,7370..7374,7376..7386,7391,7393..7399,7304..7408,
9133              7410..7413 from mainline
9134      Branch: maint-5.6/perl
9135           +> README.aix hints/nonstopux.sh lib/unicode/Is/DCmedial.pl
9136           +> t/lib/tie-splice.t
9137            - lib/unicode/Is/DCinital.pl
9138           !> (integrate 112 files)
9139 ____________________________________________________________________________
9140 [  8158] By: jhi                                   on 2000/12/17  23:04:24
9141         Log: Subject: [PATCHES] RE: perl@8150 
9142              From: "Gerrit P. Haase" <gerrit.haase@t-online.de>
9143              Date: Sun, 17 Dec 2000 21:46:39 +0100
9144              Message-ID: <3A3D343F.13566.1ACA7D93@localhost>
9145              
9146              Neither cygwin has a getpwuid() one can trust on.
9147      Branch: perl
9148            ! t/lib/glob-basic.t
9149 ____________________________________________________________________________
9150 [  8157] By: jhi                                   on 2000/12/17  23:01:54
9151         Log: More MAN.PODS => {} fixes.
9152      Branch: perl
9153            ! os2/OS2/ExtAttr/Makefile.PL os2/OS2/PrfDB/Makefile.PL
9154            ! os2/OS2/Process/Makefile.PL os2/OS2/REXX/DLL/Makefile.PL
9155            ! os2/OS2/REXX/Makefile.PL
9156 ____________________________________________________________________________
9157 [  8156] By: gsar                                  on 2000/12/17  22:49:13
9158         Log: integrate changes#7069..7077,7079,7081..7087,7090,7092,7093,
9159              7096..7104,7109..7117,7119..7124,7126,7128,7129,7133,7134,
9160              7136..7139,7141..7146,7148,7149,7151,7153..7155,7157,7158,
9161              7160,7161,7164,7165,7169..7178,7180..7191,7193..7197,7199,
9162              7201,7204 from mainline
9163      Branch: maint-5.6/perl
9164           !> (integrate 121 files)
9165 ____________________________________________________________________________
9166 [  8155] By: jhi                                   on 2000/12/17  22:30:58
9167         Log: Subject: [PATCH perl@8133] fix-up for VMS extensions
9168              From: "Craig A. Berry" <craigberry@mac.com>
9169              Date: Sun, 17 Dec 2000 13:09:28 -0600
9170              Message-Id: <p04330103b6628cabe114@[172.16.52.1]>
9171              
9172              MAN.PODS => ' ' is naughty.
9173      Branch: perl
9174            ! vms/ext/DCLsym/Makefile.PL vms/ext/Stdio/Makefile.PL
9175 ____________________________________________________________________________
9176 [  8154] By: nick                                  on 2000/12/17  22:07:13
9177         Log: MULTIPLICITY nit.
9178      Branch: perl
9179            ! mg.c
9180 ____________________________________________________________________________
9181 [  8153] By: gsar                                  on 2000/12/17  21:23:05
9182         Log: integrate changes#7017..7019,7021..7025,7027..7036,7038,7039,
9183              7041..7044,7046..7048,7050..7061,7063,7066..7067,7069..7074
9184              from mainline
9185              
9186              Document the SvIOK_.*UV().
9187              
9188              Update Unicode todo list.
9189              
9190              Guard against bad string->int conversion for quads.
9191              
9192              Subject: small apidoc fix
9193              
9194              Subject: [PATCH] Tie::StdHandle did not know about 3-arg open
9195              
9196              Subject: [PATCH] Tied filehandle documentation
9197              
9198              Subject: [PATCH] Modernize Opcode.pm documentation
9199              
9200              Make Data::Dumper (non-XS) to work with changed semantics of ref().
9201              Subject: Re: Undocumented(?) change to "ref" semantics in 5.7.0
9202              [applied even though said semantics didn't change in 5.6.x]
9203              
9204              Subject: [PATCH@7014] \G in non-/g is well-defined now ... right?
9205              
9206              Subject: Re: [ID 20000905.001] Assertion failed: file "toke.c", line 202 
9207              
9208              Fix the URL, but the server is still missing in action.
9209              Subject: [ID 20000905.002] perlfaq1.pod URL error
9210              
9211              Subject: [ID 20000903.001] \w in utf8-strings
9212              
9213              Fix the ccversion detection for 5.1 and beyond.
9214              Subject: [ID 20000907.007] Not OK: perl v5.7.0 +devel-7030 on alpha-dec_osf 4.0f
9215              
9216              Subject: [PATCH 5.7.0] perl5db.pl [Was: Re: Debugger question]
9217              
9218              Subject: [ID 20000904.008] Tiny fix for perldiag
9219              
9220              Subject: Re: [ID 20000906.004] segfault with bad perl statement
9221              
9222              Subject: Re: [ID 20000907.007] Not OK: perl v5.7.0 +devel-7030 on alpha-dec_osf 4.0f
9223              
9224              Subject: [ID 20000908.002] perlipc documentation bug.
9225              
9226              Subject: [PATCH lib/Benchmark.pm]
9227              
9228              Re-allow vec() for characters > 255.
9229              Subject: [PATCH] Re: [ID 20000907.005] Not OK: perl v5.7.0 +devel-7030 on alpha-dec_osf-perlio 4.0f (UNINSTALLED) 
9230              
9231              Do away with memory models cruft.  Sorry, PDP users.
9232              
9233              Continue #7041.
9234              
9235              Subject: [PATCH (or RFC): 5.7.0] make the ran_tests intermediate file 8.3 friendly
9236              
9237              Subject: [PATCH: 5.7.0] proper setting for isnan for DECC 5.3
9238              
9239              Upgrade to CPAN 1.57_65, from Andreas König.
9240              
9241              Upgrade to podlators-1.03 (Pod::Man 1.07 and Pod::Text 2.05),
9242              by Russ Allbery.
9243              
9244              Silence t/pod/*.t about alternate quote-mappings now implemented
9245              by Pod::Text, from Brad Appleton.
9246              
9247              Modern Borland C now seems to have anon unions for info.wProcessorArchitecture
9248              Subject: borland C++ win32.c tweak
9249              
9250              C<@a = @b = split(...)> optimization coredumps under ithreads
9251              (missed a spot when fixing up op_pmreplroot hack for ithreads)
9252              
9253              Document the SvUTF8*().
9254              
9255              Subject:  [PATCH] Perl 5.6.0, 5.7.0 ... vms/test.com to eliminate spurious NL's in test output
9256              
9257              Subject: RE: [Patch 5.7.0] Removing -ldb from the core build
9258              
9259              Do in VMS as the #7054 does.
9260              
9261              Subject: [patch] perlfunc.pod -- POSIX::sigpause should be POSIX::pause
9262              
9263              Subject: [ID 20000911.008] Not OK: perl v5.7.0 +DEVEL7048 on os2-64int-ld 2.30 (UNINSTALLED)
9264              
9265              Subject: [patch: perl@7045] vms updates
9266              
9267              Test for the #7049.
9268              Subject: Re: [PATCH] Re: [ID 20000910.001] Not OK: perl v5.7.0 +DEVEL7044 on    i686-linux 2.2.16-raid (UNINSTALLED)
9269              
9270              Break up the myconfig lines a bit.
9271              Subject: perlbug/perl -V output format
9272              
9273              Subject: [ID 20000911.011] misplaced typemap in perlxs.pod
9274              
9275              The #7054 truncated Configure badly.
9276              
9277              change#6327 didn't quite go all the way to enable USE_SOCKETS_AS_HANDLES
9278              initialization in all the threads on Windows
9279              
9280              Allow for whitespace between "#" and "line" in cpp output.
9281              Subject: [PATCH] Re: Problems compiling bleadperl on Unicos 9
9282              
9283              Remove vestiges of tr//CU.
9284              Subject: [ID 20000912.009] perlunicode.pod still mentions tr///CU
9285              
9286              The return value of setlocale must be copied away.
9287              Subject: [ID 20000913.001] Heap corruption in Perl_init_i18nl10n
9288              
9289              Allow chop() and chomp() to be overridden.
9290              Subject: [PATCH] Re: [ID 20000911.006] I can override glob but not chop?
9291              
9292              Hints optimization.
9293              Subject: Minor nit
9294              
9295              Subject: [PATCH] de-wall t/README
9296              
9297              Subject: Re: Two advertising clauses need to be removed
9298      Branch: maint-5.6/perl
9299           !> (integrate 75 files)
9300 ____________________________________________________________________________
9301 [  8152] By: gsar                                  on 2000/12/17  20:30:11
9302         Log: integrate changes#6945,6947,6949..6954,6956,6958,6959,6961,
9303              6964..6972,6977..6981..6984,6987,6988,6991,6994,6997,
9304              6999..7001,7003..7005,7007,7009,7011,7012 from mainline
9305              
9306              Don't attach -ld to the archname if pointless.
9307              
9308              Document UNTIE in a very minimalistic way.
9309              
9310              POSIX doesn't report long double values under -Duselongdouble
9311              when the long doubles are "real" (bigger than doubles).
9312              
9313              More author updates.
9314              
9315              Try to deduce NV_MAX.  Really should be Configure fodder.
9316              
9317              :: not allowed in pathnames, change to .
9318              Subject: [PATCH perl@6938] cygwin port
9319              
9320              Forget about NV_MAX (#6951).  Various floating point tweaks,
9321              ideas from Eric Fifer, Yitzchak, Alan, and Spider.
9322              
9323              Move the Solaris 7 scan to use64bitall, make the
9324              failure to find 64-bot sparc libc to mention the
9325              possibility of being in an intel, from Lupe and Alan.
9326              
9327              Regen perltoc.
9328              
9329              AUTHORS tweaks, from Peter Prymmer.
9330              
9331              More address tweaking.
9332              
9333              Small tweaks all over.
9334              
9335              File::Temp patches from Andreas König,
9336              
9337              Subject: [PATCH perl@6962] 2 more vms.c fix-ups and status
9338              
9339              Subject: CPAN.pm beta 1.57_57 for the core
9340              
9341              Part of the solution.
9342              Subject: Re: [ID 20000807.004] [PATCH] conditional breakpoints leak memory
9343              
9344              Subject: [PATCH@6961] Fix misleading example in perlretut.pod
9345              
9346              Subject: [PATCH lib/overload.pm] Sanaty checking of arguments to overload::constant
9347              
9348              Add the overload warnings to perldiag.
9349              
9350              Drop unused argument.
9351              Subject: Re: [ID 20000831.034] overload::constant and number of arguments. 
9352              
9353              Subject: Nit in Configure (bleadperl@6961)
9354              
9355              Update to PodParser 1.18, from Brad Appleton.
9356              
9357              Subject: [ID 20000901.017] [PATCH] Basic test failure in an untidy world       
9358              
9359              Subject: [PATCH: 6948] add SCNfldbl to configure.com
9360              
9361              Document UNTIE. Also tweak implementation to suppress the 'inner references'
9362              warning when UNTIE exists and instead pass the cound of extra references to
9363              the UNTIE method.
9364              
9365              Rename the PRIElfbl, PRIX64, etc, to be PRIEUfldbl, PRIXU64,
9366              so that case-ignoring systems like DCL can tell them from
9367              PRIefldbl and PRIx64.  Apply Merijn's ccversion patches.
9368              
9369              Subject: Re: [PATCH lib/overload.pm] Sanaty checking of arguments to overload::constant
9370              
9371              Feature ordering tweak.
9372              
9373              Regen perltoc.
9374              
9375              Subject: [PATCH] Fix vec() / utf8   (was Re: bitvec ops still broken with utf8 -- or not?)
9376              
9377              Subject: Re: [PATCH perl@6962] 2 more vms.c fix-ups and status
9378              
9379              Subject: http:// in L<>
9380              
9381              Detypo.
9382              
9383              change#6791 accidentally clobbered change#6710, put it back
9384              
9385              Only the first line, thank you very much.
9386              
9387              Subject: [PATCH: 6996] minimal removal of 8 bit chrs from perlebcdic.pod
9388              plus rework the http: spots as suggested by Tom Christiansen,
9389              plus regen perltoc.
9390              
9391              Undo part of change 6489 which looks like a bulk edit which
9392              changed _all_ gv_efullname3() calls to gv_efullname4() calls.
9393              The supressing of main:: on return from select() is undesirable.
9394              
9395              Apparently avoiding the swapping is too costly.
9396              
9397              Various Configure nits by Philip Newton,
9398              plus the ebcdic one by me.
9399              
9400              Make certain cc is set before trying to run it.
9401              
9402              If overloaded %{} etc. return the object do not loop.
9403              Thus  sub deref { $_[0] } functions if object is wanted type.
9404              
9405              Update perlhist.
9406              
9407              More %{} and other deref special casing - do not pass to 'nomethod'.
9408      Branch: maint-5.6/perl
9409           !> (integrate 59 files)
9410 ____________________________________________________________________________
9411 [  8151] By: gsar                                  on 2000/12/17  19:14:38
9412         Log: integrate changes#6903,6905..6907,6909,6911..6913,6915,6917,6918,
9413              6920..6926,6928..6930,6934..6937,6939,6940,6942..6944 from mainline
9414              
9415              Subject: [PATCH perl@6889] Chuck Lane's OpenVMS piping improvements
9416              
9417              Make the epsilon to be relative, not absolute.
9418              
9419              Put back the flags dump as reasoned in
9420              Subject: Re: [PATCH] Glob dumping
9421              
9422              Introduce ccname to keep track of what compiler kind of we have.
9423              
9424              Subject: Re: [ID 20000829.020] perl -e 'package; print __PACKAGE__' core dumps 
9425              
9426              Put back the slice accidentally removed by #6907.
9427              
9428              Reset archname and archname64 always, forcing them be
9429              recomputed at each Configure run, make Configure and
9430              the hints files agree on the naming of largefiles variables.
9431              
9432              Don't say "Perl 5.0 source kit".
9433              
9434              Subject: [PATCH] fix misc cast warnings
9435              
9436              Subject: typos in pods
9437              
9438              NVs not necessarily doubles, as pointed out by Yitzchak.
9439              
9440              Subject: [PATCH 6889] add a few ldbl formats to configure.com
9441              
9442              Subject: [ID 20000830.036] [DOC] chom?p %hash not documented
9443              
9444              Better options for rsync.
9445              
9446              Subject: [PATCH perl@6889] fix Storable on VMS by fixing my_fwrite()
9447              
9448              Subject: Re: not OK, 6919 on Alpha VMS V 7.1 w/ DECC 6.0-001
9449              
9450              Subject: [PATCH] Re: UNTIE method 
9451              
9452              A better fix for the Socket building problem from Craig Berry.
9453              
9454              Retract the dummy test, skip the security tests (instead of failing),
9455              explain what the warnings mean.
9456              
9457              Heap decorruption.
9458              Subject: [PATCH] Fix for miniperl coredump on Solaris with -Duselongdouble
9459              
9460              Update to Unicode 3.0.1.
9461              
9462              Missed one Unicode file.
9463              
9464              Subject: Re: typos in pods
9465              
9466              The #6929 was too skimpy.
9467              
9468              sscanf() may be the only way to read long doubles from strings.
9469              
9470              Reveal Borland's isnan.
9471              Subject: build with BC++ tweak
9472              
9473              Issue useful diagnostic on unknown pod commands.
9474              Subject: [PATCH lib/Pod/Man.pm] Re: [ID 20000830.048]
9475              
9476              Subject: [PATCH] Re: [ID 20000830.048] Not OK: perl v5.7.0 +DEVEL6938 on i686-linux 2.2.13
9477              
9478              Clarify the third case of ftmp-security warnings.
9479              
9480              Make -Dusemorebits find long doubles in Solaris.
9481              
9482              Wrap the test in eval.
9483      Branch: maint-5.6/perl
9484           +> lib/unicode/BidiMirr.txt lib/unicode/CaseFold.txt
9485           +> lib/unicode/PropList.txt lib/unicode/README.perl
9486           +> lib/unicode/UCD301.html lib/unicode/UCDFF301.html
9487           +> lib/unicode/Unicode.301 vms/vmspipe.com
9488            - lib/unicode/Props.txt lib/unicode/UCD300.html
9489            - lib/unicode/Unicode.300 lib/unicode/Unicode3.html
9490           !> (integrate 305 files)
9491 ____________________________________________________________________________
9492 [  8150] By: jhi                                   on 2000/12/17  18:47:57
9493         Log: Uncheckedin generated files.
9494      Branch: perl
9495            ! global.sym perlapi.c pod/perlapi.pod
9496 ____________________________________________________________________________
9497 [  8149] By: jhi                                   on 2000/12/17  18:41:22
9498         Log: Update Changes.
9499      Branch: perl
9500            ! Changes patchlevel.h
9501 ____________________________________________________________________________
9502 [  8148] By: jhi                                   on 2000/12/17  18:39:16
9503         Log: Subject: [PATCH] Fcntl constants speedup
9504              From: Nicholas Clark <nick@ccl4.org>
9505              Date: Sun, 17 Dec 2000 16:29:24 +0000
9506              Message-ID: <20001217162924.E97668@plum.flirble.org>
9507              
9508              Use IVs for the Fcntl constants instead of NVs.
9509      Branch: perl
9510            ! ext/Fcntl/Fcntl.pm ext/Fcntl/Fcntl.xs t/op/goto_xs.t
9511 ____________________________________________________________________________
9512 [  8147] By: jhi                                   on 2000/12/17  18:33:41
9513         Log: Add test for #8145 (binmode() warning), add warning for
9514              ioctl() and sockpair(), document them. (fileno() cannot
9515              be tripwired with the same kind of warning because
9516              'defined fileno($foo)' seems to be an idiom.)
9517      Branch: perl
9518            ! pod/perldiag.pod pp_sys.c t/pragma/warn/pp_sys
9519 ____________________________________________________________________________
9520 [  8146] By: gsar                                  on 2000/12/17  18:09:08
9521         Log: update Changes
9522      Branch: maint-5.6/perl
9523            ! Changes
9524 ____________________________________________________________________________
9525 [  8145] By: jhi                                   on 2000/12/17  17:39:35
9526         Log: Subject: [PATCH] Re: The long awaited feature ...
9527              From: Simon Cozens <simon@cozens.net>
9528              Date: Sun, 17 Dec 2000 12:31:56 +0000
9529              Message-ID: <20001217123156.A3891@deep-dark-truthful-mirror.perlhacker.org>
9530              
9531              Add a warning to binmode() about using bad filehandles
9532              (can happen e.g. if someone forgets the filehandle argument)
9533      Branch: perl
9534            ! pp_sys.c
9535 ____________________________________________________________________________
9536 [  8144] By: jhi                                   on 2000/12/17  17:33:48
9537         Log: Subject: [patch perl@8133] Typo in my Net::Ping doc patch :(
9538              From: Jonathan Stowe <gellyfish@gellyfish.com>
9539              Date: Sun, 17 Dec 2000 17:08:10 +0000 (GMT)
9540              Message-ID: <Pine.LNX.4.10.10012171700010.3834-100000@orpheus.gellyfish.com>
9541      Branch: perl
9542            ! lib/Net/Ping.pm
9543 ____________________________________________________________________________
9544 [  8143] By: jhi                                   on 2000/12/17  05:31:37
9545         Log: Polymorphic regexps.
9546              
9547              Fixes at least the bugs 20001028.003 (both of them...) and
9548              20001108.001.  The bugs 20001114.001 and 20001205.014 seem
9549              also to be fixed by now, probably already before this patch.
9550      Branch: perl
9551            ! embed.h embed.pl mg.c objXSUB.h pp_ctl.c pp_hot.c proto.h
9552            ! regcomp.c regcomp.h regcomp.sym regexec.c regnodes.h sv.c
9553            ! t/op/utf8decode.t t/pragma/utf8.t
9554 ____________________________________________________________________________
9555 [  8142] By: jhi                                   on 2000/12/16  17:16:05
9556         Log: Subject: [patch perl@8102] dos/djgpp update
9557              From: Laszlo Molnar <ml1050@freemail.hu>
9558              Date: Sat, 16 Dec 2000 01:40:52 +0100
9559              Message-ID: <20001216014052.A335@freemail.hu>
9560      Branch: perl
9561            ! djgpp/config.over t/base/commonsense.t
9562 ____________________________________________________________________________
9563 [  8141] By: jhi                                   on 2000/12/16  17:09:27
9564         Log: Few uncheckedin files.
9565      Branch: perl
9566            ! global.sym perlapi.c pod/perlapi.pod pod/perlintern.pod
9567 ____________________________________________________________________________
9568 [  8140] By: nick                                  on 2000/12/15  22:14:31
9569         Log: Integrate mainline
9570      Branch: perlio
9571           !> (integrate 53 files)
9572 ____________________________________________________________________________
9573 [  8139] By: jhi                                   on 2000/12/15  19:49:49
9574         Log: One more IVUV tweak from Nicholas Clark.
9575      Branch: perl
9576            ! sv.c
9577 ____________________________________________________________________________
9578 [  8138] By: jhi                                   on 2000/12/15  19:17:06
9579         Log: Return of the IVUV-preservation, now seems to be happy even
9580              in Digital UNIX (the broken strtoul brokenness detection
9581              seems to have been the fly in the ointment).
9582      Branch: perl
9583            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
9584            ! config_h.SH configure.com embed.h embed.pl epoc/config.sh
9585            ! objXSUB.h op.c perl.h pp.c pp_hot.c proto.h sv.c sv.h
9586            ! t/lib/peek.t t/op/cmp.t t/op/numconvert.t uconfig.h
9587            ! vos/config.alpha.def vos/config.alpha.h vos/config.ga.def
9588            ! vos/config.ga.h win32/config.bc win32/config.gc
9589            ! win32/config.vc
9590 ____________________________________________________________________________
9591 [  8137] By: jhi                                   on 2000/12/15  18:12:14
9592         Log: Metaconfig unit change for #8136.
9593      Branch: metaconfig
9594            ! U/modified/d_strtoul.U
9595      Branch: metaconfig/U/perl
9596            ! d_strtoull.U d_strtouq.U
9597 ____________________________________________________________________________
9598 [  8136] By: jhi                                   on 2000/12/15  18:11:35
9599         Log: I don't think it's sensible or portable to test the strtou*
9600              on /^-/ strings.
9601      Branch: perl
9602            ! Configure
9603 ____________________________________________________________________________
9604 [  8135] By: jhi                                   on 2000/12/15  17:18:49
9605         Log: Metaconfig unit change for #8134.
9606      Branch: metaconfig
9607            ! U/modified/d_strtoul.U
9608 ____________________________________________________________________________
9609 [  8134] By: jhi                                   on 2000/12/15  17:14:13
9610         Log: If longsize is 8 we don't need a LL suffix for integer constants.
9611      Branch: perl
9612            ! Configure config_h.SH
9613 ____________________________________________________________________________
9614 [  8133] By: jhi                                   on 2000/12/15  16:00:23
9615         Log: Update Changes.
9616      Branch: perl
9617            ! Changes patchlevel.h
9618 ____________________________________________________________________________
9619 [  8132] By: jhi                                   on 2000/12/15  15:44:16
9620         Log: Some compilers get huffy if you do not cast a const pointer
9621              to a non-const when assigning.
9622      Branch: perl
9623            ! gv.c
9624 ____________________________________________________________________________
9625 [  8131] By: jhi                                   on 2000/12/15  15:38:30
9626         Log: Subject: [PATCH 5.7.0] speeding up object creation/destruction 4x times
9627              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
9628              Date: Fri, 15 Dec 2000 05:26:57 -0500
9629              Message-ID: <20001215052657.A8319@math.mps.ohio-state.edu>
9630      Branch: perl
9631            ! embed.h embed.pl gv.c objXSUB.h perl.h proto.h sv.c
9632            ! t/pragma/overload.t
9633 ____________________________________________________________________________
9634 [  8130] By: jhi                                   on 2000/12/15  15:36:08
9635         Log: Subject: [PATCH 5.7.0] cosmetic change to overloading
9636              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
9637              Date: Thu, 14 Dec 2000 22:02:43 -0500
9638              Message-ID: <20001214220243.A18437@monk.mps.ohio-state.edu>
9639      Branch: perl
9640            ! gv.c perl.h
9641 ____________________________________________________________________________
9642 [  8129] By: jhi                                   on 2000/12/15  15:34:16
9643         Log: Subject: PATCH: h2xs nit
9644              From: Tim Jenness <t.jenness@jach.hawaii.edu>
9645              Date: Thu, 14 Dec 2000 18:25:46 -1000 (HST)
9646              Message-ID: <Pine.LNX.4.30.0012141820340.2533-100000@lapaki.jach.hawaii.edu>
9647              
9648              Add a template README.
9649      Branch: perl
9650            ! utils/h2xs.PL
9651 ____________________________________________________________________________
9652 [  8128] By: jhi                                   on 2000/12/15  15:32:22
9653         Log: Still buggy findgteprime, fix from Eric Joanis <joanis@cs.toronto.edu>.
9654      Branch: perl
9655            ! lib/Tie/SubstrHash.pm t/lib/tie-substrhash.t
9656 ____________________________________________________________________________
9657 [  8127] By: jhi                                   on 2000/12/15  15:19:34
9658         Log: Subject:  [PATCH Opcode.XS, Perl 5.6+] stuff for caller and _ in Safe::
9659              From: lane@DUPHY4.Physics.Drexel.Edu (Charles Lane)
9660              Date:     Thu, 14 Dec 2000 20:04:42 EST
9661              Message-Id: <001214200310.49929@DUPHY4.Physics.Drexel.Edu>
9662      Branch: perl
9663            ! ext/Opcode/Opcode.xs
9664 ____________________________________________________________________________
9665 [  8126] By: jhi                                   on 2000/12/15  15:17:49
9666         Log: Subject: [PATCH: perl@8102] s/use vars qw\(/our(/ for OS/390 extension builds
9667              From: Peter Prymmer <pvhp@forte.com>
9668              Date: Thu, 14 Dec 2000 15:50:20 -0800 (PST)
9669              Message-ID: <Pine.OSF.4.10.10012141548200.57557-100000@aspara.forte.com>
9670      Branch: perl
9671            ! ext/Errno/Errno_pm.PL lib/ExtUtils/MM_Unix.pm
9672            ! lib/ExtUtils/Manifest.pm lib/File/Spec.pm
9673            ! lib/File/Spec/Functions.pm lib/File/Spec/Unix.pm
9674 ____________________________________________________________________________
9675 [  8125] By: jhi                                   on 2000/12/15  15:11:05
9676         Log: This seems to be a stage sane and stable enough to checkin.
9677              (it basically is 8102..8118+8122 but no 8120, 8121, 8123, 8124)
9678      Branch: perl
9679            ! MANIFEST embed.h embed.pl objXSUB.h op.c perl.h perlapi.c
9680            ! pod/perlapi.pod pp.c pp_hot.c proto.h sv.c sv.h t/lib/peek.t
9681            ! t/op/cmp.t t/op/numconvert.t
9682 ____________________________________________________________________________
9683 [  8124] By: jhi                                   on 2000/12/15  04:20:26
9684         Log: Something is really wonky.
9685      Branch: perl
9686            ! sv.c
9687 ____________________________________________________________________________
9688 [  8123] By: jhi                                   on 2000/12/15  04:00:50
9689         Log: Fixes for the IV UV patches to compile in Digital UNIX.
9690      Branch: perl
9691            ! sv.c
9692 ____________________________________________________________________________
9693 [  8122] By: jhi                                   on 2000/12/15  02:53:40
9694         Log: Subject: Re: [ID 20001214.011] Unreachable value in a search list logical name
9695              From: "Craig A. Berry" <craigberry@mac.com>
9696              Date: Thu, 14 Dec 2000 19:10:49 -0600
9697              Message-Id: <p04330100b65efbe32f30@[172.16.52.1]>
9698      Branch: perl
9699            ! vms/vms.c
9700 ____________________________________________________________________________
9701 [  8121] By: jhi                                   on 2000/12/15  02:50:00
9702         Log: Metaconfig changes for #8120.
9703      Branch: metaconfig
9704            + U/modified/d_strtoul.U
9705      Branch: metaconfig/U/perl
9706            ! d_strtoull.U d_strtouq.U
9707 ____________________________________________________________________________
9708 [  8120] By: jhi                                   on 2000/12/15  02:49:42
9709         Log: From: Nicholas Clark <nick@ccl4.org> 
9710              Subject: [PATCH] strtoq, strtou(q|ll|l) testing (was [PATCH] faster and 64 bit  preserving arithmetic)
9711              Date: Thu, 14 Dec 2000 18:38:57 +0000
9712              Message-ID: <20001214183857.B97909@plum.flirble.org>
9713      Branch: perl
9714            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
9715            ! config_h.SH configure.com epoc/config.sh perl.h sv.c uconfig.h
9716            ! uconfig.sh vos/config.alpha.def vos/config.alpha.h
9717            ! vos/config.ga.def vos/config.ga.h win32/config.bc
9718            ! win32/config.gc win32/config.vc
9719 ____________________________________________________________________________
9720 [  8119] By: jhi                                   on 2000/12/14  23:40:58
9721         Log: Subject: [PATCH] faster and 64 bit preserving arithmetic
9722              From: Nicholas Clark <nick@ccl4.org>
9723              Date: Wed, 13 Dec 2000 20:08:50 +0000
9724              Message-ID: <20001213200849.B71166@plum.flirble.org>
9725      Branch: perl
9726            ! embed.h embed.pl objXSUB.h op.c perl.h pp.c pp_hot.c proto.h
9727            ! sv.c sv.h t/lib/peek.t t/op/cmp.t t/op/numconvert.t
9728 ____________________________________________________________________________
9729 [  8118] By: jhi                                   on 2000/12/14  22:46:26
9730         Log: Integrate perlio.
9731      Branch: perl
9732           !> MANIFEST ext/Encode/compile makedef.pl
9733 ____________________________________________________________________________
9734 [  8117] By: nick                                  on 2000/12/14  22:38:53
9735         Log: Win32 tweaks to get Encode to build
9736              - temp hack to makedef.pl till PerlIO is properly "exported".
9737              - MSVC dislikes  
9738              static encpage_t foo[];
9739              so make 'em extern for now.
9740      Branch: perlio
9741            ! ext/Encode/compile makedef.pl
9742 ____________________________________________________________________________
9743 [  8116] By: nick                                  on 2000/12/14  22:00:53
9744         Log: Document the new files
9745      Branch: perlio
9746            ! MANIFEST
9747 ____________________________________________________________________________
9748 [  8115] By: jhi                                   on 2000/12/14  21:58:01
9749         Log: MANIFEST new files of #8114.
9750      Branch: perl
9751            ! MANIFEST
9752 ____________________________________________________________________________
9753 [  8114] By: jhi                                   on 2000/12/14  21:50:49
9754         Log: Integrate perlio.
9755      Branch: perl
9756           +> ext/Encode/compile ext/Encode/encengine.c ext/Encode/encode.h
9757           !> ext/Encode/Encode.pm ext/Encode/Encode.xs
9758           !> ext/Encode/Encode/ascii.enc ext/Encode/Encode/cp1047.enc
9759           !> ext/Encode/Encode/cp37.enc ext/Encode/Encode/posix-bc.enc
9760           !> ext/Encode/Makefile.PL
9761 ____________________________________________________________________________
9762 [  8113] By: jhi                                   on 2000/12/14  21:48:49
9763         Log: The documentation part of the
9764              
9765              Subject: [ID 20001214.002] Net::Ping patch
9766              From: Jonathan Stowe <gellyfish@gellyfish.com>
9767              Date: Thu, 14 Dec 2000 08:28:14 +0000 (GMT)
9768              Message-Id: <Pine.LNX.4.10.10012140805480.19767-200000@orpheus.gellyfish.com>
9769              since the #7529 had already addressed the same problem.
9770      Branch: perl
9771            ! lib/Net/Ping.pm
9772 ____________________________________________________________________________
9773 [  8112] By: jhi                                   on 2000/12/14  21:42:57
9774         Log: Subject: [PATCH] Re: [ID 20001013.006] XS subs are not define()ed
9775              From: Dominic Dunlop <domo@computer.org>
9776              Date: Tue, 12 Dec 2000 10:47:10 +0100
9777              Message-Id: <p04320402b65ba33a92b2@[192.168.1.4]>
9778              
9779              Document how elusive subroutines can be.
9780      Branch: perl
9781            ! pod/perlfunc.pod
9782 ____________________________________________________________________________
9783 [  8111] By: jhi                                   on 2000/12/14  21:38:05
9784         Log: Subject: [ID 20001214.003] [PATCH bleadperl] POSIX::tmpnam() is dangerous
9785              From: Dominic Dunlop <domo@computer.org>
9786              Date: Thu, 14 Dec 2000 10:13:51 +0100
9787              Message-Id: <p04320407b65e3f4853aa@[192.168.1.4]>
9788      Branch: perl
9789            ! ext/POSIX/POSIX.pod
9790 ____________________________________________________________________________
9791 [  8110] By: jhi                                   on 2000/12/14  21:36:32
9792         Log: Subject: [patch] perlfaq7
9793              From: "Gerrit P. Haase" <gerrit.haase@t-online.de>
9794              Date: Thu, 14 Dec 2000 15:31:07 +0100
9795              Message-ID: <3A38E7BB.13178.11C40A8@localhost>
9796      Branch: perl
9797            ! pod/perlfaq7.pod
9798 ____________________________________________________________________________
9799 [  8109] By: jhi                                   on 2000/12/14  21:29:20
9800         Log: Subject: [8104] Encode
9801              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
9802              Date: Thu, 14 Dec 2000 14:49:34 +0100
9803              Message-Id: <20001214142101.B338.H.M.BRAND@hccnet.nl>
9804              
9805              Type casting for nervous compilers.
9806      Branch: perl
9807            ! ext/Encode/Encode.xs
9808 ____________________________________________________________________________
9809 [  8108] By: jhi                                   on 2000/12/14  21:26:17
9810         Log: Subject: [8104] DB_File
9811              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
9812              Date: Thu, 14 Dec 2000 14:49:35 +0100
9813              Message-Id: <20001214144439.B33A.H.M.BRAND@hccnet.nl>
9814              
9815              Type definition incorrect for DB 2.7.7.  Not known when it
9816              changed, so only changed it for a known revision.
9817      Branch: perl
9818            ! ext/DB_File/DB_File.xs
9819 ____________________________________________________________________________
9820 [  8107] By: jhi                                   on 2000/12/14  21:23:41
9821         Log: Subject: [PATCH: perl@8102] Re: Encode/cp1047.enc etc.
9822              From: Peter Prymmer <pvhp@forte.com>
9823              Date: Thu, 14 Dec 2000 11:11:50 -0800 (PST)
9824              Message-ID: <Pine.OSF.4.10.10012141057330.57557-100000@aspara.forte.com>
9825              
9826              Use '?' (0x6F in EBCDIC) for the illegal codepoint.
9827      Branch: perl
9828            ! ext/Encode/Encode/cp1047.enc ext/Encode/Encode/cp37.enc
9829            ! ext/Encode/Encode/posix-bc.enc
9830 ____________________________________________________________________________
9831 [  8106] By: nick                                  on 2000/12/14  20:36:13
9832         Log: "Cold" build correction to Encode's Makefile.PL
9833      Branch: perlio
9834            ! ext/Encode/Makefile.PL
9835 ____________________________________________________________________________
9836 [  8105] By: nick                                  on 2000/12/14  20:09:37
9837         Log: "Compiled" encodings.
9838              Correct replacement character in EBCDIC .enc files
9839              Add 0x7F to ASCII repertoire.
9840      Branch: perlio
9841            ! ext/Encode/Encode.pm ext/Encode/Encode.xs
9842            ! ext/Encode/Encode/ascii.enc ext/Encode/Encode/cp1047.enc
9843            ! ext/Encode/Encode/cp37.enc ext/Encode/Encode/posix-bc.enc
9844            ! ext/Encode/Makefile.PL ext/Encode/compile
9845            ! ext/Encode/encengine.c ext/Encode/encode.h
9846 ____________________________________________________________________________
9847 [  8104] By: nick                                  on 2000/12/14  00:38:20
9848         Log: Integrate mainline
9849      Branch: perlio
9850           !> Changes Configure doio.c embed.h embed.pl ext/DB_File/Changes
9851           !> ext/DB_File/DB_File.pm ext/DB_File/DB_File.xs
9852           !> ext/DB_File/dbinfo ext/DB_File/typemap ext/DB_File/version.c
9853           !> hints/hpux.sh lib/Cwd.pm objXSUB.h patchlevel.h perlapi.c
9854           !> pod/perlapi.pod pp_hot.c proto.h t/lib/db-btree.t
9855           !> t/lib/db-hash.t t/lib/db-recno.t
9856 ____________________________________________________________________________
9857 [  8103] By: nick                                  on 2000/12/13  23:16:13
9858         Log: Beginings of compiled encodings - checked in as a snapshot of thoughts
9859              so far and so it does not get lost.
9860      Branch: perlio
9861            + ext/Encode/compile ext/Encode/encengine.c ext/Encode/encode.h
9862 ____________________________________________________________________________
9863 [  8102] By: jhi                                   on 2000/12/13  17:14:22
9864         Log: Update Changes.
9865      Branch: perl
9866            ! Changes patchlevel.h
9867 ____________________________________________________________________________
9868 [  8101] By: jhi                                   on 2000/12/13  16:53:41
9869         Log: Move the proto of start_glob() to a better place; regen api files.
9870      Branch: perl
9871            ! embed.h embed.pl objXSUB.h perlapi.c pod/perlapi.pod proto.h
9872 ____________________________________________________________________________
9873 [  8100] By: jhi                                   on 2000/12/13  16:47:11
9874         Log: Metaconfig change for #8099.
9875      Branch: metaconfig
9876            ! U/modified/Head.U
9877 ____________________________________________________________________________
9878 [  8099] By: jhi                                   on 2000/12/13  16:46:48
9879         Log: Subject: Re: [ID 20000328.039] [PATCH] Eliminate Configure use of /tmp
9880              From: Andy Dougherty <doughera@lafayette.edu>
9881              Date: Wed, 13 Dec 2000 10:36:09 -0500 (EST)
9882              Message-ID: <Pine.SOL.4.10.10012131031230.2017-100000@maxwell.phys.lafayette.edu>
9883      Branch: perl
9884            ! Configure
9885 ____________________________________________________________________________
9886 [  8098] By: jhi                                   on 2000/12/13  16:39:02
9887         Log: Subject: [20000615.005] [PATCH] Cwd::fastgetcwd broken (or mis-named?) on Unix  
9888              From: rspier@pobox.com (Robert Spier)
9889              Date: Tue, 12 Dec 2000 21:12:39 -0500
9890              Message-ID: <14902.56087.678086.725773@rls.cx>
9891              
9892              fastgetcwd is defined using a glob alias on a $^O dependent basis -
9893              and there was no default assignment or perl subroutine.
9894      Branch: perl
9895            ! lib/Cwd.pm
9896 ____________________________________________________________________________
9897 [  8097] By: jhi                                   on 2000/12/13  16:16:01
9898         Log: Subject: [PATCH] move startglob out of pp_hot.c
9899              From: Nicholas Clark <nick@ccl4.org>
9900              Date: Mon, 11 Dec 2000 23:16:39 +0000
9901              Message-ID: <20001211231638.A55550@plum.flirble.org>
9902      Branch: perl
9903            ! doio.c embed.h embed.pl objXSUB.h pp_hot.c proto.h
9904 ____________________________________________________________________________
9905 [  8096] By: jhi                                   on 2000/12/13  15:26:23
9906         Log: Subject: [8095] HP-UX 11.00 / cc / 64bitint & 64bitall / perlio 
9907              From: "H.Merijn Brand" <h.m.brand@hccnet.nl> 
9908              Date: Wed, 13 Dec 2000 14:01:37 +0100
9909              Message-Id: <20001213135318.621A.H.M.BRAND@hccnet.nl>
9910              
9911              perl/64/HP-UX wants libdb-3.0 to be shared ELF 64 bit which
9912              in turn requires libpthread in libswanted.
9913      Branch: perl
9914            ! hints/hpux.sh
9915 ____________________________________________________________________________
9916 [  8095] By: jhi                                   on 2000/12/12  19:51:05
9917         Log: The integration wars continue.
9918      Branch: perl
9919           !> sv.c
9920 ____________________________________________________________________________
9921 [  8094] By: jhi                                   on 2000/12/12  19:48:26
9922         Log: Subject: [PATCH perl@8070] DB_File-1.74  
9923              From: "Paul Marquess" <paul_marquess@yahoo.co.uk> 
9924              Date: Mon, 11 Dec 2000 23:07:17 -0000
9925              Message-ID: <000001c063c7$1b9d28a0$a20a140a@bfs.phone.com> 
9926      Branch: perl
9927            ! ext/DB_File/Changes ext/DB_File/DB_File.pm
9928            ! ext/DB_File/DB_File.xs ext/DB_File/dbinfo ext/DB_File/typemap
9929            ! ext/DB_File/version.c t/lib/db-btree.t t/lib/db-hash.t
9930            ! t/lib/db-recno.t
9931 ____________________________________________________________________________
9932 [  8093] By: nick                                  on 2000/12/12  19:42:13
9933         Log: Integrate/merge mainline with further efficiency tweak to sv.c's utf8 stuff.
9934      Branch: perlio
9935            ! sv.c
9936           !> lib/File/DosGlob.pm
9937 ____________________________________________________________________________
9938 [  8092] By: jhi                                   on 2000/12/12  19:28:11
9939         Log: Integrate perlio.
9940      Branch: perl
9941           !> sv.c
9942 ____________________________________________________________________________
9943 [  8091] By: nick                                  on 2000/12/12  18:49:45
9944         Log: Fix for Tk, and upgrading shared SVs.
9945      Branch: perlio
9946            ! sv.c
9947 ____________________________________________________________________________
9948 [  8090] By: jhi                                   on 2000/12/12  16:48:59
9949         Log: Subject: [PATCH] Re: Breadperl & Tk
9950              From: Nick Ing-Simmons <nik@tiuk.ti.com>
9951              Date: Tue, 12 Dec 2000 14:48:27 GMT
9952              Message-Id: <200012121448.OAA11516@mikado.tiuk.ti.com> 
9953      Branch: perl
9954            ! sv.c
9955 ____________________________________________________________________________
9956 [  8089] By: jhi                                   on 2000/12/12  03:37:19
9957         Log: Subject: DosGlob.pm diff for bash style brace expansion.
9958              From: "Mestnik, Mike" <MMestnik@rustconsulting.com>
9959              Date: Fri, 8 Dec 2000 10:45:30 -0600
9960              Message-ID: <B50C47897E98D3118130009027D3971920F278@EXCHANGE_M1>
9961      Branch: perl
9962            ! lib/File/DosGlob.pm
9963 ____________________________________________________________________________
9964 [  8088] By: nick                                  on 2000/12/11  23:59:59
9965         Log: Integrate mainline
9966      Branch: perlio
9967           !> ext/B/B.pm ext/B/B/Deparse.pm installperl lib/CGI.pm
9968           !> lib/ExtUtils/Liblist.pm lib/ExtUtils/MM_Unix.pm
9969           !> lib/ExtUtils/MakeMaker.pm lib/File/DosGlob.pm pod/perldiag.pod
9970           !> pod/perlop.pod pp.c pp_hot.c scope.c t/io/utf8.t t/lib/b.t
9971           !> t/op/local.t t/pragma/warn/toke toke.c
9972 ____________________________________________________________________________
9973 [  8087] By: jhi                                   on 2000/12/11  23:20:23
9974         Log: Integrate perlio.
9975      Branch: perl
9976           !> ext/Encode/Encode.xs perlio.c perlio.h perliol.h
9977 ____________________________________________________________________________
9978 [  8086] By: jhi                                   on 2000/12/11  22:50:59
9979         Log: Tune further the OS detection of CGI.
9980      Branch: perl
9981            ! lib/CGI.pm
9982 ____________________________________________________________________________
9983 [  8085] By: nick                                  on 2000/12/11  22:50:46
9984         Log: Finish 1st pass of "encoding" layer e.g. :
9985              open($fh,"<encoding(iso8859-7)",$greek) || die;
9986      Branch: perlio
9987            ! ext/Encode/Encode.xs perlio.c perliol.h
9988 ____________________________________________________________________________
9989 [  8084] By: jhi                                   on 2000/12/11  22:32:06
9990         Log: Revert the -f ambiguousity patch, seems to cause
9991              too much hassle (the interpret -Q as a function
9992              where Q is not a known filetest part is left in).
9993      Branch: perl
9994            ! lib/ExtUtils/Liblist.pm pod/perldiag.pod t/pragma/warn/toke
9995            ! toke.c
9996 ____________________________________________________________________________
9997 [  8083] By: jhi                                   on 2000/12/11  22:27:23
9998         Log: (accidentally empty check-in)
9999      Branch: perl
10000            ! lib/File/DosGlob.pm
10001 ____________________________________________________________________________
10002 [  8082] By: nick                                  on 2000/12/11  19:09:51
10003         Log: Restore mmap function (broken by tweaks to shared buffer
10004              layer for encode(xxxx)).
10005      Branch: perlio
10006            ! perlio.c
10007 ____________________________________________________________________________
10008 [  8081] By: jhi                                   on 2000/12/11  18:29:13
10009         Log: Subject: Re: The long awaited feature ...
10010              From: Simon Cozens <simon@cozens.net>
10011              Date: Mon, 11 Dec 2000 15:54:24 +0000
10012              Message-ID: <20001211155424.A17680@deep-dark-truthful-mirror.perlhacker.org>
10013              
10014              More io/utf8 tests.
10015      Branch: perl
10016            ! t/io/utf8.t
10017 ____________________________________________________________________________
10018 [  8080] By: jhi                                   on 2000/12/11  18:19:36
10019         Log: Subject: PATCH MakeMaker manpage clarification
10020              From: andreas.koenig@anima.de (Andreas J. Koenig)
10021              Date: 10 Dec 2000 20:46:13 +0100
10022              Message-ID: <m3aea4kqka.fsf@ak-71.mind.de>
10023      Branch: perl
10024            ! lib/ExtUtils/MakeMaker.pm
10025 ____________________________________________________________________________
10026 [  8079] By: jhi                                   on 2000/12/11  15:35:07
10027         Log: Subject: Re: [ID 20001204.007] -MO=Deparse -we '{234;}' failing
10028              From: Simon Cozens <simon@cozens.net>
10029              Date: Sun, 10 Dec 2000 19:06:19 +0000
10030              Message-ID: <20001210190619.B21402@deep-dark-truthful-mirror.perlhacker.org>
10031      Branch: perl
10032            ! ext/B/B/Deparse.pm t/lib/b.t
10033 ____________________________________________________________________________
10034 [  8078] By: jhi                                   on 2000/12/11  15:09:11
10035         Log: Subject: [PATCH] docs on NaN
10036              From: Nicholas Clark <nick@ccl4.org>
10037              Date: Mon, 11 Dec 2000 01:48:38 +0000
10038              Message-ID: <20001211014838.B99205@plum.flirble.org>
10039      Branch: perl
10040            ! pod/perlop.pod
10041 ____________________________________________________________________________
10042 [  8077] By: jhi                                   on 2000/12/11  15:02:21
10043         Log: Subject: [PATCH] Re: [Fwd: BUG 20001205.022] Local on Hash elements
10044              From: Simon Cozens <simon@cozens.net>
10045              Date: Mon, 11 Dec 2000 01:21:45 +0000
10046              Message-ID: <20001211012144.A23467@deep-dark-truthful-mirror.perlhacker.org>
10047      Branch: perl
10048            ! pp.c pp_hot.c scope.c t/op/local.t
10049 ____________________________________________________________________________
10050 [  8076] By: nick                                  on 2000/12/10  20:43:32
10051         Log: Not merge worthy...
10052              Allow arg to layers e.g. open($fh,"<:encode(iso8859-15)",$name)
10053              syntax is modelled on attributes.
10054              Untested fix for io/utf8 on Win32 etc.
10055              Very clumsy start to the encode layer.
10056      Branch: perlio
10057            ! ext/Encode/Encode.xs perlio.c perlio.h perliol.h
10058 ____________________________________________________________________________
10059 [  8075] By: jhi                                   on 2000/12/10  18:39:33
10060         Log: Darwin is not Windows.
10061      Branch: perl
10062            ! lib/CGI.pm
10063 ____________________________________________________________________________
10064 [  8074] By: jhi                                   on 2000/12/10  18:31:27
10065         Log: Subject: Ambiguous -%c() resolved as a file test
10066              From: "Paul Marquess" <Paul.Marquess@openwave.com>
10067              Date: Sun, 10 Dec 2000 15:35:07 -0000
10068              Message-ID: <002601c062be$c5f749c0$a20a140a@bfs.phone.com>
10069      Branch: perl
10070            ! lib/ExtUtils/Liblist.pm lib/ExtUtils/MM_Unix.pm
10071 ____________________________________________________________________________
10072 [  8073] By: jhi                                   on 2000/12/10  18:16:29
10073         Log: Subject: PATCH installperl misinformed 
10074              From: andreas.koenig@anima.de (Andreas J. Koenig)
10075              Date: 10 Dec 2000 13:01:32 +0100 
10076              Message-ID: <m3r93glc2r.fsf@ak-71.mind.de>
10077      Branch: perl
10078            ! installperl
10079 ____________________________________________________________________________
10080 [  8072] By: jhi                                   on 2000/12/10  18:07:55
10081         Log: The walkoptree confusion rages; walkoptree() seems to be coming
10082              from B.xs, while walkoptree_slow() comes from B.pm.
10083      Branch: perl
10084            ! ext/B/B.pm
10085 ____________________________________________________________________________
10086 [  8071] By: nick                                  on 2000/12/10  11:45:47
10087         Log: Integrate mainline
10088      Branch: perlio
10089           +> t/base/commonsense.t
10090           !> (integrate 37 files)
10091 ____________________________________________________________________________
10092 [  8070] By: jhi                                   on 2000/12/10  04:46:21
10093         Log: Update Changes.
10094      Branch: perl
10095            ! Changes patchlevel.h
10096 ____________________________________________________________________________
10097 [  8069] By: jhi                                   on 2000/12/10  04:39:19
10098         Log: Subject: Re: PATCH: Let Test::Harness bail out early (Was: Testing module dependencies)
10099              From: andreas.koenig@anima.de (Andreas J. Koenig)
10100              Date: 09 Dec 2000 17:14:25 +0100
10101              Message-ID: <m3wvd9o9lq.fsf@ak-71.mind.de>
10102      Branch: perl
10103            + t/base/commonsense.t
10104            ! MANIFEST lib/Test/Harness.pm t/TEST t/UTEST
10105 ____________________________________________________________________________
10106 [  8068] By: jhi                                   on 2000/12/10  04:17:36
10107         Log: Subject: [PATCH 5.7.0@8047] RE: [ID 20001013.009] DB_File issues warning when setting element to    undef
10108              From: "Paul Marquess" <paul_marquess@yahoo.co.uk>
10109              Date: Sat, 9 Dec 2000 16:47:22 -0000
10110              Message-ID: <002001c061ff$b3aba820$a20a140a@bfs.phone.com>
10111      Branch: perl
10112            ! ext/DB_File/typemap ext/GDBM_File/GDBM_File.pm
10113            ! ext/GDBM_File/typemap ext/NDBM_File/NDBM_File.pm
10114            ! ext/NDBM_File/typemap ext/ODBM_File/ODBM_File.pm
10115            ! ext/ODBM_File/typemap ext/SDBM_File/SDBM_File.pm
10116            ! ext/SDBM_File/typemap t/lib/db-btree.t t/lib/db-hash.t
10117            ! t/lib/db-recno.t t/lib/gdbm.t t/lib/ndbm.t t/lib/odbm.t
10118            ! t/lib/sdbm.t
10119 ____________________________________________________________________________
10120 [  8067] By: jhi                                   on 2000/12/10  03:52:02
10121         Log: Test case for #8066.
10122      Branch: perl
10123            ! t/op/misc.t
10124 ____________________________________________________________________________
10125 [  8066] By: jhi                                   on 2000/12/10  03:50:30
10126         Log: Subject: [PATCH] Re: [ID 20001202.002] [BUG all] 'die qr{pattern}' does not check termination
10127              From: Simon Cozens <simon@cozens.net>
10128              Date: Sun, 10 Dec 2000 00:55:37 +0000
10129              Message-ID: <20001210005537.B16221@deep-dark-truthful-mirror.perlhacker.org>
10130      Branch: perl
10131            ! pp_sys.c
10132 ____________________________________________________________________________
10133 [  8065] By: jhi                                   on 2000/12/10  03:44:52
10134         Log: Test case for #8064.
10135      Branch: perl
10136            ! t/comp/proto.t
10137 ____________________________________________________________________________
10138 [  8064] By: jhi                                   on 2000/12/10  03:42:32
10139         Log: Subject: Re: prototype of substr
10140              From: Simon Cozens <simon@cozens.net>
10141              Date: Sun, 10 Dec 2000 00:13:33 +0000
10142              Message-ID: <20001210001333.A16221@deep-dark-truthful-mirror.perlhacker.org>
10143              
10144              Make CORE::substr to be '$$;$$' instead of '$$;$;$'.
10145      Branch: perl
10146            ! pp.c
10147 ____________________________________________________________________________
10148 [  8063] By: jhi                                   on 2000/12/10  03:39:42
10149         Log: Subject: [PATCH] perlguts.pod
10150              From: Simon Cozens <simon@cozens.net>
10151              Date: Sun, 10 Dec 2000 00:06:47 +0000
10152              Message-ID: <20001210000647.A16203@deep-dark-truthful-mirror.perlhacker.org>
10153              
10154              Documentation of the different types of ops,
10155              plus the functions in dump.c
10156      Branch: perl
10157            ! pod/perlguts.pod
10158 ____________________________________________________________________________
10159 [  8062] By: jhi                                   on 2000/12/10  03:30:04
10160         Log: Subject: [ID 20001209.006] Not OK: perl v5.7.0 +DEVEL7978 on armv4l-linux-64int 2.2.17-rmk1 (UNINSTALLED)
10161              From: Nicholas Clark <nick@talking.bollo.cx>
10162              Date: Sat, 09 Dec 2000 18:57:25 +0000
10163              Message-Id: <E144pBV-0002Nv-00@Bagpuss.unfortu.net>
10164              
10165              Be more robust in weird hostname setups.
10166      Branch: perl
10167            ! t/lib/net-hostent.t
10168 ____________________________________________________________________________
10169 [  8061] By: jhi                                   on 2000/12/10  03:28:21
10170         Log: Pacify fussy compiler. 
10171      Branch: perl
10172            ! pp_sys.c
10173 ____________________________________________________________________________
10174 [  8060] By: jhi                                   on 2000/12/10  02:52:46
10175         Log: Integrate perlio.
10176      Branch: perl
10177           !> pp_sys.c t/io/utf8.t
10178 ____________________________________________________________________________
10179 [  8059] By: nick                                  on 2000/12/09  23:40:14
10180         Log: read/sysread/recv should now be utf8 aware.
10181              Basic test for utf8 read.
10182      Branch: perlio
10183            ! pp_sys.c t/io/utf8.t
10184 ____________________________________________________________________________
10185 [  8058] By: jhi                                   on 2000/12/09  21:56:02
10186         Log: Integrate perlio.
10187      Branch: perl
10188           +> t/io/utf8.t
10189           !> MANIFEST doio.c perlio.c pp_sys.c sv.c t/comp/require.t toke.c
10190 ____________________________________________________________________________
10191 [  8057] By: jhi                                   on 2000/12/09  21:53:35
10192         Log: Subject: Re: Additional patch for UTF8-keys (Re: perl@8016)
10193              From: Inaba Hiroto <inaba@st.rim.or.jp>
10194              Date: Sun, 10 Dec 2000 05:53:21 +0900
10195              Message-ID: <3A329BC0.15E8BFF9@st.rim.or.jp>
10196              
10197              Tests for #8056.
10198      Branch: perl
10199            ! t/op/each.t
10200 ____________________________________________________________________________
10201 [  8056] By: jhi                                   on 2000/12/09  21:51:16
10202         Log: Subject: Additional patch for UTF8-keys (Re: perl@8016)
10203              From: Inaba Hiroto <inaba@st.rim.or.jp>
10204              Date: Sat, 09 Dec 2000 18:02:00 +0900
10205              Message-ID: <3A31F508.34F4BB23@st.rim.or.jp>
10206              
10207              exists() didn't work for UTF-8 keys, and neither did shared hash keys.
10208      Branch: perl
10209            ! embed.h embed.pl hv.c objXSUB.h op.c proto.h sv.c
10210 ____________________________________________________________________________
10211 [  8055] By: nick                                  on 2000/12/09  20:11:48
10212         Log: Make write() (i.e. formats) utf8-aware by calling do_print() rather
10213              than raw PerlIO_write() - does not seem to break any tests.
10214      Branch: perlio
10215            ! pp_sys.c
10216 ____________________________________________________________________________
10217 [  8054] By: nick                                  on 2000/12/09  19:47:30
10218         Log: Make print, syswrite, send, readline, getc honour utf8-ness of PerlIO.
10219              (sysread, recv and write i.e. formats still to do...)
10220              Allow :utf8 or :bytes in PerlIO_apply_layers() so that
10221              open($fh,">:utf8","name")
10222              etc. work. - "applying" those just sets/clears the UTF8 bit of the top layer,
10223              so no extra overhead is involved.
10224              Tweak t/comp/require.t to add a 'use bytes' to permit its dubious writing of BOM
10225              to a non-utf8 stream.
10226              Add initial io/utf8.t
10227              Fix SvPVutf8() - sv_2pv() was not expecting to be called with something
10228              that was already SvPOK() - (we just fossiked with SvUTF8 bit). Fix that
10229              and also just use the SvPV macro in sv_2pvutf8() to avoid the issue/overhead.
10230      Branch: perlio
10231            + t/io/utf8.t
10232            ! MANIFEST doio.c perlio.c pp_sys.c sv.c t/comp/require.t
10233 ____________________________________________________________________________
10234 [  8053] By: nick                                  on 2000/12/09  19:26:37
10235         Log: Did not get that has_utf8/this_utf8 fix right last time, another spot
10236              was only testing this_utf8.
10237      Branch: perlio
10238            ! toke.c
10239 ____________________________________________________________________________
10240 [  8052] By: nick                                  on 2000/12/09  19:09:41
10241         Log: Typo/thinko in S_scan_const() - seeing high bit sets has_utf8 not this_utf8
10242              i.e. the output string has one, but don't mess with source assumption.
10243      Branch: perlio
10244            ! toke.c
10245 ____________________________________________________________________________
10246 [  8051] By: jhi                                   on 2000/12/09  16:55:17
10247         Log: Integrate perlio.
10248      Branch: perl
10249           !> MANIFEST embedvar.h intrpvar.h mg.c perl.c perlapi.h pp_hot.c
10250           !> sv.c thrdvar.h util.c
10251 ____________________________________________________________________________
10252 [  8050] By: jhi                                   on 2000/12/09  16:48:07
10253         Log: Nits noticed by Peter Prymmer.
10254      Branch: perl
10255            ! lib/ExtUtils/MM_VMS.pm
10256 ____________________________________________________________________________
10257 [  8049] By: nick                                  on 2000/12/09  13:49:40
10258         Log: UTF8 output prework.
10259              - Store $\ and $, as SVs so they can have SvUTF8 flag
10260              - use do_print() rather than raw PerlIO_write() to print them.
10261      Branch: perlio
10262            ! embedvar.h intrpvar.h mg.c perl.c perlapi.h pp_hot.c sv.c
10263            ! thrdvar.h util.c
10264 ____________________________________________________________________________
10265 [  8048] By: nick                                  on 2000/12/09  12:30:43
10266         Log: Integrate mainline.
10267      Branch: perlio
10268           +> ext/Encode/Encode/iso8859-16.enc ext/POSIX/hints/svr4.pl
10269           +> t/op/reverse.t
10270           !> Changes MANIFEST doop.c ext/POSIX/Makefile.PL hints/svr4.sh
10271           !> lib/ExtUtils/MM_OS2.pm lib/ExtUtils/MM_Unix.pm
10272           !> lib/ExtUtils/MM_VMS.pm lib/ExtUtils/Manifest.pm patchlevel.h
10273           !> pod/perlapi.pod pod/perlfunc.pod pod/perlintern.pod pp.h
10274           !> pp_hot.c t/README t/base/term.t t/lib/bigfltpm.t
10275           !> t/op/utf8decode.t t/pragma/warn/utf8 utf8.c utf8.h
10276 ____________________________________________________________________________
10277 [  8047] By: jhi                                   on 2000/12/09  00:23:27
10278         Log: Subject: Re: [pvhp@forte.com: [ID 20001208.004] Not OK: perl v5.7.0 +DEVEL8042 on VMS_AXP V7.1 (UNINSTALLED)]
10279              From: Michael G Schwern <schwern@pobox.com>
10280              Date: Fri, 8 Dec 2000 14:43:04 -0600
10281      Branch: perl
10282            ! lib/ExtUtils/MM_VMS.pm
10283 ____________________________________________________________________________
10284 [  8046] By: jhi                                   on 2000/12/08  23:10:27
10285         Log: A missed check-in.
10286      Branch: perl
10287            ! lib/ExtUtils/Manifest.pm
10288 ____________________________________________________________________________
10289 [  8045] By: jhi                                   on 2000/12/08  21:57:12
10290         Log: (null check-in)
10291      Branch: perl
10292            ! lib/ExtUtils/MM_Unix.pm pod/perlintern.pod
10293 ____________________________________________________________________________
10294 [  8044] By: jhi                                   on 2000/12/08  21:11:06
10295         Log: Add ISO 8859-16 encoding.  Not a standard yet but seems to be
10296              at the final draft stage.
10297      Branch: perl
10298            + ext/Encode/Encode/iso8859-16.enc
10299            ! MANIFEST
10300 ____________________________________________________________________________
10301 [  8043] By: jhi                                   on 2000/12/08  16:39:04
10302         Log: Update Changes.
10303      Branch: perl
10304            ! Changes patchlevel.h
10305 ____________________________________________________________________________
10306 [  8042] By: jhi                                   on 2000/12/08  16:33:39
10307         Log: Do not return the Unicode replacement character if UTF-8
10308              decoding goes awry, it should be up to the caller to decide.
10309      Branch: perl
10310            ! pod/perlapi.pod utf8.c
10311 ____________________________________________________________________________
10312 [  8041] By: jhi                                   on 2000/12/08  16:22:28
10313         Log: metaconfig maintenance.
10314      Branch: metaconfig
10315            ! U/modified/stdchar.U
10316      Branch: metaconfig/U/perl
10317            + testsyml.U
10318 ____________________________________________________________________________
10319 [  8040] By: jhi                                   on 2000/12/08  16:03:08
10320         Log: Subject: [ID 20001207.009] Not OK: perl v5.7.0 +DEVEL8030 on os2-64int-ld 2.30
10321              From: sthoenna@efn.org
10322              Date: Thu, 7 Dec 2000 21:32:43 -0800 (PST)
10323              Message-Id: <200012080532.eB85Wh729109@garcia.efn.org>
10324      Branch: perl
10325            ! Changes lib/ExtUtils/MM_OS2.pm
10326 ____________________________________________________________________________
10327 [  8039] By: jhi                                   on 2000/12/08  15:57:11
10328         Log: Subject: [PATCH] Re: ebcdic <-> ascii tables interjected in uv <-> utf8 considered harmful
10329              From: Simon Cozens <simon@cozens.net>
10330              Date: Fri, 8 Dec 2000 13:33:31 +0000
10331              Message-ID: <20001208133331.A11535@deep-dark-truthful-mirror.perlhacker.org>
10332              
10333              (The pp_hot part needed a rewrite.)
10334      Branch: perl
10335            ! doop.c pp_hot.c utf8.c
10336 ____________________________________________________________________________
10337 [  8038] By: jhi                                   on 2000/12/08  15:25:08
10338         Log: Subject: djSP
10339              From: Michael Stevens <michael@etla.org>
10340              Date: Wed, 6 Dec 2000 23:24:01 +0000
10341              Message-ID: <20001206232400.A21381@firedrake.org>
10342              
10343              Plus a note from Nick Ing-Simmons.
10344      Branch: perl
10345            ! pp.h
10346 ____________________________________________________________________________
10347 [  8037] By: jhi                                   on 2000/12/08  15:18:35
10348         Log: Filetype is text.
10349      Branch: perl
10350            ! t/op/utf8decode.t
10351 ____________________________________________________________________________
10352 [  8036] By: jhi                                   on 2000/12/08  03:31:27
10353         Log: Subject: [ID 20001207.004] [PATCH 5.6.0 and 5.7.x] add NCR MP-RAS support
10354              From: Andy Dougherty <doughera@lafayette.edu>
10355              Date: Thu, 7 Dec 2000 12:36:45 -0500 (EST)
10356              Message-Id: <Pine.SOL.4.10.10012071235400.13162-100000@maxwell.phys.lafayette.edu>
10357              
10358              Subject: Re: [ID 20001207.004] [PATCH 5.6.0 and 5.7.x] add NCR MP-RAS support
10359              From: Andy Dougherty <doughera@lafayette.edu>
10360              Date: Thu, 7 Dec 2000 13:56:10 -0500 (EST)
10361              Message-ID: <Pine.SOL.4.10.10012071354420.6665-100000@maxwell.phys.lafayette.edu>
10362      Branch: perl
10363            + ext/POSIX/hints/svr4.pl
10364            ! MANIFEST ext/POSIX/Makefile.PL hints/svr4.sh t/lib/bigfltpm.t
10365 ____________________________________________________________________________
10366 [  8035] By: jhi                                   on 2000/12/08  03:26:01
10367         Log: Subject: [ID 20001207.003] [PATCH] t/base/term.t causes abort if Config.pm not built
10368              From: Andy Dougherty <doughera@lafayette.edu>
10369              Date: Thu, 7 Dec 2000 10:50:47 -0500 (EST)
10370              Message-Id: <Pine.SOL.4.10.10012071049400.7566-100000@maxwell.phys.lafayette.edu>
10371      Branch: perl
10372            ! t/README t/base/term.t
10373 ____________________________________________________________________________
10374 [  8034] By: jhi                                   on 2000/12/08  03:21:59
10375         Log: Subject: DOC PATCH 5.6.0: -s return value incompletely documented
10376              From: mjd@plover.com  
10377              Date: 7 Dec 2000 21:04:20 -0000
10378              Message-ID: <20001207210420.22282.qmail@plover.com>
10379              
10380              Plus -z doc.
10381      Branch: perl
10382            ! pod/perlfunc.pod
10383 ____________________________________________________________________________
10384 [  8033] By: jhi                                   on 2000/12/08  03:19:03
10385         Log: Use the UTF8 macros a bit.  They can't be used with abandon
10386              everywhere because we do generate illegal UTF-8 in some situations.
10387              This is of course naughty.
10388      Branch: perl
10389            ! pod/perlapi.pod utf8.c utf8.h
10390 ____________________________________________________________________________
10391 [  8032] By: jhi                                   on 2000/12/08  03:00:09
10392         Log: Out of sync?
10393      Branch: perl
10394            ! t/pragma/warn/utf8
10395 ____________________________________________________________________________
10396 [  8031] By: jhi                                   on 2000/12/08  02:22:39
10397         Log: Cnt spl.
10398      Branch: perl
10399            ! MANIFEST
10400 ____________________________________________________________________________
10401 [  8030] By: jhi                                   on 2000/12/08  01:23:54
10402         Log: Add test for reverse().
10403      Branch: perl
10404            + t/op/reverse.t
10405            ! MANIFEST
10406 ____________________________________________________________________________
10407 [  8029] By: jhi                                   on 2000/12/08  01:21:47
10408         Log: Integrate perlio.
10409      Branch: perl
10410           !> ext/IO/IO.xs fakesdio.h global.sym lib/warnings.pm perlapi.c
10411           !> perlio.c perlio.h perlsdio.h warnings.pl
10412 ____________________________________________________________________________
10413 [  8028] By: jhi                                   on 2000/12/08  01:19:08
10414         Log: Introduce macros for UTF8 decoding.
10415      Branch: perl
10416            ! t/op/utf8decode.t t/pragma/warn/utf8 utf8.c utf8.h
10417 ____________________________________________________________________________
10418 [  8027] By: nick                                  on 2000/12/07  22:18:19
10419         Log: Integrate mainline
10420      Branch: perlio
10421           !> embed.pl pod/perlapi.pod utf8.c
10422 ____________________________________________________________________________
10423 [  8026] By: nick                                  on 2000/12/07  21:45:08
10424         Log: Various oddities p4 diff -se showed up
10425              Remove 'our' from warnings.pl
10426      Branch: perlio
10427            ! global.sym lib/warnings.pm pod/perlapi.pod warnings.pl
10428 ____________________________________________________________________________
10429 [  8025] By: nick                                  on 2000/12/07  21:43:32
10430         Log: Change PerlIO_(get|set)pos to take SV *
10431              Should fix, OS/2, VMS, (sfio??)
10432      Branch: perlio
10433            ! ext/IO/IO.xs fakesdio.h perlapi.c perlio.c perlio.h perlsdio.h
10434 ____________________________________________________________________________
10435 [  8024] By: jhi                                   on 2000/12/07  19:05:32
10436         Log: Document utf8_to_uv() better.
10437      Branch: perl
10438            ! pod/perlapi.pod utf8.c
10439 ____________________________________________________________________________
10440 [  8023] By: jhi                                   on 2000/12/07  18:23:47
10441         Log: Document utf8_length(), utf8_distance(), and utf8_hop().
10442      Branch: perl
10443            ! embed.pl pod/perlapi.pod utf8.c
10444 ____________________________________________________________________________
10445 [  8022] By: jhi                                   on 2000/12/07  04:13:51
10446         Log: Integrate perlio.
10447      Branch: perl
10448           !> perlio.c t/io/dup.t win32/config.vc win32/config_H.bc
10449           !> win32/config_H.gc win32/config_H.vc win32/config_h.PL
10450           !> win32/makefile.mk
10451 ____________________________________________________________________________
10452 [  8021] By: nick                                  on 2000/12/07  00:28:14
10453         Log: Various attempts at MSVC debug - not sure what has
10454              changed but works now. 
10455              Seems atexit() _may_ work for DLLs built with MSVC so don't
10456              call cleanup that way.
10457      Branch: perlio
10458            ! perlio.c win32/makefile.mk
10459 ____________________________________________________________________________
10460 [  8020] By: nick                                  on 2000/12/06  19:57:20
10461         Log: Integrate mainline
10462      Branch: perlio
10463           +> lib/ExtUtils/MANIFEST.SKIP t/op/concat.t
10464           !> (integrate 75 files)
10465 ____________________________________________________________________________
10466 [  8019] By: nick                                  on 2000/12/06  19:28:21
10467         Log: Add useperlio to config.vc
10468              Turn off binmode in config_H.PL
10469              Regen all the config_H.xx
10470              Attempt to get debugging build with MSVC.
10471      Branch: perlio
10472            ! win32/config.vc win32/config_H.bc win32/config_H.gc
10473            ! win32/config_H.vc win32/config_h.PL win32/makefile.mk
10474 ____________________________________________________________________________
10475 [  8018] By: nick                                  on 2000/12/06  19:21:57
10476         Log: Test various dup/external program options on all platforms.
10477      Branch: perlio
10478            ! t/io/dup.t
10479 ____________________________________________________________________________
10480 [  8017] By: nick                                  on 2000/12/06  19:20:47
10481         Log: Fix harness to be less picky
10482      Branch: perlio
10483            ! lib/Test/Harness.pm
10484 ____________________________________________________________________________
10485 [  8016] By: jhi                                   on 2000/12/06  16:45:12
10486         Log: Update Changes.
10487      Branch: perl
10488            ! Changes patchlevel.h
10489 ____________________________________________________________________________
10490 [  8015] By: jhi                                   on 2000/12/06  16:41:03
10491         Log: Test \x{...} with ord().
10492      Branch: perl
10493            ! t/op/ord.t
10494 ____________________________________________________________________________
10495 [  8014] By: jhi                                   on 2000/12/06  16:20:33
10496         Log: Test tweak because of #8013.
10497      Branch: perl
10498            ! t/lib/b.t
10499 ____________________________________________________________________________
10500 [  8013] By: jhi                                   on 2000/12/06  16:09:09
10501         Log: Subject: [PATCH] $VERSION crusade, strict, tests, etc... all over lib/
10502              From: Michael G Schwern <schwern@pobox.com>
10503              Date: Tue, 5 Dec 2000 21:23:28 -0500
10504              Message-ID: <20001205212328.C6473@blackrider.aocn.com>
10505              
10506              Carp::Heavy parts not very applicable because of recent changes.
10507      Branch: perl
10508            ! ext/Opcode/Opcode.pm lib/AnyDBM_File.pm lib/CGI/Apache.pm
10509            ! lib/CGI/Switch.pm lib/Carp.pm lib/Carp/Heavy.pm
10510            ! lib/DirHandle.pm lib/Dumpvalue.pm lib/English.pm lib/Env.pm
10511            ! lib/Exporter.pm lib/Exporter/Heavy.pm
10512            ! lib/ExtUtils/MM_Cygwin.pm lib/ExtUtils/MM_OS2.pm
10513            ! lib/ExtUtils/MM_Unix.pm lib/ExtUtils/MM_VMS.pm
10514            ! lib/ExtUtils/MM_Win32.pm lib/File/CheckTree.pm
10515            ! lib/File/DosGlob.pm lib/File/Find.pm lib/File/stat.pm
10516            ! lib/FileCache.pm lib/I18N/Collate.pm lib/Net/hostent.pm
10517            ! lib/Net/netent.pm lib/Net/protoent.pm lib/Net/servent.pm
10518            ! lib/Pod/Functions.pm lib/Pod/Html.pm lib/Search/Dict.pm
10519            ! lib/SelectSaver.pm lib/Term/Cap.pm lib/Term/Complete.pm
10520            ! lib/Term/ReadLine.pm lib/Text/Abbrev.pm lib/Tie/Hash.pm
10521            ! lib/Tie/RefHash.pm lib/Tie/Scalar.pm lib/Tie/SubstrHash.pm
10522            ! lib/Time/Local.pm lib/Time/tm.pm lib/UNIVERSAL.pm
10523            ! lib/User/grent.pm lib/User/pwent.pm lib/bytes.pm
10524            ! lib/charnames.pm lib/diagnostics.pm lib/filetest.pm
10525            ! lib/integer.pm lib/less.pm lib/locale.pm lib/open.pm
10526            ! lib/overload.pm lib/subs.pm lib/utf8.pm lib/vars.pm
10527            ! lib/warnings/register.pm t/lib/attrs.t t/lib/syslog.t
10528            ! warnings.pl
10529 ____________________________________________________________________________
10530 [  8012] By: jhi                                   on 2000/12/06  15:22:38
10531         Log: Subject: [PATCH] Re: New harness is failing things
10532              From: Nick Ing-Simmons <nik@tiuk.ti.com>
10533              Date: Wed, 6 Dec 2000 13:00:30 GMT
10534              Message-Id: <200012061300.NAA10567@mikado.tiuk.ti.com>
10535      Branch: perl
10536            ! lib/Test/Harness.pm
10537 ____________________________________________________________________________
10538 [  8011] By: jhi                                   on 2000/12/06  15:12:08
10539         Log: Subject: installhtml changes
10540              From: Michael Stevens <michael@etla.org>
10541              Date: Wed, 6 Dec 2000 13:15:53 +0000
10542              Message-ID: <20001206131553.A27317@firedrake.org>
10543      Branch: perl
10544            ! installhtml
10545 ____________________________________________________________________________
10546 [  8010] By: jhi                                   on 2000/12/06  15:06:05
10547         Log: Subject: the dTHR hits
10548              From: Michael Stevens <michael@etla.org>
10549              Date: Wed, 6 Dec 2000 12:06:03 +0000
10550              Message-ID: <20001206120603.A24581@firedrake.org>
10551              
10552              More, errrm, less dTHRs.
10553      Branch: perl
10554            ! bytecode.pl ext/B/B/C.pm
10555 ____________________________________________________________________________
10556 [  8009] By: jhi                                   on 2000/12/06  15:04:25
10557         Log: Subject: MakeMaker mailing list gone?
10558              From: Michael G Schwern <schwern@pobox.com>
10559              Date: Tue, 5 Dec 2000 19:29:59 -0500
10560              Message-ID: <20001205192959.B6473@blackrider.aocn.com>
10561              
10562              The MakeMaker mailing list is dead, perlbug is the right
10563              address to report bugs.
10564      Branch: perl
10565            ! lib/ExtUtils/MakeMaker.pm
10566 ____________________________________________________________________________
10567 [  8008] By: jhi                                   on 2000/12/06  15:00:32
10568         Log: Subject: [PATCH ExtUtils::Manifest 1.1] Default MANIFEST.SKIP]
10569              From: Michael G Schwern <schwern@pobox.com>
10570              Date: Tue, 5 Dec 2000 19:21:21 -0500
10571              Message-ID: <20001205192121.A6473@blackrider.aocn.com>
10572              
10573              Add a default MANIFEST skip that ignores things like
10574              version control files, editor temporary files, and the Makefile.
10575      Branch: perl
10576            + lib/ExtUtils/MANIFEST.SKIP
10577            ! MANIFEST lib/ExtUtils/Manifest.pm
10578 ____________________________________________________________________________
10579 [  8007] By: jhi                                   on 2000/12/06  14:57:20
10580         Log: In Amiga more manual hackery of the scripts seems to be needed,
10581              from Jan-Erik Karlsson.  Why Configure does not get this right
10582              is unknown, may be shell-induced.
10583      Branch: perl
10584            ! README.amiga
10585 ____________________________________________________________________________
10586 [  8006] By: jhi                                   on 2000/12/05  23:53:12
10587         Log: Add TOPm1s to peek at the second topmost stack item.
10588      Branch: perl
10589            ! pp.h
10590 ____________________________________________________________________________
10591 [  8005] By: jhi                                   on 2000/12/05  23:13:55
10592         Log: Avaunt, you foul UTF-8 tests.
10593      Branch: perl
10594            ! t/op/ver.t t/pragma/utf8.t
10595 ____________________________________________________________________________
10596 [  8004] By: jhi                                   on 2000/12/05  23:09:54
10597         Log: Continue utf8 dispersal. 
10598      Branch: perl
10599            + t/op/concat.t
10600            ! MANIFEST t/pragma/utf8.t
10601 ____________________________________________________________________________
10602 [  8003] By: nick                                  on 2000/12/05  23:02:39
10603         Log: Integrate mainline.
10604      Branch: perlio
10605           +> t/op/length.t t/op/utf8decode.t
10606           !> (integrate 69 files)
10607 ____________________________________________________________________________
10608 [  8002] By: jhi                                   on 2000/12/05  22:59:28
10609         Log: Integrate perlio.
10610      Branch: perl
10611           !> iperlsys.h perl.c perlio.c win32/perllib.c
10612 ____________________________________________________________________________
10613 [  8001] By: nick                                  on 2000/12/05  22:07:52
10614         Log: Win32 PERL_IMPLICIT_SYS passes all tests with USE_PERLIO
10615              - calloc/free suffer from damage on TerminateThread()
10616              - use PerlMemShared (as originally planned) now fixed
10617              - avoid doing anything important on DLL "detach".
10618      Branch: perlio
10619            ! perl.c perlio.c win32/perllib.c
10620 ____________________________________________________________________________
10621 [  8000] By: nick                                  on 2000/12/05  21:05:09
10622         Log: Fix gross PerlMemShared issue.
10623      Branch: perlio
10624            ! iperlsys.h
10625 ____________________________________________________________________________
10626 [  7999] By: jhi                                   on 2000/12/05  20:46:58
10627         Log: Test for Unicode (UTF-8) hash keys.
10628      Branch: perl
10629            ! t/op/each.t
10630 ____________________________________________________________________________
10631 [  7998] By: jhi                                   on 2000/12/05  20:30:35
10632         Log: Remove an unnecessary 'use utf8' (unnecessary because \x{...}
10633              is now always UTF-8), empty line cosmetics.
10634      Branch: perl
10635            ! t/pragma/utf8.t
10636 ____________________________________________________________________________
10637 [  7997] By: jhi                                   on 2000/12/05  20:15:40
10638         Log: Subject: Re: STRLEN - what?
10639              From: Andy Dougherty <doughera@lafayette.edu>
10640              Date: Tue, 5 Dec 2000 11:58:46 -0500 (EST)
10641              Message-ID: <Pine.SOL.4.10.10012051152100.3586-100000@maxwell.phys.lafayette.edu>
10642              
10643              Explain STRLEN.
10644      Branch: perl
10645            ! pod/perlguts.pod
10646 ____________________________________________________________________________
10647 [  7996] By: jhi                                   on 2000/12/05  20:13:34
10648         Log: Split off the UTF-8 decoder tests, make them to check also
10649              the error message.
10650      Branch: perl
10651            + t/op/utf8decode.t
10652            ! MANIFEST t/pragma/utf8.t utf8.c
10653 ____________________________________________________________________________
10654 [  7995] By: jhi                                   on 2000/12/05  16:39:47
10655         Log: Start migrating bits of pragma/utf8 to elsewhere
10656              (since the long term plan is to obsolete 'use utf8').
10657      Branch: perl
10658            + t/op/length.t
10659            ! MANIFEST t/pragma/utf8.t
10660 ____________________________________________________________________________
10661 [  7994] By: jhi                                   on 2000/12/05  16:30:21
10662         Log: Fix a manual edit typo from #7993, fix the message formatting
10663              for Unicode, add few our declarations.
10664      Branch: perl
10665            ! lib/Carp/Heavy.pm
10666 ____________________________________________________________________________
10667 [  7993] By: jhi                                   on 2000/12/05  16:09:15
10668         Log: Subject: Need help with warnings :-(
10669              From: "Ben Tilly" <ben_tilly@hotmail.com>
10670              Date: Tue, 05 Dec 2000 01:35:54 -0500
10671              Message-ID: <LAW2-F2380n7J95K7aI00001bb9@hotmail.com>
10672              
10673              Subject: UPDATE: Carp/Heavy now passes all tests
10674              From: "Ben Tilly" <ben_tilly@hotmail.com>
10675              Date: Tue, 05 Dec 2000 07:59:41 -0500
10676              Message-ID: <LAW2-F58V1qdiixjnzi00005523@hotmail.com>
10677              
10678              The Brave New Carp.
10679      Branch: perl
10680            ! lib/Carp.pm lib/Carp/Heavy.pm
10681 ____________________________________________________________________________
10682 [  7992] By: jhi                                   on 2000/12/05  15:55:08
10683         Log: Subject: [PATCH perl@7979] cygwin port
10684              From: "Eric Fifer" <efifer@dircon.co.uk>
10685              Date: Tue, 5 Dec 2000 14:04:09 -0000
10686              Message-Id: <200012051402.OAA60286@mailhost2.dircon.co.uk>
10687      Branch: perl
10688            ! t/lib/net-hostent.t
10689 ____________________________________________________________________________
10690 [  7991] By: jhi                                   on 2000/12/05  15:52:34
10691         Log: Subject: Re: [PATCH] The largest hoax of all times?
10692              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
10693              Date: Tue, 5 Dec 2000 00:40:25 -0500
10694              Message-ID: <20001205004025.A4050@monk.mps.ohio-state.edu>
10695              
10696              Subject: Re: [PATCH] The largest hoax of all times?
10697              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
10698              Date: Mon, 4 Dec 2000 23:55:53 -0500
10699              Message-ID: <20001204235553.A1140@monk.mps.ohio-state.edu>
10700              
10701              Subject: Re: [PATCH] The largest hoax of all times?
10702              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
10703              Date: Tue, 5 Dec 2000 01:28:45 -0500
10704              Message-ID: <20001205012844.A4227@monk.mps.ohio-state.edu>
10705              
10706              Fix the unpredictable order of DESTROYs.
10707      Branch: perl
10708            ! embed.h embed.pl objXSUB.h pod/perlapi.pod proto.h scope.c
10709            ! sv.c sv.h t/op/ref.t
10710 ____________________________________________________________________________
10711 [  7990] By: jhi                                   on 2000/12/05  14:38:53
10712         Log: Subject: [PATCH] shrink pp_hot fractionally
10713              From: Nicholas Clark <nick@ccl4.org>
10714              Date: Tue, 5 Dec 2000 12:44:31 +0000
10715              Message-ID: <20001205124431.E74518@plum.flirble.org>
10716              
10717              Use report_evil_fh().
10718      Branch: perl
10719            ! opcode.pl opnames.h pp_hot.c util.c
10720 ____________________________________________________________________________
10721 [  7989] By: jhi                                   on 2000/12/05  14:21:27
10722         Log: Subject: [PATCH] [ID 20001203.001] Not OK: perl v5.7.0 +DEVEL7965 on os2-64int-ld 2.30 (UNINSTALLED)
10723              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
10724              Date: Mon, 04 Dec 2000 22:21:59 -0800
10725              Message-ID: <HmIL6gzkgepS092yn@efn.org>
10726              
10727              Harness shouldn't ignore responses like "ok 3\r\r\n".
10728      Branch: perl
10729            ! lib/Test/Harness.pm
10730 ____________________________________________________________________________
10731 [  7988] By: jhi                                   on 2000/12/05  13:51:28
10732         Log: Integrate the "skip" messages to explain().
10733      Branch: perl
10734            ! t/lib/syslfs.t t/op/lfs.t
10735 ____________________________________________________________________________
10736 [  7987] By: jhi                                   on 2000/12/05  12:34:54
10737         Log: The one that got away in #7984.
10738              
10739              Subject: Re: dTHR - what and why?
10740              From: Michael Stevens <michael@etla.org> 
10741              Date: Tue, 5 Dec 2000 11:15:52 +0000
10742              Message-ID: <20001205111552.A4647@firedrake.org>
10743      Branch: perl
10744            ! sv.h
10745 ____________________________________________________________________________
10746 [  7986] By: gsar                                  on 2000/12/05  09:14:44
10747         Log: fix open(FOO, ">&MYSOCK") failure under Windows 9x (problem is
10748              due to the notorious GetFileType() bug in Windows 9x, which fstat()
10749              tickles)
10750      Branch: perl
10751            ! win32/perlhost.h win32/win32.c win32/win32.h win32/win32sck.c
10752 ____________________________________________________________________________
10753 [  7985] By: jhi                                   on 2000/12/05  05:49:03
10754         Log: Integrate perlio.
10755      Branch: perl
10756           !> iperlsys.h perl.c perlio.c perlio.h perliol.h sv.c t/op/fork.t
10757           !> win32/perlhost.h win32/perllib.c
10758 ____________________________________________________________________________
10759 [  7984] By: jhi                                   on 2000/12/05  05:48:16
10760         Log: dTHR is a nop in 5.6.0 onwards.  Ergo, it can go.
10761      Branch: perl
10762            ! av.c cygwin/cygwin.c deb.c djgpp/djgpp.c doio.c doop.c dump.c
10763            ! epoc/epoc.c ext/ByteLoader/ByteLoader.xs
10764            ! ext/ByteLoader/byterun.c ext/Devel/DProf/DProf.xs
10765            ! ext/Thread/Thread.xs ext/re/re.xs gv.c hv.c mg.c op.c
10766            ! os2/OS2/REXX/REXX.xs os2/os2.c os2/os2ish.h perl.c perl.h
10767            ! perlapi.c pp.c pp.h pp_ctl.c pp_hot.c pp_sys.c regcomp.c
10768            ! regexec.c run.c scope.c sv.c taint.c thread.h toke.c
10769            ! universal.c utf8.c util.c vmesa/vmesa.c vms/ext/Stdio/Stdio.xs
10770            ! win32/win32.c
10771 ____________________________________________________________________________
10772 [  7983] By: nick                                  on 2000/12/04  23:27:43
10773         Log: PERL_IMPLICIT_SYS (almost) works - something odd with "signal"
10774      Branch: perlio
10775            ! iperlsys.h perl.c perlio.c perlio.h perliol.h sv.c t/op/fork.t
10776            ! win32/perlhost.h win32/perllib.c
10777 ____________________________________________________________________________
10778 [  7982] By: jhi                                   on 2000/12/04  19:44:09
10779         Log: Yet Another Copying-Without-Paying-Attention-To-SvUTF8(sv) Bug
10780              uncovered by #7980.
10781      Branch: perl
10782            ! op.c
10783 ____________________________________________________________________________
10784 [  7981] By: jhi                                   on 2000/12/04  19:42:07
10785         Log: Subject: [PATCH] Trivial dump.c feature
10786              From: Simon Cozens <simon@cozens.net>
10787              Date: Mon, 4 Dec 2000 18:08:38 +0000
10788              Message-ID: <20001204180838.A5541@pembro33.pmb.ox.ac.uk>
10789              
10790              Show whether a constant is UTF-8.
10791      Branch: perl
10792            ! dump.c
10793 ____________________________________________________________________________
10794 [  7980] By: jhi                                   on 2000/12/04  19:36:51
10795         Log: UTF-8 hash keys, patch from Inaba Hiroto.
10796      Branch: perl
10797            ! embed.h embed.pl hv.c hv.h pod/perlapi.pod proto.h
10798 ____________________________________________________________________________
10799 [  7979] By: jhi                                   on 2000/12/04  17:36:28
10800         Log: Update Changes.
10801      Branch: perl
10802            ! Changes patchlevel.h
10803 ____________________________________________________________________________
10804 [  7978] By: jhi                                   on 2000/12/04  16:42:17
10805         Log: Retract #7977, still too volatile (the euphemism of the day
10806              for unfinished and buggy :-)
10807      Branch: perl
10808            ! doop.c hv.c pp.c sv.h
10809 ____________________________________________________________________________
10810 [  7977] By: jhi                                   on 2000/12/04  16:25:15
10811         Log: (Retracted by #7978, too shaky yet.)
10812              
10813              Subject: Re: utf8 in hash keys, implementor missing
10814              From: Simon Cozens <simon@cozens.net>
10815              Date: Sat, 2 Dec 2000 19:49:35 +0000
10816              Message-ID: <20001202194935.A25673@pembro33.pmb.ox.ac.uk>
10817              
10818              The first step at UTF-8 hash keys.
10819      Branch: perl
10820            ! doop.c hv.c pp.c sv.h
10821 ____________________________________________________________________________
10822 [  7976] By: jhi                                   on 2000/12/04  16:13:53
10823         Log: Subject: [ID 20001203.001] Not OK: perl v5.7.0 +DEVEL7965 on os2-64int-ld 2.30 (UNINSTALLED)
10824              From: sthoenna@efn.org
10825              Date: Sun, 3 Dec 2000 19:06:53 -0800 (PST)
10826              Message-Id: <200012040306.eB436rE18922@garcia.efn.org>
10827      Branch: perl
10828            ! os2/os2.c perlio.c
10829 ____________________________________________________________________________
10830 [  7975] By: jhi                                   on 2000/12/04  16:05:25
10831         Log: Subject: Re: [ID 20001129.009] Not OK: perl v5.7.0 +DEVEL7928 on os2-64int-ld 2.30 (UNINSTALLED)
10832              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
10833              Date: Thu, 30 Nov 2000 20:50:37 -0800
10834              Message-ID: <d4yJ6gzkgGsJ092yn@efn.org>
10835      Branch: perl
10836            ! os2/os2.c
10837 ____________________________________________________________________________
10838 [  7974] By: jhi                                   on 2000/12/04  16:03:57
10839         Log: Subject: [PATCH] ++ 20% faster
10840              From: Nicholas Clark <nick@ccl4.org>
10841              Date: Mon, 4 Dec 2000 12:17:27 +0000
10842              Message-ID: <20001204121726.B52976@plum.flirble.org>
10843              
10844              Make '$i = ""; $i++' to produce true IVs without a hint of NVs.
10845      Branch: perl
10846            ! sv.c
10847 ____________________________________________________________________________
10848 [  7973] By: jhi                                   on 2000/12/04  16:00:48
10849         Log: 
10850              Subject: Re: Not OK: perl v5.7.0 +DEVEL7825 on aix 4.2.1.0 (UNINSTALLED)
10851              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
10852              Date: Mon, 04 Dec 2000 12:30:45 +0100
10853              Message-Id: <20001204122118.E85D.H.M.BRAND@hccnet.nl>
10854              
10855              AIX 4.2 (using latest patchlevels on 20001130) has a broken bind
10856              library (getprotobyname and getprotobynumber are outversioned by
10857              the same calls in libc, at least for xlc version 3.
10858      Branch: perl
10859            ! hints/aix.sh
10860 ____________________________________________________________________________
10861 [  7972] By: jhi                                   on 2000/12/04  02:58:31
10862         Log: Integrate perlio.
10863      Branch: perl
10864           !> doio.c iperlsys.h perl.c perl.h perlio.c perlio.h toke.c
10865           !> win32/makefile.mk win32/perlhost.h win32/perllib.c
10866           !> win32/win32.h win32/win32iop.h win32/win32thread.h
10867 ____________________________________________________________________________
10868 [  7971] By: nick                                  on 2000/12/04  00:24:33
10869         Log: Quieten some noise in Win32 builds:
10870              - win32.h is included after <sys/socket.h>, so need to 
10871              set Win32SCK_IS_STDSCK earlier to avoid re-defined noise in XSUB.h
10872              - GCC (& MSVC?) have execv(...,const char *const *) so need a cast from char **.
10873      Branch: perlio
10874            ! doio.c perl.h toke.c win32/win32.h
10875 ____________________________________________________________________________
10876 [  7970] By: nick                                  on 2000/12/03  22:57:46
10877         Log: PERL_IMPLICIT_SYS compiles but does not work.
10878      Branch: perlio
10879            ! iperlsys.h perl.c perlio.c perlio.h win32/makefile.mk
10880            ! win32/perlhost.h win32/perllib.c win32/win32.h
10881            ! win32/win32iop.h win32/win32thread.h
10882 ____________________________________________________________________________
10883 [  7969] By: jhi                                   on 2000/12/03  22:12:58
10884         Log: On DEBUGGING make ANYOFUTF8 nodes store away also the SV
10885              used to swash_init(), makes regprop() dumps more informative
10886              (+utf8::IsAlpha, -utf8::IsDigit, for example).
10887      Branch: perl
10888            ! regcomp.c regexec.c
10889 ____________________________________________________________________________
10890 [  7968] By: jhi                                   on 2000/12/03  21:39:56
10891         Log: Implement ANYOFUTF8 regprop() dumping.
10892      Branch: perl
10893            ! regcomp.c
10894 ____________________________________________________________________________
10895 [  7967] By: jhi                                   on 2000/12/03  20:57:19
10896         Log: Make uv_to_utf8() to zero-terminate its output buffer,
10897              always use (at least) UTF8_MAXLEN + 1 U8s deep buffer.
10898      Branch: perl
10899            ! op.c pp.c regcomp.c regexec.c sv.c toke.c utf8.c
10900 ____________________________________________________________________________
10901 [  7966] By: nick                                  on 2000/12/03  18:41:21
10902         Log: Integrate mainline (STDCHAR)
10903      Branch: perlio
10904           !> Configure t/pragma/utf8.t
10905 ____________________________________________________________________________
10906 [  7965] By: jhi                                   on 2000/12/03  17:58:20
10907         Log: Raw zero bytes in text files confuse at least GNU patch 2.1.
10908      Branch: perl
10909            ! t/pragma/utf8.t
10910 ____________________________________________________________________________
10911 [  7964] By: jhi                                   on 2000/12/03  17:35:56
10912         Log: Integrate perlio.
10913      Branch: perl
10914           !> iperlsys.h perlio.c
10915 ____________________________________________________________________________
10916 [  7963] By: jhi                                   on 2000/12/03  17:33:55
10917         Log: Metaconfig unit change for #7962.
10918      Branch: metaconfig
10919            ! U/modified/stdchar.U
10920 ____________________________________________________________________________
10921 [  7962] By: jhi                                   on 2000/12/03  17:33:27
10922         Log: Untangle the <stdio.h> #include nest for the stdchar test,
10923              from Andy Dougherty.
10924      Branch: perl
10925            ! Configure
10926 ____________________________________________________________________________
10927 [  7961] By: nick                                  on 2000/12/03  16:53:00
10928         Log: Make iperlsys.h vector stdio not PerlIO.
10929      Branch: perlio
10930            ! iperlsys.h perlio.c
10931 ____________________________________________________________________________
10932 [  7960] By: nick                                  on 2000/12/03  14:43:01
10933         Log: Integrate mainline
10934      Branch: perlio
10935           !> Changes Configure config_h.SH lib/ExtUtils/MM_Unix.pm op.c
10936           !> patchlevel.h pod/perldiag.pod t/lib/net-hostent.t toke.c
10937 ____________________________________________________________________________
10938 [  7959] By: jhi                                   on 2000/12/03  08:16:36
10939         Log: Use DO_UTF8().
10940      Branch: perl
10941            ! op.c
10942 ____________________________________________________________________________
10943 [  7958] By: jhi                                   on 2000/12/02  18:33:05
10944         Log: Subject: Re: [ID 20001130.011] expression parsing bug ?
10945              From: Mike Guy <mjtg@cam.ac.uk>         
10946              Date: Sat, 02 Dec 2000 17:27:13 +0000
10947              Message-Id: <E142GRN-0003go-00@libra.cus.cam.ac.uk>
10948              
10949              An extraneous argument.
10950      Branch: perl
10951            ! toke.c
10952 ____________________________________________________________________________
10953 [  7957] By: jhi                                   on 2000/12/02  18:22:32
10954         Log: A missing hunk.
10955      Branch: perl
10956            ! t/lib/net-hostent.t
10957 ____________________________________________________________________________
10958 [  7956] By: jhi                                   on 2000/12/02  18:06:20
10959         Log: Subject: [PATCH] Re: [ID 20001202.001] (Net::hostent)
10960              From: Nicholas Clark <nick@ccl4.org>
10961              Date: Sat, 2 Dec 2000 14:28:27 +0000
10962              Message-ID: <20001202142827.A12308@plum.flirble.org>
10963              
10964              Test robustness.
10965      Branch: perl
10966            ! t/lib/net-hostent.t
10967 ____________________________________________________________________________
10968 [  7955] By: jhi                                   on 2000/12/02  17:58:06
10969         Log: Metaconfig unit change for #7954.
10970      Branch: metaconfig
10971            ! U/modified/stdchar.U
10972 ____________________________________________________________________________
10973 [  7954] By: jhi                                   on 2000/12/02  17:54:32
10974         Log: An inconvenient hang would happen if the stdio _ptr wasn't
10975              found in <stdio.h> and <stdio_impl.h> didn't exist.  (grep
10976              would be grepping stdin for all eternity for the _ptr.)
10977      Branch: perl
10978            ! Configure
10979 ____________________________________________________________________________
10980 [  7953] By: jhi                                   on 2000/12/02  00:07:15
10981         Log: Update Changes.
10982      Branch: perl
10983            ! Changes patchlevel.h
10984 ____________________________________________________________________________
10985 [  7952] By: jhi                                   on 2000/12/01  23:54:47
10986         Log: Subject: Re: long shell lines
10987              From: Andy Dougherty <doughera@lafayette.edu>
10988              Date: Thu, 30 Nov 2000 12:45:37 -0500 (EST)
10989              Message-ID: <Pine.SOL.4.10.10011301044590.26388-100000@maxwell.phys.lafayette.edu>
10990              
10991              Split overly long shell command lines.
10992      Branch: perl
10993            ! lib/ExtUtils/MM_Unix.pm
10994 ____________________________________________________________________________
10995 [  7951] By: jhi                                   on 2000/12/01  23:48:02
10996         Log: The metaconfig unit change for #7950.
10997      Branch: metaconfig
10998            + U/modified/stdchar.U
10999 ____________________________________________________________________________
11000 [  7950] By: jhi                                   on 2000/12/01  23:47:39
11001         Log: Try to find stdchar also from <stdio_impl.h>.
11002      Branch: perl
11003            ! Configure config_h.SH
11004 ____________________________________________________________________________
11005 [  7949] By: jhi                                   on 2000/12/01  23:46:45
11006         Log: Subject: Re: [ID 20001130.011] expression parsing bug ?
11007              From: Ronald J Kimball <rjk@linguist.dartmouth.edu>
11008              Date: Fri, 1 Dec 2000 16:26:08 -0500
11009              Message-ID: <20001201162608.B1436@linguist.dartmouth.edu>
11010              
11011              Reword the diagnostic message.
11012      Branch: perl
11013            ! pod/perldiag.pod
11014 ____________________________________________________________________________
11015 [  7948] By: nick                                  on 2000/12/01  22:49:43
11016         Log: Integrate mainline (for s/y/m as sub names stuff).
11017      Branch: perlio
11018           !> lib/CPAN.pm lib/CPAN/FirstTime.pm pod/perldiag.pod t/op/misc.t
11019           !> t/pragma/warn/toke toke.c
11020 ____________________________________________________________________________
11021 [  7947] By: jhi                                   on 2000/12/01  20:55:41
11022         Log: Integrate perlio.
11023      Branch: perl
11024           !> perlio.c perliol.h t/io/pipe.t
11025 ____________________________________________________________________________
11026 [  7946] By: jhi                                   on 2000/12/01  20:36:51
11027         Log: Upgrade to CPAN 1.59_51, from Andreas König.
11028      Branch: perl
11029            ! lib/CPAN.pm lib/CPAN/FirstTime.pm
11030 ____________________________________________________________________________
11031 [  7945] By: nick                                  on 2000/12/01  20:31:32
11032         Log: Integrate mainline
11033      Branch: perlio
11034           +> ext/Encode/Encode/EncodeFormat.pod lib/unicode/Is/Blank.pl
11035           +> lib/unicode/Is/SpacePerl.pl t/lib/class-struct.t
11036           +> t/lib/net-hostent.t
11037           !> (integrate 35 files)
11038 ____________________________________________________________________________
11039 [  7944] By: jhi                                   on 2000/12/01  20:23:29
11040         Log: Some help for 20001130.011.  Now one gets warnings like
11041              "Ambiguous -f() resolved as a file test ..."
11042      Branch: perl
11043            ! pod/perldiag.pod t/pragma/warn/toke toke.c
11044 ____________________________________________________________________________
11045 [  7943] By: jhi                                   on 2000/12/01  19:44:44
11046         Log: Retract #7941.  Forbidding subs m/s/etc is too cruel because
11047              that also breaks using them as methods. 
11048      Branch: perl
11049            ! pod/perldiag.pod t/op/misc.t toke.c
11050 ____________________________________________________________________________
11051 [  7942] By: nick                                  on 2000/12/01  17:56:46
11052         Log: Fix 'mmap' lib/filehand.t (ungetc) test fail.
11053              Make 'unix' pass most tests
11054              - do unread by temporary push of layer ("pending") holding unread chars
11055              - fast_gets is now based on per-handle flag
11056              - relax one of io/pipe.t tests to allow print to fail and close to
11057              succeed so that it passes on unbuffered "unix" layer.
11058              Remaining fail is sporadic and a genuine race condition between
11059              parent/child in fork test.
11060      Branch: perlio
11061            ! perlio.c perliol.h t/io/pipe.t
11062 ____________________________________________________________________________
11063 [  7941] By: jhi                                   on 2000/12/01  15:28:58
11064         Log: (Retracted by #7943.)
11065              
11066              Reserve the short named string operator names.
11067      Branch: perl
11068            ! pod/perldiag.pod t/op/misc.t toke.c
11069 ____________________________________________________________________________
11070 [  7940] By: jhi                                   on 2000/12/01  06:45:53
11071         Log: Get the three different space character classes right under utf8.
11072      Branch: perl
11073            + lib/unicode/Is/Blank.pl lib/unicode/Is/SpacePerl.pl
11074            ! MANIFEST lib/unicode/mktables.PL pod/perlre.pod regcomp.c
11075            ! regexec.c t/op/pat.t utf8.c
11076 ____________________________________________________________________________
11077 [  7939] By: jhi                                   on 2000/12/01  03:26:26
11078         Log: Two more tests that make no sense in UTF-8 since the test
11079              data is not in UTF-8.
11080      Branch: perl
11081            ! t/op/regexp.t
11082 ____________________________________________________________________________
11083 [  7938] By: jhi                                   on 2000/12/01  03:20:39
11084         Log: \x{} doesn't any more require 'use utf8' outside regexen so why
11085              should it be required inside regexen?
11086      Branch: perl
11087            ! regcomp.c t/op/regmesg.t
11088 ____________________________________________________________________________
11089 [  7937] By: jhi                                   on 2000/12/01  02:58:53
11090         Log: Fix for 20001130.008 and 20001130.010, the PL_regnpar wasn't
11091              stored and restored, and thusly was trounced by the utf8 swash
11092              routines.
11093      Branch: perl
11094            ! regcomp.c
11095 ____________________________________________________________________________
11096 [  7936] By: jhi                                   on 2000/11/30  20:41:39
11097         Log: Fix for 20001128.006, be more careful in Perl_sv_utf8_downgrade().
11098              Why the different platforms behave so differently (core dump vs
11099              no core dump) on this bug is a but of a mystery, but if I had to
11100              guess I would mumble something like 'alignment'.
11101      Branch: perl
11102            ! sv.c
11103 ____________________________________________________________________________
11104 [  7935] By: jhi                                   on 2000/11/30  16:17:02
11105         Log: Subject: [PATCH perl@7930] toke.c perlio.c -Wformat nits
11106              From: Robin Barker <rmb1@cise.npl.co.uk>
11107              Message-Id: <200011301427.OAA00030@tempest.npl.co.uk>
11108              Date: Thu, 30 Nov 2000 14:27:12 GMT
11109      Branch: perl
11110            ! perlio.c toke.c
11111 ____________________________________________________________________________
11112 [  7934] By: jhi                                   on 2000/11/30  16:04:49
11113         Log: In OS/390 'localhost' can be 'localhost.FOO.BAR'.
11114      Branch: perl
11115            ! t/lib/net-hostent.t
11116 ____________________________________________________________________________
11117 [  7933] By: jhi                                   on 2000/11/30  06:07:26
11118         Log: Subject: [ID 20001129.007] Not OK: perl v5.7.0 +DEVEL7928 on VMS_AXP V7.1 (UNINSTALLED)
11119              From: Peter Prymmer <pvhp@forte.com>
11120              Date: Wed, 29 Nov 2000 15:16:45 -0800 (PST)
11121              Message-Id: <Pine.OSF.4.10.10011291515570.328738-100000@aspara.forte.com>
11122              
11123              In VMS the localhost may be LOCALHOST.
11124      Branch: perl
11125            ! t/lib/net-hostent.t
11126 ____________________________________________________________________________
11127 [  7932] By: jhi                                   on 2000/11/30  01:11:11
11128         Log: Subject: Re: question about retlen in utf8.c:Perl_utf8_to_uv()
11129              From: Peter Prymmer <pvhp@forte.com>
11130              Date: Wed, 29 Nov 2000 12:36:40 -0800 (PST)
11131              Message-ID: <Pine.OSF.4.10.10011291233120.328738-100000@aspara.forte.com>
11132              
11133              plus regen perlapi.pod.
11134      Branch: perl
11135            ! pod/perlapi.pod utf8.c
11136 ____________________________________________________________________________
11137 [  7931] By: jhi                                   on 2000/11/30  01:06:19
11138         Log: Subject:  [PATCH perl@7930] get t/lib/filter-util.t to work on VMS 
11139              From: lane@DUPHY4.Physics.Drexel.Edu (Charles Lane)
11140              Date:     Wed, 29 Nov 2000 17:15:11 EST
11141              Message-Id: <001129171439.6099b@DUPHY4.Physics.Drexel.Edu>
11142      Branch: perl
11143            ! t/lib/filter-util.pl t/lib/filter-util.t
11144 ____________________________________________________________________________
11145 [  7930] By: jhi                                   on 2000/11/29  18:51:55
11146         Log: Update Changes.
11147      Branch: perl
11148            ! Changes patchlevel.h
11149 ____________________________________________________________________________
11150 [  7929] By: jhi                                   on 2000/11/29  18:50:55
11151         Log: Update the va_copy() metaconfig unit.
11152      Branch: metaconfig/U/perl
11153            ! need_va_copy.U
11154 ____________________________________________________________________________
11155 [  7928] By: jhi                                   on 2000/11/29  17:50:43
11156         Log: Subject: [ID 20001128.003] Not OK: perl v5.7.0 +DEVEL7891 on ppc-linux 2.2.17  
11157              From: Dominic Dunlop <domo@computer.org>
11158              Date: Tue, 28 Nov 2000 16:41:57 +0100
11159              Message-Id: <p04320400b649771b9797@[192.168.1.4]>
11160              
11161              Patch to catch a core dump in the Configure va_copy test.
11162      Branch: perl
11163            ! Configure config_h.SH
11164 ____________________________________________________________________________
11165 [  7927] By: jhi                                   on 2000/11/29  17:31:59
11166         Log: Retract #7921, the patch shouldn't be needed.
11167      Branch: perl
11168            ! sv.c
11169 ____________________________________________________________________________
11170 [  7926] By: jhi                                   on 2000/11/29  17:01:41
11171         Log: Make the Class::Struct import() wiser.
11172      Branch: perl
11173            ! lib/Class/Struct.pm t/lib/class-struct.t
11174 ____________________________________________________________________________
11175 [  7925] By: jhi                                   on 2000/11/29  16:36:33
11176         Log: All the core library users of Class::Struct seem to be
11177              using "use Class::Struct 'struct';" instead of the bare
11178              "use Class::Struct;", which isn't documented in Class::Struct.
11179              This can't be right.
11180      Branch: perl
11181            ! lib/File/stat.pm
11182 ____________________________________________________________________________
11183 [  7924] By: jhi                                   on 2000/11/29  16:32:15
11184         Log: A test works better if it has the right 1..$n output.
11185      Branch: perl
11186            ! t/lib/class-struct.t
11187 ____________________________________________________________________________
11188 [  7923] By: jhi                                   on 2000/11/29  16:29:11
11189         Log: Forgot to MANIFEST the new Net::hostent test.
11190      Branch: perl
11191            ! MANIFEST
11192 ____________________________________________________________________________
11193 [  7922] By: jhi                                   on 2000/11/29  16:27:49
11194         Log: Integrate perlio.
11195      Branch: perl
11196           !> iperlsys.h perlio.c
11197 ____________________________________________________________________________
11198 [  7921] By: jhi                                   on 2000/11/29  16:27:10
11199         Log: (Retracted by #7927.)
11200              
11201              Subject: [PATCH] Is infinity a number?
11202              From: Simon Cozens <simon@cozens.net>
11203              Date: Wed, 29 Nov 2000 14:48:20 +0000
11204              Message-ID: <20001129144820.A31339@pembro33.pmb.ox.ac.uk>
11205      Branch: perl
11206            ! sv.c
11207 ____________________________________________________________________________
11208 [  7920] By: jhi                                   on 2000/11/29  16:23:02
11209         Log: Subject: net_hostent.t (was Re: [ID 20001128.002] what's the point of example code if it is buggy?)
11210              From: rspier@pobox.com (Robert Spier)
11211              Date: Wed, 29 Nov 2000 02:17:49 -0500
11212              Message-ID: <14884.44445.760322.278647@localhost.localdomain>
11213              
11214              Add a test for Net::hostent.
11215      Branch: perl
11216            + t/lib/net-hostent.t
11217 ____________________________________________________________________________
11218 [  7919] By: jhi                                   on 2000/11/29  16:21:31
11219         Log: Make "use Class::Struct 'struct';" work again (broken by #7617);
11220              add a test for Class::Struct.
11221      Branch: perl
11222            + t/lib/class-struct.t
11223            ! MANIFEST lib/Class/Struct.pm
11224 ____________________________________________________________________________
11225 [  7918] By: jhi                                   on 2000/11/29  15:48:40
11226         Log: Subject: Re: Minor suggestion for Sys::Syslog  [PATCH]
11227              From: rspier@pobox.com (Robert Spier)
11228              Date: Wed, 29 Nov 2000 02:25:39 -0500
11229              Message-ID: <14884.44915.86028.422238@localhost.localdomain>
11230              
11231              More checking in case someone has broken their services or
11232              protocol databases.
11233      Branch: perl
11234            ! ext/Sys/Syslog/Syslog.pm
11235 ____________________________________________________________________________
11236 [  7917] By: jhi                                   on 2000/11/29  15:46:25
11237         Log: Subject: [PATCH] $^O  win32 -> MSWin32
11238              From: rspier@pobox.com (Robert Spier)
11239              Date: Wed, 29 Nov 2000 02:17:38 -0500
11240              Message-ID: <14884.44434.340627.126145@localhost.localdomain>
11241              
11242              plus similar nits for vms, err, VMS, and UNICOS.
11243      Branch: perl
11244            ! t/lib/syslfs.t t/op/lfs.t
11245 ____________________________________________________________________________
11246 [  7916] By: jhi                                   on 2000/11/29  15:42:51
11247         Log: Subject: [PATCH] Tokeniser debugging
11248              From: Simon Cozens <simon@cozens.net>
11249              Date: Wed, 29 Nov 2000 14:15:45 +0000
11250              Message-ID: <20001129141545.A30864@pembro33.pmb.ox.ac.uk>
11251      Branch: perl
11252            ! perl.c perl.h pod/perlrun.pod toke.c
11253 ____________________________________________________________________________
11254 [  7915] By: jhi                                   on 2000/11/29  15:41:36
11255         Log: Subject: Re: [PATCH 5.7.0] OUT keyword for xsubpp
11256              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
11257              Date: Wed, 29 Nov 2000 02:13:14 -0500
11258              Message-ID: <20001129021314.A2532@monk.mps.ohio-state.edu>
11259              
11260              OUT keyword nits.
11261              
11262              Subject: Re: [PATCH 5.7.0] OUT keyword for xsubpp
11263              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
11264              Date: Wed, 29 Nov 2000 03:09:04 -0500
11265              Message-ID: <20001129030904.A2754@monk.mps.ohio-state.edu>
11266              
11267              OUT and IN_OUT documentation.
11268      Branch: perl
11269            ! lib/ExtUtils/xsubpp pod/perlxs.pod
11270 ____________________________________________________________________________
11271 [  7914] By: jhi                                   on 2000/11/29  03:35:01
11272         Log: Subject: Re: [ID 20001127.002] const subs hurt under debugger
11273              From: John Tobey <jtobey@john-edwin-tobey.org>
11274              Date: Tue, 28 Nov 2000 01:13:41 -0500 (EST)
11275              Message-Id: <m140e1N-000FOoC@feynman.localnet>
11276              
11277              plus a performance speedup noticed by Sarathy.
11278      Branch: perl
11279            ! op.c
11280 ____________________________________________________________________________
11281 [  7913] By: jhi                                   on 2000/11/29  03:16:59
11282         Log: Use "1 while unlink" so that VMS gets clean, too.
11283      Branch: perl
11284            ! t/lib/filter-util.t
11285 ____________________________________________________________________________
11286 [  7912] By: jhi                                   on 2000/11/29  03:09:08
11287         Log: Subject: [PATCH 5.7.0] OUT keyword for xsubpp
11288              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
11289              Date: Tue, 28 Nov 2000 03:27:09 -0500
11290              Message-ID: <20001128032709.A23401@monk.mps.ohio-state.edu>
11291      Branch: perl
11292            ! lib/ExtUtils/xsubpp
11293 ____________________________________________________________________________
11294 [  7911] By: jhi                                   on 2000/11/29  03:06:30
11295         Log: This should have been part of #7872: no need to scan UTF-8
11296              until eternity.
11297      Branch: perl
11298            ! utf8.c
11299 ____________________________________________________________________________
11300 [  7910] By: jhi                                   on 2000/11/29  02:50:04
11301         Log: One more perltie.pod nit from Casey R. Tweten.
11302      Branch: perl
11303            ! pod/perltie.pod
11304 ____________________________________________________________________________
11305 [  7909] By: jhi                                   on 2000/11/29  02:44:23
11306         Log: Document the known sprintf test failures, exact standard
11307              reference from Dominic Dunlop, NonStop-UX testing from Tom Bates.
11308      Branch: perl
11309            ! pod/perldelta.pod t/op/sprintf.t
11310 ____________________________________________________________________________
11311 [  7908] By: jhi                                   on 2000/11/29  02:36:23
11312         Log: Add the Encoding table format documentation.
11313      Branch: perl
11314            + ext/Encode/Encode/EncodeFormat.pod
11315            ! MANIFEST
11316 ____________________________________________________________________________
11317 [  7907] By: jhi                                   on 2000/11/29  02:07:24
11318         Log: Subject: Re: [PATCH] Updating perltie.pod for arrays
11319              From: "Casey R. Tweten" <crt@kiski.net>
11320              Date: Tue, 28 Nov 2000 12:11:41 -0500 (EST)
11321              Message-ID: <Pine.OSF.4.21.0011281209050.25178-100000@home.kiski.net>
11322              
11323              Subject: Re: [PATCH] Updating perltie.pod for arrays
11324              From: "Casey R. Tweten" <crt@kiski.net>
11325              Date: Tue, 28 Nov 2000 15:03:50 -0500 (EST)
11326              Message-ID: <Pine.OSF.4.21.0011281458500.10331-100000@home.kiski.net>
11327      Branch: perl
11328            ! pod/perltie.pod
11329 ____________________________________________________________________________
11330 [  7906] By: nick                                  on 2000/11/28  22:40:59
11331         Log: Initial tidy of setmode() muddle (UNIX does not have, nor need it).
11332      Branch: perlio
11333            ! iperlsys.h perlio.c
11334 ____________________________________________________________________________
11335 [  7905] By: nick                                  on 2000/11/28  22:04:34
11336         Log: Integrate mainline
11337      Branch: perlio
11338           !> (integrate 39 files)
11339 ____________________________________________________________________________
11340 [  7904] By: jhi                                   on 2000/11/28  16:44:43
11341         Log: Subject: [ID 20001128.002] what's the point of example code if it is buggy?
11342              From: Nicholas Clark <nick@babyhippo.co.uk>
11343              Date: Tue, 28 Nov 2000 11:16:57 +0000
11344              Message-Id: <E140ikr-00076N-00@fruitbat.babyhippo.co.uk>
11345      Branch: perl
11346            ! pod/perlipc.pod
11347 ____________________________________________________________________________
11348 [  7903] By: jhi                                   on 2000/11/28  16:40:31
11349         Log: Subject: [PATCH] Updating perltie.pod for arrays
11350              From: "Casey R. Tweten" <crt@kiski.net>
11351              Date: Mon, 27 Nov 2000 17:47:20 -0500 (EST)
11352              Message-ID: <Pine.OSF.4.21.0011271746360.11659-100000@home.kiski.net>
11353      Branch: perl
11354            ! pod/perltie.pod
11355 ____________________________________________________________________________
11356 [  7902] By: jhi                                   on 2000/11/28  16:39:37
11357         Log: Subject: [PATCH] Re: 5.6 bug: split /^/ implies /m modifier (from CLPM)
11358              From: Robin Barker <rmb1@cise.npl.co.uk>
11359              Date: Mon, 27 Nov 2000 17:56:44 GMT
11360              Message-Id: <200011271756.RAA22706@tempest.npl.co.uk>
11361      Branch: perl
11362            ! pod/perlfunc.pod t/op/split.t
11363 ____________________________________________________________________________
11364 [  7901] By: jhi                                   on 2000/11/28  16:28:04
11365         Log: setmode() is a DOSish-only thing.
11366      Branch: perl
11367            ! perlio.c
11368 ____________________________________________________________________________
11369 [  7900] By: jhi                                   on 2000/11/28  16:21:46
11370         Log: Subject: [PATCH] perlcc.PL cleanups
11371              From: Simon Cozens <simon@cozens.net>
11372              Date: Tue, 28 Nov 2000 12:44:35 +0000
11373              Message-ID: <20001128124435.A5500@pembro33.pmb.ox.ac.uk>
11374      Branch: perl
11375            ! utils/perlcc.PL
11376 ____________________________________________________________________________
11377 [  7899] By: gsar                                  on 2000/11/28  06:32:55
11378         Log: reintegrate files missed by change#7895
11379      Branch: maint-5.6/perl
11380           +> ext/ByteLoader/bytecode.h utils/Makefile
11381            - utils/perlbc.PL
11382 ____________________________________________________________________________
11383 [  7897] By: gsar                                  on 2000/11/27  18:22:47
11384         Log: can't integrate these two files, for some reason
11385      Branch: maint-5.6/perl
11386            - ext/ByteLoader/bytecode.h utils/Makefile
11387 ____________________________________________________________________________
11388 [  7895] By: gsar                                  on 2000/11/27  18:11:21
11389         Log: integrate changes#6763..6766,6770,6773,6775..6776,6778,6780,
11390              6782..6791,6793..6814,6816,6818..6822,6824..6830,6838..6849,
11391              6757..6890,6892..6901 from mainline
11392              
11393              Bytecompiler patches from Benjamin Stuhl.
11394              
11395              More bytecompiler.
11396              
11397              Subject: [PATCH blead] B:: missing dependency
11398              
11399              Subject: [PATCH: 6757] configure.com updates and syslog build
11400              
11401              Long double Gconvert fixes from Yitzchak Scott-Thoennes
11402              and Spider Boardman.
11403              
11404              Subject: [PATCH blead] nextchar() abuse misses an optimisation
11405              
11406              Long double fixes from Spider Boardman.
11407              
11408              Make the selection of NVff et al stricter.
11409              
11410              cSVOPo_*v things index into the current PL_curpad
11411              under ithreads, which is different from the curpad
11412              used by the XSUB.  (In other words, the code as-is
11413              before this patch wouldn't work under ithreads.)
11414              
11415              Be portable.
11416              
11417              VMS MMS (make) wants null action.
11418              
11419              Mac and other portability updates from Chris Nandor.
11420              
11421              Storable support, v-version fixes.
11422              Subject: CPAN.pm beta for testing available
11423              
11424              Portability fix from Hugo van der Sanden.
11425              
11426              Bad makefile.
11427              
11428              Subject: [ID 20000823.004] [PATCH 5.6.0+] Pod::Html is too self-contained
11429              
11430              Subject: [PATCH] (Mac OS X): Don't #define environ unless PERL_CORE
11431              
11432              Subject: [PATCH] Re: [ID 20000821.008] Negitive numbers with vec dumps core
11433              
11434              Replace #6705 with a minimal doc patch.
11435              Subject: [PATCH 5.6.0] replace change #6705
11436              
11437              Drop the separate perlbc, perlcc -b should be enough.
11438              
11439              installperl couldn't tell whether it had run tests or not.
11440              Subject: [PATCH] Re: installperl and t/TEST
11441              
11442              Add silencer flags to installperl.
11443              Subject: [PATCH] Making installperl silent.
11444              
11445              Make "make install" by default silent.  A new "install-verbose"
11446              target is verbose.
11447              
11448              More liberal parsing of version numbers.
11449              Subject: Re: CPAN.pm beta for testing available
11450              
11451              Create directories in silence.
11452              Subject: [PATCH] Another silencer for MakeMaker
11453              
11454              DOS patches and portability/porting notes, from Tim Jenness.
11455              
11456              Make installman to recognize the silence flag -S.
11457              
11458              Actually do something with the silencer option.
11459              
11460              Continue silencing.
11461              
11462              Show the doc file, not the temp file.
11463              
11464              Regen perltoc.
11465              
11466              Subject: [PATCH] More silencing of installman.
11467              
11468              Better wording for the vec lvalue diagnostic.
11469              Subject: Re: [PATCH] Re: [ID 20000821.008] Negitive numbers with vec dumps core
11470              
11471              Subject: [PATCH: 6805] several more tweaks to configure.com
11472              
11473              Subject: [PATCH perl@6805, 5.6.0, 5.005_03] prevent rare Perl hang on VMS
11474              
11475              Missing parts of 
11476              Subject: [PATCH: 6789] some endl fixes for VMS wackiness
11477              
11478              Subject: [ID 20000824.029] MakeMaker manifypods fails on DJGPP systems
11479              (applied slightly modified)
11480              
11481              installperl --verbose and --silent.
11482              Subject: Re: [PATCH] More silencing of installman.
11483              
11484              Add install-silent target.
11485              
11486              AIX 4.3.3 has SOCKS in libc with a differently named init routine,
11487              the problem reported in
11488              Subject: [ID 20000825.007] Building stable 5.6.0 on AIX 4.3.3 using SOCKS
11489              
11490              Tweak the sfio/useperlio logic, hopefully as wished in
11491              Subject: [ID 20000825.004] Not OK: perl v5.7.0 +SUIDMAIL +DEVEL6804 on i586-linux 2.2.12 (UNINSTALLED)
11492              
11493              One forgotten file from #6816.
11494              
11495              Subject: [PATCH @6820] installman under -w and strict (was Re: [PATCH] More silencing of installman.)
11496              
11497              Remove duplicately applied patch shards.
11498              Subject: [ID 20000825.012] [PATCH@6822] t/lib/cgi-html.t produces ugly cruft during 'make test'
11499              
11500              Support preserving extremely big/small angles.
11501              
11502              Subject: Re: [ID 20000825.019] Not OK: perl v5.7.0 +SUIDMAIL +DEVEL6820 on alpha-dec_osf 5.1 (UNINSTALLED) 
11503              
11504              Subject: [PATCH] installation not quite silent yet.
11505              
11506              Update the test count.
11507              
11508              Use UVxf, PTR2UV, NVff.
11509              
11510              Document PTR2XX and INT2PTR.
11511              
11512              no-install target a la make -n.
11513              Subject: [PATCH] make no-install (was Re: [PATCH] installation not quite silent yet.)
11514              
11515              grep -e isn't portable.
11516              Subject: [ID 20000825.027] let me (perlbug@perl.com) know how I blew it
11517              
11518              Can't get the test to reliably work thanks to the
11519              inaccurateness of floating point.  "Resolves" bug ids
11520              20000826.003, 20000826.009, 20000826.010,
11521              
11522              Subject: installman buglet
11523              
11524              DJGPP update from Laszlo Molnar.
11525              
11526              Subject: MM_Unix.pm LD_RUN_PATH niggles on Solaris
11527              
11528              Passing -R in ldflags makes now it to appear in the default
11529              for lddlflags, just like with -L.
11530              Subject: Re: MM_Unix.pm LD_RUN_PATH niggles on Solaris
11531              
11532              Test nit.
11533              
11534              Use the actual thread type, not the pointer-to-struct.
11535              
11536              Provice virtual $Config{ccflags_nolargefiles} etc. 
11537              
11538              display_format used as a class method without arguments was broken,
11539              reported in
11540              Subject: Math::Complex->display_format() sets style to 'Math::Complex'
11541              
11542              Subject: [ID 20000828.006] dir name "0" not safe with Cwd.pm
11543              
11544              Subject: [ID 20000828.009] Not OK: perl v5.7.0 +SUIDMAIL +DEVEL6855 on i586-linux 2.2.12 (UNINSTALLED)
11545              
11546              Subject: [PATCH@6855] _Minor_ change to overload.pm pod
11547              
11548              opmini.o may be left around if a build is interrupted.
11549              
11550              Typo in #6858.
11551              
11552              Fix for ID 20000828.001, long doubles were not formatted
11553              correctly (showed up in $], which stopped installing perl).
11554              
11555              An attempt to fix the problem reported in
11556              Subject: Building perl@6856 using gcc/AIX 4.3.3 
11557              I can't test this properly since the gcc installation I have
11558              access to seems to be botched (gcc is calling the AIX cpp,
11559              a losing proposition...)
11560              
11561              Add -ld to archname on long tr...double platforms.
11562              
11563              Subject: hv.h Doc Patch
11564              
11565              Potential cruft.
11566              
11567              Subject: [PATCH bleedperl@6856] warnings fixes
11568              
11569              -S is the silent flag, -s is the strip flag.
11570              Subject: [PATCH] Re: [PATCH] make no-install          
11571              
11572              Take out the SUIDMAIL thing, that will not be
11573              a problem in 5.7.*.
11574              
11575              Subject: [PATCH bleedperl@6866] spellings
11576              
11577              Subject: [PATCH] Re: files not cleaned even by veryclean
11578              
11579              Use minimal @INC in tests, most of the time just '../lib',
11580              so that we simply can't pick up stuff from other Perls than
11581              the one we are testing.  Pointed out by
11582              Subject: Re: [PATCH: 6757] make new Storable tests forgiving of places where not built   
11583              
11584              Update to Getopt::Long 2.24, from Johan Vromans.
11585              
11586              Fix for thinko in #6848.
11587              Subject: Compiler error in ext/Thread/Thread.c (bleadperl@6866)
11588              
11589              Patches all over for people and the files they (hopefully) care about.
11590              
11591              Subject: Net::protoent does not export 'getproto'
11592              
11593              Missed a change in #6869.
11594              
11595              Subject: [PATCH] Warnings in B::Deparse
11596              
11597              Subject: [PATCH] Glob dumping
11598              
11599              Disable one of the tests for now.
11600              
11601              Disabling the one test is a bit tricky.
11602              
11603              Don't forget to tidy up.
11604              
11605              The #6881 removed one dump line.
11606              
11607              Subject: Re: [ID 20000525.003] perldoc fails when Makefile.PL is in cwd
11608              
11609              Under usethreads the dumped variable is IN_PAD.
11610              Subject: Re: [PATCH] Glob dumping
11611              
11612              Subject: [ID 20000829.026] [PATCH 6868] File::Temp
11613              
11614              Subject: [ID 20000829.022] [PATCH 6868] Minor nit in installhtml
11615              
11616              Subject: [ID 20000829.023] [PATCH 6868] perlbug@perl.com --> perlbug@perl.org
11617              
11618              Regen Configure for #6894.
11619              
11620              Subject: [PATCH: 6889] updates to perlebcdic.pod
11621              
11622              Undo namespace pollution of #6878.
11623              Subject: Re: Net::protoent does not export 'getproto'
11624              
11625              Admit that we are leaking scalars.
11626              
11627              Subject: [PATCH 5.6.0] [ID 20000608.006] panic: magic_killbackrefs with blessed global weakrefs
11628      Branch: maint-5.6/perl
11629           !> (integrate 271 files)
11630 ____________________________________________________________________________
11631 [  7894] By: gsar                                  on 2000/11/27  16:00:34
11632         Log: a couple of nits
11633      Branch: maint-5.6/perl
11634            ! MANIFEST pp_sys.c
11635 ____________________________________________________________________________
11636 [  7893] By: gsar                                  on 2000/11/27  15:10:56
11637         Log: integrate changes#6666..6678,6680..6682,6684..6691,6699..6733,
11638              6740..6745,6747..6757,6760
11639              
11640              Subject: Re: [ID 20000816.006] [PATCH @6655] Shell.pm, bug fix, strict and OO Interface
11641              
11642              Subject: [PATCH(2) @6655] Re: perldebut.pod - spelling
11643              
11644              Doc nits spotted by Richard Soderberg.
11645              
11646              move WNOHANG definition to where other such things are
11647              
11648              Make $Config{byteorder} more magical so that it is
11649              dynamically computed: nice for 'fat binaries'.
11650              Subject: [PATCH]: default byteorder
11651              
11652              Subject: [PATCH] Cwd.pm now uses strict
11653              
11654              Subject: Re: [PATCH]Re: Questions about Math::BigFloat
11655              
11656              Get -DLEAKTEST to compile (not necessarily to work, mind)
11657              Subject: [ID 20000724.006] -DLEAKTEST problem
11658              
11659              perldebtut 1.10 from Richard Foley, plus Celsius and Fahrenheit.
11660              
11661              Add perlebcdic from Peter Prymmer, regen toc.
11662              
11663              Don't propose using modules built for 5.005 if no binary
11664              compatibility with 5.005 is attempted.
11665              
11666              Do not use prototyping here.
11667              Subject: [ID 20000817.016] [PATCH] Peek.xs
11668              
11669              Document what the backtick returns if the command fails.
11670              
11671              Add byteorder to the myconfig output.
11672              
11673              Introduce NVef, NVff, and NVgf, use the middle one.
11674              (helps for lib/peek + Linux + long doubles)  Reported in
11675              Subject: [ID 20000814.005] Not OK: perl v5.6.0 on i686-linux-64int 2.2.13       
11676              Use NVs in POSIX math, not doubles.
11677              Subject: [ID 20000817.014] POSIX & modfl
11678              
11679              Subject: [PATCH 5.6.0+] newSVrv() memory leak
11680              
11681              The byteorder code in #6671 was wrong.
11682              
11683              Fix the lib/complex failure of
11684              Subject: [ID 20000814.005] Not OK: perl v5.6.0 on i686-linux-64int 2.2.13       
11685              Linux long double accuracy issue: something that
11686              when printed with %g looks like "2" but int() of it is 1.
11687              
11688              Propagate new Configure vars.
11689              
11690              Unbuffer the output.
11691              
11692              Subject: [PATCH] perltrap.pod spring cleaning
11693              
11694              Subject: [PATCH] perlfunc.pod -- clarifying sprintf array argument issues
11695              Subject: [ID 20000817.018] behaviour change 5.5.3 -> 5.6.0 re "Modification of a read-only value"
11696              
11697              Tiny Getopt::Long patch from Johan Vromans.
11698              
11699              Document code point which makes if (defined %stash::) to work
11700              (noted by Spider Boardman).
11701              
11702              Subject: [PATCH perl@6698] cygwin port
11703              
11704              Document the NDBM_File and ODBM_File as SDBM_File
11705              was documented in #6417.
11706              
11707              The new tests were missing from #6415.
11708              
11709              Add [[:blank:]] as suggested in
11710              Subject: [ID 20000716.024] [=cc=] / [:blank:]
11711              (the [=cc=] has already been taken care of by #6439
11712              so the whole bug report can be closed)
11713              and make [[:space:]] to be equivalent to isspace(3)
11714              (as opposed to \s, which is isSPACE()).  The difference
11715              is that now [[:space:]] matches the mythical vertical tab,
11716              while \s doesn't.
11717              
11718              Don't eat leading os from index entries.
11719              Subject: Re: [ID 20000810.006] Pod::Man Ate My 'O'!
11720              
11721              Subject: [PATCH 5.6.0+] fix for Win32::DomainName
11722              
11723              Typo in pp_complement().
11724              Subject: [PATCH perl-current] Deparse
11725              
11726              Add warnif(), check warnings further up the stack,
11727              all the warnings functions now can take an optional object reference.
11728              Subject: [PATCH bleedperl@6691] warnings pragma update
11729              
11730              Fix a core dump in lib/selfloader under -DDEBUGGING.
11731              Subject: PATCH @6698 for [ID 20000817.007] Not OK: perl v5.7.0 +SUIDMAIL +DEVEL6676 on alpha-dec_osf 4.0f (UNINSTALLED) 
11732              
11733              Subject: [PATCH 5.6.0+] fix for Win32::GetFullPathName and Win32::GetShortPathName
11734              
11735              Subject: [PATCH: 6698] tidy up the temp files left by peek tests on VMS
11736              
11737              Subject: [PATCH: 6698] was Re: [PATCH: 6640] VMS Makefile.SH update (fwd)
11738              Put back the long double avoidance code to POSIX.xs
11739              because VMS seems to need it still.
11740              
11741              Introduce a 'veryclean' target that is like 'distclean'
11742              but also removes *~ and *.orig.
11743              
11744              Subject: [ID 20000817.023] endianness description in perlfunc.pod
11745              
11746              Subject: [PATCH perl@6698] File::Temp fix-ups for OpenVMS
11747              
11748              Let's try #6717 again.
11749              
11750              UTF8 concat fixes.
11751              Subject: [PATCH @6713] Re: [ID 20000815.006] latest patched perl core dumps
11752              
11753              pp_open() could pass an uninitialized filename down to do_open9().
11754              
11755              Subject: Re: [ID 20000819.002] Not OK: perl v5.7.0 +SUIDMAIL +DEVEL6707 on i686-linux 2.2.5-16 (UNINSTALLED)
11756              
11757              Update to CGI 2.72, from Lincoln Stein.
11758              
11759              Subject: [PATCH] Silence MakeMaker (Was: installman)
11760              
11761              Use temporary directory instead of current directory.
11762              Subject: Re: [ID 20000816.011] Test failure in lib/ftmp-security.t
11763              
11764              Document odd vs even subreleases and -Dusedevel.
11765              
11766              The veryclean target needs to clobber.
11767              
11768              Use File::Spec->tmpdir().
11769              
11770              Document the number of exponent digits.
11771              
11772              Mention perlebcdic and perlposix-bc.
11773              
11774              s/this one/the 5.6.0 release/
11775              
11776              The #6724 is here.
11777              
11778              The correct cleaning order is an art.
11779              
11780              small tweaks for change#6705: avoid C++ style comments in C code;
11781              use Perl's malloc API rather than the low level system one
11782              
11783              Array context keeps slithering in.
11784              
11785              Subject: Re: 5.7.0 getting really close, new snapshot: perldelta, Storable
11786              
11787              Subject: [PATCH] os2.c fix for use64bitint
11788              
11789              Update to Pod::LaTeX 0.53.
11790              Subject: [PATCH] lib/Pod/LaTeX.pm updates
11791              
11792              Document the endianness of Alpha more precisely.
11793              
11794              Subject: RE: [PATCH perl@6736] t/pragma/warn/9enabled assumes stdout buffered
11795              
11796              Rename the macro argument because some preprocessors
11797              can't tell the difference and expand arguments also inside
11798              double quoted strings.
11799              
11800              free TLS slot properly on Windows
11801              
11802              use Cwd 'chdir' didn't set $ENV{PWD} correctly on Windows
11803              
11804              Unicos/mk requires elaborate paranoia.
11805              
11806              Tweak the floating point output routine preferences.
11807              
11808              Also under djgpp the timestamps are funky.
11809              
11810              Apply some PodParser 1.18 patches; the Pod/Find.pm
11811              patches cannot be applied since #6712 conflicts.
11812              
11813              Use PodParser 1.18 new test.
11814              
11815              A pod nit.
11816              Subject: [PATCH] pod/perlre.pod (was Re: [ID 20000821.007] $&, $1, etc. disappear when sub returns)
11817              
11818              Be verydeepclean.
11819      Branch: maint-5.6/perl
11820           +> pod/perlebcdic.pod
11821           !> (integrate 106 files)
11822 ____________________________________________________________________________
11823 [  7892] By: jhi                                   on 2000/11/27  15:02:32
11824         Log: Update Changes.
11825      Branch: perl
11826            ! Changes patchlevel.h
11827 ____________________________________________________________________________
11828 [  7891] By: jhi                                   on 2000/11/27  14:57:23
11829         Log: Subject: Re: perlfaq style changes
11830              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
11831              Date: Sat, 25 Nov 2000 23:32:26 -0800
11832              Message-ID: <KyLI6gzkgiRK092yn@efn.org>
11833              
11834              plus a note from Ronald Kimball.
11835      Branch: perl
11836            ! pod/perlfaq.pod pod/perlfaq1.pod pod/perlfaq6.pod
11837 ____________________________________________________________________________
11838 [  7890] By: jhi                                   on 2000/11/27  14:53:14
11839         Log: Subject: [PATCH perl@7825] Re: [ID 20001122.006] weird behaviour of $|
11840              From: Benjamin Holzman <bah@ecnvantage.com>
11841              Date: Sun, 26 Nov 2000 16:27:33 -0500
11842              Message-ID: <20001126162733.J25040@ecnvantage.com>
11843      Branch: perl
11844            ! gv.c
11845 ____________________________________________________________________________
11846 [  7889] By: jhi                                   on 2000/11/27  14:43:11
11847         Log: Subject: [ID 20001127.004] White space problem in perlamiga.pod
11848              From: lvirden@cas.org
11849              Date: Mon, 27 Nov 2000 09:32:06 -0500 (EST)
11850              Message-Id: <200011271432.JAA09550@lwv26awu.cas.org>     
11851      Branch: perl
11852            ! README.amiga
11853 ____________________________________________________________________________
11854 [  7888] By: jhi                                   on 2000/11/27  14:32:34
11855         Log: Restore also the locale test to no-sprintf-taint state.
11856              Fixes the bug 20001127.003.
11857      Branch: perl
11858            ! sv.c t/pragma/locale.t
11859 ____________________________________________________________________________
11860 [  7887] By: gsar                                  on 2000/11/27  14:13:05
11861         Log: integrate changes#6613..6616,6620..6665 from mainline
11862              
11863              VMS configure.com update continues.
11864              
11865              Subject: Test fails / warnings with perl-current #6612
11866              
11867              Subject: [PATCH] @+, @- readonly (was Re: @<punct> interpolating in "")
11868              
11869              Subject: Re: [ID 20000807.003] [PATCH] Debugger treatment of condition "0"
11870              
11871              For now remove the mail code.
11872              
11873              Subject: Re: [PATCH] @+, @- readonly
11874              
11875              Subject: warning: storage class after type is obsolescent
11876              
11877              Subject: sfio2000
11878              
11879              Subject: Re: File::Temp problems on VMS in bleedperl
11880              
11881              README.os2 update.
11882              Subject: Re: [PATCH perl-current] Make op/sprintf.t more comprehensive,
11883              
11884              Make the user to give up his firstborn, err, to knowingly
11885              verify installing an unstable developer release.  Also bump
11886              the release to 5.7.0, but leave a patch tag in the local
11887              patches saying that this is not yet the real thing.
11888              
11889              Update (kinda) to Test 1.14, from Joshua Pritikin.
11890              
11891              make ok etc also for win32.
11892              
11893              Subject: [ID 20000815.005] [PATCH] perldoc not looking in the right place for script pod
11894              
11895              Don't blow limited stacks, a lower number is enough to
11896              tickle the lookbehind limit.
11897              
11898              Use -Dusedevel; regen Configure and the respective Porting stuff.
11899              
11900              Subject: [PATCH] debugger exit code should reflect user exit code
11901              
11902              Subject: [PATCH perl@6620] cygwin port
11903              
11904              Missed a file from #6638.
11905              
11906              Subject: [PATCH] for t/lib/peek.t (was Re: [ID 20000814.005] Not OK: perl v5.6.0 on i686-linux-64int 2.2.13)
11907              
11908              magic callbacks all need to have same type signature
11909              
11910              Subject: [ID 20000815.014] [PATCH] INSTALL doesn't mention 64 bit support.
11911              
11912              Fix a dependency problem.
11913              Subject: [PATCH: 6640] VMS Makefile.SH update
11914              
11915              The numeric locale was reset to "C" by s?printf and never restored.
11916              Subject: [ID 20000809.003] setlocale(LC_NUMERIC...) produces different results in 5.005 and 5.6
11917              No test since adding the failing example to locale.t
11918              does not fail -- probably because the locale settings are so
11919              thoroughly tweaked by that time.  Running the example standalone
11920              does fail, though.  UPDATE: test case added at change #7540.
11921              
11922              Subject: [ID 20000324.040] minor fix to perlhpux.pod
11923              
11924              Update to CPAN 1.57.
11925              
11926              Subject: [PATCH] Cwd::_backtick_pwd does not check return value
11927              
11928              Change the perlbug address to perl.org since it's more forgiving.
11929              
11930              Change the regx compilation error markers to use = instead of <
11931              since pod makes using the latter quite messy.  Reported in
11932              ID 20000814.006 by Abigail and in
11933              Subject: Unknown escape E<> ?
11934              
11935              Update to perldebtut 1.9, from Richard Foley.
11936              
11937              check that the number pseudo children doesn't exceed
11938              MAXIMUM_WAIT_OBJECTS, which is currently 64 (avoids overflowing
11939              the WaitForMultipleObjects() limit that would cause wait()
11940              to crash)
11941              wait() and waitpid() could potentially be rewritten to use
11942              more than one thread to do the waiting to eliminate this
11943              limitation
11944              
11945              change#6328 could make close(SOCKET) return false on windows
11946              when it shouldn't
11947              
11948              pod nit seen in passing
11949              
11950              on windows, the return values from wait() and waitpid() don't
11951              match those of pseudo-pids
11952              
11953              waitpid() now handles externally spawned pids correctly;
11954              fixes for backtick/wait/waitpid failures on Windows 9x
11955              these changes make the pid returned by process functions on
11956              Windows 9x always positive by clearing the high bit (which
11957              is always set on Win9x); pseudo-process PIDs are likewise
11958              always negative now on Win9x (just as on NT/2000)
11959              
11960              trailing new %ENV entries weren't being pushed into the real
11961              environment of subprocesses on Windows
11962              
11963              Tweak the regex compilation errors once more.
11964              
11965              avoid warnings from dense compiler
11966              
11967              add "ok" targets from change#6632 in makefile.mk
11968      Branch: maint-5.6/perl
11969            - lib/Pod/PlainText.pm vms/configure.com
11970           !> (integrate 66 files)
11971 ____________________________________________________________________________
11972 [  7886] By: jhi                                   on 2000/11/27  13:54:18
11973         Log: __FUNCTION__ isn't portable and trying to emulate it leads
11974              into practically spelling out the name of the function.
11975              Takes care of the bug 20001127.001.
11976      Branch: perl
11977            ! perlio.c
11978 ____________________________________________________________________________
11979 [  7885] By: gsar                                  on 2000/11/27  13:53:18
11980         Log: integrate changes#6540..6541,6546..6549,6552..6554,6557..6606,
11981              6610..6611 from mainline
11982              
11983              Make regular expression parse error messages easier to understand.
11984              Subject: Re: enhanced(?) regex error messages
11985              
11986              Tiny tidying on report_evil_fh().
11987              
11988              Subject: Re: enhanced(?) regex error messages 
11989              plus Capitalize the error messages, plus perldiag them.
11990              
11991              Subject: Patch against 5.6.0 to allow "-d:Module=arg,arg,arg"
11992              
11993              Document here-doc better.
11994              
11995              Subject: [ID 20000807.003] [PATCH] Debugger treatment of condition "0"
11996              
11997              Subject: [PATCH] Re: [ID 20000807.008] Double reads considered evil? (deja vu)
11998              Do away with array context, from Daniel Chetlin <daniel@chetlin.com>
11999              (either perlbug or p5p ate the original), plus regen
12000              perlapi and perltoc. 
12001              
12002              Regen global.sym.
12003              
12004              Double check that we have a dirhandle.
12005              
12006              Subject: Re: enhanced(?) regex error messages
12007              (plus two small patches sent privately)
12008              (this still seems to leave few test failures)
12009              
12010              warn is a macro, avoid using at a variable to avoid warnings
12011              in some configurations; readdir.t is too conservative in
12012              estimating number of *.t's
12013              
12014              Get back into sync with Jeffrey on the enhanced regex warnings.
12015              
12016              Subject: [PATCH 5.6.0] cygwin port
12017              
12018              Zero entries were skipped, fix from Adrian Goalby
12019              <argoalby@yahoo.co.uk>
12020              
12021              Subject: Remove dead entry in perldiag
12022              
12023              Amend the description of Perl6.
12024              Subject: [PATCH Perl-5.6.0] perlfaq1.pod
12025              
12026              detypo
12027              
12028              It's the 2ndO'ROSSC.
12029              
12030              Revert the sv.c part of #6559, a better fix is needed.
12031              
12032              Iterating perl6 description.
12033              
12034              Update to Term::ANSIColor 1.03, from Russ Allbery.
12035              
12036              Update to Getopt::Long 2.23_05, from Johan Vromans.
12037              
12038              Small AUTHORS and MAINTAIN updates.  Could do with big updates.
12039              
12040              Update to Pod::Parser 1.17, from Brad Appleton.
12041              
12042              Update to CPAN 1.56, from Andreas König.
12043              
12044              Update to CGI 2.70, from Lincoln Stein.
12045              
12046              Put back the std @INC thing.
12047              
12048              Fixes to looking-like-number to keep behaviour as it was in 5.005_03.
12049              Subject: Re: [ID 20000810.002] $a["1foo"] same as $a[0]
12050              
12051              Document the IO::Select timeout.
12052              
12053              sleep(1) does not necessarily return 1.
12054              Subject: [PATCH bleadperl] op/lex_assign.t  
12055              
12056              Subject: debugger "d" command doesnt check line number
12057              
12058              B::Deparse didn't do sub attributes.
12059              Subject: B::Deparse was Re: [ID 20000808.005] refs to returned lvalues are lvalues??
12060              
12061              Preprocessing and postprocessing for File::Find.
12062              Subject: Patch to Find::File.pm to allow alphabetical results
12063              
12064              Subject: Re: [ID 20000809.005] trouble with long string and /m modifier - uninitialized value 
12065              
12066              Subject: Re: [ID 20000809.006] Debugger lost the ability to see $1 et al
12067              
12068              Subject: Re: [ID 20000730.003] utf8::length() bad
12069              
12070              Subject: Getting perlio and threads to compile
12071              (the Solaris version changes in Configure skipped)
12072              
12073              Tests for #6589.
12074              Subject: Re: B::Deparse was Re: [ID 20000808.005] refs to returned lvalues are lvalues??
12075              
12076              Add Perl debugging tutorial, regen toc. 
12077              Subject: perldebtut.pod
12078              
12079              Add a few missing files, update MANIFEST.
12080              
12081              Rewrite of vms/subconfigure.com as configure.com,
12082              from Peter Prymmer and the vmsperl crew.
12083              
12084              Should have deleted this in #6603.
12085              
12086              Fix the test for 5005threads.
12087              
12088              Fix-n-skip the tests under 5005threads.
12089              
12090              Subject: [PATCH] t/op/regmesg.t fails if REG_INFTY set
12091              
12092              Upgrade to CGI 2.71, from Lincoln Stein.
12093      Branch: maint-5.6/perl
12094           +> lib/CGI/eg/make_links.pl lib/CGI/eg/wilogo.gif
12095           +> lib/Pod/PlainText.pm pod/perldebtut.pod t/lib/gol-oo.t
12096           +> t/op/regmesg.t t/pod/find.t vms/configure.com
12097            - vms/subconfigure.com
12098            ! lib/lib.pm
12099           !> (integrate 115 files)
12100 ____________________________________________________________________________
12101 [  7884] By: jhi                                   on 2000/11/27  13:44:33
12102         Log: Subject:  [PATCH perl@7795 (and earlier)] VMS test cleanup
12103              From: lane@DUPHY4.Physics.Drexel.Edu (Charles Lane)
12104              Date:     Mon, 27 Nov 2000 08:23:54 EST
12105              Message-Id: <001127082318.6381c@DUPHY4.Physics.Drexel.Edu>
12106      Branch: perl
12107            ! vms/descrip_mms.template vms/test.com
12108 ____________________________________________________________________________
12109 [  7883] By: gsar                                  on 2000/11/27  11:50:46
12110         Log: integrate changes#6469..6484,6486..6501,6504..6505,6507..6509,
12111              6511..6513,6515..6523,6525..6536
12112              
12113              The swallow_bom() saga continues.  The #23 of require.t
12114              (UTF16-LE) still fails (silently, no output) but the #22
12115              (UTF16-BE) seems to be working now.  The root of the
12116              failure may be in sv_gets(): is it UTF-16LE-aware,
12117              especially when it comes to line endings? 
12118              
12119              Document the problem with -P in HP-UX and its workaround.
12120              
12121              Subject: [PATCH] allow non-variable as lhs of non-updating tr///
12122              (aka ID 20000730.002)
12123              
12124              Subject: fix and question re: waitpid() under win32
12125              
12126              Make the safety catch for buggy gccs work with triple version
12127              numbers like 2.95.2.  Reported in
12128              Subject: [ID 20000731.005] Perl 5.6.0 "Configure" fails to recognize gcc 2.95.2
12129              
12130              In Digital UNIX warn if gcc explicitly chosen because even
12131              2.95.2 is known to cause problems.
12132              
12133              Make chr() for values >127 to create utf8 when under utf8.
12134              
12135              various syntax errors and such (not fixed: comp/require.t#22 coredump
12136              on Windows)
12137              
12138              Stash away the largefiles flags and libswanted.
12139              
12140              BOM patching from Simon Cozens.
12141              
12142              If gccosandvers is equal to osname, clear gccosandvers.
12143              
12144              Make p4desc to skip non-mainperl branches by default.
12145              
12146              Subject: [Proposed PATCH] Let Perl define QUAD_MIN and _MAX itself
12147              
12148              The test from this
12149              Subject: Re: [ID 20000411.002] qw() gives different results in 5.6 to previous versions
12150              
12151              In new BSDs changes to argv[] do not show up in ps(1) output,
12152              instead one must use setproctitle().  This was already addressed
12153              by change #6457, but the below has a new variant for FreeBSD 4.0
12154              or later, and the matter is also documented more.
12155              
12156              FreeBSD 3.* updates from
12157              Subject: [ID 20000801.007] setting $0 on FreeBSD 4.x does not get reflected in /bin/ps
12158              
12159              regen_headers, regen perltoc.
12160              
12161              Document in one place the memory abstractions used in Perl core.
12162              
12163              memcpy has n o in it, as pinted ut by Sarathy.
12164              
12165              Remove the extraneous "main::" prefix from all the
12166              "opened only for", "on closed", and "never opened" warnings.
12167              
12168              The name of a filehandle does not have <these>.
12169              
12170              The tr utf8 patching continues.
12171              
12172              The new setproctitle() feature is available only in 
12173              bleeding edge FreeBSD.  From Paul Saab.
12174              
12175              Subject: [PATCH bleadperl] [ID 20000731.010] regex error 
12176              
12177              Dump UVs as UVs in Data::Dumper.
12178              
12179              detypo #6494
12180              
12181              Document the IVdf UVuf UVof UVxf.
12182              
12183              require.t needs binmode() to work on windows
12184              
12185              Generate OP_IS_SOCKET() and OP_IS_FILETEST() macros
12186              that are hopefully soon put into use.
12187              
12188              Allow "no Module;" even if there is no 'unimport'.
12189              
12190              Better skip message for the test; one of the two problems in
12191              Subject: [ID 20000224.003] Not OK: perl v5.5.660 on i86pc-solaris 2.7
12192              
12193              The subtest 4 may fail also on VOBS, as pointed out
12194              by Nick Ing-Simmons in November 1999, bug id 19991124.003
12195              (but the failure in that bug report isn't the subtest 4).
12196              
12197              Be more informative on what is skipped and why,
12198              also repeat the list at the end.
12199              
12200              Add a URL for FSF.
12201              
12202              Subject: [PATCH] sv.h documentation - SvLEN
12203              
12204              Subject: [PATCH bleadperl] [ID 20000803.001] further regexp counting problems
12205              
12206              Subject: [PATCH perl-current] Comings and goings in op/sprintf.t
12207              
12208              Subject: [PATCH] bad cppsymbols on os2 + Configure question
12209              
12210              Subject: [ID 20000802.002] [PATCH] memory pseudo-leak in sv_dump
12211              
12212              Subject: [ID 20000802.004] Tests op/grent.t and op/pwent.t fail unnecessarily
12213              mention the idea of @( and @)
12214              
12215              This is 6512.  Really.
12216              
12217              Subject: [ID 19990721.004] Documentation bug in perlfunc
12218              
12219              Subject: Minor tweak to perlvar.pod
12220              
12221              In the warnings call filehandles consistently so;
12222              add "unopened" warning for stat().
12223              
12224              After the #6519 a warning about stat() is just that,
12225              not about a filetest, which now have their own warning.
12226              
12227              Subject: [ID 20000804.002] configure.gnu and arguments with whitespace characters
12228              
12229              Subject: Re: Array vs. List context
12230              
12231              Subject: New perlcc, take 2
12232              
12233              Weed buglets pointed out by
12234              Subject: Re: [ID 20000803.005] miniperl aborts during Perl make
12235              
12236              gcc versions might have (parentheses) in them.
12237              
12238              Subject: [ID 20000724.004] Perl interpreter segfault when using built-in flock
12239              
12240              Essential prototype changes were missing from #6527.
12241              Also make report_evil_fh() more bomb-proof.
12242              
12243              Zap lib/Sys directory when cleaning up.
12244              
12245              Change the Policy policy: now -Dprefix= with an existing
12246              Policy.sh and prefix == siteprefix == vendorprefix, then all
12247              of them follow along the new prefix.
12248              Subject: Re: [ID 20000508.002] -Dprefix completely broken [PATCH]
12249              
12250              Continue fixing the io warnings.  This also
12251              sort of fixes bug ID 20000802.003: the core dump
12252              is no more.  Whether the current behaviour is correct
12253              (giving a warning: "Not a format reference"), is another matter.
12254              
12255              Have symbols for the IoTYPEs.
12256              
12257              Subject: [PATCH] perlfunc.pod use documentation (5.6.0)
12258              
12259              Document a bit that UDP is not what you might think.
12260              Subject: Re: IO::Socket::INET bug sending large UDP packets/fragmentation
12261              tr memory corruption fix from Simon Cozens.
12262              
12263              Plug the security hole described in the Aug 05 2000 bugtraq message
12264              "sperl 5.00503 (and newer ;) exploit" by Michal Zalewski.
12265              The security hole exists only in suidperls, which isn't
12266              installed or even built by default.
12267      Branch: maint-5.6/perl
12268           !> (integrate 71 files)
12269 ____________________________________________________________________________
12270 [  7882] By: gsar                                  on 2000/11/27  10:25:36
12271         Log: integrate changes#6439..6444,6446..6453,6455..6457,6460..6465,6467..6468
12272              from mainline
12273              
12274              Make the unimplemented POSIX regex features [[.cc.]] and [[=c=]]
12275              to be fatal errors (instead of by default ignoring them, and
12276              ignoring with a bug: even though -w gave an error, the opening [
12277              was left in)  Reported in:
12278              
12279              Subject: [PATCH: perl@6409] bug fix for munchconfig (turned up by CXX)
12280              
12281              Subject: [PATCH] split /^/
12282              
12283              MacOS nits from Matthias Neeracher.
12284              
12285              More split() doc and test patches from Mike Guy.
12286              
12287              Allow "sub AUTOLOAD;" to stop AUTOLOAD inheritance,
12288              from Graham Barr in the module list.
12289              
12290              docfix from Peter Scott <Peter@PSDT.com>.
12291              
12292              File::Temp patches for VMS and OS/2 from Tim Jenness.
12293              
12294              open() wariness in perlbug.
12295              
12296              Subject: [PATCH] minor doc change - perlguts
12297              
12298              Subject: Minor doc patch: handy.h
12299              
12300              Be wary of close()s, too.
12301              
12302              Further File::Temp patches from Yitzchak Scott-Thoennes
12303              and Craig A. Berry.
12304              
12305              Subject: [PATCH] fixes bug 20000508.004
12306              
12307              Subject: [ID 19990709.002] [DOCUMENTATION PATCH] perldiag
12308              
12309              Allow "no AutoLoader;", based on change #6444,
12310              suggested by Graham Barr.
12311              
12312              Use setproctitle() if available to modify $0.
12313              
12314              Warn if the version of the operating system used to compile gcc
12315              differs from the current version of the operating system.
12316              Also display the gcc compilation os and version in myconfig.
12317              Inspiration from
12318              
12319              Tiny fixes for #6460.
12320              
12321              The problem described in this
12322              Subject: [ID 20000322.018] named chars aren't magical enough
12323              has been fixed in perl 5.6.0 but just in case added a test
12324              to keep it away.  (The report from Joseph Hall.)
12325              
12326              Tune the comments and hopefully stop a memory leak.
12327              
12328              Subject: UTF8 concat
12329              (with a memory leak fixed, plus a few casts added)
12330              This also seems to help for
12331              Subject: [ID 20000716.015] join UTF8 weirdness
12332              
12333              Do not upgrade SVs into utf8 just because they participate
12334              in eq or cmp.  Reported and fix suggested in
12335              Subject: [ID 20000720.009] sv_eq UTF8 bug
12336              
12337              Fix the HALF_UPGRADE() macro introduced in #6263.
12338              
12339              Find green threads before native threads.
12340              Subject: Re: Patch to jpl/JNI/Makefile.PL
12341      Branch: maint-5.6/perl
12342           !> (integrate 30 files)
12343 ____________________________________________________________________________
12344 [  7881] By: jhi                                   on 2000/11/27  05:48:41
12345         Log: It seems that *both* the unused submatch loop cleanup
12346              codes are needed.
12347      Branch: perl
12348            ! regexec.c
12349 ____________________________________________________________________________
12350 [  7880] By: jhi                                   on 2000/11/27  04:50:07
12351         Log: Clean .exists deeper.
12352      Branch: perl
12353            ! Makefile.SH
12354 ____________________________________________________________________________
12355 [  7879] By: jhi                                   on 2000/11/27  02:31:35
12356         Log: The code in regcppop() (see #7878) contains the correct lower
12357              limit for the unused submatch 'cleanup' loop so that under
12358              "use utf8" the following code wouldn't dump core:
12359              "," =~ /([^,]*,)*/  With the the wrong lower limit (>=1)
12360              the cleanup loop in regtry() stomped beyond allocated area
12361              in the startp[] array.  Therefore, copied the correct lower
12362              loop limit (*PL_reglastparen) to regtry().  Note: something
12363              may still not be quite right: why was the _higher_ loop limit
12364              (prog->nparens) different in the utf8 case?
12365              
12366              After this patch "./perl -Ilib -Mutf8 t/op/regexp.t" works
12367              without core dumps, there were about 17 of them before
12368              the patch (with us since Perl 5.7.0).  Two failures, still:
12369              496 and 505 (though these may not be severe).
12370              
12371              Patch #7881 is also needed since both the cleanup loops
12372              seem to be needed.
12373              
12374              Also, the t/op/pat#44 seems to core dump under utf8.
12375              Plus a couple of failures.  UGH-8.
12376      Branch: perl
12377            ! regexec.c
12378 ____________________________________________________________________________
12379 [  7878] By: jhi                                   on 2000/11/27  02:21:17
12380         Log: The unused submatch cleanup code in regtry() seems to be more crucial,
12381              the code in regcppop() seems to be redundant for the test suite --
12382              but it contains a germ of truth, and it needed for the build
12383              process itself: see #7879 and #7881.
12384      Branch: perl
12385            ! regexec.c
12386 ____________________________________________________________________________
12387 [  7877] By: jhi                                   on 2000/11/27  01:53:09
12388         Log: Comment on comment.
12389      Branch: perl
12390            ! regexec.c
12391 ____________________________________________________________________________
12392 [  7876] By: jhi                                   on 2000/11/27  00:49:59
12393         Log: Adjust the docs to agree with #7875.
12394      Branch: perl
12395            ! pod/perllocale.pod
12396 ____________________________________________________________________________
12397 [  7875] By: jhi                                   on 2000/11/27  00:49:27
12398         Log: Retract #7863.  It makes more sense not to taint formatted output,
12399              not even by sprintf().
12400      Branch: perl
12401            ! sv.c
12402 ____________________________________________________________________________
12403 [  7874] By: jhi                                   on 2000/11/26  23:36:02
12404         Log: Debug dump of ANYOFUTF8 was garbage (data from ANYOF).
12405              Not really fixed (should really dump the UTF-8 charclass),
12406              but stopped displaying the garbage.
12407              
12408              Also add a note on the (missing) Unicode PSXSPC and BLANK.
12409      Branch: perl
12410            ! regcomp.c
12411 ____________________________________________________________________________
12412 [  7873] By: jhi                                   on 2000/11/26  21:31:13
12413         Log: BOUND regex opcodes (\b, \B) could try to scan zero length UTF-8.
12414      Branch: perl
12415            ! regexec.c
12416 ____________________________________________________________________________
12417 [  7872] By: jhi                                   on 2000/11/26  21:06:04
12418         Log: No need to scan till infinity, 13 is enough.
12419      Branch: perl
12420            ! handy.h utf8.c
12421 ____________________________________________________________________________
12422 [  7871] By: jhi                                   on 2000/11/26  20:20:32
12423         Log: Test line numbers are different with utf8.
12424      Branch: perl
12425            ! t/op/re_tests
12426 ____________________________________________________________________________
12427 [  7870] By: jhi                                   on 2000/11/26  20:10:12
12428         Log: Message nit.
12429      Branch: perl
12430            ! regcomp.c
12431 ____________________________________________________________________________
12432 [  7869] By: jhi                                   on 2000/11/26  19:01:05
12433         Log: Make utf8_length() and utf8_distance() (the latter of which
12434              is unused at the moment) to be less forgiving about bad UTF-8.
12435      Branch: perl
12436            ! embed.h embed.pl objXSUB.h proto.h utf8.c
12437 ____________________________________________________________________________
12438 [  7868] By: jhi                                   on 2000/11/26  18:45:56
12439         Log: Subject: Re: [ID 20001125.004] OK: perl v5.7.0 +DEVEL7825 on i686-linux 2.2.17 (UNINSTALLED)
12440              From: Benjamin Holzman <bah@ecnvantage.com>
12441              Date: Sat, 25 Nov 2000 20:40:20 -0500       
12442              Message-ID: <20001125204020.A25040@ecnvantage.com>              
12443              
12444              Debian allows installing /usr/bin/locale without installing
12445              any locales, an error message will ensue.
12446      Branch: perl
12447            ! t/pragma/locale.t
12448 ____________________________________________________________________________
12449 [  7867] By: jhi                                   on 2000/11/26  18:31:12
12450         Log: Subject: Re: [PATCH: perl@7825] SvTEMP-ness on rhs of aassign can wreak havoc
12451              From: Benjamin Holzman <bah@ecnvantage.com>
12452              Date: Sun, 26 Nov 2000 02:42:34 -0500
12453              Message-ID: <20001126024234.G25040@ecnvantage.com>
12454              
12455              Patch for the bug 20000212.002.
12456      Branch: perl
12457            ! sv.c t/op/array.t
12458 ____________________________________________________________________________
12459 [  7866] By: jhi                                   on 2000/11/26  18:28:09
12460         Log: Subject: PATCH: File::Temp fix on WindowsNT/VMS
12461              From: Tim Jenness <t.jenness@jach.hawaii.edu>
12462              Date: Fri, 24 Nov 2000 18:38:34 -1000 (HST)
12463              Message-ID: <Pine.LNX.4.21.0011241833230.18423-100000@lapaki.jach.hawaii.edu>
12464              
12465              File::Temp 0.11.
12466      Branch: perl
12467            ! lib/File/Temp.pm t/lib/ftmp-tempfile.t
12468 ____________________________________________________________________________
12469 [  7865] By: jhi                                   on 2000/11/26  18:24:22
12470         Log: The metaconfig unit change for #7864.
12471      Branch: metaconfig/U/perl
12472            ! need_va_copy.U
12473 ____________________________________________________________________________
12474 [  7864] By: jhi                                   on 2000/11/26  18:23:41
12475         Log: Make the va_copy() test not to be so talkative.
12476      Branch: perl
12477            ! Configure config_h.SH
12478 ____________________________________________________________________________
12479 [  7863] By: jhi                                   on 2000/11/26  18:11:02
12480         Log: Fix locale inconsistencies unearthed by Hugo's work.
12481              Now the floating point sprintf really does taint the result
12482              string as perllocale promises (has promised for a long time)
12483              if "use locale" is in the lexical scope.
12484      Branch: perl
12485            ! sv.c t/pragma/locale.t
12486 ____________________________________________________________________________
12487 [  7862] By: jhi                                   on 2000/11/26  00:35:15
12488         Log: Subject: [PATCH] Re: pp_add -> pp_i_add efficiency hack?
12489              From: Nicholas Clark <nick@ccl4.org>
12490              Date: Sun, 26 Nov 2000 00:07:50 +0000
12491              Message-ID: <20001126000750.A22446@plum.flirble.org>
12492              
12493              Infinit.
12494      Branch: perl
12495            ! sv.c
12496 ____________________________________________________________________________
12497 [  7861] By: jhi                                   on 2000/11/26  00:01:26
12498         Log: Integrate perlio.
12499      Branch: perl
12500           !> doio.c perlio.c perliol.h pp_sys.c win32/makefile.mk
12501 ____________________________________________________________________________
12502 [  7860] By: nick                                  on 2000/11/25  22:04:17
12503         Log: Correct relative path from new ext\Filter\Util\Call location
12504              back to miniperl.
12505      Branch: perlio
12506            ! win32/makefile.mk
12507 ____________________________________________________________________________
12508 [  7859] By: nick                                  on 2000/11/25  21:26:54
12509         Log: Integrate mainline.
12510      Branch: perlio
12511           +> ext/Filter/Util/Call/Call.pm ext/Filter/Util/Call/Call.xs
12512           +> ext/Filter/Util/Call/Makefile.PL t/lib/filter-util.pl
12513           +> t/lib/filter-util.t
12514            - ext/Filter/Util/Call.pm ext/Filter/Util/Call.xs
12515            - ext/Filter/Util/Makefile.PL t/lib/filt-util.pl
12516            - t/lib/filt-util.t
12517           !> AUTHORS Configure MANIFEST README.amiga configure.com doio.c
12518           !> embed.h embed.pl ext/B/B.pm ext/B/B/Lint.pm ext/B/B/Terse.pm
12519           !> hints/solaris_2.sh hints/uwin.sh hints/vmesa.sh
12520           !> lib/ExtUtils/MM_Unix.pm makedef.pl perl.h perlio.c perlio.h
12521           !> perlsdio.h proto.h t/lib/io_sock.t win32/Makefile
12522           !> win32/makefile.mk
12523 ____________________________________________________________________________
12524 [  7858] By: gsar                                  on 2000/11/25  20:52:17
12525         Log: C<foreach my $x ...> in pseudo-fork()ed process may diddle
12526              parent's memory; fix it by keeping track of the actual pad
12527              offset rather than a raw pointer (this change is probably also
12528              relevant to non-ithreads case to avoid fallout from reallocs of
12529              the pad array, but is currently only enabled for the ithreads
12530              case in the interests of minimal disruption to existing "well
12531              tested" code)
12532      Branch: perl
12533            ! embed.h embed.pl global.sym objXSUB.h perlapi.c pp_ctl.c
12534            ! proto.h scope.c scope.h sv.c t/op/fork.t
12535 ____________________________________________________________________________
12536 [  7857] By: nick                                  on 2000/11/25  20:01:28
12537         Log: All tests pass on Win32/gcc/USE_PERLIO.
12538              - when crlf layer is pushed make unix-level binary.
12539              - remove :crlf injection in pp_backtick in pp_sys.c
12540              - (Change dependacy of extension .dll's to perldll.def rather than perl.exe)
12541      Branch: perlio
12542            ! doio.c perlio.c pp_sys.c win32/makefile.mk
12543 ____________________________________________________________________________
12544 [  7856] By: jhi                                   on 2000/11/25  18:38:30
12545         Log: Update the metaconfig units for #7855.
12546      Branch: metaconfig/U/perl
12547            ! useperlio.U usesocks.U
12548 ____________________________________________________________________________
12549 [  7855] By: jhi                                   on 2000/11/25  18:37:54
12550         Log: Undo the SOCKS workarounds, instead start using PerlIO
12551              if SOCKS is selected.
12552              
12553              Subject: perl@7847, [ID 20001030.005], close-patch, perlio - The big cleanup
12554              From: Jens Hamisch <jens@Strawberry.COM>
12555              Date: Fri, 24 Nov 2000 18:31:30 +0100
12556              Message-ID: <20001124183130.E28337@Strawberry.COM>
12557              
12558              Subject: Re: perl@7847, [ID 20001030.005], close-patch, perlio - Patch the patch ...
12559              From: Jens Hamisch <jens@Strawberry.COM>
12560              Date: Fri, 24 Nov 2000 19:11:51 +0100
12561              Message-ID: <20001124191151.A28753@Strawberry.COM>
12562      Branch: perl
12563            ! Configure doio.c embed.h embed.pl makedef.pl perl.h perlio.c
12564            ! perlio.h perlsdio.h proto.h t/lib/io_sock.t
12565 ____________________________________________________________________________
12566 [  7854] By: jhi                                   on 2000/11/25  17:39:08
12567         Log: Undo #7848.  Some of the code seems to use walkoptree(),
12568              some walkoptree_slow().  An unfinished renaming?
12569              Now the sub is walkoptree() (which is @EXPORT_OK),
12570              the walkoptree_slow() is a typeglob alias to walkoptree.
12571              This makes the tests to pass, at least.
12572      Branch: perl
12573            ! ext/B/B.pm ext/B/B/Lint.pm ext/B/B/Terse.pm
12574 ____________________________________________________________________________
12575 [  7853] By: nick                                  on 2000/11/24  22:24:33
12576         Log: Re-arrange crlf vs binary for platforms that care.
12577              crlf layer is now "the" buffer layer and can turn its behaviour on/off.
12578              Lip-service to making stdio layer work on such platfroms (untested).
12579              Now fails 3 tests rather than one, checkin to see if I can debug 
12580              the issue under linux. (Do not merge.)
12581      Branch: perlio
12582            ! doio.c perlio.c perliol.h
12583 ____________________________________________________________________________
12584 [  7852] By: jhi                                   on 2000/11/24  18:57:39
12585         Log: AUTHORS edits.
12586      Branch: perl
12587            ! AUTHORS
12588 ____________________________________________________________________________
12589 [  7851] By: jhi                                   on 2000/11/24  17:34:56
12590         Log: Add Jan-Erik Karlsson.
12591      Branch: perl
12592            ! AUTHORS
12593 ____________________________________________________________________________
12594 [  7850] By: jhi                                   on 2000/11/24  17:27:56
12595         Log: Configure should find stdchar on its own.
12596      Branch: perl
12597            ! hints/solaris_2.sh
12598 ____________________________________________________________________________
12599 [  7849] By: jhi                                   on 2000/11/24  17:24:55
12600         Log: Subject: PATCH over 7848: Filter test flawed
12601              From: andreas.koenig@anima.de (Andreas J. Koenig)
12602              Date: 24 Nov 2000 10:28:29 +0100
12603              Message-ID: <m3k89tbtxe.fsf@ak-71.mind.de>
12604      Branch: perl
12605            ! t/lib/filter-util.t
12606 ____________________________________________________________________________
12607 [  7848] By: jhi                                   on 2000/11/24  17:22:15
12608         Log: Subject: [ID 20001124.001] B exports "walkoptree" but does not define it
12609              From: Simon Cozens <simon@pembro4.pmb.ox.ac.uk>
12610              Date: Fri, 24 Nov 2000 16:12:58 +0000
12611              Message-Id: <E13zLT8-0005FN-00@pembro4.pmb.ox.ac.uk>
12612      Branch: perl
12613            ! ext/B/B.pm
12614 ____________________________________________________________________________
12615 [  7847] By: jhi                                   on 2000/11/24  03:07:01
12616         Log: Integrate perlio.
12617      Branch: perl
12618           !> doio.c perlio.c perlio.h pp_sys.c t/lib/io_tell.t
12619           !> win32/makefile.mk
12620 ____________________________________________________________________________
12621 [  7846] By: gsar                                  on 2000/11/24  00:55:57
12622         Log: integrate changes#6415..6418,6420..6438 from mainline
12623              
12624              Fix the bitvector ops for utf8 (tricky since past 7 bits
12625              the utf8 'characters' can be more than one octet).
12626              
12627              MPE/ix updates for perl 5.6.0 from Mark Bixby.
12628              
12629              Subject: SDBM_File documentation
12630              
12631              Detypo.
12632              
12633              Decutandpasto.
12634              
12635              Send all installperl messages to STDERR and be -w clean.
12636              
12637              Out-of-date note removed.
12638              
12639              Protect against "wild next"s, that is, callbacks doing "next"
12640              instead of "return".
12641              
12642              Use STDOUT consistently.
12643              
12644              The output might have been produced in the wrong order.
12645              
12646              A missing 'break' after the [[:space:]] switch case.
12647              
12648              Add tests for
12649              [ID 19991110.003] another matching finding by pcre author
12650              which has already been fixed by some patch, as verified in
12651              
12652              Documentation to explain the behaviour of map().
12653              
12654              Add an optimization for map-maps-a-list-element-to-more-list-elements
12655              case, but add also notes explaining the relationship of this
12656              patch and the earlier notes by Sarathy.
12657              
12658              Subject: [ID 20000716.023] syslog test fails without sockets
12659              
12660              Subject: Re: [PATCH] [ID 20000716.011] strangeness with split($_ =~ m/.../)
12661              Test cases for #6431.
12662              
12663              File::Spec::VMS fixup for tmpdir from Craig Berry.
12664              
12665              Make the "uninit variable" warning to say "concat or string"
12666              or "join or string" when in concat or join .
12667              
12668              Get UTF16 BOMs working.  Patch from
12669              Subject: Re: [ID 20000719.001] Problem with bleadperl of 7/18/00
12670              
12671              Subject: [PATCH] Make large file tests deal with SIGXFSZ
12672              
12673              Subject: [ID 20000724.003] Documentation changes for perllocale.pod
12674              
12675              Subject: [PATCH] av.c apidoc
12676      Branch: maint-5.6/perl
12677           !> (integrate 43 files)
12678 ____________________________________________________________________________
12679 [  7845] By: gsar                                  on 2000/11/24  00:20:45
12680         Log: integrate changes#6406..6414 from mainline
12681              
12682              Merge perlhacktut into perlhack, update perlguts.
12683              
12684              Fix AutoSplit to use File::Spec the right way in VMS,
12685              from Peter Prymmer.
12686              
12687              The bug report
12688              [ID 19991110.002] minimal matching discrepancy found by pcre author
12689              seems to have been fixed (though differently from what was suggested
12690              in the report) in 5.6.0.  Add tests to keep the bug from reappearing.
12691              
12692              thinko fix in vms/descrip_mms.template, the win32.pod in lib,
12693              not in pod, from Peter Prymmer
12694              
12695              Subject: [docpatch] Re: [ID 19991002.011] perldoc -f shift
12696              From: Hugo <hv@crypt.compulink.co.uk>
12697              Date: Fri, 14 Jul 2000 23:05:20 +0100
12698              Message-Id: <200007142205.XAA17882@crypt.compulink.co.uk>
12699              
12700              Didn't anymore apply, but that point still could use another fix.
12701              
12702              lib/b test fixes from Peter Prymmer.
12703              
12704              More docs for sv functions.
12705              
12706              perlvms.pod whitespace cleanup to keep pod utils happy.
12707              
12708              another VMS build tweak from Peter Prymmer
12709      Branch: maint-5.6/perl
12710           !> embed.pl lib/AutoSplit.pm pod/perlapi.pod pod/perlfunc.pod
12711           !> pod/perlguts.pod pod/perlhack.pod sv.c t/lib/b.t t/op/re_tests
12712           !> vms/descrip_mms.template vms/perlvms.pod
12713 ____________________________________________________________________________
12714 [  7844] By: nick                                  on 2000/11/23  23:42:45
12715         Log: Win32/perlio Now just fails one io/argv.t test - lack 
12716              of default :crlf on standard streams.
12717      Branch: perlio
12718            ! doio.c perlio.c
12719 ____________________________________________________________________________
12720 [  7843] By: nick                                  on 2000/11/23  23:04:05
12721         Log: Win32 passes all but t/lib/peek.t with perlio and home-grown crlf.
12722              peek fail is showing a real problem (multiple crlf layers
12723              are getting pushed.)
12724      Branch: perlio
12725            ! doio.c perlio.c win32/makefile.mk
12726 ____________________________________________________________________________
12727 [  7842] By: nick                                  on 2000/11/23  19:46:23
12728         Log: Implement PerlIO_binmode()
12729              Fix PerlIOCrlf_unread() (*--ptr rather than *ptr-- ...)
12730              Test on UNIX with PERLIO="perlio crlf" to mimic Win32,
12731              make binmode in t/lib/io_tell.t unconditional so that works.
12732              Checkin just so Win32 machine can see these changes.
12733      Branch: perlio
12734            ! doio.c perlio.c perlio.h pp_sys.c t/lib/io_tell.t
12735 ____________________________________________________________________________
12736 [  7841] By: jhi                                   on 2000/11/23  19:30:00
12737         Log: README.amiga changes from Jan-Erik Karlsson <trg@privat.utfors.se>.
12738      Branch: perl
12739            ! README.amiga
12740 ____________________________________________________________________________
12741 [  7840] By: jhi                                   on 2000/11/23  17:18:02
12742         Log: SOCKS wrestling continues, patches from Jens Hamisch.
12743      Branch: perl
12744            ! doio.c embed.h embed.pl perlsdio.h proto.h
12745 ____________________________________________________________________________
12746 [  7839] By: jhi                                   on 2000/11/23  16:54:14
12747         Log: Push Filter::Util::Call one level deeper.
12748      Branch: perl
12749            + t/lib/filter-util.t
12750           +> ext/Filter/Util/Call/Call.pm ext/Filter/Util/Call/Call.xs
12751           +> ext/Filter/Util/Call/Makefile.PL t/lib/filter-util.pl
12752            - ext/Filter/Util/Call.pm ext/Filter/Util/Call.xs
12753            - ext/Filter/Util/Makefile.PL t/lib/filt-util.pl
12754            - t/lib/filt-util.t
12755            ! MANIFEST configure.com hints/uwin.sh hints/vmesa.sh
12756            ! win32/Makefile win32/makefile.mk
12757 ____________________________________________________________________________
12758 [  7838] By: jhi                                   on 2000/11/23  16:52:40
12759         Log: Reach back one higher up when searching for PERL_SRC.
12760      Branch: perl
12761            ! lib/ExtUtils/MM_Unix.pm
12762 ____________________________________________________________________________
12763 [  7837] By: jhi                                   on 2000/11/23  16:05:41
12764         Log: Subject: Re: perl@7826
12765              Date: Thu, 23 Nov 2000 02:20:25 -0600
12766              From: "Craig A. Berry" <craigberry@mac.com>
12767              Message-Id: <p04330102b6424b6cd4c9@[172.16.52.1]>
12768              
12769              Make VMS to like Filter::Util::Call. 
12770      Branch: perl
12771            ! configure.com ext/Filter/Util/Makefile.PL
12772 ____________________________________________________________________________
12773 [  7836] By: nick                                  on 2000/11/23  16:04:08
12774         Log: Implement crlf layer - not ready for merge.
12775      Branch: perlio
12776            ! perlio.c win32/makefile.mk
12777 ____________________________________________________________________________
12778 [  7835] By: jhi                                   on 2000/11/23  15:56:52
12779         Log: STDCHAR is different in Sparc v9 vs x86.
12780      Branch: perl
12781            ! hints/solaris_2.sh
12782 ____________________________________________________________________________
12783 [  7834] By: jhi                                   on 2000/11/23  15:50:47
12784         Log: The type needs to be visible to protos.
12785      Branch: perl
12786            ! perl.h
12787 ____________________________________________________________________________
12788 [  7833] By: jhi                                   on 2000/11/23  15:40:46
12789         Log: Finish unfinished SOCKS workaround changes.
12790      Branch: perl
12791            ! doio.c
12792 ____________________________________________________________________________
12793 [  7832] By: jhi                                   on 2000/11/23  15:33:30
12794         Log: Integrate perlio.
12795      Branch: perl
12796           !> win32/config_H.bc win32/config_H.gc win32/config_H.vc
12797           !> win32/makefile.mk
12798 ____________________________________________________________________________
12799 [  7831] By: nick                                  on 2000/11/23  10:31:07
12800         Log: Correct makefile.mk dependancies for ext/Filter/Util
12801              Build ext/Encode
12802              Run dmake regen_config_h
12803      Branch: perlio
12804            ! win32/config_H.bc win32/config_H.gc win32/config_H.vc
12805            ! win32/makefile.mk
12806 ____________________________________________________________________________
12807 [  7830] By: nick                                  on 2000/11/23  08:05:07
12808         Log: Integrate mainline
12809      Branch: perlio
12810           +> ext/Filter/Util/Call.pm ext/Filter/Util/Call.xs
12811           +> ext/Filter/Util/Makefile.PL lib/Filter/Simple.pm
12812           +> t/lib/filt-util.pl t/lib/filt-util.t
12813           !> (integrate 41 files)
12814 ____________________________________________________________________________
12815 [  7829] By: gsar                                  on 2000/11/23  03:07:11
12816         Log: build the Filter extension on windows
12817      Branch: perl
12818            ! win32/Makefile win32/makefile.mk
12819 ____________________________________________________________________________
12820 [  7828] By: gsar                                  on 2000/11/23  02:46:35
12821         Log: regenerate win32/config* and fix some inconsistencies in the
12822              makefiles; always export Perl_deb() because it is needed
12823              by ext/re/* (whether perl itself is built with -DDEBUGGING
12824              or not)
12825      Branch: perl
12826            ! makedef.pl win32/Makefile win32/config_H.bc win32/config_H.gc
12827            ! win32/config_H.vc win32/makefile.mk
12828 ____________________________________________________________________________
12829 [  7827] By: gsar                                  on 2000/11/23  02:18:38
12830         Log: get sources building on windows+MSVC again (untested with other
12831              compilers)
12832      Branch: perl
12833            ! win32/include/sys/socket.h win32/perllib.c
12834 ____________________________________________________________________________
12835 [  7826] By: jhi                                   on 2000/11/23  01:18:26
12836         Log: Update Changes.
12837      Branch: perl
12838            ! Changes patchlevel.h
12839 ____________________________________________________________________________
12840 [  7825] By: jhi                                   on 2000/11/23  00:20:41
12841         Log: Subject: Re: av.c patch (having slight problems)
12842              From: "Ben Tilly" <ben_tilly@hotmail.com>
12843              Date: Tue, 21 Nov 2000 23:29:31 -0500
12844              Message-ID: <LAW2-F113pL32ctFfj800000d81@hotmail.com>
12845              
12846              unshift() speedup.
12847      Branch: perl
12848            ! av.c
12849 ____________________________________________________________________________
12850 [  7824] By: jhi                                   on 2000/11/22  23:59:15
12851         Log: Fixes for signedness warnings noticed by VMSperlers.
12852      Branch: perl
12853            ! ext/Storable/Storable.xs regcomp.c sv.c
12854 ____________________________________________________________________________
12855 [  7823] By: jhi                                   on 2000/11/22  23:19:31
12856         Log: Subject: [PATCH perl@7795] small cleanup task for test suite
12857              From: Peter Prymmer <pvhp@forte.com>
12858              Date: Wed, 22 Nov 2000 15:04:13 -0800 (PST)
12859              Message-ID: <Pine.OSF.4.10.10011221457530.519633-100000@aspara.forte.com>
12860      Branch: perl
12861            ! t/pragma/warn/pp_hot
12862 ____________________________________________________________________________
12863 [  7822] By: jhi                                   on 2000/11/22  22:52:20
12864         Log: Be clean.
12865      Branch: perl
12866            ! Makefile.SH
12867 ____________________________________________________________________________
12868 [  7821] By: jhi                                   on 2000/11/22  22:46:39
12869         Log: Add the simple frontend to Filter::Util:Call, Filter::Simple 0.01
12870              by Damian Conway, as suggested by Paul Marquess.
12871      Branch: perl
12872            + lib/Filter/Simple.pm
12873 ____________________________________________________________________________
12874 [  7820] By: jhi                                   on 2000/11/22  22:45:51
12875         Log: Add the Filter::Util::Call 1.04 by Paul Marquess from Filter-1.19.
12876      Branch: perl
12877            + ext/Filter/Util/Call.pm ext/Filter/Util/Call.xs
12878            + ext/Filter/Util/Makefile.PL t/lib/filt-util.pl
12879            + t/lib/filt-util.t
12880            ! MANIFEST
12881 ____________________________________________________________________________
12882 [  7819] By: jhi                                   on 2000/11/22  22:03:27
12883         Log: Integrate perlio.
12884      Branch: perl
12885           !> README.win32 perlio.c t/pragma/warnings.t win32/config_H.gc
12886           !> win32/makefile.mk
12887 ____________________________________________________________________________
12888 [  7818] By: jhi                                   on 2000/11/22  21:56:02
12889         Log: More SOCKS versus 64-bit patches from Jens Hamisch.
12890      Branch: perl
12891            ! doio.c embed.h embed.pl makedef.pl perl.h pp_sys.c proto.h
12892            ! t/lib/io_sock.t
12893 ____________________________________________________________________________
12894 [  7817] By: jhi                                   on 2000/11/22  21:39:49
12895         Log: Subject: [PATCH 5.7.0] Liblist returns found libraries
12896              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
12897              Date: Wed, 22 Nov 2000 16:08:12 -0500
12898              Message-ID: <20001122160812.A24269@monk.mps.ohio-state.edu>
12899      Branch: perl
12900            ! lib/ExtUtils/Liblist.pm
12901 ____________________________________________________________________________
12902 [  7816] By: jhi                                   on 2000/11/22  21:38:25
12903         Log: Go ahead and #include <unistd.h> in perl.h.
12904      Branch: perl
12905            ! doio.c malloc.c mg.c perl.h pp.c pp_hot.c pp_sys.c toke.c
12906            ! util.c
12907 ____________________________________________________________________________
12908 [  7815] By: jhi                                   on 2000/11/22  21:22:52
12909         Log: Subject: [PATCH 5.7.0] Overeager visited-positions optimizations
12910              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
12911              Date: Mon, 20 Nov 2000 18:30:52 -0500
12912              Message-ID: <20001120183051.A15228@monk.mps.ohio-state.edu>
12913      Branch: perl
12914            ! pod/perlre.pod regcomp.c t/op/re_tests
12915 ____________________________________________________________________________
12916 [  7814] By: jhi                                   on 2000/11/22  21:21:46
12917         Log: Subject: [PATCH 5.7.0] Liblist finally works
12918              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
12919              Date: Tue, 21 Nov 2000 22:02:17 -0500
12920              Message-ID: <20001121220217.A24174@monk.mps.ohio-state.edu>
12921      Branch: perl
12922            ! lib/ExtUtils/Liblist.pm lib/ExtUtils/MM_VMS.pm
12923            ! lib/ExtUtils/MakeMaker.pm
12924 ____________________________________________________________________________
12925 [  7813] By: jhi                                   on 2000/11/22  21:20:23
12926         Log: Subject: Re: [PATCH bleadperl] Re: Not OK: perl5.7.0 +DEVEL7706    +Duseperlio on AIX4.[23]
12927              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
12928              Date: Wed, 22 Nov 2000 17:53:15 +0100
12929              Message-Id: <20001122174544.49A2.H.M.BRAND@hccnet.nl>
12930              
12931              AIX dynaloader and perlio patch.
12932      Branch: perl
12933            ! ext/DynaLoader/dl_aix.xs
12934 ____________________________________________________________________________
12935 [  7812] By: jhi                                   on 2000/11/22  21:17:52
12936         Log: (Accidentally empty patch.)
12937      Branch: perl
12938            ! av.c
12939 ____________________________________________________________________________
12940 [  7811] By: jhi                                   on 2000/11/22  21:16:31
12941         Log: Subject: [PATCH: perl@7777] make VMS' test.com tail compatible w/ unix
12942              From: Peter Prymmer <pvhp@forte.com>
12943              Date: Mon, 20 Nov 2000 16:53:54 -0800 (PST)
12944              Message-ID: <Pine.OSF.4.10.10011201651050.373336-100000@aspara.forte.com>
12945      Branch: perl
12946            ! vms/test.com
12947 ____________________________________________________________________________
12948 [  7810] By: jhi                                   on 2000/11/22  21:15:36
12949         Log: Subject: Re: perl@7777 
12950              From: "John P. Linderman" <jpl@research.att.com>
12951              Date: Wed, 22 Nov 2000 13:11:11 -0500
12952              Message-Id: <200011221811.NAA90072@raptor.research.att.com>
12953              
12954              Detypoing.
12955      Branch: perl
12956            ! lib/CPAN.pm
12957 ____________________________________________________________________________
12958 [  7809] By: jhi                                   on 2000/11/22  21:14:19
12959         Log: Subject:  [PATCH perl@7795] Perlio_tell fix
12960              From: lane@DUPHY4.Physics.Drexel.Edu (Charles Lane)
12961              Date:     Wed, 22 Nov 2000 13:51:37 EST
12962              Message-Id: <001122135058.56e24@DUPHY4.Physics.Drexel.Edu>
12963      Branch: perl
12964            ! perlsdio.h
12965 ____________________________________________________________________________
12966 [  7808] By: jhi                                   on 2000/11/22  21:13:27
12967         Log: Subject: [ID 20001120.003] [PATCH] io_udp.t fails without 'localhost'
12968              From: Casey Tweten <crt@kiski.net>
12969              Date: Mon, 20 Nov 2000 11:53:03 -0500 (EST)
12970              Message-Id: <200011201653.LAA10194@home.kiski.net>
12971      Branch: perl
12972            ! t/lib/io_udp.t
12973 ____________________________________________________________________________
12974 [  7807] By: jhi                                   on 2000/11/22  21:12:35
12975         Log: Subject: [ID 20001120.002] [PATCH] io_sock.t fails without 'localhost'
12976              From: Casey Tweten <crt@kiski.net>
12977              Date: Mon, 20 Nov 2000 11:36:11 -0500 (EST)
12978              Message-Id: <200011201636.LAA07227@home.kiski.net>
12979      Branch: perl
12980            ! t/lib/io_sock.t
12981 ____________________________________________________________________________
12982 [  7806] By: jhi                                   on 2000/11/22  21:10:59
12983         Log: Subject: Re: [PATCH] Evolution of h2xs [WAS: Re: PATCH subs.pm]
12984              From: "Casey R. Tweten" <crt@kiski.net>
12985              Date: Wed, 22 Nov 2000 09:05:07 -0500 (EST)
12986              Message-ID: <Pine.OSF.4.21.0011220903580.1811-100000@home.kiski.net>
12987      Branch: perl
12988            ! utils/h2xs.PL
12989 ____________________________________________________________________________
12990 [  7805] By: nick                                  on 2000/11/22  21:05:06
12991         Log: Integrate mainline
12992      Branch: perlio
12993           !> Changes Porting/genlog ext/DB_File/DB_File.xs
12994           !> ext/DB_File/version.c lib/Test.pm patchlevel.h
12995           !> utils/perlbug.PL
12996 ____________________________________________________________________________
12997 [  7804] By: jhi                                   on 2000/11/22  21:01:12
12998         Log: Subject: [PATCH] Test.pm POD peculiarity
12999              From: "Casey R. Tweten" <crt@kiski.net>
13000              Date: Tue, 21 Nov 2000 15:01:25 -0500 (EST)
13001              Message-ID: <Pine.OSF.4.21.0011211458020.20114-100000@home.kiski.net>
13002      Branch: perl
13003            ! lib/Test.pm
13004 ____________________________________________________________________________
13005 [  7803] By: jhi                                   on 2000/11/22  20:59:59
13006         Log: Subject: [ID 20001122.002] [PATCH 5.7.0@7795] two small patches to perlbug
13007              From: "Philip Newton" <pnewton@gmx.de>
13008              Date: Wed, 22 Nov 2000 14:25:53 +0100
13009              Message-Id: <3A1BD771.25462.1939FAD@localhost>
13010              
13011              Be case-understanding also on 's', and use the -oi of sendmail
13012              not to terminate the transmission on a lone '.'.
13013      Branch: perl
13014            ! utils/perlbug.PL
13015 ____________________________________________________________________________
13016 [  7802] By: nick                                  on 2000/11/22  20:51:42
13017         Log: Win32 PerlIO intermediate state now working as expected.
13018              - In current state we are still using C runtime in text/binary
13019              mode and "crlf" layer is just a dummy (clone of perlio buffer layer).
13020              - PERLIO=stdio and PERLIO=unix pass all expected tests.
13021              - PERLIO=perlio fails t/lib/dprof.t because Dprof.xs calls PerlIO_tell()
13022              and PerlIO_seek() and the dummy crlf layer is not making adjustments
13023              for CRLF translation happening in C runtime. All other tests pass.
13024              
13025              Added note to README.win32 to point out the snags of doing a perl build
13026              with Norton AntiVirus turned on.
13027              
13028              Tweaked t/pragma/warnings.t so that when run stand-alone you can tell
13029              which file a fail comes from.
13030              
13031              Updated "canned" config.h to match the one generated.
13032      Branch: perlio
13033            ! README.win32 perlio.c t/pragma/warnings.t win32/config_H.gc
13034            ! win32/makefile.mk
13035 ____________________________________________________________________________
13036 [  7801] By: jhi                                   on 2000/11/22  06:50:20
13037         Log: Nickety nits.
13038      Branch: perl
13039            ! ext/DB_File/DB_File.xs ext/DB_File/version.c
13040 ____________________________________________________________________________
13041 [  7800] By: jhi                                   on 2000/11/22  01:29:55
13042         Log: Changes had accidentally gone too silent on non-main branches.
13043      Branch: perl
13044            ! Changes Porting/genlog patchlevel.h
13045 ____________________________________________________________________________
13046 [  7799] By: gsar                                  on 2000/11/22  01:02:56
13047         Log: some lib_pm.PL changes snuck in via change#7772
13048      Branch: maint-5.6/perl
13049            ! Makefile.SH
13050 ____________________________________________________________________________
13051 [  7798] By: nick                                  on 2000/11/21  21:59:40
13052         Log: Integrate mainline
13053      Branch: perlio
13054           !> (integrate 28 files)
13055 ____________________________________________________________________________
13056 [  7797] By: jhi                                   on 2000/11/21  21:01:45
13057         Log: Integrate perlio.
13058      Branch: perl
13059           !> doio.c perlio.c perlio.h win32/perllib.c win32/win32.c
13060 ____________________________________________________________________________
13061 [  7796] By: nick                                  on 2000/11/21  20:36:22
13062         Log: Win32 builds and runs (mostly) with USE_PERLIO.
13063              PERLIO=perlio passes all tests. 
13064              PERLIO=stdio (sadly the default) hangs in t.pragma/warnings.t #319
13065      Branch: perlio
13066            ! perlio.c win32/perllib.c win32/win32.c
13067 ____________________________________________________________________________
13068 [  7795] By: jhi                                   on 2000/11/21  19:03:44
13069         Log: Update Changes.
13070      Branch: perl
13071            ! Changes patchlevel.h
13072 ____________________________________________________________________________
13073 [  7794] By: jhi                                   on 2000/11/21  18:56:34
13074         Log: Subject: PerlIO_apply_layers prototype (was Re: [PATCH: perl@7777] add system locale testing for VMS)
13075              From: "Craig A. Berry" <craigberry@mac.com>
13076              Date: Mon, 20 Nov 2000 20:27:06 -0600
13077              Message-Id: <p04330101b63f8baf25a2@[172.16.52.1]>
13078              
13079              A cut-and-pasto.
13080      Branch: perl
13081            ! perlio.h
13082 ____________________________________________________________________________
13083 [  7793] By: jhi                                   on 2000/11/21  18:54:41
13084         Log: Subject: [PATCH bleadperl] Re: Not OK: perl5.7.0 +DEVEL7706 +Duseperlio on AIX4.[23]
13085              From: Dominic Dunlop <domo@computer.org> 
13086              Date: Mon, 20 Nov 2000 18:55:29 +0100
13087              Message-Id: <p04320403b63b2c750dce@[192.168.1.4]> 
13088              
13089              va_copy() and the need of it.
13090              See <http://wwwold.dkuug.dk/JTC1/SC22/WG14/www/docs/n907.ps>.
13091      Branch: metaconfig/U/perl
13092            + need_va_copy.U
13093      Branch: perl
13094            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
13095            ! config_h.SH configure.com epoc/config.sh handy.h perlio.c
13096            ! pod/perltoc.pod uconfig.h uconfig.sh vos/config.alpha.def
13097            ! vos/config.alpha.h vos/config.ga.def vos/config.ga.h
13098            ! win32/config.bc win32/config.gc win32/config.vc
13099 ____________________________________________________________________________
13100 [  7792] By: jhi                                   on 2000/11/21  17:04:10
13101         Log: Integrate scope.h@7790 from perlio, works better with multiplicity.
13102      Branch: perl
13103           !> scope.h
13104 ____________________________________________________________________________
13105 [  7791] By: jhi                                   on 2000/11/21  17:01:16
13106         Log: Export the SOCKS workaround symbols only if necessary.
13107      Branch: perl
13108            ! doio.c embed.h embed.pl makedef.pl perlsdio.h proto.h
13109 ____________________________________________________________________________
13110 [  7790] By: nick                                  on 2000/11/20  23:57:11
13111         Log: If we use (aTHX_ ...) then put Perl_ on the front. (Or drop the aTHX_).
13112      Branch: perlio
13113            ! scope.h
13114 ____________________________________________________________________________
13115 [  7789] By: nick                                  on 2000/11/20  23:38:33
13116         Log: Integrate mainline
13117      Branch: perlio
13118           +> lib/File/Spec/Epoc.pm
13119           !> (integrate 34 files)
13120 ____________________________________________________________________________
13121 [  7788] By: nick                                  on 2000/11/20  23:20:18
13122         Log: Make extra buffer layer work (dummy crlf layer)
13123      Branch: perlio
13124            ! doio.c perlio.c perlio.h
13125 ____________________________________________________________________________
13126 [  7787] By: jhi                                   on 2000/11/20  22:44:04
13127         Log: Subject: [PATCH: perl@7777] add system locale testing for VMS
13128              From: Peter Prymmer <pvhp@forte.com>
13129              Date: Mon, 20 Nov 2000 12:56:52 -0800 (PST)
13130              Message-ID: <Pine.OSF.4.10.10011201244390.376086-100000@aspara.forte.com>
13131      Branch: perl
13132            ! t/pragma/locale.t
13133 ____________________________________________________________________________
13134 [  7786] By: jhi                                   on 2000/11/20  22:29:10
13135         Log: Subject: DOC PATCH 5.6.0 perlreftut
13136              From: mjd@plover.com
13137              Date: 20 Nov 2000 19:45:06 -0000
13138              Message-ID: <20001120194506.9505.qmail@plover.com>
13139      Branch: perl
13140            ! pod/perlreftut.pod
13141 ____________________________________________________________________________
13142 [  7785] By: jhi                                   on 2000/11/20  22:27:44
13143         Log: Subject: [ID 20001120.010] typo in lib/Cwd.pm broke Cwd::chdir
13144              From: David Dyck <dcd@tc.fluke.com>
13145              Date: Mon, 20 Nov 2000 11:43:40 -0800
13146              Message-Id: <200011201943.LAA08451@dd.tc.fluke.com>
13147      Branch: perl
13148            ! lib/Cwd.pm
13149 ____________________________________________________________________________
13150 [  7784] By: jhi                                   on 2000/11/20  22:23:21
13151         Log: Subject: [PATCH 5.7.0] lexicals not recognized in a run-time (?{})
13152              Date: Mon, 20 Nov 2000 17:06:10 -0500
13153              To: Mailing list Perl5 <perl5-porters@perl.org>
13154              Message-ID: <20001120170609.A11780@monk.mps.ohio-state.edu>
13155      Branch: perl
13156            ! pp_ctl.c t/op/pat.t
13157 ____________________________________________________________________________
13158 [  7783] By: jhi                                   on 2000/11/20  22:11:18
13159         Log: Subject: [PATCH] doop.c - UTF8 tr///               
13160              From: Simon Cozens <simon@cozens.net>
13161              Date: Sat, 18 Nov 2000 18:49:30 +0000
13162              Message-ID: <20001118184930.A31687@pembro4.pmb.ox.ac.uk>
13163              
13164              Subject: Re: [PATCH] doop.c - UTF8 tr///           
13165              From: Simon Cozens <simon@cozens.net>
13166              Date: Mon, 20 Nov 2000 20:45:22 +0000
13167              Message-ID: <20001120204522.A26042@pembro4.pmb.ox.ac.uk>
13168              
13169              Make tr on UTF-8 better but still not correct.
13170      Branch: perl
13171            ! doop.c
13172 ____________________________________________________________________________
13173 [  7782] By: jhi                                   on 2000/11/20  22:02:16
13174         Log: Remove the shared object before attempting to create
13175              (by linking) a new one.  E.g. in AIX not removing
13176              becomes quite painful if one tries to do more than one
13177              build in the same tree (an interrupted build, for example),
13178              since the AIX' shared dynaloader seemingly keeps the shared
13179              objects open and therefore 'busy' for quite a while, even when
13180              nobody is using the objects, leading into link failures.
13181      Branch: perl
13182            ! lib/ExtUtils/MM_Unix.pm
13183 ____________________________________________________________________________
13184 [  7781] By: gsar                                  on 2000/11/20  19:02:55
13185         Log: type mismatch due to faulty integration
13186      Branch: maint-5.6/perl
13187            ! toke.c win32/Makefile
13188 ____________________________________________________________________________
13189 [  7780] By: gsar                                  on 2000/11/20  17:31:55
13190         Log: integrate changes#6392,6394..6399,6401..6404
13191              
13192              The {multiplier} of a fixed substring was overlooked which
13193              caused a wrong initial search offset for that substring.
13194              
13195              Subject: [PATCH 5.6.0] Re: [ID 20000613.001] Regex works in v5.005_03 but fails in v5.06
13196              From: Hugo <hv@crypt.compulink.co.uk>
13197              Message-Id: <200007131827.TAA14487@crypt.compulink.co.uk>
13198              Date: Thu, 13 Jul 2000 19:27:13 +0100
13199              
13200              Fix the BOM bug: not a byteorder bug, a signedness bug.
13201              
13202              Replace change #6337 with a better one.
13203              
13204              Subject: Re: [PATCH] [ID 20000701.002] Regular Expressions Not Unsetting $1 Vars When Backtracking
13205              From: Hugo <hv@crypt.compulink.co.uk>
13206              Date: Fri, 14 Jul 2000 04:16:20 +0100
13207              Message-Id: <200007140316.EAA15857@crypt.compulink.co.uk>
13208              
13209              MakeMaker should not remove editor backups (*~) on `make clean`
13210              by default (completes change#6383)
13211              
13212              move new variables to the end of the interpreter structure (for
13213              bincompat in code that doesn't #include XSUB.h)
13214              
13215              rename totally bletcherous SvLOCK() thingy (doesn't do what the
13216              name suggests anyway)
13217              
13218              various cleanups (typos, misformatted code, and small bugs)
13219              
13220              typecasts needed for change#6394
13221              
13222              typos in change#6399, regen headers
13223              
13224              inconsistent types needs casts
13225              
13226              PERL_OBJECT build tweaks
13227      Branch: maint-5.6/perl
13228           !> MANIFEST doop.c embed.h embed.pl embedvar.h
13229           !> ext/IPC/SysV/Makefile.PL global.sym intrpvar.h
13230           !> lib/ExtUtils/MM_Unix.pm mg.c op.c perlapi.h pod/perlapi.pod
13231           !> pp.c proto.h regcomp.c regexec.c sv.h t/op/re_tests thread.h
13232           !> toke.c util.c
13233 ____________________________________________________________________________
13234 [  7779] By: gsar                                  on 2000/11/20  17:06:29
13235         Log: integrate changes#6376..6378,6380,6383,6385..6388,6391
13236              
13237              Cosmetics and perldelta.
13238              
13239              Fix nits noticed by Boston.pm.
13240              
13241              Do the cc sanity check both before the hints and
13242              after the cc selction.
13243              
13244              get sprintf.t to adjust properly for 3-digit exponents
13245              
13246              don't clobber *.orig files on *clean targets
13247              
13248              fix bugs in processing %v-*d and similar format specs (from
13249              Avi Finkel <avi@finkel.org>)
13250              
13251              sprintf test tweaks (from Dominic Dunlop)
13252              
13253              new selfloader.t in change#6183 doesn't close DATA handles,
13254              and thus fails to clean up tmp files on dosish platforms
13255              
13256              typos (spotted by Peter Prymmer)
13257              
13258              typo fix from Craig Berry
13259      Branch: maint-5.6/perl
13260           !> Configure Makefile.SH config_h.SH ext/IPC/SysV/Makefile.PL
13261           !> pod/perldelta.pod pod/perlre.pod sv.c t/lib/english.t
13262           !> t/lib/selfloader.t t/op/sprintf.t vms/subconfigure.com
13263           !> x2p/Makefile.SH
13264 ____________________________________________________________________________
13265 [  7778] By: gsar                                  on 2000/11/20  16:46:51
13266         Log: integrate changes#6340..6342,6348,6354,6356,6357,6371,6372,6375
13267              
13268              Subject: Re: format bug report  [Patch]
13269              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
13270              Date: Wed, 05 Jul 2000 13:12:52 +0200
13271              Message-Id: <20000705130745.67BF.H.M.BRAND@hccnet.nl>
13272              
13273              Subject: Re: format bug report  [Patch]
13274              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
13275              Date: Wed, 05 Jul 2000 14:10:01 +0200
13276              Message-Id: <20000705140837.73C2.H.M.BRAND@hccnet.nl>
13277              
13278              Subject: Re: [ID 20000704.002] [PATCH] memory leak with debug / anon subs
13279              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
13280              Message-Id: <E13AbRE-00009T-00@libra.cus.cam.ac.uk>
13281              Date: Fri, 07 Jul 2000 17:57:16 +0100
13282              
13283              Subject: [ID 20000710.002] fatal error or memory loss when deleting symbols in evaled code with syntax errors
13284              To: perl5-porters@perl.org
13285              From: Karsten Sperling <spiff@phreax.net>
13286              Date: Mon, 10 Jul 2000 15:12:52 +0200
13287              Message-Id: <200007101315.e6ADFrg21041@chthon.perl.com>
13288              
13289              README.posix-bc podified from Thomas Dorner.
13290              
13291              Subject: [PATCH perl-current] Make op/sprintf.t more comprehensive, take2
13292              From: Dominic Dunlop <domo@computer.org>
13293              Date: Tue, 11 Jul 2000 12:27:33 +0200
13294              Message-Id: <p04320405b590a14d4650@[192.168.1.4]>
13295              
13296              Typo in #6341.
13297              
13298              Fix for
13299              Subject: [ID 20000711.005] spurious uninit warning with msgrcv()
13300              From: Roderick Schertler <roderick@argon.org>
13301              Date: Tue, 11 Jul 2000 13:55:05 -0400
13302              Message-Id: <200007111755.NAA05077@jones.argon.org>
13303              
13304              Minor cleanups on the booklist.
13305              
13306              Reintroduce perlbook (updated for Mk III), introduce perlposix-bc,
13307              regen perltoc.
13308              
13309              windows build tweaks (op/sprintf.t still fails tests 120-121, 149)
13310      Branch: maint-5.6/perl
13311           +> pod/perlbook.pod
13312           !> MANIFEST README.posix-bc doio.c lib/Symbol.pm pod/Makefile.SH
13313           !> pod/buildtoc.PL pod/perl.pod pod/perlfaq2.pod pod/perltoc.pod
13314           !> pp_hot.c t/op/sprintf.t t/op/write.t toke.c win32/win32sck.c
13315 ____________________________________________________________________________
13316 [  7777] By: jhi                                   on 2000/11/20  16:08:49
13317         Log: Update Changes.
13318      Branch: perl
13319            ! Changes patchlevel.h
13320 ____________________________________________________________________________
13321 [  7776] By: jhi                                   on 2000/11/20  15:27:56
13322         Log: Assume SOCKS is broken in all 64bitall platforms, not just Solaris.
13323              This may be overly harsh but until proven otherwise, we think this
13324              way, or until we have a simple test for Configure (having to start
13325              up servers is does not count as simple) to check for the problems.
13326      Branch: perl
13327            ! perl.h
13328 ____________________________________________________________________________
13329 [  7775] By: jhi                                   on 2000/11/20  15:22:17
13330         Log: Solaris hints tweaks.
13331      Branch: perl
13332            ! hints/solaris_2.sh
13333 ____________________________________________________________________________
13334 [  7774] By: jhi                                   on 2000/11/20  15:01:20
13335         Log: Add a workaround to SOCKS 64-bit problems.
13336      Branch: perl
13337            ! doio.c embed.h embed.pl perlsdio.h proto.h
13338 ____________________________________________________________________________
13339 [  7773] By: jhi                                   on 2000/11/20  14:51:47
13340         Log: sysseek() instead of seek().
13341      Branch: perl
13342            ! t/lib/syslfs.t
13343 ____________________________________________________________________________
13344 [  7772] By: gsar                                  on 2000/11/20  13:06:23
13345         Log: integrate changes#6315..6319,6321..6331,6333..6338
13346              
13347              Integrate with Sarathy, preliminary fix for unicos
13348              alignment problems in [ID 20000612.002] Perl problem on Cray system.
13349              
13350              some debugger output does not go to the socket when RemotePort is set
13351              
13352              winsock cleanup never done on Windows (leads to handle leaks)
13353              
13354              fix UNC path handling on Windows under ithreads, and chdir()
13355              return value when given a non-existent directory
13356              
13357              Autogenerate pod/Makefile and pod/buildtoc.
13358              buildtoc also checks whether the existin pods are
13359              mentioned in MANIFEST and perl.pod, and vice versa.
13360              (None of the thusly found discrepancies fixed yet.)
13361              roffitall also needs to be autogenerated similarly but it
13362              seems so badly out of date that I didn't touch it yet.
13363              
13364              Config is being used.
13365              
13366              Add =head1 NAMEs so that buildtoc is happy.
13367              (The CGI::Util nit reported to Lincoln.)
13368              
13369              Fix complaints of buildtoc.
13370              
13371              Fix the alignment problem in Crays ([ID 20000612.002]).
13372              
13373              Remove perlbook, update perlfaq book listing,
13374              rearrange perl.pod, regenerate perltoc.
13375              
13376              Fix a nit spotted by 64bit IRIX compilation: a (64-bit) pointer
13377              was cast to an unsigned (32-bit) integer with wild abandon.
13378              
13379              winsock options weren't being set in all threads under ithreads
13380              (caused send()s from second and subsequent threads to fail)
13381              
13382              accept() leaks memory on windows due to incorrect ordering of
13383              closesocket() and fclose() calls
13384              
13385              Reorder perl.pod once more.
13386              
13387              More POSIX.pod tweaks.
13388              
13389              Sprinkle ldlibpath.
13390              
13391              Precedence goof, fix based on
13392              Subject: [PATCH 5.6.0] op/taint.t continues on failed shmget()
13393              From: Hugo <hv@crypt.compulink.co.uk>
13394              Date: Tue, 11 Jul 2000 12:52:38 +0100
13395              Message-Id: <200007111152.MAA05488@crypt.compulink.co.uk>
13396              
13397              Subject: PATCH perlguts.pod: Document D and d magic types
13398              From: mjd@plover.com
13399              Date: 5 Jul 2000 18:01:51 -0000
13400              Message-ID: <20000705180151.29413.qmail@plover.com>
13401              
13402              Subject: [ID 20000705.002] problem with perl 5.6.0 on NetBSD/sparc
13403              From: Hubert Feyrer <feyrer@rfhs8012.fh-regensburg.de>
13404              Date: Wed, 5 Jul 2000 14:56:43 +0200 (MET DST)
13405              Message-Id: <Pine.GSO.4.10.10007051452330.29215-100000@rfhpc8320.fh-regensburg.de>
13406              
13407              Subject: [PATCH cfgperl] $& segfaults if you trick it
13408              From: simon@brecon.co.uk (Simon Cozens)
13409              Date: 7 Jul 2000 11:26:09 GMT
13410              Message-ID: <slrn8mbfif.ead.simon@justanother.perlhacker.org>
13411              
13412              Subject: [PATCH] [ID 20000701.002] Regular Expressions Not Unsetting $1 Vars When Backtracking
13413              From: Hugo <hv@crypt.compulink.co.uk>
13414              Date: Tue, 11 Jul 2000 12:44:50 +0100
13415              Message-Id: <200007111144.MAA04446@crypt.compulink.co.uk>
13416              
13417              Subject: [PATCH] Re: "%#p" format specifier: document and test or not?
13418              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
13419              Date: Tue, 11 Jul 2000 13:50:51 +0100
13420              Message-Id: <E13BzUx-00033c-00@libra.cus.cam.ac.uk>
13421      Branch: maint-5.6/perl
13422           +> ext/DynaLoader/hints/netbsd.pl lib/Win32.pod pod/Makefile.SH
13423           +> pod/buildtoc.PL
13424            - pod/Makefile pod/Win32.pod pod/buildtoc pod/perlbook.pod
13425           !> (integrate 26 files)
13426 ____________________________________________________________________________
13427 [  7771] By: gsar                                  on 2000/11/20  12:31:42
13428         Log: integrate changes#6283..6285,6291,6294..6300,6302..6304,6306..6307,
13429              6310,6311,6314
13430              
13431              Subject: [PATCH bleedperl] File::Spec 0.82 beta
13432              From: Barrie Slaymaker <barries@jester.slaysys.com>
13433              Date: Wed, 28 Jun 2000 11:35:29 -0400
13434              Message-Id: <200006281535.LAA21095@jester.slaysys.com>
13435              
13436              tweak perlembed for multiplicity/usethreads sanity; correct notes
13437              about Windows
13438              
13439              localize %INC in a Safe compartment so that use/require work
13440              (many other magic globals probably need similar treatment)
13441              
13442              dounwind() may cause POPSUB() to diddle the wrong PL_curpad
13443              when @_ is modified, causing coredumps
13444              
13445              slurp mode fix in change#4736 still not quite right
13446              
13447              Point to perlipc for more SysV IPC examples.
13448              
13449              Elaborate POSIX.pod.  Still needs work.
13450              
13451              fix ~320 byte memory leak (psig_{ptr,name} tables were never freed)
13452              
13453              fix large memory leak that has been around for ever, masked by
13454              -DPURIFY (most of the arenas were never freed!)
13455              
13456              fix memory leak on Windows (PL_sys_intern contents were never
13457              freed)
13458              
13459              PERL_OBJECT build tweak
13460              
13461              adjust change#6299
13462              
13463              remove rel2abs prototypes (from Barrie Slaymaker)
13464              
13465              missing perldiag entry for unpack("w",...) diagnostic (from
13466              Andreas Koenig)
13467              
13468              better diagnostic on Frob->stuff() when Frob:: doesn't exist
13469              (from Richard Soderberg <rs@oregonnet.com>)
13470              
13471              Win32 patches for cfgperl from Sarathy.
13472              
13473              b.t fails under OS/2 (from Yitzchak Scott-Thoennes)
13474              
13475              More POSIX.pod embellishment.
13476              
13477              tyop in change#6306
13478      Branch: maint-5.6/perl
13479           !> (integrate 44 files)
13480 ____________________________________________________________________________
13481 [  7770] By: gsar                                  on 2000/11/20  11:51:00
13482         Log: integrate changes#6268..6282 from cfgperl branch
13483              
13484              Subject: [PATCH perl-current] Make op/sprintf.t more comprehensive
13485              From: Dominic Dunlop <domo@computer.org>
13486              Date: Thu, 29 Jun 2000 12:32:39 +0200
13487              Message-Id: <p04320403b580cc1338db@[192.168.1.4]>
13488              
13489              Regen headers for #6261 (and update embed.pl for this) and #6267,
13490              silence few compiler warnings.
13491              
13492              Subject: PATCH (Re: [ID 20000612.004] Should regression tests fail if user doesn't build XS extensions?)
13493              From: Nicholas Clark <nick@talking.bollo.cx>
13494              Date: Fri, 23 Jun 2000 16:21:15 +0100
13495              Message-ID: <20000623162115.A19894@Bagpuss.unfortu.net>
13496              
13497              Subject: PATCH pod/perltie.pod
13498              From: Ian Phillipps <Ian.Phillipps@iname.com>
13499              Date: Fri, 16 Jun 2000 00:17:19 +0100
13500              Message-ID: <20000616001719.A17108@homer.diplex.co.uk>
13501              (only the first hunk, the second hunk had already been done
13502              by some other patch)
13503              
13504              Subject: [ID 20000614.005] [patch] Tweak to Net::Ping docs
13505              From: Tom Phoenix <rootbeer@redcat.com>
13506              Received: (qmail 6398 invoked by uid 508); 15 Jun 2000 00:30:54 -0000
13507              Date: Wed, 14 Jun 2000 17:30:37 -0700 (PDT)
13508              
13509              Subject: [PATCH] xsub attributes
13510              From: Doug MacEachern <dougm@covalent.net>
13511              Date: Wed, 14 Jun 2000 15:09:22 -0700 (PDT)
13512              Message-ID: <Pine.LNX.4.10.10006141456050.340-100000@mojo.covalent.net>
13513              
13514              Subject: [ID 20000614.003] 5.6.0 File/Glob.pm incompatibility
13515              From: Andy Dougherty <doughera@lafayette.edu>
13516              Date: Wed, 14 Jun 2000 13:33:32 -0400 (EDT)
13517              Message-Id: <Pine.SOL.4.10.10006141332220.3643-100000@maxwell.phys.lafayette.edu>
13518              
13519              Subject: [PATCH] 5.6.0 lib/Pod/{Html,Man,Text}.pm
13520              From: "Daniel S. Lewart" <d-lewart@uiuc.edu>
13521              Date: Tue, 13 Jun 2000 02:43:48 -0500
13522              Message-ID: <20000613024347.A28388@staff2.cso.uiuc.edu>
13523              
13524              Subject: [PATCH] Re: eval documentation: context
13525              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
13526              Date: Mon, 12 Jun 2000 15:07:29 +0100
13527              Message-Id: <E131UsD-0002ke-00@ursa.cus.cam.ac.uk>
13528              
13529              Subject: [PATCH] Re: [ID 20000612.001] map {chop; $_} (Literals problem)
13530              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
13531              Date: Mon, 12 Jun 2000 14:55:59 +0100
13532              Message-Id: <E131Uh5-0002cj-00@ursa.cus.cam.ac.uk>
13533              
13534              Subject: [ID 20000609.002] Text::Wrap::wrap does not handle multiline strings properly
13535              From: "Milton L. Hankins" <mlh@swl.msd.ray.com>
13536              Date: Fri, 09 Jun 2000 12:39:27 -0400
13537              Message-Id: <39411DBF.A04BB1A@swl.msd.ray.com>
13538              (plus update the version "number" of Text::Wrap)
13539              
13540              Subject: [ID 20000602.002] [PATCH] perlsub.pod: ambiguous usage of "closure"
13541              From: Tim Ayers <tayers@bridge.com>
13542              Date: Thu, 08 Jun 2000 08:11:06 +0200
13543              Message-id: <393F38FA.9B5F4C7D@m.dasa.de>
13544              [resent by Richard Foley, Message-Id probably wrong]
13545              
13546              Subject: Re: backwards compatibility in h2xs and makemaker  [PATCH]
13547              From: rspier@pobox.com (Robert Spier)
13548              Date: Wed, 7 Jun 2000 12:47:37 -0400 (EDT)
13549              Message-ID: <14654.31913.845602.610277@rls.cx>
13550              
13551              Subject: [PATCH 5.6.0] utils/h2xs.PL
13552              From: "Daniel S. Lewart" <d-lewart@uiuc.edu>
13553              Date: Wed, 7 Jun 2000 04:02:04 -0500
13554              Message-ID: <20000607040201.A22568@staff1.cso.uiuc.edu>
13555              
13556              Subject: [PATCH 5.6.0]ITHREADs for VMS
13557              From: Dan Sugalski <dan@sidhe.org>
13558              Date: Tue, 06 Jun 2000 11:59:50 -0400
13559              Message-Id: <4.3.2.7.0.20000606115752.01c82220@24.8.96.48>
13560      Branch: maint-5.6/perl
13561           !> (integrate 31 files)
13562 ____________________________________________________________________________
13563 [  7769] By: gsar                                  on 2000/11/20  11:29:06
13564         Log: integrate changes#6261..6266 from cfgperl
13565              
13566              Subject: Re: [PATCH cfgperl] BOMs away!
13567              From: simon@brecon.co.uk (Simon Cozens)
13568              Date: 17 Jun 2000 11:49:57 GMT
13569              Message-ID: <slrn8kmpf5.8pl.simon@justanother.perlhacker.org>
13570              
13571              Subject: 5.6.0 Patch for EPOC
13572              From: Olaf Flebbe <o.flebbe@gmx.de>
13573              Date: Tue, 13 Jun 2000 22:59:29 +0200 (MEST)
13574              Message-ID: <23449.960929969@www11.gmx.net>
13575              
13576              tr fixes from Simon Cozens
13577              
13578              Subject: [ID 20000628.004] Re: Problem compiling perl? [BSDI-Support-Request #71232]
13579              From: Marty Lucich <marty@netcom.com>
13580              Date: Wed, 28 Jun 2000 14:16:05 -0700 (PDT)
13581              Message-Id: <200006282116.OAA11148@netcom.com>
13582              ccdlflags update (the BSD/OS 4.1 part had already been taken
13583              care of by #6141).
13584              
13585              Subject: Re: [ID 20000628.006] POSIX::STRERR_FILENO typo
13586              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
13587              Date: Wed, 28 Jun 2000 17:50:12 -0700
13588              Message-ID: <E1pW5gzkg2kV092yn@efn.org>
13589              
13590              Subject: [PATCH 5.6.0] cygwin port
13591              Message-ID: <779F20BCCE5AD31186A50008C75D997917173C@silldn_mail1.sanwaint.com>
13592              From: "Fifer, Eric" <EFifer@sanwaint.com>
13593              Date: Thu, 29 Jun 2000 12:58:29 +0100
13594      Branch: maint-5.6/perl
13595           !> README.epoc cygwin/Makefile.SHs doop.c epoc/config.sh
13596           !> epoc/createpkg.pl epoc/epocish.c epoc/epocish.h
13597           !> ext/POSIX/POSIX.pm ext/POSIX/POSIX.pod ext/POSIX/POSIX.xs
13598           !> hints/bsdos.sh pod/perldiag.pod t/comp/require.t toke.c
13599 ____________________________________________________________________________
13600 [  7768] By: gsar                                  on 2000/11/20  11:13:44
13601         Log: integrate changes#6252..6256,6259..6260
13602              
13603              Paranoia tweak on #6249.
13604              Subject: Re: [PATCH 5.6.0 IPC/Open3.pm] Allow the use of numeric fd's
13605              From: Ronald J Kimball <rjk@linguist.dartmouth.edu>
13606              Date: Sun, 25 Jun 2000 23:43:12 -0400
13607              Message-ID: <20000625234312.B74147@linguist.dartmouth.edu>
13608              
13609              Subject: tr///, help wanted.
13610              From: simon@brecon.co.uk (Simon Cozens)
13611              Date: 28 Jun 2000 11:29:04 GMT
13612              Message-ID: <slrn8ljoc0.fbd.simon@justanother.perlhacker.org>
13613              
13614              small thinko tweaks
13615              
13616              tweaks from Simon Conzes to further fix tr/// under utf8
13617              
13618              perlnewmod was missing from MANIFEST.
13619              
13620              Subject: Re: [PATCH] pack('U',$foo) doesn't UTF8
13621              From: simon@brecon.co.uk (Simon Cozens)
13622              Date: 17 Jun 2000 11:56:44 GMT
13623              Message-ID: <slrn8kmprs.8pl.simon@justanother.perlhacker.org>
13624              pack U0, pack C0
13625      Branch: maint-5.6/perl
13626           !> MANIFEST doop.c embed.h embed.pl embedvar.h global.sym
13627           !> lib/Exporter.pm lib/IPC/Open3.pm objXSUB.h op.c
13628           !> pod/perlfunc.pod pp.c pp_proto.h proto.h sv.c t/op/my_stash.t
13629           !> t/op/pack.t t/op/tr.t t/pragma/constant.t t/pragma/warn/op
13630 ____________________________________________________________________________
13631 [  7767] By: gsar                                  on 2000/11/20  10:51:38
13632         Log: integrate change#6250 from cfgperl
13633              
13634              Subject: Re: [PATCH] support 'my __PACKAGE__ $obj = ...'
13635              From: Doug MacEachern <dougm@covalent.net>
13636              Date: Tue, 27 Jun 2000 14:17:28 -0700 (PDT)
13637              Message-ID: <Pine.LNX.4.10.10006271412340.7587-100000@mojo.covalent.net>
13638      Branch: maint-5.6/perl
13639           +> t/op/my_stash.t
13640           !> MANIFEST embed.pl global.sym proto.h toke.c
13641 ____________________________________________________________________________
13642 [  7766] By: gsar                                  on 2000/11/20  10:48:34
13643         Log: integrate changes#6240,6242..6246,6248,6249 from cfgperl
13644              
13645              Subject: [ID 20000626.007] h2xs man page contains trailing garbage
13646              From: Nicholas Clark <nick@Bagpuss.unfortu.net>
13647              Date: Mon, 26 Jun 2000 18:40:14 +0100
13648              Message-Id: <200006261740.SAA02740@Bagpuss.unfortu.net>
13649              
13650              Subject: [PATCH] bytes<->utf8 fixes
13651              From: simon@brecon.co.uk (Simon Cozens)
13652              Date: 26 Jun 2000 04:55:45 GMT
13653              Message-ID: <slrn8ldoih.fbd.simon@justanother.perlhacker.org>
13654              
13655              Subject: [PATCH] is_utf8_string
13656              From: simon@brecon.co.uk (Simon Cozens)
13657              Date: 26 Jun 2000 02:25:59 GMT
13658              Message-ID: <slrn8ldfpn.h5k.simon@justanother.perlhacker.org>
13659              
13660              Subject: [PATCH] avoid mg_ptr in '*' magic
13661              From: Doug MacEachern <dougm@covalent.net>
13662              Date: Sun, 25 Jun 2000 11:16:08 -0700 (PDT)
13663              Message-ID: <Pine.LNX.4.10.10006251045190.461-100000@mojo.covalent.net>
13664              
13665              Subject: [ID 20000624.001] PERL_DL_DEBUG=1 DynaLoader message appears to be wrong
13666              From: Nicholas Clark <nick@Bagpuss.unfortu.net>
13667              Date: Sat, 24 Jun 2000 13:06:20 +0100
13668              Message-Id: <200006241206.NAA03771@Bagpuss.unfortu.net>
13669              
13670              Allow for standalone testing.
13671              
13672              Subject: DOC PATCH 5.6.0: perlfunc/sprintf does not contain an example
13673              From: Mark-Jason Dominus <mjd@plover.com>
13674              Date: Tue, 27 Jun 2000 22:36:42 -0400
13675              Message-ID: <20000628023642.12166.qmail@plover.com>
13676              
13677              Subject: Re: [PATCH 5.6.0 IPC/Open3.pm] Allow the use of numeric fd's
13678              From: Frank Tobin <ftobin@uiuc.edu>
13679              Date: Sun, 25 Jun 2000 19:00:58 -0500 (CDT)
13680              Message-ID: <Pine.BSF.4.21.0006251855340.20487-100000@srh0902.urh.uiuc.edu>
13681      Branch: maint-5.6/perl
13682           !> embed.h embed.pl embedvar.h ext/DynaLoader/DynaLoader_pm.PL
13683           !> global.sym gv.c lib/IPC/Open3.pm objXSUB.h perlapi.c perlapi.h
13684           !> pod/perlapi.pod pod/perlfunc.pod pod/perlintern.pod pp_proto.h
13685           !> proto.h sv.c t/lib/filefunc.t t/lib/filespec.t t/lib/peek.t
13686           !> utf8.c utils/h2xs.PL
13687 ____________________________________________________________________________
13688 [  7765] By: gsar                                  on 2000/11/20  10:29:13
13689         Log: integrate change#6239 from cfgperl
13690              
13691              Configure maintenance.  Sever some dependency cycles,
13692              separate gccversion from the cc unit,
13693              address [ID 20000623.006] Configure script patch for using gcc on AIX
13694              (but solve it a little bit differently),
13695              unduplex some accidentally duplicated units,
13696              suggest using gcc if no cc available
13697              (p5p thread: "Solaris configure: counterproposal", 1999-09)
13698      Branch: maint-5.6/perl
13699           !> Configure Todo-5.6 config_h.SH
13700 ____________________________________________________________________________
13701 [  7764] By: gsar                                  on 2000/11/20  10:25:55
13702         Log: integrate changes#6233..6238 from cfgperl
13703              
13704              Subject: PATCH 5.6.0: Document OPf_SPECIAL flag in regcomp op nodes
13705              From: Mark-Jason Dominus <mjd@plover.com>
13706              Date: Fri, 16 Jun 2000 20:53:04 -0400
13707              Message-ID: <20000617005304.8008.qmail@plover.com>
13708              
13709              Prefer C:/temp in Win32 as File::Spec->tmpdir to /tmp
13710              because when run as services (Win32ese for daemons)
13711              no environment variables are set and tmpdir ends up as /tmp,
13712              which is ambiguous.
13713              Subject:[ID 20000616.002] File::Spec->tmpdir broken when running as service
13714              From: matt@sergeant.org
13715              Date: 16 Jun 2000 16:30:43 -0000
13716              Message-Id: <20000616163043.26398.qmail@mail.sergeant.org>
13717              
13718              The thread begun by
13719              Subject: [ID 20000616.001] Typo on line 390 of .../hints/solaris_2.sh
13720              From: Kevin.Ruscoe@ubsw.com
13721              Date: Fri, 16 Jun 2000 16:38:51 +0100
13722              Message-Id: <H000019b03c300d6@MHS>
13723              
13724              Tweak embed.pl, regen headers.
13725              
13726              Subject: [PATCH 5.6.0] XS module loading fixup for VMS
13727              From: Dan Sugalski <dan@sidhe.org>
13728              Date: Fri, 23 Jun 2000 17:00:00 -0400
13729              Message-Id: <4.3.2.7.0.20000623165934.00c93d10@24.8.96.48>
13730      Branch: maint-5.6/perl
13731           !> (integrate 27 files)
13732 ____________________________________________________________________________
13733 [  7763] By: gsar                                  on 2000/11/20  10:08:08
13734         Log: s/perl56delta/perldelta/g
13735      Branch: maint-5.6/perl
13736            ! pod/Makefile
13737 ____________________________________________________________________________
13738 [  7762] By: gsar                                  on 2000/11/20  10:04:00
13739         Log: integrate changes#6225,6229,6231,6232 from cfgperl
13740              
13741              Add source code filenames to apidoc.
13742              From: simon@brecon.co.uk (Simon Cozens)
13743              Subject: [PATCH embed.pl] Source X-ref
13744              Date: 22 Jun 2000 02:18:49 GMT
13745              Message-ID: <slrn8l2ts8.h5k.simon@justanother.perlhacker.org>
13746              
13747              Subject: README.hpux version 0.6.1
13748              Date: Tue, 20 Jun 2000 15:25:51 -0700 (PDT)
13749              From: Jeff Okamoto <okamoto@xfiles.intercon.hp.com>
13750              Message-Id: <200006202225.PAA26205@xfiles.intercon.hp.com>
13751              
13752              Subject: [PATCH 5.6.0] cygwin port
13753              From: "Fifer, Eric" <EFifer@sanwaint.com>
13754              Date: Tue, 20 Jun 2000 14:30:58 +0100
13755              Message-ID: <779F20BCCE5AD31186A50008C75D9979171734@silldn_mail1.sanwaint.com>
13756              
13757              Subject: PATCH: pod/perlutil.pod - utilities packaged with the Perl distribution
13758              From: simon@brecon.co.uk (Simon Cozens)
13759              Date: 19 Jun 2000 15:18:27 GMT
13760              Message-ID: <slrn8ksee3.cp9.simon@justanother.perlhacker.org>
13761              
13762              plus update pod/Makefile and regenerate perltoc
13763      Branch: maint-5.6/perl
13764           +> pod/perlutil.pod
13765           !> MANIFEST README.cygwin README.hpux Todo-5.6 embed.pl
13766           !> lib/File/Find.pm pod/Makefile pod/perltoc.pod pod/roffitall
13767 ____________________________________________________________________________
13768 [  7761] By: jhi                                   on 2000/11/20  04:09:55
13769         Log: Miraculous typo.
13770      Branch: perl
13771            ! t/op/pat.t
13772 ____________________________________________________________________________
13773 [  7760] By: jhi                                   on 2000/11/20  04:06:08
13774         Log: Subject: [PATCH 5.7.0] The first step in removing recursion from the REx engine
13775              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
13776              Date: Sun, 19 Nov 2000 22:30:26 -0500
13777              Message-ID: <20001119223026.A5165@monk.mps.ohio-state.edu>
13778      Branch: perl
13779            ! regexec.c scope.h t/op/pat.t
13780 ____________________________________________________________________________
13781 [  7759] By: jhi                                   on 2000/11/20  02:05:22
13782         Log: Make certain MacOS Classic has NO_ENVIRON_ARRAY.
13783      Branch: perl
13784            ! perl.h
13785 ____________________________________________________________________________
13786 [  7758] By: jhi                                   on 2000/11/20  01:58:11
13787         Log: Subject: [perl 7711: EPOC] updates
13788              From: Olaf Flebbe <o.flebbe@gmx.de>
13789              Date: Sun, 19 Nov 2000 19:33:30 +0100 (MET)
13790              Message-ID: <25575.974658810@www23.gmx.net>               
13791      Branch: perl
13792            + lib/File/Spec/Epoc.pm
13793            ! MANIFEST epoc/epocish.c lib/CGI.pm lib/Cwd.pm
13794            ! lib/File/Basename.pm lib/File/Find.pm lib/File/Path.pm
13795            ! lib/File/Spec.pm perl.c sv.c
13796 ____________________________________________________________________________
13797 [  7757] By: jhi                                   on 2000/11/20  01:53:11
13798         Log: ext/re/hints/MSWin32.pl seems to be missing from perlio.
13799      Branch: perl
13800            ! MANIFEST
13801 ____________________________________________________________________________
13802 [  7756] By: jhi                                   on 2000/11/20  01:47:22
13803         Log: Integrate perlio.
13804      Branch: perl
13805            - ext/re/hints/MSWin32.pl
13806           !> global.sym perlio.c perlio.h perliol.h pod/perlapi.pod sv.c
13807           !> win32/config.gc win32/config_H.gc win32/win32sck.c
13808 ____________________________________________________________________________
13809 [  7755] By: nick                                  on 2000/11/19  20:57:17
13810         Log: Add dummy crlf layer (just as buffer)
13811              Correct 1st bug - one layer of indirection.
13812      Branch: perlio
13813            ! perlio.c perlio.h perliol.h
13814 ____________________________________________________________________________
13815 [  7754] By: nick                                  on 2000/11/19  20:56:12
13816         Log: Work-round to Perl_deb_nocontext is no longer required
13817      Branch: perlio
13818            - ext/re/hints/MSWin32.pl
13819 ____________________________________________________________________________
13820 [  7753] By: nick                                  on 2000/11/19  20:01:16
13821         Log: diff -se shows these as different
13822      Branch: perlio
13823            ! global.sym pod/perlapi.pod
13824 ____________________________________________________________________________
13825 [  7752] By: nick                                  on 2000/11/19  18:57:30
13826         Log: Configure GCC/Win32 build -Duseperlio
13827              Fix a couple of gross issues
13828              - double-include of ../deb.o in re.dll
13829              - win32sck.c needs PerlIO and FILE 
13830      Branch: perlio
13831            ! ext/re/hints/MSWin32.pl win32/config.gc win32/config_H.gc
13832            ! win32/win32sck.c
13833 ____________________________________________________________________________
13834 [  7751] By: nick                                  on 2000/11/19  17:05:36
13835         Log: Special case :crlf and :raw in dummy PerlIO_apply_layers
13836      Branch: perlio
13837            ! perlio.c
13838 ____________________________________________________________________________
13839 [  7750] By: nick                                  on 2000/11/19  16:57:14
13840         Log: Missing aTHX_
13841      Branch: perlio
13842            ! sv.c
13843 ____________________________________________________________________________
13844 [  7749] By: jhi                                   on 2000/11/19  16:28:40
13845         Log: Subject: [ID 20001118.006] [PATCH] perl@7707 djgpp/config.over, hints/dos_djgpp.sh and Storable.pm
13846              From: "Peter J. Farley III" <pjfarley@banet.net>
13847              Date: Sun, 19 Nov 2000 01:42:58 -0500
13848              Message-Id: <5.0.1.4.0.20001119011855.00a55ec0@pop5.banet.net>
13849      Branch: perl
13850            ! djgpp/config.over ext/Storable/Storable.pm hints/dos_djgpp.sh
13851 ____________________________________________________________________________
13852 [  7748] By: jhi                                   on 2000/11/19  16:08:10
13853         Log: Subject: podlators 1.05 available        
13854              From: Russ Allbery <rra@stanford.edu>   
13855              Date: 18 Nov 2000 22:04:28 -0800
13856              Message-ID: <ylitpkijkj.fsf@windlord.stanford.edu>
13857      Branch: perl
13858            ! lib/Pod/Man.pm lib/Pod/Text.pm pod/pod2man.PL
13859 ____________________________________________________________________________
13860 [  7747] By: nick                                  on 2000/11/19  11:19:39
13861         Log: Integrate mainline
13862      Branch: perlio
13863           !> embed.h embed.pl objXSUB.h perlapi.c proto.h sv.c utf8.c
13864           !> util.c
13865 ____________________________________________________________________________
13866 [  7746] By: jhi                                   on 2000/11/19  06:42:22
13867         Log: Make hex scanning warn on "\x{x}" and "\xx".
13868              "\x" and and hex("x") are still valid.
13869      Branch: perl
13870            ! util.c
13871 ____________________________________________________________________________
13872 [  7745] By: nick                                  on 2000/11/18  22:52:28
13873         Log: Integrate mainline
13874      Branch: perlio
13875           !> emacs/ptags embed.h embed.pl lib/CPAN.pm lib/CPAN/FirstTime.pm
13876           !> perl.h perlio.c proto.h regcomp.c regcomp.h
13877 ____________________________________________________________________________
13878 [  7744] By: jhi                                   on 2000/11/18  22:50:28
13879         Log: Introduce Perl_utf8_length().  Use it.
13880      Branch: perl
13881            ! embed.h embed.pl objXSUB.h perlapi.c proto.h sv.c utf8.c
13882 ____________________________________________________________________________
13883 [  7743] By: jhi                                   on 2000/11/18  22:38:51
13884         Log: Compiler denit.
13885      Branch: perl
13886            ! perlio.c
13887 ____________________________________________________________________________
13888 [  7742] By: jhi                                   on 2000/11/18  20:33:05
13889         Log: Integrate perlio.
13890      Branch: perl
13891           !> cop.h doio.c gv.c lib/open.pm mg.c op.c perl.c perlio.c
13892           !> perlio.h pp_ctl.c pp_sys.c sv.c
13893 ____________________________________________________________________________
13894 [  7741] By: jhi                                   on 2000/11/18  20:31:27
13895         Log: Subject: [PATCH 5.7.0] make regcomp reenterable
13896              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
13897              Date: Fri, 17 Nov 2000 20:35:11 -0500
13898              Message-ID: <20001117203511.A13121@monk.mps.ohio-state.edu>
13899              
13900              Subject: Re: [PATCH 5.7.0] make regcomp reenterable
13901              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
13902              Date: Fri, 17 Nov 2000 21:03:47 -0500
13903              Message-ID: <20001117210347.A16570@monk.mps.ohio-state.edu>
13904              
13905              Plus a little bit of tweaking in pregcomp().
13906      Branch: perl
13907            ! embed.h embed.pl perl.h proto.h regcomp.c regcomp.h
13908 ____________________________________________________________________________
13909 [  7740] By: nick                                  on 2000/11/18  20:17:22
13910         Log: Lexical use open ... support:
13911              add ->cop_io to COP structure in cop.h.
13912              Make mg.c and gv.c associate it with ${^OPEN}.
13913              Make lib/open.pm set it.
13914              Have sv.c, perl.c, pp_ctl.c, op.c manipulate it in a manner
13915              manner similar to ->cop_warnings.
13916              Have doio.c's do_open9 and pp_sys.c's pp_backticks use it as default and
13917              call new PerlIO_apply_layers().
13918              Declare latter in perlio.h and define in perlio.c
13919      Branch: perlio
13920            ! cop.h doio.c gv.c lib/open.pm mg.c op.c perl.c perlio.c
13921            ! perlio.h pp_ctl.c pp_sys.c sv.c
13922 ____________________________________________________________________________
13923 [  7739] By: jhi                                   on 2000/11/18  19:54:00
13924         Log: Integrate perlio.
13925      Branch: perl
13926           !> doio.c perlio.c pp.c
13927 ____________________________________________________________________________
13928 [  7738] By: jhi                                   on 2000/11/18  17:16:13
13929         Log: Subject: [PATCH 5.7.0] etags broken again
13930              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
13931              Date: Sat, 18 Nov 2000 02:41:36 -0500
13932              Message-ID: <20001118024136.A19097@monk.mps.ohio-state.edu>
13933      Branch: perl
13934            ! emacs/ptags
13935 ____________________________________________________________________________
13936 [  7737] By: jhi                                   on 2000/11/18  17:12:18
13937         Log: Upgrade to CPAN.pm 1.58_93 (the RC1 for 1.59), from Andreas König.
13938      Branch: perl
13939            ! lib/CPAN.pm lib/CPAN/FirstTime.pm
13940 ____________________________________________________________________________
13941 [  7736] By: nick                                  on 2000/11/18  14:06:20
13942         Log: Basic tweaks to do_open() type parsing to allow layer/discipline
13943              part to be isolated.
13944      Branch: perlio
13945            ! doio.c perlio.c
13946 ____________________________________________________________________________
13947 [  7735] By: nick                                  on 2000/11/18  11:03:32
13948         Log: Integrate mainline
13949      Branch: perlio
13950           !> Changes README.amiga README.win32 patchlevel.h
13951           !> pod/perlfunc.pod pp.c regcomp.c regexec.c t/op/re_tests
13952 ____________________________________________________________________________
13953 [  7734] By: jhi                                   on 2000/11/18  01:18:56
13954         Log: Update Changes.
13955      Branch: perl
13956            ! Changes patchlevel.h
13957 ____________________________________________________________________________
13958 [  7733] By: jhi                                   on 2000/11/18  00:32:54
13959         Log: Subject: [PATCH 5.7.0] restore match data on backtracing
13960              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
13961              Date: Fri, 17 Nov 2000 17:28:02 -0500
13962              Message-ID: <20001117172802.A1032@monk.mps.ohio-state.edu>
13963      Branch: perl
13964            ! regcomp.c regexec.c t/op/re_tests
13965 ____________________________________________________________________________
13966 [  7732] By: jhi                                   on 2000/11/18  00:28:56
13967         Log: Sparc 64-bit pack() fix from Jens Hamisch.
13968      Branch: perl
13969            ! pp.c
13970 ____________________________________________________________________________
13971 [  7731] By: jhi                                   on 2000/11/18  00:18:39
13972         Log: Explain in more detail the {} syntax ambiguousity.
13973              
13974              Subject: [PATCH] Re: [ID 20001117.003] map { "$_", 1} @array is syntax error
13975              From: Nicholas Clark <nick@ccl4.org>
13976              Date: Fri, 17 Nov 2000 22:10:28 +0000
13977              Message-ID: <20001117221028.A88930@plum.flirble.org>
13978      Branch: perl
13979            ! pod/perlfunc.pod
13980 ____________________________________________________________________________
13981 [  7730] By: jhi                                   on 2000/11/18  00:12:18
13982         Log: Subject: Fix for README.amiga (20000323.033)
13983              From: "Stephen P. Potter" <spp@spotter.yi.org>
13984              Date: Fri, 17 Nov 2000 12:25:51 -0500
13985              Message-Id: <200011171725.MAA05768@spotter.yi.org>
13986      Branch: perl
13987            ! README.amiga
13988 ____________________________________________________________________________
13989 [  7729] By: jhi                                   on 2000/11/18  00:08:34
13990         Log: Subject: [PATCH 5.6.0 README.win32] very minor typos
13991              From: "A. C. Yardley" <yardley@tanet.net>
13992              Date: Mon, 3 Apr 2000 11:35:33 -0700
13993              Message-ID: <3483.000403@tanet.net>
13994      Branch: perl
13995            ! README.win32
13996 ____________________________________________________________________________
13997 [  7728] By: nick                                  on 2000/11/17  21:59:47
13998         Log: Integrate mainline
13999      Branch: perlio
14000           !> configure.com hints/solaris_2.sh lib/Carp/Heavy.pm
14001           !> lib/ExtUtils/xsubpp lib/Pod/Checker.pm pod/perlfaq9.pod
14002           !> pod/perlhack.pod pod/perllocale.pod pod/perlmodlib.PL
14003           !> pod/perlpod.pod pod/perlxs.pod pod/perlxstut.pod t/lib/b.t
14004 ____________________________________________________________________________
14005 [  7727] By: nick                                  on 2000/11/17  21:56:31
14006         Log: Experiment on use of attributes.pm interface.
14007              Valid generic fix to auto-vivify code in rv2gv - only "upgrade" to
14008              SVt_PVRV if not already something better (else vivify of say magic gets
14009              core dump).
14010      Branch: perlio
14011            ! perlio.c pp.c
14012 ____________________________________________________________________________
14013 [  7726] By: jhi                                   on 2000/11/17  14:15:49
14014         Log: Subject: Fix for 20000815.006
14015              From: "Stephen P. Potter" <spp@spotter.yi.org>
14016              Date: Fri, 17 Nov 2000 08:57:45 -0500
14017              Message-Id: <200011171357.IAA05122@spotter.yi.org>
14018              
14019              It's really 20000518.006.
14020      Branch: perl
14021            ! pod/perlmodlib.PL
14022 ____________________________________________________________________________
14023 [  7725] By: jhi                                   on 2000/11/17  14:12:31
14024         Log: Subject: Fix for 20000409.001
14025              From: "Stephen P. Potter" <spp@spotter.yi.org>
14026              Date: Fri, 17 Nov 2000 08:55:45 -0500
14027              Message-Id: <200011171355.IAA05104@spotter.yi.org>
14028      Branch: perl
14029            ! pod/perlfaq9.pod
14030 ____________________________________________________________________________
14031 [  7724] By: jhi                                   on 2000/11/17  14:08:58
14032         Log: Undo #7627 now that we have =head3.
14033      Branch: perl
14034            ! pod/perlhack.pod
14035 ____________________________________________________________________________
14036 [  7723] By: jhi                                   on 2000/11/17  14:04:09
14037         Log: As surmised the #7719 wasn't a good move.
14038      Branch: perl
14039            ! hints/solaris_2.sh
14040 ____________________________________________________________________________
14041 [  7722] By: jhi                                   on 2000/11/17  13:59:04
14042         Log: Also the 64bitall hints can be either here or there.
14043      Branch: perl
14044            ! hints/solaris_2.sh
14045 ____________________________________________________________________________
14046 [  7721] By: jhi                                   on 2000/11/17  02:26:23
14047         Log: Test tweak for the open pragma.
14048      Branch: perl
14049            ! t/lib/b.t
14050 ____________________________________________________________________________
14051 [  7720] By: jhi                                   on 2000/11/17  00:23:22
14052         Log: The long double hints can be here or there.
14053      Branch: perl
14054            ! hints/solaris_2.sh
14055 ____________________________________________________________________________
14056 [  7719] By: jhi                                   on 2000/11/17  00:14:06
14057         Log: For Solaris use64bitall the stdchar needs a little bit of help.
14058      Branch: perl
14059            ! hints/solaris_2.sh
14060 ____________________________________________________________________________
14061 [  7718] By: jhi                                   on 2000/11/16  23:27:34
14062         Log: Subject: Re: Bug in Carp::Heavy/5.6.0?
14063              From: Wolfgang Laun <Wolfgang.Laun@alcatel.at>
14064              Date: Wed, 15 Nov 2000 08:56:32 +0100
14065              Message-ID: <3A1241B0.64477E00@alcatel.at>
14066      Branch: perl
14067            ! lib/Carp/Heavy.pm
14068 ____________________________________________________________________________
14069 [  7717] By: jhi                                   on 2000/11/16  23:23:29
14070         Log: Subject: [PATCH] Re: 20001101.003 PDL
14071              From: Nicholas Clark <nick@ccl4.org>
14072              Date: Thu, 16 Nov 2000 16:48:25 +0000
14073              Message-ID: <20001116164825.B93487@plum.flirble.org>
14074      Branch: perl
14075            ! lib/ExtUtils/xsubpp pod/perlxs.pod pod/perlxstut.pod
14076 ____________________________________________________________________________
14077 [  7716] By: jhi                                   on 2000/11/16  23:21:31
14078         Log: Subject: [PATCH] Re: [p5p] [PATCH perlpod.pod] Digging into the =head
14079              From: "Casey R. Tweten" <crt@kiski.net>
14080              Date: Thu, 16 Nov 2000 12:02:47 -0500 (EST)
14081              Message-ID: <Pine.OSF.4.21.0011161200410.700-100000@home.kiski.net>
14082      Branch: perl
14083            ! lib/Pod/Checker.pm pod/perlpod.pod
14084 ____________________________________________________________________________
14085 [  7715] By: jhi                                   on 2000/11/16  23:19:40
14086         Log: Avoid an infinite loop in VMS when utils scripts are run
14087              with no arguments, from Charles Lane.
14088      Branch: perl
14089            ! configure.com
14090 ____________________________________________________________________________
14091 [  7714] By: jhi                                   on 2000/11/16  23:17:08
14092         Log: Subject: perllocale.pod changes
14093              From: "Konovalov, Vadim" <vkonovalov@lucent.com>
14094              Date: Mon, 13 Nov 2000 10:09:22 +0300
14095              Message-ID: <402099F49BEED211999700805FC7359F825416@ru0028exch01.spb.lucent.com>
14096      Branch: perl
14097            ! pod/perllocale.pod
14098 ____________________________________________________________________________
14099 [  7713] By: jhi                                   on 2000/11/16  23:14:06
14100         Log: Integrate perlio.
14101      Branch: perl
14102           !> doio.c perlio.c perlio.h util.c
14103 ____________________________________________________________________________
14104 [  7712] By: nick                                  on 2000/11/16  21:10:58
14105         Log: Integrate mainline
14106      Branch: perlio
14107           !> Configure Porting/Glossary Porting/config.sh Porting/config_H
14108           !> config_h.SH configure.com epoc/config.sh malloc.c uconfig.h
14109           !> uconfig.sh vos/config.alpha.def vos/config.alpha.h
14110           !> vos/config.ga.def vos/config.ga.h win32/config.bc
14111           !> win32/config.gc win32/config.vc
14112 ____________________________________________________________________________
14113 [  7711] By: nick                                  on 2000/11/16  19:56:41
14114         Log: Minor tweaks:
14115              consistent way of getting 'rb', 'wb' etc. for binary opens
14116              move *perlio::layers to *open::layers
14117              a #define to show layers available
14118              DOSISH popen/PerlIO had export/import sense inverted.
14119      Branch: perlio
14120            ! doio.c perlio.c perlio.h util.c
14121 ____________________________________________________________________________
14122 [  7710] By: jhi                                   on 2000/11/16  15:46:05
14123         Log: Add HAS_SBRK_PROTO.
14124      Branch: metaconfig/U/perl
14125            + d_sbrkproto.U
14126      Branch: perl
14127            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
14128            ! config_h.SH configure.com epoc/config.sh malloc.c uconfig.h
14129            ! uconfig.sh vos/config.alpha.def vos/config.alpha.h
14130            ! vos/config.ga.def vos/config.ga.h win32/config.bc
14131            ! win32/config.gc win32/config.vc
14132 ____________________________________________________________________________
14133 [  7709] By: nick                                  on 2000/11/16  07:31:49
14134         Log: Integrate mainline
14135      Branch: perlio
14136           !> (integrate 35 files)
14137 ____________________________________________________________________________
14138 [  7708] By: jhi                                   on 2000/11/16  05:33:03
14139         Log: These files are text, not binary.
14140      Branch: perl
14141            ! ext/Encode/Encode/iso8859-10.enc
14142            ! ext/Encode/Encode/iso8859-13.enc
14143            ! ext/Encode/Encode/iso8859-14.enc
14144            ! ext/Encode/Encode/iso8859-15.enc
14145 ____________________________________________________________________________
14146 [  7707] By: jhi                                   on 2000/11/16  01:53:37
14147         Log: Update Changes.
14148      Branch: perl
14149            ! Changes patchlevel.h
14150 ____________________________________________________________________________
14151 [  7706] By: jhi                                   on 2000/11/16  01:35:59
14152         Log: More #undefing of stdio.
14153      Branch: perl
14154            ! fakesdio.h nostdio.h
14155 ____________________________________________________________________________
14156 [  7705] By: jhi                                   on 2000/11/16  01:34:18
14157         Log: Add fwalk() probe to the configuration files and regen perltoc.
14158      Branch: perl
14159            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
14160            ! config_h.SH configure.com epoc/config.sh pod/perltoc.pod
14161            ! uconfig.h uconfig.sh util.c vos/config.alpha.def
14162            ! vos/config.alpha.h vos/config.ga.def vos/config.ga.h
14163            ! win32/config.bc win32/config.gc win32/config.vc
14164 ____________________________________________________________________________
14165 [  7704] By: jhi                                   on 2000/11/16  01:33:07
14166         Log: Add the _fwalk() unit.  (The probe says 'fwalk()'.  Time for
14167              an optional third argument to Inlibc?)
14168      Branch: metaconfig/U/perl
14169            + d__fwalk.U
14170 ____________________________________________________________________________
14171 [  7703] By: jhi                                   on 2000/11/16  01:09:22
14172         Log: The type of the hash_cb() size argument is tricky.
14173      Branch: perl
14174            ! ext/DB_File/DB_File.xs
14175 ____________________________________________________________________________
14176 [  7702] By: jhi                                   on 2000/11/15  23:01:16
14177         Log: Quick temporary fix for 20001114.008 as suggested by Nick Ing-Simmons.
14178      Branch: perl
14179            ! nostdio.h
14180 ____________________________________________________________________________
14181 [  7701] By: jhi                                   on 2000/11/15  22:52:32
14182         Log: Detypo.
14183      Branch: perl
14184            ! t/lib/bigfltpm.t
14185 ____________________________________________________________________________
14186 [  7700] By: jhi                                   on 2000/11/15  22:51:56
14187         Log: UINT64_C() work continues.
14188      Branch: perl
14189            ! handy.h perl.h utf8.h
14190 ____________________________________________________________________________
14191 [  7699] By: jhi                                   on 2000/11/15  14:13:04
14192         Log: SOCKS has its own USE_THREADS, based on
14193              
14194              Subject: [ID 20001114.002] et. al. bugfix followup
14195              From: Jens Hamisch <jens@Strawberry.COM> 
14196              Date: Wed, 15 Nov 2000 14:23:11 +0100
14197              Message-ID: <20001115142311.A21164@Strawberry.COM>
14198      Branch: perl
14199            ! perl.h
14200 ____________________________________________________________________________
14201 [  7698] By: jhi                                   on 2000/11/15  03:50:56
14202         Log: Add few missing #undefs and sort them.
14203      Branch: perl
14204            ! fakesdio.h
14205 ____________________________________________________________________________
14206 [  7697] By: jhi                                   on 2000/11/15  03:39:14
14207         Log: Linenumber fix.
14208      Branch: perl
14209            ! t/pragma/warn/utf8
14210 ____________________________________________________________________________
14211 [  7696] By: jhi                                   on 2000/11/15  02:55:26
14212         Log: EBCDIC tweaks.
14213              
14214              Subject: [PATCH: perl@7674 ++] fixes for warnings and regmesg (reprise)
14215              From: Peter Prymmer <pvhp@forte.com>
14216              Date: Tue, 14 Nov 2000 17:05:11 -0800 (PST)
14217              Message-ID: <Pine.OSF.4.10.10011141653510.106218-100000@aspara.forte.com>
14218      Branch: perl
14219            ! t/op/regmesg.t t/pragma/warn/utf8
14220 ____________________________________________________________________________
14221 [  7695] By: jhi                                   on 2000/11/15  02:53:58
14222         Log: Subject: [PATCH: perl@7674 + Scott-Thoennes] hush warnings about malformed EBCDIC text
14223              From: Peter Prymmer <pvhp@forte.com>
14224              Date: Tue, 14 Nov 2000 15:09:41 -0800 (PST)
14225              Message-ID: <Pine.OSF.4.10.10011141500260.106218-100000@aspara.forte.com>
14226      Branch: perl
14227            ! utf8.c
14228 ____________________________________________________________________________
14229 [  7694] By: jhi                                   on 2000/11/15  02:50:55
14230         Log: Subject: [PATCH: perl@7674] updates to README.os390
14231              From: Prymmer/Kahn <pvhp@best.com>
14232              Date: Tue, 14 Nov 2000 09:20:20 -0800 (PST)
14233              Message-ID: <Pine.BSF.4.21.0011140913370.15162-100000@shell8.ba.best.com>
14234      Branch: perl
14235            ! README.os390
14236 ____________________________________________________________________________
14237 [  7693] By: jhi                                   on 2000/11/15  02:48:37
14238         Log: Quit utf8_to_uv() instantly if curlen == 0.
14239      Branch: perl
14240            ! utf8.c
14241 ____________________________________________________________________________
14242 [  7692] By: jhi                                   on 2000/11/15  02:24:29
14243         Log: Use u_int32_t for the size of hash_cb(), not size_t.
14244              
14245              Subject: [ID 20001114.003] Solaris 8, 64 Bit DB_file patch
14246              From: Jens Hamisch <jens@Strawberry.COM>     
14247              Date: Tue, 14 Nov 2000 19:03:55 +0100
14248              Message-Id: <20001114190355.A20559@Strawberry.COM>
14249      Branch: perl
14250            ! ext/DB_File/DB_File.xs
14251 ____________________________________________________________________________
14252 [  7691] By: jhi                                   on 2000/11/15  02:20:12
14253         Log: Use UINT64_C().
14254              
14255              Subject: [ID 20001114.006] 5.7.0-7680 Solaris 8, 64 bit, utf8 patch
14256              From: Jens Hamisch <jens@Strawberry.COM>
14257              Date: Tue, 14 Nov 2000 19:16:23 +0100
14258              Message-Id: <20001114191623.G20559@Strawberry.COM>
14259      Branch: perl
14260            ! utf8.c utf8.h
14261 ____________________________________________________________________________
14262 [  7690] By: jhi                                   on 2000/11/15  02:17:06
14263         Log: Defined INT64_C() and UINT64_C() unless defined by <inttypes.h>
14264              (a macro to define signed and unsigned integer constants).
14265      Branch: perl
14266            ! handy.h
14267 ____________________________________________________________________________
14268 [  7689] By: jhi                                   on 2000/11/15  01:56:51
14269         Log: Regen Configure.
14270      Branch: perl
14271            ! Configure
14272 ____________________________________________________________________________
14273 [  7688] By: jhi                                   on 2000/11/15  01:56:32
14274         Log: Make the unit know about SOCKS.
14275      Branch: metaconfig
14276            ! U/protos/socksizetype.U
14277 ____________________________________________________________________________
14278 [  7687] By: jhi                                   on 2000/11/15  01:54:47
14279         Log: Remove unused dependencies.
14280      Branch: metaconfig
14281            ! U/compline/d_getpagsz.U
14282 ____________________________________________________________________________
14283 [  7686] By: nick                                  on 2000/11/14  21:25:13
14284         Log: Integrate mainline.
14285      Branch: perlio
14286           +> ext/re/hints/MSWin32.pl win32/bin/mdelete.bat
14287           !> MANIFEST doio.c doop.c ext/IO/lib/IO/Handle.pm
14288           !> ext/IO/lib/IO/Seekable.pm ext/SDBM_File/Makefile.PL
14289           !> lib/ExtUtils/MM_Unix.pm lib/perl5db.pl makedef.pl perl.h
14290           !> perlio.c pp.c pp_sys.c toke.c utf8.c utf8.h win32/Makefile
14291           !> win32/config.bc win32/config.gc win32/config.vc
14292           !> win32/makefile.mk win32/win32.c win32/win32.h win32/win32sck.c
14293 ____________________________________________________________________________
14294 [  7685] By: jhi                                   on 2000/11/14  17:54:56
14295         Log: Integrate perlio.
14296      Branch: perl
14297           +> fakesdio.h perliol.h
14298           !> MANIFEST iperlsys.h nostdio.h perl.c perlio.c perlio.h
14299           !> perlsdio.h perlsfio.h pod/perlfunc.pod
14300 ____________________________________________________________________________
14301 [  7684] By: nick                                  on 2000/11/14  17:43:04
14302         Log: PerlIO #include and #ifdef re-work.
14303      Branch: perlio
14304            + fakesdio.h perliol.h
14305            ! MANIFEST iperlsys.h nostdio.h perl.c perlio.c perlio.h
14306            ! perlsdio.h perlsfio.h
14307 ____________________________________________________________________________
14308 [  7683] By: jhi                                   on 2000/11/14  15:42:40
14309         Log: Hoist the duplicated socket/netdb include logic to perl.h;
14310              undef SETERRNO in case SOCKS has defined it.  Based on:
14311              
14312              Subject: [ID 20001114.002] Code-Cleanups concerning SOCKS5 and Solaris   
14313              From: Jens Hamisch <jens@Strawberry.COM> 
14314              Date: Tue, 14 Nov 2000 11:34:40 +0100
14315              Message-Id: <20001114113440.A20005@Strawberry.COM>
14316      Branch: perl
14317            ! doio.c perl.h pp_sys.c
14318 ____________________________________________________________________________
14319 [  7682] By: jhi                                   on 2000/11/14  14:07:28
14320         Log: Subject: some additions for makefiles for win32 (for perl@7674)
14321              From: "Konovalov, Vadim" <vkonovalov@lucent.com>
14322              Date: Tue, 14 Nov 2000 09:31:13 +0300
14323              Message-ID: <402099F49BEED211999700805FC7359F8254FC@ru0028exch01.spb.lucent.com>
14324      Branch: perl
14325            ! win32/Makefile win32/config.bc win32/config.gc win32/config.vc
14326            ! win32/makefile.mk
14327 ____________________________________________________________________________
14328 [  7681] By: jhi                                   on 2000/11/14  14:01:41
14329         Log: Subject: tiny typo in perl5db.pl
14330              From: "Konovalov, Vadim" <vkonovalov@lucent.com>
14331              Date: Tue, 14 Nov 2000 09:29:28 +0300
14332              Message-ID: <402099F49BEED211999700805FC7359F8254F7@ru0028exch01.spb.lucent.com>
14333      Branch: perl
14334            ! lib/perl5db.pl
14335 ____________________________________________________________________________
14336 [  7680] By: jhi                                   on 2000/11/14  04:13:50
14337         Log: Redo #7679 with LFs instead of CRLFs.
14338      Branch: perl
14339            ! ext/SDBM_File/Makefile.PL lib/ExtUtils/MM_Unix.pm makedef.pl
14340            ! perlio.c win32/Makefile win32/bin/mdelete.bat win32/config.gc
14341            ! win32/config.vc win32/win32.c win32/win32.h win32/win32sck.c
14342 ____________________________________________________________________________
14343 [  7679] By: jhi                                   on 2000/11/14  01:21:09
14344         Log: Subject: [PATCH perl@7638] Get PerlIO building on Win32
14345              From: Benjamin Stuhl <tiriath@yahoo.com> 
14346              Date: Mon, 13 Nov 2000 15:08:08 -0800 (PST)
14347              Message-ID: <20001113230808.18659.qmail@web6305.mail.yahoo.com>
14348      Branch: perl
14349            + win32/bin/mdelete.bat
14350            ! MANIFEST ext/SDBM_File/Makefile.PL lib/ExtUtils/MM_Unix.pm
14351            ! makedef.pl perlio.c win32/Makefile win32/config.gc
14352            ! win32/config.vc win32/win32.c win32/win32.h win32/win32sck.c
14353 ____________________________________________________________________________
14354 [  7678] By: jhi                                   on 2000/11/14  01:19:20
14355         Log: Fix the re extension building for Win32.
14356              
14357              Subject: [PATCH perl@7638] Get PerlIO building on Win32
14358              From: Benjamin Stuhl <tiriath@yahoo.com> 
14359              Date: Mon, 13 Nov 2000 15:08:08 -0800 (PST)
14360              Message-ID: <20001113230808.18659.qmail@web6305.mail.yahoo.com>
14361      Branch: perl
14362            + ext/re/hints/MSWin32.pl
14363            ! MANIFEST
14364 ____________________________________________________________________________
14365 [  7677] By: jhi                                   on 2000/11/14  01:13:54
14366         Log: Subject: [ID 20001113.003] utf8_to_uv on malformed utf returns wrong values
14367              From: sthoenna@efn.org
14368              Date: Mon, 13 Nov 2000 14:49:40 -0800 (PST)
14369              Message-Id: <200011132249.eADMnek09679@garcia.efn.org>
14370      Branch: perl
14371            ! doop.c pp.c toke.c utf8.c utf8.h
14372 ____________________________________________________________________________
14373 [  7676] By: jhi                                   on 2000/11/13  20:23:15
14374         Log: Subject: Re: [ID 20001112.008] perlio.c's PerlIO_getpos ingores error return
14375              From: Nicholas Clark <nick@ccl4.org>
14376              Date: Mon, 13 Nov 2000 18:55:04 +0000
14377              Message-ID: <20001113185504.J29183@plum.flirble.org>
14378      Branch: perl
14379            ! ext/IO/lib/IO/Handle.pm ext/IO/lib/IO/Seekable.pm
14380 ____________________________________________________________________________
14381 [  7675] By: nick                                  on 2000/11/13  20:21:57
14382         Log: Integrate mainline ...
14383      Branch: perlio
14384           !> Changes MANIFEST doop.c ext/IO/IO.xs ext/IO/lib/IO/Handle.pm
14385           !> ext/IO/lib/IO/Seekable.pm patchlevel.h perl.h perlio.c
14386           !> perlsfio.h pod/perlfunc.pod pod/perlunicode.pod pp.c regexp.h
14387           !> t/io/tell.t t/lib/io_xs.t t/op/bop.t utf8.c
14388 ____________________________________________________________________________
14389 [  7674] By: jhi                                   on 2000/11/13  15:07:56
14390         Log: Update Changes.
14391      Branch: perl
14392            ! Changes patchlevel.h
14393 ____________________________________________________________________________
14394 [  7673] By: jhi                                   on 2000/11/13  14:42:42
14395         Log: Remove the new two tests of lib/io_xs for now, they seem to
14396              fail under perlio on some platforms.
14397      Branch: perl
14398            ! t/lib/io_xs.t
14399 ____________________________________________________________________________
14400 [  7672] By: jhi                                   on 2000/11/13  13:57:53
14401         Log: Make PerlIO_getpos() to behave like fgetpos() on return.
14402      Branch: perl
14403            ! perlio.c
14404 ____________________________________________________________________________
14405 [  7671] By: jhi                                   on 2000/11/13  05:30:48
14406         Log: Placate nervous compilers that see longer than ints switch()ing.
14407      Branch: perl
14408            ! utf8.c
14409 ____________________________________________________________________________
14410 [  7670] By: jhi                                   on 2000/11/13  05:14:21
14411         Log: fputs() does return EOF on error but here we don't care.
14412      Branch: perl
14413            ! perlio.c
14414 ____________________________________________________________________________
14415 [  7669] By: jhi                                   on 2000/11/13  05:02:45
14416         Log: Declare reg_data like reg_substr_data.
14417      Branch: perl
14418            ! regexp.h
14419 ____________________________________________________________________________
14420 [  7668] By: jhi                                   on 2000/11/13  04:54:34
14421         Log: Typos in #7667.
14422      Branch: perl
14423            ! perl.h
14424 ____________________________________________________________________________
14425 [  7667] By: jhi                                   on 2000/11/13  04:49:49
14426         Log: Cleanup messy #ifdef.
14427      Branch: perl
14428            ! perl.h
14429 ____________________________________________________________________________
14430 [  7666] By: jhi                                   on 2000/11/13  04:17:34
14431         Log: Subject: [ID 20001112.008] perlio.c's PerlIO_getpos ingores error return
14432              From: Nicholas Clark <nick@talking.bollo.cx>
14433              Date: Sun, 12 Nov 2000 21:14:11 +0000
14434              Message-Id: <E13v4S3-0000iY-00@Bagpuss.unfortu.net>
14435              
14436              Note: only one breakage of the two reported is fixed by this patch.
14437      Branch: perl
14438            ! perlio.c
14439 ____________________________________________________________________________
14440 [  7665] By: jhi                                   on 2000/11/13  04:05:07
14441         Log: Tweak the definition of the bit complement on UTF-8 data:
14442              if none of the characters in the string are > 0xff,
14443              the result is a complemented byte string, not a (UTF-8)
14444              char string.  Based on the summary in
14445              
14446              Subject: Re: [ID 20000918.005] ~ on wide chars
14447              From: sthoenna@efn.org (Yitzchak Scott-Thoennes) 
14448              Date: Fri, 10 Nov 2000 09:47:15 -0800
14449              Message-ID: <jSDD6gzkgi/T092yn@efn.org>
14450              
14451              This should give us the maximum backward (pre-char string)
14452              compatibility and utf8 compatibility.  The other alternative
14453              would be to limit the bit complement to be always byte only,
14454              taking the least significant byte of the chars.
14455      Branch: perl
14456            ! doop.c pod/perlunicode.pod pp.c t/op/bop.t
14457 ____________________________________________________________________________
14458 [  7664] By: jhi                                   on 2000/11/13  00:23:44
14459         Log: Couple of tests from #7660 salvaged.
14460      Branch: perl
14461            - t/op/tell.t
14462            ! MANIFEST t/io/tell.t
14463 ____________________________________________________________________________
14464 [  7663] By: jhi                                   on 2000/11/13  00:02:48
14465         Log: Subject: [ID 20001112.007] sfio's sftell isn't ftell
14466              From: Nicholas Clark <nick@talking.bollo.cx>
14467              Date: Sun, 12 Nov 2000 21:23:43 +0000
14468              Message-Id: <E13v4bH-0000lN-00@Bagpuss.unfortu.net>
14469      Branch: perl
14470            ! perlsfio.h
14471 ____________________________________________________________________________
14472 [  7662] By: jhi                                   on 2000/11/13  00:01:39
14473         Log: Subject: [ID 20001112.006] IO::Seekable::getpos doesn't check for fgetpos() failure
14474              From: Nicholas Clark <nick@talking.bollo.cx>
14475              Date: Sun, 12 Nov 2000 21:30:04 +0000
14476              Message-Id: <E13v4hQ-0000mn-00@Bagpuss.unfortu.net>
14477      Branch: perl
14478            ! ext/IO/IO.xs ext/IO/lib/IO/Seekable.pm t/lib/io_xs.t
14479 ____________________________________________________________________________
14480 [  7661] By: jhi                                   on 2000/11/12  23:57:29
14481         Log: Document tell() on special streams.
14482      Branch: perl
14483            ! pod/perlfunc.pod
14484 ____________________________________________________________________________
14485 [  7660] By: jhi                                   on 2000/11/12  23:54:22
14486         Log: (Subsumed by #7664)
14487      Branch: perl
14488            + t/op/tell.t
14489            ! MANIFEST
14490 ____________________________________________________________________________
14491 [  7659] By: jhi                                   on 2000/11/12  22:55:25
14492         Log: Many subdocumented return values of the IO extension now documented.
14493              ungetc and write still left subdocumented.
14494              
14495              Subject: [PATCH] (was Re: IO::Handle::ungetc)
14496              From: Nicholas Clark <nick@talking.bollo.cx>
14497              Date: Sun, 12 Nov 2000 21:35:53 +0000
14498              Message-ID: <20001112213552.A3034@Bagpuss.unfortu.net>
14499      Branch: perl
14500            ! ext/IO/lib/IO/Handle.pm
14501 ____________________________________________________________________________
14502 [  7658] By: jhi                                   on 2000/11/12  21:37:06
14503         Log: Subject: [ID 20001112.004] man perlfunc omits tell()'s error return
14504              From: Nicholas Clark <nick@talking.bollo.cx>
14505              Date: Sun, 12 Nov 2000 20:03:22 +0000
14506              Message-Id: <E13v3LV-0008Pd-00@Bagpuss.unfortu.net>
14507      Branch: perl
14508            ! pod/perlfunc.pod
14509 ____________________________________________________________________________
14510 [  7657] By: jhi                                   on 2000/11/12  20:34:55
14511         Log: Integrate perlio.
14512      Branch: perl
14513           !> perlio.c
14514 ____________________________________________________________________________
14515 [  7656] By: nick                                  on 2000/11/12  19:25:06
14516         Log: Add aTHX_ to Perl_croak's (MULTIPLICITY et. al.)
14517      Branch: perlio
14518            ! perlio.c
14519 ____________________________________________________________________________
14520 [  7655] By: nick                                  on 2000/11/12  19:09:41
14521         Log: Integrate mainline
14522      Branch: perlio
14523           +> README.solaris ext/Encode/Encode/cp1006.enc
14524           +> ext/Encode/Encode/cp424.enc ext/Encode/Encode/cp856.enc
14525           +> ext/Encode/Encode/gsm0338.enc ext/Encode/Encode/iso8859-10.enc
14526           +> ext/Encode/Encode/iso8859-13.enc
14527           +> ext/Encode/Encode/iso8859-14.enc
14528           +> ext/Encode/Encode/iso8859-15.enc
14529           !> (integrate 34 files)
14530 ____________________________________________________________________________
14531 [  7654] By: jhi                                   on 2000/11/12  19:00:22
14532         Log: Add a metaconfig unit for fsync.
14533      Branch: metaconfig/U/perl
14534            + d_fsync.U
14535 ____________________________________________________________________________
14536 [  7653] By: jhi                                   on 2000/11/12  19:00:01
14537         Log: Add HAS_FSYNC, lack noticed by Nicholas Clark.
14538      Branch: perl
14539            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
14540            ! config_h.SH configure.com epoc/config.sh uconfig.h uconfig.sh
14541            ! vos/config.alpha.def vos/config.alpha.h vos/config.ga.def
14542            ! vos/config.ga.h win32/config.bc win32/config.gc
14543            ! win32/config.vc
14544 ____________________________________________________________________________
14545 [  7652] By: jhi                                   on 2000/11/11  21:12:01
14546         Log: Copy the s// information of README.hpux also to the perlrun.
14547      Branch: perl
14548            ! README.hpux pod/perlrun.pod
14549 ____________________________________________________________________________
14550 [  7651] By: jhi                                   on 2000/11/11  21:03:13
14551         Log: More README.solaris updates from Andy Dougherty.
14552      Branch: perl
14553            ! README.solaris
14554 ____________________________________________________________________________
14555 [  7650] By: jhi                                   on 2000/11/11  18:38:57
14556         Log: More descriptive error for unknown perlio layers.
14557              
14558              Subject: [PATCHES Bleadperl] Re: PerlIO - what all of you can all do.   
14559              From: Dominic Dunlop <domo@computer.org> 
14560              Date: Sat, 11 Nov 2000 18:20:32 +0100             
14561              Message-Id: <p04320401b632c4c3335b@[192.168.1.4]>
14562      Branch: perl
14563            ! perlio.c pod/perldiag.pod
14564 ____________________________________________________________________________
14565 [  7649] By: jhi                                   on 2000/11/11  18:37:52
14566         Log: MachTen doesn't really do mmap() and munmap().
14567              
14568              Subject: [PATCHES Bleadperl] Re: PerlIO - what all of you can all do.   
14569              From: Dominic Dunlop <domo@computer.org> 
14570              Date: Sat, 11 Nov 2000 18:20:32 +0100             
14571              Message-Id: <p04320401b632c4c3335b@[192.168.1.4]>
14572      Branch: perl
14573            ! hints/machten.sh
14574 ____________________________________________________________________________
14575 [  7648] By: jhi                                   on 2000/11/11  18:36:46
14576         Log: Subject: [PATCH] fwd: Re: [ID 20001105.011] Perl 5.6.0 documentation glitch
14577              From: rspier@pobox.com (Robert Spier)
14578              Date: Sat, 11 Nov 2000 12:22:15 -0500 (EST)
14579              Message-ID: <14861.32839.491271.985797@rls.cx>
14580      Branch: perl
14581            ! Porting/Contract pod/perltoot.pod
14582 ____________________________________________________________________________
14583 [  7647] By: jhi                                   on 2000/11/11  18:35:30
14584         Log: Simplify the getpagesize() unit by dropping the
14585              pagesize probe since it's nowadays slightly more
14586              complicated because of sysconf(). (Note: if some
14587              platform really needs the -lPW for getpagesize,
14588              I just broke it.)
14589              
14590              TODO: a new pagesize unit.
14591      Branch: metaconfig
14592            ! U/compline/d_getpagsz.U
14593 ____________________________________________________________________________
14594 [  7646] By: jhi                                   on 2000/11/11  18:33:23
14595         Log: Add getpagesize() probing, on non-UNIX guess 'undef'.
14596      Branch: perl
14597            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
14598            ! config_h.SH configure.com epoc/config.sh uconfig.h uconfig.sh
14599            ! vos/config.alpha.def vos/config.alpha.h vos/config.ga.def
14600            ! vos/config.ga.h win32/config.bc win32/config.gc
14601            ! win32/config.vc
14602 ____________________________________________________________________________
14603 [  7645] By: jhi                                   on 2000/11/11  16:45:15
14604         Log: Use sysconf() or getpagesize() to find out the pagesize.
14605      Branch: perl
14606            ! perlio.c
14607 ____________________________________________________________________________
14608 [  7644] By: jhi                                   on 2000/11/11  15:46:08
14609         Log: Integrate perlio.
14610      Branch: perl
14611           !> perlio.c
14612 ____________________________________________________________________________
14613 [  7643] By: jhi                                   on 2000/11/11  15:33:36
14614         Log: Subject: Re: [PATCH] README.solaris
14615              From: Lupe Christoph <lupe@lupe-christoph.de>
14616              Date: Sat, 11 Nov 2000 14:08:10 +0100
14617              Message-ID: <20001111140810.C10394@alanya.lupe-christoph.de>
14618      Branch: perl
14619            ! README.solaris
14620 ____________________________________________________________________________
14621 [  7642] By: jhi                                   on 2000/11/11  15:22:12
14622         Log: Subject: [PATCH perl@7638] cygwin port
14623              From: "Eric Fifer" <egf7@columbia.edu>            
14624              Date: Fri, 10 Nov 2000 19:30:30 -0000
14625              Message-ID: <000001c04b4c$b96b7980$243670c2@fifer>
14626      Branch: perl
14627            ! README.cygwin lib/ExtUtils/MM_Cygwin.pm
14628 ____________________________________________________________________________
14629 [  7641] By: nick                                  on 2000/11/11  14:50:36
14630         Log: Fixup mmap layer by doing mmap() calls on pagesize boundaries.
14631              Also call "Buf" layer directly when unread'ing non-read chars.
14632      Branch: perlio
14633            ! perlio.c
14634 ____________________________________________________________________________
14635 [  7640] By: jhi                                   on 2000/11/11  02:05:02
14636         Log: Add more encoding tables.
14637      Branch: perl
14638            + ext/Encode/Encode/cp1006.enc ext/Encode/Encode/cp424.enc
14639            + ext/Encode/Encode/cp856.enc ext/Encode/Encode/gsm0338.enc
14640            + ext/Encode/Encode/iso8859-10.enc
14641            + ext/Encode/Encode/iso8859-13.enc
14642            + ext/Encode/Encode/iso8859-14.enc
14643            + ext/Encode/Encode/iso8859-15.enc
14644            ! MANIFEST
14645 ____________________________________________________________________________
14646 [  7639] By: jhi                                   on 2000/11/10  18:49:25
14647         Log: Subject: [PATCH] README.solaris
14648              From: Andy Dougherty <doughera@lafayette.edu>
14649              Date: Fri, 10 Nov 2000 12:18:00 -0500 (EST)
14650              Message-ID: <Pine.SOL.4.10.10011101217100.28341-100000@maxwell.phys.lafayette.edu>
14651      Branch: perl
14652            + README.solaris
14653            ! INSTALL MANIFEST hints/solaris_2.sh pod/buildtoc.PL
14654            ! pod/perl.pod pod/perltoc.pod
14655 ____________________________________________________________________________
14656 [  7638] By: jhi                                   on 2000/11/10  15:04:15
14657         Log: Update Changes.
14658      Branch: perl
14659            ! Changes patchlevel.h
14660 ____________________________________________________________________________
14661 [  7637] By: jhi                                   on 2000/11/10  14:14:28
14662         Log: Explain better why certain regex tests are skipped.
14663              
14664              Subject: Re: tests skipped: unknown reason
14665              From: Lupe Christoph <lupe@lupe-christoph.de>
14666              Date: Fri, 10 Nov 2000 09:08:56 +0100
14667              Message-ID: <20001110090856.J785@alanya.lupe-christoph.de>
14668      Branch: perl
14669            ! t/op/regexp.t
14670 ____________________________________________________________________________
14671 [  7636] By: nick                                  on 2000/11/10  13:40:00
14672         Log: Integrate mainline.
14673      Branch: perlio
14674           !> emacs/cperl-mode.el ext/IO/lib/IO/Handle.pm hints/linux.sh
14675           !> hints/uts.sh lib/unicode/syllables.txt perlio.c
14676           !> win32/bin/search.pl
14677 ____________________________________________________________________________
14678 [  7635] By: nick                                  on 2000/11/10  13:25:52
14679         Log: Re-instate stdio large file support via perlio.
14680      Branch: perl
14681            ! perlio.c
14682 ____________________________________________________________________________
14683 [  7634] By: jhi                                   on 2000/11/10  04:49:55
14684         Log: Amdahl UTS hints updates.
14685              
14686              Subject: [ID 20001109.016] Trouble going from 5.4 to 5.6
14687              From: hom00@utsglobal.com (Harold O Morris)
14688              Date: Thu, 9 Nov 2000 20:02 PST
14689              Message-Id: <m13u5OV-000045C@juno.uts.utsglobal.com>
14690      Branch: perl
14691            ! hints/uts.sh
14692 ____________________________________________________________________________
14693 [  7633] By: jhi                                   on 2000/11/09  23:33:28
14694         Log: Subject: [PATCH] IO::Seekable pod
14695              From: Nicholas Clark <nick@talking.bollo.cx>
14696              Date: Thu, 9 Nov 2000 20:29:45 +0000
14697              Message-ID: <20001109202945.A10451@Bagpuss.unfortu.net>
14698      Branch: perl
14699            ! ext/IO/lib/IO/Handle.pm
14700 ____________________________________________________________________________
14701 [  7632] By: jhi                                   on 2000/11/09  21:55:41
14702         Log: Various doc oddball characters.
14703              
14704              Subject: [ID 20001106.004] Perl 5.6.0 bugs  
14705              From: Michael Somos <somos@grail.cba.csuohio.edu>
14706              Date: Mon, 6 Nov 2000 17:44:20 -0500
14707              Message-Id: <200011062244.RAA28632@grail.cba.csuohio.edu>
14708      Branch: perl
14709            ! emacs/cperl-mode.el lib/unicode/syllables.txt
14710            ! win32/bin/search.pl
14711 ____________________________________________________________________________
14712 [  7631] By: jhi                                   on 2000/11/09  21:12:29
14713         Log: Subject: Re: bash -c exit and linux hints 
14714              From: "John P. Linderman" <jpl@research.att.com>
14715              Date: Thu, 02 Nov 2000 09:37:25 -0500
14716              Message-Id: <200011021437.JAA63199@raptor.research.att.com>
14717      Branch: perl
14718            ! hints/linux.sh
14719 ____________________________________________________________________________
14720 [  7630] By: nick                                  on 2000/11/09  20:34:11
14721         Log: Integrate mainline.
14722      Branch: perlio
14723           !> (integrate 91 files)
14724 ____________________________________________________________________________
14725 [  7629] By: jhi                                   on 2000/11/09  19:46:31
14726         Log: Missing dTHXs.
14727              
14728              Subject: RE: perl@7595 builds not on cygwin
14729              From: "Eric Fifer" <egf7@columbia.edu>
14730              Date: Thu, 9 Nov 2000 19:26:50 -0000
14731              Message-ID: <000201c04a83$05ef1660$933570c2@fifer>
14732      Branch: perl
14733            ! ext/Devel/Peek/Peek.xs
14734 ____________________________________________________________________________
14735 [  7628] By: jhi                                   on 2000/11/09  14:48:27
14736         Log: Disable only the tests 99 and 166 for UTF-8 locales.
14737      Branch: perl
14738            ! t/pragma/locale.t
14739 ____________________________________________________________________________
14740 [  7627] By: jhi                                   on 2000/11/09  14:40:27
14741         Log: There's no =head3.
14742      Branch: perl
14743            ! pod/perlhack.pod
14744 ____________________________________________________________________________
14745 [  7626] By: jhi                                   on 2000/11/09  13:54:26
14746         Log: The generated boot_* headers are wrong.  Pickier compiler,
14747              such as KAI C++ will refuse to compile the resulting perlmain.
14748              
14749              Subject: [ID 20001109.005] Bug in minimod.pl, perl 5.6.0
14750              From: Harri Pasanen <harri.pasanen@trema.com>
14751              Date: Thu, 09 Nov 2000 14:23:28 +0100
14752              Message-Id: <3A0AA550.26D548A3@trema.com>
14753      Branch: perl
14754            ! minimod.pl
14755 ____________________________________________________________________________
14756 [  7625] By: jhi                                   on 2000/11/09  13:50:44
14757         Log: Subject: [PATCH: perl@7613] updates to Porting/pumpkin.pod
14758              From: Prymmer/Kahn <pvhp@best.com>
14759              Date: Wed, 8 Nov 2000 22:13:26 -0800 (PST)
14760              Message-ID: <Pine.BSF.4.21.0011082208390.5584-100000@shell8.ba.best.com>
14761              
14762              All except the "cow orker" change.
14763      Branch: perl
14764            ! Porting/pumpkin.pod
14765 ____________________________________________________________________________
14766 [  7624] By: jhi                                   on 2000/11/09  13:45:33
14767         Log: Fix for
14768              
14769              Subject: [ID 20001109.003] Not OK: perl v5.7.0 +DEVEL7620 on PA-RISC2.0 11.00 (UNINSTALLED)
14770              From: "H.Merijn Brand" <h.m.brand@hccnet.nl> 
14771              Date: Thu, 09 Nov 2000 11:05:52 +0100
14772              Message-Id: <20001109110452.66CF.H.M.BRAND@hccnet.nl>
14773      Branch: perl
14774            ! pod/perldiag.pod t/pragma/warn/pp_sys
14775 ____________________________________________________________________________
14776 [  7623] By: jhi                                   on 2000/11/09  13:37:16
14777         Log: Typo in an ifndef.
14778              
14779              Subject: Re: [PATCH 5.7.0] better messages from malloc()
14780              From: Joe Smith <jms@inwap.com>         
14781              Date: Thu, 09 Nov 2000 01:33:14 -0800
14782              Message-Id: <3A0A6F5A.1E3969BB@inwap.com>
14783      Branch: perl
14784            ! malloc.c
14785 ____________________________________________________________________________
14786 [  7622] By: jhi                                   on 2000/11/09  13:31:18
14787         Log: Remove unused extra arguments.
14788      Branch: metaconfig/U/perl
14789            ! perlxv.U
14790      Branch: perl
14791            ! Configure config_h.SH
14792 ____________________________________________________________________________
14793 [  7621] By: jhi                                   on 2000/11/09  13:16:36
14794         Log: More VMS moves on environment handling, from Charles Lane.
14795      Branch: perl
14796            ! t/pragma/locale.t
14797 ____________________________________________________________________________
14798 [  7620] By: jhi                                   on 2000/11/09  04:42:38
14799         Log: Subject: patch to detect stat followed by lstat(_): [ID 20001106.006] find2perl generated scripts issue new lstat()    on filehandle _ warning
14800              From: David Dyck <dcd@tc.fluke.com>
14801              Date: Wed, 8 Nov 2000 18:36:26 -0800 (PST)
14802              Message-ID: <Pine.LNX.4.30.0011081817490.177-100000@dd.tc.fluke.com>
14803      Branch: perl
14804            ! pp_sys.c
14805 ____________________________________________________________________________
14806 [  7619] By: jhi                                   on 2000/11/09  04:36:21
14807         Log: Forgot from #7618.
14808      Branch: perl
14809            ! lib/File/stat.pm
14810 ____________________________________________________________________________
14811 [  7618] By: jhi                                   on 2000/11/09  04:28:44
14812         Log: Make deleting for %ENV work for (newer versions of) VMS,
14813              from Craig A. Berry.
14814      Branch: perl
14815            ! vms/vms.c
14816 ____________________________________________________________________________
14817 [  7617] By: jhi                                   on 2000/11/09  04:25:05
14818         Log: Subject: [PATCH] Class::Struct at compile time
14819              From: "Casey R. Tweten" <crt@kiski.net>
14820              Date: Wed, 8 Nov 2000 20:46:41 -0500 (EST)
14821              Message-ID: <Pine.OSF.4.21.0011082041360.8238-100000@home.kiski.net>
14822      Branch: perl
14823            ! lib/Class/Struct.pm
14824 ____________________________________________________________________________
14825 [  7616] By: jhi                                   on 2000/11/09  04:15:17
14826         Log: Subject: [ID 20001108.013] spelling
14827              From: "Todd T. Fries" <todd@fries.int.mrleng.com>
14828              Date: Wed, 8 Nov 2000 18:36:42 -0600 (CST)
14829              Message-Id: <200011090036.eA90agN05921@fries.int.mrleng.com>
14830      Branch: perl
14831            ! lib/ftp.pl
14832 ____________________________________________________________________________
14833 [  7615] By: jhi                                   on 2000/11/09  04:12:42
14834         Log: Subject: [PATCH: perl@7613] add Encode to VMS build and tests
14835              From: Peter Prymmer <pvhp@forte.com>
14836              Date: Wed, 8 Nov 2000 15:29:06 -0800 (PST)
14837              Message-ID: <Pine.OSF.4.10.10011081524450.248546-100000@aspara.forte.com>
14838      Branch: perl
14839            ! configure.com
14840 ____________________________________________________________________________
14841 [  7614] By: jhi                                   on 2000/11/08  22:42:55
14842         Log: A missing aTHX_.
14843      Branch: perl
14844            ! ext/IPC/SysV/SysV.xs
14845 ____________________________________________________________________________
14846 [  7613] By: jhi                                   on 2000/11/08  19:30:21
14847         Log: Update Changes.
14848      Branch: perl
14849            ! Changes patchlevel.h
14850 ____________________________________________________________________________
14851 [  7612] By: jhi                                   on 2000/11/08  18:35:25
14852         Log: Subject: is this the appropriate patch to fix: [ID 20001106.006] find2perl generated scripts issue new lstat()    on filehandle _ warning
14853              From: David Dyck <dcd@tc.fluke.com>
14854              Date: Wed, 8 Nov 2000 10:05:44 -0800 (PST)
14855              Message-ID: <Pine.LNX.4.30.0011080957440.2572-100000@dd.tc.fluke.com>
14856      Branch: perl
14857            ! pp_sys.c
14858 ____________________________________________________________________________
14859 [  7611] By: jhi                                   on 2000/11/08  18:30:26
14860         Log: Subject: [PATCH bleadperl] Re: Patch 7533 prevents malloc.c from compiling on MachTen
14861              From: Dominic Dunlop <domo@computer.org>
14862              Date: Tue, 7 Nov 2000 12:05:25 +0100
14863              Message-Id: <p04320403b62d8e0870cf@[192.168.1.4]>
14864      Branch: perl
14865            ! malloc.c
14866 ____________________________________________________________________________
14867 [  7610] By: jhi                                   on 2000/11/08  18:25:14
14868         Log: Do not test UTF-8 locales since that the tests would require
14869              polymorphic regexen.
14870      Branch: perl
14871            ! t/pragma/locale.t
14872 ____________________________________________________________________________
14873 [  7609] By: jhi                                   on 2000/11/08  17:12:51
14874         Log: Locale buglets.
14875              
14876              Subject: RE: Locales support (setlocale) fixes
14877              From: "Konovalov, Vadim" <vkonovalov@lucent.com>
14878              Date: Wed, 8 Nov 2000 20:01:39 +0300
14879              Message-ID: <402099F49BEED211999700805FC7359F825283@ru0028exch01.spb.lucent.com>
14880      Branch: perl
14881            ! t/pragma/locale.t util.c
14882 ____________________________________________________________________________
14883 [  7608] By: jhi                                   on 2000/11/08  17:00:16
14884         Log: Deleting $ENV{PATH} in VMS is not recommendable.
14885      Branch: perl
14886            ! t/pragma/locale.t
14887 ____________________________________________________________________________
14888 [  7607] By: jhi                                   on 2000/11/08  16:58:26
14889         Log: Subject: PATCH std stdio for (Free)BSD
14890              From: Nicholas Clark <nick@ccl4.org>
14891              Date: Wed, 8 Nov 2000 15:36:29 +0000
14892              Message-ID: <20001108153629.D98736@plum.flirble.org>
14893      Branch: metaconfig
14894            ! U/compline/d_stdstdio.U
14895      Branch: perl
14896            ! Configure config_h.SH
14897 ____________________________________________________________________________
14898 [  7606] By: jhi                                   on 2000/11/08  16:43:31
14899         Log: Forgot to bump the line numbers in #7601.
14900      Branch: perl
14901            ! t/pragma/warn/pp_sys
14902 ____________________________________________________________________________
14903 [  7605] By: jhi                                   on 2000/11/08  16:39:12
14904         Log: More careful detection of how well NVs and UVs mix.
14905              
14906              Subject: [PATCH] Re: NV preserving UV (wasRe: [ID 20001007.002] Not OK: perl v5.7.0 +DEVEL7158 on armv4l-linux-64int 2.2.17-rmk1 (UNINSTALLED))
14907              From: Nicholas Clark <nick@ccl4.org>
14908              Date: Wed, 8 Nov 2000 15:14:12 +0000
14909              Message-ID: <20001108151412.B98736@plum.flirble.org>
14910              
14911              Added some SIGFPE paranoia.
14912      Branch: metaconfig/U/perl
14913            ! perlxv.U
14914      Branch: perl
14915            ! Configure config_h.SH
14916 ____________________________________________________________________________
14917 [  7604] By: jhi                                   on 2000/11/08  14:39:10
14918         Log: Subject: [patch perl@7595] VMS configure.com tweak
14919              From: "Craig A. Berry" <craigberry@mac.com>
14920              Date: Wed, 8 Nov 2000 00:24:12 -0600
14921              Message-Id: <p04330103b62e879ceeff@[192.168.56.177]>
14922      Branch: perl
14923            ! configure.com
14924 ____________________________________________________________________________
14925 [  7603] By: jhi                                   on 2000/11/08  14:27:11
14926         Log: Subject: [PATCH @7595] int/ptr casts in perlio.c
14927              From: Robin Barker <rmb1@cise.npl.co.uk>
14928              Date: Wed, 8 Nov 2000 11:11:39 GMT
14929              Message-Id: <200011081111.LAA07377@tempest.npl.co.uk>
14930      Branch: perl
14931            ! perlio.c
14932 ____________________________________________________________________________
14933 [  7602] By: jhi                                   on 2000/11/08  14:25:03
14934         Log: Fix for the tie-refhash string table leaks.
14935              
14936              From: Nick Ing-Simmons <nik@tiuk.ti.com> 
14937              Date: Wed, 8 Nov 2000 13:03:04 GMT
14938              Message-Id: <200011081303.NAA07042@mikado.tiuk.ti.com>
14939      Branch: perl
14940            ! t/lib/tie-refhash.t
14941 ____________________________________________________________________________
14942 [  7601] By: jhi                                   on 2000/11/08  14:21:08
14943         Log: Try to avoid flockless and emulationless places.
14944      Branch: perl
14945            ! t/pragma/warn/pp_sys
14946 ____________________________________________________________________________
14947 [  7600] By: jhi                                   on 2000/11/08  02:28:54
14948         Log: Overrideable keys, each, pop, push, shift, splice, unshift.
14949              
14950              Subject: [PATCH] prototyped functions that should be overrideable
14951              From: "Casey R. Tweten" <crt@kiski.net>
14952              Date: Fri, 3 Nov 2000 11:09:12 -0500 (EST)
14953              Message-ID: <Pine.OSF.4.21.0011031100470.17471-100000@home.kiski.net>
14954      Branch: perl
14955            ! toke.c
14956 ____________________________________________________________________________
14957 [  7599] By: jhi                                   on 2000/11/08  01:12:05
14958         Log: Make perlbug not insist on dumping to a file when stdout isn't a tty.
14959              
14960              Subject: [PATCH] perlbug.PL
14961              From: "Kurt D. Starsinic" <kstar@chapin.edu>
14962              Date: Mon, 6 Nov 2000 21:39:01 -0500
14963              Message-ID: <20001106213901.B20955@O2.chapin.edu>
14964      Branch: perl
14965            ! utils/perlbug.PL
14966 ____________________________________________________________________________
14967 [  7598] By: jhi                                   on 2000/11/07  23:42:00
14968         Log: Bad thinko in #7581 (I used the test program with the expanded
14969              values as-is).
14970      Branch: metaconfig
14971            ! U/compline/d_stdstdio.U
14972      Branch: perl
14973            ! Configure
14974 ____________________________________________________________________________
14975 [  7597] By: jhi                                   on 2000/11/07  21:43:29
14976         Log: Subject: [PATCH perl@7573] cygwin port
14977              From: "Fifer, Eric" <EFifer@sanwaint.com>
14978              Date: Tue, 7 Nov 2000 18:08:51 -0000 
14979              Message-ID: <779F20BCCE5AD31186A50008C75D99791717BB@silldn_mail1.sanwaint.com>
14980              
14981              Synchronize with Cygwin 1.1.5.
14982      Branch: perl
14983            ! AUTHORS README.cygwin cygwin/cygwin.c hints/cygwin.sh mg.c
14984            ! pod/perlport.pod unixish.h util.c
14985 ____________________________________________________________________________
14986 [  7596] By: jhi                                   on 2000/11/07  21:39:25
14987         Log: perlhack updates from H.Merijn Brand.
14988      Branch: perl
14989            ! pod/perlhack.pod
14990 ____________________________________________________________________________
14991 [  7595] By: jhi                                   on 2000/11/07  20:21:41
14992         Log: Update Changes.
14993      Branch: perl
14994            ! Changes patchlevel.h
14995 ____________________________________________________________________________
14996 [  7594] By: jhi                                   on 2000/11/07  19:18:58
14997         Log: Be more robust in Dynaloader.pm.
14998      Branch: perl
14999            ! ext/DynaLoader/DynaLoader_pm.PL
15000 ____________________________________________________________________________
15001 [  7593] By: jhi                                   on 2000/11/07  16:49:31
15002         Log: AUTHORS update.
15003      Branch: perl
15004            ! AUTHORS
15005 ____________________________________________________________________________
15006 [  7592] By: gsar                                  on 2000/11/07  16:39:51
15007         Log: normalize relative paths in virtualized current directory on windows,
15008              under ithreads (avoids ".." etc showing up in what Cwd::cwd()
15009              returns)
15010      Branch: perl
15011            ! win32/vdir.h
15012 ____________________________________________________________________________
15013 [  7591] By: jhi                                   on 2000/11/07  16:04:26
15014         Log: Too profiler-happy: with optimization the #7590 actually makes
15015              the test to run 0.5% _slower_.  Requires much more instrumentation.
15016              Retract #7590.
15017      Branch: perl
15018            ! regcomp.c regcomp.h
15019 ____________________________________________________________________________
15020 [  7590] By: jhi                                   on 2000/11/07  15:51:13
15021         Log: Shave off about 5% (Digital UNIX, -g, pixie) of the op/regexp
15022              execution time in regcomp.c S_cl_any() and S_cl_is_anything()
15023              by using memset() and testing bytewise (as opposed to bitwise).
15024      Branch: perl
15025            ! regcomp.c regcomp.h
15026 ____________________________________________________________________________
15027 [  7589] By: jhi                                   on 2000/11/07  12:56:39
15028         Log: Subject: [PATCH perl@7573] configure.com and st-lock.t changes for   
15029              From: "Craig A. Berry" <craig.berry@psinetcs.com>
15030              Date: Mon, 06 Nov 2000 23:45:30 -0500
15031              Message-Id: <0011079735.AA973576259@univpress.com>
15032      Branch: perl
15033            ! configure.com t/lib/st-lock.t
15034 ____________________________________________________________________________
15035 [  7588] By: jhi                                   on 2000/11/07  01:03:28
15036         Log: Tweak #7587.
15037      Branch: perl
15038            ! pod/perldiag.pod
15039 ____________________________________________________________________________
15040 [  7587] By: jhi                                   on 2000/11/07  01:00:27
15041         Log: A doc addition for bug id 20001105.019, beware \p.
15042      Branch: perl
15043            ! pod/perldiag.pod
15044 ____________________________________________________________________________
15045 [  7586] By: jhi                                   on 2000/11/07  00:32:22
15046         Log: Fake support of holey files in win/dosish platforms.
15047              
15048              Subject: SDBM_File under MS-Windows95/98 does not work correctly. (APR#1302)
15049              From: kipp@shonanblue.ne.jp
15050              Date: Mon, 6 Nov 2000 13:30:55 -0800
15051              Message-Id: <200011062130.eA6LUpZ17387@smtp3.ActiveState.com>
15052      Branch: perl
15053            ! ext/SDBM_File/sdbm/sdbm.c
15054 ____________________________________________________________________________
15055 [  7585] By: jhi                                   on 2000/11/07  00:12:54
15056         Log: Subject: Pod updates
15057              From: "Stephen P. Potter" <spp@spotter.yi.org>
15058              Date: Mon, 06 Nov 2000 18:56:43 -0500
15059              Message-Id: <200011062357.SAA18173@spotter.yi.org>
15060      Branch: perl
15061            ! README.dos README.os2 README.win32 pod/buildtoc.PL
15062            ! pod/perl.pod pod/perl5004delta.pod pod/perl5005delta.pod
15063            ! pod/perl56delta.pod pod/perldebguts.pod pod/perldebtut.pod
15064            ! pod/perldebug.pod pod/perldelta.pod pod/perldiag.pod
15065            ! pod/perlembed.pod pod/perlfaq.pod pod/perlfaq1.pod
15066            ! pod/perlfaq2.pod pod/perlfaq5.pod pod/perlfaq7.pod
15067            ! pod/perlfaq8.pod pod/perlfilter.pod pod/perlfunc.pod
15068            ! pod/perlguts.pod pod/perlhack.pod pod/perlhist.pod
15069            ! pod/perlipc.pod pod/perllexwarn.pod pod/perllocale.pod
15070            ! pod/perlmodlib.pod pod/perlnumber.pod pod/perlop.pod
15071            ! pod/perlopentut.pod pod/perlport.pod pod/perlre.pod
15072            ! pod/perlsub.pod pod/perltie.pod pod/perltoot.pod
15073            ! pod/perltootc.pod pod/perlunicode.pod
15074 ____________________________________________________________________________
15075 [  7584] By: jhi                                   on 2000/11/07  00:04:17
15076         Log: Varargs don't always work too well if one puts an unsigned
15077              char on the stack and pop an unsigned quad off the stack.
15078              
15079              Subject: Re: [ID 20001103.002] Not OK: perl v5.7.0 +DEVEL7523 on os2-64int-ld-2.30 (UNINSTALLED)
15080              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)         
15081              Date: Mon, 06 Nov 2000 15:19:05 -0800
15082              Message-ID: <pxzB6gzkgKXY092yn@efn.org>  
15083      Branch: perl
15084            ! utf8.c
15085 ____________________________________________________________________________
15086 [  7583] By: jhi                                   on 2000/11/06  23:58:48
15087         Log: %ENV note tweaks from Dan Sugalski.
15088      Branch: perl
15089            ! pod/perlport.pod vms/perlvms.pod
15090 ____________________________________________________________________________
15091 [  7582] By: jhi                                   on 2000/11/06  23:05:49
15092         Log: glibc5 detection by __GNU_LIBRARY__.
15093      Branch: perl
15094            ! toke.c
15095 ____________________________________________________________________________
15096 [  7581] By: jhi                                   on 2000/11/06  22:51:29
15097         Log: Make the stdio test program of 7427 less noisy while being 
15098              compiled so that Digital UNIX wouldn't get both
15099              d_stdio_ptr_lval_nochange_cnt and d_stdio_ptr_lval_sets_cnt
15100              undefined.  This makes perlio happy.
15101      Branch: metaconfig
15102            ! U/compline/d_stdstdio.U
15103      Branch: perl
15104            ! Configure config_h.SH
15105 ____________________________________________________________________________
15106 [  7580] By: jhi                                   on 2000/11/06  22:41:41
15107         Log: Document %ENV = () portability issues.
15108      Branch: perl
15109            ! pod/perlport.pod vms/perlvms.pod
15110 ____________________________________________________________________________
15111 [  7579] By: jhi                                   on 2000/11/06  21:29:24
15112         Log: VOS updates from Paul Green.
15113      Branch: perl
15114            ! vos/config.alpha.h vos/config.ga.def vos/config.ga.h
15115 ____________________________________________________________________________
15116 [  7578] By: jhi                                   on 2000/11/06  21:00:40
15117         Log: Sanitize the environment further.
15118      Branch: perl
15119            ! t/pragma/locale.t
15120 ____________________________________________________________________________
15121 [  7577] By: jhi                                   on 2000/11/06  20:53:51
15122         Log: Re-introduce 7552 lost in integration.
15123      Branch: perl
15124            ! perlio.c
15125 ____________________________________________________________________________
15126 [  7576] By: jhi                                   on 2000/11/06  20:33:46
15127         Log: Admit that the test leaks scalars.
15128      Branch: perl
15129            ! t/comp/proto.t
15130 ____________________________________________________________________________
15131 [  7575] By: jhi                                   on 2000/11/06  20:17:08
15132         Log: Integrate perlio.
15133      Branch: perl
15134           !> perlio.c
15135 ____________________________________________________________________________
15136 [  7574] By: nick                                  on 2000/11/06  20:07:28
15137         Log: Remove debug. Try (Mmap_t) on madvise() call.
15138      Branch: perlio
15139            ! perlio.c
15140 ____________________________________________________________________________
15141 [  7573] By: jhi                                   on 2000/11/06  13:56:05
15142         Log: Update Changes.
15143      Branch: perl
15144            ! Changes patchlevel.h
15145 ____________________________________________________________________________
15146 [  7572] By: jhi                                   on 2000/11/06  13:48:41
15147         Log: Subject: Re: rsync'ed patches vs. rsync'ed source
15148              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
15149              Date: Mon, 06 Nov 2000 10:11:42 +0100
15150              Message-Id: <20001106100920.9BAD.H.M.BRAND@hccnet.nl>
15151      Branch: perl
15152            ! pod/perlhack.pod
15153 ____________________________________________________________________________
15154 [  7571] By: jhi                                   on 2000/11/06  01:45:51
15155         Log: AUTHORS updates.
15156      Branch: perl
15157            ! AUTHORS
15158 ____________________________________________________________________________
15159 [  7570] By: jhi                                   on 2000/11/06  00:18:00
15160         Log: Fix for
15161              
15162              Subject: [ID 20000728.005] perl -P broken
15163              From: David Dyck <dcd@tc.fluke.com>
15164              Date: Fri, 28 Jul 2000 17:19:16 -0700
15165              Message-Id: <200007290019.RAA08484@dd.tc.fluke.com>
15166              
15167              (hopefully).  The fix is also not complete, it seems to break
15168              BOM swallowing for libc5 systems, but until someone figures
15169              out a way to do this without ftell(), this will do.
15170      Branch: perl
15171            ! toke.c
15172 ____________________________________________________________________________
15173 [  7569] By: jhi                                   on 2000/11/06  00:05:30
15174         Log: Document that the evaled syntax errors cause scalar leaks.
15175      Branch: perl
15176            ! t/comp/proto.t
15177 ____________________________________________________________________________
15178 [  7568] By: jhi                                   on 2000/11/05  23:14:47
15179         Log: opmini.o can linger from Configures past.
15180      Branch: perl
15181            ! Makefile.SH
15182 ____________________________________________________________________________
15183 [  7567] By: jhi                                   on 2000/11/05  21:28:39
15184         Log: Fake __FUNCTION__ for non-gcc builds, cast madvise()
15185              first argument correctly.
15186      Branch: perl
15187            ! perlio.c
15188 ____________________________________________________________________________
15189 [  7566] By: jhi                                   on 2000/11/05  21:15:56
15190         Log: Integrate perlio.
15191      Branch: perl
15192           !> perlio.c
15193 ____________________________________________________________________________
15194 [  7565] By: jhi                                   on 2000/11/05  21:15:13
15195         Log: Use -dM for gcc (the suggested patch did it only for Linux,
15196              but I think it can be generalized).
15197              
15198              Subject: Re: connect and $!{EINPROGRESS} pb (was [ID 20001030.010] [PATCH] io_multihomed.t failing)
15199              From: Pixel <pixel@mandrakesoft.com>
15200              Date: 05 Nov 2000 21:49:34 +0100 
15201              Message-ID: <ly8zqygn4x.fsf@leia.mandrakesoft.com>
15202      Branch: perl
15203            ! ext/Errno/Errno_pm.PL
15204 ____________________________________________________________________________
15205 [  7564] By: nick                                  on 2000/11/05  21:09:18
15206         Log: Added a mmap layer as a "subclass" of perlio.
15207              PERLIO=mmap ./perl harness passes
15208      Branch: perlio
15209            ! perlio.c
15210 ____________________________________________________________________________
15211 [  7563] By: jhi                                   on 2000/11/05  19:48:55
15212         Log: Add a note for future generations about bug id 20000229.006.
15213      Branch: perl
15214            ! malloc.c
15215 ____________________________________________________________________________
15216 [  7562] By: jhi                                   on 2000/11/05  19:38:24
15217         Log: Fix for bug id 19990615.008, pos() unset during s///ge.
15218      Branch: perl
15219            ! pp_ctl.c t/op/pos.t
15220 ____________________________________________________________________________
15221 [  7561] By: jhi                                   on 2000/11/05  18:21:46
15222         Log: Add =pod to be tidy.
15223      Branch: perl
15224            ! lib/Math/Complex.pm
15225 ____________________________________________________________________________
15226 [  7560] By: jhi                                   on 2000/11/05  17:38:46
15227         Log: Upgrade to Storable 1.0.6, from Raphael Manfredi.
15228      Branch: perl
15229            ! ext/Storable/ChangeLog ext/Storable/Storable.pm
15230            ! ext/Storable/Storable.xs t/lib/st-recurse.t
15231 ____________________________________________________________________________
15232 [  7559] By: jhi                                   on 2000/11/05  17:32:59
15233         Log: Subject: [Corrected/tested PATCH] Re: [ID 20001102.008] Not OK: perl v5.7.0 +DEVEL7503 on i686-linux 2.2.16
15234              From: "Peter J. Farley III" <pjfarley@banet.net>
15235              Date: Sun, 05 Nov 2000 11:55:59 -0500
15236              Message-Id: <4.3.1.0.20001105115341.00b35160@pop5.banet.net> 
15237      Branch: perl
15238            ! t/lib/syslog.t
15239 ____________________________________________________________________________
15240 [  7558] By: jhi                                   on 2000/11/05  17:29:19
15241         Log: Integrate perlio.
15242      Branch: perl
15243           !> perlio.c
15244 ____________________________________________________________________________
15245 [  7557] By: jhi                                   on 2000/11/05  17:22:01
15246         Log: A fix of sorts for 20000329.026, a better error message
15247              for a missing "use charnames" when using the \N{...}. 
15248      Branch: perl
15249            ! pod/perldiag.pod toke.c
15250 ____________________________________________________________________________
15251 [  7556] By: jhi                                   on 2000/11/05  16:33:50
15252         Log: Test tweak: show also the failed locales.
15253              
15254              Subject: [ID 20001105.001] Not OK: perl v5.7.0 +DEVEL7523 on i86pc-solaris 2.8  
15255              From: Lupe Christoph <lupe@lupe-christoph.de>         
15256              Date: Sun, 5 Nov 2000 12:39:27 +0100 (MET)
15257              Message-Id: <200011051139.MAA12442@lupe-christoph.de>
15258      Branch: perl
15259            ! t/pragma/locale.t
15260 ____________________________________________________________________________
15261 [  7555] By: nick                                  on 2000/11/05  11:09:34
15262         Log: Fix read from STDERR on raw unix layer for Solaris where fd 2 is
15263              open RDWR so does not fail. (pragma/warnings 303 again...)
15264      Branch: perlio
15265            ! perlio.c
15266 ____________________________________________________________________________
15267 [  7554] By: nick                                  on 2000/11/05  10:10:13
15268         Log: Fix case where ungetc(f,EOF) was allowed.
15269              Move PerlIO_ungetc() near PerlIO_putc()/PerlIO_getc() in the file
15270              so we can see similarities.
15271              Use types more carefully and a STDCHAR array in hope that this will
15272              fix Jarrko's 64bit machine.
15273      Branch: perlio
15274            ! perlio.c
15275 ____________________________________________________________________________
15276 [  7553] By: jhi                                   on 2000/11/05  01:12:16
15277         Log: Fix for
15278              
15279              Subject: [ID 20001004.007] taint propogation is inconsistent
15280              From: pimlott@idiomtech.com (Andrew Pimlott) 
15281              Date: Wed, 4 Oct 2000 23:17:44 -0400 (EDT)
15282              Message-Id: <m13h1XU-000SEmC@nolfolan.idiomtech.com>
15283              
15284              The culprit was sv_setsv() which was rather blindly
15285              propagating taint, which lead to behaviour where if
15286              a tainted anon hash value was seen all the hash values
15287              from then on at that level became tainted, or at any
15288              upper levels in the case of nested anon hashes.
15289      Branch: perl
15290            ! sv.c t/op/taint.t
15291 ____________________________________________________________________________
15292 [  7552] By: jhi                                   on 2000/11/04  23:44:18
15293         Log: Some cpps don't like splitting conditionals across several lines.
15294      Branch: perl
15295            ! perlio.c
15296 ____________________________________________________________________________
15297 [  7551] By: nick                                  on 2000/11/04  23:40:44
15298         Log: Integrate mainline
15299      Branch: perlio
15300           !> pp_hot.c t/op/taint.t
15301 ____________________________________________________________________________
15302 [  7550] By: nick                                  on 2000/11/04  23:39:05
15303         Log: Integrate mainline again
15304      Branch: perlio
15305           !> Configure config_h.SH embed.h embed.pl perl.h proto.h
15306           !> t/lib/b.t t/op/misc.t util.c
15307 ____________________________________________________________________________
15308 [  7549] By: jhi                                   on 2000/11/04  23:14:01
15309         Log: Fix for
15310              
15311              Subject: [ID 20001004.006] undef is never tainted
15312              From: pimlott@idiomtech.com (Andrew Pimlott)
15313              Date: Wed, 4 Oct 2000 21:57:43 -0400 (EDT)
15314              Message-Id: <m13h0I3-000SEmC@nolfolan.idiomtech.com>
15315              
15316              An undef read from a slurped file was not tainted.
15317      Branch: perl
15318            ! pp_hot.c t/op/taint.t
15319 ____________________________________________________________________________
15320 [  7548] By: jhi                                   on 2000/11/04  22:56:21
15321         Log: Test tweak ($Config{useperlio} is by default undef) .
15322      Branch: perl
15323            ! t/lib/b.t
15324 ____________________________________________________________________________
15325 [  7547] By: jhi                                   on 2000/11/04  22:43:56
15326         Log: Integrate perlio.
15327      Branch: perl
15328           +> lib/perlio.pm
15329           !> MANIFEST iperlsys.h objXSUB.h perlapi.c perlio.c
15330           !> pod/perlapi.pod t/lib/b.t
15331 ____________________________________________________________________________
15332 [  7546] By: jhi                                   on 2000/11/04  22:40:59
15333         Log: Configure would use a bad $myuname from an old config.sh.
15334              
15335              Subject: [PATCH 5.6.1-to-be and 5.7.x] Very old Configure myuname bug
15336              From: Andy Dougherty <doughera@lafayette.edu>
15337              Date: Sat, 4 Nov 2000 14:15:29 -0500 (EST)
15338              Message-ID: <Pine.SOL.4.10.10011041410120.982-100000@maxwell.phys.lafayette.edu>
15339      Branch: metaconfig
15340            ! U/modified/Oldconfig.U
15341      Branch: perl
15342            ! Configure config_h.SH
15343 ____________________________________________________________________________
15344 [  7545] By: jhi                                   on 2000/11/04  22:36:54
15345         Log: Subject: Locales support (setlocale) fixes
15346              From: "Konovalov, Vadim" <vkonovalov@lucent.com>
15347              Date: Sat, 4 Nov 2000 10:15:48 +0300 
15348              Message-ID: <402099F49BEED211999700805FC7359F82511F@ru0028exch01.spb.lucent.com>
15349              
15350              Modified quite a bit to be more portable.
15351      Branch: perl
15352            ! embed.h embed.pl perl.h proto.h util.c
15353 ____________________________________________________________________________
15354 [  7544] By: jhi                                   on 2000/11/04  22:32:47
15355         Log: Dying is too strict here, better just skip.
15356      Branch: perl
15357            ! t/op/misc.t
15358 ____________________________________________________________________________
15359 [  7543] By: nick                                  on 2000/11/04  21:55:13
15360         Log: Merge mainline
15361      Branch: perlio
15362           +> ext/Encode/Encode/cp1047.enc ext/Encode/Encode/cp37.enc
15363           +> ext/Encode/Encode/posix-bc.enc ext/re/hints/aix.pl
15364           +> t/lib/tie-refhash.t t/lib/tie-substrhash.t
15365           !> (integrate 64 files)
15366 ____________________________________________________________________________
15367 [  7542] By: jhi                                   on 2000/11/04  21:09:28
15368         Log: More Changes tweakery.
15369      Branch: perl
15370            ! Changes Porting/genlog
15371 ____________________________________________________________________________
15372 [  7541] By: jhi                                   on 2000/11/04  20:58:18
15373         Log: Changes fixups.
15374      Branch: perl
15375            ! Changes
15376 ____________________________________________________________________________
15377 [  7540] By: jhi                                   on 2000/11/04  20:42:38
15378         Log: Locale tweakery.  Add test case for bug id 20000809.003 to op/misc,
15379              create a "fast path" for locale name probing using "locale -a"
15380              if available, squash finally hopefully the s?printf resetting
15381              the numeric locale (since, IIUC perllocale, it never shouldn't). 
15382      Branch: perl
15383            ! sv.c t/op/misc.t t/pragma/locale.t
15384 ____________________________________________________________________________
15385 [  7539] By: nick                                  on 2000/11/04  19:56:10
15386         Log: PerlIO infrastructure complete.
15387      Branch: perlio
15388            + lib/perlio.pm
15389            ! MANIFEST iperlsys.h perlio.c t/lib/b.t
15390 ____________________________________________________________________________
15391 [  7538] By: nick                                  on 2000/11/04  14:31:32
15392         Log: Type tweaks + less contorted allocation scheme
15393      Branch: perlio
15394            ! perlio.c
15395 ____________________________________________________________________________
15396 [  7537] By: nick                                  on 2000/11/04  12:40:42
15397         Log: Fix for stdio as default "discipline" - PerlIO_init() was fdopen(2,"w")'ing
15398              a fresh FILE * rather than re-using stderr. Which meant PerlIO_stderr() was
15399              fully buffered rather than unbuffered (on Solaris, Linux seemed to do something
15400              sensible) which lead to some interesting fails.
15401      Branch: perlio
15402            ! perlio.c
15403 ____________________________________________________________________________
15404 [  7536] By: jhi                                   on 2000/11/04  00:20:02
15405         Log: Add FCNTL_CAN_LOCK.
15406              
15407              Subject: Re: [ID 20001030.011] Not OK: perl v5.7.0 +DEVEL7481 on VMS_AXP V7.1 (UNINSTALLED)
15408              From: Andy Dougherty <doughera@lafayette.edu>
15409              Date: Fri, 3 Nov 2000 15:32:14 -0500 (EST)
15410              Message-ID: <Pine.SOL.4.10.10011031528090.29-100000@maxwell.phys.lafayette.edu>
15411              
15412              Subject: Re: [ID 20001030.011] Not OK: perl v5.7.0 +DEVEL7481 on VMS_AXP V7.1 (UNINSTALLED)
15413              From: Andy Dougherty <doughera@lafayette.edu>
15414              In-Reply-To: <4.3.1.0.20001031222203.00b24b20@pop5.banet.net>
15415              Message-ID: <Pine.SOL.4.10.10011031532170.29-100000@maxwell.phys.lafayette.edu>
15416      Branch: metaconfig/U/perl
15417            + d_fcntl_can_lock.U
15418            ! startperl.U
15419      Branch: perl
15420            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
15421            ! config_h.SH epoc/config.sh pp_sys.c uconfig.h uconfig.sh
15422            ! vos/config.alpha.def vos/config.alpha.h vos/config.ga.def
15423            ! vos/config.ga.h win32/config.bc win32/config.gc
15424            ! win32/config.vc
15425 ____________________________________________________________________________
15426 [  7535] By: nick                                  on 2000/11/03  22:19:10
15427         Log: Implement stack of layers - (perlio.c _is_ derived from the old file honest...)
15428              - Works on Linux with
15429              perlio + unix
15430              stdio
15431              - Works on Solaris with
15432              perlio + unix
15433              - Fails ONE test (print to STDIN should fail) on Solaris with stdio.
15434              - Fails (hangs in openpid) if you try and stack
15435              perlio + stdio - Linux stdio's read() logic is hanging.
15436      Branch: perlio
15437            ! iperlsys.h perlio.c
15438 ____________________________________________________________________________
15439 [  7534] By: jhi                                   on 2000/11/03  15:16:02
15440         Log: Subject: Re: README.aix
15441              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
15442              Date: Fri, 03 Nov 2000 16:03:15 +0100
15443              Message-Id: <20001103151040.95C6.H.M.BRAND@hccnet.nl>
15444      Branch: perl
15445            ! README.aix
15446 ____________________________________________________________________________
15447 [  7533] By: jhi                                   on 2000/11/03  03:59:02
15448         Log: Subject: [PATCH 5.7.0] better messages from malloc()
15449              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
15450              Date: Wed, 1 Nov 2000 23:39:56 -0500
15451              Message-ID: <20001101233956.A520@monk.mps.ohio-state.edu>
15452      Branch: perl
15453            ! malloc.c pod/perldiag.pod
15454 ____________________________________________________________________________
15455 [  7532] By: jhi                                   on 2000/11/03  00:11:56
15456         Log: The #7521 touched things it shouldn't have.
15457      Branch: perl
15458            ! ext/POSIX/POSIX.xs ext/POSIX/typemap
15459 ____________________________________________________________________________
15460 [  7531] By: jhi                                   on 2000/11/02  22:32:33
15461         Log: Subject:  [PATCH] Perl@7504, vms/gen_shrfls.pl
15462              From: lane@DUPHY4.Physics.Drexel.Edu (Charles Lane)
15463              Date:     Thu, 2 Nov 2000 16:58:36 EST
15464              Message-Id: <001102165758.31020@DUPHY4.Physics.Drexel.Edu>
15465      Branch: perl
15466            ! vms/gen_shrfls.pl
15467 ____________________________________________________________________________
15468 [  7530] By: jhi                                   on 2000/11/02  22:08:49
15469         Log: Fix the problem discussed in
15470              
15471              Subject: [ID 20001015.004] Fwd: Tie::SubstrHash -- bug & fix (all Perl versions)
15472              Date: Mon, 16 Oct 2000 04:48:59 +0300 (EET DST) 
15473              Message-Id: <200010160148.EAA14523@alpha.hut.fi> 
15474              
15475              originally from Linc Madison.  Also Andreas König's comments
15476              taken into account.  Some other problems with Tie::SubstrHash
15477              fixed: didn't croak when the table exceeded the requested number
15478              of entries (as documented) but instead when the number of entries
15479              exceeded the size of the table, a croak() had an unnecessary \n,
15480              didn't have a CLEAR method, documented that there is no exists().
15481              Didn't fix to be strict-proof because the module uses &foo; and
15482              dynamic scope.  Added a test script exercizing both first tamely 
15483              the basic functionality, and then the failure cases reported by
15484              Linc Madison.
15485      Branch: perl
15486            + t/lib/tie-substrhash.t
15487            ! MANIFEST lib/Tie/SubstrHash.pm
15488 ____________________________________________________________________________
15489 [  7529] By: jhi                                   on 2000/11/02  17:58:08
15490         Log: recv() can fail and return undef.
15491              
15492              Subject: [ID 20001102.003] Net::Ping patch: "Bad arg lenght" error appears if host is unreachable    
15493              From: "Alexey V. Barantsev" <barancev@kazbek.ispras.ru>
15494              Date: Thu, 2 Nov 2000 20:12:20 +0300
15495              Message-Id: <200011021712.UAA07919@dallas.kazbek.ispras.ru>
15496      Branch: perl
15497            ! lib/Net/Ping.pm
15498 ____________________________________________________________________________
15499 [  7528] By: jhi                                   on 2000/11/02  17:49:09
15500         Log: Detpyo.
15501      Branch: perl
15502            ! pod/perlop.pod
15503 ____________________________________________________________________________
15504 [  7527] By: jhi                                   on 2000/11/02  15:48:37
15505         Log: Add Tie::RefHash::Nestable (lives in Tie/RefHash.pm),
15506              fix a autovivification bug in Tie::RefHash, add tests for both.
15507              
15508              Subject: Re: Tie::RefHash: use hash refs as keys in nested hashes
15509              From: Edward Avis <epa98@doc.ic.ac.uk>
15510              Date: Thu, 2 Nov 2000 15:24:30 +0000 (GMT)
15511              Message-ID: <Pine.LNX.4.21.0011021516010.8344-100000@texel03.doc.ic.ac.uk>
15512      Branch: perl
15513            + t/lib/tie-refhash.t
15514            ! MANIFEST lib/Tie/RefHash.pm
15515 ____________________________________________________________________________
15516 [  7526] By: jhi                                   on 2000/11/02  13:56:26
15517         Log: Test::Harness revealed buglets in the new DynaLoader.
15518              
15519              Subject: [ID 20001102.001] Not OK: perl v5.7.0 +DEVEL7523 on i686-linux 2.2.16a (UNINSTALLED)
15520              From: andreas.koenig@anima.de (Andreas J. Koenig)
15521              Date: 02 Nov 2000 11:26:48 +0100 
15522              Message-Id: <m3vgu6k6tz.fsf@ak-71.mind.de>
15523      Branch: perl
15524            ! ext/DynaLoader/DynaLoader_pm.PL
15525 ____________________________________________________________________________
15526 [  7525] By: jhi                                   on 2000/11/01  23:52:08
15527         Log: The entry for #7503 was missing.
15528      Branch: perl
15529            ! Changes
15530 ____________________________________________________________________________
15531 [  7524] By: jhi                                   on 2000/11/01  23:40:52
15532         Log: Update Changes.
15533      Branch: perl
15534            ! Changes patchlevel.h
15535 ____________________________________________________________________________
15536 [  7523] By: jhi                                   on 2000/11/01  22:57:09
15537         Log: More tweaking on the #7522 theme.
15538      Branch: perl
15539            ! ext/DynaLoader/DynaLoader_pm.PL
15540 ____________________________________________________________________________
15541 [  7522] By: jhi                                   on 2000/11/01  22:06:15
15542         Log: Expand %Config variables and %ENV variables only if
15543              so requested during build time using the
15544              PERL_BUILD_EXPAND_CONFIG_VARS and PERL_BUILD_EXPAND_ENV_VARS.
15545              Not expanding makes relocating distributions easier.
15546      Branch: perl
15547            ! ext/DynaLoader/DynaLoader_pm.PL
15548 ____________________________________________________________________________
15549 [  7521] By: jhi                                   on 2000/11/01  20:56:34
15550         Log: Make the POSIX::setuid and POSIX::setgid to really call setuid()
15551              and setgid() because they were just changing $< and $( which means
15552              only changing the real uid/gid, as opposed to changing both
15553              real and effective ids.  (The alternative way could have been
15554              in POSIX.pm to change $> and $), too, but making a direct call
15555              to the C API feels cleaner.)  Fixes the bug
15556              
15557              Subject: [ID 20000904.005] POSIX::setuid() Doesn't Call setuid()
15558              From: "Garry T. Williams" <garry@zvolve.com>
15559              Date: Mon, 4 Sep 2000 12:09:44 -0400 (EDT)
15560              Message-Id: <200009041609.e84G9iN12155@ifr.inside.zvolve.net>
15561      Branch: perl
15562            ! ext/POSIX/POSIX.pm ext/POSIX/POSIX.pod ext/POSIX/POSIX.xs
15563            ! ext/POSIX/typemap pod/perlvar.pod
15564 ____________________________________________________________________________
15565 [  7520] By: jhi                                   on 2000/11/01  20:08:33
15566         Log: Subject: [ID 20000904.004] perlsec Manual Page Incorrect Doing "Safe Backticks"
15567              From: "Garry T. Williams" <garry@zvolve.com>
15568              Date: Mon, 4 Sep 2000 11:32:38 -0400 (EDT)
15569              Message-Id: <200009041532.e84FWcl12106@ifr.inside.zvolve.net>
15570      Branch: perl
15571            ! pod/perlsec.pod
15572 ____________________________________________________________________________
15573 [  7519] By: jhi                                   on 2000/11/01  20:01:22
15574         Log: Locale warning explanation tweak.
15575      Branch: perl
15576            ! pod/perldiag.pod
15577 ____________________________________________________________________________
15578 [  7518] By: jhi                                   on 2000/11/01  18:57:13
15579         Log: C.pm part of
15580              
15581              Subject: [ID 20001010.001] [Daniel.Stutz@astaro.de: perlcc and C.pm in perl-5.7.0]
15582              From: Jarkko Hietaniemi <jhi@iki.fi>
15583              Date: Tue, 10 Oct 2000 08:22:28 -0500
15584              Message-Id: <20001010082228.B17030@chaos.wustl.edu>
15585      Branch: perl
15586            ! ext/B/B/C.pm
15587 ____________________________________________________________________________
15588 [  7517] By: jhi                                   on 2000/11/01  18:41:59
15589         Log: Subject: [ID 20001005.006] Documentation -- description of qr//
15590              From: Martien Verbruggen <mgjv@comdyn.com.au>
15591              Date: Fri, 6 Oct 2000 14:09:10 +1100
15592              Message-Id: <200010060309.OAA03457@verbruggen.comdyn.com.au>
15593      Branch: perl
15594            ! pod/perlop.pod
15595 ____________________________________________________________________________
15596 [  7516] By: jhi                                   on 2000/11/01  18:34:55
15597         Log: Generalize the Camel wording.
15598              
15599              Subject: Re: perlfaq style changes
15600              From: John Borwick <jhborwic@unity.ncsu.edu>
15601              Date: Wed, 1 Nov 2000 13:19:21 -0500 (EST)
15602              Message-ID: <Pine.GSO.4.21.0011011318270.7428-100000@eos00du.eos.ncsu.edu>
15603      Branch: perl
15604            ! pod/perlfaq3.pod pod/perlfaq8.pod pod/perlfaq9.pod
15605 ____________________________________________________________________________
15606 [  7515] By: jhi                                   on 2000/11/01  16:52:31
15607         Log: Subject: [ID 20001005.004] doc bug: perlsec misleading re file output
15608              From: pimlott@idiomtech.com (Andrew Pimlott)
15609              Date: Thu, 5 Oct 2000 13:20:58 -0400 (EDT)
15610              Message-Id: <m13hEhW-000SEmC@nolfolan.idiomtech.com>
15611      Branch: perl
15612            ! pod/perlsec.pod
15613 ____________________________________________________________________________
15614 [  7514] By: jhi                                   on 2000/11/01  15:03:40
15615         Log: More AIX lore.
15616      Branch: perl
15617            ! ext/re/hints/aix.pl
15618 ____________________________________________________________________________
15619 [  7513] By: jhi                                   on 2000/11/01  14:48:30
15620         Log: Subject: [ID 20001101.001] Net::Ping icmp odd $bytes
15621              From: root <root@chronos.fi.muni.cz>
15622              Date: Wed, 1 Nov 2000 12:31:32 +0100
15623              Message-Id: <200011011131.MAA03310@chronos.fi.muni.cz>
15624      Branch: perl
15625            ! lib/Net/Ping.pm
15626 ____________________________________________________________________________
15627 [  7512] By: jhi                                   on 2000/11/01  14:46:47
15628         Log: Subject: [ID 20001031.004] Uninitialized auto variable in regcomp.c
15629              From: Martin Husemann <martin@duskware.de>
15630              Date: Tue, 31 Oct 2000 23:39:35 +0100 (MET)
15631              Message-Id: <200010312239.e9VMdZR01580@night-porter.duskware.de>
15632      Branch: perl
15633            ! regcomp.c
15634 ____________________________________________________________________________
15635 [  7511] By: jhi                                   on 2000/11/01  14:39:50
15636         Log: AUTHORS updates.
15637      Branch: perl
15638            ! AUTHORS
15639 ____________________________________________________________________________
15640 [  7510] By: jhi                                   on 2000/11/01  14:29:50
15641         Log: Subject: [PATCH] startperl to respect versiononly
15642              From: Robin Barker <rmb1@cise.npl.co.uk> 
15643              Date: Tue, 31 Oct 2000 16:29:36 GMT
15644              Message-Id: <200010311629.QAA01771@tempest.npl.co.uk>
15645      Branch: metaconfig/U/perl
15646            ! startperl.U
15647      Branch: perl
15648            ! Configure config_h.SH
15649 ____________________________________________________________________________
15650 [  7509] By: jhi                                   on 2000/11/01  14:19:53
15651         Log: printf UVs the correct way, noticed by Robin Barker.
15652      Branch: perl
15653            ! utf8.c
15654 ____________________________________________________________________________
15655 [  7508] By: jhi                                   on 2000/11/01  14:10:03
15656         Log: Do not cleanup *% because the % has special meanings in some
15657              shell environments.
15658      Branch: perl
15659            ! ext/Storable/Makefile.PL
15660 ____________________________________________________________________________
15661 [  7507] By: jhi                                   on 2000/11/01  14:06:00
15662         Log: The NonStop-UX libraries have a novel way to say NaN.
15663      Branch: perl
15664            ! t/lib/bigfltpm.t
15665 ____________________________________________________________________________
15666 [  7506] By: jhi                                   on 2000/11/01  14:03:35
15667         Log: The osname has been lowercased by now, from Tom Bates.
15668      Branch: metaconfig
15669            ! U/modified/Oldconfig.U
15670      Branch: perl
15671            ! Configure config_h.SH
15672 ____________________________________________________________________________
15673 [  7505] By: jhi                                   on 2000/10/31  19:18:39
15674         Log: The compiler is either gcc or cc, from Tom Bates.
15675      Branch: perl
15676            ! hints/nonstopux.sh
15677 ____________________________________________________________________________
15678 [  7504] By: jhi                                   on 2000/10/31  14:53:42
15679         Log: Update Changes.
15680      Branch: perl
15681            ! Changes patchlevel.h
15682 ____________________________________________________________________________
15683 [  7503] By: jhi                                   on 2000/10/31  14:30:50
15684         Log: Whitespace style tweak.  Was originally going to see to
15685              
15686              Subject: PATCH (Re: PerlIO - Configure tweak for Linux/glibc?)
15687              From: Joe Smith <jms@inwap.com>
15688              Date: Mon, 30 Oct 2000 18:47:57 -0800
15689              Message-Id: <39FE32DD.24AAC4D@inwap.com>
15690              
15691              but that had already been taken care of.
15692      Branch: metaconfig
15693            ! U/compline/d_stdstdio.U
15694      Branch: perl
15695            ! Configure config_h.SH
15696 ____________________________________________________________________________
15697 [  7502] By: jhi                                   on 2000/10/31  14:25:02
15698         Log: AUTHORS tweaks.
15699      Branch: perl
15700            ! AUTHORS
15701 ____________________________________________________________________________
15702 [  7501] By: jhi                                   on 2000/10/31  14:23:59
15703         Log: Subject: perlfaq style changes
15704              From: John Borwick <jhborwic@unity.ncsu.edu>
15705              Date: Tue, 31 Oct 2000 03:15:11 -0500 (EST)
15706              Message-ID: <Pine.GSO.4.21.0010310307500.5819-100000@eos00du.eos.ncsu.edu>
15707      Branch: perl
15708            ! pod/perlfaq.pod pod/perlfaq1.pod pod/perlfaq2.pod
15709            ! pod/perlfaq3.pod pod/perlfaq4.pod pod/perlfaq5.pod
15710            ! pod/perlfaq6.pod pod/perlfaq7.pod pod/perlfaq8.pod
15711            ! pod/perlfaq9.pod
15712 ____________________________________________________________________________
15713 [  7500] By: jhi                                   on 2000/10/31  14:22:15
15714         Log: Be more lenient on bad UTF-8 when doing bit arithmetics.
15715              
15716              Subject: Re: [ID 20000918.005] ~ on wide chars
15717              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
15718              Date: Mon, 30 Oct 2000 21:09:55 -0800
15719              Message-ID: <jQl/5gzkgWYL092yn@efn.org>
15720              
15721              (The ord() part of the patch skipped.)
15722      Branch: perl
15723            ! doop.c
15724 ____________________________________________________________________________
15725 [  7499] By: jhi                                   on 2000/10/31  14:20:08
15726         Log: Subject: [ID 20001030.001] 5.7.0-7489: Null-Pointer reference in mg.c
15727              From: Jens Hamisch <jens@Strawberry.COM>
15728              Date: Mon, 30 Oct 2000 15:17:07 +0100
15729              Message-Id: <20001030151707.A9597@Strawberry.COM>
15730      Branch: perl
15731            ! av.c
15732 ____________________________________________________________________________
15733 [  7498] By: jhi                                   on 2000/10/31  14:16:29
15734         Log: Subject: [PATCH: perl@7483] add three new EBCDIC Encode-ings && many tests
15735              From: Peter Prymmer <pvhp@forte.com>
15736              Date: Mon, 30 Oct 2000 16:59:11 -0800 (PST)
15737              Message-ID: <Pine.OSF.4.10.10010301643590.67363-100000@aspara.forte.com>
15738      Branch: perl
15739            + ext/Encode/Encode/cp1047.enc ext/Encode/Encode/cp37.enc
15740            + ext/Encode/Encode/posix-bc.enc
15741            ! MANIFEST t/lib/encode.t
15742 ____________________________________________________________________________
15743 [  7497] By: jhi                                   on 2000/10/31  14:13:22
15744         Log: Subject: [PATCH: perl@7483] fix coded control chars in cgi-html.t
15745              From: Peter Prymmer <pvhp@forte.com>
15746              Date: Mon, 30 Oct 2000 17:48:11 -0800 (PST)
15747              Message-ID: <Pine.OSF.4.10.10010301746350.69159-100000@aspara.forte.com>
15748      Branch: perl
15749            ! t/lib/cgi-html.t
15750 ____________________________________________________________________________
15751 [  7496] By: jhi                                   on 2000/10/31  14:12:05
15752         Log: Subject: [PATCH: perl@7483] CRLF fix for cgi-function.t tests
15753              From: Peter Prymmer <pvhp@forte.com>
15754              Date: Mon, 30 Oct 2000 17:46:33 -0800 (PST)
15755              Message-ID: <Pine.OSF.4.10.10010301745120.69159-100000@aspara.forte.com>
15756      Branch: perl
15757            ! t/lib/cgi-function.t
15758 ____________________________________________________________________________
15759 [  7495] By: jhi                                   on 2000/10/31  14:11:08
15760         Log: Subject: [PATCH: perl@7483] generalize AIX ccversion hack for re extension
15761              From: Peter Prymmer <pvhp@forte.com>
15762              Date: Mon, 30 Oct 2000 16:41:21 -0800 (PST)
15763              Message-ID: <Pine.OSF.4.10.10010301634500.67363-100000@aspara.forte.com>
15764      Branch: perl
15765            + ext/re/hints/aix.pl
15766            ! MANIFEST ext/re/Makefile.PL
15767 ____________________________________________________________________________
15768 [  7494] By: jhi                                   on 2000/10/31  14:08:32
15769         Log: Use Errno magic.
15770              
15771              Subject: [ID 20001030.009] [PATCH] ftmp-mktemp failing
15772              From: Casey Tweten <perl@ctweten.amsite.com>
15773              Date: Mon, 30 Oct 2000 15:51:17 -0500
15774              Message-Id: <200010302051.e9UKpHd02194@ctweten.amsite.com>
15775      Branch: perl
15776            ! lib/File/Temp.pm
15777 ____________________________________________________________________________
15778 [  7493] By: jhi                                   on 2000/10/31  14:05:07
15779         Log: Add a perlbug flag, -A, to avoid acknowledgement messages.
15780              
15781              Subject: PATCH (Re: [ID 20001030.008] OK: perl v5.7.0 +DEVEL7445 on i586-linux 2.2.16 (UNINSTALLED))
15782              From: Nicholas Clark <nick@ccl4.org>
15783              Date: Mon, 30 Oct 2000 17:38:45 +0000
15784              Message-ID: <20001030173845.O60355@plum.flirble.org>
15785      Branch: perl
15786            ! Makefile.SH utils/perlbug.PL
15787 ____________________________________________________________________________
15788 [  7492] By: nick                                  on 2000/10/30  19:37:23
15789         Log: Change files which are mysteriously different to mainline to be
15790              copies of mainline.
15791      Branch: perlio
15792            ! objXSUB.h perlapi.c pod/perlapi.pod
15793 ____________________________________________________________________________
15794 [  7491] By: nick                                  on 2000/10/30  18:05:54
15795         Log: Perlio fixes discovered on big-endian & very traditional Solaris:
15796              - typo in endian code in putc.
15797              - Don't allow read of write-only files and vice-versa
15798              - and off-by-one in flush-all loop.
15799              Remove debug calls as they were using GCC specific features.
15800      Branch: perlio
15801            ! perlio.c
15802 ____________________________________________________________________________
15803 [  7490] By: nick                                  on 2000/10/29  21:45:45
15804         Log: Integrate mainline to perlio
15805      Branch: perlio
15806           !> lib/ExtUtils/Manifest.pm op.c t/comp/proto.t t/pragma/utf8.t
15807           !> toke.c
15808 ____________________________________________________________________________
15809 [  7489] By: jhi                                   on 2000/10/29  21:11:08
15810         Log: Subject: [Chris Winters <cwinters@intes.net>] patch to ExtUtils::Manifest
15811              From: andreas.koenig@anima.de (Andreas J. Koenig)
15812              Date: 29 Oct 2000 22:05:59 +0100
15813              Message-ID: <m3snpfqrwo.fsf@ak-71.mind.de>
15814      Branch: perl
15815            ! lib/ExtUtils/Manifest.pm
15816 ____________________________________________________________________________
15817 [  7488] By: jhi                                   on 2000/10/29  21:07:47
15818         Log: Tests for #7487.
15819              
15820              Subject: Re: [ID 20001029.002] Not OK: perl v5.7.0 +DEVEL7462 on i686-linux 2.2.16a (UNINSTALLED)
15821              From: andreas.koenig@anima.de (Andreas J. Koenig)
15822              Date: 29 Oct 2000 19:37:09 +0100
15823              Message-ID: <m34s1vsdd6.fsf@ak-71.mind.de>
15824      Branch: perl
15825            ! t/comp/proto.t
15826 ____________________________________________________________________________
15827 [  7487] By: jhi                                   on 2000/10/29  21:06:27
15828         Log: constsub spillage.
15829              
15830              Subject: Re: [ID 20001029.002] Not OK: perl v5.7.0 +DEVEL7462 on i686-linux 2.2.16a (UNINSTALLED)
15831              From: John Tobey <jtobey@john-edwin-tobey.org>
15832              Date: Sun, 29 Oct 2000 11:37:45 -0500 (EST)
15833              Message-Id: <m13pvSr-000FObC@feynman.localnet>
15834      Branch: perl
15835            ! op.c
15836 ____________________________________________________________________________
15837 [  7486] By: nick                                  on 2000/10/29  21:05:04
15838         Log: Integrate mainline to perlio branch
15839      Branch: perlio
15840           +> Porting/repository.pod lib/unicode/Is/DCmedial.pl
15841           +> t/lib/tie-splice.t vos/config.alpha.def vos/config.alpha.h
15842           +> vos/config.ga.def vos/config.ga.h vos/configure_perl.cm
15843           +> vos/install_perl.cm
15844            - MAINTAIN fix_pl lib/unicode/Is/DCinital.pl vos/config.def
15845            - vos/config.h vos/config_h.SH_orig
15846           !> (integrate 141 files)
15847 ____________________________________________________________________________
15848 [  7485] By: jhi                                   on 2000/10/29  21:00:47
15849         Log: Make \x{...} consistently produce UTF-8.
15850              
15851              Subject: Re: \x{...} is confused 
15852              From: Simon Cozens <simon@cozens.net>
15853              Date: Sun, 29 Oct 2000 19:36:48 +0000
15854              Message-ID: <20001029193648.A6287@pembro4.pmb.ox.ac.uk>
15855      Branch: perl
15856            ! t/pragma/utf8.t toke.c
15857 ____________________________________________________________________________
15858 [  7484] By: nick                                  on 2000/10/29  20:05:29
15859         Log: PerlIO passes all tests.
15860      Branch: perlio
15861            ! perlio.c
15862 ____________________________________________________________________________
15863 [  7483] By: jhi                                   on 2000/10/29  18:06:55
15864         Log: Update Changes.
15865      Branch: perl
15866            ! Changes patchlevel.h
15867 ____________________________________________________________________________
15868 [  7482] By: nick                                  on 2000/10/29  17:43:28
15869         Log: Include <unistd.h> to get correct lseek() prototype etc.
15870              (I thought perl.h did that) - down to two fails
15871              - comp/require.t (last test)
15872              - lib/io_xs.t - possibly import/export of FILE * ?
15873      Branch: perlio
15874            ! perlio.c
15875 ____________________________________________________________________________
15876 [  7481] By: jhi                                   on 2000/10/29  17:02:37
15877         Log: UTF-8 decoder tweak.
15878      Branch: perl
15879            ! utf8.c
15880 ____________________________________________________________________________
15881 [  7480] By: nick                                  on 2000/10/29  16:26:11
15882         Log: Fixed two bugs:
15883              - error code not being set on close (of broken pipe)
15884              - append mode was truncating.
15885              At least one seek/tell bug remains.
15886      Branch: perlio
15887            ! perlio.c
15888 ____________________________________________________________________________
15889 [  7479] By: nick                                  on 2000/10/29  11:18:16
15890         Log: Prototype (stdio-like) PerlIO passing basic tests. Checked in
15891              in case of accidents. Still several worrying fails, no line disciplines yet.
15892      Branch: perlio
15893            ! iperlsys.h perlio.c
15894 ____________________________________________________________________________
15895 [  7478] By: jhi                                   on 2000/10/29  02:04:01
15896         Log: Add also emailless people.
15897      Branch: perl
15898            ! AUTHORS
15899 ____________________________________________________________________________
15900 [  7477] By: jhi                                   on 2000/10/29  01:36:00
15901         Log: The #7476 needs a MANIFEST change, too.
15902      Branch: perl
15903            ! MANIFEST
15904 ____________________________________________________________________________
15905 [  7476] By: jhi                                   on 2000/10/29  01:35:21
15906         Log: Have only one master list of AUTHORS, drop unmaintained MAINTAIN.
15907      Branch: perl
15908            - MAINTAIN
15909            ! AUTHORS Changes
15910 ____________________________________________________________________________
15911 [  7475] By: jhi                                   on 2000/10/28  23:57:25
15912         Log: De-quoted-unreadable to ISO Latin 1.
15913              (There's one ISO-2022-JP name in Changes5.004.)
15914      Branch: perl
15915            ! Changes Changes5.6
15916 ____________________________________________________________________________
15917 [  7474] By: jhi                                   on 2000/10/28  19:13:06
15918         Log: Subject: [ID 20001027.007] uniq array in perlfaq
15919              From: Hans Ginzel <hans@kolej.mff.cuni.cz>     
15920              Date: Fri, 27 Oct 2000 19:28:30 +0200
15921              Message-Id: <20001027192830.A1564@kolej.mff.cuni.cz> 
15922      Branch: perl
15923            ! pod/perlfaq4.pod
15924 ____________________________________________________________________________
15925 [  7473] By: jhi                                   on 2000/10/28  18:02:05
15926         Log: Locking null mutexes is not recommendable.
15927              
15928              Subject: Re: [ID 20001027.008] Not OK: perl v5.7.0 +DEVEL7462 on i386-freebsd-thread-64all 4.1-stable (UNINSTALLED) 
15929              From: Hugo <hv@crypt.compulink.co.uk>
15930              Date: Sat, 28 Oct 2000 18:41:12 +0100
15931              Message-Id: <200010281741.SAA31327@crypt.compulink.co.uk>
15932      Branch: perl
15933            ! op.c
15934 ____________________________________________________________________________
15935 [  7472] By: jhi                                   on 2000/10/28  17:52:58
15936         Log: Better create a true mailing list for the repository keepers.
15937      Branch: perl
15938            ! Porting/repository.pod
15939 ____________________________________________________________________________
15940 [  7471] By: jhi                                   on 2000/10/28  17:28:24
15941         Log: Add the repository doc by Malcolm, Sarathy, and by Simon,
15942              name as suggested by Michael Bletzinger <mbletzin@ncsa.uiuc.edu>.
15943      Branch: perl
15944            + Porting/repository.pod
15945            ! MANIFEST
15946 ____________________________________________________________________________
15947 [  7470] By: jhi                                   on 2000/10/28  17:20:54
15948         Log: Subject: DOC PATCH 5.6.0
15949              From: mjd@plover.com
15950              Date: 27 Oct 2000 17:32:44 -0000
15951              Message-ID: <20001027173244.23754.qmail@plover.com>
15952      Branch: perl
15953            ! pod/perlfunc.pod
15954 ____________________________________________________________________________
15955 [  7469] By: jhi                                   on 2000/10/28  17:16:45
15956         Log: Subject: [ID 20001027.010] [PATCH] Add info on building CPAN modules to README.dos
15957              From: "Peter J. Farley III" <pjfarley@banet.net>
15958              Date: Fri, 27 Oct 2000 20:32:56 -0400
15959              Message-Id: <4.3.1.0.20001027202303.00ad8900@pop5.banet.net>
15960      Branch: perl
15961            ! README.dos
15962 ____________________________________________________________________________
15963 [  7468] By: jhi                                   on 2000/10/28  17:07:18
15964         Log: Make target reordering to avoid pointless re-makes.
15965              
15966              Subject: Re: Total re-make of 'make okfile' after 7451 ?
15967              From: Nicholas Clark <nick@ccl4.org>
15968              Date: Sat, 28 Oct 2000 00:31:02 +0100
15969              Message-ID: <20001028003101.A54517@plum.flirble.org>
15970      Branch: perl
15971            ! Makefile.SH
15972 ____________________________________________________________________________
15973 [  7467] By: jhi                                   on 2000/10/28  17:05:31
15974         Log: Subject: [ID 20001027.005] Nit in perlos2.pod - space needs deleted on line 118
15975              From: lvirden@cas.org
15976              Date: Fri, 27 Oct 2000 13:14:41 -0400 (EDT)
15977              Message-Id: <200010271714.NAA22015@lwv26awu.cas.org>
15978      Branch: perl
15979            ! README.os2
15980 ____________________________________________________________________________
15981 [  7466] By: jhi                                   on 2000/10/28  16:09:16
15982         Log: Upgrade to CPAN 1.58_55.
15983              
15984              Subject: CPAN.pm status
15985              From: andreas.koenig@anima.de (Andreas J. Koenig) 
15986              Date: 28 Oct 2000 08:18:00 +0200 
15987              Message-ID: <m3n1fpa3qf.fsf@ak-71.mind.de>
15988      Branch: perl
15989            ! lib/CPAN.pm lib/CPAN/FirstTime.pm
15990 ____________________________________________________________________________
15991 [  7465] By: jhi                                   on 2000/10/28  16:02:47
15992         Log: The reëntrant version shouldn't be needed unless USE_PURE_BISON.
15993      Branch: perl
15994            ! embed.h embed.pl perl.h proto.h toke.c
15995 ____________________________________________________________________________
15996 [  7464] By: nick                                  on 2000/10/28  10:43:44
15997         Log: Fix for sv_2iv() on "shared" value from keys %hash.
15998      Branch: perl
15999            ! sv.c
16000 ____________________________________________________________________________
16001 [  7463] By: jhi                                   on 2000/10/27  16:18:29
16002         Log: Update Changes.
16003      Branch: perl
16004            ! Changes patchlevel.h
16005 ____________________________________________________________________________
16006 [  7462] By: jhi                                   on 2000/10/27  16:17:44
16007         Log: Too enthusiastic editing in #7460.
16008      Branch: metaconfig
16009            ! U/modified/Oldsym.U
16010      Branch: perl
16011            ! Configure config_h.SH
16012 ____________________________________________________________________________
16013 [  7461] By: jhi                                   on 2000/10/27  15:37:38
16014         Log: Retract #7459, the script needs more work.
16015      Branch: perl
16016            - mkreef
16017            ! MANIFEST
16018 ____________________________________________________________________________
16019 [  7460] By: jhi                                   on 2000/10/27  15:23:14
16020         Log: Use $sort, $uniq (and $tr) consistently as wondered
16021              by Nicholas Clark.
16022      Branch: metaconfig
16023            ! U/modified/Cppsym.U U/modified/Getfile.U U/modified/Guess.U
16024            ! U/modified/Myread.U U/modified/Oldsym.U U/modified/Signal.U
16025            ! U/modified/libc.U
16026      Branch: perl
16027            ! Configure config_h.SH
16028 ____________________________________________________________________________
16029 [  7459] By: jhi                                   on 2000/10/27  15:02:07
16030         Log: (Retracted by #7461)
16031              
16032              Add a shell script for creating/removing symbolic link farms,
16033              useful for keeping the source code read-only and doing the
16034              builds somewhere else.
16035      Branch: perl
16036            + mkreef
16037            ! MANIFEST
16038 ____________________________________________________________________________
16039 [  7458] By: jhi                                   on 2000/10/27  14:42:20
16040         Log: Do away with the fix_pl.
16041      Branch: perl
16042            - fix_pl
16043            ! MANIFEST Makefile.SH
16044 ____________________________________________________________________________
16045 [  7457] By: jhi                                   on 2000/10/27  12:43:13
16046         Log: Subject: [ID 20001027.002] Patch 7380 followup - Perl_modfl *must* be defined
16047              From: Jens Hamisch <jens@Strawberry.COM>
16048              Date: Fri, 27 Oct 2000 14:38:21 +0200
16049              Message-Id: <20001027143821.B3366@Strawberry.COM>
16050      Branch: perl
16051            ! perl.h
16052 ____________________________________________________________________________
16053 [  7456] By: jhi                                   on 2000/10/27  12:33:42
16054         Log: Subject: [PATCH] todo
16055              From: Nicholas Clark <nick@ccl4.org>
16056              Date: Thu, 26 Oct 2000 22:32:29 +0100
16057              Message-ID: <20001026223229.A44540@plum.flirble.org>
16058      Branch: perl
16059            ! pod/perltodo.pod
16060 ____________________________________________________________________________
16061 [  7455] By: jhi                                   on 2000/10/27  12:02:21
16062         Log: Subject: Re: [PATCH bleadperl] ripples from constsub patch
16063              From: John Tobey <jtobey@john-edwin-tobey.org>
16064              Date: Thu, 26 Oct 2000 22:29:53 -0400 (EDT)
16065              Message-Id: <m13ozHF-000FObC@feynman.localnet>
16066      Branch: perl
16067            ! op.c t/pragma/sub_lval.t
16068 ____________________________________________________________________________
16069 [  7454] By: jhi                                   on 2000/10/27  11:59:42
16070         Log: Subject: [ID 20001026.006] C<use integer; $x += 1> gives uninitialized warning
16071              From: sthoenna@efn.org
16072              Date: Thu, 26 Oct 2000 14:00:03 -0700 (PDT)
16073              Message-Id: <200010262100.e9QL03U06386@garcia.efn.org>
16074      Branch: perl
16075            ! pp.c t/op/assignwarn.t
16076 ____________________________________________________________________________
16077 [  7453] By: jhi                                   on 2000/10/27  00:15:08
16078         Log: Upgrade to Storable 1.0.5, from Raphael Manfredi.
16079      Branch: perl
16080            ! ext/Storable/ChangeLog ext/Storable/Storable.pm
16081            ! ext/Storable/Storable.xs t/lib/st-lock.t
16082 ____________________________________________________________________________
16083 [  7452] By: jhi                                   on 2000/10/26  13:05:52
16084         Log: Undo #7451, this seems to be a deficiency in Perforce,
16085              there is no per-file line-terminator type, only per-client.
16086      Branch: perl
16087            ! README.dos README.win32 djgpp/configure.bat win32/Makefile
16088            ! win32/makefile.mk
16089 ____________________________________________________________________________
16090 [  7451] By: jhi                                   on 2000/10/26  04:56:03
16091         Log: Experimenting in DOS arcana.
16092      Branch: perl
16093            ! README.dos README.win32 djgpp/configure.bat win32/Makefile
16094            ! win32/makefile.mk
16095 ____________________________________________________________________________
16096 [  7450] By: jhi                                   on 2000/10/26  04:50:52
16097         Log: Subject: [ID 20001025.011] [PATCH] t/io/open.t perl@7369[  7350] breaks VMS perl
16098              From: "Peter J. Farley III" <pjfarley@banet.net>            
16099              Date: Wed, 25 Oct 2000 23:10:18 -0400
16100              Message-Id: <4.3.1.0.20001025230222.00accba0@pop5.banet.net>
16101      Branch: perl
16102            ! t/io/open.t
16103 ____________________________________________________________________________
16104 [  7449] By: jhi                                   on 2000/10/26  04:49:16
16105         Log: Subject: Re: [PATCH 5.6.0]Add non-blocking thread doneness checking
16106              From: Hugo <hv@crypt.compulink.co.uk>
16107              Date: Thu, 26 Oct 2000 01:55:17 +0100
16108              Message-Id: <200010260055.BAA27869@crypt.compulink.co.uk>
16109              
16110              minus one unneeded mutex lock/unlock pointed out by Dan Sugalski.
16111      Branch: perl
16112            ! ext/Thread/Thread.pm ext/Thread/Thread.xs t/lib/thr5005.t
16113 ____________________________________________________________________________
16114 [  7448] By: jhi                                   on 2000/10/26  04:38:36
16115         Log: Subject: [PATCH: perl@7446] restore missing d_stdio_cnt_lval to VMS
16116              From: Peter Prymmer <pvhp@forte.com>
16117              Date: Wed, 25 Oct 2000 18:23:56 -0700 (PDT)                          
16118              Message-ID: <Pine.OSF.4.10.10010251816200.247618-100000@aspara.forte.com>
16119      Branch: perl
16120            ! configure.com
16121 ____________________________________________________________________________
16122 [  7447] By: jhi                                   on 2000/10/25  23:20:02
16123         Log: Remains of the old UTF-8 API, utf8_to_uv_chk(): didn't link
16124              in platforms that strictly require all the symbols being present
16125              at link time.
16126      Branch: perl
16127            ! handy.h
16128 ____________________________________________________________________________
16129 [  7446] By: jhi                                   on 2000/10/25  21:55:57
16130         Log: Update Changes.
16131      Branch: perl
16132            ! Changes patchlevel.h
16133 ____________________________________________________________________________
16134 [  7445] By: jhi                                   on 2000/10/25  21:27:08
16135         Log: Integrate with vmsperl #7430 by Charles Bailey:
16136              
16137              Cleanup from prior patch (Charles Lane?):
16138              - improve handling of MFDs in Basename and Path
16139              - default to no xsubpp line # munging when building debug images
16140      Branch: perl
16141           !> lib/ExtUtils/MM_VMS.pm lib/File/Basename.pm lib/File/Path.pm
16142 ____________________________________________________________________________
16143 [  7444] By: jhi                                   on 2000/10/25  21:03:50
16144         Log: Subject: [PATCH] Zero-padded Numerics in Perl Format
16145              From: John Peacock <JPeacock@UnivPress.com>
16146              Date: Thu, 18 May 2000 11:55:27 -0400
16147              Message-ID: <3924126F.A58BE57A@UnivPress.com>
16148      Branch: perl
16149            ! form.h pod/perldelta.pod pod/perlform.pod pp_ctl.c
16150            ! t/op/write.t
16151 ____________________________________________________________________________
16152 [  7443] By: jhi                                   on 2000/10/25  20:43:10
16153         Log: Temporary stopgap for the self-tying issue: for now only
16154              array and hash self-ties are verboten.  The real fix, of
16155              course, would be to comprehensively test (and implement?)
16156              and debug (and document) self-ties.
16157      Branch: perl
16158            ! pod/perldiag.pod pp_sys.c t/op/tie.t
16159 ____________________________________________________________________________
16160 [  7442] By: jhi                                   on 2000/10/25  20:14:30
16161         Log: Subject: [PATCH 5.6.0]Add non-blocking thread doneness checking
16162              From: Dan Sugalski <dan@sidhe.org>
16163              Date: Wed, 25 Oct 2000 13:36:35 -0400
16164              Message-Id: <5.0.0.25.0.20001025133504.01ef1e20@24.8.96.48>
16165              
16166              plus regen global.sym.
16167      Branch: perl
16168            ! ext/Thread/Thread.pm ext/Thread/Thread.xs global.sym perl.c
16169            ! thrdvar.h util.c
16170 ____________________________________________________________________________
16171 [  7441] By: jhi                                   on 2000/10/25  20:12:20
16172         Log: buildtoc target tweaks.
16173      Branch: perl
16174            ! pod/Makefile.SH
16175 ____________________________________________________________________________
16176 [  7440] By: jhi                                   on 2000/10/25  20:03:53
16177         Log: A new version of making the syslog test more robust.
16178              (Replaces #7421.)
16179              
16180              Subject: Re: [ID 20001022.001] Not OK: perl v5.7.0 +DEVEL7368 on i686-linux 2.2.16
16181              From: "Kurt D. Starsinic" <kstar@chapin.edu>
16182              Date: Wed, 25 Oct 2000 12:13:54 -0400
16183              Message-ID: <20001025121354.B2264@O2.chapin.edu>
16184      Branch: perl
16185            ! t/lib/syslog.t
16186 ____________________________________________________________________________
16187 [  7439] By: jhi                                   on 2000/10/25  20:00:48
16188         Log: Continue the internal UTF-8 API tweaking.
16189              Rename utf8_to_uv_chk() back to utf8_to_uv() because it's
16190              used much more than the simpler API, now called utf8_to_uv_simple().
16191              Still not quite happy with API, too much partial duplication
16192              of functionality.
16193      Branch: perl
16194            ! doop.c embed.h embed.pl handy.h objXSUB.h op.c perlapi.c
16195            ! pod/perlapi.pod pod/perlunicode.pod pp.c pp_ctl.c proto.h
16196            ! regcomp.c regexec.c sv.c toke.c utf8.c
16197 ____________________________________________________________________________
16198 [  7438] By: jhi                                   on 2000/10/25  18:52:30
16199         Log: Allow poking holes at the UTF-8 decoding strictness.
16200      Branch: perl
16201            ! embed.pl pp.c proto.h sv.c t/pragma/utf8.t toke.c utf8.c
16202            ! utf8.h
16203 ____________________________________________________________________________
16204 [  7437] By: jhi                                   on 2000/10/25  13:53:05
16205         Log: Rename UTF8LEN() to be UNISKIP(), too confusing to have
16206              UTF8LEN() and UTF8SKIP(). 
16207      Branch: perl
16208            ! pp.c utf8.c utf8.h
16209 ____________________________________________________________________________
16210 [  7436] By: jhi                                   on 2000/10/25  13:51:37
16211         Log: Subject: [PATCH] Re: PerlIO - Configure tweak for Linux/glibc?
16212              From: Nicholas Clark <nick@ccl4.org>
16213              Date: Wed, 25 Oct 2000 14:44:05 +0100
16214              Message-ID: <20001025144404.D27253@plum.flirble.org>
16215      Branch: perl
16216            ! pod/perlrun.pod
16217 ____________________________________________________________________________
16218 [  7435] By: jhi                                   on 2000/10/25  13:49:32
16219         Log: Subject: [ID 20001024.007] [PATCH] "Dump local *FH" causes SEGV
16220              From: Mike Guy <mjtg@cam.ac.uk>
16221              Date: Tue, 24 Oct 2000 14:59:40 +0100
16222              Message-Id: <E13o4c8-00076u-00@libra.cus.cam.ac.uk>
16223      Branch: perl
16224            ! scope.c
16225 ____________________________________________________________________________
16226 [  7434] By: jhi                                   on 2000/10/25  13:48:41
16227         Log: AIX is picky about its symbol exports.  Solution for now
16228              is to include the deb.o explicitly to the re extension build.
16229              
16230              Subject: Re: introduce missing .Perl_deb symbol to aix build (Questions)
16231              From: Peter Prymmer <pvhp@forte.com>
16232              Date: Tue, 24 Oct 2000 12:57:22 -0700 (PDT)
16233              Message-ID: <Pine.OSF.4.10.10010241252180.127055-100000@aspara.forte.com>
16234      Branch: perl
16235            ! ext/re/Makefile.PL hints/aix.sh
16236 ____________________________________________________________________________
16237 [  7433] By: jhi                                   on 2000/10/25  13:46:49
16238         Log: Subject: patch 7416 breaks sv.c on AIX and HP-UX (patch included)
16239              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
16240              Date: Wed, 25 Oct 2000 12:02:20 +0200
16241              Message-Id: <20001025114712.C9F9.H.M.BRAND@hccnet.nl>
16242      Branch: perl
16243            ! perlsdio.h
16244 ____________________________________________________________________________
16245 [  7432] By: jhi                                   on 2000/10/25  13:44:28
16246         Log: Subject: Minor update to find2perl, for portability
16247              From: "Moore, Paul" <Paul.Moore@uk.origin-it.com>
16248              Date: Wed, 25 Oct 2000 12:05:47 +0100
16249              Message-ID: <714DFA46B9BBD0119CD000805FC1F53B012A8355@UKRUX002.rundc.uk.origin-it.com>
16250      Branch: perl
16251            ! x2p/find2perl.PL
16252 ____________________________________________________________________________
16253 [  7431] By: jhi                                   on 2000/10/25  13:40:39
16254         Log: Add targets to Makefile.SH, most importantly
16255              'regen_all' which also remembers to update vms/perly*.
16256      Branch: perl
16257            ! Makefile.SH
16258 ____________________________________________________________________________
16259 [  7430] By: bailey                                on 2000/10/25  03:13:53
16260         Log: Cleanup from prior patch (Charles Lane?):
16261              - improve handling of MFDs in Basename and Path
16262              - default to no xsubpp line # munging when building debug images
16263      Branch: vmsperl
16264            ! lib/ExtUtils/MM_VMS.pm lib/File/Basename.pm lib/File/Path.pm
16265 ____________________________________________________________________________
16266 [  7429] By: jhi                                   on 2000/10/24  20:03:40
16267         Log: Podify README.epoc and README.vos.
16268      Branch: perl
16269            ! README.epoc README.vos pod/buildtoc.PL pod/perl.pod
16270            ! pod/perlport.pod pod/perltoc.pod
16271 ____________________________________________________________________________
16272 [  7428] By: jhi                                   on 2000/10/24  19:10:33
16273         Log: Stratus VOS updates from Paul Green.
16274      Branch: perl
16275            + vos/config.alpha.def vos/config.alpha.h vos/config.ga.def
16276            + vos/config.ga.h vos/configure_perl.cm vos/install_perl.cm
16277            - vos/config.def vos/config.h vos/config_h.SH_orig
16278            ! MANIFEST README.vos pod/perlport.pod vos/Changes vos/build.cm
16279            ! vos/compile_perl.cm vos/config.pl vos/perl.bind vos/vosish.h
16280 ____________________________________________________________________________
16281 [  7427] By: jhi                                   on 2000/10/24  18:59:48
16282         Log: Check if stdio supports tweaking lval and cnt simultaneously.
16283              
16284              Subject: PATCH (Re: PerlIO - Configure tweak for Linux/glibc?)
16285              From: Nicholas Clark <nick@ccl4.org>
16286              Date: Mon, 23 Oct 2000 15:39:32 +0100
16287              Message-ID: <20001023153932.A10786@plum.flirble.org>
16288      Branch: metaconfig
16289            ! U/compline/d_stdstdio.U
16290      Branch: perl
16291            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
16292            ! config_h.SH configure.com epoc/config.sh iperlsys.h perlio.c
16293            ! perlsdio.h perlsfio.h pod/Makefile.SH pod/perltoc.pod
16294            ! uconfig.h uconfig.sh vms/genconfig.pl vos/config.def
16295            ! vos/config.h vos/config_h.SH_orig win32/config.bc
16296            ! win32/config.gc win32/config.vc
16297 ____________________________________________________________________________
16298 [  7426] By: jhi                                   on 2000/10/24  17:57:44
16299         Log: Missed the header file changes from #7425.
16300      Branch: perl
16301            ! embed.h embed.pl objXSUB.h proto.h
16302 ____________________________________________________________________________
16303 [  7425] By: jhi                                   on 2000/10/24  17:55:17
16304         Log: Fix the bug reported in
16305              
16306              From: andreas.koenig@anima.de (Andreas J. Koenig)
16307              Subject: Encode bug?
16308              Date: 24 Oct 2000 14:01:26 +0200 
16309              Message-ID: <m3lmveqwh5.fsf@ak-71.mind.de>
16310              
16311              Also make is_utf8_char() stricter.
16312      Branch: perl
16313            ! ext/Encode/Encode.xs utf8.c
16314 ____________________________________________________________________________
16315 [  7424] By: jhi                                   on 2000/10/24  15:15:39
16316         Log: Subject: Re: [ID 20001023.003] PATCH perlfaq5 [perl-current]
16317              From: Peter Scott <Peter@PSDT.com>
16318              Date: Mon, 23 Oct 2000 19:46:01 -0700
16319              Message-Id: <4.3.2.7.2.20001023194324.00ab7220@psdt.com>
16320      Branch: perl
16321            ! pod/perlfaq5.pod
16322 ____________________________________________________________________________
16323 [  7423] By: jhi                                   on 2000/10/24  14:25:30
16324         Log: Test tweak to avoid pulling in the whole Config.
16325      Branch: perl
16326            ! t/lib/st-lock.t
16327 ____________________________________________________________________________
16328 [  7422] By: jhi                                   on 2000/10/24  14:03:16
16329         Log: Fix the bug ID 20001024.005, the bug introduced by #7416.
16330      Branch: perl
16331            ! pp.c
16332 ____________________________________________________________________________
16333 [  7421] By: jhi                                   on 2000/10/24  13:32:09
16334         Log: (Replaced by #7440.)
16335              
16336              Subject: Re: [ID 20001022.001] Not OK: perl v5.7.0 +DEVEL7368 on i686-linux 2.2.16
16337              From: "Kurt D. Starsinic" <kstar@chapin.edu>
16338              Date: Mon, 23 Oct 2000 16:40:54 -0400
16339              Message-ID: <20001023164054.B14491@O2.chapin.edu>
16340      Branch: perl
16341            ! t/lib/syslog.t
16342 ____________________________________________________________________________
16343 [  7420] By: jhi                                   on 2000/10/24  13:30:53
16344         Log: Subject: [PATCH 5.7.0] static linking with uninstalled perl
16345              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
16346              Date: Mon, 23 Oct 2000 17:29:03 -0400
16347              Message-ID: <20001023172903.A18749@monk.mps.ohio-state.edu>
16348      Branch: perl
16349            ! lib/ExtUtils/MM_Unix.pm
16350 ____________________________________________________________________________
16351 [  7419] By: jhi                                   on 2000/10/24  13:29:57
16352         Log: Subject: Re: [PATCH 5.7.0] h2xs not documenting the created module
16353              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
16354              Date: Mon, 23 Oct 2000 19:01:32 -0400
16355              Message-ID: <20001023190132.A19791@monk.mps.ohio-state.edu>
16356      Branch: perl
16357            ! utils/h2xs.PL
16358 ____________________________________________________________________________
16359 [  7418] By: jhi                                   on 2000/10/24  13:26:04
16360         Log: Replace #7409 with
16361              
16362              Subject: Re: [PATCH] Re: [ID 20001020.009] Not OK: perl v5.7.0 +DEVEL7368 on dos-djgpp djgp
16363              From: Raphael Manfredi <Raphael_Manfredi@pobox.com>
16364              Date: Mon, 23 Oct 2000 20:08:56 +0200
16365              Message-ID: <20001023200855.A14850@nice.ram.loc>
16366      Branch: perl
16367            ! ext/Storable/Storable.pm t/lib/st-lock.t
16368 ____________________________________________________________________________
16369 [  7417] By: jhi                                   on 2000/10/24  13:17:52
16370         Log: Run vms/vms_yfix.pl, should have done that after changing
16371              perly.c in #7382.
16372      Branch: perl
16373            ! vms/perly_c.vms vms/perly_h.vms
16374 ____________________________________________________________________________
16375 [  7416] By: jhi                                   on 2000/10/24  02:55:33
16376         Log: Make the UTF-8 decoding stricter and more verbose when
16377              malformation happens.  This involved adding an argument
16378              to utf8_to_uv_chk(), which involved changing its prototype,
16379              and prefer STRLEN over I32 for the UTF-8 length, which as
16380              a domino effect necessitated changing the prototypes of
16381              scan_bin(), scan_oct(), scan_hex(), and reg_uni().
16382              The stricter UTF-8 decoding checking uses Markus Kuhn's
16383              UTF-8 Decode Stress Tester from
16384              http://www.cl.cam.ac.uk/~mgk25/ucs/examples/UTF-8-test.txt
16385      Branch: perl
16386            ! doop.c embed.h embed.pl handy.h objXSUB.h op.c perl.c
16387            ! perlapi.c pod/perlapi.pod pod/perldiag.pod pod/perlunicode.pod
16388            ! pp.c pp_ctl.c proto.h regcomp.c regexec.c sv.c t/pragma/utf8.t
16389            ! t/pragma/warn/utf8 toke.c utf8.c utf8.h util.c
16390 ____________________________________________________________________________
16391 [  7415] By: jhi                                   on 2000/10/23  14:06:06
16392         Log: Update Changes.
16393      Branch: perl
16394            ! Changes patchlevel.h
16395 ____________________________________________________________________________
16396 [  7414] By: jhi                                   on 2000/10/23  12:39:52
16397         Log: Undo the basename() part of #7412 since the lib/basename
16398              tests would need upgrading too.
16399      Branch: perl
16400            ! lib/File/Basename.pm
16401 ____________________________________________________________________________
16402 [  7413] By: jhi                                   on 2000/10/23  12:19:27
16403         Log: Document PERL_INSTALL_ROOT of #7210.
16404      Branch: perl
16405            ! lib/ExtUtils/Install.pm
16406 ____________________________________________________________________________
16407 [  7412] By: jhi                                   on 2000/10/23  12:16:47
16408         Log: Miscellaneous MacOS Classic library updates from Matthias Neeracher.
16409      Branch: perl
16410            ! lib/ExtUtils/Mksymlists.pm lib/File/Basename.pm
16411            ! lib/File/Path.pm lib/Term/ReadLine.pm lib/perl5db.pl
16412 ____________________________________________________________________________
16413 [  7411] By: jhi                                   on 2000/10/23  12:07:41
16414         Log: Subject: [PATCH: perl@7386] miscellaneous typos in 3 pods
16415              From: Prymmer/Kahn <pvhp@best.com>
16416              Date: Sun, 22 Oct 2000 22:18:40 -0700 (PDT)
16417              Message-ID: <Pine.BSF.4.21.0010222214150.11774-100000@shell8.ba.best.com>
16418      Branch: perl
16419            ! README.aix pod/perlebcdic.pod vms/ext/Stdio/Stdio.pm
16420 ____________________________________________________________________________
16421 [  7410] By: jhi                                   on 2000/10/23  04:10:11
16422         Log: The change #7187 was not so good on VMS.
16423              
16424              Subject: [PATCH perl@7369] VMS perldoc.PL fix for double quoted temp filename
16425              From: "Craig A. Berry" <craig.berry@psinetcs.com>
16426              Date: Sun, 22 Oct 2000 23:03:08 -0500
16427              Message-Id: <p04330102b617d093470b@[172.16.52.1]>
16428      Branch: perl
16429            ! utils/perldoc.PL
16430 ____________________________________________________________________________
16431 [  7409] By: jhi                                   on 2000/10/23  03:57:36
16432         Log: Avoid Storable locking on DJGPP for now.
16433              
16434              Subject: [PATCH] Re: [ID 20001020.009] Not OK: perl v5.7.0 +DEVEL7368 on dos-djgpp djgpp
16435              From: "Peter J. Farley III" <pjfarley@banet.net>
16436              Date: Sun, 22 Oct 2000 20:00:00 -0400
16437              Message-Id: <4.3.1.0.20001022194247.00acfee0@pop5.banet.net>
16438      Branch: perl
16439            ! ext/Storable/Storable.pm t/lib/st-lock.t
16440 ____________________________________________________________________________
16441 [  7408] By: jhi                                   on 2000/10/23  03:50:24
16442         Log: Subject: Re: [20000731.007] potential syntax error not detected [PATCH]
16443              From: Ronald J Kimball <rjk@linguist.dartmouth.edu>
16444              Date: Sun, 22 Oct 2000 21:12:22 -0400
16445              Message-ID: <20001022211222.A1062496@linguist.dartmouth.edu>
16446      Branch: perl
16447            ! lib/vars.pm
16448 ____________________________________________________________________________
16449 [  7407] By: jhi                                   on 2000/10/23  03:43:12
16450         Log: Subject: Re: [ID 20001021.005] SEGV with regex match 
16451              From: Hugo <hv@crypt.compulink.co.uk>
16452              Date: Mon, 23 Oct 2000 00:47:22 +0100
16453              Message-Id: <200010222347.AAA09697@crypt.compulink.co.uk>
16454      Branch: perl
16455            ! regexec.c t/op/pat.t
16456 ____________________________________________________________________________
16457 [  7406] By: jhi                                   on 2000/10/23  03:40:29
16458         Log: Retract #7404 with a patch from Robin Barker, via Andy Dougherty.
16459      Branch: perl
16460            ! lib/ExtUtils/MakeMaker.pm
16461 ____________________________________________________________________________
16462 [  7405] By: jhi                                   on 2000/10/22  21:32:00
16463         Log: Doc patch.
16464              
16465              Subject: [ID 19991128.002] \&{'foo'} not caught by strict refs
16466              From: rspier@pobox.com (Robert Spier)
16467              Date: Sun, 22 Oct 2000 15:24:32 -0400 (EDT)
16468              Message-ID: <14835.16112.13457.447971@rls.cx>
16469      Branch: perl
16470            ! lib/strict.pm
16471 ____________________________________________________________________________
16472 [  7404] By: jhi                                   on 2000/10/22  21:30:51
16473         Log: Subject: [PATCH] Re: [ID 20000121.007] XXX documentation in man ExtUtils::MakeMaker
16474              From: rspier@pobox.com (Robert Spier)
16475              Date: Sun, 22 Oct 2000 15:43:03 -0400 (EDT)
16476              Message-ID: <14835.17223.72448.705566@rls.cx>
16477      Branch: perl
16478            ! lib/ExtUtils/MakeMaker.pm
16479 ____________________________________________________________________________
16480 [  7403] By: jhi                                   on 2000/10/22  21:24:11
16481         Log: Subject: [PATCH bleadperl] ripples from constsub patch
16482              From: John Tobey <jtobey@john-edwin-tobey.org>
16483              Date: Sun, 22 Oct 2000 17:10:43 -0400 (EDT)
16484              Message-Id: <m13nSOB-000FObC@feynman.localnet>
16485      Branch: perl
16486            ! dump.c ext/B/B.pm ext/B/B.xs ext/B/B/Deparse.pm t/lib/b.t
16487 ____________________________________________________________________________
16488 [  7402] By: jhi                                   on 2000/10/22  20:59:35
16489         Log: Support s?printf parameter reordering.
16490      Branch: perl
16491            ! pod/perldelta.pod pod/perlfunc.pod sv.c t/op/sprintf.t
16492 ____________________________________________________________________________
16493 [  7401] By: jhi                                   on 2000/10/22  19:19:14
16494         Log: Expand %Config variables only if explicitly so requested
16495              during build time by PERL_BUILD_EXPAND_CONFIG_VARS.
16496              
16497              Subject: Re: PATCH $Config::Config{ldlibpthname} in ext/DynaLoader/DynaLoader_pm.PL
16498              From: Gurusamy Sarathy <gsar@ActiveState.com>
16499              Date: Sun, 22 Oct 2000 11:47:32 -0700
16500              Message-Id: <200010221847.LAA02167@smtp3.ActiveState.com>            
16501      Branch: perl
16502            ! Makefile.SH lib/lib_pm.PL
16503 ____________________________________________________________________________
16504 [  7400] By: jhi                                   on 2000/10/22  18:24:10
16505         Log: Move the #7390 test from warn/op to comp/redef.
16506              
16507              Subject: Re: Creating const subs for constants.
16508              From: John Tobey <jtobey@john-edwin-tobey.org>
16509              Date: Sun, 22 Oct 2000 04:04:12 -0400 (EDT)
16510              Message-Id: <m13nG72-000FObC@feynman.localnet>               
16511      Branch: perl
16512            ! t/comp/redef.t t/pragma/warn/op
16513 ____________________________________________________________________________
16514 [  7399] By: jhi                                   on 2000/10/22  17:49:59
16515         Log: Subject: PATCH $Config::Config{ldlibpthname} in ext/DynaLoader/DynaLoader_pm.PL
16516              From: Nicholas Clark <nick@ccl4.org>
16517              Date: Sat, 21 Oct 2000 22:23:19 +0100
16518              Message-ID: <20001021222319.B45586@plum.flirble.org>
16519      Branch: perl
16520            ! ext/DynaLoader/DynaLoader_pm.PL
16521 ____________________________________________________________________________
16522 [  7398] By: jhi                                   on 2000/10/22  17:47:35
16523         Log: Subject: [PATCH bleadperl] -MO=C falls over on package <none>
16524              From: Hugo <hv@crypt.compulink.co.uk>
16525              Date: Sat, 21 Oct 2000 18:19:59 +0100
16526              Message-Id: <200010211719.SAA02087@crypt.compulink.co.uk>
16527      Branch: perl
16528            ! ext/B/B.pm ext/B/B/C.pm
16529 ____________________________________________________________________________
16530 [  7397] By: jhi                                   on 2000/10/22  17:35:18
16531         Log: Subject: [ID 20001021.003] updated hints/openbsd.sh
16532              From: "Todd C. Miller" <Todd.Miller@courtesan.com>
16533              Date: Sat, 21 Oct 2000 13:55:50 -0600 (MDT)
16534              Message-Id: <200010211955.e9LJton24170@xerxes.courtesan.com>
16535      Branch: perl
16536            ! hints/openbsd.sh
16537 ____________________________________________________________________________
16538 [  7396] By: jhi                                   on 2000/10/22  17:19:46
16539         Log: Subject: installman go-faster stripes
16540              From: Nicholas Clark <nick@talking.bollo.cx>
16541              Date: Sat, 21 Oct 2000 17:24:53 +0100
16542              Message-ID: <20001021172452.A20371@Bagpuss.unfortu.net>
16543              
16544              Subject: Re: installman go-faster stripes
16545              From: Russ Allbery <rra@stanford.edu>
16546              Date: 21 Oct 2000 11:04:13 -0700
16547              Message-ID: <ylbswe5aw2.fsf@windlord.stanford.edu>
16548      Branch: perl
16549            ! installman pod/pod2man.PL
16550 ____________________________________________________________________________
16551 [  7395] By: jhi                                   on 2000/10/22  17:17:35
16552         Log: Hints tweak from Anton Berezin.
16553      Branch: perl
16554            ! hints/freebsd.sh
16555 ____________________________________________________________________________
16556 [  7394] By: jhi                                   on 2000/10/22  04:50:04
16557         Log: Tweak the Is* definitions of Unicode character classes
16558              to better match the official categorizations; embrace
16559              the official categorizations; add the combining marks
16560              as alpha (and -numeric); fix DCinital (a typo and edito)
16561              to be DCmedial.
16562      Branch: perl
16563            + lib/unicode/Is/DCmedial.pl
16564            - lib/unicode/Is/DCinital.pl
16565            ! MANIFEST lib/unicode/Is/Alnum.pl lib/unicode/Is/Alpha.pl
16566            ! lib/unicode/Is/Graph.pl lib/unicode/Is/Print.pl
16567            ! lib/unicode/Is/Punct.pl lib/unicode/Is/Space.pl
16568            ! lib/unicode/Is/Word.pl lib/unicode/mktables.PL
16569 ____________________________________________________________________________
16570 [  7393] By: jhi                                   on 2000/10/21  18:06:05
16571         Log: Subject: [PATCH@blead Tie/Array.pm] Re: [ID 20001020.002] Tie::Array SPLICE method is buggy
16572              From: Daniel Chetlin <daniel@chetlin.com>
16573              Date: Sat, 21 Oct 2000 02:57:03 -0700
16574              Message-ID: <20001021025703.A2115@darkstar.chetlin.org>
16575      Branch: perl
16576            + t/lib/tie-splice.t
16577            ! MANIFEST lib/Tie/Array.pm
16578 ____________________________________________________________________________
16579 [  7392] By: gsar                                  on 2000/10/21  18:05:15
16580         Log: resync utfperl branch with mainline
16581      Branch: utfperl
16582           !> (integrate 1760 files)
16583 ____________________________________________________________________________
16584 [  7391] By: jhi                                   on 2000/10/21  14:37:49
16585         Log: Testcases for a #7383,#7385 related bug.
16586              
16587              Subject: PATCH Re: [ID 20001020.006] "$2$utf8" == modification of read-only-variable
16588              From: Nicholas Clark <nick@ccl4.org>
16589              Date: Sat, 21 Oct 2000 15:04:51 +0100
16590              Message-ID: <20001021150451.A51566@plum.flirble.org>
16591      Branch: perl
16592            ! t/pragma/utf8.t
16593 ____________________________________________________________________________
16594 [  7390] By: jhi                                   on 2000/10/21  14:35:57
16595         Log: Add a testcase for #7389.
16596      Branch: perl
16597            ! t/pragma/warn/op
16598 ____________________________________________________________________________
16599 [  7389] By: jhi                                   on 2000/10/21  14:26:45
16600         Log: Subject: Re: Creating const subs for constants.
16601              From: John Tobey <jtobey@john-edwin-tobey.org>
16602              Date: Fri, 20 Oct 2000 22:03:27 -0400 (EDT)
16603              Message-Id: <m13mo0N-000FObC@feynman.localnet>
16604      Branch: perl
16605            ! cv.h embed.h embed.pl objXSUB.h op.c perlapi.c pod/perlapi.pod
16606            ! proto.h sv.c
16607 ____________________________________________________________________________
16608 [  7388] By: nick                                  on 2000/10/21  11:44:23
16609         Log: Populate perlio branch
16610      Branch: perlio
16611           +> (branch 1760 files)
16612 ____________________________________________________________________________
16613 [  7387] By: nick                                  on 2000/10/21  10:52:05
16614         Log: Get branch back as replica of mainline via :
16615              p4 integrate -b utfperl
16616              p4 resolve -at ./...
16617      Branch: utfperl
16618           +> (branch 269 files)
16619            - Todo-5.005 eg/ADB eg/README eg/cgi/RunMeFirst
16620            - eg/cgi/caution.xbm eg/cgi/clickable_image.cgi
16621            - eg/cgi/cookie.cgi eg/cgi/crash.cgi eg/cgi/customize.cgi
16622            - eg/cgi/diff_upload.cgi eg/cgi/dna_small_gif.uu
16623            - eg/cgi/file_upload.cgi eg/cgi/frameset.cgi eg/cgi/index.html
16624            - eg/cgi/internal_links.cgi eg/cgi/javascript.cgi
16625            - eg/cgi/monty.cgi eg/cgi/multiple_forms.cgi
16626            - eg/cgi/nph-clock.cgi eg/cgi/nph-multipart.cgi eg/cgi/popup.cgi
16627            - eg/cgi/save_state.cgi eg/cgi/tryit.cgi eg/cgi/wilogo_gif.uu
16628            - eg/changes eg/client eg/down eg/dus eg/findcp eg/findtar
16629            - eg/g/gcp eg/g/gcp.man eg/g/ged eg/g/ghosts eg/g/gsh
16630            - eg/g/gsh.man eg/muck eg/muck.man eg/myrup eg/nih eg/relink
16631            - eg/rename eg/rmfrom eg/scan/scan_df eg/scan/scan_last
16632            - eg/scan/scan_messages eg/scan/scan_passwd eg/scan/scan_ps
16633            - eg/scan/scan_sudo eg/scan/scan_suid eg/scan/scanner eg/server
16634            - eg/shmkill eg/sysvipc/README eg/sysvipc/ipcmsg
16635            - eg/sysvipc/ipcsem eg/sysvipc/ipcshm eg/travesty eg/unuc
16636            - eg/uudecode eg/van/empty eg/van/unvanish eg/van/vanexp
16637            - eg/van/vanish eg/who eg/wrapsuid epoc/Config.pm
16638            - epoc/autosplit.pl epoc/config.h epoc/perl.mmp epoc/perl.pkg
16639            - ext/DynaLoader/dl_rhapsody.xs lib/Sys/Hostname.pm
16640            - lib/Sys/Syslog.pm lib/byte.pm lib/byte_heavy.pl lib/caller.pm
16641            - lib/chat2.pl lib/lib.pm lib/unicode/Eq/Latin1.pl
16642            - lib/unicode/Eq/Unicode.pl lib/unicode/Props.txt
16643            - lib/unicode/UCD300.html lib/unicode/Unicode.300
16644            - lib/unicode/Unicode3.html os2/POSIX.mkfifo pod/Makefile
16645            - pod/Win32.pod pod/buildtoc t/lib/thread.t t/op/64bit.t
16646            - t/op/nothread.t utils/perlbc.PL vms/subconfigure.com
16647            - win32/PerlCRT.def win32/gstartup.c win32/oldnames.def
16648           !> (integrate 965 files)
16649 ____________________________________________________________________________
16650 [  7386] By: jhi                                   on 2000/10/21  01:31:12
16651         Log: Update Changes.
16652      Branch: perl
16653            ! Changes patchlevel.h
16654 ____________________________________________________________________________
16655 [  7385] By: jhi                                   on 2000/10/21  01:28:42
16656         Log: The #7383 was right only in the context of the original bug report,
16657              not in more general case.
16658      Branch: perl
16659            ! pp_hot.c
16660 ____________________________________________________________________________
16661 [  7384] By: jhi                                   on 2000/10/21  01:08:23
16662         Log: Fix for ID 20000915.011, IO::Select warning for an undefined fd.
16663      Branch: perl
16664            ! ext/IO/lib/IO/Select.pm
16665 ____________________________________________________________________________
16666 [  7383] By: jhi                                   on 2000/10/21  00:44:18
16667         Log: Fix for ID 20001020.006, concatenating an unset submatch
16668              with utf8 resulted in "Modification of a read-only value".
16669      Branch: perl
16670            ! pp_hot.c t/pragma/utf8.t
16671 ____________________________________________________________________________
16672 [  7382] By: jhi                                   on 2000/10/20  20:44:31
16673         Log: Make scan_num() reëntrant, as suggested in
16674              
16675              Subject: [PATCH perl@7229] Rentrant parser and yylex()
16676              From: "Roca, Ignasi" <ignasi.roca@fujitsu.siemens.es>
16677              Date: Fri, 20 Oct 2000 14:17:27 +0100
16678              Message-ID: <5930DC161690D211966700902715754702DA09CD@madt009a.siemens.es>
16679      Branch: perl
16680            ! embed.h embed.pl objXSUB.h perlapi.c perly.c perly.y proto.h
16681            ! toke.c
16682 ____________________________________________________________________________
16683 [  7381] By: jhi                                   on 2000/10/20  20:07:29
16684         Log: Reëntrancy fix.
16685              
16686              Subject: [PATCH perl@7229] Rentrant parser and yylex()
16687              From: "Roca, Ignasi" <ignasi.roca@fujitsu.siemens.es>
16688              Date: Fri, 20 Oct 2000 14:17:27 +0100
16689              Message-ID: <5930DC161690D211966700902715754702DA09CD@madt009a.siemens.es>
16690      Branch: perl
16691            ! embed.h embed.pl perl.h proto.h toke.c
16692 ____________________________________________________________________________
16693 [  7380] By: jhi                                   on 2000/10/20  19:15:54
16694         Log: Don't write double values through long double pointers,
16695              based on a part of
16696              
16697              Subject: [ID 20001016.017] [jens: 5.7.0 Solaris 8, 64 Bit, Workshop 6.0 Compiler]
16698              From: Jens Hamisch <jens@Strawberry.COM>
16699              Date: Tue, 17 Oct 2000 08:39:36 +0200
16700              Message-Id: <20001017083936.A11104@Strawberry.COM>
16701      Branch: perl
16702            ! perl.h pp.c
16703 ____________________________________________________________________________
16704 [  7379] By: jhi                                   on 2000/10/20  18:43:37
16705         Log: Portability tweak on #7377.
16706              
16707              Subject:  Re: [nick@cow.org.uk: [ID 20001020.004] Not OK: perl v5.7.0 +DEVEL7368 on i386-freebsd-64all 4.1-stable (UNINSTALLED)]
16708              From: lane@DUPHY4.Physics.Drexel.Edu (Charles Lane)
16709              Date:     Fri, 20 Oct 2000 13:13:41 EDT
16710              Message-Id: <001020131216.3b141@DUPHY4.Physics.Drexel.Edu>
16711      Branch: perl
16712            ! t/lib/dprof.t
16713 ____________________________________________________________________________
16714 [  7378] By: jhi                                   on 2000/10/20  12:57:19
16715         Log: SOCKS function redefinitions need prototypes, too, otherwise
16716              for example 32 bit versus 64 bit differences cause a lot of
16717              problems.  Part of
16718              
16719              Subject: [ID 20001016.017] [jens: 5.7.0 Solaris 8, 64 Bit, Workshop 6.0 Compiler]
16720              From: Jens Hamisch <jens@Strawberry.COM>
16721              Date: Tue, 17 Oct 2000 08:39:36 +0200
16722              Message-Id: <20001017083936.A11104@Strawberry.COM>
16723      Branch: perl
16724            ! doio.c pp_sys.c
16725 ____________________________________________________________________________
16726 [  7377] By: jhi                                   on 2000/10/20  12:37:12
16727         Log: Subject:  [PATCH] Perl 5.6.0/5.7.0 enable DProf test for VMS
16728              From: lane@DUPHY4.Physics.Drexel.Edu (Charles Lane)
16729              Date:     Fri, 20 Oct 2000 08:26:04 EDT
16730              Message-Id: <001020074851.3751a@DUPHY4.Physics.Drexel.Edu>
16731      Branch: perl
16732            ! configure.com t/lib/dprof.t t/lib/dprof/V.pm vms/test.com
16733 ____________________________________________________________________________
16734 [  7376] By: jhi                                   on 2000/10/20  12:35:31
16735         Log: Subject:  [PATCH] Perl 5.6.0/5.7.0, vms/gen_shrfls.pl update
16736              From: lane@DUPHY4.Physics.Drexel.Edu (Charles Lane)
16737              Date:     Fri, 20 Oct 2000 07:48:15 EDT
16738              Message-Id: <001020074423.39b82@DUPHY4.Physics.Drexel.Edu>
16739      Branch: perl
16740            ! configure.com vms/gen_shrfls.pl
16741 ____________________________________________________________________________
16742 [  7375] By: bailey                                on 2000/10/20  04:44:37
16743         Log: SYN SYN
16744      Branch: vmsperl
16745           +> (branch 134 files)
16746            - eg/ADB eg/README eg/cgi/RunMeFirst eg/cgi/caution.xbm
16747            - eg/cgi/clickable_image.cgi eg/cgi/cookie.cgi eg/cgi/crash.cgi
16748            - eg/cgi/customize.cgi eg/cgi/diff_upload.cgi
16749            - eg/cgi/dna_small_gif.uu eg/cgi/file_upload.cgi
16750            - eg/cgi/frameset.cgi eg/cgi/index.html
16751            - eg/cgi/internal_links.cgi eg/cgi/javascript.cgi
16752            - eg/cgi/monty.cgi eg/cgi/multiple_forms.cgi
16753            - eg/cgi/nph-clock.cgi eg/cgi/nph-multipart.cgi eg/cgi/popup.cgi
16754            - eg/cgi/save_state.cgi eg/cgi/tryit.cgi eg/cgi/wilogo_gif.uu
16755            - eg/changes eg/client eg/down eg/dus eg/findcp eg/findtar
16756            - eg/g/gcp eg/g/gcp.man eg/g/ged eg/g/ghosts eg/g/gsh
16757            - eg/g/gsh.man eg/muck eg/muck.man eg/myrup eg/nih eg/relink
16758            - eg/rename eg/rmfrom eg/scan/scan_df eg/scan/scan_last
16759            - eg/scan/scan_messages eg/scan/scan_passwd eg/scan/scan_ps
16760            - eg/scan/scan_sudo eg/scan/scan_suid eg/scan/scanner eg/server
16761            - eg/shmkill eg/sysvipc/README eg/sysvipc/ipcmsg
16762            - eg/sysvipc/ipcsem eg/sysvipc/ipcshm eg/travesty eg/unuc
16763            - eg/uudecode eg/van/empty eg/van/unvanish eg/van/vanexp
16764            - eg/van/vanish eg/who eg/wrapsuid lib/chat2.pl
16765            - lib/unicode/Props.txt lib/unicode/UCD300.html
16766            - lib/unicode/Unicode.300 lib/unicode/Unicode3.html
16767            - utils/perlbc.PL vms/subconfigure.com
16768           !> (integrate 785 files)
16769 ____________________________________________________________________________
16770 [  7374] By: jhi                                   on 2000/10/20  00:59:48
16771         Log: In the latest compiler builds cccdlflags must not become -fpic,
16772              from Wilfredo Sánchez.
16773      Branch: perl
16774            ! hints/darwin.sh
16775 ____________________________________________________________________________
16776 [  7373] By: jhi                                   on 2000/10/20  00:56:35
16777         Log: Subject: PATCH CR+LF should be "\cM\cJ" in perlop
16778              From: Tony Cook <tony@develop-help.com>
16779              Date: Fri, 20 Oct 2000 07:29:15 +1100 (EST)
16780              Message-ID: <Pine.LNX.4.10.10010200725530.12682-100000@develop-help.com>
16781      Branch: perl
16782            ! pod/perlop.pod
16783 ____________________________________________________________________________
16784 [  7372] By: jhi                                   on 2000/10/19  19:34:40
16785         Log: Typo noted by Mark Lutz.
16786      Branch: perl
16787            ! t/op/64bitint.t
16788 ____________________________________________________________________________
16789 [  7371] By: jhi                                   on 2000/10/19  19:33:13
16790         Log: NonStop-UX patches from Tom Bates <tom.bates@compaq.com>
16791      Branch: metaconfig
16792            ! U/modified/Cppsym.U U/modified/Oldconfig.U
16793      Branch: metaconfig/U/perl
16794            ! End.U dlsrc.U libperl.U
16795      Branch: perl
16796            + hints/nonstopux.sh
16797            ! Configure MANIFEST config_h.SH
16798 ____________________________________________________________________________
16799 [  7370] By: jhi                                   on 2000/10/19  17:18:08
16800         Log: Subject: PATCH do_print has 2 PerlIO_error()s
16801              From: nick@ccl4.org
16802              Date: Thu, 19 Oct 2000 18:09:20 +0100
16803              Message-ID: <20001019180920.A8440@babyhippo.co.uk>
16804      Branch: perl
16805            ! doio.c
16806 ____________________________________________________________________________
16807 [  7369] By: jhi                                   on 2000/10/19  14:01:49
16808         Log: Update Changes.
16809      Branch: perl
16810            ! Changes patchlevel.h
16811 ____________________________________________________________________________
16812 [  7368] By: jhi                                   on 2000/10/19  13:04:29
16813         Log: Subject: Re: [ID 20001013.008] perl 5.6.0 on AIX w/GCC
16814              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
16815              Date: Wed, 18 Oct 2000 13:12:01 +0200
16816              Message-Id: <20001018131021.F844.H.M.BRAND@hccnet.nl>
16817      Branch: perl
16818            ! hints/aix.sh
16819 ____________________________________________________________________________
16820 [  7367] By: jhi                                   on 2000/10/19  02:22:40
16821         Log: Fix of sorts for bug id 20000901.092.  There seems to be no trace
16822              of a 'pmshort' anywhere in the B, so the offending line was simply
16823              removed.
16824      Branch: perl
16825            ! ext/B/B/Debug.pm
16826 ____________________________________________________________________________
16827 [  7366] By: jhi                                   on 2000/10/19  02:12:37
16828         Log: Add the test case for the bug id 20000730.004 which seems
16829              to have been fixed by now.
16830      Branch: perl
16831            ! t/pragma/utf8.t
16832 ____________________________________________________________________________
16833 [  7365] By: jhi                                   on 2000/10/18  23:36:24
16834         Log: Subject: [PATCH 5.7.0] Re: [ID 20001018.008] flip-flop bug when there's no <FH> 
16835              From: Hugo <hv@crypt.compulink.co.uk>
16836              Date: Wed, 18 Oct 2000 23:25:58 +0100
16837              Message-Id: <200010182225.XAA20330@crypt.compulink.co.uk>
16838      Branch: perl
16839            ! pp_ctl.c pp_hot.c t/op/flip.t t/pragma/warn/pp_hot
16840 ____________________________________________________________________________
16841 [  7364] By: jhi                                   on 2000/10/18  21:12:53
16842         Log: (retracted)
16843      Branch: perl
16844            ! pp.c
16845 ____________________________________________________________________________
16846 [  7363] By: jhi                                   on 2000/10/18  20:55:38
16847         Log: Missing change from #7362.
16848      Branch: perl
16849            ! win32/perlhost.h
16850 ____________________________________________________________________________
16851 [  7362] By: jhi                                   on 2000/10/18  20:52:01
16852         Log: Borland C fstat() never saw the fd as writable.
16853              
16854              Subject: fix for Borland's weak "stat" (perl@7211)
16855              From: "Konovalov, Vadim" <vkonovalov@lucent.com>
16856              Date: Mon, 16 Oct 2000 09:55:03 +0400
16857              Message-ID: <402099F49BEED211999700805FC7359F7C0E40@ru0028exch01.spb.lucent.com>
16858      Branch: perl
16859            ! win32/win32.c
16860 ____________________________________________________________________________
16861 [  7361] By: jhi                                   on 2000/10/18  17:43:50
16862         Log: Regen toc.
16863      Branch: perl
16864            ! pod/buildtoc.PL pod/perl.pod pod/perlport.pod pod/perltoc.pod
16865 ____________________________________________________________________________
16866 [  7360] By: jhi                                   on 2000/10/18  17:07:44
16867         Log: From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
16868              Subject: Re: [ID 20001013.008] perl 5.6.0 on AIX 4.3.2 w/GCC 2.95.2
16869              Message-Id: <20001016151837.9977.H.M.BRAND@hccnet.nl>
16870              Date: Mon, 16 Oct 2000 15:19:49 +0200
16871      Branch: perl
16872            + README.aix
16873            ! MANIFEST
16874 ____________________________________________________________________________
16875 [  7359] By: jhi                                   on 2000/10/18  17:04:49
16876         Log: Subject: Pod patch for Devel::Peek
16877              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
16878              Message-Id: <20001016121252.996B.H.M.BRAND@hccnet.nl>
16879              Date: Mon, 16 Oct 2000 12:26:34 +0200
16880      Branch: perl
16881            ! ext/Devel/Peek/Peek.pm
16882 ____________________________________________________________________________
16883 [  7358] By: jhi                                   on 2000/10/18  17:03:15
16884         Log: Make Cwd more bulletproof in chrooted environments.
16885              
16886              Subject: [ID 20001018.001] Fix for Cwd.pm (chroot)
16887              From: "Eric E. Coe" <Eric.Coe@oracle.com>
16888              Date: Wed, 18 Oct 2000 04:03:54 -0400
16889              Message-Id: <39ED596A.70E599FE@oracle.com>
16890      Branch: perl
16891            ! lib/Cwd.pm
16892 ____________________________________________________________________________
16893 [  7357] By: jhi                                   on 2000/10/18  16:37:26
16894         Log: Disable the UTF8 downgrade croakage for now to avoid
16895              too many not okay messages.
16896      Branch: perl
16897            ! doio.c
16898 ____________________________________________________________________________
16899 [  7356] By: jhi                                   on 2000/10/17  23:29:41
16900         Log: Show the failed remote port, instead of the failing line number.
16901              
16902              Subject: [PATCH 5.6.1 Debugger] More diagnostics
16903              From: David Sparks <daves@ActiveState.com>
16904              Date: Tue, 17 Oct 2000 15:00:24 -0700
16905              Message-Id: <5.0.0.25.0.20001017144037.02551e10@pop3>
16906      Branch: perl
16907            ! lib/perl5db.pl
16908 ____________________________________________________________________________
16909 [  7355] By: jhi                                   on 2000/10/17  14:11:31
16910         Log: On output try to downgrade to bytes, croak if impossible,
16911              from Simon Cozens.  This means that outputting >255 UTF8
16912              is impossible.  Consider this as a strong incentive to get
16913              the I/O disciplines implemented.
16914      Branch: perl
16915            ! doio.c pod/perldiag.pod sv.c
16916 ____________________________________________________________________________
16917 [  7354] By: jhi                                   on 2000/10/17  13:42:23
16918         Log: Clarify documentation on 'use bytes'.
16919              
16920              Subject: Re: What does 'use bytes' "mean" ?
16921              From: Simon Cozens <simon@cozens.net>
16922              Date: Mon, 18 Sep 2000 18:24:25 +0100
16923              Message-ID: <20000918182425.A26765@deep-dark-truthful-mirror.perlhacker.org>
16924      Branch: perl
16925            ! lib/bytes.pm
16926 ____________________________________________________________________________
16927 [  7353] By: jhi                                   on 2000/10/17  13:28:12
16928         Log: Workaround for a sfio bug where the stream error indicator
16929              is not cleared as documented.
16930              
16931              Subject: PATCH (was Re: [ID 20001016.007] Not OK: perl v5.7.0 +DEVEL7228 on i586-linux 2.2.16 (UNINSTALLED))
16932              From: Nicholas Clark <nick@ccl4.org>
16933              Date: Mon, 16 Oct 2000 18:28:23 +0100
16934              Message-ID: <20001016182823.J19700@plum.flirble.org>
16935      Branch: perl
16936            ! doio.c
16937 ____________________________________________________________________________
16938 [  7352] By: jhi                                   on 2000/10/17  13:06:19
16939         Log: More IoTYPE sprinkling.
16940      Branch: perl
16941            ! doio.c pp_hot.c
16942 ____________________________________________________________________________
16943 [  7351] By: jhi                                   on 2000/10/16  22:47:07
16944         Log: Detect early whether the std streams have gone bad.
16945              
16946              Subject: PATCH (was Re: [ID 20001016.007] Not OK: perl v5.7.0 +DEVEL7228 on i586-linux 2.2.16 (UNINSTALLED))
16947              Date: Mon, 16 Oct 2000 23:28:42 +0100
16948              From: Nicholas Clark <nick@ccl4.org>
16949              Message-ID: <20001016232842.A37942@plum.flirble.org>
16950      Branch: perl
16951            ! t/op/misc.t
16952 ____________________________________________________________________________
16953 [  7350] By: jhi                                   on 2000/10/16  22:45:16
16954         Log: Subject: [ID 20001016.012] [PATCHes Included]OK: perl v5.7.0 on dos-djgpp djgpp
16955              From: "Peter J. Farley III" <pjfarley@banet.net>
16956              Date: Mon, 16 Oct 2000 18:15:59 -0400
16957              Message-Id: <4.3.1.0.20001016180235.00ac65a0@pop5.banet.net>
16958      Branch: perl
16959            ! djgpp/djgpp.c dosish.h t/io/open.t
16960 ____________________________________________________________________________
16961 [  7349] By: jhi                                   on 2000/10/16  22:36:45
16962         Log: perldelta tweak.
16963      Branch: perl
16964            ! pod/perldelta.pod
16965 ____________________________________________________________________________
16966 [  7348] By: jhi                                   on 2000/10/16  15:17:53
16967         Log: Update Changes.
16968      Branch: perl
16969            ! Changes patchlevel.h
16970 ____________________________________________________________________________
16971 [  7347] By: jhi                                   on 2000/10/16  13:55:27
16972         Log: Add the capability to include/exclude branches.
16973      Branch: perl
16974            ! Porting/genlog
16975 ____________________________________________________________________________
16976 [  7346] By: jhi                                   on 2000/10/16  13:18:04
16977         Log: Add Charles Lane.
16978      Branch: perl
16979            ! AUTHORS Changes
16980 ____________________________________________________________________________
16981 [  7345] By: jhi                                   on 2000/10/16  13:13:21
16982         Log: Add a perldelta note about the change #6024, pointed out by Sarathy.
16983      Branch: perl
16984            ! pod/perldelta.pod
16985 ____________________________________________________________________________
16986 [  7344] By: gsar                                  on 2000/10/16  09:30:21
16987         Log: integrate change#6220 from cfgperl
16988              
16989              Win32 patches from Benjamin Stuhl.
16990      Branch: maint-5.6/perl
16991           !> makedef.pl win32/win32.h
16992 ____________________________________________________________________________
16993 [  7343] By: gsar                                  on 2000/10/16  08:32:19
16994         Log: integrate changes#6221,6222 from cfgperl
16995              
16996              Remove tr///CU (the feature is to be obsoleted by better interfaces).
16997              From: simon@brecon.co.uk (Simon Cozens)
16998              Subject: [PATCH] Eliminate tr///[CU][CU]
16999              Date: 23 Jun 2000 11:05:40 GMT
17000              Message-ID: <slrn8l6h44.h5k.simon@justanother.perlhacker.org>
17001              
17002              doc typo fix
17003              Subject: [PATCH] documentation typo in lib/Pod/Usage.pm
17004              From: Ian Phillipps <Ian.Phillipps@iname.com>
17005              Date: Fri, 23 Jun 2000 10:40:58 +0100
17006              Message-ID: <20000623104058.A22791@homer.diplex.co.uk>
17007      Branch: maint-5.6/perl
17008           !> doop.c embed.pl lib/Pod/Usage.pm pod/perlop.pod toke.c utf8.c
17009 ____________________________________________________________________________
17010 [  7342] By: gsar                                  on 2000/10/16  08:28:08
17011         Log: integrate change#6217 from cfgperl (in part)
17012              
17013              Rename the fdpid locking and integrate with Sarathy.
17014      Branch: maint-5.6/perl
17015           !> Configure config_h.SH doio.c embed.h embed.pl embedvar.h
17016           !> global.sym gv.c intrpvar.h objXSUB.h perl.c perlapi.h pp.c
17017           !> pp_ctl.c proto.h sv.h util.c util.h vmesa/vmesa.c
17018           !> win32/win32.c
17019 ____________________________________________________________________________
17020 [  7341] By: gsar                                  on 2000/10/16  08:23:39
17021         Log: integrate changes#6214..6216 from mainline
17022              
17023              @_ can't have junk in it even in the non-USE_ITHREADS case because
17024              caller() wants to populate @DB::args with it (causes a coredump
17025              in Carp::confess())
17026              
17027              tweak comment about @DB::args
17028              
17029              be more optimal about clearing @_
17030      Branch: maint-5.6/perl
17031           !> av.h cop.h pp_ctl.c t/op/runlevel.t
17032 ____________________________________________________________________________
17033 [  7340] By: gsar                                  on 2000/10/16  08:20:37
17034         Log: integrate changes#6207..6210 from cfgperl
17035              
17036              Subject: [PATCH 5.6.0] Threadsafe patches
17037              From: Dan Sugalski <dan@sidhe.org>
17038              To: perl5-porters@perl.org
17039              Date: Mon, 08 May 2000 18:08:13 -0400
17040              Message-Id: <4.3.1.0.20000508180729.02182de0@24.8.96.48>
17041              
17042              Regen headers for #6207.
17043              
17044              Lock PL_fdpid against race conditions, based on:
17045              Subject: [PATCH 5.6.0]subprocess fixup for threads
17046              From: Dan Sugalski <dan@sidhe.org>
17047              To: perl5-porters@perl.org
17048              Date: Tue, 11 Apr 2000 17:02:32 -0400
17049              Message-Id: <4.3.0.20000411170218.01d2f580@24.8.96.48>
17050              
17051              Mopup for #6207 and #6209.
17052      Branch: maint-5.6/perl
17053           !> doio.c embed.h embed.pl global.sym gv.c intrpvar.h objXSUB.h
17054           !> perl.c pp.c pp_ctl.c proto.h sv.h util.c vmesa/vmesa.c
17055           !> win32/win32.c
17056 ____________________________________________________________________________
17057 [  7339] By: gsar                                  on 2000/10/16  08:14:34
17058         Log: integrate change#6203 from cfgperl
17059              
17060              perldiag should refer to perlos2.pod not README.os2
17061      Branch: maint-5.6/perl
17062           !> pod/perldiag.pod
17063 ____________________________________________________________________________
17064 [  7338] By: gsar                                  on 2000/10/16  08:11:42
17065         Log: integrate change#6201 from mainline
17066              
17067              Perl_eval_pv() leaks 4 bytes every time it is called because it
17068              does a PUSHMARK that's never ever POPMARKed; in general, only
17069              Perl_call_[sp]v() need a PUSHMARK for incoming arguments;
17070              Perl_eval_[sp]v() don't because they don't take any incoming
17071              arguments (this leak has been around since the original version
17072              of perl_eval_pv() in 5.003_97e)
17073      Branch: maint-5.6/perl
17074           !> perl.c
17075 ____________________________________________________________________________
17076 [  7337] By: gsar                                  on 2000/10/16  08:08:47
17077         Log: integrate changes#6197..6200 from cfgperl
17078              
17079              Subject: [ID 20000602.005] [PATCH]5.6.0 (DOC) tiny change to perlsyn.pod
17080              From: John Borwick <jhborwic@unity.ncsu.edu>
17081              Date: Fri, 2 Jun 2000 14:35:03 -0400 (EDT)
17082              Message-Id: <Pine.GSO.4.21.0006021420290.11432-100000@eos00du.eos.ncsu.edu>
17083              
17084              Subject: [PATCH 5.6.0]VMS fixups so we can build with MULTIPLICITY
17085              From: Dan Sugalski <dan@sidhe.org>
17086              To: vmsperl@perl.org, perl5-porters@perl.org
17087              Date: Fri, 02 Jun 2000 16:00:41 -0400
17088              Message-Id: <4.3.2.7.0.20000602155951.01f02b20@24.8.96.48>
17089              Message-Id: <4.3.2.7.0.20000602164011.01ec8c30@24.8.96.48>
17090              
17091              Subject: [PATCH 5.6.0]Make perl's malloc work on VMS
17092              From: Dan Sugalski <dan@sidhe.org>
17093              To: perl5-porters@perl.org, vmsperl@perl.org
17094              Date: Fri, 02 Jun 2000 17:30:51 -0400
17095              Message-Id: <4.3.2.7.0.20000602173021.01f03570@24.8.96.48>
17096              
17097              Update to cperl-mode.el 4.31 from
17098              ftp://ftp.math.ohio-state.edu/pub/users/ilya/cperl-mode.el
17099              Subject: A couple of notes
17100              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
17101              To: Mailing list Perl5 <perl5-porters@perl.org>
17102              Date: Sat, 3 Jun 2000 23:33:32 -0400
17103              Message-ID: <20000603233332.A6790@monk.mps.ohio-state.edu>
17104      Branch: maint-5.6/perl
17105           !> emacs/cperl-mode.el embed.h embed.pl embedvar.h
17106           !> ext/POSIX/POSIX.xs global.sym objXSUB.h perlapi.c perlapi.h
17107           !> pod/perlapi.pod pod/perlintern.pod pod/perlsyn.pod proto.h
17108           !> vms/descrip_mms.template vms/gen_shrfls.pl vms/vms.c
17109           !> vms/vmsish.h
17110 ____________________________________________________________________________
17111 [  7336] By: gsar                                  on 2000/10/16  08:03:46
17112         Log: integrate changes#6194,6195 from mainline
17113              
17114              fix small eval"" memory leaks under USE_ITHREADS
17115              
17116              fix yet another eval"" leak under USE_ITHREADS
17117      Branch: maint-5.6/perl
17118           !> cop.h embed.h embed.pl objXSUB.h op.c perl.c perlapi.c perly.c
17119           !> perly_c.diff pp_ctl.c proto.h scope.c scope.h sv.c toke.c
17120           !> vms/perly_c.vms
17121 ____________________________________________________________________________
17122 [  7335] By: gsar                                  on 2000/10/16  08:02:15
17123         Log: integrate changes#6190,6191 from mainline
17124              
17125              submit missing embed.pl change
17126              
17127              vec() loses numericalness (modified version of patch suggested
17128              by Robin Barker)
17129      Branch: maint-5.6/perl
17130           !> doop.c embed.pl t/op/vec.t
17131 ____________________________________________________________________________
17132 [  7334] By: gsar                                  on 2000/10/16  08:01:03
17133         Log: integrate change#6189 from mainline
17134              
17135              counting tr/// corrupts later operation (from M.J.T Guy)
17136      Branch: maint-5.6/perl
17137           !> doop.c t/op/tr.t
17138 ____________________________________________________________________________
17139 [  7333] By: gsar                                  on 2000/10/16  07:59:07
17140         Log: integrate changes#6183..6188 from mainline
17141              
17142              SelfLoader can lose $@ in AUTOLOAD() (from Nicholas Clark
17143              <nick@ccl4.org>)
17144              
17145              tweak for change#6127
17146              
17147              remove incorrect documentation about implicit split to @_ in
17148              list context, which never really worked in perl 5 (from
17149              M.J.T. Guy)
17150              
17151              further qualify references to "alphanumeric" (from Wolfgang Laun
17152              <wolfgang.laun@alcatel.at>)
17153              
17154              replace pod2latex with the one in Pod-LaTeX v0.52 from CPAN
17155              (from Tim Jenness <t.jenness@jach.hawaii.edu>)
17156              
17157              h2xs tweaks
17158      Branch: maint-5.6/perl
17159           +> lib/Pod/LaTeX.pm t/lib/selfloader.t
17160           !> AUTHORS MAINTAIN MANIFEST ext/Devel/Peek/Peek.pm handy.h
17161           !> lib/SelfLoader.pm perl.c pod/perlapi.pod pod/perldata.pod
17162           !> pod/perlfaq6.pod pod/perlfaq9.pod pod/perlfunc.pod
17163           !> pod/perllocale.pod pod/perlre.pod pod/perltrap.pod
17164           !> pod/pod2latex.PL utils/h2xs.PL
17165 ____________________________________________________________________________
17166 [  7332] By: gsar                                  on 2000/10/16  07:53:52
17167         Log: integrate change#6179 from mainline
17168              
17169              buggy modulus on UVs introduced by change#3378 (resulted in
17170              4063328477 % 65535 amounting to 27406, instead of 27407)
17171      Branch: maint-5.6/perl
17172           !> pp.c t/op/arith.t
17173 ____________________________________________________________________________
17174 [  7331] By: gsar                                  on 2000/10/16  07:52:49
17175         Log: integrate changes#6176,6177,6178,6182 from cfgperl
17176              
17177              Single-quoted utf8 patch from Simon Cozens.
17178              
17179              Substitution utf8 patch from Simon Cozens.
17180              
17181              Be cleaner.
17182              
17183              Be Cleaner Part Deux.
17184      Branch: maint-5.6/perl
17185           !> Makefile.SH pp_hot.c toke.c
17186 ____________________________________________________________________________
17187 [  7330] By: gsar                                  on 2000/10/16  07:41:36
17188         Log: integrate change#6172 from mainline
17189              
17190              fix buggy multiline matching of C<"a\nxb\n" =~ /(?!\A)x/m>
17191              (from Ilya Zakharevich)
17192      Branch: maint-5.6/perl
17193           !> regexec.c t/op/re_tests
17194 ____________________________________________________________________________
17195 [  7329] By: gsar                                  on 2000/10/16  07:40:25
17196         Log: integrate change#6171 from mainline
17197              
17198              scalar() doesn't force scalar context when used in void context
17199              (from Simon Cozens)
17200      Branch: maint-5.6/perl
17201           !> op.c t/op/wantarray.t
17202 ____________________________________________________________________________
17203 [  7328] By: gsar                                  on 2000/10/16  07:39:33
17204         Log: integrate change#6170 from mainline
17205              
17206              change#6142 needs tweaks to tests to work where there's no
17207              symlink() (from Helmut Jarausch <jarausch@igpm.rwth-aachen.de>)
17208      Branch: maint-5.6/perl
17209           !> t/lib/filefind.t
17210 ____________________________________________________________________________
17211 [  7327] By: gsar                                  on 2000/10/16  07:35:34
17212         Log: integrate changes#6166..6168 from cfgperl
17213              
17214              Introduce HAS_GETESPWNAM, HAS_GETPRPWNAM, and I_PROT
17215              in case somebody wants to write an extension for more
17216              shadow database interfaces.
17217              
17218              tweak todo
17219              
17220              Tweak NV_PRESERVES_UV*, vms/subconfigure.com left untouched.
17221      Branch: maint-5.6/perl
17222           !> Configure Porting/Glossary Porting/config.sh Porting/config_H
17223           !> Todo-5.6 config_h.SH epoc/config.sh perl.h pp_sys.c toke.c
17224           !> vms/subconfigure.com vos/config.def vos/config.h vos/config.pl
17225           !> vos/config_h.SH_orig win32/config.bc win32/config.gc
17226           !> win32/config.vc win32/config_H.bc win32/config_H.gc
17227           !> win32/config_H.vc win32/config_h.PL win32/config_sh.PL
17228 ____________________________________________________________________________
17229 [  7326] By: gsar                                  on 2000/10/16  07:29:05
17230         Log: integrate changes#6157,6159..6161,6164 from cfgperl
17231              
17232              Regen Configure to jive with #6149.
17233              
17234              Upgrade to File::Temp 0.08 from Tim Jenness via CPAN.
17235              
17236              Changes for the File::Temp 0.08 (change #6159) test suite
17237              to fit better into the Perl distribution test framework.
17238              
17239              Add autogeneration of perlmodlib.pod and the new perlnewmod.pod,
17240              both from Simon Cozens.
17241              
17242              detypo
17243      Branch: maint-5.6/perl
17244           +> pod/perlmodlib.PL pod/perlnewmod.pod
17245           !> AUTHORS Configure MAINTAIN MANIFEST config_h.SH
17246           !> lib/File/Temp.pm pod/Makefile pod/perl.pod pod/perlmodlib.pod
17247           !> pod/perltoc.pod t/lib/ftmp-mktemp.t t/lib/ftmp-posix.t
17248           !> t/lib/ftmp-security.t t/lib/ftmp-tempfile.t
17249 ____________________________________________________________________________
17250 [  7325] By: gsar                                  on 2000/10/16  07:25:13
17251         Log: integrate change#6158 from vmsperl
17252              
17253              Add fallback to tmpfile for use in cases where user's relying on
17254              ACLs on SYS$SCRATCH to permit file creation. (based on Charles
17255              Lane's patch)
17256      Branch: maint-5.6/perl
17257           !> vms/vms.c vms/vmsish.h
17258 ____________________________________________________________________________
17259 [  7324] By: gsar                                  on 2000/10/16  07:20:50
17260         Log: integrate changes#6153..6155 from mainline
17261              
17262              prettier Test::Harness output on failed tests (from Nicholas Clark
17263              <nick@Bagpuss.uk.boo.com>)
17264              
17265              avoid type mismatch warning
17266              
17267              small bug in change#6144; remove random \xA0 character that snuck
17268              in via change#6145
17269      Branch: maint-5.6/perl
17270           !> lib/AutoSplit.pm lib/ExtUtils/xsubpp lib/Test/Harness.pm
17271           !> perl.c
17272 ____________________________________________________________________________
17273 [  7323] By: gsar                                  on 2000/10/16  07:18:47
17274         Log: integrate changes#6151,6152 from mainline
17275              
17276              fix accidental pessimization in RE optimizer (from Ilya Zakharevich)
17277              
17278              cosmetic fixups of RE debug output (from Ilya Zakharevich)
17279      Branch: maint-5.6/perl
17280           !> regexec.c
17281 ____________________________________________________________________________
17282 [  7322] By: gsar                                  on 2000/10/16  07:17:25
17283         Log: integrate changes#6146..6150 from mainline
17284              
17285              doc typo
17286              
17287              add a make entry to Config.pm so "perl -V:make" works on VMS
17288              (from Peter Prymmer)
17289              
17290              close open file before chmod() (from Rocco Caputo <troc@netrus.net>)
17291              
17292              OS/2 tweaks for usethreads build (from Rocco Caputo
17293              <troc@netrus.net>)
17294              
17295              perlrequick.pod updates (from Mark Kvale <kvale@phy.ucsf.edu>)
17296      Branch: maint-5.6/perl
17297           !> Configure hints/os2.sh lib/ExtUtils/MM_Unix.pm lib/warnings.pm
17298           !> makedef.pl os2/Makefile.SHs os2/OS2/REXX/t/rx_dllld.t
17299           !> os2/OS2/REXX/t/rx_objcall.t os2/OS2/REXX/t/rx_tievar.t
17300           !> os2/OS2/REXX/t/rx_tieydb.t os2/os2.c os2/os2ish.h perl.c
17301           !> pod/perlrequick.pod util.c vms/subconfigure.com warnings.h
17302           !> warnings.pl x2p/a2p.h
17303 ____________________________________________________________________________
17304 [  7321] By: gsar                                  on 2000/10/16  07:14:02
17305         Log: integrate changes#6143..6145 from mainline
17306              
17307              MacOS support, part 1 (from Matthias Neeracher
17308              <neeri@iis.ee.ethz.ch>)
17309              
17310              MacOS support, part 2: make AutoSplit use File::Spec instead
17311              of assuming Unixisms; *UNTESTED on Unix* (from Matthias Neeracher
17312              <neeri@iis.ee.ethz.ch>)
17313              
17314              make xsubpp skip embedded pod (from Matthias Neeracher
17315              <neeri@iis.ee.ethz.ch>)
17316      Branch: maint-5.6/perl
17317           +> ext/DynaLoader/dl_mac.xs
17318           !> MANIFEST ext/DB_File/Makefile.PL ext/NDBM_File/Makefile.PL
17319           !> ext/POSIX/POSIX.xs lib/AutoSplit.pm lib/ExtUtils/MakeMaker.pm
17320           !> lib/ExtUtils/xsubpp mg.c perl.c perlsfio.h pod/perlfaq4.pod
17321           !> pp_ctl.c proto.h toke.c util.c util.h
17322 ____________________________________________________________________________
17323 [  7320] By: gsar                                  on 2000/10/16  07:12:13
17324         Log: integrate changes#6141,6142 from mainline
17325              
17326              BSD/OS (bsdi) hints update by Timur I. Bakeyev and Todd C. Miller,
17327              forwarded by Peter Seebach from the bsdi-users mailing list.
17328              p5p Message-Id: <200005280543.AAA24519@guild.plethora.net>
17329              
17330              File::Find fails to chdir when chasing symlinks (from
17331              Helmut Jarausch <jarausch@igpm.rwth-aachen.de>)
17332      Branch: maint-5.6/perl
17333           !> hints/bsdos.sh lib/File/Find.pm t/lib/filefind.t
17334 ____________________________________________________________________________
17335 [  7319] By: gsar                                  on 2000/10/16  07:04:30
17336         Log: integrate change#6139 from mainline
17337              
17338              revise mktables.PL for bugs and newness in Unicode 3.0
17339              (from James Bence <jbence@amgen.com>)
17340      Branch: maint-5.6/perl
17341           +> (branch 30 files)
17342           !> (integrate 49 files)
17343 ____________________________________________________________________________
17344 [  7318] By: gsar                                  on 2000/10/16  07:01:01
17345         Log: integrate changes#6137,6138 from mainline
17346              
17347              fix bogus redeclaration warning for "our" variables in different
17348              scopes
17349              
17350              add note about the handling of negative indices to tied arrays
17351              (from Michael G Schwern <schwern@pobox.com>)
17352      Branch: maint-5.6/perl
17353           !> op.c pod/perltie.pod t/pragma/strict-vars
17354 ____________________________________________________________________________
17355 [  7317] By: gsar                                  on 2000/10/16  06:58:46
17356         Log: integrate changes#6127..6136 from mainline
17357              
17358              call_method(...,G_EVAL) can longjmp() out if the method probing
17359              failed (from Gisle Aas)
17360              
17361              new perlxstut example for passing/returning refs to arrays
17362              (from David Lowe <dlowe@pootpoot.com>)
17363              
17364              VMS test harness tweak (from Jesper Naur <jesper.naur@post.tele.dk>)
17365              
17366              fix places that mean C<"word" character> but say C<alphanumeric
17367              character>
17368              
17369              avoid warnings in POSIX.pm (from Barrie Slaymaker)
17370              
17371              warnings::enabled() doesn't fall back to looking at $^W if
17372              caller isn't using lexical warnings (from Paul Marquess)
17373              
17374              elide bogus test in change#6132
17375              
17376              make Test::Harness use wait.h/WCOREDUMP if available
17377              (from Ben Tilly <ben_tilly@hotmail.com>)
17378              
17379              enable Test::Harness to dynamically determine column width etc.
17380              (from Rob Napier <rnapier@employees.org>)
17381              
17382              random pod typos (from Peter Scott <Peter@PSDT.com>)
17383      Branch: maint-5.6/perl
17384           !> cop.h ext/Devel/Peek/Peek.pm ext/POSIX/POSIX.pm
17385           !> lib/Test/Harness.pm perl.c pod/perldebguts.pod
17386           !> pod/perlfunc.pod pod/perlre.pod pod/perlretut.pod
17387           !> pod/perlxstut.pod pp_ctl.c t/pragma/warn/9enabled vms/test.com
17388 ____________________________________________________________________________
17389 [  7316] By: gsar                                  on 2000/10/16  06:53:23
17390         Log: integrate change#6126 from mainline
17391              
17392              change#2879 broke rvalue autovivification of magicals such as
17393              ${$num} (reworked variant of patch suggested by Simon Cozens)
17394      Branch: maint-5.6/perl
17395           !> embed.h embed.pl gv.c pod/perlapi.pod pod/perlintern.pod pp.c
17396           !> pp_hot.c proto.h t/op/gv.t
17397 ____________________________________________________________________________
17398 [  7315] By: gsar                                  on 2000/10/16  06:51:38
17399         Log: integrate changes#6123,6125 from mainline
17400              
17401              clarify gotcha with #line directives (from Rocco Caputo
17402              <troc@netrus.net>)
17403              
17404              enable propagating exception objects via Perl_croak() in XS code
17405              (from Gisle Aas)
17406      Branch: maint-5.6/perl
17407           !> pod/perldebug.pod pod/perlsyn.pod util.c
17408 ____________________________________________________________________________
17409 [  7314] By: gsar                                  on 2000/10/16  06:49:28
17410         Log: integrate change#6122 from mainline
17411              
17412              downgrade fatal error on C<"foo@nosucharray.com"> to optional
17413              warning (from Mark-Jason Dominus)
17414      Branch: maint-5.6/perl
17415           !> lib/ExtUtils/typemap pod/perldelta.pod pod/perlsub.pod
17416           !> pod/perltrap.pod t/base/lex.t t/pragma/strict-vars
17417           !> t/pragma/strict.t t/pragma/warn/toke t/pragma/warnings.t
17418           !> toke.c
17419 ____________________________________________________________________________
17420 [  7313] By: gsar                                  on 2000/10/16  06:46:54
17421         Log: integrate changes#6112..6121 from vmsperl
17422              
17423              Check for existence of file before trying to delete
17424              
17425              Ugly workaround for version-specific RTL error
17426              
17427              Urk -- undo previous removal of vmsish 'exit' change
17428              
17429              Add bounds checking for several strings (Charles Lane)
17430              
17431              Miscellaneous cosmetic fixes (Charles Lane)
17432              
17433              Treat sockets as special in sys(read|write) (Charles Lane et al.)
17434              
17435              Regularize distinction between RMS$_DNF and RMS$_DIR (Craig Berry)
17436              Flatten case labels in switch statements uniformly (Charles Bailey)
17437              
17438              Quiet error messages in vmsish.t (Charles Lane)
17439              
17440              Add missing escape (Charles Lane)
17441              
17442              Allow eliminate_macros() and fixpath() to handle space-delimited
17443              lists (based on fixes by Craig Berry)
17444      Branch: maint-5.6/perl
17445           !> lib/ExtUtils/MM_VMS.pm lib/File/Spec/VMS.pm t/op/lex_assign.t
17446           !> vms/ext/vmsish.pm vms/ext/vmsish.t vms/test.com vms/vms.c
17447           !> vms/vmsish.h
17448 ____________________________________________________________________________
17449 [  7312] By: gsar                                  on 2000/10/16  06:41:18
17450         Log: integrate changes#6107,6110 from cfgperl
17451              
17452              Tweak the todo list.
17453              
17454              todo tweak
17455      Branch: maint-5.6/perl
17456           !> Todo-5.6
17457 ____________________________________________________________________________
17458 [  7311] By: gsar                                  on 2000/10/16  06:38:38
17459         Log: integrate changes#6104,6108 from mainline
17460              
17461              PL_sys_intern was being initialized too late on windows
17462              
17463              reenable fake signal handling on Windows, bugs and all
17464      Branch: maint-5.6/perl
17465           !> embed.h embed.pl global.sym makedef.pl mg.c objXSUB.h perl.c
17466           !> perl.h perlapi.c pod/perlapi.pod proto.h win32/perlhost.h
17467           !> win32/win32.c
17468 ____________________________________________________________________________
17469 [  7310] By: gsar                                  on 2000/10/16  06:36:03
17470         Log: integrate changes#6095,6097..6103 from cfgperl
17471              
17472              Introduce NV_PRESERVED_BITS.  Not yet used anywhere but
17473              might be useful in future.
17474              
17475              Add a note about possible compilation problems from Allen Smith.
17476              
17477              Add a note about other, yet unsupported, shadow password APIs.
17478              
17479              Tweaks for the cc bugs from Allen Smith.
17480              
17481              More compilation tweakery from Allen Smith.
17482              
17483              Hints and test tweaks for Unicos.
17484              
17485              The test suite tweak in #6101 wasn't quite right.
17486              
17487              Test tweaking for Unicos continues.
17488      Branch: maint-5.6/perl
17489           !> Configure Porting/Glossary Porting/config.sh Porting/config_H
17490           !> config_h.SH hints/irix_6.sh hints/unicos.sh pp_sys.c t/lib/b.t
17491           !> t/lib/complex.t t/op/64bitint.t
17492 ____________________________________________________________________________
17493 [  7309] By: gsar                                  on 2000/10/16  06:29:41
17494         Log: integrate changes#6093,6094 from mainline
17495              
17496              fork() failure to create pseudo process sets errno=EAGAIN and returns
17497              undef on windows (from Clinton Pierce <clintp@geeksalad.org>)
17498              
17499              cygwin update (from Eric Fifer <efifer@sanwaint.com>)
17500      Branch: maint-5.6/perl
17501           !> README.cygwin cygwin/Makefile.SHs cygwin/cygwin.c
17502           !> hints/cygwin.sh pp_sys.c sv.c win32/perlhost.h
17503 ____________________________________________________________________________
17504 [  7308] By: gsar                                  on 2000/10/16  06:27:29
17505         Log: integrate change#6092 from cfgperl
17506              
17507              Regen perltoc with the fixed buildtoc.
17508      Branch: maint-5.6/perl
17509           !> pod/perltoc.pod
17510 ____________________________________________________________________________
17511 [  7307] By: gsar                                  on 2000/10/16  06:26:40
17512         Log: integrate changes#6089,6090 from mainline
17513              
17514              buildtoc tweak to fix newline lossage
17515              
17516              concat doesn't preserve utf8-ness, and doesn't invalidate
17517              [NI]OK; added tests for both
17518      Branch: maint-5.6/perl
17519           !> perl.c pod/buildtoc pp_hot.c sv.c t/op/substr.t
17520 ____________________________________________________________________________
17521 [  7306] By: gsar                                  on 2000/10/16  06:24:05
17522         Log: integrate change#6088 from cfgperl
17523              
17524              Remove HAS_SETSPENT, HAS_GETSPENT, HAS_ENDSPENT,
17525              because we do not use those.  The HAS_GETSPNAM remains,
17526              though, because we still do use that.
17527      Branch: maint-5.6/perl
17528           !> Configure Porting/Glossary Porting/config.sh Porting/config_H
17529           !> config_h.SH epoc/config.sh hints/machten.sh pod/perltoc.pod
17530           !> pp_sys.c vms/subconfigure.com vos/config.def vos/config.h
17531           !> vos/config_h.SH_orig win32/config.bc win32/config.gc
17532           !> win32/config.vc win32/config_H.bc win32/config_H.gc
17533           !> win32/config_H.vc win32/config_h.PL win32/config_sh.PL
17534 ____________________________________________________________________________
17535 [  7305] By: gsar                                  on 2000/10/16  06:15:52
17536         Log: integrate changes#6084,6085,6087 from mainline
17537              
17538              substr() does not preserve utf8-ness (from Stefan Eissing
17539              <Eissing@medicaldataservice.de>); added tests
17540              
17541              repeat operator (x) doesn't preserve utf8-ness
17542              
17543              reverse() and quotemeta() weren't preserving utf8-ness; add tests
17544      Branch: maint-5.6/perl
17545           !> pp.c sv.c t/op/quotemeta.t t/op/substr.t toke.c
17546 ____________________________________________________________________________
17547 [  7304] By: gsar                                  on 2000/10/16  06:13:10
17548         Log: integrate changes#6077..6083 from mainline
17549              
17550              avoid warnings in diagnostics.pm; pod tweaks (from Peter Prymmer
17551              and Tom Phoenix)
17552              
17553              workaround for CRT bug in chdir() (from Charles Lane, via
17554              Peter Prymmer)
17555              
17556              remove outdated kludge in Carp (NULLs are permitted in diagnostics
17557              now)
17558              
17559              add File::Temp v0.08 from CPAN, with small tweaks to testsuite
17560              (from Tim Jenness <t.jenness@jach.hawaii.edu>)
17561              
17562              better default perlbug categories for ok reports (from Richard Foley)
17563              
17564              peek.t non-portable to ithreads
17565              
17566              note about undocumented caller() return value (from M.J.T. Guy);
17567              yet another peek.t tweak
17568      Branch: maint-5.6/perl
17569           +> lib/File/Temp.pm t/lib/ftmp-mktemp.t t/lib/ftmp-posix.t
17570           +> t/lib/ftmp-security.t t/lib/ftmp-tempfile.t
17571           !> AUTHORS MAINTAIN MANIFEST iperlsys.h lib/Carp/Heavy.pm
17572           !> lib/diagnostics.pm pod/perlfunc.pod pod/perlrun.pod
17573           !> pod/perltie.pod t/lib/peek.t utils/perlbug.PL vms/vms.c
17574           !> vms/vmsish.h
17575 ____________________________________________________________________________
17576 [  7303] By: gsar                                  on 2000/10/16  06:03:18
17577         Log: integrate changes#6011,6016,6033,6035..6039,6047..6052,6054..6059,
17578              6073..6075 from cfgperl (pp_sys.c manually merged due to conflicts)
17579              
17580              &HUGE_VAL is not defined, it exists.
17581              
17582              Do not warn that an infinity does not look like a number.
17583              
17584              Rewrite the pwent/spent logic to be a little bit more clearer.
17585              
17586              Continue on the pwent/spent case.
17587              
17588              Correct Freudian slip.
17589              
17590              Use HUGE_VALL if applicable.
17591              
17592              pwent/spent #ifdef imbalance.
17593              
17594              Infinite problems.
17595              
17596              Call getspnam() only iff needd.
17597              
17598              Test both the scalar and list contexts.
17599              
17600              Use setxxent()/endxxent().
17601              
17602              Complex tweakery.
17603              
17604              Unicos hint tweak.
17605              
17606              Be more forgiving in POSIX about HUGE_VALL.
17607              
17608              Detypo.
17609              
17610              The search of infinity continues, this time simplified.
17611              
17612              The logic of choosing strtol/strtoul/strtoll/strtoull was wrong
17613              in natively 64-bit platforms where a long is a quad (no need
17614              for long longs).  Also added bias for IVs.
17615              
17616              Complex tweaks.
17617              
17618              Introduce t/lib/peek.t.
17619              
17620              Make the test more portable.
17621      Branch: maint-5.6/perl
17622           +> t/lib/peek.t
17623            ! pp_sys.c
17624           !> MANIFEST ext/POSIX/POSIX.xs hints/unicos.sh
17625           !> lib/Math/Complex.pm sv.c t/lib/complex.t t/op/grent.t
17626           !> t/op/pwent.t toke.c util.c
17627 ____________________________________________________________________________
17628 [  7302] By: gsar                                  on 2000/10/16  05:03:37
17629         Log: integrate changes#6066..6071 from mainline
17630              
17631              s/END/CHECK/
17632              
17633              replace direct call to sighandler() with (*PL_sighandlerp)()
17634              
17635              note about values()
17636              
17637              File::Spec compatibility update (from Barrie Slaymaker
17638              <barries@slaysys.com>)
17639              
17640              remove misleading comment (from M.J.T. Guy)
17641              
17642              misformatted perllocal.pod (from Tim Jenness
17643              <t.jenness@jach.hawaii.edu>)
17644      Branch: maint-5.6/perl
17645           !> lib/ExtUtils/MM_Unix.pm lib/ExtUtils/MM_Win32.pm
17646           !> lib/File/Spec.pm lib/File/Spec/Mac.pm lib/File/Spec/Unix.pm
17647           !> lib/File/Spec/VMS.pm lib/File/Spec/Win32.pm perl.c
17648           !> pod/perlfunc.pod t/lib/anydbm.t win32/win32.c
17649 ____________________________________________________________________________
17650 [  7301] By: gsar                                  on 2000/10/16  05:00:08
17651         Log: integrate changes#6061..6063 from mainline
17652              
17653              change#5921 neglected to make eq honor "use bytes"
17654              
17655              additional tests for utf8.t
17656              
17657              tokeq() could read unallocated field in argument
17658      Branch: maint-5.6/perl
17659           !> sv.c t/pragma/utf8.t toke.c
17660 ____________________________________________________________________________
17661 [  7300] By: gsar                                  on 2000/10/16  04:56:54
17662         Log: integrate changes#6046,6048,6057,6058 from mainline
17663              
17664              libscheck has insufficient checks for n32 libs (from
17665              Albert Chin-A-Young <china@thewrittenword.com>)
17666              
17667              add note about how $( doesn't interpolate in REs (from
17668              Philip Newton <newton@ficus.frogspace.net>)
17669              
17670              fix broken parsing of /\x{ab}/
17671              
17672              printf(...) should be PerlIO_printf(PerlIO_stdout(), ...)
17673              (spotted by Donald Kinzer <dkinzer@premia.com>)
17674      Branch: maint-5.6/perl
17675           !> hints/irix_6.sh perl.c pod/perlop.pod regcomp.c
17676           !> t/pragma/utf8.t
17677 ____________________________________________________________________________
17678 [  7299] By: gsar                                  on 2000/10/16  04:52:50
17679         Log: integrate change#6044 from mainline
17680              
17681              change#3798 broke the meaning of "\0_7_7", tr/\0_// etc.; fix it
17682              such that underscores are only ignored in literal numbers,
17683              "\x{...}", and hex/oct argument
17684      Branch: maint-5.6/perl
17685           !> perl.c pp.c regcomp.c t/op/oct.t toke.c util.c
17686 ____________________________________________________________________________
17687 [  7298] By: gsar                                  on 2000/10/16  04:50:53
17688         Log: integrate changes#6027..6043 from mainline
17689              
17690              podlators-1.02 update (from Russ Allbery)
17691              
17692              Pod::Man generates groff-incompatible macro definition (from
17693              Tom Christiansen)
17694              
17695              add CGI.pm v2.66 (from Lincoln Stein)
17696              
17697              introduce @LAST_MATCH_START and @LAST_MATCH_END, English aliases
17698              for @- and @+ (from Johan Vromans)
17699              
17700              small nits in diagnostics.pm (from Robin Barker)
17701              
17702              whitespace adjustments
17703              
17704              missing files in MANIFEST
17705              
17706              cpio 2.4.2 on Linux creates directories in 0700 mode, adjust makerel
17707              to compensate
17708              
17709              remove outdated perltrap entry (from Peter Scott <Peter@PSDT.com>)
17710              
17711              perlretut revisions (from Mark Kvale <kvale@phy.ucsf.edu>)
17712      Branch: maint-5.6/perl
17713           +> lib/CGI/Util.pm t/lib/cgi-pretty.t
17714           !> MANIFEST Porting/makerel lib/CGI.pm lib/CGI/Carp.pm
17715           !> lib/CGI/Cookie.pm lib/CGI/Pretty.pm lib/CGI/Push.pm
17716           !> lib/English.pm lib/Pod/Man.pm lib/Pod/Text.pm
17717           !> lib/diagnostics.pm pod/perldiag.pod pod/perlretut.pod
17718           !> pod/perltrap.pod pod/perlvar.pod pp_sys.c t/lib/cgi-function.t
17719           !> t/lib/cgi-html.t t/lib/cgi-request.t
17720 ____________________________________________________________________________
17721 [  7297] By: gsar                                  on 2000/10/16  04:44:30
17722         Log: integrate change#6025 from mainline
17723              
17724              Is{Alnum,Alpha,Word} don't match titlecase
17725              TODO: IsSpace is defined recursively!
17726              (both spotted by Larry)
17727      Branch: maint-5.6/perl
17728           !> lib/unicode/Is/Alnum.pl lib/unicode/Is/Alpha.pl
17729           !> lib/unicode/Is/Word.pl lib/unicode/mktables.PL
17730 ____________________________________________________________________________
17731 [  7296] By: gsar                                  on 2000/10/16  04:39:30
17732         Log: integrate change#6023 from mainline
17733              
17734              debugger stomps on $. (from M.J.T. Guy)
17735      Branch: maint-5.6/perl
17736           !> lib/perl5db.pl
17737 ____________________________________________________________________________
17738 [  7295] By: gsar                                  on 2000/10/16  04:38:02
17739         Log: integrate change#6022 from mainline
17740              
17741              unbalanced LEAVE after perl_clone(...,0) (from Doug MacEachern)
17742      Branch: maint-5.6/perl
17743           !> sv.c
17744 ____________________________________________________________________________
17745 [  7294] By: gsar                                  on 2000/10/16  04:37:05
17746         Log: integrate changes#6018..6021 from mainline
17747              
17748              make lib/syslog.t portable to systems that don't have _PATH_LOG,
17749              make _PATH_LOG() return "" if unavailable
17750              
17751              windows portability tweaks
17752              
17753              test tweak
17754              
17755              remove Win2K issue in pod (fixed by change#6020)
17756      Branch: maint-5.6/perl
17757           !> README.win32 ext/File/Glob/Glob.pm ext/Sys/Syslog/Syslog.pm
17758           !> ext/Sys/Syslog/Syslog.xs pod/perldelta.pod t/lib/b.t
17759           !> t/lib/open3.t t/lib/syslog.t win32/win32.h
17760 ____________________________________________________________________________
17761 [  7293] By: gsar                                  on 2000/10/16  04:20:00
17762         Log: integrate changes#6013..6015 from mainline
17763              
17764              tweak change#5945 to display correct switch name in diagnostic
17765              
17766              glob() loading File::Glob behind the scenes may cause syntax errors
17767              
17768              tweak test for portability
17769      Branch: maint-5.6/perl
17770           !> op.c perl.c pod/perldiag.pod t/lib/b.t
17771 ____________________________________________________________________________
17772 [  7292] By: gsar                                  on 2000/10/16  04:18:11
17773         Log: integrate changes#6005..6010 from mainline, cfgperl
17774              
17775              perldoc might fail via "use blib" (from Hugo van der Sanden)
17776              
17777              Regen Configure.
17778              
17779              note about compile failures and END blocks (from M.J.T. Guy)
17780              
17781              VMS config tweak (from Craig A. Berry <craig.berry@metamorgs.com>)
17782              
17783              (change#6009 integrated earlier in change#7255)
17784              
17785              clarify note about shadow password support (from
17786              gellyfish@gellyfish.com)
17787      Branch: maint-5.6/perl
17788           !> Configure Porting/Glossary Porting/config.sh Porting/config_H
17789           !> config_h.SH installperl pod/perldelta.pod pod/perlfunc.pod
17790           !> pod/perlmod.pod utils/perldoc.PL vms/subconfigure.com
17791 ____________________________________________________________________________
17792 [  7291] By: gsar                                  on 2000/10/16  04:12:03
17793         Log: integrate changes#6002,6003 from mainline
17794              
17795              destructive sv_setsv() can lose UV-ness from source, causing
17796              numeric promotions/comparisons to fail to do the right thing
17797              
17798              allow REG_EXPAND_SZ keys in Windows registry (from
17799              John Clayton <John.Clayton@barclayscapital.com>)
17800      Branch: maint-5.6/perl
17801           !> sv.c win32/win32.c
17802 ____________________________________________________________________________
17803 [  7290] By: gsar                                  on 2000/10/16  04:10:19
17804         Log: integrate change#6001 from mainline
17805              
17806              support additional library locations via $Config{otherlibdirs}
17807              (from Andy Dougherty)
17808      Branch: maint-5.6/perl
17809           !> Configure INSTALL Porting/Glossary Porting/config.sh
17810           !> Porting/config_H config_h.SH epoc/config.sh perl.c
17811           !> vms/subconfigure.com vos/config.def vos/config_h.SH_orig
17812           !> win32/config.bc win32/config.gc win32/config.vc
17813 ____________________________________________________________________________
17814 [  7289] By: gsar                                  on 2000/10/16  04:08:28
17815         Log: integrate change#5999 from mainline
17816              
17817              fix line renumbering bug in C<eval qq[#line 10 "X"\nwarn]>
17818      Branch: maint-5.6/perl
17819           !> t/pragma/warn/toke toke.c
17820 ____________________________________________________________________________
17821 [  7288] By: gsar                                  on 2000/10/16  04:07:01
17822         Log: integrate changes#5997,5998 from cfgperl
17823              
17824              Preserve $!.
17825              
17826              Try to get "Inf" by using &POSIX::HUGE_VAL in sprintf.
17827      Branch: maint-5.6/perl
17828           !> lib/Math/Complex.pm
17829 ____________________________________________________________________________
17830 [  7287] By: gsar                                  on 2000/10/16  04:04:37
17831         Log: integrate change#5995 from mainline
17832              
17833              fixes for bugs in C<use warnings qw(FATAL all)> (from Paul Marquess)
17834      Branch: maint-5.6/perl
17835           !> mg.c t/pragma/warn/7fatal warnings.h warnings.pl
17836 ____________________________________________________________________________
17837 [  7286] By: gsar                                  on 2000/10/16  04:03:21
17838         Log: integrate change#5994 from mainline
17839              
17840              fix for missed accounting for null byte in pack("Z",...) (from
17841              M.J.T. Guy)
17842      Branch: maint-5.6/perl
17843           !> pp.c t/op/pack.t
17844 ____________________________________________________________________________
17845 [  7285] By: gsar                                  on 2000/10/16  04:02:11
17846         Log: integrate changes#5989..5993 from mainline
17847              
17848              qw(a\\b) must be parsed like 'a\\b', i.e., backslash escapes
17849              itself and no other (from Tom Hughes)
17850              
17851              use $ENV{LIB} to search for libs under Visual C compiler
17852              on Windows (from Jochen Wiedmann <joe@ispsoft.de>)
17853              
17854              posix-bc patches (from Dorner Thomas <Thomas.Dorner@start.de>)
17855              
17856              pod nit (from Simon Cozens)
17857              
17858              various minor tweaks seen on p5p
17859      Branch: maint-5.6/perl
17860           !> README.posix-bc hints/posix-bc.sh lib/ExtUtils/Liblist.pm
17861           !> lib/perl5db.pl pod/perlipc.pod pod/perlop.pod pod/perlvar.pod
17862           !> t/op/array.t toke.c
17863 ____________________________________________________________________________
17864 [  7284] By: gsar                                  on 2000/10/16  03:59:00
17865         Log: integrate changes#5978..5988 from mainline
17866              
17867              sync version numbers in File::Spec with the ones on CPAN
17868              (from Barrie Slaymaker)
17869              
17870              under useithreads, constant pad entries could inadvertantly be
17871              shared across threads (from Eric Blood <eblood@xmission.com>);
17872              added Eric's test case to testsuite
17873              
17874              allow Configure -S to run non-interactively (spotted by Greg Hudson
17875              <ghudson@mit.edu>)
17876              
17877              rename File::Glob::glob() to File::Glob::bsd_glob() to avoid
17878              prototype mismatch with CORE::glob(); update pod and tests to
17879              suit (File::Glob::glob() is still available for backward
17880              compatibility, but should be considered deprecated)
17881              
17882              avoid error in IO::Socket::INET when given an unknown service name
17883              with a port number (from Brian Raven <brianr@ssprdmh01.liffe.com>)
17884              
17885              numeric conversion of non-number in change#3378 tramples on
17886              OOK offset, causing segfaults
17887              
17888              attributes::reftype() doesn't work on tied argument
17889              
17890              forked child may not exit correctly if it failed to open
17891              /dev/console (from Graham Barr)
17892              
17893              add regular expressions tutorial and quick-start guide (from
17894              Mark Kvale <kvale@phy.ucsf.edu>)
17895              
17896              B::Bytecode tweaks (from Simon Cozens <simon@brecon.co.uk>)
17897              
17898              s/HTMLSCRIPTPOD/HTMLSCRIPTPODS/ (from Paul Sharpe
17899              <paul@miraclefish.com>)
17900      Branch: maint-5.6/perl
17901           +> pod/perlrequick.pod pod/perlretut.pod
17902           !> AUTHORS Configure MAINTAIN MANIFEST ext/B/B/Bytecode.pm
17903           !> ext/B/B/Disassembler.pm ext/File/Glob/Glob.pm
17904           !> ext/IO/lib/IO/Socket/INET.pm ext/Sys/Syslog/Syslog.pm
17905           !> lib/ExtUtils/MakeMaker.pm lib/File/Spec/Functions.pm
17906           !> lib/File/Spec/Mac.pm lib/File/Spec/OS2.pm
17907           !> lib/File/Spec/Unix.pm lib/File/Spec/VMS.pm
17908           !> lib/File/Spec/Win32.pm op.c sv.c t/lib/glob-basic.t
17909           !> t/lib/glob-case.t t/lib/glob-taint.t t/op/misc.t xsutils.c
17910 ____________________________________________________________________________
17911 [  7283] By: gsar                                  on 2000/10/16  03:52:14
17912         Log: integrate change#5977 from mainline
17913              
17914              autoquote barewords followed by newline and arrow properly
17915              (variant of fix suggested by Rick Delaney and M.J.T. Guy)
17916      Branch: maint-5.6/perl
17917           !> t/pragma/warn/toke toke.c
17918 ____________________________________________________________________________
17919 [  7282] By: gsar                                  on 2000/10/16  03:50:48
17920         Log: integrate change#5976 from mainline
17921              
17922              DB_File v1.73 update (from Paul Marquess)
17923      Branch: maint-5.6/perl
17924           !> ext/DB_File/Changes ext/DB_File/DB_File.pm
17925           !> ext/DB_File/DB_File.xs ext/DB_File/version.c
17926 ____________________________________________________________________________
17927 [  7281] By: gsar                                  on 2000/10/16  03:49:14
17928         Log: integrate change#5975 from mainline
17929              
17930              allow sort() reentrancy (variant of patch suggested by
17931              Hugo van der Sanden)
17932      Branch: maint-5.6/perl
17933           !> pp_ctl.c t/op/sort.t
17934 ____________________________________________________________________________
17935 [  7280] By: gsar                                  on 2000/10/16  03:48:22
17936         Log: integrate change#5974 from mainline
17937              
17938              change#4197 somehow missed initializing PL_errors, meaning
17939              syntax error queueing wasn't working outside eval"" at all;
17940              also fixed eval"" to localize PL_error_count, so that compile-time
17941              eval's don't clobber the error state of the outer context
17942      Branch: maint-5.6/perl
17943           !> lib/Math/Complex.pm perl.c pp_ctl.c t/pragma/warn/op
17944           !> t/pragma/warn/toke
17945 ____________________________________________________________________________
17946 [  7279] By: gsar                                  on 2000/10/16  03:46:21
17947         Log: integrate change#5973 from mainline
17948              
17949              fix for failure to match $foo =~ /(?i)/ (from Ilya Zakharevich)
17950      Branch: maint-5.6/perl
17951           !> regcomp.c regexec.c t/op/re_tests
17952 ____________________________________________________________________________
17953 [  7278] By: gsar                                  on 2000/10/16  03:44:54
17954         Log: integrate change#5971 from cfgperl
17955              
17956              Unicos tweaks from Mark P. Lutz.
17957      Branch: maint-5.6/perl
17958           !> hints/unicos.sh lib/Math/Complex.pm
17959 ____________________________________________________________________________
17960 [  7277] By: gsar                                  on 2000/10/16  03:42:59
17961         Log: integrate changes#5966..5970 from mainline
17962              
17963              add testsuite for B backends, fix bug in B::Deparse (from
17964              Simon Cozens <simon@brecon.co.uk>)
17965              
17966              improved docs on the warn_uninit diagnostic (from David Glasser
17967              and Simon Cozens)
17968              
17969              tolerate spaces in group names in test on solaris (from David Boyce
17970              <dsb@boyski.com>)
17971              
17972              fix Sys::Syslog breakage on domain sockets (from Tom Hughes)
17973              
17974              Data::Dumper fumbles negative numbers on 32-bit platforms where
17975              IV is >32bits
17976      Branch: maint-5.6/perl
17977           +> t/lib/b.t t/lib/syslog.t
17978           !> MANIFEST ext/B/B/Deparse.pm ext/B/B/Stash.pm
17979           !> ext/Data/Dumper/Dumper.xs ext/Sys/Syslog/Syslog.pm
17980           !> pod/perldiag.pod t/lib/dumper.t t/op/groups.t
17981 ____________________________________________________________________________
17982 [  7276] By: gsar                                  on 2000/10/16  03:39:30
17983         Log: integrate change#5965 from mainline
17984              
17985              avoid "will not stay shared" warnings for our variables (from
17986              Robin Barker)
17987      Branch: maint-5.6/perl
17988           !> op.c t/pragma/warn/op
17989 ____________________________________________________________________________
17990 [  7275] By: gsar                                  on 2000/10/16  03:38:18
17991         Log: integrate change#5964 from mainline
17992              
17993              reformat to 72 columns (again)
17994      Branch: maint-5.6/perl
17995           !> pod/perldiag.pod
17996 ____________________________________________________________________________
17997 [  7274] By: gsar                                  on 2000/10/16  03:36:58
17998         Log: integrate change#5963 from mainline
17999              
18000              patch from Larry to make (\&) prototype work; added tests for
18001              the same
18002      Branch: maint-5.6/perl
18003           !> op.c t/comp/proto.t
18004 ____________________________________________________________________________
18005 [  7273] By: gsar                                  on 2000/10/16  03:35:51
18006         Log: integrate changes#5956..5962 from mainline
18007              
18008              better diagnostics on failed tests (from Ilya Zakharevich)
18009              
18010              pod nits (from A. C. Yardley <yardley@tanet.net>)
18011              
18012              change#3569 deleted some essential code, revert; avoid use of
18013              atexit() to make DynaLoader work properly on AIX under mod_perl
18014              (from Jens-Uwe Mager <jum@helios.de>)
18015              
18016              doubled words in pods (from Simon Cozens
18017              <simon.p.cozens@jp.pwcglobal.com>)
18018              
18019              better INSTALL notes on Solaris issues (from Dominic Dunlop)
18020              
18021              recognize our, CHECK and INIT in cperl-mode (from Doug MacEachern)
18022              
18023              updated README.hpux (from Jeff Okamoto)
18024      Branch: maint-5.6/perl
18025           !> INSTALL README.hpux emacs/cperl-mode.el
18026           !> ext/DynaLoader/dl_aix.xs pod/perldebguts.pod pod/perldelta.pod
18027           !> pod/perlfaq5.pod pod/perlfork.pod pod/perlfunc.pod
18028           !> pod/perlipc.pod pod/perllexwarn.pod pod/perllocale.pod
18029           !> pod/perlmod.pod pod/perlmodlib.pod pod/perlnumber.pod
18030           !> pod/perlopentut.pod pod/perltodo.pod pod/perltootc.pod
18031           !> t/op/lex_assign.t
18032 ____________________________________________________________________________
18033 [  7272] By: gsar                                  on 2000/10/16  03:31:22
18034         Log: integrate change#5955 from mainline
18035              
18036              longstanding bug exposed by change#3307: sort arguments weren't
18037              compiled with the right wantarray context (ensuing runtime lookup
18038              via block_gimme() was getting the incidental context of the
18039              sort() itself)
18040      Branch: maint-5.6/perl
18041           !> op.c t/op/sort.t
18042 ____________________________________________________________________________
18043 [  7271] By: gsar                                  on 2000/10/16  03:29:11
18044         Log: integrate changes#5933,5935,5940..5944,5946,5951,5952 from cfgperl
18045              branch
18046              
18047              Flatten the cpp jungle doing the nosuid checking.
18048              
18049              Do not assume sign propagation. (from M.J.T. Guy)
18050              
18051              Various Unicos 10.0.0.6 fixes. (from Mark Lutz)
18052              
18053              Add HAS_FREXPL, HAS_ISNAN, HAS_ISNANL, and HAS_MODFL.
18054              Now pp_ncmp() returns undef is either operand is a NaN.
18055              
18056              On second thoughts frexp() does have two arguments.
18057              
18058              Document that tr() is not tr(1).
18059              
18060              Be more robust on "extreme" (large absolute value)
18061              arguments.  Originally reported by Daniel Connelly
18062              as a problem with asinh() on large negative arguments,
18063              asinh() used to bail out because an argument to log()
18064              ended up being zero.  Ilya Zakharevich proposed using
18065              Taylor's series in such cases, which for such large
18066              arguments is a very good approximation.
18067              
18068              Undo "use integer" addition from 64bitint as it seems
18069              to break most of the subtests in Digital UNIX;
18070              Unicos needs to find another way.
18071      Branch: maint-5.6/perl
18072           !> (integrate 29 files)
18073 ____________________________________________________________________________
18074 [  7270] By: gsar                                  on 2000/10/16  03:09:44
18075         Log: integrate changes#5948,5949,5950 from mainline
18076              
18077              typo in vars.pm that leads to cryptic message (from Piotr
18078              Piatkowski <kompas@kompas.usr.onet.pl>)
18079              
18080              make perldoc use the pod2man from the same version (from
18081              M.J.T. Guy)
18082              
18083              reformat perldiag to avoid long lines
18084      Branch: maint-5.6/perl
18085           !> lib/vars.pm pod/perldiag.pod utils/perldoc.PL
18086 ____________________________________________________________________________
18087 [  7269] By: gsar                                  on 2000/10/16  03:05:54
18088         Log: integrate change#5947 from mainline
18089              
18090              use &dl_error rather than &dl_load_file as the guard for calling
18091              boot_DynaLoader() (meant to fix dl_error() redefined warnings in
18092              statically built perl)
18093      Branch: maint-5.6/perl
18094           !> ext/DynaLoader/DynaLoader_pm.PL ext/DynaLoader/XSLoader_pm.PL
18095 ____________________________________________________________________________
18096 [  7268] By: gsar                                  on 2000/10/16  03:04:48
18097         Log: integrate change#5945 from mainline
18098              
18099              make module name mandatory after -M switch; reorder perldiag
18100              alphabetically (from Mark-Jason Dominus)
18101      Branch: maint-5.6/perl
18102           !> perl.c pod/perldiag.pod
18103 ____________________________________________________________________________
18104 [  7267] By: gsar                                  on 2000/10/16  03:03:01
18105         Log: integrate change#5939 from mainline
18106              
18107              more pod nits (from Larry Virden)
18108      Branch: maint-5.6/perl
18109           !> README.win32 pod/perlsub.pod pod/perlsyn.pod
18110           !> pod/perlthrtut.pod pod/perltoc.pod pod/perltodo.pod
18111           !> pod/perlxs.pod pod/perlxstut.pod vms/perlvms.pod
18112 ____________________________________________________________________________
18113 [  7266] By: gsar                                  on 2000/10/16  03:01:39
18114         Log: integrate change#5938 from mainline
18115              
18116              Consolidated B::Deparse fixes (from Stephen McCamant)
18117      Branch: maint-5.6/perl
18118           !> ext/B/B/Deparse.pm
18119 ____________________________________________________________________________
18120 [  7265] By: gsar                                  on 2000/10/16  03:00:43
18121         Log: integrate change#5936 from mainline
18122              
18123              additional tests for change#7263 (from Paul Marquess)
18124      Branch: maint-5.6/perl
18125           !> t/pragma/warn/2use t/pragma/warn/3both t/pragma/warn/4lint
18126           !> t/pragma/warn/5nolint t/pragma/warn/6default
18127 ____________________________________________________________________________
18128 [  7264] By: gsar                                  on 2000/10/16  02:58:34
18129         Log: integrate change#5934 from mainline
18130              
18131              propagate lexical warnings from surrounding scope correctly
18132              within string eval() (from Paul Marquess)
18133      Branch: maint-5.6/perl
18134           !> pp_ctl.c t/pragma/warn/pp_ctl
18135 ____________________________________________________________________________
18136 [  7263] By: gsar                                  on 2000/10/16  02:56:53
18137         Log: integrate change#5932 from mainline
18138              
18139              add rsignal(), whichsig() and do_join() to public API list
18140              (mod_perl uses them to good advantage)
18141      Branch: maint-5.6/perl
18142           !> embed.pl global.sym objXSUB.h perlapi.c proto.h
18143 ____________________________________________________________________________
18144 [  7262] By: gsar                                  on 2000/10/16  02:55:53
18145         Log: integrate change#5931 from mainline
18146              
18147              fix RE brokenness on refs/overloaded things (from Ilya Zakharevich)
18148      Branch: maint-5.6/perl
18149           !> pp_hot.c regexec.c t/op/pat.t
18150 ____________________________________________________________________________
18151 [  7261] By: gsar                                  on 2000/10/16  02:55:01
18152         Log: integrate change#5930 from mainline
18153              
18154              small os390 tweaks (from Peter Prymmer)
18155      Branch: maint-5.6/perl
18156           !> config_h.SH makedepend.SH
18157 ____________________________________________________________________________
18158 [  7260] By: gsar                                  on 2000/10/16  02:54:10
18159         Log: integrate change#5929 from mainline
18160              
18161              pod nits
18162      Branch: maint-5.6/perl
18163           !> pod/perlguts.pod
18164 ____________________________________________________________________________
18165 [  7259] By: gsar                                  on 2000/10/16  02:52:55
18166         Log: integrate change#5927 from mainline
18167              
18168              arrange for next() to resume at the unstack op rather than the
18169              loop conditional, so that scope cleanup happens correctly
18170              (from Stephen McCamant)
18171      Branch: maint-5.6/perl
18172           !> op.c pp_ctl.c t/op/misc.t
18173 ____________________________________________________________________________
18174 [  7258] By: gsar                                  on 2000/10/16  02:51:38
18175         Log: integrate change#5926 from mainline
18176              
18177              on windows, reserve 16M of stack rather than 128M (allows more
18178              threads to run concurrently)
18179      Branch: maint-5.6/perl
18180           !> win32/Makefile win32/makefile.mk
18181 ____________________________________________________________________________
18182 [  7257] By: gsar                                  on 2000/10/16  02:50:37
18183         Log: integrate change#5925 from mainline
18184              
18185              POSIX-BC tweak (from Ignasi Roca <ignasi.roca@fujitsu.siemens.es>)
18186      Branch: maint-5.6/perl
18187           !> toke.c
18188 ____________________________________________________________________________
18189 [  7256] By: gsar                                  on 2000/10/16  02:49:36
18190         Log: integrate change#5924 from mainline
18191              
18192              avoid using uninitialized memory in require version check
18193      Branch: maint-5.6/perl
18194           !> pp_ctl.c universal.c
18195 ____________________________________________________________________________
18196 [  7255] By: gsar                                  on 2000/10/16  02:48:03
18197         Log: integrate changes#5923,5928,6009 from mainline
18198              
18199              IO::Poll bugs fixed (from Lincoln Stein <lstein@cshl.org>)
18200      Branch: maint-5.6/perl
18201           !> ext/IO/lib/IO/Poll.pm t/lib/io_poll.t
18202 ____________________________________________________________________________
18203 [  7254] By: gsar                                  on 2000/10/16  02:44:46
18204         Log: integrate change#5922 from mainline
18205              
18206              commentary about IoTYPE() (from Nathan Torkington)
18207      Branch: maint-5.6/perl
18208           !> sv.h
18209 ____________________________________________________________________________
18210 [  7253] By: gsar                                  on 2000/10/16  02:43:49
18211         Log: integrate change#5921 from mainline
18212              
18213              make eq unicode-aware (from Gisle Aas); fix bogus tests revealed
18214      Branch: maint-5.6/perl
18215           !> sv.c t/lib/charnames.t t/pragma/utf8.t
18216 ____________________________________________________________________________
18217 [  7252] By: gsar                                  on 2000/10/16  02:42:31
18218         Log: integrate change#5920 from mainline
18219              
18220              Larry's fix for buggy propagation of utf8-ness in join(); add test
18221      Branch: maint-5.6/perl
18222           !> doop.c t/op/ver.t
18223 ____________________________________________________________________________
18224 [  7251] By: gsar                                  on 2000/10/16  02:41:14
18225         Log: integrate changes#5915..5919 from mainline
18226              
18227              various (pod tweaks &c)
18228      Branch: maint-5.6/perl
18229           !> (integrate 33 files)
18230 ____________________________________________________________________________
18231 [  7250] By: gsar                                  on 2000/10/16  02:38:16
18232         Log: integrate change#5914 from mainline
18233              
18234              caller() wasn't returning the right number of elements for
18235              eval {...}
18236      Branch: maint-5.6/perl
18237           !> pp_ctl.c t/pragma/warn/9enabled
18238 ____________________________________________________________________________
18239 [  7249] By: gsar                                  on 2000/10/16  02:37:02
18240         Log: integrate change#5913 from mainline
18241              
18242              pod nit: $yday range for localtime/gmtime is 0..364 not 1..365
18243              (from Mark-Jason Dominus)
18244      Branch: maint-5.6/perl
18245           !> pod/perlfunc.pod
18246 ____________________________________________________________________________
18247 [  7248] By: gsar                                  on 2000/10/16  02:35:58
18248         Log: integrate change#5912 from mainline
18249              
18250              fix totally broken caching in UNIVERSAL::isa() (from
18251              Nick Ing-Simmons)
18252      Branch: maint-5.6/perl
18253           !> t/op/universal.t universal.c
18254 ____________________________________________________________________________
18255 [  7247] By: gsar                                  on 2000/10/16  02:34:27
18256         Log: integrate changes#5910,5911 from mainline
18257              
18258              typo in pod
18259              
18260              add linebreak properties from unicode/LineBrk.txt (from
18261              Dave Hartnoll <Dave_Hartnoll@3b2.com>)
18262      Branch: maint-5.6/perl
18263           +> (branch 29 files)
18264           !> ext/Thread/Thread.pm lib/unicode/mktables.PL
18265 ____________________________________________________________________________
18266 [  7246] By: gsar                                  on 2000/10/16  02:33:29
18267         Log: integrate change#5909 from mainline
18268              
18269              mode argument to do_binmode() should be file mode, not boolean
18270      Branch: maint-5.6/perl
18271           !> pp_sys.c
18272 ____________________________________________________________________________
18273 [  7245] By: gsar                                  on 2000/10/16  02:31:04
18274         Log: integrate change#5908 from mainline
18275              
18276              introduce illegal symbols into null package so that
18277              gv_fetchpv(...,TRUE) always returns a valid GV even when the
18278              symbol is trapped by strictures (avoids coredumps)
18279      Branch: maint-5.6/perl
18280           !> embedvar.h gv.c intrpvar.h perl.c perlapi.h
18281           !> t/pragma/strict-vars
18282 ____________________________________________________________________________
18283 [  7244] By: jhi                                   on 2000/10/16  02:29:54
18284         Log: Subject: $Carp::ExportLevel confusion in Exporter
18285              From: "Ben Tilly" <ben_tilly@hotmail.com>
18286              Date: Sat, 14 Oct 2000 16:44:34 EDT
18287              Message-ID: <LAW2-F258sQwY6YHkid00003788@hotmail.com>
18288      Branch: perl
18289            ! lib/Exporter/Heavy.pm
18290 ____________________________________________________________________________
18291 [  7243] By: jhi                                   on 2000/10/16  02:28:33
18292         Log: Subject: [PATCH perlguts.pod] Document offset hack
18293              From: Simon Cozens <simon@cozens.net>
18294              Message-ID: <20001014193225.A6568@pembro4.pmb.ox.ac.uk>
18295              Date: Sat, 14 Oct 2000 19:32:25 +0100
18296      Branch: perl
18297            ! pod/perlguts.pod
18298 ____________________________________________________________________________
18299 [  7242] By: gsar                                  on 2000/10/16  02:26:51
18300         Log: integrate changes#5905,5906,5907,6064 from mainline
18301              
18302              printf/sprintf didn't get quad types right under use64bitint
18303      Branch: maint-5.6/perl
18304           !> pp_sys.c sv.c t/op/64bitint.t
18305 ____________________________________________________________________________
18306 [  7241] By: jhi                                   on 2000/10/16  02:22:44
18307         Log: Subject: small pod patch
18308              From: Dan Boorstein <dan_boo@bellsouth.net>
18309              Date: Sat, 14 Oct 2000 14:29:24 -0400
18310              Message-ID: <39E8A604.B501DB4F@bellsouth.net>
18311      Branch: perl
18312            ! pod/perlfaq7.pod pod/perlmod.pod
18313 ____________________________________________________________________________
18314 [  7240] By: jhi                                   on 2000/10/16  02:13:46
18315         Log: -w cleanup.
18316              
18317              Subject: Re: Problems with bleadperl 
18318              From: "Stephen P. Potter" <spp@ds.net>
18319              Date: Fri, 13 Oct 2000 13:32:49 -0400
18320              Message-Id: <200010131732.NAA19391@spp.users.ds.net>
18321      Branch: perl
18322            ! t/pragma/overload.t
18323 ____________________________________________________________________________
18324 [  7239] By: jhi                                   on 2000/10/16  01:41:18
18325         Log: One more ~utf8 tweak.
18326      Branch: perl
18327            ! t/op/bop.t
18328 ____________________________________________________________________________
18329 [  7238] By: jhi                                   on 2000/10/16  01:34:14
18330         Log: Tweak the test of #7235.
18331      Branch: perl
18332            ! t/op/bop.t
18333 ____________________________________________________________________________
18334 [  7237] By: jhi                                   on 2000/10/16  01:25:04
18335         Log: Fix a couple of compiler-noted nits in #7235.
18336      Branch: perl
18337            ! pp.c
18338 ____________________________________________________________________________
18339 [  7236] By: jhi                                   on 2000/10/16  01:22:46
18340         Log: Fix few quad issues, which for example broke chr(~chr(~0)) for UTF8.
18341      Branch: perl
18342            ! pp.c pp_hot.c
18343 ____________________________________________________________________________
18344 [  7235] By: jhi                                   on 2000/10/15  16:24:44
18345         Log: Make ~(chr(a).chr(b)) eq chr(~a).chr(~b) on utf8.
18346              
18347              From: Simon Cozens <simon@cozens.net>
18348              Subject: [PATCH] Re: [ID 20000918.005] ~ on wide chars
18349              Date: Sat, 14 Oct 2000 20:52:13 +0100
18350              Message-ID: <20001014205213.A9645@pembro4.pmb.ox.ac.uk>
18351      Branch: perl
18352            ! pp.c t/op/bop.t utf8.h
18353 ____________________________________________________________________________
18354 [  7234] By: jhi                                   on 2000/10/15  15:19:29
18355         Log: split() utf8 fixes.  Should fix both 20001014.001 and 20000426.003.
18356              The problem was that rx->minlen was in chars while pp_split()
18357              thought it would be in bytes. 
18358      Branch: perl
18359            ! pp.c t/pragma/utf8.t
18360 ____________________________________________________________________________
18361 [  7233] By: jhi                                   on 2000/10/14  20:24:24
18362         Log: Document FNCASE=y as discussed in the bug 20000902.009.
18363      Branch: perl
18364            ! README.dos
18365 ____________________________________________________________________________
18366 [  7232] By: jhi                                   on 2000/10/14  18:52:21
18367         Log: Add test for bug id 20000427.003 (which seems to have
18368              been fixed) (also duplicate as 20000427.004, though
18369              with a higher severity).  Move one utf8 from op/append
18370              to pragma/utf8, tag the tests with bug ids.
18371      Branch: perl
18372            ! t/op/append.t t/pragma/utf8.t
18373 ____________________________________________________________________________
18374 [  7231] By: jhi                                   on 2000/10/14  17:28:37
18375         Log: Test cases for bug id 20000323.056 (the bug seems to be fixed).
18376      Branch: perl
18377            ! t/pragma/utf8.t
18378 ____________________________________________________________________________
18379 [  7230] By: jhi                                   on 2000/10/14  14:24:50
18380         Log: Needs to be conditional on SunOS 4.
18381              
18382              Subject: [Pach 5.7.0@7229] Removing -ldb from the core build
18383              From: "Paul Marquess" <paul_marquess@yahoo.co.uk>
18384              Date: Sat, 14 Oct 2000 13:37:49 +0100
18385              Message-ID: <000101c035db$8ffb60a0$2614140a@bfs.phone.com>
18386      Branch: metaconfig/U/perl
18387            ! End.U
18388      Branch: perl
18389            ! Configure myconfig.SH pod/perldelta.pod
18390 ____________________________________________________________________________
18391 [  7229] By: jhi                                   on 2000/10/14  00:49:22
18392         Log: Update Changes.
18393      Branch: perl
18394            ! Changes patchlevel.h
18395 ____________________________________________________________________________
18396 [  7228] By: jhi                                   on 2000/10/14  00:46:10
18397         Log: Subject: RFC: a (temporary?) way around utf8.pm for EBCDIC
18398              From: Peter Prymmer <pvhp@forte.com>
18399              Date: Fri, 13 Oct 2000 15:59:56 -0700 (PDT)
18400              Message-ID: <Pine.OSF.4.10.10010131548260.133963-100000@aspara.forte.com>
18401      Branch: perl
18402            ! lib/utf8.pm
18403 ____________________________________________________________________________
18404 [  7227] By: jhi                                   on 2000/10/13  23:20:30
18405         Log: Make the test acknowledge that self-ties are disabled as #7213 said.
18406      Branch: perl
18407            ! t/op/tie.t
18408 ____________________________________________________________________________
18409 [  7226] By: jhi                                   on 2000/10/13  22:14:32
18410         Log: Tweak #7225.
18411              
18412              Subject: Re: [ID 20001006.014] Not OK: perl v5.7.0 +DEVEL7158 on os390 05.00 (UNINSTALLED) [PATCH bleadperl]
18413              From: Peter Prymmer <pvhp@forte.com>
18414              Date: Fri, 13 Oct 2000 14:44:49 -0700 (PDT)
18415              Message-ID: <Pine.OSF.4.10.10010131414410.133963-100000@aspara.forte.com>
18416      Branch: perl
18417            ! t/op/sprintf.t
18418 ____________________________________________________________________________
18419 [  7225] By: jhi                                   on 2000/10/13  22:11:31
18420         Log: op/sprintf.t patch for OS/390 (and any other host with limited
18421              floating-point exponent length)
18422              
18423              Subject: Re: [ID 20001006.014] Not OK: perl v5.7.0 +DEVEL7158 on os390 05.00  (UNINSTALLED) [PATCH bleadperl]
18424              From: Dominic Dunlop <domo@computer.org>
18425              Date: Fri, 13 Oct 2000 19:17:57 +0200
18426              Message-Id: <p04320400b60cf2a6a05c@[192.168.1.4]>
18427      Branch: perl
18428            ! t/op/sprintf.t
18429 ____________________________________________________________________________
18430 [  7224] By: jhi                                   on 2000/10/13  18:40:48
18431         Log: Allow @+ and @- to be doublequoted, from Simon Cozens. 
18432      Branch: perl
18433            ! toke.c
18434 ____________________________________________________________________________
18435 [  7223] By: jhi                                   on 2000/10/13  18:37:13
18436         Log: Thinko in #7222.
18437      Branch: perl
18438            ! utf8.c
18439 ____________________________________________________________________________
18440 [  7222] By: jhi                                   on 2000/10/13  18:05:23
18441         Log: Use UTF8SKIP(), from Simon Cozens.
18442      Branch: perl
18443            ! utf8.c
18444 ____________________________________________________________________________
18445 [  7221] By: jhi                                   on 2000/10/13  15:43:19
18446         Log: (accidentally empty check-in)
18447      Branch: perl
18448            ! utf8.c
18449 ____________________________________________________________________________
18450 [  7220] By: jhi                                   on 2000/10/13  15:23:51
18451         Log: Add (optimistically) Storable to static extensions.
18452      Branch: perl
18453            ! hints/uwin.sh hints/vmesa.sh
18454 ____________________________________________________________________________
18455 [  7219] By: jhi                                   on 2000/10/13  15:20:05
18456         Log: Amdahl UTS doesn't seem to do dynaloading.
18457      Branch: perl
18458            ! hints/uts.sh
18459 ____________________________________________________________________________
18460 [  7218] By: jhi                                   on 2000/10/13  15:15:20
18461         Log: Slight tweak of the code to appease Amdahl UTS cc.
18462      Branch: perl
18463            ! pp.c
18464 ____________________________________________________________________________
18465 [  7217] By: jhi                                   on 2000/10/13  14:50:42
18466         Log: In Amdahl UTS "struct sv" is defined by a system header,
18467              <ksync.h>.
18468      Branch: perl
18469            ! perl.h sv.h
18470 ____________________________________________________________________________
18471 [  7216] By: jhi                                   on 2000/10/13  11:58:25
18472         Log: Ilya implemented the memory profiling API.
18473      Branch: perl
18474            ! Todo
18475 ____________________________________________________________________________
18476 [  7215] By: jhi                                   on 2000/10/13  02:56:38
18477         Log: Subject: [PATCH 5.7.0] Perl API for mstats
18478              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
18479              Date: Thu, 12 Oct 2000 22:52:40 -0400
18480              Message-ID: <20001012225240.A7113@monk.mps.ohio-state.edu>
18481      Branch: perl
18482            ! ext/Devel/Peek/Peek.pm ext/Devel/Peek/Peek.xs
18483 ____________________________________________________________________________
18484 [  7214] By: jhi                                   on 2000/10/13  02:55:38
18485         Log: Subject: [PATCH 5.7.0] IVs in mtats
18486              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
18487              Date: Thu, 12 Oct 2000 22:51:04 -0400
18488              Message-ID: <20001012225104.A7103@monk.mps.ohio-state.edu>
18489      Branch: perl
18490            ! malloc.c perl.h
18491 ____________________________________________________________________________
18492 [  7213] By: jhi                                   on 2000/10/13  02:31:47
18493         Log: Self-ties are unsupported currently, stopgap patch from Alan Burlison.
18494      Branch: perl
18495            ! pod/perldiag.pod pp_sys.c
18496 ____________________________________________________________________________
18497 [  7212] By: jhi                                   on 2000/10/13  01:27:38
18498         Log: Subject: [PATCH: perl@7181] was: Re: off to a bad start on fixing regression tests
18499              From: Peter Prymmer <pvhp@forte.com>
18500              Date: Tue, 10 Oct 2000 10:26:07 -0700 (PDT)
18501              Message-ID: <Pine.OSF.4.10.10010101020180.441897-100000@aspara.forte.com>
18502      Branch: perl
18503            ! t/op/oct.t
18504 ____________________________________________________________________________
18505 [  7211] By: jhi                                   on 2000/10/13  00:35:09
18506         Log: Update Changes.
18507      Branch: perl
18508            ! Changes patchlevel.h
18509 ____________________________________________________________________________
18510 [  7210] By: jhi                                   on 2000/10/12  23:59:40
18511         Log: The Install.pm third of
18512              
18513              Subject: Proposed patches, Install.pm getopts.pl termcap.pl
18514              From: Bill Campbell <bill@celestial.com>
18515              Message-ID: <20001005180451.A22029@kstarr.celestial.com>
18516              Date: Thu, 5 Oct 2000 18:04:51 -0700
18517      Branch: perl
18518            ! lib/ExtUtils/Install.pm
18519 ____________________________________________________________________________
18520 [  7209] By: jhi                                   on 2000/10/12  23:58:43
18521         Log: Two thirds of
18522              
18523              Subject: Proposed patches, Install.pm getopts.pl termcap.pl
18524              Date: Thu, 5 Oct 2000 18:04:51 -0700
18525              From: Bill Campbell <bill@celestial.com>
18526              Message-ID: <20001005180451.A22029@kstarr.celestial.com>
18527              
18528              The Install.pm changes will be submitted separately because
18529              they need some work and discussion still.
18530      Branch: perl
18531            ! lib/getopts.pl lib/termcap.pl
18532 ____________________________________________________________________________
18533 [  7208] By: jhi                                   on 2000/10/12  23:41:19
18534         Log: Subject:  [PATCH] 5.6.0 & 5.7.1,  VMS fixes
18535              From: lane@DUPHY4.Physics.Drexel.Edu (Charles Lane)
18536              Date:     Thu, 12 Oct 2000 07:30:02 EDT
18537              Message-Id: <001012072828.2eabc@DUPHY4.Physics.Drexel.Edu>
18538      Branch: perl
18539            ! lib/File/Temp.pm t/lib/st-lock.t t/pod/find.t
18540            ! t/pod/testp2pt.pl vms/gen_shrfls.pl
18541 ____________________________________________________________________________
18542 [  7207] By: jhi                                   on 2000/10/12  23:39:01
18543         Log: An updated EBCDIC tr patch.
18544              
18545              Subject: Re: [PATCH: perl@7181] op/tr tests on OS/390
18546              From: Peter Prymmer <pvhp@forte.com>
18547              Date: Wed, 11 Oct 2000 17:16:30 -0700 (PDT)
18548              Message-ID: <Pine.OSF.4.10.10010111707430.516446-100000@aspara.forte.com>
18549      Branch: perl
18550            ! t/op/tr.t
18551 ____________________________________________________________________________
18552 [  7206] By: jhi                                   on 2000/10/12  23:34:55
18553         Log: Upgrade to CPAN 1.58, from Andreas König.
18554      Branch: perl
18555            ! lib/CPAN.pm lib/CPAN/FirstTime.pm
18556 ____________________________________________________________________________
18557 [  7205] By: jhi                                   on 2000/10/12  23:29:08
18558         Log: Introduce the man[24-8] variables, from Andy Dougherty.
18559      Branch: metaconfig/U/perl
18560            + mandirs.U mandirstyle.U
18561      Branch: perl
18562            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
18563            ! config_h.SH epoc/config.sh uconfig.h uconfig.sh vos/config.def
18564            ! vos/config.h vos/config.pl vos/config_h.SH_orig
18565            ! win32/config.bc win32/config.gc win32/config.vc
18566 ____________________________________________________________________________
18567 [  7204] By: gsar                                  on 2000/10/12  18:11:24
18568         Log: restore change#7202
18569      Branch: perl
18570            ! mg.c
18571 ____________________________________________________________________________
18572 [  7203] By: gsar                                  on 2000/10/12  18:09:40
18573         Log: another test of the Emergency Broadcast System--back out 
18574              change#7202
18575      Branch: perl
18576            ! mg.c
18577 ____________________________________________________________________________
18578 [  7202] By: gsar                                  on 2000/10/12  16:40:47
18579         Log: (submitted on behalf of Jarkko)
18580              Fix the lib/encode.t subtest 6 failure as reported by Andreas
18581              Koenig, gmagical substr() wasn't propagating UTF8ness.  The bug
18582              was unearthed by change 7182, as was a bug in HTML::Entities.
18583      Branch: perl
18584            ! mg.c
18585 ____________________________________________________________________________
18586 [  7201] By: jhi                                   on 2000/10/11  03:16:05
18587         Log: SvPV() (via mg_get() of sv_2pv()) can update the UTF8ness of the SVs.
18588      Branch: perl
18589            ! pp_hot.c t/pragma/utf8.t
18590 ____________________________________________________________________________
18591 [  7200] By: jhi                                   on 2000/10/11  00:40:30
18592         Log: The #7198 was a false alarm.
18593      Branch: perl
18594            ! pp_hot.c
18595 ____________________________________________________________________________
18596 [  7199] By: jhi                                   on 2000/10/11  00:26:04
18597         Log: Remove duplicated code.
18598      Branch: perl
18599            ! t/lib/cgi-html.t
18600 ____________________________________________________________________________
18601 [  7198] By: jhi                                   on 2000/10/10  23:30:46
18602         Log: (Retracted by #7200.)
18603      Branch: perl
18604            ! pp_hot.c
18605 ____________________________________________________________________________
18606 [  7197] By: jhi                                   on 2000/10/10  21:49:30
18607         Log: Add the test case for #7190, from the original bug report
18608              by Andreas König.
18609      Branch: perl
18610            ! t/pragma/utf8.t
18611 ____________________________________________________________________________
18612 [  7196] By: jhi                                   on 2000/10/10  21:40:49
18613         Log: Reapply Andy's patch and regen Configure.
18614      Branch: perl
18615            ! Configure INSTALL Makefile.SH Porting/Glossary
18616            ! Porting/config.sh config_h.SH epoc/config.sh installperl
18617            ! uconfig.sh vos/config.def win32/config.bc win32/config.gc
18618            ! win32/config.vc
18619 ____________________________________________________________________________
18620 [  7195] By: jhi                                   on 2000/10/10  21:09:30
18621         Log: Use the versiononly instead of the installscripts,
18622              retract the changes 7146 and 7147.
18623      Branch: perl
18624            ! Configure INSTALL Makefile.SH Porting/Glossary
18625            ! Porting/config.sh Porting/config_H config_h.SH epoc/config.sh
18626            ! installperl uconfig.sh vos/config.def win32/config.bc
18627            ! win32/config.gc win32/config.vc
18628 ____________________________________________________________________________
18629 [  7194] By: jhi                                   on 2000/10/10  21:06:15
18630         Log: Subject: [PATCH: perl@7181] ver.t v string tests for os/390
18631              From: Peter Prymmer <pvhp@forte.com>
18632              Date: Tue, 10 Oct 2000 13:24:18 -0700 (PDT)
18633              Message-ID: <Pine.OSF.4.10.10010101322510.441897-100000@aspara.forte.com>
18634      Branch: perl
18635            ! t/op/ver.t
18636 ____________________________________________________________________________
18637 [  7193] By: jhi                                   on 2000/10/10  21:05:12
18638         Log: Subject: [PATCH: perl@7181] op/tr tests on OS/390
18639              From: Peter Prymmer <pvhp@forte.com>
18640              Date: Tue, 10 Oct 2000 13:56:35 -0700 (PDT)
18641              Message-ID: <Pine.OSF.4.10.10010101355140.441897-100000@aspara.forte.com>
18642      Branch: perl
18643            ! t/op/tr.t
18644 ____________________________________________________________________________
18645 [  7192] By: jhi                                   on 2000/10/10  20:57:30
18646         Log: Add versiononly, delete installscripts, from Andy Dougherty.
18647      Branch: metaconfig
18648            - U/installdirs/installscripts.U
18649      Branch: metaconfig/U/perl
18650            + versiononly.U
18651 ____________________________________________________________________________
18652 [  7191] By: jhi                                   on 2000/10/10  19:41:21
18653         Log: Subject: [PATCH: perl@7181] perlebcdic.pod updates and corrections
18654              From: Peter Prymmer <pvhp@forte.com>
18655              Date: Tue, 10 Oct 2000 12:35:57 -0700 (PDT)
18656              Message-ID: <Pine.OSF.4.10.10010101231390.441897-100000@aspara.forte.com>
18657      Branch: perl
18658            ! pod/perlebcdic.pod
18659 ____________________________________________________________________________
18660 [  7190] By: jhi                                   on 2000/10/10  19:26:14
18661         Log: Subject: Re: utf8 concat, mg_get
18662              From: Simon Cozens <simon@cozens.net>
18663              Date: Tue, 10 Oct 2000 17:40:17 +0100
18664              Message-ID: <20001010174017.A13130@pembro4.pmb.ox.ac.uk>
18665      Branch: perl
18666            ! pp_hot.c
18667 ____________________________________________________________________________
18668 [  7189] By: jhi                                   on 2000/10/10  19:23:03
18669         Log: Subject: [ID 20000720.004] ExtUtils::MakeMaker finds wrong version of perl
18670              From: jdb@dfwnet.sbms.sbc.com (J. David Blackstone)
18671              Date: Thu, 20 Jul 2000 13:31:22 -0500 (CDT)
18672              Message-Id: <200007201831.NAA05776@dfwnet1.dfwnet.sbms.sbc.com>
18673      Branch: perl
18674            ! lib/ExtUtils/MM_Unix.pm
18675 ____________________________________________________________________________
18676 [  7188] By: jhi                                   on 2000/10/10  15:31:24
18677         Log: Subject: RE: [ID 19990803.001] README.win32 suggestions 
18678              From: "Moore, Paul" <Paul.Moore@uk.origin-it.com>
18679              Date: Fri, 14 Jul 2000 10:47:36 +0100
18680              Message-ID: <714DFA46B9BBD0119CD000805FC1F53B012A8224@UKRUX002.rundc.uk.origin-it.com>
18681      Branch: perl
18682            ! README.win32
18683 ____________________________________________________________________________
18684 [  7187] By: jhi                                   on 2000/10/10  13:30:10
18685         Log: Quote the temp file name, needed in Win32 because the
18686              default name unfortunately contains spaces, shouldn't
18687              hurt elsewhere.
18688              
18689              Subject: FW: perldoc fails if $TEMP contains spaces
18690              From: "Moore, Paul" <Paul.Moore@uk.origin-it.com>
18691              Date: Thu, 14 Sep 2000 08:58:45 +0100
18692              Message-ID: <714DFA46B9BBD0119CD000805FC1F53B012A82AA@UKRUX002.rundc.uk.origin-it.com>
18693      Branch: perl
18694            ! utils/perldoc.PL
18695 ____________________________________________________________________________
18696 [  7186] By: jhi                                   on 2000/10/10  13:16:27
18697         Log: Subject: [PATCH 5.6.0] Re: [ID 20001009.004] SEGV from sprintf in a thread 
18698              From: hv@hugo.hybyte.com
18699              Date: Tue, 10 Oct 2000 14:10:20 +0100
18700              Message-Id: <200010101310.OAA00953@hugo.hybyte.com>
18701      Branch: perl
18702            ! t/lib/thr5005.t util.c
18703 ____________________________________________________________________________
18704 [  7185] By: jhi                                   on 2000/10/10  12:06:22
18705         Log: Upgrade to podlators 1.04, from Russ Allbery.
18706      Branch: perl
18707            ! lib/Pod/Man.pm lib/Pod/Text.pm
18708 ____________________________________________________________________________
18709 [  7184] By: jhi                                   on 2000/10/10  12:01:32
18710         Log: Upgrade to CGI.pm 2.74, from Lincoln Stein.
18711      Branch: perl
18712            ! lib/CGI.pm t/lib/cgi-form.t t/lib/cgi-html.t
18713 ____________________________________________________________________________
18714 [  7183] By: jhi                                   on 2000/10/09  23:47:15
18715         Log: Subject: [PATCH: perl@7159] various VMS cleanup issues + CXX configure
18716              From: Peter Prymmer <pvhp@forte.com>
18717              Message-ID: <Pine.OSF.4.10.10010091625290.260786-100000@aspara.forte.com>
18718              Date: Mon, 9 Oct 2000 16:30:44 -0700 (PDT)
18719      Branch: perl
18720            ! configure.com vms/descrip_mms.template vms/vms.c vms/vmsish.h
18721 ____________________________________________________________________________
18722 [  7182] By: jhi                                   on 2000/10/09  23:43:16
18723         Log: Make eq work again with utf8 (disabling the upgrading
18724              should no more be necessary since the copies of the
18725              scalars are upgraded, not the scalars themselves).
18726              Takes care of ID 20001009.001.  (The claimed length()
18727              bug in 20001009.001 seems bogus to me.)
18728      Branch: perl
18729            ! sv.c t/pragma/utf8.t
18730 ____________________________________________________________________________
18731 [  7181] By: gsar                                  on 2000/10/09  19:41:54
18732         Log: tweak for change#7173
18733      Branch: perl
18734            ! win32/win32sck.c
18735 ____________________________________________________________________________
18736 [  7180] By: gsar                                  on 2000/10/09  19:26:56
18737         Log: on Windows, clean targets might not work under some flavors of the shell
18738      Branch: perl
18739            ! win32/Makefile win32/makefile.mk
18740 ____________________________________________________________________________
18741 [  7179] By: jhi                                   on 2000/10/09  19:21:02
18742         Log: Update Changes.
18743      Branch: perl
18744            ! Changes patchlevel.h
18745 ____________________________________________________________________________
18746 [  7178] By: jhi                                   on 2000/10/09  19:18:23
18747         Log: Warn about unknown scripts.
18748              
18749              Subject: Re: ideas? patches? [PATCH bleadperl]
18750              From: Dominic Dunlop <domo@computer.org>
18751              Date: Mon, 9 Oct 2000 14:57:17 +0200
18752              Message-Id: <p04320400b6076a75b15f@[192.168.1.4]>
18753      Branch: perl
18754            ! lib/charnames.pm
18755 ____________________________________________________________________________
18756 [  7177] By: jhi                                   on 2000/10/09  19:13:27
18757         Log: Change #7160 had a nasty typo.
18758      Branch: metaconfig
18759            ! U/compline/Compile.U
18760      Branch: perl
18761            ! Configure config_h.SH
18762 ____________________________________________________________________________
18763 [  7176] By: gsar                                  on 2000/10/09  18:59:33
18764         Log: pod nit
18765      Branch: perl
18766            ! pod/perlport.pod
18767 ____________________________________________________________________________
18768 [  7175] By: gsar                                  on 2000/10/09  18:54:28
18769         Log: Windows9x doesn't support link(), despite what Config.pm
18770              might think
18771      Branch: perl
18772            ! lib/ExtUtils/Manifest.pm
18773 ____________________________________________________________________________
18774 [  7174] By: gsar                                  on 2000/10/09  18:50:03
18775         Log: avoid nonportable example code
18776      Branch: perl
18777            ! lib/File/Copy.pm
18778 ____________________________________________________________________________
18779 [  7173] By: gsar                                  on 2000/10/09  18:46:54
18780         Log: on Windows, avoid potential exception (could happen if MSVCRT isn't
18781              being used) when closing a socket handle
18782      Branch: perl
18783            ! win32/win32.c win32/win32.h win32/win32sck.c
18784 ____________________________________________________________________________
18785 [  7172] By: gsar                                  on 2000/10/09  18:41:40
18786         Log: on Windows, cwd strings in the environment should be of the
18787              form =X:=X:\foo instead of =X=X:\foo\
18788      Branch: perl
18789            ! win32/vdir.h
18790 ____________________________________________________________________________
18791 [  7171] By: gsar                                  on 2000/10/09  18:30:09
18792         Log: on Windows, LoadLibrary() could load an extension DLL multiple
18793              times if forward slashes are used in the path
18794      Branch: perl
18795            ! win32/win32.c
18796 ____________________________________________________________________________
18797 [  7170] By: jhi                                   on 2000/10/09  17:53:59
18798         Log: Add a todo note about overloadable assertions.
18799      Branch: perl
18800            ! Todo-5.6
18801 ____________________________________________________________________________
18802 [  7169] By: jhi                                   on 2000/10/09  13:43:45
18803         Log: Subject: PATCH 5.6 perldebguts grammar cleanup
18804              From: mjd@plover.com
18805              Date: 9 Oct 2000 00:24:44 -0000
18806              Message-ID: <20001009002444.10616.qmail@plover.com>
18807      Branch: perl
18808            ! pod/perldebguts.pod
18809 ____________________________________________________________________________
18810 [  7168] By: nick                                  on 2000/10/08  13:16:33
18811         Log: Tables assume network byte order for 16 bit forms, so 'S' packing
18812              is not right thing to do on (e.g. x86). Network order is also "right" for
18813              X fonts.
18814      Branch: perl
18815            ! ext/Encode/Encode.pm
18816 ____________________________________________________________________________
18817 [  7167] By: nick                                  on 2000/10/08  12:54:42
18818         Log: Make "encodings" work post-install when Encode/*.enc files may not
18819              be in same directory as Encode.pm
18820      Branch: perl
18821            ! ext/Encode/Encode.pm
18822 ____________________________________________________________________________
18823 [  7166] By: nick                                  on 2000/10/08  11:51:26
18824         Log: Work round the fact that $hash->{$key} does not take into account
18825              UTF8'ness of $key yet.  Thus fromUnicode needs to do $hash->{chr(ord($ch))}
18826              so that key is always in the "expected" encoding - i.e. same way we put
18827              it in the hash.
18828      Branch: perl
18829            ! ext/Encode/Encode.pm
18830 ____________________________________________________________________________
18831 [  7165] By: gsar                                  on 2000/10/08  04:15:29
18832         Log: save_re_context() could reset PL_curcop to freed memory, causing core
18833              dumps in code such as C<use CGI::Carp; use something_that_calls_die;>
18834      Branch: perl
18835            ! pp_ctl.c
18836 ____________________________________________________________________________
18837 [  7164] By: jhi                                   on 2000/10/06  20:51:48
18838         Log: UTF8ize split() so that the cloned substrings get the UTF8
18839              flag of the original scalar.  Problem reported by Simon Cozens.
18840      Branch: perl
18841            ! pp.c t/pragma/utf8.t
18842 ____________________________________________________________________________
18843 [  7163] By: nick                                  on 2000/10/06  20:48:34
18844         Log: Fix in change 7162 was too-late for case where we "upgraded" to PVIV and
18845              got a false +ve and so did not reach code which would have un-FAKEd the SV.
18846      Branch: perl
18847            ! sv.c
18848 ____________________________________________________________________________
18849 [  7162] By: nick                                  on 2000/10/06  20:25:37
18850         Log: Make sv_upgrade() undo READONLY|FAKE shared string hackery.
18851              To fix  (sort {$a <=> $b} keys %hash) in particular but
18852              should cover a number of other as-yet-unknown cases as well.
18853      Branch: perl
18854            ! sv.c
18855 ____________________________________________________________________________
18856 [  7161] By: jhi                                   on 2000/10/06  19:56:18
18857         Log: Change the version number of Tie::Handle in the core to 4.0,
18858              the (unrelated) Tie::Handle in CPAN will remain at 3.0.
18859              
18860              Subject: Note on Tie::Handle
18861              From: andreas.koenig@anima.de (Andreas J. Koenig)
18862              Date:      06 Oct 2000 21:48:58 +0200
18863              Message-ID: <m3ya01kaxh.fsf@ak-71.mind.de>
18864      Branch: perl
18865            ! lib/Tie/Handle.pm
18866 ____________________________________________________________________________
18867 [  7160] By: jhi                                   on 2000/10/06  18:20:35
18868         Log: Fix bug in #7157 (s/cflags/ccflags); moved the -o foo
18869              as the first option of cc/ld because of ultrapicky compilers
18870              (e.g. OS/390 R2.5)
18871      Branch: metaconfig
18872            + U/modified/d_getpgrp.U U/modified/d_setpgrp.U
18873            ! U/compline/Compile.U U/compline/Csym.U U/compline/ccflags.U
18874            ! U/compline/orderlib.U U/modified/Cppsym.U
18875            ! U/modified/d_access.U
18876      Branch: metaconfig/U/perl
18877            ! Checkcc.U d_dlsymun.U gccvers.U
18878      Branch: perl
18879            ! Configure config_h.SH
18880 ____________________________________________________________________________
18881 [  7159] By: jhi                                   on 2000/10/06  13:56:39
18882         Log: Update Changes.
18883      Branch: perl
18884            ! Changes patchlevel.h
18885 ____________________________________________________________________________
18886 [  7158] By: jhi                                   on 2000/10/06  12:48:40
18887         Log: Eliminate $Is_VMS code from the test.
18888              
18889              Subject:  Re: [ID 20001004.005] Not OK: perl v5.7.0 +DEVEL7129 on VMS_AXP V7.1
18890              From: lane@DUPHY4.Physics.Drexel.Edu (Charles Lane)
18891              Message-Id: <001005074528.21621@DUPHY4.Physics.Drexel.Edu>
18892              Date:     Thu, 5 Oct 2000 07:46:33 EDT
18893      Branch: perl
18894            ! t/lib/b.t
18895 ____________________________________________________________________________
18896 [  7157] By: jhi                                   on 2000/10/06  12:47:13
18897         Log: Also the $ccflags is needed for the C compiler check.
18898              
18899              Subject: Configure (check for C-compiler)
18900              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
18901              Date: Fri, 06 Oct 2000 08:47:15 +0200
18902              Message-Id: <20001006084120.C52B.H.M.BRAND@hccnet.nl>
18903      Branch: metaconfig/U/perl
18904            ! Checkcc.U
18905      Branch: perl
18906            ! Configure config_h.SH
18907 ____________________________________________________________________________
18908 [  7156] By: jhi                                   on 2000/10/06  11:45:15
18909         Log: The HINT_BYTE patch is apparently unnecessary, retracted.
18910      Branch: perl
18911            ! perl.c pp_ctl.c sv.h utf8.c
18912 ____________________________________________________________________________
18913 [  7155] By: jhi                                   on 2000/10/06  11:40:41
18914         Log: IO::Handle->syswrite() did not handle length omission
18915              like CORE::syswrite() does.
18916              
18917              Subject: [Fwd] IO::Handle, syswrite and arguments
18918              From: Graham Barr <gbarr@pobox.com>
18919              Date: Fri, 6 Oct 2000 10:22:05 +0100
18920              Message-ID: <20001006102205.U6312@pobox.com>
18921              
18922              The original patch from andrew@ugh.net.au.
18923      Branch: perl
18924            ! ext/IO/lib/IO/Handle.pm
18925 ____________________________________________________________________________
18926 [  7154] By: jhi                                   on 2000/10/06  01:42:15
18927         Log: Tweak #7153.
18928      Branch: perl
18929            ! utf8.h
18930 ____________________________________________________________________________
18931 [  7153] By: jhi                                   on 2000/10/06  00:39:55
18932         Log: Patch from Simon Cozens to avoid using utf8 routines in EBCDIC.
18933      Branch: perl
18934            ! utf8.h
18935 ____________________________________________________________________________
18936 [  7152] By: jhi                                   on 2000/10/06  00:38:11
18937         Log: Patch from Peter Prymmer to disable utf8 in EBCDIC platforms.
18938      Branch: perl
18939            ! perl.c pp_ctl.c sv.h utf8.c
18940 ____________________________________________________________________________
18941 [  7151] By: jhi                                   on 2000/10/06  00:36:38
18942         Log: Subject: Re: Questions about Tie::Array and perl modules
18943              From: Nick Ing-Simmons <nik@tiuk.ti.com>
18944              Date: Thu, 5 Oct 2000 09:37:11 +0100 (BST)
18945              Message-Id: <200010050837.JAA00564@mikado.tiuk.ti.com>
18946              
18947              Bug reported and fix suggested by Philip D Crow <pcrow@hertz.com>.
18948      Branch: perl
18949            ! lib/Tie/Array.pm t/op/array.t
18950 ____________________________________________________________________________
18951 [  7150] By: jhi                                   on 2000/10/05  00:20:45
18952         Log: Regen Changes.
18953      Branch: perl
18954            ! Changes patchlevel.h
18955 ____________________________________________________________________________
18956 [  7149] By: jhi                                   on 2000/10/05  00:20:01
18957         Log: Regen toc.
18958      Branch: perl
18959            ! pod/perltoc.pod
18960 ____________________________________________________________________________
18961 [  7148] By: jhi                                   on 2000/10/04  23:35:08
18962         Log: Code around the stat-on-a-pipe-returns-a-mode-of-zero bug
18963              reported several times by Dominic Dunlop, for example in
18964              ID 20000315.008.  Patch from Dominic.  Patch affects at
18965              least MachTen, and possibly other oldish BSDs. Should not
18966              break non-broken platforms (tested on LinuxPPC). 
18967      Branch: perl
18968            ! doio.c
18969 ____________________________________________________________________________
18970 [  7147] By: jhi                                   on 2000/10/04  23:26:34
18971         Log: The one that got away from 7146.
18972      Branch: metaconfig
18973            + U/installdirs/installscripts.U
18974 ____________________________________________________________________________
18975 [  7146] By: jhi                                   on 2000/10/04  23:25:04
18976         Log: Enable disabling scripts installation by Configure -Uinstallscripts,
18977              suggested by H. Merijn Brand.
18978      Branch: perl
18979            ! Configure INSTALL Makefile.SH Porting/Glossary
18980            ! Porting/config.sh Porting/config_H epoc/config.sh installperl
18981            ! uconfig.sh vos/config.def win32/config.bc win32/config.gc
18982            ! win32/config.vc
18983 ____________________________________________________________________________
18984 [  7145] By: jhi                                   on 2000/10/04  22:08:21
18985         Log: Subject: Re: [PATCH 5.7.0] h2xs not documenting the created module
18986              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
18987              Date: Wed, 4 Oct 2000 17:37:46 -0400
18988              Message-ID: <20001004173746.A26697@monk.mps.ohio-state.edu>
18989      Branch: perl
18990            ! utils/h2xs.PL
18991 ____________________________________________________________________________
18992 [  7144] By: jhi                                   on 2000/10/04  18:11:41
18993         Log: Subject: [PATCH perlrun.pod] Re: [ID 20000930.002] perlrun nor perldelta mention -s modification
18994              From: Jeff Pinyan <jeffp@crusoe.net>
18995              Date: Tue, 3 Oct 2000 16:35:42 -0400 (EDT)
18996              Message-ID: <Pine.GSO.4.21.0010031634530.14163-100000@crusoe.crusoe.net>
18997      Branch: perl
18998            ! pod/perlrun.pod
18999 ____________________________________________________________________________
19000 [  7143] By: jhi                                   on 2000/10/04  18:09:58
19001         Log: Subject: perlhack.pod Patch for Externals Tools
19002              From: Fisher Mark <fisherm@tce.com>
19003              Date: Tue, 3 Oct 2000 15:43:27 -0500 
19004              Message-ID: <B9B6874277EED211B1890008C707AF530505B180@indyexch3.indy.tce.com>
19005      Branch: perl
19006            ! pod/perlhack.pod
19007 ____________________________________________________________________________
19008 [  7142] By: jhi                                   on 2000/10/04  18:08:41
19009         Log: Subject:  [PATCH] 5.6.0 & 5.7.0  VMS TZ fix for VMS6.2 and earlier
19010              From: lane@DUPHY4.Physics.Drexel.Edu (Charles Lane)
19011              Date:     Wed, 4 Oct 2000 12:11:11 EDT
19012              Message-Id: <001004120530.25cb5@DUPHY4.Physics.Drexel.Edu>
19013      Branch: perl
19014            ! vms/vms.c
19015 ____________________________________________________________________________
19016 [  7141] By: jhi                                   on 2000/10/04  12:20:16
19017         Log: Subject: [PATCH 5.7.0] h2xs not working
19018              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
19019              Message-ID: <20001003214301.A22851@monk.mps.ohio-state.edu>
19020              Date: Tue, 3 Oct 2000 21:43:01 -0400
19021              
19022              Subject: [PATCH 5.7.0] h2xs not documenting the created module
19023              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
19024              Date: Tue, 3 Oct 2000 22:55:19 -0400
19025              Message-ID: <20001003225519.A23360@monk.mps.ohio-state.edu>
19026      Branch: perl
19027            ! utils/h2xs.PL
19028 ____________________________________________________________________________
19029 [  7140] By: jhi                                   on 2000/10/04  11:53:44
19030         Log: Subject: [ID 20001004.003] installman "Ambiguous call resolved as CORE::"
19031              From: nick@babyhippo.com
19032              Date: Wed, 4 Oct 2000 12:06:45 +0100
19033              Message-Id: <20001004120645.A7356@babyhippo.com>
19034              
19035              Retract 7118 and 7135.
19036      Branch: perl
19037            ! installman installperl op.c t/pragma/subs.t
19038 ____________________________________________________________________________
19039 [  7139] By: jhi                                   on 2000/10/03  22:09:41
19040         Log: It is possible to have no hosts database at all.  Pointed out in
19041              
19042              Subject: [PATCH: 7131] PWPASSWD problem for passwd less pwd's
19043              From: Peter Prymmer <pvhp@forte.com>
19044              Date: Tue, 3 Oct 2000 12:05:59 -0700 (PDT)
19045              Message-ID: <Pine.OSF.4.10.10010031203470.388222-100000@aspara.forte.com>
19046      Branch: metaconfig
19047            ! U/modified/myhostname.U
19048      Branch: perl
19049            ! Configure config_h.SH
19050 ____________________________________________________________________________
19051 [  7138] By: jhi                                   on 2000/10/03  21:49:49
19052         Log: Subject: [PATCH: 7131] PWPASSWD problem for passwd less pwd's
19053              From: Peter Prymmer <pvhp@forte.com>
19054              Date: Tue, 3 Oct 2000 12:05:59 -0700 (PDT)
19055              Message-ID: <Pine.OSF.4.10.10010031203470.388222-100000@aspara.forte.com>
19056      Branch: perl
19057            ! pp_sys.c
19058 ____________________________________________________________________________
19059 [  7137] By: jhi                                   on 2000/10/03  20:10:05
19060         Log: One remaining nit less at the VMS mailbox sizing.
19061      Branch: perl
19062            ! vms/vms.c
19063 ____________________________________________________________________________
19064 [  7136] By: jhi                                   on 2000/10/03  20:08:47
19065         Log: Test harness update to sync with the new perlcc,
19066              from Simon Cozens.
19067      Branch: perl
19068            ! t/TEST t/UTEST
19069 ____________________________________________________________________________
19070 [  7135] By: jhi                                   on 2000/10/03  15:15:42
19071         Log: Subject: Re: PATCH for 20001003.004
19072              Date: Tue, 3 Oct 2000 11:03:04 -0400 (EDT)
19073              From: "AARON B. DOSSETT" <aaron@iglou.com>
19074              Message-Id: <E13gTay-0006od-00@iglou.com>
19075      Branch: perl
19076            ! installman installperl
19077 ____________________________________________________________________________
19078 [  7134] By: jhi                                   on 2000/10/03  15:00:34
19079         Log: Subject: [ID 20001003.006] B::Debug not -w clean
19080              From: Nicholas Clark <nick@babyhippo.co.uk>
19081              Date: Tue, 03 Oct 2000 15:46:32 +0100
19082              Message-Id: <E13gTKy-0002R2-00@fruitbat.babyhippo.co.uk>
19083      Branch: perl
19084            ! ext/B/B/Debug.pm
19085 ____________________________________________________________________________
19086 [  7133] By: jhi                                   on 2000/10/03  14:58:39
19087         Log: Scale down the VMS message boxes, by Charles Lane.
19088              Fix for ID 20000903.009, workaround at
19089              http://www.xray.mpe.mpg.de/mailing-lists/vmsperl/2000-09/msg00039.html
19090      Branch: perl
19091            ! vms/vms.c
19092 ____________________________________________________________________________
19093 [  7132] By: jhi                                   on 2000/10/03  11:20:37
19094         Log: Upgrade to Storable 1.0.3, from Raphael Manfredi.
19095      Branch: perl
19096            + t/lib/st-lock.t t/lib/st-utf8.t
19097            ! MANIFEST ext/Storable/ChangeLog ext/Storable/Storable.pm
19098            ! ext/Storable/Storable.xs t/lib/st-recurse.t
19099 ____________________________________________________________________________
19100 [  7131] By: jhi                                   on 2000/10/03  03:38:23
19101         Log: Encode nits.
19102      Branch: perl
19103            ! MANIFEST Makefile.SH
19104 ____________________________________________________________________________
19105 [  7130] By: jhi                                   on 2000/10/03  03:31:05
19106         Log: Update Changes.
19107      Branch: perl
19108            ! Changes patchlevel.h
19109 ____________________________________________________________________________
19110 [  7129] By: jhi                                   on 2000/10/03  02:24:02
19111         Log: Misplaced else.
19112      Branch: metaconfig/U/perl
19113            ! d_strtoll.U
19114      Branch: perl
19115            ! Configure config_h.SH
19116 ____________________________________________________________________________
19117 [  7128] By: jhi                                   on 2000/10/03  02:08:29
19118         Log: Subject: [ID 20000915.007] Not OK: perl v5.7.0 +DEVEL7092 on os2-64int-ld 2.30 '(UNINSTALLED)'
19119              From: sthoenna@efn.org
19120              Date: Fri, 15 Sep 2000 07:19:57 -0700 (PDT)
19121              Message-Id: <200009151419.e8FEJvE19796@garcia.efn.org>
19122      Branch: metaconfig/U/perl
19123            ! d_strtoll.U
19124      Branch: perl
19125            ! Configure config_h.SH hints/os2.sh os2/os2ish.h
19126 ____________________________________________________________________________
19127 [  7127] By: jhi                                   on 2000/10/03  01:13:14
19128         Log: Update Changes.
19129      Branch: perl
19130            ! Changes patchlevel.h
19131 ____________________________________________________________________________
19132 [  7126] By: jhi                                   on 2000/10/03  00:57:08
19133         Log: Introduce NO_ENVIRON_ARRAY (and USE_ENVIRON_ARRAY) defines
19134              as suggested by Olaf Flebbe and Nick Clark.
19135      Branch: perl
19136            ! epoc/epocish.h perl.h sv.c unixish.h util.c vms/vmsish.h
19137 ____________________________________________________________________________
19138 [  7125] By: jhi                                   on 2000/10/03  00:50:56
19139         Log: Subject: [ID 20001002.001] Not OK: perl v5.7.0 +DEVEL7093 +...001 on i586-linux 2.2.16 (UNINSTALLED)
19140              From: Nick Clark <nick@plum.flirble.org>
19141              Date: Mon, 2 Oct 2000 11:03:24 +0100
19142              Message-Id: <20001002110324.D20073@plum.flirble.org>
19143              
19144              Also fixes bug ID 20001002.005.
19145      Branch: perl
19146            ! t/lib/encode.t
19147 ____________________________________________________________________________
19148 [  7124] By: jhi                                   on 2000/10/03  00:34:59
19149         Log: Subject: [PATCH 5.7.0] Epoc update
19150              From: Olaf Flebbe <o.flebbe@gmx.de>
19151              Date: Wed, 20 Sep 2000 23:16:26 +0200 (MEST)
19152              Message-ID: <26423.969484586@www10.gmx.net>
19153      Branch: perl
19154            ! README.epoc epoc/config.sh epoc/createpkg.pl epoc/epoc.c
19155            ! epoc/epoc_stubs.c epoc/epocish.h epoc/link.pl
19156            ! lib/AutoLoader.pm lib/Cwd.pm mg.c perl.c perl.h pp_sys.c sv.c
19157            ! util.c util.h
19158 ____________________________________________________________________________
19159 [  7123] By: jhi                                   on 2000/10/03  00:30:07
19160         Log: Regen headers.
19161      Branch: perl
19162            ! embed.h opcode.h pod/perlapi.pod pp.sym pp_proto.h
19163 ____________________________________________________________________________
19164 [  7122] By: jhi                                   on 2000/10/03  00:10:48
19165         Log: OpenBSD flags tweak from Todd C. Miller, tweaked some more by Abigail.
19166      Branch: perl
19167            ! hints/openbsd.sh
19168 ____________________________________________________________________________
19169 [  7121] By: jhi                                   on 2000/10/03  00:05:06
19170         Log: Subject: [PATCH pod/perlop.pod]  Documentation glitch in magic autoincrement.
19171              From: <abigail@foad.org>
19172              Date: Tue, 26 Sep 2000 13:36:14 -0400
19173              Message-ID: <20000926173614.4356.qmail@foad.org>
19174      Branch: perl
19175            ! pod/perlop.pod
19176 ____________________________________________________________________________
19177 [  7120] By: jhi                                   on 2000/10/03  00:04:00
19178         Log: Inside require() $^S was always left undefined.
19179              
19180              Subject: Re: Tiny 2-byte change to fix debugger's eval bug
19181              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
19182              Date: Wed, 27 Sep 2000 18:54:49 -0400
19183              Message-ID: <20000927185449.A24927@monk.mps.ohio-state.edu>
19184      Branch: perl
19185            ! cop.h mg.c pp_ctl.c util.c
19186 ____________________________________________________________________________
19187 [  7119] By: jhi                                   on 2000/10/03  00:00:16
19188         Log: Subject: [PATCH] DLL not restartabke with threaded perl
19189              From: "Dave Hartnoll" <Dave_Hartnoll@3b2.com>
19190              Date: Thu, 28 Sep 2000 09:20:46 +0100
19191              Message-ID: <002101c02925$00aa8d80$7e0aa8c0@3b2.com>
19192      Branch: perl
19193            ! perl.c
19194 ____________________________________________________________________________
19195 [  7118] By: jhi                                   on 2000/10/02  23:59:20
19196         Log: Subject: Re: [ID 20000828.017] bytecode fails with use subs;
19197              From: Nicholas Clark <nick@ccl4.org>
19198              Date: Thu, 28 Sep 2000 11:52:24 +0100
19199              Message-ID: <20000928115224.D7924@plum.flirble.org>
19200      Branch: perl
19201            ! op.c
19202 ____________________________________________________________________________
19203 [  7117] By: jhi                                   on 2000/10/02  23:57:51
19204         Log: Subject: [ID 20000928.002] perlcc & ByteCode.pm option mismatch
19205              From: Nicholas Clark <nick@babyhippo.co.uk>
19206              Date: Thu, 28 Sep 2000 12:18:10 +0100
19207              Message-Id: <E13ebha-0004IV-00@fruitbat.babyhippo.co.uk>
19208              
19209              Did not apply cleanly, manual intervention was needed.
19210      Branch: perl
19211            ! ext/B/B/Bytecode.pm utils/perlcc.PL
19212 ____________________________________________________________________________
19213 [  7116] By: jhi                                   on 2000/10/02  23:50:40
19214         Log: Document the issue (is not a syntax error, kind of)
19215              
19216              Subject: Re: [ID 20000901.011] the list (1,,3) ought to be a syntax error
19217              From: Nicholas Clark <nick@ccl4.org>
19218              Date: Thu, 28 Sep 2000 17:12:42 +0100
19219              Message-ID: <20000928171242.K7924@plum.flirble.org>
19220      Branch: perl
19221            ! pod/perldata.pod
19222 ____________________________________________________________________________
19223 [  7115] By: jhi                                   on 2000/10/02  23:48:58
19224         Log: Subject: [PATCH 5.7.0] Minor optimization in re_intuit_start
19225              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
19226              Date: Thu, 28 Sep 2000 21:55:31 -0400
19227              Message-ID: <20000928215531.A4315@monk.mps.ohio-state.edu>
19228      Branch: perl
19229            ! regexec.c
19230 ____________________________________________________________________________
19231 [  7114] By: jhi                                   on 2000/10/02  23:47:57
19232         Log: Subject: DOC PATCH 5.6.0
19233              From: mjd@plover.com
19234              Date: 30 Sep 2000 06:02:34 -0000
19235              Message-ID: <20000930060234.4559.qmail@plover.com>
19236      Branch: perl
19237            ! pod/perldebguts.pod
19238 ____________________________________________________________________________
19239 [  7113] By: jhi                                   on 2000/10/02  23:46:43
19240         Log: SOCK_DGRAM and listen() do not mix as reported in
19241              
19242              Subject: [ID 20000930.001] Bug in perl 5.00503 IO::Socket
19243              From: Petter Reinholdtsen <pere@hungry.com>
19244              Date: Sun, 1 Oct 2000 10:57:20 +0800
19245              Message-Id: <200010010257.KAA05735@localhost.localdomain>
19246              
19247              The patch for 5.7.0+ had to be reengineered, though.
19248      Branch: perl
19249            ! ext/IO/lib/IO/Socket/UNIX.pm
19250 ____________________________________________________________________________
19251 [  7112] By: jhi                                   on 2000/10/02  23:36:57
19252         Log: Subject: Re: [PATCH 5.005_64 missed]
19253              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
19254              Date: Sun, 1 Oct 2000 18:50:10 -0400
19255              Message-ID: <20001001185010.A14152@monk.mps.ohio-state.edu>
19256      Branch: perl
19257            ! pod/perlxs.pod
19258 ____________________________________________________________________________
19259 [  7111] By: jhi                                   on 2000/10/02  23:35:40
19260         Log: Subject: Re: [ID 20000912.008] substr replacement of tainted data (bug) 
19261              From: Radu Greab <radu@netsoft.ro>
19262              Date: Mon, 2 Oct 2000 22:03:44 +0300 (EEST)
19263              Message-ID: <14808.56336.594486.626712@busy.netsoft.ro>
19264      Branch: perl
19265            ! op.c opcode.pl t/op/substr.t
19266 ____________________________________________________________________________
19267 [  7110] By: jhi                                   on 2000/10/02  23:32:38
19268         Log: Subject: [PATCH] Fix aliasing of tied filehandles
19269              From: Daniel Chetlin <daniel@chetlin.com>
19270              Date: Mon, 2 Oct 2000 14:53:27 -0700
19271              Message-ID: <20001002145327.C1617@ilmd>
19272      Branch: perl
19273            ! perl.h pp_hot.c t/op/tiehandle.t
19274 ____________________________________________________________________________
19275 [  7109] By: jhi                                   on 2000/10/02  23:31:30
19276         Log: s/Robin Parker/Robin Barker/
19277      Branch: perl
19278            ! Changes5.6
19279 ____________________________________________________________________________
19280 [  7108] By: jhi                                   on 2000/10/02  23:15:46
19281         Log: Retract #7091 as suggested in
19282              
19283              From: Robin Barker <rmb1@cise.npl.co.uk> 
19284              Subject: [PATCH-R]  was Re: SuSE's gcc-2.95.2 and //depot/perl
19285              Date: Fri, 29 Sep 2000 13:10:22 +0100 (BST)
19286              Message-Id: <200009291210.NAA17098@tempest.npl.co.uk>
19287      Branch: perl
19288            ! embed.pl proto.h
19289 ____________________________________________________________________________
19290 [  7107] By: nick                                  on 2000/10/02  18:23:14
19291         Log: A few tweaks to get Tk803 to work with Encode scheme.
19292      Branch: perl
19293            ! ext/Encode/Encode.pm ext/Encode/Encode.xs t/lib/encode.t
19294 ____________________________________________________________________________
19295 [  7106] By: nick                                  on 2000/10/01  21:34:14
19296         Log: Add checking cases to Encode's toUnicode and fromUnicode.
19297      Branch: perl
19298            ! ext/Encode/Encode.pm
19299 ____________________________________________________________________________
19300 [  7105] By: nick                                  on 2000/10/01  17:18:01
19301         Log: Add encoding tables from tcl8.3.2 and perl code in Encode.pm
19302              To read and use them.
19303              Add a lib/encode.t which checks a few things.
19304      Branch: perl
19305            + ext/Encode/Encode/ascii.enc ext/Encode/Encode/big5.enc
19306            + ext/Encode/Encode/cp1250.enc ext/Encode/Encode/cp1251.enc
19307            + ext/Encode/Encode/cp1252.enc ext/Encode/Encode/cp1253.enc
19308            + ext/Encode/Encode/cp1254.enc ext/Encode/Encode/cp1255.enc
19309            + ext/Encode/Encode/cp1256.enc ext/Encode/Encode/cp1257.enc
19310            + ext/Encode/Encode/cp1258.enc ext/Encode/Encode/cp437.enc
19311            + ext/Encode/Encode/cp737.enc ext/Encode/Encode/cp775.enc
19312            + ext/Encode/Encode/cp850.enc ext/Encode/Encode/cp852.enc
19313            + ext/Encode/Encode/cp855.enc ext/Encode/Encode/cp857.enc
19314            + ext/Encode/Encode/cp860.enc ext/Encode/Encode/cp861.enc
19315            + ext/Encode/Encode/cp862.enc ext/Encode/Encode/cp863.enc
19316            + ext/Encode/Encode/cp864.enc ext/Encode/Encode/cp865.enc
19317            + ext/Encode/Encode/cp866.enc ext/Encode/Encode/cp869.enc
19318            + ext/Encode/Encode/cp874.enc ext/Encode/Encode/cp932.enc
19319            + ext/Encode/Encode/cp936.enc ext/Encode/Encode/cp949.enc
19320            + ext/Encode/Encode/cp950.enc ext/Encode/Encode/dingbats.enc
19321            + ext/Encode/Encode/euc-cn.enc ext/Encode/Encode/euc-jp.enc
19322            + ext/Encode/Encode/euc-kr.enc ext/Encode/Encode/gb12345.enc
19323            + ext/Encode/Encode/gb1988.enc ext/Encode/Encode/gb2312.enc
19324            + ext/Encode/Encode/iso2022-jp.enc
19325            + ext/Encode/Encode/iso2022-kr.enc ext/Encode/Encode/iso2022.enc
19326            + ext/Encode/Encode/iso8859-1.enc
19327            + ext/Encode/Encode/iso8859-2.enc
19328            + ext/Encode/Encode/iso8859-3.enc
19329            + ext/Encode/Encode/iso8859-4.enc
19330            + ext/Encode/Encode/iso8859-5.enc
19331            + ext/Encode/Encode/iso8859-6.enc
19332            + ext/Encode/Encode/iso8859-7.enc
19333            + ext/Encode/Encode/iso8859-8.enc
19334            + ext/Encode/Encode/iso8859-9.enc ext/Encode/Encode/jis0201.enc
19335            + ext/Encode/Encode/jis0208.enc ext/Encode/Encode/jis0212.enc
19336            + ext/Encode/Encode/koi8-r.enc ext/Encode/Encode/ksc5601.enc
19337            + ext/Encode/Encode/macCentEuro.enc
19338            + ext/Encode/Encode/macCroatian.enc
19339            + ext/Encode/Encode/macCyrillic.enc
19340            + ext/Encode/Encode/macDingbats.enc
19341            + ext/Encode/Encode/macGreek.enc
19342            + ext/Encode/Encode/macIceland.enc
19343            + ext/Encode/Encode/macJapan.enc ext/Encode/Encode/macRoman.enc
19344            + ext/Encode/Encode/macRomania.enc ext/Encode/Encode/macThai.enc
19345            + ext/Encode/Encode/macTurkish.enc
19346            + ext/Encode/Encode/macUkraine.enc
19347            + ext/Encode/Encode/shiftjis.enc ext/Encode/Encode/symbol.enc
19348            + t/lib/encode.t
19349            ! MANIFEST ext/Encode/Encode.pm
19350 ____________________________________________________________________________
19351 [  7104] By: nick                                  on 2000/09/30  13:04:30
19352         Log: Subject: [PATCH@blead] Fix some recursion in overload.pm
19353              From: Daniel Chetlin <daniel@chetlin.com>
19354              Date: Mon, 18 Sep 2000 05:05:40 -0700
19355              Message-Id: <20000918050540.C652@ilmd>
19356      Branch: perl
19357            ! lib/overload.pm sv.c t/pragma/overload.t
19358 ____________________________________________________________________________
19359 [  7103] By: nick                                  on 2000/09/30  12:53:36
19360         Log: Subject: [ID 20000917.002] 5.7.0 and blead@7095 make html makes man
19361              From: Johan Vromans <jvromans@squirrel.nl>
19362              Date: Sun, 17 Sep 2000 19:46:05 +0200 (CEST)
19363              Message-Id: <14789.861.376723.870640@phoenix.squirrel.nl>
19364      Branch: perl
19365            ! pod/Makefile.SH
19366 ____________________________________________________________________________
19367 [  7102] By: nick                                  on 2000/09/30  12:52:31
19368         Log: Subject: [PATCH] Re: [ID 20000915.010] Infinite loop with -MO=Deparse
19369              From: Spider Boardman <spider@Orb.Nashua.NH.US>
19370              Date: Sat, 16 Sep 2000 16:36:45 -0400
19371              Message-Id: <200009162036.QAA11694@Orb.Nashua.NH.US>
19372      Branch: perl
19373            ! ext/B/B/Deparse.pm
19374 ____________________________________________________________________________
19375 [  7101] By: nick                                  on 2000/09/30  12:51:41
19376         Log: Subject: [PATCH perl@7065] another VMS my_fwrite() fix for Storable
19377              From: Craig A. Berry <craig.berry@psinetcs.com>
19378              Date: Sat, 16 Sep 2000 10:11:10 -0500
19379              Message-Id: <4.3.2.7.2.20000916010548.01ce1b60@exchi01>
19380      Branch: perl
19381            ! vms/vms.c
19382 ____________________________________________________________________________
19383 [  7100] By: nick                                  on 2000/09/30  12:50:33
19384         Log: Subject: Re: unicode support and perl [ID 20000901.097]
19385              From: Spider Boardman <spider@Orb.Nashua.NH.US>
19386              Date: Fri, 15 Sep 2000 16:37:58 -0400
19387              Message-Id: <200009152037.QAA19056@Orb.Nashua.NH.US>
19388      Branch: perl
19389            ! t/op/append.t
19390 ____________________________________________________________________________
19391 [  7099] By: nick                                  on 2000/09/30  12:49:35
19392         Log: Subject: Re: unicode support and perl [ID 20000901.097]
19393              From: Spider Boardman <spider@Orb.Nashua.NH.US>
19394              Date: Fri, 15 Sep 2000 16:25:30 -0400
19395              Message-Id: <200009152025.QAA18540@Orb.Nashua.NH.US>
19396      Branch: perl
19397            ! pp_hot.c
19398 ____________________________________________________________________________
19399 [  7098] By: nick                                  on 2000/09/30  12:48:00
19400         Log: Subject: Re: Trapping by opmask sets strange parser state [PATCH]
19401              From: Gisle Aas <gisle@ActiveState.com>
19402              Date: 15 Sep 2000 16:23:41 +0200
19403              Message-Id: <m3aed9ybrm.fsf@eik.g.aas.no>
19404      Branch: perl
19405            ! toke.c
19406 ____________________________________________________________________________
19407 [  7097] By: nick                                  on 2000/09/30  12:45:16
19408         Log: Subject: [PATCH] Nits in perlmod.pod
19409              From: Daniel Chetlin <daniel@chetlin.com>
19410              Date: Fri, 15 Sep 2000 02:04:09 -0700
19411              Message-Id: <20000915020409.A2104@ilmd>
19412      Branch: perl
19413            ! pod/perlmod.pod
19414 ____________________________________________________________________________
19415 [  7096] By: nick                                  on 2000/09/30  12:18:00
19416         Log: Re-instate Perl_utf8_to_uv without checking parameter - added in change 7075.
19417              i.e. rename Simon's function to Perl_utf8_to_uv_chk, change all calls to it
19418              to use new name and add Perl_utf8_to_uv() as a wrapper which calls it passing
19419              0 to checking to get the warning.
19420      Branch: perl
19421            ! doop.c embed.h embed.pl global.sym handy.h objXSUB.h op.c
19422            ! perlapi.c pod/perlapi.pod pp.c pp_ctl.c proto.h regcomp.c
19423            ! regexec.c sv.c toke.c utf8.c
19424 ____________________________________________________________________________
19425 [  7095] By: nick                                  on 2000/09/15  16:55:59
19426         Log: Mutliplicity & ithreads fix for sv.c/Encode.xs
19427              
19428              Subject: [ID 20000915.004] Not OK: perl v5.7.1 +devel-7094 on alpha-dec_osf-thread-multi 4.0f (UNINSTALLED)
19429              From: Spider Boardman <spider@Orb.Nashua.NH.US>
19430              Message-Id: <200009151037.GAA07447@Orb.Nashua.NH.US>
19431              Date: Fri, 15 Sep 2000 06:37:30 -0400
19432      Branch: perl
19433            ! ext/Encode/Encode.xs sv.c
19434 ____________________________________________________________________________
19435 [  7094] By: jhi                                   on 2000/09/15  03:23:32
19436         Log: Update Changes.
19437      Branch: perl
19438            ! Changes patchlevel.h
19439 ____________________________________________________________________________
19440 [  7093] By: jhi                                   on 2000/09/15  03:11:44
19441         Log: Fix for the charnames.t failures from Spider Boardman.
19442      Branch: perl
19443            ! toke.c
19444 ____________________________________________________________________________
19445 [  7092] By: jhi                                   on 2000/09/15  00:15:48
19446         Log: Botched the #7090 check-in.
19447      Branch: perl
19448            ! sv.c
19449 ____________________________________________________________________________
19450 [  7091] By: jhi                                   on 2000/09/14  23:33:24
19451         Log: Part of #7081 didn't come through.
19452      Branch: perl
19453            ! embed.pl proto.h
19454 ____________________________________________________________________________
19455 [  7090] By: jhi                                   on 2000/09/14  23:17:39
19456         Log: Subject: Re: perl@7078 
19457              From: Spider Boardman <spider@web.zk3.dec.com>
19458              Date: Thu, 14 Sep 2000 19:06:36 -0400
19459              Message-Id: <200009142306.TAA20082@leggy.zk3.dec.com>
19460      Branch: perl
19461            ! sv.c toke.c
19462 ____________________________________________________________________________
19463 [  7089] By: jhi                                   on 2000/09/14  23:11:21
19464         Log: Small portability tweaks.
19465      Branch: perl
19466            ! ext/Encode/Encode.xs
19467 ____________________________________________________________________________
19468 [  7088] By: jhi                                   on 2000/09/14  22:57:23
19469         Log: Fake return to pacify picky compilers.
19470      Branch: perl
19471            ! ext/Encode/Encode.xs
19472 ____________________________________________________________________________
19473 [  7087] By: jhi                                   on 2000/09/14  22:53:37
19474         Log: Subject: [PATCH] utf8.c apidoc
19475              From: Simon Cozens <simon@cozens.net>
19476              Date: Thu, 14 Sep 2000 23:46:57 +0100
19477              Message-ID: <20000914234657.A13953@deep-dark-truthful-mirror.perlhacker.org>
19478      Branch: perl
19479            ! perlapi.c pod/perlapi.pod utf8.c
19480 ____________________________________________________________________________
19481 [  7086] By: jhi                                   on 2000/09/14  22:40:38
19482         Log: We don't need to count the high bit bytes, a boolean is enough. 
19483      Branch: perl
19484            ! sv.c
19485 ____________________________________________________________________________
19486 [  7085] By: jhi                                   on 2000/09/14  21:20:09
19487         Log: Replace #7084 with
19488              
19489              Subject: Re: perl@7078 
19490              From: Spider Boardman <spider@web.zk3.dec.com>
19491              Date: Thu, 14 Sep 2000 17:09:36 -0400
19492              Message-Id: <200009142109.RAA03425@leggy.zk3.dec.com>
19493      Branch: perl
19494            ! sv.c utf8.c
19495 ____________________________________________________________________________
19496 [  7084] By: jhi                                   on 2000/09/14  20:03:34
19497         Log: UTF8-encoded version of 256 is 0xc4 0x80; test that a char is
19498              convertable to bytes by checking it doesn't go above 0xc3
19499              
19500              Subject: Re: perl@7078
19501              From: Simon Cozens <simon@cozens.net>
19502              Date: Thu, 14 Sep 2000 20:59:19 +0100
19503              Message-ID: <20000914205919.A11098@deep-dark-truthful-mirror.perlhacker.org>
19504      Branch: perl
19505            ! utf8.c
19506 ____________________________________________________________________________
19507 [  7083] By: jhi                                   on 2000/09/14  19:38:47
19508         Log: Subject: Re: perl@7078
19509              From: Simon Cozens <simon@cozens.net>
19510              Date: Thu, 14 Sep 2000 20:13:09 +0100
19511              Message-ID: <20000914201309.A10640@deep-dark-truthful-mirror.perlhacker.org>
19512      Branch: perl
19513            ! t/op/bop.t
19514 ____________________________________________________________________________
19515 [  7082] By: jhi                                   on 2000/09/14  17:50:44
19516         Log: The one that got away.
19517      Branch: perl
19518            ! lib/File/Find.pm
19519 ____________________________________________________________________________
19520 [  7081] By: jhi                                   on 2000/09/14  17:45:35
19521         Log: Subject: [PATCH perl-5.7.0] continued -Wformat support
19522              From: Robin Barker <rmb1@cise.npl.co.uk>
19523              Message-Id: <200009141707.SAA13276@tempest.npl.co.uk>
19524              Date: Thu, 14 Sep 2000 18:07:38 +0100 (BST)
19525      Branch: perl
19526            ! Porting/pumpkin.pod embed.pl ext/ByteLoader/bytecode.h
19527            ! ext/Devel/Peek/Peek.xs ext/DynaLoader/dl_dlopen.xs
19528            ! ext/Storable/Storable.xs malloc.c perl.c perl.h pp.c proto.h
19529            ! regcomp.c toke.c universal.c
19530 ____________________________________________________________________________
19531 [  7080] By: jhi                                   on 2000/09/14  17:40:35
19532         Log: Problems picked up by AIX cc.
19533              
19534              Subject: Re: perl@7078 (patch included)
19535              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
19536              Date: Thu, 14 Sep 2000 18:53:30 +0200
19537              Message-Id: <20000914182304.7017.H.M.BRAND@hccnet.nl>
19538      Branch: perl
19539            ! ext/Encode/Encode.xs
19540 ____________________________________________________________________________
19541 [  7079] By: jhi                                   on 2000/09/14  17:38:27
19542         Log: Subject: File::Find 5.7.0 POD nits
19543              From: Rich Morin <rdm@cfcl.com>
19544              Date: Wed, 13 Sep 2000 22:03:58 -0700
19545              Message-Id: <v042208a0b5e60b3149be@w205.z205158144.scl-ca.dsl.cnc.net>
19546      Branch: perl
19547            ! lib/File/Find.pm
19548 ____________________________________________________________________________
19549 [  7078] By: jhi                                   on 2000/09/14  14:58:20
19550         Log: Update Changes.
19551      Branch: perl
19552            ! Changes patchlevel.h
19553 ____________________________________________________________________________
19554 [  7077] By: jhi                                   on 2000/09/14  14:55:54
19555         Log: Compilation warnings and an error.
19556      Branch: perl
19557            ! sv.c
19558 ____________________________________________________________________________
19559 [  7076] By: jhi                                   on 2000/09/14  14:42:56
19560         Log: Fix for a parsing bug, not for the original bug.
19561              
19562              Subject: Re: [ID 20000910.005] Another segfault with regexes. 
19563              From: Spider Boardman <spider@web.zk3.dec.com>
19564              Date: Wed, 13 Sep 2000 17:52:20 -0400
19565              Message-Id: <200009132152.RAA24029@leggy.zk3.dec.com>
19566      Branch: perl
19567            ! regcomp.c
19568 ____________________________________________________________________________
19569 [  7075] By: jhi                                   on 2000/09/14  14:40:40
19570         Log: Batch of UTF-8 patches from Simon Cozens.
19571      Branch: perl
19572            ! doop.c embed.h embed.pl ext/Encode/Encode.xs handy.h op.c
19573            ! pod/perlapi.pod pp.c pp_ctl.c proto.h regcomp.c regexec.c sv.c
19574            ! toke.c utf8.c
19575 ____________________________________________________________________________
19576 [  7074] By: jhi                                   on 2000/09/14  14:29:58
19577         Log: Subject: Re: Two advertising clauses need to be removed
19578              From: Russ Allbery <rra@stanford.edu>
19579              Date: 13 Sep 2000 18:50:26 -0700
19580              Message-ID: <ylwvgfvj19.fsf@windlord.stanford.edu>
19581      Branch: perl
19582            ! ext/SDBM_File/sdbm/dbm.c ext/SDBM_File/sdbm/dbm.h
19583 ____________________________________________________________________________
19584 [  7073] By: jhi                                   on 2000/09/14  14:28:20
19585         Log: Subject: [PATCH] de-wall t/README
19586              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
19587              Date: Wed, 13 Sep 2000 17:46:55 -0700
19588              Message-ID: <//Bw5gzkge/e092yn@efn.org>
19589      Branch: perl
19590            ! t/README
19591 ____________________________________________________________________________
19592 [  7072] By: jhi                                   on 2000/09/14  14:25:10
19593         Log: Hints optimization.
19594              
19595              Subject: Minor nit
19596              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
19597              Date: Wed, 13 Sep 2000 21:42:07 +0200
19598              Message-Id: <20000913214116.1D38.H.M.BRAND@hccnet.nl>
19599      Branch: perl
19600            ! hints/hpux.sh
19601 ____________________________________________________________________________
19602 [  7071] By: jhi                                   on 2000/09/14  14:23:30
19603         Log: Allow chop() and chomp() to be overridden.
19604              
19605              Subject: [PATCH] Re: [ID 20000911.006] I can override glob but not chop?
19606              From: "Casey R. Tweten" <crt@kiski.net>
19607              Date: Wed, 13 Sep 2000 12:41:31 -0400 (EDT)
19608              Message-ID: <Pine.OSF.4.21.0009131154120.6661-100000@home.kiski.net>
19609      Branch: perl
19610            ! toke.c
19611 ____________________________________________________________________________
19612 [  7070] By: jhi                                   on 2000/09/14  14:20:36
19613         Log: The return value of setlocale must be copied away.
19614              
19615              Subject: [ID 20000913.001] Heap corruption in Perl_init_i18nl10n
19616              From: Alan Burlison <Alan.Burlison@uk.sun.com>
19617              Date: Wed, 13 Sep 2000 16:27:37 +0100 
19618              Message-Id: <39BF9CE9.3D7FBBDD@uk.sun.com>
19619      Branch: perl
19620            ! util.c
19621 ____________________________________________________________________________
19622 [  7069] By: jhi                                   on 2000/09/14  14:16:27
19623         Log: Remove vestiges of tr//CU.
19624              
19625              Subject: [ID 20000912.009] perlunicode.pod still mentions tr///CU
19626              From: Nick Clark <nick@plum.flirble.org>
19627              Date: Tue, 12 Sep 2000 22:50:14 +0100
19628              Message-Id: <E13YxwU-000DDQ-00@plum.flirble.org>
19629              
19630              Subject: Re: [ID 20000912.009] perlunicode.pod still mentions tr///CU
19631              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
19632              Date: Tue, 12 Sep 2000 21:38:48 -0700
19633              Message-ID: <YTwv5gzkgmfL092yn@efn.org>
19634      Branch: perl
19635            ! op.h pod/perlunicode.pod
19636 ____________________________________________________________________________
19637 [  7068] By: jhi                                   on 2000/09/13  14:18:39
19638         Log: Add the Encode extension.  The code is still largely just skeleton.
19639      Branch: perl
19640            + ext/Encode/Encode.pm ext/Encode/Encode.xs
19641            + ext/Encode/Makefile.PL ext/Encode/Todo
19642            ! MANIFEST Todo-5.6
19643 ____________________________________________________________________________
19644 [  7067] By: jhi                                   on 2000/09/12  17:43:33
19645         Log: Allow for whitespace between "#" and "line" in cpp output.
19646              
19647              Subject: [PATCH] Re: Problems compiling bleadperl on Unicos 9
19648              From: Calle Dybedahl <calle@lysator.liu.se>
19649              Date: 12 Sep 2000 19:38:02 +0200 
19650              Message-ID: <867l8hy0hx.fsf_-_@tezcatlipoca.algonet.se>
19651      Branch: perl
19652            ! ext/Errno/ChangeLog ext/Errno/Errno_pm.PL
19653 ____________________________________________________________________________
19654 [  7066] By: gsar                                  on 2000/09/12  17:24:29
19655         Log: change#6327 didn't quite go all the way to enable USE_SOCKETS_AS_HANDLES
19656              initialization in all the threads on Windows
19657      Branch: perl
19658            ! win32/win32.c
19659 ____________________________________________________________________________
19660 [  7065] By: jhi                                   on 2000/09/12  15:11:31
19661         Log: Update Changes.
19662      Branch: perl
19663            ! Changes patchlevel.h
19664 ____________________________________________________________________________
19665 [  7064] By: jhi                                   on 2000/09/12  14:54:54
19666         Log: Retract #7062, the pod tests are not ready.
19667      Branch: perl
19668            ! t/TEST t/harness
19669 ____________________________________________________________________________
19670 [  7063] By: jhi                                   on 2000/09/12  14:25:41
19671         Log: The #7054 truncated Configure badly.
19672      Branch: metaconfig/U/perl
19673            ! End.U
19674      Branch: perl
19675            ! Configure config_h.SH
19676 ____________________________________________________________________________
19677 [  7062] By: jhi                                   on 2000/09/12  14:08:32
19678         Log: Subject: [ID 20000911.009] t/pod/*.t tests not run by harness or make test
19679              From: sthoenna@efn.org
19680              Date: Mon, 11 Sep 2000 17:56:47 -0700 (PDT)
19681              Message-Id: <200009120056.e8C0ulZ21635@garcia.efn.org>
19682      Branch: perl
19683            ! t/TEST t/harness
19684 ____________________________________________________________________________
19685 [  7061] By: jhi                                   on 2000/09/12  14:07:18
19686         Log: Subject: [ID 20000911.011] misplaced typemap in perlxs.pod
19687              From: sthoenna@efn.org
19688              Date: Mon, 11 Sep 2000 22:07:21 -0700 (PDT)
19689              Message-Id: <200009120507.e8C57LA02461@garcia.efn.org>
19690      Branch: perl
19691            ! pod/perlxs.pod
19692 ____________________________________________________________________________
19693 [  7060] By: jhi                                   on 2000/09/12  14:06:08
19694         Log: Break up the myconfig lines a bit.
19695              
19696              Subject: perlbug/perl -V output format
19697              From: sthoenna@efn.org
19698              Date: Tue, 12 Sep 2000 00:04:11 -0700 (PDT)
19699              Message-Id: <200009120704.e8C74BX10562@garcia.efn.org>
19700      Branch: perl
19701            ! myconfig.SH
19702 ____________________________________________________________________________
19703 [  7059] By: jhi                                   on 2000/09/12  14:05:04
19704         Log: Test for the #7049.
19705              
19706              Subject: Re: [PATCH] Re: [ID 20000910.001] Not OK: perl v5.7.0 +DEVEL7044 on    i686-linux 2.2.16-raid (UNINSTALLED)
19707              From: andreas.koenig@anima.de (Andreas J. Koenig)
19708              Date: 12 Sep 2000 06:42:01 +0200
19709              Message-ID: <m3k8cigr1i.fsf@ak-71.mind.de>
19710      Branch: perl
19711            ! t/op/my.t
19712 ____________________________________________________________________________
19713 [  7058] By: jhi                                   on 2000/09/12  14:03:05
19714         Log: Subject: [patch: perl@7045] vms updates
19715              From: Peter Prymmer <pvhp@forte.com>
19716              Date: Mon, 11 Sep 2000 18:41:48 -0700 (PDT)
19717              Message-ID: <Pine.OSF.4.10.10009111840030.339348-100000@aspara.forte.com>
19718      Branch: perl
19719            ! configure.com lib/ExtUtils/MM_VMS.pm vms/descrip_mms.template
19720 ____________________________________________________________________________
19721 [  7057] By: jhi                                   on 2000/09/12  14:00:51
19722         Log: Subject: [ID 20000911.008] Not OK: perl v5.7.0 +DEVEL7048 on os2-64int-ld 2.30 (UNINSTALLED)
19723              From: sthoenna@efn.org
19724              Date: Mon, 11 Sep 2000 16:28:13 -0700 (PDT)
19725              Message-Id: <200009112328.e8BNSD616812@garcia.efn.org>
19726      Branch: perl
19727            ! t/op/64bitint.t
19728 ____________________________________________________________________________
19729 [  7056] By: jhi                                   on 2000/09/12  13:58:14
19730         Log: Subject: [patch] perlfunc.pod -- POSIX::sigpause should be POSIX::pause
19731              From: Jeff Pinyan <jeffp@crusoe.net>
19732              Date: Sun, 10 Sep 2000 12:01:21 -0400 (EDT)
19733              Message-ID: <Pine.GSO.4.21.0009101200190.12441-100000@crusoe.crusoe.net>
19734      Branch: perl
19735            ! pod/perlfunc.pod
19736 ____________________________________________________________________________
19737 [  7055] By: jhi                                   on 2000/09/12  13:56:32
19738         Log: Do in VMS as the #7054 does.
19739      Branch: perl
19740            ! configure.com
19741 ____________________________________________________________________________
19742 [  7054] By: jhi                                   on 2000/09/12  13:50:31
19743         Log: Subject: RE: [Patch 5.7.0] Removing -ldb from the core build
19744              From: "Paul Marquess" <paul_marquess@yahoo.co.uk>
19745              Date: Mon, 11 Sep 2000 08:33:09 +0100
19746              Message-ID: <000e01c01bc2$88b2d2c0$0e14140a@bfs.phone.com>
19747      Branch: metaconfig/U/perl
19748            ! End.U
19749      Branch: perl
19750            ! Configure Makefile.SH config_h.SH lib/ExtUtils/Embed.pm
19751            ! lib/ExtUtils/Liblist.pm lib/ExtUtils/MM_Unix.pm
19752 ____________________________________________________________________________
19753 [  7053] By: jhi                                   on 2000/09/12  13:29:19
19754         Log: Subject:  [PATCH] Perl 5.6.0, 5.7.0 ... vms/test.com to eliminate spurious NL's in test output
19755              From: lane@DUPHY4.Physics.Drexel.Edu (Charles Lane)
19756              Date:     Tue, 12 Sep 2000 08:35:59 EDT
19757              Message-Id: <000912081130.13ca9@DUPHY4.Physics.Drexel.Edu>
19758      Branch: perl
19759            ! vms/test.com
19760 ____________________________________________________________________________
19761 [  7052] By: jhi                                   on 2000/09/11  23:01:50
19762         Log: Document the SvUTF8*().
19763      Branch: perl
19764            ! pod/perlapi.pod sv.h
19765 ____________________________________________________________________________
19766 [  7051] By: gsar                                  on 2000/09/11  14:46:30
19767         Log: C<@a = @b = split(...)> optimization coredumps under ithreads
19768              (missed a spot when fixing up op_pmreplroot hack for ithreads)
19769      Branch: perl
19770            ! op.c t/op/split.t
19771 ____________________________________________________________________________
19772 [  7050] By: nick                                  on 2000/09/11  10:03:51
19773         Log: Modern Borland C now seems to have anon unions for info.wProcessorArchitecture
19774              
19775              Subject: borland C++ win32.c tweak
19776              From: Vadim Konovalov <vkonovalov@lucent.com>
19777              Message-ID: <402099F49BEED211999700805FC7359F6FB379@ru0028exch01.spb.lucent.com>
19778              Date: Mon, 11 Sep 2000 11:22:33 +0400
19779      Branch: perl
19780            ! win32/win32.c
19781 ____________________________________________________________________________
19782 [  7049] By: nick                                  on 2000/09/11  09:57:33
19783         Log: Point fix for s/// on foreach (keys %xxx).
19784      Branch: perl
19785            ! pp_hot.c
19786 ____________________________________________________________________________
19787 [  7048] By: jhi                                   on 2000/09/10  23:37:09
19788         Log: Silence t/pod/*.t about alternate quote-mappings now implemented
19789              by Pod::Text, from Brad Appleton.
19790      Branch: perl
19791            ! t/pod/testp2pt.pl
19792 ____________________________________________________________________________
19793 [  7047] By: jhi                                   on 2000/09/10  14:32:53
19794         Log: Upgrade to podlators-1.03 (Pod::Man 1.07 and Pod::Text 2.05),
19795              by Russ Allbery.
19796      Branch: perl
19797            ! lib/Pod/Man.pm lib/Pod/Text.pm pod/pod2man.PL pod/pod2text.PL
19798 ____________________________________________________________________________
19799 [  7046] By: jhi                                   on 2000/09/10  14:15:08
19800         Log: Upgrade to CPAN 1.57_65, from Andreas König.
19801      Branch: perl
19802            ! lib/CPAN.pm lib/CPAN/FirstTime.pm
19803 ____________________________________________________________________________
19804 [  7045] By: jhi                                   on 2000/09/08  21:36:32
19805         Log: Update Changes.
19806      Branch: perl
19807            ! Changes patchlevel.h
19808 ____________________________________________________________________________
19809 [  7044] By: jhi                                   on 2000/09/08  21:29:56
19810         Log: Subject: [PATCH: 5.7.0] proper setting for isnan for DECC 5.3
19811              From: Peter Prymmer <pvhp@forte.com>
19812              Date: Fri, 8 Sep 2000 13:33:27 -0700 (PDT)
19813              Message-ID: <Pine.OSF.4.10.10009081331420.132461-100000@aspara.forte.com>
19814      Branch: perl
19815            ! configure.com
19816 ____________________________________________________________________________
19817 [  7043] By: jhi                                   on 2000/09/08  21:27:50
19818         Log: Subject: [PATCH (or RFC): 5.7.0] make the ran_tests intermediate file 8.3 friendly
19819              From: Peter Prymmer <pvhp@forte.com>
19820              Date: Fri, 8 Sep 2000 11:02:19 -0700 (PDT)
19821              Message-ID: <Pine.OSF.4.10.10009081054340.132461-100000@aspara.forte.com>
19822      Branch: perl
19823            ! Makefile.SH installperl
19824 ____________________________________________________________________________
19825 [  7042] By: jhi                                   on 2000/09/08  21:23:21
19826         Log: Continue #7041.
19827      Branch: perl
19828            ! cygwin/Makefile.SHs os2/Makefile.SHs
19829 ____________________________________________________________________________
19830 [  7041] By: jhi                                   on 2000/09/08  21:18:10
19831         Log: Do away with memory models cruft.  Sorry, PDP users.
19832      Branch: metaconfig
19833            ! U/modified/cc.U U/modified/libpth.U
19834      Branch: perl
19835            ! Configure Makefile.SH Porting/Glossary Porting/config.sh
19836            ! Porting/config_H cflags.SH config_h.SH configure.com
19837            ! epoc/config.sh hints/mint.sh hints/titanos.sh hints/vmesa.sh
19838            ! lib/ExtUtils/MM_Unix.pm win32/config.bc win32/config.gc
19839            ! win32/config.vc x2p/Makefile.SH x2p/cflags.SH
19840 ____________________________________________________________________________
19841 [  7040] By: jhi                                   on 2000/09/08  14:34:18
19842         Log: Major rewrite of s2p.  And I mean really major, it is
19843              an implementation of sed in perl.  If called as s2p it
19844              will function as s2p.  Note: needs non-UNIXifying.
19845              
19846              Subject: s2p
19847              From: Wolfgang Laun <Wolfgang.Laun@alcatel.at>
19848              Date: Mon, 28 Aug 2000 14:05:12 +0200
19849              Message-ID: <39AA5578.2102E2AA@alcatel.at>
19850      Branch: perl
19851            ! x2p/s2p.PL
19852 ____________________________________________________________________________
19853 [  7039] By: jhi                                   on 2000/09/08  14:19:49
19854         Log: Re-allow vec() for characters > 255.
19855              
19856              Subject: [PATCH] Re: [ID 20000907.005] Not OK: perl v5.7.0 +devel-7030 on alpha-dec_osf-perlio 4.0f (UNINSTALLED) 
19857              From: Spider Boardman <spider@web.zk3.dec.com>
19858              Date: Fri, 08 Sep 2000 02:21:02 -0400
19859              Message-Id: <200009080621.CAA03409@leggy.zk3.dec.com>
19860      Branch: perl
19861            ! doop.c pod/perldelta.pod pod/perldiag.pod pod/perlfunc.pod
19862            ! t/op/vec.t
19863 ____________________________________________________________________________
19864 [  7038] By: jhi                                   on 2000/09/08  14:14:18
19865         Log: Subject: [PATCH lib/Benchmark.pm]
19866              From: <abigail@foad.org>
19867              Date: Thu, 7 Sep 2000 15:03:20 -0400
19868              Message-ID: <20000907190320.888.qmail@foad.org>
19869      Branch: perl
19870            ! lib/Benchmark.pm
19871 ____________________________________________________________________________
19872 [  7037] By: jhi                                   on 2000/09/08  14:11:06
19873         Log: Optimizing hash keys into shared strings doesn't work with ithreads.
19874              
19875              Subject: Re: [ID 20000907.008] Not OK: v5.7.0 on alpha-dec_osf-thread-multi    
19876              From: Spider Boardman <spider@web.zk3.dec.com>
19877              Date: Fri, 08 Sep 2000 01:30:27 -0400
19878              Message-Id: <200009080530.BAA10498@leggy.zk3.dec.com>
19879      Branch: perl
19880            ! op.c
19881 ____________________________________________________________________________
19882 [  7036] By: jhi                                   on 2000/09/08  14:08:58
19883         Log: Subject: [ID 20000908.002] perlipc documentation bug.
19884              From: Major Sébastien <sebastien.major@crdp.ac-caen.fr>
19885              Date: Fri, 08 Sep 2000 12:38:32 +0200
19886              Message-Id: <39B8C1A8.3DC36E6D@crdp.ac-caen.fr>
19887      Branch: perl
19888            ! pod/perlipc.pod
19889 ____________________________________________________________________________
19890 [  7035] By: jhi                                   on 2000/09/08  14:03:12
19891         Log: Subject: Re: [ID 20000907.007] Not OK: perl v5.7.0 +devel-7030 on alpha-dec_osf 4.0f
19892              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
19893              Date: Fri, 08 Sep 2000 11:47:34 +0200
19894              Message-Id: <20000908111426.FBDB.H.M.BRAND@hccnet.nl>
19895      Branch: perl
19896            ! hints/dec_osf.sh
19897 ____________________________________________________________________________
19898 [  7034] By: jhi                                   on 2000/09/08  13:59:35
19899         Log: Subject: Re: [ID 20000906.004] segfault with bad perl statement
19900              From: Simon Cozens <simon@cozens.net>
19901              Date: Thu, 7 Sep 2000 20:40:38 +0100
19902              Message-ID: <20000907204038.A15650@deep-dark-truthful-mirror.perlhacker.org>
19903      Branch: perl
19904            ! pp_hot.c
19905 ____________________________________________________________________________
19906 [  7033] By: jhi                                   on 2000/09/08  04:03:03
19907         Log: Subject: [ID 20000904.008] Tiny fix for perldiag
19908              From: "Larry W. Virden" <lvirden@cas.org>
19909              Date: Mon, 4 Sep 2000 18:45:44 -0400 (EDT)
19910              Message-Id: <200009042245.SAA22916@lwv26awu.cas.org>
19911      Branch: perl
19912            ! pod/perldiag.pod
19913 ____________________________________________________________________________
19914 [  7032] By: jhi                                   on 2000/09/07  22:18:30
19915         Log: Subject: [PATCH 5.7.0] perl5db.pl [Was: Re: Debugger question]
19916              From: Peter Scott <Peter.J.Scott@jpl.nasa.gov>
19917              Date: Mon, 04 Sep 2000 13:16:38 -0700
19918              Message-Id: <4.3.2.7.2.20000904130939.00adae90@mail2a.jpl.nasa.gov>
19919      Branch: perl
19920            ! lib/perl5db.pl
19921 ____________________________________________________________________________
19922 [  7031] By: jhi                                   on 2000/09/07  22:02:29
19923         Log: Fix the ccversion detection for 5.1 and beyond.
19924              
19925              Subject: [ID 20000907.007] Not OK: perl v5.7.0 +devel-7030 on alpha-dec_osf 4.0f
19926              From: Spider Boardman <spider@leggy.zk3.dec.com>
19927              Date: Thu, 7 Sep 2000 17:54:27 -0400
19928              Message-Id: <200009072154.RAA14747@leggy.zk3.dec.com>
19929      Branch: perl
19930            ! hints/dec_osf.sh
19931 ____________________________________________________________________________
19932 [  7030] By: jhi                                   on 2000/09/07  19:12:28
19933         Log: Fix for
19934              
19935              Subject: [ID 20000903.001] \w in utf8-strings
19936              From: Marc Lehmann <pcg@goof.com>
19937              Date: Sun, 03 Sep 2000 09:44:29 +0200
19938              Message-Id: <E13VUS5-0000cv-00.pgcc-forever-2000-09-03-09-44-29@fuji>
19939              
19940              and various related nits.
19941      Branch: perl
19942            ! lib/unicode/mktables.PL regcomp.h regexec.c utf8.c
19943 ____________________________________________________________________________
19944 [  7029] By: jhi                                   on 2000/09/07  18:49:09
19945         Log: Fix the URL, but the server is still missing in action.
19946              
19947              Subject: [ID 20000905.002] perlfaq1.pod URL error
19948              From: "Larry W. Virden" <lvirden@cas.org>
19949              Date: Tue, 5 Sep 2000 08:24:40 -0400 (EDT)
19950              Message-Id: <200009051224.IAA11226@lwv26awu.cas.org>
19951      Branch: perl
19952            ! pod/perlfaq1.pod
19953 ____________________________________________________________________________
19954 [  7028] By: jhi                                   on 2000/09/07  18:47:13
19955         Log: Subject: Re: [ID 20000905.001] Assertion failed: file "toke.c", line 202 
19956              From: Hugo <hv@crypt.compulink.co.uk>
19957              Date: Tue, 05 Sep 2000 14:13:37 +0100
19958              Message-Id: <200009051313.OAA24507@crypt.compulink.co.uk>
19959      Branch: perl
19960            ! toke.c
19961 ____________________________________________________________________________
19962 [  7027] By: jhi                                   on 2000/09/07  18:45:35
19963         Log: Subject: [PATCH@7014] \G in non-/g is well-defined now ... right?
19964              From: Daniel Chetlin <daniel@chetlin.com>
19965              Date: Tue, 5 Sep 2000 04:57:07 -0700
19966              Message-ID: <20000905045707.A8620@ilmd.chetlin.org>
19967      Branch: perl
19968            ! pod/perlfaq6.pod pod/perlop.pod
19969 ____________________________________________________________________________
19970 [  7026] By: jhi                                   on 2000/09/07  18:44:01
19971         Log: Document the new ref() semantics.
19972              
19973              Subject: Re: Undocumented(?) change to "ref" semantics in 5.7.0
19974              From: Gisle Aas <gisle@ActiveState.com>
19975              Date: 05 Sep 2000 08:10:30 +0200
19976              Message-ID: <m3vgwb8j3d.fsf@eik.g.aas.no>
19977      Branch: perl
19978            ! pod/perldelta.pod
19979 ____________________________________________________________________________
19980 [  7025] By: jhi                                   on 2000/09/07  18:42:27
19981         Log: Make Data::Dumper (non-XS) to work with changed semantics of ref().
19982              
19983              Subject: Re: Undocumented(?) change to "ref" semantics in 5.7.0
19984              From: Gisle Aas <gisle@ActiveState.com>
19985              Date: 05 Sep 2000 08:11:40 +0200
19986              Message-ID: <m3snrf8j1f.fsf@eik.g.aas.no>
19987      Branch: perl
19988            ! ext/Data/Dumper/Dumper.pm t/lib/dumper.t
19989 ____________________________________________________________________________
19990 [  7024] By: jhi                                   on 2000/09/07  18:39:32
19991         Log: Subject: [PATCH] Modernize Opcode.pm documentation
19992              From: Gisle Aas <gisle@ActiveState.com>
19993              Date: 4 Sep 2000 00:18:55 -0000
19994              Message-ID: <20000904001855.26128.qmail@eik.g.aas.no>
19995      Branch: perl
19996            ! ext/Opcode/Opcode.pm
19997 ____________________________________________________________________________
19998 [  7023] By: jhi                                   on 2000/09/07  18:37:42
19999         Log: Subject: [PATCH] Tied filehandle documentation
20000              From: Gisle Aas <gisle@ActiveState.com>
20001              Date: 4 Sep 2000 00:14:40 -0000
20002              Message-ID: <20000904001440.26084.qmail@eik.g.aas.no>
20003      Branch: perl
20004            ! pod/perlfunc.pod pod/perltie.pod
20005 ____________________________________________________________________________
20006 [  7022] By: jhi                                   on 2000/09/07  18:35:37
20007         Log: Subject: [PATCH] Tie::StdHandle did not know about 3-arg open
20008              From: Gisle Aas <gisle@ActiveState.com>
20009              Date: 4 Sep 2000 00:04:22 -0000
20010              Message-ID: <20000904000422.26002.qmail@eik.g.aas.no>
20011      Branch: perl
20012            ! lib/Tie/Handle.pm t/lib/tie-stdhandle.t
20013 ____________________________________________________________________________
20014 [  7021] By: jhi                                   on 2000/09/07  18:33:22
20015         Log: Subject: small apidoc fix
20016              From: Marc Lehmann <pcg@goof.com>
20017              Date: Sun, 3 Sep 2000 05:12:06 +0200
20018              Message-ID: <20000903051206.A5909@cerebro.laendle>
20019      Branch: perl
20020            ! pod/perlapi.pod utf8.c
20021 ____________________________________________________________________________
20022 [  7020] By: jhi                                   on 2000/09/07  16:14:57
20023         Log: Tiny perldelta nits.
20024      Branch: perl
20025            ! pod/perldelta.pod
20026 ____________________________________________________________________________
20027 [  7019] By: jhi                                   on 2000/09/07  16:04:20
20028         Log: Guard against bad string->int conversion for quads.
20029      Branch: perl
20030            ! t/op/64bitint.t
20031 ____________________________________________________________________________
20032 [  7018] By: jhi                                   on 2000/09/06  17:07:03
20033         Log: Update Unicode todo list.
20034      Branch: perl
20035            ! Todo-5.6
20036 ____________________________________________________________________________
20037 [  7017] By: jhi                                   on 2000/09/05  21:16:01
20038         Log: Document the SvIOK_.*UV().
20039      Branch: perl
20040            ! pod/perlapi.pod sv.h
20041 ____________________________________________________________________________
20042 [  7016] By: nick                                  on 2000/09/03  21:54:46
20043         Log: Hash lookup of constant strings optimization:
20044              Introduce SvREADONLY && SvFAKE to flag an SV which has SvPVX pointing
20045              to string table (as per sharepvn). Add newSV_pvn_share to create such
20046              a thing. Make hv.c compare addresses of strings and skip string compare
20047              if equal. Make method_named and helem ops use these shared-string SVs
20048              when arg is constant. Make keys op return shared-string SVs (less clearly
20049              a win).
20050      Branch: perl
20051            ! embed.h embed.pl embedvar.h global.sym hv.c objXSUB.h op.c
20052            ! opcode.h opnames.h perlapi.c perlapi.h pod/perlapi.pod
20053            ! pod/perlintern.pod pp_hot.c proto.h sv.c
20054 ____________________________________________________________________________
20055 [  7015] By: jhi                                   on 2000/09/02  17:48:59
20056         Log: This is 5.7.0.
20057      Branch: perl
20058            ! Changes
20059 ____________________________________________________________________________
20060 [  7014] By: jhi                                   on 2000/09/02  17:35:45
20061         Log: Changes and patchlevel tweaks.
20062      Branch: perl
20063            ! Changes patchlevel.h
20064 ____________________________________________________________________________
20065 [  7013] By: jhi                                   on 2000/09/02  17:30:50
20066         Log: Update Changes.
20067      Branch: perl
20068            ! Changes patchlevel.h
20069 ____________________________________________________________________________
20070 [  7012] By: nick                                  on 2000/09/02  17:25:20
20071         Log: More %{} and other deref special casing - do not pass to 'nomethod'.
20072      Branch: perl
20073            ! gv.c lib/overload.pm
20074 ____________________________________________________________________________
20075 [  7011] By: jhi                                   on 2000/09/02  17:16:25
20076         Log: Update perlhist.
20077      Branch: perl
20078            ! pod/perlhist.pod
20079 ____________________________________________________________________________
20080 [  7010] By: jhi                                   on 2000/09/02  17:01:35
20081         Log: perldelta nits.
20082      Branch: perl
20083            ! pod/perldelta.pod
20084 ____________________________________________________________________________
20085 [  7009] By: nick                                  on 2000/09/02  16:48:35
20086         Log: If overloaded %{} etc. return the object do not loop.
20087              Thus  sub deref { $_[0] } functions if object is wanted type.
20088      Branch: perl
20089            ! pp.h
20090 ____________________________________________________________________________
20091 [  7008] By: jhi                                   on 2000/09/02  16:26:11
20092         Log: Retab MANIFEST.
20093      Branch: perl
20094            ! ext/Storable/MANIFEST
20095 ____________________________________________________________________________
20096 [  7007] By: jhi                                   on 2000/09/02  16:23:02
20097         Log: Make certain cc is set before trying to run it.
20098      Branch: perl
20099            ! hints/hpux.sh hints/irix_6.sh hints/solaris_2.sh
20100 ____________________________________________________________________________
20101 [  7006] By: jhi                                   on 2000/09/02  15:45:41
20102         Log: Unicode notes.
20103      Branch: perl
20104            ! pod/perldelta.pod
20105 ____________________________________________________________________________
20106 [  7005] By: jhi                                   on 2000/09/02  15:42:11
20107         Log: Various Configure nits by Philip Newton,
20108              plus the ebcdic one by me.
20109      Branch: metaconfig
20110            + U/modified/pager.U
20111            ! U/ebcdic/ebcdic.U U/modified/Finish.U U/modified/Guess.U
20112      Branch: metaconfig/U/perl
20113            ! Devel.U quadfio.U
20114      Branch: perl
20115            ! Configure config_h.SH
20116 ____________________________________________________________________________
20117 [  7004] By: jhi                                   on 2000/09/02  15:06:14
20118         Log: Apparently avoiding the swapping is too costly.
20119              
20120              From: "Ben Tilly" <ben_tilly@hotmail.com>
20121              Subject: Re: the door is closed.
20122              Date: Fri, 01 Sep 2000 20:23:16 EDT
20123              Message-ID: <LAW2-F2963JkUwWpSWe00000904@hotmail.com>
20124      Branch: perl
20125            ! pod/perlfaq4.pod
20126 ____________________________________________________________________________
20127 [  7003] By: nick                                  on 2000/09/02  12:26:04
20128         Log: Undo part of change 6489 which looks like a bulk edit which
20129              changed _all_ gv_efullname3() calls to gv_efullname4() calls.
20130              The supressing of main:: on return from select() is undesirable.
20131      Branch: perl
20132            ! pp_sys.c
20133 ____________________________________________________________________________
20134 [  7002] By: jhi                                   on 2000/09/01  23:08:54
20135         Log: Update Changes.
20136      Branch: perl
20137            ! Changes patchlevel.h
20138 ____________________________________________________________________________
20139 [  7001] By: jhi                                   on 2000/09/01  23:00:13
20140         Log: Subject: [PATCH: 6996] minimal removal of 8 bit chrs from perlebcdic.pod
20141              From: Peter Prymmer <pvhp@forte.com>
20142              Date: Fri, 1 Sep 2000 15:50:57 -0700 (PDT)
20143              Message-ID: <Pine.OSF.4.10.10009011542550.147696-100000@aspara.forte.com>
20144              
20145              plus rework the http: spots as suggested by Tom Christiansen,
20146              plus regen perltoc.
20147      Branch: perl
20148            ! README.os2 pod/perl56delta.pod pod/perlebcdic.pod
20149            ! pod/perlguts.pod pod/perltoc.pod pod/perlxs.pod
20150 ____________________________________________________________________________
20151 [  7000] By: jhi                                   on 2000/09/01  22:36:01
20152         Log: Only the first line, thank you very much.
20153      Branch: perl
20154            ! hints/solaris_2.sh
20155 ____________________________________________________________________________
20156 [  6999] By: gsar                                  on 2000/09/01  22:16:40
20157         Log: change#6791 accidentally clobbered change#6710, put it back
20158      Branch: perl
20159            ! win32/win32.c
20160 ____________________________________________________________________________
20161 [  6998] By: jhi                                   on 2000/09/01  22:14:16
20162         Log: Mention the HP-UX LP64 freak failure.
20163      Branch: perl
20164            ! pod/perldelta.pod
20165 ____________________________________________________________________________
20166 [  6997] By: jhi                                   on 2000/09/01  21:48:32
20167         Log: Detypo.
20168      Branch: perl
20169            ! hints/hpux.sh
20170 ____________________________________________________________________________
20171 [  6996] By: jhi                                   on 2000/09/01  21:27:10
20172         Log: Update Changes.
20173      Branch: perl
20174            ! Changes patchlevel.h
20175 ____________________________________________________________________________
20176 [  6995] By: jhi                                   on 2000/09/01  21:14:24
20177         Log: Mi splgn s gnin.g
20178      Branch: perl
20179            ! pp_ctl.c
20180 ____________________________________________________________________________
20181 [  6994] By: jhi                                   on 2000/09/01  21:09:54
20182         Log: Subject: http:// in L<>
20183              From: Nicholas Clark <nick@ccl4.org>
20184              Date: Fri, 1 Sep 2000 22:03:21 +0100
20185              Message-ID: <20000901220321.B72074@plum.flirble.org>
20186      Branch: perl
20187            ! README.os2 pod/perl56delta.pod pod/perlxs.pod
20188 ____________________________________________________________________________
20189 [  6993] By: jhi                                   on 2000/09/01  21:06:54
20190         Log: Update to Storable 1.0, from Raphael Manfredi.
20191      Branch: perl
20192            ! ext/Storable/ChangeLog ext/Storable/MANIFEST
20193            ! ext/Storable/Makefile.PL ext/Storable/README
20194            ! ext/Storable/Storable.pm ext/Storable/Storable.xs
20195            ! t/lib/st-06compat.t t/lib/st-blessed.t t/lib/st-canonical.t
20196            ! t/lib/st-dclone.t t/lib/st-dump.pl t/lib/st-forgive.t
20197            ! t/lib/st-freeze.t t/lib/st-overload.t t/lib/st-recurse.t
20198            ! t/lib/st-retrieve.t t/lib/st-store.t t/lib/st-tied.t
20199            ! t/lib/st-tiedhook.t t/lib/st-tieditems.t
20200 ____________________________________________________________________________
20201 [  6992] By: jhi                                   on 2000/09/01  20:43:05
20202         Log: Mention known sfio+linux buglet.
20203      Branch: perl
20204            ! pod/perldelta.pod
20205 ____________________________________________________________________________
20206 [  6991] By: jhi                                   on 2000/09/01  20:40:11
20207         Log: Subject: Re: [PATCH perl@6962] 2 more vms.c fix-ups and status
20208              From: Peter Prymmer <pvhp@forte.com>
20209              Date: Fri, 1 Sep 2000 12:03:38 -0700 (PDT)
20210              Message-ID: <Pine.OSF.4.10.10009011140240.147696-100000@aspara.forte.com>
20211      Branch: perl
20212            ! vms/vms.c
20213 ____________________________________________________________________________
20214 [  6990] By: jhi                                   on 2000/09/01  20:25:26
20215         Log: Retract #6986.
20216      Branch: perl
20217            ! hints/solaris_2.sh
20218 ____________________________________________________________________________
20219 [  6989] By: jhi                                   on 2000/09/01  20:23:00
20220         Log: Mergesort is back.
20221      Branch: perl
20222            ! pod/perldelta.pod pod/perltoc.pod pp_ctl.c
20223 ____________________________________________________________________________
20224 [  6988] By: jhi                                   on 2000/09/01  19:37:40
20225         Log: Subject: [PATCH] Fix vec() / utf8   (was Re: bitvec ops still broken with utf8 -- or not?)
20226              From: Mike Guy <mjtg@cam.ac.uk>
20227              Date: Fri, 01 Sep 2000 17:43:33 +0100
20228              Message-Id: <E13Utuf-0004Bw-00@draco.cus.cam.ac.uk>
20229      Branch: perl
20230            ! doop.c embed.pl perlapi.c pod/perlapi.pod pod/perldiag.pod
20231            ! pod/perlfunc.pod proto.h t/op/vec.t utf8.c
20232 ____________________________________________________________________________
20233 [  6987] By: jhi                                   on 2000/09/01  19:17:10
20234         Log: Regen perltoc.
20235      Branch: perl
20236            ! pod/perltoc.pod
20237 ____________________________________________________________________________
20238 [  6986] By: jhi                                   on 2000/09/01  18:51:10
20239         Log: Subject: Re: Solaris x86 has no SPARC libraries!
20240              From: Lupe Christoph <lupe@lupe-christoph.de>
20241              Date: Fri, 1 Sep 2000 20:41:20 +0200
20242              Message-ID: <20000901204120.P13547@alanya.lupe-christoph.de>
20243      Branch: perl
20244            ! hints/solaris_2.sh
20245 ____________________________________________________________________________
20246 [  6985] By: jhi                                   on 2000/09/01  18:28:10
20247         Log: Update Changes.
20248      Branch: perl
20249            ! Changes patchlevel.h
20250 ____________________________________________________________________________
20251 [  6984] By: jhi                                   on 2000/09/01  18:26:53
20252         Log: Feature ordering tweak.
20253      Branch: perl
20254            ! myconfig.SH
20255 ____________________________________________________________________________
20256 [  6983] By: jhi                                   on 2000/09/01  18:19:50
20257         Log: Subject: Re: [PATCH lib/overload.pm] Sanaty checking of arguments to overload::constant
20258              From: <abigail@foad.org>
20259              Date: Fri, 1 Sep 2000 13:07:32 -0400
20260              Message-ID: <20000901170732.18249.qmail@foad.org>
20261      Branch: perl
20262            ! t/pragma/overload.t
20263 ____________________________________________________________________________
20264 [  6982] By: jhi                                   on 2000/09/01  18:17:54
20265         Log: Rename the PRIElfbl, PRIX64, etc, to be PRIEUfldbl, PRIXU64,
20266              so that case-ignoring systems like DCL can tell them from
20267              PRIefldbl and PRIx64.  Apply Merijn's ccversion patches.
20268      Branch: metaconfig/U/perl
20269            ! Checkcc.U gccvers.U longdblfio.U perlxvf.U quadfio.U
20270      Branch: perl
20271            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
20272            ! config_h.SH configure.com epoc/config.sh hints/aix.sh
20273            ! hints/dec_osf.sh hints/hpux.sh hints/irix_6.sh
20274            ! hints/solaris_2.sh myconfig.SH uconfig.h uconfig.sh
20275            ! vos/config.def vos/config.h vos/config_h.SH_orig
20276            ! win32/config.bc win32/config.gc win32/config.vc
20277 ____________________________________________________________________________
20278 [  6981] By: nick                                  on 2000/09/01  17:21:57
20279         Log: Document UNTIE. Also tweak implementation to suppress the 'inner references'
20280              warning when UNTIE exists and instead pass the cound of extra references to
20281              the UNTIE method.
20282      Branch: perl
20283            ! pod/perltie.pod pp_sys.c
20284 ____________________________________________________________________________
20285 [  6980] By: jhi                                   on 2000/09/01  16:54:44
20286         Log: Subject: [PATCH: 6948] add SCNfldbl to configure.com
20287              From: Peter Prymmer <pvhp@forte.com>
20288              Date: Thu, 31 Aug 2000 18:47:18 -0700 (PDT)
20289              Message-ID: <Pine.OSF.4.10.10008311811060.91659-100000@aspara.forte.com>
20290      Branch: perl
20291            ! configure.com
20292 ____________________________________________________________________________
20293 [  6979] By: jhi                                   on 2000/09/01  16:06:20
20294         Log: Subject: [ID 20000901.017] [PATCH] Basic test failure in an untidy world       
20295              From: Mike Guy <mjtg@cam.ac.uk> 
20296              Date: Fri, 01 Sep 2000 16:49:27 +0100
20297              Message-Id: <E13Ut4J-0002sd-00@draco.cus.cam.ac.uk>  
20298      Branch: perl
20299            ! t/base/rs.t
20300 ____________________________________________________________________________
20301 [  6978] By: jhi                                   on 2000/09/01  16:00:42
20302         Log: Update to PodParser 1.18, from Brad Appleton.
20303      Branch: perl
20304            ! lib/Pod/Checker.pm t/pod/find.t
20305 ____________________________________________________________________________
20306 [  6977] By: jhi                                   on 2000/09/01  14:48:58
20307         Log: Subject: Nit in Configure (bleadperl@6961)
20308              From: Lupe Christoph <lupe@lupe-christoph.de>
20309              Date: Fri, 1 Sep 2000 16:34:29 +0200
20310              Message-ID: <20000901163429.K13547@alanya.lupe-christoph.de>
20311      Branch: metaconfig
20312            ! U/compline/ccflags.U
20313      Branch: perl
20314            ! Configure config_h.SH
20315 ____________________________________________________________________________
20316 [  6976] By: jhi                                   on 2000/09/01  14:39:52
20317         Log: Update Changes.
20318      Branch: perl
20319            ! Changes patchlevel.h
20320 ____________________________________________________________________________
20321 [  6975] By: jhi                                   on 2000/09/01  14:37:36
20322         Log: microperl config update.
20323      Branch: perl
20324            ! uconfig.h uconfig.sh
20325 ____________________________________________________________________________
20326 [  6974] By: jhi                                   on 2000/09/01  14:36:53
20327         Log: Document known deficiencies.
20328      Branch: perl
20329            ! pod/perldelta.pod
20330 ____________________________________________________________________________
20331 [  6973] By: jhi                                   on 2000/09/01  14:10:20
20332         Log: Mention warnings fixes and updates.
20333      Branch: perl
20334            ! pod/perldelta.pod
20335 ____________________________________________________________________________
20336 [  6972] By: jhi                                   on 2000/09/01  14:01:52
20337         Log: Drop unused argument.
20338              
20339              Subject: Re: [ID 20000831.034] overload::constant and number of arguments. 
20340              From: Spider Boardman <spider@web.zk3.dec.com>
20341              Date: Thu, 31 Aug 2000 16:10:15 -0400
20342              Message-Id: <200008312010.QAA20392@leggy.zk3.dec.com>
20343      Branch: perl
20344            ! toke.c
20345 ____________________________________________________________________________
20346 [  6971] By: jhi                                   on 2000/09/01  13:59:24
20347         Log: Add the overload warnings to perldiag.
20348      Branch: perl
20349            ! lib/overload.pm pod/perldiag.pod
20350 ____________________________________________________________________________
20351 [  6970] By: jhi                                   on 2000/09/01  13:55:10
20352         Log: Subject: RE: [PATCH lib/overload.pm] Sanaty checking of arguments to overload::constant
20353              From: "Paul Marquess" <paul_marquess@yahoo.co.uk>
20354              Date: Fri, 1 Sep 2000 13:43:15 +0100 
20355              Message-ID: <001001c01412$32c7dde0$a20a140a@bfs.phone.com>                
20356      Branch: perl
20357            ! lib/overload.pm t/pragma/overload.t
20358 ____________________________________________________________________________
20359 [  6969] By: jhi                                   on 2000/09/01  13:52:27
20360         Log: Subject: [PATCH lib/overload.pm] Sanaty checking of arguments to overload::constant
20361              From: <abigail@foad.org>
20362              Date: Fri, 1 Sep 2000 05:46:54 -0400
20363              Message-ID: <20000901094654.6476.qmail@foad.org>
20364      Branch: perl
20365            ! lib/overload.pm
20366 ____________________________________________________________________________
20367 [  6968] By: jhi                                   on 2000/09/01  13:50:05
20368         Log: Subject: [PATCH@6961] Fix misleading example in perlretut.pod
20369              From: Daniel Chetlin <daniel@chetlin.com>
20370              Date: Fri, 1 Sep 2000 02:10:55 -0700
20371              Message-ID: <20000901021055.C3400@ilmd.chetlin.org>
20372      Branch: perl
20373            ! pod/perlretut.pod
20374 ____________________________________________________________________________
20375 [  6967] By: jhi                                   on 2000/09/01  13:47:54
20376         Log: Part of the solution.
20377              
20378              Subject: Re: [ID 20000807.004] [PATCH] conditional breakpoints leak memory
20379              From: Mike Guy <mjtg@cam.ac.uk>
20380              Date: Fri, 01 Sep 2000 14:16:01 +0100
20381              Message-Id: <E13Uqfp-0006dN-00@draco.cus.cam.ac.uk>
20382      Branch: perl
20383            ! gv.c mg.c
20384 ____________________________________________________________________________
20385 [  6966] By: jhi                                   on 2000/09/01  13:46:17
20386         Log: Subject: CPAN.pm beta 1.57_57 for the core
20387              From: andreas.koenig@anima.de (Andreas J. Koenig)
20388              Date: 01 Sep 2000 15:16:31 +0200
20389              Message-ID: <m3r974z1zk.fsf@ak-71.mind.de>
20390      Branch: perl
20391            ! lib/CPAN.pm lib/CPAN/FirstTime.pm
20392 ____________________________________________________________________________
20393 [  6965] By: jhi                                   on 2000/09/01  13:43:18
20394         Log: Subject: [PATCH perl@6962] 2 more vms.c fix-ups and status
20395              From: "Craig A. Berry" <craig.berry@psinetcs.com>
20396              Date: Fri, 01 Sep 2000 01:47:22 -0500
20397              Message-Id: <4.3.2.7.2.20000901011206.01ca2e88@exchi01>
20398      Branch: perl
20399            ! pod/perldelta.pod vms/vms.c
20400 ____________________________________________________________________________
20401 [  6964] By: jhi                                   on 2000/09/01  13:35:35
20402         Log: File::Temp patches from Andreas König,
20403              
20404              Subject: Re: [ID 20000831.046] OK: perl v5.7.0 +DEVEL6961 on sun4-solaris 2.8  (UNINSTALLED)
20405              From: andreas.koenig@anima.de (Andreas J. Koenig)
20406              Date: 01 Sep 2000 10:07:20 +0200
20407              Message-ID: <m3lmxc1qo7.fsf@ak-71.mind.de>
20408              
20409              Subject: Re: Almost OK: perl v5.7.0 +DEVEL6937 on PA-RISC2.0 11.00 (INSTALLED)
20410              From: andreas.koenig@anima.de (Andreas J. Koenig)
20411              Date: 31 Aug 2000 23:26:08 +0200
20412              Message-ID: <m3bsy92kcv.fsf@ak-71.mind.de>
20413      Branch: perl
20414            ! lib/File/Temp.pm t/lib/ftmp-security.t
20415 ____________________________________________________________________________
20416 [  6963] By: jhi                                   on 2000/09/01  02:22:24
20417         Log: Retract the mergesort code, way too incompatible licensing
20418              and copyrights.
20419      Branch: perl
20420            ! pod/perldelta.pod pp_ctl.c
20421 ____________________________________________________________________________
20422 [  6962] By: jhi                                   on 2000/08/31  23:27:32
20423         Log: Update Changes.
20424      Branch: perl
20425            ! Changes patchlevel.h
20426 ____________________________________________________________________________
20427 [  6961] By: jhi                                   on 2000/08/31  23:20:04
20428         Log: Small tweaks all over.
20429      Branch: metaconfig
20430            ! U/compline/d_gconvert.U
20431      Branch: perl
20432            ! AUTHORS Configure config_h.SH pp_ctl.c
20433 ____________________________________________________________________________
20434 [  6960] By: jhi                                   on 2000/08/31  22:39:36
20435         Log: Further rewording.
20436      Branch: perl
20437            ! pp_ctl.c
20438 ____________________________________________________________________________
20439 [  6959] By: jhi                                   on 2000/08/31  21:26:44
20440         Log: More address tweaking.
20441      Branch: perl
20442            ! AUTHORS Changes
20443 ____________________________________________________________________________
20444 [  6958] By: jhi                                   on 2000/08/31  20:47:25
20445         Log: AUTHORS tweaks, from Peter Prymmer.
20446              
20447              Subject: [PATCH: 6948] mvs doesn't exist (not any more)
20448              From: Peter Prymmer <pvhp@forte.com>
20449              Date: Thu, 31 Aug 2000 12:56:32 -0700 (PDT) 
20450              Message-ID: <Pine.OSF.4.10.10008311248410.91659-100000@aspara.forte.com>
20451      Branch: perl
20452            ! AUTHORS MAINTAIN
20453 ____________________________________________________________________________
20454 [  6957] By: jhi                                   on 2000/08/31  20:34:43
20455         Log: perldelta tweaks.
20456      Branch: perl
20457            ! pod/perldelta.pod
20458 ____________________________________________________________________________
20459 [  6956] By: jhi                                   on 2000/08/31  19:11:06
20460         Log: Regen perltoc.
20461      Branch: perl
20462            ! pod/perltoc.pod
20463 ____________________________________________________________________________
20464 [  6955] By: jhi                                   on 2000/08/31  19:06:30
20465         Log: Clarify the mergesort situation.
20466      Branch: perl
20467            ! pp_ctl.c
20468 ____________________________________________________________________________
20469 [  6954] By: jhi                                   on 2000/08/31  18:24:17
20470         Log: Move the Solaris 7 scan to use64bitall, make the
20471              failure to find 64-bot sparc libc to mention the
20472              possibility of being in an intel, from Lupe and Alan.
20473      Branch: perl
20474            ! hints/solaris_2.sh
20475 ____________________________________________________________________________
20476 [  6953] By: jhi                                   on 2000/08/31  18:09:20
20477         Log: Forget about NV_MAX (#6951).  Various floating point tweaks,
20478              ideas from Eric Fifer, Yitzchak, Alan, and Spider.
20479      Branch: metaconfig
20480            ! U/compline/d_gconvert.U U/threads/archname.U
20481      Branch: metaconfig/U/perl
20482            ! perlxv.U
20483      Branch: perl
20484            ! Configure config_h.SH sv.c
20485 ____________________________________________________________________________
20486 [  6952] By: jhi                                   on 2000/08/31  17:42:24
20487         Log: :: not allowed in pathnames, change to .
20488              
20489              Subject: [PATCH perl@6938] cygwin port
20490              From: "Fifer, Eric" <EFifer@sanwaint.com>
20491              Date: Thu, 31 Aug 2000 16:32:59 +0100
20492              Message-ID: <779F20BCCE5AD31186A50008C75D997917179A@silldn_mail1.sanwaint.com>
20493      Branch: metaconfig/U/perl
20494            ! perlxv.U
20495 ____________________________________________________________________________
20496 [  6951] By: jhi                                   on 2000/08/31  17:02:05
20497         Log: Try to deduce NV_MAX.  Really should be Configure fodder.
20498      Branch: perl
20499            ! perl.h
20500 ____________________________________________________________________________
20501 [  6950] By: jhi                                   on 2000/08/31  16:26:08
20502         Log: More author updates.
20503              
20504              Subject: Re: [PATCH] Mark-Jason Dominus Does Exist
20505              From: Simon Cozens <simon@cozens.net>
20506              Date: Thu, 31 Aug 2000 17:13:32 +0100
20507              Message-ID: <20000831171332.A22498@deep-dark-truthful-mirror.perlhacker.org>
20508      Branch: perl
20509            ! AUTHORS
20510 ____________________________________________________________________________
20511 [  6949] By: jhi                                   on 2000/08/31  16:04:49
20512         Log: POSIX doesn't report long double values under -Duselongdouble
20513              when the long doubles are "real" (bigger than doubles).
20514              
20515              Subject: [ID 20000831.014] Not OK: perl v5.7.0 +DEVEL6919 on alpha-dec_osf-ld 5.1
20516              From: Spider Boardman <spider@peano.zk3.dec.com>
20517              Date: Thu, 31 Aug 2000 11:48:48 -0400 (EDT)
20518              Message-Id: <200008311548.LAA0000161952@peano.zk3.dec.com>
20519      Branch: perl
20520            ! ext/POSIX/POSIX.xs
20521 ____________________________________________________________________________
20522 [  6948] By: jhi                                   on 2000/08/31  15:25:10
20523         Log: Update Changes.
20524      Branch: perl
20525            ! Changes patchlevel.h
20526 ____________________________________________________________________________
20527 [  6947] By: jhi                                   on 2000/08/31  15:22:29
20528         Log: Document UNTIE in a very minimalistic way.
20529      Branch: perl
20530            ! pod/perlfunc.pod pod/perltie.pod
20531 ____________________________________________________________________________
20532 [  6946] By: jhi                                   on 2000/08/31  15:15:23
20533         Log: Document known failures.
20534      Branch: perl
20535            ! pod/perldelta.pod
20536 ____________________________________________________________________________
20537 [  6945] By: jhi                                   on 2000/08/31  15:07:00
20538         Log: Don't attach -ld to the archname if pointless.
20539      Branch: metaconfig
20540            ! U/threads/archname.U
20541      Branch: perl
20542            ! Configure config_h.SH
20543 ____________________________________________________________________________
20544 [  6944] By: jhi                                   on 2000/08/31  14:37:42
20545         Log: Wrap the test in eval.
20546              
20547              Subject: Re: [ID 20000831.009] Not OK: perl v5.7.0 +DEVEL6932 on sun4-solaris2.8 (UNINSTALLED)
20548              From: Tim Jenness <timj@jach.hawaii.edu>
20549              Date: Thu, 31 Aug 2000 03:39:33 -1000 (HST)
20550              Message-ID: <Pine.LNX.4.21.0008310311190.7444-100000@lapaki.jach.hawaii.edu>
20551      Branch: perl
20552            ! t/lib/ftmp-security.t
20553 ____________________________________________________________________________
20554 [  6943] By: jhi                                   on 2000/08/31  14:30:57
20555         Log: Make -Dusemorebits find long doubles in Solaris.
20556      Branch: perl
20557            ! hints/solaris_2.sh
20558 ____________________________________________________________________________
20559 [  6942] By: jhi                                   on 2000/08/31  13:48:45
20560         Log: Clarify the third case of ftmp-security warnings.
20561      Branch: perl
20562            ! INSTALL
20563 ____________________________________________________________________________
20564 [  6941] By: jhi                                   on 2000/08/31  13:40:31
20565         Log: Subject: [PATCH] Re: [ID 20000830.048] Not OK: perl v5.7.0 +DEVEL6938 on i686-linux 2.2.13
20566              From: <abigail@foad.org>
20567              Date: Thu, 31 Aug 2000 01:35:05 -0400
20568              Message-ID: <20000831053505.32120.qmail@foad.org>
20569      Branch: perl
20570            ! pod/perldelta.pod
20571 ____________________________________________________________________________
20572 [  6940] By: jhi                                   on 2000/08/31  13:38:48
20573         Log: Issue useful diagnostic on unknown pod commands.
20574              
20575              Subject: [PATCH lib/Pod/Man.pm] Re: [ID 20000830.048]
20576              From: <abigail@foad.org>
20577              Date: Thu, 31 Aug 2000 03:41:18 -0400
20578              Message-ID: <20000831074118.24880.qmail@foad.org>
20579      Branch: perl
20580            ! lib/Pod/Man.pm
20581 ____________________________________________________________________________
20582 [  6939] By: jhi                                   on 2000/08/31  13:34:33
20583         Log: Reveal Borland's isnan.
20584              
20585              Subject: build with BC++ tweak
20586              From: "Konovalov, Vadim" <vkonovalov@lucent.com>
20587              Date: Thu, 31 Aug 2000 13:09:37 +0400
20588              Message-ID: <402099F49BEED211999700805FC7359F6FACA6@ru0028exch01.spb.lucent.com>
20589      Branch: perl
20590            ! win32/win32.h
20591 ____________________________________________________________________________
20592 [  6938] By: jhi                                   on 2000/08/31  05:01:20
20593         Log: Update Changes.
20594      Branch: perl
20595            ! Changes patchlevel.h
20596 ____________________________________________________________________________
20597 [  6937] By: jhi                                   on 2000/08/31  04:26:23
20598         Log: sscanf() may be the only way to read long doubles from strings.
20599      Branch: metaconfig/U/perl
20600            ! longdblfio.U
20601      Branch: perl
20602            ! Configure config_h.SH perl.h util.c
20603 ____________________________________________________________________________
20604 [  6936] By: jhi                                   on 2000/08/31  04:18:19
20605         Log: The #6929 was too skimpy.
20606      Branch: perl
20607            ! sv.c
20608 ____________________________________________________________________________
20609 [  6935] By: jhi                                   on 2000/08/31  02:47:07
20610         Log: Subject: Re: typos in pods
20611              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
20612              Date: Wed, 30 Aug 2000 19:25:34 -0700
20613              Message-ID: <eIcr5gzkg25X092yn@efn.org>
20614      Branch: perl
20615            ! lib/CPAN.pm lib/Pod/Checker.pm pod/perlmodlib.PL
20616 ____________________________________________________________________________
20617 [  6934] By: jhi                                   on 2000/08/31  02:42:55
20618         Log: Missed one Unicode file.
20619      Branch: perl
20620            + lib/unicode/UCDFF301.html
20621 ____________________________________________________________________________
20622 [  6933] By: jhi                                   on 2000/08/30  23:42:27
20623         Log: Update Changes.
20624      Branch: perl
20625            ! Changes patchlevel.h
20626 ____________________________________________________________________________
20627 [  6932] By: jhi                                   on 2000/08/30  23:40:07
20628         Log: Mention UNTIE in perldelta.  Still needs documenting
20629              in perltie et alia.
20630      Branch: perl
20631            ! pod/perldelta.pod
20632 ____________________________________________________________________________
20633 [  6931] By: jhi                                   on 2000/08/30  23:36:02
20634         Log: Subject: [PATCH] Don't use big-Oh when talking about lower bounds.
20635              From: <abigail@foad.org>
20636              Date: Wed, 30 Aug 2000 19:28:07 -0400
20637              Message-ID: <20000830232807.305.qmail@foad.org>
20638      Branch: perl
20639            ! pod/perldelta.pod
20640 ____________________________________________________________________________
20641 [  6930] By: jhi                                   on 2000/08/30  23:32:40
20642         Log: Update to Unicode 3.0.1.
20643      Branch: perl
20644            + lib/unicode/BidiMirr.txt lib/unicode/CaseFold.txt
20645            + lib/unicode/PropList.txt lib/unicode/README.perl
20646            + lib/unicode/UCD301.html lib/unicode/Unicode.301
20647            - lib/unicode/Props.txt lib/unicode/UCD300.html
20648            - lib/unicode/Unicode.300 lib/unicode/Unicode3.html
20649            ! (edit 257 files)
20650 ____________________________________________________________________________
20651 [  6929] By: jhi                                   on 2000/08/30  22:38:18
20652         Log: Heap decorruption.
20653              
20654              Subject: [PATCH] Fix for miniperl coredump on Solaris with -Duselongdouble
20655              From: Alan Burlison <Alan.Burlison@uk.sun.com>
20656              Date: Wed, 30 Aug 2000 22:39:52 +0100
20657              Message-ID: <39AD7F28.A06533CF@uk.sun.com>
20658      Branch: perl
20659            ! sv.c
20660 ____________________________________________________________________________
20661 [  6928] By: jhi                                   on 2000/08/30  22:29:34
20662         Log: Retract the dummy test, skip the security tests (instead of failing),
20663              explain what the warnings mean.
20664      Branch: perl
20665            ! INSTALL lib/File/Temp.pm t/lib/ftmp-security.t
20666 ____________________________________________________________________________
20667 [  6927] By: jhi                                   on 2000/08/30  22:14:13
20668         Log: Change the internal implementation of sort() to be mergesort
20669              instead of quicksort, from John Linderman <jpl@research.att.com>.
20670              Gives us better worst case, better average case, and stability.
20671              What's there not to like?  (Small fixes for threaded builds
20672              were required).
20673      Branch: perl
20674            ! pod/perldelta.pod pp_ctl.c t/op/runlevel.t
20675 ____________________________________________________________________________
20676 [  6926] By: jhi                                   on 2000/08/30  20:55:20
20677         Log: A better fix for the Socket building problem from Craig Berry.
20678      Branch: perl
20679            ! vms/vms.c
20680 ____________________________________________________________________________
20681 [  6925] By: jhi                                   on 2000/08/30  20:20:25
20682         Log: Subject: [PATCH] Re: UNTIE method 
20683              From: Nick Ing-Simmons <nik@tiuk.ti.com>
20684              Date: Wed, 30 Aug 2000 18:26:55 +0100 (BST)
20685              Message-Id: <200008301726.SAA01114@mikado.tiuk.ti.com>
20686      Branch: perl
20687            ! pp_sys.c t/op/tie.t
20688 ____________________________________________________________________________
20689 [  6924] By: jhi                                   on 2000/08/30  20:17:11
20690         Log: Subject: Re: not OK, 6919 on Alpha VMS V 7.1 w/ DECC 6.0-001
20691              From: "Craig A. Berry" <craig.berry@psinetcs.com>
20692              Date: Wed, 30 Aug 2000 15:03:14 -0500
20693              Message-Id: <4.3.2.7.2.20000830144622.028fe7a8@exchi01>
20694      Branch: perl
20695            ! vms/vms.c
20696 ____________________________________________________________________________
20697 [  6923] By: jhi                                   on 2000/08/30  20:15:18
20698         Log: Subject: [PATCH perl@6889] fix Storable on VMS by fixing my_fwrite()
20699              From: "Craig A. Berry" <craig.berry@psinetcs.com>
20700              Date: Wed, 30 Aug 2000 13:30:36 -0500
20701              Message-Id: <4.3.2.7.2.20000830130617.02b8b968@exchi01>
20702      Branch: perl
20703            ! vms/vms.c
20704 ____________________________________________________________________________
20705 [  6922] By: jhi                                   on 2000/08/30  19:54:43
20706         Log: Better options for rsync.
20707      Branch: perl
20708            ! pod/perlhack.pod
20709 ____________________________________________________________________________
20710 [  6921] By: jhi                                   on 2000/08/30  19:40:16
20711         Log: Subject: [ID 20000830.036] [DOC] chom?p %hash not documented
20712              From: Rick Delaney <rick@consumercontact.com>
20713              Date: Wed, 30 Aug 2000 15:36:55 -0400 (EDT)
20714              Message-Id: <Pine.UW2.4.10.10008301535210.1949-100000@consumer>
20715      Branch: perl
20716            ! pod/perlfunc.pod
20717 ____________________________________________________________________________
20718 [  6920] By: jhi                                   on 2000/08/30  19:36:40
20719         Log: Subject: [PATCH 6889] add a few ldbl formats to configure.com
20720              From: Peter Prymmer <pvhp@forte.com>
20721              Date: Tue, 29 Aug 2000 17:36:00 -0700 (PDT)
20722              Message-ID: <Pine.OSF.4.10.10008291720260.502507-100000@aspara.forte.com>
20723      Branch: perl
20724            ! configure.com
20725 ____________________________________________________________________________
20726 [  6919] By: jhi                                   on 2000/08/30  14:52:02
20727         Log: Update Changes.
20728      Branch: perl
20729            ! Changes patchlevel.h
20730 ____________________________________________________________________________
20731 [  6918] By: jhi                                   on 2000/08/30  14:48:34
20732         Log: NVs not necessarily doubles, as pointed out by Yitzchak.
20733      Branch: perl
20734            ! lib/ExtUtils/typemap
20735 ____________________________________________________________________________
20736 [  6917] By: jhi                                   on 2000/08/30  14:46:34
20737         Log: Subject: typos in pods
20738              From: Nicholas Clark <nick@ccl4.org>
20739              Date: Wed, 30 Aug 2000 01:12:50 +0100
20740              Message-ID: <20000830011249.A61388@plum.flirble.org>
20741      Branch: perl
20742            ! pod/perldbmfilter.pod pod/perldebtut.pod pod/perldebug.pod
20743            ! pod/perldiag.pod pod/perlebcdic.pod pod/perlfunc.pod
20744            ! pod/perlguts.pod pod/perlhack.pod pod/perlmodlib.pod
20745            ! pod/perlnewmod.pod pod/perlport.pod pod/perltoc.pod
20746 ____________________________________________________________________________
20747 [  6916] By: jhi                                   on 2000/08/30  14:19:09
20748         Log: Document Storable problems on Crays.  (Will have
20749              to document all the other Storable problems, too.)
20750      Branch: perl
20751            ! pod/perldelta.pod
20752 ____________________________________________________________________________
20753 [  6915] By: jhi                                   on 2000/08/30  14:06:02
20754         Log: Subject: [PATCH] fix misc cast warnings
20755              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
20756              Date: Tue, 29 Aug 2000 23:16:14 -0700
20757              Message-ID: <uaKr5gzkgGwQ092yn@efn.org>
20758      Branch: perl
20759            ! lib/ExtUtils/typemap os2/OS2/ExtAttr/ExtAttr.xs
20760            ! os2/OS2/ExtAttr/typemap os2/OS2/REXX/REXX.xs os2/os2.c
20761            ! os2/os2ish.h
20762 ____________________________________________________________________________
20763 [  6914] By: jhi                                   on 2000/08/30  14:03:45
20764         Log: Timestamp mismatch again.  Need to fix this dependence on
20765              config_h.SH timestamp, since it's the contents of config_h.SH
20766              that matter.
20767      Branch: perl
20768            ! uconfig.h uconfig.sh
20769 ____________________________________________________________________________
20770 [  6913] By: jhi                                   on 2000/08/30  13:54:06
20771         Log: Don't say "Perl 5.0 source kit".
20772      Branch: perl
20773            ! perl.c
20774 ____________________________________________________________________________
20775 [  6912] By: jhi                                   on 2000/08/30  13:51:24
20776         Log: Reset archname and archname64 always, forcing them be
20777              recomputed at each Configure run, make Configure and
20778              the hints files agree on the naming of largefiles variables.
20779      Branch: metaconfig
20780            ! U/threads/archname.U
20781      Branch: metaconfig/U/perl
20782            ! use64bits.U
20783      Branch: perl
20784            ! Configure config_h.SH configpm hints/aix.sh hints/hpux.sh
20785            ! hints/linux.sh hints/solaris_2.sh
20786 ____________________________________________________________________________
20787 [  6911] By: jhi                                   on 2000/08/30  13:30:13
20788         Log: Put back the slice accidentally removed by #6907.
20789      Branch: perl
20790            ! hints/solaris_2.sh
20791 ____________________________________________________________________________
20792 [  6910] By: jhi                                   on 2000/08/30  01:24:26
20793         Log: Be consistent: other Net::get* do export theirs.
20794              
20795              Subject: Re: Net::protoent does not export 'getproto'
20796              From: Yasushi Nakajima <sey@jkc.co.jp>
20797              Date: Wed, 30 Aug 2000 09:53:14 +0900
20798              Message-Id: <200008300051.DAA24700@taku.hut.fi>
20799      Branch: perl
20800            ! lib/Net/protoent.pm
20801 ____________________________________________________________________________
20802 [  6909] By: jhi                                   on 2000/08/30  01:17:25
20803         Log: Subject: Re: [ID 20000829.020] perl -e 'package; print __PACKAGE__' core dumps 
20804              From: Gurusamy Sarathy <gsar@ActiveState.com>
20805              Date: Tue, 29 Aug 2000 17:17:07 -0700
20806              Message-Id: <200008300017.RAA25382@smtp3.ActiveState.com>
20807      Branch: perl
20808            ! cop.h
20809 ____________________________________________________________________________
20810 [  6908] By: jhi                                   on 2000/08/30  00:58:05
20811         Log: Update Changes.
20812      Branch: perl
20813            ! Changes patchlevel.h
20814 ____________________________________________________________________________
20815 [  6907] By: jhi                                   on 2000/08/30  00:57:22
20816         Log: Introduce ccname to keep track of what compiler kind of we have.
20817      Branch: metaconfig/U/perl
20818            ! Checkcc.U gccvers.U
20819      Branch: perl
20820            ! Configure config_h.SH hints/solaris_2.sh
20821 ____________________________________________________________________________
20822 [  6906] By: jhi                                   on 2000/08/30  00:25:47
20823         Log: Put back the flags dump as reasoned in
20824              
20825              Subject: Re: [PATCH] Glob dumping
20826              From: Mike Guy <mjtg@cam.ac.uk> 
20827              Date: Tue, 29 Aug 2000 21:41:32 +0100
20828              Message-Id: <E13TsCK-0007iL-00@draco.cus.cam.ac.uk>
20829      Branch: perl
20830            ! dump.c t/lib/peek.t
20831 ____________________________________________________________________________
20832 [  6905] By: jhi                                   on 2000/08/30  00:16:17
20833         Log: Make the epsilon to be relative, not absolute.
20834              
20835              Subject: Re: [ID 20000829.039] Not OK: perl v5.7.0 +DEVEL6899 +[ID on alpha-dec_osf-ld 5.1 (UNINSTALLED)
20836              From: Spider Boardman <spider-perl@orb.nashua.nh.us>
20837              Date: Tue, 29 Aug 2000 19:58:56 -0400
20838              Message-Id: <200008292358.TAA31114@leggy.zk3.dec.com>
20839      Branch: perl
20840            ! t/lib/trig.t
20841 ____________________________________________________________________________
20842 [  6904] By: jhi                                   on 2000/08/30  00:13:09
20843         Log: From now on, Gisle is on my list of usual suspects :-)
20844              Retract #6902.
20845      Branch: perl
20846            ! ext/Opcode/Safe.pm
20847 ____________________________________________________________________________
20848 [  6903] By: jhi                                   on 2000/08/29  23:51:20
20849         Log: Subject: [PATCH perl@6889] Chuck Lane's OpenVMS piping improvements
20850              From: "Craig A. Berry" <craig.berry@psinetcs.com>
20851              Date: Tue, 29 Aug 2000 18:43:26 -0500
20852              Message-Id: <4.3.2.7.2.20000829180705.01b005b8@exchi01>
20853      Branch: perl
20854            + vms/vmspipe.com
20855            ! MANIFEST t/io/openpid.t vms/descrip_mms.template vms/test.com
20856            ! vms/vms.c
20857 ____________________________________________________________________________
20858 [  6902] By: jhi                                   on 2000/08/29  23:44:14
20859         Log: Retry what #6882 attempted.
20860              
20861              Subject: Re: [ID 20000829.004] Sharing leak root name into safe compartment
20862              From: Gisle Aas <gisle@ActiveState.com>
20863              Date: 30 Aug 2000 00:33:09 +0200
20864              Message-ID: <m3pumry9y2.fsf@eik.g.aas.no>
20865      Branch: perl
20866            ! ext/Opcode/Safe.pm
20867 ____________________________________________________________________________
20868 [  6901] By: jhi                                   on 2000/08/29  22:59:32
20869         Log: Subject: [PATCH 5.6.0] [ID 20000608.006] panic: magic_killbackrefs with blessed global weakrefs
20870              From: Hugo <hv@crypt.compulink.co.uk>
20871              Date: Mon, 12 Jun 2000 19:36:08 +0100
20872              Message-Id: <200006121836.TAA16977@crypt.compulink.co.uk>
20873      Branch: perl
20874            ! sv.c
20875 ____________________________________________________________________________
20876 [  6900] By: jhi                                   on 2000/08/29  22:58:35
20877         Log: Admit that we are leaking scalars.
20878              
20879              Subject: [ID 20000829.037] Not OK: perl v5.7.0 +DEVEL6899 on alpha-dec_osf 4.0f (UNINSTALLED)
20880              From: Spider Boardman <spider@leggy.zk3.dec.com>
20881              Date: Tue, 29 Aug 2000 18:48:29 -0400
20882              Message-Id: <200008292248.SAA31507@leggy.zk3.dec.com>
20883      Branch: perl
20884            ! t/pragma/warnings.t
20885 ____________________________________________________________________________
20886 [  6899] By: jhi                                   on 2000/08/29  20:53:13
20887         Log: Update Changes.
20888      Branch: perl
20889            ! Changes patchlevel.h
20890 ____________________________________________________________________________
20891 [  6898] By: jhi                                   on 2000/08/29  20:46:21
20892         Log: Undo namespace pollution of #6878.
20893              
20894              Subject: Re: Net::protoent does not export 'getproto'
20895              From: Mike Guy <mjtg@cam.ac.uk>
20896              Date: Tue, 29 Aug 2000 21:32:37 +0100
20897              Message-Id: <E13Ts3h-0007eN-00@draco.cus.cam.ac.uk>
20898      Branch: perl
20899            ! lib/Net/protoent.pm
20900 ____________________________________________________________________________
20901 [  6897] By: jhi                                   on 2000/08/29  20:44:29
20902         Log: Subject: [PATCH: 6889] updates to perlebcdic.pod
20903              From: Peter Prymmer <pvhp@forte.com>
20904              Date: Tue, 29 Aug 2000 13:32:41 -0700 (PDT)
20905              Message-ID: <Pine.OSF.4.10.10008291327500.502507-100000@aspara.forte.com>
20906      Branch: perl
20907            ! pod/perlebcdic.pod
20908 ____________________________________________________________________________
20909 [  6896] By: jhi                                   on 2000/08/29  20:40:57
20910         Log: There's no point repeating the 'revision' (5) of perl5.
20911      Branch: metaconfig/U/perl
20912            ! Devel.U patchlevel.U
20913      Branch: perl
20914            ! Configure config_h.SH
20915 ____________________________________________________________________________
20916 [  6895] By: jhi                                   on 2000/08/29  20:16:58
20917         Log: Regen Configure for #6894.
20918      Branch: metaconfig/U/perl
20919            ! perladmin.U
20920      Branch: perl
20921            ! Configure config_h.SH
20922 ____________________________________________________________________________
20923 [  6894] By: jhi                                   on 2000/08/29  19:59:52
20924         Log: Subject: [ID 20000829.023] [PATCH 6868] perlbug@perl.com --> perlbug@perl.org
20925              From: "Philip Newton" <Philip.Newton@gmx.net>
20926              Date: Tue, 29 Aug 2000 21:39:14 +0200
20927              Message-Id: <200008291938.VAA98259@smtp1.nikoma.de>
20928      Branch: perl
20929            ! Configure INSTALL README hints/README.hints hints/bsdos.sh
20930            ! hints/freebsd.sh pod/perl.pod pod/perl56delta.pod
20931            ! pod/perlfaq2.pod pod/perllocale.pod pod/perlxs.pod
20932            ! utils/perlbug.PL
20933 ____________________________________________________________________________
20934 [  6893] By: jhi                                   on 2000/08/29  19:55:30
20935         Log: Subject: [ID 20000829.022] [PATCH 6868] Minor nit in installhtml
20936              From: "Philip Newton" <Philip.Newton@gmx.net>
20937              Date: Tue, 29 Aug 2000 21:39:14 +0200
20938              Message-Id: <200008291938.VAA98255@smtp1.nikoma.de>
20939      Branch: perl
20940            ! installhtml
20941 ____________________________________________________________________________
20942 [  6892] By: jhi                                   on 2000/08/29  19:53:59
20943         Log: Subject: [ID 20000829.026] [PATCH 6868] File::Temp
20944              From: "Philip Newton" <Philip.Newton@gmx.net>
20945              Date: Tue, 29 Aug 2000 21:48:18 +0200
20946              Message-Id: <200008291947.VAA13628@smtp2.nikoma.de>
20947      Branch: perl
20948            ! lib/File/Temp.pm
20949 ____________________________________________________________________________
20950 [  6891] By: jhi                                   on 2000/08/29  18:30:03
20951         Log: Nail the ID 20000828.023.
20952      Branch: perl
20953            ! ext/Storable/Storable.xs
20954 ____________________________________________________________________________
20955 [  6890] By: jhi                                   on 2000/08/29  16:50:17
20956         Log: Under usethreads the dumped variable is IN_PAD.
20957              
20958              Subject: Re: [PATCH] Glob dumping
20959              From: Gisle Aas <gisle@ActiveState.com>
20960              Date: 29 Aug 2000 18:45:05 +0200
20961              Message-ID: <m37l9010fi.fsf@eik.g.aas.no>
20962      Branch: perl
20963            ! t/lib/peek.t
20964 ____________________________________________________________________________
20965 [  6889] By: jhi                                   on 2000/08/29  15:17:37
20966         Log: Update Changes.
20967      Branch: perl
20968            ! Changes patchlevel.h
20969 ____________________________________________________________________________
20970 [  6888] By: jhi                                   on 2000/08/29  14:49:59
20971         Log: Retract #6882, broke the safe tests.
20972      Branch: perl
20973            ! ext/Opcode/Safe.pm
20974 ____________________________________________________________________________
20975 [  6887] By: jhi                                   on 2000/08/29  14:47:06
20976         Log: Subject: Re: [ID 20000525.003] perldoc fails when Makefile.PL is in cwd
20977              From: Gisle Aas <gisle@ActiveState.com> 
20978              Date: 09 Jun 2000 20:00:11 +0200
20979              Message-ID: <m3n1kud9as.fsf@eik.g.aas.no>
20980      Branch: perl
20981            ! utils/perldoc.PL
20982 ____________________________________________________________________________
20983 [  6886] By: jhi                                   on 2000/08/29  14:42:45
20984         Log: The #6881 removed one dump line.
20985      Branch: perl
20986            ! t/lib/peek.t
20987 ____________________________________________________________________________
20988 [  6885] By: jhi                                   on 2000/08/29  14:30:47
20989         Log: Don't forget to tidy up.
20990      Branch: perl
20991            ! t/lib/ftmp-security.t
20992 ____________________________________________________________________________
20993 [  6884] By: jhi                                   on 2000/08/29  14:25:17
20994         Log: Disabling the one test is a bit tricky.
20995      Branch: perl
20996            ! t/lib/ftmp-security.t
20997 ____________________________________________________________________________
20998 [  6883] By: jhi                                   on 2000/08/29  14:16:25
20999         Log: Disable one of the tests for now.
21000      Branch: perl
21001            ! t/lib/ftmp-security.t
21002 ____________________________________________________________________________
21003 [  6882] By: jhi                                   on 2000/08/29  14:05:50
21004         Log: Subject: [ID 20000829.004] Sharing leak root name into safe compartment
21005              From: gisle@aas.no
21006              Date: 29 Aug 2000 10:35:06 -0000
21007              Message-Id: <20000829103506.21538.qmail@eik.g.aas.no>
21008      Branch: perl
21009            ! ext/Opcode/Safe.pm
21010 ____________________________________________________________________________
21011 [  6881] By: jhi                                   on 2000/08/29  14:03:51
21012         Log: Subject: [PATCH] Glob dumping
21013              From: Gisle Aas <gisle@ActiveState.com>
21014              Date: 29 Aug 2000 07:59:42 -0000
21015              Message-ID: <20000829075942.20923.qmail@eik.g.aas.no>
21016      Branch: perl
21017            ! dump.c
21018 ____________________________________________________________________________
21019 [  6880] By: jhi                                   on 2000/08/29  14:02:01
21020         Log: Subject: [PATCH] Warnings in B::Deparse
21021              From: <abigail@foad.org>
21022              Date: Tue, 29 Aug 2000 00:00:01 -0400
21023              Message-ID: <20000829040001.2999.qmail@foad.org>
21024      Branch: perl
21025            ! ext/B/B/Deparse.pm
21026 ____________________________________________________________________________
21027 [  6879] By: jhi                                   on 2000/08/29  13:57:26
21028         Log: Missed a change in #6869.
21029      Branch: perl
21030            ! mg.c
21031 ____________________________________________________________________________
21032 [  6878] By: jhi                                   on 2000/08/29  13:45:04
21033         Log: Subject: Net::protoent does not export 'getproto'
21034              From: Yasushi Nakajima <sey@jkc.co.jp>
21035              Date: Tue, 29 Aug 2000 17:28:57 +0900                 
21036      Branch: perl
21037            ! lib/Net/protoent.pm
21038 ____________________________________________________________________________
21039 [  6877] By: jhi                                   on 2000/08/29  13:39:19
21040         Log: Patches all over for people and the files they (hopefully) care about.
21041      Branch: perl
21042            ! AUTHORS Changes MAINTAIN
21043 ____________________________________________________________________________
21044 [  6876] By: jhi                                   on 2000/08/29  12:53:54
21045         Log: Fix for thinko in #6848.
21046              
21047              Subject: Compiler error in ext/Thread/Thread.c (bleadperl@6866)
21048              From: Lupe Christoph <lupe@lupe-christoph.de>
21049              Date: Tue, 29 Aug 2000 09:04:08 +0200
21050              Message-ID: <20000829090408.V4437@alanya.lupe-christoph.de>
21051      Branch: perl
21052            ! ext/Thread/Thread.xs
21053 ____________________________________________________________________________
21054 [  6875] By: jhi                                   on 2000/08/29  12:50:14
21055         Log: Update to Getopt::Long 2.24, from Johan Vromans.
21056      Branch: perl
21057            ! lib/Getopt/Long.pm t/lib/gol-basic.t t/lib/gol-oo.t
21058 ____________________________________________________________________________
21059 [  6874] By: jhi                                   on 2000/08/29  02:09:53
21060         Log: Use minimal @INC in tests, most of the time just '../lib',
21061              so that we simply can't pick up stuff from other Perls than
21062              the one we are testing.  Pointed out by
21063              
21064              From: Mike Guy <mjtg@cam.ac.uk>
21065              Subject: Re: [PATCH: 6757] make new Storable tests forgiving of places where not built   
21066              Date: Fri, 25 Aug 2000 15:15:59 +0100
21067              Message-Id: <E13SKH1-00031D-00@virgo.cus.cam.ac.uk>
21068      Branch: perl
21069            ! (edit 185 files)
21070 ____________________________________________________________________________
21071 [  6873] By: jhi                                   on 2000/08/29  01:07:11
21072         Log: Subject: [PATCH] Re: files not cleaned even by veryclean
21073              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
21074              Date: Mon, 28 Aug 2000 17:45:52 -0700
21075              Message-ID: <Afwq5gzkg2UB092yn@efn.org>
21076      Branch: perl
21077            ! Makefile.SH hints/os2.sh
21078 ____________________________________________________________________________
21079 [  6872] By: jhi                                   on 2000/08/28  23:33:39
21080         Log: Subject: [PATCH bleedperl@6866] spellings
21081              From: marcel@codewerk.com (Marcel Grunauer)
21082              Date: Tue, 29 Aug 2000 01:19:59 +0200
21083              Message-Id: <200008282319.BAA29862@gandalf.local>
21084      Branch: perl
21085            ! README.os390 pod/perl5004delta.pod pod/perldebtut.pod
21086            ! pod/perlebcdic.pod pod/perlfunc.pod pod/perlguts.pod
21087            ! pod/perlipc.pod pod/perlthrtut.pod pod/perlutil.pod
21088 ____________________________________________________________________________
21089 [  6871] By: jhi                                   on 2000/08/28  23:22:09
21090         Log: Take out the SUIDMAIL thing, that will not be
21091              a problem in 5.7.*.
21092      Branch: perl
21093            ! patchlevel.h
21094 ____________________________________________________________________________
21095 [  6870] By: jhi                                   on 2000/08/28  23:19:30
21096         Log: -S is the silent flag, -s is the strip flag.
21097              
21098              Subject: [PATCH] Re: [PATCH] make no-install          
21099              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
21100              Date: Mon, 28 Aug 2000 15:12:55 -0700
21101              Message-ID: <nPuq5gzkg2FO092yn@efn.org> 
21102      Branch: perl
21103            ! Makefile.SH
21104 ____________________________________________________________________________
21105 [  6869] By: jhi                                   on 2000/08/28  23:12:05
21106         Log: Subject: [PATCH bleedperl@6856] warnings fixes
21107              From: "Paul Marquess" <paul_marquess@yahoo.co.uk>
21108              Date: Mon, 28 Aug 2000 23:55:06 +0100
21109              Message-ID: <000501c01143$0230af80$2014140a@bfs.phone.com>
21110      Branch: perl
21111            ! lib/warnings.pm pod/perllexwarn.pod t/pragma/warn/7fatal
21112            ! warnings.h warnings.pl
21113 ____________________________________________________________________________
21114 [  6868] By: jhi                                   on 2000/08/28  21:38:22
21115         Log: Potential cruft.
21116      Branch: perl
21117            ! Makefile.SH
21118 ____________________________________________________________________________
21119 [  6867] By: jhi                                   on 2000/08/28  21:35:36
21120         Log: Update Changes.
21121      Branch: perl
21122            ! Changes patchlevel.h
21123 ____________________________________________________________________________
21124 [  6866] By: jhi                                   on 2000/08/28  21:33:49
21125         Log: Subject: hv.h Doc Patch
21126              From: Fisher Mark <fisherm@tce.com>
21127              Date: Mon, 28 Aug 2000 16:24:59 -0500
21128              Message-ID: <B9B6874277EED211B1890008C707AF5302881C77@indyexch3.indy.tce.com>
21129      Branch: perl
21130            ! hv.h
21131 ____________________________________________________________________________
21132 [  6865] By: jhi                                   on 2000/08/28  21:02:15
21133         Log: Add -ld to archname on long tr...double platforms.
21134      Branch: metaconfig
21135            ! U/threads/archname.U
21136      Branch: perl
21137            ! Configure config_h.SH
21138 ____________________________________________________________________________
21139 [  6864] By: jhi                                   on 2000/08/28  20:38:59
21140         Log: An attempt to fix the problem reported in
21141              
21142              Subject: Building perl@6856 using gcc/AIX 4.3.3 
21143              From: Daniel Muino <dmuino@afip.gov.ar> 
21144              Date: Mon, 28 Aug 2000 15:50:01 -0300   
21145              Message-ID: <20000828155001.A14403@con2-dgi>
21146              
21147              I can't test this properly since the gcc installation I have
21148              access to seems to be botched (gcc is calling the AIX cpp,
21149              a losing proposition...)
21150      Branch: perl
21151            ! hints/aix.sh
21152 ____________________________________________________________________________
21153 [  6863] By: jhi                                   on 2000/08/28  18:57:52
21154         Log: Fix for ID 20000828.001, long doubles were not formatted
21155              correctly (showed up in $], which stopped installing perl).
21156      Branch: perl
21157            ! sv.c
21158 ____________________________________________________________________________
21159 [  6862] By: jhi                                   on 2000/08/28  18:07:15
21160         Log: Typo in #6858.
21161      Branch: perl
21162            ! lib/Cwd.pm
21163 ____________________________________________________________________________
21164 [  6861] By: jhi                                   on 2000/08/28  17:57:27
21165         Log: opmini.o may be left around if a build is interrupted.
21166      Branch: perl
21167            ! Makefile.SH
21168 ____________________________________________________________________________
21169 [  6860] By: jhi                                   on 2000/08/28  16:52:50
21170         Log: Subject: [PATCH@6855] _Minor_ change to overload.pm pod
21171              From: Daniel Chetlin <daniel@chetlin.com>
21172              Date: Mon, 28 Aug 2000 01:14:18 -0700
21173              Message-ID: <20000828011418.J769@ilmd.chetlin.org>
21174      Branch: perl
21175            ! lib/overload.pm
21176 ____________________________________________________________________________
21177 [  6859] By: jhi                                   on 2000/08/28  16:08:46
21178         Log: Subject: [ID 20000828.009] Not OK: perl v5.7.0 +SUIDMAIL +DEVEL6855 on i586-linux 2.2.12 (UNINSTALLED)
21179              From: Nicholas Clark <nick@ccl4.org>
21180              Date: Mon, 28 Aug 2000 16:03:27 +0100
21181              Message-Id: <20000828160327.C49785@plum.flirble.org>
21182      Branch: perl
21183            ! ext/ByteLoader/bytecode.h
21184 ____________________________________________________________________________
21185 [  6858] By: jhi                                   on 2000/08/28  16:02:10
21186         Log: Subject: [ID 20000828.006] dir name "0" not safe with Cwd.pm
21187              From: Wolfgang Laun <wolfgang.laun@alcatel.at>
21188              Date: Mon, 28 Aug 2000 13:08:30 +0200
21189              Message-Id: <200008281108.NAA00782@localhost.aut.alcatel.at>
21190      Branch: perl
21191            ! lib/Cwd.pm
21192 ____________________________________________________________________________
21193 [  6857] By: jhi                                   on 2000/08/28  15:42:47
21194         Log: display_format used as a class method without arguments was broken,
21195              reported in
21196              
21197              Subject: Math::Complex->display_format() sets style to 'Math::Complex'
21198              From: Yasushi Nakajima <sey@san.p.kyoto.jkc.co.jp>
21199              Date: Mon, 28 Aug 2000 16:38:08 +0900 (JST)
21200              Message-Id: <200008280738.QAA00215@san.p.kyoto.jkc.co.jp>
21201      Branch: perl
21202            ! lib/Math/Complex.pm t/lib/complex.t
21203 ____________________________________________________________________________
21204 [  6856] By: jhi                                   on 2000/08/27  22:09:48
21205         Log: Update Changes.
21206      Branch: perl
21207            ! Changes patchlevel.h
21208 ____________________________________________________________________________
21209 [  6855] By: jhi                                   on 2000/08/27  21:59:21
21210         Log: Retract #6853 (false alarm).
21211      Branch: perl
21212            ! lib/ExtUtils/xsubpp
21213 ____________________________________________________________________________
21214 [  6854] By: jhi                                   on 2000/08/27  21:37:44
21215         Log: Update Changes.
21216      Branch: perl
21217            ! Changes patchlevel.h
21218 ____________________________________________________________________________
21219 [  6853] By: jhi                                   on 2000/08/27  21:37:16
21220         Log: Subject: [PATCH perl@6850] workaround for xsubpp
21221              From: Hugo <hv@crypt.compulink.co.uk>
21222              Date: Sun, 27 Aug 2000 22:30:25 +0100
21223              Message-Id: <200008272130.WAA10083@crypt.compulink.co.uk>
21224      Branch: perl
21225            ! lib/ExtUtils/xsubpp
21226 ____________________________________________________________________________
21227 [  6852] By: jhi                                   on 2000/08/27  21:33:58
21228         Log: Big-endian 64-bit patch from Raphael Manfredi.
21229      Branch: perl
21230            ! ext/Storable/Storable.xs
21231 ____________________________________________________________________________
21232 [  6851] By: jhi                                   on 2000/08/27  21:22:21
21233         Log: More ruthless editing from Hugo van der Sanden.
21234      Branch: perl
21235            ! pod/perldelta.pod
21236 ____________________________________________________________________________
21237 [  6850] By: jhi                                   on 2000/08/27  16:11:46
21238         Log: Update Changes.
21239      Branch: perl
21240            ! Changes patchlevel.h
21241 ____________________________________________________________________________
21242 [  6849] By: jhi                                   on 2000/08/27  16:11:05
21243         Log: Provice virtual $Config{ccflags_nolargefiles} etc. 
21244      Branch: perl
21245            ! configpm pod/perldelta.pod
21246 ____________________________________________________________________________
21247 [  6848] By: jhi                                   on 2000/08/27  15:35:08
21248         Log: Use the actual thread type, not the pointer-to-struct.
21249      Branch: perl
21250            ! ext/Thread/Thread.xs
21251 ____________________________________________________________________________
21252 [  6847] By: jhi                                   on 2000/08/27  15:30:49
21253         Log: Test nit.
21254      Branch: perl
21255            ! t/pragma/warn/pp_sys
21256 ____________________________________________________________________________
21257 [  6846] By: jhi                                   on 2000/08/27  15:19:02
21258         Log: Passing -R in ldflags makes now it to appear in the default
21259              for lddlflags, just like with -L.
21260              
21261              Subject: Re: MM_Unix.pm LD_RUN_PATH niggles on Solaris
21262              From: Lupe Christoph <lupe@lupe-christoph.de>
21263              Date: Sun, 27 Aug 2000 10:28:21 +0200
21264              Message-ID: <20000827102821.B4437@alanya.lupe-christoph.de>
21265      Branch: metaconfig/U/perl
21266            ! dlsrc.U
21267      Branch: perl
21268            ! Configure
21269 ____________________________________________________________________________
21270 [  6845] By: jhi                                   on 2000/08/27  15:08:54
21271         Log: Subject: MM_Unix.pm LD_RUN_PATH niggles on Solaris
21272              From: Alan Burlison <Alan.Burlison@uk.sun.com>
21273              Date: Sat, 26 Aug 2000 22:23:27 +0100
21274              Message-ID: <39A8354F.E1E832C9@uk.sun.com>
21275      Branch: perl
21276            ! lib/ExtUtils/MM_Unix.pm
21277 ____________________________________________________________________________
21278 [  6844] By: jhi                                   on 2000/08/27  15:02:37
21279         Log: DJGPP update from Laszlo Molnar.
21280              
21281              Subject: [ID 20000826.014] Not OK: perl v5.7.0 +SUIDMAIL +DEVEL6788 on dos-djgpp djgpp (UNINSTALLED) [PATCH]
21282              From: ml1050 <ml1050@freemail.hu>
21283              Date: Sat, 26 Aug 2000 23:24:40 +0200
21284              Message-Id: <20000826232440.A439@freemail.hu>
21285      Branch: perl
21286            ! djgpp/config.over lib/File/Temp.pm pod/buildtoc.PL
21287            ! t/lib/ftmp-security.t t/lib/posix.t t/pragma/warn/pp_sys
21288 ____________________________________________________________________________
21289 [  6843] By: jhi                                   on 2000/08/27  14:53:58
21290         Log: Subject: installman buglet
21291              From: Lupe Christoph <lupe@lupe-christoph.de>
21292              Date: Sun, 27 Aug 2000 14:38:59 +0200
21293              Message-ID: <20000827143859.E4437@alanya.lupe-christoph.de>
21294      Branch: perl
21295            ! installman
21296 ____________________________________________________________________________
21297 [  6842] By: jhi                                   on 2000/08/27  14:52:08
21298         Log: Can't get the test to reliably work thanks to the
21299              inaccurateness of floating point.  "Resolves" bug ids
21300              20000826.003, 20000826.009, 20000826.010,
21301      Branch: perl
21302            ! t/lib/trig.t
21303 ____________________________________________________________________________
21304 [  6841] By: jhi                                   on 2000/08/26  15:53:58
21305         Log: Update Changes.
21306      Branch: perl
21307            ! Changes patchlevel.h
21308 ____________________________________________________________________________
21309 [  6840] By: jhi                                   on 2000/08/26  14:23:03
21310         Log: grep -e isn't portable.
21311              
21312              Subject: [ID 20000825.027] let me (perlbug@perl.com) know how I blew it
21313              From: chris@broadband.att.com
21314              Date: Sat, 26 Aug 2000 00:17:27 -0600 (MDT)
21315              Message-Id: <200008260617.AAA10219@lazlo.tci.com>
21316      Branch: perl
21317            ! hints/solaris_2.sh
21318 ____________________________________________________________________________
21319 [  6839] By: jhi                                   on 2000/08/26  14:12:23
21320         Log: no-install target a la make -n.
21321              
21322              Subject: [PATCH] make no-install (was Re: [PATCH] installation not quite silent yet.)
21323              From: <abigail@foad.org>
21324              Date: Sat, 26 Aug 2000 03:57:34 -0400
21325              Message-ID: <20000826075735.18912.qmail@foad.org>
21326      Branch: perl
21327            ! Makefile.SH installman installperl
21328 ____________________________________________________________________________
21329 [  6838] By: jhi                                   on 2000/08/26  14:06:33
21330         Log: Retract #6826 as the #6828 should be do the same
21331              in a More Correct Way.
21332      Branch: perl
21333            ! installperl
21334 ____________________________________________________________________________
21335 [  6837] By: jhi                                   on 2000/08/26  05:24:00
21336         Log: More casting.
21337      Branch: perl
21338            ! ext/Storable/Storable.xs
21339 ____________________________________________________________________________
21340 [  6836] By: jhi                                   on 2000/08/26  05:05:46
21341         Log: Nicer in decimal.
21342      Branch: perl
21343            ! ext/Storable/Storable.xs
21344 ____________________________________________________________________________
21345 [  6835] By: jhi                                   on 2000/08/26  05:03:50
21346         Log: There be no UVdf.
21347      Branch: perl
21348            ! ext/Storable/Storable.xs
21349 ____________________________________________________________________________
21350 [  6834] By: jhi                                   on 2000/08/26  05:00:18
21351         Log: Continue IVdfing and UVxfing.
21352      Branch: perl
21353            ! ext/Storable/Storable.xs
21354 ____________________________________________________________________________
21355 [  6833] By: jhi                                   on 2000/08/26  04:53:14
21356         Log: Use IVdf.
21357      Branch: perl
21358            ! ext/Storable/Storable.xs
21359 ____________________________________________________________________________
21360 [  6832] By: jhi                                   on 2000/08/26  04:40:41
21361         Log: Document PTR2XX and INT2PTR.
21362      Branch: perl
21363            ! pod/perlguts.pod
21364 ____________________________________________________________________________
21365 [  6831] By: jhi                                   on 2000/08/26  04:33:18
21366         Log: Use UVxf, PTR2UV, NVff.
21367      Branch: perl
21368            ! ext/Storable/Storable.xs
21369 ____________________________________________________________________________
21370 [  6830] By: jhi                                   on 2000/08/26  04:31:32
21371         Log: Update the test count.
21372      Branch: perl
21373            ! t/lib/trig.t
21374 ____________________________________________________________________________
21375 [  6829] By: jhi                                   on 2000/08/26  03:05:50
21376         Log: Subject: [PATCH] installation not quite silent yet.
21377              From: <abigail@foad.org>
21378              Date: Fri, 25 Aug 2000 20:07:53 -0400
21379              Message-ID: <20000826000753.7822.qmail@foad.org>
21380      Branch: perl
21381            ! installman installperl
21382 ____________________________________________________________________________
21383 [  6828] By: jhi                                   on 2000/08/26  03:05:14
21384         Log: Subject: Re: [ID 20000825.019] Not OK: perl v5.7.0 +SUIDMAIL +DEVEL6820 on alpha-dec_osf 5.1 (UNINSTALLED) 
21385              From: Spider Boardman <spider@web.zk3.dec.com>
21386              Date: Fri, 25 Aug 2000 19:12:40 -0400
21387              Message-Id: <200008252312.TAA17828@leggy.zk3.dec.com>
21388      Branch: perl
21389            ! gv.c
21390 ____________________________________________________________________________
21391 [  6827] By: jhi                                   on 2000/08/25  23:54:34
21392         Log: Support preserving extremely big/small angles.
21393      Branch: perl
21394            ! lib/Math/Trig.pm pod/perldelta.pod t/lib/trig.t
21395 ____________________________________________________________________________
21396 [  6826] By: jhi                                   on 2000/08/25  23:01:20
21397         Log: Patch installperl to be long double-aware.
21398              
21399              Subject: Re: [PATCH] [ID 20000825.019] Not OK: perl v5.7.0 +SUIDMAIL +DEVEL6820 on alpha-dec_osf 5.1 (UNINSTALLED) 
21400              From: Spider Boardman <spider@web.zk3.dec.com>
21401              Date: Fri, 25 Aug 2000 18:15:23 -0400
21402              Message-Id: <200008252215.SAA28740@leggy.zk3.dec.com>
21403      Branch: perl
21404            ! installperl
21405 ____________________________________________________________________________
21406 [  6825] By: jhi                                   on 2000/08/25  22:58:25
21407         Log: Remove duplicately applied patch shards.
21408              
21409              Subject: [ID 20000825.012] [PATCH@6822] t/lib/cgi-html.t produces ugly cruft during 'make test'
21410              From: Spider Boardman <spider@leggy.zk3.dec.com>
21411              Date: Fri, 25 Aug 2000 16:45:03 -0400
21412              Message-Id: <200008252045.QAA23518@leggy.zk3.dec.com>
21413      Branch: perl
21414            ! t/lib/cgi-html.t
21415 ____________________________________________________________________________
21416 [  6824] By: jhi                                   on 2000/08/25  22:57:00
21417         Log: Subject: [PATCH @6820] installman under -w and strict (was Re: [PATCH] More silencing of installman.)
21418              From: Daniel Chetlin <daniel@chetlin.com>
21419              Date: Fri, 25 Aug 2000 12:23:16 -0700
21420              Message-ID: <20000825122316.A10250@ilmd.chetlin.org>
21421              
21422              Subject: Re: [PATCH @6820] installman under -w and strict (was Re: [PATCH] More silencing of installman.)
21423              From: Daniel Chetlin <daniel@chetlin.com>
21424              Date: Fri, 25 Aug 2000 14:47:19 -0700
21425              Message-ID: <20000825144719.A20587@ilmd.chetlin.org>
21426      Branch: perl
21427            ! installman
21428 ____________________________________________________________________________
21429 [  6823] By: jhi                                   on 2000/08/25  22:44:17
21430         Log: Timestamp problem?
21431      Branch: perl
21432            ! uconfig.h uconfig.sh
21433 ____________________________________________________________________________
21434 [  6822] By: jhi                                   on 2000/08/25  19:01:06
21435         Log: One forgotten file from #6816.
21436      Branch: perl
21437            ! vos/config.h
21438 ____________________________________________________________________________
21439 [  6821] By: jhi                                   on 2000/08/25  18:56:39
21440         Log: Regen Changes.
21441      Branch: perl
21442            ! Changes patchlevel.h
21443 ____________________________________________________________________________
21444 [  6820] By: jhi                                   on 2000/08/25  18:52:35
21445         Log: Fix Changes ordering.
21446      Branch: perl
21447            ! Changes
21448 ____________________________________________________________________________
21449 [  6819] By: jhi                                   on 2000/08/25  18:50:25
21450         Log: Update Changes.
21451      Branch: perl
21452            ! Changes patchlevel.h
21453 ____________________________________________________________________________
21454 [  6818] By: jhi                                   on 2000/08/25  18:47:45
21455         Log: Tweak the sfio/useperlio logic, hopefully as wished in
21456              
21457              Subject: [ID 20000825.004] Not OK: perl v5.7.0 +SUIDMAIL +DEVEL6804 on i586-linux 2.2.12 (UNINSTALLED)
21458              From: Nicholas Clark <nick@babyhippo.co.uk>
21459              Date: Fri, 25 Aug 2000 12:01:45 +0100
21460              Message-Id: <E13SHF3-0005I9-00@fruitbat.babyhippo.co.uk>
21461      Branch: metaconfig/U/perl
21462            ! d_sfio.U
21463      Branch: perl
21464            ! Configure
21465 ____________________________________________________________________________
21466 [  6817] By: jhi                                   on 2000/08/25  18:32:51
21467         Log: Allow microperl to assume <math.h>, without it the math
21468              functions like floor() are assumed to return int, which makes
21469              for core dumps in machines where integer and floating register
21470              don't mix.
21471      Branch: perl
21472            ! uconfig.h uconfig.sh
21473 ____________________________________________________________________________
21474 [  6816] By: jhi                                   on 2000/08/25  18:27:17
21475         Log: AIX 4.3.3 has SOCKS in libc with a differently named init routine,
21476              the problem reported in
21477              
21478              Subject: [ID 20000825.007] Building stable 5.6.0 on AIX 4.3.3 using SOCKS
21479              From: danhale@us.ibm.com
21480              Date: Fri, 25 Aug 2000 10:58:06 -0400
21481              Message-Id: <85256946.005238A3.00@d54mta02.raleigh.ibm.com>
21482      Branch: metaconfig/U/perl
21483            + d_socks5_init.U
21484      Branch: perl
21485            ! Configure INSTALL config_h.SH configure.com epoc/config.sh
21486            ! perl.c uconfig.h uconfig.sh vos/config.def vos/config.h
21487            ! vos/config.pl vos/config_h.SH_orig win32/config.bc
21488            ! win32/config.gc win32/config.vc
21489 ____________________________________________________________________________
21490 [  6815] By: jhi                                   on 2000/08/25  17:43:31
21491         Log: A solution for the retrieve_fd autosplit warning,
21492              idea suggested by Mike Guy.
21493      Branch: perl
21494            ! ext/Storable/Storable.pm
21495 ____________________________________________________________________________
21496 [  6814] By: jhi                                   on 2000/08/25  17:16:03
21497         Log: Add install-silent target.
21498      Branch: perl
21499            ! Makefile.SH
21500 ____________________________________________________________________________
21501 [  6813] By: jhi                                   on 2000/08/25  17:14:23
21502         Log: Subject: Re: [PATCH] More silencing of installman.
21503              From: <abigail@foad.org>
21504              Date: Thu, 24 Aug 2000 19:27:03 -0400
21505              Message-ID: <20000824232703.7001.qmail@foad.org>
21506              
21507              Subject: Re: [PATCH] More silencing of installman.
21508              From: <abigail@foad.org>
21509              Date: Fri, 25 Aug 2000 03:00:58 -0400
21510              Message-ID: <20000825070058.10697.qmail@foad.org>
21511      Branch: perl
21512            ! installman
21513 ____________________________________________________________________________
21514 [  6812] By: jhi                                   on 2000/08/25  17:11:28
21515         Log: installperl --verbose and --silent.
21516              
21517              Subject: Re: [PATCH] More silencing of installman.
21518              From: <abigail@foad.org>
21519              Message-ID: <20000825064430.9719.qmail@foad.org>
21520              Date: Fri, 25 Aug 2000 02:44:30 -0400
21521      Branch: perl
21522            ! installperl
21523 ____________________________________________________________________________
21524 [  6811] By: jhi                                   on 2000/08/25  17:05:43
21525         Log: Subject: [ID 20000824.029] MakeMaker manifypods fails on DJGPP systems
21526              From: "Peter J. Farley III" <pjfarley@banet.net>
21527              Date: Thu, 24 Aug 2000 21:58:03 -0400
21528              Message-Id: <4.3.1.0.20000824215500.00ac3df0@pop5.banet.net>
21529              
21530              (applied slightly modified)
21531      Branch: perl
21532            ! lib/ExtUtils/MM_Unix.pm
21533 ____________________________________________________________________________
21534 [  6810] By: jhi                                   on 2000/08/25  17:01:18
21535         Log: Missing parts of 
21536              
21537              Subject: [PATCH: 6789] some endl fixes for VMS wackiness
21538              From: Peter Prymmer <pvhp@forte.com>
21539              Date: Wed, 23 Aug 2000 13:58:31 -0700 (PDT)
21540              Message-ID: <Pine.OSF.4.10.10008231351000.126820-100000@aspara.forte.com>
21541      Branch: perl
21542            ! t/lib/cgi-html.t
21543 ____________________________________________________________________________
21544 [  6809] By: jhi                                   on 2000/08/25  16:46:32
21545         Log: Subject: [PATCH perl@6805, 5.6.0, 5.005_03] prevent rare Perl hang on VMS
21546              From: "Craig A. Berry" <craig.berry@psinetcs.com>
21547              Date: Thu, 24 Aug 2000 19:13:11 -0500
21548              Message-Id: <4.3.2.7.2.20000824174417.02479ef8@exchi01>
21549      Branch: perl
21550            ! vms/vms.c
21551 ____________________________________________________________________________
21552 [  6808] By: jhi                                   on 2000/08/25  16:39:22
21553         Log: Subject: [PATCH: 6805] several more tweaks to configure.com
21554              From: Peter Prymmer <pvhp@forte.com>
21555              Date: Thu, 24 Aug 2000 16:25:48 -0700 (PDT)
21556              Message-ID: <Pine.OSF.4.10.10008241623420.181493-100000@aspara.forte.com>
21557      Branch: perl
21558            ! configure.com
21559 ____________________________________________________________________________
21560 [  6807] By: jhi                                   on 2000/08/25  16:36:37
21561         Log: Better wording for the vec lvalue diagnostic.
21562              
21563              Subject: Re: [PATCH] Re: [ID 20000821.008] Negitive numbers with vec dumps core
21564              From: Ronald J Kimball <rjk@linguist.dartmouth.edu>
21565              Date: Wed, 23 Aug 2000 14:12:16 -0400
21566              Message-ID: <20000823141215.A173200@linguist.dartmouth.edu>
21567      Branch: perl
21568            ! pod/perldiag.pod
21569 ____________________________________________________________________________
21570 [  6806] By: jhi                                   on 2000/08/24  18:17:22
21571         Log: Subject: [PATCH] More silencing of installman.
21572              From: <abigail@foad.org>
21573              Date: Thu, 24 Aug 2000 14:01:44 -0400
21574              Message-ID: <20000824180144.20062.qmail@foad.org>
21575      Branch: perl
21576            ! installman
21577 ____________________________________________________________________________
21578 [  6805] By: jhi                                   on 2000/08/24  15:00:31
21579         Log: Update Changes.
21580      Branch: perl
21581            ! Changes patchlevel.h
21582 ____________________________________________________________________________
21583 [  6804] By: jhi                                   on 2000/08/24  14:59:07
21584         Log: Regen perltoc.
21585      Branch: perl
21586            ! pod/perltoc.pod
21587 ____________________________________________________________________________
21588 [  6803] By: jhi                                   on 2000/08/24  14:44:39
21589         Log: Show the doc file, not the temp file.
21590      Branch: perl
21591            ! installman
21592 ____________________________________________________________________________
21593 [  6802] By: jhi                                   on 2000/08/24  14:41:53
21594         Log: Continue silencing.
21595      Branch: perl
21596            ! installman
21597 ____________________________________________________________________________
21598 [  6801] By: jhi                                   on 2000/08/24  14:34:40
21599         Log: Actually do something with the silencer option.
21600      Branch: perl
21601            ! installman
21602 ____________________________________________________________________________
21603 [  6800] By: jhi                                   on 2000/08/24  14:26:22
21604         Log: Make installman to recognize the silence flag -S.
21605      Branch: perl
21606            ! installman
21607 ____________________________________________________________________________
21608 [  6799] By: jhi                                   on 2000/08/24  13:49:38
21609         Log: DOS patches and portability/porting notes, from Tim Jenness.
21610      Branch: perl
21611            ! lib/File/Temp.pm
21612 ____________________________________________________________________________
21613 [  6798] By: jhi                                   on 2000/08/24  13:48:27
21614         Log: Create directories in silence.
21615              
21616              Subject: [PATCH] Another silencer for MakeMaker
21617              From: andreas.koenig@anima.de (Andreas J. Koenig)
21618              Date: 24 Aug 2000 14:18:52 +0200
21619              Message-ID: <m3zom297ir.fsf@ak-71.mind.de>
21620      Branch: perl
21621            ! lib/ExtUtils/Command.pm
21622 ____________________________________________________________________________
21623 [  6797] By: jhi                                   on 2000/08/24  13:46:42
21624         Log: More liberal parsing of version numbers.
21625              
21626              Subject: Re: CPAN.pm beta for testing available
21627              From: andreas.koenig@anima.de (Andreas J. Koenig)
21628              Date: 24 Aug 2000 13:51:57 +0200
21629              Message-ID: <m34s4aanc2.fsf@ak-71.mind.de>
21630      Branch: perl
21631            ! lib/CPAN.pm
21632 ____________________________________________________________________________
21633 [  6796] By: jhi                                   on 2000/08/24  13:44:36
21634         Log: Make "make install" by default silent.  A new "install-verbose"
21635              target is verbose.
21636      Branch: perl
21637            ! Makefile.SH
21638 ____________________________________________________________________________
21639 [  6795] By: jhi                                   on 2000/08/24  13:39:14
21640         Log: Add silencer flags to installperl.
21641              
21642              Subject: [PATCH] Making installperl silent.
21643              From: <abigail@foad.org>
21644              Date: Thu, 24 Aug 2000 05:01:45 -0400
21645              Message-ID: <20000824090145.13141.qmail@foad.org>
21646      Branch: perl
21647            ! installperl
21648 ____________________________________________________________________________
21649 [  6794] By: jhi                                   on 2000/08/24  13:35:50
21650         Log: installperl couldn't tell whether it had run tests or not.
21651              
21652              Subject: [PATCH] Re: installperl and t/TEST
21653              From: <abigail@foad.org>
21654              Date: Thu, 24 Aug 2000 04:00:53 -0400
21655              Message-ID: <20000824080053.2494.qmail@foad.org>
21656      Branch: perl
21657            ! Makefile.SH installperl
21658 ____________________________________________________________________________
21659 [  6793] By: jhi                                   on 2000/08/24  13:27:50
21660         Log: Drop the separate perlbc, perlcc -b should be enough.
21661      Branch: perl
21662            - utils/perlbc.PL
21663            ! MANIFEST pod/perldelta.pod pod/perlutil.pod utils/Makefile
21664 ____________________________________________________________________________
21665 [  6792] By: jhi                                   on 2000/08/24  04:41:30
21666         Log: Upgrade to Storable 0.7.4, from Raphael Manfredi,
21667              plus the typo fix from Peter Prymmer.
21668      Branch: perl
21669            ! ext/Storable/ChangeLog ext/Storable/Makefile.PL
21670            ! ext/Storable/Storable.pm ext/Storable/Storable.xs
21671 ____________________________________________________________________________
21672 [  6791] By: jhi                                   on 2000/08/24  02:10:43
21673         Log: Replace #6705 with a minimal doc patch.
21674              
21675              Subject: [PATCH 5.6.0] replace change #6705
21676              From: Jan Dubois <jand@ActiveState.com>
21677              Date: Wed, 23 Aug 2000 18:31:51 -0700
21678              Message-ID: <dau8qsolaurdcbom4810gfuhbjegemtr58@4ax.com>
21679      Branch: perl
21680            ! lib/Win32.pod win32/win32.c
21681 ____________________________________________________________________________
21682 [  6790] By: jhi                                   on 2000/08/23  17:52:00
21683         Log: Subject: [PATCH] Re: [ID 20000821.008] Negitive numbers with vec dumps core
21684              From: Mike Guy <mjtg@cam.ac.uk>
21685              Date: Wed, 23 Aug 2000 18:38:46 +0100
21686              Message-Id: <E13ReUA-0000vC-00@virgo.cus.cam.ac.uk>
21687      Branch: perl
21688            ! doop.c pod/perldiag.pod pod/perlfunc.pod t/op/vec.t
21689 ____________________________________________________________________________
21690 [  6789] By: jhi                                   on 2000/08/23  15:34:21
21691         Log: Update Changes.
21692      Branch: perl
21693            ! Changes patchlevel.h
21694 ____________________________________________________________________________
21695 [  6788] By: jhi                                   on 2000/08/23  15:33:40
21696         Log: Subject: [PATCH] (Mac OS X): Don't #define environ unless PERL_CORE
21697              From: Wilfredo Sánchez <wsanchez@apple.com>
21698              Date: Tue, 22 Aug 2000 19:31:27 -0700
21699              Message-Id: <200008230231.TAA00461@ns1.abstrata.com>
21700      Branch: perl
21701            ! perl.h
21702 ____________________________________________________________________________
21703 [  6787] By: jhi                                   on 2000/08/23  15:29:31
21704         Log: Subject: [ID 20000823.004] [PATCH 5.6.0+] Pod::Html is too self-contained
21705              From: Spider Boardman <spider@leggy.zk3.dec.com>
21706              Date: Wed, 23 Aug 2000 10:33:23 -0400
21707              Message-Id: <200008231433.KAA28122@leggy.zk3.dec.com>
21708      Branch: perl
21709            ! lib/Pod/Html.pm
21710 ____________________________________________________________________________
21711 [  6786] By: jhi                                   on 2000/08/23  15:28:11
21712         Log: Bad makefile.
21713      Branch: perl
21714            ! ext/B/Makefile.PL
21715 ____________________________________________________________________________
21716 [  6785] By: jhi                                   on 2000/08/23  14:37:04
21717         Log: Update Changes.
21718      Branch: perl
21719            ! Changes patchlevel.h
21720 ____________________________________________________________________________
21721 [  6784] By: jhi                                   on 2000/08/23  13:58:41
21722         Log: Portability fix from Hugo van der Sanden.
21723      Branch: perl
21724            ! ext/re/Makefile.PL
21725 ____________________________________________________________________________
21726 [  6783] By: jhi                                   on 2000/08/23  13:53:53
21727         Log: Storable support, v-version fixes.
21728              
21729              Subject: CPAN.pm beta for testing available
21730              From: andreas.koenig@anima.de (Andreas J. Koenig)
21731              Date: 22 Aug 2000 23:31:33 +0200
21732              Message-ID: <m3hf8dc79m.fsf@ak-71.mind.de>
21733      Branch: perl
21734            ! lib/CPAN.pm lib/CPAN/FirstTime.pm
21735 ____________________________________________________________________________
21736 [  6782] By: jhi                                   on 2000/08/23  13:51:26
21737         Log: Mac and other portability updates from Chris Nandor.
21738      Branch: perl
21739            ! pod/perlmodinstall.pod
21740 ____________________________________________________________________________
21741 [  6781] By: jhi                                   on 2000/08/23  13:47:33
21742         Log: Subject: [PATCH: 6778] fix a small typo in Storable.xs
21743              From: Peter Prymmer <pvhp@forte.com>
21744              Date: Tue, 22 Aug 2000 16:20:41 -0700 (PDT)
21745              Message-ID: <Pine.OSF.4.10.10008221616430.68568-100000@aspara.forte.com>
21746      Branch: perl
21747            ! ext/Storable/Storable.xs
21748 ____________________________________________________________________________
21749 [  6780] By: jhi                                   on 2000/08/23  13:33:34
21750         Log: VMS MMS (make) wants null action.
21751      Branch: perl
21752            ! ext/B/Makefile.PL
21753 ____________________________________________________________________________
21754 [  6779] By: jhi                                   on 2000/08/22  19:44:47
21755         Log: Forgot portability nit.
21756      Branch: perl
21757            ! t/lib/st-forgive.t
21758 ____________________________________________________________________________
21759 [  6778] By: jhi                                   on 2000/08/22  19:35:25
21760         Log: Be portable.
21761      Branch: perl
21762            ! ext/B/Makefile.PL t/lib/st-forgive.t t/lib/st-retrieve.t
21763            ! t/lib/st-store.t
21764 ____________________________________________________________________________
21765 [  6777] By: jhi                                   on 2000/08/22  18:50:53
21766         Log: Update Changes.
21767      Branch: perl
21768            ! Changes patchlevel.h
21769 ____________________________________________________________________________
21770 [  6776] By: jhi                                   on 2000/08/22  18:44:46
21771         Log: cSVOPo_*v things index into the current PL_curpad
21772              under ithreads, which is different from the curpad
21773              used by the XSUB.  (In other words, the code as-is
21774              before this patch wouldn't work under ithreads.)
21775              From Sarathy.
21776      Branch: perl
21777            ! ext/B/B.xs
21778 ____________________________________________________________________________
21779 [  6775] By: jhi                                   on 2000/08/22  18:18:37
21780         Log: Make the selection of NVff et al stricter.
21781      Branch: metaconfig/U/perl
21782            ! perlxvf.U
21783      Branch: perl
21784            ! Configure config_h.SH
21785 ____________________________________________________________________________
21786 [  6774] By: jhi                                   on 2000/08/22  17:19:42
21787         Log: perldelta nits.
21788      Branch: perl
21789            ! pod/perldelta.pod
21790 ____________________________________________________________________________
21791 [  6773] By: jhi                                   on 2000/08/22  17:06:26
21792         Log: Long double fixes from Spider Boardman.
21793              
21794              Subject: [ID 20000821.014] Not OK: perl v5.7.0 +SUIDMAIL +DEVEL6756 on alpha-dec_osf 5.1 (UNINSTALLED)
21795              From: system PRIVILEGED account <root@peano.zk3.dec.com>
21796              Date: Mon, 21 Aug 2000 18:41:15 -0400 (EDT)
21797              Message-Id: <200008212241.SAA0000014255@peano.zk3.dec.com>
21798      Branch: perl
21799            ! t/lib/bigfltpm.t t/lib/st-06compat.t
21800 ____________________________________________________________________________
21801 [  6772] By: jhi                                   on 2000/08/22  15:04:53
21802         Log: Update Changes.
21803      Branch: perl
21804            ! Changes patchlevel.h
21805 ____________________________________________________________________________
21806 [  6771] By: jhi                                   on 2000/08/22  15:01:44
21807         Log: perldelta fixes from Hugo van der Sanden.
21808      Branch: perl
21809            ! pod/perldelta.pod
21810 ____________________________________________________________________________
21811 [  6770] By: jhi                                   on 2000/08/22  14:34:49
21812         Log: Subject: [PATCH blead] nextchar() abuse misses an optimisation
21813              From: Hugo <hv@crypt.compulink.co.uk>
21814              Date: Tue, 22 Aug 2000 11:21:53 +0100
21815              Message-Id: <200008221021.LAA03332@crypt.compulink.co.uk>
21816      Branch: perl
21817            ! regcomp.c
21818 ____________________________________________________________________________
21819 [  6769] By: jhi                                   on 2000/08/22  14:30:02
21820         Log: Add Yitzchak, reformat.
21821      Branch: perl
21822            ! Changes config_h.SH
21823 ____________________________________________________________________________
21824 [  6768] By: jhi                                   on 2000/08/22  14:21:35
21825         Log: Long double Gconvert fixes from Yitzchak Scott-Thoennes
21826              and Spider Boardman.
21827      Branch: metaconfig
21828            ! U/compline/d_gconvert.U
21829      Branch: perl
21830            ! Configure
21831 ____________________________________________________________________________
21832 [  6767] By: jhi                                   on 2000/08/22  14:11:24
21833         Log: Subject: Re: [PATCH] [ID 20000820.012] Not OK: perl v5.7.0 +SUIDMAIL +DEVEL6735 on
21834              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
21835              Date: Mon, 21 Aug 2000 19:08:31 -0700
21836              Message-ID: <fCeo5gzkgmhY092yn@efn.org>
21837      Branch: perl
21838            - ext/Storable/patchlevel.h
21839            ! MANIFEST ext/Storable/MANIFEST
21840 ____________________________________________________________________________
21841 [  6766] By: jhi                                   on 2000/08/22  13:49:29
21842         Log: Subject: [PATCH: 6757] configure.com updates and syslog build
21843              From: Peter Prymmer <pvhp@forte.com>
21844              Date: Mon, 21 Aug 2000 17:15:35 -0700 (PDT)
21845              Message-ID: <Pine.OSF.4.10.10008211653270.17516-100000@aspara.forte.com>
21846      Branch: perl
21847            ! configure.com ext/Storable/Makefile.PL
21848 ____________________________________________________________________________
21849 [  6765] By: jhi                                   on 2000/08/22  13:44:59
21850         Log: Subject: [PATCH blead] B:: missing dependency
21851              From: Hugo <hv@crypt.compulink.co.uk>
21852              Date: Tue, 22 Aug 2000 06:44:33 +0100
21853              Message-Id: <200008220544.GAA31051@crypt.compulink.co.uk>
21854      Branch: perl
21855            ! ext/B/Makefile.PL
21856 ____________________________________________________________________________
21857 [  6764] By: jhi                                   on 2000/08/22  13:38:12
21858         Log: More bytecompiler.
21859      Branch: perl
21860            ! pod/perlutil.pod utils/Makefile utils/perlbc.PL
21861 ____________________________________________________________________________
21862 [  6763] By: jhi                                   on 2000/08/22  13:36:44
21863         Log: Bytecompiler patches from Benjamin Stuhl.
21864      Branch: perl
21865            ! bytecode.pl embedvar.h ext/B/B.pm ext/B/B.xs
21866            ! ext/B/B/Asmdata.pm ext/B/B/Assembler.pm ext/B/B/Bytecode.pm
21867            ! ext/B/O.pm ext/B/defsubs_h.PL ext/ByteLoader/ByteLoader.pm
21868            ! ext/ByteLoader/ByteLoader.xs ext/ByteLoader/bytecode.h
21869            ! ext/ByteLoader/byterun.c ext/ByteLoader/byterun.h intrpvar.h
21870            ! perl.c perlapi.h pod/perldelta.pod
21871 ____________________________________________________________________________
21872 [  6762] By: jhi                                   on 2000/08/21  23:43:40
21873         Log: An obsoleted diagnostic.
21874      Branch: perl
21875            ! pod/perldelta.pod
21876 ____________________________________________________________________________
21877 [  6761] By: jhi                                   on 2000/08/21  23:01:45
21878         Log: The #6759 wasn't quite right.
21879      Branch: perl
21880            ! t/lib/st-06compat.t t/lib/st-blessed.t t/lib/st-canonical.t
21881            ! t/lib/st-dclone.t t/lib/st-forgive.t t/lib/st-freeze.t
21882            ! t/lib/st-overload.t t/lib/st-recurse.t t/lib/st-retrieve.t
21883            ! t/lib/st-store.t t/lib/st-tied.t t/lib/st-tiedhook.t
21884            ! t/lib/st-tieditems.t
21885 ____________________________________________________________________________
21886 [  6760] By: jhi                                   on 2000/08/21  22:35:49
21887         Log: Be verydeepclean.
21888      Branch: perl
21889            ! Makefile.SH
21890 ____________________________________________________________________________
21891 [  6759] By: jhi                                   on 2000/08/21  22:25:40
21892         Log: Subject: [PATCH: 6757] make new Storable tests forgiving of places where not built
21893              From: Peter Prymmer <pvhp@forte.com>
21894              Date: Mon, 21 Aug 2000 14:58:16 -0700 (PDT)
21895              Message-ID: <Pine.OSF.4.10.10008211456250.17516-100000@aspara.forte.com>
21896      Branch: perl
21897            ! t/lib/st-06compat.t t/lib/st-blessed.t t/lib/st-canonical.t
21898            ! t/lib/st-dclone.t t/lib/st-forgive.t t/lib/st-freeze.t
21899            ! t/lib/st-overload.t t/lib/st-recurse.t t/lib/st-retrieve.t
21900            ! t/lib/st-store.t t/lib/st-tied.t t/lib/st-tiedhook.t
21901            ! t/lib/st-tieditems.t
21902 ____________________________________________________________________________
21903 [  6758] By: jhi                                   on 2000/08/21  22:22:32
21904         Log: Few more casts, need reported in
21905              
21906              Subject: Re: [ID 20000821.010] OK: perl v5.7.0 +SUIDMAIL +DEVEL6756 on i586-linux-64all 2.2.16-9mdk (UNINSTALLED)
21907              From: Mike Stok <mike@stok.co.uk>
21908              Date: Mon, 21 Aug 2000 15:59:29 -0500 (CDT)
21909              Message-ID: <Pine.LNX.4.21.0008211558480.19081-100000@ratdog.stok.co.uk>
21910              
21911              and
21912              
21913              Subject: [ID 20000821.013] Not OK: perl v5.7.0 +SUIDMAIL +DEVEL6756 on i686-linux-64int 2.2.13
21914              From: abigail@foad.org
21915              Date: 21 Aug 2000 21:31:34 -0000
21916              Message-Id: <20000821213134.30170.qmail@foad.org>
21917      Branch: perl
21918            ! ext/Storable/Storable.xs
21919 ____________________________________________________________________________
21920 [  6757] By: jhi                                   on 2000/08/21  18:37:07
21921         Log: Update Changes.
21922      Branch: perl
21923            ! Changes patchlevel.h
21924 ____________________________________________________________________________
21925 [  6756] By: jhi                                   on 2000/08/21  18:34:02
21926         Log: A pod nit.
21927              
21928              Subject: [PATCH] pod/perlre.pod (was Re: [ID 20000821.007] $&, $1, etc. disappear when sub returns)
21929              From: <abigail@foad.org>
21930              Date: Mon, 21 Aug 2000 14:00:16 -0400
21931              Message-ID: <20000821180016.28627.qmail@foad.org>
21932      Branch: perl
21933            ! pod/perlre.pod
21934 ____________________________________________________________________________
21935 [  6755] By: jhi                                   on 2000/08/21  18:30:56
21936         Log: Use PodParser 1.18 new test.
21937      Branch: perl
21938            ! t/pod/special_seqs.t t/pod/special_seqs.xr
21939 ____________________________________________________________________________
21940 [  6754] By: jhi                                   on 2000/08/21  18:28:35
21941         Log: Apply some PodParser 1.18 patches; the Pod/Find.pm
21942              patches cannot be applied since #6712 conflicts.
21943      Branch: perl
21944            ! lib/Pod/InputObjects.pm lib/Pod/Parser.pm lib/Pod/Usage.pm
21945 ____________________________________________________________________________
21946 [  6753] By: jhi                                   on 2000/08/21  18:15:11
21947         Log: Weed out some smaller changes.
21948      Branch: perl
21949            ! pod/perldelta.pod
21950 ____________________________________________________________________________
21951 [  6752] By: jhi                                   on 2000/08/21  18:02:30
21952         Log: Also under djgpp the timestamps are funky.
21953      Branch: perl
21954            ! t/op/stat.t
21955 ____________________________________________________________________________
21956 [  6751] By: jhi                                   on 2000/08/21  17:55:56
21957         Log: Tweak the floating point output routine preferences.
21958      Branch: metaconfig
21959            ! U/compline/d_gconvert.U
21960      Branch: perl
21961            ! Configure
21962 ____________________________________________________________________________
21963 [  6750] By: jhi                                   on 2000/08/21  17:51:29
21964         Log: Unicos/mk requires elaborate paranoia.
21965      Branch: perl
21966            ! lib/Math/Complex.pm
21967 ____________________________________________________________________________
21968 [  6749] By: gsar                                  on 2000/08/21  16:53:31
21969         Log: use Cwd 'chdir' didn't set $ENV{PWD} correctly on Windows
21970      Branch: perl
21971            ! lib/Cwd.pm
21972 ____________________________________________________________________________
21973 [  6748] By: gsar                                  on 2000/08/21  16:22:19
21974         Log: free TLS slot properly on Windows
21975      Branch: perl
21976            ! thread.h win32/perllib.c win32/win32thread.h
21977 ____________________________________________________________________________
21978 [  6747] By: jhi                                   on 2000/08/21  16:20:58
21979         Log: Rename the macro argument because some preprocessors
21980              can't tell the difference and expand arguments also inside
21981              double quoted strings.
21982      Branch: perl
21983            ! regcomp.c
21984 ____________________________________________________________________________
21985 [  6746] By: jhi                                   on 2000/08/21  16:09:41
21986         Log: Support long doubles in Storable.
21987              
21988              Subject: Re: Not OK: perl v5.7.0 +SUIDMAIL +DEVEL6735 on i686-linux-thread-multi-64int 2.2.14-5.0 (UNINSTALLED)
21989              From: Radu Greab <radu@netsoft.ro>
21990              Date: Mon, 21 Aug 2000 18:05:59 +0300 (EET DST)
21991              Message-ID: <Pine.GSO.4.05.10008211804210.10137-100000@localhost>
21992      Branch: perl
21993            ! ext/Storable/Storable.xs
21994 ____________________________________________________________________________
21995 [  6745] By: jhi                                   on 2000/08/21  15:51:40
21996         Log: Subject: RE: [PATCH perl@6736] t/pragma/warn/9enabled assumes stdout buffered
21997              From: "Fifer, Eric" <EFifer@sanwaint.com>
21998              Date: Mon, 21 Aug 2000 15:34:49 +0100
21999              Message-ID: <779F20BCCE5AD31186A50008C75D9979171786@silldn_mail1.sanwaint.com>
22000      Branch: perl
22001            ! t/pragma/warn/9enabled
22002 ____________________________________________________________________________
22003 [  6744] By: jhi                                   on 2000/08/21  15:39:35
22004         Log: Document the endianness of Alpha more precisely.
22005      Branch: perl
22006            ! hints/unicos.sh pod/perldelta.pod pod/perlfunc.pod
22007            ! pod/perlport.pod
22008 ____________________________________________________________________________
22009 [  6743] By: jhi                                   on 2000/08/21  14:47:05
22010         Log: perldelta fixes from the p5p crowd.
22011      Branch: perl
22012            ! pod/perldelta.pod pod/perlop.pod
22013 ____________________________________________________________________________
22014 [  6742] By: jhi                                   on 2000/08/21  13:34:51
22015         Log: Update to Pod::LaTeX 0.53.
22016              
22017              Subject: [PATCH] lib/Pod/LaTeX.pm updates
22018              From: Tim Jenness <timj@jach.hawaii.edu>
22019              Date: Sun, 20 Aug 2000 23:09:48 -1000 (HST)
22020              Message-ID: <Pine.LNX.4.21.0008202308040.12047-100000@lapaki.jach.hawaii.edu>
22021      Branch: perl
22022            ! lib/Pod/LaTeX.pm
22023 ____________________________________________________________________________
22024 [  6741] By: jhi                                   on 2000/08/21  13:33:01
22025         Log: Subject: [PATCH] os2.c fix for use64bitint
22026              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
22027              Date: Mon, 21 Aug 2000 01:32:25 -0700
22028              Message-ID: <ZkOo5gzkgWEb092yn@efn.org>
22029      Branch: perl
22030            ! os2/os2.c
22031 ____________________________________________________________________________
22032 [  6740] By: jhi                                   on 2000/08/21  13:28:52
22033         Log: Array context keeps slithering in.
22034              
22035              Subject: Re: 5.7.0 getting really close, new snapshot: perldelta, Storable
22036              From: Daniel Chetlin <daniel@chetlin.com>
22037              Date: Sun, 20 Aug 2000 21:40:25 -0700
22038              Message-ID: <20000820214025.C29387@ilmd.chetlin.org>
22039      Branch: perl
22040            ! ext/Storable/Storable.xs lib/Pod/InputObjects.pm
22041            ! pod/perldebtut.pod
22042 ____________________________________________________________________________
22043 [  6739] By: jhi                                   on 2000/08/21  13:23:55
22044         Log: Big-endian quad fixes for Storable from Radu Greab,
22045              plus few explicit null casts for picky compilers.
22046      Branch: perl
22047            ! ext/Storable/Storable.xs
22048 ____________________________________________________________________________
22049 [  6738] By: gsar                                  on 2000/08/21  05:56:13
22050         Log: small tweaks for change#6705: avoid C++ style comments in C code;
22051              use Perl's malloc API rather than the low level system one
22052      Branch: perl
22053            ! win32/win32.c
22054 ____________________________________________________________________________
22055 [  6737] By: gsar                                  on 2000/08/21  05:35:41
22056         Log: add Storable to list of extensions on Windows
22057      Branch: perl
22058            ! win32/Makefile win32/makefile.mk
22059 ____________________________________________________________________________
22060 [  6736] By: jhi                                   on 2000/08/21  02:57:53
22061         Log: Update Changes.
22062      Branch: perl
22063            ! Changes patchlevel.h
22064 ____________________________________________________________________________
22065 [  6735] By: jhi                                   on 2000/08/21  02:57:20
22066         Log: Draft 0.
22067      Branch: perl
22068            ! pod/perldelta.pod
22069 ____________________________________________________________________________
22070 [  6734] By: jhi                                   on 2000/08/21  02:57:03
22071         Log: Add Storable 0.7.2 from Raphael Manfredi,
22072              plus the patch from
22073              
22074              Subject: Re: someone with too much time and a 64-bit box and interest in Storable?
22075              From: Radu Greab <radu@netsoft.ro>
22076              Date: Mon, 21 Aug 2000 03:10:05 +0300 (EEST)
22077              Message-ID: <Pine.LNX.4.10.10008210258160.1292-100000@busy.netsoft.ro>
22078              
22079              plus changes to get Storable to compile with
22080              picky ANSI compilers.
22081      Branch: perl
22082            + ext/Storable/ChangeLog ext/Storable/MANIFEST
22083            + ext/Storable/Makefile.PL ext/Storable/README
22084            + ext/Storable/Storable.pm ext/Storable/Storable.xs
22085            + ext/Storable/patchlevel.h t/lib/st-06compat.t
22086            + t/lib/st-blessed.t t/lib/st-canonical.t t/lib/st-dclone.t
22087            + t/lib/st-dump.pl t/lib/st-forgive.t t/lib/st-freeze.t
22088            + t/lib/st-overload.t t/lib/st-recurse.t t/lib/st-retrieve.t
22089            + t/lib/st-store.t t/lib/st-tied.t t/lib/st-tiedhook.t
22090            + t/lib/st-tieditems.t
22091            ! MANIFEST
22092 ____________________________________________________________________________
22093 [  6733] By: jhi                                   on 2000/08/21  02:29:09
22094         Log: The correct cleaning order is an art.
22095      Branch: perl
22096            ! Makefile.SH
22097 ____________________________________________________________________________
22098 [  6732] By: jhi                                   on 2000/08/21  01:23:39
22099         Log: The #6724 is here.
22100      Branch: perl
22101            ! t/lib/ftmp-security.t
22102 ____________________________________________________________________________
22103 [  6731] By: jhi                                   on 2000/08/20  23:17:03
22104         Log: s/this one/the 5.6.0 release/
22105      Branch: perl
22106            ! pod/perl56delta.pod
22107 ____________________________________________________________________________
22108 [  6730] By: jhi                                   on 2000/08/20  23:07:34
22109         Log: Mention perlebcdic and perlposix-bc.
22110      Branch: perl
22111            ! pod/perlport.pod
22112 ____________________________________________________________________________
22113 [  6729] By: jhi                                   on 2000/08/20  21:32:59
22114         Log: Document the number of exponent digits.
22115      Branch: perl
22116            ! pod/perlfunc.pod
22117 ____________________________________________________________________________
22118 [  6728] By: jhi                                   on 2000/08/20  21:16:47
22119         Log: Use File::Spec->tmpdir().
22120              
22121              Subject: Re: [ID 20000820.001] not OK - Perl 5.7.0 (uninstalled)
22122              From: Tim Jenness <timj@jach.hawaii.edu>
22123              Message-ID: <Pine.LNX.4.21.0008201057080.20544-100000@lapaki.jach.hawaii.edu>
22124              MIME-Version: 1.0
22125              Date: Sun, 20 Aug 2000 11:01:25 -1000 (HST)
22126      Branch: perl
22127            ! utils/perlbug.PL
22128 ____________________________________________________________________________
22129 [  6727] By: jhi                                   on 2000/08/20  20:43:32
22130         Log: Update Changes.
22131      Branch: perl
22132            ! Changes patchlevel.h
22133 ____________________________________________________________________________
22134 [  6726] By: jhi                                   on 2000/08/20  20:41:44
22135         Log: The veryclean target needs to clobber.
22136      Branch: perl
22137            ! Makefile.SH
22138 ____________________________________________________________________________
22139 [  6725] By: jhi                                   on 2000/08/20  20:37:38
22140         Log: Document odd vs even subreleases and -Dusedevel.
22141      Branch: perl
22142            ! INSTALL
22143 ____________________________________________________________________________
22144 [  6724] By: jhi                                   on 2000/08/20  19:58:05
22145         Log: Use temporary directory instead of current directory.
22146              
22147              Subject: Re: [ID 20000816.011] Test failure in lib/ftmp-security.t
22148              From: Tim Jenness <timj@jach.hawaii.edu>
22149              Date: Sat, 19 Aug 2000 10:26:07 -1000 (HST)
22150              Message-ID: <Pine.LNX.4.21.0008191015090.13727-100000@lapaki.jach.hawaii.edu>
22151      Branch: perl
22152            ! t/lib/ftmp-security.t
22153 ____________________________________________________________________________
22154 [  6723] By: jhi                                   on 2000/08/20  19:55:55
22155         Log: Subject: [PATCH] Silence MakeMaker (Was: installman)
22156              From: andreas.koenig@anima.de (Andreas J. Koenig)
22157              Date: 20 Aug 2000 15:52:03 +0200
22158              Message-ID: <m3em3khwfw.fsf_-_@ak-71.mind.de>
22159      Branch: perl
22160            ! lib/ExtUtils/MM_Unix.pm
22161 ____________________________________________________________________________
22162 [  6722] By: jhi                                   on 2000/08/20  19:46:01
22163         Log: Update to CGI 2.72, from Lincoln Stein.
22164      Branch: perl
22165            ! lib/CGI.pm
22166 ____________________________________________________________________________
22167 [  6721] By: jhi                                   on 2000/08/20  19:43:54
22168         Log: Subject: Re: [ID 20000819.002] Not OK: perl v5.7.0 +SUIDMAIL +DEVEL6707 on i686-linux 2.2.5-16 (UNINSTALLED)
22169              From: Radu Greab <radu@netsoft.ro>
22170              Date: Sun, 20 Aug 2000 18:03:26 +0300 (EEST)
22171              Message-ID: <Pine.LNX.4.10.10008201753260.1292-100000@busy.netsoft.ro>
22172      Branch: perl
22173            ! ext/GDBM_File/GDBM_File.xs
22174 ____________________________________________________________________________
22175 [  6720] By: jhi                                   on 2000/08/20  19:42:01
22176         Log: pp_open() could pass an uninitialized filename down to do_open9().
22177      Branch: perl
22178            ! pp_sys.c
22179 ____________________________________________________________________________
22180 [  6719] By: jhi                                   on 2000/08/20  14:06:41
22181         Log: UTF8 concat fixes.
22182              
22183              Subject: [PATCH @6713] Re: [ID 20000815.006] latest patched perl core dumps
22184              From: Hugo <hv@crypt.compulink.co.uk>
22185              Date: Sun, 20 Aug 2000 07:30:46 +0100
22186              Message-Id: <200008200630.HAA18053@crypt.compulink.co.uk>
22187      Branch: perl
22188            ! pp_hot.c t/op/append.t
22189 ____________________________________________________________________________
22190 [  6718] By: jhi                                   on 2000/08/20  02:09:37
22191         Log: Let's try #6717 again.
22192      Branch: perl
22193            ! lib/File/Temp.pm
22194 ____________________________________________________________________________
22195 [  6717] By: jhi                                   on 2000/08/20  01:56:55
22196         Log: Subject: [PATCH perl@6698] File::Temp fix-ups for OpenVMS
22197              From: "Craig A. Berry" <craig.berry@metamorgs.com>
22198              Date: Sat, 19 Aug 2000 18:15:39 -0500
22199              Message-Id: <p04320402b5c4c10bc280@[192.168.56.169]>
22200      Branch: perl
22201            ! lib/File/Temp.pm
22202 ____________________________________________________________________________
22203 [  6716] By: jhi                                   on 2000/08/19  15:50:11
22204         Log: Update Changes.
22205      Branch: perl
22206            ! Changes patchlevel.h
22207 ____________________________________________________________________________
22208 [  6715] By: jhi                                   on 2000/08/19  15:39:09
22209         Log: Subject: [ID 20000817.023] endianness description in perlfunc.pod
22210              From: Jonathan D Johnston <jdjohnston2@juno.com>
22211              Date: Thu, 17 Aug 2000 23:13:01 -0400       
22212              Message-Id: <20000817.231304.-743351.1.jdjohnston2@juno.com>
22213      Branch: perl
22214            ! pod/perlfunc.pod
22215 ____________________________________________________________________________
22216 [  6714] By: jhi                                   on 2000/08/19  15:34:04
22217         Log: Introduce a 'veryclean' target that is like 'distclean'
22218              but also removes *~ and *.orig.
22219      Branch: perl
22220            ! Makefile.SH lib/ExtUtils/MM_Unix.pm pod/Makefile.SH
22221            ! utils/Makefile x2p/Makefile.SH
22222 ____________________________________________________________________________
22223 [  6713] By: jhi                                   on 2000/08/19  14:15:45
22224         Log: Put back the long double avoidance code to POSIX.xs
22225              because VMS seems to need it still.
22226      Branch: perl
22227            ! ext/POSIX/POSIX.xs
22228 ____________________________________________________________________________
22229 [  6712] By: jhi                                   on 2000/08/19  14:10:41
22230         Log: Subject: [PATCH: 6698] was Re: [PATCH: 6640] VMS Makefile.SH update (fwd)
22231              From: Peter Prymmer <pvhp@forte.com>
22232              Date: Fri, 18 Aug 2000 18:18:31 -0700 (PDT)
22233              Message-ID: <Pine.OSF.4.10.10008181818100.322420-100000@aspara.forte.com>
22234      Branch: perl
22235            ! lib/Pod/Find.pm t/pod/find.t
22236 ____________________________________________________________________________
22237 [  6711] By: jhi                                   on 2000/08/19  14:09:19
22238         Log: Subject: [PATCH: 6698] tidy up the temp files left by peek tests on VMS
22239              From: Peter Prymmer <pvhp@forte.com>
22240              Date: Fri, 18 Aug 2000 17:54:10 -0700 (PDT)
22241              Message-ID: <Pine.OSF.4.10.10008181751350.322420-100000@aspara.forte.com>
22242              cc: vmsperl@perl.org
22243      Branch: perl
22244            ! t/lib/peek.t
22245 ____________________________________________________________________________
22246 [  6710] By: jhi                                   on 2000/08/19  14:08:01
22247         Log: Subject: [PATCH 5.6.0+] fix for Win32::GetFullPathName and Win32::GetShortPathName
22248              From: Jan Dubois <jand@ActiveState.com>
22249              Date: Fri, 18 Aug 2000 16:31:48 -0700
22250              Message-ID: <2ihrps00u6qkpjtfq6f2b1d1ndkrs7l04u@4ax.com>
22251      Branch: perl
22252            ! win32/win32.c
22253 ____________________________________________________________________________
22254 [  6709] By: jhi                                   on 2000/08/19  14:06:57
22255         Log: Fix a core dump in lib/selfloader under -DDEBUGGING.
22256              
22257              Subject: PATCH @6698 for [ID 20000817.007] Not OK: perl v5.7.0 +SUIDMAIL +DEVEL6676 on alpha-dec_osf 4.0f (UNINSTALLED) 
22258              From: Spider.Boardman@Orb.Nashua.NH.US
22259              Date: Fri, 18 Aug 2000 18:41:14 -0400
22260              Message-Id: <200008182241.SAA29667@Orb.Nashua.NH.US>
22261      Branch: perl
22262            ! regcomp.c
22263 ____________________________________________________________________________
22264 [  6708] By: jhi                                   on 2000/08/18  22:04:49
22265         Log: Update Changes.
22266      Branch: perl
22267            ! Changes patchlevel.h
22268 ____________________________________________________________________________
22269 [  6707] By: jhi                                   on 2000/08/18  21:55:14
22270         Log: Add warnif(), check warnings further up the stack,
22271              all the warnings functions now can take an optional object reference.
22272              
22273              Subject: [PATCH bleedperl@6691] warnings pragma update
22274              From: "Paul Marquess" <Paul.Marquess@btinternet.com>
22275              Date: Fri, 18 Aug 2000 22:42:06 +0100
22276              Message-ID: <000c01c0095d$278e0040$ca01073e@bfs.phone.com>
22277      Branch: perl
22278            ! lib/Class/Struct.pm lib/Tie/Handle.pm lib/Tie/Hash.pm
22279            ! lib/Tie/Scalar.pm lib/fields.pm lib/syslog.pl lib/warnings.pm
22280            ! pod/perllexwarn.pod t/pragma/warn/9enabled warnings.pl
22281 ____________________________________________________________________________
22282 [  6706] By: jhi                                   on 2000/08/18  21:41:45
22283         Log: Typo in pp_complement().
22284              
22285              Subject: [PATCH perl-current] Deparse
22286              From: Peter Scott <Peter@PSDT.com>
22287              Date: Fri, 18 Aug 2000 12:44:37 -0700
22288              Message-Id: <4.3.2.7.2.20000818124024.00ba2be0@psdt.com>
22289      Branch: perl
22290            ! ext/B/B/Deparse.pm
22291 ____________________________________________________________________________
22292 [  6705] By: jhi                                   on 2000/08/18  21:25:59
22293         Log: Subject: [PATCH 5.6.0+] fix for Win32::DomainName
22294              From: Jan Dubois <jand@ActiveState.com>
22295              Date: Fri, 18 Aug 2000 14:22:51 -0700
22296              Message-ID: <0o9rps458r29eb97h5csuq81b1eip4no33@4ax.com>
22297      Branch: perl
22298            ! lib/Win32.pod win32/win32.c
22299 ____________________________________________________________________________
22300 [  6704] By: jhi                                   on 2000/08/18  21:16:14
22301         Log: Don't eat leading os from index entries.
22302              
22303              Subject: Re: [ID 20000810.006] Pod::Man Ate My 'O'!
22304              From: Russ Allbery <rra@stanford.edu>
22305              Date: 10 Aug 2000 20:49:25 -0700
22306              Message-ID: <ylu2cs78ze.fsf@windlord.stanford.edu>
22307      Branch: perl
22308            ! lib/Pod/Man.pm
22309 ____________________________________________________________________________
22310 [  6703] By: jhi                                   on 2000/08/18  21:07:06
22311         Log: Add [[:blank:]] as suggested in
22312              
22313              Subject: [ID 20000716.024] [=cc=] / [:blank:]
22314              From: Jeffrey Friedl <jfriedl@fummy.dsl.yahoo.com>
22315              Date: Sun, 16 Jul 2000 17:55:29 -0700
22316              Message-Id: <200007170055.RAA23528@fummy.dsl.yahoo.com>
22317              
22318              (the [=cc=] has already been taken care of by #6439
22319              so the whole bug report can be closed)
22320              
22321              and make [[:space:]] to be equivalent to isspace(3)
22322              (as opposed to \s, which is isSPACE()).  The difference
22323              is that now [[:space:]] matches the mythical vertical tab,
22324              while \s doesn't.
22325      Branch: perl
22326            ! handy.h pod/perlre.pod pod/perlretut.pod regcomp.c regcomp.h
22327            ! regexec.c t/op/pat.t
22328 ____________________________________________________________________________
22329 [  6702] By: jhi                                   on 2000/08/18  18:47:47
22330         Log: The new tests were missing from #6415.
22331      Branch: perl
22332            ! t/op/bop.t
22333 ____________________________________________________________________________
22334 [  6701] By: jhi                                   on 2000/08/18  18:20:40
22335         Log: Document the NDBM_File and ODBM_File as SDBM_File
22336              was documented in #6417.
22337      Branch: perl
22338            ! ext/NDBM_File/NDBM_File.pm ext/ODBM_File/ODBM_File.pm
22339            ! ext/SDBM_File/SDBM_File.pm
22340 ____________________________________________________________________________
22341 [  6700] By: jhi                                   on 2000/08/18  18:10:39
22342         Log: Subject: [PATCH perl@6698] cygwin port
22343              From: "Fifer, Eric" <EFifer@sanwaint.com>
22344              Date: Fri, 18 Aug 2000 17:30:05 +0100
22345              Message-ID: <779F20BCCE5AD31186A50008C75D9979171784@silldn_mail1.sanwaint.com>
22346      Branch: perl
22347            ! lib/File/Temp.pm
22348 ____________________________________________________________________________
22349 [  6699] By: jhi                                   on 2000/08/18  16:21:49
22350         Log: Document code point which makes if (defined %stash::) to work
22351              (noted by Spider Boardman).
22352      Branch: perl
22353            ! op.c
22354 ____________________________________________________________________________
22355 [  6698] By: jhi                                   on 2000/08/18  13:43:27
22356         Log: Update Changes.
22357      Branch: perl
22358            ! Changes patchlevel.h
22359 ____________________________________________________________________________
22360 [  6697] By: jhi                                   on 2000/08/18  13:35:57
22361         Log: Tiny Getopt::Long patch from Johan Vromans.
22362      Branch: perl
22363            ! lib/Getopt/Long.pm t/lib/gol-basic.t t/lib/gol-oo.t
22364 ____________________________________________________________________________
22365 [  6696] By: jhi                                   on 2000/08/18  13:26:14
22366         Log: Subject: [ID 20000817.018] behaviour change 5.5.3 -> 5.6.0 re "Modification of a read-only value"
22367              From: Paul David Fardy <pdf@morgan.ucs.mun.ca>
22368              Date: Thu, 17 Aug 2000 17:23:40 -0230 (NDT)
22369              Message-Id: <200008171953.RAA17673@porthos.ucs.mun.ca>
22370      Branch: perl
22371            ! pod/perldiag.pod pod/perlsyn.pod
22372 ____________________________________________________________________________
22373 [  6695] By: jhi                                   on 2000/08/18  13:13:26
22374         Log: Subject: [PATCH] perlfunc.pod -- clarifying sprintf array argument issues
22375              From: Daniel Chetlin <daniel@chetlin.com>
22376              Date: Fri, 18 Aug 2000 03:13:36 -0700
22377              Message-ID: <20000818031336.B14165@ilmd.chetlin.org>
22378      Branch: perl
22379            ! pod/perlfunc.pod
22380 ____________________________________________________________________________
22381 [  6694] By: jhi                                   on 2000/08/18  13:08:05
22382         Log: Subject: [PATCH] perltrap.pod spring cleaning
22383              From: Daniel Chetlin <daniel@chetlin.com>
22384              Date: Fri, 18 Aug 2000 03:06:54 -0700
22385              Message-ID: <20000818030654.A14165@ilmd.chetlin.org>
22386              
22387              plus Mike Guy's nitfix.
22388      Branch: perl
22389            ! pod/perltrap.pod
22390 ____________________________________________________________________________
22391 [  6693] By: jhi                                   on 2000/08/18  13:00:26
22392         Log: Unbuffer the output.
22393              
22394              Subject: Re: [ID 20000817.017] Not OK: perl v5.7.0 +SUIDMAIL +DEVEL6680 on
22395              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
22396              Date: Thu, 17 Aug 2000 18:39:29 -0700
22397              Message-ID: <RPJn5gzkgydf092yn@efn.org>
22398      Branch: perl
22399            ! t/op/fork.t
22400 ____________________________________________________________________________
22401 [  6692] By: jhi                                   on 2000/08/18  05:19:17
22402         Log: Delete the image, too, not just its MANIFEStation.
22403      Branch: perl
22404            - lib/CGI/eg/wilogo.gif
22405 ____________________________________________________________________________
22406 [  6691] By: jhi                                   on 2000/08/18  05:10:26
22407         Log: Propagate new Configure vars.
22408      Branch: perl
22409            ! configure.com epoc/config.sh uconfig.h uconfig.sh
22410            ! vos/config.def vos/config.h vos/config_h.SH_orig
22411            ! win32/config.bc win32/config.gc win32/config.vc
22412            ! win32/config_H.bc win32/config_H.gc win32/config_H.vc
22413 ____________________________________________________________________________
22414 [  6690] By: jhi                                   on 2000/08/18  04:30:56
22415         Log: Update Changes.
22416      Branch: perl
22417            ! Changes patchlevel.h
22418 ____________________________________________________________________________
22419 [  6689] By: jhi                                   on 2000/08/18  04:12:30
22420         Log: Fix the lib/complex failure of
22421              
22422              From: abigail@foad.org
22423              Subject: [ID 20000814.005] Not OK: perl v5.6.0 on i686-linux-64int 2.2.13       
22424              Date: 15 Aug 2000 04:06:38 -0000
22425              Message-Id: <20000815040638.8524.qmail@foad.org> 
22426              
22427              Linux long double accuracy issue: something that
22428              when printed with %g looks like "2" but int() of it is 1.
22429      Branch: perl
22430            ! lib/Math/Complex.pm
22431 ____________________________________________________________________________
22432 [  6688] By: jhi                                   on 2000/08/18  03:15:35
22433         Log: The byteorder code in #6671 was wrong.
22434      Branch: perl
22435            ! configpm
22436 ____________________________________________________________________________
22437 [  6687] By: jhi                                   on 2000/08/18  02:08:42
22438         Log: Subject: [PATCH 5.6.0+] newSVrv() memory leak
22439              From: Jan Dubois <jand@ActiveState.com>
22440              Date: Thu, 17 Aug 2000 18:31:55 -0700
22441              Message-ID: <l64ppsggaiuc4t6msm45iqohmhpjblb4qf@4ax.com>
22442      Branch: perl
22443            ! sv.c
22444 ____________________________________________________________________________
22445 [  6686] By: jhi                                   on 2000/08/18  02:04:15
22446         Log: Use NVs in POSIX math, not doubles.
22447              
22448              From: abigail@foad.org
22449              Subject: [ID 20000817.014] POSIX & modfl
22450              Date: 17 Aug 2000 20:49:18 -0000
22451              Message-Id: <20000817204918.23123.qmail@foad.org>
22452      Branch: perl
22453            ! ext/POSIX/POSIX.xs ext/POSIX/typemap
22454 ____________________________________________________________________________
22455 [  6685] By: jhi                                   on 2000/08/18  02:02:12
22456         Log: Introduce NVef, NVff, and NVgf, use the middle one.
22457              (helps for lib/peek + Linux + long doubles)  Reported in
22458              
22459              From: abigail@foad.org
22460              Subject: [ID 20000814.005] Not OK: perl v5.6.0 on i686-linux-64int 2.2.13       
22461              Date: 15 Aug 2000 04:06:38 -0000
22462              Message-Id: <20000815040638.8524.qmail@foad.org> 
22463              
22464              (note: the lib/complex failure has not yet been addressed)
22465      Branch: metaconfig/U/perl
22466            ! perlxvf.U
22467      Branch: perl
22468            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
22469            ! config_h.SH dump.c perl.h pod/perlguts.pod
22470 ____________________________________________________________________________
22471 [  6684] By: jhi                                   on 2000/08/17  23:22:19
22472         Log: Add byteorder to the myconfig output.
22473      Branch: perl
22474            ! myconfig.SH
22475 ____________________________________________________________________________
22476 [  6683] By: jhi                                   on 2000/08/17  23:20:19
22477         Log: The image doth not exist, spotted by Johan Vromans.
22478      Branch: perl
22479            ! MANIFEST
22480 ____________________________________________________________________________
22481 [  6682] By: jhi                                   on 2000/08/17  22:38:16
22482         Log: Document what the backtick returns if the command fails.
22483      Branch: perl
22484            ! pod/perlop.pod
22485 ____________________________________________________________________________
22486 [  6681] By: jhi                                   on 2000/08/17  22:33:12
22487         Log: Do not use prototyping here.
22488              
22489              Subject: [ID 20000817.016] [PATCH] Peek.xs
22490              From: abigail@foad.org
22491              Date: 17 Aug 2000 20:55:56 -0000
22492              Message-Id: <20000817205556.24270.qmail@foad.org>
22493      Branch: perl
22494            ! ext/Devel/Peek/Makefile.PL
22495 ____________________________________________________________________________
22496 [  6680] By: jhi                                   on 2000/08/17  19:46:43
22497         Log: Don't propose using modules built for 5.005 if no binary
22498              compatibility with 5.005 is attempted.
22499              
22500              From: Jeff Okamoto <okamoto@xfiles.intercon.hp.com>
22501              Subject: Minor nit with 5.7.0 (6655)
22502              Date: Wed, 16 Aug 2000 15:56:14 -0700 (PDT)
22503              Message-Id: <200008162256.PAA06964@xfiles.intercon.hp.com>
22504      Branch: metaconfig
22505            ! U/installdirs/inc_version_list.U
22506      Branch: perl
22507            ! Configure config_h.SH
22508 ____________________________________________________________________________
22509 [  6679] By: jhi                                   on 2000/08/17  19:16:39
22510         Log: Microperl config update.
22511      Branch: perl
22512            ! uconfig.h uconfig.sh
22513 ____________________________________________________________________________
22514 [  6678] By: jhi                                   on 2000/08/17  19:16:13
22515         Log: The #6648 wasn't protective enough for limited platforms
22516              (like microperl).
22517      Branch: perl
22518            ! dump.c sv.c
22519 ____________________________________________________________________________
22520 [  6677] By: jhi                                   on 2000/08/17  14:46:35
22521         Log: Update Changes.
22522      Branch: perl
22523            ! Changes patchlevel.h
22524 ____________________________________________________________________________
22525 [  6676] By: jhi                                   on 2000/08/17  14:44:02
22526         Log: Add perlebcdic from Peter Prymmer, regen toc.
22527      Branch: perl
22528            + pod/perlebcdic.pod
22529            ! MANIFEST pod/buildtoc.PL pod/perl.pod pod/perltoc.pod
22530 ____________________________________________________________________________
22531 [  6675] By: jhi                                   on 2000/08/17  14:41:52
22532         Log: perldebtut 1.10 from Richard Foley, plus Celsius and Fahrenheit.
22533      Branch: perl
22534            ! pod/perldebtut.pod
22535 ____________________________________________________________________________
22536 [  6674] By: jhi                                   on 2000/08/17  14:29:43
22537         Log: Get -DLEAKTEST to compile (not necessarily to work, mind)
22538              
22539              Subject: [ID 20000724.006] -DLEAKTEST problem
22540              From: Gregory Martin Pfeil <pfeilgm@technomadic.org>
22541              Date: Tue, 25 Jul 2000 00:36:32 -0500
22542              Message-Id: <20000725003632.A26186@www.llamacom.com>
22543              
22544              Reminder sent
22545              
22546              Subject: [PATCH bleadperl@6647] -DLEAKTEST compile error      
22547              From: Hugo <hv@crypt.compulink.co.uk>
22548              Date: Thu, 17 Aug 2000 15:23:42 +0100
22549              Message-Id: <200008171423.PAA06749@crypt.compulink.co.uk>
22550      Branch: perl
22551            ! util.c
22552 ____________________________________________________________________________
22553 [  6673] By: jhi                                   on 2000/08/17  04:07:10
22554         Log: Subject: Re: [PATCH]Re: Questions about Math::BigFloat
22555              From: John Peacock <JPeacock@UnivPress.com>
22556              Date: Tue, 01 Aug 2000 09:38:12 -0400
22557              Message-ID: <3986D2C4.54B78FE4@UnivPress.com>
22558      Branch: perl
22559            ! lib/Math/BigFloat.pm lib/Math/BigInt.pm t/lib/bigfltpm.t
22560 ____________________________________________________________________________
22561 [  6672] By: jhi                                   on 2000/08/17  03:04:35
22562         Log: Subject: [PATCH] Cwd.pm now uses strict
22563              From: Tim Jenness <timj@jach.hawaii.edu>
22564              Date: Wed, 16 Aug 2000 16:42:35 -1000 (HST)
22565              Message-ID: <Pine.LNX.4.21.0008161639510.1135-100000@lapaki.jach.hawaii.edu>
22566      Branch: perl
22567            ! lib/Cwd.pm
22568 ____________________________________________________________________________
22569 [  6671] By: jhi                                   on 2000/08/17  02:16:35
22570         Log: Make $Config{byteorder} more magical so that it is
22571              dynamically computed: nice for 'fat binaries'.
22572              
22573              Subject: [PATCH]: default byteorder
22574              From: Wilfredo Sánchez <wsanchez@apple.com>
22575              Date: Mon, 31 Jul 2000 19:45:31 -0700
22576              Message-Id: <200008010245.TAA04459@ns1.abstrata.com>
22577      Branch: perl
22578            ! configpm
22579 ____________________________________________________________________________
22580 [  6670] By: gsar                                  on 2000/08/17  01:22:21
22581         Log: move WNOHANG definition to where other such things are
22582      Branch: perl
22583            ! win32/win32.h
22584 ____________________________________________________________________________
22585 [  6669] By: jhi                                   on 2000/08/17  01:19:17
22586         Log: Update Changes.
22587      Branch: perl
22588            ! Changes patchlevel.h
22589 ____________________________________________________________________________
22590 [  6668] By: jhi                                   on 2000/08/17  01:16:29
22591         Log: Doc nits spotted by Richard Soderberg.
22592      Branch: perl
22593            ! README.posix-bc README.vmesa
22594 ____________________________________________________________________________
22595 [  6667] By: jhi                                   on 2000/08/17  01:12:11
22596         Log: Subject: [PATCH(2) @6655] Re: perldebut.pod - spelling
22597              From: "Casey R. Tweten" <crt@kiski.net>
22598              Date: Wed, 16 Aug 2000 12:39:08 -0400 (EDT)
22599              Message-ID: <Pine.OSF.4.21.0008161238250.32058-100000@home.kiski.net>
22600      Branch: perl
22601            ! pod/perldebtut.pod
22602 ____________________________________________________________________________
22603 [  6666] By: jhi                                   on 2000/08/17  01:09:31
22604         Log: Subject: Re: [ID 20000816.006] [PATCH @6655] Shell.pm, bug fix, strict and OO Interface
22605              From: "Casey R. Tweten" <crt@kiski.net>
22606              Date: Wed, 16 Aug 2000 11:35:09 -0400 (EDT)
22607              Message-ID: <Pine.OSF.4.21.0008161132270.10885-100000@home.kiski.net>
22608      Branch: perl
22609            ! lib/Shell.pm
22610 ____________________________________________________________________________
22611 [  6665] By: gsar                                  on 2000/08/17  01:03:52
22612         Log: add "ok" targets from change#6632 in makefile.mk
22613      Branch: perl
22614            ! pod/perlport.pod win32/Makefile win32/makefile.mk
22615 ____________________________________________________________________________
22616 [  6664] By: gsar                                  on 2000/08/17  00:56:11
22617         Log: avoid warnings from dense compiler
22618      Branch: perl
22619            ! win32/win32.c
22620 ____________________________________________________________________________
22621 [  6663] By: jhi                                   on 2000/08/17  00:51:49
22622         Log: Tweak the regex compilation errors once more.
22623      Branch: perl
22624            ! pod/perldiag.pod regcomp.c t/op/misc.t t/op/re_tests
22625            ! t/op/regmesg.t t/pragma/warn/regcomp
22626 ____________________________________________________________________________
22627 [  6662] By: gsar                                  on 2000/08/17  00:28:19
22628         Log: trailing new %ENV entries weren't being pushed into the real
22629              environment of subprocesses on Windows
22630      Branch: perl
22631            ! t/op/magic.t win32/perlhost.h
22632 ____________________________________________________________________________
22633 [  6661] By: gsar                                  on 2000/08/17  00:19:20
22634         Log: waitpid() now handles externally spawned pids correctly;
22635              fixes for backtick/wait/waitpid failures on Windows 9x
22636              
22637              these changes make the pid returned by process functions on
22638              Windows 9x always positive by clearing the high bit (which
22639              is always set on Win9x); pseudo-process PIDs are likewise
22640              always negative now on Win9x (just as on NT/2000)
22641      Branch: perl
22642            ! pp_sys.c win32/perlhost.h win32/win32.c
22643 ____________________________________________________________________________
22644 [  6660] By: jhi                                   on 2000/08/17  00:04:32
22645         Log: Retract #6645.
22646      Branch: perl
22647            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
22648            ! config_h.SH pod/perldelta.pod pod/perlfunc.pod sv.c
22649            ! t/op/sprintf.t
22650 ____________________________________________________________________________
22651 [  6659] By: gsar                                  on 2000/08/16  23:59:28
22652         Log: on windows, the return values from wait() and waitpid() don't
22653              match those of pseudo-pids
22654      Branch: perl
22655            ! pp_sys.c t/op/fork.t util.c win32/win32.c
22656 ____________________________________________________________________________
22657 [  6658] By: gsar                                  on 2000/08/16  23:56:14
22658         Log: pod nit seen in passing
22659      Branch: perl
22660            ! pod/perlfunc.pod
22661 ____________________________________________________________________________
22662 [  6657] By: gsar                                  on 2000/08/16  23:53:42
22663         Log: change#6328 could make close(SOCKET) return false on windows
22664              when it shouldn't
22665      Branch: perl
22666            ! win32/win32sck.c
22667 ____________________________________________________________________________
22668 [  6656] By: gsar                                  on 2000/08/16  23:46:57
22669         Log: check that the number pseudo children doesn't exceed
22670              MAXIMUM_WAIT_OBJECTS, which is currently 64 (avoids overflowing
22671              the WaitForMultipleObjects() limit that would cause wait()
22672              to crash)
22673              
22674              wait() and waitpid() could potentially be rewritten to use
22675              more than one thread to do the waiting to eliminate this
22676              limitation
22677      Branch: perl
22678            ! win32/perlhost.h
22679 ____________________________________________________________________________
22680 [  6655] By: jhi                                   on 2000/08/16  14:11:05
22681         Log: Update Changes.
22682      Branch: perl
22683            ! Changes patchlevel.h
22684 ____________________________________________________________________________
22685 [  6654] By: jhi                                   on 2000/08/16  14:10:12
22686         Log: Update to perldebtut 1.9, from Richard Foley.
22687      Branch: perl
22688            ! pod/perldebtut.pod
22689 ____________________________________________________________________________
22690 [  6653] By: jhi                                   on 2000/08/16  14:08:17
22691         Log: Change the regx compilation error markers to use = instead of <
22692              since pod makes using the latter quite messy.  Reported in
22693              ID 20000814.006 by Abigail and in
22694              Subject: Unknown escape E<> ?
22695              From: Lupe Christoph <lupe@lupe-christoph.de>
22696              Date: Fri, 11 Aug 2000 00:30:27 +0200
22697              Message-ID: <20000811003027.F17420@alanya.lupe-christoph.de>
22698      Branch: perl
22699            ! pod/perldiag.pod regcomp.c t/op/misc.t t/op/re_tests
22700            ! t/op/regmesg.t t/pragma/warn/regcomp
22701 ____________________________________________________________________________
22702 [  6652] By: jhi                                   on 2000/08/16  13:25:31
22703         Log: Change the perlbug address to perl.org since it's more forgiving.
22704              
22705              Subject: [ID 20000814.007] [PATCH] Email address in perlbug.
22706              From: abigail@foad.org
22707              Date: 15 Aug 2000 04:15:40 -0000
22708              Message-Id: <20000815041540.8633.qmail@foad.org>
22709      Branch: perl
22710            ! utils/perlbug.PL
22711 ____________________________________________________________________________
22712 [  6651] By: jhi                                   on 2000/08/16  13:22:35
22713         Log: Subject: [PATCH] Cwd::_backtick_pwd does not check return value
22714              From: Tim Jenness <timj@jach.hawaii.edu>
22715              Date: Tue, 15 Aug 2000 15:51:59 -1000 (HST)
22716              Message-ID: <Pine.LNX.4.21.0008151547560.1223-100000@lapaki.jach.hawaii.edu>
22717      Branch: perl
22718            ! lib/Cwd.pm
22719 ____________________________________________________________________________
22720 [  6650] By: jhi                                   on 2000/08/16  13:18:13
22721         Log: Update to CPAN 1.57.
22722              
22723              Subject: Re: [PATCH] Cwd::_backtick_pwd does not check return value
22724              From: andreas.koenig@anima.de (Andreas J. Koenig)
22725              Date: 16 Aug 2000 15:09:46 +0200
22726              Message-ID: <m3k8dh5p45.fsf@ak-71.mind.de>
22727      Branch: perl
22728            ! lib/CPAN.pm
22729 ____________________________________________________________________________
22730 [  6649] By: jhi                                   on 2000/08/16  13:12:31
22731         Log: Subject: [ID 20000324.040] minor fix to perlhpux.pod
22732              From: "Larry W. Virden" <lvirden@cas.org>
22733              Date: Fri, 24 Mar 2000 14:25:37 -0500 (EST)
22734              Message-Id: <200003241925.OAA27985@lwv26awu.cas.org>
22735      Branch: perl
22736            ! README.hpux
22737 ____________________________________________________________________________
22738 [  6648] By: jhi                                   on 2000/08/16  13:03:53
22739         Log: The numeric locale was reset to "C" by s?printf and never restored.
22740              
22741              Subject: [ID 20000809.003] setlocale(LC_NUMERIC...) produces different results in 5.005 and 5.6
22742              From: Christian Kirsch <ck@held.mind.de>
22743              Date: Wed, 9 Aug 2000 17:05:17 +0200
22744              Message-Id: <20000809170517.A25389@held>
22745              
22746              No test since adding the failing example to locale.t
22747              does not fail -- probably because the locale settings are so
22748              thoroughly tweaked by that time.  Running the example standalone
22749              does fail, though.  UPDATE: test case added at change #7540.
22750      Branch: perl
22751            ! dump.c perl.h pp.c pp_ctl.c sv.c
22752 ____________________________________________________________________________
22753 [  6647] By: jhi                                   on 2000/08/16  00:07:54
22754         Log: Update Changes and test semi-automatic patchlevel updating.
22755      Branch: perl
22756            ! Changes patchlevel.h
22757 ____________________________________________________________________________
22758 [  6646] By: jhi                                   on 2000/08/15  23:35:07
22759         Log: Fix a dependency problem.
22760              
22761              Subject: [PATCH: 6640] VMS Makefile.SH update
22762              From: Peter Prymmer <pvhp@forte.com>
22763              Date: Tue, 15 Aug 2000 16:31:34 -0700 (PDT)
22764              Message-ID: <Pine.OSF.4.10.10008151613140.141017-100000@aspara.forte.com>
22765      Branch: perl
22766            ! vms/descrip_mms.template
22767 ____________________________________________________________________________
22768 [  6645] By: jhi                                   on 2000/08/15  23:33:23
22769         Log: (Retracted by #6660)
22770              
22771              Subject: [PATCH perl-current] make s?printf() produce two exponent digits where possible
22772              From: Dominic Dunlop <domo@computer.org>
22773              Date: Tue, 15 Aug 2000 22:20:52 +0200
22774              Message-Id: <p04320403b5bf4c32d381@[192.168.1.4]>
22775      Branch: metaconfig/U/perl
22776            + d_printfed.U
22777      Branch: perl
22778            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
22779            ! config_h.SH pod/perldelta.pod pod/perlfunc.pod sv.c
22780            ! t/op/sprintf.t
22781 ____________________________________________________________________________
22782 [  6644] By: jhi                                   on 2000/08/15  21:17:20
22783         Log: Subject: [ID 20000815.014] [PATCH] INSTALL doesn't mention 64 bit support.
22784              From: abigail@foad.org
22785              Date: 15 Aug 2000 20:12:41 -0000
22786              Message-Id: <20000815201241.25556.qmail@foad.org>
22787      Branch: perl
22788            ! INSTALL
22789 ____________________________________________________________________________
22790 [  6643] By: jhi                                   on 2000/08/15  21:15:28
22791         Log: (an already applied patch)
22792      Branch: perl
22793            ! lib/CGI.pm
22794 ____________________________________________________________________________
22795 [  6642] By: gsar                                  on 2000/08/15  19:54:05
22796         Log: magic callbacks all need to have same type signature
22797      Branch: perl
22798            ! embed.pl mg.c proto.h
22799 ____________________________________________________________________________
22800 [  6641] By: jhi                                   on 2000/08/15  17:56:27
22801         Log: Subject: [PATCH] for t/lib/peek.t (was Re: [ID 20000814.005] Not OK: perl v5.6.0 on i686-linux-64int 2.2.13)
22802              From: Mike Guy <mjtg@cam.ac.uk>
22803              Message-Id: <E13OkU9-0006rb-00@libra.cus.cam.ac.uk>
22804              Date: Tue, 15 Aug 2000 18:26:45 +0100
22805              
22806              Only the peek.t part applied, not the hash quality part.
22807      Branch: perl
22808            ! t/lib/peek.t
22809 ____________________________________________________________________________
22810 [  6640] By: jhi                                   on 2000/08/15  16:37:37
22811         Log: Update Changes.
22812      Branch: perl
22813            ! Changes
22814 ____________________________________________________________________________
22815 [  6639] By: jhi                                   on 2000/08/15  16:34:55
22816         Log: Missed a file from #6638.
22817      Branch: perl
22818            ! lib/File/Temp.pm
22819 ____________________________________________________________________________
22820 [  6638] By: jhi                                   on 2000/08/15  16:33:19
22821         Log: Subject: [PATCH perl@6620] cygwin port
22822              From: "Fifer, Eric" <EFifer@sanwaint.com>
22823              Date: Tue, 15 Aug 2000 17:00:49 +0100
22824              Message-ID: <779F20BCCE5AD31186A50008C75D9979171779@silldn_mail1.sanwaint.com>
22825      Branch: perl
22826            ! README.cygwin hints/cygwin.sh pod/perlport.pod t/lib/b.t
22827 ____________________________________________________________________________
22828 [  6637] By: jhi                                   on 2000/08/15  16:29:22
22829         Log: Subject: [PATCH] debugger exit code should reflect user exit code
22830              From: Mike Guy <mjtg@cam.ac.uk>
22831              Date: Tue, 15 Aug 2000 16:55:59 +0100
22832              Message-Id: <E13Oj4J-0005FS-00@libra.cus.cam.ac.uk>
22833      Branch: perl
22834            ! lib/perl5db.pl
22835 ____________________________________________________________________________
22836 [  6636] By: jhi                                   on 2000/08/15  15:30:58
22837         Log: Update Changes.
22838      Branch: perl
22839            ! Changes
22840 ____________________________________________________________________________
22841 [  6635] By: jhi                                   on 2000/08/15  15:27:21
22842         Log: Use -Dusedevel; regen Configure and the respective Porting stuff.
22843      Branch: metaconfig
22844            ! U/mkglossary U/mksample
22845      Branch: metaconfig/U/perl
22846            ! Devel.U
22847      Branch: perl
22848            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
22849 ____________________________________________________________________________
22850 [  6634] By: jhi                                   on 2000/08/15  14:11:55
22851         Log: Don't blow limited stacks, a lower number is enough to
22852              tickle the lookbehind limit.
22853              
22854              Subject: [ID 20000815.007] Not OK: perl@6627 +SUIDMAIL on powerpc-machten 4.1.4 (UNINSTALLED) [PATCH]
22855              From: Dominic Dunlop <domo@computer.org>
22856              Date: Tue, 15 Aug 2000 13:51:24 +0200
22857              Message-Id: <p04320400b5bedcedaf22@[192.168.1.4]>
22858      Branch: perl
22859            ! t/op/regmesg.t
22860 ____________________________________________________________________________
22861 [  6633] By: jhi                                   on 2000/08/15  14:01:46
22862         Log: Subject: [ID 20000815.005] [PATCH] perldoc not looking in the right place for script pod
22863              From: Mike Guy <mjtg@cam.ac.uk>
22864              Date: Tue, 15 Aug 2000 12:10:50 +0100
22865              Message-Id: <E13OecM-0006nF-00@libra.cus.cam.ac.uk>
22866      Branch: perl
22867            ! utils/perldoc.PL
22868 ____________________________________________________________________________
22869 [  6632] By: jhi                                   on 2000/08/15  13:58:48
22870         Log: make ok etc also for win32.
22871              
22872              Subject: [ID 20000814.008] Not OK: perl v5.6.0 (6620) on MSWin32-x86 4.0 (UNINSTALLED)
22873              From: Prymmer/Kahn <pvhp@best.com>
22874              Date: Mon, 14 Aug 2000 22:42:06 -0700 (PDT)
22875              Message-Id: <Pine.BSF.4.21.0008142240280.3888-100000@shell8.ba.best.com>
22876      Branch: perl
22877            ! win32/Makefile
22878 ____________________________________________________________________________
22879 [  6631] By: jhi                                   on 2000/08/15  13:45:03
22880         Log: Update (kinda) to Test 1.14, from Joshua Pritikin.
22881      Branch: perl
22882            ! lib/Test.pm
22883 ____________________________________________________________________________
22884 [  6630] By: jhi                                   on 2000/08/15  03:25:09
22885         Log: Update Changes.
22886      Branch: perl
22887            ! Changes
22888 ____________________________________________________________________________
22889 [  6629] By: jhi                                   on 2000/08/15  03:23:53
22890         Log: magic_regdatum_set() is void, not int.
22891      Branch: perl
22892            ! embed.pl mg.c proto.h
22893 ____________________________________________________________________________
22894 [  6628] By: jhi                                   on 2000/08/15  03:08:02
22895         Log: Make the user to give up his firstborn, err, to knowingly
22896              verify installing an unstable developer release.  Also bump
22897              the release to 5.7.0, but leave a patch tag in the local
22898              patches saying that this is not yet the real thing.
22899      Branch: metaconfig
22900            ! U/modified/Instruct.U
22901      Branch: metaconfig/U/perl
22902            + Devel.U
22903      Branch: perl
22904            ! Configure patchlevel.h
22905 ____________________________________________________________________________
22906 [  6627] By: jhi                                   on 2000/08/14  22:32:52
22907         Log: README.os2 update.
22908              
22909              Subject: Re: [PATCH perl-current] Make op/sprintf.t more comprehensive,
22910              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
22911              Date: Wed, 02 Aug 2000 21:55:09 -0700
22912              Message-ID: <tsPi5gzkgegX092yn@efn.org>
22913      Branch: perl
22914            ! README.os2
22915 ____________________________________________________________________________
22916 [  6626] By: jhi                                   on 2000/08/14  21:00:02
22917         Log: Subject: Re: File::Temp problems on VMS in bleedperl
22918              From: Tim Jenness <timj@jach.hawaii.edu>
22919              cc: vmsperl@perl.org
22920              Date: Mon, 14 Aug 2000 09:44:33 -1000 (HST)
22921              Message-ID: <Pine.LNX.4.21.0008140941300.6753-100000@lapaki.jach.hawaii.edu>
22922      Branch: perl
22923            ! lib/File/Temp.pm t/lib/ftmp-tempfile.t
22924 ____________________________________________________________________________
22925 [  6625] By: jhi                                   on 2000/08/14  20:52:16
22926         Log: Add SUIDMAIL as was done for the CERT alert.
22927      Branch: perl
22928            ! patchlevel.h
22929 ____________________________________________________________________________
22930 [  6624] By: jhi                                   on 2000/08/14  20:48:50
22931         Log: Subject: sfio2000
22932              From: Daniel Muino <dmuino@afip.gov.ar>
22933              Date: Mon, 14 Aug 2000 16:58:11 -0300
22934              Message-ID: <20000814165811.B16368@con2-dgi>
22935      Branch: perl
22936            ! perlsdio.h perlsfio.h
22937 ____________________________________________________________________________
22938 [  6623] By: jhi                                   on 2000/08/14  20:47:36
22939         Log: Subject: warning: storage class after type is obsolescent
22940              From: Daniel Muino <dmuino@afip.gov.ar>
22941              Date: Mon, 14 Aug 2000 16:42:47 -0300
22942              Message-ID: <20000814164247.A16368@con2-dgi>
22943      Branch: perl
22944            ! regcomp.pl regnodes.h
22945 ____________________________________________________________________________
22946 [  6622] By: jhi                                   on 2000/08/14  20:43:05
22947         Log: Subject: [ID 20000814.002] [Patch] Email address in Changes.
22948              From: abigail@foad.org
22949              Date: 14 Aug 2000 20:00:10 -0000
22950              Message-Id: <20000814200010.27271.qmail@foad.org>
22951      Branch: perl
22952            ! Changes
22953 ____________________________________________________________________________
22954 [  6621] By: jhi                                   on 2000/08/14  15:23:05
22955         Log: Update Changes.
22956      Branch: perl
22957            ! Changes
22958 ____________________________________________________________________________
22959 [  6620] By: jhi                                   on 2000/08/14  15:22:14
22960         Log: Subject: Re: [PATCH] @+, @- readonly
22961              From: Mike Guy <mjtg@cam.ac.uk>
22962              Date: Mon, 14 Aug 2000 15:26:55 +0100
22963              Message-Id: <E13OLCZ-00020N-00@libra.cus.cam.ac.uk>
22964      Branch: perl
22965            ! XSUB.h embed.h embed.pl globvar.sym gv.c mg.c perl.h proto.h
22966            ! sv.c t/op/pat.t
22967 ____________________________________________________________________________
22968 [  6619] By: jhi                                   on 2000/08/14  14:12:08
22969         Log: Update Changes.
22970      Branch: perl
22971            ! Changes
22972 ____________________________________________________________________________
22973 [  6618] By: jhi                                   on 2000/08/14  14:09:34
22974         Log: For now remove the mail code.
22975      Branch: perl
22976            ! perl.c
22977 ____________________________________________________________________________
22978 [  6617] By: jhi                                   on 2000/08/14  14:08:28
22979         Log: Drop the eg/ mentions and also mention the recent suidperl thing.
22980      Branch: perl
22981            ! jpl/README lib/ExtUtils/Embed.pm pod/perlcompile.pod
22982            ! pod/perlfaq8.pod pod/perlsec.pod
22983 ____________________________________________________________________________
22984 [  6616] By: jhi                                   on 2000/08/14  14:00:11
22985         Log: Subject: Re: [ID 20000807.003] [PATCH] Debugger treatment of condition "0"
22986              From: Mike Guy <mjtg@cam.ac.uk>
22987              Date: Mon, 14 Aug 2000 08:26:02 +0100
22988              Message-Id: <E13OEdG-0007LT-00@libra.cus.cam.ac.uk>
22989      Branch: perl
22990            ! lib/perl5db.pl
22991 ____________________________________________________________________________
22992 [  6615] By: jhi                                   on 2000/08/14  13:58:45
22993         Log: Subject: [PATCH] @+, @- readonly (was Re: @<punct> interpolating in "")
22994              From: Mike Guy <mjtg@cam.ac.uk>
22995              Date: Mon, 14 Aug 2000 08:04:22 +0100
22996              Message-Id: <E13OEII-0007B2-00@libra.cus.cam.ac.uk>
22997      Branch: perl
22998            ! gv.c mg.c t/op/pat.t
22999 ____________________________________________________________________________
23000 [  6614] By: jhi                                   on 2000/08/14  13:56:45
23001         Log: Subject: Test fails / warnings with perl-current #6612
23002              From: Mike Guy <mjtg@cam.ac.uk>
23003              Date: Mon, 14 Aug 2000 07:57:23 +0100
23004              Message-Id: <E13OEBX-000776-00@libra.cus.cam.ac.uk>
23005      Branch: perl
23006            ! t/lib/b.t t/lib/peek.t
23007 ____________________________________________________________________________
23008 [  6613] By: jhi                                   on 2000/08/14  13:45:33
23009         Log: VMS configure.com update continues.
23010      Branch: perl
23011            - vms/configure.com
23012            ! MANIFEST configure.com
23013 ____________________________________________________________________________
23014 [  6612] By: jhi                                   on 2000/08/13  22:13:35
23015         Log: Update Changes.
23016      Branch: perl
23017            ! Changes
23018 ____________________________________________________________________________
23019 [  6611] By: jhi                                   on 2000/08/13  16:21:45
23020         Log: Upgrade to CGI 2.71, from Lincoln Stein.
23021      Branch: perl
23022            ! lib/CGI.pm lib/CGI/Cookie.pm t/lib/cgi-function.t
23023 ____________________________________________________________________________
23024 [  6610] By: jhi                                   on 2000/08/13  15:09:16
23025         Log: Subject: [PATCH] t/op/regmesg.t fails if REG_INFTY set
23026              From: Mike Guy <mjtg@cam.ac.uk>
23027              Date: Sun, 13 Aug 2000 13:45:51 +0100
23028              Message-Id: <E13Nx9D-00027M-00@libra.cus.cam.ac.uk>
23029      Branch: perl
23030            ! t/op/regmesg.t
23031 ____________________________________________________________________________
23032 [  6609] By: jhi                                   on 2000/08/13  14:31:26
23033         Log: Andreas says that 1.56 is fine, so reverting back to it.
23034      Branch: perl
23035            ! lib/CPAN.pm
23036 ____________________________________________________________________________
23037 [  6608] By: jhi                                   on 2000/08/13  05:34:20
23038         Log: Update Changes.
23039      Branch: perl
23040            ! Changes
23041 ____________________________________________________________________________
23042 [  6607] By: jhi                                   on 2000/08/13  05:32:01
23043         Log: Put back the \z changes of #5406 to CPAN.pm.
23044      Branch: perl
23045            ! lib/CPAN.pm
23046 ____________________________________________________________________________
23047 [  6606] By: jhi                                   on 2000/08/13  05:20:16
23048         Log: Fix-n-skip the tests under 5005threads.
23049      Branch: perl
23050            ! t/lib/b.t
23051 ____________________________________________________________________________
23052 [  6605] By: jhi                                   on 2000/08/13  05:07:48
23053         Log: Fix the test for 5005threads.
23054      Branch: perl
23055            ! t/lib/peek.t
23056 ____________________________________________________________________________
23057 [  6604] By: jhi                                   on 2000/08/13  03:35:37
23058         Log: Should have deleted this in #6603.
23059      Branch: perl
23060            - vms/subconfigure.com
23061 ____________________________________________________________________________
23062 [  6603] By: jhi                                   on 2000/08/12  18:29:32
23063         Log: Rewrite of vms/subconfigure.com as configure.com,
23064              from Peter Prymmer and the vmsperl crew.
23065      Branch: perl
23066            + vms/configure.com
23067            ! MANIFEST
23068 ____________________________________________________________________________
23069 [  6602] By: jhi                                   on 2000/08/11  13:00:01
23070         Log: PlainText.pm is dead.
23071      Branch: perl
23072            - lib/Pod/PlainText.pm
23073            ! MANIFEST
23074 ____________________________________________________________________________
23075 [  6601] By: jhi                                   on 2000/08/11  04:06:45
23076         Log: Update Changes.
23077      Branch: perl
23078            ! Changes
23079 ____________________________________________________________________________
23080 [  6600] By: jhi                                   on 2000/08/11  04:06:10
23081         Log: Add a few missing files, update MANIFEST.
23082      Branch: perl
23083            + lib/CGI/eg/make_links.pl lib/CGI/eg/wilogo.gif
23084            + lib/Pod/PlainText.pm t/pod/find.t
23085            ! MANIFEST t/op/regmesg.t
23086 ____________________________________________________________________________
23087 [  6599] By: jhi                                   on 2000/08/11  03:31:10
23088         Log: Add Perl debugging tutorial, regen toc. 
23089              
23090              Subject: perldebtut.pod
23091              From: Richard Foley <Richard.Foley@m.dasa.de>
23092              Date: Wed, 09 Aug 2000 10:17:15 +0200
23093              Message-id: <3991138B.262247B8@m.dasa.de>
23094      Branch: perl
23095            + pod/perldebtut.pod
23096            ! MANIFEST pod/buildtoc.PL pod/perl.pod pod/perltoc.pod
23097 ____________________________________________________________________________
23098 [  6598] By: jhi                                   on 2000/08/11  02:48:56
23099         Log: tiny Changes edit
23100      Branch: perl
23101            ! Changes
23102 ____________________________________________________________________________
23103 [  6597] By: jhi                                   on 2000/08/11  02:39:04
23104         Log: Tests for #6589.
23105              
23106              Subject: Re: B::Deparse was Re: [ID 20000808.005] refs to returned lvalues are lvalues??
23107              From: simon@brecon.co.uk (Simon Cozens)
23108              Date: 11 Aug 2000 02:24:52 GMT
23109              Message-ID: <slrn8p6ovk.5sh.simon@justanother.perlhacker.org>
23110      Branch: perl
23111            ! t/lib/b.t
23112 ____________________________________________________________________________
23113 [  6596] By: jhi                                   on 2000/08/11  01:50:07
23114         Log: Update Changes.
23115      Branch: perl
23116            ! Changes
23117 ____________________________________________________________________________
23118 [  6595] By: jhi                                   on 2000/08/11  01:47:16
23119         Log: nitfix
23120      Branch: perl
23121            ! Changes
23122 ____________________________________________________________________________
23123 [  6594] By: jhi                                   on 2000/08/11  01:36:16
23124         Log: Subject: Getting perlio and threads to compile
23125              From: Lupe Christoph <lupe@lupe-christoph.de>
23126              Date: Wed, 9 Aug 2000 11:35:54 +0200
23127              Message-ID: <20000809113554.G23160@alanya.lupe-christoph.de>
23128              
23129              (the Solaris version changes in Configure skipped)
23130      Branch: perl
23131            ! hints/solaris_2.sh thread.h
23132 ____________________________________________________________________________
23133 [  6593] By: jhi                                   on 2000/08/11  01:30:16
23134         Log: Subject: Re: [ID 20000730.003] utf8::length() bad
23135              From: simon@brecon.co.uk (Simon Cozens)
23136              Date: 1 Aug 2000 06:55:19 GMT
23137              Message-ID: <slrn8oct2n.19l.simon@justanother.perlhacker.org>
23138      Branch: perl
23139            ! lib/utf8.pm
23140 ____________________________________________________________________________
23141 [  6592] By: jhi                                   on 2000/08/11  01:26:39
23142         Log: Subject: Re: [ID 20000809.006] Debugger lost the ability to see $1 et al
23143              From: Peter Scott <Peter@PeterScott.com>
23144              Date: Thu, 10 Aug 2000 08:23:27 -0700
23145              Message-Id: <4.3.2.7.2.20000810081749.00aa92c0@peterscott.com>
23146      Branch: perl
23147            ! lib/perl5db.pl
23148 ____________________________________________________________________________
23149 [  6591] By: jhi                                   on 2000/08/11  01:22:02
23150         Log: Subject: Re: [ID 20000809.005] trouble with long string and /m modifier - uninitialized value 
23151              From: Hugo <hv@crypt.compulink.co.uk>
23152              Date: Thu, 10 Aug 2000 19:23:04 +0100
23153              Message-Id: <200008101823.TAA23580@crypt.compulink.co.uk>
23154      Branch: perl
23155            ! regexec.c t/op/pat.t
23156 ____________________________________________________________________________
23157 [  6590] By: jhi                                   on 2000/08/11  01:19:19
23158         Log: Preprocessing and postprocessing for File::Find.
23159              
23160              Subject: Patch to Find::File.pm to allow alphabetical results
23161              From: Joe Smith <jsmith@inwap.com>
23162              Date: Wed, 9 Aug 2000 02:44:54 -0700
23163              Message-Id: <20000809024453.A21193@tardis.Tymnet.COM>
23164      Branch: perl
23165            ! lib/File/Find.pm
23166 ____________________________________________________________________________
23167 [  6589] By: jhi                                   on 2000/08/11  01:12:39
23168         Log: B::Deparse didn't do sub attributes.
23169              
23170              Subject: B::Deparse was Re: [ID 20000808.005] refs to returned lvalues are lvalues??
23171              From: simon@brecon.co.uk (Simon Cozens)
23172              Date: 9 Aug 2000 04:49:20 GMT
23173              Message-ID: <slrn8p1omg.beq.simon@justanother.perlhacker.org>
23174      Branch: perl
23175            ! ext/B/B.xs ext/B/B/Deparse.pm ext/B/defsubs_h.PL
23176 ____________________________________________________________________________
23177 [  6588] By: jhi                                   on 2000/08/11  01:06:40
23178         Log: Subject: debugger "d" command doesnt check line number
23179              From: Mike Guy <mjtg@cam.ac.uk>
23180              Date: Tue, 08 Aug 2000 21:54:29 +0100
23181              Message-Id: <E13MGOL-000053-00@libra.cus.cam.ac.uk>
23182      Branch: perl
23183            ! lib/perl5db.pl mg.c pod/perldiag.pod
23184 ____________________________________________________________________________
23185 [  6587] By: jhi                                   on 2000/08/11  00:45:03
23186         Log: sleep(1) does not necessarily return 1.
23187              
23188              Subject: [PATCH bleadperl] op/lex_assign.t  
23189              From: Hugo <hv@crypt.compulink.co.uk>
23190              Date: Thu, 03 Aug 2000 14:34:22 +0100        
23191              Message-Id: <200008031334.OAA03379@crypt.compulink.co.uk>
23192      Branch: perl
23193            ! t/op/lex_assign.t
23194 ____________________________________________________________________________
23195 [  6586] By: jhi                                   on 2000/08/11  00:31:50
23196         Log: Document the IO::Select timeout.
23197      Branch: perl
23198            ! ext/IO/lib/IO/Select.pm
23199 ____________________________________________________________________________
23200 [  6585] By: jhi                                   on 2000/08/11  00:13:54
23201         Log: Forgot contributor.
23202      Branch: perl
23203            ! Changes
23204 ____________________________________________________________________________
23205 [  6584] By: jhi                                   on 2000/08/11  00:09:19
23206         Log: detypo
23207      Branch: perl
23208            ! Changes
23209 ____________________________________________________________________________
23210 [  6583] By: jhi                                   on 2000/08/11  00:07:53
23211         Log: Fixes to looking-like-number to keep behaviour as it was in 5.005_03.
23212              
23213              Subject: Re: [ID 20000810.002] $a["1foo"] same as $a[0]
23214              From: Mike Guy <mjtg@cam.ac.uk> 
23215              Date: Thu, 10 Aug 2000 15:50:54 +0100
23216              Message-Id: <E13Mtfa-0005Ge-00@libra.cus.cam.ac.uk>
23217      Branch: perl
23218            ! sv.c t/op/int.t
23219 ____________________________________________________________________________
23220 [  6582] By: jhi                                   on 2000/08/10  23:29:32
23221         Log: Update Changes.
23222      Branch: perl
23223            ! Changes
23224 ____________________________________________________________________________
23225 [  6581] By: jhi                                   on 2000/08/10  23:26:16
23226         Log: Put back the std @INC thing.
23227      Branch: perl
23228            ! t/lib/ansicolor.t t/lib/cgi-form.t t/lib/cgi-function.t
23229            ! t/lib/cgi-html.t t/lib/cgi-pretty.t t/lib/cgi-request.t
23230            ! t/lib/gol-basic.t t/lib/gol-compat.t t/lib/gol-linkage.t
23231            ! t/lib/gol-oo.t
23232 ____________________________________________________________________________
23233 [  6580] By: jhi                                   on 2000/08/10  23:03:34
23234         Log: Update to CGI 2.70, from Lincoln Stein.
23235      Branch: perl
23236            ! lib/CGI.pm lib/CGI/Carp.pm lib/CGI/Cookie.pm lib/CGI/Pretty.pm
23237            ! lib/CGI/Push.pm lib/CGI/Util.pm t/lib/cgi-form.t
23238            ! t/lib/cgi-function.t t/lib/cgi-html.t t/lib/cgi-pretty.t
23239            ! t/lib/cgi-request.t
23240 ____________________________________________________________________________
23241 [  6579] By: jhi                                   on 2000/08/10  22:41:50
23242         Log: Update to CPAN 1.56, from Andreas König.
23243      Branch: perl
23244            ! lib/CPAN.pm lib/CPAN/FirstTime.pm
23245 ____________________________________________________________________________
23246 [  6578] By: jhi                                   on 2000/08/10  22:38:13
23247         Log: Update to Pod::Parser 1.17, from Brad Appleton.
23248      Branch: perl
23249            ! lib/Pod/Checker.pm lib/Pod/Find.pm lib/Pod/InputObjects.pm
23250            ! lib/Pod/ParseUtils.pm lib/Pod/Parser.pm lib/Pod/Select.pm
23251            ! lib/Pod/Usage.pm pod/pod2usage.PL pod/podchecker.PL
23252            ! pod/podselect.PL t/pod/emptycmd.t t/pod/for.t t/pod/headings.t
23253            ! t/pod/include.t t/pod/included.t t/pod/lref.t
23254            ! t/pod/multiline_items.t t/pod/nested_items.t
23255            ! t/pod/nested_seqs.t t/pod/oneline_cmds.t t/pod/pod2usage.t
23256            ! t/pod/poderrs.t t/pod/poderrs.xr t/pod/podselect.t
23257            ! t/pod/special_seqs.t
23258 ____________________________________________________________________________
23259 [  6577] By: jhi                                   on 2000/08/10  22:35:41
23260         Log: Small AUTHORS and MAINTAIN updates.  Could do with big updates.
23261      Branch: perl
23262            ! AUTHORS MAINTAIN
23263 ____________________________________________________________________________
23264 [  6576] By: jhi                                   on 2000/08/10  22:24:54
23265         Log: Update to Getopt::Long 2.23_05, from Johan Vromans.
23266      Branch: perl
23267            + t/lib/gol-oo.t
23268            ! MANIFEST lib/Getopt/Long.pm lib/newgetopt.pl t/lib/gol-basic.t
23269            ! t/lib/gol-compat.t t/lib/gol-linkage.t
23270 ____________________________________________________________________________
23271 [  6575] By: jhi                                   on 2000/08/10  22:02:07
23272         Log: Update to Term::ANSIColor 1.03, from Russ Allbery.
23273      Branch: perl
23274            ! lib/Term/ANSIColor.pm t/lib/ansicolor.t
23275 ____________________________________________________________________________
23276 [  6574] By: jhi                                   on 2000/08/10  21:55:03
23277         Log: Iterating perl6 description.
23278      Branch: perl
23279            ! pod/perlfaq1.pod
23280 ____________________________________________________________________________
23281 [  6573] By: jhi                                   on 2000/08/10  21:48:26
23282         Log: Revert the sv.c part of #6559, a better fix is needed.
23283      Branch: perl
23284            ! sv.c
23285 ____________________________________________________________________________
23286 [  6572] By: jhi                                   on 2000/08/10  20:33:43
23287         Log: It's the 2ndO'ROSSC.
23288      Branch: perl
23289            ! pod/perlfaq1.pod
23290 ____________________________________________________________________________
23291 [  6571] By: jhi                                   on 2000/08/10  15:55:48
23292         Log: detypo
23293      Branch: perl
23294            ! pod/perlfaq1.pod
23295 ____________________________________________________________________________
23296 [  6570] By: jhi                                   on 2000/08/10  14:11:17
23297         Log: An exceptionally sticky typo.
23298      Branch: perl
23299            ! Changes
23300 ____________________________________________________________________________
23301 [  6569] By: jhi                                   on 2000/08/10  14:09:33
23302         Log: detypo (and test Changes updating script)
23303      Branch: perl
23304            ! Changes
23305 ____________________________________________________________________________
23306 [  6568] By: jhi                                   on 2000/08/10  14:07:07
23307         Log: Update Changes.
23308      Branch: perl
23309            ! Changes
23310 ____________________________________________________________________________
23311 [  6567] By: jhi                                   on 2000/08/10  14:06:19
23312         Log: Amend the description of Perl6.
23313              Subject: [PATCH Perl-5.6.0] perlfaq1.pod
23314              From: Elaine -HFB- Ashton <elaine@chaos.wustl.edu>
23315              Date: Wed, 9 Aug 2000 22:11:06 -0500
23316              Message-ID: <20000809221106.A12246@chaos.wustl.edu>
23317      Branch: perl
23318            ! pod/perlfaq1.pod
23319 ____________________________________________________________________________
23320 [  6566] By: jhi                                   on 2000/08/10  13:58:57
23321         Log: Subject: Remove dead entry in perldiag
23322              From: Mike Guy <mjtg@cam.ac.uk>
23323              Date: Thu, 10 Aug 2000 14:19:19 +0100
23324              Message-Id: <E13MsEx-00033G-00@libra.cus.cam.ac.uk>
23325      Branch: perl
23326            ! pod/perldiag.pod
23327 ____________________________________________________________________________
23328 [  6565] By: jhi                                   on 2000/08/10  13:51:48
23329         Log: Zero entries were skipped, fix from Adrian Goalby
23330              <argoalby@yahoo.co.uk>
23331      Branch: perl
23332            ! lib/unicode/Number.pl lib/unicode/mktables.PL
23333 ____________________________________________________________________________
23334 [  6564] By: jhi                                   on 2000/08/10  13:00:12
23335         Log: Subject: [PATCH 5.6.0] cygwin port
23336              From: "Fifer, Eric" <EFifer@sanwaint.com>
23337              Date: Thu, 10 Aug 2000 13:15:36 +0100
23338              Message-ID: <779F20BCCE5AD31186A50008C75D997917176A@silldn_mail1.sanwaint.com>
23339      Branch: perl
23340            ! README.cygwin hints/cygwin.sh
23341 ____________________________________________________________________________
23342 [  6563] By: jhi                                   on 2000/08/10  12:55:16
23343         Log: Get back into sync with Jeffrey on the enhanced regex warnings.
23344      Branch: perl
23345            ! pod/perldiag.pod regcomp.c t/op/re_tests t/op/readdir.t
23346 ____________________________________________________________________________
23347 [  6562] By: gsar                                  on 2000/08/10  08:38:39
23348         Log: warn is a macro, avoid using at a variable to avoid warnings
23349              in some configurations; readdir.t is too conservative in
23350              estimating number of *.t's
23351      Branch: perl
23352            ! t/op/readdir.t util.c
23353 ____________________________________________________________________________
23354 [  6561] By: jhi                                   on 2000/08/09  23:35:42
23355         Log: Update Changes.
23356      Branch: perl
23357            ! Changes
23358 ____________________________________________________________________________
23359 [  6560] By: jhi                                   on 2000/08/09  23:05:47
23360         Log: Subject: Re: enhanced(?) regex error messages
23361              From: Jeffrey Friedl <jfriedl@yahoo-inc.com>
23362              Date: Wed, 9 Aug 2000 00:59:43 -0700 (PDT)
23363              Message-Id: <200008090759.AAA07144@ventrue.yahoo.com>
23364              
23365              (plus two small patches sent privately)
23366              (this still seems to leave few test failures)
23367      Branch: perl
23368            + t/op/regmesg.t
23369            ! MANIFEST pod/perldiag.pod regcomp.c regcomp.h t/op/misc.t
23370            ! t/pragma/warn/regcomp
23371 ____________________________________________________________________________
23372 [  6559] By: jhi                                   on 2000/08/09  20:41:18
23373         Log: (The fix did work but was not right, retracted in #6573)
23374              
23375              Subject: [ID 20000809.003] setlocale(LC_NUMERIC...) produces different results in 5.005 and 5.6
23376              From: Christian Kirsch <ck@held.mind.de>
23377              Date: Wed, 9 Aug 2000 17:05:17 +0200
23378              Message-Id: <20000809170517.A25389@held>
23379      Branch: perl
23380            ! sv.c t/pragma/locale.t
23381 ____________________________________________________________________________
23382 [  6558] By: jhi                                   on 2000/08/08  22:34:08
23383         Log: Tiny updates on the contributors list.
23384      Branch: perl
23385            ! Changes
23386 ____________________________________________________________________________
23387 [  6557] By: jhi                                   on 2000/08/08  19:34:28
23388         Log: Double check that we have a dirhandle.
23389      Branch: perl
23390            ! util.c
23391 ____________________________________________________________________________
23392 [  6556] By: jhi                                   on 2000/08/08  19:01:51
23393         Log: Delete eg as agreed at TPC3 (yes, 3).  Dusty, obsolete, non-w-clean.
23394              May be repopulated with fresh maintained examples.
23395      Branch: perl
23396            + lib/CGI/eg/RunMeFirst lib/CGI/eg/caution.xbm
23397            + lib/CGI/eg/clickable_image.cgi lib/CGI/eg/cookie.cgi
23398            + lib/CGI/eg/crash.cgi lib/CGI/eg/customize.cgi
23399            + lib/CGI/eg/diff_upload.cgi lib/CGI/eg/dna_small_gif.uu
23400            + lib/CGI/eg/file_upload.cgi lib/CGI/eg/frameset.cgi
23401            + lib/CGI/eg/index.html lib/CGI/eg/internal_links.cgi
23402            + lib/CGI/eg/javascript.cgi lib/CGI/eg/monty.cgi
23403            + lib/CGI/eg/multiple_forms.cgi lib/CGI/eg/nph-clock.cgi
23404            + lib/CGI/eg/nph-multipart.cgi lib/CGI/eg/popup.cgi
23405            + lib/CGI/eg/save_state.cgi lib/CGI/eg/tryit.cgi
23406            + lib/CGI/eg/wilogo_gif.uu
23407            - eg/ADB eg/README eg/cgi/RunMeFirst eg/cgi/caution.xbm
23408            - eg/cgi/clickable_image.cgi eg/cgi/cookie.cgi eg/cgi/crash.cgi
23409            - eg/cgi/customize.cgi eg/cgi/diff_upload.cgi
23410            - eg/cgi/dna_small_gif.uu eg/cgi/file_upload.cgi
23411            - eg/cgi/frameset.cgi eg/cgi/index.html
23412            - eg/cgi/internal_links.cgi eg/cgi/javascript.cgi
23413            - eg/cgi/monty.cgi eg/cgi/multiple_forms.cgi
23414            - eg/cgi/nph-clock.cgi eg/cgi/nph-multipart.cgi eg/cgi/popup.cgi
23415            - eg/cgi/save_state.cgi eg/cgi/tryit.cgi eg/cgi/wilogo_gif.uu
23416            - eg/changes eg/client eg/down eg/dus eg/findcp eg/findtar
23417            - eg/g/gcp eg/g/gcp.man eg/g/ged eg/g/ghosts eg/g/gsh
23418            - eg/g/gsh.man eg/muck eg/muck.man eg/myrup eg/nih eg/relink
23419            - eg/rename eg/rmfrom eg/scan/scan_df eg/scan/scan_last
23420            - eg/scan/scan_messages eg/scan/scan_passwd eg/scan/scan_ps
23421            - eg/scan/scan_sudo eg/scan/scan_suid eg/scan/scanner eg/server
23422            - eg/shmkill eg/sysvipc/README eg/sysvipc/ipcmsg
23423            - eg/sysvipc/ipcsem eg/sysvipc/ipcshm eg/travesty eg/unuc
23424            - eg/uudecode eg/van/empty eg/van/unvanish eg/van/vanexp
23425            - eg/van/vanish eg/who eg/wrapsuid
23426            ! MANIFEST
23427 ____________________________________________________________________________
23428 [  6555] By: jhi                                   on 2000/08/08  18:51:08
23429         Log: Delete chat2 as requested by Randal.
23430              
23431              Subject: Re: perlfaq8 coyness
23432              From: merlyn@stonehenge.com (Randal L. Schwartz) 
23433              Date: 15 May 2000 18:52:42 -0700 
23434              Message-ID: <m166sfl0r9.fsf@halfdome.holdit.com> 
23435      Branch: perl
23436            - lib/chat2.pl
23437            ! MANIFEST
23438 ____________________________________________________________________________
23439 [  6554] By: jhi                                   on 2000/08/08  18:31:35
23440         Log: Regen global.sym.
23441      Branch: perl
23442            ! global.sym
23443 ____________________________________________________________________________
23444 [  6553] By: jhi                                   on 2000/08/08  18:28:13
23445         Log: Do away with array context, from Daniel Chetlin <daniel@chetlin.com>
23446              (either perlbug or p5p ate the original), plus regen
23447              perlapi and perltoc. 
23448      Branch: perl
23449            ! Changes Changes5.004 README.Y2K cop.h emacs/cperl-mode.el
23450            ! ext/B/ramblings/flip-flop ext/Data/Dumper/Dumper.pm
23451            ! ext/IO/lib/IO/Handle.pm ext/IO/lib/IO/Socket.pm
23452            ! ext/Socket/Socket.pm lib/CGI.pm lib/CGI/Cookie.pm
23453            ! lib/File/Temp.pm lib/FileHandle.pm lib/Pod/Functions.pm
23454            ! lib/Pod/InputObjects.pm lib/Pod/LaTeX.pm lib/Text/Soundex.pm
23455            ! lib/perl5db.pl op.h opcode.pl perlapi.c perlapi.h
23456            ! pod/perlapi.pod pod/perltoc.pod t/lib/dosglob.t
23457            ! t/lib/ftmp-posix.t t/lib/glob-global.t t/op/grent.t
23458            ! t/op/pwent.t vms/ext/DCLsym/DCLsym.pm
23459 ____________________________________________________________________________
23460 [  6552] By: jhi                                   on 2000/08/08  18:06:29
23461         Log: Subject: [PATCH] Re: [ID 20000807.008] Double reads considered evil? (deja vu)
23462              From: Mike Guy <mjtg@cam.ac.uk>
23463              Message-Id: <E13MAj1-00038W-00@libra.cus.cam.ac.uk>
23464              Date: Tue, 08 Aug 2000 15:51:27 +0100
23465      Branch: perl
23466            ! doop.c sv.h t/op/join.t t/pragma/overload.t
23467 ____________________________________________________________________________
23468 [  6551] By: jhi                                   on 2000/08/08  18:01:11
23469         Log: Re-apply #6549.
23470      Branch: perl
23471            ! lib/perl5db.pl
23472 ____________________________________________________________________________
23473 [  6550] By: jhi                                   on 2000/08/08  17:43:08
23474         Log: Accidental retraction of #6549.
23475      Branch: perl
23476            ! lib/perl5db.pl
23477 ____________________________________________________________________________
23478 [  6549] By: jhi                                   on 2000/08/08  17:40:04
23479         Log: Subject: [ID 20000807.003] [PATCH] Debugger treatment of condition "0"
23480              From: Mike Guy <mjtg@cam.ac.uk>
23481              Date: Mon, 07 Aug 2000 21:49:58 +0100
23482              Message-Id: <E13LtqQ-0006Jc-00@libra.cus.cam.ac.uk>
23483      Branch: perl
23484            ! lib/perl5db.pl
23485 ____________________________________________________________________________
23486 [  6548] By: jhi                                   on 2000/08/08  17:37:57
23487         Log: Document here-doc better.
23488              
23489              Subject: Re: [ID 20000804.003] heredoc in s///e replacement
23490              From: Mike Guy <mjtg@cam.ac.uk>
23491              Date: Mon, 07 Aug 2000 14:02:09 +0100
23492              Message-Id: <E13LmXh-0006rM-00@libra.cus.cam.ac.uk>
23493      Branch: perl
23494            ! pod/perldata.pod
23495 ____________________________________________________________________________
23496 [  6547] By: jhi                                   on 2000/08/08  17:33:34
23497         Log: Subject: Patch against 5.6.0 to allow "-d:Module=arg,arg,arg"
23498              From: "Randy J. Ray" <rjray@redhat.com>
23499              Date: Mon, 07 Aug 2000 19:12:25 -0700
23500              Message-Id: <200008080212.TAA12784@tzimisce.soma.redhat.com>
23501      Branch: perl
23502            ! perl.c pod/perlrun.pod
23503 ____________________________________________________________________________
23504 [  6546] By: jhi                                   on 2000/08/08  17:29:26
23505         Log: Subject: Re: enhanced(?) regex error messages 
23506              From: Hugo <hv@crypt.compulink.co.uk>
23507              Date: Tue, 08 Aug 2000 03:25:51 +0100
23508              Message-Id: <200008080225.DAA10998@crypt.compulink.co.uk>
23509              
23510              plus Capitalize the error messages, plus perldiag them.
23511      Branch: perl
23512            ! pod/perldiag.pod regcomp.c t/op/pat.t t/op/re_tests
23513 ____________________________________________________________________________
23514 [  6545] By: jhi                                   on 2000/08/08  13:59:28
23515         Log: Augment #6539 a bit: don't croak if there's magic in the air.
23516              
23517              Subject: Re: [PATCH bleadperl-6530] bless, REF, and bless(REF, REF) 
23518              From: Hugo <hv@crypt.compulink.co.uk>
23519              Date: Tue, 08 Aug 2000 03:02:03 +0100
23520              Message-Id: <200008080202.DAA09147@crypt.compulink.co.uk>
23521      Branch: perl
23522            ! pp.c t/op/bless.t
23523 ____________________________________________________________________________
23524 [  6544] By: jhi                                   on 2000/08/07  21:11:52
23525         Log: Make the test -w clean.
23526      Branch: perl
23527            ! t/op/bless.t
23528 ____________________________________________________________________________
23529 [  6543] By: jhi                                   on 2000/08/07  19:49:53
23530         Log: use warnings instead of $^W.
23531      Branch: perl
23532            ! t/op/bless.t
23533 ____________________________________________________________________________
23534 [  6542] By: jhi                                   on 2000/08/07  17:41:41
23535         Log: Disable a portability warning Because We Know What We Are Doing.
23536      Branch: perl
23537            ! t/op/bless.t
23538 ____________________________________________________________________________
23539 [  6541] By: jhi                                   on 2000/08/07  17:29:51
23540         Log: Tiny tidying on report_evil_fh().
23541      Branch: perl
23542            ! util.c
23543 ____________________________________________________________________________
23544 [  6540] By: jhi                                   on 2000/08/07  16:37:38
23545         Log: Make regular expression parse error messages easier to understand.
23546              
23547              Subject: Re: enhanced(?) regex error messages
23548              From: Jeffrey Friedl <jfriedl@yahoo-inc.com>
23549              Date: Fri, 4 Aug 2000 23:34:07 -0700 (PDT)
23550              Message-Id: <200008050634.XAA20360@ventrue.yahoo.com>
23551      Branch: perl
23552            ! regcomp.c
23553 ____________________________________________________________________________
23554 [  6539] By: jhi                                   on 2000/08/07  16:12:27
23555         Log: Make bless(REF, REF) a fatal error, add bless tests.
23556              
23557              Subject: [PATCH bleadperl-6530] bless, REF, and bless(REF, REF)
23558              From: Hugo <hv@crypt.compulink.co.uk>
23559              Date: Mon, 07 Aug 2000 16:59:38 +0100
23560              Message-Id: <200008071559.QAA29541@crypt.compulink.co.uk>
23561      Branch: perl
23562            + t/op/bless.t
23563            ! MANIFEST pod/perldiag.pod pp.c sv.c
23564 ____________________________________________________________________________
23565 [  6538] By: jhi                                   on 2000/08/07  15:59:43
23566         Log: Subject: [ID 20000803.006] 'use lib ...' doesn't behave as documented
23567              From: Tim Conrow <tim@spindrift.srl.caltech.edu>
23568              Date: Thu, 3 Aug 2000 14:29:21 -0700
23569              Message-Id: <200008032129.OAA27898@spindrift.caltech.edu>
23570      Branch: perl
23571            ! lib/lib_pm.PL
23572 ____________________________________________________________________________
23573 [  6537] By: jhi                                   on 2000/08/07  15:47:18
23574         Log: Retract #6419 for now since it breaks in AFS and MachTen.
23575      Branch: perl
23576            ! lib/Cwd.pm
23577 ____________________________________________________________________________
23578 [  6536] By: jhi                                   on 2000/08/07  15:05:29
23579         Log: Plug the security hole described in the Aug 05 2000 bugtraq message
23580              "sperl 5.00503 (and newer ;) exploit" by Michal Zalewski.
23581              The security hole exists only in suidperls, which isn't
23582              installed or even built by default.
23583      Branch: perl
23584            ! perl.c
23585 ____________________________________________________________________________
23586 [  6535] By: jhi                                   on 2000/08/07  14:45:14
23587         Log: tr memory corruption fix from Simon Cozens.
23588      Branch: perl
23589            ! doop.c
23590 ____________________________________________________________________________
23591 [  6534] By: jhi                                   on 2000/08/06  11:38:16
23592         Log: Document a bit that UDP is not what you might think.
23593              
23594              Subject: Re: IO::Socket::INET bug sending large UDP packets/fragmentation
23595              From: Lupe Christoph <lupe@lupe-christoph.de>
23596              Message-ID: <20000724085915.B13172@alanya.lupe-christoph.de>
23597              Date: Mon, 24 Jul 2000 08:59:15 +0200
23598      Branch: perl
23599            ! pod/perlipc.pod
23600 ____________________________________________________________________________
23601 [  6533] By: jhi                                   on 2000/08/06  11:35:01
23602         Log: Subject: [PATCH] perlfunc.pod use documentation (5.6.0)
23603              From: Jeff Pinyan <jeffp@hut.crusoe.net>
23604              Date: Sat, 5 Aug 2000 00:22:01 -0400 (EDT)
23605              Message-ID: <Pine.BSF.3.96.1000805002052.23260A-100000@hut.crusoe.net>
23606      Branch: perl
23607            ! pod/perlfunc.pod
23608 ____________________________________________________________________________
23609 [  6532] By: jhi                                   on 2000/08/06  03:45:41
23610         Log: Have symbols for the IoTYPEs.
23611      Branch: perl
23612            ! doio.c pp_ctl.c pp_sys.c sv.h toke.c util.c
23613 ____________________________________________________________________________
23614 [  6531] By: jhi                                   on 2000/08/06  01:33:55
23615         Log: Continue fixing the io warnings.  This also
23616              sort of fixes bug ID 20000802.003: the core dump
23617              is no more.  Whether the current behaviour is correct
23618              (giving a warning: "Not a format reference"), is another matter.
23619      Branch: perl
23620            ! doio.c pod/perldiag.pod pp_hot.c pp_sys.c t/pragma/warn/doio
23621            ! t/pragma/warn/pp_hot t/pragma/warn/pp_sys util.c
23622 ____________________________________________________________________________
23623 [  6530] By: jhi                                   on 2000/08/05  21:33:12
23624         Log: Change the Policy policy: now -Dprefix= with an existing
23625              Policy.sh and prefix == siteprefix == vendorprefix, then all
23626              of them follow along the new prefix.
23627              
23628              Subject: Re: [ID 20000508.002] -Dprefix completely broken [PATCH]
23629              From: Andy Dougherty <doughera@lafayette.edu>
23630              Date: Fri, 4 Aug 2000 14:53:50 -0400 (EDT)
23631              Message-ID: <Pine.SOL.4.10.10008041440560.17981-100000@maxwell.phys.lafayette.edu>
23632      Branch: perl
23633            ! Policy_sh.SH
23634 ____________________________________________________________________________
23635 [  6529] By: jhi                                   on 2000/08/05  18:57:28
23636         Log: Zap lib/Sys directory when cleaning up.
23637      Branch: perl
23638            ! Makefile.SH
23639 ____________________________________________________________________________
23640 [  6528] By: jhi                                   on 2000/08/05  18:40:44
23641         Log: Essential prototype changes were missing from #6527.
23642              Also make report_evil_fh() more bomb-proof.
23643      Branch: perl
23644            ! embed.h util.c
23645 ____________________________________________________________________________
23646 [  6527] By: jhi                                   on 2000/08/05  03:22:05
23647         Log: Subject: [ID 20000724.004] Perl interpreter segfault when using built-in flock
23648              From: "Ronald F. Guilmette" <rfg@monkeys.com>
23649              Date: Mon, 24 Jul 2000 15:47:00 -0700 (PDT)
23650              Message-Id: <200007242247.PAA52177@monkeys.com>
23651      Branch: perl
23652            ! embed.pl pp_hot.c pp_sys.c proto.h t/pragma/warn/pp_sys util.c
23653 ____________________________________________________________________________
23654 [  6526] By: jhi                                   on 2000/08/04  21:23:27
23655         Log: gcc versions might have (parentheses) in them.
23656      Branch: metaconfig/U/perl
23657            ! gccvers.U
23658      Branch: perl
23659            ! Configure config_h.SH
23660 ____________________________________________________________________________
23661 [  6525] By: jhi                                   on 2000/08/04  20:23:12
23662         Log: Weed buglets pointed out by
23663              
23664              From: Lupe Christoph <lupe@lupe-christoph.de>
23665              Subject: Re: [ID 20000803.005] miniperl aborts during Perl make
23666              Date: Fri, 4 Aug 2000 17:34:39 +0200
23667              Message-ID: <20000804173439.L8087@alanya.lupe-christoph.de>
23668      Branch: metaconfig/U/perl
23669            ! gccvers.U uselfs.U
23670      Branch: perl
23671            ! Configure config_h.SH
23672 ____________________________________________________________________________
23673 [  6524] By: jhi                                   on 2000/08/04  19:02:08
23674         Log: Warn under -w if lstat(FH) is attempted.
23675              
23676              Subject: [ID 20000421.003] perlfunc says you can lstat a file handle but you cannot
23677              From: "Todd C. Miller" <Todd.Miller@courtesan.com> 
23678              Date: Fri, 21 Apr 2000 10:43:46 -0600 (MDT) 
23679              Message-Id: <200004211643.e3LGhkX24720@xerxes.courtesan.com> 
23680      Branch: perl
23681            ! pod/perldiag.pod pod/perlfunc.pod pp_sys.c
23682            ! t/pragma/warn/pp_sys
23683 ____________________________________________________________________________
23684 [  6523] By: jhi                                   on 2000/08/04  12:31:11
23685         Log: Subject: New perlcc, take 2
23686              From: simon@brecon.co.uk (Simon Cozens)
23687              Date: 4 Aug 2000 06:21:04 GMT
23688              Message-ID: <slrn8oko6g.da2.simon@justanother.perlhacker.org>
23689      Branch: perl
23690            ! utils/perlcc.PL
23691 ____________________________________________________________________________
23692 [  6522] By: jhi                                   on 2000/08/04  12:26:33
23693         Log: Subject: Re: Array vs. List context
23694              From: Daniel Chetlin <daniel@chetlin.com>
23695              Date: Fri, 4 Aug 2000 00:22:44 -0700
23696              Message-ID: <20000804002244.A5924@ilmd.chetlin.org>
23697      Branch: perl
23698            ! pod/perlapi.pod pod/perlcall.pod pod/perlembed.pod
23699            ! pod/perlfaq4.pod
23700 ____________________________________________________________________________
23701 [  6521] By: jhi                                   on 2000/08/04  12:22:38
23702         Log: Subject: [ID 20000804.002] configure.gnu and arguments with whitespace characters
23703              From: Raymund Will <ray@caldera.de>
23704              Date: Fri, 4 Aug 2000 12:07:09 +0200
23705              Message-Id: <20000804120709.A14982@caldera.de>
23706      Branch: perl
23707            ! configure.gnu
23708 ____________________________________________________________________________
23709 [  6520] By: jhi                                   on 2000/08/04  04:09:06
23710         Log: After the #6519 a warning about stat() is just that,
23711              not about a filetest, which now have their own warning.
23712      Branch: perl
23713            ! pod/perldiag.pod
23714 ____________________________________________________________________________
23715 [  6519] By: jhi                                   on 2000/08/04  04:06:30
23716         Log: In the warnings call filehandles consistently so;
23717              add "unopened" warning for stat().
23718      Branch: perl
23719            ! doio.c pod/perldiag.pod pp_sys.c t/pragma/warn/doio
23720            ! t/pragma/warn/pp_sys
23721 ____________________________________________________________________________
23722 [  6518] By: jhi                                   on 2000/08/04  02:55:35
23723         Log: Subject: Minor tweak to perlvar.pod
23724              From: "Stephen P. Potter" <spp@ds.net>
23725              Date: Tue, 18 Apr 2000 09:26:03 -0400
23726              Message-Id: <200004181326.JAA01560@spp.users.ds.net>
23727      Branch: perl
23728            ! pod/perlvar.pod
23729 ____________________________________________________________________________
23730 [  6517] By: jhi                                   on 2000/08/04  02:50:08
23731         Log: Subject: [ID 19990721.004] Documentation bug in perlfunc
23732              From: "Clinton Pierce" <cpierce1@ford.com>
23733              Date: Wed, 21 Jul 1999 16:45:31 -0400
23734              Message-Id: <199907212049.QAA12875@mailfw3.ford.com>
23735              
23736              Fix by Stephen Potter (visible in the bug db but not in p5p?)
23737      Branch: perl
23738            ! pod/perlfunc.pod pod/perlop.pod
23739 ____________________________________________________________________________
23740 [  6516] By: jhi                                   on 2000/08/04  02:09:25
23741         Log: This is 6512.  Really.
23742      Branch: perl
23743            ! dump.c
23744 ____________________________________________________________________________
23745 [  6515] By: jhi                                   on 2000/08/04  01:25:50
23746         Log: mention the idea of @( and @)
23747      Branch: perl
23748            ! Todo-5.6
23749 ____________________________________________________________________________
23750 [  6514] By: bailey                                on 2000/08/04  01:18:46
23751         Log: YA resync with mainstem, including VMS patches from others
23752      Branch: vmsperl
23753           +> (branch 48 files)
23754            - lib/lib.pm pod/Makefile pod/Win32.pod pod/buildtoc
23755           !> (integrate 354 files)
23756 ____________________________________________________________________________
23757 [  6513] By: jhi                                   on 2000/08/04  01:18:18
23758         Log: Subject: [ID 20000802.004] Tests op/grent.t and op/pwent.t fail unnecessarily
23759              From: Mark Dickinson <dickins3@fas.harvard.edu>
23760              Date: Wed, 2 Aug 2000 13:25:07 -0400 (EDT)
23761              Message-Id: <Pine.OSF.4.10.10008021321380.32190-200000@is07.fas.harvard.edu>
23762      Branch: perl
23763            ! t/op/grent.t t/op/pwent.t
23764 ____________________________________________________________________________
23765 [  6512] By: jhi                                   on 2000/08/04  01:14:06
23766         Log: Subject: [ID 20000802.002] [PATCH] memory pseudo-leak in sv_dump
23767              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
23768              Date: Wed, 02 Aug 2000 10:51:01 +0100
23769              Message-Id: <E13JvAz-0005B5-00@libra.cus.cam.ac.uk>
23770      Branch: perl
23771            ! sv.c
23772 ____________________________________________________________________________
23773 [  6511] By: jhi                                   on 2000/08/04  00:57:00
23774         Log: Subject: [PATCH] bad cppsymbols on os2 + Configure question                
23775              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
23776              Date: Thu, 03 Aug 2000 17:20:04 -0700
23777              Message-ID: <0wgi5gzkgqLb092yn@efn.org> 
23778      Branch: metaconfig
23779            ! U/modified/Cppsym.U
23780      Branch: perl
23781            ! Configure config_h.SH
23782 ____________________________________________________________________________
23783 [  6510] By: jhi                                   on 2000/08/04  00:25:28
23784         Log: detypo
23785      Branch: perl
23786            ! Makefile.SH
23787 ____________________________________________________________________________
23788 [  6509] By: jhi                                   on 2000/08/03  23:43:18
23789         Log: Subject: [PATCH perl-current] Comings and goings in op/sprintf.t
23790              From: Dominic Dunlop <domo@computer.org>
23791              Date: Thu, 3 Aug 2000 22:16:46 +0200
23792              Message-Id: <p04320411b5af8091f6fe@[194.235.193.148]>
23793      Branch: perl
23794            ! t/op/sprintf.t
23795 ____________________________________________________________________________
23796 [  6508] By: jhi                                   on 2000/08/03  23:40:37
23797         Log: Subject: [PATCH bleadperl] [ID 20000803.001] further regexp counting problems
23798              From: Hugo <hv@crypt.compulink.co.uk>
23799              Date: Thu, 03 Aug 2000 18:25:30 +0100
23800              Message-Id: <200008031725.SAA10580@crypt.compulink.co.uk>
23801      Branch: perl
23802            ! regcomp.c t/op/re_tests
23803 ____________________________________________________________________________
23804 [  6507] By: jhi                                   on 2000/08/03  23:38:28
23805         Log: Subject: [PATCH] sv.h documentation - SvLEN
23806              From: Mike Guy <mjtg@cam.ac.uk>
23807              Date: Thu, 03 Aug 2000 14:43:09 +0100
23808              Message-Id: <E13KLHB-0004UK-00@libra.cus.cam.ac.uk>
23809      Branch: perl
23810            ! sv.h
23811 ____________________________________________________________________________
23812 [  6506] By: jhi                                   on 2000/08/03  15:49:14
23813         Log: Disable the fix_pl hack for now.
23814      Branch: perl
23815            ! Makefile.SH
23816 ____________________________________________________________________________
23817 [  6505] By: jhi                                   on 2000/08/03  13:49:04
23818         Log: Add a URL for FSF.
23819              
23820              Subject: Patch for README
23821              From: Elaine -HFB- Ashton <elaine@chaos.wustl.edu>
23822              Date: Wed, 2 Aug 2000 13:25:09 -0500
23823              Message-ID: <20000802132509.I10379@chaos.wustl.edu>
23824      Branch: perl
23825            ! README
23826 ____________________________________________________________________________
23827 [  6504] By: jhi                                   on 2000/08/03  13:29:19
23828         Log: Be more informative on what is skipped and why,
23829              also repeat the list at the end.
23830      Branch: perl
23831            ! Porting/p4desc
23832 ____________________________________________________________________________
23833 [  6503] By: jhi                                   on 2000/08/03  13:07:05
23834         Log: Circumvent the removal of .patch by fix_pl.
23835              
23836              Subject: Re: [ID 20000802.011] unable to 'make test'          
23837              From: simon@brecon.co.uk (Simon Cozens) 
23838              Date: 3 Aug 2000 04:17:00 GMT
23839              Message-ID: <slrn8ohshs.81o.simon@justanother.perlhacker.org> 
23840      Branch: perl
23841            ! Makefile.SH
23842 ____________________________________________________________________________
23843 [  6502] By: jhi                                   on 2000/08/03  00:14:34
23844         Log: Add the missing setproctitle unit.
23845      Branch: metaconfig/U/perl
23846            + d_setproctitle.U
23847 ____________________________________________________________________________
23848 [  6501] By: jhi                                   on 2000/08/03  00:00:26
23849         Log: The subtest 4 may fail also on VOBS, as pointed out
23850              by Nick Ing-Simmons in November 1999, bug id 19991124.003
23851              (but the failure in that bug report isn't the subtest 4).
23852      Branch: perl
23853            ! t/op/stat.t
23854 ____________________________________________________________________________
23855 [  6500] By: jhi                                   on 2000/08/02  23:49:30
23856         Log: Better skip message for the test; one of the two problems in
23857              
23858              Subject: [ID 20000224.003] Not OK: perl v5.5.660 on i86pc-solaris 2.7
23859              From: Lupe Christoph <lupe@lupe-christoph.de>
23860              Date: Thu, 24 Feb 2000 11:54:50 +0100 (MET)
23861              Message-Id: <200002241054.LAA06808@lupe-christoph.de>
23862      Branch: perl
23863            ! t/op/numconvert.t
23864 ____________________________________________________________________________
23865 [  6499] By: jhi                                   on 2000/08/02  22:49:16
23866         Log: Allow "no Module;" even if there is no 'unimport'.
23867              
23868              Subject: [ID 20000324.029] `unimport' is not special the way `import' is
23869              From: mjd@plover.com
23870              Date: 24 Mar 2000 15:24:34 -0000
23871              Message-Id: <20000324152434.15160.qmail@plover.com>
23872      Branch: perl
23873            ! gv.c
23874 ____________________________________________________________________________
23875 [  6498] By: jhi                                   on 2000/08/02  22:42:58
23876         Log: Generate OP_IS_SOCKET() and OP_IS_FILETEST() macros
23877              that are hopefully soon put into use.
23878      Branch: perl
23879            ! opcode.h opcode.pl opnames.h
23880 ____________________________________________________________________________
23881 [  6497] By: gsar                                  on 2000/08/02  22:28:59
23882         Log: require.t needs binmode() to work on windows
23883      Branch: perl
23884            ! t/comp/require.t
23885 ____________________________________________________________________________
23886 [  6496] By: jhi                                   on 2000/08/02  22:08:51
23887         Log: Document the IVdf UVuf UVof UVxf.
23888      Branch: perl
23889            ! pod/perlguts.pod
23890 ____________________________________________________________________________
23891 [  6495] By: jhi                                   on 2000/08/02  21:54:26
23892         Log: detypo #6494
23893      Branch: perl
23894            ! ext/Data/Dumper/Dumper.xs
23895 ____________________________________________________________________________
23896 [  6494] By: jhi                                   on 2000/08/02  21:49:17
23897         Log: Dump UVs as UVs in Data::Dumper.
23898              
23899              Subject: Re: [ID 20000405.018] Data::Dumper and negative numbers
23900              From: Gurusamy Sarathy <gsar@ActiveState.com>
23901              Date: Thu, 27 Apr 2000 12:26:25 -0700
23902              Message-Id: <200004271926.MAA04331@molotok.activestate.com>
23903      Branch: perl
23904            ! ext/Data/Dumper/Dumper.xs
23905 ____________________________________________________________________________
23906 [  6493] By: jhi                                   on 2000/08/02  17:01:58
23907         Log: Subject: [PATCH bleadperl] [ID 20000731.010] regex error 
23908              From: Hugo <hv@crypt.compulink.co.uk>
23909              Date: Wed, 02 Aug 2000 14:53:56 +0100
23910              Message-Id: <200008021353.OAA24761@crypt.compulink.co.uk>
23911      Branch: perl
23912            ! regexec.c t/op/re_tests
23913 ____________________________________________________________________________
23914 [  6492] By: jhi                                   on 2000/08/02  15:02:46
23915         Log: The new setproctitle() feature is available only in 
23916              bleeding edge FreeBSD.  From Paul Saab.
23917      Branch: perl
23918            ! mg.c
23919 ____________________________________________________________________________
23920 [  6491] By: jhi                                   on 2000/08/02  13:34:36
23921         Log: The tr utf8 patching continues.
23922              
23923              Subject: Re: #6469, too many tests claimed in require.t
23924              From: simon@brecon.co.uk (Simon Cozens)
23925              Date: 2 Aug 2000 02:37:17 GMT
23926              Message-ID: <slrn8of2at.81o.simon@justanother.perlhacker.org>
23927              
23928              (the logic of the test was the wrong way round in the patch)
23929      Branch: perl
23930            ! doop.c
23931 ____________________________________________________________________________
23932 [  6490] By: jhi                                   on 2000/08/02  13:27:38
23933         Log: The name of a filehandle does not have <these>.
23934      Branch: perl
23935            ! doio.c pod/perldiag.pod pp_sys.c t/pragma/warn/doio
23936            ! t/pragma/warn/pp_sys util.c
23937 ____________________________________________________________________________
23938 [  6489] By: jhi                                   on 2000/08/02  04:26:46
23939         Log: Remove the extraneous "main::" prefix from all the
23940              "opened only for", "on closed", and "never opened" warnings.
23941              
23942              Subject: Re: inappropriate warning
23943              From: Gurusamy Sarathy <gsar@ActiveState.com>
23944              Date: Mon, 20 Mar 2000 11:28:02 -0800
23945              Message-Id: <200003201928.LAA32224@maul.ActiveState.com>
23946      Branch: perl
23947            ! doio.c embed.h embed.pl gv.c objXSUB.h pp_hot.c pp_sys.c
23948            ! proto.h t/pragma/warn/4lint t/pragma/warn/doio
23949            ! t/pragma/warn/pp_hot t/pragma/warn/pp_sys util.c
23950 ____________________________________________________________________________
23951 [  6488] By: jhi                                   on 2000/08/02  03:02:57
23952         Log: memcpy has n o in it, as pinted ut by Sarathy.
23953      Branch: perl
23954            ! pod/perlguts.pod
23955 ____________________________________________________________________________
23956 [  6487] By: jhi                                   on 2000/08/02  02:44:51
23957         Log: Document in one place the memory abstractions used in Perl core.
23958              
23959              Subject: Re: Memory abstraction
23960              From: simon@brecon.co.uk (Simon Cozens)
23961              Date: 2 Aug 2000 02:20:23 GMT
23962              Organization: Earth.li Origins
23963      Branch: perl
23964            ! pod/perlguts.pod
23965 ____________________________________________________________________________
23966 [  6486] By: jhi                                   on 2000/08/02  02:41:57
23967         Log: regen_headers, regen perltoc.
23968      Branch: perl
23969            ! perlapi.c pod/perltoc.pod
23970 ____________________________________________________________________________
23971 [  6485] By: jhi                                   on 2000/08/02  01:43:33
23972         Log: "This little thing tests for a file .patch, and if it contains
23973              a number, pops into patchlevel.h" (making it easier to track
23974              which development version people are reporting bugs against)
23975              
23976              Subject: Patchlevel autogeneration for repository perls
23977              From: simon@brecon.co.uk (Simon Cozens)
23978              Date: 14 Jul 2000 07:12:15 GMT
23979              Message-ID: <slrn8mtfaf.1qo.simon@justanother.perlhacker.org>
23980      Branch: perl
23981            + fix_pl
23982            ! MANIFEST Makefile.SH
23983 ____________________________________________________________________________
23984 [  6484] By: jhi                                   on 2000/08/02  01:32:54
23985         Log: FreeBSD 3.* updates from
23986              
23987              From: Paul Saab <ps@yahoo-inc.com>
23988              Subject: [ID 20000801.007] setting $0 on FreeBSD 4.x does not get reflected in /bin/ps
23989              Date: Tue, 1 Aug 2000 15:41:39 -0700
23990              Message-Id: <20000801154139.A53740@yahoo-inc.com>
23991      Branch: perl
23992            ! hints/freebsd.sh
23993 ____________________________________________________________________________
23994 [  6483] By: jhi                                   on 2000/08/02  01:27:44
23995         Log: In new BSDs changes to argv[] do not show up in ps(1) output,
23996              instead one must use setproctitle().  This was already addressed
23997              by change #6457, but the below has a new variant for FreeBSD 4.0
23998              or later, and the matter is also documented more.
23999              
24000              From: Paul Saab <ps@yahoo-inc.com>
24001              Subject: [ID 20000801.007] setting $0 on FreeBSD 4.x does not get reflected in /bin/ps
24002              Date: Tue, 1 Aug 2000 15:41:39 -0700
24003              Message-Id: <20000801154139.A53740@yahoo-inc.com>
24004      Branch: metaconfig/U/perl
24005            + i_libutil.U
24006      Branch: perl
24007            ! Configure config_h.SH mg.c perl.h pod/perlvar.pod
24008 ____________________________________________________________________________
24009 [  6482] By: jhi                                   on 2000/08/01  22:17:32
24010         Log: The test from this
24011              
24012              Subject: Re: [ID 20000411.002] qw() gives different results in 5.6 to previous versions
24013              Date: Sat, 15 Apr 2000 17:03:44 +0100
24014              From: Tom Hughes <tom@compton.nu>
24015              Message-ID: <d1c9b2af49.tom@compton.compton.nu>
24016              
24017              was missing, the code change went in as #5989
24018              (which had a different test?)
24019      Branch: perl
24020            ! t/op/misc.t
24021 ____________________________________________________________________________
24022 [  6481] By: jhi                                   on 2000/08/01  21:48:38
24023         Log: Subject: [Proposed PATCH] Let Perl define QUAD_MIN and _MAX itself
24024              From: Jeff Okamoto <okamoto@xfiles.intercon.hp.com>
24025              Date: Thu, 27 Jul 2000 13:51:41 -0700 (PDT)
24026              Message-Id: <200007272051.NAA02178@xfiles.intercon.hp.com>
24027      Branch: perl
24028            ! perl.h
24029 ____________________________________________________________________________
24030 [  6480] By: jhi                                   on 2000/08/01  18:05:28
24031         Log: Make p4desc to skip non-mainperl branches by default.
24032      Branch: perl
24033            ! Porting/p4desc
24034 ____________________________________________________________________________
24035 [  6479] By: jhi                                   on 2000/08/01  17:29:19
24036         Log: If gccosandvers is equal to osname, clear gccosandvers.
24037      Branch: metaconfig/U/perl
24038            ! gccvers.U
24039      Branch: perl
24040            ! Configure config_h.SH
24041 ____________________________________________________________________________
24042 [  6478] By: jhi                                   on 2000/08/01  15:54:08
24043         Log: BOM patching from Simon Cozens.
24044      Branch: perl
24045            ! toke.c
24046 ____________________________________________________________________________
24047 [  6477] By: jhi                                   on 2000/08/01  04:50:33
24048         Log: Stash away the largefiles flags and libswanted.
24049      Branch: perl
24050            ! hints/aix.sh hints/hpux.sh hints/linux.sh hints/solaris_2.sh
24051 ____________________________________________________________________________
24052 [  6476] By: gsar                                  on 2000/08/01  04:24:24
24053         Log: various syntax errors and such (not fixed: comp/require.t#22 coredump
24054              on Windows)
24055      Branch: perl
24056            ! t/pragma/utf8.t utf8.c win32/win32.c
24057 ____________________________________________________________________________
24058 [  6475] By: jhi                                   on 2000/08/01  03:35:24
24059         Log: Make chr() for values >127 to create utf8 when under utf8.
24060              
24061              Subject: Re: uft8/chr()
24062              From: simon@brecon.co.uk (Simon Cozens)
24063              Date: 1 Aug 2000 02:37:02 GMT
24064              Message-ID: <slrn8ocdud.19l.simon@justanother.perlhacker.org>
24065      Branch: perl
24066            ! pod/perlfunc.pod pp.c t/pragma/utf8.t
24067 ____________________________________________________________________________
24068 [  6474] By: jhi                                   on 2000/08/01  02:36:18
24069         Log: In Digital UNIX warn if gcc explicitly chosen because even
24070              2.95.2 is known to cause problems.
24071      Branch: perl
24072            ! hints/dec_osf.sh
24073 ____________________________________________________________________________
24074 [  6473] By: jhi                                   on 2000/08/01  02:00:56
24075         Log: Make the safety catch for buggy gccs work with triple version
24076              numbers like 2.95.2.  Reported in
24077              
24078              Subject: [ID 20000731.005] Perl 5.6.0 "Configure" fails to recognize gcc 2.95.2
24079              From: Maurizio Loreti <maurizio.loreti@pd.infn.it>
24080              Date: Mon, 31 Jul 2000 14:55:06 +0200
24081              Message-Id: <200007311255.AA25586@axcdf4.pd.infn.it>
24082      Branch: perl
24083            ! hints/dec_osf.sh
24084 ____________________________________________________________________________
24085 [  6472] By: jhi                                   on 2000/08/01  01:13:33
24086         Log: Subject: fix and question re: waitpid() under win32
24087              From: Brian Clarke <clarke@appliedmeta.com>
24088              Date: Fri, 28 Jul 2000 15:18:29 -0400
24089              Message-ID: <3981DC85.290314EB@appliedmeta.com>
24090              
24091              Slightly reformatted and WNOHANG # define moved to win32.h
24092              so that also POSIX.xs sees it, as suggsted by Sarathy.
24093      Branch: perl
24094            ! win32/win32.c win32/win32.h
24095 ____________________________________________________________________________
24096 [  6471] By: jhi                                   on 2000/08/01  00:55:05
24097         Log: Subject: [PATCH] allow non-variable as lhs of non-updating tr///
24098              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
24099              Message-Id: <E13JEgd-0003fy-00@libra.cus.cam.ac.uk>
24100              Date: Mon, 31 Jul 2000 13:28:51 +0100
24101              
24102              (aka ID 20000730.002)
24103      Branch: perl
24104            ! op.c t/op/tr.t
24105 ____________________________________________________________________________
24106 [  6470] By: jhi                                   on 2000/07/31  23:34:42
24107         Log: Document the problem with -P in HP-UX and its workaround.
24108              
24109              Subject: [ID 20000628.002] HPUX 11: -Ae compiler flag breaks perl -P
24110              From: Milton Hankins {64892} <webtools@uewrhp03.msd.ray.com>
24111              Date: Wed, 28 Jun 2000 13:58:21 -0400 (EDT)
24112              Message-Id: <200006281758.NAA10339@uewrhp03.msd.ray.com>
24113      Branch: perl
24114            ! README.hpux
24115 ____________________________________________________________________________
24116 [  6469] By: jhi                                   on 2000/07/31  04:15:02
24117         Log: The swallow_bom() saga continues.  The #23 of require.t
24118              (UTF16-LE) still fails (silently, no output) but the #22
24119              (UTF16-BE) seems to be working now.  The root of the
24120              failure may be in sv_gets(): is it UTF-16LE-aware,
24121              especially when it comes to line endings? 
24122      Branch: perl
24123            ! embed.h embed.pl objXSUB.h pod/perldiag.pod proto.h
24124            ! t/comp/require.t toke.c utf8.c
24125 ____________________________________________________________________________
24126 [  6468] By: jhi                                   on 2000/07/30  19:05:48
24127         Log: Find green threads before native threads.
24128              
24129              Subject: Re: Patch to jpl/JNI/Makefile.PL
24130              From: Jens Thomsen <jens@fiend.cis.com>
24131              Date: Fri, 28 Jul 2000 15:54:49 -0600 (MDT)
24132              Message-ID: <Pine.LNX.4.21.0007281553470.687-200000@fiend.cis.com>
24133      Branch: perl
24134            ! jpl/JNI/Makefile.PL
24135 ____________________________________________________________________________
24136 [  6467] By: jhi                                   on 2000/07/30  18:36:22
24137         Log: Fix the HALF_UPGRADE() macro introduced in #6263.
24138      Branch: perl
24139            ! doop.c
24140 ____________________________________________________________________________
24141 [  6466] By: jhi                                   on 2000/07/30  04:37:29
24142         Log: A new version of the "remove UPPERACSE string comparison"
24143              operators.  The problem with the previous one (change #6454)
24144              was that it was for Perl 5.6.0.  From Paul Marquess.
24145      Branch: perl
24146            ! t/op/do.t t/pragma/warn/2use t/pragma/warn/3both
24147            ! t/pragma/warn/4lint t/pragma/warn/5nolint t/pragma/warn/7fatal
24148            ! t/pragma/warn/8signal t/pragma/warn/toke toke.c
24149 ____________________________________________________________________________
24150 [  6465] By: jhi                                   on 2000/07/29  22:39:56
24151         Log: Do not upgrade SVs into utf8 just because they participate
24152              in eq or cmp.  Reported and fix suggested in
24153              
24154              Subject: [ID 20000720.009] sv_eq UTF8 bug
24155              From: "Simon Cozens" <simon@othersideofthe.earth.li>
24156              Date: 21 Jul 2000 04:37:29 -0000
24157              Message-Id: <20000721043729.30081.qmail@othersideofthe.earth.li>
24158              
24159              Exercise for the kind reader: should we or should we not
24160              cache the utf8 conversion alonside the SV? (as magic,
24161              as thestrxfrm()ed version is cached under use locale)
24162              Argue both for and against.
24163      Branch: perl
24164            ! sv.c
24165 ____________________________________________________________________________
24166 [  6464] By: jhi                                   on 2000/07/29  22:36:22
24167         Log: Subject: UTF8 concat
24168              From: simon@brecon.co.uk (Simon Cozens) 
24169              Date: 30 Jun 2000 06:13:25 GMT
24170              Message-ID: <slrn8loek5.9ai.simon@justanother.perlhacker.org> 
24171              
24172              (with a memory leak fixed, plus a few casts added)
24173              
24174              This also seems to help for
24175              
24176              Subject: [ID 20000716.015] join UTF8 weirdness
24177              From: root <root@ak-71.mind.de> 
24178              Date: Sat, 15 Jul 2000 15:29:54 +0200
24179              Message-Id: <200007151329.PAA13970@ak-71.mind.de>
24180              
24181              (from Andreas König)
24182      Branch: perl
24183            ! pp_hot.c
24184 ____________________________________________________________________________
24185 [  6463] By: jhi                                   on 2000/07/29  00:55:39
24186         Log: Tune the comments and hopefully stop a memory leak.
24187      Branch: perl
24188            ! toke.c utf8.c
24189 ____________________________________________________________________________
24190 [  6462] By: jhi                                   on 2000/07/29  00:16:53
24191         Log: The problem described in this
24192              
24193              Subject: [ID 20000322.018] named chars aren't magical enough
24194              From: root <root@dixie.cscaper.com>     
24195              Date: Wed, 22 Mar 2000 18:37:42 -0700
24196              Message-Id: <200003230137.SAA29532@dixie.cscaper.com>
24197              
24198              has been fixed in perl 5.6.0 but just in case added a test
24199              to keep it away.  (The report from Joseph Hall.)
24200      Branch: perl
24201            ! t/lib/charnames.t
24202 ____________________________________________________________________________
24203 [  6461] By: jhi                                   on 2000/07/28  23:56:36
24204         Log: Tiny fixes for #6460.
24205      Branch: metaconfig/U/perl
24206            ! gccvers.U
24207      Branch: perl
24208            ! Configure config_h.SH
24209 ____________________________________________________________________________
24210 [  6460] By: jhi                                   on 2000/07/28  23:24:41
24211         Log: Warn if the version of the operating system used to compile gcc
24212              differs from the current version of the operating system.
24213              Also display the gcc compilation os and version in myconfig.
24214              Inspiration from
24215              
24216              Subject: Re: [ID 20000710.003] ERRORS!!         
24217              From: "Kurt D. Starsinic" <kstar@chapin.edu>
24218              Date: Mon, 10 Jul 2000 15:54:16 -0400
24219              Message-ID: <20000710155416.A1384@O2.chapin.edu>
24220      Branch: metaconfig/U/perl
24221            ! gccvers.U
24222      Branch: perl
24223            ! Configure config_h.SH myconfig.SH
24224 ____________________________________________________________________________
24225 [  6459] By: jhi                                   on 2000/07/28  22:00:32
24226         Log: In DEC OSF aka Digital UNIX aka Tru64 add the version
24227              letter to $Config{osvers}.
24228      Branch: metaconfig
24229            ! U/modified/Oldconfig.U
24230      Branch: perl
24231            ! Configure config_h.SH
24232 ____________________________________________________________________________
24233 [  6458] By: jhi                                   on 2000/07/28  04:15:39
24234         Log: Back out #6454, doesn't seem to work.
24235              (Reason: that patch was for perl 5.6.0, not perl-current)
24236              (A version of the patch for perl-current came in later as #6466)
24237      Branch: perl
24238            ! regcomp.c t/op/do.t t/pragma/warn/2use t/pragma/warn/4lint
24239            ! t/pragma/warn/5nolint t/pragma/warn/7fatal
24240            ! t/pragma/warn/8signal t/pragma/warn/toke toke.c
24241 ____________________________________________________________________________
24242 [  6457] By: jhi                                   on 2000/07/27  23:31:49
24243         Log: Use setproctitle() if available to modify $0.
24244              
24245              Subject: setting $* on BSD4 broken
24246              From: Jeffrey Friedl <jfriedl@yahoo-inc.com>
24247              Date: Sun, 23 Jul 2000 01:31:34 -0700 (PDT)
24248              Message-Id: <200007230831.BAA08379@ventrue.yahoo.com>
24249      Branch: metaconfig
24250            ! U/modified/Myinit.U
24251      Branch: perl
24252            ! Configure config_h.SH mg.c
24253 ____________________________________________________________________________
24254 [  6456] By: jhi                                   on 2000/07/27  14:50:47
24255         Log: Allow "no AutoLoader;", based on change #6444,
24256              suggested by Graham Barr.
24257      Branch: perl
24258            ! lib/AutoLoader.pm
24259 ____________________________________________________________________________
24260 [  6455] By: jhi                                   on 2000/07/27  14:19:10
24261         Log: Subject: [ID 19990709.002] [DOCUMENTATION PATCH] perldiag
24262              From: rspier@pobox.com (Robert Spier)
24263              Date: Thu, 27 Jul 2000 09:49:35 -0400 (EDT)
24264              Message-ID: <14720.15855.787664.424783@rls.cx>
24265      Branch: perl
24266            ! pod/perldiag.pod
24267 ____________________________________________________________________________
24268 [  6454] By: jhi                                   on 2000/07/27  14:03:02
24269         Log: Remove EQ, NE, GT, LT, GE, LE (they have been deprecated
24270              for a long time).
24271              
24272              Reported in
24273              
24274              Subject: [ID 20000717.004] Unexpected complaint of NE deprecation
24275              From: Ryan Herbert <rherbert@sycamorehq.com>
24276              Date: Mon, 17 Jul 2000 11:40:42 -0400
24277              Message-Id: <200007171540.LAA20480@beorn.hq.sai>
24278              
24279              Patched in
24280              
24281              Subject: RE: [ID 20000717.004] Unexpected complaint of NE deprecation
24282              From: "Paul Marquess" <Paul.Marquess@btinternet.com>
24283              Date: Wed, 26 Jul 2000 23:40:18 +0100
24284              Message-ID: <000001bff752$79511880$0a17073e@tiny>
24285              
24286              based on an earlier patch from Stephen P. Potter.
24287              
24288              (Removed later by change #6458 because this patch was for
24289              perl 5.6.0, not perl-current)
24290      Branch: perl
24291            ! t/op/do.t t/pragma/warn/2use t/pragma/warn/4lint
24292            ! t/pragma/warn/5nolint t/pragma/warn/7fatal
24293            ! t/pragma/warn/8signal t/pragma/warn/toke toke.c
24294 ____________________________________________________________________________
24295 [  6453] By: jhi                                   on 2000/07/27  13:48:02
24296         Log: Subject: [PATCH] fixes bug 20000508.004
24297              From: Michael Stevens <mstevens@globnix.org>
24298              Date: Thu, 27 Jul 2000 13:49:04 +0100
24299              Message-ID: <20000727134903.A9351@athenaeum.globnix.org>
24300      Branch: perl
24301            ! pod/perldata.pod
24302 ____________________________________________________________________________
24303 [  6452] By: jhi                                   on 2000/07/26  23:51:26
24304         Log: Further File::Temp patches from Yitzchak Scott-Thoennes
24305              and Craig A. Berry.
24306      Branch: perl
24307            ! lib/File/Temp.pm pod/perlport.pod
24308 ____________________________________________________________________________
24309 [  6451] By: jhi                                   on 2000/07/26  19:43:30
24310         Log: Be wary of close()s, too.
24311              
24312              Subject: Re: [PATCH] perlbug cleanup
24313              From: Tim Jenness <t.jenness@jach.hawaii.edu>
24314              Date: Wed, 26 Jul 2000 09:32:43 -1000 (HST)
24315              Message-ID: <Pine.LNX.4.10.10007260931540.27658-100000@lapaki.jach.hawaii.edu>
24316      Branch: perl
24317            ! utils/perlbug.PL
24318 ____________________________________________________________________________
24319 [  6450] By: jhi                                   on 2000/07/26  18:41:40
24320         Log: Subject: Minor doc patch: handy.h
24321              From: Daniel =?iso-8859-1?Q?Mui=F1o?= <dmuino@afip.gov.ar>
24322              Date: Wed, 26 Jul 2000 15:34:25 -0300
24323              Message-ID: <397F2F31.F3F9F4F3@afip.gov.ar>
24324      Branch: perl
24325            ! handy.h pod/perlapi.pod
24326 ____________________________________________________________________________
24327 [  6449] By: jhi                                   on 2000/07/26  18:23:55
24328         Log: Subject: [PATCH] minor doc change - perlguts
24329              From: Michael Stevens <mstevens@globnix.org>
24330              Date: Thu, 13 Jul 2000 12:39:18 +0100
24331              Message-ID: <20000713123918.A26561@athenaeum.globnix.org>
24332      Branch: perl
24333            ! pod/perlguts.pod
24334 ____________________________________________________________________________
24335 [  6448] By: jhi                                   on 2000/07/26  18:20:30
24336         Log: open() wariness in perlbug.
24337              
24338              Subject: [PATCH] perlbug cleanup
24339              From: Michael Stevens <mstevens@globnix.org>
24340              Message-ID: <20000713155222.A11380@athenaeum.globnix.org>
24341              Date: Thu, 13 Jul 2000 15:52:23 +0100
24342      Branch: perl
24343            ! utils/perlbug.PL
24344 ____________________________________________________________________________
24345 [  6447] By: jhi                                   on 2000/07/26  18:13:04
24346         Log: File::Temp patches for VMS and OS/2 from Tim Jenness.
24347      Branch: perl
24348            ! lib/File/Temp.pm t/lib/ftmp-security.t
24349 ____________________________________________________________________________
24350 [  6446] By: jhi                                   on 2000/07/26  18:06:32
24351         Log: docfix from Peter Scott <Peter@PSDT.com>.
24352      Branch: perl
24353            ! pod/perlfunc.pod
24354 ____________________________________________________________________________
24355 [  6445] By: jhi                                   on 2000/07/26  17:53:31
24356         Log: Fix *foo{FORMAT}.
24357              
24358              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
24359              Subject: Re: Looking for a starting point (Mark-Jason?, Chip?, Jarkko?)
24360              Date: Wed, 26 Jul 2000 19:51:02 +0200
24361              Message-Id: <20000726194952.41DD.H.M.BRAND@hccnet.nl>
24362              
24363              From: Graham Barr <gbarr@pobox.com>
24364              Subject: Re: Looking for a starting point (Mark-Jason?, Chip?, Jarkko?)
24365              Date: Wed, 26 Jul 2000 17:38:36 +0100
24366              Message-ID: <20000726173836.L472@pobox.com>
24367      Branch: perl
24368            ! pp.c sv.c t/op/gv.t
24369 ____________________________________________________________________________
24370 [  6444] By: jhi                                   on 2000/07/26  17:49:14
24371         Log: Allow "sub AUTOLOAD;" to stop AUTOLOAD inheritance,
24372              from Graham Barr in the module list.
24373      Branch: perl
24374            ! gv.c pod/perlobj.pod
24375 ____________________________________________________________________________
24376 [  6443] By: jhi                                   on 2000/07/26  16:06:56
24377         Log: More split() doc and test patches from Mike Guy.
24378      Branch: perl
24379            ! pod/perlfunc.pod t/op/split.t
24380 ____________________________________________________________________________
24381 [  6442] By: jhi                                   on 2000/07/26  16:05:30
24382         Log: MacOS nits from Matthias Neeracher.
24383      Branch: perl
24384            ! perl.c pp_ctl.c
24385 ____________________________________________________________________________
24386 [  6441] By: jhi                                   on 2000/07/26  04:39:57
24387         Log: Subject: [PATCH] split /^/
24388              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
24389              Date: Tue, 25 Jul 2000 14:18:57 +0100
24390              Message-Id: <E13H4bp-00062h-00@libra.cus.cam.ac.uk>
24391              
24392              (with notes from tchrist and gbarr)
24393      Branch: perl
24394            ! pod/perlfunc.pod t/op/split.t
24395 ____________________________________________________________________________
24396 [  6440] By: jhi                                   on 2000/07/26  04:32:32
24397         Log: Subject: [PATCH: perl@6409] bug fix for munchconfig (turned up by CXX)
24398              From: Peter Prymmer <pvhp@forte.com>
24399              Date: Tue, 25 Jul 2000 18:59:16 -0700 (PDT)
24400              Message-ID: <Pine.OSF.4.10.10007251805350.294719-100000@aspara.forte.com>
24401      Branch: perl
24402            ! vms/munchconfig.c
24403 ____________________________________________________________________________
24404 [  6439] By: jhi                                   on 2000/07/26  04:31:01
24405         Log: Make the unimplemented POSIX regex features [[.cc.]] and [[=c=]]
24406              to be fatal errors (instead of by default ignoring them, and
24407              ignoring with a bug: even though -w gave an error, the opening [
24408              was left in)  Reported in:
24409              
24410              Subject: [ID 20000716.024] [=cc=] / [:blank:]
24411              From: Jeffrey Friedl <jfriedl@fummy.dsl.yahoo.com>
24412              Date: Sun, 16 Jul 2000 17:55:29 -0700
24413              Message-Id: <200007170055.RAA23528@fummy.dsl.yahoo.com>
24414      Branch: perl
24415            ! pod/perldiag.pod regcomp.c t/pragma/warn/regcomp
24416 ____________________________________________________________________________
24417 [  6438] By: jhi                                   on 2000/07/25  15:41:15
24418         Log: Subject: [PATCH] av.c apidoc
24419              From: simon@brecon.co.uk (Simon Cozens)
24420              Date: 24 Jul 2000 06:40:52 GMT
24421              Message-ID: <slrn8nnp7k.cgv.simon@justanother.perlhacker.org>
24422      Branch: perl
24423            ! av.c embed.h embed.pl embedvar.h global.sym objXSUB.h
24424            ! perlapi.c perlapi.h pod/perlapi.pod proto.h
24425 ____________________________________________________________________________
24426 [  6437] By: jhi                                   on 2000/07/25  14:05:36
24427         Log: Subject: [ID 20000724.003] Documentation changes for perllocale.pod
24428              From: "Stephen P. Potter" <spp@ds.net>
24429              Date: Mon, 24 Jul 2000 14:22:23 -0400
24430              Message-Id: <200007241822.OAA06827@spp.users.ds.net>
24431      Branch: perl
24432            ! pod/perllocale.pod
24433 ____________________________________________________________________________
24434 [  6436] By: jhi                                   on 2000/07/25  14:02:03
24435         Log: Subject: [PATCH] Make large file tests deal with SIGXFSZ
24436              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
24437              Date: Mon, 24 Jul 2000 18:04:28 +0100
24438              Message-Id: <E13GleW-0000fr-00@libra.cus.cam.ac.uk>
24439      Branch: perl
24440            ! t/lib/syslfs.t t/op/lfs.t
24441 ____________________________________________________________________________
24442 [  6435] By: jhi                                   on 2000/07/25  13:59:28
24443         Log: Get UTF16 BOMs working.  Patch from
24444              
24445              Subject: Re: [ID 20000719.001] Problem with bleadperl of 7/18/00
24446              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
24447              Date: Tue, 25 Jul 2000 12:52:45 +0100
24448              Message-Id: <E13H3GP-0004MR-00@libra.cus.cam.ac.uk>
24449              
24450              and notes from
24451              
24452              Subject: Re: [ID 20000719.001] Problem with bleadperl of 7/18/00
24453              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
24454              Date: Tue, 25 Jul 2000 11:43:25 +0100
24455              Message-Id: <E13H2BJ-0002nG-00@libra.cus.cam.ac.uk>
24456      Branch: perl
24457            ! t/comp/require.t toke.c utf8.c
24458 ____________________________________________________________________________
24459 [  6434] By: jhi                                   on 2000/07/25  02:39:54
24460         Log: Make the "uninit variable" warning to say "concat or string"
24461              or "join or string" when in concat or join .
24462              
24463              Subject: Re: [ID 20000403.009] uninitialised concatenation???
24464              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
24465              Date: Tue, 04 Apr 2000 18:22:58 +0100
24466              Message-Id: <E12cX2Y-000364-00@taurus.cus.cam.ac.uk>
24467              
24468              Subject: [ID 20000330.052] Use of uninitialized value in concatenation (.)
24469              From: William R Ward <hermit@BayView.COM>
24470              Date: Thu, 30 Mar 2000 19:50:03 -0800
24471              Message-Id: <200003310350.TAA13319@komodo.bayview.com>
24472      Branch: perl
24473            ! opcode.h opcode.pl opnames.h pp.sym pp_proto.h
24474            ! t/pragma/warn/op t/pragma/warn/sv
24475 ____________________________________________________________________________
24476 [  6433] By: jhi                                   on 2000/07/24  17:52:56
24477         Log: File::Spec::VMS fixup for tmpdir from Craig Berry.
24478      Branch: perl
24479            ! lib/File/Spec/VMS.pm
24480 ____________________________________________________________________________
24481 [  6432] By: jhi                                   on 2000/07/24  17:44:44
24482         Log: Test cases for #6431.
24483              
24484              Subject: Re: [PATCH] [ID 20000716.011] strangeness with split($_ =~ m/.../)
24485              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
24486              Date: Mon, 24 Jul 2000 15:32:29 +0100
24487              Message-Id: <E13GjHR-00058t-00@libra.cus.cam.ac.uk>
24488      Branch: perl
24489            ! t/op/pat.t t/op/split.t
24490 ____________________________________________________________________________
24491 [  6431] By: jhi                                   on 2000/07/24  17:43:17
24492         Log: Bind op fix.
24493              
24494              Subject: Re: [PATCH] [ID 20000716.011] strangeness with split($_ =~ m/.../)
24495              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
24496              Date: Mon, 17 Jul 2000 20:04:56 +0100
24497              Message-Id: <E13EGCG-0006oO-00@libra.cus.cam.ac.uk>
24498      Branch: perl
24499            ! op.c
24500 ____________________________________________________________________________
24501 [  6430] By: jhi                                   on 2000/07/24  03:42:42
24502         Log: Subject: [ID 20000716.023] syslog test fails without sockets
24503              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
24504              Date: Sun, 16 Jul 2000 12:07:42 -0700 (PDT)
24505              Message-Id: <200007161907.e6GJ7g115736@garcia.efn.org>
24506      Branch: metaconfig/U/perl
24507            ! Extensions.U
24508      Branch: perl
24509            ! Configure config_h.SH
24510 ____________________________________________________________________________
24511 [  6429] By: jhi                                   on 2000/07/24  03:11:52
24512         Log: Add an optimization for map-maps-a-list-element-to-more-list-elements
24513              case, but add also notes explaining the relationship of this
24514              patch and the earlier notes by Sarathy.
24515              
24516              Subject: Map is still slow
24517              From: "Ben Tilly" <ben_tilly@hotmail.com>
24518              Date: Sat, 15 Jul 2000 17:23:27 EDT
24519              Message-ID: <20000715212327.21656.qmail@hotmail.com>
24520      Branch: perl
24521            ! pp_ctl.c
24522 ____________________________________________________________________________
24523 [  6428] By: jhi                                   on 2000/07/24  02:58:52
24524         Log: Documentation to explain the behaviour of map().
24525              
24526              Subject: Re: Map is still slow 
24527              From: Gurusamy Sarathy <gsar@ActiveState.com>
24528              Date: Sat, 15 Jul 2000 16:05:09 -0700
24529              Message-Id: <200007152305.QAA26887@molotok.activestate.com>
24530      Branch: perl
24531            ! pp_ctl.c
24532 ____________________________________________________________________________
24533 [  6427] By: jhi                                   on 2000/07/24  02:50:03
24534         Log: Add tests for
24535              [ID 19991110.003] another matching finding by pcre author
24536              which has already been fixed by some patch, as verified in
24537              
24538              Subject: Re: two regex bugs from the mists of time (well, last November)
24539              From: Hugo <hv@crypt.compulink.co.uk>
24540              Date: Sat, 22 Jul 2000 18:12:58 +0100
24541              Message-Id: <200007221712.SAA26770@crypt.compulink.co.uk>
24542      Branch: perl
24543            ! t/op/re_tests
24544 ____________________________________________________________________________
24545 [  6426] By: jhi                                   on 2000/07/24  02:11:20
24546         Log: A missing 'break' after the [[:space:]] switch case.
24547              
24548              Subject: [ID 20000718.006] Missing 'break' in regcomp.c
24549              From: "Stephen P. Potter" <spp@ds.net>
24550              Date: Tue, 18 Jul 2000 16:25:17 -0400
24551              Message-Id: <200007182025.QAA28383@spp.users.ds.net>
24552      Branch: perl
24553            ! regcomp.c
24554 ____________________________________________________________________________
24555 [  6425] By: jhi                                   on 2000/07/24  02:06:12
24556         Log: The output might have been produced in the wrong order.
24557              
24558              Subject: [ID 20000720.003] [PATCH] t/op/write.t
24559              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
24560              Date: Thu, 20 Jul 2000 18:49:18 +0100
24561              Message-Id: <E13FKRi-0004rF-00@libra.cus.cam.ac.uk>
24562      Branch: perl
24563            ! t/op/write.t
24564 ____________________________________________________________________________
24565 [  6424] By: jhi                                   on 2000/07/24  02:00:07
24566         Log: Use STDOUT consistently.
24567              
24568              Subject: [ID 20000720.002] [PATCH] Consistency of Test::Harness output
24569              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
24570              Date: Thu, 20 Jul 2000 18:04:01 +0100
24571              Message-Id: <E13FJjt-0004Jh-00@libra.cus.cam.ac.uk>
24572      Branch: perl
24573            ! lib/Test/Harness.pm
24574 ____________________________________________________________________________
24575 [  6423] By: jhi                                   on 2000/07/24  01:54:54
24576         Log: Protect against "wild next"s, that is, callbacks doing "next"
24577              instead of "return".
24578              
24579              Subject: [PATCH] Re: [ID 20000717.003] Core dump in 5.6.0
24580              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
24581              Date: Tue, 18 Jul 2000 11:30:16 +0100
24582              Message-Id: <E13EUdk-0006ha-00@libra.cus.cam.ac.uk>
24583      Branch: perl
24584            ! lib/File/Find.pm
24585 ____________________________________________________________________________
24586 [  6422] By: jhi                                   on 2000/07/24  01:35:47
24587         Log: Out-of-date note removed.
24588              
24589              Subject: [PATCH] documentation perlipc
24590              From: rspier@pobox.com (Robert Spier)
24591              Date: Thu, 20 Jul 2000 19:21:14 -0400 (EDT)
24592              Message-ID: <14711.35178.572612.502654@rls.cx>
24593      Branch: perl
24594            ! pod/perlipc.pod
24595 ____________________________________________________________________________
24596 [  6421] By: jhi                                   on 2000/07/24  00:09:18
24597         Log: Send all installperl messages to STDERR and be -w clean.
24598              
24599              Subject: [PATCH] Re: [ID 20000721.003] installperl stderr/stdout problem
24600              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
24601              Date: Sat, 22 Jul 2000 14:02:11 +0100
24602              Message-Id: <E13Fyux-0003Q2-00@libra.cus.cam.ac.uk>
24603      Branch: perl
24604            ! installperl
24605 ____________________________________________________________________________
24606 [  6420] By: jhi                                   on 2000/07/24  00:04:19
24607         Log: Decutandpasto.
24608              
24609              Subject: [PATCH perl-current] 19990607.008 - perlipc.pod
24610              From: "Richard Soderberg" <rs@crystalflame.net>
24611              Date: Sun, 23 Jul 2000 01:37:23 -0700
24612              Message-ID: <NAEKLNAAHLMBPMPNBMLECEIKCBAA.rs@crystalflame.net>
24613      Branch: perl
24614            ! pod/perlipc.pod
24615 ____________________________________________________________________________
24616 [  6419] By: jhi                                   on 2000/07/24  00:01:12
24617         Log: A cleaner abs_path().
24618              Subject: Re: unix alternative to Cwd.pm
24619              From: Jeff Pinyan <jeffp@crusoe.net>
24620              Date: Sun, 23 Jul 2000 17:43:02 -0400 (EDT)
24621              Message-ID: <Pine.GSO.4.21.0007231739120.4304-100000@crusoe.crusoe.net>
24622      Branch: perl
24623            ! lib/Cwd.pm
24624 ____________________________________________________________________________
24625 [  6418] By: jhi                                   on 2000/07/23  23:48:56
24626         Log: Detypo.
24627              
24628              Subject: [PATCH perl-current] Typo in hints/powerux.sh
24629              From: "Richard Soderberg" <rs@crystalflame.net>
24630              Date: Sun, 23 Jul 2000 01:27:33 -0700
24631              Message-ID: <NAEKLNAAHLMBPMPNBMLEOEIJCBAA.rs@crystalflame.net>
24632      Branch: perl
24633            ! hints/powerux.sh
24634 ____________________________________________________________________________
24635 [  6417] By: jhi                                   on 2000/07/17  22:13:31
24636         Log: Subject: SDBM_File documentation
24637              From: mjd@plover.com
24638              Date: 16 Jul 2000 17:41:17 -0000
24639              Message-ID: <20000716174117.18515.qmail@plover.com>
24640      Branch: perl
24641            ! ext/SDBM_File/SDBM_File.pm
24642 ____________________________________________________________________________
24643 [  6416] By: jhi                                   on 2000/07/17  19:13:26
24644         Log: MPE/ix updates for perl 5.6.0 from Mark Bixby.
24645      Branch: perl
24646            ! hints/mpeix.sh mpeix/relink
24647 ____________________________________________________________________________
24648 [  6415] By: jhi                                   on 2000/07/15  14:11:02
24649         Log: Fix the bitvector ops for utf8 (tricky since past 7 bits
24650              the utf8 'characters' can be more than one octet).
24651              
24652              Date: Sat, 15 Jul 2000 00:21:56 +0100
24653              From: Tom Hughes <tom@compton.nu>
24654              Subject: Re: [ID 20000714.002]
24655              Message-ID: <db2334de49.tom@compton.compton.nu>
24656              
24657              Reported in
24658              
24659              Subject: [ID 20000714.002]
24660              From: "Simon Cozens" <simon@othersideofthe.earth.li>
24661              Date: 14 Jul 2000 15:13:09 -0000
24662              Message-Id: <20000714151309.7170.qmail@othersideofthe.earth.li>
24663      Branch: perl
24664            ! doop.c
24665 ____________________________________________________________________________
24666 [  6414] By: jhi                                   on 2000/07/15  03:13:41
24667         Log: another VMS build tweak from Peter Prymmer
24668      Branch: perl
24669            ! vms/descrip_mms.template
24670 ____________________________________________________________________________
24671 [  6413] By: jhi                                   on 2000/07/15  03:10:40
24672         Log: perlvms.pod whitespace cleanup to keep pod utils happy.
24673      Branch: perl
24674            ! vms/perlvms.pod
24675 ____________________________________________________________________________
24676 [  6412] By: jhi                                   on 2000/07/15  00:31:05
24677         Log: More docs for sv functions.
24678              
24679              Subject: [PATCH cfgperl] sv.c apidoc
24680              From: simon@brecon.co.uk (Simon Cozens)
24681              Date: 13 Jul 2000 09:00:20 GMT
24682              Message-ID: <slrn8mr194.2em.simon@justanother.perlhacker.org>
24683              
24684              Subject: Re: [PATCH cfgperl] sv.c apidoc
24685              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
24686              Date: Thu, 13 Jul 2000 12:27:41 +0100
24687              Message-Id: <E13Ch9Z-0006QL-00@libra.cus.cam.ac.uk>
24688              
24689              Subject: Re: [PATCH cfgperl] sv.c apidoc
24690              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
24691              Date: Thu, 13 Jul 2000 13:23:09 +0100
24692              Message-Id: <E13Ci1F-0007WR-00@libra.cus.cam.ac.uk>
24693              
24694              Subject: Re: [PATCH cfgperl] sv.c apidoc
24695              From: simon@brecon.co.uk (Simon Cozens)
24696              Date: 14 Jul 2000 06:51:02 GMT
24697              Message-ID: <slrn8mte2m.1qo.simon@justanother.perlhacker.org>
24698      Branch: perl
24699            ! embed.pl pod/perlapi.pod sv.c
24700 ____________________________________________________________________________
24701 [  6411] By: jhi                                   on 2000/07/15  00:10:41
24702         Log: lib/b test fixes from Peter Prymmer.
24703      Branch: perl
24704            ! t/lib/b.t
24705 ____________________________________________________________________________
24706 [  6410] By: jhi                                   on 2000/07/15  00:02:09
24707         Log: Subject: [docpatch] Re: [ID 19991002.011] perldoc -f shift
24708              From: Hugo <hv@crypt.compulink.co.uk>
24709              Date: Fri, 14 Jul 2000 23:05:20 +0100
24710              Message-Id: <200007142205.XAA17882@crypt.compulink.co.uk>
24711              
24712              Didn't anymore apply, but that point still could use another fix.
24713      Branch: perl
24714            ! pod/perlfunc.pod
24715 ____________________________________________________________________________
24716 [  6409] By: jhi                                   on 2000/07/14  23:15:15
24717         Log: thinko fix in vms/descrip_mms.template, the win32.pod in lib,
24718              not in pod, from Peter Prymmer
24719      Branch: perl
24720            ! vms/descrip_mms.template
24721 ____________________________________________________________________________
24722 [  6408] By: jhi                                   on 2000/07/14  20:35:05
24723         Log: The bug report
24724              [ID 19991110.002] minimal matching discrepancy found by pcre author
24725              seems to have been fixed (though differently from what was suggested
24726              in the report) in 5.6.0.  Add tests to keep the bug from reappearing.
24727      Branch: perl
24728            ! t/op/re_tests
24729 ____________________________________________________________________________
24730 [  6407] By: jhi                                   on 2000/07/14  17:38:08
24731         Log: Fix AutoSplit to use File::Spec the right way in VMS,
24732              from Peter Prymmer.
24733      Branch: perl
24734            ! lib/AutoSplit.pm
24735 ____________________________________________________________________________
24736 [  6406] By: jhi                                   on 2000/07/14  14:13:22
24737         Log: Merge perlhacktut into perlhack, update perlguts.
24738              
24739              Subject: Re: Perlhacktut
24740              From: simon@brecon.co.uk (Simon Cozens)
24741              Date: 14 Jul 2000 06:49:21 GMT
24742              Message-ID: <slrn8mtdvh.1qo.simon@justanother.perlhacker.org>
24743              
24744              Subject: Re: Perlhacktut
24745              From: simon@brecon.co.uk (Simon Cozens)
24746              Date: 14 Jul 2000 07:09:45 GMT
24747              Message-ID: <slrn8mtf5p.1qo.simon@justanother.perlhacker.org>
24748      Branch: perl
24749            ! pod/perlguts.pod pod/perlhack.pod
24750 ____________________________________________________________________________
24751 [  6405] By: jhi                                   on 2000/07/14  14:02:31
24752         Log: Integrate with Sarathy.
24753      Branch: cfgperl
24754           !> doop.c embed.h embed.pl embedvar.h ext/IPC/SysV/Makefile.PL
24755           !> intrpvar.h lib/ExtUtils/MM_Unix.pm mg.c op.c perlapi.h
24756           !> pod/perlapi.pod pp.c proto.h sv.h thread.h toke.c util.c
24757 ____________________________________________________________________________
24758 [  6404] By: gsar                                  on 2000/07/14  12:15:02
24759         Log: PERL_OBJECT build tweaks
24760      Branch: perl
24761            ! toke.c
24762 ____________________________________________________________________________
24763 [  6403] By: gsar                                  on 2000/07/14  11:23:41
24764         Log: inconsistent types needs casts
24765      Branch: perl
24766            ! toke.c
24767 ____________________________________________________________________________
24768 [  6402] By: gsar                                  on 2000/07/14  11:12:04
24769         Log: typos in change#6399, regen headers
24770      Branch: perl
24771            ! doop.c embed.h embedvar.h perlapi.h pod/perlapi.pod proto.h
24772 ____________________________________________________________________________
24773 [  6401] By: gsar                                  on 2000/07/14  10:59:12
24774         Log: typecasts needed for change#6394
24775      Branch: perl
24776            ! toke.c
24777 ____________________________________________________________________________
24778 [  6400] By: gsar                                  on 2000/07/14  10:49:37
24779         Log: integrate cfgperl contents into mainline
24780      Branch: perl
24781           !> Configure MANIFEST config_h.SH embed.pl global.sym proto.h
24782           !> regcomp.c regexec.c t/op/re_tests toke.c vms/subconfigure.com
24783 ____________________________________________________________________________
24784 [  6399] By: gsar                                  on 2000/07/14  10:38:35
24785         Log: enable UTF-16 filter by default if relevant BOM is seen; various
24786              cleanups (typos, misformatted code, and small bugs)
24787      Branch: perl
24788            ! doop.c embed.pl mg.c op.c pp.c toke.c
24789 ____________________________________________________________________________
24790 [  6398] By: gsar                                  on 2000/07/14  08:55:38
24791         Log: rename totally bletcherous SvLOCK() thingy (doesn't do what the
24792              name suggests anyway)
24793      Branch: perl
24794            ! ext/IPC/SysV/Makefile.PL sv.h thread.h util.c
24795 ____________________________________________________________________________
24796 [  6397] By: gsar                                  on 2000/07/14  08:44:33
24797         Log: move new variables to the end of the interpreter structure (for
24798              bincompat in code that doesn't #include XSUB.h)
24799      Branch: perl
24800            ! intrpvar.h
24801 ____________________________________________________________________________
24802 [  6396] By: gsar                                  on 2000/07/14  08:13:58
24803         Log: MakeMaker should not remove editor backups (*~) on `make clean`
24804              by default (completes change#6383)
24805      Branch: perl
24806            ! lib/ExtUtils/MM_Unix.pm
24807 ____________________________________________________________________________
24808 [  6395] By: jhi                                   on 2000/07/14  05:20:33
24809         Log: Replace change #6337 with a better one.
24810              
24811              Subject: Re: [PATCH] [ID 20000701.002] Regular Expressions Not Unsetting $1 Vars When Backtracking 
24812              From: Hugo <hv@crypt.compulink.co.uk>
24813              Date: Fri, 14 Jul 2000 04:16:20 +0100
24814              Message-Id: <200007140316.EAA15857@crypt.compulink.co.uk>
24815      Branch: cfgperl
24816            ! regexec.c t/op/re_tests
24817 ____________________________________________________________________________
24818 [  6394] By: jhi                                   on 2000/07/14  01:33:59
24819         Log: Fix the BOM bug: not a byteorder bug, a signedness bug.
24820      Branch: cfgperl
24821            ! embed.pl global.sym proto.h toke.c
24822 ____________________________________________________________________________
24823 [  6393] By: jhi                                   on 2000/07/13  23:41:23
24824         Log: remove discarded test
24825      Branch: cfgperl
24826            ! MANIFEST
24827 ____________________________________________________________________________
24828 [  6392] By: jhi                                   on 2000/07/13  23:32:25
24829         Log: The {multiplier} of a fixed substring was overlooked which
24830              caused a wrong initial search offset for that substring.
24831              
24832              Subject: [PATCH 5.6.0] Re: [ID 20000613.001] Regex works in v5.005_03 but fails in v5.06
24833              From: Hugo <hv@crypt.compulink.co.uk>
24834              Message-Id: <200007131827.TAA14487@crypt.compulink.co.uk>
24835              Date: Thu, 13 Jul 2000 19:27:13 +0100
24836      Branch: cfgperl
24837            ! regcomp.c t/op/re_tests
24838 ____________________________________________________________________________
24839 [  6391] By: jhi                                   on 2000/07/13  16:37:42
24840         Log: typo fix from Craig Berry
24841      Branch: cfgperl
24842            ! vms/subconfigure.com
24843 ____________________________________________________________________________
24844 [  6390] By: jhi                                   on 2000/07/13  13:20:12
24845         Log: Integrate with Sarathy.
24846      Branch: cfgperl
24847            - t/op/method2entersub.t
24848           !> Changes Configure Makefile.SH ext/IPC/SysV/Makefile.PL
24849           !> pod/perldelta.pod sv.c t/lib/english.t t/lib/selfloader.t
24850           !> t/op/sprintf.t toke.c win32/Makefile win32/config_h.PL
24851           !> win32/makefile.mk win32/win32sck.c x2p/Makefile.SH
24852 ____________________________________________________________________________
24853 [  6389] By: jhi                                   on 2000/07/13  13:18:48
24854         Log: Detypo from Peter Prymmer, part of #6388.
24855      Branch: cfgperl
24856            ! Configure config_h.SH
24857      Branch: metaconfig
24858            ! U/modified/d_longlong.U
24859 ____________________________________________________________________________
24860 [  6388] By: gsar                                  on 2000/07/13  06:33:40
24861         Log: typos (spotted by Peter Prymmer)
24862      Branch: perl
24863            ! Configure t/lib/english.t
24864 ____________________________________________________________________________
24865 [  6387] By: gsar                                  on 2000/07/13  05:35:28
24866         Log: new selfloader.t in change#6183 doesn't close DATA handles,
24867              and thus fails to clean up tmp files on dosish platforms
24868      Branch: perl
24869            ! t/lib/selfloader.t
24870 ____________________________________________________________________________
24871 [  6386] By: gsar                                  on 2000/07/12  21:42:39
24872         Log: sprintf test tweaks (from Dominic Dunlop)
24873      Branch: perl
24874            ! t/op/sprintf.t
24875 ____________________________________________________________________________
24876 [  6385] By: gsar                                  on 2000/07/12  21:33:46
24877         Log: fix bugs in processing %v-*d and similar format specs (from
24878              Avi Finkel <avi@finkel.org>)
24879      Branch: perl
24880            ! sv.c t/op/sprintf.t
24881 ____________________________________________________________________________
24882 [  6384] By: gsar                                  on 2000/07/12  16:04:19
24883         Log: readd missing perldelta.pod changes from changes#6339,6376
24884      Branch: perl
24885            ! pod/perldelta.pod
24886 ____________________________________________________________________________
24887 [  6383] By: gsar                                  on 2000/07/12  16:00:51
24888         Log: don't clobber *.orig files on *clean targets
24889      Branch: perl
24890            ! Makefile.SH ext/IPC/SysV/Makefile.PL x2p/Makefile.SH
24891 ____________________________________________________________________________
24892 [  6382] By: gsar                                  on 2000/07/12  07:59:12
24893         Log: fix broken integrations in cfgperl
24894      Branch: cfgperl
24895           !> Changes pod/perldelta.pod
24896 ____________________________________________________________________________
24897 [  6381] By: gsar                                  on 2000/07/12  07:42:17
24898         Log: integrate cfgperl changes into mainline
24899      Branch: perl
24900            ! Changes
24901           !> Configure config_h.SH pod/perlbook.pod pod/perldelta.pod
24902           !> pod/perlre.pod
24903 ____________________________________________________________________________
24904 [  6380] By: gsar                                  on 2000/07/12  07:31:00
24905         Log: get sprintf.t to adjust properly for 3-digit exponents
24906      Branch: perl
24907            ! t/op/sprintf.t
24908 ____________________________________________________________________________
24909 [  6379] By: gsar                                  on 2000/07/12  06:40:04
24910         Log: change#6174 needs corresponding change in win32/config_h.PL,
24911              which grovels through config_h.SH to find the config.h name
24912      Branch: perl
24913            ! win32/config_h.PL
24914 ____________________________________________________________________________
24915 [  6378] By: jhi                                   on 2000/07/12  05:03:59
24916         Log: Do the cc sanity check both before the hints and
24917              after the cc selction.
24918      Branch: cfgperl
24919            ! Configure config_h.SH
24920      Branch: metaconfig
24921            ! U/modified/Oldconfig.U U/modified/cc.U
24922      Branch: metaconfig/U/perl
24923            + Checkcc.U
24924 ____________________________________________________________________________
24925 [  6377] By: jhi                                   on 2000/07/12  02:49:22
24926         Log: Fix nits noticed by Boston.pm.
24927      Branch: cfgperl
24928            ! pod/perlre.pod
24929 ____________________________________________________________________________
24930 [  6376] By: jhi                                   on 2000/07/11  21:22:13
24931         Log: Configure cosmetics and perldelta.
24932      Branch: cfgperl
24933            ! Configure config_h.SH pod/perldelta.pod
24934      Branch: metaconfig
24935            ! U/modified/cc.U
24936 ____________________________________________________________________________
24937 [  6375] By: gsar                                  on 2000/07/11  21:17:35
24938         Log: windows build tweaks (op/sprintf.t still fails tests 120-121, 149)
24939      Branch: perl
24940            ! t/op/sprintf.t win32/Makefile win32/makefile.mk
24941            ! win32/win32sck.c
24942 ____________________________________________________________________________
24943 [  6374] By: gsar                                  on 2000/07/11  20:48:50
24944         Log: tweak for build failure under multiplicity
24945      Branch: perl
24946            ! toke.c
24947 ____________________________________________________________________________
24948 [  6373] By: gsar                                  on 2000/07/11  20:37:23
24949         Log: integrate cfgperl changes#6325..6373 into mainline
24950              (NOTE: today's batch of integrations still untested)
24951      Branch: perl
24952           +> ext/DynaLoader/hints/netbsd.pl
24953            ! Changes
24954           !> (integrate 26 files)
24955 ____________________________________________________________________________
24956 [  6372] By: jhi                                   on 2000/07/11  20:30:36
24957         Log: Reintroduce perlbook (updated for Mk III), introduce perlposix-bc,
24958              regen perltoc.
24959      Branch: cfgperl
24960            + pod/perlbook.pod
24961            ! MANIFEST pod/Makefile.SH pod/buildtoc.PL pod/perl.pod
24962            ! pod/perltoc.pod
24963 ____________________________________________________________________________
24964 [  6371] By: jhi                                   on 2000/07/11  20:08:56
24965         Log: Minor cleanups on the booklist.
24966      Branch: cfgperl
24967            ! pod/perlfaq2.pod
24968 ____________________________________________________________________________
24969 [  6370] By: jhi                                   on 2000/07/11  19:31:13
24970         Log: mjd's tr patches "broke" tr/z-Z/z-Z/
24971      Branch: cfgperl
24972            ! t/pragma/overload.t
24973 ____________________________________________________________________________
24974 [  6369] By: gsar                                  on 2000/07/11  19:27:48
24975         Log: integrate cfgperl changes#6293..6324 into mainline
24976      Branch: perl
24977           +> lib/Win32.pod lib/lib_pm.PL pod/Makefile.SH pod/buildtoc.PL
24978            - lib/lib.pm.PL pod/Makefile pod/Win32.pod pod/buildtoc
24979           !> (integrate 30 files)
24980 ____________________________________________________________________________
24981 [  6368] By: gsar                                  on 2000/07/11  19:18:57
24982         Log: skip integrate of problematic change#6292 from cfgperl into mainline
24983      Branch: perl
24984           !> pp_hot.c
24985 ____________________________________________________________________________
24986 [  6367] By: gsar                                  on 2000/07/11  19:17:21
24987         Log: integrate cfgperl changes#6288..6290 into mainline
24988      Branch: perl
24989           !> lib/File/Spec/Functions.pm lib/File/Spec/OS2.pm
24990 ____________________________________________________________________________
24991 [  6366] By: gsar                                  on 2000/07/11  19:11:18
24992         Log: integrate cfgperl changes#6268..6282 into mainline
24993      Branch: perl
24994           !> (integrate 30 files)
24995 ____________________________________________________________________________
24996 [  6365] By: gsar                                  on 2000/07/11  18:57:00
24997         Log: delete new accidentally branched file
24998      Branch: perl
24999            - t/op/method2entersub.t
25000 ____________________________________________________________________________
25001 [  6364] By: gsar                                  on 2000/07/11  18:55:13
25002         Log: skip integrate of change#6267 from cfgperl into mainline (the
25003              method call optimization is flawed without additional hints
25004              from user about immutableness of @ISA and no runtime method
25005              definitions)
25006      Branch: perl
25007           +> t/op/method2entersub.t
25008           !> MANIFEST embed.pl lib/ExtUtils/Install.pm lib/base.pm op.c
25009           !> perl.h t/op/sprintf.t xsutils.c
25010 ____________________________________________________________________________
25011 [  6363] By: gsar                                  on 2000/07/11  18:49:43
25012         Log: integrate cfgperl changes#6261..6266 into mainline
25013      Branch: perl
25014           !> README.epoc cygwin/Makefile.SHs doop.c epoc/config.sh
25015           !> epoc/createpkg.pl epoc/epocish.c epoc/epocish.h
25016           !> ext/POSIX/POSIX.pm ext/POSIX/POSIX.pod ext/POSIX/POSIX.xs
25017           !> hints/bsdos.sh pod/perldiag.pod t/comp/require.t toke.c
25018 ____________________________________________________________________________
25019 [  6362] By: gsar                                  on 2000/07/11  18:43:26
25020         Log: integrate cfgperl changes#6252..6260 into mainline
25021      Branch: perl
25022           !> MANIFEST doop.c embed.h embed.pl embedvar.h lib/Exporter.pm
25023           !> lib/IPC/Open3.pm objXSUB.h op.c pod/perlfunc.pod pp.c
25024           !> pp_proto.h proto.h sv.c t/op/my_stash.t t/op/pack.t t/op/tr.t
25025           !> t/pragma/constant.t t/pragma/warn/op t/pragma/warn/regcomp
25026 ____________________________________________________________________________
25027 [  6361] By: gsar                                  on 2000/07/11  18:37:12
25028         Log: skip integrate of problematic change#6251 from cfgperl into mainline
25029      Branch: perl
25030           !> lib/Exporter.pm
25031 ____________________________________________________________________________
25032 [  6360] By: gsar                                  on 2000/07/11  18:34:56
25033         Log: integrate cfgperl change#6250 into mainline
25034      Branch: perl
25035           +> t/op/my_stash.t
25036           !> MANIFEST embed.pl proto.h toke.c
25037 ____________________________________________________________________________
25038 [  6359] By: gsar                                  on 2000/07/11  18:21:19
25039         Log: integrate cfgperl changes#6242..6249 into mainline
25040      Branch: perl
25041           !> embed.h embed.pl embedvar.h ext/DynaLoader/DynaLoader_pm.PL
25042           !> gv.c lib/File/Spec.pm lib/IPC/Open3.pm objXSUB.h perlapi.c
25043           !> perlapi.h pod/perlapi.pod pod/perlfunc.pod pod/perlintern.pod
25044           !> pp_proto.h proto.h sv.c t/lib/filefunc.t t/lib/filespec.t
25045           !> t/lib/peek.t utf8.c
25046 ____________________________________________________________________________
25047 [  6358] By: gsar                                  on 2000/07/11  18:15:45
25048         Log: skip integrate of problematic change#6241 from cfgperl into mainline
25049      Branch: perl
25050           !> regcomp.c t/pragma/warn/regcomp t/pragma/warn/toke toke.c
25051 ____________________________________________________________________________
25052 [  6357] By: jhi                                   on 2000/07/11  18:15:16
25053         Log: Fix for
25054              Subject: [ID 20000711.005] spurious uninit warning with msgrcv()
25055              From: Roderick Schertler <roderick@argon.org> 
25056              Date: Tue, 11 Jul 2000 13:55:05 -0400 
25057              Message-Id: <200007111755.NAA05077@jones.argon.org> 
25058      Branch: cfgperl
25059            ! doio.c
25060 ____________________________________________________________________________
25061 [  6356] By: jhi                                   on 2000/07/11  18:12:51
25062         Log: Typo in #6341.
25063      Branch: cfgperl
25064            ! pp_hot.c
25065 ____________________________________________________________________________
25066 [  6355] By: gsar                                  on 2000/07/11  18:12:10
25067         Log: integrate cfgperl changes#6231..6240 into mainline
25068      Branch: perl
25069           +> pod/perlutil.pod
25070           !> (integrate 35 files)
25071 ____________________________________________________________________________
25072 [  6354] By: jhi                                   on 2000/07/11  18:04:34
25073         Log: Subject: [PATCH perl-current] Make op/sprintf.t more comprehensive, take 2
25074              From: Dominic Dunlop <domo@computer.org> 
25075              Date: Tue, 11 Jul 2000 12:27:33 +0200 
25076              Message-Id: <p04320405b590a14d4650@[192.168.1.4]> 
25077              
25078              Replaces change #6268.
25079      Branch: cfgperl
25080            ! t/op/sprintf.t
25081 ____________________________________________________________________________
25082 [  6353] By: gsar                                  on 2000/07/11  17:59:51
25083         Log: skip integrate of problematic change#6230 from cfgperl into mainline
25084              (a later version of File::Spec is already in mainline)
25085      Branch: perl
25086           !> lib/File/Spec.pm lib/File/Spec/Functions.pm
25087           !> lib/File/Spec/OS2.pm t/lib/filefunc.t t/lib/filespec.t
25088 ____________________________________________________________________________
25089 [  6352] By: gsar                                  on 2000/07/11  17:57:48
25090         Log: integrate cfgperl changes#6224..6229 into mainline
25091      Branch: perl
25092           +> lib/lib.pm.PL
25093            - lib/lib.pm
25094           !> MANIFEST Makefile.SH README.hpux embed.pl ext/Socket/Socket.pm
25095           !> lib/English.pm op.c t/lib/english.t
25096 ____________________________________________________________________________
25097 [  6351] By: gsar                                  on 2000/07/11  17:50:10
25098         Log: skip integrate of problematic change#6223 from cfgperl into mainline
25099      Branch: perl
25100           !> doio.c
25101 ____________________________________________________________________________
25102 [  6350] By: gsar                                  on 2000/07/11  17:48:28
25103         Log: integrate cfgperl changes#6220..6222 into mainline
25104      Branch: perl
25105           !> doop.c embed.pl lib/Pod/Usage.pm makedef.pl pod/perlop.pod
25106           !> toke.c utf8.c win32/win32.h
25107 ____________________________________________________________________________
25108 [  6349] By: gsar                                  on 2000/07/11  17:46:13
25109         Log: skip integrate of problematic changes#6218..6219 from cfgperl into
25110              mainline
25111      Branch: perl
25112           !> bytecode.pl ext/B/B/Assembler.pm ext/B/B/Bytecode.pm
25113           !> ext/B/O.pm ext/B/defsubs_h.PL ext/ByteLoader/ByteLoader.pm
25114           !> ext/ByteLoader/ByteLoader.xs ext/ByteLoader/bytecode.h
25115 ____________________________________________________________________________
25116 [  6348] By: jhi                                   on 2000/07/11  17:45:49
25117         Log: README.posix-bc podified from Thomas Dorner.
25118      Branch: cfgperl
25119            ! README.posix-bc
25120 ____________________________________________________________________________
25121 [  6347] By: gsar                                  on 2000/07/11  17:42:04
25122         Log: integrate cfgperl change#6217 into mainline
25123      Branch: perl
25124           !> Configure config_h.SH doio.c embed.h embed.pl embedvar.h gv.c
25125           !> intrpvar.h objXSUB.h perl.c perlapi.h pp.c pp_ctl.c proto.h
25126           !> sv.h util.c util.h vmesa/vmesa.c win32/win32.c
25127 ____________________________________________________________________________
25128 [  6346] By: gsar                                  on 2000/07/11  17:39:37
25129         Log: skip integrate of problematic changes#6211..6212 from cfgperl into
25130              mainline
25131      Branch: perl
25132           !> embedvar.h ext/B/B.xs ext/B/B/Asmdata.pm ext/B/defsubs_h.PL
25133           !> ext/ByteLoader/ByteLoader.xs ext/ByteLoader/bytecode.h
25134           !> ext/ByteLoader/byterun.c ext/ByteLoader/byterun.h perlapi.c
25135           !> perlapi.h pod/perlapi.pod
25136 ____________________________________________________________________________
25137 [  6345] By: gsar                                  on 2000/07/11  17:36:42
25138         Log: integrate cfgperl changes#6207..6210 into mainline
25139      Branch: perl
25140           !> doio.c embed.h embed.pl gv.c intrpvar.h objXSUB.h perl.c pp.c
25141           !> pp_ctl.c proto.h sv.h util.c vmesa/vmesa.c win32/win32.c
25142 ____________________________________________________________________________
25143 [  6344] By: gsar                                  on 2000/07/11  17:31:20
25144         Log: skip integrate of problematic changes#6204..6206 from cfgperl into
25145              mainline
25146      Branch: perl
25147           !> (integrate 40 files)
25148 ____________________________________________________________________________
25149 [  6343] By: gsar                                  on 2000/07/11  17:19:08
25150         Log: integrate cfgperl changes#6174..6203 into mainline (first of several)
25151      Branch: perl
25152           +> Makefile.micro README.micro Todo.micro uconfig.h uconfig.sh
25153            ! Changes
25154           !> (integrate 34 files)
25155 ____________________________________________________________________________
25156 [  6342] By: jhi                                   on 2000/07/11  16:05:48
25157         Log: Subject: [ID 20000710.002] fatal error or memory loss when deleting symbols in evaled code with syntax errors
25158              To: perl5-porters@perl.org
25159              From: Karsten Sperling <spiff@phreax.net>
25160              Date: Mon, 10 Jul 2000 15:12:52 +0200
25161              Message-Id: <200007101315.e6ADFrg21041@chthon.perl.com>
25162      Branch: cfgperl
25163            ! lib/Symbol.pm
25164 ____________________________________________________________________________
25165 [  6341] By: jhi                                   on 2000/07/11  15:59:23
25166         Log: Subject: Re: [ID 20000704.002] [PATCH] memory leak with debug / anon subs
25167              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
25168              Message-Id: <E13AbRE-00009T-00@libra.cus.cam.ac.uk>
25169              Date: Fri, 07 Jul 2000 17:57:16 +0100
25170      Branch: cfgperl
25171            ! pp_hot.c
25172 ____________________________________________________________________________
25173 [  6340] By: jhi                                   on 2000/07/11  15:55:47
25174         Log: Subject: Re: format bug report  [Patch]
25175              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
25176              Date: Wed, 05 Jul 2000 13:12:52 +0200
25177              Message-Id: <20000705130745.67BF.H.M.BRAND@hccnet.nl>
25178              
25179              Subject: Re: format bug report  [Patch]
25180              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
25181              Date: Wed, 05 Jul 2000 14:10:01 +0200
25182              Message-Id: <20000705140837.73C2.H.M.BRAND@hccnet.nl>
25183      Branch: cfgperl
25184            ! t/op/write.t toke.c
25185 ____________________________________________________________________________
25186 [  6339] By: jhi                                   on 2000/07/11  13:54:09
25187         Log: Be less forgiving about ambiguous and illegal tr ranges.
25188              Subject: Re: [ID 20000703.001] tr/// operator understands multiple hyphens in a bizarre way 
25189              From: Mark-Jason Dominus <mjd@plover.com>
25190              Date: Tue, 04 Jul 2000 10:00:12 -0400
25191              Message-ID: <20000704140012.17772.qmail@plover.com>
25192              
25193              Subject: Re: [ID 20000703.001] tr/// operator understands multiple hyphens in a bizarre way 
25194              From: Mark-Jason Dominus <mjd@plover.com>
25195              Date: Wed, 05 Jul 2000 09:37:36 -0400
25196              Message-ID: <20000705133736.27293.qmail@plover.com>
25197      Branch: cfgperl
25198            ! pod/perldelta.pod pod/perldiag.pod t/op/tr.t toke.c
25199 ____________________________________________________________________________
25200 [  6338] By: jhi                                   on 2000/07/11  13:31:24
25201         Log: Subject: [PATCH] Re: "%#p" format specifier: document and test or not?
25202              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
25203              Date: Tue, 11 Jul 2000 13:50:51 +0100
25204              Message-Id: <E13BzUx-00033c-00@libra.cus.cam.ac.uk>
25205      Branch: cfgperl
25206            ! sv.c
25207 ____________________________________________________________________________
25208 [  6337] By: jhi                                   on 2000/07/11  13:29:14
25209         Log: Subject: [PATCH] [ID 20000701.002] Regular Expressions Not Unsetting $1 Vars When Backtracking 
25210              From: Hugo <hv@crypt.compulink.co.uk>
25211              Date: Tue, 11 Jul 2000 12:44:50 +0100
25212              Message-Id: <200007111144.MAA04446@crypt.compulink.co.uk>
25213      Branch: cfgperl
25214            ! regexec.c t/op/re_tests
25215 ____________________________________________________________________________
25216 [  6336] By: jhi                                   on 2000/07/11  13:26:47
25217         Log: Subject: [PATCH cfgperl] $& segfaults if you trick it
25218              From: simon@brecon.co.uk (Simon Cozens)
25219              Date: 7 Jul 2000 11:26:09 GMT
25220              Message-ID: <slrn8mbfif.ead.simon@justanother.perlhacker.org>
25221      Branch: cfgperl
25222            ! mg.c
25223 ____________________________________________________________________________
25224 [  6335] By: jhi                                   on 2000/07/11  13:23:37
25225         Log: Subject: [ID 20000705.002] problem with perl 5.6.0 on NetBSD/sparc
25226              From: Hubert Feyrer <feyrer@rfhs8012.fh-regensburg.de>
25227              Date: Wed, 5 Jul 2000 14:56:43 +0200 (MET DST)
25228              Message-Id: <Pine.GSO.4.10.10007051452330.29215-100000@rfhpc8320.fh-regensburg.de>
25229      Branch: cfgperl
25230            + ext/DynaLoader/hints/netbsd.pl
25231            ! MANIFEST ext/DynaLoader/hints/openbsd.pl
25232 ____________________________________________________________________________
25233 [  6334] By: jhi                                   on 2000/07/11  13:20:38
25234         Log: Subject: PATCH perlguts.pod: Document D and d magic types
25235              From: mjd@plover.com
25236              Date: 5 Jul 2000 18:01:51 -0000
25237              Message-ID: <20000705180151.29413.qmail@plover.com>
25238      Branch: cfgperl
25239            ! pod/perlguts.pod
25240 ____________________________________________________________________________
25241 [  6333] By: jhi                                   on 2000/07/11  13:15:51
25242         Log: Precedence goof, fix based on
25243              Subject: [PATCH 5.6.0] op/taint.t continues on failed shmget()
25244              From: Hugo <hv@crypt.compulink.co.uk>
25245              Date: Tue, 11 Jul 2000 12:52:38 +0100
25246              Message-Id: <200007111152.MAA05488@crypt.compulink.co.uk>
25247      Branch: cfgperl
25248            ! t/op/taint.t
25249 ____________________________________________________________________________
25250 [  6332] By: jhi                                   on 2000/07/11  12:40:17
25251         Log: Integrate with Sarathy.
25252      Branch: cfgperl
25253           !> win32/win32sck.c
25254 ____________________________________________________________________________
25255 [  6331] By: jhi                                   on 2000/07/10  20:14:16
25256         Log: Sprinkle ldlibpath.
25257      Branch: cfgperl
25258            ! pod/Makefile.SH
25259 ____________________________________________________________________________
25260 [  6330] By: jhi                                   on 2000/07/10  17:54:49
25261         Log: More POSIX.pod tweaks.
25262      Branch: cfgperl
25263            ! ext/POSIX/POSIX.pod
25264 ____________________________________________________________________________
25265 [  6329] By: jhi                                   on 2000/07/10  14:02:12
25266         Log: Reorder perl.pod once more.
25267      Branch: cfgperl
25268            ! pod/buildtoc.PL pod/perl.pod pod/perltoc.pod
25269 ____________________________________________________________________________
25270 [  6328] By: gsar                                  on 2000/07/10  07:06:00
25271         Log: accept() leaks memory on windows due to incorrect ordering of
25272              closesocket() and fclose() calls
25273      Branch: perl
25274            ! win32/win32sck.c
25275 ____________________________________________________________________________
25276 [  6327] By: gsar                                  on 2000/07/10  06:49:17
25277         Log: winsock options weren't being set in all threads under ithreads
25278              (caused send()s from second and subsequent threads to fail)
25279      Branch: perl
25280            ! win32/win32sck.c
25281 ____________________________________________________________________________
25282 [  6326] By: jhi                                   on 2000/07/08  02:45:40
25283         Log: Fix a nit spotted by 64bit IRIX compilation: a (64-bit) pointer
25284              was cast to an unsigned (32-bit) integer with wild abandon.
25285      Branch: cfgperl
25286            ! ext/Devel/DProf/DProf.xs
25287 ____________________________________________________________________________
25288 [  6325] By: jhi                                   on 2000/07/07  18:50:33
25289         Log: Remove perlbook, update perlfaq book listing,
25290              rearrange perl.pod, regenerate perltoc.
25291      Branch: cfgperl
25292            - pod/perlbook.pod
25293            ! MANIFEST pod/buildtoc.PL pod/perl.pod pod/perldiag.pod
25294            ! pod/perlfaq2.pod pod/perltoc.pod
25295 ____________________________________________________________________________
25296 [  6324] By: jhi                                   on 2000/07/07  14:03:40
25297         Log: Fix the alignment problem in Crays ([ID 20000612.002]).
25298      Branch: cfgperl
25299            ! sv.h toke.c
25300 ____________________________________________________________________________
25301 [  6323] By: jhi                                   on 2000/07/06  16:03:55
25302         Log: Fix complaints of buildtoc.
25303      Branch: cfgperl
25304            + lib/Win32.pod
25305            - pod/Win32.pod
25306            ! MANIFEST pod/buildtoc.PL pod/perl.pod pod/perltoc.pod
25307 ____________________________________________________________________________
25308 [  6322] By: jhi                                   on 2000/07/06  15:15:52
25309         Log: Add =head1 NAMEs so that buildtoc is happy.
25310              (The CGI::Util nit reported to Lincoln.)
25311      Branch: cfgperl
25312            ! ext/B/B/Stash.pm lib/CGI/Util.pm lib/warnings/register.pm
25313            ! pod/perltoc.pod
25314 ____________________________________________________________________________
25315 [  6321] By: jhi                                   on 2000/07/06  03:16:04
25316         Log: Config is being used.
25317      Branch: cfgperl
25318            ! t/op/method.t
25319 ____________________________________________________________________________
25320 [  6320] By: jhi                                   on 2000/07/06  03:13:13
25321         Log: Integrate with Sarathy.
25322      Branch: cfgperl
25323           !> lib/perl5db.pl win32/perllib.c win32/vdir.h win32/win32sck.c
25324 ____________________________________________________________________________
25325 [  6319] By: jhi                                   on 2000/07/06  03:11:46
25326         Log: Autogenerate pod/Makefile and pod/buildtoc.
25327              buildtoc also checks whether the existin pods are
25328              mentioned in MANIFEST and perl.pod, and vice versa.
25329              (None of the thusly found discrepancies fixed yet.)
25330              roffitall also needs to be autogenerated similarly but it
25331              seems so badly out of date that I didn't touch it yet.
25332      Branch: cfgperl
25333            + pod/Makefile.SH pod/buildtoc.PL
25334            - pod/Makefile pod/buildtoc
25335            ! MANIFEST Makefile.SH pod/perl.pod pod/perltoc.pod
25336 ____________________________________________________________________________
25337 [  6318] By: gsar                                  on 2000/07/05  22:10:54
25338         Log: fix UNC path handling on Windows under ithreads, and chdir()
25339              return value when given a non-existent directory
25340      Branch: perl
25341            ! win32/vdir.h
25342 ____________________________________________________________________________
25343 [  6317] By: gsar                                  on 2000/07/05  22:08:19
25344         Log: winsock cleanup never done on Windows (leads to handle leaks)
25345      Branch: perl
25346            ! win32/perllib.c win32/win32sck.c
25347 ____________________________________________________________________________
25348 [  6316] By: gsar                                  on 2000/07/05  22:06:19
25349         Log: some debugger output does not go to the socket when RemotePort is set
25350      Branch: perl
25351            ! lib/perl5db.pl
25352 ____________________________________________________________________________
25353 [  6315] By: jhi                                   on 2000/07/05  00:25:21
25354         Log: Integrate with Sarathy, preliminary fix for unicos
25355              alignment problems in [ID 20000612.002] Perl problem on Cray system.
25356      Branch: cfgperl
25357            ! sv.h
25358           !> pp_hot.c
25359 ____________________________________________________________________________
25360 [  6314] By: gsar                                  on 2000/07/04  23:34:02
25361         Log: tyop in change#6306
25362      Branch: perl
25363            ! pp_hot.c
25364 ____________________________________________________________________________
25365 [  6313] By: jhi                                   on 2000/07/04  22:14:38
25366         Log: Multiline string literals ENONPORTABLE.
25367      Branch: cfgperl
25368            ! pp_hot.c
25369 ____________________________________________________________________________
25370 [  6312] By: jhi                                   on 2000/07/04  20:34:44
25371         Log: Integrate with Sarathy.
25372      Branch: cfgperl
25373           !> pod/perldelta.pod pod/perldiag.pod pp_hot.c t/lib/b.t
25374           !> t/op/method.t
25375 ____________________________________________________________________________
25376 [  6311] By: jhi                                   on 2000/07/04  20:30:56
25377         Log: More POSIX.pod embellishment.
25378      Branch: cfgperl
25379            ! ext/POSIX/POSIX.pod
25380 ____________________________________________________________________________
25381 [  6310] By: gsar                                  on 2000/07/04  17:28:48
25382         Log: b.t fails under OS/2 (from Yitzchak Scott-Thoennes)
25383      Branch: perl
25384            ! t/lib/b.t
25385 ____________________________________________________________________________
25386 [  6309] By: jhi                                   on 2000/07/04  17:22:18
25387         Log: The #6308 required a little bit more.
25388      Branch: cfgperl
25389            ! Makefile.SH win32/Makefile
25390 ____________________________________________________________________________
25391 [  6308] By: jhi                                   on 2000/07/04  16:35:24
25392         Log: Rename lib.pm.PL to lib_pm.PL to keep the 8.3 people happy.
25393      Branch: cfgperl
25394            + lib/lib_pm.PL
25395            - lib/lib.pm.PL
25396            ! MANIFEST Makefile.SH
25397 ____________________________________________________________________________
25398 [  6307] By: jhi                                   on 2000/07/04  16:28:58
25399         Log: Win32 patches for cfgperl from Sarathy.
25400      Branch: cfgperl
25401            ! doio.c doop.c embed.h embed.pl global.sym gv.c makedef.pl
25402            ! objXSUB.h op.c perlapi.c pp.c pp_ctl.c pp_hot.c proto.h
25403            ! thread.h toke.c util.c win32/Makefile win32/win32.c
25404 ____________________________________________________________________________
25405 [  6306] By: gsar                                  on 2000/07/04  16:28:40
25406         Log: better diagnostic on Frob->stuff() when Frob:: doesn't exist
25407              (from Richard Soderberg <rs@oregonnet.com>)
25408      Branch: perl
25409            ! pod/perldelta.pod pod/perldiag.pod pp_hot.c t/op/method.t
25410 ____________________________________________________________________________
25411 [  6305] By: jhi                                   on 2000/07/04  16:24:24
25412         Log: Integrate with Sarathy.
25413      Branch: cfgperl
25414           !> embed.h embed.pl global.sym lib/File/Spec/Mac.pm
25415           !> lib/File/Spec/Unix.pm lib/File/Spec/VMS.pm
25416           !> lib/File/Spec/Win32.pm objXSUB.h perlapi.c pod/perldiag.pod
25417           !> proto.h win32/win32.c
25418 ____________________________________________________________________________
25419 [  6304] By: gsar                                  on 2000/07/04  16:17:24
25420         Log: missing perldiag entry for unpack("w",...) diagnostic (from
25421              Andreas Koenig)
25422      Branch: perl
25423            ! pod/perldiag.pod
25424 ____________________________________________________________________________
25425 [  6303] By: gsar                                  on 2000/07/04  16:14:44
25426         Log: remove rel2abs prototypes (from Barrie Slaymaker)
25427      Branch: perl
25428            ! lib/File/Spec/Mac.pm lib/File/Spec/Unix.pm
25429            ! lib/File/Spec/VMS.pm lib/File/Spec/Win32.pm
25430 ____________________________________________________________________________
25431 [  6302] By: gsar                                  on 2000/07/04  04:59:35
25432         Log: adjust change#6299
25433      Branch: perl
25434            ! embed.h embed.pl global.sym objXSUB.h perlapi.c proto.h
25435            ! win32/win32.c
25436 ____________________________________________________________________________
25437 [  6301] By: jhi                                   on 2000/07/04  04:50:07
25438         Log: Integrate with Sarathy.
25439      Branch: cfgperl
25440           !> embed.h embed.pl embedvar.h global.sym hv.c intrpvar.h
25441           !> makedef.pl objXSUB.h perl.c perl.h perlapi.c perlapi.h
25442           !> pp_hot.c proto.h sv.c t/io/argv.t win32/win32.c
25443 ____________________________________________________________________________
25444 [  6300] By: gsar                                  on 2000/07/04  04:42:09
25445         Log: PERL_OBJECT build tweak
25446      Branch: perl
25447            ! perl.h
25448 ____________________________________________________________________________
25449 [  6299] By: gsar                                  on 2000/07/04  04:37:00
25450         Log: fix memory leak on Windows (PL_sys_intern contents were never
25451              freed)
25452      Branch: perl
25453            ! embed.h embed.pl global.sym makedef.pl objXSUB.h perl.c
25454            ! perlapi.c proto.h win32/win32.c
25455 ____________________________________________________________________________
25456 [  6298] By: gsar                                  on 2000/07/04  04:15:59
25457         Log: fix large memory leak that has been around for ever, masked by
25458              -DPURIFY (most of the arenas were never freed!)
25459      Branch: perl
25460            ! embedvar.h global.sym hv.c intrpvar.h perl.c perlapi.h sv.c
25461 ____________________________________________________________________________
25462 [  6297] By: gsar                                  on 2000/07/04  04:07:46
25463         Log: fix ~320 byte memory leak (psig_{ptr,name} tables were never freed)
25464      Branch: perl
25465            ! perl.c
25466 ____________________________________________________________________________
25467 [  6296] By: jhi                                   on 2000/06/30  18:28:37
25468         Log: Elaborate POSIX.pod.  Still needs work.
25469      Branch: cfgperl
25470            ! ext/POSIX/POSIX.pod
25471 ____________________________________________________________________________
25472 [  6295] By: jhi                                   on 2000/06/30  14:58:18
25473         Log: Point to perlipc for more SysV IPC examples.
25474      Branch: cfgperl
25475            ! pod/perlfunc.pod
25476 ____________________________________________________________________________
25477 [  6294] By: gsar                                  on 2000/06/30  14:47:45
25478         Log: slurp mode fix in change#4736 still not quite right
25479      Branch: perl
25480            ! pp_hot.c t/io/argv.t
25481 ____________________________________________________________________________
25482 [  6293] By: jhi                                   on 2000/06/30  12:02:55
25483         Log: Integrate with Sarathy.
25484      Branch: cfgperl
25485           !> cop.h pp_ctl.c pp_hot.c t/op/args.t
25486 ____________________________________________________________________________
25487 [  6292] By: jhi                                   on 2000/06/30  12:01:11
25488         Log: From: simon@brecon.co.uk (Simon Cozens)
25489              Subject: UTF8 concat
25490              Date: 30 Jun 2000 06:13:25 GMT
25491              Message-ID: <slrn8loek5.9ai.simon@justanother.perlhacker.org>
25492      Branch: cfgperl
25493            ! pp_hot.c
25494 ____________________________________________________________________________
25495 [  6291] By: gsar                                  on 2000/06/30  04:37:33
25496         Log: dounwind() may cause POPSUB() to diddle the wrong PL_curpad
25497              when @_ is modified, causing coredumps
25498      Branch: perl
25499            ! cop.h pp_ctl.c pp_hot.c t/op/args.t
25500 ____________________________________________________________________________
25501 [  6290] By: jhi                                   on 2000/06/30  02:21:44
25502         Log: Integrate with Sarathy.
25503      Branch: cfgperl
25504           !> vms/vms.c vms/vmsish.h
25505 ____________________________________________________________________________
25506 [  6289] By: jhi                                   on 2000/06/30  02:21:02
25507         Log: Check VERSIONs.
25508      Branch: cfgperl
25509            ! lib/File/Spec/Functions.pm lib/File/Spec/Mac.pm
25510            ! lib/File/Spec/OS2.pm lib/File/Spec/Unix.pm
25511            ! lib/File/Spec/VMS.pm lib/File/Spec/Win32.pm
25512 ____________________________________________________________________________
25513 [  6288] By: jhi                                   on 2000/06/30  02:18:52
25514         Log: Integrate with Sarathy.
25515      Branch: cfgperl
25516           !> ext/Opcode/Opcode.xs lib/File/Spec.pm
25517           !> lib/File/Spec/Functions.pm lib/File/Spec/Mac.pm
25518           !> lib/File/Spec/OS2.pm lib/File/Spec/Unix.pm
25519           !> lib/File/Spec/VMS.pm lib/File/Spec/Win32.pm pod/perlembed.pod
25520 ____________________________________________________________________________
25521 [  6287] By: gsar                                  on 2000/06/30  02:17:08
25522         Log: integrate vmsperl changes into mainline
25523      Branch: perl
25524           !> vms/vms.c vms/vmsish.h
25525 ____________________________________________________________________________
25526 [  6285] By: gsar                                  on 2000/06/30  02:05:28
25527         Log: localize %INC in a Safe compartment so that use/require work
25528              (many other magic globals probably need similar treatment)
25529      Branch: perl
25530            ! ext/Opcode/Opcode.xs
25531 ____________________________________________________________________________
25532 [  6284] By: gsar                                  on 2000/06/30  01:54:54
25533         Log: tweak perlembed for multiplicity/usethreads sanity; correct notes
25534              about Windows
25535      Branch: perl
25536            ! pod/perlembed.pod
25537 ____________________________________________________________________________
25538 [  6283] By: jhi                                   on 2000/06/30  01:50:10
25539         Log: Subject: [PATCH bleedperl] File::Spec 0.82 beta
25540              From: Barrie Slaymaker <barries@jester.slaysys.com>
25541              Date: Wed, 28 Jun 2000 11:35:29 -0400
25542              Message-Id: <200006281535.LAA21095@jester.slaysys.com>
25543      Branch: perl
25544            ! lib/File/Spec.pm lib/File/Spec/Functions.pm
25545            ! lib/File/Spec/Mac.pm lib/File/Spec/OS2.pm
25546            ! lib/File/Spec/Unix.pm lib/File/Spec/VMS.pm
25547            ! lib/File/Spec/Win32.pm
25548 ____________________________________________________________________________
25549 [  6282] By: jhi                                   on 2000/06/29  22:57:22
25550         Log: Subject: [PATCH 5.6.0]ITHREADs for VMS
25551              From: Dan Sugalski <dan@sidhe.org>
25552              Date: Tue, 06 Jun 2000 11:59:50 -0400
25553              Message-Id: <4.3.2.7.0.20000606115752.01c82220@24.8.96.48>
25554      Branch: cfgperl
25555            ! vms/vms.c
25556 ____________________________________________________________________________
25557 [  6281] By: jhi                                   on 2000/06/29  22:52:50
25558         Log: Subject: [PATCH 5.6.0] utils/h2xs.PL
25559              From: "Daniel S. Lewart" <d-lewart@uiuc.edu>
25560              Date: Wed, 7 Jun 2000 04:02:04 -0500
25561              Message-ID: <20000607040201.A22568@staff1.cso.uiuc.edu>
25562      Branch: cfgperl
25563            ! utils/h2xs.PL
25564 ____________________________________________________________________________
25565 [  6280] By: jhi                                   on 2000/06/29  22:45:47
25566         Log: Subject: Re: backwards compatibility in h2xs and makemaker  [PATCH]
25567              From: rspier@pobox.com (Robert Spier)
25568              Date: Wed, 7 Jun 2000 12:47:37 -0400 (EDT)
25569              Message-ID: <14654.31913.845602.610277@rls.cx>
25570      Branch: cfgperl
25571            ! utils/h2xs.PL
25572 ____________________________________________________________________________
25573 [  6279] By: jhi                                   on 2000/06/29  22:38:16
25574         Log: Subject: [ID 20000602.002] [PATCH] perlsub.pod: ambiguous usage of "closure"
25575              From: Tim Ayers <tayers@bridge.com>
25576              Date: Thu, 08 Jun 2000 08:11:06 +0200
25577              Message-id: <393F38FA.9B5F4C7D@m.dasa.de>
25578              [resent by Richard Foley, Message-Id probably wrong]
25579      Branch: cfgperl
25580            ! pod/perlsub.pod
25581 ____________________________________________________________________________
25582 [  6278] By: jhi                                   on 2000/06/29  22:21:45
25583         Log: Subject: [ID 20000609.002] Text::Wrap::wrap does not handle multiline strings properly
25584              From: "Milton L. Hankins" <mlh@swl.msd.ray.com>
25585              Date: Fri, 09 Jun 2000 12:39:27 -0400
25586              Message-Id: <39411DBF.A04BB1A@swl.msd.ray.com>
25587              (plus update the version "number" of Text::Wrap)
25588      Branch: cfgperl
25589            ! lib/Text/Wrap.pm
25590 ____________________________________________________________________________
25591 [  6277] By: jhi                                   on 2000/06/29  22:13:10
25592         Log: Subject: [PATCH] Re: [ID 20000612.001] map {chop; $_} (Literals problem)
25593              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
25594              Date: Mon, 12 Jun 2000 14:55:59 +0100
25595              Message-Id: <E131Uh5-0002cj-00@ursa.cus.cam.ac.uk>
25596      Branch: cfgperl
25597            ! pod/perlfunc.pod
25598 ____________________________________________________________________________
25599 [  6276] By: jhi                                   on 2000/06/29  22:11:06
25600         Log: Subject: [PATCH] Re: eval documentation: context
25601              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
25602              Date: Mon, 12 Jun 2000 15:07:29 +0100
25603              Message-Id: <E131UsD-0002ke-00@ursa.cus.cam.ac.uk>
25604      Branch: cfgperl
25605            ! pod/perlfunc.pod
25606 ____________________________________________________________________________
25607 [  6275] By: jhi                                   on 2000/06/29  21:59:46
25608         Log: Subject: [PATCH] 5.6.0 lib/Pod/{Html,Man,Text}.pm
25609              From: "Daniel S. Lewart" <d-lewart@uiuc.edu>
25610              Date: Tue, 13 Jun 2000 02:43:48 -0500
25611              Message-ID: <20000613024347.A28388@staff2.cso.uiuc.edu>
25612      Branch: cfgperl
25613            ! lib/Pod/Html.pm lib/Pod/Man.pm lib/Pod/Text.pm
25614 ____________________________________________________________________________
25615 [  6274] By: jhi                                   on 2000/06/29  21:56:14
25616         Log: Subject: [ID 20000614.003] 5.6.0 File/Glob.pm incompatibility
25617              From: Andy Dougherty <doughera@lafayette.edu>
25618              Date: Wed, 14 Jun 2000 13:33:32 -0400 (EDT)
25619              Message-Id: <Pine.SOL.4.10.10006141332220.3643-100000@maxwell.phys.lafayette.edu>
25620      Branch: cfgperl
25621            ! ext/File/Glob/Glob.pm
25622 ____________________________________________________________________________
25623 [  6273] By: jhi                                   on 2000/06/29  21:49:09
25624         Log: Subject: [PATCH] xsub attributes
25625              From: Doug MacEachern <dougm@covalent.net>
25626              Date: Wed, 14 Jun 2000 15:09:22 -0700 (PDT)
25627              Message-ID: <Pine.LNX.4.10.10006141456050.340-100000@mojo.covalent.net>
25628      Branch: cfgperl
25629            ! embed.h embed.pl embedvar.h global.sym lib/ExtUtils/xsubpp
25630            ! objXSUB.h op.c perlapi.c perlapi.h proto.h
25631 ____________________________________________________________________________
25632 [  6272] By: jhi                                   on 2000/06/29  21:41:28
25633         Log: Subject: [ID 20000614.005] [patch] Tweak to Net::Ping docs
25634              From: Tom Phoenix <rootbeer@redcat.com>
25635              Received: (qmail 6398 invoked by uid 508); 15 Jun 2000 00:30:54 -0000
25636              Date: Wed, 14 Jun 2000 17:30:37 -0700 (PDT)
25637      Branch: cfgperl
25638            ! lib/Net/Ping.pm
25639 ____________________________________________________________________________
25640 [  6271] By: jhi                                   on 2000/06/29  21:36:55
25641         Log: Subject: PATCH pod/perltie.pod
25642              From: Ian Phillipps <Ian.Phillipps@iname.com>
25643              Date: Fri, 16 Jun 2000 00:17:19 +0100
25644              Message-ID: <20000616001719.A17108@homer.diplex.co.uk>
25645              (only the first hunk, the second hunk had already been done
25646              by some other patch)
25647      Branch: cfgperl
25648            ! pod/perltie.pod
25649 ____________________________________________________________________________
25650 [  6270] By: jhi                                   on 2000/06/29  21:24:51
25651         Log: Subject: PATCH (Re: [ID 20000612.004] Should regression tests fail if user doesn't build XS extensions?)
25652              From: Nicholas Clark <nick@talking.bollo.cx>
25653              Date: Fri, 23 Jun 2000 16:21:15 +0100
25654              Message-ID: <20000623162115.A19894@Bagpuss.unfortu.net>
25655      Branch: cfgperl
25656            ! t/lib/anydbm.t t/lib/dprof.t t/lib/dumper-ovl.t t/lib/dumper.t
25657            ! t/lib/hostname.t t/lib/ipc_sysv.t t/op/taint.t
25658 ____________________________________________________________________________
25659 [  6269] By: jhi                                   on 2000/06/29  19:38:15
25660         Log: Regen headers for #6261 (and update embed.pl for this) and #6267,
25661              silence few compiler warnings.
25662      Branch: cfgperl
25663            ! doop.c embed.pl global.sym objXSUB.h op.c proto.h toke.c
25664 ____________________________________________________________________________
25665 [  6268] By: jhi                                   on 2000/06/29  18:21:50
25666         Log: Subject: [PATCH perl-current] Make op/sprintf.t more comprehensive
25667              From: Dominic Dunlop <domo@computer.org> 
25668              Date: Thu, 29 Jun 2000 12:32:39 +0200 
25669              Message-Id: <p04320403b580cc1338db@[192.168.1.4]> 
25670      Branch: cfgperl
25671            ! t/op/sprintf.t
25672 ____________________________________________________________________________
25673 [  6267] By: jhi                                   on 2000/06/29  18:16:07
25674         Log: Subject: Re: [PATCH] Re: Speeding up method lookups 
25675              From: Doug MacEachern <dougm@covalent.net>
25676              Date: Sun, 18 Jun 2000 13:24:55 -0700 (PDT)
25677              Message-ID: <Pine.LNX.4.10.10006181306031.397-100000@mojo.covalent.net>
25678      Branch: cfgperl
25679            + t/op/method2entersub.t
25680            ! MANIFEST embed.pl lib/ExtUtils/Install.pm lib/File/Spec/Mac.pm
25681            ! lib/File/Spec/Unix.pm lib/File/Spec/VMS.pm
25682            ! lib/File/Spec/Win32.pm lib/base.pm op.c perl.h t/op/sprintf.t
25683            ! xsutils.c
25684 ____________________________________________________________________________
25685 [  6266] By: jhi                                   on 2000/06/29  15:11:15
25686         Log: Subject: [PATCH 5.6.0] cygwin port
25687              Message-ID: <779F20BCCE5AD31186A50008C75D997917173C@silldn_mail1.sanwaint.com>
25688              From: "Fifer, Eric" <EFifer@sanwaint.com>
25689              Date: Thu, 29 Jun 2000 12:58:29 +0100
25690      Branch: cfgperl
25691            ! cygwin/Makefile.SHs
25692 ____________________________________________________________________________
25693 [  6265] By: jhi                                   on 2000/06/29  15:04:05
25694         Log: Subject: Re: [ID 20000628.006] POSIX::STRERR_FILENO typo
25695              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
25696              Date: Wed, 28 Jun 2000 17:50:12 -0700
25697              Message-ID: <E1pW5gzkg2kV092yn@efn.org>
25698      Branch: cfgperl
25699            ! ext/POSIX/POSIX.pm ext/POSIX/POSIX.pod ext/POSIX/POSIX.xs
25700 ____________________________________________________________________________
25701 [  6264] By: jhi                                   on 2000/06/29  15:00:57
25702         Log: Subject: [ID 20000628.004] Re: Problem compiling perl? [BSDI-Support-Request #71232]
25703              From: Marty Lucich <marty@netcom.com>
25704              Date: Wed, 28 Jun 2000 14:16:05 -0700 (PDT)
25705              Message-Id: <200006282116.OAA11148@netcom.com>
25706              ccdlflags update (the BSD/OS 4.1 part had already been taken
25707              care of by #6141).
25708      Branch: cfgperl
25709            ! hints/bsdos.sh
25710 ____________________________________________________________________________
25711 [  6263] By: jhi                                   on 2000/06/29  13:47:44
25712         Log: tr fixes from Simon Cozens
25713      Branch: cfgperl
25714            ! doop.c
25715 ____________________________________________________________________________
25716 [  6262] By: jhi                                   on 2000/06/28  18:46:01
25717         Log: Subject: 5.6.0 Patch for EPOC
25718              From: Olaf Flebbe <o.flebbe@gmx.de>
25719              Date: Tue, 13 Jun 2000 22:59:29 +0200 (MEST)
25720              Message-ID: <23449.960929969@www11.gmx.net>
25721      Branch: cfgperl
25722            ! README.epoc epoc/config.sh epoc/createpkg.pl epoc/epocish.c
25723            ! epoc/epocish.h
25724 ____________________________________________________________________________
25725 [  6261] By: jhi                                   on 2000/06/28  18:29:07
25726         Log: Subject: Re: [PATCH cfgperl] BOMs away!
25727              From: simon@brecon.co.uk (Simon Cozens)
25728              Date: 17 Jun 2000 11:49:57 GMT
25729              Message-ID: <slrn8kmpf5.8pl.simon@justanother.perlhacker.org>
25730      Branch: cfgperl
25731            ! pod/perldiag.pod t/comp/require.t toke.c
25732 ____________________________________________________________________________
25733 [  6260] By: jhi                                   on 2000/06/28  17:47:16
25734         Log: Subject: Re: [PATCH] pack('U',$foo) doesn't UTF8
25735              From: simon@brecon.co.uk (Simon Cozens) 
25736              Date: 17 Jun 2000 11:56:44 GMT 
25737              Message-ID: <slrn8kmprs.8pl.simon@justanother.perlhacker.org> 
25738              pack U0, pack C0
25739      Branch: cfgperl
25740            ! pod/perlfunc.pod pp.c t/op/pack.t
25741 ____________________________________________________________________________
25742 [  6259] By: jhi                                   on 2000/06/28  16:43:17
25743         Log: perlnewmod was missing from MANIFEST.
25744      Branch: cfgperl
25745            ! MANIFEST
25746 ____________________________________________________________________________
25747 [  6258] By: jhi                                   on 2000/06/28  15:54:30
25748         Log: linenumber tweak
25749      Branch: cfgperl
25750            ! t/pragma/warn/regcomp
25751 ____________________________________________________________________________
25752 [  6257] By: jhi                                   on 2000/06/28  15:50:44
25753         Log: Subject: Re: [PATCH] "Constant subroutine redefined" mandatory warning
25754              From: Doug MacEachern <dougm@covalent.net>
25755              Date: Sun, 25 Jun 2000 12:11:28 -0700 (PDT)
25756              Message-ID: <Pine.LNX.4.10.10006251209191.461-100000@mojo.covalent.net>
25757              (one part of the patch had been applied earlier)
25758      Branch: cfgperl
25759            ! op.c sv.c t/pragma/constant.t t/pragma/warn/op
25760 ____________________________________________________________________________
25761 [  6256] By: jhi                                   on 2000/06/28  15:40:22
25762         Log: tweaks from Simon Cozens to further fix tr/// under utf8
25763      Branch: cfgperl
25764            ! doop.c
25765 ____________________________________________________________________________
25766 [  6255] By: jhi                                   on 2000/06/28  15:33:45
25767         Log: small thinko tweaks
25768      Branch: cfgperl
25769            ! lib/IPC/Open3.pm t/op/my_stash.t
25770 ____________________________________________________________________________
25771 [  6254] By: jhi                                   on 2000/06/28  15:33:25
25772         Log: Subject: tr///, help wanted.
25773              From: simon@brecon.co.uk (Simon Cozens)
25774              Date: 28 Jun 2000 11:29:04 GMT
25775              Message-ID: <slrn8ljoc0.fbd.simon@justanother.perlhacker.org>
25776      Branch: cfgperl
25777            ! doop.c embed.h embed.pl embedvar.h global.sym objXSUB.h
25778            ! pp_proto.h proto.h t/op/tr.t
25779 ____________________________________________________________________________
25780 [  6253] By: jhi                                   on 2000/06/28  15:09:17
25781         Log: Paranoia tweak on #6249.
25782              Subject: Re: [PATCH 5.6.0 IPC/Open3.pm] Allow the use of numeric fd's
25783              From: Ronald J Kimball <rjk@linguist.dartmouth.edu>
25784              Date: Sun, 25 Jun 2000 23:43:12 -0400
25785              Message-ID: <20000625234312.B74147@linguist.dartmouth.edu>
25786      Branch: cfgperl
25787            ! lib/IPC/Open3.pm
25788 ____________________________________________________________________________
25789 [  6252] By: jhi                                   on 2000/06/28  15:01:38
25790         Log: Document #6249 and #6251.
25791      Branch: cfgperl
25792            ! lib/Exporter.pm lib/IPC/Open3.pm
25793 ____________________________________________________________________________
25794 [  6251] By: jhi                                   on 2000/06/28  14:50:43
25795         Log: Subject: [PATCH] inline AUTOLOADed constants via Exporter.pm
25796              From: Doug MacEachern <dougm@covalent.net>
25797              Date: Fri, 23 Jun 2000 00:16:39 -0700 (PDT)
25798              Message-ID: <Pine.LNX.4.10.10006230009400.322-100000@mojo.covalent.net>
25799      Branch: cfgperl
25800            ! lib/Exporter.pm
25801 ____________________________________________________________________________
25802 [  6250] By: jhi                                   on 2000/06/28  14:45:23
25803         Log: Subject: Re: [PATCH] support 'my __PACKAGE__ $obj = ...'
25804              From: Doug MacEachern <dougm@covalent.net>
25805              Date: Tue, 27 Jun 2000 14:17:28 -0700 (PDT)
25806              Message-ID: <Pine.LNX.4.10.10006271412340.7587-100000@mojo.covalent.net>
25807      Branch: cfgperl
25808            + t/op/my_stash.t
25809            ! MANIFEST embed.pl global.sym proto.h toke.c
25810 ____________________________________________________________________________
25811 [  6249] By: jhi                                   on 2000/06/28  14:36:34
25812         Log: Subject: Re: [PATCH 5.6.0 IPC/Open3.pm] Allow the use of numeric fd's 
25813              From: Frank Tobin <ftobin@uiuc.edu>
25814              Date: Sun, 25 Jun 2000 19:00:58 -0500 (CDT)
25815              Message-ID: <Pine.BSF.4.21.0006251855340.20487-100000@srh0902.urh.uiuc.edu>
25816      Branch: cfgperl
25817            ! lib/IPC/Open3.pm
25818 ____________________________________________________________________________
25819 [  6248] By: jhi                                   on 2000/06/28  14:11:25
25820         Log: Subject: DOC PATCH 5.6.0: perlfunc/sprintf does not contain an example
25821              From: Mark-Jason Dominus <mjd@plover.com>
25822              Date: Tue, 27 Jun 2000 22:36:42 -0400
25823              Message-ID: <20000628023642.12166.qmail@plover.com>
25824      Branch: cfgperl
25825            ! pod/perlfunc.pod
25826 ____________________________________________________________________________
25827 [  6247] By: jhi                                   on 2000/06/27  12:46:37
25828         Log: Tweak $VERSION, patch from Doug MacEachern.
25829      Branch: cfgperl
25830            ! lib/File/Spec.pm
25831 ____________________________________________________________________________
25832 [  6246] By: jhi                                   on 2000/06/27  03:34:46
25833         Log: Allow for standalone testing.
25834      Branch: cfgperl
25835            ! t/lib/filefunc.t t/lib/filespec.t
25836 ____________________________________________________________________________
25837 [  6245] By: jhi                                   on 2000/06/27  02:50:02
25838         Log: Subject: [ID 20000624.001] PERL_DL_DEBUG=1 DynaLoader message appears to be wrong
25839              From: Nicholas Clark <nick@Bagpuss.unfortu.net>
25840              Date: Sat, 24 Jun 2000 13:06:20 +0100
25841              Message-Id: <200006241206.NAA03771@Bagpuss.unfortu.net>
25842      Branch: cfgperl
25843            ! ext/DynaLoader/DynaLoader_pm.PL
25844 ____________________________________________________________________________
25845 [  6244] By: jhi                                   on 2000/06/27  02:46:10
25846         Log: Subject: [PATCH] avoid mg_ptr in '*' magic
25847              From: Doug MacEachern <dougm@covalent.net>
25848              Date: Sun, 25 Jun 2000 11:16:08 -0700 (PDT)
25849              Message-ID: <Pine.LNX.4.10.10006251045190.461-100000@mojo.covalent.net>
25850      Branch: cfgperl
25851            ! gv.c sv.c t/lib/peek.t
25852 ____________________________________________________________________________
25853 [  6243] By: jhi                                   on 2000/06/27  02:38:07
25854         Log: Subject: [PATCH] is_utf8_string
25855              From: simon@brecon.co.uk (Simon Cozens)
25856              Date: 26 Jun 2000 02:25:59 GMT
25857              Message-ID: <slrn8ldfpn.h5k.simon@justanother.perlhacker.org>
25858      Branch: cfgperl
25859            ! embed.h embed.pl embedvar.h global.sym objXSUB.h perlapi.c
25860            ! perlapi.h pod/perlapi.pod pod/perlintern.pod pp_proto.h
25861            ! proto.h utf8.c
25862 ____________________________________________________________________________
25863 [  6242] By: jhi                                   on 2000/06/27  02:24:00
25864         Log: Subject: [PATCH] bytes<->utf8 fixes
25865              From: simon@brecon.co.uk (Simon Cozens)
25866              Date: 26 Jun 2000 04:55:45 GMT
25867              Message-ID: <slrn8ldoih.fbd.simon@justanother.perlhacker.org>
25868      Branch: cfgperl
25869            ! embed.pl perlapi.c pod/perlapi.pod proto.h utf8.c
25870 ____________________________________________________________________________
25871 [  6241] By: jhi                                   on 2000/06/27  02:12:42
25872         Log: Do no -warn on \_, only on \alpha.
25873              Subject: New Unrecognized escape warning for /\_/ from activestate perl-current5.6.0
25874              From: David Dyck <dcd@tc.fluke.com>
25875              Date: Mon, 26 Jun 2000 09:32:02 -0700 (PDT)
25876              Message-ID: <Pine.LNX.4.05.10006260830280.3054-100000@dd.tc.fluke.com>
25877      Branch: cfgperl
25878            ! regcomp.c t/pragma/warn/regcomp t/pragma/warn/toke toke.c
25879 ____________________________________________________________________________
25880 [  6240] By: jhi                                   on 2000/06/27  02:00:01
25881         Log: Subject: [ID 20000626.007] h2xs man page contains trailing garbage
25882              From: Nicholas Clark <nick@Bagpuss.unfortu.net>
25883              Date: Mon, 26 Jun 2000 18:40:14 +0100
25884              Message-Id: <200006261740.SAA02740@Bagpuss.unfortu.net>
25885      Branch: cfgperl
25886            ! utils/h2xs.PL
25887 ____________________________________________________________________________
25888 [  6239] By: jhi                                   on 2000/06/27  01:53:40
25889         Log: Configure maintenance.  Sever some dependency cycles,
25890              separate gccversion from the cc unit,
25891              address [ID 20000623.006] Configure script patch for using gcc on AIX
25892              (but solve it a little bit differently),
25893              unduplex some accidentally duplicated units,
25894              suggest using gcc if no cc available
25895              (p5p thread: "Solaris configure: counterproposal", 1999-09)
25896      Branch: cfgperl
25897            ! Configure Todo-5.6 config_h.SH
25898      Branch: metaconfig
25899            ! U/modified/Config_h.U U/modified/cc.U U/modified/cpp_stuff.U
25900            ! U/modified/libs.U U/modified/models.U U/modified/usrinc.U
25901      Branch: metaconfig/U/perl
25902            + gccvers.U
25903            ! d_getespwnam.U d_getprpwnam.U i_prot.U
25904 ____________________________________________________________________________
25905 [  6238] By: jhi                                   on 2000/06/25  18:04:56
25906         Log: Subject: [PATCH 5.6.0] XS module loading fixup for VMS
25907              From: Dan Sugalski <dan@sidhe.org>
25908              Date: Fri, 23 Jun 2000 17:00:00 -0400
25909              Message-Id: <4.3.2.7.0.20000623165934.00c93d10@24.8.96.48>
25910      Branch: cfgperl
25911            ! lib/ExtUtils/MM_VMS.pm vms/vms.c
25912 ____________________________________________________________________________
25913 [  6237] By: jhi                                   on 2000/06/25  16:36:45
25914         Log: Tweak embed.pl, regen headers.
25915      Branch: cfgperl
25916            ! embed.h embed.pl embedvar.h ext/B/B/Asmdata.pm
25917            ! ext/ByteLoader/byterun.c ext/ByteLoader/byterun.h global.sym
25918            ! keywords.h lib/warnings.pm objXSUB.h opcode.h opnames.h
25919            ! perlapi.c perlapi.h pod/perlapi.pod pod/perlintern.pod pp.sym
25920            ! pp_proto.h proto.h regnodes.h utf8.c warnings.h
25921 ____________________________________________________________________________
25922 [  6236] By: jhi                                   on 2000/06/25  15:26:42
25923         Log: Regen headers.
25924      Branch: cfgperl
25925            ! embed.h embedvar.h ext/B/B/Asmdata.pm ext/ByteLoader/byterun.c
25926            ! ext/ByteLoader/byterun.h global.sym keywords.h lib/warnings.pm
25927            ! objXSUB.h opcode.h opnames.h perlapi.c perlapi.h
25928            ! pod/perlapi.pod pod/perlintern.pod pp.sym pp_proto.h proto.h
25929            ! regnodes.h warnings.h
25930 ____________________________________________________________________________
25931 [  6235] By: jhi                                   on 2000/06/23  19:39:35
25932         Log: The thread begun by
25933              Subject: [ID 20000616.001] Typo on line 390 of .../hints/solaris_2.sh
25934              From: Kevin.Ruscoe@ubsw.com
25935              Date: Fri, 16 Jun 2000 16:38:51 +0100
25936              Message-Id: <H000019b03c300d6@MHS>
25937      Branch: cfgperl
25938            ! hints/solaris_2.sh
25939 ____________________________________________________________________________
25940 [  6234] By: jhi                                   on 2000/06/23  19:23:36
25941         Log: Prefer C:/temp in Win32 as File::Spec->tmpdir to /tmp
25942              because when run as services (Win32ese for daemons)
25943              no environment variables are set and tmpdir ends up as /tmp,
25944              which is ambiguous.
25945              
25946              Subject:[ID 20000616.002] File::Spec->tmpdir broken when running as service
25947              From: matt@sergeant.org
25948              Date: 16 Jun 2000 16:30:43 -0000
25949              Message-Id: <20000616163043.26398.qmail@mail.sergeant.org>
25950      Branch: cfgperl
25951            ! lib/File/Spec/Win32.pm
25952 ____________________________________________________________________________
25953 [  6233] By: jhi                                   on 2000/06/23  19:18:58
25954         Log: Subject: PATCH 5.6.0: Document OPf_SPECIAL flag in regcomp op nodes
25955              From: Mark-Jason Dominus <mjd@plover.com>
25956              Date: Fri, 16 Jun 2000 20:53:04 -0400
25957              Message-ID: <20000617005304.8008.qmail@plover.com>
25958      Branch: cfgperl
25959            ! op.h
25960 ____________________________________________________________________________
25961 [  6232] By: jhi                                   on 2000/06/23  16:10:02
25962         Log: Subject: PATCH: pod/perlutil.pod - utilities packaged with the Perl distribution
25963              From: simon@brecon.co.uk (Simon Cozens)
25964              Date: 19 Jun 2000 15:18:27 GMT
25965              Message-ID: <slrn8ksee3.cp9.simon@justanother.perlhacker.org>
25966              
25967              plus update pod/Makefile and regenerate perltoc
25968      Branch: cfgperl
25969            + pod/perlutil.pod
25970            ! MANIFEST Todo-5.6 pod/Makefile pod/perltoc.pod pod/roffitall
25971 ____________________________________________________________________________
25972 [  6231] By: jhi                                   on 2000/06/23  15:19:18
25973         Log: Subject: [PATCH 5.6.0] cygwin port
25974              From: "Fifer, Eric" <EFifer@sanwaint.com>
25975              Date: Tue, 20 Jun 2000 14:30:58 +0100
25976              Message-ID: <779F20BCCE5AD31186A50008C75D9979171734@silldn_mail1.sanwaint.com>
25977      Branch: cfgperl
25978            ! README.cygwin lib/File/Find.pm
25979 ____________________________________________________________________________
25980 [  6230] By: jhi                                   on 2000/06/23  14:25:21
25981         Log: Upgrade to File::Spec 0.810_01 from CPAN by Barrie Slaymaker.
25982      Branch: cfgperl
25983            ! lib/File/Spec.pm lib/File/Spec/Functions.pm
25984            ! lib/File/Spec/Mac.pm lib/File/Spec/OS2.pm
25985            ! lib/File/Spec/Unix.pm lib/File/Spec/VMS.pm
25986            ! lib/File/Spec/Win32.pm t/lib/filefunc.t t/lib/filespec.t
25987 ____________________________________________________________________________
25988 [  6229] By: jhi                                   on 2000/06/23  14:13:34
25989         Log: Subject: README.hpux version 0.6.1
25990              Date: Tue, 20 Jun 2000 15:25:51 -0700 (PDT)
25991              From: Jeff Okamoto <okamoto@xfiles.intercon.hp.com>
25992              Message-Id: <200006202225.PAA26205@xfiles.intercon.hp.com>
25993      Branch: cfgperl
25994            ! README.hpux
25995 ____________________________________________________________________________
25996 [  6228] By: jhi                                   on 2000/06/23  14:07:20
25997         Log: Subject: [PATCH] "Constant subroutine redefined" mandatory warning
25998              From: Doug MacEachern <dougm@covalent.net>
25999              Date: Tue, 20 Jun 2000 21:23:56 -0700 (PDT)
26000              Message-ID: <Pine.LNX.4.10.10006202116340.321-100000@mojo.covalent.net>
26001      Branch: cfgperl
26002            ! op.c
26003 ____________________________________________________________________________
26004 [  6227] By: jhi                                   on 2000/06/23  14:01:06
26005         Log: Subject: [PATCH] lib.pm -> lib.pm.PL
26006              From: Doug MacEachern <dougm@covalent.net>
26007              Date: Tue, 20 Jun 2000 22:14:41 -0700 (PDT)
26008              Message-ID: <Pine.LNX.4.10.10006202208210.321-100000@mojo.covalent.net>
26009      Branch: cfgperl
26010            + lib/lib.pm.PL
26011            - lib/lib.pm
26012            ! MANIFEST Makefile.SH
26013 ____________________________________________________________________________
26014 [  6226] By: jhi                                   on 2000/06/23  13:53:07
26015         Log: Subject: [PATCH] remove forward declarations in Socket.pm
26016              From: Doug MacEachern <dougm@covalent.net>
26017              Date: Tue, 20 Jun 2000 21:54:12 -0700 (PDT)
26018              Message-ID: <Pine.LNX.4.10.10006202149190.321-100000@mojo.covalent.net>
26019              
26020              From: Doug MacEachern <dougm@covalent.net>
26021              Subject: Re: [PATCH] remove forward declarations in Socket.pm
26022              Date: Fri, 23 Jun 2000 00:09:29 -0700 (PDT)
26023              Message-ID: <Pine.LNX.4.10.10006222349440.322-100000@mojo.covalent.net>
26024      Branch: cfgperl
26025            ! ext/Socket/Socket.pm op.c
26026 ____________________________________________________________________________
26027 [  6225] By: jhi                                   on 2000/06/23  13:41:52
26028         Log: Add source code filenames to apidoc.
26029              From: simon@brecon.co.uk (Simon Cozens)
26030              Subject: [PATCH embed.pl] Source X-ref
26031              Date: 22 Jun 2000 02:18:49 GMT
26032              Message-ID: <slrn8l2ts8.h5k.simon@justanother.perlhacker.org>
26033      Branch: cfgperl
26034            ! embed.pl
26035 ____________________________________________________________________________
26036 [  6224] By: jhi                                   on 2000/06/23  13:32:33
26037         Log: A way to avoid English.pm performance hit.
26038              From: root <root@jester.slaysys.com>
26039              Subject: [YAPATCH English.pm] My turn to putt again
26040              Date: Thu, 22 Jun 2000 20:33:58 -0400
26041              Message-Id: <200006230033.UAA05960@jester.slaysys.com>
26042      Branch: cfgperl
26043            ! lib/English.pm t/lib/english.t
26044 ____________________________________________________________________________
26045 [  6223] By: jhi                                   on 2000/06/23  13:27:06
26046         Log: Avoid double close().
26047              Subject: [PATCH] avoid double close()
26048              From: Doug MacEachern <dougm@covalent.net>
26049              Date: Thu, 22 Jun 2000 23:08:06 -0700 (PDT)
26050              Message-ID: <Pine.LNX.4.10.10006222251260.322-100000@mojo.covalent.net>
26051      Branch: cfgperl
26052            ! doio.c
26053 ____________________________________________________________________________
26054 [  6222] By: jhi                                   on 2000/06/23  13:25:54
26055         Log: doc typo fix
26056              Subject: [PATCH] documentation typo in lib/Pod/Usage.pm
26057              From: Ian Phillipps <Ian.Phillipps@iname.com>
26058              Date: Fri, 23 Jun 2000 10:40:58 +0100
26059              Message-ID: <20000623104058.A22791@homer.diplex.co.uk>
26060      Branch: cfgperl
26061            ! lib/Pod/Usage.pm
26062 ____________________________________________________________________________
26063 [  6221] By: jhi                                   on 2000/06/23  13:24:15
26064         Log: Remove tr///CU (the feature is to be obsoleted by better interfaces).
26065              From: simon@brecon.co.uk (Simon Cozens)
26066              Subject: [PATCH] Eliminate tr///[CU][CU]
26067              Date: 23 Jun 2000 11:05:40 GMT
26068              Message-ID: <slrn8l6h44.h5k.simon@justanother.perlhacker.org>
26069      Branch: cfgperl
26070            ! doop.c embed.pl pod/perlop.pod toke.c utf8.c
26071 ____________________________________________________________________________
26072 [  6220] By: jhi                                   on 2000/06/22  16:07:51
26073         Log: Win32 patches from Benjamin Stuhl.
26074      Branch: cfgperl
26075            ! makedef.pl win32/win32.h
26076 ____________________________________________________________________________
26077 [  6219] By: jhi                                   on 2000/06/22  16:06:34
26078         Log: Bytecode patches from Benjamin Stuhl.
26079      Branch: cfgperl
26080            ! bytecode.pl ext/B/B/Assembler.pm ext/B/B/Bytecode.pm
26081            ! ext/B/O.pm ext/B/defsubs_h.PL ext/ByteLoader/ByteLoader.pm
26082            ! ext/ByteLoader/ByteLoader.xs ext/ByteLoader/bytecode.h
26083 ____________________________________________________________________________
26084 [  6218] By: jhi                                   on 2000/06/15  23:54:16
26085         Log: Bytecode patches from Benjamin Stuhl.
26086      Branch: cfgperl
26087            ! ext/B/B/Assembler.pm ext/B/B/Bytecode.pm
26088 ____________________________________________________________________________
26089 [  6217] By: jhi                                   on 2000/06/09  13:38:29
26090         Log: Rename the fdpid locking and integrate with Sarathy.
26091      Branch: cfgperl
26092            ! Configure config_h.SH doio.c embed.h embed.pl embedvar.h
26093            ! global.sym gv.c intrpvar.h objXSUB.h perl.c perlapi.h pp.c
26094            ! pp_ctl.c proto.h sv.h util.c util.h vmesa/vmesa.c
26095            ! win32/win32.c
26096           !> av.h cop.h hints/solaris_2.sh t/op/runlevel.t
26097 ____________________________________________________________________________
26098 [  6216] By: gsar                                  on 2000/06/08  14:54:21
26099         Log: be more optimal about clearing @_
26100      Branch: perl
26101            ! cop.h
26102 ____________________________________________________________________________
26103 [  6215] By: gsar                                  on 2000/06/08  14:33:04
26104         Log: tweak comment about @DB::args
26105      Branch: perl
26106            ! av.h pp_ctl.c
26107 ____________________________________________________________________________
26108 [  6214] By: gsar                                  on 2000/06/08  13:57:54
26109         Log: @_ can't have junk in it even in the non-USE_ITHREADS case because
26110              caller() wants to populate @DB::args with it (causes a coredump
26111              in Carp::confess())
26112      Branch: perl
26113            ! cop.h t/op/runlevel.t
26114 ____________________________________________________________________________
26115 [  6213] By: gsar                                  on 2000/06/08  07:06:35
26116         Log: back out change#6106 (seems problematic)
26117      Branch: perl
26118            ! hints/solaris_2.sh
26119 ____________________________________________________________________________
26120 [  6212] By: jhi                                   on 2000/06/07  03:10:36
26121         Log: Continuing mopup for #6204.
26122      Branch: cfgperl
26123            ! ext/B/defsubs_h.PL
26124 ____________________________________________________________________________
26125 [  6211] By: jhi                                   on 2000/06/07  02:41:50
26126         Log: Mopup for #6204.
26127              Under the 5005 threads the t/lib/b.t for B::Deparse fails:
26128              Can't locate object method "PV" via package "B::RV" at ../lib/B/Deparse.pm line 2360.
26129              This is comes from const() where POK isn't on when expected.
26130      Branch: cfgperl
26131            ! embedvar.h ext/B/B.xs ext/B/B/Asmdata.pm
26132            ! ext/ByteLoader/ByteLoader.xs ext/ByteLoader/bytecode.h
26133            ! ext/ByteLoader/byterun.c ext/ByteLoader/byterun.h perlapi.c
26134            ! perlapi.h pod/perlapi.pod
26135 ____________________________________________________________________________
26136 [  6210] By: jhi                                   on 2000/06/07  01:56:29
26137         Log: Mopup for #6207 and #6209.
26138      Branch: cfgperl
26139            ! doio.c gv.c sv.h util.c vmesa/vmesa.c win32/win32.c
26140 ____________________________________________________________________________
26141 [  6209] By: jhi                                   on 2000/06/07  01:33:12
26142         Log: Lock PL_fdpid against race conditions, based on:
26143              Subject: [PATCH 5.6.0]subprocess fixup for threads
26144              From: Dan Sugalski <dan@sidhe.org>
26145              To: perl5-porters@perl.org
26146              Date: Tue, 11 Apr 2000 17:02:32 -0400
26147              Message-Id: <4.3.0.20000411170218.01d2f580@24.8.96.48>
26148      Branch: cfgperl
26149            ! doio.c intrpvar.h perl.c sv.h util.c vmesa/vmesa.c
26150            ! win32/win32.c
26151 ____________________________________________________________________________
26152 [  6208] By: jhi                                   on 2000/06/07  01:05:23
26153         Log: Regen headers for #6207.
26154      Branch: cfgperl
26155            ! embed.h global.sym objXSUB.h proto.h
26156 ____________________________________________________________________________
26157 [  6207] By: jhi                                   on 2000/06/06  23:43:13
26158         Log: Subject: [PATCH 5.6.0] Threadsafe patches
26159              From: Dan Sugalski <dan@sidhe.org>
26160              To: perl5-porters@perl.org
26161              Date: Mon, 08 May 2000 18:08:13 -0400
26162              Message-Id: <4.3.1.0.20000508180729.02182de0@24.8.96.48>
26163      Branch: cfgperl
26164            ! embed.pl global.sym gv.c intrpvar.h perl.c pp.c pp_ctl.c
26165            ! proto.h sv.h util.c
26166 ____________________________________________________________________________
26167 [  6206] By: jhi                                   on 2000/06/06  23:21:23
26168         Log: Subject: [PATCH] Eliminate $a/$b in pod
26169              From: David Glasser <me@davidglasser.net>
26170              To: perl5-porters@perl.org
26171              Date: Mon, 29 May 2000 21:15:59 -0400
26172              Message-Id: <l03130302b558bb2640ce@[209.195.241.121]>
26173      Branch: cfgperl
26174            ! pod/perl5004delta.pod pod/perl56delta.pod pod/perlboot.pod
26175            ! pod/perlbot.pod pod/perlcall.pod pod/perldata.pod
26176            ! pod/perldbmfilter.pod pod/perldiag.pod pod/perldsc.pod
26177            ! pod/perlembed.pod pod/perlfaq4.pod pod/perlfaq6.pod
26178            ! pod/perlfaq7.pod pod/perlfilter.pod pod/perlfunc.pod
26179            ! pod/perlguts.pod pod/perllexwarn.pod pod/perllocale.pod
26180            ! pod/perlobj.pod pod/perlop.pod pod/perlref.pod pod/perlsub.pod
26181            ! pod/perlsyn.pod pod/perltie.pod pod/perltrap.pod
26182            ! pod/perlvar.pod pod/perlxs.pod
26183 ____________________________________________________________________________
26184 [  6205] By: jhi                                   on 2000/06/06  23:12:14
26185         Log: Subject: [PATCH] Win32 improvements
26186              From: "Benjamin Stuhl" <sho_pi@hotmail.com>
26187              To: gsar@activestate.com, perl5-porters@perl.org
26188              Date: Mon, 29 May 2000 17:22:24 PDT
26189              Message-ID: <20000530002224.91142.qmail@hotmail.com>
26190              (MUA had mangled many lines by wordwrapping)
26191      Branch: cfgperl
26192            ! utils/c2ph.PL win32/makefile.mk win32/win32.c win32/win32sck.c
26193 ____________________________________________________________________________
26194 [  6204] By: jhi                                   on 2000/06/06  23:01:50
26195         Log: Subject: [PATCH] B::Bytecode patches
26196              From: "Benjamin Stuhl" <sho_pi@hotmail.com>
26197              To: gsar@activestate.com, jhi@iki.fi
26198              Cc: perl5-porters@perl.org
26199              Message-ID: <20000602202526.48694.qmail@hotmail.com>
26200              (MUA had mangled many lines by wordwrapping)
26201      Branch: cfgperl
26202            ! bytecode.pl ext/B/B.pm ext/B/B.xs ext/B/B/Assembler.pm
26203            ! ext/B/B/Bytecode.pm ext/B/O.pm ext/B/defsubs_h.PL
26204            ! ext/ByteLoader/ByteLoader.xs ext/ByteLoader/bytecode.h
26205            ! intrpvar.h perl.c
26206 ____________________________________________________________________________
26207 [  6203] By: jhi                                   on 2000/06/06  22:32:43
26208         Log: Subject: [PATCH] perldiag should refer to perlos2.pod not README.os2
26209              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
26210              Date: Tue, 06 Jun 2000 13:07:45 -0700
26211              Message-ID: <RoVP5gzkgmTL092yn@efn.org>
26212      Branch: cfgperl
26213            ! pod/perldiag.pod
26214 ____________________________________________________________________________
26215 [  6202] By: jhi                                   on 2000/06/06  19:38:35
26216         Log: Integrate with Sarathy.
26217      Branch: cfgperl
26218           !> perl.c
26219 ____________________________________________________________________________
26220 [  6201] By: gsar                                  on 2000/06/06  00:42:59
26221         Log: Perl_eval_pv() leaks 4 bytes every time it is called because it
26222              does a PUSHMARK that's never ever POPMARKed; in general, only
26223              Perl_call_[sp]v() need a PUSHMARK for incoming arguments;
26224              Perl_eval_[sp]v() don't because they don't take any incoming
26225              arguments (this leak has been around since the original version
26226              of perl_eval_pv() in 5.003_97e)
26227      Branch: perl
26228            ! perl.c
26229 ____________________________________________________________________________
26230 [  6200] By: jhi                                   on 2000/06/04  03:44:52
26231         Log: Update to cperl-mode.el 4.31 from
26232              ftp://ftp.math.ohio-state.edu/pub/users/ilya/cperl-mode.el
26233              Subject: A couple of notes
26234              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
26235              To: Mailing list Perl5 <perl5-porters@perl.org>
26236              Date: Sat, 3 Jun 2000 23:33:32 -0400
26237              Message-ID: <20000603233332.A6790@monk.mps.ohio-state.edu>
26238      Branch: cfgperl
26239            ! emacs/cperl-mode.el
26240 ____________________________________________________________________________
26241 [  6199] By: jhi                                   on 2000/06/03  15:11:05
26242         Log: Subject: [PATCH 5.6.0]Make perl's malloc work on VMS
26243              From: Dan Sugalski <dan@sidhe.org>
26244              To: perl5-porters@perl.org, vmsperl@perl.org
26245              Date: Fri, 02 Jun 2000 17:30:51 -0400
26246              Message-Id: <4.3.2.7.0.20000602173021.01f03570@24.8.96.48>
26247      Branch: cfgperl
26248            ! vms/descrip_mms.template vms/gen_shrfls.pl
26249 ____________________________________________________________________________
26250 [  6198] By: jhi                                   on 2000/06/03  14:59:15
26251         Log: Subject: [PATCH 5.6.0]VMS fixups so we can build with MULTIPLICITY
26252              From: Dan Sugalski <dan@sidhe.org>
26253              To: vmsperl@perl.org, perl5-porters@perl.org
26254              Date: Fri, 02 Jun 2000 16:00:41 -0400
26255              Message-Id: <4.3.2.7.0.20000602155951.01f02b20@24.8.96.48>
26256              Message-Id: <4.3.2.7.0.20000602164011.01ec8c30@24.8.96.48>
26257      Branch: cfgperl
26258            ! embed.h embed.pl embedvar.h ext/POSIX/POSIX.xs global.sym
26259            ! objXSUB.h perlapi.c perlapi.h pod/perlapi.pod
26260            ! pod/perlintern.pod proto.h vms/vms.c vms/vmsish.h
26261 ____________________________________________________________________________
26262 [  6197] By: jhi                                   on 2000/06/03  14:41:30
26263         Log: Subject: [ID 20000602.005] [PATCH]5.6.0 (DOC) tiny change to perlsyn.pod
26264              From: John Borwick <jhborwic@unity.ncsu.edu>
26265              Date: Fri, 2 Jun 2000 14:35:03 -0400 (EDT)
26266              Message-Id: <Pine.GSO.4.21.0006021420290.11432-100000@eos00du.eos.ncsu.edu>
26267      Branch: cfgperl
26268            ! pod/perlsyn.pod
26269 ____________________________________________________________________________
26270 [  6196] By: jhi                                   on 2000/06/03  14:38:09
26271         Log: Integrate with Sarathy.
26272      Branch: cfgperl
26273           !> cop.h embed.h embed.pl objXSUB.h op.c perl.c perlapi.c perly.c
26274           !> perly_c.diff pp_ctl.c proto.h scope.c scope.h sv.c toke.c
26275           !> vms/perly_c.vms
26276 ____________________________________________________________________________
26277 [  6195] By: gsar                                  on 2000/06/02  22:43:13
26278         Log: fix yet another eval"" leak under USE_ITHREADS
26279      Branch: perl
26280            ! op.c
26281 ____________________________________________________________________________
26282 [  6194] By: gsar                                  on 2000/06/02  18:22:06
26283         Log: fix small eval"" memory leaks under USE_ITHREADS
26284      Branch: perl
26285            ! cop.h embed.h embed.pl objXSUB.h op.c perl.c perlapi.c perly.c
26286            ! perly_c.diff pp_ctl.c proto.h scope.c scope.h sv.c toke.c
26287            ! vms/perly_c.vms
26288 ____________________________________________________________________________
26289 [  6193] By: jhi                                   on 2000/06/01  13:03:56
26290         Log: Signals-be-gone for microperl.
26291      Branch: cfgperl
26292            ! Todo.micro doop.c mg.c perl.c perl.h pp_sys.c util.c
26293 ____________________________________________________________________________
26294 [  6192] By: jhi                                   on 2000/06/01  12:52:02
26295         Log: Integrate with Sarathy.
26296      Branch: cfgperl
26297           +> lib/Pod/LaTeX.pm t/lib/selfloader.t
26298           !> AUTHORS MAINTAIN MANIFEST doop.c embed.pl
26299           !> ext/Devel/Peek/Peek.pm handy.h lib/SelfLoader.pm perl.c
26300           !> pod/perlapi.pod pod/perldata.pod pod/perlfaq6.pod
26301           !> pod/perlfaq9.pod pod/perlfunc.pod pod/perllocale.pod
26302           !> pod/perlre.pod pod/perltrap.pod pod/pod2latex.PL t/op/tr.t
26303           !> t/op/vec.t utils/h2xs.PL
26304 ____________________________________________________________________________
26305 [  6191] By: gsar                                  on 2000/06/01  09:38:21
26306         Log: vec() loses numericalness (modified version of patch suggested
26307              by Robin Barker)
26308      Branch: perl
26309            ! doop.c t/op/vec.t
26310 ____________________________________________________________________________
26311 [  6190] By: gsar                                  on 2000/06/01  09:26:15
26312         Log: submit missing embed.pl change
26313      Branch: perl
26314            ! embed.pl
26315 ____________________________________________________________________________
26316 [  6189] By: gsar                                  on 2000/06/01  09:05:34
26317         Log: counting tr/// corrupts later operation (from M.J.T Guy)
26318      Branch: perl
26319            ! doop.c t/op/tr.t
26320 ____________________________________________________________________________
26321 [  6188] By: gsar                                  on 2000/06/01  08:58:39
26322         Log: h2xs tweaks
26323      Branch: perl
26324            ! utils/h2xs.PL
26325 ____________________________________________________________________________
26326 [  6187] By: gsar                                  on 2000/06/01  08:50:07
26327         Log: replace pod2latex with the one in Pod-LaTeX v0.52 from CPAN
26328              (from Tim Jenness <t.jenness@jach.hawaii.edu>)
26329      Branch: perl
26330            + lib/Pod/LaTeX.pm
26331            ! AUTHORS MAINTAIN MANIFEST ext/Devel/Peek/Peek.pm
26332            ! pod/pod2latex.PL
26333 ____________________________________________________________________________
26334 [  6186] By: gsar                                  on 2000/06/01  08:24:40
26335         Log: further qualify references to "alphanumeric" (from Wolfgang Laun
26336              <wolfgang.laun@alcatel.at>)
26337      Branch: perl
26338            ! handy.h pod/perlapi.pod pod/perldata.pod pod/perlfaq6.pod
26339            ! pod/perlfaq9.pod pod/perllocale.pod pod/perlre.pod
26340 ____________________________________________________________________________
26341 [  6185] By: gsar                                  on 2000/06/01  08:12:00
26342         Log: remove incorrect documentation about implicit split to @_ in
26343              list context, which never really worked in perl 5 (from
26344              M.J.T. Guy)
26345      Branch: perl
26346            ! pod/perlfunc.pod pod/perltrap.pod
26347 ____________________________________________________________________________
26348 [  6184] By: gsar                                  on 2000/06/01  07:52:27
26349         Log: tweak for change#6127
26350      Branch: perl
26351            ! perl.c
26352 ____________________________________________________________________________
26353 [  6183] By: gsar                                  on 2000/06/01  07:41:02
26354         Log: SelfLoader can lose $@ in AUTOLOAD() (from Nicholas Clark
26355              <nick@ccl4.org>)
26356      Branch: perl
26357            + t/lib/selfloader.t
26358            ! MANIFEST lib/SelfLoader.pm
26359 ____________________________________________________________________________
26360 [  6182] By: jhi                                   on 2000/06/01  00:34:42
26361         Log: Be Cleaner Part Deux.
26362      Branch: cfgperl
26363            ! Makefile.SH
26364 ____________________________________________________________________________
26365 [  6181] By: jhi                                   on 2000/06/01  00:32:09
26366         Log: Integrate with Sarathy.
26367      Branch: cfgperl
26368           !> pp.c t/op/arith.t
26369 ____________________________________________________________________________
26370 [  6180] By: jhi                                   on 2000/06/01  00:31:13
26371         Log: microperl nits from Simon Cozens.
26372      Branch: cfgperl
26373            + uconfig.h
26374            ! MAINTAIN MANIFEST Makefile.SH Todo.micro perl.h uconfig.sh
26375            ! unixish.h
26376 ____________________________________________________________________________
26377 [  6179] By: gsar                                  on 2000/05/31  22:37:51
26378         Log: buggy modulus on UVs introduced by change#3378 (resulted in
26379              4063328477 % 65535 amounting to 27406, instead of 27407)
26380      Branch: perl
26381            ! pp.c t/op/arith.t
26382 ____________________________________________________________________________
26383 [  6178] By: jhi                                   on 2000/05/31  21:52:41
26384         Log: Be cleaner.
26385      Branch: cfgperl
26386            ! Makefile.SH
26387 ____________________________________________________________________________
26388 [  6177] By: jhi                                   on 2000/05/31  21:47:33
26389         Log: Substitution utf8 patch from Simon Cozens.
26390      Branch: cfgperl
26391            ! pp_hot.c
26392 ____________________________________________________________________________
26393 [  6176] By: jhi                                   on 2000/05/31  21:45:34
26394         Log: Single-quoted utf8 patch from Simon Cozens.
26395      Branch: cfgperl
26396            ! toke.c
26397 ____________________________________________________________________________
26398 [  6175] By: jhi                                   on 2000/05/31  21:40:18
26399         Log: Integrate with Sarathy.
26400      Branch: cfgperl
26401           !> op.c regexec.c t/lib/filefind.t t/op/re_tests t/op/wantarray.t
26402 ____________________________________________________________________________
26403 [  6174] By: jhi                                   on 2000/05/31  21:37:31
26404         Log: microperl changes from Simon Cozens; Makefile for microperl
26405              written from scratch; few casts added as microperl compilation
26406              doesn't have all prototypes available.
26407      Branch: cfgperl
26408            + Makefile.micro README.micro Todo.micro uconfig.sh
26409            ! Configure MAINTAIN MANIFEST config_h.SH doop.c mg.c op.c
26410            ! perl.c perl.h perlio.c unixish.h utf8.c util.c
26411      Branch: metaconfig
26412            + U/modified/Config_h.U
26413 ____________________________________________________________________________
26414 [  6173] By: jhi                                   on 2000/05/31  20:00:24
26415         Log: metaconfig maintenance.
26416      Branch: metaconfig
26417            + U/modified/Inhdr.U U/typedefs/inotype.U
26418      Branch: metaconfig/U/perl
26419            + d_finitel.U d_getcwd.U d_llseek.U i_fp_class.U i_iconv.U
26420            + i_ieeefp.U i_syslog.U i_sysrusage.U i_ulimit.U
26421 ____________________________________________________________________________
26422 [  6172] By: gsar                                  on 2000/05/31  05:05:42
26423         Log: fix buggy multiline matching of C<"a\nxb\n" =~ /(?!\A)x/m>
26424              (from Ilya Zakharevich)
26425      Branch: perl
26426            ! regexec.c t/op/re_tests
26427 ____________________________________________________________________________
26428 [  6171] By: gsar                                  on 2000/05/31  05:01:47
26429         Log: scalar() doesn't force scalar context when used in void context
26430              (from Simon Cozens)
26431      Branch: perl
26432            ! op.c t/op/wantarray.t
26433 ____________________________________________________________________________
26434 [  6170] By: gsar                                  on 2000/05/31  04:41:33
26435         Log: change#6142 needs tweaks to tests to work where there's no symlink()
26436              (from Helmut Jarausch <jarausch@igpm.rwth-aachen.de>)
26437      Branch: perl
26438            ! t/lib/filefind.t
26439 ____________________________________________________________________________
26440 [  6169] By: gsar                                  on 2000/05/31  04:29:49
26441         Log: integrate cfgperl contents into mainline
26442      Branch: perl
26443           +> pod/perlmodlib.PL pod/perlnewmod.pod
26444           !> (integrate 42 files)
26445 ____________________________________________________________________________
26446 [  6168] By: jhi                                   on 2000/05/30  22:53:37
26447         Log: Tweak NV_PRESERVES_UV*, vms/subconfigure.com left untouched.
26448      Branch: cfgperl
26449            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
26450            ! config_h.SH epoc/config.sh perl.h toke.c vms/subconfigure.com
26451            ! vos/config.def vos/config.h vos/config.pl vos/config_h.SH_orig
26452            ! win32/config.bc win32/config.gc win32/config.vc
26453            ! win32/config_H.bc win32/config_H.gc win32/config_H.vc
26454            ! win32/config_h.PL win32/config_sh.PL
26455      Branch: metaconfig/U/perl
26456            ! perlxv.U
26457 ____________________________________________________________________________
26458 [  6167] By: jhi                                   on 2000/05/30  22:20:21
26459         Log: tweak todo 
26460      Branch: cfgperl
26461            ! Todo-5.6
26462 ____________________________________________________________________________
26463 [  6166] By: jhi                                   on 2000/05/30  22:11:51
26464         Log: Introduce HAS_GETESPWNAM, HAS_GETPRPWNAM, and I_PROT
26465              in case somebody wants to write an extension for more
26466              shadow database interfaces.
26467      Branch: cfgperl
26468            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
26469            ! config_h.SH epoc/config.sh pp_sys.c vms/subconfigure.com
26470            ! vos/config.def vos/config.h vos/config_h.SH_orig
26471            ! win32/config.bc win32/config.gc win32/config.vc
26472            ! win32/config_H.bc win32/config_H.gc win32/config_H.vc
26473      Branch: metaconfig
26474            ! U/modified/Myinit.U
26475      Branch: metaconfig/U/perl
26476            + d_getespwnam.U d_getprpwnam.U i_prot.U
26477 ____________________________________________________________________________
26478 [  6165] By: jhi                                   on 2000/05/30  18:35:34
26479         Log: Integrate with Sarathy.
26480      Branch: cfgperl
26481           !> op.c
26482 ____________________________________________________________________________
26483 [  6164] By: jhi                                   on 2000/05/30  18:30:16
26484         Log: detypo
26485      Branch: cfgperl
26486            ! Configure config_h.SH
26487      Branch: metaconfig/U/perl
26488            ! perlxv.U
26489 ____________________________________________________________________________
26490 [  6163] By: gsar                                  on 2000/05/30  03:24:03
26491         Log: fix memory leak in C<eval "BEGIN {}"> (bug in change#4579)
26492      Branch: perl
26493            ! op.c
26494 ____________________________________________________________________________
26495 [  6162] By: gsar                                  on 2000/05/30  03:09:38
26496         Log: fix memory leak in method call optimization (change#3768);
26497              made C<eval "$x->foo()"> leak
26498      Branch: perl
26499            ! op.c
26500 ____________________________________________________________________________
26501 [  6161] By: jhi                                   on 2000/05/29  17:56:26
26502         Log: Add autogeneration of perlmodlib.pod and the new perlnewmod.pod,
26503              both from Simon Cozens.
26504      Branch: cfgperl
26505            + pod/perlmodlib.PL pod/perlnewmod.pod
26506            ! AUTHORS MAINTAIN MANIFEST pod/Makefile pod/perl.pod
26507            ! pod/perlmodlib.pod pod/perltoc.pod
26508 ____________________________________________________________________________
26509 [  6160] By: jhi                                   on 2000/05/29  17:23:55
26510         Log: Changes for the File::Temp 0.08 (change #6159) test suite
26511              to fit better into the Perl distribution test framework.
26512      Branch: cfgperl
26513            ! t/lib/ftmp-mktemp.t t/lib/ftmp-posix.t t/lib/ftmp-security.t
26514            ! t/lib/ftmp-tempfile.t
26515 ____________________________________________________________________________
26516 [  6159] By: jhi                                   on 2000/05/29  16:55:36
26517         Log: Upgrade to File::Temp 0.08 from Tim Jenness via CPAN.
26518      Branch: cfgperl
26519            ! lib/File/Temp.pm t/lib/ftmp-mktemp.t t/lib/ftmp-posix.t
26520            ! t/lib/ftmp-security.t t/lib/ftmp-tempfile.t
26521 ____________________________________________________________________________
26522 [  6158] By: bailey                                on 2000/05/29  16:22:08
26523         Log: Add fallback to tmpfile for use in cases where user's relying on
26524              ACLs on SYS$SCRATCH to permit file creation. (based on Charles
26525              Lane's patch)
26526      Branch: vmsperl
26527            ! vms/vms.c vms/vmsish.h
26528 ____________________________________________________________________________
26529 [  6157] By: jhi                                   on 2000/05/29  03:10:36
26530         Log: Regen Configure to jive with #6149.
26531      Branch: cfgperl
26532            ! Configure
26533      Branch: metaconfig
26534            ! U/modified/Getfile.U
26535 ____________________________________________________________________________
26536 [  6156] By: jhi                                   on 2000/05/29  03:01:38
26537         Log: Integrate with Sarathy.
26538      Branch: cfgperl
26539           +> ext/DynaLoader/dl_mac.xs
26540           !> (integrate 38 files)
26541 ____________________________________________________________________________
26542 [  6155] By: gsar                                  on 2000/05/28  21:15:58
26543         Log: small bug in change#6144; remove random \xA0 character that snuck
26544              in via change#6145
26545      Branch: perl
26546            ! lib/AutoSplit.pm lib/ExtUtils/xsubpp
26547 ____________________________________________________________________________
26548 [  6154] By: gsar                                  on 2000/05/28  21:04:19
26549         Log: avoid type mismatch warning
26550      Branch: perl
26551            ! perl.c
26552 ____________________________________________________________________________
26553 [  6153] By: gsar                                  on 2000/05/28  20:58:31
26554         Log: prettier Test::Harness output on failed tests (from Nicholas Clark
26555              <nick@Bagpuss.uk.boo.com>)
26556      Branch: perl
26557            ! lib/Test/Harness.pm
26558 ____________________________________________________________________________
26559 [  6152] By: gsar                                  on 2000/05/28  20:53:42
26560         Log: cosmetic fixups of RE debug output (from Ilya Zakharevich)
26561      Branch: perl
26562            ! regexec.c
26563 ____________________________________________________________________________
26564 [  6151] By: gsar                                  on 2000/05/28  20:50:28
26565         Log: fix accidental pessimization in RE optimizer (from Ilya Zakharevich)
26566      Branch: perl
26567            ! regexec.c
26568 ____________________________________________________________________________
26569 [  6150] By: gsar                                  on 2000/05/28  20:39:58
26570         Log: perlrequick.pod updates (from Mark Kvale <kvale@phy.ucsf.edu>)
26571      Branch: perl
26572            ! pod/perlrequick.pod
26573 ____________________________________________________________________________
26574 [  6149] By: gsar                                  on 2000/05/28  20:35:16
26575         Log: OS/2 tweaks for usethreads build (from Rocco Caputo
26576              <troc@netrus.net>)
26577      Branch: perl
26578            ! Configure hints/os2.sh makedef.pl os2/Makefile.SHs
26579            ! os2/OS2/REXX/t/rx_dllld.t os2/OS2/REXX/t/rx_objcall.t
26580            ! os2/OS2/REXX/t/rx_tievar.t os2/OS2/REXX/t/rx_tieydb.t
26581            ! os2/os2.c os2/os2ish.h perl.c util.c x2p/a2p.h
26582 ____________________________________________________________________________
26583 [  6148] By: gsar                                  on 2000/05/28  20:21:07
26584         Log: close open file before chmod() (from Rocco Caputo <troc@netrus.net>)
26585      Branch: perl
26586            ! lib/ExtUtils/MM_Unix.pm
26587 ____________________________________________________________________________
26588 [  6147] By: gsar                                  on 2000/05/28  20:12:41
26589         Log: add a make entry to Config.pm so "perl -V:make" works on VMS
26590              (from Peter Prymmer)
26591      Branch: perl
26592            ! vms/subconfigure.com
26593 ____________________________________________________________________________
26594 [  6146] By: gsar                                  on 2000/05/28  20:06:15
26595         Log: doc typo
26596      Branch: perl
26597            ! lib/warnings.pm warnings.h warnings.pl
26598 ____________________________________________________________________________
26599 [  6145] By: gsar                                  on 2000/05/28  18:44:33
26600         Log: make xsubpp skip embedded pod (from Matthias Neeracher
26601              <neeri@iis.ee.ethz.ch>)
26602      Branch: perl
26603            ! lib/ExtUtils/xsubpp
26604 ____________________________________________________________________________
26605 [  6144] By: gsar                                  on 2000/05/28  18:42:49
26606         Log: MacOS support, part 2: make AutoSplit use File::Spec instead
26607              of assuming Unixisms; *UNTESTED on Unix* (from Matthias Neeracher
26608              <neeri@iis.ee.ethz.ch>)
26609      Branch: perl
26610            ! lib/AutoSplit.pm
26611 ____________________________________________________________________________
26612 [  6143] By: gsar                                  on 2000/05/28  18:41:12
26613         Log: MacOS support, part 1 (from Matthias Neeracher
26614              <neeri@iis.ee.ethz.ch>)
26615      Branch: perl
26616            + ext/DynaLoader/dl_mac.xs
26617            ! MANIFEST ext/DB_File/Makefile.PL ext/NDBM_File/Makefile.PL
26618            ! ext/POSIX/POSIX.xs lib/ExtUtils/MakeMaker.pm mg.c perl.c
26619            ! perlsfio.h pod/perlfaq4.pod pp_ctl.c proto.h toke.c util.c
26620            ! util.h
26621 ____________________________________________________________________________
26622 [  6142] By: gsar                                  on 2000/05/28  18:21:51
26623         Log: File::Find fails to chdir when chasing symlinks (from
26624              Helmut Jarausch <jarausch@igpm.rwth-aachen.de>)
26625      Branch: perl
26626            ! lib/File/Find.pm t/lib/filefind.t
26627 ____________________________________________________________________________
26628 [  6141] By: jhi                                   on 2000/05/28  14:25:15
26629         Log: BSD/OS (bsdi) hints update by Timur I. Bakeyev and Todd C. Miller,
26630              forwarded by Peter Seebach from the bsdi-users mailing list.
26631              p5p Message-Id: <200005280543.AAA24519@guild.plethora.net>
26632      Branch: perl
26633            ! hints/bsdos.sh
26634 ____________________________________________________________________________
26635 [  6140] By: jhi                                   on 2000/05/28  14:11:57
26636         Log: Integrate with Sarathy.
26637      Branch: cfgperl
26638           +> (branch 30 files)
26639           !> (integrate 93 files)
26640 ____________________________________________________________________________
26641 [  6139] By: gsar                                  on 2000/05/28  10:01:48
26642         Log: revise mktables.PL for bugs and newness in Unicode 3.0
26643              (from James Bence <jbence@amgen.com>)
26644      Branch: perl
26645            + lib/unicode/Is/BidiAL.pl lib/unicode/Is/BidiBN.pl
26646            + lib/unicode/Is/BidiLRE.pl lib/unicode/Is/BidiLRO.pl
26647            + lib/unicode/Is/BidiNSM.pl lib/unicode/Is/BidiPDF.pl
26648            + lib/unicode/Is/BidiRLE.pl lib/unicode/Is/BidiRLO.pl
26649            + lib/unicode/Is/Cf.pl lib/unicode/Is/Cs.pl
26650            + lib/unicode/Is/DCfraction.pl lib/unicode/Is/Me.pl
26651            + lib/unicode/Is/Nl.pl lib/unicode/Is/Pc.pl lib/unicode/Is/Pf.pl
26652            + lib/unicode/Is/Pi.pl lib/unicode/Is/Sk.pl
26653            + lib/unicode/Is/SylAA.pl lib/unicode/Is/SylAAI.pl
26654            + lib/unicode/Is/SylAI.pl lib/unicode/Is/SylEE.pl
26655            + lib/unicode/Is/SylII.pl lib/unicode/Is/SylN.pl
26656            + lib/unicode/Is/SylOO.pl lib/unicode/Is/SylWAA.pl
26657            + lib/unicode/Is/SylWEE.pl lib/unicode/Is/SylWII.pl
26658            + lib/unicode/Is/SylWO.pl lib/unicode/Is/SylWOO.pl
26659            + lib/unicode/Is/SylWU.pl
26660            ! MANIFEST lib/unicode/Is/Cn.pl lib/unicode/Is/Graph.pl
26661            ! lib/unicode/Is/LbrkAI.pl lib/unicode/Is/LbrkAL.pl
26662            ! lib/unicode/Is/LbrkB2.pl lib/unicode/Is/LbrkBA.pl
26663            ! lib/unicode/Is/LbrkBB.pl lib/unicode/Is/LbrkBK.pl
26664            ! lib/unicode/Is/LbrkCB.pl lib/unicode/Is/LbrkCL.pl
26665            ! lib/unicode/Is/LbrkCM.pl lib/unicode/Is/LbrkCR.pl
26666            ! lib/unicode/Is/LbrkEX.pl lib/unicode/Is/LbrkGL.pl
26667            ! lib/unicode/Is/LbrkHY.pl lib/unicode/Is/LbrkID.pl
26668            ! lib/unicode/Is/LbrkIN.pl lib/unicode/Is/LbrkIS.pl
26669            ! lib/unicode/Is/LbrkLF.pl lib/unicode/Is/LbrkNS.pl
26670            ! lib/unicode/Is/LbrkNU.pl lib/unicode/Is/LbrkOP.pl
26671            ! lib/unicode/Is/LbrkPO.pl lib/unicode/Is/LbrkPR.pl
26672            ! lib/unicode/Is/LbrkQU.pl lib/unicode/Is/LbrkSA.pl
26673            ! lib/unicode/Is/LbrkSG.pl lib/unicode/Is/LbrkSP.pl
26674            ! lib/unicode/Is/LbrkSY.pl lib/unicode/Is/LbrkXX.pl
26675            ! lib/unicode/Is/LbrkZW.pl lib/unicode/Is/Punct.pl
26676            ! lib/unicode/Is/Space.pl lib/unicode/Is/SylA.pl
26677            ! lib/unicode/Is/SylC.pl lib/unicode/Is/SylE.pl
26678            ! lib/unicode/Is/SylI.pl lib/unicode/Is/SylO.pl
26679            ! lib/unicode/Is/SylU.pl lib/unicode/Is/SylV.pl
26680            ! lib/unicode/Is/SylWA.pl lib/unicode/Is/SylWC.pl
26681            ! lib/unicode/Is/SylWE.pl lib/unicode/Is/SylWI.pl
26682            ! lib/unicode/Is/SylWV.pl lib/unicode/Is/Upper.pl
26683            ! lib/unicode/Makefile lib/unicode/mktables.PL
26684 ____________________________________________________________________________
26685 [  6138] By: gsar                                  on 2000/05/28  08:50:32
26686         Log: add note about the handling of negative indices to tied arrays
26687              (from Michael G Schwern <schwern@pobox.com>)
26688      Branch: perl
26689            ! pod/perltie.pod
26690 ____________________________________________________________________________
26691 [  6137] By: gsar                                  on 2000/05/28  08:46:10
26692         Log: fix bogus redeclaration warning for "our" variables in different
26693              scopes
26694      Branch: perl
26695            ! op.c t/pragma/strict-vars
26696 ____________________________________________________________________________
26697 [  6136] By: gsar                                  on 2000/05/28  08:31:20
26698         Log: random pod typos (from Peter Scott <Peter@PSDT.com>)
26699      Branch: perl
26700            ! ext/Devel/Peek/Peek.pm pod/perldebguts.pod
26701 ____________________________________________________________________________
26702 [  6135] By: gsar                                  on 2000/05/28  08:17:50
26703         Log: enable Test::Harness to dynamically determine column width etc.
26704              (from Rob Napier <rnapier@employees.org>)
26705      Branch: perl
26706            ! lib/Test/Harness.pm
26707 ____________________________________________________________________________
26708 [  6134] By: gsar                                  on 2000/05/28  08:13:39
26709         Log: make Test::Harness use wait.h/WCOREDUMP if available
26710              (from Ben Tilly <ben_tilly@hotmail.com>)
26711      Branch: perl
26712            ! lib/Test/Harness.pm
26713 ____________________________________________________________________________
26714 [  6133] By: gsar                                  on 2000/05/28  08:08:05
26715         Log: elide bogus test in change#6132
26716      Branch: perl
26717            ! t/pragma/warn/9enabled
26718 ____________________________________________________________________________
26719 [  6132] By: gsar                                  on 2000/05/28  08:03:14
26720         Log: warnings::enabled() doesn't fall back to looking at $^W if
26721              caller isn't using lexical warnings (from Paul Marquess)
26722      Branch: perl
26723            ! pp_ctl.c t/pragma/warn/9enabled
26724 ____________________________________________________________________________
26725 [  6131] By: gsar                                  on 2000/05/28  07:57:47
26726         Log: avoid warnings in POSIX.pm (from Barrie Slaymaker)
26727      Branch: perl
26728            ! ext/POSIX/POSIX.pm
26729 ____________________________________________________________________________
26730 [  6130] By: gsar                                  on 2000/05/28  07:29:12
26731         Log: fix places that mean C<"word" character> but say C<alphanumeric
26732              character>
26733      Branch: perl
26734            ! pod/perlfunc.pod pod/perlre.pod pod/perlretut.pod
26735 ____________________________________________________________________________
26736 [  6129] By: gsar                                  on 2000/05/28  07:18:41
26737         Log: VMS test harness tweak (from Jesper Naur <jesper.naur@post.tele.dk>)
26738      Branch: perl
26739            ! vms/test.com
26740 ____________________________________________________________________________
26741 [  6128] By: gsar                                  on 2000/05/28  07:12:55
26742         Log: new perlxstut example for passing/returning refs to arrays
26743              (from David Lowe <dlowe@pootpoot.com>)
26744      Branch: perl
26745            ! pod/perlxstut.pod
26746 ____________________________________________________________________________
26747 [  6127] By: gsar                                  on 2000/05/28  07:02:50
26748         Log: call_method(...,G_EVAL) can longjmp() out if the method probing
26749              failed (from Gisle Aas)
26750      Branch: perl
26751            ! cop.h perl.c
26752 ____________________________________________________________________________
26753 [  6126] By: gsar                                  on 2000/05/28  06:39:53
26754         Log: change#2879 broke rvalue autovivification of magicals such as ${$num}
26755              (reworked variant of patch suggested by Simon Cozens)
26756      Branch: perl
26757            ! embed.h embed.pl gv.c pod/perlapi.pod pod/perlintern.pod pp.c
26758            ! pp_hot.c proto.h t/op/gv.t
26759 ____________________________________________________________________________
26760 [  6125] By: gsar                                  on 2000/05/28  05:14:55
26761         Log: enable propagating exception objects via Perl_croak() in XS code
26762              (from Gisle Aas)
26763      Branch: perl
26764            ! util.c
26765 ____________________________________________________________________________
26766 [  6124] By: gsar                                  on 2000/05/28  05:07:28
26767         Log: integrate vmsperl contents into mainline
26768      Branch: perl
26769           !> lib/ExtUtils/MM_VMS.pm lib/File/Spec/VMS.pm t/op/lex_assign.t
26770           !> vms/ext/vmsish.pm vms/ext/vmsish.t vms/test.com vms/vms.c
26771           !> vms/vmsish.h
26772 ____________________________________________________________________________
26773 [  6123] By: gsar                                  on 2000/05/28  05:03:53
26774         Log: clarify gotcha with #line directives (from Rocco Caputo
26775              <troc@netrus.net>)
26776      Branch: perl
26777            ! pod/perldebug.pod pod/perlsyn.pod
26778 ____________________________________________________________________________
26779 [  6122] By: gsar                                  on 2000/05/28  04:58:29
26780         Log: downgrade fatal error on C<"foo@nosucharray.com"> to optional warning
26781              (from Mark-Jason Dominus)
26782      Branch: perl
26783            ! lib/ExtUtils/typemap pod/perl56delta.pod pod/perlsub.pod
26784            ! pod/perltrap.pod t/base/lex.t t/pragma/strict-vars
26785            ! t/pragma/strict.t t/pragma/warn/toke t/pragma/warnings.t
26786            ! toke.c
26787 ____________________________________________________________________________
26788 [  6121] By: bailey                                on 2000/05/25  04:46:54
26789         Log: Allow eliminate_macros() and fixpath() to handle space-delimited
26790              lists (based on fixes by Craig Berry)
26791      Branch: vmsperl
26792            ! lib/File/Spec/VMS.pm
26793 ____________________________________________________________________________
26794 [  6120] By: bailey                                on 2000/05/25  04:25:38
26795         Log: Add missing escape (Charles Lane)
26796      Branch: vmsperl
26797            ! t/op/lex_assign.t
26798 ____________________________________________________________________________
26799 [  6119] By: bailey                                on 2000/05/25  04:21:25
26800         Log: Quiet error messages in vmsish.t (Charles Lane)
26801      Branch: vmsperl
26802            ! vms/ext/vmsish.t
26803 ____________________________________________________________________________
26804 [  6118] By: bailey                                on 2000/05/25  04:17:57
26805         Log: Regularize distinction between RMS$_DNF and RMS$_DIR (Craig Berry)
26806              Flatten case labels in switch statements uniformly (Charles Bailey)
26807      Branch: vmsperl
26808            ! vms/vms.c
26809 ____________________________________________________________________________
26810 [  6117] By: bailey                                on 2000/05/25  03:58:09
26811         Log: Treat sockets as special in sys(read|write) (Charles Lane et al.)
26812      Branch: vmsperl
26813            ! vms/vmsish.h
26814 ____________________________________________________________________________
26815 [  6116] By: bailey                                on 2000/05/25  03:11:15
26816         Log: Miscellaneous cosmetic fixes (Charles Lane)
26817      Branch: vmsperl
26818            ! lib/ExtUtils/MM_VMS.pm
26819 ____________________________________________________________________________
26820 [  6115] By: bailey                                on 2000/05/25  03:10:36
26821         Log: Add bounds checking for several strings (Charles Lane)
26822      Branch: vmsperl
26823            ! vms/vms.c
26824 ____________________________________________________________________________
26825 [  6114] By: bailey                                on 2000/05/25  02:25:34
26826         Log: Urk -- undo previous removal of vmsish 'exit' change
26827      Branch: vmsperl
26828            ! vms/ext/vmsish.pm vms/vmsish.h
26829 ____________________________________________________________________________
26830 [  6113] By: bailey                                on 2000/05/24  02:24:40
26831         Log: Ugly workaround for version-specific RTL error
26832      Branch: vmsperl
26833            ! vms/vms.c
26834 ____________________________________________________________________________
26835 [  6112] By: bailey                                on 2000/05/24  02:19:55
26836         Log: Check for existence of file before trying to delete
26837      Branch: vmsperl
26838            ! vms/test.com
26839 ____________________________________________________________________________
26840 [  6111] By: bailey                                on 2000/05/23  23:35:13
26841         Log: Resync with mainline prior to post-5.6.0 updates
26842      Branch: vmsperl
26843           +> (branch 49 files)
26844            - t/lib/thread.t t/op/64bit.t t/op/nothread.t
26845            ! vms/ext/vmsish.pm
26846           !> (integrate 334 files)
26847 ____________________________________________________________________________
26848 [  6110] By: jhi                                   on 2000/05/23  19:28:32
26849         Log: todo tweak
26850      Branch: cfgperl
26851            ! Todo-5.6
26852 ____________________________________________________________________________
26853 [  6109] By: jhi                                   on 2000/05/18  17:38:54
26854         Log: Integrate with Sarathy.
26855      Branch: cfgperl
26856           !> mg.c perl.h win32/perlhost.h
26857 ____________________________________________________________________________
26858 [  6108] By: gsar                                  on 2000/05/17  02:24:56
26859         Log: reenable fake signal handling on Windows, bugs and all
26860      Branch: perl
26861            ! mg.c perl.h win32/perlhost.h
26862 ____________________________________________________________________________
26863 [  6107] By: jhi                                   on 2000/05/15  18:01:41
26864         Log: Tweak the todo list.
26865      Branch: cfgperl
26866            ! Todo-5.6
26867 ____________________________________________________________________________
26868 [  6106] By: jhi                                   on 2000/05/15  13:41:48
26869         Log: The (Configure) script refuses to go on, after asking for
26870              'You may also choose to try maximal 64-bitness....'.
26871              If answer is yes the script can't find the 'workshoplibpth.cbu' file.
26872              -- Patrick Zima
26873              p5p Message-Id: <200005151108.NAA19733@pc026991.otn.lm.dasa.de> 
26874      Branch: cfgperl
26875            ! hints/solaris_2.sh
26876 ____________________________________________________________________________
26877 [  6105] By: jhi                                   on 2000/05/11  14:37:43
26878         Log: Integrate with Sarathy.
26879      Branch: cfgperl
26880           !> embed.h embed.pl global.sym makedef.pl objXSUB.h perl.c
26881           !> perlapi.c pod/perlapi.pod proto.h win32/win32.c
26882 ____________________________________________________________________________
26883 [  6104] By: gsar                                  on 2000/05/11  03:39:07
26884         Log: PL_sys_intern was being initialized too late on windows
26885      Branch: perl
26886            ! embed.h embed.pl global.sym makedef.pl objXSUB.h perl.c
26887            ! perlapi.c pod/perlapi.pod proto.h win32/win32.c
26888 ____________________________________________________________________________
26889 [  6103] By: jhi                                   on 2000/05/09  19:42:20
26890         Log: Test tweaking for Unicos continues.
26891      Branch: cfgperl
26892            ! t/op/64bitint.t
26893 ____________________________________________________________________________
26894 [  6102] By: jhi                                   on 2000/05/09  16:47:27
26895         Log: The test suite tweak in #6101 wasn't quite right.
26896      Branch: cfgperl
26897            ! t/lib/complex.t
26898 ____________________________________________________________________________
26899 [  6101] By: jhi                                   on 2000/05/09  15:35:34
26900         Log: Hints and test tweaks for Unicos.
26901      Branch: cfgperl
26902            ! hints/unicos.sh t/lib/b.t t/lib/complex.t t/op/64bitint.t
26903 ____________________________________________________________________________
26904 [  6100] By: jhi                                   on 2000/05/08  21:15:06
26905         Log: More compilation tweakery from Allen Smith.
26906      Branch: cfgperl
26907            ! hints/irix_6.sh
26908 ____________________________________________________________________________
26909 [  6099] By: jhi                                   on 2000/05/08  19:21:18
26910         Log: Tweaks for the cc bugs from Allen Smith.
26911      Branch: cfgperl
26912            ! hints/irix_6.sh
26913 ____________________________________________________________________________
26914 [  6098] By: jhi                                   on 2000/05/08  19:13:37
26915         Log: Add a note about other, yet unsupported, shadow password APIs.
26916      Branch: cfgperl
26917            ! pp_sys.c
26918 ____________________________________________________________________________
26919 [  6097] By: jhi                                   on 2000/05/08  18:46:34
26920         Log: Add a note about possible compilation problems from Allen Smith.
26921      Branch: cfgperl
26922            ! hints/irix_6.sh
26923 ____________________________________________________________________________
26924 [  6096] By: jhi                                   on 2000/05/08  17:33:10
26925         Log: Integrate with Sarathy.
26926      Branch: cfgperl
26927           !> README.cygwin cygwin/Makefile.SHs cygwin/cygwin.c
26928           !> hints/cygwin.sh pp_sys.c sv.c win32/perlhost.h
26929 ____________________________________________________________________________
26930 [  6095] By: jhi                                   on 2000/05/08  16:21:33
26931         Log: Introduce NV_PRESERVED_BITS.  Not yet used anywhere but
26932              might be useful in future.
26933      Branch: cfgperl
26934            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
26935            ! config_h.SH
26936      Branch: metaconfig
26937            ! U/installdirs/inc_version_list.U
26938      Branch: metaconfig/U/perl
26939            ! perlxv.U
26940 ____________________________________________________________________________
26941 [  6094] By: gsar                                  on 2000/05/08  14:22:22
26942         Log: cygwin update (from Eric Fifer <efifer@sanwaint.com>)
26943      Branch: perl
26944            ! README.cygwin cygwin/Makefile.SHs cygwin/cygwin.c
26945            ! hints/cygwin.sh pp_sys.c
26946 ____________________________________________________________________________
26947 [  6093] By: gsar                                  on 2000/05/08  12:52:28
26948         Log: fork() failure to create pseudo process sets errno=EAGAIN and returns
26949              undef on windows (from Clinton Pierce <clintp@geeksalad.org>)
26950      Branch: perl
26951            ! pp_sys.c sv.c win32/perlhost.h
26952 ____________________________________________________________________________
26953 [  6092] By: jhi                                   on 2000/05/07  22:40:34
26954         Log: Regen perltoc with the fixed buildtoc.
26955      Branch: cfgperl
26956            ! pod/perltoc.pod
26957 ____________________________________________________________________________
26958 [  6091] By: jhi                                   on 2000/05/07  22:24:16
26959         Log: Integrate with Sarathy.
26960      Branch: cfgperl
26961           !> perl.c pod/buildtoc pp.c pp_hot.c sv.c t/op/quotemeta.t
26962           !> t/op/substr.t toke.c
26963 ____________________________________________________________________________
26964 [  6090] By: gsar                                  on 2000/05/07  19:47:07
26965         Log: concat doesn't preserve utf8-ness, and doesn't invalidate
26966              [NI]OK; added tests for both
26967      Branch: perl
26968            ! perl.c pp_hot.c sv.c t/op/substr.t
26969 ____________________________________________________________________________
26970 [  6089] By: gsar                                  on 2000/05/07  18:18:38
26971         Log: buildtoc tweak to fix newline lossage
26972      Branch: perl
26973            ! pod/buildtoc
26974 ____________________________________________________________________________
26975 [  6088] By: jhi                                   on 2000/05/07  16:35:36
26976         Log: Remove HAS_SETSPENT, HAS_GETSPENT, HAS_ENDSPENT,
26977              because we do not use those.  The HAS_GETSPNAM remains,
26978              though, because we still do use that.
26979      Branch: cfgperl
26980            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
26981            ! config_h.SH epoc/config.sh hints/machten.sh pod/perltoc.pod
26982            ! pp_sys.c vms/subconfigure.com vos/config.def vos/config.h
26983            ! vos/config_h.SH_orig win32/config.bc win32/config.gc
26984            ! win32/config.vc win32/config_H.bc win32/config_H.gc
26985            ! win32/config_H.vc win32/config_h.PL win32/config_sh.PL
26986 ____________________________________________________________________________
26987 [  6087] By: gsar                                  on 2000/05/07  16:05:16
26988         Log: reverse() and quotemeta() weren't preserving utf8-ness; add tests
26989      Branch: perl
26990            ! pp.c sv.c t/op/quotemeta.t t/op/substr.t toke.c
26991 ____________________________________________________________________________
26992 [  6086] By: jhi                                   on 2000/05/07  15:27:07
26993         Log: Integrate with Sarathy.
26994      Branch: cfgperl
26995           +> lib/File/Temp.pm t/lib/ftmp-mktemp.t t/lib/ftmp-posix.t
26996           +> t/lib/ftmp-security.t t/lib/ftmp-tempfile.t
26997           !> AUTHORS MAINTAIN MANIFEST iperlsys.h lib/Carp/Heavy.pm
26998           !> lib/diagnostics.pm pod/perlfunc.pod pod/perlrun.pod
26999           !> pod/perltie.pod pp.c t/lib/peek.t t/op/substr.t
27000           !> utils/perlbug.PL vms/vms.c vms/vmsish.h
27001 ____________________________________________________________________________
27002 [  6085] By: gsar                                  on 2000/05/07  05:52:02
27003         Log: repeat operator (x) doesn't preserve utf8-ness
27004      Branch: perl
27005            ! pp.c t/op/substr.t
27006 ____________________________________________________________________________
27007 [  6084] By: gsar                                  on 2000/05/07  05:39:55
27008         Log: substr() does not preserve utf8-ness (from Stefan Eissing
27009              <Eissing@medicaldataservice.de>); added tests
27010      Branch: perl
27011            ! pp.c t/op/substr.t
27012 ____________________________________________________________________________
27013 [  6083] By: gsar                                  on 2000/05/07  05:24:46
27014         Log: note about undocumented caller() return value (from M.J.T. Guy);
27015              yet another peek.t tweak
27016      Branch: perl
27017            ! pod/perlfunc.pod t/lib/peek.t
27018 ____________________________________________________________________________
27019 [  6082] By: gsar                                  on 2000/05/07  05:08:40
27020         Log: peek.t non-portable to ithreads
27021      Branch: perl
27022            ! t/lib/peek.t
27023 ____________________________________________________________________________
27024 [  6081] By: gsar                                  on 2000/05/07  04:17:04
27025         Log: better default perlbug categories for ok reports (from Richard Foley)
27026      Branch: perl
27027            ! utils/perlbug.PL
27028 ____________________________________________________________________________
27029 [  6080] By: gsar                                  on 2000/05/07  04:08:07
27030         Log: add File::Temp v0.08 from CPAN, with small tweaks to testsuite
27031              (from Tim Jenness <t.jenness@jach.hawaii.edu>)
27032      Branch: perl
27033            + lib/File/Temp.pm t/lib/ftmp-mktemp.t t/lib/ftmp-posix.t
27034            + t/lib/ftmp-security.t t/lib/ftmp-tempfile.t
27035            ! AUTHORS MAINTAIN MANIFEST
27036 ____________________________________________________________________________
27037 [  6079] By: gsar                                  on 2000/05/07  04:01:38
27038         Log: remove outdated kludge in Carp (NULLs are permitted in diagnostics now)
27039      Branch: perl
27040            ! lib/Carp/Heavy.pm
27041 ____________________________________________________________________________
27042 [  6078] By: gsar                                  on 2000/05/07  01:24:19
27043         Log: workaround for CRT bug in chdir() (from Charles Lane, via
27044              Peter Prymmer)
27045      Branch: perl
27046            ! iperlsys.h vms/vms.c vms/vmsish.h
27047 ____________________________________________________________________________
27048 [  6077] By: gsar                                  on 2000/05/07  01:22:23
27049         Log: avoid warnings in diagnostics.pm; pod tweaks (from Peter Prymmer
27050              and Tom Phoenix)
27051      Branch: perl
27052            ! lib/diagnostics.pm pod/perlrun.pod pod/perltie.pod
27053 ____________________________________________________________________________
27054 [  6076] By: gsar                                  on 2000/05/06  17:36:29
27055         Log: integrate cfgperl contents into mainline
27056      Branch: perl
27057           +> t/lib/peek.t
27058           !> Configure MANIFEST Porting/Glossary Porting/config.sh
27059           !> Porting/config_H config_h.SH ext/POSIX/POSIX.xs
27060           !> hints/unicos.sh lib/Math/Complex.pm pp_sys.c sv.c
27061           !> t/lib/complex.t t/op/grent.t t/op/pwent.t toke.c util.c
27062 ____________________________________________________________________________
27063 [  6075] By: jhi                                   on 2000/05/05  18:56:10
27064         Log: Make the test more portable.
27065      Branch: cfgperl
27066            ! t/lib/peek.t
27067 ____________________________________________________________________________
27068 [  6074] By: jhi                                   on 2000/05/05  18:49:20
27069         Log: Introduce t/lib/peek.t.
27070      Branch: cfgperl
27071            + t/lib/peek.t
27072            ! MANIFEST
27073 ____________________________________________________________________________
27074 [  6073] By: jhi                                   on 2000/05/05  14:30:45
27075         Log: Complex tweaks.
27076      Branch: cfgperl
27077            ! lib/Math/Complex.pm t/lib/complex.t
27078 ____________________________________________________________________________
27079 [  6072] By: jhi                                   on 2000/05/05  12:27:13
27080         Log: Integrate with Sarathy.
27081      Branch: cfgperl
27082           !> lib/ExtUtils/MM_Unix.pm lib/ExtUtils/MM_Win32.pm
27083           !> lib/File/Spec.pm lib/File/Spec/Mac.pm lib/File/Spec/Unix.pm
27084           !> lib/File/Spec/VMS.pm lib/File/Spec/Win32.pm perl.c
27085           !> pod/perlfunc.pod t/lib/anydbm.t win32/win32.c
27086 ____________________________________________________________________________
27087 [  6071] By: gsar                                  on 2000/05/05  02:24:46
27088         Log: misformatted perllocal.pod (from Tim Jenness
27089              <t.jenness@jach.hawaii.edu>)
27090      Branch: perl
27091            ! lib/ExtUtils/MM_Unix.pm lib/ExtUtils/MM_Win32.pm
27092 ____________________________________________________________________________
27093 [  6070] By: gsar                                  on 2000/05/05  02:16:52
27094         Log: remove misleading comment (from M.J.T. Guy)
27095      Branch: perl
27096            ! t/lib/anydbm.t
27097 ____________________________________________________________________________
27098 [  6069] By: gsar                                  on 2000/05/05  02:15:13
27099         Log: File::Spec compatibility update (from Barrie Slaymaker
27100              <barries@slaysys.com>)
27101      Branch: perl
27102            ! lib/File/Spec.pm lib/File/Spec/Mac.pm lib/File/Spec/Unix.pm
27103            ! lib/File/Spec/VMS.pm lib/File/Spec/Win32.pm
27104 ____________________________________________________________________________
27105 [  6068] By: gsar                                  on 2000/05/05  02:01:50
27106         Log: note about values()
27107      Branch: perl
27108            ! pod/perlfunc.pod
27109 ____________________________________________________________________________
27110 [  6067] By: gsar                                  on 2000/05/05  01:33:09
27111         Log: replace direct call to sighandler() with (*PL_sighandlerp)()
27112      Branch: perl
27113            ! win32/win32.c
27114 ____________________________________________________________________________
27115 [  6066] By: gsar                                  on 2000/05/05  01:23:43
27116         Log: s/END/CHECK/
27117      Branch: perl
27118            ! perl.c
27119 ____________________________________________________________________________
27120 [  6065] By: jhi                                   on 2000/05/04  17:30:22
27121         Log: Integrate with Sarathy.
27122      Branch: cfgperl
27123           !> pp_sys.c sv.c t/pragma/utf8.t toke.c
27124 ____________________________________________________________________________
27125 [  6064] By: gsar                                  on 2000/05/04  17:26:14
27126         Log: change#5905 wasn't quite right--it's intent only applies when arguments
27127              to sv_vcatpvfn() are SVs instead of C types; back out change#5907 as well
27128      Branch: perl
27129            ! pp_sys.c sv.c
27130 ____________________________________________________________________________
27131 [  6063] By: gsar                                  on 2000/05/04  16:52:29
27132         Log: tokeq() could read unallocated field in argument
27133      Branch: perl
27134            ! toke.c
27135 ____________________________________________________________________________
27136 [  6062] By: gsar                                  on 2000/05/04  16:34:51
27137         Log: additional tests for utf8.t
27138      Branch: perl
27139            ! t/pragma/utf8.t
27140 ____________________________________________________________________________
27141 [  6061] By: gsar                                  on 2000/05/04  16:09:28
27142         Log: change#5921 neglected to make eq honor "use bytes"
27143      Branch: perl
27144            ! sv.c
27145 ____________________________________________________________________________
27146 [  6060] By: jhi                                   on 2000/05/04  15:30:16
27147         Log: Integrate with Sarathy.
27148      Branch: cfgperl
27149           !> perl.c regcomp.c t/pragma/utf8.t
27150 ____________________________________________________________________________
27151 [  6059] By: jhi                                   on 2000/05/04  15:26:37
27152         Log: The logic of choosing strtol/strtoul/strtoll/strtoull was wrong
27153              in natively 64-bit platforms where a long is a quad (no need
27154              for long longs).  Also added bias for IVs.
27155      Branch: cfgperl
27156            ! toke.c
27157 ____________________________________________________________________________
27158 [  6058] By: gsar                                  on 2000/05/04  00:19:14
27159         Log: printf(...) should be PerlIO_printf(PerlIO_stdout(), ...)
27160              (spotted by Donald Kinzer <dkinzer@premia.com>)
27161      Branch: perl
27162            ! perl.c
27163 ____________________________________________________________________________
27164 [  6057] By: gsar                                  on 2000/05/03  18:34:01
27165         Log: fix broken parsing of /\x{ab}/
27166      Branch: perl
27167            ! regcomp.c t/pragma/utf8.t
27168 ____________________________________________________________________________
27169 [  6056] By: jhi                                   on 2000/05/03  17:57:16
27170         Log: The search of infinity continues, this time simplified.
27171      Branch: cfgperl
27172            ! lib/Math/Complex.pm
27173 ____________________________________________________________________________
27174 [  6055] By: jhi                                   on 2000/05/03  17:45:30
27175         Log: Detypo.
27176      Branch: cfgperl
27177            ! hints/unicos.sh
27178 ____________________________________________________________________________
27179 [  6054] By: jhi                                   on 2000/05/02  22:28:27
27180         Log: Be more forgiving in POSIX about HUGE_VALL.
27181      Branch: cfgperl
27182            ! ext/POSIX/POSIX.xs
27183 ____________________________________________________________________________
27184 [  6053] By: jhi                                   on 2000/05/02  22:25:05
27185         Log: Integrate with Sarathy.
27186      Branch: cfgperl
27187           !> hints/irix_6.sh pod/perlop.pod
27188 ____________________________________________________________________________
27189 [  6052] By: jhi                                   on 2000/05/02  22:24:31
27190         Log: Unicos hint tweak.
27191      Branch: cfgperl
27192            ! hints/unicos.sh
27193 ____________________________________________________________________________
27194 [  6051] By: jhi                                   on 2000/05/02  22:21:26
27195         Log: Complex tweakery.
27196      Branch: cfgperl
27197            ! lib/Math/Complex.pm t/lib/complex.t
27198 ____________________________________________________________________________
27199 [  6050] By: jhi                                   on 2000/05/02  19:26:22
27200         Log: Use setxxent()/endxxent().
27201      Branch: cfgperl
27202            ! t/op/grent.t t/op/pwent.t
27203 ____________________________________________________________________________
27204 [  6049] By: jhi                                   on 2000/05/02  19:06:02
27205         Log: Test both the scalar and list contexts.
27206      Branch: cfgperl
27207            ! t/op/grent.t t/op/pwent.t
27208 ____________________________________________________________________________
27209 [  6048] By: gsar                                  on 2000/05/02  18:29:10
27210         Log: add note about how $( doesn't interpolate in REs (from
27211              Philip Newton <newton@ficus.frogspace.net>)
27212      Branch: perl
27213            ! pod/perlop.pod
27214 ____________________________________________________________________________
27215 [  6047] By: jhi                                   on 2000/05/02  17:41:24
27216         Log: Call getspnam() only iff needd.
27217      Branch: cfgperl
27218            ! pp_sys.c
27219 ____________________________________________________________________________
27220 [  6046] By: gsar                                  on 2000/05/02  17:07:25
27221         Log: libscheck has insufficient checks for n32 libs (from
27222              Albert Chin-A-Young <china@thewrittenword.com>)
27223      Branch: perl
27224            ! hints/irix_6.sh
27225 ____________________________________________________________________________
27226 [  6045] By: jhi                                   on 2000/05/02  13:57:17
27227         Log: Integrate with Sarathy.
27228      Branch: cfgperl
27229           !> MANIFEST Porting/makerel perl.c pod/perlretut.pod
27230           !> pod/perltrap.pod pp.c regcomp.c t/op/oct.t toke.c util.c
27231 ____________________________________________________________________________
27232 [  6044] By: gsar                                  on 2000/05/02  06:48:19
27233         Log: change#3798 broke the meaning of "\0_7_7", tr/\0_// etc.; fix it
27234              such that underscores are only ignored in literal numbers,
27235              "\x{...}", and hex/oct argument
27236      Branch: perl
27237            ! perl.c pp.c regcomp.c t/op/oct.t toke.c util.c
27238 ____________________________________________________________________________
27239 [  6043] By: gsar                                  on 2000/05/02  02:22:29
27240         Log: perlretut revisions (from Mark Kvale <kvale@phy.ucsf.edu>)
27241      Branch: perl
27242            ! pod/perlretut.pod
27243 ____________________________________________________________________________
27244 [  6042] By: gsar                                  on 2000/05/02  02:17:51
27245         Log: remove outdated perltrap entry (from Peter Scott <Peter@PSDT.com>)
27246      Branch: perl
27247            ! pod/perltrap.pod
27248 ____________________________________________________________________________
27249 [  6041] By: gsar                                  on 2000/05/02  01:53:51
27250         Log: cpio 2.4.2 on Linux creates directories in 0700 mode, adjust makerel
27251              to compensate
27252      Branch: perl
27253            ! Porting/makerel
27254 ____________________________________________________________________________
27255 [  6040] By: gsar                                  on 2000/05/02  01:51:57
27256         Log: missing files in MANIFEST
27257      Branch: perl
27258            ! MANIFEST
27259 ____________________________________________________________________________
27260 [  6039] By: jhi                                   on 2000/05/02  00:36:46
27261         Log: Infinite problems.
27262      Branch: cfgperl
27263            ! lib/Math/Complex.pm
27264 ____________________________________________________________________________
27265 [  6038] By: jhi                                   on 2000/05/02  00:06:38
27266         Log: pwent/spent #ifdef imbalance.
27267      Branch: cfgperl
27268            ! pp_sys.c
27269 ____________________________________________________________________________
27270 [  6037] By: jhi                                   on 2000/05/01  22:50:11
27271         Log: Use HUGE_VALL if applicable.
27272      Branch: cfgperl
27273            ! ext/POSIX/POSIX.xs util.c
27274 ____________________________________________________________________________
27275 [  6036] By: jhi                                   on 2000/05/01  22:20:53
27276         Log: Correct Freudian slip.
27277      Branch: cfgperl
27278            ! pp_sys.c
27279 ____________________________________________________________________________
27280 [  6035] By: jhi                                   on 2000/05/01  21:07:38
27281         Log: Continue on the pwent/spent case.
27282      Branch: cfgperl
27283            ! pp_sys.c
27284 ____________________________________________________________________________
27285 [  6034] By: jhi                                   on 2000/05/01  17:45:14
27286         Log: Integrate with Sarathy; unfortunately Sarathy's whitespace
27287              adjustments in 6032 conflicted badly with this, will have
27288              to revisit them later.
27289      Branch: cfgperl
27290           +> lib/CGI/Util.pm t/lib/cgi-pretty.t
27291           !> MANIFEST lib/CGI.pm lib/CGI/Carp.pm lib/CGI/Cookie.pm
27292           !> lib/CGI/Pretty.pm lib/CGI/Push.pm lib/English.pm
27293           !> lib/Pod/Man.pm lib/Pod/Text.pm lib/diagnostics.pm
27294           !> pod/perldiag.pod pod/perlvar.pod pp_sys.c t/lib/cgi-function.t
27295           !> t/lib/cgi-html.t t/lib/cgi-request.t
27296 ____________________________________________________________________________
27297 [  6033] By: jhi                                   on 2000/05/01  17:40:49
27298         Log: Rewrite the pwent/spent logic to be a little bit more clearer.
27299      Branch: cfgperl
27300            ! pp_sys.c
27301 ____________________________________________________________________________
27302 [  6032] By: gsar                                  on 2000/05/01  15:56:32
27303         Log: whitespace adjustments
27304      Branch: perl
27305            ! pp_sys.c
27306 ____________________________________________________________________________
27307 [  6031] By: gsar                                  on 2000/05/01  15:19:41
27308         Log: small nits in diagnostics.pm (from Robin Barker)
27309      Branch: perl
27310            ! lib/diagnostics.pm pod/perldiag.pod
27311 ____________________________________________________________________________
27312 [  6030] By: gsar                                  on 2000/05/01  08:39:18
27313         Log: introduce @LAST_MATCH_START and @LAST_MATCH_END, English aliases
27314              for @- and @+ (from Johan Vromans)
27315      Branch: perl
27316            ! lib/English.pm pod/perlvar.pod
27317 ____________________________________________________________________________
27318 [  6029] By: gsar                                  on 2000/05/01  08:16:10
27319         Log: add CGI.pm v2.66 (from Lincoln Stein)
27320      Branch: perl
27321            + lib/CGI/Util.pm t/lib/cgi-pretty.t
27322            ! MANIFEST lib/CGI.pm lib/CGI/Carp.pm lib/CGI/Cookie.pm
27323            ! lib/CGI/Pretty.pm lib/CGI/Push.pm t/lib/cgi-function.t
27324            ! t/lib/cgi-html.t t/lib/cgi-request.t
27325 ____________________________________________________________________________
27326 [  6028] By: gsar                                  on 2000/05/01  06:34:41
27327         Log: Pod::Man generates groff-incompatible macro definition (from
27328              Tom Christiansen)
27329      Branch: perl
27330            ! lib/Pod/Man.pm
27331 ____________________________________________________________________________
27332 [  6027] By: gsar                                  on 2000/05/01  06:31:36
27333         Log: podlators-1.02 update (from Russ Allbery)
27334      Branch: perl
27335            ! lib/Pod/Man.pm lib/Pod/Text.pm
27336 ____________________________________________________________________________
27337 [  6026] By: jhi                                   on 2000/04/30  23:24:23
27338         Log: Integrate with Sarathy.
27339      Branch: cfgperl
27340           !> README.win32 ext/File/Glob/Glob.pm ext/Sys/Syslog/Syslog.pm
27341           !> ext/Sys/Syslog/Syslog.xs lib/perl5db.pl
27342           !> lib/unicode/Is/Alnum.pl lib/unicode/Is/Alpha.pl
27343           !> lib/unicode/Is/Word.pl lib/unicode/mktables.PL
27344           !> pod/perl56delta.pod sv.c t/lib/b.t t/lib/open3.t
27345           !> t/lib/syslog.t toke.c win32/win32.h
27346 ____________________________________________________________________________
27347 [  6025] By: gsar                                  on 2000/04/30  18:17:47
27348         Log: Is{Alnum,Alpha,Word} don't match titlecase
27349              
27350              TODO: IsSpace is defined recursively!
27351              
27352              (both spotted by Larry)
27353      Branch: perl
27354            ! lib/unicode/Is/Alnum.pl lib/unicode/Is/Alpha.pl
27355            ! lib/unicode/Is/Word.pl lib/unicode/mktables.PL
27356 ____________________________________________________________________________
27357 [  6024] By: gsar                                  on 2000/04/30  17:50:19
27358         Log: extend "Unrecognized escape" warning to \8, \9, and \_ as well
27359              (from Hugo van der Sanden)
27360      Branch: perl
27361            ! toke.c
27362 ____________________________________________________________________________
27363 [  6023] By: gsar                                  on 2000/04/30  17:14:43
27364         Log: debugger stomps on $. (from M.J.T. Guy)
27365      Branch: perl
27366            ! lib/perl5db.pl
27367 ____________________________________________________________________________
27368 [  6022] By: gsar                                  on 2000/04/30  16:59:22
27369         Log: unbalanced LEAVE after perl_clone(...,0) (from Doug MacEachern)
27370      Branch: perl
27371            ! sv.c
27372 ____________________________________________________________________________
27373 [  6021] By: gsar                                  on 2000/04/29  21:00:08
27374         Log: remove Win2K issue in pod (fixed by change#6020)
27375      Branch: perl
27376            ! README.win32 pod/perl56delta.pod
27377 ____________________________________________________________________________
27378 [  6020] By: gsar                                  on 2000/04/29  20:51:49
27379         Log: test tweak
27380      Branch: perl
27381            ! t/lib/open3.t
27382 ____________________________________________________________________________
27383 [  6019] By: gsar                                  on 2000/04/29  20:34:27
27384         Log: windows portability tweaks
27385      Branch: perl
27386            ! t/lib/b.t win32/win32.h
27387 ____________________________________________________________________________
27388 [  6018] By: gsar                                  on 2000/04/29  19:55:24
27389         Log: make lib/syslog.t portable to systems that don't have _PATH_LOG,
27390              make _PATH_LOG() return "" if unavailable
27391      Branch: perl
27392            ! ext/File/Glob/Glob.pm ext/Sys/Syslog/Syslog.pm
27393            ! ext/Sys/Syslog/Syslog.xs t/lib/syslog.t
27394 ____________________________________________________________________________
27395 [  6017] By: jhi                                   on 2000/04/28  22:49:46
27396         Log: Integrate with Sarathy.
27397      Branch: cfgperl
27398           !> op.c perl.c pod/perldiag.pod t/lib/b.t
27399 ____________________________________________________________________________
27400 [  6016] By: jhi                                   on 2000/04/28  22:46:14
27401         Log: Do not warn that an infinity does not look like a number.
27402      Branch: cfgperl
27403            ! sv.c
27404 ____________________________________________________________________________
27405 [  6015] By: gsar                                  on 2000/04/28  22:35:49
27406         Log: tweak test for portability
27407      Branch: perl
27408            ! t/lib/b.t
27409 ____________________________________________________________________________
27410 [  6014] By: gsar                                  on 2000/04/28  22:05:31
27411         Log: glob() loading File::Glob behind the scenes may cause syntax errors
27412      Branch: perl
27413            ! op.c
27414 ____________________________________________________________________________
27415 [  6013] By: gsar                                  on 2000/04/28  21:25:22
27416         Log: tweak change#5945 to display correct switch name in diagnostic
27417      Branch: perl
27418            ! perl.c pod/perldiag.pod
27419 ____________________________________________________________________________
27420 [  6012] By: jhi                                   on 2000/04/28  21:08:12
27421         Log: Integrate with Sarathy.
27422      Branch: cfgperl
27423           !> Changes ext/IO/lib/IO/Poll.pm installperl pod/perl56delta.pod
27424           !> pod/perldelta.pod pod/perlfunc.pod pod/perlmod.pod
27425           !> t/lib/io_poll.t utils/perldoc.PL vms/subconfigure.com
27426 ____________________________________________________________________________
27427 [  6011] By: jhi                                   on 2000/04/28  21:04:46
27428         Log: &HUGE_VAL is not defined, it exists.
27429      Branch: cfgperl
27430            ! lib/Math/Complex.pm
27431 ____________________________________________________________________________
27432 [  6010] By: gsar                                  on 2000/04/28  21:02:58
27433         Log: clarify note about shadow password support (from
27434              gellyfish@gellyfish.com)
27435      Branch: perl
27436            ! pod/perlfunc.pod
27437 ____________________________________________________________________________
27438 [  6009] By: gsar                                  on 2000/04/28  21:00:00
27439         Log: IO::Poll bugs fixed (from Lincoln Stein <lstein@cshl.org>)
27440      Branch: perl
27441            ! ext/IO/lib/IO/Poll.pm t/lib/io_poll.t
27442 ____________________________________________________________________________
27443 [  6008] By: gsar                                  on 2000/04/28  20:56:33
27444         Log: VMS config tweak (from Craig A. Berry <craig.berry@metamorgs.com>)
27445      Branch: perl
27446            ! installperl vms/subconfigure.com
27447 ____________________________________________________________________________
27448 [  6007] By: gsar                                  on 2000/04/28  20:51:21
27449         Log: note about compile failures and END blocks (from M.J.T. Guy)
27450      Branch: perl
27451            ! pod/perl56delta.pod pod/perlmod.pod
27452 ____________________________________________________________________________
27453 [  6006] By: jhi                                   on 2000/04/28  20:42:14
27454         Log: Regen Configure.
27455      Branch: cfgperl
27456            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
27457            ! config_h.SH
27458 ____________________________________________________________________________
27459 [  6005] By: gsar                                  on 2000/04/28  20:41:16
27460         Log: perldoc might fail via "use blib" (from Hugo van der Sanden)
27461      Branch: perl
27462            ! utils/perldoc.PL
27463 ____________________________________________________________________________
27464 [  6004] By: jhi                                   on 2000/04/28  20:28:21
27465         Log: Integrate with Sarathy.
27466      Branch: cfgperl
27467           !> Configure INSTALL Porting/Glossary Porting/config.sh
27468           !> Porting/config_H config_h.SH epoc/config.sh perl.c sv.c
27469           !> t/pragma/warn/toke toke.c vms/subconfigure.com vos/config.def
27470           !> vos/config_h.SH_orig win32/config.bc win32/config.gc
27471           !> win32/config.vc win32/win32.c
27472 ____________________________________________________________________________
27473 [  6003] By: gsar                                  on 2000/04/28  20:11:20
27474         Log: allow REG_EXPAND_SZ keys in Windows registry (from
27475              John Clayton <John.Clayton@barclayscapital.com>)
27476      Branch: perl
27477            ! win32/win32.c
27478 ____________________________________________________________________________
27479 [  6002] By: gsar                                  on 2000/04/28  19:34:16
27480         Log: destructive sv_setsv() can lose UV-ness from source, causing
27481              numeric promotions/comparisons to fail to do the right thing
27482      Branch: perl
27483            ! sv.c
27484 ____________________________________________________________________________
27485 [  6001] By: gsar                                  on 2000/04/28  18:44:15
27486         Log: support additional library locations via $Config{otherlibdirs}
27487              (from Andy Dougherty)
27488      Branch: perl
27489            ! Configure INSTALL Porting/Glossary Porting/config.sh
27490            ! Porting/config_H config_h.SH epoc/config.sh perl.c
27491            ! vms/subconfigure.com vos/config.def vos/config_h.SH_orig
27492            ! win32/config.bc win32/config.gc win32/config.vc
27493 ____________________________________________________________________________
27494 [  6000] By: gsar                                  on 2000/04/28  18:26:58
27495         Log: reworked otherlibdirs.U (from Andy Dougherty)
27496      Branch: metaconfig
27497            ! U/installdirs/otherlibdirs.U
27498 ____________________________________________________________________________
27499 [  5999] By: gsar                                  on 2000/04/28  18:17:07
27500         Log: fix line renumbering bug in C<eval qq[#line 10 "X"\nwarn]>
27501      Branch: perl
27502            ! t/pragma/warn/toke toke.c
27503 ____________________________________________________________________________
27504 [  5998] By: jhi                                   on 2000/04/28  13:32:17
27505         Log: Try to get "Inf" by using &POSIX::HUGE_VAL in sprintf.
27506      Branch: cfgperl
27507            ! lib/Math/Complex.pm
27508 ____________________________________________________________________________
27509 [  5997] By: jhi                                   on 2000/04/28  13:14:04
27510         Log: Preserve $!.
27511      Branch: cfgperl
27512            ! lib/Math/Complex.pm
27513 ____________________________________________________________________________
27514 [  5996] By: jhi                                   on 2000/04/28  12:59:23
27515         Log: Integrate with Sarathy.
27516      Branch: cfgperl
27517           +> pod/perlrequick.pod pod/perlretut.pod
27518           !> (integrate 51 files)
27519 ____________________________________________________________________________
27520 [  5995] By: gsar                                  on 2000/04/28  09:37:36
27521         Log: fixes for bugs in C<use warnings qw(FATAL all)> (from Paul Marquess)
27522      Branch: perl
27523            ! mg.c t/pragma/warn/7fatal warnings.h warnings.pl
27524 ____________________________________________________________________________
27525 [  5994] By: gsar                                  on 2000/04/28  09:33:26
27526         Log: fix for missed accounting for null byte in pack("Z",...) (from
27527              M.J.T. Guy)
27528      Branch: perl
27529            ! pp.c t/op/pack.t
27530 ____________________________________________________________________________
27531 [  5993] By: gsar                                  on 2000/04/28  09:30:05
27532         Log: various minor tweaks seen on p5p
27533      Branch: perl
27534            ! lib/perl5db.pl pod/perlipc.pod pod/perlvar.pod
27535 ____________________________________________________________________________
27536 [  5992] By: gsar                                  on 2000/04/28  09:08:19
27537         Log: pod nit (from Simon Cozens)
27538      Branch: perl
27539            ! pod/perlop.pod
27540 ____________________________________________________________________________
27541 [  5991] By: gsar                                  on 2000/04/28  09:06:36
27542         Log: posix-bc patches (from Dorner Thomas <Thomas.Dorner@start.de>)
27543      Branch: perl
27544            ! README.posix-bc hints/posix-bc.sh
27545 ____________________________________________________________________________
27546 [  5990] By: gsar                                  on 2000/04/28  08:54:52
27547         Log: use $ENV{LIB} to search for libs under Visual C compiler
27548              on Windows (from Jochen Wiedmann <joe@ispsoft.de>)
27549      Branch: perl
27550            ! lib/ExtUtils/Liblist.pm
27551 ____________________________________________________________________________
27552 [  5989] By: gsar                                  on 2000/04/28  08:27:12
27553         Log: qw(a\\b) must be parsed like 'a\\b', i.e., backslash escapes
27554              itself and no other (from Tom Hughes)
27555      Branch: perl
27556            ! t/op/array.t toke.c
27557 ____________________________________________________________________________
27558 [  5988] By: gsar                                  on 2000/04/28  08:01:38
27559         Log: s/HTMLSCRIPTPOD/HTMLSCRIPTPODS/ (from Paul Sharpe
27560              <paul@miraclefish.com>)
27561      Branch: perl
27562            ! lib/ExtUtils/MakeMaker.pm
27563 ____________________________________________________________________________
27564 [  5987] By: gsar                                  on 2000/04/28  07:53:09
27565         Log: B::Bytecode tweaks (from Simon Cozens <simon@brecon.co.uk>)
27566      Branch: perl
27567            ! ext/B/B/Bytecode.pm ext/B/B/Disassembler.pm
27568 ____________________________________________________________________________
27569 [  5986] By: gsar                                  on 2000/04/28  07:44:17
27570         Log: add regular expressions tutorial and quick-start guide (from
27571              Mark Kvale <kvale@phy.ucsf.edu>)
27572      Branch: perl
27573            + pod/perlrequick.pod pod/perlretut.pod
27574            ! AUTHORS MAINTAIN MANIFEST
27575 ____________________________________________________________________________
27576 [  5985] By: gsar                                  on 2000/04/28  07:30:28
27577         Log: forked child may not exit correctly if it failed to open
27578              /dev/console (from Graham Barr)
27579      Branch: perl
27580            ! ext/Sys/Syslog/Syslog.pm
27581 ____________________________________________________________________________
27582 [  5984] By: gsar                                  on 2000/04/28  07:27:20
27583         Log: attributes::reftype() doesn't work on tied argument
27584      Branch: perl
27585            ! xsutils.c
27586 ____________________________________________________________________________
27587 [  5983] By: gsar                                  on 2000/04/28  07:15:04
27588         Log: numeric conversion of non-number in change#3378 tramples on
27589              OOK offset, causing segfaults
27590      Branch: perl
27591            ! sv.c
27592 ____________________________________________________________________________
27593 [  5982] By: gsar                                  on 2000/04/28  04:48:25
27594         Log: avoid error in IO::Socket::INET when given an unknown service name
27595              with a port number (from Brian Raven <brianr@ssprdmh01.liffe.com>)
27596      Branch: perl
27597            ! ext/IO/lib/IO/Socket/INET.pm
27598 ____________________________________________________________________________
27599 [  5981] By: gsar                                  on 2000/04/28  04:31:31
27600         Log: rename File::Glob::glob() to File::Glob::bsd_glob() to avoid
27601              prototype mismatch with CORE::glob(); update pod and tests to
27602              suit (File::Glob::glob() is still available for backward
27603              compatibility, but should be considered deprecated)
27604      Branch: perl
27605            ! ext/File/Glob/Glob.pm t/lib/glob-basic.t t/lib/glob-case.t
27606            ! t/lib/glob-taint.t
27607 ____________________________________________________________________________
27608 [  5980] By: gsar                                  on 2000/04/28  03:47:29
27609         Log: allow Configure -S to run non-interactively (spotted by Greg Hudson
27610              <ghudson@mit.edu>)
27611      Branch: metaconfig
27612            ! U/modified/Options.U
27613      Branch: perl
27614            ! Configure
27615 ____________________________________________________________________________
27616 [  5979] By: gsar                                  on 2000/04/28  03:07:54
27617         Log: under useithreads, constant pad entries could inadvertantly be
27618              shared across threads (from Eric Blood <eblood@xmission.com>);
27619              added Eric's test case to testsuite
27620      Branch: perl
27621            ! op.c t/op/misc.t
27622 ____________________________________________________________________________
27623 [  5978] By: gsar                                  on 2000/04/27  21:13:00
27624         Log: sync version numbers in File::Spec with the ones on CPAN
27625              (from Barrie Slaymaker)
27626      Branch: perl
27627            ! lib/File/Spec/Functions.pm lib/File/Spec/Mac.pm
27628            ! lib/File/Spec/OS2.pm lib/File/Spec/Unix.pm
27629            ! lib/File/Spec/VMS.pm lib/File/Spec/Win32.pm
27630 ____________________________________________________________________________
27631 [  5977] By: gsar                                  on 2000/04/27  21:07:29
27632         Log: autoquote barewords followed by newline and arrow properly
27633              (variant of fix suggested by Rick Delaney and M.J.T. Guy)
27634      Branch: perl
27635            ! t/pragma/warn/toke toke.c
27636 ____________________________________________________________________________
27637 [  5976] By: gsar                                  on 2000/04/27  20:41:20
27638         Log: DB_File v1.73 update (from Paul Marquess)
27639      Branch: perl
27640            ! ext/DB_File/Changes ext/DB_File/DB_File.pm
27641            ! ext/DB_File/DB_File.xs ext/DB_File/version.c
27642 ____________________________________________________________________________
27643 [  5975] By: gsar                                  on 2000/04/27  20:34:24
27644         Log: allow sort() reentrancy (variant of patch suggested by
27645              Hugo van der Sanden)
27646      Branch: perl
27647            ! pp_ctl.c t/op/sort.t
27648 ____________________________________________________________________________
27649 [  5974] By: gsar                                  on 2000/04/27  19:46:57
27650         Log: change#4197 somehow missed initializing PL_errors, meaning
27651              sytax error queueing wasn't working outside eval"" at all;
27652              also fixed eval"" to localize PL_error_count, so that compile-time
27653              eval's don't clobber the error state of the outer context
27654      Branch: perl
27655            ! lib/Math/Complex.pm perl.c pp_ctl.c t/pragma/warn/op
27656            ! t/pragma/warn/toke
27657 ____________________________________________________________________________
27658 [  5973] By: gsar                                  on 2000/04/27  18:29:05
27659         Log: fix for failure to match $foo =~ /(?i)/ (from Ilya Zakharevich)
27660      Branch: perl
27661            ! regcomp.c regexec.c t/op/re_tests
27662 ____________________________________________________________________________
27663 [  5972] By: jhi                                   on 2000/04/27  18:22:41
27664         Log: Integrate with Sarathy.
27665      Branch: cfgperl
27666           +> t/lib/b.t t/lib/syslog.t
27667           !> (integrate 31 files)
27668 ____________________________________________________________________________
27669 [  5971] By: jhi                                   on 2000/04/27  18:18:46
27670         Log: Unicos tweaks from Mark P. Lutz.
27671      Branch: cfgperl
27672            ! hints/unicos.sh lib/Math/Complex.pm
27673 ____________________________________________________________________________
27674 [  5970] By: gsar                                  on 2000/04/27  18:05:11
27675         Log: Data::Dumper fumbles negative numbers on 32-bit platforms where
27676              IV is >32bits
27677      Branch: perl
27678            ! ext/Data/Dumper/Dumper.xs t/lib/dumper.t
27679 ____________________________________________________________________________
27680 [  5969] By: gsar                                  on 2000/04/27  17:50:56
27681         Log: fix Sys::Syslog breakage on domain sockets (from Tom Hughes)
27682      Branch: perl
27683            + t/lib/syslog.t
27684            ! MANIFEST ext/Sys/Syslog/Syslog.pm
27685 ____________________________________________________________________________
27686 [  5968] By: gsar                                  on 2000/04/27  17:44:49
27687         Log: tolerate spaces in group names in test on solaris (from David Boyce
27688              <dsb@boyski.com>)
27689      Branch: perl
27690            ! t/op/groups.t
27691 ____________________________________________________________________________
27692 [  5967] By: gsar                                  on 2000/04/27  17:41:22
27693         Log: improved docs on the warn_uninit diagnostic (from David Glasser
27694              and Simon Cozens)
27695      Branch: perl
27696            ! pod/perldiag.pod
27697 ____________________________________________________________________________
27698 [  5966] By: gsar                                  on 2000/04/27  16:54:58
27699         Log: add testsuite for B backends, fix bug in B::Deparse (from
27700              Simon Cozens <simon@brecon.co.uk>)
27701      Branch: perl
27702            + t/lib/b.t
27703            ! MANIFEST ext/B/B/Deparse.pm ext/B/B/Stash.pm
27704 ____________________________________________________________________________
27705 [  5965] By: gsar                                  on 2000/04/27  16:10:37
27706         Log: avoid "will not stay shared" warnings for our variables (from
27707              Robin Barker)
27708      Branch: perl
27709            ! op.c t/pragma/warn/op
27710 ____________________________________________________________________________
27711 [  5964] By: gsar                                  on 2000/04/27  07:05:05
27712         Log: reformat to 72 columns (again)
27713      Branch: perl
27714            ! pod/perldiag.pod
27715 ____________________________________________________________________________
27716 [  5963] By: gsar                                  on 2000/04/27  06:28:31
27717         Log: patch from Larry to make (\&) prototype work; added tests for
27718              the same
27719      Branch: perl
27720            ! op.c t/comp/proto.t
27721 ____________________________________________________________________________
27722 [  5962] By: gsar                                  on 2000/04/27  06:15:47
27723         Log: updated README.hpux (from Jeff Okamoto)
27724      Branch: perl
27725            ! README.hpux
27726 ____________________________________________________________________________
27727 [  5961] By: gsar                                  on 2000/04/27  05:55:03
27728         Log: recognize our, CHECK and INIT in cperl-mode (from Doug MacEachern)
27729      Branch: perl
27730            ! emacs/cperl-mode.el
27731 ____________________________________________________________________________
27732 [  5960] By: gsar                                  on 2000/04/27  05:49:26
27733         Log: better INSTALL notes on Solaris issues (from Dominic Dunlop)
27734      Branch: perl
27735            ! INSTALL
27736 ____________________________________________________________________________
27737 [  5959] By: gsar                                  on 2000/04/27  05:33:41
27738         Log: doubled words in pods (from Simon Cozens
27739              <simon.p.cozens@jp.pwcglobal.com>)
27740      Branch: perl
27741            ! pod/perl56delta.pod pod/perldebguts.pod pod/perlfaq5.pod
27742            ! pod/perlfork.pod pod/perlfunc.pod pod/perlipc.pod
27743            ! pod/perllexwarn.pod pod/perllocale.pod pod/perlmodlib.pod
27744            ! pod/perlnumber.pod pod/perlopentut.pod pod/perltodo.pod
27745            ! pod/perltootc.pod
27746 ____________________________________________________________________________
27747 [  5958] By: gsar                                  on 2000/04/27  05:11:39
27748         Log: change#3569 deleted some essential code, revert; avoid use of
27749              atexit() to make DynaLoader work properly on AIX under mod_perl
27750              (from Jens-Uwe Mager <jum@helios.de>)
27751      Branch: perl
27752            ! ext/DynaLoader/dl_aix.xs
27753 ____________________________________________________________________________
27754 [  5957] By: gsar                                  on 2000/04/27  04:54:51
27755         Log: pod nits (from A. C. Yardley <yardley@tanet.net>)
27756      Branch: perl
27757            ! pod/perlmod.pod
27758 ____________________________________________________________________________
27759 [  5956] By: gsar                                  on 2000/04/27  04:51:47
27760         Log: better diagnostics on failed tests (from Ilya Zakharevich)
27761      Branch: perl
27762            ! t/op/lex_assign.t
27763 ____________________________________________________________________________
27764 [  5955] By: gsar                                  on 2000/04/27  04:26:44
27765         Log: longstanding bug exposed by change#3307: sort arguments weren't
27766              compiled with the right wantarray context (ensuing runtime lookup
27767              via block_gimme() was getting the incidental context of the
27768              sort() itself)
27769      Branch: perl
27770            ! op.c t/op/sort.t
27771 ____________________________________________________________________________
27772 [  5954] By: gsar                                  on 2000/04/26  23:42:12
27773         Log: integrate cfgperl contents into mainline
27774      Branch: perl
27775           !> (integrate 30 files)
27776 ____________________________________________________________________________
27777 [  5953] By: jhi                                   on 2000/04/26  23:06:42
27778         Log: Integrate with Sarathy.
27779      Branch: cfgperl
27780           !> README.win32 ext/B/B/Deparse.pm
27781           !> ext/DynaLoader/DynaLoader_pm.PL ext/DynaLoader/XSLoader_pm.PL
27782           !> lib/vars.pm perl.c pod/perldiag.pod pod/perlsub.pod
27783           !> pod/perlsyn.pod pod/perlthrtut.pod pod/perltoc.pod
27784           !> pod/perltodo.pod pod/perlxs.pod pod/perlxstut.pod
27785           !> utils/perldoc.PL vms/perlvms.pod
27786 ____________________________________________________________________________
27787 [  5952] By: jhi                                   on 2000/04/26  23:03:46
27788         Log: Undo "use integer" addition from 64bitint as it seems
27789              to break most of the subtests in Digital UNIX;
27790              Unicos needs to find another way.
27791      Branch: cfgperl
27792            ! t/op/64bitint.t
27793 ____________________________________________________________________________
27794 [  5951] By: jhi                                   on 2000/04/26  22:57:53
27795         Log: Be more robust on "extreme" (large absolute value)
27796              arguments.  Originally reported by Daniel Connelly
27797              as a problem with asinh() on large negative arguments,
27798              asinh() used to bail out because an argument to log()
27799              ended up being zero.  Ilya Zakharevich proposed using
27800              Taylor's series in such cases, which for such large
27801              arguments is a very good approximation.
27802      Branch: cfgperl
27803            ! lib/Math/Complex.pm t/lib/complex.t
27804 ____________________________________________________________________________
27805 [  5950] By: gsar                                  on 2000/04/25  19:13:12
27806         Log: reformat perldiag to avoid long lines
27807      Branch: perl
27808            ! pod/perldiag.pod
27809 ____________________________________________________________________________
27810 [  5949] By: gsar                                  on 2000/04/25  18:41:11
27811         Log: make perldoc use the pod2man from the same version (from
27812              M.J.T. Guy)
27813      Branch: perl
27814            ! utils/perldoc.PL
27815 ____________________________________________________________________________
27816 [  5948] By: gsar                                  on 2000/04/25  18:21:57
27817         Log: typo in vars.pm that leads to cryptic message (from Piotr Piatkowski
27818              <kompas@kompas.usr.onet.pl>)
27819      Branch: perl
27820            ! lib/vars.pm
27821 ____________________________________________________________________________
27822 [  5947] By: gsar                                  on 2000/04/25  18:11:53
27823         Log: use &dl_error rather than &dl_load_file as the guard for calling
27824              boot_DynaLoader() (meant to fix dl_error() redefined warnings in
27825              statically built perl)
27826      Branch: perl
27827            ! ext/DynaLoader/DynaLoader_pm.PL ext/DynaLoader/XSLoader_pm.PL
27828 ____________________________________________________________________________
27829 [  5946] By: jhi                                   on 2000/04/25  17:37:54
27830         Log: Document that tr() is not tr(1).
27831      Branch: cfgperl
27832            ! pod/perlop.pod
27833 ____________________________________________________________________________
27834 [  5945] By: gsar                                  on 2000/04/25  16:34:33
27835         Log: make module name mandatory after -M switch; reorder perldiag
27836              alphabetically (from Mark-Jason Dominus)
27837      Branch: perl
27838            ! perl.c pod/perldiag.pod
27839 ____________________________________________________________________________
27840 [  5944] By: jhi                                   on 2000/04/25  01:15:18
27841         Log: On second thoughts frexp() does have two arguments.
27842      Branch: cfgperl
27843            ! perl.h
27844 ____________________________________________________________________________
27845 [  5943] By: jhi                                   on 2000/04/24  22:56:32
27846         Log: Add HAS_FREXPL, HAS_ISNAN, HAS_ISNANL, and HAS_MODFL.
27847              Now pp_ncmp() returns undef is either operand is a NaN.
27848      Branch: cfgperl
27849            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
27850            ! Todo-5.6 config_h.SH epoc/config.sh perl.h pp.c pp_sys.c
27851            ! vms/subconfigure.com vos/config.def vos/config.h
27852            ! vos/config_h.SH_orig win32/config.bc win32/config.gc
27853            ! win32/config.vc win32/config_H.bc win32/config_H.gc
27854            ! win32/config_H.vc
27855      Branch: metaconfig/U/perl
27856            + d_modfl.U
27857 ____________________________________________________________________________
27858 [  5942] By: jhi                                   on 2000/04/24  19:45:17
27859         Log: Regen Configure to match #5937.
27860      Branch: cfgperl
27861            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
27862            ! config_h.SH
27863      Branch: metaconfig
27864            ! U/installdirs/inc_version_list.U U/modified/cpp_stuff.U
27865 ____________________________________________________________________________
27866 [  5941] By: jhi                                   on 2000/04/24  19:24:11
27867         Log: Further Unicos fixes for Mark Lutz.
27868      Branch: cfgperl
27869            ! hints/unicos.sh pp_ctl.c
27870 ____________________________________________________________________________
27871 [  5940] By: jhi                                   on 2000/04/24  19:09:06
27872         Log: Various Unicos 10.0.0.6 fixes.
27873              
27874              Subject: [ID 20000414.007] Test suite failures in perl 5.6 on Cray T90
27875              From: Mark P Lutz <tecmpl1@triton.ca.boeing.com> 
27876              Reply-To: tecmpl1@triton.ca.boeing.com 
27877              To: perl5-porters@perl.org 
27878              Date: Fri, 14 Apr 2000 20:21:00 GMT 
27879              Message-Id: <200004142021.UAA36232@triton.ca.boeing.com> 
27880      Branch: cfgperl
27881            ! hints/unicos.sh pp.c pp_ctl.c t/op/64bitint.t
27882 ____________________________________________________________________________
27883 [  5939] By: gsar                                  on 2000/04/24  19:01:24
27884         Log: more pod nits (from Larry Virden)
27885      Branch: perl
27886            ! README.win32 pod/perlsub.pod pod/perlsyn.pod
27887            ! pod/perlthrtut.pod pod/perltoc.pod pod/perltodo.pod
27888            ! pod/perlxs.pod pod/perlxstut.pod vms/perlvms.pod
27889 ____________________________________________________________________________
27890 [  5938] By: gsar                                  on 2000/04/24  18:54:01
27891         Log: Consolidated B::Deparse fixes (from Stephen McCamant)
27892      Branch: perl
27893            ! ext/B/B/Deparse.pm
27894 ____________________________________________________________________________
27895 [  5937] By: jhi                                   on 2000/04/24  17:39:00
27896         Log: Integrate with Sarathy.
27897      Branch: cfgperl
27898           +> (branch 31 files)
27899           !> (integrate 73 files)
27900 ____________________________________________________________________________
27901 [  5936] By: gsar                                  on 2000/04/24  17:30:06
27902         Log: additional tests for change#5934 (from Paul Marquess, who also
27903              sent in the same fix)
27904      Branch: perl
27905            ! t/pragma/warn/2use t/pragma/warn/3both t/pragma/warn/4lint
27906            ! t/pragma/warn/5nolint t/pragma/warn/6default
27907 ____________________________________________________________________________
27908 [  5935] By: jhi                                   on 2000/04/24  17:26:05
27909         Log: Do not assume sign propagation.
27910              Subject:  [PATCH] Re: [ID 20000410.010] Unicoss 10.0.0.6 and perl 5.6.0
27911              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk> 
27912              To: payner@ncifcrf.gov, perl5-porters@perl.org 
27913              Date: Tue, 18 Apr 2000 18:24:49 +0100 
27914              Message-Id: <E12hbk1-0006Ws-00@ursa.cus.cam.ac.uk> 
27915      Branch: cfgperl
27916            ! t/op/bop.t t/op/misc.t
27917 ____________________________________________________________________________
27918 [  5934] By: gsar                                  on 2000/04/24  17:16:54
27919         Log: propagate lexical warnings from surrounding scope correctly
27920              within string eval()
27921      Branch: perl
27922            ! pp_ctl.c t/pragma/warn/pp_ctl
27923 ____________________________________________________________________________
27924 [  5933] By: jhi                                   on 2000/04/24  17:01:07
27925         Log: Flatten the cpp jungle doing the nosuid checking.
27926      Branch: cfgperl
27927            ! perl.c
27928 ____________________________________________________________________________
27929 [  5932] By: gsar                                  on 2000/04/24  09:08:14
27930         Log: add rsignal(), whichsig() and do_join() to public API list
27931              (mod_perl uses them to good advantage)
27932      Branch: perl
27933            ! embed.pl global.sym objXSUB.h perlapi.c proto.h
27934 ____________________________________________________________________________
27935 [  5931] By: gsar                                  on 2000/04/24  09:01:40
27936         Log: fix RE brokenness on refs/overloaded things (from Ilya Zakharevich)
27937      Branch: perl
27938            ! pp_hot.c regexec.c t/op/pat.t
27939 ____________________________________________________________________________
27940 [  5930] By: gsar                                  on 2000/04/24  08:58:33
27941         Log: small os390 tweaks (from Peter Prymmer)
27942      Branch: perl
27943            ! config_h.SH makedepend.SH
27944 ____________________________________________________________________________
27945 [  5929] By: gsar                                  on 2000/04/24  08:55:25
27946         Log: pod nits
27947      Branch: perl
27948            ! pod/perlguts.pod
27949 ____________________________________________________________________________
27950 [  5928] By: gsar                                  on 2000/04/24  08:50:13
27951         Log: revert change#5923 ("breaks" t/lib/io_poll.t)
27952      Branch: perl
27953            ! ext/IO/lib/IO/Poll.pm
27954 ____________________________________________________________________________
27955 [  5927] By: gsar                                  on 2000/04/24  08:43:24
27956         Log: arrange for next() to resume at the unstack op rather than the
27957              loop conditional, so that scope cleanup happens correctly
27958              (from Stephen McCamant)
27959      Branch: perl
27960            ! op.c pp_ctl.c t/op/misc.t
27961 ____________________________________________________________________________
27962 [  5926] By: gsar                                  on 2000/04/24  08:18:40
27963         Log: on windows, reserve 16M of stack rather than 128M (allows more
27964              threads to run concurrently)
27965      Branch: perl
27966            ! win32/Makefile win32/makefile.mk
27967 ____________________________________________________________________________
27968 [  5925] By: gsar                                  on 2000/04/24  08:13:52
27969         Log: POSIX-BC tweak (from Ignasi Roca <ignasi.roca@fujitsu.siemens.es>)
27970      Branch: perl
27971            ! toke.c
27972 ____________________________________________________________________________
27973 [  5924] By: gsar                                  on 2000/04/24  08:08:59
27974         Log: avoid using uninitialized memory in require version check
27975      Branch: perl
27976            ! pp_ctl.c universal.c
27977 ____________________________________________________________________________
27978 [  5923] By: gsar                                  on 2000/04/24  07:20:14
27979         Log: various bugs in IO::Poll (from Lincoln D. Stein <lstein@cshl.org>)
27980      Branch: perl
27981            ! ext/IO/lib/IO/Poll.pm
27982 ____________________________________________________________________________
27983 [  5922] By: gsar                                  on 2000/04/24  07:08:42
27984         Log: commentary about IoTYPE() (from Nathan Torkington)
27985      Branch: perl
27986            ! sv.h
27987 ____________________________________________________________________________
27988 [  5921] By: gsar                                  on 2000/04/24  06:58:26
27989         Log: make eq unicode-aware (from Gisle Aas); fix bogus tests revealed
27990              by fix
27991      Branch: perl
27992            ! sv.c t/lib/charnames.t t/pragma/utf8.t
27993 ____________________________________________________________________________
27994 [  5920] By: gsar                                  on 2000/04/24  06:37:59
27995         Log: Larry's fix for buggy propagation of utf8-ness in join(); add test
27996      Branch: perl
27997            ! doop.c t/op/ver.t
27998 ____________________________________________________________________________
27999 [  5919] By: gsar                                  on 2000/04/24  06:21:58
28000         Log: Configure might miss old directories when prefix must be
28001              expanded (from Robin Barker)
28002      Branch: metaconfig
28003            ! U/installdirs/inc_version_list.U
28004      Branch: perl
28005            ! Configure
28006 ____________________________________________________________________________
28007 [  5918] By: gsar                                  on 2000/04/24  06:16:11
28008         Log: VMS nits in glob() test (from Charles Lane)
28009      Branch: perl
28010            ! t/lib/glob-basic.t
28011 ____________________________________________________________________________
28012 [  5917] By: gsar                                  on 2000/04/24  06:11:56
28013         Log: various pod nits (from Larry Virden and others)
28014      Branch: perl
28015            ! README.amiga README.hpux README.machten README.os2
28016            ! README.os390 README.win32 embed.pl handy.h lib/IPC/Open3.pm
28017            ! pod/Win32.pod pod/perl56delta.pod pod/perlapi.pod
28018            ! pod/perlbook.pod pod/perlcompile.pod pod/perldebguts.pod
28019            ! pod/perldiag.pod pod/perlfork.pod pod/perlfunc.pod
28020            ! pod/perlguts.pod pod/perlintern.pod pod/perlipc.pod
28021            ! pod/perlmod.pod pod/perlmodinstall.pod pod/perlnumber.pod
28022            ! pod/perlop.pod pod/perlport.pod pod/perlre.pod
28023            ! pod/perltrap.pod pod/perlunicode.pod pod/perlvar.pod pp.h
28024 ____________________________________________________________________________
28025 [  5916] By: gsar                                  on 2000/04/24  05:52:43
28026         Log: ignore dotfiles (.cvsignore etc) in test (from Warren Jones
28027              <wjones@tc.fluke.com>)
28028      Branch: perl
28029            ! t/lib/glob-basic.t
28030 ____________________________________________________________________________
28031 [  5915] By: gsar                                  on 2000/04/24  05:07:01
28032         Log: supported platforms mixed up
28033      Branch: perl
28034            ! pod/perl56delta.pod pod/perlport.pod
28035 ____________________________________________________________________________
28036 [  5914] By: gsar                                  on 2000/04/24  04:56:08
28037         Log: caller() wasn't returning the right number of elements for
28038              eval {...}
28039      Branch: perl
28040            ! pp_ctl.c t/pragma/warn/9enabled
28041 ____________________________________________________________________________
28042 [  5913] By: gsar                                  on 2000/04/24  04:35:41
28043         Log: pod nit: $yday range for localtime/gmtime is 0..364 not 1..365 (from
28044              Mark-Jason Dominus)
28045      Branch: perl
28046            ! pod/perlfunc.pod
28047 ____________________________________________________________________________
28048 [  5912] By: gsar                                  on 2000/04/24  04:17:15
28049         Log: fix totally broken caching in UNIVERSAL::isa() (from
28050              Nick Ing-Simmons)
28051      Branch: perl
28052            ! t/op/universal.t universal.c
28053 ____________________________________________________________________________
28054 [  5911] By: gsar                                  on 2000/04/24  03:39:47
28055         Log: add linebreak properties from unicode/LineBrk.txt (from
28056              Dave Hartnoll <Dave_Hartnoll@3b2.com>)
28057      Branch: perl
28058            + lib/unicode/Is/LbrkAI.pl lib/unicode/Is/LbrkAL.pl
28059            + lib/unicode/Is/LbrkB2.pl lib/unicode/Is/LbrkBA.pl
28060            + lib/unicode/Is/LbrkBB.pl lib/unicode/Is/LbrkBK.pl
28061            + lib/unicode/Is/LbrkCB.pl lib/unicode/Is/LbrkCL.pl
28062            + lib/unicode/Is/LbrkCM.pl lib/unicode/Is/LbrkCR.pl
28063            + lib/unicode/Is/LbrkEX.pl lib/unicode/Is/LbrkGL.pl
28064            + lib/unicode/Is/LbrkHY.pl lib/unicode/Is/LbrkID.pl
28065            + lib/unicode/Is/LbrkIN.pl lib/unicode/Is/LbrkIS.pl
28066            + lib/unicode/Is/LbrkLF.pl lib/unicode/Is/LbrkNS.pl
28067            + lib/unicode/Is/LbrkNU.pl lib/unicode/Is/LbrkOP.pl
28068            + lib/unicode/Is/LbrkPO.pl lib/unicode/Is/LbrkPR.pl
28069            + lib/unicode/Is/LbrkQU.pl lib/unicode/Is/LbrkSA.pl
28070            + lib/unicode/Is/LbrkSG.pl lib/unicode/Is/LbrkSP.pl
28071            + lib/unicode/Is/LbrkSY.pl lib/unicode/Is/LbrkXX.pl
28072            + lib/unicode/Is/LbrkZW.pl
28073            ! lib/unicode/mktables.PL
28074 ____________________________________________________________________________
28075 [  5910] By: gsar                                  on 2000/04/24  03:23:10
28076         Log: typo in pod
28077      Branch: perl
28078            ! ext/Thread/Thread.pm
28079 ____________________________________________________________________________
28080 [  5909] By: gsar                                  on 2000/04/24  03:22:03
28081         Log: mode argument to do_binmode() should be file mode, not boolean
28082      Branch: perl
28083            ! pp_sys.c
28084 ____________________________________________________________________________
28085 [  5908] By: gsar                                  on 2000/04/16  16:51:08
28086         Log: introduce illegal symbols into null package so that gv_fetchpv(...,TRUE)
28087              always returns a valid GV even when the symbol is trapped by strictures
28088              (avoids coredumps)
28089              
28090              TODO: the C<package;> hack needs similar treatment
28091      Branch: perl
28092            ! embedvar.h gv.c intrpvar.h perl.c perlapi.h
28093            ! t/pragma/strict-vars
28094 ____________________________________________________________________________
28095 [  5907] By: jhi                                   on 2000/03/31  23:42:56
28096         Log: pp_gmtime() assumed that newSVpvf %d would take C ints,
28097              an assumption which #5905 demolished.
28098      Branch: cfgperl
28099            ! pp_sys.c
28100 ____________________________________________________________________________
28101 [  5906] By: jhi                                   on 2000/03/31  18:54:37
28102         Log: Typo in #5905.
28103      Branch: cfgperl
28104            ! t/op/64bitint.t
28105 ____________________________________________________________________________
28106 [  5905] By: jhi                                   on 2000/03/31  18:50:54
28107         Log: Fix for "[ID 20000329.080] quad printing does not work as documented",
28108              reported by Joseph N. Hall.  The bug was that even with use64bitint
28109              one had to use the prefixes q, L, or ll with printf/sprintf,
28110              contrary to the documentation and common sense.
28111      Branch: cfgperl
28112            ! sv.c t/op/64bitint.t
28113 ____________________________________________________________________________
28114 [  5904] By: gsar                                  on 2000/03/28  02:31:32
28115         Log: add Changes, perldelta.pod
28116      Branch: perl
28117            + Changes pod/perldelta.pod
28118 ____________________________________________________________________________
28119 [  5903] By: gsar                                  on 2000/03/28  02:03:55
28120         Log: rename Changes and perldelta.pod
28121      Branch: perl
28122           +> Changes5.6 pod/perl56delta.pod
28123            - Changes pod/perldelta.pod
28124            ! MANIFEST
28125 ____________________________________________________________________________
28126 [  5902] By: gsar                                  on 2000/03/28  01:59:14
28127         Log: create maint-5.6 branch
28128      Branch: maint-5.6/perl
28129           +> (branch 1611 files)
28130 ____________________________________________________________________________
28131 [  5901] By: jhi                                   on 2000/03/23  05:48:43
28132         Log: Integrate with Sarathy.
28133      Branch: cfgperl
28134           !> Changes patchlevel.h pod/perlhist.pod pod/perltoc.pod
28135 ____________________________________________________________________________
28136 [  5900] By: gsar                                  on 2000/03/23  05:42:43
28137         Log: three guesses on what this is :-)
28138      Branch: perl
28139            ! Changes