Update Changes.
[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 [ 10418] By: jhi                                   on 2001/06/03  23:58:04
35         Log: -Wall "subscript has type `char'" cleanup.
36      Branch: perl
37            ! ext/File/Glob/bsd_glob.c x2p/a2py.c x2p/str.c x2p/walk.c
38 ____________________________________________________________________________
39 [ 10417] By: jhi                                   on 2001/06/03  23:37:17
40         Log: Various "cast to pointer from integer of different size"
41              picked up by gcc -Wall (in Tru64 where pointers are 64 bits
42              wide but I32 (int) only 32 bits wide).
43              
44              WARNING: the classnum and tagnum changes in Storable.xs
45              may not be wise, they may be breaking binary compatibility
46              (in 64-bit platforms), asked Raphael Manfredi about the changes.
47      Branch: perl
48            ! embed.pl ext/Devel/DProf/DProf.xs ext/Storable/Storable.xs
49            ! mg.c proto.h
50 ____________________________________________________________________________
51 [ 10416] By: jhi                                   on 2001/06/03  23:15:24
52         Log: The non-locale places need love, too.
53      Branch: perl
54            ! perl.h
55 ____________________________________________________________________________
56 [ 10415] By: jhi                                   on 2001/06/03  23:10:55
57         Log: "10.", that is, decimal numbers can have no decimal part at all.
58      Branch: perl
59            ! perl.h
60 ____________________________________________________________________________
61 [ 10414] By: jhi                                   on 2001/06/03  22:49:55
62         Log: Potential buffer overrun if the radix separator is more than
63              one byte.  Also, under locales, prefer the locale-specific
64              separator over the old boring ".".
65      Branch: perl
66            ! perl.h sv.c
67 ____________________________________________________________________________
68 [ 10413] By: jhi                                   on 2001/06/03  22:42:10
69         Log: Integrate change #10412 from maintperl; locale is now
70              per-cop, not per-op; plus retweak the locale.t to always
71              list the skipped utf8 locales.
72      Branch: perl
73            ! t/pragma/locale.t
74           !> embed.h lib/locale.pm op.c op.h opcode.h opcode.pl perl.h pp.c
75           !> pp.sym pp_ctl.c pp_proto.h pp_sys.c util.c
76 ____________________________________________________________________________
77 [ 10412] By: gsar                                  on 2001/06/03  22:23:16
78         Log: rationalize locale handling to fix the bugs uncovered by change#10394
79              
80              the major issue was that the runtime was looking at PL_hints rather
81              than op_private to notice whether locale was enabled
82              
83              the secondary issue was that many locale-sensitive numeric ops didn't
84              have HINT_LOCALE propagated into their op_private
85              
86              HINT_LOCALE is now propagated per-statement (i.e., via PL_curcop)
87              instead of per-op, just like HINT_BYTE and the hints for lexical
88              warnings (this makes the hint available to every op via PL_curcop)
89              
90              pragma/locale.t may need to be reworked with these fixes in mind
91              (it currently passes its tests)
92      Branch: maint-5.6/perl
93            ! embed.h lib/locale.pm op.c op.h opcode.h opcode.pl perl.h pp.c
94            ! pp.sym pp_ctl.c pp_proto.h pp_sys.c t/pragma/locale.t util.c
95 ____________________________________________________________________________
96 [ 10411] By: jhi                                   on 2001/06/03  17:50:49
97         Log: More verbose debugging.
98      Branch: perl
99            ! t/pragma/locale.t
100 ____________________________________________________________________________
101 [ 10410] By: jhi                                   on 2001/06/03  17:36:40
102         Log: Subject: RE: [PATCHES] regcomp.c, pod/perldiag.pod, t/op/pat.t
103              From: "Paul Marquess" <Paul_Marquess@Yahoo.co.uk>
104              Date: Sat, 2 Jun 2001 22:53:33 +0100
105              Message-ID: <000601c0ebae$77d10dc0$99dcfea9@bfs.phone.com>
106      Branch: perl
107            ! regcomp.c t/pragma/warn/regcomp
108 ____________________________________________________________________________
109 [ 10409] By: jhi                                   on 2001/06/03  17:27:13
110         Log: Mention that lexicalizing $a or $b is a bad idea if one
111              wants to use sort().
112      Branch: perl
113            ! pod/perlvar.pod
114 ____________________________________________________________________________
115 [ 10408] By: jhi                                   on 2001/06/03  16:52:41
116         Log: Tweak the test to be happy if the accuracy is 'good enough'.
117      Branch: perl
118            ! t/lib/posix.t
119 ____________________________________________________________________________
120 [ 10407] By: jhi                                   on 2001/06/03  16:50:33
121         Log: Upgrade to Attribute::Handlers 0.70.
122              
123              NOTE: this unearthed the "too late for CHECK block" bug,
124              that's why the 1_compile.t change.
125      Branch: perl
126            + lib/Attribute/Handlers/demo/Demo.pm
127            + lib/Attribute/Handlers/demo/Descriptions.pm
128            + lib/Attribute/Handlers/demo/MyClass.pm
129            + lib/Attribute/Handlers/demo/demo.pl
130            + lib/Attribute/Handlers/demo/demo2.pl
131            + lib/Attribute/Handlers/demo/demo3.pl
132            + lib/Attribute/Handlers/demo/demo4.pl
133            + lib/Attribute/Handlers/demo/demo_call.pl
134            + lib/Attribute/Handlers/demo/demo_chain.pl
135            + lib/Attribute/Handlers/demo/demo_cycle.pl
136            + lib/Attribute/Handlers/demo/demo_hashdir.pl
137            + lib/Attribute/Handlers/demo/demo_phases.pl
138            + lib/Attribute/Handlers/demo/demo_range.pl
139            + lib/Attribute/Handlers/demo/demo_rawdata.pl
140            ! MANIFEST lib/Attribute/Handlers.pm t/lib/1_compile.t
141            ! t/lib/attrhand.t
142 ____________________________________________________________________________
143 [ 10406] By: jhi                                   on 2001/06/03  16:40:03
144         Log: One less -Wall whine.
145      Branch: perl
146            ! regcomp.c
147 ____________________________________________________________________________
148 [ 10405] By: jhi                                   on 2001/06/03  16:30:34
149         Log: Integrate change #10404 from maintperl; eval.t was in pre-10394 mood.
150      Branch: perl
151           !> t/op/eval.t
152 ____________________________________________________________________________
153 [ 10404] By: gsar                                  on 2001/06/03  16:23:07
154         Log: eval.t was relying on pre-change#10394 buggy behavior (lexicals
155              aren't "normally" visible inside eval""s contained in subs unless
156              a cloned reference to them already exists)
157              
158              strangely enough, t/harness did show this up as a failure (harness
159              needs fixing?)
160      Branch: maint-5.6/perl
161            ! t/op/eval.t
162 ____________________________________________________________________________
163 [ 10403] By: jhi                                   on 2001/06/03  16:22:59
164         Log: Update to Text::Balanced 1.85.
165      Branch: perl
166            ! lib/Text/Balanced.pm t/lib/tb-xvari.t
167 ____________________________________________________________________________
168 [ 10402] By: jhi                                   on 2001/06/03  16:18:09
169         Log: Subject: [PATCH] Re: ext/Socket/Socket.xs
170              From: Nicholas Clark <nick@ccl4.org>
171              Date: Sun, 3 Jun 2001 17:54:36 +0100
172              Message-ID: <20010603175436.E76396@plum.flirble.org> 
173      Branch: perl
174            ! ext/Fcntl/Fcntl.xs ext/Socket/Socket.xs
175            ! ext/Sys/Syslog/Syslog.xs
176 ____________________________________________________________________________
177 [ 10401] By: jhi                                   on 2001/06/03  16:09:33
178         Log: Unused variables.
179      Branch: perl
180            ! util.c
181 ____________________________________________________________________________
182 [ 10400] By: jhi                                   on 2001/06/03  16:04:26
183         Log: Subject: [PATCH] APIfy op_clear 
184              From: Simon Cozens <simon@netthink.co.uk>
185              Date: Sun, 3 Jun 2001 13:51:46 +0100
186              Message-ID: <20010603135146.A9984@deep-dark-truthful-mirror.pmb.ox.ac.uk>
187              
188              (despite the subject line, op_null is APIfied by the patch)
189      Branch: perl
190            ! embed.h embed.pl global.sym objXSUB.h perlapi.c
191 ____________________________________________________________________________
192 [ 10399] By: jhi                                   on 2001/06/03  15:51:35
193         Log: Subject: [PATCH] t/lib/extutils.t
194              From: Nicholas Clark <nick@ccl4.org>
195              Date: Sat, 2 Jun 2001 23:57:05 +0100
196              Message-ID: <20010602235705.Q12698@plum.flirble.org>
197      Branch: perl
198            ! lib/ExtUtils/Constant.pm t/lib/extutils.t
199 ____________________________________________________________________________
200 [ 10398] By: jhi                                   on 2001/06/03  15:34:11
201         Log: Subject: [PATCH: perl@10360] update two win32 Makefiles
202              From: Prymmer/Kahn <pvhp@best.com>
203              Date: Sun, 3 Jun 2001 08:55:14 -0700 (PDT)
204              Message-ID: <Pine.BSF.4.21.0106030845550.21619-100000@shell8.ba.best.com>
205      Branch: perl
206            ! win32/Makefile win32/makefile.mk
207 ____________________________________________________________________________
208 [ 10397] By: jhi                                   on 2001/06/03  15:12:13
209         Log: Subject: Re: 'decimal digits' macro? 
210              From: Hugo <hv@crypt.compulink.co.uk>
211              Date: Sun, 03 Jun 2001 04:26:36 +0100
212              Message-Id: <200106030326.EAA18786@crypt.compulink.co.uk>
213      Branch: perl
214            ! handy.h t/lib/posix.t t/op/tr.t
215 ____________________________________________________________________________
216 [ 10396] By: jhi                                   on 2001/06/03  15:10:49
217         Log: Subject: Re: [ID 20010529.006] String plus zero inconsistent across platforms
218              From: Hugo <hv@crypt.compulink.co.uk>
219              Date: Sun, 03 Jun 2001 14:56:30 +0100
220              Message-Id: <200106031356.OAA12517@crypt.compulink.co.uk>
221      Branch: perl
222            ! util.c
223 ____________________________________________________________________________
224 [ 10395] By: jhi                                   on 2001/06/03  14:59:41
225         Log: Integrate change #10394 from maintperl; lexical file scope leakage.
226      Branch: perl
227           !> perly.c perly.y t/op/misc.t t/pragma/warn/universal
228           !> vms/perly_c.vms
229 ____________________________________________________________________________
230 [ 10394] By: gsar                                  on 2001/06/03  03:05:43
231         Log: fix leakage of lexicals at file scope into subroutines that were
232              declared before them; this appears to be a longstanding bug that
233              meant that lexicals at file scope were never "deintroduced", meaning
234              their scope range was never properly closed, and their visibility
235              extended to all subsequent eval""s or requires
236              
237              added a test case
238              
239              seems to also fix a case of bogus duplicate warnings
240      Branch: maint-5.6/perl
241            ! perly.c perly.y t/op/misc.t t/pragma/warn/universal
242            ! vms/perly_c.vms
243 ____________________________________________________________________________
244 [ 10393] By: jhi                                   on 2001/06/02  16:55:03
245         Log: More VMS tweaks from Craig A. Berry.
246      Branch: perl
247            ! configure.com t/lib/extutils.t
248 ____________________________________________________________________________
249 [ 10392] By: jhi                                   on 2001/06/02  16:48:26
250         Log: -Wall cleanup continues.
251      Branch: perl
252            ! README.tru64 embed.h embed.pl ext/NDBM_File/NDBM_File.xs
253            ! ext/POSIX/POSIX.xs ext/PerlIO/Scalar/Scalar.xs
254            ! ext/Storable/Storable.xs ext/Sys/Hostname/Hostname.xs
255            ! ext/Sys/Syslog/Syslog.xs perl.c proto.h regcomp.c regexec.c
256            ! run.c toke.c util.c
257 ____________________________________________________________________________
258 [ 10391] By: jhi                                   on 2001/06/02  13:29:47
259         Log: The metaconfig unit change for #10390.
260      Branch: metaconfig/U/perl
261            ! gccvers.U
262 ____________________________________________________________________________
263 [ 10390] By: jhi                                   on 2001/06/02  13:29:12
264         Log: Drop the -ansi from the default gcc flags.
265              
266              Off_t/off_t is a struct in Solaris with largefiles, and with -ansi
267              that struct cannot be compared with a flat integer, such as STRLEN.
268              The -ansi will also cause a lot of noise in Solaris because of:
269              /usr/include/sys/resource.h:148: warning: `struct rlimit64' declared inside parameter list
270      Branch: perl
271            ! Configure
272 ____________________________________________________________________________
273 [ 10389] By: jhi                                   on 2001/06/02  13:14:57
274         Log: Integrate perlio.
275      Branch: perl
276           !> pod/perlapi.pod util.c
277 ____________________________________________________________________________
278 [ 10388] By: nick                                  on 2001/06/02  08:01:12
279         Log: Integrate mainline
280      Branch: perlio
281           +> lib/Attribute/Handlers.pm t/lib/attrhand.t
282           !> MANIFEST configure.com ext/MIME/Base64/QuotedPrint.pm
283           !> lib/File/Find.pm pod/perlmodlib.pod pod/perltoc.pod
284           !> t/lib/1_compile.t t/lib/mimeqp.t
285 ____________________________________________________________________________
286 [ 10387] By: nick                                  on 2001/06/02  07:39:17
287         Log: Tweak util.c's atof2 for MULTIPLICITY
288      Branch: perlio
289            ! util.c
290 ____________________________________________________________________________
291 [ 10386] By: nick                                  on 2001/06/02  07:38:33
292         Log: Integrate mainline
293      Branch: perlio
294           !> (integrate 41 files)
295 ____________________________________________________________________________
296 [ 10385] By: jhi                                   on 2001/06/01  22:12:48
297         Log: Add Attribute::Handlers 0.61 from Damian Conway.
298      Branch: perl
299            + lib/Attribute/Handlers.pm t/lib/attrhand.t
300            ! MANIFEST pod/perlmodlib.pod pod/perltoc.pod t/lib/1_compile.t
301 ____________________________________________________________________________
302 [ 10384] By: jhi                                   on 2001/06/01  21:53:14
303         Log: Subject: [PATCH: perl@10328] allow MIME::QuotePrint to handle ASCII code numbers on EBCDIC machines
304              From: Peter Prymmer <pvhp@forte.com>
305              Date: Fri, 1 Jun 2001 15:49:22 -0700 (PDT)
306              Message-ID: <Pine.OSF.4.10.10106011545140.323662-100000@aspara.forte.com>
307      Branch: perl
308            ! ext/MIME/Base64/QuotedPrint.pm t/lib/mimeqp.t
309 ____________________________________________________________________________
310 [ 10383] By: jhi                                   on 2001/06/01  21:36:11
311         Log: Subject: [PATCH File::Find] 'do 1' and puzzling (?>...)
312              From: Jeff Pinyan <jeffp@crusoe.net>
313              Date: Fri, 1 Jun 2001 14:13:56 -0400 (EDT)
314              Message-ID: <Pine.GSO.4.21.0106011412520.21027-100000@crusoe.crusoe.net>
315      Branch: perl
316            ! lib/File/Find.pm
317 ____________________________________________________________________________
318 [ 10382] By: jhi                                   on 2001/06/01  21:35:02
319         Log: Subject: [PATCH perl@10381] configure.com tweaks
320              From: "Craig A. Berry" <craigberry@mac.com>
321              Date: Fri, 1 Jun 2001 13:55:43 -0500
322              Message-Id: <a05100e00b73d942aa9da@[172.16.52.1]>
323      Branch: perl
324            ! configure.com
325 ____________________________________________________________________________
326 [ 10381] By: jhi                                   on 2001/06/01  16:37:21
327         Log: Update Changes.
328      Branch: perl
329            ! Changes patchlevel.h
330 ____________________________________________________________________________
331 [ 10380] By: jhi                                   on 2001/06/01  16:19:18
332         Log: Subject: [PATCH] Re: [ID 20010529.004] program doesn't work unless in debug mode
333              From: Mike Guy <mjtg@cam.ac.uk>
334              Date: Fri, 01 Jun 2001 18:17:02 +0100
335              Message-Id: <E155sXm-0001C2-00@draco.cus.cam.ac.uk>
336      Branch: perl
337            ! lib/perl5db.pl
338 ____________________________________________________________________________
339 [ 10379] By: jhi                                   on 2001/06/01  16:13:28
340         Log: Subject: Re: [ID 20010529.006] String plus zero inconsistent across platforms
341              From: Hugo <hv@crypt.compulink.co.uk>
342              Date: Thu, 31 May 2001 20:49:48 +0100
343              Message-Id: <200105311949.UAA02798@crypt.compulink.co.uk>
344      Branch: perl
345            ! embed.h embed.pl global.sym objXSUB.h perl.h perlapi.c proto.h
346            ! util.c
347 ____________________________________________________________________________
348 [ 10378] By: jhi                                   on 2001/06/01  15:56:35
349         Log: Zero() is not available in x2p (or, rather, some of its
350              implementations like memzero() might not be available.)
351      Branch: perl
352            ! x2p/hash.c
353 ____________________________________________________________________________
354 [ 10377] By: jhi                                   on 2001/06/01  15:44:48
355         Log: Subject: [PATCH x2p/hash.c] bzero -> memset
356              From: Michael G Schwern <schwern@pobox.com>
357              Date: Fri, 1 Jun 2001 12:00:29 +0100
358              Message-ID: <20010601120029.F29027@blackrider.blackstar.co.uk>
359              
360              (But use Zero() instead of memset.)
361      Branch: perl
362            ! x2p/hash.c
363 ____________________________________________________________________________
364 [ 10376] By: jhi                                   on 2001/06/01  15:39:52
365         Log: Subject: Re: [PATCHES] regcomp.c, pod/perldiag.pod, t/op/pat.t
366              From: Jeff Pinyan <jeffp@crusoe.net>
367              Date: Fri, 1 Jun 2001 10:33:55 -0400 (EDT)
368              Message-ID: <Pine.GSO.4.21.0106011032080.21027-100000@crusoe.crusoe.net>
369      Branch: perl
370            ! pod/perldiag.pod regcomp.c t/op/pat.t
371 ____________________________________________________________________________
372 [ 10375] By: jhi                                   on 2001/06/01  15:36:35
373         Log: Retract #10324 and #10333; not needed.
374      Branch: perl
375            ! hints/irix_6.sh hints/linux.sh
376 ____________________________________________________________________________
377 [ 10374] By: jhi                                   on 2001/06/01  15:35:19
378         Log: The #10370 wasn't quite right.
379      Branch: perl
380            ! ext/XS/Typemap/Typemap.xs
381 ____________________________________________________________________________
382 [ 10373] By: jhi                                   on 2001/06/01  15:34:49
383         Log: The metaconfig units changes for #10372.
384      Branch: metaconfig/U/perl
385            + d_realpath.U d_sresgproto.U d_sresuproto.U
386            ! gccvers.U i_db.U
387 ____________________________________________________________________________
388 [ 10372] By: jhi                                   on 2001/06/01  15:34:24
389         Log: Configure tweaks; record the Berkeley DB version,
390              probe for realpath(), for setresuid() and setresgid()
391              prototypes; use realpath() (try to be paranoid enough),
392              use the setres[ug]id prototypes because glibc has the functions
393              but not their prototypes; add -Wall -ansi to gcc ccflags;
394              regen toc.
395      Branch: perl
396            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
397            ! config_h.SH configure.com epoc/config.sh
398            ! ext/DB_File/DB_File.xs perl.h pod/perlapi.pod pod/perltoc.pod
399            ! uconfig.h uconfig.sh util.c vos/config.alpha.def
400            ! vos/config.ga.def win32/config.bc win32/config.gc
401            ! win32/config.vc
402 ____________________________________________________________________________
403 [ 10371] By: jhi                                   on 2001/06/01  12:50:05
404         Log: Subject: Re: [PATCH xsutils.c] Quieting warnings
405              From: Michael G Schwern <schwern@pobox.com>
406              Date: Fri, 1 Jun 2001 11:28:14 +0100
407              Message-ID: <20010601112814.B29027@blackrider.blackstar.co.uk>
408      Branch: perl
409            ! lib/attributes.pm xsutils.c
410 ____________________________________________________________________________
411 [ 10370] By: jhi                                   on 2001/06/01  12:48:55
412         Log: Subject: [PATCH] Fix -Wall on XS::Typemap
413              From: Tim Jenness <t.jenness@jach.hawaii.edu>
414              Date: Thu, 31 May 2001 16:15:37 -1000 (HST)
415              Message-ID: <Pine.LNX.4.33.0105311610110.9337-100000@lapaki.jach.hawaii.edu>
416      Branch: perl
417            ! ext/XS/Typemap/Typemap.xs
418 ____________________________________________________________________________
419 [ 10369] By: jhi                                   on 2001/06/01  12:47:21
420         Log: Subject: [patch] Cwd.xs optimizations/abstraction
421              From: Doug MacEachern <dougm@covalent.net>
422              Date: Thu, 31 May 2001 17:37:37 -0700 (PDT)
423              Message-ID: <Pine.LNX.4.21.0105311733270.732-100000@mako.covalent.net> 
424      Branch: perl
425            ! embed.h embed.pl ext/Cwd/Cwd.xs global.sym lib/Cwd.pm
426            ! objXSUB.h perlapi.c pod/perlapi.pod proto.h util.c
427 ____________________________________________________________________________
428 [ 10368] By: jhi                                   on 2001/06/01  12:32:00
429         Log: Subject: Re: Why t/lib/extutils.t is failing  (was Re: [PATCH] Re: [PATCH] Re: [SPAM] Re: [SPAM] Re: [EGGS] Re: [BACON] Re: [TOAST] Re: [PATCH] Re: [PATCH] Re: h2xs [was Re: HEAR YE, HEAR YE!])
430              From: Nicholas Clark <nick@ccl4.org>
431              Date: Thu, 31 May 2001 23:56:40 +0100
432              Message-ID: <20010531235640.F12698@plum.flirble.org>
433              
434              Make the test work also under only static extensions
435              (sh Configure -Uusedl fakes this nicely)
436      Branch: perl
437            ! t/lib/extutils.t
438 ____________________________________________________________________________
439 [ 10367] By: jhi                                   on 2001/06/01  12:27:53
440         Log: Subject: [PATCH hv.c] Eliminating trigraph
441              From: Michael G Schwern <schwern@pobox.com>
442              Message-ID: <20010601114955.E29027@blackrider.blackstar.co.uk>
443              Date: Fri, 1 Jun 2001 11:49:56 +0100
444      Branch: perl
445            ! hv.c
446 ____________________________________________________________________________
447 [ 10366] By: jhi                                   on 2001/06/01  12:14:57
448         Log: Subject: Re: [PATCH] Tests for File::Compare 
449              From: "Philip Newton" <Philip.Newton@gmx.net>
450              Date: Thu, 31 May 2001 19:44:05 +0200
451              Message-Id: <200105311748.f4VHmCt18269@chaos.wustl.edu>
452              
453              Unnecessary "quotation marks".
454      Branch: perl
455            ! t/lib/filecomp.t
456 ____________________________________________________________________________
457 [ 10365] By: jhi                                   on 2001/06/01  12:13:26
458         Log: Integrate perlio.
459      Branch: perl
460           !> lib/ExtUtils/MM_Win32.pm t/lib/filecomp.t
461 ____________________________________________________________________________
462 [ 10364] By: nick                                  on 2001/06/01  10:13:31
463         Log: Cleanup dll.base and dll.exp created by GCC builds.
464      Branch: perlio
465            ! lib/ExtUtils/MM_Win32.pm
466 ____________________________________________________________________________
467 [ 10363] By: nick                                  on 2001/06/01  10:02:17
468         Log: Make filecomp test work on CRLF platforms by adding binmode.
469      Branch: perlio
470            ! t/lib/filecomp.t
471 ____________________________________________________________________________
472 [ 10362] By: nick                                  on 2001/06/01  08:37:17
473         Log: Integrate mainline
474      Branch: perlio
475           !> Changes Configure patchlevel.h perlio.c
476 ____________________________________________________________________________
477 [ 10361] By: jhi                                   on 2001/05/31  15:09:34
478         Log: panic:claustrophobia.
479      Branch: perl
480            ! perlio.c
481 ____________________________________________________________________________
482 [ 10360] By: jhi                                   on 2001/05/31  13:04:25
483         Log: Update Changes.
484      Branch: perl
485            ! Changes patchlevel.h
486 ____________________________________________________________________________
487 [ 10359] By: nick                                  on 2001/05/31  12:35:50
488         Log: Integrate mainline.
489      Branch: perlio
490           +> t/lib/filecomp.t
491           !> AUTHORS MANIFEST ext/Storable/Storable.xs gv.c perl.c perl.h
492           !> pp_ctl.c sv.c t/lib/1_compile.t toke.c util.c
493 ____________________________________________________________________________
494 [ 10358] By: jhi                                   on 2001/05/31  12:35:05
495         Log: Integrate perlio.
496      Branch: perl
497           !> t/pragma/warn/toke win32/config_H.bc win32/config_H.gc
498           !> win32/config_H.vc
499 ____________________________________________________________________________
500 [ 10357] By: jhi                                   on 2001/05/31  12:34:04
501         Log: Metaconfig unit change for #10356.
502      Branch: metaconfig
503            ! U/installdirs/inc_version_list.U
504 ____________________________________________________________________________
505 [ 10356] By: jhi                                   on 2001/05/31  12:33:41
506         Log: Allow Configure -Dinc_version_list='5.6.0/$archname 5.6.0' ...
507              (idea from Sarathy; implementation from Andy)
508      Branch: perl
509            ! Configure
510 ____________________________________________________________________________
511 [ 10355] By: jhi                                   on 2001/05/31  12:18:06
512         Log: More AUTHORS.
513      Branch: perl
514            ! AUTHORS
515 ____________________________________________________________________________
516 [ 10354] By: jhi                                   on 2001/05/31  12:16:24
517         Log: Subject: Re: [PATCH] Tests for File::Compare
518              From: Alexander Gough <alexander.gough@st-hughs.oxford.ac.uk>
519              Date: Thu, 31 May 2001 13:26:34 +0100 (GMT)
520              Message-Id: <E155RX8-0004X2-00@wing1.herald.ox.ac.uk>
521      Branch: perl
522            + t/lib/filecomp.t
523            ! MANIFEST t/lib/1_compile.t
524 ____________________________________________________________________________
525 [ 10353] By: jhi                                   on 2001/05/31  12:11:24
526         Log: Subject: [PATCH] DEBUG_* macro cleanups
527              From: Abhijit Menon-Sen <ams@wiw.org>
528              Date: Thu, 31 May 2001 12:16:22 +0530
529              Message-ID: <20010531121622.B4829@lustre.linux.in>
530              
531              Subject: Re: [PATCH] DEBUG_* macro cleanups
532              From: Abhijit Menon-Sen <ams@wiw.org>
533              Date: Thu, 31 May 2001 13:57:01 +0530
534              Message-ID: <20010531135701.A21775@lustre.linux.in>
535              
536              (The DEBUG_ definitions in perl.h changed to use the
537              STMT_START and STMT_END.)
538      Branch: perl
539            ! perl.h pp_ctl.c sv.c toke.c
540 ____________________________________________________________________________
541 [ 10352] By: jhi                                   on 2001/05/31  11:53:31
542         Log: Subject: [PATCH] -Wall cleanups: perl.c, gv.c, Storable.xs
543              From: Abhijit Menon-Sen <ams@wiw.org>
544              Date: Thu, 31 May 2001 08:27:55 +0530
545              Message-ID: <20010531082755.A10018@lustre.linux.in>
546      Branch: perl
547            ! ext/Storable/Storable.xs gv.c perl.c
548 ____________________________________________________________________________
549 [ 10351] By: jhi                                   on 2001/05/31  11:45:16
550         Log: Subject: [PATCH] AUTHORS
551              From: "Daniel S. Lewart" <d-lewart@uiuc.edu>
552              Date: Thu, 31 May 2001 01:27:59 -0500
553              Message-ID: <20010531012758.A1595@staff1.cso.uiuc.edu>
554              
555              Subject: Re: [PATCH] AUTHORS
556              From: "Philip Newton" <Philip.Newton@gmx.net>
557              Date: Thu, 31 May 2001 10:08:06 +0200
558              (Message-Id missing?)
559      Branch: perl
560            ! AUTHORS
561 ____________________________________________________________________________
562 [ 10350] By: nick                                  on 2001/05/31  11:40:43
563         Log: win32 - dmake regen_config_h
564      Branch: perlio
565            ! win32/config_H.bc win32/config_H.gc win32/config_H.vc
566 ____________________________________________________________________________
567 [ 10349] By: jhi                                   on 2001/05/31  11:38:27
568         Log: Subject: Re: [PATCH util.c] More warning cleanups.
569              From: "Philip Newton" <Philip.Newton@gmx.net>
570              Date: Thu, 31 May 2001 07:41:36 +0200
571              Message-Id: <200105310538.IAA25458@taku.hut.fi>
572              
573              Undo C++-ism that snekt in.
574      Branch: perl
575            ! util.c
576 ____________________________________________________________________________
577 [ 10348] By: nick                                  on 2001/05/31  11:36:46
578         Log: Tolerate Win32 numerics
579      Branch: perlio
580            ! t/pragma/warn/toke
581 ____________________________________________________________________________
582 [ 10347] By: jhi                                   on 2001/05/31  11:29:40
583         Log: Integrate perlio.
584      Branch: perl
585           !> perlio.c win32/win32.h
586 ____________________________________________________________________________
587 [ 10346] By: nick                                  on 2001/05/31  10:54:55
588         Log: Hack to restore Win32 pseudo fork broken by Multiple Interpreter
589              perlio.c change 10255.
590      Branch: perlio
591            ! perlio.c
592 ____________________________________________________________________________
593 [ 10345] By: nick                                  on 2001/05/31  10:01:57
594         Log: Conditionaly put back some "unused" dTHX which are used
595              with PERL_IMPLICIT_SYS
596      Branch: perlio
597            ! perlio.c
598 ____________________________________________________________________________
599 [ 10344] By: nick                                  on 2001/05/31  10:00:59
600         Log: Fix Win32 for new spelling IN_BYTES 
601      Branch: perlio
602            ! win32/win32.h
603 ____________________________________________________________________________
604 [ 10343] By: nick                                  on 2001/05/31  08:01:32
605         Log: perlio.c -Wall cleaner under MULTIPLICITY
606              - still minor noise with linux stdio
607      Branch: perlio
608            ! perlio.c
609 ____________________________________________________________________________
610 [ 10342] By: nick                                  on 2001/05/31  07:52:23
611         Log: Integrate mainline.
612      Branch: perlio
613           !> (integrate 42 files)
614 ____________________________________________________________________________
615 [ 10341] By: jhi                                   on 2001/05/31  01:39:02
616         Log: AUTHORS updates.
617      Branch: perl
618            ! AUTHORS
619 ____________________________________________________________________________
620 [ 10340] By: jhi                                   on 2001/05/31  00:19:29
621         Log: Subject: [PATCH: perl@10328] new md5sum for modified MD5.xs file
622              From: Peter Prymmer <pvhp@forte.com>
623              Date: Wed, 30 May 2001 17:57:20 -0700 (PDT)
624              Message-ID: <Pine.OSF.4.10.10105301753210.129765-100000@aspara.forte.com>
625      Branch: perl
626            ! t/lib/md5-file.t
627 ____________________________________________________________________________
628 [ 10339] By: jhi                                   on 2001/05/31  00:16:44
629         Log: Salvage bits and pieces from the experimental 'utf8 everywhere'
630              patch: rename HINT_BYTE and IN_BYTE to HINT_BYTES and IN_BYTES
631              to match the pragma name; various robustness cleanups.
632      Branch: perl
633            ! lib/utf8_heavy.pl mg.c perl.h pp.c pp_ctl.c pp_sys.c regexec.c
634            ! sv.c toke.c utf8.c utf8.h utfebcdic.h
635 ____________________________________________________________________________
636 [ 10338] By: jhi                                   on 2001/05/30  23:56:14
637         Log: More -Wall sweeping.
638      Branch: perl
639            ! av.c doio.c ext/Cwd/Cwd.xs ext/Devel/DProf/DProf.xs
640            ! ext/Devel/Peek/Peek.xs ext/Encode/Encode.xs
641            ! ext/List/Util/Util.xs gv.c op.c pp.c pp_ctl.c pp_hot.c
642            ! regcomp.c sv.c toke.c utf8.c
643 ____________________________________________________________________________
644 [ 10337] By: jhi                                   on 2001/05/30  23:20:23
645         Log: Subject: [PATCH] (was Re: [PATCH] Re: Report /pro/3gl/CPAN/perl-5.7.1)
646              From: Nicholas Clark <nick@ccl4.org>
647              Date: Wed, 30 May 2001 22:34:41 +0100
648              Message-ID: <20010530223441.Y86445@plum.flirble.org>
649      Branch: perl
650            ! t/op/cmp.t
651 ____________________________________________________________________________
652 [ 10336] By: jhi                                   on 2001/05/30  23:18:48
653         Log: It's is not, it isn't ain't, and it's it's, not its,
654              if you mean it is. If you don't, it's its. Then too,
655              it's hers. It isn't her's. It isn't our's either.
656              It's ours, and likewise yours and theirs.
657              -- Oxford University Press, Edpress News
658      Branch: perl
659            ! lib/autouse.pm
660 ____________________________________________________________________________
661 [ 10335] By: jhi                                   on 2001/05/30  23:12:30
662         Log: More -Wall silencing from Michael Schwern and Jarkko Hietaniemi.
663      Branch: perl
664            ! doop.c ext/ByteLoader/bytecode.h ext/DB_File/DB_File.xs mg.c
665            ! perl.c perlio.c regexec.c universal.c util.c x2p/a2py.c
666            ! x2p/str.c x2p/walk.c xsutils.c
667 ____________________________________________________________________________
668 [ 10334] By: jhi                                   on 2001/05/30  22:52:41
669         Log: Subject: [PATCH perl.c t/run/runenv.t] (was Re: [[ID 20010514.042] Perl v5.6.1 mangles PERL5OPT])
670              From: Michael G Schwern <schwern@pobox.com>
671              Date: Wed, 30 May 2001 17:10:38 +0100
672              Message-ID: <20010530171038.L670@blackrider.blackstar.co.uk>
673              
674              Subject: Re: [PATCH perl.c t/run/runenv.t] (was Re: [ID 20010514.042] Perl v5.6.1 mangles PERL5OPT])
675              From: Abhijit Menon-Sen <ams@wiw.org>
676              Date: Wed, 30 May 2001 23:16:13 +0530
677              Message-ID: <20010530231613.A31933@lustre.linux.in>
678      Branch: perl
679            ! perl.c t/run/runenv.t
680 ____________________________________________________________________________
681 [ 10333] By: jhi                                   on 2001/05/30  22:25:02
682         Log: (Retracted by #10375.)
683              
684              IRIX hints patch from Merijn Broeren.
685              
686              TODO: (this and the earlier Linux hints patch) should be solved
687              at Configure level.  Merijn: -ldb should not be used on any platform
688              for perl, just when linking DBFile itself. Trying to be helpful here
689              is counterproductive.
690      Branch: perl
691            ! hints/irix_6.sh
692 ____________________________________________________________________________
693 [ 10332] By: jhi                                   on 2001/05/30  22:11:13
694         Log: Subject: Re: [PATCH doop.c] unused variable in Perl_do_join
695              From: Nicholas Clark <nick@ccl4.org>
696              Date: Wed, 30 May 2001 23:20:58 +0100
697              Message-ID: <20010530232058.B86445@plum.flirble.org>
698      Branch: perl
699            ! doop.c
700 ____________________________________________________________________________
701 [ 10331] By: jhi                                   on 2001/05/30  22:09:49
702         Log: Subject: Re: [PATCH perl@10298] fix extutils.t and autouse.t for VMS
703              From: Michael G Schwern <schwern@pobox.com> 
704              Date: Wed, 30 May 2001 15:24:20 +0100
705              Message-ID: <20010530152420.H670@blackrider.blackstar.co.uk>
706      Branch: perl
707            ! t/pragma/autouse.t
708 ____________________________________________________________________________
709 [ 10330] By: jhi                                   on 2001/05/30  22:02:21
710         Log: The regex trick wasn't a good idea.
711      Branch: perl
712            ! pod/perlfaq4.pod
713 ____________________________________________________________________________
714 [ 10329] By: nick                                  on 2001/05/30  18:34:35
715         Log: Integrate mainline
716      Branch: perlio
717           !> (integrate 40 files)
718 ____________________________________________________________________________
719 [ 10328] By: jhi                                   on 2001/05/30  14:28:39
720         Log: Update Changes.
721      Branch: perl
722            ! Changes patchlevel.h
723 ____________________________________________________________________________
724 [ 10327] By: jhi                                   on 2001/05/30  14:07:01
725         Log: The metaconfig unit change for #10325.
726      Branch: metaconfig
727            + U/modified/afs.U
728 ____________________________________________________________________________
729 [ 10326] By: jhi                                   on 2001/05/30  14:06:36
730         Log: More -Wall cleanup from Schwern; the EBCDIC MD5.xs checksum
731              is now wrong.
732      Branch: perl
733            ! ext/Digest/MD5/MD5.xs t/lib/md5-file.t
734 ____________________________________________________________________________
735 [ 10325] By: jhi                                   on 2001/05/30  14:04:28
736         Log: Introduce $Config{afsroot}.
737      Branch: perl
738            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
739            ! config_h.SH epoc/config.sh uconfig.sh win32/config.bc
740            ! win32/config.gc win32/config.vc
741 ____________________________________________________________________________
742 [ 10324] By: jhi                                   on 2001/05/30  13:49:44
743         Log: (Retracted by #10375.)
744              
745              Linux DB tweak from Merijn Broeren <merijnb@iloquent.nl>.
746      Branch: perl
747            ! hints/linux.sh
748 ____________________________________________________________________________
749 [ 10323] By: jhi                                   on 2001/05/30  13:49:29
750         Log: AFS patches from Merijn Broeren <merijnb@iloquent.nl>.
751              (Also Configure tweaks needed; coming up soon.)
752      Branch: perl
753            ! t/io/fs.t t/lib/glob-basic.t t/op/stat.t
754 ____________________________________________________________________________
755 [ 10322] By: jhi                                   on 2001/05/30  13:37:56
756         Log: Subject: [PATCH lib/perl5db.pl] Conditional breakpoints
757              From: Michael G Schwern <schwern@pobox.com>
758              Date: Sun, 27 May 2001 10:29:43 +0100
759              Message-ID: <20010527102942.J711@blackrider.blackstar.co.uk>
760      Branch: perl
761            ! lib/perl5db.pl
762 ____________________________________________________________________________
763 [ 10321] By: jhi                                   on 2001/05/30  13:36:28
764         Log: Medley of -Wall cleanups from Michael Schwen, Hugo van der Sanden,
765              and Abhijit Menon-Sen.
766      Branch: perl
767            ! av.c doio.c doop.c dump.c ext/Digest/MD5/MD5.xs malloc.c op.c
768            ! perl.c pp_sys.c regcomp.c
769 ____________________________________________________________________________
770 [ 10320] By: jhi                                   on 2001/05/30  13:35:27
771         Log: Fix the BOOT section to call myU2time properly.
772      Branch: perl
773            ! ext/Time/HiRes/HiRes.xs
774 ____________________________________________________________________________
775 [ 10319] By: jhi                                   on 2001/05/30  13:06:09
776         Log: Subject: Re: [PATCH pod/perlfaq4.pod] Example of working in integers to avoid floating point errors
777              From: Ronald J Kimball <rjk@linguist.thayer.dartmouth.edu>
778              Date: Wed, 30 May 2001 09:44:29 -0400
779              Message-ID: <20010530094429.B133085@linguist.thayer.dartmouth.edu>
780              
781              Detypo; plus add one more trick.
782      Branch: perl
783            ! pod/perlfaq4.pod
784 ____________________________________________________________________________
785 [ 10318] By: jhi                                   on 2001/05/30  12:47:11
786         Log: Subject: Re: [PATCH lib/autouse.pm t/pragma/autouse.t]  (was Re: [ID 20010528.001] use autouse 'URI::Escape' => qw(URI::Escape::uri_escape) failed)
787              From: Michael G Schwern <schwern@pobox.com>
788              Date: Wed, 30 May 2001 14:39:06 +0100
789              Message-ID: <20010530143906.E670@blackrider.blackstar.co.uk>
790      Branch: perl
791            ! lib/autouse.pm t/pragma/autouse.t
792 ____________________________________________________________________________
793 [ 10317] By: jhi                                   on 2001/05/30  12:46:02
794         Log: Subject: Re: AIX and gcc (moving targets)
795              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
796              Date: Wed, 30 May 2001 15:25:08 +0200
797              Message-Id: <20010530152117.7097.H.M.BRAND@hccnet.nl>
798      Branch: perl
799            ! ext/Time/HiRes/HiRes.xs
800 ____________________________________________________________________________
801 [ 10316] By: jhi                                   on 2001/05/30  12:40:46
802         Log: Subject: [PATCH t/TEST] sorting tests
803              From: Michael G Schwern <schwern@pobox.com>
804              Date: Wed, 30 May 2001 10:24:02 +0100
805              Message-ID: <20010530102402.Q670@blackrider.blackstar.co.uk>
806      Branch: perl
807            ! t/TEST
808 ____________________________________________________________________________
809 [ 10315] By: jhi                                   on 2001/05/30  12:37:43
810         Log: Subject: [ID 20010529.002] typos in man page perlre
811              From: bart@cg681574-a.adubn1.nj.home.com 
812              Date: Tue, 29 May 2001 13:58:59 -0500
813              Message-Id: <E154ohn-00053j-00@debian.adubn1.nj.home.com>
814      Branch: perl
815            ! pod/perlre.pod
816 ____________________________________________________________________________
817 [ 10314] By: jhi                                   on 2001/05/30  12:33:53
818         Log: Subject: [PATCH perl@10298] fix extutils.t and autouse.t for VMS
819              From: "Craig A. Berry" <craigberry@mac.com>
820              Date: Tue, 29 May 2001 23:23:45 -0500
821              Message-Id: <a05100e01b73a21721dee@[192.168.56.153]>
822      Branch: perl
823            ! t/lib/extutils.t t/pragma/autouse.t
824 ____________________________________________________________________________
825 [ 10313] By: jhi                                   on 2001/05/30  12:32:17
826         Log: Subject: Re: [ID 20010529.003] find2perl and File::Find doesn't emulate find when path is a symlink (patch to t/lib/filefind.t as requested)
827              From: David Dyck <dcd@tc.fluke.com>
828              Date: Tue, 29 May 2001 22:05:28 -0700 (PDT)
829              Message-ID: <Pine.LNX.4.33.0105292200060.26992-100000@dd.tc.fluke.com>
830      Branch: perl
831            ! t/lib/filefind.t
832 ____________________________________________________________________________
833 [ 10312] By: jhi                                   on 2001/05/30  12:31:02
834         Log: AIX hints update for gcc from Merijn H. Brand.
835      Branch: perl
836            ! hints/aix.sh
837 ____________________________________________________________________________
838 [ 10311] By: jhi                                   on 2001/05/30  12:18:20
839         Log: Retract #10295 and #10296: a more generic solution
840              is needed (there's something funny with gcc on AIX).
841      Branch: perl
842            ! ext/POSIX/Makefile.PL ext/Storable/Makefile.PL
843 ____________________________________________________________________________
844 [ 10310] By: jhi                                   on 2001/05/30  12:08:07
845         Log: Subject: Re: [ID 20010528.004] dual bug under utf8: $@ has UTF8 flag and \s+ does not match
846              From: Hugo <hv@crypt.compulink.co.uk>
847              Date: Wed, 30 May 2001 11:59:19 +0100
848              Message-Id: <200105301059.LAA03182@crypt.compulink.co.uk>
849              
850              localizing $@ has unfortunate semantics - if you die past
851              a local $@, the die message is lost.
852      Branch: perl
853            ! lib/utf8_heavy.pl
854 ____________________________________________________________________________
855 [ 10309] By: nick                                  on 2001/05/30  08:23:02
856         Log: Integrate mainline (autouse works again.)
857      Branch: perlio
858           !> ext/Time/Piece/Piece.pm hints/os2.sh lib/File/Find.pm
859           !> lib/autouse.pm pod/perlfaq4.pod pod/perlfaq6.pod
860           !> pod/perlvar.pod t/op/cmp.t
861 ____________________________________________________________________________
862 [ 10308] By: jhi                                   on 2001/05/30  01:55:02
863         Log: Subject: [ID 20010529.003] find2perl and File::Find doesn't emulate find when path is a symlink (with proposed patch)
864              From: David Dyck <dcd@tc.fluke.com>
865              Date: Tue, 29 May 2001 12:19:38 -0700 (PDT)
866              Message-Id: <Pine.LNX.4.33.0105291216510.17409-100000@dd.tc.fluke.com>
867      Branch: perl
868            ! lib/File/Find.pm
869 ____________________________________________________________________________
870 [ 10307] By: jhi                                   on 2001/05/30  01:47:22
871         Log: Subject: [PATCH] Re: Report /pro/3gl/CPAN/perl-5.7.1
872              From: Nicholas Clark <nick@ccl4.org>
873              Date: Tue, 29 May 2001 23:16:09 +0100
874              Message-ID: <20010529231609.U86445@plum.flirble.org>
875              
876              Make the test output slightly clearer by distinguishing
877              between '' and undef.
878      Branch: perl
879            ! t/op/cmp.t
880 ____________________________________________________________________________
881 [ 10306] By: jhi                                   on 2001/05/30  01:45:12
882         Log: Subject: [PATCH 5.6.1] flushNULL OS/2
883              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
884              Date: Tue, 29 May 2001 19:15:19 -0400
885              Message-ID: <20010529191519.A16020@math.ohio-state.edu>
886      Branch: perl
887            ! hints/os2.sh
888 ____________________________________________________________________________
889 [ 10305] By: jhi                                   on 2001/05/30  01:42:36
890         Log: Subject: perlvar.pod addition
891              From: Peter Gessner <peter.gessner@post.rwth-aachen.de>
892              Date: Fri, 25 May 2001 20:23:12 +0200
893              Message-ID: <3B0EA310.B265C048@post.rwth-aachen.de>
894              
895              Subject: Re: perlvar.pod addition
896              From: "Abigail" <abigail@foad.org> 
897              Date: Fri, 25 May 2001 22:00:39 +0200
898              Message-ID: <20010525200039.28029.qmail@foad.org>
899              
900              Mention $a and $b in perlvar.
901      Branch: perl
902            ! pod/perlvar.pod
903 ____________________________________________________________________________
904 [ 10304] By: jhi                                   on 2001/05/30  01:36:37
905         Log: Subject: [PATCH] perlvar.pod -- why isn't @F here?
906              From: Jeff Pinyan <jeffp@crusoe.net>
907              Date: Tue, 29 May 2001 22:27:51 -0400 (EDT)
908              Message-ID: <Pine.GSO.4.21.0105292227150.1961-100000@crusoe.crusoe.net>
909      Branch: perl
910            ! pod/perlvar.pod
911 ____________________________________________________________________________
912 [ 10303] By: jhi                                   on 2001/05/30  01:35:31
913         Log: Subject: Re: [PATCH] perlfaq6.pod -- case-aware s///
914              From: Jeff Pinyan <jeffp@crusoe.net>
915              Date: Tue, 29 May 2001 18:03:27 -0400 (EDT)
916              Message-ID: <Pine.GSO.4.21.0105291802330.1961-100000@crusoe.crusoe.net>
917      Branch: perl
918            ! pod/perlfaq6.pod
919 ____________________________________________________________________________
920 [ 10302] By: jhi                                   on 2001/05/29  20:18:49
921         Log: Mention Time::localtime and Time::gmtime.
922      Branch: perl
923            ! ext/Time/Piece/Piece.pm
924 ____________________________________________________________________________
925 [ 10301] By: jhi                                   on 2001/05/29  20:13:54
926         Log: Subject: [PATCH pod/perlfaq4.pod] Example of working in integers to avoid floating point errors
927              From: Michael G Schwern <schwern@pobox.com>
928              Date: Tue, 29 May 2001 18:51:32 +0100
929              Message-ID: <20010529185132.C706@blackrider.blackstar.co.uk>
930      Branch: perl
931            ! pod/perlfaq4.pod
932 ____________________________________________________________________________
933 [ 10300] By: jhi                                   on 2001/05/29  20:12:09
934         Log: Retract #10243.
935      Branch: perl
936            ! lib/autouse.pm
937 ____________________________________________________________________________
938 [ 10299] By: nick                                  on 2001/05/29  18:41:19
939         Log: Post weekend integrate mainline (fails one test pragma/autouse).
940      Branch: perlio
941           +> (branch 29 files)
942           !> (integrate 91 files)
943 ____________________________________________________________________________
944 [ 10298] By: jhi                                   on 2001/05/29  16:29:19
945         Log: Update Changes.
946      Branch: perl
947            ! Changes patchlevel.h
948 ____________________________________________________________________________
949 [ 10297] By: jhi                                   on 2001/05/29  16:25:47
950         Log: Fix Perl_swash_init & Perl_swash_fetch to save ERRSV (= $@)
951              before Perl_load_module/Perl_call_method and restore the value
952              after if !SvTRUE(ERRSV).  (from Inaba Hiroto)
953      Branch: perl
954            ! utf8.c
955 ____________________________________________________________________________
956 [ 10296] By: jhi                                   on 2001/05/29  16:01:53
957         Log: Subject: Re: AIX and gcc (moving targets)
958              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
959              Date: Tue, 29 May 2001 17:59:40 +0200
960              Message-Id: <20010529175841.7078.H.M.BRAND@hccnet.nl>
961      Branch: perl
962            ! ext/Storable/Makefile.PL
963 ____________________________________________________________________________
964 [ 10295] By: jhi                                   on 2001/05/29  15:59:05
965         Log: Subject: Re: AIX and gcc (moving targets)
966              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
967              Date: Tue, 29 May 2001 12:32:57 +0200
968              Message-Id: <20010529115151.9FE0.H.M.BRAND@hccnet.nl>
969      Branch: perl
970            ! ext/POSIX/Makefile.PL
971 ____________________________________________________________________________
972 [ 10294] By: jhi                                   on 2001/05/29  15:53:43
973         Log: Subject: [PATCH lib/Test/Harness.pm t/lib/test-harness.t] Syncing with 1.21
974              From: Michael G Schwern <schwern@pobox.com>
975              Date: Tue, 29 May 2001 09:53:29 +0100
976              Message-ID: <20010529095329.T675@blackrider.blackstar.co.uk>
977              
978              (#10280 retracted)
979      Branch: perl
980            ! lib/Test/Harness.pm t/lib/test-harness.t
981 ____________________________________________________________________________
982 [ 10293] By: jhi                                   on 2001/05/29  15:46:10
983
984         Log: Subject: [PATCH t/TEST lib/Test.pm t/lib/Test/*.t] Syncing with Test-1.17
985              From: Michael G Schwern <schwern@pobox.com>
986              Date: Tue, 29 May 2001 09:19:52 +0100
987              Message-ID: <20010529091952.R675@blackrider.blackstar.co.uk>
988      Branch: perl
989            + t/lib/Test/fail.t t/lib/Test/mix.t t/lib/Test/onfail.t
990            + t/lib/Test/qr.t t/lib/Test/skip.t t/lib/Test/success.t
991            + t/lib/Test/todo.t
992            ! MANIFEST lib/Test.pm t/TEST
993 ____________________________________________________________________________
994 [ 10292] By: jhi                                   on 2001/05/29  15:34:08
995         Log: From: Michael G Schwern <schwern@pobox.com>
996              Subject: Re: [PATCH t/TEST] Allowing deeper test subdirectories
997              Date: Tue, 29 May 2001 08:26:09 +0100
998              Message-ID: <20010529082609.P675@blackrider.blackstar.co.uk>
999      Branch: perl
1000            ! t/TEST
1001 ____________________________________________________________________________
1002 [ 10291] By: jhi                                   on 2001/05/29  15:29:37
1003         Log: Add tests for Time::gmtime and Time::localtime.
1004      Branch: perl
1005            + t/lib/time-gmtime.t t/lib/time-localtime.t
1006            ! MANIFEST t/lib/1_compile.t
1007 ____________________________________________________________________________
1008 [ 10290] By: jhi                                   on 2001/05/29  15:15:44
1009         Log: Add test for File::stat.
1010      Branch: perl
1011            + t/lib/filestat.t
1012            ! MANIFEST t/lib/1_compile.t
1013 ____________________________________________________________________________
1014 [ 10289] By: jhi                                   on 2001/05/29  15:05:38
1015         Log: Add test for Net::servent.
1016      Branch: perl
1017            + t/lib/net-sent.t
1018            ! MANIFEST t/lib/1_compile.t
1019 ____________________________________________________________________________
1020 [ 10288] By: jhi                                   on 2001/05/29  14:57:15
1021         Log: Add test for Net::protoent.
1022      Branch: perl
1023            + t/lib/net-pent.t
1024            ! MANIFEST t/lib/1_compile.t
1025 ____________________________________________________________________________
1026 [ 10287] By: jhi                                   on 2001/05/29  14:53:10
1027         Log: Add test for Net::netent.
1028      Branch: perl
1029            + t/lib/net-nent.t
1030            ! MANIFEST t/lib/1_compile.t
1031 ____________________________________________________________________________
1032 [ 10286] By: jhi                                   on 2001/05/29  14:31:57
1033         Log: Add test for User::grent.  Portability doubtful.
1034      Branch: perl
1035            + t/lib/user-grent.t
1036            ! MANIFEST t/lib/1_compile.t
1037 ____________________________________________________________________________
1038 [ 10285] By: jhi                                   on 2001/05/29  14:24:20
1039         Log: Add test for User::pwent.
1040              Probably will fall down somewhere for portability reasons.
1041      Branch: perl
1042            + t/lib/user-pwent.t
1043            ! MANIFEST t/lib/1_compile.t
1044 ____________________________________________________________________________
1045 [ 10284] By: jhi                                   on 2001/05/29  13:26:43
1046         Log: Metaconfig units changes for #10283.
1047      Branch: metaconfig
1048            ! U/installdirs/inc_version_list.U U/installdirs/perl5.U
1049            ! U/installdirs/siteman1.U U/installdirs/siteman3.U
1050            ! U/installdirs/sitescript.U U/modified/Signal.U
1051 ____________________________________________________________________________
1052 [ 10283] By: jhi                                   on 2001/05/29  13:26:24
1053         Log: Subject: [PATCH 5.6.1] signal names in Configure
1054              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
1055              Date: Tue, 29 May 2001 03:52:25 -0400
1056              Message-ID: <20010529035225.A9400@math.ohio-state.edu>
1057              
1058              Subject: [PATCH 5.6.1] older perl in Configure
1059              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
1060              Date: Tue, 29 May 2001 03:55:40 -0400
1061              Message-ID: <20010529035539.A9411@math.ohio-state.edu>
1062              
1063              Subject: [PATCH 5.6.1] goofs in Configure
1064              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
1065              Date: Tue, 29 May 2001 04:13:07 -0400
1066              Message-ID: <20010529041307.A9658@math.ohio-state.edu>
1067              
1068              Configure portability tweaks.
1069      Branch: perl
1070            ! Configure
1071 ____________________________________________________________________________
1072 [ 10282] By: jhi                                   on 2001/05/29  12:41:41
1073         Log: Subject: [PATCH 5.6.1] extLibpath for OS/2
1074              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
1075              Date: Tue, 29 May 2001 04:07:06 -0400
1076              Message-ID: <20010529040706.A9579@math.ohio-state.edu>
1077      Branch: perl
1078            ! os2/os2.c
1079 ____________________________________________________________________________
1080 [ 10281] By: jhi                                   on 2001/05/29  12:40:31
1081         Log: Subject: [PATCH 5.6.1] extra static libs for OS/2
1082              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
1083              Date: Tue, 29 May 2001 04:01:38 -0400
1084              Message-ID: <20010529040138.A9482@math.ohio-state.edu>
1085      Branch: perl
1086            ! hints/os2.sh os2/Makefile.SHs
1087 ____________________________________________________________________________
1088 [ 10280] By: jhi                                   on 2001/05/29  12:38:48
1089         Log: Subject: Re: [PATCH 5.6.1] Test::Harness clumsy
1090              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
1091              Date: Tue, 29 May 2001 03:50:18 -0400
1092              Message-ID: <20010529035018.A9387@math.ohio-state.edu>
1093      Branch: perl
1094            ! lib/Test/Harness.pm
1095 ____________________________________________________________________________
1096 [ 10279] By: jhi                                   on 2001/05/29  12:34:53
1097         Log: Additional safeguard against $@ getting trampled; idea from Hugo.
1098      Branch: perl
1099            ! lib/utf8_heavy.pl
1100 ____________________________________________________________________________
1101 [ 10278] By: jhi                                   on 2001/05/29  02:15:24
1102         Log: Subject: Re: [ID 20010528.004] dual bug under utf8: $@ has UTF8 flag and \s+ does not match
1103              From: Hugo <hv@crypt.compulink.co.uk>
1104              Date: Tue, 29 May 2001 03:03:45 +0100
1105              Message-Id: <200105290203.DAA00825@crypt.compulink.co.uk>
1106              
1107              Explanation why the $@ always gets the UTF8 flag when under use utf8--
1108              because we told it to have the flag when under use utf8.
1109      Branch: perl
1110            ! pp_ctl.c
1111 ____________________________________________________________________________
1112 [ 10277] By: jhi                                   on 2001/05/29  00:51:34
1113         Log: At least a partial fix for 20010528.004.
1114      Branch: perl
1115            ! lib/utf8_heavy.pl
1116 ____________________________________________________________________________
1117 [ 10276] By: jhi                                   on 2001/05/29  00:42:59
1118         Log: Subject: Re: Report /pro/3gl/CPAN/perl-5.7.1
1119              From: Nicholas Clark <nick@ccl4.org> 
1120              Date: Mon, 28 May 2001 23:39:38 +0100
1121              Message-ID: <20010528233938.M86445@plum.flirble.org>
1122              
1123              More portable non-zero UV.
1124      Branch: perl
1125            ! t/lib/extutils.t
1126 ____________________________________________________________________________
1127 [ 10275] By: jhi                                   on 2001/05/29  00:40:28
1128         Log: Subject: [PATCH] (was Re: Why t/lib/extutils.t is failing ...
1129              From: Nicholas Clark <nick@ccl4.org>
1130              Date: Mon, 28 May 2001 22:46:09 +0100
1131              Message-ID: <20010528224608.L86445@plum.flirble.org>
1132              
1133              Test also "make clean".
1134      Branch: perl
1135            ! t/lib/extutils.t
1136 ____________________________________________________________________________
1137 [ 10274] By: jhi                                   on 2001/05/29  00:39:18
1138         Log: Subject: Re: Would -Wno-unused -Wall be better?
1139              From: Michael G Schwern <schwern@pobox.com>
1140              Date: Tue, 29 May 2001 00:55:54 +0100
1141              Message-ID: <20010529005553.B675@blackrider.blackstar.co.uk>
1142      Branch: perl
1143            ! pp.h
1144 ____________________________________________________________________________
1145 [ 10273] By: jhi                                   on 2001/05/29  00:36:06
1146         Log: Add a test for 20010528.007, fixed in #10272.
1147      Branch: perl
1148            ! t/op/misc.t toke.c
1149 ____________________________________________________________________________
1150 [ 10272] By: jhi                                   on 2001/05/29  00:21:12
1151         Log: Subject: Re: [ID 20010528.007] "\x{" causes panic:constant overflowed allocated space 
1152              From: Hugo <hv@crypt.compulink.co.uk>
1153              Date: Tue, 29 May 2001 00:23:23 +0100
1154              Message-Id: <200105282323.AAA07930@crypt.compulink.co.uk>
1155      Branch: perl
1156            ! toke.c
1157 ____________________________________________________________________________
1158 [ 10271] By: jhi                                   on 2001/05/28  22:52:11
1159         Log: Subject: Re: [ID 20010528.001] use autouse 'URI::Escape' => qw(URI::Escape::uri_escape) failed
1160              From: Michael G Schwern <schwern@pobox.com>
1161              Date: Tue, 29 May 2001 00:42:59 +0100
1162              Message-ID: <20010529004259.A675@blackrider.blackstar.co.uk>
1163      Branch: perl
1164            ! t/pragma/autouse.t
1165 ____________________________________________________________________________
1166 [ 10270] By: jhi                                   on 2001/05/28  21:44:06
1167         Log: Some shells seemingly arrange the signal handlers differently
1168              (bug id 20010521.004).
1169      Branch: perl
1170            ! t/lib/sigaction.t
1171 ____________________________________________________________________________
1172 [ 10269] By: jhi                                   on 2001/05/28  20:34:21
1173         Log: Regen perlmodlib.
1174      Branch: perl
1175            ! pod/perlmodlib.pod
1176 ____________________________________________________________________________
1177 [ 10268] By: jhi                                   on 2001/05/28  19:08:45
1178         Log: Update Changes.
1179      Branch: perl
1180            ! Changes patchlevel.h
1181 ____________________________________________________________________________
1182 [ 10267] By: jhi                                   on 2001/05/28  19:03:54
1183         Log: Subject: [PATCH] perlnewmod.pod to reflect DLSI(P) change
1184              From: Elaine -HFB- Ashton <elaine@chaos.wustl.edu>
1185              Date: Mon, 28 May 2001 14:56:35 -0500
1186              Message-ID: <20010528145635.L8487@chaos.wustl.edu>
1187      Branch: perl
1188            ! pod/perlnewmod.pod
1189 ____________________________________________________________________________
1190 [ 10266] By: jhi                                   on 2001/05/28  18:35:03
1191         Log: Regen toc.
1192      Branch: perl
1193            ! pod/perltoc.pod
1194 ____________________________________________________________________________
1195 [ 10265] By: jhi                                   on 2001/05/28  18:33:32
1196         Log: Subject: [PATCH] RE: [20000223.001] no test cases for splice(@array) 
1197              From: "Richard Soderberg" <rs@crystalflame.net>
1198              Date: Mon, 28 May 2001 12:31:23 -0700
1199              Message-ID: <NAEKLNAAHLMBPMPNBMLEOEFLDFAA.rs@crystalflame.net>
1200      Branch: perl
1201            ! t/op/splice.t
1202 ____________________________________________________________________________
1203 [ 10264] By: jhi                                   on 2001/05/28  17:59:00
1204         Log: The #10260 was too bold: locales and utf8 still do not mix.
1205      Branch: perl
1206            ! t/pragma/locale.t
1207 ____________________________________________________________________________
1208 [ 10263] By: jhi                                   on 2001/05/28  17:52:25
1209         Log: Subject: [PATCH] Pod nitpicks
1210              From: "Richard Soderberg" <rs@crystalflame.net>
1211              Date: Mon, 28 May 2001 10:08:58 -0700
1212              Message-ID: <NAEKLNAAHLMBPMPNBMLEOEFGDFAA.rs@crystalflame.net>
1213      Branch: perl
1214            ! pod/perl571delta.pod pod/perlapi.pod sv.h
1215 ____________________________________________________________________________
1216 [ 10262] By: jhi                                   on 2001/05/28  17:50:05
1217         Log: Upgrade to I18N::LangTags 0.22.
1218      Branch: perl
1219            + lib/I18N/LangTags/List.pod
1220            ! MANIFEST lib/I18N/LangTags.pm
1221 ____________________________________________________________________________
1222 [ 10261] By: jhi                                   on 2001/05/28  17:23:40
1223         Log: A slightly more serious bug found by -Mutf8; op/misc and
1224              lib/complex dumped core.
1225      Branch: perl
1226            ! regexec.c
1227 ____________________________________________________________________________
1228 [ 10260] By: jhi                                   on 2001/05/28  16:58:11
1229         Log: Various buglets shaken out by -Mutf8.
1230      Branch: perl
1231            ! t/io/utf8.t t/lib/charnames.t t/lib/lc-language.t
1232            ! t/pragma/locale.t
1233 ____________________________________________________________________________
1234 [ 10259] By: jhi                                   on 2001/05/28  15:48:46
1235         Log: STDERR looks much like STDOUT.  (Subtest #2 wasn't really okay.)
1236      Branch: perl
1237            ! t/lib/carp.t
1238 ____________________________________________________________________________
1239 [ 10258] By: jhi                                   on 2001/05/28  15:32:41
1240         Log: Subject: [PATCH] todo patch
1241              From: Artur Bergman <artur@contiller.se> 
1242              Date: Mon, 28 May 2001 17:03:51 +0200
1243              Message-ID: <B7383577.F34%artur@contiller.se>
1244      Branch: perl
1245            ! pod/perltodo.pod
1246 ____________________________________________________________________________
1247 [ 10257] By: jhi                                   on 2001/05/28  15:31:25
1248         Log: Subject: typo in perlguts.pod
1249              From: "John P. Linderman" <jpl@research.att.com>
1250              Date: Mon, 28 May 2001 09:35:47 -0400 (EDT)
1251              Message-Id: <200105281335.JAA27851@raptor.research.att.com>
1252      Branch: perl
1253            ! pod/perlguts.pod
1254 ____________________________________________________________________________
1255 [ 10256] By: jhi                                   on 2001/05/28  15:30:42
1256         Log: Subject: AIX and gcc (moving targets)
1257              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
1258              Date: Mon, 28 May 2001 12:54:04 +0200
1259              Message-Id: <20010528124531.9FAB.H.M.BRAND@hccnet.nl>
1260      Branch: perl
1261            ! hints/aix.sh
1262 ____________________________________________________________________________
1263 [ 10255] By: jhi                                   on 2001/05/28  15:28:55
1264         Log: Subject: Re: perlio + multiple perl_alloc..destruct
1265              From: Doug MacEachern <dougm@covalent.net>
1266              Date: Sun, 27 May 2001 13:47:13 -0700 (PDT)
1267              Message-ID: <Pine.LNX.4.21.0105271340370.5938-100000@mako.covalent.net>
1268      Branch: perl
1269            ! perlio.c
1270 ____________________________________________________________________________
1271 [ 10254] By: jhi                                   on 2001/05/28  15:27:49
1272         Log: The #10251 wasn't quite up-to-the-code.
1273      Branch: perl
1274            ! t/op/misc.t
1275 ____________________________________________________________________________
1276 [ 10253] By: jhi                                   on 2001/05/28  15:26:39
1277         Log: Test case for bug 20010526.004, fixed in #10252.
1278      Branch: perl
1279            ! t/op/taint.t
1280 ____________________________________________________________________________
1281 [ 10252] By: jhi                                   on 2001/05/28  15:26:14
1282         Log: Subject: Re: [ID 20010526.004] Taint looses value
1283              From: Hugo <hv@crypt.compulink.co.uk>
1284              Date: Sun, 27 May 2001 20:39:32 +0100
1285              Message-Id: <200105271939.UAA27591@crypt.compulink.co.uk>
1286      Branch: perl
1287            ! sv.c
1288 ____________________________________________________________________________
1289 [ 10251] By: jhi                                   on 2001/05/28  15:13:40
1290         Log: Test case for 20010422.005, fixed by #10250.
1291      Branch: perl
1292            ! t/op/misc.t
1293 ____________________________________________________________________________
1294 [ 10250] By: jhi                                   on 2001/05/28  15:11:16
1295         Log: Subject: [PATCH] Re: [ID 20010422.005] perl -e '{s//${}/; //}' # segfaults on FreeBSD 
1296              From: Spider Boardman <spider@Orb.Nashua.NH.US>
1297              Date: Mon, 28 May 2001 06:39:12 -0400
1298              Message-Id: <200105281039.GAA03962@Orb.Nashua.NH.US>
1299      Branch: perl
1300            ! toke.c
1301 ____________________________________________________________________________
1302 [ 10249] By: jhi                                   on 2001/05/28  15:09:24
1303         Log: Linerewrapping.
1304      Branch: perl
1305            ! lib/open.pm
1306 ____________________________________________________________________________
1307 [ 10248] By: jhi                                   on 2001/05/28  15:09:07
1308         Log: Updates on the modules list.
1309      Branch: perl
1310            ! t/lib/1_compile.t
1311 ____________________________________________________________________________
1312 [ 10247] By: jhi                                   on 2001/05/28  15:03:35
1313         Log: Add a test for PerlIO.
1314              
1315              (I probably got the crlf/raw thing wrong for clrfy platforms...)
1316      Branch: perl
1317            + t/lib/perlio.t
1318            ! MANIFEST lib/PerlIO.pm
1319 ____________________________________________________________________________
1320 [ 10246] By: jhi                                   on 2001/05/28  14:24:08
1321         Log: Add a test for carp et alia.
1322      Branch: perl
1323            + t/lib/carp.t
1324            ! MANIFEST
1325 ____________________________________________________________________________
1326 [ 10245] By: jhi                                   on 2001/05/28  13:42:55
1327         Log: Adding the new test would be swell.
1328      Branch: perl
1329            + t/pragma/autouse.t
1330 ____________________________________________________________________________
1331 [ 10244] By: jhi                                   on 2001/05/28  13:42:34
1332         Log: Add a test for the autouse pragma.
1333      Branch: perl
1334            ! MANIFEST
1335 ____________________________________________________________________________
1336 [ 10243] By: jhi                                   on 2001/05/28  13:26:25
1337         Log: Subject: [ID 20010528.001] use autouse 'URI::Escape' => qw(URI::Escape::uri_escape) failed
1338              From: dLux <dlux@spam.sch.bme.hu>
1339              Date: Sun, 27 May 2001 16:14:26 +0200
1340              Message-Id: <E1541JK-0000YC-00@dl.sch.bme.hu>
1341      Branch: perl
1342            ! lib/autouse.pm
1343 ____________________________________________________________________________
1344 [ 10242] By: jhi                                   on 2001/05/28  13:21:50
1345         Log: Subject: [PATCH #2] RE: [ID 20010528.002] dprofpp: "-R" does not work
1346              From: "Richard Soderberg" <rs@crystalflame.net>
1347              Date: Mon, 28 May 2001 03:56:36 -0700
1348              Message-ID: <NAEKLNAAHLMBPMPNBMLEEEFADFAA.rs@crystalflame.net>
1349      Branch: perl
1350            ! utils/dprofpp.PL
1351 ____________________________________________________________________________
1352 [ 10241] By: jhi                                   on 2001/05/28  13:18:56
1353         Log: Subject: Re: [ID 20010522.003] Time::Local module bug
1354              From: "Stephen P. Potter" <spp@spotter.yi.org>
1355              Date: Tue, 22 May 2001 11:40:25 -0400
1356              Message-Id: <20010522154030.584F4729E2@belgarath.spotter.yi.org>
1357              
1358              Subject: Re: [ID 20010522.003] Time::Local module bug
1359              From: Ronald J Kimball <rjk@linguist.Thayer.dartmouth.edu> 
1360              Date: Tue, 22 May 2001 11:50:19 -0400
1361              Message-ID: <20010522115019.D48634@linguist.thayer.dartmouth.edu>
1362      Branch: perl
1363            ! lib/Time/Local.pm
1364 ____________________________________________________________________________
1365 [ 10240] By: jhi                                   on 2001/05/27  22:44:49
1366         Log: The PERL_DL_NONLAZY can have whitespace in front.
1367      Branch: perl
1368            ! t/lib/extutils.t
1369 ____________________________________________________________________________
1370 [ 10239] By: jhi                                   on 2001/05/27  21:23:21
1371         Log: Document strftime() and strptime().
1372      Branch: perl
1373            ! ext/POSIX/POSIX.pod ext/Time/Piece/Piece.pm t/lib/time-piece.t
1374 ____________________________________________________________________________
1375 [ 10238] By: jhi                                   on 2001/05/27  20:29:07
1376         Log: Make Time::Piece::strptime() to be a function, not a method.
1377      Branch: perl
1378            ! ext/Time/Piece/Piece.pm t/lib/time-piece.t
1379 ____________________________________________________________________________
1380 [ 10237] By: jhi                                   on 2001/05/27  20:22:09
1381         Log: Tweak the test to be more portable.
1382      Branch: perl
1383            ! t/lib/extutils.t
1384 ____________________________________________________________________________
1385 [ 10236] By: jhi                                   on 2001/05/27  19:15:54
1386         Log: Subject: PATCH: Re: Re: Attributes that tie
1387              From: Leon Brocard <acme@astray.com>
1388              Date: Sun, 27 May 2001 12:37:29 +0100
1389              Message-ID: <20010527123729.A22663@ns0.astray.com>
1390              
1391              Document that variable attributes are not currently usable
1392              for tieing.  (An ugly limitation that should be fixed.)
1393      Branch: perl
1394            ! lib/attributes.pm
1395 ____________________________________________________________________________
1396 [ 10235] By: jhi                                   on 2001/05/27  19:03:31
1397         Log: Microperl tweaks.
1398      Branch: perl
1399            ! Makefile.micro uconfig.h uconfig.sh
1400 ____________________________________________________________________________
1401 [ 10234] By: jhi                                   on 2001/05/27  18:22:09
1402         Log: Add make target for microperl (kind of silly, but convenient).
1403      Branch: perl
1404            ! Makefile.SH
1405 ____________________________________________________________________________
1406 [ 10233] By: jhi                                   on 2001/05/27  18:18:56
1407         Log: O_APPEND and O_TRUNC are not portable.  (Not available e.g.
1408              for microperl.)
1409      Branch: perl
1410            ! doio.c
1411 ____________________________________________________________________________
1412 [ 10232] By: jhi                                   on 2001/05/27  17:57:18
1413         Log: Subject: [PATCH] [ID 19991013.005] utime undef, undef, @files  
1414              From: rspier@pobox.com (Robert Spier)
1415              Date: Sat, 26 May 2001 20:05:23 -0400
1416              Message-ID: <15120.17603.148648.12430@rls.cx>
1417              
1418              Subject: Re: [PATCH] [ID 19991013.005] utime undef, undef, @files
1419              From: rspier@pobox.com (Robert Spier)
1420              Date: Sun, 27 May 2001 00:23:12 -0400
1421              Message-ID: <15120.33072.511966.767230@rls.cx>
1422      Branch: perl
1423            ! doio.c pod/perlfunc.pod
1424 ____________________________________________________________________________
1425 [ 10231] By: jhi                                   on 2001/05/27  15:45:20
1426         Log: Regen toc.  (And add the README.tru64 from #10230 to MANIFEST.)
1427      Branch: perl
1428            ! MANIFEST pod/buildtoc.PL pod/perl.pod pod/perltoc.pod
1429 ____________________________________________________________________________
1430 [ 10230] By: jhi                                   on 2001/05/27  15:41:06
1431         Log: Add README.tru64.
1432      Branch: perl
1433            + README.tru64
1434 ____________________________________________________________________________
1435 [ 10229] By: jhi                                   on 2001/05/27  13:50:57
1436         Log: Integrate Locale::Maketext 1.01 from Sean Burke.
1437      Branch: perl
1438            + lib/Locale/Maketext.pm lib/Locale/Maketext.pod
1439            + lib/Locale/Maketext/TPJ13.pod t/lib/lc-maketext.t
1440            ! MANIFEST
1441 ____________________________________________________________________________
1442 [ 10228] By: jhi                                   on 2001/05/27  13:43:38
1443         Log: Integrate I18N::LangTags from Sean Burke.
1444              
1445              TODO: the language list from RFC 3066 needs to be integrated
1446              and made available somehow.  The list is included in the
1447              I18N-LangTags 0.21 distribution, but it is undocumented
1448              and unconnected to the module.
1449      Branch: perl
1450            + lib/I18N/LangTags.pm t/lib/i18n-langtags.t
1451            ! MANIFEST
1452 ____________________________________________________________________________
1453 [ 10227] By: jhi                                   on 2001/05/27  01:41:33
1454         Log: Allow 'eval "v200"' to work (part of 20000323.059); fix as
1455              envisioned by Sarathy.
1456      Branch: perl
1457            ! t/op/ver.t toke.c
1458 ____________________________________________________________________________
1459 [ 10226] By: jhi                                   on 2001/05/27  00:28:34
1460         Log: Subject: [ID 20010525.001] Pod typo nits fixed
1461              From: lvirden@cas.org
1462              Date: Fri, 25 May 2001 06:57:43 -0400 (EDT)
1463              Message-Id: <200105251057.f4PAvhY13003@lwv26awu.cas.org>
1464              
1465              minus the perlsolaris decimation plus the
1466              
1467              Subject: Re: [ID 20010525.001] Pod typo nits fixed
1468              From: "Philip Newton" <Philip.Newton@gmx.net>
1469              Date: Fri, 25 May 2001 18:05:55 +0200
1470              Message-Id: <200105251604.f4PG4kt15034@chaos.wustl.edu>
1471      Branch: perl
1472            ! README.amiga README.cygwin README.mpeix pod/perl5005delta.pod
1473            ! pod/perldebtut.pod pod/perlebcdic.pod pod/perlfaq3.pod
1474            ! pod/perlhack.pod pod/perltoc.pod pod/perltodo.pod
1475            ! pod/perlutil.pod pod/perlxstut.pod
1476 ____________________________________________________________________________
1477 [ 10225] By: jhi                                   on 2001/05/26  22:38:16
1478         Log: return clauses are nice.
1479      Branch: perl
1480            ! sv.c
1481 ____________________________________________________________________________
1482 [ 10224] By: jhi                                   on 2001/05/26  22:35:31
1483         Log: Subject: change 10199 backwards?
1484              From: Doug MacEachern <dougm@covalent.net>
1485              Date: Sat, 26 May 2001 11:26:07 -0700 (PDT)
1486              Message-ID: <Pine.LNX.4.21.0105261118510.22038-100000@mako.covalent.net>
1487      Branch: perl
1488            ! sv.c
1489 ____________________________________________________________________________
1490 [ 10223] By: jhi                                   on 2001/05/26  22:31:46
1491         Log: Subject: Re: 5.6.*, bleadperl: bugs in pp_concat
1492              From: Hugo <hv@crypt.compulink.co.uk>
1493              Date: Sat, 26 May 2001 17:05:12 +0100
1494              Message-Id: <200105261605.RAA12295@crypt.compulink.co.uk>
1495      Branch: perl
1496            + t/op/gmagic.t
1497            ! MANIFEST doop.c embed.h embed.pl global.sym
1498            ! lib/File/Basename.pm objXSUB.h perlapi.c pod/perlapi.pod
1499            ! pp_hot.c proto.h sv.c sv.h t/pragma/warn/pp_hot
1500 ____________________________________________________________________________
1501 [ 10222] By: jhi                                   on 2001/05/26  22:10:38
1502         Log: Regen headers for #10221.
1503      Branch: perl
1504            ! global.sym objXSUB.h perlapi.c
1505 ____________________________________________________________________________
1506 [ 10221] By: jhi                                   on 2001/05/26  22:06:06
1507         Log: Subject: [ID 20010506.012] Patch for 5.6.1 embed.pl (shared libperl&mod_perl)
1508              From: Juha Laiho <juha.laiho@Elma.Net>
1509              Date: Thu, 3 May 2001 09:51:30 +0300
1510              Message-Id: <200105030651.JAA327254@tokka.elma.fi>
1511      Branch: perl
1512            ! embed.pl
1513 ____________________________________________________________________________
1514 [ 10220] By: jhi                                   on 2001/05/26  22:01:30
1515         Log: Subject: Re: [PATCH] Re: stability of sort()?
1516              From: "John P. Linderman" <jpl@research.att.com>
1517              Date: Sat, 26 May 2001 13:27:19 -0400
1518              Message-Id: <200105261727.NAA06654@raptor.research.att.com>
1519      Branch: perl
1520            ! pod/perlfunc.pod
1521 ____________________________________________________________________________
1522 [ 10219] By: jhi                                   on 2001/05/26  14:02:34
1523         Log: Integrate perlio.
1524      Branch: perl
1525           !> pod/perlguts.pod
1526 ____________________________________________________________________________
1527 [ 10218] By: jhi                                   on 2001/05/26  13:39:52
1528         Log: Subject: [PATCH perl@10210] PerlIO for VMS
1529              From: "Craig A. Berry" <craigberry@mac.com>
1530              Date: Sat, 26 May 2001 09:34:11 -0500
1531              Message-Id: <a05100e0ab734816701a5@[172.16.52.1]>
1532      Branch: perl
1533            ! configure.com doio.c iperlsys.h perlio.c perlio.h perliol.h
1534            ! perlsdio.h vms/ext/Stdio/Stdio.xs vms/gen_shrfls.pl vms/vms.c
1535            ! vms/vmsish.h
1536 ____________________________________________________________________________
1537 [ 10217] By: jhi                                   on 2001/05/26  13:19:05
1538         Log: Subject: patch to fix: [ID 20010524.004] perl5db.pl version 1.12  doesn't stop on breakpoints
1539              From: David Dyck <dcd@tc.fluke.com>
1540              Date: Fri, 25 May 2001 00:03:04 -0700 (PDT)
1541              Message-ID: <Pine.LNX.4.33.0105242354030.17331-100000@dd.tc.fluke.com>
1542      Branch: perl
1543            ! lib/perl5db.pl
1544 ____________________________________________________________________________
1545 [ 10216] By: jhi                                   on 2001/05/26  13:17:47
1546         Log: Subject: utf8 regexp tests
1547              From: Hugo <hv@crypt.compulink.co.uk>
1548              Date: Fri, 25 May 2001 22:35:01 +0100
1549              Message-Id: <200105252135.WAA03197@crypt.compulink.co.uk>
1550      Branch: perl
1551            ! t/op/regexp.t
1552 ____________________________________________________________________________
1553 [ 10215] By: jhi                                   on 2001/05/26  13:15:40
1554         Log: Subject: [PATCH] Re: stability of sort()?
1555              From: Nicholas Clark <nick@ccl4.org>
1556              Date: Fri, 25 May 2001 22:40:19 +0100
1557              Message-ID: <20010525224019.B86445@plum.flirble.org>
1558      Branch: perl
1559            ! pod/perlfunc.pod
1560 ____________________________________________________________________________
1561 [ 10214] By: jhi                                   on 2001/05/26  13:14:30
1562         Log: Subject: Re: [ID 20010426.005] Magic not being removed at scope exit [PATCH]
1563              From: John Peacock <jpeacock@rowman.com>
1564              Date: Thu, 24 May 2001 22:14:01 -0400
1565              Message-ID: <3B0DBFE9.A7C49084@rowman.com>
1566      Branch: perl
1567            ! mg.c scope.c sv.c
1568 ____________________________________________________________________________
1569 [ 10213] By: jhi                                   on 2001/05/26  13:08:56
1570         Log: Subject: [PATCH] Re: [PATCH] Re: h2xs [was Re: HEAR YE, HEAR YE!]
1571              From: Nicholas Clark <nick@ccl4.org>
1572              Date: Sun, 20 May 2001 19:24:13 +0100
1573              Message-ID: <20010520192413.G83222@plum.flirble.org>
1574      Branch: perl
1575            + lib/ExtUtils/Constant.pm t/lib/extutils.t
1576            ! MANIFEST utils/h2xs.PL
1577 ____________________________________________________________________________
1578 [ 10212] By: nick                                  on 2001/05/26  09:49:28
1579         Log: Change perlguts docs to not suggest PUSHi etc. for multiple results,
1580              add a few more notes there on use of mortals on the stack.
1581      Branch: perlio
1582            ! pod/perlguts.pod
1583 ____________________________________________________________________________
1584 [ 10211] By: nick                                  on 2001/05/26  09:05:36
1585         Log: Integrate mainline
1586      Branch: perlio
1587           +> t/lib/fcntl.t t/pragma/vars.t
1588           !> (integrate 49 files)
1589 ____________________________________________________________________________
1590 [ 10210] By: jhi                                   on 2001/05/25  12:29:16
1591         Log: Update Changes.
1592      Branch: perl
1593            ! Changes patchlevel.h
1594 ____________________________________________________________________________
1595 [ 10209] By: jhi                                   on 2001/05/25  12:24:45
1596         Log: Based on
1597              
1598              Subject: [PATCH pp.c] Wrapping pack("C",256)
1599              From: Simon Cozens <simon@netthink.co.uk>
1600              Date: Sat, 12 May 2001 17:58:41 +0100
1601              Message-ID: <20010512175841.A6132@netthink.co.uk>
1602      Branch: perl
1603            ! pod/perldiag.pod pp.c t/pragma/warn/pp
1604 ____________________________________________________________________________
1605 [ 10208] By: jhi                                   on 2001/05/25  01:37:03
1606         Log: Subject: [PATCH] 5.6.1 Term::Cap -- add terminfo fallback
1607              From: "Brendan O'Dea" <bod@compusol.com.au>
1608              Date: Fri, 25 May 2001 11:18:29 +1000
1609              Message-ID: <20010525111829.A28411@compusol.com.au>
1610              
1611              (Slightly modified.)
1612      Branch: perl
1613            ! lib/Term/Cap.pm
1614 ____________________________________________________________________________
1615 [ 10207] By: jhi                                   on 2001/05/25  01:12:14
1616         Log: Subject: Re: [ID 20010506.041] segfault when matching utf8 string 
1617              From: Hugo <hv@crypt.compulink.co.uk>
1618              Date: Fri, 25 May 2001 02:13:25 +0100
1619              Message-Id: <200105250113.CAA23158@crypt.compulink.co.uk>
1620      Branch: perl
1621            ! t/op/misc.t
1622 ____________________________________________________________________________
1623 [ 10206] By: jhi                                   on 2001/05/25  01:07:59
1624         Log: Subject: Re: [ID 20010506.041] segfault when matching utf8 string
1625              From: Inaba Hiroto <hiroto.inaba@toshiba.co.jp>
1626              Date: Fri, 25 May 2001 10:25:36 +0900
1627              Message-Id: <200105250124.KAA19571@toshiba.co.jp> 
1628      Branch: perl
1629            ! regcomp.c regexec.c
1630 ____________________________________________________________________________
1631 [ 10205] By: jhi                                   on 2001/05/25  01:07:00
1632         Log: Subject: [PATCH #2] stash autovivification and method call error messages
1633              From: Ilmari Karonen <iltzu@sci.fi>
1634              Date: Thu, 24 May 2001 01:51:48 +0300 (EET DST)
1635              Message-ID: <Pine.SOL.3.96.1010524013737.18819D-100000@simpukka>
1636      Branch: perl
1637            ! gv.c pp_hot.c t/op/method.t
1638 ____________________________________________________________________________
1639 [ 10204] By: jhi                                   on 2001/05/25  01:03:50
1640         Log: Add make target and documentation for gprof profiling.
1641      Branch: perl
1642            ! Makefile.SH pod/perlhack.pod
1643 ____________________________________________________________________________
1644 [ 10203] By: jhi                                   on 2001/05/24  21:09:36
1645         Log: Subject: Don't think about UTF8 
1646              From: Mike Guy <mjtg@cam.ac.uk> 
1647              Date: Tue, 22 May 2001 14:35:39 +0100
1648              Message-Id: <E152CK3-00028O-00@virgo.cus.cam.ac.uk>
1649      Branch: perl
1650            ! sv.h
1651 ____________________________________________________________________________
1652 [ 10202] By: jhi                                   on 2001/05/24  21:07:25
1653         Log: Subject: [ID 20010524.002] find2perl bug in fileglob_to_re
1654              From: Geraint A Edwards <gedge@serf.org> 
1655              Date: Thu, 24 May 2001 22:51:24 +0100
1656              Message-Id: <20010524225124.A34981@cymru.serf.org>
1657      Branch: perl
1658            ! x2p/find2perl.PL
1659 ____________________________________________________________________________
1660 [ 10201] By: jhi                                   on 2001/05/24  21:02:30
1661         Log: DB_File has its own attribute story.
1662      Branch: perl
1663            ! ext/DB_File/DB_File.xs
1664 ____________________________________________________________________________
1665 [ 10200] By: jhi                                   on 2001/05/24  19:54:21
1666         Log: Subject: Re: Making perl with -Wall
1667              From: Andy Dougherty <doughera@lafayette.edu>
1668              Date: Thu, 24 May 2001 14:33:37 -0400 (EDT)
1669              Message-ID: <Pine.SOL.4.10.10105241415460.2443-100000@maxwell.phys.lafayette.edu>
1670      Branch: perl
1671            ! perl.h
1672 ____________________________________________________________________________
1673 [ 10199] By: jhi                                   on 2001/05/24  15:15:03
1674         Log: Subject: RE: [ID 20010521.003] - [PATCH #2] sv.c: sv_dup_inc(SvRV(sstr)) wasn't checking SvWEAKREF
1675              From: "Richard Soderberg" <rs@crystalflame.net>
1676              Date: Thu, 24 May 2001 08:58:16 -0700
1677              Message-ID: <NAEKLNAAHLMBPMPNBMLEOEPODEAA.rs@crystalflame.net>
1678      Branch: perl
1679            ! sv.c
1680 ____________________________________________________________________________
1681 [ 10198] By: jhi                                   on 2001/05/24  15:10:04
1682         Log: IV/UV casting fixes from Nicholas Clark.
1683      Branch: perl
1684            ! perl.h pp_sys.c util.c
1685 ____________________________________________________________________________
1686 [ 10197] By: jhi                                   on 2001/05/24  14:19:44
1687         Log: Subject: Re: Making perl with -Wall
1688              From: Michael G Schwern <schwern@pobox.com>
1689              Date: Thu, 24 May 2001 15:40:28 +0100
1690              Message-ID: <20010524154028.B1988@blackrider.blackstar.co.uk>
1691      Branch: perl
1692            ! malloc.c perl.h
1693 ____________________________________________________________________________
1694 [ 10196] By: jhi                                   on 2001/05/24  14:04:41
1695         Log: Subject: [PATCH] Re: [ID 20010521.004] Two test suite failures on this platform with latest rsync 
1696              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
1697              Date: Tue, 22 May 2001 11:49:37 +0200
1698              Message-Id: <20010522114044.BC4E.H.M.BRAND@hccnet.nl>
1699      Branch: metaconfig
1700            ! U/modified/Oldsym.U
1701      Branch: metaconfig/U/perl
1702            ! patchlevel.U
1703      Branch: perl
1704            ! Configure config_h.SH myconfig.SH
1705 ____________________________________________________________________________
1706 [ 10195] By: jhi                                   on 2001/05/24  13:25:04
1707         Log: Under versiononly install also the scripts with the version suffix.
1708              (e.g. .../bin/h2xs5.7.1)
1709      Branch: perl
1710            ! installperl
1711 ____________________________________________________________________________
1712 [ 10194] By: jhi                                   on 2001/05/24  13:02:49
1713         Log: Subject: [PATCH] Stop segfault in mg.c:636
1714              From: "Richard Soderberg" <rs@crystalflame.net>
1715              Date: Thu, 24 May 2001 05:51:52 -0700
1716              Message-ID: <NAEKLNAAHLMBPMPNBMLEGEPGDEAA.rs@crystalflame.net>
1717      Branch: perl
1718            ! mg.c
1719 ____________________________________________________________________________
1720 [ 10193] By: jhi                                   on 2001/05/24  12:37:13
1721         Log: Iteration continues; hopefully convergently.
1722      Branch: perl
1723            ! t/lib/b-stash.t
1724 ____________________________________________________________________________
1725 [ 10192] By: jhi                                   on 2001/05/24  12:36:35
1726         Log: Subject: [PATCH] CORE::GLOBAL::require override happens too early
1727              From: Gisle Aas <gisle@ActiveState.com>
1728              Date: 23 May 2001 16:13:10 -0700
1729              Message-ID: <lrofsjfym1.fsf@caliper.ActiveState.com>
1730      Branch: perl
1731            ! op.c toke.c
1732 ____________________________________________________________________________
1733 [ 10191] By: jhi                                   on 2001/05/24  12:25:12
1734         Log: Subject: [PATCH] lib/dumpvar.pl, lib/perl5db.pl - fix warnings
1735              From: "Daniel S. Lewart" <d-lewart@uiuc.edu>
1736              Date: Thu, 24 May 2001 05:05:22 -0500
1737              Message-ID: <20010524050522.A18997@staff1.cso.uiuc.edu>
1738      Branch: perl
1739            ! lib/dumpvar.pl lib/perl5db.pl
1740 ____________________________________________________________________________
1741 [ 10190] By: jhi                                   on 2001/05/24  12:24:07
1742         Log: Subject: Re: [ID 20010524.001] perl5db.pl   x @INC  doesn't work like it used to
1743              From: David Dyck <dcd@tc.fluke.com>
1744              Date: Thu, 24 May 2001 01:42:09 -0700 (PDT)
1745              Message-ID: <Pine.LNX.4.33.0105240134580.5179-100000@dd.tc.fluke.com>
1746      Branch: perl
1747            ! lib/perl5db.pl
1748 ____________________________________________________________________________
1749 [ 10189] By: jhi                                   on 2001/05/23  22:43:31
1750         Log: Tiny pod nits on READMEs, mostly whitespace issues.
1751      Branch: perl
1752            ! README.amiga README.dos README.macos README.mpeix README.vmesa
1753            ! README.win32
1754 ____________________________________________________________________________
1755 [ 10188] By: jhi                                   on 2001/05/23  22:26:03
1756         Log: The DG/UX part of the 20010521.005.
1757      Branch: perl
1758            ! README.dgux
1759 ____________________________________________________________________________
1760 [ 10187] By: jhi                                   on 2001/05/23  22:04:05
1761         Log: Subject: Re: [ID 20000716.007] \G in a m//g expression causes problems 
1762              From: Hugo <hv@crypt.compulink.co.uk>
1763              Date: Mon, 21 May 2001 16:32:02 +0100
1764              Message-Id: <200105211532.QAA03999@crypt.compulink.co.uk>
1765      Branch: perl
1766            ! regcomp.c t/op/misc.t
1767 ____________________________________________________________________________
1768 [ 10186] By: jhi                                   on 2001/05/23  21:42:15
1769         Log: Subject: [PATCH] Extra UNIVERSAL tests
1770              From: Mike Guy <mjtg@cam.ac.uk>
1771              Date: Wed, 23 May 2001 12:29:20 +0100
1772              Message-Id: <E152WpM-0001yP-00@virgo.cus.cam.ac.uk>
1773      Branch: perl
1774            ! t/op/universal.t
1775 ____________________________________________________________________________
1776 [ 10185] By: jhi                                   on 2001/05/23  21:38:48
1777         Log: Subject: [PATCH] Remove EQ keyword
1778              From: Mike Guy <mjtg@cam.ac.uk>
1779              Message-Id: <E152Vhp-00072x-00@virgo.cus.cam.ac.uk>
1780              Date: Wed, 23 May 2001 11:17:29 +0100
1781      Branch: perl
1782            ! keywords.h keywords.pl
1783 ____________________________________________________________________________
1784 [ 10184] By: jhi                                   on 2001/05/23  21:29:41
1785         Log: Subject: [PATCH] lib/perl5db.pl
1786              From: "Daniel S. Lewart" <d-lewart@uiuc.edu>
1787              Date: Wed, 23 May 2001 02:18:03 -0500
1788              Message-ID: <20010523021803.A21965@staff1.cso.uiuc.edu>
1789      Branch: perl
1790            ! lib/perl5db.pl
1791 ____________________________________________________________________________
1792 [ 10183] By: jhi                                   on 2001/05/23  21:27:54
1793         Log: Subject: [PATCH lib/Term/Cap.pm] Avoid -W warnings in Tgetent and Tputs
1794              From: "Daniel S. Lewart" <d-lewart@uiuc.edu>
1795              Date: Tue, 22 May 2001 23:34:41 -0500
1796              Message-ID: <20010522233441.A12431@staff1.cso.uiuc.edu>
1797      Branch: perl
1798            ! lib/Term/Cap.pm
1799 ____________________________________________________________________________
1800 [ 10182] By: jhi                                   on 2001/05/23  21:24:30
1801         Log: Subject: [PATCH emacs/e2ctags.pl] big speedup
1802              From: davem@fdgroup.co.uk
1803              Date: Tue, 22 May 2001 22:08:09 +0100 (BST)
1804              Message-Id: <200105222108.WAA09442@gizmo.fdgroup.co.uk>
1805      Branch: perl
1806            ! emacs/e2ctags.pl
1807 ____________________________________________________________________________
1808 [ 10181] By: jhi                                   on 2001/05/23  21:23:29
1809         Log: Subject: [PATCH lib/vars.pm] Sensible minimum version
1810              From: Michael G Schwern <schwern@pobox.com>
1811              Date: Tue, 22 May 2001 14:15:09 +0100
1812              Message-ID: <20010522141509.J701@blackrider.blackstar.co.uk>
1813      Branch: perl
1814            ! lib/vars.pm
1815 ____________________________________________________________________________
1816 [ 10180] By: jhi                                   on 2001/05/23  21:22:14
1817         Log: Subject: [PATCH lib/vars.pm] Odd code nit
1818              From: Michael G Schwern <schwern@pobox.com>
1819              Date: Tue, 22 May 2001 14:14:28 +0100
1820              Message-ID: <20010522141427.I701@blackrider.blackstar.co.uk>
1821      Branch: perl
1822            ! lib/vars.pm
1823 ____________________________________________________________________________
1824 [ 10179] By: jhi                                   on 2001/05/23  21:19:51
1825         Log: Use the new use vars feature.
1826      Branch: perl
1827            ! t/lib/b-stash.t
1828 ____________________________________________________________________________
1829 [ 10178] By: jhi                                   on 2001/05/23  21:19:28
1830         Log: Subject: [PATCH] vars.pm to support qualified variables (was Re: [ID 20010521.001])
1831              From: Mike Guy <mjtg@cam.ac.uk>
1832              Sender: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
1833              Date: Tue, 22 May 2001 13:11:39 +0100
1834      Branch: perl
1835            + t/pragma/vars.t
1836            ! MANIFEST lib/vars.pm t/lib/1_compile.t
1837 ____________________________________________________________________________
1838 [ 10177] By: jhi                                   on 2001/05/23  21:01:48
1839         Log: -qlongdouble considered harmful by Merijn.
1840      Branch: perl
1841            ! hints/aix.sh
1842 ____________________________________________________________________________
1843 [ 10176] By: jhi                                   on 2001/05/21  13:21:21
1844         Log: Update Changes.
1845      Branch: perl
1846            ! Changes patchlevel.h
1847 ____________________________________________________________________________
1848 [ 10175] By: jhi                                   on 2001/05/21  13:17:28
1849         Log: Add a test of its very own for Fcntl.  Hopefully portable.
1850      Branch: perl
1851            + t/lib/fcntl.t
1852            ! MANIFEST
1853 ____________________________________________________________________________
1854 [ 10174] By: jhi                                   on 2001/05/21  12:45:41
1855         Log: Must be trickier for 'minitest' not to die.
1856      Branch: perl
1857            ! t/op/taint.t
1858 ____________________________________________________________________________
1859 [ 10173] By: jhi                                   on 2001/05/21  11:24:43
1860         Log: Can't declare other people's variables.
1861      Branch: perl
1862            ! t/lib/b-stash.t
1863 ____________________________________________________________________________
1864 [ 10172] By: jhi                                   on 2001/05/20  20:33:08
1865         Log: Fix for ID 20010519.003: sysopen() wasn't tainting :-(
1866      Branch: perl
1867            ! doio.c t/op/taint.t
1868 ____________________________________________________________________________
1869 [ 10171] By: jhi                                   on 2001/05/20  20:18:45
1870         Log: The OS/2 variable needs to be declared.
1871      Branch: perl
1872            ! t/lib/b-stash.t
1873 ____________________________________________________________________________
1874 [ 10170] By: nick                                  on 2001/05/20  16:48:29
1875         Log: Integrate mainline
1876      Branch: perlio
1877           !> (integrate 41 files)
1878 ____________________________________________________________________________
1879 [ 10169] By: jhi                                   on 2001/05/20  11:50:20
1880         Log: Small perlsec updates: clarify the taintedness of filename
1881              globbing; suggest using Scalar::Util::tainted().
1882      Branch: perl
1883            ! pod/perlsec.pod
1884 ____________________________________________________________________________
1885 [ 10168] By: jhi                                   on 2001/05/20  11:24:11
1886         Log: Subject: [PATCH 5.7.1@10135] [LARGE!] symbolic magic
1887              From: Dave Mitchell <davem@fdgroup.co.uk>
1888              Date: Sat, 19 May 2001 20:12:56 +0100 (BST)
1889              Message-Id: <200105191912.UAA23925@gizmo.fdgroup.co.uk>
1890      Branch: perl
1891            ! av.c cc_runtime.h doop.c dump.c gv.c hv.c mg.c op.c perl.c
1892            ! perl.h perlio.c pod/perlguts.pod pp.c pp_ctl.c pp_hot.c
1893            ! pp_sys.c regexec.c scope.c sv.c t/lib/peek.t taint.c util.c
1894            ! xsutils.c
1895 ____________________________________________________________________________
1896 [ 10167] By: jhi                                   on 2001/05/20  11:12:14
1897         Log: Subject: [PATCH 5.6.1] DLL descriptions on OS/2
1898              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
1899              Date: Sat, 19 May 2001 04:08:46 -0400
1900              Message-ID: <20010519040846.A16969@math.ohio-state.edu>
1901      Branch: perl
1902            ! lib/ExtUtils/Mksymlists.pm makedef.pl
1903 ____________________________________________________________________________
1904 [ 10166] By: jhi                                   on 2001/05/20  11:08:27
1905         Log: Subject: [PATCH 5.6.1] DLL name mangling on OS/2
1906              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
1907              Date: Sat, 19 May 2001 04:30:45 -0400
1908              Message-ID: <20010519043045.A17033@math.ohio-state.edu>
1909      Branch: perl
1910            ! os2/os2.c
1911 ____________________________________________________________________________
1912 [ 10165] By: jhi                                   on 2001/05/20  11:07:06
1913         Log: Subject: [PATCH 5.6.1] build bugs OS/2
1914              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
1915              Date: Sat, 19 May 2001 04:35:28 -0400
1916              Message-ID: <20010519043528.A17363@math.ohio-state.edu>
1917      Branch: perl
1918            ! os2/Makefile.SHs os2/os2.c
1919 ____________________________________________________________________________
1920 [ 10164] By: jhi                                   on 2001/05/20  11:06:01
1921         Log: Subject: [PATCH 5.6.1] Mis-Failing tests
1922              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
1923              Date: Sat, 19 May 2001 04:04:23 -0400
1924              Message-ID: <20010519040423.A16861@math.ohio-state.edu>
1925              
1926              (In bleadperl patched b-stash.t instead of b.t)
1927      Branch: perl
1928            ! t/lib/b-stash.t t/lib/bigfltpm.t
1929 ____________________________________________________________________________
1930 [ 10163] By: jhi                                   on 2001/05/20  10:59:46
1931         Log: Subject: [PATCH 5.6.1] perl5db
1932              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
1933              Date: Sat, 19 May 2001 03:49:09 -0400
1934              Message-ID: <20010519034909.A14902@math.ohio-state.edu>
1935      Branch: perl
1936            ! lib/perl5db.pl
1937 ____________________________________________________________________________
1938 [ 10162] By: jhi                                   on 2001/05/20  10:58:18
1939         Log: Subject: [PATCH] require $mod where $mod has touched numeric context
1940              From: Gisle Aas <gisle@ActiveState.com>
1941              Date: 18 May 2001 14:24:51 -0700
1942              Message-ID: <lr3da2cpuk.fsf@caliper.ActiveState.com>
1943      Branch: perl
1944            ! pp_ctl.c
1945 ____________________________________________________________________________
1946 [ 10161] By: jhi                                   on 2001/05/20  10:57:00
1947         Log: Subject: [PATCH] Chomp should not always stringify
1948              From: Gisle Aas <gisle@ActiveState.com>
1949              Date: 18 May 2001 07:55:25 -0700
1950              Message-ID: <lrk83eogf6.fsf@caliper.ActiveState.com>
1951      Branch: perl
1952            ! doop.c t/op/chop.t
1953 ____________________________________________________________________________
1954 [ 10160] By: jhi                                   on 2001/05/20  10:49:40
1955         Log: Integrate perlio.
1956      Branch: perl
1957           !> pod/perlfunc.pod
1958 ____________________________________________________________________________
1959 [ 10159] By: nick                                  on 2001/05/20  09:39:46
1960         Log: Document some more of open's features.
1961      Branch: perlio
1962            ! pod/perlfunc.pod
1963 ____________________________________________________________________________
1964 [ 10158] By: gsar                                  on 2001/05/18  18:43:38
1965         Log: back out change#10153 (it has compatibility issues such as the
1966              changed behavior of /[~%@+-]/, and after talking to Jarkko, the
1967              benefit for 5.6.x doesn't seem worth the risk)
1968      Branch: maint-5.6/perl
1969            ! toke.c
1970 ____________________________________________________________________________
1971 [ 10157] By: jhi                                   on 2001/05/18  17:05:40
1972         Log: \$escaping the $vars in !GROK!THIS! section is a good idea.
1973      Branch: perl
1974            ! x2p/s2p.PL
1975 ____________________________________________________________________________
1976 [ 10156] By: jhi                                   on 2001/05/18  12:06:40
1977         Log: Update Changes.
1978      Branch: perl
1979            ! Changes patchlevel.h
1980 ____________________________________________________________________________
1981 [ 10155] By: jhi                                   on 2001/05/18  11:58:57
1982         Log: Integrate change #10144 from maintperl.
1983              
1984              s/CONFIGDOTSH/PERL_CONFIG_SH/ for Win32, too.
1985      Branch: perl
1986           !> win32/config.bc win32/config.gc win32/config.vc
1987           !> win32/config_H.bc win32/config_H.gc win32/config_H.vc
1988 ____________________________________________________________________________
1989 [ 10154] By: nick                                  on 2001/05/18  07:23:03
1990         Log: Integrate mainline.
1991      Branch: perlio
1992           +> README.dgux t/lib/i18n-collate.t utils.lst
1993           !> (integrate 49 files)
1994 ____________________________________________________________________________
1995 [ 10153] By: jhi                                   on 2001/05/18  00:41:51
1996         Log: Integrate change #7224 from mainline into maintperl.
1997              
1998              Allow @+ and @- to be doublequoted, from Simon Cozens. 
1999              (Approved by Larry, see Tom's comment in 20000830.005.)
2000      Branch: maint-5.6/perl
2001           !> toke.c
2002 ____________________________________________________________________________
2003 [ 10152] By: jhi                                   on 2001/05/17  23:18:15
2004         Log: Subject: [PATCH bleadperl] small lookbehind fix
2005              From: Hugo <hv@crypt.compulink.co.uk>
2006              Date: Fri, 18 May 2001 00:07:19 +0100
2007              Message-Id: <200105172307.AAA06142@crypt.compulink.co.uk>
2008      Branch: perl
2009            ! regexec.c
2010 ____________________________________________________________________________
2011 [ 10151] By: jhi                                   on 2001/05/17  22:00:06
2012         Log: Detypos.
2013      Branch: perl
2014            ! installman utils.lst
2015 ____________________________________________________________________________
2016 [ 10150] By: jhi                                   on 2001/05/17  20:32:48
2017         Log: Add better debug to glob/basic #8 as suggested by Nick Clark
2018              in 20001222.001.
2019      Branch: perl
2020            ! t/lib/glob-basic.t
2021 ____________________________________________________________________________
2022 [ 10149] By: jhi                                   on 2001/05/17  20:08:58
2023         Log: Subject: [PATCH] Test for bug 20010515.004
2024              From: Benjamin Sugars <bsugars@canoe.ca>
2025              Date: Thu, 17 May 2001 15:48:18 -0400 (EDT)
2026              Message-ID: <Pine.LNX.4.21.0105171544270.9064-100000@marmot.rim.canoe.ca>
2027      Branch: perl
2028            ! t/op/misc.t
2029 ____________________________________________________________________________
2030 [ 10148] By: jhi                                   on 2001/05/17  20:06:23
2031         Log: Integrate #10145 from maintperl.
2032              
2033              fix for ID 20010515.004 (needs test)
2034      Branch: perl
2035           !> pp_hot.c
2036 ____________________________________________________________________________
2037 [ 10147] By: jhi                                   on 2001/05/17  19:10:46
2038         Log: Thinko noticed by Doug MacEachern.
2039      Branch: perl
2040            ! thread.h
2041 ____________________________________________________________________________
2042 [ 10146] By: jhi                                   on 2001/05/17  17:30:37
2043         Log: Subject: Re: [PATCH] HERE mark in regex
2044              From: Ronald J Kimball <rjk@linguist.Thayer.dartmouth.edu>
2045              Date: Thu, 17 May 2001 12:20:33 -0400
2046              Message-ID: <20010517122033.B1547290@linguist.thayer.dartmouth.edu> 
2047      Branch: perl
2048            ! t/op/re_tests
2049 ____________________________________________________________________________
2050 [ 10145] By: gsar                                  on 2001/05/17  16:59:55
2051         Log: fix for ID 20010515.004 (needs test)
2052      Branch: maint-5.6/perl
2053            ! pp_hot.c
2054 ____________________________________________________________________________
2055 [ 10144] By: gsar                                  on 2001/05/17  16:39:02
2056         Log: s/CONFIGDOTSH/PERL_CONFIG_SH/g
2057      Branch: maint-5.6/perl
2058            ! win32/config.bc win32/config.gc win32/config.vc
2059            ! win32/config_H.bc win32/config_H.gc win32/config_H.vc
2060 ____________________________________________________________________________
2061 [ 10143] By: jhi                                   on 2001/05/17  14:21:08
2062         Log: Macrofy the getspecific (and use it also in util.c)
2063      Branch: perl
2064            ! thread.h util.c
2065 ____________________________________________________________________________
2066 [ 10142] By: jhi                                   on 2001/05/17  01:43:50
2067         Log: Use the unchecked thread-specific key fetch also in Tru64.
2068      Branch: perl
2069            ! thread.h
2070 ____________________________________________________________________________
2071 [ 10141] By: jhi                                   on 2001/05/17  01:41:07
2072         Log: Subject: [PATCH 5.6.1]Quick thread speedup
2073              From: Dan Sugalski <dan@sidhe.org> 
2074              Date: Wed, 16 May 2001 18:05:19 -0400
2075              Message-Id: <5.1.0.14.0.20010516175826.01afde08@24.8.96.48>
2076      Branch: perl
2077            ! thread.h util.c
2078 ____________________________________________________________________________
2079 [ 10140] By: jhi                                   on 2001/05/16  19:58:29
2080         Log: I think this is quite enough testing for a deprecated feature.
2081      Branch: perl
2082            + t/lib/i18n-collate.t
2083            ! MANIFEST t/lib/1_compile.t
2084 ____________________________________________________________________________
2085 [ 10139] By: jhi                                   on 2001/05/16  18:47:03
2086         Log: More HP-UX lore from Jeff Okamoto.
2087      Branch: perl
2088            ! README.hpux
2089 ____________________________________________________________________________
2090 [ 10138] By: jhi                                   on 2001/05/16  18:21:04
2091         Log: Sort utils.lst for easier maintenance.
2092      Branch: perl
2093            ! utils.lst
2094 ____________________________________________________________________________
2095 [ 10137] By: jhi                                   on 2001/05/16  18:12:01
2096         Log: Subject: Re: [PATCH] Abstract "utility" information from installman
2097              From: Tim Jenness <t.jenness@jach.hawaii.edu>
2098              Date: Wed, 16 May 2001 08:59:59 -1000 (HST)
2099              Message-ID: <Pine.LNX.4.33.0105160858480.2488-100000@lapaki.jach.hawaii.edu>
2100              
2101              Add pod2latex to utils.lst.
2102      Branch: perl
2103            ! MANIFEST utils.lst
2104 ____________________________________________________________________________
2105 [ 10136] By: jhi                                   on 2001/05/16  18:00:00
2106         Log: Subject: Re: [PATCH] HERE mark in regex
2107              From: Ronald J Kimball <rjk@linguist.Thayer.dartmouth.edu>
2108              Date: Wed, 16 May 2001 13:04:43 -0400
2109              Message-ID: <20010516130443.E1516273@linguist.thayer.dartmouth.edu> 
2110      Branch: perl
2111            ! pod/perldiag.pod regcomp.c t/op/misc.t t/op/re_tests
2112            ! t/op/regmesg.t t/pragma/warn/regcomp
2113 ____________________________________________________________________________
2114 [ 10135] By: jhi                                   on 2001/05/16  17:51:50
2115         Log: Subject: Re: [PATCH] Abstract "utility" information from installman
2116              From: Simon Cozens <simon@netthink.co.uk>
2117              Date: Wed, 16 May 2001 18:02:08 +0100
2118              Message-ID: <20010516180208.A6458@netthink.co.uk>
2119      Branch: perl
2120            ! installman utils.lst
2121 ____________________________________________________________________________
2122 [ 10134] By: jhi                                   on 2001/05/16  17:47:26
2123         Log: Subject: Re: [ID 20010515.001] -DPERL_Y2KWARN doesn't do what it should (Not OK: perl v5.7.1 +DEVEL10104 on i586-linux 2.2.16-22 (UNINST
2124              From: "Philip Newton" <pnewton@gmx.de>
2125              Date: Tue, 15 May 2001 15:09:30 +0200
2126              Message-ID: <3B0146AA.2839.17BFDA6@localhost>
2127              
2128              Test case for #10128.
2129      Branch: perl
2130            ! t/pragma/warn/pp_hot
2131 ____________________________________________________________________________
2132 [ 10133] By: jhi                                   on 2001/05/16  15:12:52
2133         Log: Update Changes.
2134      Branch: perl
2135            ! Changes patchlevel.h
2136 ____________________________________________________________________________
2137 [ 10132] By: jhi                                   on 2001/05/16  14:50:55
2138         Log: Deprecate pseudo-hashes.
2139      Branch: perl
2140            ! pod/perl572delta.pod pod/perlref.pod pod/perltodo.pod
2141 ____________________________________________________________________________
2142 [ 10131] By: jhi                                   on 2001/05/16  14:26:01
2143         Log: HP-UX hints update from Merijn.
2144      Branch: perl
2145            ! hints/hpux.sh
2146 ____________________________________________________________________________
2147 [ 10130] By: jhi                                   on 2001/05/16  14:23:01
2148         Log: README.hpux update from Merijn.
2149      Branch: perl
2150            ! README.hpux
2151 ____________________________________________________________________________
2152 [ 10129] By: jhi                                   on 2001/05/16  14:18:56
2153         Log: Subject: Re: [PATCH] Abstract "utility" information from installman
2154              From: Simon Cozens <simon@netthink.co.uk>
2155              Date: Wed, 16 May 2001 15:57:55 +0100
2156              Message-ID: <20010516155755.A4728@netthink.co.uk>
2157      Branch: perl
2158            + utils.lst
2159            ! MANIFEST installman installperl
2160 ____________________________________________________________________________
2161 [ 10128] By: jhi                                   on 2001/05/16  14:15:36
2162         Log: Subject: Re: [ID 20010515.001] -DPERL_Y2KWARN doesn't do what it should (Not OK: perl v5.7.1 +DEVEL10104 on i586-linux 2.2.16-22 (UNINST
2163              From: "Philip Newton" <pnewton@gmx.de>
2164              Date: Tue, 15 May 2001 16:31:05 +0200
2165              Message-ID: <3B0159C9.1905.1C6AEF9@localhost>
2166              
2167              Fix PERL_Y2KWARN test to check before rather than after appending.
2168      Branch: perl
2169            ! pp_hot.c
2170 ____________________________________________________________________________
2171 [ 10127] By: jhi                                   on 2001/05/16  14:08:15
2172         Log: Regen Porting stuff.
2173      Branch: perl
2174            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
2175            ! config_h.SH
2176 ____________________________________________________________________________
2177 [ 10126] By: jhi                                   on 2001/05/16  13:41:50
2178         Log: Metaconfig unit change for #10125.
2179      Branch: metaconfig
2180            ! U/modified/Oldconfig.U
2181 ____________________________________________________________________________
2182 [ 10125] By: jhi                                   on 2001/05/16  13:41:35
2183         Log: Use OSVERS.
2184      Branch: perl
2185            ! Configure config_h.SH perl.c
2186 ____________________________________________________________________________
2187 [ 10124] By: jhi                                   on 2001/05/16  13:41:09
2188         Log: Regen toc.
2189      Branch: perl
2190            ! pod/buildtoc.PL pod/perl.pod pod/perltoc.pod
2191 ____________________________________________________________________________
2192 [ 10123] By: jhi                                   on 2001/05/16  13:25:38
2193         Log: Adding the README.dgux to the MANIFEST would be a good idea.
2194      Branch: perl
2195            ! MANIFEST
2196 ____________________________________________________________________________
2197 [ 10122] By: jhi                                   on 2001/05/16  13:08:33
2198         Log: Move the stack desire definition to thread.h.
2199      Branch: perl
2200            ! ext/Thread/Thread.xs thread.h
2201 ____________________________________________________________________________
2202 [ 10121] By: jhi                                   on 2001/05/16  13:00:12
2203         Log: DG-UX threading patches, including a README.dgux,
2204              from Takis Psarogiannakopoulos.
2205      Branch: perl
2206            + README.dgux
2207            ! config_h.SH ext/Thread/Thread.xs hints/dgux.sh perl.c
2208 ____________________________________________________________________________
2209 [ 10120] By: jhi                                   on 2001/05/16  12:55:33
2210         Log: Subject: [PATCH B::Deparse] More on /x regexes
2211              From: Robin Houston <robin@kitsite.com>
2212              Date: Tue, 15 May 2001 19:09:35 +0100
2213              Message-ID: <20010515190935.A27268@penderel>
2214      Branch: perl
2215            ! ext/B/B/Deparse.pm
2216 ____________________________________________________________________________
2217 [ 10119] By: jhi                                   on 2001/05/16  12:45:29
2218         Log: Document that the core time() may be rounding rather
2219              than truncating, would have saved at least my confusion.
2220      Branch: perl
2221            ! ext/Time/HiRes/HiRes.pm
2222 ____________________________________________________________________________
2223 [ 10118] By: jhi                                   on 2001/05/16  12:37:57
2224         Log: Subject: perl-current/t/time-hires.t
2225              From: John Peacock <jpeacock@rowman.com>
2226              Date: Fri, 11 May 2001 14:09:41 -0400
2227              Message-ID: <3AFC2AE5.5E787E54@rowman.com>
2228      Branch: perl
2229            ! t/lib/time-hires.t
2230 ____________________________________________________________________________
2231 [ 10117] By: jhi                                   on 2001/05/15  13:40:33
2232         Log: Subject: [PATCH dump.c] Op private flags
2233              From: Simon Cozens <simon@netthink.co.uk>
2234              Date: Sun, 13 May 2001 20:20:36 +0100
2235              Message-ID: <20010513202036.A21896@netthink.co.uk>
2236      Branch: perl
2237            ! dump.c
2238 ____________________________________________________________________________
2239 [ 10116] By: jhi                                   on 2001/05/15  13:28:26
2240         Log: Upgrade to Switch 2.03.
2241      Branch: perl
2242            ! lib/Switch.pm
2243 ____________________________________________________________________________
2244 [ 10115] By: jhi                                   on 2001/05/15  13:19:01
2245         Log: Integrate change #10113 from mainline: rename CONFIGDOTSH
2246              to PERL_CONFIG_SH and use it consistently.
2247      Branch: maint-5.6/perl
2248           !> Configure Makefile.SH Policy_sh.SH cflags.SH config_h.SH
2249           !> configpm configure.com makeaperl.SH makedepend.SH makedir.SH
2250           !> myconfig.SH writemain.SH
2251 ____________________________________________________________________________
2252 [ 10114] By: jhi                                   on 2001/05/15  13:13:21
2253         Log: Metaconfig units changes for #10113.
2254      Branch: metaconfig
2255            ! U/modified/Config_h.U U/modified/Extract.U U/modified/Oldsym.U
2256 ____________________________________________________________________________
2257 [ 10113] By: jhi                                   on 2001/05/15  13:12:40
2258         Log: The problem described in 20010514.031 still wasn't
2259              fully cured, there were remnants of $CONFIG when
2260              $CONFIGDOTSH was expected.  Now renamed to PERL_CONFIG_SH
2261              to avoid future conflicts.
2262      Branch: perl
2263            ! Configure Makefile.SH Policy_sh.SH cflags.SH config_h.SH
2264            ! configpm configure.com makeaperl.SH makedepend.SH makedir.SH
2265            ! myconfig.SH writemain.SH
2266 ____________________________________________________________________________
2267 [ 10112] By: jhi                                   on 2001/05/15  11:55:44
2268         Log: Half of #10107 got lost.
2269      Branch: perl
2270            ! ext/B/B/Deparse.pm
2271 ____________________________________________________________________________
2272 [ 10111] By: nick                                  on 2001/05/15  08:39:14
2273         Log: Integrate mainline.
2274      Branch: perlio
2275           +> ext/POSIX/hints/uts.pl
2276            - Todo Todo-5.6 t/camel-III/vstring.t
2277           !> (integrate 48 files)
2278 ____________________________________________________________________________
2279 [ 10110] By: jhi                                   on 2001/05/15  02:04:05
2280         Log: Subject: [PATCH TestInit.pm] Give Deparse tester a fair chance
2281              From: Robin Houston <robin@kitsite.com>
2282              Date: Mon, 14 May 2001 22:27:08 +0100
2283              Message-ID: <20010514222708.A22963@penderel>
2284      Branch: perl
2285            ! t/TestInit.pm
2286 ____________________________________________________________________________
2287 [ 10109] By: jhi                                   on 2001/05/15  02:03:12
2288         Log: Subject: [PATCH B::Deparse] Lvaluable method calls
2289              From: Robin Houston <robin@kitsite.com>
2290              Date: Mon, 14 May 2001 22:16:43 +0100
2291              Message-ID: <20010514221643.A22437@penderel>
2292      Branch: perl
2293            ! ext/B/B/Deparse.pm
2294 ____________________________________________________________________________
2295 [ 10108] By: jhi                                   on 2001/05/15  02:02:17
2296         Log: Subject: [PATCH B::Deparse] C<$foo =~ give_me_a_regex>; /x modifier
2297              From: Robin Houston <robin@kitsite.com>
2298              Date: Mon, 14 May 2001 22:03:44 +0100
2299              Message-ID: <20010514220344.A20643@penderel>
2300      Branch: perl
2301            ! ext/B/B/Deparse.pm
2302 ____________________________________________________________________________
2303 [ 10107] By: jhi                                   on 2001/05/15  02:01:24
2304         Log: Subject: [PATCH B::Deparse] "${foo}_bar"
2305              From: Robin Houston <robin@kitsite.com>
2306              Date: Mon, 14 May 2001 22:10:07 +0100
2307              Message-ID: <20010514221007.A21118@penderel>
2308      Branch: perl
2309            ! ext/B/B/Deparse.pm
2310 ____________________________________________________________________________
2311 [ 10106] By: jhi                                   on 2001/05/15  01:41:26
2312         Log: Fix for 20010514.037; substr() didn't invalidate the locale
2313              collation magic.
2314      Branch: perl
2315            ! pp.c
2316 ____________________________________________________________________________
2317 [ 10105] By: jhi                                   on 2001/05/14  18:18:24
2318         Log: Update Changes.
2319      Branch: perl
2320            ! Changes patchlevel.h
2321 ____________________________________________________________________________
2322 [ 10104] By: jhi                                   on 2001/05/14  18:09:07
2323         Log: Retract #10094.
2324      Branch: perl
2325            ! lib/Pod/Text.pm
2326 ____________________________________________________________________________
2327 [ 10103] By: jhi                                   on 2001/05/14  15:20:58
2328         Log: Integrate change #10100 from maintperl.
2329              
2330              PL_last_in_gv may not be a GV if it was a stale filehandle (fix for
2331              bug ID 20010514.027)
2332      Branch: perl
2333           !> mg.c pp_ctl.c
2334 ____________________________________________________________________________
2335 [ 10102] By: jhi                                   on 2001/05/14  15:19:21
2336         Log: Document the deprecatedness of suidperl.
2337      Branch: perl
2338            ! INSTALL pod/perlfaq1.pod
2339 ____________________________________________________________________________
2340 [ 10101] By: jhi                                   on 2001/05/14  14:54:31
2341         Log: Subject: Re: [ID 20010514.022] Makemaker a bit too prefix-happy
2342              From: Ronald J Kimball <rjk@linguist.Thayer.dartmouth.edu>
2343              Date: Mon, 14 May 2001 09:38:59 -0400
2344              Message-ID: <20010514093859.A1479715@linguist.thayer.dartmouth.edu>
2345      Branch: perl
2346            ! lib/ExtUtils/MM_Unix.pm
2347 ____________________________________________________________________________
2348 [ 10100] By: gsar                                  on 2001/05/14  14:43:50
2349         Log: PL_last_in_gv may not be a GV if it was a stale filehandle (fix for
2350              bug ID 20010514.027)
2351              
2352              TODO: this needs a testsuite addition
2353      Branch: maint-5.6/perl
2354            ! mg.c pp_ctl.c
2355 ____________________________________________________________________________
2356 [ 10099] By: jhi                                   on 2001/05/14  13:42:38
2357         Log: More DWIMminess for Class::Struct: calling the array or hash
2358              accessors only with one argument, an array or a hash reference,
2359              sets the underlying array or hash.  This mirrors nicely also
2360              the usage in the constructor.
2361              From Bernd Sokolowsky <ulmo@garozzo.franken.de>, via Damian Conway.
2362      Branch: perl
2363            ! lib/Class/Struct.pm t/lib/class-struct.t
2364 ____________________________________________________________________________
2365 [ 10098] By: jhi                                   on 2001/05/14  13:10:34
2366         Log: Reference cmp'ing should go through the whole stringification
2367              process shebang, as pointed out by Sarathy in #10091.
2368      Branch: perl
2369            ! pp.c
2370 ____________________________________________________________________________
2371 [ 10097] By: jhi                                   on 2001/05/14  12:54:31
2372         Log: Subject: Re: [LONG] Cleaning up Todo/Todo-5.6/perltodo
2373              From: Simon Cozens <simon@netthink.co.uk>
2374              Date: Sat, 12 May 2001 16:36:27 +0100
2375              Message-ID: <20010512163627.A5522@netthink.co.uk>
2376              
2377              with some additions salvaged from Todo and Todo-5.6 before
2378              retiring them.
2379      Branch: perl
2380            - Todo Todo-5.6
2381            ! MANIFEST pod/perltodo.pod
2382 ____________________________________________________________________________
2383 [ 10096] By: jhi                                   on 2001/05/14  12:37:01
2384         Log: Subject: [ID 20010514.025] _SVID3 in <sys/statvfs.h>
2385              From: "Golubev I. N." <gin@mo.msk.ru>
2386              Date: Mon, 07 May 2001 14:33:34 (GMT)
2387              Message-Id: <02453af6b23e63-gin@mo.msk.ru>
2388      Branch: perl
2389            ! perl.h
2390 ____________________________________________________________________________
2391 [ 10095] By: jhi                                   on 2001/05/14  12:34:24
2392         Log: Subject: [ID 20010514.022] Makemaker a bit too prefix-happy
2393              From: "Todd C. Miller" <Todd.Miller@courtesan.com>
2394              Date: Mon, 7 May 2001 09:35:57 -0600 (MDT)
2395              Message-Id: <200105071535.f47FZvf27235@xerxes.courtesan.com>
2396      Branch: perl
2397            ! lib/ExtUtils/MM_Unix.pm
2398 ____________________________________________________________________________
2399 [ 10094] By: jhi                                   on 2001/05/14  12:32:44
2400         Log: (Retracted by #10104.)
2401              
2402              Subject: [PATCH bleadperl Pod::Text] avoid overquoting [Was: rand(0) is rand(1)]
2403              From: barries <barries@slaysys.com>
2404              Date: Sat, 12 May 2001 01:28:10 -0400
2405              Message-ID: <20010512012810.B26358@jester.slaysys.com>
2406      Branch: perl
2407            ! lib/Pod/Text.pm
2408 ____________________________________________________________________________
2409 [ 10093] By: jhi                                   on 2001/05/14  12:30:38
2410         Log: Subject: [PATCH] Incorrect line numbers in AutoSplit
2411              From: Mike Guy <mjtg@cam.ac.uk>
2412              Date: Sat, 12 May 2001 19:24:33 +0100
2413              Message-Id: <E14ye49-0006Fn-00@libra.cus.cam.ac.uk>
2414      Branch: perl
2415            ! lib/AutoSplit.pm
2416 ____________________________________________________________________________
2417 [ 10092] By: jhi                                   on 2001/05/14  12:29:21
2418         Log: Yet another HP-UX hints tweak from Merijn.
2419      Branch: perl
2420            ! hints/hpux.sh
2421 ____________________________________________________________________________
2422 [ 10091] By: gsar                                  on 2001/05/14  04:38:32
2423         Log: $ref1 == $ref2 behaves unpredictably on platforms where NV_PRESERVES_UV
2424              isn't defined (changes#9366,9368,9370 from mainline without the
2425              pp_scmp() change)
2426      Branch: maint-5.6/perl
2427            ! pp.c pp.h pp_hot.c
2428 ____________________________________________________________________________
2429 [ 10090] By: jhi                                   on 2001/05/12  13:39:43
2430         Log: The sorting seems to happen now automatically.
2431      Branch: perl
2432            ! t/lib/glob-basic.t
2433 ____________________________________________________________________________
2434 [ 10089] By: jhi                                   on 2001/05/12  03:38:15
2435         Log: Subject: Re: [PATCH perlfunc.pod] split on an empty string
2436              From: Benjamin Sugars <bsugars@canoe.ca>
2437              Date: Fri, 11 May 2001 11:36:04 -0400 (EDT)
2438              Message-ID: <Pine.LNX.4.21.0105111131540.1804-100000@marmot.rim.canoe.ca>
2439      Branch: perl
2440            ! pod/perlfunc.pod
2441 ____________________________________________________________________________
2442 [ 10088] By: jhi                                   on 2001/05/12  03:37:00
2443         Log: Subject: Re: undef(&foo) does not work for XS functions
2444              From: Doug MacEachern <dougm@covalent.net>
2445              Date: Fri, 11 May 2001 16:52:29 -0700 (PDT)
2446              Message-ID: <Pine.LNX.4.21.0105111647240.4478-100000@mako.covalent.net>
2447      Branch: perl
2448            ! op.c
2449 ____________________________________________________________________________
2450 [ 10087] By: jhi                                   on 2001/05/12  03:35:58
2451         Log: Subject: [PATCH: perl@10086] fixup t/op/append.t for UTF-EBCDIC
2452              From: Peter Prymmer <pvhp@forte.com>
2453              Date: Fri, 11 May 2001 17:38:43 -0700 (PDT)
2454              Message-ID: <Pine.OSF.4.10.10105111736190.73589-100000@aspara.forte.com>
2455      Branch: perl
2456            ! t/op/append.t
2457 ____________________________________________________________________________
2458 [ 10086] By: jhi                                   on 2001/05/11  14:23:08
2459         Log: Update Changes.
2460      Branch: perl
2461            ! Changes patchlevel.h
2462 ____________________________________________________________________________
2463 [ 10085] By: jhi                                   on 2001/05/11  14:08:20
2464         Log: Remove the 'asciir' re subpragma.  Should instead implement
2465              the 'physical vs logical' range scheme:
2466              
2467              \xAA-\xCC is a native physical range, you want that range of
2468              codepoints in your native encoding.  In EBCDIC the codepoints
2469              in the gaps (between i-j and r-s) should be included.
2470              
2471              \x{AA}-\x{CC} is a physical Unicode range, you want that range of
2472              codepoints in Unicode.
2473              
2474              a-z is a logical range, you want that range of 'logical' codepoints
2475              in your native encoding.  In EBCDIC the codepoints in the gaps
2476              (between i-j and r-s) should not be included.
2477              
2478              Mixed cases (a-\xAA, etc) should either be errors, or maybe
2479              the 'logical' endpoints should be converted to native/Unicode
2480              codepoints, and the range handled as a physical range.
2481              
2482              'Logical endpoints' are to be recognized only in the A-Z, a-z,
2483              and 0-9 ranges.  Probably a warning should be given for mixed
2484              cases like A-z or a-9 (since such expressions are encoding
2485              dependent), with a recommendation to use physical ranges.
2486      Branch: perl
2487            ! ext/re/re.pm perl.h regcomp.c regcomp.h t/op/pat.t
2488            ! t/op/regexp.t
2489 ____________________________________________________________________________
2490 [ 10084] By: jhi                                   on 2001/05/11  13:56:16
2491         Log: Make the test to cleanup the test directory tree
2492              both before and after the testing so that we always
2493              have a clean slate to work with.
2494      Branch: perl
2495            ! t/lib/filefind.t
2496 ____________________________________________________________________________
2497 [ 10083] By: jhi                                   on 2001/05/11  13:46:30
2498         Log: Subject: Re: [PATCH perlfunc.pod] split on an empty string
2499              From: Jon Eveland <jweveland@yahoo.com>
2500              Date: Fri, 11 May 2001 07:36:28 -0700 (PDT)
2501              Message-ID: <20010511143628.24225.qmail@web10402.mail.yahoo.com>
2502      Branch: perl
2503            ! pod/perlfunc.pod
2504 ____________________________________________________________________________
2505 [ 10082] By: jhi                                   on 2001/05/11  13:45:06
2506         Log: Merge the camel-III/vstring.t with op/ver.t.
2507      Branch: perl
2508            - t/camel-III/vstring.t
2509            ! MANIFEST t/TEST t/harness t/op/ver.t
2510 ____________________________________________________________________________
2511 [ 10081] By: jhi                                   on 2001/05/11  13:15:55
2512         Log: Add test.deparse make target.
2513      Branch: perl
2514            ! Makefile.SH
2515 ____________________________________________________________________________
2516 [ 10080] By: jhi                                   on 2001/05/11  12:52:49
2517         Log: Subject: [PATCH B::Deparse] $foo->bar(0)
2518              From: Robin Houston <robin@kitsite.com>
2519              Date: Fri, 11 May 2001 12:02:22 +0100
2520              Message-ID: <20010511120222.A11529@penderel>
2521      Branch: perl
2522            ! ext/B/B/Deparse.pm t/op/method.t
2523 ____________________________________________________________________________
2524 [ 10079] By: jhi                                   on 2001/05/11  01:59:06
2525         Log: A nicely working combination for UTS from Hal Morris.
2526      Branch: perl
2527            + ext/POSIX/hints/uts.pl
2528            ! MANIFEST hints/uts.sh
2529 ____________________________________________________________________________
2530 [ 10078] By: jhi                                   on 2001/05/11  01:15:04
2531         Log: i_ieeefp=undef for UTS.
2532      Branch: perl
2533            ! hints/uts.sh
2534 ____________________________________________________________________________
2535 [ 10077] By: jhi                                   on 2001/05/10  22:42:35
2536         Log: Subject: RE: rand(0) is rand(1)
2537              From: Larry Shatzer <lshatzer@islanddata.com>
2538              Date: Thu, 10 May 2001 11:09:27 -0700
2539              Message-ID: <95CD90709D74D4118F4600D0B79E8BC9995027@mail.islanddata.com>
2540      Branch: perl
2541            ! pod/perlfunc.pod
2542 ____________________________________________________________________________
2543 [ 10076] By: jhi                                   on 2001/05/10  22:36:50
2544         Log: Subject: [patch] make op_{clear,null} public
2545              From: Doug MacEachern <dougm@covalent.net>
2546              Date: Thu, 10 May 2001 15:54:09 -0700 (PDT)
2547              Message-ID: <Pine.LNX.4.21.0105101546510.2962-100000@mako.covalent.net>
2548      Branch: perl
2549            ! embed.h embed.pl op.c proto.h
2550 ____________________________________________________________________________
2551 [ 10075] By: jhi                                   on 2001/05/10  22:28:36
2552         Log: Subject: [PATCH B.xs] Extend tr/\0-\377/blah/c support
2553              From: Robin Houston <robin@kitsite.com>
2554              Date: Thu, 10 May 2001 18:54:59 +0100
2555              Message-ID: <20010510185459.A5995@penderel>
2556      Branch: perl
2557            ! ext/B/B.xs ext/B/B/Deparse.pm t/op/tr.t
2558 ____________________________________________________________________________
2559 [ 10074] By: jhi                                   on 2001/05/10  22:23:41
2560         Log: Subject: [PATCH B::Deparse] t/op/64bitint.t
2561              From: Robin Houston <robin@kitsite.com>
2562              Date: Thu, 10 May 2001 12:56:39 +0100
2563              Message-ID: <20010510125639.A2119@penderel>
2564      Branch: perl
2565            ! ext/B/B/Deparse.pm
2566 ____________________________________________________________________________
2567 [ 10073] By: jhi                                   on 2001/05/10  14:26:01
2568         Log: Retract #10070, not ready yet.
2569      Branch: perl
2570            ! ext/B/B/Deparse.pm
2571 ____________________________________________________________________________
2572 [ 10072] By: jhi                                   on 2001/05/10  13:40:24
2573         Log: The metaconfig unit change for #10071.
2574      Branch: metaconfig
2575            ! U/modified/mallocsrc.U
2576 ____________________________________________________________________________
2577 [ 10071] By: jhi                                   on 2001/05/10  13:39:57
2578         Log: The #9525+#9526 didn't allow for overriding usemymalloc.
2579      Branch: perl
2580            ! Configure
2581 ____________________________________________________________________________
2582 [ 10070] By: jhi                                   on 2001/05/10  13:18:42
2583         Log: (Retracted by #10073)
2584              
2585              Subject: Re: [PATCH t/TEST] B::Deparse tester 
2586              From: Hugo <hv@crypt.compulink.co.uk>
2587              Date: Thu, 10 May 2001 05:48:09 +0100
2588              Message-Id: <200105100448.FAA13584@crypt.compulink.co.uk>
2589      Branch: perl
2590            ! ext/B/B/Deparse.pm
2591 ____________________________________________________________________________
2592 [ 10069] By: jhi                                   on 2001/05/10  12:24:06
2593         Log: Add a for(func()) test.
2594      Branch: perl
2595            ! t/cmd/for.t
2596 ____________________________________________________________________________
2597 [ 10068] By: jhi                                   on 2001/05/10  12:16:00
2598         Log: Subject: [PATCH B::Deparse] our() lists and foreach loops
2599              From: Robin Houston <robin@kitsite.com>
2600              Date: Thu, 10 May 2001 13:50:08 +0100
2601              Message-ID: <20010510135008.A2454@penderel>
2602      Branch: perl
2603            ! ext/B/B/Deparse.pm
2604 ____________________________________________________________________________
2605 [ 10067] By: jhi                                   on 2001/05/10  01:45:03
2606         Log: A thinko in #10065.
2607      Branch: perl
2608            ! hv.c
2609 ____________________________________________________________________________
2610 [ 10066] By: jhi                                   on 2001/05/10  01:33:12
2611         Log: Subject: [PATCH B::Deparse] Fix tr///ansliteration
2612              From: Robin Houston <robin@kitsite.com>
2613              Date: Thu, 10 May 2001 02:10:34 +0100
2614              Message-ID: <20010510021034.A19421@penderel>
2615      Branch: perl
2616            ! ext/B/B.xs ext/B/B/Deparse.pm
2617 ____________________________________________________________________________
2618 [ 10065] By: jhi                                   on 2001/05/10  01:30:43
2619         Log: Subject: [patch] make hv_fetch{_ent} SvGMAGICAL aware
2620              From: Doug MacEachern <dougm@covalent.net>
2621              Date: Mon, 7 May 2001 09:50:58 -0700 (PDT)
2622              Message-ID: <Pine.LNX.4.21.0105070947060.23808-100000@mako.covalent.net>
2623      Branch: perl
2624            ! hv.c
2625 ____________________________________________________________________________
2626 [ 10064] By: jhi                                   on 2001/05/09  23:13:29
2627         Log: One more workaround for the UTS compiler from Hal Morris.
2628      Branch: perl
2629            ! perl.h
2630 ____________________________________________________________________________
2631 [ 10063] By: jhi                                   on 2001/05/09  23:09:53
2632         Log: Subject: [PATCH B::Debug] Show string for PVOP, and referent for RV
2633              From: Robin Houston <robin@kitsite.com>
2634              Date: Thu, 10 May 2001 01:02:08 +0100
2635              Message-ID: <20010510010208.A18200@penderel>
2636      Branch: perl
2637            ! ext/B/B/Debug.pm
2638 ____________________________________________________________________________
2639 [ 10062] By: jhi                                   on 2001/05/09  23:06:25
2640         Log: Subject: [PATCH] Simplify deb_curcv() a bit
2641              From: Benjamin Sugars <bsugars@canoe.ca>
2642              Date: Wed, 9 May 2001 18:14:34 -0400 (EDT)
2643              Message-ID: <Pine.LNX.4.21.0105091811340.1160-100000@marmot.rim.canoe.ca>
2644      Branch: perl
2645            ! run.c
2646 ____________________________________________________________________________
2647 [ 10061] By: jhi                                   on 2001/05/09  23:05:28
2648         Log: Subject: [PATCH] Additional test case for PerlIO::Scalar
2649              From: Benjamin Sugars <bsugars@canoe.ca>
2650              Date: Wed, 9 May 2001 18:03:45 -0400 (EDT)
2651              Message-ID: <Pine.LNX.4.21.0105091758220.1160-100000@marmot.rim.canoe.ca>
2652      Branch: perl
2653            ! t/lib/io_scalar.t
2654 ____________________________________________________________________________
2655 [ 10060] By: jhi                                   on 2001/05/09  23:04:38
2656         Log: Subject: [PATCH: perl@10022] update md5sum for MD5.xs on IBM-1047
2657              From: Peter Prymmer <pvhp@forte.com>
2658              Date: Wed, 9 May 2001 12:08:02 -0700 (PDT)
2659              Message-ID: <Pine.OSF.4.10.10105091205250.455254-100000@aspara.forte.com>
2660      Branch: perl
2661            ! t/lib/md5-file.t
2662 ____________________________________________________________________________
2663 [ 10059] By: jhi                                   on 2001/05/09  23:03:52
2664         Log: Subject: [PATCH t/TEST] B::Deparse tester
2665              From: Robin Houston <robin@kitsite.com>
2666              Date: Wed, 9 May 2001 19:17:50 +0100
2667              Message-ID: <20010509191750.A16940@penderel>
2668      Branch: perl
2669            ! ext/B/O.pm t/TEST
2670 ____________________________________________________________________________
2671 [ 10058] By: jhi                                   on 2001/05/09  23:02:56
2672         Log: Subject: [PATCH] Pod::Html -- fixes extra gaps in raw text
2673              From: Jeff Pinyan <jeffp@crusoe.net>
2674              Date: Wed, 9 May 2001 14:36:25 -0400 (EDT)
2675              Message-ID: <Pine.GSO.4.21.0105091430420.357-100000@crusoe.crusoe.net>
2676      Branch: perl
2677            ! lib/Pod/Html.pm
2678 ____________________________________________________________________________
2679 [ 10057] By: nick                                  on 2001/05/09  18:37:56
2680         Log: Integrate mainline.
2681      Branch: perlio
2682           !> Changes epoc/epocish.h ext/PerlIO/Scalar/Scalar.xs
2683           !> hints/hpux.sh lib/Pod/Html.pm patchlevel.h perlio.c
2684 ____________________________________________________________________________
2685 [ 10056] By: jhi                                   on 2001/05/09  16:44:44
2686         Log: Update Changes.
2687      Branch: perl
2688            ! Changes patchlevel.h
2689 ____________________________________________________________________________
2690 [ 10055] By: jhi                                   on 2001/05/09  16:26:47
2691         Log: Integrate perlio.
2692      Branch: perl
2693           !> win32/config_H.bc win32/config_H.gc win32/config_H.vc
2694 ____________________________________________________________________________
2695 [ 10054] By: jhi                                   on 2001/05/09  16:25:42
2696         Log: Subject: Re: [PATCH] Test offset when reading from a PerlIO::Scalar
2697              From: Benjamin Sugars <bsugars@canoe.ca>
2698              Date: Wed, 9 May 2001 12:42:30 -0400 (EDT)
2699              Message-ID: <Pine.LNX.4.21.0105091230110.1516-100000@marmot.rim.canoe.ca>
2700      Branch: perl
2701            ! perlio.c
2702 ____________________________________________________________________________
2703 [ 10053] By: jhi                                   on 2001/05/09  16:24:37
2704         Log: Subject: [PATCH] Test offset when reading from a PerlIO::Scalar
2705              From: Benjamin Sugars <bsugars@canoe.ca>
2706              Date: Tue, 8 May 2001 17:09:44 -0400 (EDT)
2707              Message-ID: <Pine.LNX.4.21.0105081654140.1212-100000@marmot.rim.canoe.ca>
2708      Branch: perl
2709            ! ext/PerlIO/Scalar/Scalar.xs
2710 ____________________________________________________________________________
2711 [ 10052] By: jhi                                   on 2001/05/09  16:19:04
2712         Log: Subject: [PATCH] Pod::Html doesn't honor =begin ... =end properly
2713              From: Jeff Pinyan <jeffp@crusoe.net>
2714              Date: Wed, 9 May 2001 12:35:24 -0400 (EDT)
2715              Message-ID: <Pine.GSO.4.21.0105091233430.357-100000@crusoe.crusoe.net>
2716      Branch: perl
2717            ! lib/Pod/Html.pm
2718 ____________________________________________________________________________
2719 [ 10051] By: jhi                                   on 2001/05/09  15:30:17
2720         Log: EPOC tweak from Olaf Flebbe.
2721      Branch: perl
2722            ! epoc/epocish.h
2723 ____________________________________________________________________________
2724 [ 10050] By: nick                                  on 2001/05/09  14:37:57
2725         Log: win32, regen_config_h
2726      Branch: perlio
2727            ! win32/config_H.bc win32/config_H.gc win32/config_H.vc
2728 ____________________________________________________________________________
2729 [ 10049] By: jhi                                   on 2001/05/09  12:33:39
2730         Log: Integrate perlio.
2731      Branch: perl
2732           !> pp_sys.c
2733 ____________________________________________________________________________
2734 [ 10048] By: nick                                  on 2001/05/09  11:59:50
2735         Log: If wait() or waitpid() ends due to EINTR despatch perl interrupt handler
2736              and re-try. Fixes "perl 5.7.x prefers suicide over killing more than one child."
2737      Branch: perlio
2738            ! pp_sys.c
2739 ____________________________________________________________________________
2740 [ 10047] By: jhi                                   on 2001/05/09  10:50:12
2741         Log: Integrate perlio.
2742      Branch: perl
2743           !> run.c
2744 ____________________________________________________________________________
2745 [ 10046] By: jhi                                   on 2001/05/09  10:49:34
2746         Log: Subject: Re: Less warnings during configure
2747              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
2748              Date: Wed, 09 May 2001 13:12:49 +0200
2749              Message-Id: <20010509125337.995D.H.M.BRAND@hccnet.nl>
2750      Branch: perl
2751            ! hints/hpux.sh
2752 ____________________________________________________________________________
2753 [ 10045] By: nick                                  on 2001/05/09  09:56:59
2754         Log: MULTIPLICITY/DEBUGGING build fix.
2755      Branch: perlio
2756            ! run.c
2757 ____________________________________________________________________________
2758 [ 10044] By: nick                                  on 2001/05/09  09:46:37
2759         Log: Merge of mainline (does not build MULTIPLICITY/DEBUGGING issue).
2760      Branch: perlio
2761           +> hints/atheos.sh pod/perl572delta.pod t/pod/plainer.t
2762            - ext/SDBM_File/sdbm/dbm.c ext/SDBM_File/sdbm/dbm.h
2763           !> (integrate 65 files)
2764 ____________________________________________________________________________
2765 [ 10043] By: jhi                                   on 2001/05/08  22:41:49
2766         Log: Subject: [PATCH op.c] Deprecate %x->{'foo'}, @y->[23] etc
2767              From: Robin Houston <robin@kitsite.com>
2768              Date: Tue, 8 May 2001 19:38:00 +0100
2769              Message-ID: <20010508193800.A4389@penderel>
2770              
2771              Subject: Re: [PATCH op.c] Deprecate %x->{'foo'}, @y->[23] etc
2772              From: Robin Houston <robin@kitsite.com>
2773              Date: Tue, 8 May 2001 20:03:57 +0100
2774              Message-ID: <20010508200357.A4614@penderel>
2775              
2776              Subject: Re: [PATCH op.c] Deprecate %x->{'foo'}, @y->[23] etc
2777              From: Robin Houston <robin@kitsite.com>
2778              Date: Wed, 9 May 2001 00:12:05 +0100
2779              Message-ID: <20010509001205.A18521@puffinry.freeserve.co.uk>
2780      Branch: perl
2781            ! op.c pod/perldiag.pod t/pragma/overload.t t/pragma/warn/op
2782 ____________________________________________________________________________
2783 [ 10042] By: jhi                                   on 2001/05/08  22:09:35
2784         Log: Retract #10031.
2785      Branch: perl
2786            ! pod/perlfunc.pod
2787 ____________________________________________________________________________
2788 [ 10041] By: jhi                                   on 2001/05/08  18:27:34
2789         Log: The metaconfig unit changes for #10040.
2790      Branch: metaconfig/U/perl
2791            ! Checkcc.U d_dlsymun.U dlsrc.U
2792 ____________________________________________________________________________
2793 [ 10040] By: jhi                                   on 2001/05/08  18:24:47
2794         Log: The Configure half of
2795              
2796              Subject: Less warnings during configure
2797              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
2798              Date: Tue, 08 May 2001 08:44:02 +0200
2799              Message-Id: <20010508084158.D793.H.M.BRAND@hccnet.nl>
2800      Branch: perl
2801            ! Configure
2802 ____________________________________________________________________________
2803 [ 10039] By: jhi                                   on 2001/05/08  16:48:31
2804         Log: Subject: Less warnings during configure
2805              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
2806              Date: Tue, 08 May 2001 08:44:02 +0200
2807              Message-Id: <20010508084158.D793.H.M.BRAND@hccnet.nl>
2808      Branch: perl
2809            ! hints/hpux.sh
2810 ____________________________________________________________________________
2811 [ 10038] By: jhi                                   on 2001/05/08  16:32:07
2812         Log: Don't forget to whine about \d__\d.
2813      Branch: perl
2814            ! t/pragma/warn/toke toke.c
2815 ____________________________________________________________________________
2816 [ 10037] By: jhi                                   on 2001/05/08  16:07:05
2817         Log: Allow underscores also in the exponent part.
2818      Branch: perl
2819            ! t/pragma/warn/toke toke.c
2820 ____________________________________________________________________________
2821 [ 10036] By: jhi                                   on 2001/05/08  13:33:55
2822         Log: CodeMagicCD doesn't look like an *I*DE.
2823      Branch: perl
2824            ! pod/perlfaq3.pod
2825 ____________________________________________________________________________
2826 [ 10035] By: jhi                                   on 2001/05/08  13:27:48
2827         Log: Add Open Perl IDE, remove Perl Code Magic (the site seems
2828              to be consistently down).
2829      Branch: perl
2830            ! pod/perlfaq3.pod
2831 ____________________________________________________________________________
2832 [ 10034] By: jhi                                   on 2001/05/08  13:21:07
2833         Log: Upgrade to Text::Balanced 1.84.
2834      Branch: perl
2835            ! lib/Text/Balanced.pm t/lib/tb-xbrak.t
2836 ____________________________________________________________________________
2837 [ 10033] By: jhi                                   on 2001/05/08  12:41:53
2838         Log: Subject: Re: [PATCH] Find the last of the missing pad variables 
2839              From: Benjamin Sugars <bsugars@canoe.ca>
2840              Date: Tue, 8 May 2001 09:14:30 -0400 (EDT)
2841              Message-ID: <Pine.LNX.4.21.0105080912370.1930-100000@marmot.rim.canoe.ca>
2842      Branch: perl
2843            ! run.c
2844 ____________________________________________________________________________
2845 [ 10032] By: jhi                                   on 2001/05/08  12:40:28
2846         Log: Subject: [PATCH: perl@10022] cleaner cleanup for t/pod/plainer.t
2847              From: Peter Prymmer <pvhp@forte.com>
2848              Date: Mon, 7 May 2001 18:13:06 -0700 (PDT)
2849              Message-ID: <Pine.OSF.4.10.10105071810100.317708-100000@aspara.forte.com>
2850      Branch: perl
2851            ! t/pod/plainer.t
2852 ____________________________________________________________________________
2853 [ 10031] By: jhi                                   on 2001/05/08  12:35:25
2854         Log: (Retracted by #10042)
2855              
2856              Subject: Re: [ID 20010506.040] Infinite loop in lib/selfstubber.t under Cygwin
2857              From: "Philip Newton" <pnewton@gmx.de>
2858              Date: Tue, 8 May 2001 09:18:10 +0200
2859              Message-ID: <3AF7B9D2.28861.603732@localhost>
2860      Branch: perl
2861            ! pod/perlfunc.pod
2862 ____________________________________________________________________________
2863 [ 10030] By: jhi                                   on 2001/05/08  12:32:23
2864         Log: Subject: [PATCH B::Deparse] Document known bugs
2865              From: Robin Houston <robin@kitsite.com>
2866              Date: Tue, 8 May 2001 01:53:34 +0100
2867              Message-ID: <20010508015334.A32394@penderel>
2868      Branch: perl
2869            ! ext/B/B/Deparse.pm
2870 ____________________________________________________________________________
2871 [ 10029] By: jhi                                   on 2001/05/08  12:28:28
2872         Log: Subject: Re: Perl book, magazine and website updates.
2873              From: "Philip Newton" <pnewton@gmx.de>
2874              Date: Mon, 7 May 2001 17:03:58 +0200
2875              Message-ID: <3AF6D57E.5387.1E29930@localhost>
2876      Branch: perl
2877            ! pod/perlfaq2.pod
2878 ____________________________________________________________________________
2879 [ 10028] By: jhi                                   on 2001/05/07  23:53:30
2880         Log: Subject: [PATCH: perl@10022] YA tweak to avoid open file conflict in io/fflush.t
2881              From: Peter Prymmer <pvhp@forte.com>
2882              Date: Mon, 7 May 2001 17:50:48 -0700 (PDT)
2883              Message-ID: <Pine.OSF.4.10.10105071746570.317708-100000@aspara.forte.com> 
2884      Branch: perl
2885            ! t/io/fflush.t
2886 ____________________________________________________________________________
2887 [ 10027] By: jhi                                   on 2001/05/07  23:22:48
2888         Log: Subject: [PATCH B::Deparse] Give (?{...}) a taste of its own medicine
2889              From: Robin Houston <robin@kitsite.com>
2890              Date: Tue, 8 May 2001 01:14:55 +0100
2891              Message-ID: <20010508011455.A32162@penderel>
2892      Branch: perl
2893            ! ext/B/B/Deparse.pm
2894 ____________________________________________________________________________
2895 [ 10026] By: jhi                                   on 2001/05/07  23:15:05
2896         Log: Typo in #10025.
2897      Branch: perl
2898            ! hints/uts.sh
2899 ____________________________________________________________________________
2900 [ 10025] By: jhi                                   on 2001/05/07  21:15:35
2901         Log: cc, cflags, and optimize tweaks for UTS from Hal Morris.
2902      Branch: perl
2903            ! hints/uts.sh
2904 ____________________________________________________________________________
2905 [ 10024] By: jhi                                   on 2001/05/07  20:58:40
2906         Log: Subject: Re: [ID 20010506.045] question about hash syntax
2907              From: Peter Scott <Peter@PSDT.com>
2908              Date: Sun, 06 May 2001 13:10:40 -0700
2909              Message-Id: <4.3.2.7.2.20010506113015.00b46100@psdt.com>
2910      Branch: perl
2911            ! pod/perl56delta.pod
2912 ____________________________________________________________________________
2913 [ 10023] By: jhi                                   on 2001/05/07  20:41:26
2914         Log: Configure should figure out the list of dynamic extensions
2915              just fine in UTS-- and in fact it does, as reported by Hal Morris.
2916      Branch: perl
2917            ! hints/uts.sh
2918 ____________________________________________________________________________
2919 [ 10022] By: jhi                                   on 2001/05/07  20:24:11
2920         Log: Update Changes.
2921      Branch: perl
2922            ! Changes patchlevel.h
2923 ____________________________________________________________________________
2924 [ 10021] By: jhi                                   on 2001/05/07  20:11:31
2925         Log: Subject: [PATCH regcomp.c] Insecure regexes
2926              From: Robin Houston <robin@kitsite.com>
2927              Date: Mon, 7 May 2001 21:56:12 +0100
2928              Message-ID: <20010507215612.A31114@penderel>
2929      Branch: perl
2930            ! regcomp.c
2931 ____________________________________________________________________________
2932 [ 10020] By: jhi                                   on 2001/05/07  20:02:30
2933         Log: Drop the foobar.perl.com references for now until Simon
2934              gets them sorted out.
2935      Branch: perl
2936            ! pod/perlfaq2.pod
2937 ____________________________________________________________________________
2938 [ 10019] By: jhi                                   on 2001/05/07  19:54:33
2939         Log: Subject: Re: RFC: changing Devel::SelfStubber to relinquish its grasp
2940              From: Prymmer/Kahn <pvhp@best.com>
2941              Date: Mon, 7 May 2001 07:47:21 -0700 (PDT)
2942              Message-ID: <Pine.BSF.4.21.0105070733080.13301-100000@shell8.ba.best.com>
2943      Branch: perl
2944            ! lib/Devel/SelfStubber.pm
2945 ____________________________________________________________________________
2946 [ 10018] By: jhi                                   on 2001/05/07  19:53:10
2947         Log: Subject: Re: [ID 20010506.022] Win32/Makefile problems in 5.7.1 
2948              From: Prymmer/Kahn <pvhp@best.com>
2949              Date: Sun, 6 May 2001 21:34:56 -0700 (PDT)
2950              Message-ID: <Pine.BSF.4.21.0105062131520.17625-100000@shell8.ba.best.com>
2951      Branch: perl
2952            ! win32/Makefile
2953 ____________________________________________________________________________
2954 [ 10017] By: jhi                                   on 2001/05/07  19:35:10
2955         Log: s/WebTechnique's/WebTechniques/
2956      Branch: perl
2957            ! pod/perlfaq2.pod
2958 ____________________________________________________________________________
2959 [ 10016] By: jhi                                   on 2001/05/07  12:26:29
2960         Log: Llama 3 updates from Randal.
2961      Branch: perl
2962            ! pod/perlfaq2.pod
2963 ____________________________________________________________________________
2964 [ 10015] By: jhi                                   on 2001/05/07  01:34:38
2965         Log: Subject: [PATCH] Help -Dt show correct pad variables
2966              From: Benjamin Sugars <ben.sugars@home.com>
2967              Date: Sun, 6 May 2001 12:54:13 -0400 (EDT)
2968              Message-ID: <Pine.LNX.4.21.0105061142040.12858-100000@localhost.localdomain>
2969      Branch: perl
2970            ! embed.h embed.pl proto.h run.c
2971 ____________________________________________________________________________
2972 [ 10014] By: jhi                                   on 2001/05/07  01:23:56
2973         Log: Subject: [PATCH] Document C<our $foo : shared>
2974              From: Benjamin Sugars <ben.sugars@home.com>
2975              Date: Sun, 6 May 2001 19:00:55 -0400 (EDT)
2976              Message-ID: <Pine.LNX.4.21.0105061847090.9500-100000@localhost.localdomain>
2977      Branch: perl
2978            ! pod/perlfunc.pod
2979 ____________________________________________________________________________
2980 [ 10013] By: jhi                                   on 2001/05/07  01:22:22
2981         Log: Subject: [PATCH B::Deparse] undefined folded constants
2982              From: Robin Houston <robin@kitsite.com>
2983              Date: Sun, 6 May 2001 17:19:09 +0100
2984              Message-ID: <20010506171909.A7046@penderel>
2985      Branch: perl
2986            ! ext/B/B/Deparse.pm
2987 ____________________________________________________________________________
2988 [ 10012] By: jhi                                   on 2001/05/07  00:57:38
2989         Log: Subject: [PATCH B::Deparse] use Foo (sub {...});
2990              From: Robin Houston <robin@kitsite.com>
2991              Message-ID: <20010506164654.A6848@penderel>
2992              Date: Sun, 6 May 2001 16:46:54 +0100
2993      Branch: perl
2994            ! ext/B/B/Deparse.pm
2995 ____________________________________________________________________________
2996 [ 10011] By: jhi                                   on 2001/05/07  00:52:18
2997         Log: Subject: [PATCH t/op/my_stash.t] Naughty?
2998              From: Robin Houston <robin@kitsite.com>
2999              Date: Sun, 6 May 2001 14:47:02 +0100
3000              Message-ID: <20010506144702.A6308@penderel>
3001      Branch: perl
3002            ! t/op/my_stash.t
3003 ____________________________________________________________________________
3004 [ 10010] By: jhi                                   on 2001/05/06  15:07:51
3005         Log: Subject: Perl book, magazine and website updates.
3006              From: Simon Cozens <simon@netthink.co.uk>
3007              Date: Sun, 6 May 2001 16:55:36 +0100
3008              Message-ID: <20010506165536.A1795@netthink.co.uk>
3009      Branch: perl
3010            ! pod/perlbook.pod pod/perlfaq2.pod
3011 ____________________________________________________________________________
3012 [ 10009] By: jhi                                   on 2001/05/06  14:11:40
3013         Log: Tweaks on the Tru64 prof options.
3014      Branch: perl
3015            ! pod/perlhack.pod
3016 ____________________________________________________________________________
3017 [ 10008] By: jhi                                   on 2001/05/06  13:51:49
3018         Log: Subject: [PATCH t/pod/testp2pt.pl] Give deparse tester a chance
3019              From: Robin Houston <robin@kitsite.com>
3020              Date: Sun, 6 May 2001 14:40:51 +0100
3021              Message-ID: <20010506144051.A6279@penderel>
3022      Branch: perl
3023            ! t/pod/testp2pt.pl
3024 ____________________________________________________________________________
3025 [ 10007] By: jhi                                   on 2001/05/06  13:49:31
3026         Log: Subject: [PATCH B::Deparse] scoping
3027              From: Robin Houston <robin@kitsite.com>
3028              Date: Sun, 6 May 2001 14:36:56 +0100
3029              Message-ID: <20010506143656.A4006@penderel>
3030      Branch: perl
3031            ! ext/B/B/Deparse.pm ext/B/defsubs_h.PL t/lib/b-deparse.t
3032 ____________________________________________________________________________
3033 [ 10006] By: jhi                                   on 2001/05/06  13:24:12
3034         Log: Document the undefinedness of bitshifting out of range.
3035      Branch: perl
3036            ! pod/perlop.pod
3037 ____________________________________________________________________________
3038 [ 10005] By: jhi                                   on 2001/05/06  13:03:17
3039         Log: Retract #10003 and update the IDE descriptions a bit.
3040      Branch: perl
3041            ! pod/perlfaq3.pod
3042 ____________________________________________________________________________
3043 [ 10004] By: jhi                                   on 2001/05/06  03:02:41
3044         Log: Subject: [PATCH: perl@10001] win32 update (VC,Borland,gcc), nmake update
3045              From: Prymmer/Kahn <pvhp@best.com>
3046              Date: Sat, 5 May 2001 20:30:49 -0700 (PDT)
3047              Message-ID: <Pine.BSF.4.21.0105052017370.3961-100000@shell8.ba.best.com>
3048      Branch: perl
3049            ! win32/Makefile win32/buildext.pl win32/config.bc
3050            ! win32/config.gc win32/config.vc
3051 ____________________________________________________________________________
3052 [ 10003] By: jhi                                   on 2001/05/05  20:24:44
3053         Log: (Retracted by #10005.)
3054      Branch: perl
3055            ! pod/perlfaq3.pod
3056 ____________________________________________________________________________
3057 [ 10002] By: jhi                                   on 2001/05/05  19:23:36
3058         Log: It's "psed", not "sed".
3059      Branch: perl
3060            ! x2p/s2p.PL
3061 ____________________________________________________________________________
3062 [ 10001] By: jhi                                   on 2001/05/05  18:35:38
3063         Log: Update Changes.
3064      Branch: perl
3065            ! Changes patchlevel.h
3066 ____________________________________________________________________________
3067 [ 10000] By: jhi                                   on 2001/05/05  18:32:15
3068         Log: Subject: Re: bleadperl make install fails due to "psed"
3069              From: andreas.koenig@anima.de (Andreas J. Koenig)
3070              Date: 05 May 2001 18:23:28 +0200
3071              Message-ID: <m3u22zg3y7.fsf@ak-71.mind.de>
3072      Branch: perl
3073            ! x2p/Makefile.SH x2p/s2p.PL
3074 ____________________________________________________________________________
3075 [  9999] By: jhi                                   on 2001/05/05  18:28:09
3076         Log: AUTHORS updates.
3077      Branch: perl
3078            ! AUTHORS
3079 ____________________________________________________________________________
3080 [  9998] By: jhi                                   on 2001/05/05  18:16:00
3081         Log: Updates on the pods related to the modules included since 5.6.
3082              
3083              TODO: perltodo really could use major updating.
3084      Branch: perl
3085            ! pod/perlfaq3.pod pod/perlfaq4.pod pod/perlfaq7.pod
3086            ! pod/perlfaq8.pod pod/perlfilter.pod pod/perlfunc.pod
3087            ! pod/perlop.pod pod/perlport.pod pod/perlsec.pod
3088            ! pod/perlsyn.pod pod/perltodo.pod
3089 ____________________________________________________________________________
3090 [  9997] By: jhi                                   on 2001/05/05  17:35:17
3091         Log: Hints file for AtheOS ( http://www.atheos.cx/ ),
3092              from Kurt Skauen.
3093      Branch: perl
3094            + hints/atheos.sh
3095            ! MANIFEST
3096 ____________________________________________________________________________
3097 [  9996] By: jhi                                   on 2001/05/05  17:25:00
3098         Log: Add preemptive #undefs for some of the shorter and more prone
3099              to collision regcomp.h #defines.  (Background: the MASK collided
3100              with a system header #define in Rhapsody.)
3101      Branch: perl
3102            ! regcomp.h
3103 ____________________________________________________________________________
3104 [  9995] By: jhi                                   on 2001/05/05  13:24:21
3105         Log: Subject: [PATCH] Re: h2xs [was Re: HEAR YE, HEAR YE!]
3106              From: Nicholas Clark <nick@ccl4.org>
3107              Date: Sat, 5 May 2001 14:46:39 +0100
3108              Message-ID: <20010505144639.O53513@plum.flirble.org>
3109              
3110              Add a test for the constants (if any) being processed correctly.
3111      Branch: perl
3112            ! utils/h2xs.PL
3113 ____________________________________________________________________________
3114 [  9994] By: jhi                                   on 2001/05/05  02:11:03
3115         Log: Subject: [PATCH & retract: perl@9973] the real fix for t/lib/b-stash.t
3116              From: Peter Prymmer <pvhp@forte.com>
3117              Date: Fri, 4 May 2001 17:44:13 -0700 (PDT)
3118              Message-ID: <Pine.OSF.4.10.10105041734280.67333-100000@aspara.forte.com>
3119      Branch: perl
3120            ! t/lib/b-stash.t
3121 ____________________________________________________________________________
3122 [  9993] By: jhi                                   on 2001/05/05  02:03:49
3123         Log: Subject: [PATCH: perl@9973] fix const poisioning in  PerlIO_openn->fdopen->openn
3124              From: Peter Prymmer <pvhp@forte.com>
3125              Date: Fri, 4 May 2001 17:29:02 -0700 (PDT)
3126              Message-ID: <Pine.OSF.4.10.10105041727420.67333-100000@aspara.forte.com>
3127      Branch: perl
3128            ! perlio.c vms/vmsish.h
3129 ____________________________________________________________________________
3130 [  9992] By: jhi                                   on 2001/05/04  17:21:12
3131         Log: Subject: [PATHC perl@9944] missing library tests: Pod::Plainer
3132              From: Robin Barker <rmb1@cise.npl.co.uk>
3133              Date: Fri, 4 May 2001 18:13:47 +0100 (BST)
3134              Message-Id: <200105041713.SAA14842@tempest.npl.co.uk>
3135      Branch: perl
3136            + t/pod/plainer.t
3137            ! MANIFEST
3138 ____________________________________________________________________________
3139 [  9991] By: jhi                                   on 2001/05/04  16:47:45
3140         Log: Subject: [PATCH perl@9944] -Wformat error from ext/re/re_comp.c
3141              From: Robin Barker <rmb1@cise.npl.co.uk>
3142              Date: Fri, 4 May 2001 18:09:13 +0100 (BST)
3143              Message-Id: <200105041709.SAA14835@tempest.npl.co.uk>
3144      Branch: perl
3145            ! regcomp.c
3146 ____________________________________________________________________________
3147 [  9990] By: jhi                                   on 2001/05/04  14:37:20
3148         Log: Subject: [PATCH: perl@9973] let win32 run t/lib/b-stash.t
3149              From: Prymmer/Kahn <pvhp@best.com>
3150              Date: Fri, 4 May 2001 07:31:01 -0700 (PDT)
3151              Message-ID: <Pine.BSF.4.21.0105040727430.14844-100000@shell8.ba.best.com>
3152      Branch: perl
3153            ! t/lib/b-stash.t
3154 ____________________________________________________________________________
3155 [  9989] By: jhi                                   on 2001/05/04  14:03:58
3156         Log: Introduce perl572delta, update Todo, add the missing
3157              mention about signal safety since 5.7.1 (though this
3158              requires verification and more details.)
3159      Branch: perl
3160            + pod/perl572delta.pod
3161            ! MANIFEST Todo pod/perl571delta.pod
3162 ____________________________________________________________________________
3163 [  9988] By: jhi                                   on 2001/05/04  12:41:51
3164         Log: Subject: [PATCH perl@9944] long =item
3165              From: Robin Barker <rmb1@cise.npl.co.uk>
3166              Date: Fri, 4 May 2001 14:15:20 +0100 (BST)
3167              Message-Id: <200105041315.OAA00436@tempest.npl.co.uk>
3168      Branch: perl
3169            ! ext/Time/HiRes/HiRes.pm
3170 ____________________________________________________________________________
3171 [  9987] By: jhi                                   on 2001/05/04  12:39:19
3172         Log: The #9901 had removed one line essential for EBCDIC.
3173      Branch: perl
3174            ! regcomp.c
3175 ____________________________________________________________________________
3176 [  9986] By: jhi                                   on 2001/05/04  12:30:23
3177         Log: Subject: cygwin/Makefile.SHs INSTALL patch
3178              From: Reini Urban <rurban@sbox.tu-graz.ac.at>
3179              Date: Mon, 08 Jan 2001 04:59:21 +0200
3180              Message-ID: <3A592D09.FD6AD35D@sbox.tu-graz.ac.at> 
3181      Branch: perl
3182            ! cygwin/Makefile.SHs
3183 ____________________________________________________________________________
3184 [  9985] By: jhi                                   on 2001/05/04  03:51:39
3185         Log: Encode/IO doc tweaks.
3186      Branch: perl
3187            ! ext/Encode/Encode.pm
3188 ____________________________________________________________________________
3189 [  9984] By: jhi                                   on 2001/05/04  03:29:34
3190         Log: Remove GDBM_File from the dynamic extensions for UTS,
3191              GDBM is not a standard feature.
3192      Branch: perl
3193            ! hints/uts.sh
3194 ____________________________________________________________________________
3195 [  9983] By: jhi                                   on 2001/05/04  03:22:59
3196         Log: Document the \pX and \p{Yz} (and \p{BidiXYZ}) classes a bit more.
3197      Branch: perl
3198            ! pod/perlretut.pod
3199 ____________________________________________________________________________
3200 [  9982] By: jhi                                   on 2001/05/03  23:21:03
3201         Log: Subject: [PATCH] Let sv_dump understand GvSHARED
3202              From: Benjamin Sugars <bsugars@canoe.ca>
3203              Date: Thu, 3 May 2001 16:51:07 -0400 (EDT)
3204              Message-ID: <Pine.LNX.4.21.0105031645280.805-100000@marmot.rim.canoe.ca>
3205      Branch: perl
3206            ! dump.c
3207 ____________________________________________________________________________
3208 [  9981] By: jhi                                   on 2001/05/03  23:20:05
3209         Log: Subject: [PATCH] Allow clobbering of a PerlIO::Scalar and more tests
3210              From: Benjamin Sugars <bsugars@canoe.ca>
3211              Date: Thu, 3 May 2001 15:28:21 -0400 (EDT)
3212              Message-ID: <Pine.LNX.4.21.0105031508360.805-100000@marmot.rim.canoe.ca>
3213      Branch: perl
3214            ! ext/PerlIO/Scalar/Scalar.xs t/lib/io_scalar.t
3215 ____________________________________________________________________________
3216 [  9980] By: jhi                                   on 2001/05/03  23:15:29
3217         Log: Integrate perlio.
3218      Branch: perl
3219           !> ext/Encode/Encode.pm
3220 ____________________________________________________________________________
3221 [  9979] By: jhi                                   on 2001/05/03  16:54:59
3222         Log: Install psed man page.
3223      Branch: perl
3224            ! installman
3225 ____________________________________________________________________________
3226 [  9978] By: jhi                                   on 2001/05/03  16:45:58
3227         Log: Remove unused files; noted by Sarathy.
3228      Branch: perl
3229            - ext/SDBM_File/sdbm/dbm.c ext/SDBM_File/sdbm/dbm.h
3230            ! MANIFEST
3231 ____________________________________________________________________________
3232 [  9977] By: jhi                                   on 2001/05/03  16:42:30
3233         Log: Subject: [PATCH bleadperl] INSTALL patch -- space requirements
3234              From: Andy Dougherty <doughera@lafayette.edu>
3235              Date: Thu, 3 May 2001 11:16:10 -0400 (EDT)
3236              Message-ID: <Pine.SOL.4.10.10105031114500.17868-100000@maxwell.phys.lafayette.edu>
3237      Branch: perl
3238            ! INSTALL
3239 ____________________________________________________________________________
3240 [  9976] By: nick                                  on 2001/05/03  16:40:42
3241         Log: Allow $answer = encode($object,$text); like it says in docs.
3242      Branch: perlio
3243            ! ext/Encode/Encode.pm
3244 ____________________________________________________________________________
3245 [  9975] By: nick                                  on 2001/05/03  16:22:30
3246         Log: Fix latin1 etc. alias code - (bit rot?) - the @latin2iso array now seems to need
3247              to be in scope (fair enough), and also a package variable (our) for eval to see it.
3248      Branch: perlio
3249            ! ext/Encode/Encode.pm
3250 ____________________________________________________________________________
3251 [  9974] By: nick                                  on 2001/05/03  15:48:17
3252         Log: Integrate mainline.
3253      Branch: perlio
3254           +> lib/NEXT.pm t/io/fflush.t t/lib/MyFilter.pm
3255           +> t/lib/filter-simple.t t/lib/next.t
3256           !> (integrate 70 files)
3257 ____________________________________________________________________________
3258 [  9973] By: jhi                                   on 2001/05/03  13:09:09
3259         Log: Update Changes.
3260      Branch: perl
3261            ! Changes patchlevel.h
3262 ____________________________________________________________________________
3263 [  9972] By: jhi                                   on 2001/05/03  12:58:33
3264         Log: Subject: [PATCH: perl@9945] fix handling of $Config{variables} in io/fflush.t
3265              From: Prymmer/Kahn <pvhp@best.com>
3266              Date: Wed, 2 May 2001 23:56:13 -0700 (PDT)
3267              Message-ID: <Pine.BSF.4.21.0105022353380.24421-100000@shell8.ba.best.com>
3268      Branch: perl
3269            ! t/io/fflush.t
3270 ____________________________________________________________________________
3271 [  9971] By: jhi                                   on 2001/05/03  12:57:26
3272         Log: Subject: [PATCH: perl@9945] two fixes for win32/FindExt.pm
3273              From: Prymmer/Kahn <pvhp@best.com>
3274              Date: Wed, 2 May 2001 23:42:33 -0700 (PDT)
3275              Message-ID: <Pine.BSF.4.21.0105022337070.24421-100000@shell8.ba.best.com>
3276      Branch: perl
3277            ! win32/FindExt.pm
3278 ____________________________________________________________________________
3279 [  9970] By: jhi                                   on 2001/05/03  02:42:46
3280         Log: Can't croak sans thread context, from Doug MacEachern.
3281      Branch: perl
3282            ! toke.c
3283 ____________________________________________________________________________
3284 [  9969] By: jhi                                   on 2001/05/03  01:23:48
3285         Log: Subject: Random input test and Perl
3286              From: Ilya Zakharevich <ilya@math.berkeley.edu>
3287              Date: Wed, 2 May 2001 14:35:50 -0700 (PDT)
3288              Message-Id: <200105022135.OAA26245@fac-813-1.math.Berkeley.EDU>
3289      Branch: perl
3290            ! toke.c
3291 ____________________________________________________________________________
3292 [  9968] By: jhi                                   on 2001/05/02  22:17:21
3293         Log: Subject: [PATCH: perl@9945] fix some misinformation in perlfunc.pod
3294              From: Peter Prymmer <pvhp@forte.com>
3295              Date: Wed, 2 May 2001 15:58:18 -0700 (PDT)
3296              Message-ID: <Pine.OSF.4.10.10105021554040.342459-100000@aspara.forte.com>
3297      Branch: perl
3298            ! pod/perlfunc.pod pod/perlport.pod
3299 ____________________________________________________________________________
3300 [  9967] By: jhi                                   on 2001/05/02  20:12:45
3301         Log: Workaround for UTS compiler casting bug from Hal Morris.
3302      Branch: perl
3303            ! perl.h
3304 ____________________________________________________________________________
3305 [  9966] By: jhi                                   on 2001/05/02  18:31:37
3306         Log: Subject: Re: [PATCH 5.6.1] Multiplicity and thread fixes for VMS 
3307              From: Dan Sugalski <dan@sidhe.org>
3308              Date: Wed, 02 May 2001 15:23:22 -0400
3309              Message-Id: <5.0.2.1.0.20010502152210.01f65550@24.8.96.48>
3310      Branch: perl
3311            ! perl.c vms/vms.c
3312 ____________________________________________________________________________
3313 [  9965] By: jhi                                   on 2001/05/02  18:21:29
3314         Log: Minor doc tweaks on endianness, closes bug 20010327.004.
3315      Branch: perl
3316            ! pod/perlfunc.pod
3317 ____________________________________________________________________________
3318 [  9964] By: jhi                                   on 2001/05/02  18:15:01
3319         Log: Document large files in INSTALL, document also the %x
3320              limitation if not use64bitint, closes bug 20010326.007.
3321      Branch: perl
3322            ! INSTALL
3323 ____________________________________________________________________________
3324 [  9963] By: jhi                                   on 2001/05/02  17:24:47
3325         Log: perlmodlib tweaks; regen pods.
3326      Branch: perl
3327            ! pod/Makefile.SH pod/perlmodlib.PL pod/perlmodlib.pod
3328            ! pod/perltoc.pod
3329 ____________________________________________________________________________
3330 [  9962] By: jhi                                   on 2001/05/02  17:14:00
3331         Log: Fix for a segfault, from Marc Lehmann.
3332      Branch: perl
3333            ! ext/POSIX/POSIX.xs ext/Time/Piece/Piece.xs
3334 ____________________________________________________________________________
3335 [  9961] By: jhi                                   on 2001/05/02  15:55:53
3336         Log: Subject: [DOC PATCH bleadperl] minor nits in perlop.pod
3337              From: "Philip Newton" <pnewton@gmx.de>
3338              Date: Wed, 2 May 2001 18:39:03 +0200
3339              Message-ID: <3AF05447.15525.173B588@localhost>
3340      Branch: perl
3341            ! pod/perlop.pod
3342 ____________________________________________________________________________
3343 [  9960] By: jhi                                   on 2001/05/02  15:35:37
3344         Log: Subject: [PATCH 5.6.1] Multiplicity and thread fixes for VMS
3345              From: Dan Sugalski <dan@sidhe.org>
3346              Date: Wed, 02 May 2001 11:37:27 -0400
3347              Message-Id: <5.0.2.1.0.20010502112909.01f24e28@24.8.96.48>
3348      Branch: perl
3349            ! doio.c ext/File/Glob/bsd_glob.c perl.c perl.h pp_sys.c
3350            ! thread.h vms/vms.c vms/vmsish.h
3351 ____________________________________________________________________________
3352 [  9959] By: jhi                                   on 2001/05/02  15:21:08
3353         Log: Subject: Re: [PATCH] Allow appending on a PerlIO::Scalar
3354              From: Benjamin Sugars <bsugars@canoe.ca>
3355              Date: Wed, 2 May 2001 10:53:11 -0400 (EDT)
3356              Message-ID: <Pine.LNX.4.21.0105021041380.1652-100000@marmot.rim.canoe.ca>
3357      Branch: perl
3358            ! ext/PerlIO/Scalar/Scalar.xs
3359 ____________________________________________________________________________
3360 [  9958] By: jhi                                   on 2001/05/02  15:15:53
3361         Log: Bug in #9915, spotted by Mike Guy.
3362      Branch: perl
3363            ! installperl
3364 ____________________________________________________________________________
3365 [  9957] By: jhi                                   on 2001/05/02  13:26:01
3366         Log: Add a test for not griping about references as array
3367              indices if the reference has magic in it (overloaded
3368              methods).
3369      Branch: perl
3370            ! pod/perldiag.pod t/pragma/warn/pp_hot
3371 ____________________________________________________________________________
3372 [  9956] By: jhi                                   on 2001/05/02  13:07:01
3373         Log: Retracted a bit too much in #9952.
3374      Branch: perl
3375            ! t/pragma/sub_lval.t
3376 ____________________________________________________________________________
3377 [  9955] By: jhi                                   on 2001/05/02  13:05:38
3378         Log: Test for #9952.
3379      Branch: perl
3380            ! t/op/tie.t
3381 ____________________________________________________________________________
3382 [  9954] By: jhi                                   on 2001/05/02  11:48:18
3383         Log: Additional note on the encoding example: one cannot
3384              convert string constants in-place.
3385      Branch: perl
3386            ! ext/Encode/Encode.pm
3387 ____________________________________________________________________________
3388 [  9953] By: jhi                                   on 2001/05/02  11:43:51
3389         Log: Note that if you have recent enough Perl you already
3390              have Filter::Util::Call.
3391      Branch: perl
3392            ! lib/Filter/Simple.pm
3393 ____________________________________________________________________________
3394 [  9952] By: jhi                                   on 2001/05/02  11:31:53
3395         Log: Retract changes #8254 and #8255, causes coredump in
3396              'tie FH, "main"', reported by Abigail, culprit found by
3397              Benjamin Sugars.  Mirrors maintperl change #9950.
3398      Branch: perl
3399            ! op.c t/pragma/sub_lval.t
3400 ____________________________________________________________________________
3401 [  9951] By: jhi                                   on 2001/05/02  11:14:29
3402         Log: Forgot from #9942.  (Needed by t/lib/filter-simple.t.)
3403      Branch: perl
3404            + t/lib/MyFilter.pm
3405 ____________________________________________________________________________
3406 [  9950] By: gsar                                  on 2001/05/02  03:17:11
3407         Log: revert integration of changes#8254,8255 in change#8620 (causes
3408              a coredump in C<tie FH, 'foo'>; the idea itself may need better
3409              rationalization)
3410      Branch: maint-5.6/perl
3411            ! op.c t/pragma/sub_lval.t
3412 ____________________________________________________________________________
3413 [  9949] By: gsar                                  on 2001/05/02  02:56:32
3414         Log: integrate changes#9774,9814 from mainline (Unixware fixes)
3415              
3416              Subject: [ID 20010421.010] Perl 5.6.1 on Unixware 7
3417              
3418              Subject: Re: [ID 20010421.010] Perl 5.6.1 on Unixware 7
3419      Branch: maint-5.6/perl
3420           !> hints/svr5.sh
3421 ____________________________________________________________________________
3422 [  9948] By: gsar                                  on 2001/05/02  02:49:15
3423         Log: pod/find.t breaks on VMS (from Craig Berry)
3424      Branch: maint-5.6/perl
3425            ! t/pod/find.t
3426 ____________________________________________________________________________
3427 [  9947] By: jhi                                   on 2001/05/02  02:43:09
3428         Log: Add an encoding conversion example.
3429      Branch: perl
3430            ! ext/Encode/Encode.pm
3431 ____________________________________________________________________________
3432 [  9946] By: jhi                                   on 2001/05/02  01:34:22
3433         Log: Another coat of paint but still nowhere finished.
3434              Need to decide on the semantics of strptime(): should
3435              strptime() be a function instead of a method?  To do
3436              the week/monthname-strptiming the i18n/l10n bullet needs
3437              to be bitten with gusto.
3438      Branch: perl
3439            ! ext/Time/Piece/Piece.pm t/lib/time-piece.t
3440 ____________________________________________________________________________
3441 [  9945] By: jhi                                   on 2001/05/01  23:40:52
3442         Log: Update Changes.
3443      Branch: perl
3444            ! Changes patchlevel.h
3445 ____________________________________________________________________________
3446 [  9944] By: jhi                                   on 2001/05/01  23:33:37
3447         Log: Add known-to-be-tested modules to the list-to-be-skipped.
3448      Branch: perl
3449            ! t/lib/1_compile.t
3450 ____________________________________________________________________________
3451 [  9943] By: jhi                                   on 2001/05/01  23:24:40
3452         Log: Subject: BorlandC++ fix
3453              From: "Vadim Konovalov" <watman@inbox.ru>
3454              Date: Mon, 30 Apr 2001 20:12:26 -0700
3455              Message-ID: <006e01c0d1ec$8fb1b8d0$406bff87@vad>
3456      Branch: perl
3457            ! win32/makefile.mk
3458 ____________________________________________________________________________
3459 [  9942] By: jhi                                   on 2001/05/01  23:18:02
3460         Log: Update to Filter::Simple 0.60, create a test for it.
3461      Branch: perl
3462            + t/lib/filter-simple.t
3463            ! MANIFEST lib/Filter/Simple.pm
3464 ____________________________________________________________________________
3465 [  9941] By: jhi                                   on 2001/05/01  19:47:24
3466         Log: Subject: Re: bleadperl: s/// failure with \b and /g 
3467              From: Hugo <hv@crypt.compulink.co.uk>
3468              Date: Tue, 01 May 2001 20:12:20 +0100
3469              Message-Id: <200105011912.UAA06826@crypt.compulink.co.uk>
3470      Branch: perl
3471            ! pp_hot.c t/op/re_tests
3472 ____________________________________________________________________________
3473 [  9940] By: jhi                                   on 2001/05/01  19:42:16
3474         Log: Integrate perlio.
3475      Branch: perl
3476           !> lib/base.pm t/lib/fields.t
3477 ____________________________________________________________________________
3478 [  9939] By: jhi                                   on 2001/05/01  19:39:51
3479         Log: Subject: [PATCH] Allow appending on a PerlIO::Scalar
3480              From: Benjamin Sugars <bsugars@canoe.ca>
3481              Date: Tue, 1 May 2001 16:32:03 -0400 (EDT)
3482              Message-ID: <Pine.LNX.4.21.0105011627110.1526-100000@marmot.rim.canoe.ca>
3483      Branch: perl
3484            ! ext/PerlIO/Scalar/Scalar.xs t/lib/io_scalar.t
3485 ____________________________________________________________________________
3486 [  9938] By: jhi                                   on 2001/05/01  19:34:09
3487         Log: Add NEXT, a pseudo-class for method redispatching.
3488              <Damian>NEXT.pm probably offers more bang-for-buck
3489              than anything else I've ever written.</Damian>
3490      Branch: perl
3491            + lib/NEXT.pm t/lib/next.t
3492            ! MANIFEST
3493 ____________________________________________________________________________
3494 [  9937] By: jhi                                   on 2001/05/01  19:21:41
3495         Log: Update to Switch 2.02.
3496      Branch: perl
3497            ! lib/Switch.pm t/lib/switch.t
3498 ____________________________________________________________________________
3499 [  9936] By: nick                                  on 2001/05/01  19:09:21
3500         Log: Fix for base.pm clobbering $VERSION
3501      Branch: perlio
3502            ! lib/base.pm
3503 ____________________________________________________________________________
3504 [  9935] By: nick                                  on 2001/05/01  18:54:38
3505         Log: Test for base.pm clobbering $VERSION.
3506      Branch: perlio
3507            ! t/lib/fields.t
3508 ____________________________________________________________________________
3509 [  9934] By: jhi                                   on 2001/05/01  18:39:10
3510         Log: Add information about Scalar::Util::blessed.
3511      Branch: perl
3512            ! pod/perlobj.pod
3513 ____________________________________________________________________________
3514 [  9933] By: jhi                                   on 2001/05/01  18:33:51
3515         Log: Subject: Extra UNIVERSAL documentation
3516              From: Mike Guy <mjtg@cam.ac.uk>
3517              Date: Tue, 01 May 2001 20:12:11 +0100
3518              Message-Id: <E14ufZD-0007kD-00@libra.cus.cam.ac.uk>
3519      Branch: perl
3520            ! pod/perlobj.pod
3521 ____________________________________________________________________________
3522 [  9932] By: jhi                                   on 2001/05/01  18:26:54
3523         Log: Subject: Autoflush in tests as appropriate
3524              From: Mike Guy <mjtg@cam.ac.uk>
3525              Date: Tue, 01 May 2001 20:05:31 +0100
3526              Message-Id: <E14ufSl-0007gS-00@libra.cus.cam.ac.uk>
3527      Branch: perl
3528            ! t/lib/syslfs.t t/op/die_exit.t t/op/lex_assign.t t/op/lfs.t
3529            ! t/op/taint.t
3530 ____________________________________________________________________________
3531 [  9931] By: jhi                                   on 2001/05/01  18:02:29
3532         Log: Subject: [PATCH] Multiple consecutive writes on PerlIO::Scalar
3533              From: Benjamin Sugars <bsugars@canoe.ca>
3534              Date: Tue, 1 May 2001 14:58:24 -0400 (EDT)
3535              Message-ID: <Pine.LNX.4.21.0105011431300.1526-100000@marmot.rim.canoe.ca>
3536      Branch: perl
3537            ! ext/PerlIO/Scalar/Scalar.xs t/lib/io_scalar.t
3538 ____________________________________________________________________________
3539 [  9930] By: jhi                                   on 2001/05/01  15:12:26
3540         Log: Subject: Re: Finally got a round tuit
3541              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
3542              Date: Tue, 01 May 2001 14:14:10 +0200
3543              Message-Id: <20010501135740.19E4.H.M.BRAND@hccnet.nl>
3544              
3545              The -DP part, slightly modified.
3546      Branch: perl
3547            ! perl.c
3548 ____________________________________________________________________________
3549 [  9929] By: jhi                                   on 2001/05/01  14:17:15
3550         Log: Subject: Re: Finally got a round tuit
3551              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
3552              Date: Tue, 01 May 2001 16:34:06 +0200
3553              Message-Id: <20010501163255.19F2.H.M.BRAND@hccnet.nl>
3554              
3555              cpp and optimization tweaks for HP-UX.
3556      Branch: perl
3557            ! hints/hpux.sh
3558 ____________________________________________________________________________
3559 [  9928] By: jhi                                   on 2001/05/01  13:24:20
3560         Log: Tune the scan_num() comments to reality.
3561      Branch: perl
3562            ! toke.c
3563 ____________________________________________________________________________
3564 [  9927] By: jhi                                   on 2001/05/01  13:14:01
3565         Log: Subject: [PATCH B::Deparse] optimised sort
3566              From: Robin Houston <robin@kitsite.com>
3567              Date: Tue, 1 May 2001 14:07:12 +0100
3568              Message-ID: <20010501140712.A4266@penderel>
3569      Branch: perl
3570            ! ext/B/B/Deparse.pm
3571 ____________________________________________________________________________
3572 [  9926] By: jhi                                   on 2001/05/01  13:10:53
3573         Log: Subject: [PATCH t/lib/b-deparse.t] 
3574              From: Robin Houston <robin@kitsite.com>
3575              Date: Tue, 1 May 2001 13:37:42 +0100
3576              Message-ID: <20010501133742.A4082@penderel>
3577      Branch: perl
3578            ! t/lib/b-deparse.t
3579 ____________________________________________________________________________
3580 [  9925] By: jhi                                   on 2001/05/01  13:10:13
3581         Log: Subject: [PATCH B::Deparse] for(;;), sort
3582              From: Robin Houston <robin@kitsite.com>
3583              Date: Tue, 1 May 2001 13:35:00 +0100
3584              Message-ID: <20010501133500.A4061@penderel>
3585      Branch: perl
3586            ! ext/B/B/Deparse.pm
3587 ____________________________________________________________________________
3588 [  9924] By: jhi                                   on 2001/05/01  13:09:22
3589         Log: Subject: [PATCH B::Deparse] do, warn, use
3590              From: Robin Houston <robin@kitsite.com>
3591              Date: Tue, 1 May 2001 13:31:03 +0100
3592              Message-ID: <20010501133103.A4041@penderel>
3593      Branch: perl
3594            ! ext/B/B/Deparse.pm
3595 ____________________________________________________________________________
3596 [  9923] By: jhi                                   on 2001/05/01  11:45:36
3597         Log: Subject: [PATCH] Test autoflush on fork (Was: Should I remove something?)
3598              From: Benjamin Sugars <ben.sugars@home.com>
3599              Date: Mon, 30 Apr 2001 22:21:54 -0400 (EDT)
3600              Message-ID: <Pine.LNX.4.21.0104302213190.19002-100000@localhost.localdomain>
3601      Branch: perl
3602            + t/io/fflush.t
3603            ! MANIFEST
3604 ____________________________________________________________________________
3605 [  9922] By: jhi                                   on 2001/05/01  11:35:42
3606         Log: Subject: [PATCH: perl@9917] more VMS tweaks for addn'l selfstubber tests
3607              From: Peter Prymmer <pvhp@forte.com>
3608              Date: Mon, 30 Apr 2001 16:26:30 -0700 (PDT)
3609              Message-ID: <Pine.OSF.4.10.10104301621200.161547-100000@aspara.forte.com>
3610      Branch: perl
3611            ! t/lib/selfstubber.t
3612 ____________________________________________________________________________
3613 [  9921] By: jhi                                   on 2001/04/30  16:34:33
3614         Log: Subject: [PATCH B::Concise] suppress warning
3615              From: Robin Houston <robin@kitsite.com>
3616              Date: Mon, 30 Apr 2001 16:09:49 +0100
3617              Message-ID: <20010430160949.A25086@penderel>
3618      Branch: perl
3619            ! ext/B/B/Concise.pm
3620 ____________________________________________________________________________
3621 [  9920] By: jhi                                   on 2001/04/30  13:56:04
3622         Log: Strip the *markers* from #9919.
3623      Branch: perl
3624            ! pod/perlfaq.pod pod/perlfaq5.pod
3625 ____________________________________________________________________________
3626 [  9919] By: jhi                                   on 2001/04/30  13:54:04
3627         Log: Subject: [PATCH] (perlfaq/bleadperl) append mode and locking
3628              From: Gwyn Judd <b.judd@xtra.co.nz>
3629              Date: Sun, 29 Apr 2001 01:47:49 +1200
3630              Message-ID: <20010429014749.A4418@thislove>
3631      Branch: perl
3632            ! pod/perlfaq.pod pod/perlfaq5.pod
3633 ____________________________________________________________________________
3634 [  9918] By: jhi                                   on 2001/04/30  13:13:54
3635         Log: More_tweakage.
3636      Branch: perl
3637            ! pod/perldata.pod pod/perldiag.pod
3638 ____________________________________________________________________________
3639 [  9917] By: jhi                                   on 2001/04/30  13:01:27
3640         Log: Update Changes.
3641      Branch: perl
3642            ! Changes patchlevel.h
3643 ____________________________________________________________________________
3644 [  9916] By: jhi                                   on 2001/04/30  12:57:03
3645         Log: T_w_e_a_k_a_g_e.
3646      Branch: perl
3647            ! pod/perldata.pod pod/perldiag.pod
3648 ____________________________________________________________________________
3649 [  9915] By: jhi                                   on 2001/04/30  12:39:29
3650         Log: Install s2p also as psed.
3651              
3652              TODO: psed documentation?
3653      Branch: perl
3654            ! installperl
3655 ____________________________________________________________________________
3656 [  9914] By: jhi                                   on 2001/04/30  12:29:21
3657         Log: Subject: Re: [ID 20010303.009] SOCKS5 work around breaks other sockets
3658              From: Jens Hamisch <jens@Strawberry.COM>
3659              Date: Fri, 27 Apr 2001 17:00:36 +0200
3660              Message-ID: <20010427170036.K1372@Strawberry.COM>
3661              
3662              SOCKS5_VERSION_NAME is the right symbol to detect
3663              the presence of SOCKS5.  (HAS_SOCKS5_INIT is telling whether
3664              function called socks5_init() is available, and even that is
3665              not universal, most SOCKS5 installations use SOCKSinit()).
3666      Branch: perl
3667            ! perlio.c
3668 ____________________________________________________________________________
3669 [  9913] By: jhi                                   on 2001/04/30  12:22:15
3670         Log: Allow a zero timeout on IO::Socket accept and connect--
3671              though one really shouldn't do that.  Based on
3672              
3673              Subject: Not possible to set zero second timeout on accept() in IO::Socket and company..
3674              From: "John Holdsworth" <coldwave@bigfoot.com>
3675              Date: Sun, 4 Feb 2001 12:48:18 +0100
3676              Message-ID: <005a01c08ea0$5e6039d0$03ac2ac0@planc>
3677      Branch: perl
3678            ! ext/IO/lib/IO/Socket.pm
3679 ____________________________________________________________________________
3680 [  9912] By: jhi                                   on 2001/04/30  11:27:27
3681         Log: Save the spot of regprev (see #9911) for binary compatibility;
3682              regen API.
3683      Branch: perl
3684            ! embedvar.h perlapi.h thrdvar.h
3685 ____________________________________________________________________________
3686 [  9911] By: jhi                                   on 2001/04/30  11:22:03
3687         Log: Subject: Re: [PATCH bleadperl] [ID 20010426.002] Word boundry regex [...] 
3688              From: Hugo <hv@crypt.compulink.co.uk>
3689              Date: Sun, 29 Apr 2001 17:09:30 +0100
3690              Message-Id: <200104291609.RAA17790@crypt.compulink.co.uk>
3691      Branch: perl
3692            ! regcomp.c regexec.c sv.c t/op/re_tests t/op/subst.t thrdvar.h
3693 ____________________________________________________________________________
3694 [  9910] By: jhi                                   on 2001/04/30  11:15:12
3695         Log: Change PL_numeric_radix to PL_numeric_radix_sv (and leave in
3696              a dummy for PL_numeric_radix); no pressing reason to break
3697              binary compatibility; regen API.
3698      Branch: perl
3699            ! embedvar.h global.sym intrpvar.h objXSUB.h perl.c perl.h
3700            ! perlapi.c perlapi.h pod/perlapi.pod sv.c util.c
3701 ____________________________________________________________________________
3702 [  9909] By: jhi                                   on 2001/04/30  10:56:08
3703         Log: Subject: [DOC PATCH bleadperl] Document generation of random integers
3704              From: Walt Mankowski <waltman@netaxs.com>
3705              Date: Sun, 29 Apr 2001 21:53:48 -0400
3706              Message-ID: <20010429215348.A3971@netaxs.com>
3707      Branch: perl
3708            ! pod/perlfunc.pod
3709 ____________________________________________________________________________
3710 [  9908] By: jhi                                   on 2001/04/30  10:49:40
3711         Log: Reintroduce #9889 to unbuffer the stderr/stdout on stdio configs.
3712      Branch: perl
3713            ! t/lib/selfstubber.t
3714 ____________________________________________________________________________
3715 [  9907] By: nick                                  on 2001/04/30  09:26:50
3716         Log: Integrate mainline.
3717      Branch: perlio
3718           !> pod/perldata.pod pod/perldiag.pod t/pragma/warn/toke toke.c
3719 ____________________________________________________________________________
3720 [  9906] By: jhi                                   on 2001/04/29  23:24:20
3721         Log: Abigail spotted a thinko in #9905.
3722      Branch: perl
3723            ! pod/perldiag.pod
3724 ____________________________________________________________________________
3725 [  9905] By: jhi                                   on 2001/04/29  15:55:39
3726         Log: Changed the underscore/undebar syntax in numeric constants;
3727              now any grouping will do, as long as the underscores are not
3728              consecutive (so "zero-grouping" is out), and they do not begin
3729              or end the integer or fractional parts.
3730      Branch: perl
3731            ! pod/perldata.pod pod/perldiag.pod t/pragma/warn/toke toke.c
3732 ____________________________________________________________________________
3733 [  9904] By: nick                                  on 2001/04/29  15:43:22
3734         Log: Integrate mainline.
3735      Branch: perlio
3736           +> (branch 98 files)
3737            - lib/unicode/Block.pl
3738            - lib/unicode/In/AlphabeticPresentationForms.pl
3739            - lib/unicode/In/Arabic.pl
3740            - lib/unicode/In/ArabicPresentationForms-A.pl
3741            - lib/unicode/In/ArabicPresentationForms-B.pl
3742            - lib/unicode/In/Armenian.pl lib/unicode/In/Arrows.pl
3743            - lib/unicode/In/BasicLatin.pl lib/unicode/In/Bengali.pl
3744            - lib/unicode/In/BlockElements.pl lib/unicode/In/Bopomofo.pl
3745            - lib/unicode/In/BopomofoExtended.pl
3746            - lib/unicode/In/BoxDrawing.pl lib/unicode/In/BraillePatterns.pl
3747            - lib/unicode/In/CJKCompatibility.pl
3748            - lib/unicode/In/CJKCompatibilityForms.pl
3749            - lib/unicode/In/CJKCompatibilityIdeographs.pl
3750            - lib/unicode/In/CJKRadicalsSupplement.pl
3751            - lib/unicode/In/CJKSymbolsandPunctuation.pl
3752            - lib/unicode/In/CJKUnifiedIdeographs.pl
3753            - lib/unicode/In/CJKUnifiedIdeographsExtensionA.pl
3754            - lib/unicode/In/Cherokee.pl
3755            - lib/unicode/In/CombiningDiacriticalMarks.pl
3756            - lib/unicode/In/CombiningHalfMarks.pl
3757            - lib/unicode/In/CombiningMarksforSymbols.pl
3758            - lib/unicode/In/ControlPictures.pl
3759            - lib/unicode/In/CurrencySymbols.pl lib/unicode/In/Cyrillic.pl
3760            - lib/unicode/In/Devanagari.pl lib/unicode/In/Dingbats.pl
3761            - lib/unicode/In/EnclosedAlphanumerics.pl
3762            - lib/unicode/In/EnclosedCJKLettersandMonths.pl
3763            - lib/unicode/In/Ethiopic.pl
3764            - lib/unicode/In/GeneralPunctuation.pl
3765            - lib/unicode/In/GeometricShapes.pl lib/unicode/In/Georgian.pl
3766            - lib/unicode/In/Greek.pl lib/unicode/In/GreekExtended.pl
3767            - lib/unicode/In/Gujarati.pl lib/unicode/In/Gurmukhi.pl
3768            - lib/unicode/In/HalfwidthandFullwidthForms.pl
3769            - lib/unicode/In/HangulCompatibilityJamo.pl
3770            - lib/unicode/In/HangulJamo.pl lib/unicode/In/HangulSyllables.pl
3771            - lib/unicode/In/Hebrew.pl
3772            - lib/unicode/In/HighPrivateUseSurrogates.pl
3773            - lib/unicode/In/HighSurrogates.pl lib/unicode/In/Hiragana.pl
3774            - lib/unicode/In/IPAExtensions.pl
3775            - lib/unicode/In/IdeographicDescriptionCharacters.pl
3776            - lib/unicode/In/Kanbun.pl lib/unicode/In/KangxiRadicals.pl
3777            - lib/unicode/In/Kannada.pl lib/unicode/In/Katakana.pl
3778            - lib/unicode/In/Khmer.pl lib/unicode/In/Lao.pl
3779            - lib/unicode/In/Latin-1Supplement.pl
3780            - lib/unicode/In/LatinExtended-A.pl
3781            - lib/unicode/In/LatinExtended-B.pl
3782            - lib/unicode/In/LatinExtendedAdditional.pl
3783            - lib/unicode/In/LetterlikeSymbols.pl
3784            - lib/unicode/In/LowSurrogates.pl lib/unicode/In/Malayalam.pl
3785            - lib/unicode/In/MathematicalOperators.pl
3786            - lib/unicode/In/MiscellaneousSymbols.pl
3787            - lib/unicode/In/MiscellaneousTechnical.pl
3788            - lib/unicode/In/Mongolian.pl lib/unicode/In/Myanmar.pl
3789            - lib/unicode/In/NumberForms.pl lib/unicode/In/Ogham.pl
3790            - lib/unicode/In/OpticalCharacterRecognition.pl
3791            - lib/unicode/In/Oriya.pl lib/unicode/In/PrivateUse.pl
3792            - lib/unicode/In/Runic.pl lib/unicode/In/Sinhala.pl
3793            - lib/unicode/In/SmallFormVariants.pl
3794            - lib/unicode/In/SpacingModifierLetters.pl
3795            - lib/unicode/In/Specials.pl
3796            - lib/unicode/In/SuperscriptsandSubscripts.pl
3797            - lib/unicode/In/Syriac.pl lib/unicode/In/Tamil.pl
3798            - lib/unicode/In/Telugu.pl lib/unicode/In/Thaana.pl
3799            - lib/unicode/In/Thai.pl lib/unicode/In/Tibetan.pl
3800            - lib/unicode/In/UnifiedCanadianAboriginalSyllabics.pl
3801            - lib/unicode/In/YiRadicals.pl lib/unicode/In/YiSyllables.pl
3802           !> INSTALL MANIFEST doop.c embed.h embed.pl ext/B/B/Deparse.pm
3803           !> ext/IO/lib/IO/Seekable.pm hints/hpux.sh
3804           !> lib/unicode/mktables.PL lib/utf8_heavy.pl objXSUB.h perl.h
3805           !> pod/perldiag.pod pod/perlunicode.pod proto.h regcomp.c
3806           !> regexec.c t/lib/b-deparse.t t/lib/selfstubber.t t/op/pat.t
3807           !> utf8.c win32/Makefile
3808 ____________________________________________________________________________
3809 [  9903] By: jhi                                   on 2001/04/29  14:30:53
3810         Log: Subject: [PATCH: perl@9885] win32/Makefile (nmake) update
3811              From: Prymmer/Kahn <pvhp@best.com>
3812              Date: Sat, 28 Apr 2001 21:56:51 -0700 (PDT)
3813              Message-ID: <Pine.BSF.4.21.0104282147270.2927-100000@shell8.ba.best.com>
3814      Branch: perl
3815            ! win32/Makefile
3816 ____________________________________________________________________________
3817 [  9902] By: jhi                                   on 2001/04/29  02:52:44
3818         Log: Subject: [PATCH ext/IO/lib/IO/Seekable.pm] Doc fixes.
3819              From: "Abigail" <abigail@foad.org>
3820              Date: Sun, 29 Apr 2001 03:14:25 +0200
3821              Message-ID: <20010429011425.24503.qmail@foad.org>
3822      Branch: perl
3823            ! ext/IO/lib/IO/Seekable.pm
3824 ____________________________________________________________________________
3825 [  9901] By: jhi                                   on 2001/04/29  02:04:46
3826         Log: In character classes one couldn't have 0x80..0xff characters
3827              at the left hand side if there were 0x100.. characters in the
3828              character class.
3829      Branch: perl
3830            ! doop.c embed.h embed.pl objXSUB.h proto.h regcomp.c regexec.c
3831            ! t/op/pat.t utf8.c
3832 ____________________________________________________________________________
3833 [  9900] By: jhi                                   on 2001/04/28  22:55:04
3834         Log: Forgot the latest mktables.PL from #9899.
3835      Branch: perl
3836            ! lib/unicode/mktables.PL
3837 ____________________________________________________________________________
3838 [  9899] By: jhi                                   on 2001/04/28  22:53:28
3839         Log: Explain the \p{} and \P{} error message better and
3840              have prettier prettyprint in In.pl.
3841      Branch: perl
3842            ! lib/unicode/In.pl lib/unicode/mktables.PL lib/utf8_heavy.pl
3843            ! pod/perldiag.pod
3844 ____________________________________________________________________________
3845 [  9898] By: jhi                                   on 2001/04/28  21:03:34
3846         Log: Add one possible explanation for the "Invalid [] range" error.
3847      Branch: perl
3848            ! pod/perldiag.pod
3849 ____________________________________________________________________________
3850 [  9897] By: jhi                                   on 2001/04/28  17:18:26
3851         Log: Add a level of indirection to the implementation of \p{InFoo}
3852              so that we don't have to have long filenames.  (Nothing changes
3853              in the user interface.)   The indirection is defined in
3854              the file lib/unicode/In.pl and it is handled in lib/utf8_heavy.pl.
3855              Also rename some the character classes by removing '-' from
3856              the classnames, and finally renamed Block.pl as Blocks.pl.
3857      Branch: perl
3858            + lib/unicode/Blocks.pl lib/unicode/In.pl lib/unicode/In/0.pl
3859            + lib/unicode/In/1.pl lib/unicode/In/10.pl lib/unicode/In/11.pl
3860            + lib/unicode/In/12.pl lib/unicode/In/13.pl lib/unicode/In/14.pl
3861            + lib/unicode/In/15.pl lib/unicode/In/16.pl lib/unicode/In/17.pl
3862            + lib/unicode/In/18.pl lib/unicode/In/19.pl lib/unicode/In/2.pl
3863            + lib/unicode/In/20.pl lib/unicode/In/21.pl lib/unicode/In/22.pl
3864            + lib/unicode/In/23.pl lib/unicode/In/24.pl lib/unicode/In/25.pl
3865            + lib/unicode/In/26.pl lib/unicode/In/27.pl lib/unicode/In/28.pl
3866            + lib/unicode/In/29.pl lib/unicode/In/3.pl lib/unicode/In/30.pl
3867            + lib/unicode/In/31.pl lib/unicode/In/32.pl lib/unicode/In/33.pl
3868            + lib/unicode/In/34.pl lib/unicode/In/35.pl lib/unicode/In/36.pl
3869            + lib/unicode/In/37.pl lib/unicode/In/38.pl lib/unicode/In/39.pl
3870            + lib/unicode/In/4.pl lib/unicode/In/40.pl lib/unicode/In/41.pl
3871            + lib/unicode/In/42.pl lib/unicode/In/43.pl lib/unicode/In/44.pl
3872            + lib/unicode/In/45.pl lib/unicode/In/46.pl lib/unicode/In/47.pl
3873            + lib/unicode/In/48.pl lib/unicode/In/49.pl lib/unicode/In/5.pl
3874            + lib/unicode/In/50.pl lib/unicode/In/51.pl lib/unicode/In/52.pl
3875            + lib/unicode/In/53.pl lib/unicode/In/54.pl lib/unicode/In/55.pl
3876            + lib/unicode/In/56.pl lib/unicode/In/57.pl lib/unicode/In/58.pl
3877            + lib/unicode/In/59.pl lib/unicode/In/6.pl lib/unicode/In/60.pl
3878            + lib/unicode/In/61.pl lib/unicode/In/62.pl lib/unicode/In/63.pl
3879            + lib/unicode/In/64.pl lib/unicode/In/65.pl lib/unicode/In/66.pl
3880            + lib/unicode/In/67.pl lib/unicode/In/68.pl lib/unicode/In/69.pl
3881            + lib/unicode/In/7.pl lib/unicode/In/70.pl lib/unicode/In/71.pl
3882            + lib/unicode/In/72.pl lib/unicode/In/73.pl lib/unicode/In/74.pl
3883            + lib/unicode/In/75.pl lib/unicode/In/76.pl lib/unicode/In/77.pl
3884            + lib/unicode/In/78.pl lib/unicode/In/79.pl lib/unicode/In/8.pl
3885            + lib/unicode/In/80.pl lib/unicode/In/81.pl lib/unicode/In/82.pl
3886            + lib/unicode/In/83.pl lib/unicode/In/84.pl lib/unicode/In/85.pl
3887            + lib/unicode/In/86.pl lib/unicode/In/87.pl lib/unicode/In/88.pl
3888            + lib/unicode/In/89.pl lib/unicode/In/9.pl lib/unicode/In/90.pl
3889            + lib/unicode/In/91.pl lib/unicode/In/92.pl lib/unicode/In/93.pl
3890            + lib/unicode/In/94.pl lib/unicode/In/95.pl
3891            - lib/unicode/Block.pl
3892            - lib/unicode/In/AlphabeticPresentationForms.pl
3893            - lib/unicode/In/Arabic.pl
3894            - lib/unicode/In/ArabicPresentationForms-A.pl
3895            - lib/unicode/In/ArabicPresentationForms-B.pl
3896            - lib/unicode/In/Armenian.pl lib/unicode/In/Arrows.pl
3897            - lib/unicode/In/BasicLatin.pl lib/unicode/In/Bengali.pl
3898            - lib/unicode/In/BlockElements.pl lib/unicode/In/Bopomofo.pl
3899            - lib/unicode/In/BopomofoExtended.pl
3900            - lib/unicode/In/BoxDrawing.pl lib/unicode/In/BraillePatterns.pl
3901            - lib/unicode/In/CJKCompatibility.pl
3902            - lib/unicode/In/CJKCompatibilityForms.pl
3903            - lib/unicode/In/CJKCompatibilityIdeographs.pl
3904            - lib/unicode/In/CJKRadicalsSupplement.pl
3905            - lib/unicode/In/CJKSymbolsandPunctuation.pl
3906            - lib/unicode/In/CJKUnifiedIdeographs.pl
3907            - lib/unicode/In/CJKUnifiedIdeographsExtensionA.pl
3908            - lib/unicode/In/Cherokee.pl
3909            - lib/unicode/In/CombiningDiacriticalMarks.pl
3910            - lib/unicode/In/CombiningHalfMarks.pl
3911            - lib/unicode/In/CombiningMarksforSymbols.pl
3912            - lib/unicode/In/ControlPictures.pl
3913            - lib/unicode/In/CurrencySymbols.pl lib/unicode/In/Cyrillic.pl
3914            - lib/unicode/In/Devanagari.pl lib/unicode/In/Dingbats.pl
3915            - lib/unicode/In/EnclosedAlphanumerics.pl
3916            - lib/unicode/In/EnclosedCJKLettersandMonths.pl
3917            - lib/unicode/In/Ethiopic.pl
3918            - lib/unicode/In/GeneralPunctuation.pl
3919            - lib/unicode/In/GeometricShapes.pl lib/unicode/In/Georgian.pl
3920            - lib/unicode/In/Greek.pl lib/unicode/In/GreekExtended.pl
3921            - lib/unicode/In/Gujarati.pl lib/unicode/In/Gurmukhi.pl
3922            - lib/unicode/In/HalfwidthandFullwidthForms.pl
3923            - lib/unicode/In/HangulCompatibilityJamo.pl
3924            - lib/unicode/In/HangulJamo.pl lib/unicode/In/HangulSyllables.pl
3925            - lib/unicode/In/Hebrew.pl
3926            - lib/unicode/In/HighPrivateUseSurrogates.pl
3927            - lib/unicode/In/HighSurrogates.pl lib/unicode/In/Hiragana.pl
3928            - lib/unicode/In/IPAExtensions.pl
3929            - lib/unicode/In/IdeographicDescriptionCharacters.pl
3930            - lib/unicode/In/Kanbun.pl lib/unicode/In/KangxiRadicals.pl
3931            - lib/unicode/In/Kannada.pl lib/unicode/In/Katakana.pl
3932            - lib/unicode/In/Khmer.pl lib/unicode/In/Lao.pl
3933            - lib/unicode/In/Latin-1Supplement.pl
3934            - lib/unicode/In/LatinExtended-A.pl
3935            - lib/unicode/In/LatinExtended-B.pl
3936            - lib/unicode/In/LatinExtendedAdditional.pl
3937            - lib/unicode/In/LetterlikeSymbols.pl
3938            - lib/unicode/In/LowSurrogates.pl lib/unicode/In/Malayalam.pl
3939            - lib/unicode/In/MathematicalOperators.pl
3940            - lib/unicode/In/MiscellaneousSymbols.pl
3941            - lib/unicode/In/MiscellaneousTechnical.pl
3942            - lib/unicode/In/Mongolian.pl lib/unicode/In/Myanmar.pl
3943            - lib/unicode/In/NumberForms.pl lib/unicode/In/Ogham.pl
3944            - lib/unicode/In/OpticalCharacterRecognition.pl
3945            - lib/unicode/In/Oriya.pl lib/unicode/In/PrivateUse.pl
3946            - lib/unicode/In/Runic.pl lib/unicode/In/Sinhala.pl
3947            - lib/unicode/In/SmallFormVariants.pl
3948            - lib/unicode/In/SpacingModifierLetters.pl
3949            - lib/unicode/In/Specials.pl
3950            - lib/unicode/In/SuperscriptsandSubscripts.pl
3951            - lib/unicode/In/Syriac.pl lib/unicode/In/Tamil.pl
3952            - lib/unicode/In/Telugu.pl lib/unicode/In/Thaana.pl
3953            - lib/unicode/In/Thai.pl lib/unicode/In/Tibetan.pl
3954            - lib/unicode/In/UnifiedCanadianAboriginalSyllabics.pl
3955            - lib/unicode/In/YiRadicals.pl lib/unicode/In/YiSyllables.pl
3956            ! MANIFEST lib/unicode/mktables.PL lib/utf8_heavy.pl
3957            ! pod/perlunicode.pod
3958 ____________________________________________________________________________
3959 [  9896] By: jhi                                   on 2001/04/28  14:33:17
3960         Log: Update the information on shared library path on HP-UX.
3961      Branch: perl
3962            ! INSTALL
3963 ____________________________________________________________________________
3964 [  9895] By: jhi                                   on 2001/04/28  14:32:30
3965         Log: Because #9894 seems to do the trick, this workaround can be removed.
3966      Branch: perl
3967            ! t/lib/selfstubber.t
3968 ____________________________________________________________________________
3969 [  9894] By: jhi                                   on 2001/04/28  14:26:13
3970         Log: For PerlIO flush the children's file handles (on fork/exec/system).
3971      Branch: perl
3972            ! perl.h
3973 ____________________________________________________________________________
3974 [  9893] By: jhi                                   on 2001/04/28  14:23:15
3975         Log: Test tweak for #9891.
3976      Branch: perl
3977            ! t/lib/b-deparse.t
3978 ____________________________________________________________________________
3979 [  9892] By: jhi                                   on 2001/04/28  14:10:13
3980         Log: New HP-UX hints from Merijn.
3981      Branch: perl
3982            ! hints/hpux.sh
3983 ____________________________________________________________________________
3984 [  9891] By: jhi                                   on 2001/04/28  14:07:27
3985         Log: Subject: [PATCH B::Deparse] non-block scopes
3986              From: Robin Houston <robin@kitsite.com>
3987              Date: Fri, 27 Apr 2001 19:15:14 +0100
3988              Message-ID: <20010427191514.A30951@puffinry.freeserve.co.uk>
3989      Branch: perl
3990            ! ext/B/B/Deparse.pm
3991 ____________________________________________________________________________
3992 [  9890] By: nick                                  on 2001/04/27  19:41:25
3993         Log: Integrate mainline
3994      Branch: perlio
3995           +> t/lib/selfstubber.t
3996           !> (integrate 50 files)
3997 ____________________________________________________________________________
3998 [  9889] By: jhi                                   on 2001/04/27  18:23:46
3999         Log: Subject: Re: selfstubber test fail on bleadperl
4000              From: Mike Guy <mjtg@cam.ac.uk>
4001              Date: Fri, 27 Apr 2001 19:31:18 +0100
4002              Message-Id: <E14tD1S-0001tJ-00@libra.cus.cam.ac.uk>
4003      Branch: perl
4004            ! t/lib/selfstubber.t
4005 ____________________________________________________________________________
4006 [  9888] By: jhi                                   on 2001/04/27  16:20:54
4007         Log: Test tweak for #9886.
4008      Branch: perl
4009            ! t/lib/b-deparse.t
4010 ____________________________________________________________________________
4011 [  9887] By: jhi                                   on 2001/04/27  16:16:33
4012         Log: Buffering issue at least in Solaris (even with perlio).
4013      Branch: perl
4014            ! t/lib/selfstubber.t
4015 ____________________________________________________________________________
4016 [  9886] By: jhi                                   on 2001/04/27  14:59:23
4017         Log: Subject: [PATCH B::Deparse] Human-readable pragmas &c
4018              From: Robin Houston <robin@kitsite.com>
4019              Date: Fri, 27 Apr 2001 16:53:20 +0100
4020              Message-ID: <20010427165320.A30479@puffinry.freeserve.co.uk>
4021      Branch: perl
4022            ! ext/B/B/Deparse.pm
4023 ____________________________________________________________________________
4024 [  9885] By: jhi                                   on 2001/04/27  14:23:51
4025         Log: Update Changes.
4026      Branch: perl
4027            ! Changes patchlevel.h
4028 ____________________________________________________________________________
4029 [  9884] By: jhi                                   on 2001/04/27  14:14:12
4030         Log: Subject: [DOC PATCH bleadperl] Document underscores in numeric literals
4031              From: "Philip Newton" <pnewton@gmx.de>
4032              Date: Fri, 27 Apr 2001 16:40:13 +0200
4033              Message-ID: <3AE9A0ED.5248.CEA127@localhost>
4034      Branch: perl
4035            ! pod/perldata.pod
4036 ____________________________________________________________________________
4037 [  9883] By: jhi                                   on 2001/04/27  13:28:19
4038         Log: Add LOG_PERROR; prettify the "removed".
4039      Branch: perl
4040            ! ext/Sys/Syslog/Syslog.xs
4041 ____________________________________________________________________________
4042 [  9882] By: jhi                                   on 2001/04/27  13:13:18
4043         Log: h2xs tweaks: use NV instead of double, "quote" the removed
4044              prefixes for clarity (especially when nothing is removed),
4045              slight pod reformats.
4046      Branch: perl
4047            ! utils/h2xs.PL
4048 ____________________________________________________________________________
4049 [  9881] By: jhi                                   on 2001/04/27  12:58:48
4050         Log: Don't bother creating existing directories.
4051      Branch: perl
4052            ! utils/h2xs.PL
4053 ____________________________________________________________________________
4054 [  9880] By: jhi                                   on 2001/04/27  12:45:39
4055         Log: Subject: MakeMaker 'make test' weirdness -- fix for h2xs provided
4056              From: Mike Schilli <m@perlmeister.com>
4057              Date: Wed, 25 Apr 2001 01:29:21 -0700
4058              Message-id: <3AE68AE1.6A981723@perlmeister.com>
4059      Branch: perl
4060            ! utils/h2xs.PL
4061 ____________________________________________________________________________
4062 [  9879] By: jhi                                   on 2001/04/27  12:40:55
4063         Log: break is not yet Perl.  Added the template license also to README.
4064      Branch: perl
4065            ! utils/h2xs.PL
4066 ____________________________________________________________________________
4067 [  9878] By: jhi                                   on 2001/04/27  03:08:20
4068         Log: Subject: Re: [ID 20010426.003] Not OK: perl v5.7.1 +DEVEL9849 on i686-linux-thread-multi-64int-ld 2.2.13
4069              From: Tim Jenness <t.jenness@jach.hawaii.edu>
4070              Date: Thu, 26 Apr 2001 15:30:17 -1000 (HST)
4071              Message-ID: <Pine.LNX.4.33.0104261529300.13049-100000@lapaki.jach.hawaii.edu>
4072      Branch: perl
4073            ! t/lib/xs-typemap.t
4074 ____________________________________________________________________________
4075 [  9877] By: jhi                                   on 2001/04/26  23:54:40
4076         Log: Subject: [PATCH: utils/h2xs.PL (bleadperl)] Fill in details we're likely to know.
4077              From: "Abigail" <abigail@foad.org>
4078              Date: Fri, 27 Apr 2001 01:44:28 +0200
4079              Message-ID: <20010426234428.19786.qmail@foad.org>
4080      Branch: perl
4081            ! utils/h2xs.PL
4082 ____________________________________________________________________________
4083 [  9876] By: jhi                                   on 2001/04/26  23:52:06
4084         Log: Subject: [PATCH: perl@9865] vms specific tweak to new selfstubber.t
4085              From: Peter Prymmer <pvhp@forte.com>
4086              Date: Thu, 26 Apr 2001 17:41:58 -0700 (PDT)
4087              Message-ID: <Pine.OSF.4.10.10104261738370.338047-100000@aspara.forte.com>
4088      Branch: perl
4089            ! t/lib/selfstubber.t
4090 ____________________________________________________________________________
4091 [  9875] By: jhi                                   on 2001/04/26  23:48:10
4092         Log: Deparse nits.
4093      Branch: perl
4094            ! ext/B/B/Deparse.pm t/lib/b-deparse.t
4095 ____________________________________________________________________________
4096 [  9874] By: jhi                                   on 2001/04/26  22:46:05
4097         Log: Document ANYOF_CLASS.
4098      Branch: perl
4099            ! regcomp.h
4100 ____________________________________________________________________________
4101 [  9873] By: jhi                                   on 2001/04/26  22:35:03
4102         Log: Subject: Re: [PATCH @9846] dumping ANYOF
4103              From: Hugo <hv@crypt.compulink.co.uk>
4104              Date: Thu, 26 Apr 2001 23:33:38 +0100
4105              Message-Id: <200104262233.XAA22352@crypt.compulink.co.uk>
4106      Branch: perl
4107            ! regcomp.c regcomp.h
4108 ____________________________________________________________________________
4109 [  9872] By: jhi                                   on 2001/04/26  22:34:31
4110         Log: Subject: [PATCH] more for Devel::SelfStubber
4111              From: Nicholas Clark <nick@ccl4.org>
4112              Date: Fri, 27 Apr 2001 00:13:52 +0100
4113              Message-ID: <20010427001351.K88186@plum.flirble.org>
4114      Branch: perl
4115            ! lib/Devel/SelfStubber.pm lib/SelfLoader.pm t/lib/selfstubber.t
4116 ____________________________________________________________________________
4117 [  9871] By: jhi                                   on 2001/04/26  21:59:17
4118         Log: Subject: [PATCH B::Deparse] formats must be flush left
4119              From: Robin Houston <robin@kitsite.com>
4120              Date: Thu, 26 Apr 2001 23:54:29 +0100
4121              Message-ID: <20010426235429.A28747@puffinry.freeserve.co.uk>
4122      Branch: perl
4123            ! ext/B/B/Deparse.pm
4124 ____________________________________________________________________________
4125 [  9870] By: jhi                                   on 2001/04/26  21:57:37
4126         Log: If some of the constants are prefixes of others,
4127              the prefixes may never get recognized.  (See 20010426.006.)
4128      Branch: perl
4129            ! utils/h2xs.PL
4130 ____________________________________________________________________________
4131 [  9869] By: jhi                                   on 2001/04/26  21:50:42
4132         Log: Subject: [ID 20010426.006] Sys::Syslog ignores LOG_AUTH constant
4133              From: Chris Bongaarts <cab@tc.umn.edu>
4134              Date: Thu, 26 Apr 2001 17:10:31 -0500
4135              Message-Id: <iss.2042.3ae89cd7.6cfba.1@earth.tc.umn.edu>
4136      Branch: perl
4137            ! ext/Sys/Syslog/Syslog.xs
4138 ____________________________________________________________________________
4139 [  9868] By: jhi                                   on 2001/04/26  21:35:12
4140         Log: Further cuts and more docs from Graham Barr.
4141      Branch: perl
4142            ! ext/List/Util/lib/List/Util.pm
4143            ! ext/List/Util/lib/Scalar/Util.pm
4144 ____________________________________________________________________________
4145 [  9867] By: jhi                                   on 2001/04/26  21:18:57
4146         Log: Subject: [PATCH 5.7.1] DB_File-1.77
4147              From: "Paul Marquess" <Paul.Marquess@Openwave.com>
4148              Date: Thu, 26 Apr 2001 22:37:53 +0100
4149              Message-ID: <000a01c0ce99$269cc3e0$99dcfea9@bfs.phone.com>
4150      Branch: perl
4151            ! ext/DB_File/Changes ext/DB_File/DB_File.pm
4152            ! ext/DB_File/DB_File.xs ext/DB_File/version.c
4153 ____________________________________________________________________________
4154 [  9866] By: jhi                                   on 2001/04/26  21:12:31
4155         Log: Subject: [PATCH B::Deparse] fix easy bugs
4156              From: Robin Houston <robin@kitsite.com>
4157              Date: Thu, 26 Apr 2001 23:03:33 +0100
4158              Message-ID: <20010426230333.A28657@puffinry.freeserve.co.uk>
4159      Branch: perl
4160            ! ext/B/B/Deparse.pm
4161 ____________________________________________________________________________
4162 [  9865] By: jhi                                   on 2001/04/26  20:26:13
4163         Log: Update Changes.
4164      Branch: perl
4165            ! Changes patchlevel.h
4166 ____________________________________________________________________________
4167 [  9864] By: jhi                                   on 2001/04/26  19:27:48
4168         Log: Dethinko from Robin Houston.
4169      Branch: perl
4170            ! ext/B/B/Deparse.pm
4171 ____________________________________________________________________________
4172 [  9863] By: jhi                                   on 2001/04/26  19:10:35
4173         Log: Subject: [PATCH B::Deparse] C<$x = /(.)/> ne C<($x) = /(.)/>
4174              From: Robin Houston <robin@kitsite.com>
4175              Date: Thu, 26 Apr 2001 21:08:32 +0100
4176              Message-ID: <20010426210832.A28419@puffinry.freeserve.co.uk>
4177      Branch: perl
4178            ! ext/B/B/Deparse.pm
4179 ____________________________________________________________________________
4180 [  9862] By: jhi                                   on 2001/04/26  19:04:23
4181         Log: Subject: Re: [PATCH B::Deparse] fix string uninterpretation
4182              From: Robin Houston <robin@kitsite.com>
4183              Date: Thu, 26 Apr 2001 20:52:50 +0100
4184              Message-ID: <20010426205249.A28328@puffinry.freeserve.co.uk>
4185      Branch: perl
4186            ! ext/B/B/Deparse.pm
4187 ____________________________________________________________________________
4188 [  9861] By: jhi                                   on 2001/04/26  18:56:14
4189         Log: Subject: Re: [PATCH] UNIVERSAL shouldn't require Exporter
4190              From: Mike Guy <mjtg@cam.ac.uk>
4191              Date: Thu, 26 Apr 2001 14:22:40 +0100
4192              Message-Id: <E14sljE-0003X9-00@libra.cus.cam.ac.uk>
4193      Branch: perl
4194            ! pod/perlobj.pod
4195 ____________________________________________________________________________
4196 [  9860] By: jhi                                   on 2001/04/26  18:46:42
4197         Log: Subject: Re: [PATCH B::Deparse] fix string uninterpretation
4198              From: Robin Houston <robin@kitsite.com>
4199              Date: Thu, 26 Apr 2001 20:34:29 +0100
4200              Message-ID: <20010426203429.A28261@puffinry.freeserve.co.uk>
4201              
4202              Hashes do not interpolate.
4203      Branch: perl
4204            ! ext/B/B/Deparse.pm
4205 ____________________________________________________________________________
4206 [  9859] By: jhi                                   on 2001/04/26  18:43:51
4207         Log: Subject: The Time::Piece conspiracy unmasked!!!
4208              From: Mike Guy <mjtg@cam.ac.uk>
4209              Date: Thu, 26 Apr 2001 19:02:50 +0100
4210              Message-Id: <E14sq6M-0002g9-00@libra.cus.cam.ac.uk>
4211              
4212              Subject: [PATCH] that's enough UNIVERSAL stuff for one day ...
4213              From: Mike Guy <mjtg@cam.ac.uk>
4214              Date: Thu, 26 Apr 2001 19:08:21 +0100
4215              Message-Id: <E14sqBh-0002mI-00@libra.cus.cam.ac.uk>
4216              
4217              Subject: Re: [PATCH] that's enough UNIVERSAL stuff for one day ...
4218              From: Graham Barr <gbarr@pobox.com>
4219              Date: Thu, 26 Apr 2001 19:12:03 +0100
4220              Message-ID: <20010426191203.A70835@pobox.com>
4221              
4222              Eradicate UNIVERSAL (Mike) and remove the fallback Perl code (Graham)
4223      Branch: perl
4224            ! ext/List/Util/lib/List/Util.pm
4225            ! ext/List/Util/lib/Scalar/Util.pm ext/Time/Piece/Piece.pm gv.c
4226 ____________________________________________________________________________
4227 [  9858] By: jhi                                   on 2001/04/26  18:17:42
4228         Log: Subject: [PATCH t/comp/proto.t] disable correct warning
4229              From: Robin Houston <robin@kitsite.com>
4230              Date: Thu, 26 Apr 2001 16:09:35 +0100
4231              Message-ID: <20010426160934.A27140@puffinry.freeserve.co.uk>
4232      Branch: perl
4233            ! t/comp/proto.t
4234 ____________________________________________________________________________
4235 [  9857] By: jhi                                   on 2001/04/26  18:04:59
4236         Log: Subject: Re: [PATCH perldiag.pod] Re: [PATCH] Re: Useless use of constants other than 0,1 in void context?
4237              From: barries <barries@slaysys.com>
4238              Date: Thu, 26 Apr 2001 12:01:10 -0400
4239              Message-ID: <20010426120110.E29698@jester.slaysys.com>
4240      Branch: perl
4241            ! pod/perldiag.pod
4242 ____________________________________________________________________________
4243 [  9856] By: jhi                                   on 2001/04/26  18:03:33
4244         Log: Subject: [PATCH B::Deparse] fix string uninterpretation
4245              Date: Thu, 26 Apr 2001 17:13:41 +0100
4246              From: Robin Houston <robin@kitsite.com>
4247              Message-ID: <20010426171341.A27299@puffinry.freeserve.co.uk>
4248              
4249              Subject: Re: [PATCH B::Deparse] fix string uninterpretation
4250              From: Robin Houston <robin@kitsite.com>
4251              Date: Thu, 26 Apr 2001 18:44:29 +0100
4252              Message-ID: <20010426184429.A27734@puffinry.freeserve.co.uk>
4253      Branch: perl
4254            ! ext/B/B/Deparse.pm
4255 ____________________________________________________________________________
4256 [  9855] By: jhi                                   on 2001/04/26  17:56:04
4257         Log: Subject: [PATCH B::Deparse] filetests, open(my $x,...), warnings, formats &c
4258              From: Robin Houston <robin@kitsite.com>
4259              Date: Thu, 26 Apr 2001 17:04:08 +0100
4260              Message-ID: <20010426170408.A27257@puffinry.freeserve.co.uk>
4261      Branch: perl
4262            ! ext/B/B/Deparse.pm
4263 ____________________________________________________________________________
4264 [  9854] By: jhi                                   on 2001/04/26  17:47:26
4265         Log: Subject: Re: Short test case for undef %stash:: crash
4266              From: Benjamin Sugars <bsugars@canoe.ca> 
4267              Date: Mon, 23 Apr 2001 16:59:33 -0400 (EDT) 
4268              Message-ID: <Pine.LNX.4.21.0104231623520.790-100000@marmot.rim.canoe.ca>
4269              Changed and moved the perldiag entry.
4270      Branch: perl
4271            ! gv.c pod/perldiag.pod
4272 ____________________________________________________________________________
4273 [  9853] By: jhi                                   on 2001/04/26  14:35:16
4274         Log: Beginnings of strptime().  Do not touch the wet paint.
4275      Branch: perl
4276            ! ext/Time/Piece/Piece.pm t/lib/time-piece.t
4277 ____________________________________________________________________________
4278 [  9852] By: jhi                                   on 2001/04/26  13:17:21
4279         Log: Retract #9851, core dumps from pod2man.
4280      Branch: perl
4281            ! regcomp.c
4282 ____________________________________________________________________________
4283 [  9851] By: jhi                                   on 2001/04/26  11:54:41
4284         Log: (Retracted by #9852.)
4285              
4286              Subject: [PATCH @9846] dumping ANYOF
4287              From: Hugo <hv@crypt.compulink.co.uk>
4288              Date: Thu, 26 Apr 2001 05:32:38 +0100
4289              Message-Id: <200104260432.FAA12669@crypt.compulink.co.uk>
4290      Branch: perl
4291            ! regcomp.c
4292 ____________________________________________________________________________
4293 [  9850] By: jhi                                   on 2001/04/26  02:34:44
4294         Log: If ccflags was empty the _previous_ $* containing all the
4295              environment variables and Configure variables was used,
4296              which lead, among other bad things, into $ccflags being your
4297              uname -a output, which lead into test compile with cc failing,
4298              which lead into gcc being selected, which didn't work that well
4299              since gcc (ancient 2.8.1 in that particular box) wasn't too happy
4300              with large files, et cetera.
4301      Branch: perl
4302            ! hints/hpux.sh
4303 ____________________________________________________________________________
4304 [  9849] By: jhi                                   on 2001/04/26  01:44:57
4305         Log: Make selfstubber test more portable.
4306      Branch: perl
4307            ! t/lib/selfstubber.t
4308 ____________________________________________________________________________
4309 [  9848] By: jhi                                   on 2001/04/26  00:50:26
4310         Log: Subject: Re: [PATCH: perl@9841] fix a typo for Cwd.xs
4311              From: Benjamin Sugars <ben.sugars@home.com>
4312              Date: Wed, 25 Apr 2001 21:47:37 -0400 (EDT)
4313              Message-ID: <Pine.LNX.4.21.0104252145280.30055-100000@localhost.localdomain>
4314      Branch: perl
4315            ! ext/Cwd/Cwd.xs
4316 ____________________________________________________________________________
4317 [  9847] By: jhi                                   on 2001/04/26  00:46:58
4318         Log: Subject: [PATCH: perl@9841] VMS updates
4319              From: Peter Prymmer <pvhp@forte.com>
4320              Date: Wed, 25 Apr 2001 18:43:27 -0700 (PDT)
4321              Message-ID: <Pine.OSF.4.10.10104251842130.257877-100000@aspara.forte.com>
4322      Branch: perl
4323            ! README.vms configure.com vms/descrip_mms.template
4324            ! vms/ext/filespec.t
4325 ____________________________________________________________________________
4326 [  9846] By: jhi                                   on 2001/04/26  00:11:56
4327         Log: re 'debug' was broken by #9084.
4328      Branch: perl
4329            ! ext/re/re.xs
4330 ____________________________________________________________________________
4331 [  9845] By: jhi                                   on 2001/04/25  22:33:17
4332         Log: Subject: [PATCH] test for Devel::SelfStubber
4333              From: Nicholas Clark <nick@ccl4.org>
4334              Date: Thu, 26 Apr 2001 00:00:54 +0100
4335              Message-ID: <20010426000054.D89026@plum.flirble.org>
4336      Branch: perl
4337            + t/lib/selfstubber.t
4338            ! MANIFEST lib/Devel/SelfStubber.pm t/lib/1_compile.t
4339 ____________________________________________________________________________
4340 [  9844] By: jhi                                   on 2001/04/25  22:29:32
4341         Log: Subject: Re: [PATCH 5.7.1] B::Concise and extra variables
4342              From: Paul Johnson <paul@pjcj.net>
4343              Date: Thu, 26 Apr 2001 00:46:08 +0200
4344              Message-ID: <20010426004608.H2338@pjcj.net>
4345      Branch: perl
4346            ! ext/B/B/Concise.pm
4347 ____________________________________________________________________________
4348 [  9843] By: jhi                                   on 2001/04/25  22:28:28
4349         Log: Subject: [PATCH: perl@9841] fix a typo for Cwd.xs
4350              From: Peter Prymmer <pvhp@forte.com>
4351              Date: Wed, 25 Apr 2001 16:18:44 -0700 (PDT)
4352              Message-ID: <Pine.OSF.4.10.10104251614200.257877-100000@aspara.forte.com>
4353      Branch: perl
4354            ! ext/Cwd/Cwd.xs
4355 ____________________________________________________________________________
4356 [  9842] By: jhi                                   on 2001/04/25  20:58:12
4357         Log: Subject: Re: [ID 20010422.002] 5.7.1 Breaks "use Module(version)"
4358              From: John Peacock <jpeacock@rowman.com>
4359              Date: Wed, 25 Apr 2001 17:30:26 -0400
4360              Message-ID: <3AE741F2.B3217464@rowman.com>
4361      Branch: perl
4362            ! lib/Math/BigInt.pm t/lib/bigintpm.t
4363 ____________________________________________________________________________
4364 [  9841] By: jhi                                   on 2001/04/25  20:07:05
4365         Log: Update Changes.
4366      Branch: perl
4367            ! Changes patchlevel.h
4368 ____________________________________________________________________________
4369 [  9840] By: jhi                                   on 2001/04/25  19:56:51
4370         Log: Yet another HP-UX hints version from Merijn.
4371      Branch: perl
4372            ! hints/hpux.sh
4373 ____________________________________________________________________________
4374 [  9839] By: jhi                                   on 2001/04/25  19:53:04
4375         Log: abs_path() didn't terminate the filename correctly,
4376              in DIRNAMLENless systems like HP-UX this would fail.
4377      Branch: perl
4378            ! ext/Cwd/Cwd.xs
4379 ____________________________________________________________________________
4380 [  9838] By: jhi                                   on 2001/04/25  16:37:26
4381         Log: Subject: [PATCH] Re: Useless use of constants other than 0,1 in void context?
4382              From: Mike Guy <mjtg@cam.ac.uk>
4383              Date: Wed, 25 Apr 2001 18:31:47 +0100
4384              Message-Id: <E14sT8l-0004IE-00@libra.cus.cam.ac.uk>
4385      Branch: perl
4386            ! op.c
4387 ____________________________________________________________________________
4388 [  9837] By: jhi                                   on 2001/04/25  16:21:53
4389         Log: Subject: Re: patch to perl5db.pl (formatting of h h screen)
4390              From: Jon Eveland <jweveland@yahoo.com>
4391              Date: Wed, 25 Apr 2001 09:42:46 -0700 (PDT)
4392              Message-ID: <20010425164246.21611.qmail@web10405.mail.yahoo.com>
4393      Branch: perl
4394            ! lib/perl5db.pl
4395 ____________________________________________________________________________
4396 [  9836] By: jhi                                   on 2001/04/25  14:17:50
4397         Log: Subject: [PATCH bleadperl] Porting/patching.pod: update version number format
4398              From: "Philip Newton" <pnewton@gmx.de>
4399              Date: Wed, 25 Apr 2001 17:05:58 +0200
4400              Message-ID: <3AE703F6.3234.1833C45@localhost>
4401      Branch: perl
4402            ! Porting/patching.pod
4403 ____________________________________________________________________________
4404 [  9835] By: jhi                                   on 2001/04/25  13:58:07
4405         Log: It would seem that both ar and full_ar need to be overridden
4406              for HP-UX to avoid the GNU ar.
4407      Branch: perl
4408            ! hints/hpux.sh
4409 ____________________________________________________________________________
4410 [  9834] By: jhi                                   on 2001/04/25  13:50:40
4411         Log: Subject: Re: [PATCH] foreach defelem magic should only be applied to PL_sv_undef
4412              From: "Philip Newton" <pnewton@gmx.de>
4413              Date: Wed, 25 Apr 2001 16:09:23 +0200
4414              Message-ID: <3AE6F6B3.30503.14F6DEB@localhost>
4415              
4416              Detypo.
4417      Branch: perl
4418            ! t/op/misc.t
4419 ____________________________________________________________________________
4420 [  9833] By: jhi                                   on 2001/04/25  12:36:11
4421         Log: In HP-UX set ar to /usr/bin/ar but only iff none set.
4422      Branch: perl
4423            ! hints/hpux.sh
4424 ____________________________________________________________________________
4425 [  9832] By: jhi                                   on 2001/04/25  12:33:36
4426         Log: New version of HP-UX hints from Merijn.
4427      Branch: perl
4428            ! hints/hpux.sh
4429 ____________________________________________________________________________
4430 [  9831] By: jhi                                   on 2001/04/25  03:39:45
4431         Log: Reintroduce the avoidance of mixing HP-UX cc and GNU ar.
4432      Branch: perl
4433            ! hints/hpux.sh
4434 ____________________________________________________________________________
4435 [  9830] By: jhi                                   on 2001/04/25  02:53:25
4436         Log: The tzname[] bit is not needed by util.c -- and causes
4437              heartburn in VMS (and it missing was probably the cause of
4438              the Mac OS X trouble).  Ouch.
4439      Branch: perl
4440            ! ext/POSIX/POSIX.xs util.c
4441 ____________________________________________________________________________
4442 [  9829] By: jhi                                   on 2001/04/25  00:10:06
4443         Log: Metaconfig unit change for #9828.
4444      Branch: metaconfig
4445            ! U/compline/ccflags.U
4446 ____________________________________________________________________________
4447 [  9828] By: jhi                                   on 2001/04/25  00:04:18
4448         Log: Allow setting cppflags hints.  This may affect Darwin (Mac OS X)
4449              (which is actually the reason for the change, we need to pass
4450              cppflags='-traditional-cpp' so that Errno builds right), Dynix/ptx,
4451              EP/IX, OS/2, and TitanOS, based on the hints files.
4452      Branch: perl
4453            ! Configure config_h.SH
4454 ____________________________________________________________________________
4455 [  9827] By: jhi                                   on 2001/04/24  23:49:20
4456         Log: makedepend.SH patch for AmigaOS from Jan-Erik Karlsson;
4457              the $cat must have an absolute path.
4458      Branch: perl
4459            ! makedepend.SH
4460 ____________________________________________________________________________
4461 [  9826] By: jhi                                   on 2001/04/24  23:40:53
4462         Log: 5.7.1-updated README.amiga from Jan-Erik Karlsson.
4463      Branch: perl
4464            ! README.amiga
4465 ____________________________________________________________________________
4466 [  9825] By: jhi                                   on 2001/04/24  23:35:35
4467         Log: Subject: [ID 20010424.002] [PATCH bleadperl] find2perl: prototypes and doexec
4468              From: "Philip Newton" <pnewton@gmx.de>
4469              Date: Tue, 24 Apr 2001 18:52:49 +0200
4470              Message-Id: <3AE5CB81.12234.1FC246F@localhost>
4471      Branch: perl
4472            ! x2p/find2perl.PL
4473 ____________________________________________________________________________
4474 [  9824] By: jhi                                   on 2001/04/24  23:33:07
4475         Log: New HP-UX hints from Jeff and Merijn, should work with IA-64.
4476              Some gcc specifics dropped out due to extensive rewriting;
4477              will be put back later as needed.
4478      Branch: perl
4479            ! hints/hpux.sh
4480 ____________________________________________________________________________
4481 [  9823] By: jhi                                   on 2001/04/24  23:27:57
4482         Log: Mac OS X patch for missing tzname definition from Paul Schinder.
4483      Branch: perl
4484            ! ext/POSIX/POSIX.xs
4485 ____________________________________________________________________________
4486 [  9822] By: jhi                                   on 2001/04/24  23:25:21
4487         Log: Subject: Re: [ID 20010421.032] Not OK: perl v5.7.1 +DEVEL9717 on sun4-solaris-64int-ld-stdio 2.8 (UNINSTALLED)
4488              From: Tim Jenness <t.jenness@jach.hawaii.edu>
4489              Date: Tue, 24 Apr 2001 11:29:28 -1000 (HST)
4490              Message-ID: <Pine.LNX.4.30.0104241123020.5085-100000@lapaki.jach.hawaii.edu>
4491      Branch: perl
4492            ! ext/XS/Typemap/Typemap.xs
4493 ____________________________________________________________________________
4494 [  9821] By: jhi                                   on 2001/04/24  23:24:10
4495         Log: Subject: [PATCH: pod/perlport.pod] Updated email addresses.
4496              From: "Abigail" <abigail@foad.org>
4497              Date: Tue, 24 Apr 2001 23:12:03 +0200
4498              Message-ID: <20010424211203.7901.qmail@foad.org>
4499      Branch: perl
4500            ! pod/perlport.pod
4501 ____________________________________________________________________________
4502 [  9820] By: jhi                                   on 2001/04/24  23:23:15
4503         Log: Subject: [PATCH pod/perlfaq4.pod] Time::Piece additions
4504              From: Matt Sergeant <matt@sergeant.org>
4505              Date: Tue, 24 Apr 2001 16:48:17 +0100 (BST)
4506              Message-ID: <Pine.LNX.4.30.0104241645030.32279-100000@ted.sergeant.org>
4507      Branch: perl
4508            ! pod/perlfaq4.pod
4509 ____________________________________________________________________________
4510 [  9819] By: nick                                  on 2001/04/24  18:49:43
4511         Log: Integrate mainline.
4512      Branch: perlio
4513           +> t/lib/cpan-loadme.t t/lib/cpan-vcmp.t
4514           !> (integrate 37 files)
4515 ____________________________________________________________________________
4516 [  9818] By: jhi                                   on 2001/04/24  14:35:23
4517         Log: Update Changes.
4518      Branch: perl
4519            ! Changes patchlevel.h
4520 ____________________________________________________________________________
4521 [  9817] By: jhi                                   on 2001/04/24  14:09:17
4522         Log: Subject: Re: [PATCH t/lib/1_compile.t] Skipping known tested libraries 
4523              From: "Philip Newton" <pnewton@gmx.de>
4524              Date: Tue, 24 Apr 2001 12:58:12 +0200
4525              Message-ID: <3AE57864.8304.B77A0A@localhost> 
4526              
4527              plus add CPAN to the list of modules that have their own tests.
4528      Branch: perl
4529            ! t/lib/1_compile.t
4530 ____________________________________________________________________________
4531 [  9816] By: jhi                                   on 2001/04/24  14:07:03
4532         Log: Subject: Re: [PATCH t/lib/1_compile.t] Skipping known tested libraries
4533              From: Michael G Schwern <schwern@pobox.com>
4534              Date: Sat, 21 Apr 2001 22:35:00 +0100
4535              Message-ID: <20010421223500.N2946@blackrider.blackstar.co.uk>
4536      Branch: perl
4537            ! t/lib/1_compile.t
4538 ____________________________________________________________________________
4539 [  9815] By: jhi                                   on 2001/04/24  13:54:32
4540         Log: Subject: Re: [ID 20010423.006] Test failed in perl@9794
4541              From: Robin Houston <robin@kitsite.com>
4542              Date: Tue, 24 Apr 2001 15:51:18 +0100
4543              Message-ID: <20010424155118.A22913@puffinry.freeserve.co.uk>
4544      Branch: perl
4545            ! ext/B/B/Deparse.pm
4546 ____________________________________________________________________________
4547 [  9814] By: jhi                                   on 2001/04/24  13:17:34
4548         Log: Subject: Re: [ID 20010421.010] Perl 5.6.1 on Unixware 7
4549              From: Bill Glicker <billg@burrelles.com>
4550              Date: Tue, 24 Apr 2001 09:22:40 -0400 (EDT)
4551              Message-ID: <Pine.SCO.4.30.0104240918160.13514-100000@laura.burrelles.com>
4552      Branch: perl
4553            ! hints/svr5.sh
4554 ____________________________________________________________________________
4555 [  9813] By: jhi                                   on 2001/04/24  12:54:23
4556         Log: Prevent path disclosure (probing for existence of filenames)
4557              using suidperl; bug id 20010322.218.
4558      Branch: perl
4559            ! perl.c pod/perldiag.pod
4560 ____________________________________________________________________________
4561 [  9812] By: jhi                                   on 2001/04/24  12:08:36
4562         Log: Retract #9811.
4563      Branch: perl
4564            ! ext/POSIX/POSIX.xs
4565 ____________________________________________________________________________
4566 [  9811] By: jhi                                   on 2001/04/24  11:57:35
4567         Log: (Retracted by #9812.)
4568      Branch: perl
4569            ! ext/POSIX/POSIX.xs
4570 ____________________________________________________________________________
4571 [  9810] By: jhi                                   on 2001/04/24  03:32:35
4572         Log: Fix for 20010219.013, "perlio perl -we tell goes SEGV".
4573      Branch: perl
4574            ! util.c
4575 ____________________________________________________________________________
4576 [  9809] By: jhi                                   on 2001/04/24  03:16:13
4577         Log: The Math::BigFloat::import() was broken.
4578              (Fixes bug id 20010422.002.)
4579      Branch: perl
4580            ! lib/Math/BigFloat.pm
4581 ____________________________________________________________________________
4582 [  9808] By: jhi                                   on 2001/04/24  01:11:40
4583         Log: Additional dependencies; should help for parallel makes
4584              not to fail on missing lib/lib.pm or lib/re.pm.
4585      Branch: perl
4586            ! Makefile.SH
4587 ____________________________________________________________________________
4588 [  9807] By: jhi                                   on 2001/04/24  00:57:01
4589         Log: Update the test failure disclaimer.
4590      Branch: perl
4591            ! t/pragma/warn/pp_hot
4592 ____________________________________________________________________________
4593 [  9806] By: jhi                                   on 2001/04/24  00:54:04
4594         Log: Add make target "install-all" which is alias for "install"
4595              to cater for case-preserving filesystems like HFS+.
4596      Branch: perl
4597            ! INSTALL Makefile.SH
4598 ____________________________________________________________________________
4599 [  9805] By: jhi                                   on 2001/04/24  00:47:28
4600         Log: Subject: Re: 5.6.1 darwin Configure fails to extract Makefile
4601              From: Peter Prymmer <pvhp@forte.com>
4602              Date: Wed, 11 Apr 2001 10:43:52 -0700 (PDT)
4603              Message-ID: <Pine.OSF.4.10.10104111038480.113314-100000@aspara.forte.com>
4604              
4605              (Ken William's message forwarded from macosx@perl.org)
4606      Branch: perl
4607            ! hints/darwin.sh
4608 ____________________________________________________________________________
4609 [  9804] By: jhi                                   on 2001/04/23  23:57:35
4610         Log: Cut-and-pasto.
4611      Branch: perl
4612            ! perlio.c
4613 ____________________________________________________________________________
4614 [  9803] By: jhi                                   on 2001/04/23  23:52:25
4615         Log: More PerlIO robustness.
4616      Branch: perl
4617            ! perlio.c
4618 ____________________________________________________________________________
4619 [  9802] By: jhi                                   on 2001/04/23  23:43:35
4620         Log: Make the "STD* opened only for ..." errors more consistent.
4621      Branch: perl
4622            ! doio.c
4623 ____________________________________________________________________________
4624 [  9801] By: jhi                                   on 2001/04/23  23:34:26
4625         Log: Test case for #9800.
4626      Branch: perl
4627            ! t/op/misc.t
4628 ____________________________________________________________________________
4629 [  9800] By: jhi                                   on 2001/04/23  23:14:43
4630         Log: Avoid coredump on 'close STDERR; die' by making
4631              the PerlIO calls more robust.  Also use SETERRNO()
4632              instead of errno = to be more VMS-ready.
4633      Branch: perl
4634            ! perlio.c
4635 ____________________________________________________________________________
4636 [  9799] By: jhi                                   on 2001/04/23  21:41:10
4637         Log: Subject: test for ID 20010423.002
4638              From: Robin Houston <robin@kitsite.com>
4639              Date: Mon, 23 Apr 2001 16:52:21 +0100
4640              Message-ID: <20010423165221.A20739@puffinry.freeserve.co.uk>
4641      Branch: perl
4642            ! t/op/avhv.t
4643 ____________________________________________________________________________
4644 [  9798] By: jhi                                   on 2001/04/23  21:40:07
4645         Log: Subject: patch to installperl (change warn to print STDERR in sub yn)
4646              From: David Dyck <dcd@tc.fluke.com>
4647              Date: Mon, 23 Apr 2001 10:19:46 -0700 (PDT)
4648              Message-ID: <Pine.LNX.4.33.0104231018270.10985-100000@dd.tc.fluke.com>
4649      Branch: perl
4650            ! installperl
4651 ____________________________________________________________________________
4652 [  9797] By: jhi                                   on 2001/04/23  21:37:56
4653         Log: Subject: [PATCH] Implement Cwd::abs_path in XS
4654              From: Benjamin Sugars <bsugars@canoe.ca>
4655              Date: Mon, 23 Apr 2001 11:59:48 -0400 (EDT)
4656              Message-ID: <Pine.LNX.4.21.0104231151340.3238-100000@marmot.rim.canoe.ca>
4657      Branch: perl
4658            ! ext/Cwd/Cwd.xs lib/Cwd.pm
4659 ____________________________________________________________________________
4660 [  9796] By: jhi                                   on 2001/04/23  21:29:24
4661         Log: Synchronize h2xs and pod2man some more on the documentation
4662              templates they propose.
4663      Branch: perl
4664            ! pod/pod2man.PL utils/h2xs.PL
4665 ____________________________________________________________________________
4666 [  9795] By: jhi                                   on 2001/04/23  17:30:40
4667         Log: Add one more naughty test for base64; make encoding logic cleaner.
4668      Branch: perl
4669            ! t/lib/mimeb64.t
4670 ____________________________________________________________________________
4671 [  9794] By: jhi                                   on 2001/04/23  13:51:32
4672         Log: Update Changes.
4673      Branch: perl
4674            ! Changes patchlevel.h
4675 ____________________________________________________________________________
4676 [  9793] By: jhi                                   on 2001/04/23  13:44:18
4677         Log: Duplicate lines.
4678      Branch: perl
4679            ! MANIFEST
4680 ____________________________________________________________________________
4681 [  9792] By: jhi                                   on 2001/04/23  13:39:13
4682         Log: Subject: Re: PATCH 5.7.1
4683              From: Mark-Jason Dominus <mjd@plover.com>
4684              Date: Mon, 23 Apr 2001 10:30:21 -0400
4685              Message-ID: <20010423143021.17335.qmail@plover.com>
4686      Branch: perl
4687            ! perl.h sv.c
4688 ____________________________________________________________________________
4689 [  9791] By: jhi                                   on 2001/04/23  13:32:40
4690         Log: Add the CPAN.pm 1.59_54 tests.
4691      Branch: perl
4692            + t/lib/cpan-loadme.t t/lib/cpan-vcmp.t
4693            ! MANIFEST
4694 ____________________________________________________________________________
4695 [  9790] By: jhi                                   on 2001/04/23  13:21:55
4696         Log: Subject: Deparse nit
4697              From: Robin Houston <robin@kitsite.com>
4698              Date: Mon, 23 Apr 2001 12:38:20 +0100
4699              Message-ID: <20010423123820.A19945@puffinry.freeserve.co.uk>
4700      Branch: perl
4701            ! ext/B/B/Deparse.pm
4702 ____________________________________________________________________________
4703 [  9789] By: jhi                                   on 2001/04/23  13:19:07
4704         Log: Subject: [PATCH] bug 20010423.002
4705              From: Robin Houston <robin@kitsite.com>
4706              Date: Mon, 23 Apr 2001 13:12:30 +0100
4707              Message-ID: <20010423131230.A20074@puffinry.freeserve.co.uk>
4708      Branch: perl
4709            ! pp.c
4710 ____________________________________________________________________________
4711 [  9788] By: jhi                                   on 2001/04/23  13:02:49
4712         Log: Subject: PATCH [5.7.1] hv.c unused #define
4713              From: Mark-Jason Dominus <mjd@plover.com>
4714              Date: Sun, 22 Apr 2001 14:17:49 -0400
4715              Message-ID: <20010422181749.26976.qmail@plover.com>
4716      Branch: perl
4717            ! hv.c
4718 ____________________________________________________________________________
4719 [  9787] By: jhi                                   on 2001/04/23  13:02:02
4720         Log: Subject: PATCH 5.7.1
4721              From: Mark-Jason Dominus <mjd@plover.com>
4722              Date: Sun, 22 Apr 2001 15:12:57 -0400
4723              Message-ID: <20010422191258.6539.qmail@plover.com>
4724              
4725              plus Sarathy's STMT_START + STMT_END suggestion.
4726      Branch: perl
4727            ! perl.h
4728 ____________________________________________________________________________
4729 [  9786] By: jhi                                   on 2001/04/23  12:53:25
4730         Log: Fix for
4731              
4732              Subject: [ID 20010423.001] perlapi documentation inconsistency (SvGROW)
4733              From: dLux <dlux@spam.sch.bme.hu>
4734              Date: Mon, 23 Apr 2001 01:25:26 +0200
4735              Message-Id: <E14rTEM-0000CB-00@dl.sch.bme.hu>
4736              
4737              (SvGROW really does return a char *.)
4738      Branch: perl
4739            ! pod/perlapi.pod sv.h
4740 ____________________________________________________________________________
4741 [  9785] By: jhi                                   on 2001/04/23  04:34:04
4742         Log: Time::Piece work continues.  $t->day removed since
4743              I think it's too confusing.  Now has normal and
4744              abbreviated length weekday names and month names,
4745              the names change with _names(), not _list().
4746              Now has strftime() in Perl, _strftime() is
4747              the libc version (to which strftime() falls back
4748              if it doesn't know the format.  To do: the reverse
4749              of strftime, strptime(), and the localisation of both.
4750      Branch: perl
4751            ! ext/Time/Piece/Piece.pm ext/Time/Piece/Piece.xs
4752            ! t/lib/time-piece.t
4753 ____________________________________________________________________________
4754 [  9784] By: jhi                                   on 2001/04/23  02:41:46
4755         Log: Subject: Re: [PATCH] Re: [ID 20010422.003] Core dump in overloaded bool while using ' 
4756              From: andreas.koenig@anima.de (Andreas J. Koenig)
4757              Date: 23 Apr 2001 05:20:55 +0200
4758              Message-ID: <m3ofto5mjs.fsf@ak-71.mind.de>
4759      Branch: perl
4760            ! t/pragma/overload.t
4761 ____________________________________________________________________________
4762 [  9783] By: jhi                                   on 2001/04/22  23:32:42
4763         Log: Subject: [PATCH B::Deparse] Distinguish package variables, if necessary
4764              From: Robin Houston <robin@kitsite.com>
4765              Date: Mon, 23 Apr 2001 00:38:18 +0100
4766              Message-ID: <20010423003818.A19109@puffinry.freeserve.co.uk>
4767      Branch: perl
4768            ! ext/B/B/Deparse.pm
4769 ____________________________________________________________________________
4770 [  9782] By: jhi                                   on 2001/04/22  20:55:43
4771         Log: Subject: [PATCH] Re: [ID 20010422.003] Core dump in overloaded bool while using '
4772              From: Simon Cozens <simon@netthink.co.uk>
4773              Date: Sun, 22 Apr 2001 18:47:25 +0100
4774              Message-ID: <20010422184725.A14411@netthink.co.uk>
4775      Branch: perl
4776            ! sv.c t/pragma/overload.t
4777 ____________________________________________________________________________
4778 [  9781] By: jhi                                   on 2001/04/22  20:52:13
4779         Log: Subject: [PATCH] Support BEGIN blocks in B::Deparse (& more)
4780              From: Robin Houston <robin@kitsite.com>
4781              Date: Sun, 22 Apr 2001 22:14:50 +0100
4782              Message-ID: <20010422221450.A18921@puffinry.freeserve.co.uk>
4783      Branch: perl
4784            ! ext/B/B/Concise.pm ext/B/B/Deparse.pm ext/B/O.pm
4785 ____________________________________________________________________________
4786 [  9780] By: nick                                  on 2001/04/22  20:40:31
4787         Log: Integrate mainline.
4788      Branch: perlio
4789           +> t/lib/b-debug.t t/lib/b-deparse.t t/lib/b-showlex.t
4790           +> t/lib/b-stash.t
4791           !> (integrate 38 files)
4792 ____________________________________________________________________________
4793 [  9779] By: jhi                                   on 2001/04/22  15:16:03
4794         Log: Subject: IO::Socket::INET patch
4795              From: andrew deryabin <djsf@technarchy.ru>
4796              Date: Sat, 21 Apr 2001 17:46:52 +0400
4797              Message-ID: <20010421174652.B1426@technarchy>
4798      Branch: perl
4799            ! ext/IO/lib/IO/Socket/INET.pm
4800 ____________________________________________________________________________
4801 [  9778] By: jhi                                   on 2001/04/22  15:14:33
4802         Log: Subject: Re: ANYOF_SIZE is wrong in 5.7.1 
4803              From: Mark-Jason Dominus <mjd@plover.com>
4804              Date: Sat, 21 Apr 2001 21:27:49 -0400
4805              Message-ID: <20010422012749.27024.qmail@plover.com>
4806      Branch: perl
4807            ! regcomp.c
4808 ____________________________________________________________________________
4809 [  9777] By: jhi                                   on 2001/04/22  15:10:51
4810         Log: Subject: Re: Regex debugger patch 
4811              From: Mark-Jason Dominus <mjd@plover.com>
4812              Date: Sat, 21 Apr 2001 21:48:51 -0400
4813              Message-ID: <20010422014851.27165.qmail@plover.com>
4814      Branch: perl
4815            ! pod/perldebguts.pod
4816 ____________________________________________________________________________
4817 [  9776] By: jhi                                   on 2001/04/22  15:09:48
4818         Log: Subject: Re: Regex debugger patch
4819              From: Mark-Jason Dominus <mjd@plover.com>
4820              Date: Sat, 21 Apr 2001 14:24:39 -0400
4821              Message-ID: <20010421182439.16508.qmail@plover.com>
4822              
4823              Regex debugger backend.
4824      Branch: perl
4825            ! regcomp.c regexp.h
4826 ____________________________________________________________________________
4827 [  9775] By: jhi                                   on 2001/04/21  16:45:40
4828         Log: Subject: [PATCH] Typo in utf8.h
4829              From: Jesús Quiroga <jquiroga@pobox.com>
4830              Date: Sat, 21 Apr 2001 19:25:33 +0200
4831              Message-Id: <5.0.2.1.1.20010421192107.01ce5a50@ix.netcorps.com>
4832      Branch: perl
4833            ! utf8.h
4834 ____________________________________________________________________________
4835 [  9774] By: jhi                                   on 2001/04/21  16:43:52
4836         Log: Subject: [ID 20010421.010] Perl 5.6.1 on Unixware 7
4837              From: Joe Orton <jorton@redhat.com>
4838              Date: Tue, 17 Apr 2001 15:50:43 +0100
4839              Message-Id: <20010417155043.D19132@eu.c2.net>
4840      Branch: perl
4841            ! hints/svr5.sh
4842 ____________________________________________________________________________
4843 [  9773] By: jhi                                   on 2001/04/21  15:30:15
4844         Log: Subject: Patch utils/h2xs.PL
4845              From: Elaine -HFB- Ashton <elaine@chaos.wustl.edu>
4846              Date: Sat, 21 Apr 2001 10:32:16 -0500
4847              Message-ID: <20010421103216.C14521@chaos.wustl.edu>
4848              
4849              Add MAILING list and LICENSE templates.
4850      Branch: perl
4851            ! utils/h2xs.PL
4852 ____________________________________________________________________________
4853 [  9772] By: jhi                                   on 2001/04/21  15:28:36
4854         Log: Subject: perlfaq2.patch for 5.7.1
4855              From: Elaine -HFB- Ashton <elaine@chaos.wustl.edu>
4856              Message-ID: <20010420164219.J3194@chaos.wustl.edu>
4857              Date: Fri, 20 Apr 2001 16:42:19 -0500
4858              
4859              rm an extra tab, a blurb about the xx.cpan to clarify
4860              which countries actually have that and dejanews is history
4861              as well as most of that nonsensical entry.
4862      Branch: perl
4863            ! pod/perlfaq2.pod
4864 ____________________________________________________________________________
4865 [  9771] By: jhi                                   on 2001/04/21  15:27:17
4866         Log: Subject: perlfaq1.patch for 5.7.1
4867              From: Elaine -HFB- Ashton <elaine@chaos.wustl.edu>
4868              Date: Fri, 20 Apr 2001 16:57:36 -0500
4869              Message-ID: <20010420165736.K3194@chaos.wustl.edu>
4870              
4871              Evil URLs must die. Especially when they are broken.
4872      Branch: perl
4873            ! pod/perlfaq1.pod
4874 ____________________________________________________________________________
4875 [  9770] By: jhi                                   on 2001/04/21  15:23:38
4876         Log: Subject: [PATCH ext/B/B.pm and tests] B::walksymtable improperly documented?
4877              From: Michael G Schwern <schwern@pobox.com>
4878              Date: Sat, 21 Apr 2001 16:11:12 +0100
4879              Message-ID: <20010421161112.L19736@blackrider.blackstar.co.uk>
4880      Branch: perl
4881            + t/lib/b-debug.t t/lib/b-deparse.t t/lib/b-showlex.t
4882            + t/lib/b-stash.t
4883            ! MANIFEST ext/B/B.pm t/lib/b.t
4884 ____________________________________________________________________________
4885 [  9769] By: jhi                                   on 2001/04/21  15:03:32
4886         Log: Subject: [PATCH utils/h2ph.PL] Confused by "#if &__GNUC_PREREQ (2,97)"
4887              From: Michael G Schwern <schwern@pobox.com>
4888              Date: Sat, 21 Apr 2001 09:48:00 +0100
4889              Message-ID: <20010421094759.B19736@blackrider.blackstar.co.uk>
4890      Branch: perl
4891            ! utils/h2ph.PL
4892 ____________________________________________________________________________
4893 [  9768] By: jhi                                   on 2001/04/21  14:33:49
4894         Log: PerlIO and Encode doc cleanup and tweaks.
4895      Branch: perl
4896            ! ext/Encode/Encode.pm ext/PerlIO/Scalar/Scalar.pm
4897            ! ext/PerlIO/Via/Via.pm lib/PerlIO.pm
4898 ____________________________________________________________________________
4899 [  9767] By: jhi                                   on 2001/04/21  12:40:16
4900         Log: Integrate perlio.
4901      Branch: perl
4902           !> doio.c
4903 ____________________________________________________________________________
4904 [  9766] By: nick                                  on 2001/04/20  18:28:35
4905         Log: Avoid core dump on
4906              open(STDOUT,">",\$foo);
4907      Branch: perlio
4908            ! doio.c
4909 ____________________________________________________________________________
4910 [  9765] By: jhi                                   on 2001/04/20  13:23:43
4911         Log: Subject: Re: [abigail@foad.org: [ID 20000901.065] -MO=Deparse and $^W and $[ in same string.]
4912              From: Robin Houston <robin@kitsite.com>
4913              Date: Fri, 20 Apr 2001 14:29:22 +0100
4914              Message-ID: <20010420142921.A14960@puffinry.freeserve.co.uk>
4915      Branch: perl
4916            ! ext/B/B.pm ext/B/B/Deparse.pm
4917 ____________________________________________________________________________
4918 [  9764] By: jhi                                   on 2001/04/20  13:19:33
4919         Log: Subject: [PATCH: perl@9742] avoid t/u-*.t test on platforms where List/Util was not built
4920              From: Peter Prymmer <pvhp@forte.com>
4921              Date: Thu, 19 Apr 2001 17:40:14 -0700 (PDT)
4922              Message-ID: <Pine.OSF.4.10.10104191737200.348917-100000@aspara.forte.com>
4923      Branch: perl
4924            ! t/lib/u-blessed.t t/lib/u-dualvar.t t/lib/u-first.t
4925            ! t/lib/u-max.t t/lib/u-maxstr.t t/lib/u-min.t t/lib/u-minstr.t
4926            ! t/lib/u-readonly.t t/lib/u-reduce.t t/lib/u-reftype.t
4927            ! t/lib/u-sum.t t/lib/u-tainted.t t/lib/u-weak.t
4928 ____________________________________________________________________________
4929 [  9763] By: jhi                                   on 2001/04/20  12:36:39
4930         Log: Subject: Re: A new PerlIO coredump
4931              From: Nick Ing-Simmons <nik@tiuk.ti.com>
4932              Date: Fri, 20 Apr 2001 14:29:41 +0100 (BST)
4933              Message-Id: <200104201329.OAA16021@mikado.tiuk.ti.com>
4934      Branch: perl
4935            ! doio.c
4936 ____________________________________________________________________________
4937 [  9762] By: jhi                                   on 2001/04/19  23:02:30
4938         Log: Update Changes.
4939      Branch: perl
4940            ! Changes patchlevel.h
4941 ____________________________________________________________________________
4942 [  9761] By: jhi                                   on 2001/04/19  22:59:19
4943         Log: More cleanup cleanup.
4944      Branch: perl
4945            ! Makefile.SH win32/Makefile win32/makefile.mk
4946 ____________________________________________________________________________
4947 [  9760] By: jhi                                   on 2001/04/19  22:50:31
4948         Log: lib/Time is non-empty, let's not rmdir it.
4949      Branch: perl
4950            ! Makefile.SH
4951 ____________________________________________________________________________
4952 [  9759] By: jhi                                   on 2001/04/19  22:36:51
4953         Log: Subject: Re: [abigail@foad.org: [ID 20000901.065] -MO=Deparse and $^W and $[ in same string.]
4954              From: Robin Houston <robin@kitsite.com>
4955              Date: Fri, 20 Apr 2001 00:18:53 +0100
4956              Message-ID: <20010420001853.A13350@puffinry.freeserve.co.uk>
4957      Branch: perl
4958            ! ext/B/B/Deparse.pm
4959 ____________________________________________________________________________
4960 [  9758] By: jhi                                   on 2001/04/19  22:36:00
4961         Log: Subject: [PATCH: perl@9742] void close_dir portability fix for Cwd.xs
4962              From: Peter Prymmer <pvhp@forte.com>
4963              Date: Thu, 19 Apr 2001 12:02:40 -0700 (PDT)
4964              Message-ID: <Pine.OSF.4.10.10104191158490.348917-100000@aspara.forte.com>
4965      Branch: perl
4966            ! ext/Cwd/Cwd.xs
4967 ____________________________________________________________________________
4968 [  9757] By: nick                                  on 2001/04/19  18:53:54
4969         Log: Blind (untested) integrate of mainline.
4970      Branch: perlio
4971           +> ext/Time/Piece/Makefile.PL ext/Time/Piece/Piece.pm
4972           +> ext/Time/Piece/Piece.xs ext/Time/Piece/README
4973           +> ext/Time/Piece/Seconds.pm t/lib/time-piece.t
4974           !> (integrate 53 files)
4975 ____________________________________________________________________________
4976 [  9756] By: jhi                                   on 2001/04/19  16:59:23
4977         Log: Document and test Time::Piece.
4978      Branch: perl
4979            ! ext/POSIX/POSIX.xs ext/Time/Piece/Piece.pm
4980            ! ext/Time/Piece/Piece.xs t/lib/time-piece.t
4981 ____________________________________________________________________________
4982 [  9755] By: jhi                                   on 2001/04/19  12:13:29
4983         Log: A better fix for the \x{12345678} trouble from NI-S.
4984      Branch: perl
4985            ! utf8.c
4986 ____________________________________________________________________________
4987 [  9754] By: jhi                                   on 2001/04/19  11:56:07
4988         Log: Subject: PATCH: Propagate low byte of hints in cop.op_private
4989              From: Robin Houston <robin@kitsite.com>
4990              Date: Wed, 18 Apr 2001 17:58:33 +0100
4991              Message-ID: <20010418175833.B8976@puffinry.freeserve.co.uk>
4992      Branch: perl
4993            ! ext/B/B/Deparse.pm op.c
4994 ____________________________________________________________________________
4995 [  9753] By: jhi                                   on 2001/04/19  04:21:52
4996         Log: Subject: [PATCH] h2ph test suite bugfix and refactoring
4997              From: "Kurt D. Starsinic" <kstar@wolfetech.com>
4998              Date: Thu, 19 Apr 2001 01:11:41 -0400
4999              Message-ID: <20010419011141.A5798@cpan.org>
5000      Branch: perl
5001            ! t/lib/h2ph.h t/lib/h2ph.pht utils/h2ph.PL
5002 ____________________________________________________________________________
5003 [  9752] By: jhi                                   on 2001/04/19  02:41:10
5004         Log: The new time utils need to be thread-aware, too.
5005      Branch: perl
5006            ! util.c
5007 ____________________________________________________________________________
5008 [  9751] By: jhi                                   on 2001/04/19  02:26:47
5009         Log: Compilation nit noticed by AIX compiler.
5010      Branch: perl
5011            ! perlio.c
5012 ____________________________________________________________________________
5013 [  9750] By: jhi                                   on 2001/04/19  02:20:06
5014         Log: The new time utils need to be public.
5015      Branch: perl
5016            ! embed.pl
5017 ____________________________________________________________________________
5018 [  9749] By: jhi                                   on 2001/04/19  01:42:39
5019         Log: Regen toc.
5020      Branch: perl
5021            ! pod/perltoc.pod
5022 ____________________________________________________________________________
5023 [  9748] By: jhi                                   on 2001/04/19  01:41:10
5024         Log: Add Time::Piece, a slight rewrite of Time::Object,
5025              from Matt Sergeant.
5026      Branch: perl
5027            + ext/Time/Piece/Makefile.PL ext/Time/Piece/Piece.pm
5028            + ext/Time/Piece/Piece.xs ext/Time/Piece/README
5029            + ext/Time/Piece/Seconds.pm t/lib/time-piece.t
5030            ! MANIFEST configure.com djgpp/config.over epoc/config.sh
5031            ! hints/uts.sh hints/uwin.sh hints/vmesa.sh win32/Makefile
5032            ! win32/makefile.mk
5033 ____________________________________________________________________________
5034 [  9747] By: jhi                                   on 2001/04/19  00:55:35
5035         Log: The new metaconfig unit from strftime.
5036      Branch: metaconfig/U/perl
5037            + d_strftime.U
5038 ____________________________________________________________________________
5039 [  9746] By: jhi                                   on 2001/04/19  00:54:54
5040         Log: Move the strftime() wrapper from POSIX.xs to util.c
5041              as my_strftime(), requires HAS_STRFTIME.
5042      Branch: perl
5043            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
5044            ! config_h.SH configure.com embed.h embed.pl epoc/config.sh
5045            ! ext/POSIX/POSIX.xs proto.h uconfig.h uconfig.sh util.c
5046            ! vos/config.alpha.def vos/config.alpha.h vos/config.ga.def
5047            ! vos/config.ga.h win32/config.bc win32/config.gc
5048            ! win32/config.vc
5049 ____________________________________________________________________________
5050 [  9745] By: jhi                                   on 2001/04/18  23:11:03
5051         Log: Move the init_tm() and mini_mktime() up from POSIX.xs to util.c
5052              in preparation of Time::Piece.
5053      Branch: perl
5054            ! embed.h embed.pl ext/POSIX/POSIX.xs proto.h util.c
5055 ____________________________________________________________________________
5056 [  9744] By: jhi                                   on 2001/04/18  22:33:12
5057         Log: Subject: [PATCH: perl@9718] fix new exporter test to work OK on VMS
5058              From: Peter Prymmer <pvhp@forte.com>
5059              Date: Wed, 18 Apr 2001 15:38:28 -0700 (PDT)
5060              Message-ID: <Pine.OSF.4.10.10104181536440.272477-100000@aspara.forte.com>
5061      Branch: perl
5062            ! t/lib/exporter.t
5063 ____________________________________________________________________________
5064 [  9743] By: jhi                                   on 2001/04/18  22:32:23
5065         Log: Subject: Fwd: pod2html leaves cache files lying around?
5066              From: Rajesh Vaidheeswarran <rv@gnu.org>
5067              Date: Tue, 17 Apr 2001 09:35:00 -0400 (EDT)
5068              Message-Id: <E14pVdE-0004P0-00@fencepost.gnu.org>
5069      Branch: perl
5070            ! lib/Pod/Html.pm
5071 ____________________________________________________________________________
5072 [  9742] By: jhi                                   on 2001/04/18  20:31:49
5073         Log: Update Changes.
5074      Branch: perl
5075            ! Changes patchlevel.h
5076 ____________________________________________________________________________
5077 [  9741] By: jhi                                   on 2001/04/18  20:23:02
5078         Log: Declare hints only if needed.
5079      Branch: perl
5080            ! ext/B/B/Deparse.pm
5081 ____________________________________________________________________________
5082 [  9740] By: jhi                                   on 2001/04/18  19:06:05
5083         Log: Workaround for the "\x{12345678}" plus s/(.)/$1/g plus ord/length
5084              bug noticed by Robin Houston; basically the code of detecting
5085              value wraparound was acting differently under different compilers
5086              and platforms.  The workaround is to remove the overflow check
5087              for now, a real fix would be to do the overflow (portably) right.
5088      Branch: perl
5089            ! t/op/pat.t utf8.c
5090 ____________________________________________________________________________
5091 [  9739] By: jhi                                   on 2001/04/18  19:01:23
5092         Log: Subject: [PATCH B::Deparse] some pragma support
5093              From: Robin Houston <robin@kitsite.com>
5094              Date: Wed, 18 Apr 2001 19:32:12 +0100
5095              Message-ID: <20010418193212.A9184@puffinry.freeserve.co.uk>
5096      Branch: perl
5097            ! ext/B/B/Deparse.pm
5098 ____________________________________________________________________________
5099 [  9738] By: jhi                                   on 2001/04/18  15:16:37
5100         Log: Subject: [PATCH] Test case for C<undef %File::Glob::>
5101              From: Benjamin Sugars <bsugars@canoe.ca>
5102              Date: Wed, 18 Apr 2001 10:53:44 -0400 (EDT)
5103              Message-ID: <Pine.LNX.4.21.0104181047010.2368-100000@marmot.rim.canoe.ca>
5104      Branch: perl
5105            ! t/op/glob.t
5106 ____________________________________________________________________________
5107 [  9737] By: jhi                                   on 2001/04/18  13:24:50
5108         Log: Subject: [PATCH] XS::Typemap - T_OPAQUE
5109              From: Tim Jenness <t.jenness@jach.hawaii.edu>
5110              Date: Tue, 17 Apr 2001 22:49:25 -1000 (HST)
5111              Message-ID: <Pine.LNX.4.30.0104172247440.28672-100000@lapaki.jach.hawaii.edu>
5112      Branch: perl
5113            ! ext/XS/Typemap/Typemap.pm ext/XS/Typemap/Typemap.xs
5114            ! ext/XS/Typemap/typemap lib/ExtUtils/typemap t/lib/xs-typemap.t
5115 ____________________________________________________________________________
5116 [  9736] By: jhi                                   on 2001/04/18  04:15:14
5117         Log: The #9735 also changes the subtest 12.
5118      Branch: perl
5119            ! t/lib/b.t
5120 ____________________________________________________________________________
5121 [  9735] By: jhi                                   on 2001/04/18  03:55:17
5122         Log: Subject: Deparse.pm of split(" ") decodes as /\s+/ (with PATCH)
5123              From: David Dyck <dcd@tc.fluke.com>
5124              Date: Tue, 17 Apr 2001 17:12:58 -0700 (PDT)
5125              Message-ID: <Pine.LNX.4.33.0104171508210.23062-100000@dd.tc.fluke.com>
5126      Branch: perl
5127            ! ext/B/B/Deparse.pm
5128 ____________________________________________________________________________
5129 [  9734] By: jhi                                   on 2001/04/18  03:54:11
5130         Log: Subject: [PATCH] foreach defelem magic should only be applied to PL_sv_undef
5131              From: Gisle Aas <gisle@ActiveState.com>
5132              Date: 17 Apr 2001 19:06:45 -0700
5133              Message-ID: <lrae5f9d1m.fsf@caliper.ActiveState.com>
5134      Branch: perl
5135            ! pp_hot.c t/op/misc.t
5136 ____________________________________________________________________________
5137 [  9733] By: jhi                                   on 2001/04/17  22:25:22
5138         Log: Subject: [PATCH: ext/Cwd/Cwd.xs & ext/PerlIO/Scalar/Scalar.xs] Missing prototype behaviour
5139              From: "Abigail" <abigail@foad.org>
5140              Date: Wed, 18 Apr 2001 01:17:46 +0200
5141              Message-ID: <20010417231746.21657.qmail@foad.org>
5142      Branch: perl
5143            ! ext/Cwd/Cwd.xs ext/PerlIO/Scalar/Scalar.xs
5144 ____________________________________________________________________________
5145 [  9732] By: jhi                                   on 2001/04/17  20:47:56
5146         Log: Subject: Re: Deparse - parenthesise args to undeclared subs
5147              From: Robin Houston <robin@kitsite.com>
5148              Date: Tue, 17 Apr 2001 22:37:42 +0100
5149              Message-ID: <20010417223742.A6681@puffinry.freeserve.co.uk>
5150      Branch: perl
5151            ! ext/B/B/Deparse.pm
5152 ____________________________________________________________________________
5153 [  9731] By: nick                                  on 2001/04/17  20:46:35
5154         Log: Re-sync for t/lib/b.t fix
5155      Branch: perlio
5156           !> ext/B/B/Deparse.pm t/lib/b.t t/lib/cwd.t
5157 ____________________________________________________________________________
5158 [  9730] By: jhi                                   on 2001/04/17  20:45:29
5159         Log: Subject: [PATCH B::Deparse] utf8 literal strings (and possibly a unicode/regex bug)
5160              From: Robin Houston <robin@kitsite.com>
5161              Date: Tue, 17 Apr 2001 22:29:36 +0100
5162              Message-ID: <20010417222936.A6644@puffinry.freeserve.co.uk>
5163      Branch: perl
5164            ! ext/B/B.xs ext/B/B/Deparse.pm
5165 ____________________________________________________________________________
5166 [  9729] By: jhi                                   on 2001/04/17  20:43:11
5167         Log: Subject: Deparse - parenthesise args to undeclared subs
5168              From: Robin Houston <robin@kitsite.com>
5169              Date: Tue, 17 Apr 2001 21:31:05 +0100
5170              Message-ID: <20010417213104.A6586@puffinry.freeserve.co.uk>
5171      Branch: perl
5172            ! ext/B/B/Deparse.pm
5173 ____________________________________________________________________________
5174 [  9728] By: jhi                                   on 2001/04/17  18:57:30
5175         Log: Subject: Re: [PATCH] Fix cwd.t when libpth contains symlinks
5176              From: Benjamin Sugars <ben.sugars@home.com>
5177              Date: Tue, 17 Apr 2001 15:27:28 -0400 (EDT)
5178              Message-ID: <Pine.LNX.4.21.0104171516090.22410-100000@localhost.localdomain>
5179      Branch: perl
5180            ! t/lib/cwd.t
5181 ____________________________________________________________________________
5182 [  9727] By: jhi                                   on 2001/04/17  18:20:20
5183         Log: Subject: [PATCH B::Deparse] ambient pragmas
5184              From: Robin Houston <robin@kitsite.com>
5185              Date: Tue, 17 Apr 2001 20:01:59 +0100
5186              Message-ID: <20010417200159.A4882@puffinry.freeserve.co.uk>
5187      Branch: perl
5188            ! ext/B/B/Deparse.pm t/lib/b.t
5189 ____________________________________________________________________________
5190 [  9726] By: nick                                  on 2001/04/17  16:33:51
5191         Log: Integrate mainline (t/lib/b.t fails test 2...)
5192      Branch: perlio
5193           +> ext/List/Util/ChangeLog ext/List/Util/Makefile.PL
5194           +> ext/List/Util/README ext/List/Util/Util.xs
5195           +> ext/List/Util/lib/List/Util.pm
5196           +> ext/List/Util/lib/Scalar/Util.pm t/lib/exporter.t
5197           +> t/lib/u-blessed.t t/lib/u-dualvar.t t/lib/u-first.t
5198           +> t/lib/u-max.t t/lib/u-maxstr.t t/lib/u-min.t t/lib/u-minstr.t
5199           +> t/lib/u-readonly.t t/lib/u-reduce.t t/lib/u-reftype.t
5200           +> t/lib/u-sum.t t/lib/u-tainted.t t/lib/u-weak.t
5201           !> (integrate 31 files)
5202 ____________________________________________________________________________
5203 [  9725] By: jhi                                   on 2001/04/17  12:14:24
5204         Log: Subject: multiple B::* changes
5205              From: Robin Houston <robin@kitsite.com>
5206              Date: Thu, 12 Apr 2001 20:12:27 +0100
5207              Message-ID: <20010412201226.A30940@puffinry.freeserve.co.uk>
5208      Branch: perl
5209            ! ext/B/B.pm ext/B/B/Concise.pm ext/B/B/Deparse.pm ext/B/O.pm
5210 ____________________________________________________________________________
5211 [  9724] By: jhi                                   on 2001/04/17  11:59:05
5212         Log: Thread-awareness from Doug MacEachern.
5213      Branch: perl
5214            ! ext/List/Util/Util.xs
5215 ____________________________________________________________________________
5216 [  9723] By: jhi                                   on 2001/04/17  11:57:41
5217         Log: Make the test more portable.
5218      Branch: perl
5219            ! t/lib/cwd.t
5220 ____________________________________________________________________________
5221 [  9722] By: jhi                                   on 2001/04/17  11:53:50
5222         Log: Subject: [PATCH] Fix cwd.t when libpth contains symlinks
5223              From: Benjamin Sugars <ben.sugars@home.com>
5224              Date: Mon, 16 Apr 2001 22:43:29 -0400 (EDT)
5225              Message-ID: <Pine.LNX.4.21.0104162234030.17949-100000@localhost.localdomain>
5226      Branch: perl
5227            ! t/lib/cwd.t
5228 ____________________________________________________________________________
5229 [  9721] By: jhi                                   on 2001/04/17  11:52:17
5230         Log: Subject: [PATCH] Fix core dump from undef %File::Glob::
5231              From: Benjamin Sugars <bsugars@canoe.ca>
5232              Date: Mon, 16 Apr 2001 13:23:59 -0400 (EDT)
5233              Message-ID: <Pine.LNX.4.21.0104161313160.1676-100000@marmot.rim.canoe.ca>
5234      Branch: perl
5235            ! op.c
5236 ____________________________________________________________________________
5237 [  9720] By: jhi                                   on 2001/04/17  11:35:42
5238         Log: Subject: [MacPerl-Porters] [PATCH] bsd_glob.c, gv.c fixes for Mac OS
5239              From: Chris Nandor <pudge@pobox.com>
5240              Date: Tue, 17 Apr 2001 00:30:49 -0400
5241              Message-Id: <p05100207b701768712de@[10.0.1.177]>
5242      Branch: perl
5243            ! ext/File/Glob/bsd_glob.c gv.c
5244 ____________________________________________________________________________
5245 [  9719] By: jhi                                   on 2001/04/17  11:32:13
5246         Log: Subject: [PATCH] Tweten->West
5247              From: Casey West <casey@geeknest.com>
5248              Date: Mon, 16 Apr 2001 12:11:22 -0400
5249              Message-ID: <20010416121122.B14554@stupid.geeknest.com>
5250      Branch: perl
5251            ! AUTHORS lib/Class/Struct.pm lib/Shell.pm lib/constant.pm
5252            ! pod/perltie.pod
5253 ____________________________________________________________________________
5254 [  9718] By: jhi                                   on 2001/04/16  03:22:52
5255         Log: Update Changes.
5256      Branch: perl
5257            ! Changes patchlevel.h
5258 ____________________________________________________________________________
5259 [  9717] By: jhi                                   on 2001/04/16  03:06:28
5260         Log: Regen toc.
5261      Branch: perl
5262            ! pod/perltoc.pod
5263 ____________________________________________________________________________
5264 [  9716] By: jhi                                   on 2001/04/16  02:58:42
5265         Log: Subject: [PATCH: perl@9699] updates to apidoc in utf8.c
5266              From: Prymmer/Kahn <pvhp@best.com>
5267              Date: Sun, 15 Apr 2001 20:47:45 -0700 (PDT)
5268              Message-ID: <Pine.BSF.4.21.0104152037470.8946-100000@shell8.ba.best.com>
5269      Branch: perl
5270            ! utf8.c
5271 ____________________________________________________________________________
5272 [  9715] By: jhi                                   on 2001/04/15  23:40:35
5273         Log: Subject: Re: Net::Ping patch, adds stream protocol
5274              From: bronson@rinspin.com (Scott Bronson)
5275              Date: Tue, 10 Apr 2001 23:58:33 -0700
5276              Message-ID: <20010410235833.N29719@rinspin.com>
5277      Branch: perl
5278            ! lib/Net/Ping.pm
5279 ____________________________________________________________________________
5280 [  9714] By: jhi                                   on 2001/04/15  23:31:46
5281         Log: Printing out the ok messages helps successful testing.
5282      Branch: perl
5283            ! t/lib/time-hires.t
5284 ____________________________________________________________________________
5285 [  9713] By: jhi                                   on 2001/04/15  21:43:24
5286         Log: Update Douglas Wegscheid's email.
5287      Branch: perl
5288            ! AUTHORS
5289 ____________________________________________________________________________
5290 [  9712] By: jhi                                   on 2001/04/15  21:40:41
5291         Log: Subject: [PATCH t/lib/exporter.t lib/Exporter/Heavy.pm] Testing Exporter
5292              From: Michael G Schwern <schwern@pobox.com>
5293              Date: Sat, 14 Apr 2001 22:40:50 +0100
5294              Message-ID: <20010414224050.A1872@blackrider.blackstar.co.uk>
5295      Branch: perl
5296            + t/lib/exporter.t
5297            ! MANIFEST lib/Exporter/Heavy.pm
5298 ____________________________________________________________________________
5299 [  9711] By: jhi                                   on 2001/04/15  21:39:21
5300         Log: Subject: [PATCH t/op/loopctl.t] Exit via last, part 1
5301              From: Michael G Schwern <schwern@pobox.com>
5302              Date: Sat, 14 Apr 2001 22:13:59 +0100
5303              Message-ID: <20010414221359.A413@blackrider.blackstar.co.uk>
5304      Branch: perl
5305            ! t/op/loopctl.t
5306 ____________________________________________________________________________
5307 [  9710] By: jhi                                   on 2001/04/15  21:30:19
5308         Log: Subject: [PATCH t/pragma/warnings.t] Doesn't skip RCS files
5309              From: Michael G Schwern <schwern@pobox.com>
5310              Date: Sat, 14 Apr 2001 22:05:32 +0100
5311              Message-ID: <20010414220531.A30178@blackrider.blackstar.co.uk>
5312      Branch: perl
5313            ! t/pragma/warnings.t
5314 ____________________________________________________________________________
5315 [  9709] By: jhi                                   on 2001/04/15  19:34:09
5316         Log: Integrate changes #9706,9707 from maintperl into mainline.
5317              
5318              change#7210 broke .packlist generation
5319              
5320              ExtUtils::Installed doesn't quote regex metacharacters in paths
5321              before using them in match; also make it work for dosish platforms
5322      Branch: perl
5323           !> lib/ExtUtils/Install.pm lib/ExtUtils/Installed.pm
5324 ____________________________________________________________________________
5325 [  9708] By: jhi                                   on 2001/04/15  19:31:01
5326         Log: Test also the scalar aspect of getitimer().
5327      Branch: perl
5328            ! t/lib/time-hires.t
5329 ____________________________________________________________________________
5330 [  9707] By: gsar                                  on 2001/04/15  17:24:20
5331         Log: ExtUtils::Installed doesn't quote regex metacharacters in paths
5332              before using them in match; also make it work for dosish platforms
5333      Branch: maint-5.6/perl
5334            ! lib/ExtUtils/Installed.pm
5335 ____________________________________________________________________________
5336 [  9706] By: gsar                                  on 2001/04/15  17:21:59
5337         Log: change#7210 broke .packlist generation (listed only filename
5338              rather than fully qualified path name)
5339      Branch: maint-5.6/perl
5340            ! lib/ExtUtils/Install.pm
5341 ____________________________________________________________________________
5342 [  9705] By: jhi                                   on 2001/04/15  12:36:33
5343         Log: Add interval timer (setitimer, getitimer) support to Time::HiRes.
5344      Branch: perl
5345            ! ext/Time/HiRes/HiRes.pm ext/Time/HiRes/HiRes.xs
5346            ! t/lib/time-hires.t
5347 ____________________________________________________________________________
5348 [  9704] By: jhi                                   on 2001/04/15  10:49:08
5349         Log: Subject: [PATCH: perl@9622]update perlebcdic.pod with UTF tbl; tweak utf8.pm
5350              From: Prymmer/Kahn <pvhp@best.com>
5351              Date: Sat, 14 Apr 2001 21:36:24 -0700 (PDT)
5352              Message-ID: <Pine.BSF.4.21.0104142127580.27582-100000@shell8.ba.best.com>
5353      Branch: perl
5354            ! lib/utf8.pm pod/perlebcdic.pod
5355 ____________________________________________________________________________
5356 [  9703] By: jhi                                   on 2001/04/15  02:26:26
5357         Log: I keep forgetting to sort MANIFEST.
5358      Branch: perl
5359            ! MANIFEST
5360 ____________________________________________________________________________
5361 [  9702] By: jhi                                   on 2001/04/15  02:07:47
5362         Log: Add Scalar-List-Utils 1.02, from Graham Barr.
5363              Now we have blessed, reftype, tainted, first, reduce, ...
5364      Branch: perl
5365            + ext/List/Util/ChangeLog ext/List/Util/Makefile.PL
5366            + ext/List/Util/README ext/List/Util/Util.xs
5367            + ext/List/Util/lib/List/Util.pm
5368            + ext/List/Util/lib/Scalar/Util.pm t/lib/u-blessed.t
5369            + t/lib/u-dualvar.t t/lib/u-first.t t/lib/u-max.t
5370            + t/lib/u-maxstr.t t/lib/u-min.t t/lib/u-minstr.t
5371            + t/lib/u-readonly.t t/lib/u-reduce.t t/lib/u-reftype.t
5372            + t/lib/u-sum.t t/lib/u-tainted.t t/lib/u-weak.t
5373            ! MANIFEST
5374 ____________________________________________________________________________
5375 [  9701] By: jhi                                   on 2001/04/14  15:05:25
5376         Log: Subject: RE: dprofpp.pl updates 
5377              From: Carl Eklof <CEklof@endeca.com>
5378              Date: Thu, 12 Apr 2001 18:45:46 -0400
5379              Message-ID: <D99914D9109BD411823800508BD957180E1269@exch01.ops.endeca.com>
5380      Branch: perl
5381            ! utils/dprofpp.PL
5382 ____________________________________________________________________________
5383 [  9700] By: jhi                                   on 2001/04/14  14:44:55
5384         Log: Do not just blindly add CR.
5385      Branch: perl
5386            ! Porting/makerel
5387 ____________________________________________________________________________
5388 [  9699] By: jhi                                   on 2001/04/13  13:17:01
5389         Log: Update Changes.
5390      Branch: perl
5391            ! Changes patchlevel.h
5392 ____________________________________________________________________________
5393 [  9698] By: jhi                                   on 2001/04/13  12:44:48
5394         Log: Integrate perlio.
5395      Branch: perl
5396           !> ext/PerlIO/Scalar/Scalar.xs
5397 ____________________________________________________________________________
5398 [  9697] By: jhi                                   on 2001/04/13  12:29:15
5399         Log: Add more debug output to the test.
5400      Branch: perl
5401            ! t/lib/cwd.t
5402 ____________________________________________________________________________
5403 [  9696] By: nick                                  on 2001/04/13  10:14:29
5404         Log: Fix core dump on binmode($fh,'Scalar')
5405      Branch: perlio
5406            ! ext/PerlIO/Scalar/Scalar.xs
5407 ____________________________________________________________________________
5408 [  9695] By: nick                                  on 2001/04/13  09:05:42
5409         Log: Integrate mainline
5410      Branch: perlio
5411           +> ext/Time/HiRes/Changes ext/Time/HiRes/HiRes.pm
5412           +> ext/Time/HiRes/HiRes.xs ext/Time/HiRes/Makefile.PL
5413           +> t/lib/time-hires.t
5414           !> AUTHORS MANIFEST Makefile.SH Todo-5.6 configure.com
5415           !> ext/Digest/MD5/MD5.xs ext/File/Glob/Glob.pm
5416           !> ext/File/Glob/Glob.xs ext/File/Glob/bsd_glob.c
5417           !> ext/File/Glob/bsd_glob.h ext/MIME/Base64/Base64.xs
5418           !> hints/uts.sh hints/vmesa.sh lib/Devel/SelfStubber.pm opcode.pl
5419           !> pod/perlfaq5.pod pp.c regexec.c t/comp/proto.t
5420           !> t/lib/md5-file.t t/op/pat.t win32/Makefile win32/makefile.mk
5421 ____________________________________________________________________________
5422 [  9694] By: jhi                                   on 2001/04/12  22:23:35
5423         Log: Integrate change #9693 from maintperl into mainline.
5424              
5425              $VERSION and Version() on the same line provokes a warning from
5426              CPAN.pm (from Jonathan Leffler <jleffler@informix.com>)
5427      Branch: perl
5428           !> lib/Devel/SelfStubber.pm
5429 ____________________________________________________________________________
5430 [  9693] By: gsar                                  on 2001/04/12  21:55:56
5431         Log: $VERSION and Version() on the same line provokes a warning from
5432              CPAN.pm (from Jonathan Leffler <jleffler@informix.com>)
5433      Branch: maint-5.6/perl
5434            ! lib/Devel/SelfStubber.pm
5435 ____________________________________________________________________________
5436 [  9692] By: jhi                                   on 2001/04/12  13:54:00
5437         Log: This is at least 5.005.
5438      Branch: perl
5439            ! ext/Time/HiRes/HiRes.xs
5440 ____________________________________________________________________________
5441 [  9691] By: jhi                                   on 2001/04/12  13:37:20
5442         Log: Non-UNIX platforms extensions update.  (Well, UTS is UNIX.)
5443      Branch: perl
5444            ! Makefile.SH configure.com hints/uts.sh hints/vmesa.sh
5445            ! win32/Makefile win32/makefile.mk
5446 ____________________________________________________________________________
5447 [  9690] By: jhi                                   on 2001/04/12  01:34:46
5448         Log: Integrate Time::Hires 1.20 from Douglas E. Wegscheid.
5449      Branch: perl
5450            + ext/Time/HiRes/Changes ext/Time/HiRes/HiRes.pm
5451            + ext/Time/HiRes/HiRes.xs ext/Time/HiRes/Makefile.PL
5452            + t/lib/time-hires.t
5453            ! MANIFEST
5454 ____________________________________________________________________________
5455 [  9689] By: jhi                                   on 2001/04/12  00:28:39
5456         Log: Subject: [PATCH] Digest::MD5 on UTF8 strings
5457              From: Gisle Aas <gisle@ActiveState.com>
5458              Date: 11 Apr 2001 16:36:11 -0700
5459              Message-ID: <lrlmp7102c.fsf@caliper.ActiveState.com>
5460      Branch: perl
5461            ! ext/Digest/MD5/MD5.xs t/lib/md5-file.t
5462 ____________________________________________________________________________
5463 [  9688] By: jhi                                   on 2001/04/12  00:27:39
5464         Log: Subject: Re: [PATCH] [ID 20010410.001] Not OK: perl v5.7.1 on i386-freebsd 4.3-rc (UNINSTALLED)
5465              From: Gisle Aas <gisle@ActiveState.com>
5466              Date: 11 Apr 2001 11:13:24 -0700
5467              Message-ID: <lrbsq371a3.fsf@caliper.ActiveState.com>
5468      Branch: perl
5469            ! ext/MIME/Base64/Base64.xs
5470 ____________________________________________________________________________
5471 [  9687] By: jhi                                   on 2001/04/11  19:51:47
5472         Log: Slight update on the Todo list.  (Should integrate to Todo?) 
5473      Branch: perl
5474            ! Todo-5.6
5475 ____________________________________________________________________________
5476 [  9686] By: jhi                                   on 2001/04/11  16:54:25
5477         Log: Subject: [PATCH opcode.pl] Documentation of table format
5478              From: Simon Cozens <simon@netthink.co.uk>
5479              Date: Wed, 11 Apr 2001 12:59:31 +0100
5480              Message-ID: <20010411125931.A25681@netthink.co.uk>
5481      Branch: perl
5482            ! opcode.pl
5483 ____________________________________________________________________________
5484 [  9685] By: jhi                                   on 2001/04/11  16:53:15
5485         Log: Subject: [PATCH] prototype("CORE::recv")
5486              From: Simon Cozens <simon@netthink.co.uk>
5487              Date: Wed, 11 Apr 2001 13:24:35 +0100
5488              Message-ID: <20010411132435.A26169@netthink.co.uk>
5489      Branch: perl
5490            ! pp.c t/comp/proto.t
5491 ____________________________________________________________________________
5492 [  9684] By: jhi                                   on 2001/04/11  16:47:13
5493         Log: FAQ (and AUTHORS) update from Dan Carson: the information
5494              was several years obsolete, Term::Readkey has been updated
5495              to have the functionality.
5496      Branch: perl
5497            ! AUTHORS pod/perlfaq5.pod
5498 ____________________________________________________________________________
5499 [  9683] By: jhi                                   on 2001/04/11  12:15:46
5500         Log: Subject: Re: [PATCH] [ID 20010410.001] Not OK: perl v5.7.1 on i386-freebsd 4.3-rc (UNINSTALLED)
5501              From: Calle Dybedahl <calle@lysator.liu.se>
5502              Date: 10 Apr 2001 16:44:16 +0200
5503              Message-ID: <86d7akbyrj.fsf@tezcatlipoca.algonet.se>
5504      Branch: perl
5505            ! ext/MIME/Base64/Base64.xs
5506 ____________________________________________________________________________
5507 [  9682] By: jhi                                   on 2001/04/11  12:12:26
5508         Log: A more minimal fix for 20010410.006 from Hugo.
5509      Branch: perl
5510            ! regexec.c
5511 ____________________________________________________________________________
5512 [  9681] By: jhi                                   on 2001/04/11  11:34:23
5513         Log: Integrate changes #9678,9679 from maintline into mainperl.
5514              
5515              addendum to change#9676
5516              
5517              up $File::Glob::VERSION; add a note pointing out the version of
5518              the OpenBSD glob bsd_glob.c resembles
5519      Branch: perl
5520           !> ext/File/Glob/Glob.pm ext/File/Glob/bsd_glob.c
5521           !> ext/File/Glob/bsd_glob.h
5522 ____________________________________________________________________________
5523 [  9680] By: jhi                                   on 2001/04/11  11:30:38
5524         Log: Bad test numbering in integrate in #9677.
5525              Fixes ID 20010411.001.
5526      Branch: perl
5527            ! t/op/pat.t
5528 ____________________________________________________________________________
5529 [  9679] By: gsar                                  on 2001/04/11  03:38:40
5530         Log: up $File::Glob::VERSION; add a note pointing out the version of
5531              the OpenBSD glob bsd_glob.c resembles
5532      Branch: maint-5.6/perl
5533            ! ext/File/Glob/Glob.pm ext/File/Glob/bsd_glob.c
5534            ! ext/File/Glob/bsd_glob.h
5535 ____________________________________________________________________________
5536 [  9678] By: gsar                                  on 2001/04/11  03:09:48
5537         Log: addendum to change#9676: some missing changes from OpenBSD glob.c
5538              revision 1.8.10.1 found here:
5539              
5540              http://www.openbsd.org/cgi-bin/cvsweb/src/lib/libc/gen/glob.c
5541      Branch: maint-5.6/perl
5542            ! ext/File/Glob/bsd_glob.c
5543 ____________________________________________________________________________
5544 [  9677] By: jhi                                   on 2001/04/11  02:54:39
5545         Log: Integrate changes #9675,9676 from maintperl into mainline.
5546              
5547              fix for bug 20010410.006, undo change#7115
5548              
5549              port the OpenBSD glob() security patch
5550      Branch: perl
5551           !> ext/File/Glob/Glob.pm ext/File/Glob/Glob.xs
5552           !> ext/File/Glob/bsd_glob.c ext/File/Glob/bsd_glob.h regexec.c
5553           !> t/op/pat.t
5554 ____________________________________________________________________________
5555 [  9676] By: gsar                                  on 2001/04/11  02:19:02
5556         Log: port the glob() security patch found at:
5557              
5558              ftp://ftp.openbsd.org/pub/OpenBSD/patches/2.8/common/025_glob.patch
5559              
5560              CERT advisory for the issue is here:
5561              
5562              http://www.cert.org/advisories/CA-2001-07.html
5563              
5564              Note that the security scare is only relevant for those who are
5565              foolish enough to build suidperl (which is now officially discouraged)
5566      Branch: maint-5.6/perl
5567            ! ext/File/Glob/Glob.pm ext/File/Glob/Glob.xs
5568            ! ext/File/Glob/bsd_glob.c ext/File/Glob/bsd_glob.h
5569 ____________________________________________________________________________
5570 [  9675] By: gsar                                  on 2001/04/10  23:52:11
5571         Log: fix for bug 20010410.006
5572              
5573              undo change#7115 (came into maint-5.6 as change#8156)
5574              
5575              add tests to keep it from coming back
5576      Branch: maint-5.6/perl
5577            ! regexec.c t/op/pat.t
5578 ____________________________________________________________________________
5579 [  9674] By: nick                                  on 2001/04/10  20:39:31
5580         Log: Integrate mainline
5581      Branch: perlio
5582           +> Porting/testall.atom
5583           !> MANIFEST t/lib/lc-all.t t/lib/lc-constants.t
5584           !> t/lib/lc-country.t t/lib/lc-currency.t t/lib/lc-language.t
5585           !> t/lib/lc-uk.t t/pod/find.t
5586 ____________________________________________________________________________
5587 [  9673] By: nick                                  on 2001/04/10  18:46:14
5588         Log: Integrate against change 9670 aka perl-5.7.1
5589      Branch: perlio
5590           +> jpl/ChangeLog jpl/README.JUST-JNI jpl/docs/Tutorial.pod
5591           !> (integrate 53 files)
5592 ____________________________________________________________________________
5593 [  9672] By: jhi                                   on 2001/04/10  13:45:01
5594         Log: Add a script for doing cumulative profile of the test suite.
5595              (Requires ATOM, that is, Tru64.)
5596      Branch: perl
5597            + Porting/testall.atom
5598            ! MANIFEST
5599 ____________________________________________________________________________
5600 [  9671] By: jhi                                   on 2001/04/10  12:38:53
5601         Log: Missing std block.
5602      Branch: perl
5603            ! t/lib/lc-all.t t/lib/lc-constants.t t/lib/lc-country.t
5604            ! t/lib/lc-currency.t t/lib/lc-language.t t/lib/lc-uk.t
5605            ! t/pod/find.t
5606 ____________________________________________________________________________
5607 [  9670] By: jhi                                   on 2001/04/10  01:25:58
5608         Log: This is 5.7.1.
5609      Branch: perl
5610            ! patchlevel.h
5611 ____________________________________________________________________________
5612 [  9669] By: jhi                                   on 2001/04/10  01:09:14
5613         Log: Update Changes.
5614      Branch: perl
5615            ! Changes patchlevel.h
5616 ____________________________________________________________________________
5617 [  9668] By: jhi                                   on 2001/04/10  01:00:38
5618         Log: Regen toc.
5619      Branch: perl
5620            ! pod/perltoc.pod
5621 ____________________________________________________________________________
5622 [  9667] By: jhi                                   on 2001/04/10  00:52:16
5623         Log: Update perlhist.
5624      Branch: perl
5625            ! pod/perlhist.pod
5626 ____________________________________________________________________________
5627 [  9666] By: jhi                                   on 2001/04/09  23:38:59
5628         Log: Slight wording tweaks from Damian to #9658.
5629      Branch: perl
5630            ! pod/perlobj.pod
5631 ____________________________________________________________________________
5632 [  9665] By: jhi                                   on 2001/04/09  19:56:06
5633         Log: Subject: [PATCH perlutil.pod] Nit
5634              From: Simon Cozens <simon@netthink.co.uk>
5635              Date: Mon, 9 Apr 2001 20:29:44 +0100
5636              Message-ID: <20010409202944.A14796@the.earth.li>
5637      Branch: perl
5638            ! pod/perlutil.pod
5639 ____________________________________________________________________________
5640 [  9664] By: jhi                                   on 2001/04/09  19:54:42
5641         Log: Subject: Re: perl571delta.pod@9631
5642              From: Mike Guy <mjtg@cam.ac.uk>
5643              Date: Mon, 09 Apr 2001 18:09:14 +0100
5644              Message-Id: <E14mfAA-0006vi-00@libra.cus.cam.ac.uk>
5645      Branch: perl
5646            ! pod/perl571delta.pod
5647 ____________________________________________________________________________
5648 [  9663] By: jhi                                   on 2001/04/09  13:43:35
5649         Log: Update Changes.
5650      Branch: perl
5651            ! Changes patchlevel.h
5652 ____________________________________________________________________________
5653 [  9662] By: jhi                                   on 2001/04/09  13:24:46
5654         Log: tweak tweak.
5655      Branch: perl
5656            ! AUTHORS pod/perl571delta.pod
5657 ____________________________________________________________________________
5658 [  9661] By: jhi                                   on 2001/04/09  13:15:13
5659         Log: Thinko in manual patch applying.
5660      Branch: perl
5661            ! sv.c
5662 ____________________________________________________________________________
5663 [  9660] By: jhi                                   on 2001/04/09  13:07:53
5664         Log: Subject: Re: [PATCH perl@9424] isn't numeric warning 
5665              From: Robin Barker <rmb1@cise.npl.co.uk> 
5666              Date: Mon, 9 Apr 2001 14:58:04 +0100 (BST)
5667              Message-Id: <200104091358.OAA24811@tempest.npl.co.uk>
5668              
5669              (This corrects the case where the "isn't numeric" string contains \0s
5670              and is longer than the temporary buffer, and contains \0 at the point
5671              the string would be truncated by "...".) 
5672      Branch: perl
5673            ! sv.c
5674 ____________________________________________________________________________
5675 [  9659] By: jhi                                   on 2001/04/09  12:57:41
5676         Log: Upgrade to CGI.pm 2.753, from Lincoln Stein.
5677      Branch: perl
5678            ! lib/CGI.pm lib/CGI/Cookie.pm t/lib/cgi-esc.t
5679            ! t/lib/cgi-function.t t/lib/cgi-html.t
5680 ____________________________________________________________________________
5681 [  9658] By: jhi                                   on 2001/04/09  12:48:47
5682         Log: Subject: [PATCH] Partial rewrite of perlobj.pod
5683              From: Ilmari Karonen <iltzu@sci.fi>
5684              Date: Sun, 8 Apr 2001 23:14:29 +0300 (EET DST)
5685              Message-ID: <Pine.SOL.3.96.1010408224105.425E-100000@simpukka>
5686              
5687              Rearrange and rewrite the Method Invocation section
5688              to explain the concepts in nicer order.
5689      Branch: perl
5690            ! pod/perlobj.pod
5691 ____________________________________________________________________________
5692 [  9657] By: jhi                                   on 2001/04/09  12:35:58
5693         Log: Upgrade to podlators 1.09, from Russ Allbery.
5694      Branch: perl
5695            ! lib/Pod/Man.pm lib/Pod/Text.pm
5696 ____________________________________________________________________________
5697 [  9656] By: jhi                                   on 2001/04/09  12:31:53
5698         Log: perl571delta.
5699      Branch: perl
5700            ! Todo-5.6 pod/perl571delta.pod pod/perlunicode.pod
5701 ____________________________________________________________________________
5702 [  9655] By: jhi                                   on 2001/04/09  12:20:09
5703         Log: Subject: [PATCH: perl@9622] documentation tweaks for UTF-EBCDIC support
5704              From: Prymmer/Kahn <pvhp@best.com>
5705              Date: Mon, 9 Apr 2001 00:08:58 -0700 (PDT)
5706              Message-ID: <Pine.BSF.4.21.0104090006190.21071-100000@shell8.ba.best.com>
5707      Branch: perl
5708            ! lib/utf8.pm pod/perlunicode.pod
5709 ____________________________________________________________________________
5710 [  9654] By: gsar                                  on 2001/04/09  03:38:33
5711         Log: here lies 5.6.1
5712      Branch: maint-5.6/perl
5713            ! Changes
5714 ____________________________________________________________________________
5715 [  9653] By: jhi                                   on 2001/04/09  03:25:24
5716         Log: Update perlhist.
5717      Branch: perl
5718            ! pod/perlhist.pod
5719 ____________________________________________________________________________
5720 [  9652] By: jhi                                   on 2001/04/09  03:18:49
5721         Log: perl571delta tweaking continues.
5722      Branch: perl
5723            ! pod/perl571delta.pod
5724 ____________________________________________________________________________
5725 [  9651] By: gsar                                  on 2001/04/09  03:11:19
5726         Log: update Changes, patchlevel.h &c.
5727      Branch: maint-5.6/perl
5728            ! Changes patchlevel.h pod/perldelta.pod pod/perlhist.pod
5729            ! pod/perltoc.pod
5730 ____________________________________________________________________________
5731 [  9650] By: jhi                                   on 2001/04/09  02:40:24
5732         Log: Integrate the perlfork half of #9513 from maintperl into mainline
5733              (the perlunicode half is obsolete)
5734      Branch: perl
5735            ! pod/perlfork.pod
5736 ____________________________________________________________________________
5737 [  9649] By: gsar                                  on 2001/04/09  02:35:43
5738         Log: tweak perldelta as suggested by Jarkko
5739      Branch: maint-5.6/perl
5740            ! pod/perldelta.pod
5741 ____________________________________________________________________________
5742 [  9648] By: jhi                                   on 2001/04/09  02:13:04
5743         Log: Integrate change #9646 from maintperl into mainline.
5744              
5745              add note about ithreads and Thread.pm
5746      Branch: perl
5747           !> ext/Thread/Thread.pm ext/Thread/Thread.xs
5748 ____________________________________________________________________________
5749 [  9647] By: jhi                                   on 2001/04/09  02:10:18
5750         Log: Bad assumption that shortsize == 2.
5751      Branch: perl
5752            ! t/lib/xs-typemap.t
5753 ____________________________________________________________________________
5754 [  9646] By: gsar                                  on 2001/04/09  00:48:04
5755         Log: add note about ithreads and Thread.pm (too many people are
5756              confused by the fact that Thread.pm is built and installed
5757              under non-5005threads but doesn't work)
5758      Branch: maint-5.6/perl
5759            ! ext/Thread/Thread.pm ext/Thread/Thread.xs
5760 ____________________________________________________________________________
5761 [  9645] By: gsar                                  on 2001/04/09  00:19:03
5762         Log: update perldelta.pod for changes in 5.6.1
5763      Branch: maint-5.6/perl
5764            ! Changes pod/perldelta.pod
5765 ____________________________________________________________________________
5766 [  9644] By: jhi                                   on 2001/04/08  20:37:00
5767         Log: Integrate change #9639 from maintperl into mainline:
5768              on windows, many of the README.* pods were being copied to
5769              the wrong location
5770      Branch: perl
5771           !> win32/Makefile win32/makefile.mk
5772 ____________________________________________________________________________
5773 [  9643] By: jhi                                   on 2001/04/08  20:07:11
5774         Log: Integrate change #9624 from maintperl into mainline:
5775              the pod tests were not okay.  (t/pod/find.t changes ignored)
5776      Branch: perl
5777           !> lib/Pod/Find.pm t/pod/emptycmd.t t/pod/for.t t/pod/headings.t
5778           !> t/pod/include.t t/pod/included.t t/pod/lref.t
5779           !> t/pod/multiline_items.t t/pod/nested_items.t
5780           !> t/pod/nested_seqs.t t/pod/oneline_cmds.t t/pod/pod2usage.t
5781           !> t/pod/poderrs.t t/pod/podselect.t t/pod/special_seqs.t
5782 ____________________________________________________________________________
5783 [  9642] By: jhi                                   on 2001/04/08  19:57:17
5784         Log: Integrate change #9638 from maintperl into mainline:
5785              update to latest JPL from the anoncvs repository
5786      Branch: perl
5787           +> jpl/ChangeLog jpl/README.JUST-JNI jpl/docs/Tutorial.pod
5788           !> MANIFEST jpl/JNI/JNI.pm jpl/JNI/JNI.xs jpl/JNI/Makefile.PL
5789           !> jpl/PerlInterpreter/PerlInterpreter.h jpl/README
5790 ____________________________________________________________________________
5791 [  9641] By: jhi                                   on 2001/04/08  19:53:30
5792         Log: perl571delta updates.
5793      Branch: perl
5794            ! lib/Filter/Simple.pm pod/perl571delta.pod
5795 ____________________________________________________________________________
5796 [  9640] By: gsar                                  on 2001/04/08  19:20:46
5797         Log: integrate change#9634 from mainline
5798              
5799              Fix the perlmodlib generation (didn't understand separate .pod
5800              files; didn't understand -- as the name-thing separator).
5801              Update the CPAN mirrors list.
5802      Branch: maint-5.6/perl
5803            ! pod/perlmodlib.pod
5804           !> pod/perlmodlib.PL
5805 ____________________________________________________________________________
5806 [  9639] By: gsar                                  on 2001/04/08  18:57:31
5807         Log: on windows, many of the README.* pods were being copied to the wrong
5808              location
5809      Branch: maint-5.6/perl
5810            ! win32/Makefile win32/makefile.mk
5811 ____________________________________________________________________________
5812 [  9638] By: gsar                                  on 2001/04/08  18:38:25
5813         Log: update to latest JPL from the anoncvs repository
5814      Branch: maint-5.6/perl
5815            + jpl/ChangeLog jpl/README.JUST-JNI jpl/docs/Tutorial.pod
5816            ! MANIFEST jpl/JNI/JNI.pm jpl/JNI/JNI.xs jpl/JNI/Makefile.PL
5817            ! jpl/PerlInterpreter/PerlInterpreter.h jpl/README
5818 ____________________________________________________________________________
5819 [  9637] By: jhi                                   on 2001/04/08  17:53:53
5820         Log: Britishify spellings; s/\b(front|back) (end)\b/\1\2/g;
5821      Branch: perl
5822            ! pod/perl571delta.pod
5823 ____________________________________________________________________________
5824 [  9636] By: jhi                                   on 2001/04/08  17:18:32
5825         Log: Regen toc.
5826      Branch: perl
5827            ! pod/perltoc.pod
5828 ____________________________________________________________________________
5829 [  9635] By: jhi                                   on 2001/04/08  17:16:33
5830         Log: Subject: [PATCH perl@9622] fix IO.xs compile failure on VMS
5831              From: "Craig A. Berry" <craigberry@mac.com>
5832              Date: Sun, 08 Apr 2001 12:30:16 -0500
5833              Message-Id: <5.0.2.1.0.20010408120154.02675eb8@exchi01>
5834      Branch: perl
5835            ! ext/IO/IO.xs lib/ExtUtils/xsubpp
5836 ____________________________________________________________________________
5837 [  9634] By: jhi                                   on 2001/04/08  17:09:19
5838         Log: Fix the perlmodlib generation (didn't understand separate .pod
5839              files; didn't understand -- as the name-thing separator).
5840              
5841              Update the CPAN mirrors list.
5842      Branch: perl
5843            ! pod/perlmodlib.PL pod/perlmodlib.pod
5844 ____________________________________________________________________________
5845 [  9633] By: jhi                                   on 2001/04/08  16:49:17
5846         Log: Sort MANIFEST.
5847      Branch: perl
5848            ! MANIFEST
5849 ____________________________________________________________________________
5850 [  9632] By: gsar                                  on 2001/04/08  16:36:06
5851         Log: add $Tie::RefHash::VERSION
5852      Branch: maint-5.6/perl
5853            ! lib/Tie/RefHash.pm
5854 ____________________________________________________________________________
5855 [  9631] By: jhi                                   on 2001/04/08  16:10:15
5856         Log: perl571delta updates based on p5p feedback; still needs
5857              lots of examples.
5858      Branch: perl
5859            ! pod/perl571delta.pod
5860 ____________________________________________________________________________
5861 [  9630] By: jhi                                   on 2001/04/08  15:59:13
5862         Log: Update the list of supported platforms to talk about 5.7.1
5863              (and 5.6.1)
5864      Branch: perl
5865            ! pod/perlport.pod
5866 ____________________________________________________________________________
5867 [  9629] By: jhi                                   on 2001/04/08  15:55:41
5868         Log: Integrate changes #8677,8680,8681,8725,8732,8776,8782,9290
5869              from maintperl into mainline: perlport updates.
5870      Branch: perl
5871            ! pod/perlport.pod
5872 ____________________________________________________________________________
5873 [  9628] By: jhi                                   on 2001/04/08  15:53:17
5874         Log: perlsolaris.pod copied to wrong directory.
5875      Branch: perl
5876            ! win32/makefile.mk
5877 ____________________________________________________________________________
5878 [  9627] By: jhi                                   on 2001/04/08  14:48:18
5879         Log: Subject: Typos in perl571delta.pod
5880              From: "Stephen P. Potter" <spp@spotter.yi.org>
5881              Date: Sat, 07 Apr 2001 20:37:05 -0400
5882              Message-Id: <20010408003710.2A8FC729DD@belgarath.spotter.yi.org>
5883      Branch: perl
5884            ! pod/perl571delta.pod
5885 ____________________________________________________________________________
5886 [  9626] By: jhi                                   on 2001/04/08  14:39:04
5887         Log: Smoke out dTHR, spotted by by Stephen P. Potter.
5888      Branch: perl
5889            ! gv.c
5890 ____________________________________________________________________________
5891 [  9625] By: nick                                  on 2001/04/08  10:14:23
5892         Log: Integrate mainline
5893      Branch: perlio
5894           +> pod/perl570delta.pod pod/perl571delta.pod
5895           !> (integrate 27 files)
5896 ____________________________________________________________________________
5897 [  9624] By: gsar                                  on 2001/04/08  06:08:17
5898         Log: test in t/pod/* were busted
5899              
5900              these tests are still not enabled in t/{harness,TEST}
5901      Branch: maint-5.6/perl
5902            ! lib/Pod/Find.pm t/pod/emptycmd.t t/pod/find.t t/pod/for.t
5903            ! t/pod/headings.t t/pod/include.t t/pod/included.t t/pod/lref.t
5904            ! t/pod/multiline_items.t t/pod/nested_items.t
5905            ! t/pod/nested_seqs.t t/pod/oneline_cmds.t t/pod/pod2usage.t
5906            ! t/pod/poderrs.t t/pod/podselect.t t/pod/special_seqs.t
5907 ____________________________________________________________________________
5908 [  9623] By: gsar                                  on 2001/04/08  03:37:01
5909         Log: integrate change#9470 from mainline
5910              
5911              Subject: Re: [ID 20010215.006] Bad arg length for Socket::unpack_sockaddr_un, length is 14 ... 
5912      Branch: maint-5.6/perl
5913           !> ext/Socket/Socket.xs
5914 ____________________________________________________________________________
5915 [  9622] By: jhi                                   on 2001/04/07  22:40:47
5916         Log: Update Changes.
5917      Branch: perl
5918            ! Changes patchlevel.h
5919 ____________________________________________________________________________
5920 [  9621] By: jhi                                   on 2001/04/07  22:34:16
5921         Log: Update AUTHORS.
5922      Branch: perl
5923            ! AUTHORS
5924 ____________________________________________________________________________
5925 [  9620] By: jhi                                   on 2001/04/07  22:12:47
5926         Log: Forgot to bump the number of tests in #9164.
5927      Branch: perl
5928            ! t/op/array.t
5929 ____________________________________________________________________________
5930 [  9619] By: jhi                                   on 2001/04/07  22:09:50
5931         Log: Bump patchlevel to 5.7.1.
5932      Branch: perl
5933            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
5934            ! config_h.SH patchlevel.h
5935 ____________________________________________________________________________
5936 [  9618] By: jhi                                   on 2001/04/07  22:02:41
5937         Log: Populate perl571delta.
5938      Branch: perl
5939            ! pod/perl571delta.pod
5940 ____________________________________________________________________________
5941 [  9617] By: jhi                                   on 2001/04/07  22:01:23
5942         Log: Change 5.7.0 to 5.7.1 in some of the places I would be guaranteed
5943              to forget it later; do not change patchlevel.h yet or regenerate
5944              Configure yet.
5945      Branch: perl
5946            ! epoc/config.sh win32/Makefile win32/config_H.bc
5947            ! win32/config_H.gc win32/config_H.vc win32/makefile.mk
5948 ____________________________________________________________________________
5949 [  9616] By: jhi                                   on 2001/04/07  17:46:33
5950         Log: Add PerlIO and Encode information to perl571delta, fron NI-S.
5951      Branch: perl
5952            ! pod/perl571delta.pod
5953 ____________________________________________________________________________
5954 [  9615] By: jhi                                   on 2001/04/07  17:33:21
5955         Log: Change the toc configuration.
5956      Branch: perl
5957            ! pod/buildtoc.PL pod/perl.pod
5958 ____________________________________________________________________________
5959 [  9614] By: jhi                                   on 2001/04/07  17:29:47
5960         Log: Subject: PATCH: $[
5961              From: Robin Houston <robin@kitsite.com>
5962              Date: Fri, 6 Apr 2001 18:10:14 +0100
5963              Message-ID: <20010406181014.A18803@puffinry.freeserve.co.uk>
5964      Branch: perl
5965            ! op.c t/op/array.t
5966 ____________________________________________________________________________
5967 [  9613] By: jhi                                   on 2001/04/07  17:28:26
5968         Log: Subject: [PATCH perl@9424] isn't numeric warning
5969              From: Robin Barker <rmb1@cise.npl.co.uk>
5970              Date: Fri, 6 Apr 2001 18:08:52 +0100 (BST)
5971              Message-Id: <200104061708.SAA06783@tempest.npl.co.uk>
5972      Branch: perl
5973            ! sv.c t/pragma/warn/sv
5974 ____________________________________________________________________________
5975 [  9612] By: jhi                                   on 2001/04/07  17:26:45
5976         Log: Subject: [PATCH bleadperl] Re: [PATCH dump.c] hash quality
5977              From: Mike Guy <mjtg@cam.ac.uk>
5978              Date: Fri, 06 Apr 2001 12:47:06 +0100
5979              Message-Id: <E14lUhm-0000rx-00@libra.cus.cam.ac.uk>
5980      Branch: perl
5981            ! dump.c t/lib/peek.t
5982 ____________________________________________________________________________
5983 [  9611] By: jhi                                   on 2001/04/07  17:21:35
5984         Log: Create perl571delta and seed it off with the perldelta changes
5985              since 5.7.0; remove those changes from perldelta and rename it
5986              as perl570delta; recreate perldelta but leave it almost empty.
5987      Branch: perl
5988            + pod/perl570delta.pod pod/perl571delta.pod
5989            ! MANIFEST pod/perldelta.pod
5990 ____________________________________________________________________________
5991 [  9610] By: jhi                                   on 2001/04/07  16:56:32
5992         Log: Denit.
5993      Branch: perl
5994            ! pod/perldelta.pod
5995 ____________________________________________________________________________
5996 [  9609] By: jhi                                   on 2001/04/07  16:38:32
5997         Log: Retract #9523: needs more thought.
5998      Branch: perl
5999            ! Makefile.SH
6000 ____________________________________________________________________________
6001 [  9608] By: jhi                                   on 2001/04/07  14:59:20
6002         Log: atmark() code cleanaup.
6003      Branch: perl
6004            ! ext/IO/IO.xs
6005 ____________________________________________________________________________
6006 [  9607] By: jhi                                   on 2001/04/07  14:48:14
6007         Log: Integrate change #9605 from maintperl into mainline.
6008              
6009              can't optimize away scope entry if tr/// is present
6010      Branch: perl
6011           !> op.c t/op/tr.t
6012 ____________________________________________________________________________
6013 [  9606] By: jhi                                   on 2001/04/07  14:43:59
6014         Log: Integrate perlio.
6015      Branch: perl
6016           +> win32/FindExt.pm
6017           !> MANIFEST ext/PerlIO/Via/Via.xs perlio.c t/lib/md5-file.t
6018           !> win32/buildext.pl win32/config_sh.PL win32/makefile.mk
6019 ____________________________________________________________________________
6020 [  9605] By: gsar                                  on 2001/04/07  11:52:40
6021         Log: can't optimize away scope entry if tr/// is present
6022      Branch: maint-5.6/perl
6023            ! op.c t/op/tr.t
6024 ____________________________________________________________________________
6025 [  9604] By: nick                                  on 2001/04/07  11:39:45
6026         Log: Split out extension finding code from buildext.pl into FindExt.pm
6027              Use it to get Config.pm's idea of available extensions in line
6028              with what is built.
6029      Branch: perlio
6030            + win32/FindExt.pm
6031            ! MANIFEST win32/buildext.pl win32/config_sh.PL
6032            ! win32/makefile.mk
6033 ____________________________________________________________________________
6034 [  9603] By: nick                                  on 2001/04/07  09:11:38
6035         Log: Cleanup correction for failed :Via() layer, also set an error code.
6036      Branch: perlio
6037            ! ext/PerlIO/Via/Via.xs
6038 ____________________________________________________________________________
6039 [  9602] By: nick                                  on 2001/04/07  08:38:04
6040         Log: Digests in lib/md5-file.t are for text files _without_ CRLF i.e. UNIX
6041              style. So don't use binmode() on the handles so that Win32 etc. see
6042              same sequence and produce same digests.
6043      Branch: perlio
6044            ! t/lib/md5-file.t
6045 ____________________________________________________________________________
6046 [  9601] By: nick                                  on 2001/04/07  08:36:26
6047         Log: Allow PerlIOBase_pushed to ignore prefix on mode (e.g. sysopen's "#r")
6048              Else it complains and so crlf layer (say) does not get pushed.
6049      Branch: perlio
6050            ! perlio.c
6051 ____________________________________________________________________________
6052 [  9600] By: jhi                                   on 2001/04/06  23:00:09
6053         Log: Integrate change #9599 from perlio into mainline.
6054      Branch: perl
6055           !> ext/Encode/Encode.pm win32/config_H.bc win32/config_H.gc
6056           !> win32/config_H.vc
6057 ____________________________________________________________________________
6058 [  9599] By: nick                                  on 2001/04/06  21:42:43
6059         Log: Quote $VERSION in Encode.pm.
6060              regen_config_h as requested.
6061      Branch: perlio
6062            ! ext/Encode/Encode.pm win32/config_H.bc win32/config_H.gc
6063            ! win32/config_H.vc
6064 ____________________________________________________________________________
6065 [  9598] By: nick                                  on 2001/04/06  20:34:59
6066         Log: Integrate mainline
6067      Branch: perlio
6068           +> README.macos
6069           !> (integrate 39 files)
6070 ____________________________________________________________________________
6071 [  9597] By: gsar                                  on 2001/04/06  18:06:35
6072         Log: integrate change#9464 from mainline (addendum to change#8313)
6073              
6074              Subject: [PATCH @9452] Better peep()ing for foreach() loops
6075      Branch: maint-5.6/perl
6076           !> op.c
6077 ____________________________________________________________________________
6078 [  9596] By: jhi                                   on 2001/04/06  17:26:03
6079         Log: The d_casti32=undef is good for you even when not use64bitall.
6080      Branch: perl
6081            ! hints/hpux.sh
6082 ____________________________________________________________________________
6083 [  9595] By: gsar                                  on 2001/04/06  14:57:17
6084         Log: add a low-impact fix to accomodate darwin-ism
6085      Branch: maint-5.6/perl
6086            ! ext/Errno/Errno_pm.PL
6087 ____________________________________________________________________________
6088 [  9594] By: jhi                                   on 2001/04/06  14:55:14
6089         Log: Integrate changes #9528,9593 from mainline into maintperl;
6090              tweaking the editor/IDE/shell list.
6091      Branch: maint-5.6/perl
6092           !> pod/perlfaq3.pod
6093 ____________________________________________________________________________
6094 [  9593] By: jhi                                   on 2001/04/06  14:51:39
6095         Log: Make the editor/IDE/shell list a little bit airier.
6096      Branch: perl
6097            ! pod/perlfaq3.pod
6098 ____________________________________________________________________________
6099 [  9592] By: gsar                                  on 2001/04/06  14:45:18
6100         Log: integrate change#9477 from mainline (base.pm doc tweak)
6101              
6102              missing doc entry for fmod()
6103      Branch: maint-5.6/perl
6104            ! lib/Math/BigFloat.pm
6105           !> lib/base.pm
6106 ____________________________________________________________________________
6107 [  9591] By: jhi                                   on 2001/04/06  13:55:48
6108         Log: Regen toc.
6109      Branch: perl
6110            ! pod/perltoc.pod
6111 ____________________________________________________________________________
6112 [  9590] By: jhi                                   on 2001/04/06  13:54:52
6113         Log: Math::BigFloat patches from John Peacock.  The equivalent
6114              of #9586 from maintperl but reworked by John to work with
6115              the bleadperl.
6116      Branch: perl
6117            ! lib/Math/BigFloat.pm t/lib/bigfltpm.t
6118 ____________________________________________________________________________
6119 [  9589] By: jhi                                   on 2001/04/06  13:42:23
6120         Log: Define the U32_ALIGNMENT_REQUIRED only if it's not already defined.
6121      Branch: perl
6122            ! ext/Digest/MD5/Makefile.PL
6123 ____________________________________________________________________________
6124 [  9588] By: jhi                                   on 2001/04/06  13:31:45
6125         Log: Integrate changes #9584,9587 from maintperl into mainline.
6126              
6127              keep eval"" CVs alive until the end of the statement in which
6128              they're called
6129              
6130              add README.macos (from Chris Nandor)
6131              
6132              tyop in change#9555
6133      Branch: perl
6134           +> README.macos
6135           !> MANIFEST embed.h embed.pl global.sym objXSUB.h perlapi.c
6136           !> pod/buildtoc.PL pod/perl.pod pod/perlfaq9.pod pod/perlguts.pod
6137           !> pp_ctl.c proto.h scope.c scope.h sv.c win32/Makefile
6138           !> win32/makefile.mk
6139 ____________________________________________________________________________
6140 [  9587] By: gsar                                  on 2001/04/06  07:31:30
6141         Log: add README.macos (from Chris Nandor)
6142              
6143              tyop in change#9555
6144      Branch: maint-5.6/perl
6145            + README.macos
6146            ! MANIFEST pod/buildtoc.PL pod/perl.pod pod/perlfaq9.pod
6147            ! win32/Makefile win32/makefile.mk
6148 ____________________________________________________________________________
6149 [  9586] By: gsar                                  on 2001/04/06  07:08:54
6150         Log: fixes for Math::BigFloat bugs; add fmod() (from John Peacock)
6151      Branch: maint-5.6/perl
6152            ! lib/Math/BigFloat.pm t/lib/bigfltpm.t
6153 ____________________________________________________________________________
6154 [  9585] By: gsar                                  on 2001/04/06  06:58:44
6155         Log: integrate changes#9555,9556,9563..9567,9570..9575,9577..9578
6156              from mainline
6157              
6158              Subject: [PATCH] Base64 update to perlfaq9.pod
6159              
6160              Subject: [PATCH AUTHORS] Housekeeping
6161              
6162              Subject: Re: Not OK: perl v5.6.1 +fools-gold on darwin 1.3 (UNINSTALLED)
6163              Mac OS X (Darwin) has extra pwent fields.
6164              
6165              Subject: [PATCH B::*] print control-character vars readably
6166              Needs EBCDICification.
6167              
6168              Subject: [PATCH B::Deparse] lexical variables with ridiculously long names that are used in list assignments
6169              
6170              Subject: [PATCH B::*] cope with SVf_IVisUV, and cope with $^^ and friends
6171              
6172              Subject: [PATCH B::Deparse] "${foo}bar", "${foo}[1]" etc.
6173              
6174              Subject: [PATCH B::Deparse] binmode is no longer an UNOP
6175              
6176              Subject: [PATCH B::Deparse] regex quoting, and a minor milestone
6177              
6178              Subject: [PATCH B::Deparse] suppress "unintialized value" warnings
6179              
6180              Subject: bleadperl / hex ignores variable length and/or tr doesn't null terminate   ( with patch)
6181              
6182              Subject: patch for t/op/oct.t that shows need for patch supplied with bug 20010404.009, (bugs in hex and oct)
6183              
6184              FreeBSD hints tweak from Anton Berezin.
6185              
6186              Subject: [PATCH foolperl & bleadperl] README.vms update
6187              
6188              Subject: Re: [PATCH foolperl & bleadperl] README.vms update
6189      Branch: maint-5.6/perl
6190           !> AUTHORS README.vms ext/B/B.pm ext/B/B/Concise.pm
6191           !> ext/B/B/Debug.pm ext/B/B/Deparse.pm ext/B/B/Terse.pm
6192           !> hints/freebsd.sh pod/perlfaq9.pod pp.c t/op/oct.t t/op/pwent.t
6193 ____________________________________________________________________________
6194 [  9584] By: gsar                                  on 2001/04/06  04:09:00
6195         Log: keep eval"" CVs alive until the end of the statement in which
6196              they're called; this avoids a coredump ensuing from search for
6197              lexicals in code such as:
6198              
6199              sub bug {
6200              my $s = @_;
6201              eval q[sub { eval 'sub { &$s }' }];
6202              }
6203              bug("x")->()->();
6204              
6205              this code still doesn't work as intended (as it has remained
6206              since time immemorial), but it doesn't provoke a coredump anymore
6207      Branch: maint-5.6/perl
6208            ! embed.h embed.pl global.sym objXSUB.h perlapi.c
6209            ! pod/perlguts.pod pp_ctl.c proto.h scope.c scope.h sv.c
6210 ____________________________________________________________________________
6211 [  9583] By: jhi                                   on 2001/04/05  23:52:51
6212         Log: Update Changes.
6213      Branch: perl
6214            ! Changes patchlevel.h
6215 ____________________________________________________________________________
6216 [  9582] By: jhi                                   on 2001/04/05  23:11:23
6217         Log: Slight doc tweak.
6218      Branch: perl
6219            ! pod/perlunicode.pod
6220 ____________________________________________________________________________
6221 [  9581] By: jhi                                   on 2001/04/05  23:04:11
6222         Log: Integrate perlio.
6223      Branch: perl
6224           !> pod/perlunicode.pod
6225 ____________________________________________________________________________
6226 [  9580] By: jhi                                   on 2001/04/05  23:03:29
6227         Log: Test for #9579.
6228      Branch: perl
6229            ! t/op/do.t
6230 ____________________________________________________________________________
6231 [  9579] By: jhi                                   on 2001/04/05  22:54:17
6232         Log: Subject: [PATCH] Propagate calling context for do '...'
6233              From: Gisle Aas <gisle@ActiveState.com>
6234              Date: 04 Apr 2001 20:17:29 -0700
6235              Message-ID: <lrg0fo827q.fsf@caliper.ActiveState.com>
6236      Branch: perl
6237            ! pod/perlfunc.pod pp_ctl.c
6238 ____________________________________________________________________________
6239 [  9578] By: jhi                                   on 2001/04/05  22:52:51
6240         Log: Subject: Re: [PATCH foolperl & bleadperl] README.vms update
6241              From: Peter Prymmer <pvhp@forte.com>
6242              Date: Thu, 5 Apr 2001 12:00:04 -0700 (PDT)
6243              Message-ID: <Pine.OSF.4.10.10104051156340.518291-100000@aspara.forte.com>
6244      Branch: perl
6245            ! README.vms
6246 ____________________________________________________________________________
6247 [  9577] By: jhi                                   on 2001/04/05  22:48:22
6248         Log: Subject: [PATCH foolperl & bleadperl] README.vms update
6249              From: "Craig A. Berry" <craigberry@mac.com>
6250              Date: Thu, 5 Apr 2001 13:43:28 -0500
6251              Message-Id: <p04330101b6f269936918@[172.16.52.1]>
6252      Branch: perl
6253            ! README.vms
6254 ____________________________________________________________________________
6255 [  9576] By: jhi                                   on 2001/04/05  22:31:38
6256         Log: Subject: [PATCH lib/base.pm t/lib/base.t] Fix subtle $VERSION mistakes with base.pm
6257              From: Michael G Schwern <schwern@pobox.com>
6258              Date: Thu, 5 Apr 2001 21:53:21 +0100
6259              Message-ID: <20010405215321.A4828@blackrider.blackstar.co.uk>
6260      Branch: perl
6261            ! lib/base.pm t/lib/fields.t
6262 ____________________________________________________________________________
6263 [  9575] By: jhi                                   on 2001/04/05  22:26:10
6264         Log: FreeBSD hints tweak from Anton Berezin.
6265      Branch: perl
6266            ! hints/freebsd.sh
6267 ____________________________________________________________________________
6268 [  9574] By: jhi                                   on 2001/04/05  22:24:03
6269         Log: Subject: patch for t/op/oct.t that shows need for patch supplied with bug 20010404.009, (bugs in hex and oct)
6270              From: David Dyck <dcd@tc.fluke.com>
6271              Date: Thu, 5 Apr 2001 09:40:58 -0700 (PDT)
6272              Message-ID: <Pine.LNX.4.30.0104050838330.30478-100000@dd.tc.fluke.com>
6273      Branch: perl
6274            ! t/op/oct.t
6275 ____________________________________________________________________________
6276 [  9573] By: jhi                                   on 2001/04/05  22:23:06
6277         Log: Subject: bleadperl / hex ignores variable length and/or tr doesn't null terminate   ( with patch)
6278              Date: Wed, 4 Apr 2001 13:27:15 -0700 (PDT)
6279              From: David Dyck <dcd@tc.fluke.com>
6280              Message-ID: <Pine.LNX.4.30.0104041325310.25358-100000@dd.tc.fluke.com>
6281      Branch: perl
6282            ! pp.c
6283 ____________________________________________________________________________
6284 [  9572] By: jhi                                   on 2001/04/05  22:14:47
6285         Log: Subject: [PATCH B::Deparse] suppress "unintialized value" warnings
6286              From: Robin Houston <robin@kitsite.com>
6287              Date: Thu, 5 Apr 2001 20:56:48 +0100
6288              Message-ID: <20010405205648.A16814@puffinry.freeserve.co.uk>
6289      Branch: perl
6290            ! ext/B/B/Deparse.pm
6291 ____________________________________________________________________________
6292 [  9571] By: jhi                                   on 2001/04/05  22:12:53
6293         Log: Subject: [PATCH B::Deparse] regex quoting, and a minor milestone
6294              From: Robin Houston <robin@kitsite.com>
6295              Date: Thu, 5 Apr 2001 19:55:51 +0100
6296              Message-ID: <20010405195551.A16686@puffinry.freeserve.co.uk>
6297      Branch: perl
6298            ! ext/B/B/Deparse.pm
6299 ____________________________________________________________________________
6300 [  9570] By: jhi                                   on 2001/04/05  22:11:06
6301         Log: Subject: [PATCH B::Deparse] binmode is no longer an UNOP
6302              From: Robin Houston <robin@kitsite.com>
6303              Date: Thu, 5 Apr 2001 20:16:29 +0100
6304              Message-ID: <20010405201629.A16763@puffinry.freeserve.co.uk>
6305      Branch: perl
6306            ! ext/B/B/Deparse.pm
6307 ____________________________________________________________________________
6308 [  9569] By: nick                                  on 2001/04/05  21:32:26
6309         Log: Change sense from "incomplete" to "implemented but needs more work" in perlunicode.pod
6310      Branch: perlio
6311            ! pod/perlunicode.pod
6312 ____________________________________________________________________________
6313 [  9568] By: nick                                  on 2001/04/05  19:38:09
6314         Log: Integrate mainline
6315      Branch: perlio
6316           +> lib/Class/ISA.pm t/lib/class-isa.t t/lib/md5-align.t
6317           !> (integrate 35 files)
6318 ____________________________________________________________________________
6319 [  9567] By: jhi                                   on 2001/04/05  18:31:45
6320         Log: Subject: [PATCH B::Deparse] "${foo}bar", "${foo}[1]" etc.
6321              From: Robin Houston <robin@kitsite.com>
6322              Date: Thu, 5 Apr 2001 18:03:23 +0100
6323              Message-ID: <20010405180323.A16388@puffinry.freeserve.co.uk>
6324      Branch: perl
6325            ! ext/B/B/Deparse.pm
6326 ____________________________________________________________________________
6327 [  9566] By: jhi                                   on 2001/04/05  18:29:35
6328         Log: Subject: [PATCH B::*] cope with SVf_IVisUV, and cope with $^^ and friends
6329              From: Robin Houston <robin@kitsite.com>
6330              Date: Thu, 5 Apr 2001 16:45:18 +0100
6331              Message-ID: <20010405164517.B16037@puffinry.freeserve.co.uk>
6332      Branch: perl
6333            ! ext/B/B.pm ext/B/B/Deparse.pm ext/B/B/Terse.pm
6334 ____________________________________________________________________________
6335 [  9565] By: jhi                                   on 2001/04/05  18:24:23
6336         Log: Subject: [PATCH B::Deparse] lexical variables with ridiculously long names that are used in list assignments
6337              From: Robin Houston <robin@kitsite.com>
6338              Date: Thu, 5 Apr 2001 14:50:09 +0100
6339              Message-ID: <20010405145009.A15916@puffinry.freeserve.co.uk>
6340      Branch: perl
6341            ! ext/B/B/Deparse.pm
6342 ____________________________________________________________________________
6343 [  9564] By: jhi                                   on 2001/04/05  18:23:03
6344         Log: Subject: [PATCH B::*] print control-character vars readably
6345              From: Robin Houston <robin@kitsite.com>
6346              Date: Thu, 5 Apr 2001 14:27:38 +0100
6347              Message-ID: <20010405142738.A15855@puffinry.freeserve.co.uk>
6348              
6349              Needs EBCDICification.
6350      Branch: perl
6351            ! ext/B/B.pm ext/B/B/Concise.pm ext/B/B/Debug.pm
6352            ! ext/B/B/Terse.pm
6353 ____________________________________________________________________________
6354 [  9563] By: jhi                                   on 2001/04/05  18:20:32
6355         Log: Subject: Re: Not OK: perl v5.6.1 +fools-gold on darwin 1.3 (UNINSTALLED)
6356              Date: Thu, 5 Apr 2001 13:21:42 -0400
6357              From: Paul Schinder <schinder@pobox.com>
6358              Message-Id: <p05100900b6f25159e767@[10.0.1.52]>
6359              
6360              Mac OS X (Darwin) has extra pwent fields.
6361      Branch: perl
6362            ! t/op/pwent.t
6363 ____________________________________________________________________________
6364 [  9562] By: jhi                                   on 2001/04/05  17:57:51
6365         Log: Regen toc.
6366      Branch: perl
6367            ! pod/perltoc.pod
6368 ____________________________________________________________________________
6369 [  9561] By: jhi                                   on 2001/04/05  17:47:33
6370         Log: Metaconfig units changes for #9560, plus regen Glossary.patch.
6371      Branch: metaconfig
6372            ! U/Glossary.patch
6373      Branch: metaconfig/U/perl
6374            + d_u32align.U
6375            ! d_cmsghdr_s.U d_msghdr_s.U
6376 ____________________________________________________________________________
6377 [  9560] By: jhi                                   on 2001/04/05  17:47:01
6378         Log: Introduce d_u32align / U32_REQUIRES_ALIGNMENT, needed for
6379              ext/Digest/MD5/Makefile.PL and t/lib/md5-align.t.
6380              Introduce probes for struct msghdr, struct cmsghdr,
6381              sendmsg, recvmsg, readv, writev, setitimer, getitimer,
6382              ualarm, usleep, for possible later extension work.
6383      Branch: perl
6384            + t/lib/md5-align.t
6385            ! Configure MANIFEST Porting/Glossary Porting/config.sh
6386            ! Porting/config_H config_h.SH configure.com epoc/config.sh
6387            ! ext/Digest/MD5/Makefile.PL perl.h uconfig.h uconfig.sh
6388            ! vos/config.alpha.def vos/config.alpha.h vos/config.ga.def
6389            ! vos/config.ga.h win32/config.bc win32/config.gc
6390            ! win32/config.vc
6391 ____________________________________________________________________________
6392 [  9559] By: jhi                                   on 2001/04/05  13:03:04
6393         Log: Be traditional in your cpp (for the Errno extension).
6394      Branch: perl
6395            ! hints/darwin.sh
6396 ____________________________________________________________________________
6397 [  9558] By: jhi                                   on 2001/04/05  13:00:05
6398         Log: Add $Config{cppflags} to the gcc incantation.
6399      Branch: perl
6400            ! ext/Errno/Errno_pm.PL
6401 ____________________________________________________________________________
6402 [  9557] By: jhi                                   on 2001/04/05  04:22:39
6403         Log: Introduce Sean Burke's Class::ISA 0.32.
6404      Branch: perl
6405            + lib/Class/ISA.pm t/lib/class-isa.t
6406            ! MANIFEST
6407 ____________________________________________________________________________
6408 [  9556] By: jhi                                   on 2001/04/05  04:09:50
6409         Log: Subject: [PATCH AUTHORS] Housekeeping
6410              From: Paul Johnson <paul@pjcj.net> 
6411              Date: Wed, 4 Apr 2001 22:45:47 +0200
6412              Message-ID: <20010404224547.D9548@pjcj.net>
6413      Branch: perl
6414            ! AUTHORS
6415 ____________________________________________________________________________
6416 [  9555] By: jhi                                   on 2001/04/05  04:06:33
6417         Log: Subject: [PATCH] Base64 update to perlfaq9.pod
6418              From: Gisle Aas <gisle@ActiveState.com>
6419              Date: 04 Apr 2001 14:23:04 -0700
6420              Message-ID: <lrlmpg9x6v.fsf@caliper.ActiveState.com>
6421      Branch: perl
6422            ! pod/perlfaq9.pod
6423 ____________________________________________________________________________
6424 [  9554] By: jhi                                   on 2001/04/05  04:05:49
6425         Log: Downgrade also the "Wide character" diagnostic.
6426      Branch: perl
6427            ! pod/perldiag.pod
6428 ____________________________________________________________________________
6429 [  9553] By: jhi                                   on 2001/04/05  04:00:33
6430         Log: Integrate changes #9544,9547,9549(perlio),9550,9551 from
6431              maintperl into mainline.
6432              
6433              "double" should be "NV"; standard typemap is missing entry
6434              for NV
6435              
6436              s/djSP/dSP/
6437              
6438              Downgrade "Wide character in print" to a warning.
6439              
6440              B::Deparse fix for ${^FOO} and documentation for PVX() method
6441              (from Robin Houston)
6442              
6443              tr/// doesn't null-terminate the result in some situations
6444              (from Gisle Aas)
6445      Branch: perl
6446           !> doio.c doop.c ext/B/B.pm ext/B/B.xs ext/B/B/C.pm
6447           !> ext/B/B/Deparse.pm ext/Thread/Thread.xs lib/ExtUtils/typemap
6448           !> t/io/utf8.t t/op/tr.t
6449 ____________________________________________________________________________
6450 [  9552] By: jhi                                   on 2001/04/05  03:52:50
6451         Log: Retract changes #9542 and #9538 (from maintperl, integrated
6452              at #9540), shouldn't be needed because of the perlio changes.
6453      Branch: perl
6454            ! util.c
6455 ____________________________________________________________________________
6456 [  9551] By: gsar                                  on 2001/04/05  00:18:34
6457         Log: tr/// doesn't null-terminate the result in some situations
6458              (from Gisle Aas)
6459      Branch: maint-5.6/perl
6460            ! doop.c t/op/tr.t
6461 ____________________________________________________________________________
6462 [  9550] By: gsar                                  on 2001/04/04  20:04:17
6463         Log: B::Deparse fix for ${^FOO} and documentation for PVX() method
6464              (from Robin Houston)
6465      Branch: maint-5.6/perl
6466            ! ext/B/B.pm ext/B/B/Deparse.pm
6467 ____________________________________________________________________________
6468 [  9549] By: nick                                  on 2001/04/04  18:56:15
6469         Log: Downgrade "Wide character in print" to a warning.
6470      Branch: perlio
6471            ! doio.c t/io/utf8.t
6472 ____________________________________________________________________________
6473 [  9548] By: gsar                                  on 2001/04/04  18:51:49
6474         Log: integrate changes#9460,9462,9482,9521,9522
6475              
6476              Subject: PATCH: B::Debug should show LOOP-specific fields
6477              
6478              Subject: B::Deparse precedence bug. (Patch included.)
6479              
6480              Subject: Re: [ID 20010330.003] O=Deparse,-p does not preserve "operational semantics"
6481              
6482              Subject: [PATCH B::Concise] @stash_array = split(/pat/, str);
6483              
6484              Subject: [PATCH B::Concise] padname values may have bogus SvCUR
6485      Branch: maint-5.6/perl
6486           !> ext/B/B.pm ext/B/B.xs ext/B/B/Concise.pm ext/B/B/Debug.pm
6487           !> ext/B/B/Deparse.pm ext/B/B/Showlex.pm
6488 ____________________________________________________________________________
6489 [  9547] By: gsar                                  on 2001/04/04  18:49:16
6490         Log: s/djSP/dSP/
6491      Branch: maint-5.6/perl
6492            ! ext/Thread/Thread.xs
6493 ____________________________________________________________________________
6494 [  9546] By: nick                                  on 2001/04/04  18:44:00
6495         Log: Integrate mainline.
6496      Branch: perlio
6497           !> Makefile.SH embed.pl ext/File/Glob/Glob.pm jpl/JNI/JNI.pm op.c
6498           !> os2/OS2/Process/Process.pm perl.c pod/perlapi.pod util.c
6499 ____________________________________________________________________________
6500 [  9545] By: gsar                                  on 2001/04/04  18:38:52
6501         Log: integrate change#8837 from mainline
6502              
6503              Subject: [patch] -Wall cleanup round 2
6504      Branch: maint-5.6/perl
6505           !> ext/B/B.xs ext/Data/Dumper/Dumper.xs ext/Devel/DProf/DProf.xs
6506           !> ext/Devel/Peek/Peek.xs ext/Fcntl/Fcntl.xs
6507           !> ext/File/Glob/Glob.xs ext/GDBM_File/GDBM_File.xs ext/IO/IO.xs
6508           !> ext/IPC/SysV/SysV.xs ext/Opcode/Opcode.xs ext/POSIX/POSIX.xs
6509           !> ext/SDBM_File/SDBM_File.xs
6510 ____________________________________________________________________________
6511 [  9544] By: gsar                                  on 2001/04/04  17:49:57
6512         Log: "double" should be "NV"; standard typemap is missing entry
6513              for NV
6514      Branch: maint-5.6/perl
6515            ! ext/B/B.xs ext/B/B/C.pm lib/ExtUtils/typemap
6516 ____________________________________________________________________________
6517 [  9543] By: jhi                                   on 2001/04/04  14:13:18
6518         Log: Thou shalt not (just) match for English error messages.
6519      Branch: perl
6520            ! ext/File/Glob/Glob.pm jpl/JNI/JNI.pm
6521            ! os2/OS2/Process/Process.pm
6522 ____________________________________________________________________________
6523 [  9542] By: jhi                                   on 2001/04/04  13:20:39
6524         Log: Make the stdio tricks of fflush_all() to exist only if
6525              stdio is being used.
6526      Branch: perl
6527            ! util.c
6528 ____________________________________________________________________________
6529 [  9541] By: jhi                                   on 2001/04/04  04:20:24
6530         Log: Subject: Re: [PATCH] Lighten up glob
6531              From: Benjamin Sugars <bsugars@canoe.ca>
6532              Date: Tue, 3 Apr 2001 17:03:48 -0400 (EDT)
6533              Message-ID: <Pine.LNX.4.21.0104031700340.2143-100000@marmot.rim.canoe.ca>
6534      Branch: perl
6535            ! embed.pl ext/File/Glob/Glob.pm op.c perl.c pod/perlapi.pod
6536            ! util.c
6537 ____________________________________________________________________________
6538 [  9540] By: jhi                                   on 2001/04/04  04:03:57
6539         Log: Integrate changes #9538,9539 from maintperl into mainline.
6540              
6541              fflush() is a macro on SunOS 4.1.x, so provide a wrapper
6542              for use with _fwalk() (fix for change#7705)
6543              
6544              another tweak needed for SunOS 4.1.x build (from Mike Guy)
6545              (cp -f is not portable)
6546      Branch: perl
6547           !> Makefile.SH util.c
6548 ____________________________________________________________________________
6549 [  9539] By: gsar                                  on 2001/04/04  03:01:14
6550         Log: another tweak needed for SunOS 4.1.x build (from Mike Guy)
6551      Branch: maint-5.6/perl
6552            ! Makefile.SH
6553 ____________________________________________________________________________
6554 [  9538] By: gsar                                  on 2001/04/04  01:00:38
6555         Log: fflush() is a macro on SunOS 4.1.x, so provide a wrapper
6556              for use with _fwalk() (fix for change#7705)
6557      Branch: maint-5.6/perl
6558            ! util.c
6559 ____________________________________________________________________________
6560 [  9537] By: nick                                  on 2001/04/03  19:24:55
6561         Log: Integrate mainline
6562      Branch: perlio
6563           +> ext/Cwd/Cwd.xs ext/Cwd/Makefile.PL lib/unicode/NamesList.txt
6564           +> lib/unicode/PropList.html
6565            - lib/unicode/Names.txt lib/unicode/README.Ethiopic
6566           !> (integrate 69 files)
6567 ____________________________________________________________________________
6568 [  9536] By: jhi                                   on 2001/04/03  18:02:31
6569         Log: Integrate change #9533 from maintperl into mainline.
6570              
6571              better fix for change#9517 to accomodate UNC paths like
6572              \\server\share\foo, and paths with trailing backslash
6573              like c:\this\
6574      Branch: perl
6575           !> utils/perldoc.PL x2p/find2perl.PL x2p/s2p.PL
6576 ____________________________________________________________________________
6577 [  9535] By: jhi                                   on 2001/04/03  17:58:07
6578         Log: Change the push/unshift warning to be of class syntax, not misc.
6579      Branch: perl
6580            ! op.c pod/perldiag.pod t/pragma/warn/op
6581 ____________________________________________________________________________
6582 [  9534] By: jhi                                   on 2001/04/03  15:03:46
6583         Log: Change the push/unshift warning (#9532) to talk about "no values"
6584              instead of "no arguments".
6585      Branch: perl
6586            ! op.c pod/perldiag.pod t/pragma/warn/op
6587 ____________________________________________________________________________
6588 [  9533] By: gsar                                  on 2001/04/03  14:30:07
6589         Log: better fix for change#9517 to accomodate UNC paths like
6590              \\server\share\foo, and paths with trailing backslash
6591              like c:\this\
6592      Branch: maint-5.6/perl
6593            ! utils/perldoc.PL x2p/find2perl.PL x2p/s2p.PL
6594 ____________________________________________________________________________
6595 [  9532] By: jhi                                   on 2001/04/03  13:11:46
6596         Log: Subject: Re: [ID 20010331.003] new misc warning for push(@x), unshift(@x)
6597              From: Robin Houston <robin@kitsite.com>
6598              Date: Mon, 2 Apr 2001 15:03:29 +0100
6599              Message-ID: <20010402150329.A6636@puffinry.freeserve.co.uk>
6600      Branch: perl
6601            ! op.c pod/perldiag.pod t/lib/db-recno.t t/pragma/warn/op
6602 ____________________________________________________________________________
6603 [  9531] By: jhi                                   on 2001/04/03  13:06:34
6604         Log: Integrate change #9530 from maintperl into mainline.
6605              
6606              accomodate VMS "mailbox overflow" quirk in testsuite (from
6607              Craig Berry)
6608      Branch: perl
6609           !> t/lib/socket.t
6610 ____________________________________________________________________________
6611 [  9530] By: gsar                                  on 2001/04/03  04:56:41
6612         Log: accomodate VMS "mailbox overflow" quirk in testsuite (from
6613              Craig Berry)
6614      Branch: maint-5.6/perl
6615            ! t/lib/socket.t
6616 ____________________________________________________________________________
6617 [  9529] By: jhi                                   on 2001/04/03  02:34:34
6618         Log: Update Changes.
6619      Branch: perl
6620            ! Changes patchlevel.h
6621 ____________________________________________________________________________
6622 [  9528] By: jhi                                   on 2001/04/03  01:27:57
6623         Log: Subject: [PATCH: 9508] perlfaq3: extend the silly long list even further
6624              Date: Mon, 2 Apr 2001 18:24:53 -0700 (PDT)
6625              To: perl5-porters@perl.org
6626              Message-ID: <Pine.OSF.4.10.10104021823330.279908-100000@aspara.forte.com>
6627      Branch: perl
6628            ! pod/perlfaq3.pod
6629 ____________________________________________________________________________
6630 [  9527] By: jhi                                   on 2001/04/03  01:22:09
6631         Log: Subject: [PATCH: 9508] build && test XS::Typemap on VMS, glob-basic insensitivity training
6632              From: Peter Prymmer <pvhp@forte.com>
6633              Date: Mon, 2 Apr 2001 17:40:27 -0700 (PDT)
6634              Message-ID: <Pine.OSF.4.10.10104021727250.278825-100000@aspara.forte.com>      
6635      Branch: perl
6636            ! configure.com t/lib/glob-basic.t t/lib/xs-typemap.t
6637 ____________________________________________________________________________
6638 [  9526] By: jhi                                   on 2001/04/03  01:18:25
6639         Log: The metaconfig unit changes for #9525.
6640      Branch: metaconfig
6641            ! U/a_dvisory/quadtype.U U/modified/mallocsrc.U
6642      Branch: metaconfig/U/perl
6643            ! use64bits.U
6644 ____________________________________________________________________________
6645 [  9525] By: jhi                                   on 2001/04/03  01:17:30
6646         Log: Configure sanity checks:
6647              * if use64bitall is attempted but pointers are only 32-bit,
6648              'downgrade' to use64bitint
6649              * if use64bitint is attempted but there's no quad type,
6650              forget about use64bitint (well, the default for it is 'n',
6651              the user can still override this)
6652              * if pointers are 64 bits, do not try to use Perl's malloc
6653      Branch: perl
6654            ! Configure
6655 ____________________________________________________________________________
6656 [  9524] By: gsar                                  on 2001/04/03  01:09:12
6657         Log: EPOC fix for lib/io_udp.t failure (from Olaf Flebbe)
6658      Branch: maint-5.6/perl
6659            ! pp_sys.c
6660 ____________________________________________________________________________
6661 [  9523] By: jhi                                   on 2001/04/03  00:02:31
6662         Log: (Retracted by #9609)
6663              
6664              Make it harder for parallel makes to enter 'test' before
6665              Dynaloader and File::Glob are happy.  (In principle 'make_ext'
6666              should be unhappy enough, but sometimes parallel makes seem
6667              to sneak past both in Tru64 and AIX.)
6668      Branch: perl
6669            ! Makefile.SH
6670 ____________________________________________________________________________
6671 [  9522] By: jhi                                   on 2001/04/02  22:35:31
6672         Log: Subject: [PATCH B::Concise] padname values may have bogus SvCUR
6673              Date: Mon, 2 Apr 2001 22:54:10 +0100
6674              From: Robin Houston <robin@kitsite.com>
6675              Message-ID: <20010402225410.A8273@puffinry.freeserve.co.uk>
6676      Branch: perl
6677            ! ext/B/B.pm ext/B/B.xs ext/B/B/Concise.pm ext/B/B/Showlex.pm
6678 ____________________________________________________________________________
6679 [  9521] By: jhi                                   on 2001/04/02  22:32:23
6680         Log: Subject: [PATCH B::Concise] @stash_array = split(/pat/, str);
6681              From: Robin Houston <robin@kitsite.com>
6682              Date: Mon, 2 Apr 2001 20:24:03 +0100
6683              Message-ID: <20010402202402.A8005@puffinry.freeserve.co.uk>
6684      Branch: perl
6685            ! ext/B/B/Concise.pm
6686 ____________________________________________________________________________
6687 [  9520] By: jhi                                   on 2001/04/02  22:30:43
6688         Log: Subject: [PATCH] REALLY pedantic hv.h nit
6689              From: Simon Cozens <simon@netthink.co.uk>
6690              Date: Mon, 2 Apr 2001 15:43:06 +0100
6691              Message-ID: <20010402154306.A21711@netthink.co.uk>
6692      Branch: perl
6693            ! hv.h
6694 ____________________________________________________________________________
6695 [  9519] By: jhi                                   on 2001/04/02  22:28:04
6696         Log: Based on
6697              
6698              Subject: [foolperl] EPOC fix
6699              From: Olaf Flebbe <O.Flebbe@science-computing.de>
6700              Date: Mon, 2 Apr 2001 23:36:51 +0200 (CEST)
6701              Message-ID: <Pine.LNX.4.02.10104022335380.5547-100000@milkyway.science-computing.de>
6702      Branch: perl
6703            ! pp_sys.c
6704 ____________________________________________________________________________
6705 [  9518] By: jhi                                   on 2001/04/02  22:22:34
6706         Log: Integrate changes #9511,9514,9517 from maintperl into mainline.
6707              
6708              README.win32 tweaks; add a note about alternative location for
6709              getting a gcc-2.95.2 that will build perl properly on windows
6710              
6711              add some notes about gutsy threading matters
6712              
6713              many of the utilities interpolate literal paths within doublequotes
6714              (fails on dosish platforms where path contains backslashes)
6715      Branch: perl
6716           !> README.win32 pod/perlguts.pod utils/perldoc.PL
6717           !> x2p/find2perl.PL x2p/s2p.PL
6718 ____________________________________________________________________________
6719 [  9517] By: gsar                                  on 2001/04/02  19:52:21
6720         Log: many of the utilities interpolate literal paths within doublequotes
6721              (fails on dosish platforms where path contains backslashes)
6722      Branch: maint-5.6/perl
6723            ! utils/perldoc.PL x2p/find2perl.PL x2p/s2p.PL
6724 ____________________________________________________________________________
6725 [  9516] By: gsar                                  on 2001/04/02  05:49:37
6726         Log: a foolish release
6727      Branch: maint-5.6/perl
6728            ! Changes patchlevel.h pod/perldelta.pod pod/perlhist.pod
6729            ! pod/perltoc.pod
6730 ____________________________________________________________________________
6731 [  9515] By: gsar                                  on 2001/04/02  05:04:29
6732         Log: add missing changelog summaries
6733      Branch: maint-5.6/perl
6734            ! Changes
6735 ____________________________________________________________________________
6736 [  9514] By: gsar                                  on 2001/04/02  04:07:13
6737         Log: add some notes about gutsy threading matters
6738      Branch: maint-5.6/perl
6739            ! pod/perlguts.pod
6740 ____________________________________________________________________________
6741 [  9513] By: gsar                                  on 2001/04/02  03:25:21
6742         Log: add more prominent caveat notices about experimental features
6743      Branch: maint-5.6/perl
6744            ! pod/perlfork.pod pod/perlunicode.pod
6745 ____________________________________________________________________________
6746 [  9512] By: gsar                                  on 2001/04/02  02:54:33
6747         Log: integrate changes#9479,9509 from mainline
6748              
6749              [PATCH] File::Glob stuff for Mac OS
6750              
6751              [PATH bsd_glob.c perl@9472] Shut up gcc warning in bsd_glob.c
6752      Branch: maint-5.6/perl
6753           !> ext/File/Glob/Glob.pm ext/File/Glob/bsd_glob.c
6754           !> t/lib/glob-basic.t t/lib/glob-case.t t/lib/glob-global.t
6755           !> t/lib/glob-taint.t
6756 ____________________________________________________________________________
6757 [  9511] By: gsar                                  on 2001/04/02  02:38:24
6758         Log: README.win32 tweaks; add a note about alternative location for
6759              getting a gcc-2.95.2 that will build perl properly on windows
6760      Branch: maint-5.6/perl
6761            ! README.win32
6762 ____________________________________________________________________________
6763 [  9510] By: jhi                                   on 2001/04/01  20:45:10
6764         Log: An ambiguosity warning.
6765      Branch: perl
6766            ! t/lib/trig.t
6767 ____________________________________________________________________________
6768 [  9509] By: jhi                                   on 2001/04/01  19:53:47
6769         Log: Subject: [PATH bsd_glob.c perl@9472] Shut up gcc warning in bsd_glob.c
6770              From: Jonathan Stowe <gellyfish@gellyfish.com>
6771              Date: Sun, 1 Apr 2001 10:04:55 +0100 (BST)
6772              Message-ID: <Pine.LNX.4.30.0104010958250.7703-100000@orpheus.gellyfish.com>
6773      Branch: perl
6774            ! ext/File/Glob/bsd_glob.c
6775 ____________________________________________________________________________
6776 [  9508] By: jhi                                   on 2001/04/01  19:35:03
6777         Log: Update Changes.
6778      Branch: perl
6779            ! Changes patchlevel.h
6780 ____________________________________________________________________________
6781 [  9507] By: jhi                                   on 2001/04/01  19:24:01
6782         Log: Integrate changes #9378,9458,9469,9475,9489,9490,9505,9506
6783              from mainline to maintperl: pod tweaks.
6784      Branch: maint-5.6/perl
6785           !> pod/perldebug.pod pod/perldiag.pod pod/perlfaq1.pod
6786           !> pod/perlguts.pod pod/perlhack.pod pod/perlop.pod
6787           !> pod/perlvar.pod
6788 ____________________________________________________________________________
6789 [  9506] By: jhi                                   on 2001/04/01  19:11:53
6790         Log: Commit Sarathy to April release of 5.6.1 :-)
6791      Branch: perl
6792            ! pod/perlfaq1.pod
6793 ____________________________________________________________________________
6794 [  9505] By: jhi                                   on 2001/04/01  19:03:15
6795         Log: Subject: PATCH 5.6.0 (perldebug.pod)
6796              From: Mark-Jason Dominus <mjd@plover.com>
6797              Date: Sun, 01 Apr 2001 14:25:11 -0400
6798              Message-ID: <20010401182511.9247.qmail@plover.com>
6799      Branch: perl
6800            ! pod/perldebug.pod
6801 ____________________________________________________________________________
6802 [  9504] By: jhi                                   on 2001/04/01  18:43:09
6803         Log: Add great_circle_direction().
6804      Branch: perl
6805            ! lib/Math/Trig.pm t/lib/trig.t
6806 ____________________________________________________________________________
6807 [  9503] By: jhi                                   on 2001/04/01  17:29:12
6808         Log: Unicode ReadMe update for Unicode 3.1.
6809      Branch: perl
6810            ! lib/unicode/ReadMe.txt
6811 ____________________________________________________________________________
6812 [  9502] By: jhi                                   on 2001/04/01  17:18:40
6813         Log: Integrate change #9501 from maintperl into mainline.
6814              
6815              fix the perlembed notes on multiple interpreters
6816              
6817              fix ExtUtils::Embed to work passably on Windows
6818      Branch: perl
6819           !> lib/ExtUtils/Embed.pm pod/perlembed.pod
6820 ____________________________________________________________________________
6821 [  9501] By: gsar                                  on 2001/04/01  07:21:57
6822         Log: fix the perlembed notes on multiple interpreters
6823              
6824              fix ExtUtils::Embed to work passably on Windows
6825      Branch: maint-5.6/perl
6826            ! lib/ExtUtils/Embed.pm pod/perlembed.pod
6827 ____________________________________________________________________________
6828 [  9500] By: jhi                                   on 2001/04/01  05:58:23
6829         Log: Test for #9499.
6830      Branch: perl
6831            ! t/op/tr.t
6832 ____________________________________________________________________________
6833 [  9499] By: jhi                                   on 2001/04/01  05:55:46
6834         Log: tr/// UTF-8 tweaking from Inaba Hiroto.
6835      Branch: perl
6836            ! embed.h embed.pl op.c proto.h
6837 ____________________________________________________________________________
6838 [  9498] By: jhi                                   on 2001/04/01  05:44:34
6839         Log: Protect the workaround hunk more.
6840      Branch: perl
6841            ! toke.c
6842 ____________________________________________________________________________
6843 [  9497] By: jhi                                   on 2001/04/01  00:24:25
6844         Log: Integrate changes #9493,9494,9495,9496 from maintperl
6845              into mainline.
6846              
6847              fix a broken workaround for Borland compiler in change#4739
6848              (caused weird "short reads" on DATA, which caused op/misc.t to fail)
6849              
6850              nits spotted by Borland compiler
6851              
6852              avoid redefinition warnings under Borland 5.02
6853              
6854              various nits identified by the Borland 5.5 compiler; remove suppression
6855              of a few warnings
6856      Branch: perl
6857           !> ext/File/Glob/bsd_glob.c sv.c toke.c utf8.h win32/makefile.mk
6858           !> win32/win32.h
6859 ____________________________________________________________________________
6860 [  9496] By: gsar                                  on 2001/03/31  23:22:28
6861         Log: various nits identified by the Borland 5.5 compiler; remove suppression
6862              of a few warnings
6863      Branch: maint-5.6/perl
6864            ! ext/File/Glob/bsd_glob.c sv.c win32/win32.h
6865 ____________________________________________________________________________
6866 [  9495] By: gsar                                  on 2001/03/31  21:03:08
6867         Log: avoid redefinition warnings under Borland 5.02
6868      Branch: maint-5.6/perl
6869            ! win32/makefile.mk
6870 ____________________________________________________________________________
6871 [  9494] By: gsar                                  on 2001/03/31  20:18:59
6872         Log: nits spotted by Borland compiler
6873      Branch: maint-5.6/perl
6874            ! utf8.h win32/win32.h
6875 ____________________________________________________________________________
6876 [  9493] By: gsar                                  on 2001/03/31  20:18:05
6877         Log: fix a broken workaround for Borland compiler in change#4739
6878              (caused weird "short reads" on DATA, which caused op/misc.t to fail)
6879      Branch: maint-5.6/perl
6880            ! toke.c
6881 ____________________________________________________________________________
6882 [  9492] By: jhi                                   on 2001/03/31  18:36:24
6883         Log: Integrate change #9491 from maintperl into mainline.
6884              
6885              Cwd::chdir() doesn't set $ENV{PWD} correctly on windows when the
6886              directory is relative (need to fetch the full path name *before*
6887              the chdir!)
6888      Branch: perl
6889           !> lib/Cwd.pm
6890 ____________________________________________________________________________
6891 [  9491] By: gsar                                  on 2001/03/31  17:01:56
6892         Log: Cwd::chdir() doesn't set $ENV{PWD} correctly on windows when the
6893              directory is relative (need to fetch the full path name *before*
6894              the chdir!)
6895              
6896              this is a followup patch for change#6749
6897      Branch: maint-5.6/perl
6898            ! lib/Cwd.pm
6899 ____________________________________________________________________________
6900 [  9490] By: jhi                                   on 2001/03/31  15:50:18
6901         Log: Subject: Re: [PATCH] av.h cosmetics
6902              From: Simon Cozens <simon@netthink.co.uk>
6903              Date: Sat, 31 Mar 2001 13:09:59 +0100
6904              Message-ID: <20010331130959.A22000@netthink.co.uk>
6905              
6906              Document AvALLOC.
6907      Branch: perl
6908            ! pod/perlguts.pod
6909 ____________________________________________________________________________
6910 [  9489] By: jhi                                   on 2001/03/31  15:48:44
6911         Log: Subject: [PATCH] Re: Math::Big* v1.21
6912              From: Tels <perl_dummy@bloodgate.com>
6913              Date: Sat, 31 Mar 2001 13:21:05 +0200 (CEST)
6914              Message-Id: <200103311125.GAA377738@www08.hway.net>
6915      Branch: perl
6916            ! pod/perlop.pod
6917 ____________________________________________________________________________
6918 [  9488] By: jhi                                   on 2001/03/31  03:39:51
6919         Log: Debug output tweak.
6920      Branch: perl
6921            ! t/lib/cwd.t
6922 ____________________________________________________________________________
6923 [  9487] By: jhi                                   on 2001/03/31  03:33:02
6924         Log: OverVMSification.
6925      Branch: perl
6926            ! t/lib/cwd.t
6927 ____________________________________________________________________________
6928 [  9486] By: jhi                                   on 2001/03/31  03:01:40
6929         Log: Missed MANIFESTations in #9483.
6930      Branch: perl
6931            ! MANIFEST
6932 ____________________________________________________________________________
6933 [  9485] By: jhi                                   on 2001/03/31  02:58:17
6934         Log: Subject: Not OK: perl v5.7.0 +DEVEL9472 on VMS_AXP V7.1 (UNINSTALLED)
6935              From: Peter Prymmer <pvhp@forte.com>
6936              Date: Fri, 30 Mar 2001 18:06:36 -0800 (PST)
6937              Message-ID: <Pine.OSF.4.10.10103301805450.63762-100000@aspara.forte.com>
6938      Branch: perl
6939            ! regexec.c t/lib/cwd.t
6940 ____________________________________________________________________________
6941 [  9484] By: jhi                                   on 2001/03/31  01:04:41
6942         Log: Obsolete file (see #3938)
6943      Branch: perl
6944            - lib/unicode/README.Ethiopic
6945            ! MANIFEST
6946 ____________________________________________________________________________
6947 [  9483] By: jhi                                   on 2001/03/31  00:52:42
6948         Log: Update to Unicode 3.1.
6949              (Rename Names.txt to NamesList.txt.)
6950      Branch: perl
6951            + lib/unicode/NamesList.txt lib/unicode/PropList.html
6952            - lib/unicode/Names.txt
6953            ! lib/unicode/Is/LbrkAI.pl lib/unicode/Is/LbrkAL.pl
6954            ! lib/unicode/Is/LbrkBA.pl lib/unicode/Is/LbrkBB.pl
6955            ! lib/unicode/Is/LbrkID.pl lib/unicode/Is/LbrkSG.pl
6956            ! lib/unicode/LineBrk.txt lib/unicode/NamesList.html
6957            ! lib/unicode/UCD.html lib/unicode/Unicode.html
6958            ! lib/unicode/rename lib/unicode/version
6959 ____________________________________________________________________________
6960 [  9482] By: jhi                                   on 2001/03/30  23:33:44
6961         Log: Subject: Re: [ID 20010330.003] O=Deparse,-p does not preserve "operational semantics"
6962              From: Robin Houston <robin@kitsite.com>
6963              Date: Fri, 30 Mar 2001 20:07:22 +0100
6964              Message-ID: <20010330200722.A2010@puffinry.freeserve.co.uk>
6965      Branch: perl
6966            ! ext/B/B/Deparse.pm
6967 ____________________________________________________________________________
6968 [  9481] By: jhi                                   on 2001/03/30  23:20:25
6969         Log: Subject: Re: [PATCH] CwdXS, Take 2
6970              From: Benjamin Sugars <bsugars@canoe.ca>
6971              Date: Fri, 30 Mar 2001 14:08:51 -0500 (EST)
6972              Message-ID: <Pine.LNX.4.21.0103301357490.1927-100000@marmot.rim.canoe.ca>
6973      Branch: perl
6974            + ext/Cwd/Cwd.xs ext/Cwd/Makefile.PL
6975            ! MANIFEST lib/Cwd.pm t/lib/cwd.t
6976 ____________________________________________________________________________
6977 [  9480] By: jhi                                   on 2001/03/30  22:52:38
6978         Log: Subject: [ID 20010330.006] incorrect WARNING from installperl "You've never run 'make test' or some tests failed!"
6979              From: David Dyck <dcd@tc.fluke.com>
6980              Date: Fri, 30 Mar 2001 14:44:13 -0800
6981              Message-Id: <200103302244.OAA12204@dd.tc.fluke.com>
6982              
6983              The t/rantests flags file creation was accidentally
6984              removed by #9217.
6985      Branch: perl
6986            ! Makefile.SH
6987 ____________________________________________________________________________
6988 [  9479] By: jhi                                   on 2001/03/30  22:45:45
6989         Log: Subject: [PATCH] File::Glob stuff for Mac OS
6990              From: Chris Nandor <pudge@pobox.com>
6991              Date: Fri, 30 Mar 2001 16:51:00 -0500
6992              Message-Id: <p05010400b6eaab36051c@[10.0.1.177]>
6993      Branch: perl
6994            ! ext/File/Glob/Glob.pm ext/File/Glob/bsd_glob.c
6995            ! t/lib/glob-basic.t t/lib/glob-case.t t/lib/glob-global.t
6996            ! t/lib/glob-taint.t
6997 ____________________________________________________________________________
6998 [  9478] By: jhi                                   on 2001/03/30  22:43:12
6999         Log: Subject: fix for win32/buildext.pl
7000              From: "Vadim Konovalov" <watman@inbox.ru>
7001              Date: Sat, 31 Mar 2001 00:50:36 +0400
7002              Message-ID: <005b01c0b95c$ac277250$7542983e@vad>
7003      Branch: perl
7004            ! win32/buildext.pl
7005 ____________________________________________________________________________
7006 [  9477] By: jhi                                   on 2001/03/30  22:41:16
7007         Log: Subject: small base.pm doc patch
7008              From: Leon Brocard <acme@astray.com>
7009              Date: Fri, 30 Mar 2001 21:49:57 +0100
7010              Message-ID: <20010330214957.B8733@ns0.astray.com>
7011      Branch: perl
7012            ! lib/base.pm
7013 ____________________________________________________________________________
7014 [  9476] By: jhi                                   on 2001/03/30  18:16:57
7015         Log: Subject: [PATCH] av.h cosmetics
7016              From: Simon Cozens <simon@netthink.co.uk>
7017              Date: Fri, 30 Mar 2001 18:12:28 +0100
7018              Message-ID: <20010330181228.A9319@netthink.co.uk>
7019      Branch: perl
7020            ! av.h
7021 ____________________________________________________________________________
7022 [  9475] By: jhi                                   on 2001/03/30  18:15:50
7023         Log: Subject: [DOC PATCH bleadperl] Two nits in perlhack.pod
7024              From: "Philip Newton" <pnewton@gmx.de>
7025              Date: Fri, 30 Mar 2001 19:06:57 +0200
7026              Message-ID: <3AC4D951.14815.1AC7068@localhost>
7027      Branch: perl
7028            ! pod/perlhack.pod
7029 ____________________________________________________________________________
7030 [  9474] By: jhi                                   on 2001/03/30  18:14:02
7031         Log: Subject: [PATCH] glob-basic.t (Was: [ID 20010328.016])
7032              From: Benjamin Sugars <bsugars@canoe.ca>
7033              Date: Fri, 30 Mar 2001 11:04:35 -0500 (EST)
7034              Message-ID: <Pine.LNX.4.21.0103301045130.1927-100000@marmot.rim.canoe.ca>
7035      Branch: perl
7036            ! t/lib/glob-basic.t
7037 ____________________________________________________________________________
7038 [  9473] By: jhi                                   on 2001/03/30  16:09:24
7039         Log: Update Changes.
7040      Branch: perl
7041            ! Changes patchlevel.h
7042 ____________________________________________________________________________
7043 [  9472] By: jhi                                   on 2001/03/30  15:16:08
7044         Log: Integrate perlio.
7045      Branch: perl
7046           !> t/lib/cwd.t t/lib/glob-basic.t
7047 ____________________________________________________________________________
7048 [  9471] By: nick                                  on 2001/03/30  14:47:10
7049         Log: Should be (^O eq 'MSWin32') not 'Win32'
7050              Fail #12 seems real - chdir is in wrong dir.
7051      Branch: perlio
7052            ! t/lib/cwd.t
7053 ____________________________________________________________________________
7054 [  9470] By: jhi                                   on 2001/03/30  14:41:11
7055         Log: Subject: Re: [ID 20010215.006] Bad arg length for Socket::unpack_sockaddr_un, length is 14 ... 
7056              From: Radu Greab <radu@netsoft.ro>
7057              Date: Fri, 30 Mar 2001 15:09:06 +0300 (EEST)
7058              Message-ID: <15044.30562.566390.559726@ix.netsoft.ro>
7059              
7060              Replace #9352.
7061      Branch: perl
7062            ! ext/Socket/Socket.xs pp_sys.c
7063 ____________________________________________________________________________
7064 [  9469] By: jhi                                   on 2001/03/30  14:37:51
7065         Log: Subject: PATCH pod/perldiag.pod
7066              From: Robin Houston <robin@kitsite.com>
7067              Date: Fri, 30 Mar 2001 14:10:36 +0100
7068              Message-ID: <20010330141036.A1105@puffinry.freeserve.co.uk>
7069      Branch: perl
7070            ! pod/perldiag.pod t/lib/glob-basic.t
7071 ____________________________________________________________________________
7072 [  9468] By: jhi                                   on 2001/03/30  14:36:36
7073         Log: Subject: Better diagnostic in io/fs.t
7074              From: andreas.koenig@anima.de (Andreas J. Koenig)
7075              Date: 30 Mar 2001 10:11:43 +0200
7076              Message-ID: <m3hf0boev4.fsf@ak-71.mind.de>
7077      Branch: perl
7078            ! t/io/fs.t
7079 ____________________________________________________________________________
7080 [  9467] By: nick                                  on 2001/03/30  14:25:43
7081         Log: Skip order test of glob if case-ignoring system cannot 
7082              create a.test and A.test
7083      Branch: perlio
7084            ! t/lib/glob-basic.t
7085 ____________________________________________________________________________
7086 [  9466] By: nick                                  on 2001/03/30  13:03:12
7087         Log: Integrate mainline.
7088      Branch: perlio
7089            - ext/re/hints/aix.pl
7090           !> MANIFEST ext/B/B/Debug.pm ext/B/B/Deparse.pm
7091           !> lib/ExtUtils/MM_VMS.pm op.c pod/perlop.pod t/comp/require.t
7092           !> t/io/utf8.t t/lib/b.t t/lib/digest.t t/lib/glob-basic.t
7093           !> t/lib/io_multihomed.t t/lib/io_sock.t t/lib/md5-file.t
7094 ____________________________________________________________________________
7095 [  9465] By: jhi                                   on 2001/03/30  03:53:37
7096         Log: Add timeouts to the tests.  (In AIX 4.3.1.0 + vac 5.0.0.0
7097              the tests sometimes hang, sometimes not.)
7098      Branch: perl
7099            ! t/lib/io_multihomed.t t/lib/io_sock.t
7100 ____________________________________________________________________________
7101 [  9464] By: jhi                                   on 2001/03/30  02:56:04
7102         Log: Subject: [PATCH @9452] Better peep()ing for foreach() loops
7103              From: Stephen McCamant <smcc@CSUA.Berkeley.EDU>
7104              Date: Thu, 29 Mar 2001 18:50:45 -0800 (PST)
7105              Message-ID: <15043.62129.253487.470281@soda.csua.berkeley.edu>
7106      Branch: perl
7107            ! op.c
7108 ____________________________________________________________________________
7109 [  9463] By: jhi                                   on 2001/03/30  02:34:48
7110         Log: Test for #9462.
7111      Branch: perl
7112            ! t/lib/b.t
7113 ____________________________________________________________________________
7114 [  9462] By: jhi                                   on 2001/03/30  02:29:37
7115         Log: Subject: B::Deparse precedence bug. (Patch included.)
7116              From: Jeremy Madea <jmadea@inktomi.com>
7117              Date: Thu, 29 Mar 2001 12:05:02 -0800
7118              Message-ID: <20010329120502.A24881@dr.inktomi.com>
7119      Branch: perl
7120            ! ext/B/B/Deparse.pm
7121 ____________________________________________________________________________
7122 [  9461] By: jhi                                   on 2001/03/30  02:18:41
7123         Log: Subject: [PATCH: 9452] more tests (was Re: Perl5.7.*  Unicode/EBCDIC status.)
7124              From: Peter Prymmer <pvhp@forte.com>
7125              Date: Thu, 29 Mar 2001 18:01:18 -0800 (PST)
7126              Message-ID: <Pine.OSF.4.10.10103291731150.1326-100000@aspara.forte.com>
7127      Branch: perl
7128            ! t/comp/require.t t/io/utf8.t t/lib/digest.t t/lib/glob-basic.t
7129            ! t/lib/md5-file.t
7130 ____________________________________________________________________________
7131 [  9460] By: jhi                                   on 2001/03/30  02:17:07
7132         Log: Subject: PATCH: B::Debug should show LOOP-specific fields
7133              From: Robin Houston <robin@kitsite.com>
7134              Date: Thu, 29 Mar 2001 20:47:56 +0100
7135              Message-ID: <20010329204756.A32042@puffinry.freeserve.co.uk>
7136      Branch: perl
7137            ! ext/B/B/Debug.pm
7138 ____________________________________________________________________________
7139 [  9459] By: jhi                                   on 2001/03/30  02:16:05
7140         Log: Subject: [PATCH perl@9424] further MM_VMS.pm tweak
7141              From: "Craig A. Berry" <craig.berry@SignalTreeSolutions.com>
7142              Date: Wed, 28 Mar 2001 18:02:20 -0600
7143              Message-Id: <5.0.2.1.0.20010328172535.017d5600@exchi01>
7144      Branch: perl
7145            ! lib/ExtUtils/MM_VMS.pm
7146 ____________________________________________________________________________
7147 [  9458] By: jhi                                   on 2001/03/30  02:07:58
7148         Log: Subject: [ID 20010328.013] Misspelling in perlop(1p) manual page
7149              From: "Joshua E. Rodd" <jrodd@pbs.org>
7150              Date: Wed, 28 Mar 2001 17:29:12 -0500
7151              Message-Id: <E14iORE-0000ZV-00@shaggy.pbs.org>
7152      Branch: perl
7153            ! pod/perlop.pod
7154 ____________________________________________________________________________
7155 [  9457] By: jhi                                   on 2001/03/30  02:04:33
7156         Log: Subject: ext/re/aix.pl can go
7157              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
7158              Date: Thu, 29 Mar 2001 12:03:28 +0200
7159              Message-Id: <20010329120132.7C3B.H.M.BRAND@hccnet.nl>
7160      Branch: perl
7161            - ext/re/hints/aix.pl
7162            ! MANIFEST
7163 ____________________________________________________________________________
7164 [  9456] By: jhi                                   on 2001/03/30  02:03:32
7165         Log: Integrate perlio.
7166      Branch: perl
7167           !> ext/Encode/Encode.xs installperl
7168 ____________________________________________________________________________
7169 [  9455] By: nick                                  on 2001/03/29  21:11:46
7170         Log: DLL name has changed so installperl needs to know
7171              (Why isn't it working it out or passed it?)
7172      Branch: perlio
7173            ! installperl
7174 ____________________________________________________________________________
7175 [  9454] By: nick                                  on 2001/03/29  20:56:12
7176         Log: Change Encode's check arguments to 'bool' so SvTRUE gets used
7177              and we don't get undef warnings.
7178      Branch: perlio
7179            ! ext/Encode/Encode.xs
7180 ____________________________________________________________________________
7181 [  9453] By: nick                                  on 2001/03/29  17:58:48
7182         Log: Integrate mainline
7183      Branch: perlio
7184           !> Changes patchlevel.h
7185 ____________________________________________________________________________
7186 [  9452] By: jhi                                   on 2001/03/29  16:44:55
7187         Log: Update Changes.
7188      Branch: perl
7189            ! Changes patchlevel.h
7190 ____________________________________________________________________________
7191 [  9451] By: nick                                  on 2001/03/29  16:31:38
7192         Log: Integrate mainline
7193      Branch: perlio
7194           !> Changes Makefile.SH dump.c ext/Data/Dumper/Dumper.xs
7195           !> ext/Encode/Encode.xs ext/Storable/Storable.xs
7196           !> lib/ExtUtils/typemap patchlevel.h pod/perlhack.pod
7197           !> pod/perliol.pod t/lib/charnames.t t/lib/cwd.t t/op/bop.t
7198           !> t/op/vec.t t/op/ver.t toke.c utils/h2xs.PL
7199 ____________________________________________________________________________
7200 [  9450] By: jhi                                   on 2001/03/29  16:29:17
7201         Log: Integrate perlio.
7202      Branch: perl
7203           !> win32/buildext.pl
7204 ____________________________________________________________________________
7205 [  9449] By: jhi                                   on 2001/03/29  15:50:01
7206         Log: Update Changes.
7207      Branch: perl
7208            ! Changes patchlevel.h
7209 ____________________________________________________________________________
7210 [  9448] By: nick                                  on 2001/03/29  15:47:15
7211         Log: Make sure buildext.pl finds Errno.pm
7212      Branch: perlio
7213            ! win32/buildext.pl
7214 ____________________________________________________________________________
7215 [  9447] By: jhi                                   on 2001/03/29  15:39:34
7216         Log: Integrate perlio.
7217      Branch: perl
7218           !> win32/makefile.mk
7219 ____________________________________________________________________________
7220 [  9446] By: nick                                  on 2001/03/29  15:30:03
7221         Log: Integrate win32/makefile.mk with mainline.
7222      Branch: perlio
7223           !> win32/makefile.mk
7224 ____________________________________________________________________________
7225 [  9445] By: nick                                  on 2001/03/29  15:27:32
7226         Log: Fix breakage ... 
7227      Branch: perlio
7228            ! win32/makefile.mk
7229 ____________________________________________________________________________
7230 [  9444] By: jhi                                   on 2001/03/29  15:03:08
7231         Log: Subject: RE: Borland C++ for Win32 fixes; perl@9359 (also perl@9424)
7232              From: "Konovalov, Vadim" <vkonovalov@lucent.com>
7233              Date: Thu, 29 Mar 2001 10:32:59 +0400
7234              Message-ID: <402099F49BEED211999700805FC7359FA8442D@ru0028exch01.spb.lucent.com>
7235      Branch: perl
7236            ! win32/makefile.mk
7237 ____________________________________________________________________________
7238 [  9443] By: jhi                                   on 2001/03/29  15:02:12
7239         Log: Integrate perlio.
7240      Branch: perl
7241           +> win32/buildext.pl
7242           !> MANIFEST ext/PerlIO/Via/Via.xs perlio.c perlio.h sv.c
7243           !> t/io/utf8.t t/lib/io_scalar.t win32/makefile.mk
7244 ____________________________________________________________________________
7245 [  9442] By: nick                                  on 2001/03/29  14:59:11
7246         Log: Work in progress - determine win32 extensions to build via script.
7247      Branch: perlio
7248            + win32/buildext.pl
7249            ! MANIFEST win32/makefile.mk
7250 ____________________________________________________________________________
7251 [  9441] By: jhi                                   on 2001/03/29  14:51:47
7252         Log: Reintroduce the use of external pwd.
7253      Branch: perl
7254            ! t/lib/cwd.t
7255 ____________________________________________________________________________
7256 [  9440] By: jhi                                   on 2001/03/29  14:42:58
7257         Log: use warnings instead of -w.
7258      Branch: perl
7259            ! utils/h2xs.PL
7260 ____________________________________________________________________________
7261 [  9439] By: jhi                                   on 2001/03/29  14:41:52
7262         Log: Subject: [PATCH h2xs.PL perl@9423] h2xs -w nits
7263              From: Jonathan Stowe <gellyfish@gellyfish.com>
7264              Date: Thu, 29 Mar 2001 09:34:12 +0100 (BST)
7265              Message-ID: <Pine.LNX.4.30.0103290929130.19409-100000@orpheus.gellyfish.com>
7266      Branch: perl
7267            ! utils/h2xs.PL
7268 ____________________________________________________________________________
7269 [  9438] By: jhi                                   on 2001/03/29  14:39:38
7270         Log: Subject: [PATCH perl@9424] minor pod nits
7271              From: Robin Barker <rmb1@cise.npl.co.uk>
7272              Date: Thu, 29 Mar 2001 14:43:05 +0100 (BST)
7273              Message-Id: <200103291343.OAA10827@tempest.npl.co.uk>
7274      Branch: perl
7275            ! pod/perlhack.pod pod/perliol.pod
7276 ____________________________________________________________________________
7277 [  9437] By: jhi                                   on 2001/03/29  14:29:16
7278         Log: Subject: [PATCH perl@9424] typemap cast warning
7279              From: Robin Barker <rmb1@cise.npl.co.uk>
7280              Date: Thu, 29 Mar 2001 13:58:47 +0100 (BST)
7281              Message-Id: <200103291258.NAA09360@tempest.npl.co.uk>
7282      Branch: perl
7283            ! lib/ExtUtils/typemap
7284 ____________________________________________________________________________
7285 [  9436] By: jhi                                   on 2001/03/29  14:26:03
7286         Log: Subject: [PATCH perl@9424] printf warning
7287              From: Robin Barker <rmb1@cise.npl.co.uk>
7288              Date: Thu, 29 Mar 2001 13:29:21 +0100 (BST)
7289              Message-Id: <200103291229.NAA03968@tempest.npl.co.uk>
7290      Branch: perl
7291            ! dump.c ext/Data/Dumper/Dumper.xs ext/Encode/Encode.xs
7292            ! ext/Storable/Storable.xs toke.c
7293 ____________________________________________________________________________
7294 [  9435] By: nick                                  on 2001/03/29  14:23:31
7295         Log: Win32 has name conflict with ERROR
7296      Branch: perlio
7297            ! ext/PerlIO/Via/Via.xs
7298 ____________________________________________________________________________
7299 [  9434] By: jhi                                   on 2001/03/29  14:17:48
7300         Log: Subject: [PATCH: 9424] some tests (was Re: Perl5.7.*  Unicode/EBCDIC status.)
7301              From: Peter Prymmer <pvhp@forte.com>
7302              Date: Wed, 28 Mar 2001 19:09:57 -0800 (PST)
7303              Message-ID: <Pine.OSF.4.10.10103281858520.314137-100000@aspara.forte.com>
7304      Branch: perl
7305            ! t/lib/charnames.t t/op/bop.t t/op/vec.t t/op/ver.t
7306 ____________________________________________________________________________
7307 [  9433] By: jhi                                   on 2001/03/29  13:52:44
7308         Log: test-prep target was missing.
7309      Branch: perl
7310            ! Makefile.SH
7311 ____________________________________________________________________________
7312 [  9432] By: nick                                  on 2001/03/29  12:40:03
7313         Log: Make as-shipped compiler default to MSVC6 
7314      Branch: perlio
7315            ! win32/makefile.mk
7316 ____________________________________________________________________________
7317 [  9431] By: nick                                  on 2001/03/29  12:12:16
7318         Log: Allow someone to write PerlIO::Array, PerlIO::Code, ...
7319              akin to PerlIO::Scalar.
7320      Branch: perlio
7321            ! perlio.c perlio.h
7322 ____________________________________________________________________________
7323 [  9430] By: nick                                  on 2001/03/29  10:56:35
7324         Log: Integrate mainline.
7325      Branch: perlio
7326           !> lib/File/Basename.pm lib/File/CheckTree.pm lib/File/Compare.pm
7327           !> lib/File/Copy.pm lib/File/DosGlob.pm lib/File/Find.pm
7328           !> lib/File/Path.pm lib/File/stat.pm t/lib/filecopy.t
7329           !> win32/makefile.mk win32/win32sck.c
7330 ____________________________________________________________________________
7331 [  9429] By: nick                                  on 2001/03/29  09:03:43
7332         Log: Noticed that two tests were skipped as perlio:: package
7333              isn't there any more. Changed the skip condition.
7334              Avoid core-dump if sv_utf8_upgrade() called on something
7335              that does not become SvPOK after SvPV() (e.g. a ref).
7336      Branch: perlio
7337            ! sv.c t/io/utf8.t t/lib/io_scalar.t
7338 ____________________________________________________________________________
7339 [  9428] By: jhi                                   on 2001/03/29  01:31:47
7340         Log: Subject: [PATCH] Enable warnings in File::* (was: B::Terse and warnings)
7341              From: Benjamin Sugars <bsugars@canoe.ca> 
7342              Date: Tue, 27 Mar 2001 16:27:38 -0500 (EST)
7343              Message-ID: <Pine.LNX.4.21.0103271612250.2007-100000@marmot.rim.canoe.ca>
7344      Branch: perl
7345            ! lib/File/Basename.pm lib/File/CheckTree.pm lib/File/Compare.pm
7346            ! lib/File/Copy.pm lib/File/DosGlob.pm lib/File/Find.pm
7347            ! lib/File/Path.pm lib/File/stat.pm t/lib/filecopy.t
7348 ____________________________________________________________________________
7349 [  9427] By: jhi                                   on 2001/03/29  00:49:30
7350         Log: Subject: Borland C++ for Win32 fixes; perl@9359 (also perl@9424)
7351              From: "Vadim Konovalov" <watman@inbox.ru>
7352              Date: Thu, 29 Mar 2001 01:50:12 +0400
7353              Message-ID: <001c01c0b7d1$463dd880$5742983e@vad>
7354      Branch: perl
7355            ! win32/makefile.mk win32/win32sck.c
7356 ____________________________________________________________________________
7357 [  9426] By: gsar                                  on 2001/03/29  00:28:04
7358         Log: dmake can only handle == and != in comparisons; support building
7359              with Borland's VCL libraries (from Vadim Konovalov)
7360      Branch: maint-5.6/perl
7361            ! win32/makefile.mk
7362 ____________________________________________________________________________
7363 [  9425] By: nick                                  on 2001/03/28  19:29:56
7364         Log: Integrate (@snapshot)
7365      Branch: perlio
7366           !> Changes Makefile.SH patchlevel.h t/lib/cwd.t
7367 ____________________________________________________________________________
7368 [  9424] By: jhi                                   on 2001/03/28  19:03:16
7369         Log: Update Changes.
7370      Branch: perl
7371            ! Changes patchlevel.h
7372 ____________________________________________________________________________
7373 [  9423] By: jhi                                   on 2001/03/28  18:52:09
7374         Log: Rmdir lib/XS on cleanup.
7375      Branch: perl
7376            ! Makefile.SH
7377 ____________________________________________________________________________
7378 [  9422] By: jhi                                   on 2001/03/28  18:49:34
7379         Log: Integrate perlio.
7380      Branch: perl
7381           !> t/op/utf8decode.t
7382 ____________________________________________________________________________
7383 [  9421] By: nick                                  on 2001/03/28  18:46:44
7384         Log: Loose duplicate chunk.
7385      Branch: perlio
7386            ! t/op/utf8decode.t
7387 ____________________________________________________________________________
7388 [  9420] By: nick                                  on 2001/03/28  18:44:11
7389         Log: Integrate mainline.
7390      Branch: perlio
7391           !> ext/IO/IO.xs lib/ExtUtils/MM_VMS.pm makedef.pl vms/vms.c
7392           !> vms/vmsish.h
7393 ____________________________________________________________________________
7394 [  9419] By: jhi                                   on 2001/03/28  18:42:05
7395         Log: Can't trust external pwds
7396              (either shell builtins or external programs)
7397      Branch: perl
7398            ! t/lib/cwd.t
7399 ____________________________________________________________________________
7400 [  9418] By: jhi                                   on 2001/03/28  18:34:05
7401         Log: Integrate perlio.
7402      Branch: perl
7403            - lib/perlio.pm
7404           !> MANIFEST lib/PerlIO.pm lib/open.pm perlio.c t/lib/b.t
7405           !> t/op/utf8decode.t
7406 ____________________________________________________________________________
7407 [  9417] By: nick                                  on 2001/03/28  18:24:02
7408         Log: PerlIO.pm / perlio.pm conflict.
7409              Update some pods.
7410              Make t/op/utf8decode.t a text file.
7411      Branch: perlio
7412            - lib/perlio.pm
7413            ! MANIFEST lib/PerlIO.pm lib/open.pm perlio.c t/lib/b.t
7414            ! t/op/utf8decode.t
7415 ____________________________________________________________________________
7416 [  9416] By: jhi                                   on 2001/03/28  18:06:07
7417         Log: Integrate change #9409 from mainline to maintperl.
7418              
7419              Yet another tweak on AIX dynaloading.
7420      Branch: maint-5.6/perl
7421           !> ext/DynaLoader/dl_aix.xs ext/DynaLoader/hints/aix.pl
7422 ____________________________________________________________________________
7423 [  9415] By: gsar                                  on 2001/03/28  17:13:01
7424         Log: integrate changes#9377,9385,9401 from mainline
7425              
7426              Subject: RE: 5.6.0 BUG: Lexical warnings aren't lexical
7427              
7428              If directory entries compare equal case-insensitively,
7429              retry case-sensitively.
7430              
7431              Subject: [PATCH] B::Terse and warnings
7432      Branch: maint-5.6/perl
7433           !> ext/B/B.pm ext/B/B/Terse.pm ext/File/Glob/bsd_glob.c gv.c
7434           !> t/pragma/warn/perl
7435 ____________________________________________________________________________
7436 [  9414] By: jhi                                   on 2001/03/28  17:11:12
7437         Log: Subject: [PATCH perl@9359] VMS fix-ups and status
7438              From: "Craig A. Berry" <craigberry@mac.com>
7439              Date: Wed, 28 Mar 2001 10:55:20 -0600
7440              Message-Id: <5.0.2.1.0.20010327164600.031563e8@exchi01>
7441      Branch: perl
7442            ! ext/IO/IO.xs lib/ExtUtils/MM_VMS.pm vms/vms.c vms/vmsish.h
7443 ____________________________________________________________________________
7444 [  9413] By: jhi                                   on 2001/03/28  17:03:12
7445         Log: Dup hunk.
7446      Branch: perl
7447            ! t/op/utf8decode.t
7448 ____________________________________________________________________________
7449 [  9412] By: jhi                                   on 2001/03/28  17:02:36
7450         Log: Forced integrate from perlio.
7451      Branch: perl
7452           !> t/op/utf8decode.t
7453 ____________________________________________________________________________
7454 [  9411] By: nick                                  on 2001/03/28  16:50:03
7455         Log: Integrate mainline.
7456      Branch: perlio
7457           +> t/lib/cwd.t
7458           !> MANIFEST ext/DynaLoader/dl_aix.xs ext/DynaLoader/hints/aix.pl
7459           !> ext/IO/lib/IO/Socket.pm ext/XS/Typemap/Typemap.pm
7460           !> ext/XS/Typemap/Typemap.xs ext/XS/Typemap/typemap gv.c
7461           !> makedef.pl pp.c t/lib/xs-typemap.t t/op/utf8decode.t
7462           !> t/pragma/warn/perl
7463 ____________________________________________________________________________
7464 [  9410] By: jhi                                   on 2001/03/28  16:44:23
7465         Log: Subject: Re: [PATCH] 9403 cannot be tested
7466              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
7467              Date: Wed, 28 Mar 2001 18:33:56 +0200
7468              Message-Id: <20010328182418.7C17.H.M.BRAND@hccnet.nl>
7469      Branch: perl
7470            ! makedef.pl
7471 ____________________________________________________________________________
7472 [  9409] By: jhi                                   on 2001/03/28  16:12:45
7473         Log: Yet another tweak on AIX dynaloading.
7474      Branch: perl
7475            ! ext/DynaLoader/dl_aix.xs ext/DynaLoader/hints/aix.pl
7476 ____________________________________________________________________________
7477 [  9408] By: jhi                                   on 2001/03/28  15:52:55
7478         Log: Subject: [PATCH] 9403 cannot be tested
7479              From: "H.Merijn Brand" <h.m.brand@hccnet.nl> 
7480              Date: Wed, 28 Mar 2001 17:23:00 +0200
7481              Message-Id: <20010328171835.7C14.H.M.BRAND@hccnet.nl>
7482              
7483              A missing symbol.
7484      Branch: perl
7485            ! makedef.pl
7486 ____________________________________________________________________________
7487 [  9407] By: jhi                                   on 2001/03/28  15:47:43
7488         Log: Integrate perlio. (with tweaks on t/op/utf8decode.t)
7489      Branch: perl
7490            ! t/op/utf8decode.t
7491           !> ext/MIME/Base64/QuotedPrint.pm ext/re/re.pm perl.h regcomp.c
7492           !> t/op/each.t t/op/pat.t t/op/regexp.t utf8.c
7493 ____________________________________________________________________________
7494 [  9406] By: jhi                                   on 2001/03/28  15:37:08
7495         Log: Subject: [PATCH] cwd.t (was: Cwd has no tests?)
7496              From: Benjamin Sugars <bsugars@canoe.ca> 
7497              Date: Tue, 27 Mar 2001 17:37:05 -0500 (EST)
7498              Message-ID: <Pine.LNX.4.21.0103271719540.2007-100000@marmot.rim.canoe.ca>
7499      Branch: perl
7500            + t/lib/cwd.t
7501            ! MANIFEST
7502 ____________________________________________________________________________
7503 [  9405] By: jhi                                   on 2001/03/28  15:13:18
7504         Log: pp_ne() needs a CORRECT boolean.
7505      Branch: perl
7506            ! pp.c
7507 ____________________________________________________________________________
7508 [  9404] By: jhi                                   on 2001/03/28  15:09:23
7509         Log: pp_ne() needs a boolean, not an integer.
7510      Branch: perl
7511            ! pp.c
7512 ____________________________________________________________________________
7513 [  9403] By: jhi                                   on 2001/03/28  14:47:43
7514         Log: (Retracted by #9404.)
7515      Branch: perl
7516            ! pp.c
7517 ____________________________________________________________________________
7518 [  9402] By: jhi                                   on 2001/03/28  14:43:59
7519         Log: Subject: Re: [PATCH] Typemap testing
7520              From: Tim Jenness <t.jenness@jach.hawaii.edu> 
7521              Date: Tue, 27 Mar 2001 16:34:03 -1000 (HST)
7522              Message-ID: <Pine.LNX.4.30.0103271633030.21198-100000@lapaki.jach.hawaii.edu>
7523      Branch: perl
7524            ! ext/XS/Typemap/Typemap.pm ext/XS/Typemap/Typemap.xs
7525            ! ext/XS/Typemap/typemap t/lib/xs-typemap.t
7526 ____________________________________________________________________________
7527 [  9401] By: jhi                                   on 2001/03/28  14:42:14
7528         Log: Subject: RE: 5.6.0 BUG: Lexical warnings aren't lexical
7529              From: "Paul Marquess" <Paul_Marquess@Yahoo.co.uk>
7530              Date: Sun, 25 Mar 2001 21:59:15 +0100
7531              Message-ID: <000701c0b56e$73944220$07bdfea9@bfs.phone.com>
7532              
7533              A variable will be checked for the "use once" warnings if:
7534              
7535              1. It is in the scope of a use warnings 'once'
7536              2. It isn't in the scope of the warnings pragma at all AND $^W is set.
7537              
7538              Otherwise it won't be checked at all.
7539              
7540              Part 1 is what is in perl >= 5.6.0, Part 2 is what I'm fixing.
7541              
7542              The enclosed patch partially fixes this issue. What I didn't
7543              get to work was the case where the "used once" warning is enabled
7544              in any file other than the main file.
7545      Branch: perl
7546            ! gv.c t/pragma/warn/perl
7547 ____________________________________________________________________________
7548 [  9400] By: nick                                  on 2001/03/28  14:38:24
7549         Log: More EBCDIC tweaks:
7550              - one more swash issue &~(0xA0-1) did not do the right thing,
7551              for UTF-EBCDIC where &~(0x80-1) does for UTF-8.
7552              - add "use re 'asciirange'" to make [!-~] etc. work
7553              use it in MIME::QuotedPrint and t/op/regexp.t and t/op/pat.t
7554              - Choose a key for t/op/each.t test which gets encoded.
7555              - Skip utf8decode if this is UTF-EBCDIC.
7556      Branch: perlio
7557            ! ext/MIME/Base64/QuotedPrint.pm ext/re/re.pm perl.h regcomp.c
7558            ! t/op/each.t t/op/pat.t t/op/regexp.t t/op/utf8decode.t utf8.c
7559 ____________________________________________________________________________
7560 [  9399] By: jhi                                   on 2001/03/28  14:21:00
7561         Log: Extend the SvROK() testing also to pp_ne(), pointed out by
7562              Andreas Schwab.
7563      Branch: perl
7564            ! pp.c
7565 ____________________________________________________________________________
7566 [  9398] By: jhi                                   on 2001/03/28  00:55:56
7567         Log: Subject: [ID 20010327.007] New warning from IO::Socket for sockatmark
7568              From: David Dyck <dcd@tc.fluke.com>
7569              Date: Tue, 27 Mar 2001 15:16:24 -0800
7570              Message-Id: <200103272316.PAA21921@dd.tc.fluke.com>
7571      Branch: perl
7572            ! ext/IO/lib/IO/Socket.pm
7573 ____________________________________________________________________________
7574 [  9397] By: jhi                                   on 2001/03/27  21:52:49
7575         Log: Integrate perlio.
7576      Branch: perl
7577           +> ext/PerlIO/Via/Makefile.PL ext/PerlIO/Via/Via.pm
7578           +> ext/PerlIO/Via/Via.xs
7579           !> MANIFEST ext/PerlIO/Scalar/Scalar.pm lib/PerlIO.pm
7580 ____________________________________________________________________________
7581 [  9396] By: nick                                  on 2001/03/27  21:45:13
7582         Log: Integrate mainline.
7583      Branch: perlio
7584           !> embed.h embed.pl ext/XS/Typemap/Typemap.xs gv.c
7585           !> pod/perlapi.pod proto.h sv.c sv.h t/op/magic.t utils/h2xs.PL
7586 ____________________________________________________________________________
7587 [  9395] By: nick                                  on 2001/03/27  21:18:58
7588         Log: Outline docs for PerlIO and PerlIO::Scalar
7589      Branch: perlio
7590            ! ext/PerlIO/Scalar/Scalar.pm lib/PerlIO.pm
7591 ____________________________________________________________________________
7592 [  9394] By: nick                                  on 2001/03/27  20:50:13
7593         Log: PerlIO::Via layer (alpha-ish).
7594      Branch: perlio
7595            + ext/PerlIO/Via/Makefile.PL ext/PerlIO/Via/Via.pm
7596            + ext/PerlIO/Via/Via.xs
7597            ! MANIFEST
7598 ____________________________________________________________________________
7599 [  9393] By: jhi                                   on 2001/03/27  20:49:55
7600         Log: Retract #9329 now that 9390 should take care of the matter.
7601      Branch: perl
7602            ! utils/h2xs.PL
7603 ____________________________________________________________________________
7604 [  9390] By: jhi                                   on 2001/03/27  20:47:50
7605         Log: Subject: Autoloading Errno.pm when %! is encountered
7606              From: Robin Houston <robin@kitsite.com>
7607              Date: Tue, 27 Mar 2001 20:57:11 +0100
7608              Message-ID: <20010327205710.A24053@puffinry.freeserve.co.uk>
7609      Branch: perl
7610            ! embed.h embed.pl gv.c proto.h t/op/magic.t
7611 ____________________________________________________________________________
7612 [  9389] By: jhi                                   on 2001/03/27  20:24:31
7613         Log: Integrate perlio.
7614      Branch: perl
7615           !> doop.c ext/Encode/Encode.pm ext/MIME/Base64/Base64.xs
7616           !> ext/MIME/Base64/QuotedPrint.pm t/lib/encode.t t/lib/mimeb64.t
7617           !> utf8.c
7618 ____________________________________________________________________________
7619 [  9388] By: jhi                                   on 2001/03/27  20:21:38
7620         Log: Better have a three-element array if one is going to assign
7621              to the third element of that array. (from Tim Jenness)
7622      Branch: perl
7623            ! ext/XS/Typemap/Typemap.xs
7624 ____________________________________________________________________________
7625 [  9387] By: nick                                  on 2001/03/27  20:15:43
7626         Log: Integrate mainline.
7627      Branch: perlio
7628           +> ext/XS/Typemap/Makefile.PL ext/XS/Typemap/README
7629           +> ext/XS/Typemap/Typemap.pm ext/XS/Typemap/Typemap.xs
7630           +> ext/XS/Typemap/stdio.c ext/XS/Typemap/typemap
7631           +> t/lib/xs-typemap.t
7632           !> (integrate 34 files)
7633 ____________________________________________________________________________
7634 [  9386] By: jhi                                   on 2001/03/27  20:04:18
7635         Log: Subject: Re: perl@9359 breaks HTML::Parser
7636              From: Gisle Aas <gisle@ActiveState.com>
7637              Date: 27 Mar 2001 11:30:24 -0800
7638              Message-ID: <lrr8zjxb5b.fsf@caliper.ActiveState.com>
7639              
7640              Clarify the UTF-8 issues of the API docs.
7641              (Slightly reworded and expanded.)
7642      Branch: perl
7643            ! pod/perlapi.pod sv.c sv.h
7644 ____________________________________________________________________________
7645 [  9385] By: jhi                                   on 2001/03/27  19:44:25
7646         Log: If directory entries compare equal case-insensitively,
7647              retry case-sensitively.
7648      Branch: perl
7649            ! ext/File/Glob/bsd_glob.c
7650 ____________________________________________________________________________
7651 [  9384] By: nick                                  on 2001/03/27  19:38:50
7652         Log: Various EBCDIC fixes:
7653              - major revelation that swash code is encoding aware,
7654              (or thought it was) - now it is ;-)
7655              - With that out of the way fix a slab of tr/// cases.
7656              - Fix Encode 'Unicode' to be true Unicode so tests pass.
7657              - As anticipated Base64.xs needed tweaks.
7658              - Until tr/// works right avoid old_encode64 in MIME tests.
7659      Branch: perlio
7660            ! doop.c ext/Encode/Encode.pm ext/MIME/Base64/Base64.xs
7661            ! t/lib/encode.t t/lib/mimeb64.t utf8.c
7662 ____________________________________________________________________________
7663 [  9383] By: jhi                                   on 2001/03/27  18:34:41
7664         Log: Add the std test suite BEGIN block.
7665      Branch: perl
7666            ! t/lib/xs-typemap.t
7667 ____________________________________________________________________________
7668 [  9382] By: jhi                                   on 2001/03/27  15:16:07
7669         Log: Add debugging output to the test.
7670      Branch: perl
7671            ! t/lib/glob-basic.t
7672 ____________________________________________________________________________
7673 [  9381] By: jhi                                   on 2001/03/27  15:08:10
7674         Log: Add Tim Jenness' XS::Typemap for exercizing the standard typemap.
7675      Branch: perl
7676            + ext/XS/Typemap/Makefile.PL ext/XS/Typemap/README
7677            + ext/XS/Typemap/Typemap.pm ext/XS/Typemap/Typemap.xs
7678            + ext/XS/Typemap/stdio.c ext/XS/Typemap/typemap
7679            + t/lib/xs-typemap.t
7680            ! MANIFEST
7681 ____________________________________________________________________________
7682 [  9380] By: jhi                                   on 2001/03/27  14:48:34
7683         Log: Subject: [PATCH] Typemap testing
7684              From: Tim Jenness <t.jenness@jach.hawaii.edu> 
7685              Date: Sun, 25 Mar 2001 16:46:12 -1000 (HST)
7686              Message-ID: <Pine.LNX.4.30.0103251629350.16988-101000@lapaki.jach.hawaii.edu>
7687              
7688              (The first part of the patch.)
7689      Branch: perl
7690            ! lib/ExtUtils/typemap lib/ExtUtils/xsubpp
7691 ____________________________________________________________________________
7692 [  9379] By: jhi                                   on 2001/03/27  14:44:56
7693         Log: Subject: Re: [PATCH] t/lib/glob-basic.t  
7694              From: Benjamin Sugars <bsugars@canoe.ca> 
7695              Date: Mon, 26 Mar 2001 14:11:47 -0500 (EST)
7696              Message-ID: <Pine.LNX.4.21.0103261406170.2729-100000@marmot.rim.canoe.ca>
7697      Branch: perl
7698            ! t/lib/glob-basic.t
7699 ____________________________________________________________________________
7700 [  9378] By: jhi                                   on 2001/03/27  14:42:30
7701         Log: Subject: [PATCH] perlvar nit
7702              From: Simon Cozens <simon@netthink.co.uk>
7703              Date: Tue, 27 Mar 2001 01:12:01 +0100
7704              Message-ID: <20010327011201.A19179@netthink.co.uk>
7705      Branch: perl
7706            ! pod/perlvar.pod
7707 ____________________________________________________________________________
7708 [  9377] By: jhi                                   on 2001/03/27  14:36:26
7709         Log: Subject: [PATCH] B::Terse and warnings
7710              From: Benjamin Sugars <ben.sugars@home.com>
7711              Date: Mon, 26 Mar 2001 23:40:33 -0500 (EST)
7712              Message-ID: <Pine.LNX.4.21.0103262320170.20040-100000@localhost.localdomain>
7713      Branch: perl
7714            ! ext/B/B.pm ext/B/B/Terse.pm
7715 ____________________________________________________________________________
7716 [  9376] By: jhi                                   on 2001/03/27  14:31:31
7717         Log: Document sockatmark() some.
7718      Branch: perl
7719            ! pod/perldiag.pod pod/perlfunc.pod pod/perlport.pod
7720            ! pod/perltoc.pod
7721 ____________________________________________________________________________
7722 [  9375] By: jhi                                   on 2001/03/27  14:00:24
7723         Log: sv_catpvf(sv, "%c", 128) should not UTF-8-ify the sv,
7724              noted by Gisle and fixed by NI-S.
7725      Branch: perl
7726            ! sv.c
7727 ____________________________________________________________________________
7728 [  9374] By: jhi                                   on 2001/03/27  05:50:01
7729         Log: Regen toc.
7730      Branch: perl
7731            ! pod/perltoc.pod
7732 ____________________________________________________________________________
7733 [  9373] By: jhi                                   on 2001/03/27  05:43:51
7734         Log: Pixie documenting.
7735      Branch: perl
7736            ! Makefile.SH pod/perlhack.pod
7737 ____________________________________________________________________________
7738 [  9372] By: jhi                                   on 2001/03/27  05:29:34
7739         Log: Metaconfig unit changes for #9371.
7740      Branch: metaconfig
7741            ! U/modified/myhostname.U
7742      Branch: metaconfig/U/perl
7743            + d_sockatmark.U
7744            ! gccvers.U
7745 ____________________________________________________________________________
7746 [  9371] By: jhi                                   on 2001/03/27  05:29:07
7747         Log: Add sockatmark() probing.
7748      Branch: perl
7749            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
7750            ! config_h.SH configure.com epoc/config.sh uconfig.h uconfig.sh
7751            ! vos/config.alpha.def vos/config.alpha.h vos/config.ga.def
7752            ! vos/config.ga.h win32/config.bc win32/config.gc
7753            ! win32/config.vc
7754 ____________________________________________________________________________
7755 [  9370] By: jhi                                   on 2001/03/26  22:01:18
7756         Log: pp_ncmp() and pp_scmp() should return numeric values, not booleans.
7757              Really need to benchmark this.
7758      Branch: perl
7759            ! pp.c
7760 ____________________________________________________________________________
7761 [  9369] By: nick                                  on 2001/03/26  21:59:30
7762         Log: Integrate mainline.
7763      Branch: perlio
7764            ! ext/MIME/Base64/QuotedPrint.pm
7765           !> Changes Makefile.SH ext/IO/IO.xs ext/IO/lib/IO/Socket.pm
7766           !> patchlevel.h pod/perlhack.pod pp_sys.c
7767 ____________________________________________________________________________
7768 [  9368] By: jhi                                   on 2001/03/26  21:47:03
7769         Log: Treat pp_ncmp() and pp_scmp() as in #9366 (ROK).
7770              
7771              TODO1: perlbench.
7772              TODO2: le, lt, ge, gt?  Yech.
7773      Branch: perl
7774            ! pp.c
7775 ____________________________________________________________________________
7776 [  9367] By: jhi                                   on 2001/03/26  21:34:57
7777         Log: Too much cut-and-paste in #9363.
7778      Branch: perl
7779            ! pp_sys.c
7780 ____________________________________________________________________________
7781 [  9366] By: jhi                                   on 2001/03/26  21:20:53
7782         Log: Subject: $ref1 == $ref2 without NV_PRESERVES_UV
7783              From: Andreas Schwab <schwab@suse.de>
7784              Date: 26 Mar 2001 17:29:04 +0200
7785              Message-ID: <jeitkw5z27.fsf@hawking.suse.de>
7786              
7787              (The patch for 5.6.0 or so, this is a guess for bleadperl)
7788      Branch: perl
7789            ! pp_hot.c
7790 ____________________________________________________________________________
7791 [  9365] By: jhi                                   on 2001/03/26  21:07:54
7792         Log: Integrate perlio.
7793      Branch: perl
7794           !> perlio.c
7795 ____________________________________________________________________________
7796 [  9364] By: nick                                  on 2001/03/26  20:30:48
7797         Log: REFCNT botch in layer name cache hash.
7798      Branch: perlio
7799            ! perlio.c
7800 ____________________________________________________________________________
7801 [  9363] By: jhi                                   on 2001/03/26  18:44:32
7802         Log: Subject: [PATCH] socket() leaks file descriptors
7803              From: Benjamin Sugars <bsugars@canoe.ca>
7804              Date: Mon, 26 Mar 2001 13:29:54 -0500 (EST)
7805              Message-ID: <Pine.LNX.4.21.0103261315510.2729-100000@marmot.rim.canoe.ca>
7806              
7807              Also sockpair() fixed similarly.
7808      Branch: perl
7809            ! pp_sys.c
7810 ____________________________________________________________________________
7811 [  9362] By: jhi                                   on 2001/03/26  18:37:52
7812         Log: Integrate perlio.
7813      Branch: perl
7814           !> README.os390 miniperlmain.c perlio.c perliol.h t/op/pat.t
7815 ____________________________________________________________________________
7816 [  9361] By: nick                                  on 2001/03/26  17:32:06
7817         Log: Implement flush of linebuffered streams on read of a tty.
7818      Branch: perlio
7819            ! perlio.c perliol.h
7820 ____________________________________________________________________________
7821 [  9360] By: nick                                  on 2001/03/26  17:12:32
7822         Log: Memory tweaks and notes for OEMVS.
7823      Branch: perlio
7824            ! README.os390 miniperlmain.c t/op/pat.t
7825 ____________________________________________________________________________
7826 [  9359] By: jhi                                   on 2001/03/26  02:12:54
7827         Log: Update Changes.
7828      Branch: perl
7829            ! Changes patchlevel.h
7830 ____________________________________________________________________________
7831 [  9358] By: jhi                                   on 2001/03/26  02:05:32
7832         Log: Document the most common pixie options.
7833      Branch: perl
7834            ! pod/perlhack.pod
7835 ____________________________________________________________________________
7836 [  9357] By: jhi                                   on 2001/03/26  01:25:28
7837         Log: For perl.pixie check *before* compiling that optimize is -g,
7838              as for perl.third.
7839      Branch: perl
7840            ! Makefile.SH
7841 ____________________________________________________________________________
7842 [  9356] By: jhi                                   on 2001/03/26  01:13:41
7843         Log: rmdir lib/Digest, lib/MIME, and lib/PerlIO.
7844      Branch: perl
7845            ! Makefile.SH
7846 ____________________________________________________________________________
7847 [  9355] By: jhi                                   on 2001/03/26  01:11:19
7848         Log: Remove t/perl.third.
7849      Branch: perl
7850            ! Makefile.SH
7851 ____________________________________________________________________________
7852 [  9354] By: jhi                                   on 2001/03/26  00:23:38
7853         Log: Implement IO::Socket::atmark(), inspired by Lincoln Stein's
7854              IO::Sockatmark().
7855      Branch: perl
7856            ! ext/IO/IO.xs ext/IO/lib/IO/Socket.pm
7857 ____________________________________________________________________________
7858 [  9353] By: jhi                                   on 2001/03/25  22:25:04
7859         Log: Integrate perlio.
7860      Branch: perl
7861           !> ext/Encode/Encode.pm ext/Encode/Encode.xs
7862           !> ext/PerlIO/Scalar/Scalar.xs perl.c perlio.c perlio.h perliol.h
7863           !> pp_hot.c win32/makefile.mk
7864 ____________________________________________________________________________
7865 [  9352] By: jhi                                   on 2001/03/25  22:21:41
7866         Log: Subject: Re: [ID 20010215.006] Bad arg length for Socket::unpack_sockaddr_un, length is 14 ...
7867              From: Radu Greab <radu@netsoft.ro>
7868              Date: Fri, 23 Mar 2001 21:14:59 +0200 (EET)
7869              Message-ID: <15035.41139.646781.478457@ix.netsoft.ro>
7870      Branch: perl
7871            ! pp_sys.c
7872 ____________________________________________________________________________
7873 [  9351] By: nick                                  on 2001/03/25  22:15:02
7874         Log: Fix readline in list mode to tell rest of world that it has
7875              things on the stack. Otherwise if perl code gets invoked
7876              underneath it it scribbles over results-so-far.
7877              (Why TIEHANDLE has not tripped on this is a mystery.)
7878      Branch: perlio
7879            ! pp_hot.c
7880 ____________________________________________________________________________
7881 [  9350] By: nick                                  on 2001/03/25  22:10:13
7882         Log: win32/makefile.mk typos
7883      Branch: perlio
7884            ! win32/makefile.mk
7885 ____________________________________________________________________________
7886 [  9349] By: nick                                  on 2001/03/25  21:31:14
7887         Log: Integrate now-non-binary file.
7888      Branch: perlio
7889           !> t/lib/mimeqp.t
7890 ____________________________________________________________________________
7891 [  9348] By: nick                                  on 2001/03/25  21:27:24
7892         Log: Make it text
7893      Branch: perlio
7894            ! t/lib/mimeqp.t
7895 ____________________________________________________________________________
7896 [  9347] By: nick                                  on 2001/03/25  21:25:37
7897         Log: Integrate mainline.
7898      Branch: perlio
7899           !> ext/Digest/MD5/MD5.pm ext/MIME/Base64/Base64.pm
7900           !> lib/Term/ReadLine.pm t/lib/md5-file.t
7901 ____________________________________________________________________________
7902 [  9346] By: nick                                  on 2001/03/25  20:58:15
7903         Log: Add destruct time hook to PerlIO (for work-in-process implementing
7904              layers in perl code. In such cases layers need to be popped before
7905              we loose the ability to run perl code.)
7906              Also back-out "PerlIO::object" hook - it isn't going to work like that...
7907      Branch: perlio
7908            ! perl.c perlio.c perlio.h perliol.h
7909 ____________________________________________________________________________
7910 [  9345] By: nick                                  on 2001/03/25  20:49:11
7911         Log: Avoid at leasy one of undefined warnings in Encode.
7912      Branch: perlio
7913            ! ext/Encode/Encode.pm ext/Encode/Encode.xs
7914 ____________________________________________________________________________
7915 [  9344] By: jhi                                   on 2001/03/25  20:37:43
7916         Log: A workaround for using Term::ReadLine in emacs minibuffer
7917              from Wybo Dekker <wybo@servalys.nl> and Johan Vromans;
7918              additional tweaks from Ilya Zakharevich.
7919      Branch: perl
7920            ! lib/Term/ReadLine.pm
7921 ____________________________________________________________________________
7922 [  9343] By: nick                                  on 2001/03/25  20:21:14
7923         Log: Missing return value.
7924      Branch: perlio
7925            ! ext/PerlIO/Scalar/Scalar.xs
7926 ____________________________________________________________________________
7927 [  9342] By: jhi                                   on 2001/03/25  16:21:00
7928         Log: Roll back the version numbers of Digest::MD5 and MIME::Base64
7929              to equal the CPAN versions since no code changes have been made.
7930      Branch: perl
7931            ! ext/Digest/MD5/MD5.pm ext/MIME/Base64/Base64.pm
7932            ! t/lib/md5-file.t
7933 ____________________________________________________________________________
7934 [  9341] By: jhi                                   on 2001/03/25  16:01:48
7935         Log: Escape 8-bit characters.
7936      Branch: perl
7937            ! t/lib/mimeqp.t
7938 ____________________________________________________________________________
7939 [  9340] By: gsar                                  on 2001/03/25  15:50:53
7940         Log: readd mimeqp.t as xtext (used to be binary because of the literal 8-bit
7941              chars)
7942      Branch: perl
7943            + t/lib/mimeqp.t
7944 ____________________________________________________________________________
7945 [  9339] By: gsar                                  on 2001/03/25  15:48:50
7946         Log: delete mimeqp.t for later with text mode set
7947      Branch: perl
7948            - t/lib/mimeqp.t
7949 ____________________________________________________________________________
7950 [  9338] By: nick                                  on 2001/03/25  09:01:57
7951         Log: Integrate mainline.
7952      Branch: perlio
7953           +> ext/MIME/Base64/Base64.pm ext/MIME/Base64/Base64.xs
7954           +> ext/MIME/Base64/Changes ext/MIME/Base64/Makefile.PL
7955           +> ext/MIME/Base64/QuotedPrint.pm t/lib/mimeb64.t
7956           +> t/lib/mimeb64u.t t/lib/mimeqp.t
7957           !> MANIFEST configure.com djgpp/config.over epoc/config.sh
7958           !> hints/uts.sh hints/uwin.sh hints/vmesa.sh t/lib/md5-file.t
7959           !> utils/h2xs.PL win32/Makefile win32/makefile.mk
7960 ____________________________________________________________________________
7961 [  9337] By: jhi                                   on 2001/03/25  04:23:24
7962         Log: Add MIME::Base64 here and there.  Again, a lot of
7963              optimism is in the air.
7964      Branch: perl
7965            ! configure.com djgpp/config.over epoc/config.sh hints/uts.sh
7966            ! hints/uwin.sh hints/vmesa.sh win32/Makefile win32/makefile.mk
7967 ____________________________________________________________________________
7968 [  9336] By: jhi                                   on 2001/03/25  04:12:43
7969         Log: Add PerlIO::Scalar to win32/Makefile. (I'm doing
7970              this by ear as I do not do Win32 programming.)
7971      Branch: perl
7972            ! win32/Makefile win32/makefile.mk
7973 ____________________________________________________________________________
7974 [  9335] By: jhi                                   on 2001/03/25  04:03:50
7975         Log: Put back the MD5-Base64 tests now that we have MIME::Base64.
7976      Branch: perl
7977            ! t/lib/md5-file.t
7978 ____________________________________________________________________________
7979 [  9334] By: jhi                                   on 2001/03/25  03:58:53
7980         Log: Add MIME::Base 2.12 from Gisle Aas, version number bumped to 2.13.
7981      Branch: perl
7982            + ext/MIME/Base64/Base64.pm ext/MIME/Base64/Base64.xs
7983            + ext/MIME/Base64/Changes ext/MIME/Base64/Makefile.PL
7984            + ext/MIME/Base64/QuotedPrint.pm t/lib/mimeb64.t
7985            + t/lib/mimeb64u.t t/lib/mimeqp.t
7986            ! MANIFEST
7987 ____________________________________________________________________________
7988 [  9333] By: jhi                                   on 2001/03/24  20:14:37
7989         Log: Integrate perlio.
7990      Branch: perl
7991           !> doio.c pod/perlfunc.pod pod/perliol.pod win32/makefile.mk
7992 ____________________________________________________________________________
7993 [  9332] By: nick                                  on 2001/03/24  19:40:34
7994         Log: Fix un-init variable leading to spurious "Out of Memory!"
7995      Branch: perlio
7996            ! doio.c
7997 ____________________________________________________________________________
7998 [  9331] By: nick                                  on 2001/03/24  19:09:59
7999         Log: Tweak docs for C<open> (boy does that need wholesale revision...)
8000              and update layers internals doc.
8001      Branch: perlio
8002            ! pod/perlfunc.pod pod/perliol.pod
8003 ____________________________________________________________________________
8004 [  9330] By: jhi                                   on 2001/03/24  18:42:11
8005         Log: The length might be uninitialized garbage if the *svp is the undef.
8006      Branch: perl
8007            ! doio.c
8008 ____________________________________________________________________________
8009 [  9329] By: jhi                                   on 2001/03/24  18:26:57
8010         Log: (Retracted by #9393)
8011
8012              Subject: [PATCH h2xs] $!{EINVAL} requires "use Errno"
8013              From: Simon Cozens <simon@netthink.co.uk>
8014              Date: Sat, 24 Mar 2001 17:13:17 +0000
8015              Message-ID: <20010324171317.A13406@netthink.co.uk>
8016      Branch: perl
8017            ! utils/h2xs.PL
8018 ____________________________________________________________________________
8019 [  9328] By: nick                                  on 2001/03/24  17:22:02
8020         Log: Integrate mainline.
8021      Branch: perlio
8022           !> lib/unicode/Names.txt lib/unicode/ReadMe.txt
8023           !> lib/unicode/version
8024 ____________________________________________________________________________
8025 [  9327] By: nick                                  on 2001/03/24  17:16:02
8026         Log: Integrate mainline.
8027      Branch: perlio
8028           +> ext/Digest/MD5/Changes ext/Digest/MD5/MD5.pm
8029           +> ext/Digest/MD5/MD5.xs ext/Digest/MD5/Makefile.PL
8030           +> ext/Digest/MD5/hints/irix_6.pl ext/Digest/MD5/typemap
8031           +> lib/Digest.pm t/lib/digest.t t/lib/md5-aaa.t t/lib/md5-badf.t
8032           +> t/lib/md5-file.t
8033           !> MANIFEST Makefile.SH configure.com djgpp/config.over
8034           !> epoc/config.sh ext/DynaLoader/hints/aix.pl hints/aix.sh
8035           !> hints/uts.sh hints/uwin.sh hints/vmesa.sh lib/Net/Ping.pm op.c
8036           !> pp.c t/lib/b.t t/op/re_tests t/op/repeat.t win32/Makefile
8037           !> win32/makefile.mk
8038 ____________________________________________________________________________
8039 [  9326] By: jhi                                   on 2001/03/24  17:00:42
8040         Log: Upgrade to Unicode 3.1 beta 2001-03-23.
8041      Branch: perl
8042            ! lib/unicode/Names.txt lib/unicode/ReadMe.txt
8043            ! lib/unicode/version
8044 ____________________________________________________________________________
8045 [  9325] By: jhi                                   on 2001/03/24  16:22:33
8046         Log: Subject: Re: B::Deparse bug (5.6.0)
8047              From: Robin Houston <robin@kitsite.com>
8048              Date: Sat, 24 Mar 2001 14:33:09 +0000
8049              Message-ID: <20010324143309.B17734@puffinry.freeserve.co.uk>
8050      Branch: perl
8051            ! op.c pp.c t/lib/b.t t/op/repeat.t
8052 ____________________________________________________________________________
8053 [  9324] By: jhi                                   on 2001/03/24  16:21:56
8054         Log: Boldly add extensions to be built to VMS, EPOC, UTS,
8055              U/WIN, and VM/ESA (and fixups for DJGPP).  Some of
8056              these additions may be too optimistic.
8057      Branch: perl
8058            ! configure.com djgpp/config.over epoc/config.sh hints/uts.sh
8059            ! hints/uwin.sh hints/vmesa.sh
8060 ____________________________________________________________________________
8061 [  9323] By: jhi                                   on 2001/03/24  16:06:01
8062         Log: Integrate perlio.
8063      Branch: perl
8064           +> ext/PerlIO/Scalar/Makefile.PL ext/PerlIO/Scalar/Scalar.pm
8065           +> ext/PerlIO/Scalar/Scalar.xs t/lib/io_scalar.t
8066            ! Makefile.SH
8067           !> MANIFEST doio.c embed.h ext/Encode/Encode.xs
8068           !> ext/POSIX/POSIX.xs global.sym iperlsys.h makedef.pl objXSUB.h
8069           !> perlapi.c perlio.c perliol.h proto.h t/io/open.t t/io/utf8.t
8070           !> win32/config_H.bc win32/config_H.gc win32/config_H.vc
8071           !> win32/makefile.mk win32/perlhost.h win32/win32.c
8072           !> win32/win32iop.h
8073 ____________________________________________________________________________
8074 [  9322] By: nick                                  on 2001/03/24  14:39:12
8075         Log: Routine Win32 regen_config_h - no real changes.
8076      Branch: perlio
8077            ! win32/config_H.bc win32/config_H.gc win32/config_H.vc
8078 ____________________________________________________________________________
8079 [  9321] By: nick                                  on 2001/03/24  14:31:49
8080         Log: PerlIO fixups for Win32:
8081              - provide win33_popenlist() - non-functional as yet.
8082              - avoid need for aTHX in PerlIO_debug calls - even if not 
8083              enabled args are still evaluated so Win32 has trouble during fork().
8084              - Add PerlIO/Scalar to list of extensions in win32/makefile.mk
8085              - Fixup makedef.pl for latest set of symbols.
8086      Branch: perlio
8087            ! iperlsys.h makedef.pl perlio.c win32/makefile.mk
8088            ! win32/perlhost.h win32/win32.c win32/win32iop.h
8089 ____________________________________________________________________________
8090 [  9320] By: nick                                  on 2001/03/24  14:26:58
8091         Log: POSIX::getcwd XS code to call Cwd::cwd when HAS_GETCWD not defined
8092              was gibberish - broke it on WIn32 at least.
8093      Branch: perlio
8094            ! ext/POSIX/POSIX.xs
8095 ____________________________________________________________________________
8096 [  9319] By: nick                                  on 2001/03/24  11:29:41
8097         Log: Generated files.
8098      Branch: perlio
8099            ! embed.h global.sym objXSUB.h perlapi.c proto.h
8100 ____________________________________________________________________________
8101 [  9318] By: nick                                  on 2001/03/24  10:29:37
8102         Log: Implement:
8103              1.  open($fh,"+<",undef);  # add test to t/io/open.t
8104              2.  open($fh,"+<",\$var);  # New test t/lib/io_scalar.t
8105      Branch: perlio
8106            + ext/PerlIO/Scalar/Makefile.PL ext/PerlIO/Scalar/Scalar.pm
8107            + ext/PerlIO/Scalar/Scalar.xs t/lib/io_scalar.t
8108            ! MANIFEST doio.c ext/Encode/Encode.xs perlio.c perliol.h
8109            ! t/io/open.t t/io/utf8.t
8110 ____________________________________________________________________________
8111 [  9317] By: jhi                                   on 2001/03/23  23:41:25
8112         Log: AIX does seems to have optimization problems with its C compilers.
8113      Branch: perl
8114            ! hints/aix.sh
8115 ____________________________________________________________________________
8116 [  9316] By: jhi                                   on 2001/03/23  23:40:46
8117         Log: Integrate perlio.
8118      Branch: perl
8119           +> lib/PerlIO.pm
8120           !> MANIFEST doio.c ext/Encode/Encode.xs perlio.c perlio.h
8121           !> perliol.h
8122 ____________________________________________________________________________
8123 [  9315] By: jhi                                   on 2001/03/23  22:16:30
8124         Log: Fix the EBCDIC MD5.pm checksum, from Pter Prymmer.
8125      Branch: perl
8126            ! t/lib/md5-file.t
8127 ____________________________________________________________________________
8128 [  9314] By: nick                                  on 2001/03/23  20:49:02
8129         Log: Perlio internals re-organized.
8130              - open process creates AV of layer/arg pairs
8131              (appends layers from open() or open.pm to default list).
8132              - push arg is now an SV.
8133              - layer ->Open get passed the AV
8134              - open is no longer mandatory method.
8135              - topmost layer that has ->Open method does the open
8136              - any layers above are pushed once that returns.
8137              - vtable re-ordered so dummy layers need only provide push/pop methods.
8138      Branch: perlio
8139            ! ext/Encode/Encode.xs perlio.c perlio.h perliol.h
8140 ____________________________________________________________________________
8141 [  9313] By: nick                                  on 2001/03/23  16:27:41
8142         Log: Check in a stable (working) version before next round of tweaks.
8143              Changes include:
8144              - Move default layers code out of doio.c and into perlio.c
8145              - Single routine for parsing layer specification strings.
8146              - Skeleton support for demand loading of layers
8147              - Core-dump avoidance if PERLIO environment specifies loadable layer
8148              (does not _work_ as need IO to load and need load to do IO ...)
8149      Branch: perlio
8150            + lib/PerlIO.pm
8151            ! MANIFEST doio.c perlio.c
8152 ____________________________________________________________________________
8153 [  9312] By: gsar                                  on 2001/03/23  16:25:25
8154         Log: add execute bit to files with shebang lines in the repository;
8155              avoid clobbering execute bit in Porting/makerel 
8156      Branch: maint-5.6/perl
8157            ! (edit 144 files)
8158 ____________________________________________________________________________
8159 [  9311] By: jhi                                   on 2001/03/23  14:25:35
8160         Log: Forgot the unneeded hints/dec_osf.pl into MANIFEST in #9308.
8161      Branch: perl
8162            ! MANIFEST
8163 ____________________________________________________________________________
8164 [  9310] By: jhi                                   on 2001/03/23  13:45:04
8165         Log: Subject: [PATCH] Net::Ping
8166              From: Colin McMillen <mcmi0037@tc.umn.edu>
8167              Date: Thu, 22 Mar 2001 19:30:31 -0600
8168              Message-ID: <20010322193031.A18814@strago.jenovaproject.org>
8169      Branch: perl
8170            ! lib/Net/Ping.pm
8171 ____________________________________________________________________________
8172 [  9309] By: jhi                                   on 2001/03/23  13:39:13
8173         Log: EBCDIC patches for Digest::MD5 tests from Peter Prymmer.
8174      Branch: perl
8175            ! t/lib/md5-aaa.t t/lib/md5-file.t
8176 ____________________________________________________________________________
8177 [  9308] By: jhi                                   on 2001/03/23  13:20:34
8178         Log: Integrate Digest-1.00 and Digest-MD5-2.13, from Gisle Aas.
8179              - bump the version to 2.14
8180              - drop the base64 tests since they require MIME::Base64
8181              - drop the rfc1321.txt
8182              - drop the hints/dec_osf.pl since it's only needed for
8183              pre-5.005_03 Perls
8184              Todo:
8185              - the U32 alignment testing is now removed; it needs to
8186              be reintroduced as as a Config variable (meaning also
8187              as a Configure test)
8188              - get the new EBCDIC md5sum for MD5.pm
8189              - test in Win32 to see how badly I botched the makefiles
8190      Branch: perl
8191            + ext/Digest/MD5/Changes ext/Digest/MD5/MD5.pm
8192            + ext/Digest/MD5/MD5.xs ext/Digest/MD5/Makefile.PL
8193            + ext/Digest/MD5/hints/irix_6.pl ext/Digest/MD5/typemap
8194            + lib/Digest.pm t/lib/digest.t t/lib/md5-aaa.t t/lib/md5-badf.t
8195            + t/lib/md5-file.t
8196            ! MANIFEST configure.com hints/uwin.sh hints/vmesa.sh
8197            ! win32/Makefile win32/makefile.mk
8198 ____________________________________________________________________________
8199 [  9307] By: jhi                                   on 2001/03/23  12:56:14
8200         Log: Integrate change #9306 from maintperl into mainline,
8201              AIX dynaloader for AIXes without <load.h>.
8202      Branch: perl
8203           !> ext/DynaLoader/hints/aix.pl
8204 ____________________________________________________________________________
8205 [  9306] By: jhi                                   on 2001/03/23  12:51:36
8206         Log: There are AIXes without /usr/include/load.h,
8207              patch from H.Merijn Brand.
8208      Branch: maint-5.6/perl
8209            ! ext/DynaLoader/hints/aix.pl
8210 ____________________________________________________________________________
8211 [  9305] By: nick                                  on 2001/03/23  11:00:42
8212         Log: Add pTHX_ to -Duseperlio API where it does not conflict with legacy stuff.
8213      Branch: perlio
8214            ! ext/Encode/Encode.xs perlio.c perlio.h
8215 ____________________________________________________________________________
8216 [  9304] By: nick                                  on 2001/03/23  10:20:46
8217         Log: Render -Duseperlio functional again.
8218              - this is "quick fix" which calls PerlIO_apply_layers after opening,
8219              which is what old scheme did. New scheme needs to change that
8220              to make open(...,\$scalar) etc. work but this will do for now.
8221      Branch: perlio
8222            ! perlio.c
8223 ____________________________________________________________________________
8224 [  9303] By: nick                                  on 2001/03/23  09:53:20
8225         Log: Avoid "reopen" semantics for time being. Fix bug in dup logic.
8226              -Uuseperlio now works again.
8227              -Duseperlio is still poorly. Don't merge yet...
8228      Branch: perlio
8229            ! doio.c perlio.h
8230 ____________________________________________________________________________
8231 [  9302] By: nick                                  on 2001/03/22  22:26:51
8232         Log: Snapshot of new PerlIO open scheme. Still buggy - mainly in open($fh,">&STDOUT!")
8233              type code.
8234              - Invent PerlIO_openn() - which has "lots" of args a bit like do_openn() which
8235              is its main caller. In particular now has access to "extra" args, and
8236              can tell when an open handle is "reopened" (or duped?).
8237              - In -Duseperlio PerlIO_open() et. al. are now wrappers on PerlIO_openn().
8238              - In -Uuseperlio (untested as yet) PerlIO_openn() is a wrapper on
8239              PerlIO_open() et. al. (i.e. other way round).
8240              - Collapse "vtable" entries for layers - was fdopen/open/reopen now just open
8241              with args close to PerlIO_openn().
8242      Branch: perlio
8243            ! doio.c ext/Encode/Encode.xs perlio.c perlio.h perliol.h
8244 ____________________________________________________________________________
8245 [  9301] By: jhi                                   on 2001/03/22  20:58:04
8246         Log: Integrate perlio.
8247      Branch: perl
8248           !> doio.c embed.pl iperlsys.h perl.c perlio.c pp_hot.c pp_sys.c
8249           !> t/io/open.t util.c
8250 ____________________________________________________________________________
8251 [  9300] By: nick                                  on 2001/03/22  17:36:32
8252         Log: Don't include $@ in not ok message.
8253      Branch: perlio
8254            ! t/io/open.t
8255 ____________________________________________________________________________
8256 [  9299] By: gsar                                  on 2001/03/22  16:53:45
8257         Log: back out changes#7532,7521 for now (appears to have problems
8258              on IRIX)
8259      Branch: maint-5.6/perl
8260            ! ext/POSIX/POSIX.pm ext/POSIX/POSIX.pod ext/POSIX/POSIX.xs
8261            ! ext/POSIX/typemap pod/perlvar.pod
8262 ____________________________________________________________________________
8263 [  9298] By: nick                                  on 2001/03/22  14:35:46
8264         Log: Give a meaning to '&' in n-arg open case:
8265              open($fh,"<&",$scalar);
8266              $scalar can be:
8267              - an integer which does "fdopen"
8268              open($fh,"<&",2); # like open($fh,"<&2")
8269              - something that will yield a file handle via sv_2io()
8270              useful for dup'ing anonymous handles.
8271              e.g.:
8272              open(my $fh,"<&",\*STDIN);
8273              open(my $dup,"<&",$fh);
8274      Branch: perlio
8275            ! doio.c t/io/open.t
8276 ____________________________________________________________________________
8277 [  9297] By: nick                                  on 2001/03/22  13:34:35
8278         Log: Implement open($fh,"-|",prog,args...) for HAS_FORK cases.
8279      Branch: perlio
8280            ! util.c
8281 ____________________________________________________________________________
8282 [  9296] By: nick                                  on 2001/03/22  12:51:20
8283         Log: Re-instate warnings for 'eof STDOUT' etc. by marking STD* as appropriate IoTYPE.
8284      Branch: perlio
8285            ! perl.c
8286 ____________________________________________________________________________
8287 [  9295] By: nick                                  on 2001/03/22  11:59:44
8288         Log: If stdin, stdout or stderr get opened in unexpected read/write state
8289              then warn at time of open not at time of use.
8290      Branch: perlio
8291            ! doio.c pp_hot.c pp_sys.c
8292 ____________________________________________________________________________
8293 [  9294] By: nick                                  on 2001/03/22  10:54:35
8294         Log: Die on n-arg open(...,"",xxx,yyy,...)
8295              - redirect pipe cases to PerlProc_popen_list() (which just croaks for now)
8296              - die on read/write cases so we can decide what it means later.
8297      Branch: perlio
8298            ! doio.c embed.pl iperlsys.h util.c
8299 ____________________________________________________________________________
8300 [  9293] By: nick                                  on 2001/03/22  09:02:45
8301         Log: perlio tweaks (reported by Nick Clark)
8302              Line buffer ttys, PerlIOBuf_tell() on unseekable off-by one,
8303              error check in Pendinf_read().
8304      Branch: perlio
8305            ! perlio.c
8306 ____________________________________________________________________________
8307 [  9292] By: gsar                                  on 2001/03/22  07:12:00
8308         Log: integrate changes#8306,8532 from mainline (missing USE_PURE_BISON
8309              fixes)
8310      Branch: maint-5.6/perl
8311           !> embed.h embed.pl objXSUB.h perlapi.c perly.y proto.h toke.c
8312 ____________________________________________________________________________
8313 [  9291] By: jhi                                   on 2001/03/22  06:06:44
8314         Log: Regex tests from Chicheng Zhang.  (Already fixed.)
8315      Branch: perl
8316            ! t/op/re_tests
8317 ____________________________________________________________________________
8318 [  9290] By: jhi                                   on 2001/03/22  05:57:01
8319         Log: Move MacOS Classic higher in the list of supported platforms.
8320      Branch: maint-5.6/perl
8321            ! pod/perlport.pod
8322 ____________________________________________________________________________
8323 [  9289] By: gsar                                  on 2001/03/22  05:35:04
8324         Log: revert part of change#6438 for compatibility (av_reify()
8325              appears to be needed to implement av_splice()ish things
8326              in XS)
8327      Branch: maint-5.6/perl
8328            ! embed.pl global.sym objXSUB.h perlapi.c
8329 ____________________________________________________________________________
8330 [  9288] By: gsar                                  on 2001/03/22  03:09:19
8331         Log: update copyright year
8332      Branch: maint-5.6/perl
8333            ! EXTERN.h INTERN.h README av.c av.h cop.h cv.h deb.c doio.c
8334            ! doop.c dump.c form.h gv.c gv.h handy.h hv.c hv.h mg.c mg.h
8335            ! op.c op.h perl.c perl.h perlio.c perly.y pp.c pp.h pp_ctl.c
8336            ! pp_hot.c pp_sys.c regcomp.c regexec.c run.c scope.c sv.c sv.h
8337            ! toke.c utf8.c utf8.h util.c util.h x2p/EXTERN.h x2p/INTERN.h
8338            ! x2p/a2p.c x2p/a2p.h x2p/a2p.y x2p/a2py.c x2p/hash.c x2p/hash.h
8339            ! x2p/proto.h x2p/str.c x2p/str.h x2p/util.c x2p/util.h
8340            ! x2p/walk.c
8341 ____________________________________________________________________________
8342 [  9287] By: jhi                                   on 2001/03/21  20:30:54
8343         Log: Integrate perlio.
8344      Branch: perl
8345           !> ext/Data/Dumper/Dumper.xs
8346 ____________________________________________________________________________
8347 [  9286] By: gsar                                  on 2001/03/21  19:49:54
8348         Log: makefile.mk tweak
8349      Branch: maint-5.6/perl
8350            ! win32/Makefile win32/makefile.mk
8351 ____________________________________________________________________________
8352 [  9285] By: nick                                  on 2001/03/21  19:07:13
8353         Log: Multiplicity fix for Dumper.
8354      Branch: perlio
8355            ! ext/Data/Dumper/Dumper.xs
8356 ____________________________________________________________________________
8357 [  9284] By: nick                                  on 2001/03/21  19:01:07
8358         Log: Integrate mainline - (does not build xTHX issue in Dumper).
8359      Branch: perlio
8360           !> (integrate 27 files)
8361 ____________________________________________________________________________
8362 [  9283] By: jhi                                   on 2001/03/21  17:17:35
8363         Log: Integrate change #9282 from mainline into maintperl,
8364              4-arg UTF-8 substr().
8365      Branch: maint-5.6/perl
8366           !> pp.c
8367 ____________________________________________________________________________
8368 [  9282] By: jhi                                   on 2001/03/21  17:15:43
8369         Log: The #9270 would have leaked a scalar if pp_substr()
8370              returned early.
8371      Branch: perl
8372            ! pp.c
8373 ____________________________________________________________________________
8374 [  9281] By: gsar                                  on 2001/03/21  17:03:14
8375         Log: makefile.mk defaults to GCC, not BORLAND (as mentioned in README.win32)
8376      Branch: maint-5.6/perl
8377            ! win32/makefile.mk
8378 ____________________________________________________________________________
8379 [  9280] By: gsar                                  on 2001/03/21  17:01:20
8380         Log: some tweaks to change#9278 (fork() emulation should be enabled
8381              by setting BUILD_FLAVOR instead of changing the defaults)
8382      Branch: maint-5.6/perl
8383            ! win32/makefile.mk
8384 ____________________________________________________________________________
8385 [  9279] By: gsar                                  on 2001/03/21  16:47:19
8386         Log: integrate change#9271 from mainline; a tweak to Glob.pm docs
8387      Branch: maint-5.6/perl
8388            ! ext/File/Glob/Glob.pm
8389           !> lib/Cwd.pm
8390 ____________________________________________________________________________
8391 [  9278] By: jhi                                   on 2001/03/21  14:35:10
8392         Log: Subject: [PATCH: 5.6.1-trial3] Borland C++ for Win32 fixes
8393              From: "Vadim Konovalov" <watman@inbox.ru>
8394              Date: Wed, 21 Mar 2001 01:53:51 +0300
8395              Message-ID: <004101c0b190$a749ea20$f7c030d4@vad>
8396      Branch: maint-5.6/perl
8397            ! win32/makefile.mk win32/win32sck.c
8398 ____________________________________________________________________________
8399 [  9277] By: jhi                                   on 2001/03/21  13:58:28
8400         Log: Integrate change #9270 from mainline to maintperl:
8401              continued 4-arg UTF-8 substr() fixing.
8402      Branch: maint-5.6/perl
8403           !> pp.c t/op/substr.t
8404 ____________________________________________________________________________
8405 [  9276] By: jhi                                   on 2001/03/21  13:33:00
8406         Log: More pixie cleaning.
8407      Branch: perl
8408            ! Makefile.SH
8409 ____________________________________________________________________________
8410 [  9275] By: jhi                                   on 2001/03/21  03:54:17
8411         Log: Update Changes.
8412      Branch: perl
8413            ! Changes patchlevel.h
8414 ____________________________________________________________________________
8415 [  9274] By: jhi                                   on 2001/03/21  03:48:24
8416         Log: First stab at making Data::Dumper to grok Unicode.
8417              
8418              TODO: tests, EBCDICify.
8419      Branch: perl
8420            ! ext/Data/Dumper/Dumper.pm ext/Data/Dumper/Dumper.xs
8421 ____________________________________________________________________________
8422 [  9273] By: jhi                                   on 2001/03/21  02:23:00
8423         Log: Fix for
8424              
8425              Subject: Memory leak in unquoted print   
8426              From: Benjamin Sugars <bsugars@canoe.ca> 
8427              Date: Tue, 20 Mar 2001 10:02:56 -0500 (EST)
8428              Message-ID: <Pine.LNX.4.21.0103200958180.1538-100000@marmot.rim.canoe.ca>
8429      Branch: perl
8430            ! perlio.c
8431 ____________________________________________________________________________
8432 [  9272] By: jhi                                   on 2001/03/21  01:33:17
8433         Log: Subject: Re: [PATCH] POSIX::getcwd()
8434              From: Benjamin Sugars <bsugars@canoe.ca> 
8435              Date: Mon, 19 Mar 2001 15:07:03 -0500 (EST)
8436              Message-ID: <Pine.LNX.4.21.0103191454500.1820-100000@marmot.rim.canoe.ca>      
8437      Branch: perl
8438            ! ext/POSIX/POSIX.pm ext/POSIX/POSIX.xs
8439 ____________________________________________________________________________
8440 [  9271] By: jhi                                   on 2001/03/21  01:22:52
8441         Log: Subject: [PATCH] Cwd.pm docs
8442              From: Benjamin Sugars <bsugars@canoe.ca>
8443              Date: Tue, 20 Mar 2001 15:33:32 -0500 (EST)
8444              Message-ID: <Pine.LNX.4.21.0103201516550.7893-100000@marmot.rim.canoe.ca>
8445      Branch: perl
8446            ! lib/Cwd.pm
8447 ____________________________________________________________________________
8448 [  9270] By: jhi                                   on 2001/03/21  01:16:29
8449         Log: Continue 4-arg substr() UTF-8 fixage.
8450      Branch: perl
8451            ! pp.c t/op/substr.t
8452 ____________________________________________________________________________
8453 [  9269] By: jhi                                   on 2001/03/21  00:46:14
8454         Log: Integrate changes #9262,9264,9265,9266 from maintperl to mainline.
8455              
8456              revert the leak fix in change#9142 (problem needs a more experimental
8457              fix unsuitable for 5.6.1)
8458              
8459              do alphabetical sorting by default (for csh compatibility)
8460              
8461              cut-n-paste goof in change#9264
8462              
8463              VMS piping fixes (from Charles Lane)
8464      Branch: perl
8465           !> ext/File/Glob/Changes ext/File/Glob/Glob.pm
8466           !> ext/File/Glob/Glob.xs ext/File/Glob/bsd_glob.c
8467           !> ext/File/Glob/bsd_glob.h scope.c vms/vms.c vms/vmspipe.com
8468 ____________________________________________________________________________
8469 [  9268] By: jhi                                   on 2001/03/21  00:37:04
8470         Log: Integrate perlio.
8471      Branch: perl
8472           !> embed.pl lib/utf8.pm op.c regcomp.c regexec.c sv.c toke.c
8473           !> utf8.c utf8.h utfebcdic.h
8474 ____________________________________________________________________________
8475 [  9267] By: nick                                  on 2001/03/20  20:04:39
8476         Log: More EBCDIC stuff:
8477              - Loose the extra level of function on ASCII.
8478              - spotted a chr(0) issue in sv.c
8479              - re-work of UTF-X tr/// ranges to work in Unicode
8480              space. Still issues with the "0xff is illegal UTF-8" hack.
8481              - Yet another ad. hoc. utf8 'upgrade' in op.c recoded
8482              (why do it once when you can do it all over the place :-(
8483              - Enable HINTS_UTF8 on EBCDIC - then ignore it in toke.c,
8484              need utf8.pm for swashes.
8485              - Simplified and commented scan_const() in toke.c
8486              Still something wrong regexp and tr (swashes?).
8487      Branch: perlio
8488            ! embed.pl lib/utf8.pm op.c regcomp.c regexec.c sv.c toke.c
8489            ! utf8.c utf8.h utfebcdic.h
8490 ____________________________________________________________________________
8491 [  9266] By: gsar                                  on 2001/03/20  19:16:43
8492         Log: VMS piping fixes (from Charles Lane)
8493      Branch: maint-5.6/perl
8494            ! vms/vms.c vms/vmspipe.com
8495 ____________________________________________________________________________
8496 [  9265] By: gsar                                  on 2001/03/20  17:53:52
8497         Log: cut-n-paste goof in change#9264
8498      Branch: maint-5.6/perl
8499            ! ext/File/Glob/Glob.xs
8500 ____________________________________________________________________________
8501 [  9264] By: gsar                                  on 2001/03/20  17:43:47
8502         Log: do alphabetical sorting by default (for csh compatibility);
8503              bsd_glob() does ASCII sort by default as usual, unless
8504              GLOB_ALPHASORT was specified
8505      Branch: maint-5.6/perl
8506            ! ext/File/Glob/Changes ext/File/Glob/Glob.pm
8507            ! ext/File/Glob/Glob.xs ext/File/Glob/bsd_glob.c
8508            ! ext/File/Glob/bsd_glob.h
8509 ____________________________________________________________________________
8510 [  9263] By: gsar                                  on 2001/03/20  16:40:08
8511         Log: integrate change#9255 from mainline (unicode fix)
8512              
8513              substr($bytestr, i, n, $charstr)
8514      Branch: maint-5.6/perl
8515           !> Todo-5.6 pp.c t/op/substr.t
8516 ____________________________________________________________________________
8517 [  9262] By: gsar                                  on 2001/03/20  15:57:41
8518         Log: revert the leak fix in change#9142 (problem needs a more experimental
8519              fix unsuitable for 5.6.1)
8520      Branch: maint-5.6/perl
8521            ! scope.c
8522 ____________________________________________________________________________
8523 [  9261] By: jhi                                   on 2001/03/20  14:26:25
8524         Log: Integrate changes #9259,9260 from maintperl into mainline.
8525              
8526              Subject: [MacPerl-Porters] [PATCH] POSIX, File::Path (Mac OS) for 5.6.1 and 5.7
8527              
8528              Subject: [PATCH perl-5.6.1-TRIAL3/run.c] printf warning
8529      Branch: perl
8530           !> ext/POSIX/POSIX.xs lib/File/Path.pm run.c
8531 ____________________________________________________________________________
8532 [  9260] By: jhi                                   on 2001/03/20  14:05:46
8533         Log: Subject: [PATCH perl-5.6.1-TRIAL3/run.c] printf warning
8534              From: Robin Barker <rmb1@cise.npl.co.uk>
8535              Date: Tue, 20 Mar 2001 10:12:04 GMT
8536              Message-Id: <200103201012.KAA04738@tempest.npl.co.uk>
8537      Branch: maint-5.6/perl
8538            ! run.c
8539 ____________________________________________________________________________
8540 [  9259] By: jhi                                   on 2001/03/20  14:04:39
8541         Log: Subject: [MacPerl-Porters] [PATCH] POSIX, File::Path (Mac OS) for 5.6.1 and 5.7
8542              From: Chris Nandor <pudge@pobox.com>
8543              Date: Tue, 20 Mar 2001 00:40:56 -0500
8544              Message-Id: <p05010401b6dc9d57a62d@[10.0.1.107]>
8545      Branch: maint-5.6/perl
8546            ! ext/POSIX/POSIX.xs lib/File/Path.pm
8547 ____________________________________________________________________________
8548 [  9258] By: jhi                                   on 2001/03/20  05:09:34
8549         Log: Update Changes.
8550      Branch: perl
8551            ! Changes patchlevel.h
8552 ____________________________________________________________________________
8553 [  9257] By: jhi                                   on 2001/03/20  05:04:25
8554         Log: tr/// UTF-8 tests for Inaba Hiroto's latest patches.
8555      Branch: perl
8556            ! t/op/tr.t
8557 ____________________________________________________________________________
8558 [  9256] By: jhi                                   on 2001/03/20  04:43:12
8559         Log: Subject: [PATCH: 5.6.1-trial3] test fixes and installation cleanliness for OS/390
8560              From: Peter Prymmer <pvhp@forte.com>
8561              Date: Mon, 19 Mar 2001 16:43:13 -0800 (PST)
8562              Message-ID: <Pine.OSF.4.10.10103191627310.162127-100000@aspara.forte.com>
8563      Branch: maint-5.6/perl
8564            ! installperl t/comp/proto.t t/comp/require.t t/op/regmesg.t
8565 ____________________________________________________________________________
8566 [  9255] By: jhi                                   on 2001/03/19  23:17:17
8567         Log: substr($bytestr, i, n, $charstr)
8568
8569              TODO: we are still broken if $bytestr needs UTF-8 upgrading.
8570      Branch: perl
8571            ! Todo-5.6 pp.c t/op/substr.t
8572 ____________________________________________________________________________
8573 [  9254] By: jhi                                   on 2001/03/19  22:25:09
8574         Log: Rearrange the make test target prerequisites so that
8575              in a parallel make 'all' is finished before 'test'.
8576      Branch: perl
8577            ! Makefile.SH
8578 ____________________________________________________________________________
8579 [  9253] By: jhi                                   on 2001/03/19  21:48:07
8580         Log: Subject: PATCH: cosmetic tweak in pp_ctl.c
8581              From: Robin Houston <robin@kitsite.com>
8582              Date: Mon, 19 Mar 2001 15:48:41 +0000
8583              Message-ID: <20010319154841.A28174@puffinry.freeserve.co.uk>
8584      Branch: perl
8585            ! pp_ctl.c
8586 ____________________________________________________________________________
8587 [  9252] By: jhi                                   on 2001/03/19  21:42:27
8588         Log: Integrate perlio.
8589      Branch: perl
8590           !> doop.c perly.c perly.y sv.c t/camel-III/vstring.t t/op/each.t
8591           !> t/op/length.t t/op/pack.t t/op/ver.t toke.c utf8.c utf8.h
8592           !> utfebcdic.h vms/perly_c.vms
8593 ____________________________________________________________________________
8594 [  9251] By: jhi                                   on 2001/03/19  21:31:28
8595         Log: Integrate changes #9244,9247,9250 from maintperl into mainline.
8596              
8597              Dynaloading in 64-bit AIX with vac.
8598      Branch: perl
8599           !> ext/DynaLoader/dl_aix.xs ext/DynaLoader/hints/aix.pl
8600           !> hints/aix.sh
8601 ____________________________________________________________________________
8602 [  9250] By: jhi                                   on 2001/03/19  21:18:00
8603         Log: A more robust solution for the 64bitall AIX dynaloading
8604              problem, from Jens-Uwe Mager.
8605      Branch: maint-5.6/perl
8606            ! ext/DynaLoader/dl_aix.xs ext/DynaLoader/hints/aix.pl
8607 ____________________________________________________________________________
8608 [  9249] By: nick                                  on 2001/03/19  20:59:37
8609         Log: Integrate mainline.
8610      Branch: perlio
8611           !> (integrate 42 files)
8612 ____________________________________________________________________________
8613 [  9248] By: nick                                  on 2001/03/19  20:22:07
8614         Log: Tweak to perly.y to allow -DDEBUGGING to compile on OS390.
8615              (Building on OS390 uses native YACC and YYDEBUG has other
8616              side effects.)
8617      Branch: perlio
8618            ! perly.c perly.y vms/perly_c.vms
8619 ____________________________________________________________________________
8620 [  9247] By: jhi                                   on 2001/03/19  19:59:53
8621         Log: 64-bit AIX dynaloading problem (see #9244) idea
8622              from Jens-Uwe Mager.
8623      Branch: maint-5.6/perl
8624            ! ext/DynaLoader/dl_aix.xs
8625 ____________________________________________________________________________
8626 [  9246] By: nick                                  on 2001/03/19  19:27:57
8627         Log: More EBCDIC fixes.
8628      Branch: perlio
8629            ! doop.c sv.c t/camel-III/vstring.t t/op/each.t t/op/length.t
8630            ! t/op/pack.t t/op/ver.t toke.c utf8.c utf8.h utfebcdic.h
8631 ____________________________________________________________________________
8632 [  9245] By: jhi                                   on 2001/03/19  19:05:19
8633         Log: Integrate change #9243 from mainline into maintperl.
8634              
8635              Subject: [PATCH perl-5.6.1-TRIAL3/README.vmesa] bad =item paragraphs
8636      Branch: maint-5.6/perl
8637           !> README.vmesa
8638 ____________________________________________________________________________
8639 [  9244] By: jhi                                   on 2001/03/19  19:03:15
8640         Log: Get 64bitall AIX building, but still does not test okay:
8641              dynaloading anything fails, for example for op/defins:
8642              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
8643              (update: fixed by #9247,9250)
8644      Branch: maint-5.6/perl
8645            ! hints/aix.sh
8646 ____________________________________________________________________________
8647 [  9243] By: jhi                                   on 2001/03/19  19:00:16
8648         Log: Subject: [PATCH perl-5.6.1-TRIAL3/README.vmesa] bad =item paragraphs
8649              From: Robin Barker <rmb1@cise.npl.co.uk>
8650              Date: Mon, 19 Mar 2001 18:01:57 GMT
8651              Message-Id: <200103191801.SAA01072@tempest.npl.co.uk>
8652      Branch: perl
8653            ! README.vmesa
8654 ____________________________________________________________________________
8655 [  9242] By: jhi                                   on 2001/03/19  18:58:43
8656         Log: UTF-8 tr/// battle continues, ammunition from Inaba Hiroto.
8657              
8658              TODO: tests.
8659      Branch: perl
8660            ! doop.c op.c
8661 ____________________________________________________________________________
8662 [  9241] By: gsar                                  on 2001/03/19  17:34:46
8663         Log: VMSify tests (from Charles Lane)
8664      Branch: maint-5.6/perl
8665            ! t/lib/filehand.t t/lib/texttabs.t
8666 ____________________________________________________________________________
8667 [  9240] By: jhi                                   on 2001/03/19  14:24:26
8668         Log: Integrate change #9233 from maintperl into mainline.
8669              
8670              some refcounts were incorrect in perl_clone()
8671      Branch: perl
8672           !> sv.c
8673 ____________________________________________________________________________
8674 [  9239] By: gsar                                  on 2001/03/19  09:23:17
8675         Log: this is 5.6.1-trial3
8676      Branch: maint-5.6/perl
8677            ! Changes
8678 ____________________________________________________________________________
8679 [  9238] By: gsar                                  on 2001/03/19  08:47:04
8680         Log: some new symbols are only available under ithreads
8681      Branch: maint-5.6/perl
8682            ! makedef.pl
8683 ____________________________________________________________________________
8684 [  9237] By: gsar                                  on 2001/03/19  08:42:28
8685         Log: update patchlevel.h, Changes, &c.
8686      Branch: maint-5.6/perl
8687            ! Changes patchlevel.h pod/perlhist.pod
8688           !> AUTHORS
8689 ____________________________________________________________________________
8690 [  9236] By: gsar                                  on 2001/03/19  08:17:49
8691         Log: integrate changes#8068,8717 from mainline
8692              
8693              [PATCH 5.7.0@8047] RE: [ID 20001013.009] DB_File issues warning when setting element to    undef
8694              
8695              [PATCH CPAN 1.59_51] warning message (not!)
8696      Branch: maint-5.6/perl
8697           !> ext/GDBM_File/GDBM_File.pm ext/GDBM_File/typemap
8698           !> ext/NDBM_File/NDBM_File.pm ext/NDBM_File/typemap
8699           !> ext/ODBM_File/ODBM_File.pm ext/ODBM_File/typemap
8700           !> ext/SDBM_File/SDBM_File.pm ext/SDBM_File/typemap lib/CPAN.pm
8701           !> t/lib/gdbm.t t/lib/ndbm.t t/lib/odbm.t t/lib/sdbm.t
8702 ____________________________________________________________________________
8703 [  9235] By: gsar                                  on 2001/03/19  08:07:09
8704         Log: integrate changes#8617,8713,8715,8716,8721,8953,8963 from mainline
8705              
8706              [PATCH] Add missing CV flags to dump.c
8707              
8708              Re: [patch] Re: PL_ptr_table
8709              
8710              Fixup non-ithread build after 8713
8711              
8712              Generated files form 8713 etc.
8713              
8714              Correct the correction :-(
8715              
8716              Documenting coderef @INC (Re: CPAN "make this script work" feature)
8717              
8718              Subject: Re: sync sync sync: have I missed any patches?
8719              Replace djSP with dSP.
8720      Branch: maint-5.6/perl
8721           !> cop.h doio.c doop.c dump.c embed.h embed.pl ext/B/B/C.pm
8722           !> ext/B/B/CC.pm global.sym objXSUB.h perl.c perlapi.c
8723           !> pod/perlhack.pod pp.c pp.h pp_ctl.c pp_hot.c pp_sys.c proto.h
8724           !> sv.c sv.h win32/perlhost.h
8725 ____________________________________________________________________________
8726 [  9234] By: gsar                                  on 2001/03/19  07:22:05
8727         Log: revert the change#9090 integrate for now (change looks somewhat
8728              incomplete in that [ha]v_exists() need something similar; lacks
8729              tests; &c.)
8730      Branch: maint-5.6/perl
8731            ! hv.c
8732 ____________________________________________________________________________
8733 [  9233] By: gsar                                  on 2001/03/19  07:10:01
8734         Log: some refcounts were incorrect in perl_clone(); avoid hang in global
8735              destruction when there are unreferenced scalars (SvREFCNT==0)
8736      Branch: maint-5.6/perl
8737            ! sv.c
8738 ____________________________________________________________________________
8739 [  9232] By: jhi                                   on 2001/03/19  05:11:02
8740         Log: Regen api and toc.
8741      Branch: maint-5.6/perl
8742            ! pod/perlapi.pod pod/perltoc.pod
8743 ____________________________________________________________________________
8744 [  9231] By: jhi                                   on 2001/03/19  04:06:03
8745         Log: Integrate changes in #9070,9072,9101 from mainline into maintperl,
8746              add a lost line in pp.c:pp_chop(), update to new op/chop.
8747              
8748              Clarify the description differentiating for and while; inspired by
8749              
8750              Subject: [ID 20010306.004] || != named unary operator
8751              
8752              The $Is_MacOS needs to be declared.
8753      Branch: maint-5.6/perl
8754            ! pp.c t/op/chop.t
8755           !> lib/ExtUtils/Manifest.pm pod/perlop.pod pod/perlsyn.pod
8756 ____________________________________________________________________________
8757 [  9230] By: jhi                                   on 2001/03/19  03:48:16
8758         Log: Integrate changes #7971(perlio),8982,9061,9062,9068,9069,
8759              9079,9083,9089,9090,9091 from mainline to maintperl.
8760              
8761              Quieten some noise in Win32 builds
8762              
8763              Fixes the bugs 20010221.005 and 20010221.008: "the taint checker..."
8764              
8765              The perlretut was still talking about the old \p and \P
8766              definitions.
8767              
8768              More tweakage on the Unicode character class descriptions.
8769              
8770              Subject: Re: [ID 20010305.012] chop() against list assignment returns char chopped from el zero
8771              
8772              Subject: 'no *POSIX' Patch speeding up make on BS2000 
8773              
8774              Subject: [PATCH] perldata.pod here-doc docs
8775              
8776              Add /sbin and /usr/sbin to the list of directories scanned
8777              for setuid programs.  Takes care of bug id 20010309.003.
8778              
8779              Subject: Re: [ID 19990808.001] [PATCH] FETCH triggered on exists()
8780              
8781              In op/stat #35 better to scan all the potential directories
8782              for setuids, not just the first one.
8783      Branch: maint-5.6/perl
8784            ! Makefile.SH
8785           !> doio.c hv.c lib/unicode/mktables.PL makedepend.SH perl.h
8786           !> pod/perldata.pod pod/perlretut.pod pp.c t/op/chop.t
8787           !> t/op/stat.t toke.c win32/win32.h
8788 ____________________________________________________________________________
8789 [  9229] By: jhi                                   on 2001/03/19  02:31:50
8790         Log: Subject: [MacPerl-Porters] [PATCH] Portability fixes for Mac OS / maint-5.6
8791              From: Chris Nandor <pudge@pobox.com>
8792              Date: Sat, 10 Mar 2001 14:22:19 -0500
8793              Message-Id: <p0501042db6cf0a8d0b63@[10.0.1.177]>
8794      Branch: maint-5.6/perl
8795            ! ext/B/defsubs_h.PL ext/DynaLoader/dl_mac.xs
8796            ! ext/Errno/Errno_pm.PL lib/ExtUtils/Manifest.pm perlsfio.h
8797            ! t/lib/b.t t/lib/errno.t
8798 ____________________________________________________________________________
8799 [  9228] By: jhi                                   on 2001/03/19  02:29:59
8800         Log: Integrate changes #9113,9122 from mainline into maintperl.
8801              
8802              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?)
8803      Branch: maint-5.6/perl
8804           !> Configure README.os390 hints/os390.sh
8805 ____________________________________________________________________________
8806 [  9227] By: jhi                                   on 2001/03/19  02:22:35
8807         Log: Integrate #9115,9121,9128,9163,9171,9174,9175 from mainline
8808              into maintperl.
8809              
8810              Subject: Re: [ID 20010305.005] "use integer" doesn't make rand() return integers
8811              
8812              Forgot to check-in the larger part of #9120, duh.
8813              
8814              Subject: Another patch for integer.pm POD 
8815              
8816              h2ph strictness and cleanliness from Kurt Starsinic.
8817              
8818              Borland filename case problem.
8819              
8820              h2ph strictness and cleanliness from Kurt Starsinic.
8821              
8822              Subject: [PATCH] the uncontroversial doc patches
8823      Branch: maint-5.6/perl
8824           +> win32/sncfnmcs.pl
8825           !> MANIFEST README.os2 README.win32 ext/GDBM_File/GDBM_File.pm
8826           !> ext/GDBM_File/GDBM_File.xs lib/integer.pm
8827           !> pod/perl5005delta.pod pod/perldebtut.pod pod/perlfunc.pod
8828           !> pod/perlhack.pod pod/perllexwarn.pod pod/perllocale.pod
8829           !> pod/perllol.pod pod/perlmod.pod pod/perlmodlib.pod
8830           !> pod/perlport.pod pod/perlrun.pod pod/perltoc.pod
8831           !> pod/perlxs.pod pod/perlxstut.pod utils/h2ph.PL
8832 ____________________________________________________________________________
8833 [  9226] By: jhi                                   on 2001/03/19  02:10:21
8834         Log: Integrate changes #9207,9214 from mainline into maintperl.
8835              
8836              podchecker relaxations: =over has an *optional* number after it,
8837              and whitespace in L<> is okay.
8838      Branch: maint-5.6/perl
8839           !> lib/Pod/Checker.pm lib/Pod/ParseUtils.pm pod/perlpod.pod
8840           !> t/pod/poderrs.xr
8841 ____________________________________________________________________________
8842 [  9225] By: jhi                                   on 2001/03/19  02:07:38
8843         Log: Integrate change #9219 from maintperl into mainline.
8844              
8845              remove duplicated tests
8846      Branch: perl
8847           !> t/op/re_tests
8848 ____________________________________________________________________________
8849 [  9224] By: jhi                                   on 2001/03/19  02:06:11
8850         Log: Integrate change #9223 from mainline to maintperl.
8851              
8852              Document -Dmksymlinks.
8853      Branch: maint-5.6/perl
8854           !> INSTALL
8855 ____________________________________________________________________________
8856 [  9223] By: jhi                                   on 2001/03/19  02:01:25
8857         Log: Document -Dmksymlinks.
8858      Branch: perl
8859            ! INSTALL
8860 ____________________________________________________________________________
8861 [  9222] By: jhi                                   on 2001/03/19  01:15:35
8862         Log: The -Dmksymlinks wasn't working for maintperl.
8863      Branch: maint-5.6/perl
8864            ! Configure
8865 ____________________________________________________________________________
8866 [  9221] By: jhi                                   on 2001/03/19  00:49:43
8867         Log: Cleanup pixie residue.
8868      Branch: perl
8869            ! Makefile.SH
8870 ____________________________________________________________________________
8871 [  9220] By: jhi                                   on 2001/03/19  00:44:47
8872         Log: Document the use of pixie/prof; create make targets for it.
8873              
8874              TODO: make t/TEST pixie-aware.
8875      Branch: perl
8876            ! Makefile.SH pod/perlhack.pod
8877 ____________________________________________________________________________
8878 [  9219] By: gsar                                  on 2001/03/19  00:16:55
8879         Log: remove duplicated tests
8880      Branch: maint-5.6/perl
8881            ! t/op/re_tests
8882 ____________________________________________________________________________
8883 [  9218] By: jhi                                   on 2001/03/18  23:59:31
8884         Log: Document Third Degree some more, and also PERL_DESTRUCT_LEVEL.
8885      Branch: perl
8886            ! pod/perlhack.pod pod/perlobj.pod pod/perlrun.pod
8887 ____________________________________________________________________________
8888 [  9217] By: jhi                                   on 2001/03/18  23:25:20
8889         Log: Rewrite the tests section of Makefile to be less redundant
8890              and to allow for more flexible test targets, many recursive
8891              make calls introduced.
8892      Branch: perl
8893            ! Makefile.SH
8894 ____________________________________________________________________________
8895 [  9216] By: jhi                                   on 2001/03/18  22:30:04
8896         Log: Document the use of Third Degree (sparsely).
8897      Branch: perl
8898            ! pod/perlhack.pod t/TEST
8899 ____________________________________________________________________________
8900 [  9215] By: jhi                                   on 2001/03/18  22:10:30
8901         Log: Make targets for testing with Third Degree.
8902      Branch: perl
8903            ! Makefile.SH
8904 ____________________________________________________________________________
8905 [  9214] By: jhi                                   on 2001/03/18  21:08:53
8906         Log: The podchecker relaxations need to mirrored also at the tests.
8907      Branch: perl
8908            ! t/pod/poderrs.xr
8909 ____________________________________________________________________________
8910 [  9213] By: jhi                                   on 2001/03/18  20:56:21
8911         Log: Update Changes.
8912      Branch: perl
8913            ! Changes patchlevel.h
8914 ____________________________________________________________________________
8915 [  9212] By: jhi                                   on 2001/03/18  20:36:59
8916         Log: Looking for config.sh in parent directories isn't
8917              very useful for the toplevel Makefile.
8918      Branch: perl
8919            ! Makefile.SH
8920 ____________________________________________________________________________
8921 [  9211] By: jhi                                   on 2001/03/18  20:33:37
8922         Log: On "make clean" take care of Third Degree droppings.
8923      Branch: perl
8924            ! Makefile.SH
8925 ____________________________________________________________________________
8926 [  9210] By: jhi                                   on 2001/03/18  20:21:34
8927         Log: Add a hook for running the tests under the Third Degree
8928              debugging tool (set $ENV{PERL_3LOG} to non-zero)
8929              
8930              TODO: Document the use of Third Degree.
8931      Branch: perl
8932            ! t/TEST
8933 ____________________________________________________________________________
8934 [  9209] By: jhi                                   on 2001/03/18  20:19:07
8935         Log: Regen toc and api pods.
8936      Branch: perl
8937            ! pod/perlapi.pod pod/perltoc.pod
8938 ____________________________________________________________________________
8939 [  9208] By: jhi                                   on 2001/03/18  20:12:12
8940         Log: Integrate changes #8128,9132 from mainline into maintperl,
8941              Tie::SubstrHash fixes.
8942      Branch: maint-5.6/perl
8943           !> lib/Tie/SubstrHash.pm t/lib/tie-substrhash.t
8944 ____________________________________________________________________________
8945 [  9207] By: jhi                                   on 2001/03/18  20:07:43
8946         Log: podchecker relaxations from Michael Stevens.
8947      Branch: perl
8948            ! lib/Pod/Checker.pm lib/Pod/ParseUtils.pm pod/perlpod.pod
8949 ____________________________________________________________________________
8950 [  9206] By: jhi                                   on 2001/03/18  20:04:24
8951         Log: Retract the changes made at #9176 to Neil's and Ilya's module pods.
8952      Branch: perl
8953            ! lib/Locale/Constants.pm lib/Locale/Country.pm
8954            ! lib/Locale/Currency.pm lib/Locale/Language.pm lib/overload.pm
8955            ! os2/OS2/ExtAttr/ExtAttr.pm os2/OS2/Process/Process.pm
8956 ____________________________________________________________________________
8957 [  9205] By: jhi                                   on 2001/03/18  19:54:45
8958         Log: Integrate changes #9161,9162 from maintperl to mainline.
8959              
8960              clearing of $ENV{PERL_DESTRUCT_LEVEL} interferes with purify
8961              results
8962      Branch: perl
8963           !> t/op/magic.t
8964 ____________________________________________________________________________
8965 [  9204] By: jhi                                   on 2001/03/18  19:37:46
8966         Log: Make perl.third checks more understandable to the builder.
8967      Branch: perl
8968            ! Makefile.SH
8969 ____________________________________________________________________________
8970 [  9203] By: jhi                                   on 2001/03/18  19:20:54
8971         Log: Re-integrate #9138 from maintperl to mainline,
8972              the squelching of the unneeded "Scalars leaked" messages.
8973      Branch: perl
8974           !> t/comp/proto.t t/op/lex_assign.t t/op/local.t t/op/pat.t
8975           !> t/op/regexp.t t/pragma/strict-vars t/pragma/warn/op
8976           !> t/pragma/warn/regcomp t/pragma/warn/toke t/pragma/warnings.t
8977 ____________________________________________________________________________
8978 [  9202] By: jhi                                   on 2001/03/18  18:48:36
8979         Log: More robust and more paranoid perl.third target.
8980      Branch: perl
8981            ! Makefile.SH
8982 ____________________________________________________________________________
8983 [  9201] By: jhi                                   on 2001/03/18  18:39:21
8984         Log: Integrate change #9197 from maintperl to mainline.
8985              
8986              more thorough cleaning of arenas.
8987      Branch: perl
8988           !> embed.pl perl.c proto.h sv.c t/op/sort.t
8989 ____________________________________________________________________________
8990 [  9200] By: jhi                                   on 2001/03/18  18:25:17
8991         Log: Integrate perlio.
8992      Branch: perl
8993           !> doop.c ext/Encode/Encode.pm ext/Encode/Encode.xs
8994           !> ext/Encode/compile lib/utf8.pm pp_ctl.c sv.c t/lib/b.t
8995           !> t/lib/encode.t toke.c universal.c utf8.c
8996 ____________________________________________________________________________
8997 [  9199] By: nick                                  on 2001/03/18  15:23:51
8998         Log: Prefer !UTF8_IS_INVARIANT() over UTF8_IS_CONTINUED() when that
8999              is the sense of the test being done. Avoid some magical 127 and 128 values
9000              by using macros.
9001      Branch: perlio
9002            ! doop.c pp_ctl.c sv.c toke.c
9003 ____________________________________________________________________________
9004 [  9198] By: nick                                  on 2001/03/18  14:18:12
9005         Log: UTF-X encoding invariance for Encode:
9006              - move Encode::utf8_encode to utf8::encode (likewise decode,upgrade,downgrade,valid)
9007              - move the XS code for those to universal.c (so in miniperl)
9008              - add utf8::unicode_to_native and its inverse to allow EBCDIC to work in true unicode.
9009              - change ext/Encode/compile to use above.
9010              - Fix t/lib/encode.t for above
9011              - Teach t/lib/b.t to expect -uutf8
9012              - In utf8.c look for SWASHNEW rather than just utf8:: package to see if
9013              utf8.pm is needed.
9014      Branch: perlio
9015            ! ext/Encode/Encode.pm ext/Encode/Encode.xs ext/Encode/compile
9016            ! lib/utf8.pm t/lib/b.t t/lib/encode.t universal.c utf8.c
9017 ____________________________________________________________________________
9018 [  9197] By: gsar                                  on 2001/03/18  12:15:57
9019         Log: more thorough cleaning of arenas--keep going until no more
9020              SvREFCNT_dec()s occur (this fixes the problem that causes the
9021              pesky "Scalars leaked" warnings)
9022      Branch: maint-5.6/perl
9023            ! embed.pl perl.c proto.h sv.c t/op/sort.t
9024 ____________________________________________________________________________
9025 [  9196] By: nick                                  on 2001/03/18  10:57:29
9026         Log: Fix pragma/utf8.t # 15
9027              - if toke.c is processing a SvUTF8 string then single quoted '...' etc.
9028              are SvUTF8 as well.
9029      Branch: perlio
9030            ! toke.c
9031 ____________________________________________________________________________
9032 [  9195] By: nick                                  on 2001/03/18  09:27:06
9033         Log: Integrate mainline
9034      Branch: perlio
9035           !> MANIFEST Makefile.SH doop.c mg.c op.c op.h t/op/misc.t
9036           !> t/op/pat.t
9037 ____________________________________________________________________________
9038 [  9194] By: jhi                                   on 2001/03/18  05:29:59
9039         Log: Sarathy's clear_pmop patch with Radu Greab's fix,
9040              Hiroto's, Nick Clark's, and Vadim Konovalov's tests.
9041      Branch: perl
9042            ! op.c op.h t/op/misc.t t/op/pat.t
9043 ____________________________________________________________________________
9044 [  9193] By: jhi                                   on 2001/03/18  05:15:06
9045         Log: NI-S' cunning idea of how to de-UTF8 the "\C-broken" submatches.
9046      Branch: perl
9047            ! mg.c t/op/pat.t
9048 ____________________________________________________________________________
9049 [  9192] By: jhi                                   on 2001/03/18  04:22:43
9050         Log: tr/// UTF-8 patches from Inaba Hiroto.
9051      Branch: perl
9052            ! doop.c op.c
9053 ____________________________________________________________________________
9054 [  9191] By: jhi                                   on 2001/03/18  04:21:17
9055         Log: Integrate perlio.
9056      Branch: perl
9057           !> utf8.c utfebcdic.h
9058 ____________________________________________________________________________
9059 [  9190] By: nick                                  on 2001/03/17  20:32:01
9060         Log: Correct #if EBCDIC side typos.
9061              Builds and passes many tests on OS390.
9062      Branch: perlio
9063            ! utf8.c utfebcdic.h
9064 ____________________________________________________________________________
9065 [  9189] By: jhi                                   on 2001/03/17  18:55:49
9066         Log: Add prerequisites for the perl.third target.
9067      Branch: perl
9068            ! Makefile.SH
9069 ____________________________________________________________________________
9070 [  9188] By: jhi                                   on 2001/03/17  18:46:00
9071         Log: Integrate perlio.
9072      Branch: perl
9073           +> utfebcdic.h
9074           !> MANIFEST doop.c perl.h pp.c utf8.c utf8.h
9075 ____________________________________________________________________________
9076 [  9187] By: jhi                                   on 2001/03/17  18:38:47
9077         Log: Add a make rule for perl.third (the Third Degree memory debugging
9078              tool of Tru64 / Digital UNIX / DEC OSF/1, see man third or man atom)
9079      Branch: perl
9080            ! Makefile.SH
9081 ____________________________________________________________________________
9082 [  9186] By: nick                                  on 2001/03/17  18:34:48
9083         Log: MANIFEST addition :-(
9084      Branch: perlio
9085            ! MANIFEST
9086 ____________________________________________________________________________
9087 [  9185] By: nick                                  on 2001/03/17  18:29:50
9088         Log: Infrastructure to use UTF-EBCDIC rather than UTF-8 as the internal
9089              encoding on EBCDIC platforms. This has property that U+0000..U+009F i.e.
9090              a superset of ASCII are invariant under the encoding. This is EBCDIC
9091              friendly as an encoded string can be looked at as being EBCDIC by lexer
9092              sprintf("%d",...) etc. in same manner that a UTF-8 string be considered
9093              ASCII on ASCII machines.
9094              
9095              - re-arrange utf8.h to get ASCII specific vs Unicode generic bits
9096              seperate.
9097              - Add some more macros to comprehend different shift amounts and
9098              possible swizzle in UTF-EBCDIC vs UTF-8. Change utf8.c to use them.
9099              - add utfebcdic.h which provides UTF-EBCDIC versions of the macros,
9100              and conditionaly #include it.
9101              
9102              EBCDIC build as yet untested.  ASCII still fails the one test.
9103      Branch: perlio
9104            + utfebcdic.h
9105            ! utf8.c utf8.h
9106 ____________________________________________________________________________
9107 [  9184] By: nick                                  on 2001/03/17  17:44:16
9108         Log: Minor naming change UTF8_IS_ASCII => UTF8_IS_INVARIANT
9109      Branch: perlio
9110            ! doop.c perl.h pp.c utf8.h
9111 ____________________________________________________________________________
9112 [  9183] By: jhi                                   on 2001/03/17  15:55:42
9113         Log: Integrate perlio.
9114      Branch: perl
9115            ! MANIFEST
9116           !> perl.h sv.c t/op/pat.t toke.c utf8.c utf8.h
9117 ____________________________________________________________________________
9118 [  9182] By: nick                                  on 2001/03/17  09:16:06
9119         Log: Allow test to pass even when \C leaves SvUTF8 set by adding 'use bytes'
9120      Branch: perlio
9121            ! t/op/pat.t
9122 ____________________________________________________________________________
9123 [  9181] By: nick                                  on 2001/03/17  09:15:11
9124         Log: Integrate mainline.
9125      Branch: perlio
9126           +> lib/Locale/Constants.pm lib/Locale/Country.pm
9127           +> lib/Locale/Currency.pm lib/Locale/Language.pm t/lib/lc-all.t
9128           +> t/lib/lc-constants.t t/lib/lc-country.t t/lib/lc-currency.t
9129           +> t/lib/lc-language.t t/lib/lc-uk.t win32/sncfnmcs.pl
9130           !> (integrate 83 files)
9131 ____________________________________________________________________________
9132 [  9180] By: nick                                  on 2001/03/16  17:23:21
9133         Log: EBCDIC Fixes.
9134      Branch: perlio
9135            ! perl.h sv.c toke.c utf8.c utf8.h
9136 ____________________________________________________________________________
9137 [  9179] By: jhi                                   on 2001/03/16  14:10:12
9138         Log: Re-apply #9024 as the Storable 1.0.11 (#9069) overwrote
9139              a change needed to work around an AIX compiler bug.
9140      Branch: perl
9141            ! ext/Storable/Storable.xs
9142 ____________________________________________________________________________
9143 [  9178] By: jhi                                   on 2001/03/16  03:19:59
9144         Log: With Damian's approval synchronize damian's modules'
9145              licensing with Perl's standard module licensing.
9146      Branch: perl
9147            ! lib/Filter/Simple.pm lib/Switch.pm lib/Text/Balanced.pod
9148 ____________________________________________________________________________
9149 [  9177] By: jhi                                   on 2001/03/16  03:15:34
9150         Log: Make the Filter::Util:Call files have their own copies
9151              of the Perl standard module licensing, from Paul Marquess.
9152      Branch: perl
9153            ! ext/Filter/Util/Call/Call.pm ext/Filter/Util/Call/Call.xs
9154 ____________________________________________________________________________
9155 [  9176] By: jhi                                   on 2001/03/16  02:56:04
9156         Log: Subject: [PATCH] more pod patches
9157              From: Michael Stevens <michael@etla.org>
9158              Date: Thu, 15 Mar 2001 21:25:18 +0000
9159              Message-ID: <20010315212518.A18870@firedrake.org>
9160      Branch: perl
9161            ! configpm ext/B/B/Bytecode.pm ext/DB_File/DB_File.pm
9162            ! ext/Data/Dumper/Dumper.pm ext/Devel/Peek/Peek.pm
9163            ! ext/Filter/Util/Call/Call.pm ext/IO/lib/IO/Handle.pm
9164            ! ext/IO/lib/IO/Seekable.pm ext/IO/lib/IO/Socket/UNIX.pm
9165            ! ext/IPC/SysV/Msg.pm ext/IPC/SysV/Semaphore.pm
9166            ! ext/IPC/SysV/SysV.pm ext/NDBM_File/NDBM_File.pm
9167            ! ext/ODBM_File/ODBM_File.pm ext/Socket/Socket.pm
9168            ! ext/Storable/Storable.pm ext/Sys/Syslog/Syslog.pm
9169            ! ext/Thread/Thread.pm ext/Thread/Thread/Queue.pm
9170            ! ext/attrs/attrs.pm jpl/JNI/JNI.pm lib/CPAN.pm
9171            ! lib/Class/Struct.pm lib/Dumpvalue.pm lib/ExtUtils/Embed.pm
9172            ! lib/ExtUtils/Installed.pm lib/ExtUtils/MM_Cygwin.pm
9173            ! lib/ExtUtils/MM_OS2.pm lib/ExtUtils/MM_VMS.pm
9174            ! lib/ExtUtils/MM_Win32.pm lib/ExtUtils/Manifest.pm
9175            ! lib/ExtUtils/Mksymlists.pm lib/ExtUtils/Packlist.pm
9176            ! lib/File/Basename.pm lib/File/Spec/VMS.pm
9177            ! lib/File/Spec/Win32.pm lib/FileHandle.pm lib/Filter/Simple.pm
9178            ! lib/Getopt/Long.pm lib/Locale/Constants.pm
9179            ! lib/Locale/Country.pm lib/Locale/Language.pm
9180            ! lib/Term/ANSIColor.pm lib/Test.pm lib/Test/Harness.pm
9181            ! lib/Text/Wrap.pm lib/Tie/Array.pm lib/Tie/Handle.pm
9182            ! lib/Tie/Hash.pm lib/Tie/Scalar.pm lib/User/pwent.pm
9183            ! lib/autouse.pm lib/overload.pm os2/OS2/ExtAttr/ExtAttr.pm
9184            ! os2/OS2/Process/Process.pm
9185 ____________________________________________________________________________
9186 [  9175] By: jhi                                   on 2001/03/16  02:53:32
9187         Log: Subject: [PATCH] the uncontroversial doc patches
9188              From: Michael Stevens <michael@etla.org>
9189              Date: Thu, 15 Mar 2001 20:01:12 +0000
9190              Message-ID: <20010315200112.A7636@firedrake.org>
9191      Branch: perl
9192            ! pod/perl5005delta.pod pod/perldebtut.pod pod/perldelta.pod
9193            ! pod/perlfunc.pod pod/perlhack.pod pod/perllexwarn.pod
9194            ! pod/perllocale.pod pod/perllol.pod pod/perlmod.pod
9195            ! pod/perlmodlib.pod pod/perlport.pod pod/perlrun.pod
9196            ! pod/perltoc.pod pod/perlxs.pod pod/perlxstut.pod
9197 ____________________________________________________________________________
9198 [  9174] By: jhi                                   on 2001/03/16  02:50:49
9199         Log: Subject: [PATCH 5.6.1] ext/GDBM_File GDBM_NOLOCK constant
9200              From: Paul Lindner <lindner@inuus.com>
9201              Date: Fri, 16 Mar 2001 11:28:03 -0800
9202              Message-ID: <20010316112803.A7577@inuus.com>
9203      Branch: perl
9204            ! ext/GDBM_File/GDBM_File.pm ext/GDBM_File/GDBM_File.xs
9205 ____________________________________________________________________________
9206 [  9173] By: nick                                  on 2001/03/15  20:21:03
9207         Log: 1st day's EBCDIC fixes:
9208              - toke.c's parsing of strings needed attention
9209              needed to conditionally e2a if string was already UTF-8
9210              - e2a/a2e tables where wrong way round.
9211              - new macros in utf8.h
9212      Branch: perlio
9213            ! perl.h toke.c utf8.h
9214 ____________________________________________________________________________
9215 [  9172] By: jhi                                   on 2001/03/15  15:17:17
9216         Log: Update Changes.
9217      Branch: perl
9218            ! Changes patchlevel.h
9219 ____________________________________________________________________________
9220 [  9171] By: jhi                                   on 2001/03/15  15:09:32
9221         Log: Subject: Re: Another Borland C++ problem.
9222              From: "Vadim Konovalov" <watman@inbox.ru>
9223              Date: Sat, 10 Mar 2001 19:26:07 +0300
9224              Message-ID: <001601c0a97f$143fcc40$da7b55c2@vad>
9225              
9226              Borland filename case problem.
9227      Branch: perl
9228            + win32/sncfnmcs.pl
9229            ! MANIFEST README.win32
9230 ____________________________________________________________________________
9231 [  9170] By: jhi                                   on 2001/03/15  14:54:23
9232         Log: Add Locale::Codes 1.06, from Neil Bowers.
9233      Branch: perl
9234            + lib/Locale/Constants.pm lib/Locale/Country.pm
9235            + lib/Locale/Currency.pm lib/Locale/Language.pm t/lib/lc-all.t
9236            + t/lib/lc-constants.t t/lib/lc-country.t t/lib/lc-currency.t
9237            + t/lib/lc-language.t t/lib/lc-uk.t
9238            ! MANIFEST
9239 ____________________________________________________________________________
9240 [  9169] By: jhi                                   on 2001/03/15  14:19:01
9241         Log: Upgrade to Storable 1.0.11, from Raphael Manfredi.
9242      Branch: perl
9243            ! ext/Storable/ChangeLog ext/Storable/Storable.pm
9244            ! ext/Storable/Storable.xs
9245 ____________________________________________________________________________
9246 [  9168] By: jhi                                   on 2001/03/15  14:13:22
9247         Log: Integrate changes #9120,9167 from mainline to maintperl.
9248              
9249              Subject: [PATCH 5.6.1] OS/2 docs
9250              
9251              Subject: [PATCH 5.6.1] perldoc
9252      Branch: maint-5.6/perl
9253           !> os2/Changes utils/perldoc.PL
9254 ____________________________________________________________________________
9255 [  9167] By: jhi                                   on 2001/03/15  14:07:42
9256         Log: Subject: [PATCH 5.6.1] perldoc
9257              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
9258              Date: Wed, 14 Mar 2001 23:46:52 -0500
9259              Message-ID: <20010314234652.A7972@math.ohio-state.edu>
9260      Branch: perl
9261            ! utils/perldoc.PL
9262 ____________________________________________________________________________
9263 [  9166] By: jhi                                   on 2001/03/15  13:53:15
9264         Log: sigaction test condition tweakage.
9265      Branch: perl
9266            ! t/lib/sigaction.t
9267 ____________________________________________________________________________
9268 [  9165] By: alanbur                               on 2001/03/15  03:49:17
9269         Log: Resynchronised with parent
9270      Branch: maint-5.6/pureperl
9271           +> os2/os2add.sym t/op/anonsub.t
9272           !> (integrate 72 files)
9273 ____________________________________________________________________________
9274 [  9164] By: jhi                                   on 2001/03/15  01:05:01
9275         Log: Avoid stomping off the beginning of an array in tr///.
9276      Branch: perl
9277            ! op.c
9278 ____________________________________________________________________________
9279 [  9163] By: jhi                                   on 2001/03/15  00:58:57
9280         Log: h2ph strictness and cleanliness from Kurt Starsinic.
9281      Branch: perl
9282            ! utils/h2ph.PL
9283 ____________________________________________________________________________
9284 [  9162] By: gsar                                  on 2001/03/15  00:56:53
9285         Log: avoid warnings
9286      Branch: maint-5.6/perl
9287            ! t/op/magic.t
9288 ____________________________________________________________________________
9289 [  9161] By: gsar                                  on 2001/03/15  00:52:09
9290         Log: clearing of $ENV{PERL_DESTRUCT_LEVEL} interferes with purify
9291              results
9292      Branch: maint-5.6/perl
9293            ! t/op/magic.t
9294 ____________________________________________________________________________
9295 [  9160] By: jhi                                   on 2001/03/14  22:02:10
9296         Log: Do not use the Perl malloc in IRIX, suggested by
9297              Helmus Jarausch.
9298      Branch: perl
9299            ! hints/irix_6.sh
9300 ____________________________________________________________________________
9301 [  9159] By: nick                                  on 2001/03/14  21:45:59
9302         Log: Integrate mainline
9303      Branch: perlio
9304           +> t/op/loopctl.t
9305           !> (integrate 41 files)
9306 ____________________________________________________________________________
9307 [  9158] By: jhi                                   on 2001/03/14  21:10:09
9308         Log: The Day of the Retractions continues: the #9138
9309              (integrated in #9144) doesn't work well in mainline.
9310      Branch: perl
9311            ! t/comp/proto.t t/op/lex_assign.t t/op/local.t t/op/pat.t
9312            ! t/op/regexp.t t/pragma/strict-vars t/pragma/warn/op
9313            ! t/pragma/warn/regcomp t/pragma/warn/toke t/pragma/warnings.t
9314 ____________________________________________________________________________
9315 [  9157] By: jhi                                   on 2001/03/14  20:58:12
9316         Log: The #9145 CANNOT be enabled: the clear_pmop code still
9317              dumps core all over in Tru64.
9318      Branch: perl
9319            ! op.c op.h t/op/pat.t
9320 ____________________________________________________________________________
9321 [  9156] By: jhi                                   on 2001/03/14  20:48:06
9322         Log: Integrate change #9154 from maintperl to mainline.
9323              
9324              PerlIO_stdoutf() wasn't properly supported under PERL_IMPLICIT_SYS
9325              (caused Storable 1.0.10 to break on windows)
9326      Branch: perl
9327           !> embed.h embed.pl global.sym globals.c iperlsys.h objXSUB.h
9328           !> perlapi.c proto.h
9329 ____________________________________________________________________________
9330 [  9155] By: jhi                                   on 2001/03/14  20:23:53
9331         Log: Retract #9136: breaks threading (and binary compatibility).
9332      Branch: perl
9333            ! ext/DynaLoader/dl_aix.xs hints/aix.sh makedef.pl
9334 ____________________________________________________________________________
9335 [  9154] By: gsar                                  on 2001/03/14  17:48:18
9336         Log: PerlIO_stdoutf() wasn't properly supported under PERL_IMPLICIT_SYS
9337              (caused Storable 1.0.10 to break on windows)
9338      Branch: maint-5.6/perl
9339            ! embed.h embed.pl global.sym globals.c iperlsys.h objXSUB.h
9340            ! perlapi.c proto.h
9341 ____________________________________________________________________________
9342 [  9153] By: jhi                                   on 2001/03/14  13:35:21
9343         Log: Tweaked a tweak from H.Merijn Brand on the sigaction test.
9344      Branch: perl
9345            ! t/lib/sigaction.t
9346 ____________________________________________________________________________
9347 [  9152] By: gsar                                  on 2001/03/14  07:29:40
9348         Log: back out changes#9012,9010,9009 and parts of change#9016
9349              (causes ABRs under purify, and some prerequisites don't
9350              seem to be there in 5.6.x)
9351      Branch: maint-5.6/perl
9352            ! doop.c op.c t/op/tr.t toke.c
9353 ____________________________________________________________________________
9354 [  9151] By: gsar                                  on 2001/03/14  07:01:29
9355         Log: reenable change#9145 (the test was busted due to a missing
9356              C<print "ok 27\n">)
9357      Branch: perl
9358            ! op.c op.h t/op/pat.t
9359 ____________________________________________________________________________
9360 [  9150] By: jhi                                   on 2001/03/14  06:38:36
9361         Log: Retract #9145.
9362      Branch: perl
9363            ! op.c op.h t/op/pat.t
9364 ____________________________________________________________________________
9365 [  9149] By: jhi                                   on 2001/03/14  06:14:56
9366         Log: Retract #9143.
9367      Branch: perl
9368            ! op.c
9369 ____________________________________________________________________________
9370 [  9148] By: gsar                                  on 2001/03/14  06:13:02
9371         Log: Uninitialized Memory Read in regexec.c
9372      Branch: perl
9373            ! regexec.c
9374 ____________________________________________________________________________
9375 [  9147] By: jhi                                   on 2001/03/14  04:59:54
9376         Log: Subject: PATCH: make goto work in nested eval ""
9377              From: Robin Houston <robin@kitsite.com>
9378              Date: Wed, 14 Mar 2001 04:16:10 +0000
9379              Message-ID: <20010314041610.A16307@puffinry.freeserve.co.uk>
9380      Branch: perl
9381            ! pp_ctl.c t/op/goto.t
9382 ____________________________________________________________________________
9383 [  9146] By: jhi                                   on 2001/03/14  04:42:54
9384         Log: Preserve the #ifdef PERL_CORE in perly.h.
9385      Branch: perl
9386            ! perly.fixer
9387 ____________________________________________________________________________
9388 [  9145] By: jhi                                   on 2001/03/14  03:57:41
9389         Log: (Retracted by #9150.)
9390      Branch: perl
9391            ! op.c op.h t/op/pat.t
9392 ____________________________________________________________________________
9393 [  9144] By: jhi                                   on 2001/03/14  03:50:38
9394         Log: Integrate changes #9137,9138,9142 from maintperl into mainline.
9395              
9396              fix leak in pregcomp() when RE fails to compile (e.g. m/\\/)
9397              
9398              remove squelch controls for "Scalars leaked" messages in most places
9399              (these are now cured)
9400              
9401              fix another memory leak reported by purify (tie callbacks that
9402              croak can leak when wiping out magic)
9403      Branch: perl
9404           !> regcomp.c scope.c t/comp/proto.t t/op/lex_assign.t
9405           !> t/op/local.t t/op/pat.t t/op/regexp.t t/pragma/strict-vars
9406           !> t/pragma/warn/op t/pragma/warn/regcomp t/pragma/warn/toke
9407           !> t/pragma/warnings.t
9408 ____________________________________________________________________________
9409 [  9143] By: jhi                                   on 2001/03/14  03:37:53
9410         Log: (Retracted by #9149.)
9411      Branch: perl
9412            ! op.c
9413 ____________________________________________________________________________
9414 [  9142] By: gsar                                  on 2001/03/14  03:20:48
9415         Log: fix another memory leak reported by purify (tie callbacks that
9416              croak can leak when wiping out magic)
9417      Branch: maint-5.6/perl
9418            ! scope.c
9419 ____________________________________________________________________________
9420 [  9141] By: jhi                                   on 2001/03/14  02:55:00
9421         Log: Subject: PATCH for [ID 20010305.003]
9422              From: Robin Houston <robin@kitsite.com>
9423              Date: Wed, 14 Mar 2001 02:45:51 +0000
9424              Message-ID: <20010314024551.A16207@puffinry.freeserve.co.uk>
9425      Branch: perl
9426            ! pp_ctl.c t/op/eval.t
9427 ____________________________________________________________________________
9428 [  9140] By: jhi                                   on 2001/03/14  02:41:54
9429         Log: Subject: Re: [ID 20010309.004] my-variables lose values while goto'ing within a for(;;)-loop
9430              Date: Wed, 14 Mar 2001 01:52:51 +0000
9431              From: Robin Houston <robin@kitsite.com>
9432              Message-ID: <20010314015251.B16112@puffinry.freeserve.co.uk>
9433              
9434              Fix for 2000313.004.
9435      Branch: perl
9436            ! pp_ctl.c t/op/goto.t
9437 ____________________________________________________________________________
9438 [  9139] By: jhi                                   on 2001/03/14  02:40:50
9439         Log: Subject: Re: [ID 20010309.004] my-variables lose values while goto'ing within a for(;;)-loop
9440              From: Robin Houston <robin@kitsite.com>
9441              Date: Wed, 14 Mar 2001 00:43:45 +0000
9442              Message-ID: <20010314004345.A15892@puffinry.freeserve.co.uk>
9443      Branch: perl
9444            + t/op/loopctl.t
9445            ! AUTHORS MANIFEST perly.c perly.y perly_c.diff t/op/goto.t
9446            ! vms/perly_c.vms
9447 ____________________________________________________________________________
9448 [  9138] By: gsar                                  on 2001/03/14  01:18:00
9449         Log: remove squelch controls for "Scalars leaked" messages in most places
9450              (these are now cured)
9451      Branch: maint-5.6/perl
9452            ! t/comp/proto.t t/op/lex_assign.t t/op/local.t t/op/pat.t
9453            ! t/op/regexp.t t/pragma/strict-vars t/pragma/warn/op
9454            ! t/pragma/warn/regcomp t/pragma/warn/toke t/pragma/warnings.t
9455 ____________________________________________________________________________
9456 [  9137] By: gsar                                  on 2001/03/14  00:57:04
9457         Log: fix leak in pregcomp() when RE fails to compile (e.g. m/\\/)
9458      Branch: maint-5.6/perl
9459            ! regcomp.c
9460 ____________________________________________________________________________
9461 [  9136] By: jhi                                   on 2001/03/13  23:12:24
9462         Log: (Retracted by #9155)
9463              
9464              Subject: Re: [gsar@ActiveState.com: v5.6.1 trial2 is available]
9465              From: Jens-Uwe Mager <jum@helios.de>
9466              Date: Wed, 21 Feb 2001 21:32:04 +0100
9467              Message-ID: <20010221213203.A18340@ans.helios.de>
9468      Branch: perl
9469            ! ext/DynaLoader/dl_aix.xs hints/aix.sh makedef.pl
9470 ____________________________________________________________________________
9471 [  9135] By: jhi                                   on 2001/03/13  22:50:05
9472         Log: Integrate perlio.
9473      Branch: perl
9474           !> pp.c
9475 ____________________________________________________________________________
9476 [  9134] By: jhi                                   on 2001/03/13  22:49:05
9477         Log: Integrate change #9131 from maintperl into mainline.
9478              
9479              make the error text look more consistent in hints/hpux.sh
9480      Branch: perl
9481           !> hints/hpux.sh
9482 ____________________________________________________________________________
9483 [  9133] By: gsar                                  on 2001/03/13  22:46:20
9484         Log: integrate change#9067 from mainline
9485              
9486              Re: [PATCH: 5.6.1 trial2] DynaLoading for OS/390 build option
9487      Branch: maint-5.6/perl
9488           !> lib/ExtUtils/MM_Unix.pm
9489 ____________________________________________________________________________
9490 [  9132] By: jhi                                   on 2001/03/13  22:41:21
9491         Log: Subject:  Re: [ID 20010309.004] my-variables lose values while goto'ing within a for(;;)-loop
9492              From: "John P. Linderman" <jpl@research.att.com>
9493              Date: Tue, 13 Mar 2001 12:36:32 -0500 (EST)
9494              Message-Id: <200103131736.MAA35615@raptor.research.att.com>
9495              
9496              A more correct prime finder.
9497      Branch: perl
9498            ! lib/Tie/SubstrHash.pm
9499 ____________________________________________________________________________
9500 [  9131] By: gsar                                  on 2001/03/13  22:30:42
9501         Log: make the error text look more consistent in hints/hpux.sh
9502      Branch: maint-5.6/perl
9503            ! hints/hpux.sh
9504 ____________________________________________________________________________
9505 [  9130] By: jhi                                   on 2001/03/13  22:23:44
9506         Log: Subject: Re: 9122 and sigaction/switch on HP-UX 11.00
9507              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
9508              Date: Tue, 13 Mar 2001 18:41:26 +0100
9509              Message-Id: <20010313184043.BFFC.H.M.BRAND@hccnet.nl>
9510              
9511              If the test is run non-interactively the default handler
9512              is different.
9513      Branch: perl
9514            ! t/lib/sigaction.t
9515 ____________________________________________________________________________
9516 [  9129] By: jhi                                   on 2001/03/13  22:20:21
9517         Log: Subject:  [PATCH perl@9125] t/lib/1_compile.t  VMS mod
9518              From: lane@DUPHY4.Physics.Drexel.Edu (Charles Lane)
9519              Message-Id: <010313164414.d1225@DUPHY4.Physics.Drexel.Edu>
9520              Date:     Tue, 13 Mar 2001 16:44:32 EST
9521      Branch: perl
9522            ! t/lib/1_compile.t
9523 ____________________________________________________________________________
9524 [  9128] By: jhi                                   on 2001/03/13  22:18:34
9525         Log: Subject: Another patch for integer.pm POD 
9526              From: "John L. Allen" <allen@grumman.com>
9527              Date: Tue, 13 Mar 2001 16:14:02 -0500 (EST)
9528              Message-ID: <Pine.SOL.3.91.1010313160755.1630A-100000@gateway.grumman.com>
9529      Branch: perl
9530            ! lib/integer.pm
9531 ____________________________________________________________________________
9532 [  9127] By: nick                                  on 2001/03/13  21:26:30
9533         Log: Integrate mainline.
9534      Branch: perlio
9535           +> lib/Switch.pm lib/Text/Balanced.pm lib/Text/Balanced.pod
9536           +> t/lib/switch.t t/lib/tb-genxt.t t/lib/tb-xbrak.t
9537           +> t/lib/tb-xcode.t t/lib/tb-xdeli.t t/lib/tb-xmult.t
9538           +> t/lib/tb-xquot.t t/lib/tb-xtagg.t t/lib/tb-xvari.t
9539           !> Changes Configure MANIFEST README.os2 README.os390
9540           !> ext/re/Makefile.PL hints/aix.sh hints/os390.sh lib/integer.pm
9541           !> os2/Changes patchlevel.h win32/perlhost.h
9542 ____________________________________________________________________________
9543 [  9126] By: nick                                  on 2001/03/13  20:39:51
9544         Log: #ifdef'ed out code to make packed side of pack/unpack
9545              octets. (i.e. pack('U') => encode_utf8).
9546      Branch: perlio
9547            ! pp.c
9548 ____________________________________________________________________________
9549 [  9125] By: jhi                                   on 2001/03/13  15:07:16
9550         Log: Update Changes.
9551      Branch: perl
9552            ! Changes patchlevel.h
9553 ____________________________________________________________________________
9554 [  9124] By: jhi                                   on 2001/03/13  14:22:45
9555         Log: Workaround for the buggy ("internal compiler error")
9556              AIX C compiler 5.0.1.0: skip the optimization for regcomp.c
9557              (and ext/re/re_comp.c).  The MakeMaker dark magic courtesy
9558              of Andreas König.
9559      Branch: perl
9560            ! ext/re/Makefile.PL hints/aix.sh
9561 ____________________________________________________________________________
9562 [  9123] By: jhi                                   on 2001/03/13  03:24:34
9563         Log: Typo in #9114.
9564      Branch: metaconfig
9565            ! U/modified/myhostname.U
9566 ____________________________________________________________________________
9567 [  9122] By: jhi                                   on 2001/03/13  03:24:06
9568         Log: Typo in #9113.
9569      Branch: perl
9570            ! Configure
9571 ____________________________________________________________________________
9572 [  9121] By: jhi                                   on 2001/03/13  01:53:05
9573         Log: Forgot to check-in the larger part of #9120, duh.
9574      Branch: perl
9575            ! README.os2
9576 ____________________________________________________________________________
9577 [  9120] By: jhi                                   on 2001/03/13  01:51:31
9578         Log: Subject: [PATCH 5.6.1] OS/2 docs
9579              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
9580              Date: Mon, 12 Mar 2001 03:27:32 -0500
9581              Message-ID: <20010312032732.A19283@math.ohio-state.edu>
9582      Branch: perl
9583            ! os2/Changes
9584 ____________________________________________________________________________
9585 [  9119] By: jhi                                   on 2001/03/13  01:49:41
9586         Log: Integrate change #9116 from maintperl into mainline.
9587              
9588              Win32::GetCwd() returns C: instead of C:\ in the root directory
9589              under ithreads
9590      Branch: perl
9591           !> win32/perlhost.h
9592 ____________________________________________________________________________
9593 [  9118] By: jhi                                   on 2001/03/13  01:13:39
9594         Log: Add Switch 2.01, resort MANIFEST (forgot that in #9117)
9595      Branch: perl
9596            + lib/Switch.pm t/lib/switch.t
9597            ! MANIFEST
9598 ____________________________________________________________________________
9599 [  9117] By: jhi                                   on 2001/03/13  01:03:17
9600         Log: Add Text::Balanced 1.83.
9601      Branch: perl
9602            + lib/Text/Balanced.pm lib/Text/Balanced.pod t/lib/tb-genxt.t
9603            + t/lib/tb-xbrak.t t/lib/tb-xcode.t t/lib/tb-xdeli.t
9604            + t/lib/tb-xmult.t t/lib/tb-xquot.t t/lib/tb-xtagg.t
9605            + t/lib/tb-xvari.t
9606            ! MANIFEST
9607 ____________________________________________________________________________
9608 [  9116] By: gsar                                  on 2001/03/13  00:55:53
9609         Log: Win32::GetCwd() returns C: instead of C:\ in the root directory
9610              under ithreads
9611      Branch: maint-5.6/perl
9612            ! win32/perlhost.h
9613 ____________________________________________________________________________
9614 [  9115] By: jhi                                   on 2001/03/13  00:54:09
9615         Log: Subject: Re: [ID 20010305.005] "use integer" doesn't make rand() return integers
9616              From: "John L. Allen" <allen@grumman.com>
9617              Date: Tue, 6 Mar 2001 10:50:51 -0500 (EST)
9618              Message-ID: <Pine.SOL.3.91.1010306103113.9094A-100000@gateway.grumman.com>
9619              
9620              use integer document clarification.
9621      Branch: perl
9622            ! lib/integer.pm
9623 ____________________________________________________________________________
9624 [  9114] By: jhi                                   on 2001/03/13  00:38:54
9625         Log: Metaconfig unit change for #9113.
9626      Branch: metaconfig
9627            ! U/modified/myhostname.U
9628 ____________________________________________________________________________
9629 [  9113] By: jhi                                   on 2001/03/13  00:38:35
9630         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?)
9631              From: Peter Prymmer <pvhp@forte.com>
9632              Date: Mon, 12 Mar 2001 16:25:56 -0800 (PST)
9633              Message-ID: <Pine.OSF.4.10.10103121619020.180841-100000@aspara.forte.com>
9634      Branch: perl
9635            ! Configure README.os390 hints/os390.sh
9636 ____________________________________________________________________________
9637 [  9112] By: jhi                                   on 2001/03/13  00:29:00
9638         Log: Integrate perlio.
9639      Branch: perl
9640           !> sv.c utf8.h
9641 ____________________________________________________________________________
9642 [  9111] By: nick                                  on 2001/03/12  21:16:33
9643         Log: Integrate mainline.
9644      Branch: perlio
9645           +> t/op/anonsub.t
9646           !> MANIFEST embed.h embed.pl op.c op.h pod/perlapi.pod pp_ctl.c
9647           !> proto.h sv.c
9648 ____________________________________________________________________________
9649 [  9110] By: nick                                  on 2001/03/12  21:00:13
9650         Log: #ifdef'ed out code for 'USE_BYTES_DOWNGRADES' case.
9651      Branch: perlio
9652            ! sv.c utf8.h
9653 ____________________________________________________________________________
9654 [  9109] By: jhi                                   on 2001/03/12  16:04:47
9655         Log: Integrate change #9108 from maintperl to mainline.
9656              
9657              fix memory leak in C<sub X { sub {} }> arising from a refcount
9658              loop between the outer sub and the inner prototype anonsub
9659              
9660              this also enables closures returned by subroutines that
9661              subsequently get redefined to work without generating coredumps :)
9662              
9663              completely removed the free_closures() hack--it shouldn't be
9664              needed anymore
9665      Branch: perl
9666           +> t/op/anonsub.t
9667           !> MANIFEST embed.h embed.pl op.c op.h pod/perlapi.pod pp_ctl.c
9668           !> proto.h sv.c
9669 ____________________________________________________________________________
9670 [  9108] By: gsar                                  on 2001/03/12  10:21:31
9671         Log: fix memory leak in C<sub X { sub {} }> arising from a refcount
9672              loop between the outer sub and the inner prototype anonsub
9673              
9674              this also enables closures returned by subroutines that
9675              subsequently get redefined to work without generating coredumps :)
9676              
9677              completely removed the free_closures() hack--it shouldn't be
9678              needed anymore
9679      Branch: maint-5.6/perl
9680            + t/op/anonsub.t
9681            ! MANIFEST embed.h embed.pl op.c op.h pod/perlapi.pod pp_ctl.c
9682            ! proto.h sv.c
9683 ____________________________________________________________________________
9684 [  9107] By: jhi                                   on 2001/03/12  05:15:31
9685         Log: Integrate perlio.
9686      Branch: perl
9687           !> ext/Encode/Encode.xs makedef.pl regcomp.c sv.c toke.c utf8.c
9688 ____________________________________________________________________________
9689 [  9106] By: nick                                  on 2001/03/11  20:10:12
9690         Log: regcomp.c is working in native space, not Unicode space (if different)
9691              as it is doing compare against 'W' in \W etc.
9692      Branch: perlio
9693            ! regcomp.c
9694 ____________________________________________________________________________
9695 [  9105] By: nick                                  on 2001/03/11  19:39:34
9696         Log: Audit #ifdef EBCDIC and #ifndef ASCIIish, replace latter with former.
9697              Use ASCII_TO_NATIVE and NATIVE_TO_ASCII to avoid some #ifs.
9698      Branch: perlio
9699            ! regcomp.c toke.c utf8.c
9700 ____________________________________________________________________________
9701 [  9104] By: nick                                  on 2001/03/11  18:15:44
9702         Log: Put utf8_downgrade in CRIPPLED_CC versions of SvPVbyte* before I forget.
9703      Branch: perlio
9704            ! sv.c
9705 ____________________________________________________________________________
9706 [  9103] By: nick                                  on 2001/03/11  18:03:28
9707         Log: Integrate mainline (for regexp stuff).
9708      Branch: perlio
9709           !> ext/B/defsubs_h.PL ext/DynaLoader/dl_mac.xs
9710           !> ext/Encode/Encode.xs ext/Errno/Errno_pm.PL
9711           !> lib/ExtUtils/Manifest.pm regcomp.c regexec.c t/lib/b.t
9712           !> t/lib/errno.t t/op/pat.t
9713 ____________________________________________________________________________
9714 [  9102] By: nick                                  on 2001/03/11  17:44:20
9715         Log: USE_SFIO issues as observed by Chris Nandor <pudge@pobox.com>
9716              - exclude layer syms in makedef.pl for sfio
9717              - also inhibit Encode from trying to build ":encode()" layer.
9718      Branch: perlio
9719            ! ext/Encode/Encode.xs makedef.pl
9720 ____________________________________________________________________________
9721 [  9101] By: jhi                                   on 2001/03/10  22:38:13
9722         Log: The $Is_MacOS needs to be declared.
9723      Branch: perl
9724            ! lib/ExtUtils/Manifest.pm
9725 ____________________________________________________________________________
9726 [  9100] By: jhi                                   on 2001/03/10  22:14:29
9727         Log: Use #if defined(USE_PERLIO) && !defined(USE_SFIO) instead of just
9728              #ifdef USE_PERLIO in Encode.xs so that the perlio symbols don't
9729              pollute the symbolspace if using sfio.
9730      Branch: perl
9731            ! ext/Encode/Encode.xs
9732 ____________________________________________________________________________
9733 [  9099] By: jhi                                   on 2001/03/10  21:58:48
9734         Log: Subject: [PATCH] Portability fixes for Mac OS / bleadperl
9735              Date: Sat, 10 Mar 2001 14:23:55 -0500
9736              From: Chris Nandor <pudge@pobox.com>
9737              Message-Id: <p05010401b6d02f70211f@[10.0.1.177]>
9738      Branch: perl
9739            ! ext/B/defsubs_h.PL ext/DynaLoader/dl_mac.xs
9740            ! ext/Errno/Errno_pm.PL lib/ExtUtils/Manifest.pm t/lib/b.t
9741            ! t/lib/errno.t
9742 ____________________________________________________________________________
9743 [  9098] By: jhi                                   on 2001/03/10  21:38:30
9744         Log: Fix for ID 20010306.008, UTF-8 and \w without 'use utf8' coredump.
9745      Branch: perl
9746            ! regcomp.c regexec.c t/op/pat.t
9747 ____________________________________________________________________________
9748 [  9097] By: jhi                                   on 2001/03/10  14:38:07
9749         Log: Integrate perlio.
9750      Branch: perl
9751           !> doop.c embed.h embed.pl ext/Encode/Encode.xs global.sym
9752           !> handy.h objXSUB.h op.c perl.c perlapi.c pp.c pp_ctl.c proto.h
9753           !> regcomp.c regexec.c sv.c toke.c utf8.c utf8.h
9754 ____________________________________________________________________________
9755 [  9096] By: nick                                  on 2001/03/10  11:55:43
9756         Log: EBCDIC sanity - phase I
9757              - rename utf8/uv functions to indicate what sort of uv they provide (uvuni/uvchr)
9758              - use utf8n_xxxx (c.f. pvn) for forms which take length.
9759              - back out vN.N and $^V exceptions to e2a/a2e
9760              - make "locale" isxxx macros be uvchr (may be redundant?)
9761              
9762              Not clear yet that toUPPER_uni et. al. return being handled correctly.
9763              The tr// and rexexp stuff still needs an audit, assumption is they are working
9764              in Unicode space.
9765              
9766              Need to provide v5.6 names for XS modules (decide is uni or chr ?).
9767      Branch: perlio
9768            ! doop.c embed.h embed.pl ext/Encode/Encode.xs global.sym
9769            ! handy.h objXSUB.h op.c perl.c perlapi.c pp.c pp_ctl.c proto.h
9770            ! regcomp.c regexec.c sv.c toke.c utf8.c utf8.h
9771 ____________________________________________________________________________
9772 [  9095] By: jhi                                   on 2001/03/09  22:10:01
9773         Log: Integrate perlio.
9774      Branch: perl
9775           !> dump.c
9776 ____________________________________________________________________________
9777 [  9094] By: nick                                  on 2001/03/09  17:36:38
9778         Log: Builds an passes all tests after integrate and this tweak.
9779      Branch: perlio
9780            ! dump.c
9781 ____________________________________________________________________________
9782 [  9093] By: nick                                  on 2001/03/09  17:16:03
9783         Log: Integrate mainline (does not build - sv_catpvf issue in dump.c)
9784      Branch: perlio
9785           +> lib/unicode/Scripts.txt t/lib/sigaction.t
9786           !> (integrate 79 files)
9787 ____________________________________________________________________________
9788 [  9092] By: jhi                                   on 2001/03/09  15:28:26
9789         Log: Update Changes.
9790      Branch: perl
9791            ! Changes patchlevel.h
9792 ____________________________________________________________________________
9793 [  9091] By: jhi                                   on 2001/03/09  15:25:05
9794         Log: In op/stat #35 better to scan all the potential directories
9795              for setuids, not just the first one.
9796      Branch: perl
9797            ! t/op/stat.t
9798 ____________________________________________________________________________
9799 [  9090] By: jhi                                   on 2001/03/09  15:01:27
9800         Log: Subject: Re: [ID 19990808.001] [PATCH] FETCH triggered on exists() 
9801              From: rspier@pobox.com (Robert Spier)
9802              Date: Fri, 9 Mar 2001 03:30:20 -0500
9803              Message-ID: <15016.38044.381174.160189@rls.cx>
9804              
9805              EXISTS() returning undef mistakenly triggered a FETCH().
9806      Branch: perl
9807            ! hv.c
9808 ____________________________________________________________________________
9809 [  9089] By: jhi                                   on 2001/03/09  14:59:02
9810         Log: Add /sbin and /usr/sbin to the list of directories scanned
9811              for setuid programs.  Takes care of bug id 20010309.003.
9812      Branch: perl
9813            ! t/op/stat.t
9814 ____________________________________________________________________________
9815 [  9088] By: jhi                                   on 2001/03/09  14:48:32
9816         Log: Regen perlapi, perltoc.
9817      Branch: perl
9818            ! ext/Encode/Encode/Tcl.pm pod/perlapi.pod pod/perltoc.pod
9819 ____________________________________________________________________________
9820 [  9087] By: jhi                                   on 2001/03/09  14:38:56
9821         Log: Subject: Re: [ PATCH perl@8956 ] new debug option -DR shows ref counts
9822              From: David Mitchell <davem@fdgroup.co.uk>
9823              Date: Fri, 9 Mar 2001 13:49:31 +0000 (GMT)
9824              Message-Id: <200103091349.NAA16617@tiree.fdgroup.co.uk>
9825      Branch: perl
9826            ! dump.c perl.c perl.h pod/perlrun.pod
9827 ____________________________________________________________________________
9828 [  9086] By: jhi                                   on 2001/03/09  01:47:16
9829         Log: A modified version of
9830              
9831              Subject: [ID 20010307.005] POSIX::sigaction has various problems
9832              From: anders@broadcom.com
9833              Date: Wed, 7 Mar 2001 14:35:24 -0800 (PST) 
9834              Message-Id: <200103072235.OAA25368@dt-sj1-130.sj.broadcom.com>
9835              
9836              Currently the sigaction.t test #6 fails (and is fudged to look
9837              like an "ok") in Linux (at least in Debian 2.2 Linux 2.4.2 x86).
9838              This may well be a genuine bug in Linux sigaction() (since at
9839              least Tru64, Solaris, and HP-UX disagree with Linux).
9840              Anyone with POSIX / SUSv2 tome handy?  The problem is that
9841              the flags of the oldaction don't match with the flags in
9842              the previously installed disposition.
9843      Branch: perl
9844            + t/lib/sigaction.t
9845            ! MANIFEST ext/POSIX/POSIX.pm ext/POSIX/POSIX.xs
9846 ____________________________________________________________________________
9847 [  9085] By: jhi                                   on 2001/03/09  01:30:13
9848         Log: Subject: Re: mission impossible for the day
9849              From: Alex Gough <alex@rcon.org>
9850              Date: Thu, 08 Mar 2001 17:18:19 +0000
9851              Message-ID: <3AA7BEDB.8070409@rcon.org>
9852              
9853              If references (are overloaded) and can be directly stringified,
9854              show that instead of "stringified".
9855              
9856              (The problem, infinite mutual recursion caused by overloaded bool
9857              in Switch.pm, tracked by David Mitchell)
9858      Branch: perl
9859            ! lib/Carp/Heavy.pm
9860 ____________________________________________________________________________
9861 [  9084] By: jhi                                   on 2001/03/09  01:20:39
9862         Log: Subject: Re: [ PATCH perl@8956 ] new debug option -DR shows ref counts
9863              Date: Thu, 8 Mar 2001 12:06:57 +0000 (GMT)
9864              From: David Mitchell <davem@fdgroup.co.uk>
9865              Message-Id: <200103081206.MAA06281@tiree.fdgroup.co.uk>
9866      Branch: perl
9867            ! ext/re/re.xs malloc.c mg.c perl.c perl.h perly.c perly.y
9868            ! pp_ctl.c regexec.c sv.c vms/perly_c.vms
9869 ____________________________________________________________________________
9870 [  9083] By: jhi                                   on 2001/03/09  01:16:51
9871         Log: Subject: [PATCH] perldata.pod here-doc docs
9872              From: Jeff Pinyan <jeffp@crusoe.net>
9873              Date: Thu, 8 Mar 2001 13:18:55 -0500 (EST)
9874              Message-ID: <Pine.GSO.4.21.0103081317530.20957-100000@crusoe.crusoe.net>
9875      Branch: perl
9876            ! pod/perldata.pod
9877 ____________________________________________________________________________
9878 [  9082] By: jhi                                   on 2001/03/09  01:01:27
9879         Log: Subject: Re: Unicode/EBCDIC
9880              From: Peter Prymmer <pvhp@forte.com>
9881              Date: Thu, 8 Mar 2001 16:23:25 -0800 (PST)
9882              Message-ID: <Pine.OSF.4.10.10103081617390.377472-100000@aspara.forte.com>
9883      Branch: perl
9884            ! perl.c perl.h sv.c toke.c utf8.c utf8.h
9885 ____________________________________________________________________________
9886 [  9081] By: jhi                                   on 2001/03/08  13:41:30
9887         Log: Subject: Ooops, wrong 'no *POSIX' Patch
9888              From: Dorner Thomas <Thomas.Dorner@start.de>
9889              Date: Thu, 8 Mar 2001 08:43:28 +0100
9890              Message-ID: <6727B1DACFCDD311A757009027CA8D69010A88D3@Ex02.inhouse.start.de>
9891      Branch: perl
9892            ! hints/posix-bc.sh
9893 ____________________________________________________________________________
9894 [  9080] By: jhi                                   on 2001/03/08  13:11:42
9895         Log: It's Scripts.txt, not Script.txt.
9896      Branch: perl
9897            ! MANIFEST
9898 ____________________________________________________________________________
9899 [  9079] By: jhi                                   on 2001/03/08  12:59:05
9900         Log: Subject: 'no *POSIX' Patch speeding up make on BS2000 
9901              From: Dorner Thomas <Thomas.Dorner@start.de>
9902              Date: Wed, 7 Mar 2001 14:13:31 +0100
9903              Message-ID: <6727B1DACFCDD311A757009027CA8D69010A88CB@Ex02.inhouse.start.de>
9904      Branch: perl
9905            ! makedepend.SH
9906 ____________________________________________________________________________
9907 [  9078] By: jhi                                   on 2001/03/08  12:57:43
9908         Log: Retract #9069, wrong patch.
9909      Branch: perl
9910            ! Makefile.SH
9911 ____________________________________________________________________________
9912 [  9077] By: jhi                                   on 2001/03/08  01:06:13
9913         Log: Upgrade to Unicode 3.1 beta 2001-03-01.
9914      Branch: perl
9915            + lib/unicode/Scripts.txt
9916            ! MANIFEST lib/unicode/Category.pl lib/unicode/Decomposition.pl
9917            ! lib/unicode/EAWidth.txt lib/unicode/Is/Alnum.pl
9918            ! lib/unicode/Is/Alpha.pl lib/unicode/Is/L.pl
9919            ! lib/unicode/Is/LbrkAI.pl lib/unicode/Is/LbrkAL.pl
9920            ! lib/unicode/Is/LbrkB2.pl lib/unicode/Is/LbrkBA.pl
9921            ! lib/unicode/Is/LbrkBB.pl lib/unicode/Is/LbrkBK.pl
9922            ! lib/unicode/Is/LbrkCB.pl lib/unicode/Is/LbrkCL.pl
9923            ! lib/unicode/Is/LbrkCM.pl lib/unicode/Is/LbrkCR.pl
9924            ! lib/unicode/Is/LbrkEX.pl lib/unicode/Is/LbrkGL.pl
9925            ! lib/unicode/Is/LbrkHY.pl lib/unicode/Is/LbrkID.pl
9926            ! lib/unicode/Is/LbrkIN.pl lib/unicode/Is/LbrkIS.pl
9927            ! lib/unicode/Is/LbrkLF.pl lib/unicode/Is/LbrkNS.pl
9928            ! lib/unicode/Is/LbrkNU.pl lib/unicode/Is/LbrkOP.pl
9929            ! lib/unicode/Is/LbrkPO.pl lib/unicode/Is/LbrkPR.pl
9930            ! lib/unicode/Is/LbrkQU.pl lib/unicode/Is/LbrkSA.pl
9931            ! lib/unicode/Is/LbrkSG.pl lib/unicode/Is/LbrkSP.pl
9932            ! lib/unicode/Is/LbrkSY.pl lib/unicode/Is/LbrkZW.pl
9933            ! lib/unicode/Is/Ll.pl lib/unicode/Is/Lower.pl
9934            ! lib/unicode/Is/S.pl lib/unicode/Is/Sm.pl
9935            ! lib/unicode/Is/Word.pl lib/unicode/Names.txt
9936            ! lib/unicode/PropList.txt lib/unicode/ReadMe.txt
9937            ! lib/unicode/Unicode.txt lib/unicode/mktables.PL
9938            ! lib/unicode/version
9939 ____________________________________________________________________________
9940 [  9076] By: jhi                                   on 2001/03/07  22:59:39
9941         Log: Integrate change #7784 from mainline into maintperl.
9942              
9943              Subject: [PATCH 5.7.0] lexicals not recognized in a run-time (?{})
9944      Branch: maint-5.6/perl
9945           !> pp_ctl.c t/op/pat.t
9946 ____________________________________________________________________________
9947 [  9075] By: jhi                                   on 2001/03/07  22:05:11
9948         Log: More UTF-8 test tweaks.
9949      Branch: perl
9950            ! t/op/pat.t t/op/split.t t/pragma/utf8.t
9951 ____________________________________________________________________________
9952 [  9074] By: nick                                  on 2001/03/07  21:39:29
9953         Log: Integrate mainline.
9954      Branch: perlio
9955           !> Changes Makefile.SH lib/ExtUtils/MM_Unix.pm
9956           !> lib/unicode/mktables.PL patchlevel.h perl.c pod/perlop.pod
9957           !> pod/perlretut.pod pod/perlsyn.pod pp.c pp_sys.c
9958           !> t/camel-III/vstring.t t/lib/charnames.t t/op/chop.t
9959           !> t/op/pack.t t/op/pat.t t/op/split.t t/pragma/utf8.t
9960 ____________________________________________________________________________
9961 [  9073] By: jhi                                   on 2001/03/07  16:37:09
9962         Log: Update Changes.
9963      Branch: perl
9964            ! Changes patchlevel.h
9965 ____________________________________________________________________________
9966 [  9072] By: jhi                                   on 2001/03/07  16:32:30
9967         Log: Subject: [ID 20010306.004] || != named unary operator
9968              From: abela@geneanet.org
9969              Date: Tue,  6 Mar 2001 15:57:57 +0100 (CET)
9970              Message-Id: <20010306145757.0CB03D183@little-roots.geneanet.org>
9971      Branch: perl
9972            ! pod/perlop.pod
9973 ____________________________________________________________________________
9974 [  9071] By: jhi                                   on 2001/03/07  15:14:11
9975         Log: Subject: downgrading to bytes for common functions
9976              From: andrew@pimlott.ne.mediaone.net (Andrew Pimlott)
9977              Date: Wed, 7 Mar 2001 02:36:55 -0500
9978              Message-ID: <20010307023655.J24024@pimlott.ne.mediaone.net>
9979      Branch: perl
9980            ! pp_sys.c
9981 ____________________________________________________________________________
9982 [  9070] By: jhi                                   on 2001/03/07  15:04:58
9983         Log: Clarify the description differentiating for and while; inspired by
9984              
9985              Subject: [ID 20010306.002] for/while difference in for definition
9986              From: abela@geneanet.org
9987              Date: Tue,  6 Mar 2001 09:40:36 +0100 (CET)
9988              Message-Id: <20010306084036.7BFD0D17F@little-roots.geneanet.org>
9989      Branch: perl
9990            ! pod/perlsyn.pod
9991 ____________________________________________________________________________
9992 [  9069] By: jhi                                   on 2001/03/07  14:55:30
9993         Log: Subject: 'no *POSIX' Patch speeding up make on BS2000 
9994              From: Dorner Thomas <Thomas.Dorner@start.de>
9995              Date: Wed, 7 Mar 2001 14:13:31 +0100
9996              Message-ID: <6727B1DACFCDD311A757009027CA8D69010A88CB@Ex02.inhouse.start.de>
9997      Branch: perl
9998            ! Makefile.SH
9999 ____________________________________________________________________________
10000 [  9068] By: jhi                                   on 2001/03/07  14:51:17
10001         Log: Subject: Re: [ID 20010305.012] chop() against list assignment returns char chopped from el zero
10002              From: Radu Greab <radu@netsoft.ro>
10003              Date: Tue, 6 Mar 2001 23:04:44 +0200 (EET)
10004              Message-ID: <15013.20716.201459.540421@ix.netsoft.ro>
10005      Branch: perl
10006            ! pp.c t/op/chop.t
10007 ____________________________________________________________________________
10008 [  9067] By: jhi                                   on 2001/03/07  14:48:57
10009         Log: Subject: Re: [PATCH: 5.6.1 trial2] DynaLoading for OS/390 build option
10010              From: Simon Cozens <simon@netthink.co.uk>
10011              Date: Wed, 7 Mar 2001 13:59:28 +0000
10012              Message-ID: <20010307135928.A21620@pembro26.pmb.ox.ac.uk>
10013              
10014              In order to allow MakeMaker to build correct Makefiles,
10015              you need to change the order of the arguments in MM_Unix.pm
10016              as well. (Unless you have C89_CCMODE set, but we're trying
10017              to be POSIXly correct)
10018              
10019              Thanks to Merijn Broeren for tracking this down.
10020      Branch: perl
10021            ! lib/ExtUtils/MM_Unix.pm
10022 ____________________________________________________________________________
10023 [  9066] By: jhi                                   on 2001/03/07  14:30:02
10024         Log: Floating point too messy.
10025      Branch: perl
10026            ! t/camel-III/vstring.t
10027 ____________________________________________________________________________
10028 [  9065] By: jhi                                   on 2001/03/07  14:17:44
10029         Log: Integrate change #9064 from maintperl into mainline.
10030              
10031              fix memory leak in pack("Bb",...)
10032      Branch: perl
10033           !> perl.c
10034 ____________________________________________________________________________
10035 [  9064] By: gsar                                  on 2001/03/07  06:29:24
10036         Log: fix memory leak in pack("Bb",...)
10037      Branch: maint-5.6/perl
10038            ! perl.c
10039 ____________________________________________________________________________
10040 [  9063] By: jhi                                   on 2001/03/07  00:55:04
10041         Log: Major utf8 test reorganisation and rewrite.
10042              Hopefully no tests were lost in the shuffle.
10043              (The beginning of pragma/utf8 was lost intentionally,
10044              the tests were rather bogus and incomplete.)
10045      Branch: perl
10046            ! t/lib/charnames.t t/op/pack.t t/op/pat.t t/op/split.t
10047            ! t/pragma/utf8.t
10048 ____________________________________________________________________________
10049 [  9062] By: jhi                                   on 2001/03/07  00:41:16
10050         Log: More tweakage on the Unicode character class descriptions.
10051      Branch: perl
10052            ! lib/unicode/mktables.PL pod/perlretut.pod
10053 ____________________________________________________________________________
10054 [  9061] By: jhi                                   on 2001/03/06  23:12:38
10055         Log: The perlretut was still talking about the old \p and \P
10056              definitions.
10057      Branch: perl
10058            ! pod/perlretut.pod
10059 ____________________________________________________________________________
10060 [  9060] By: nick                                  on 2001/03/06  20:52:37
10061         Log: Integrate mainline (make test works again now).
10062      Branch: perlio
10063           !> op.c op.h regcomp.c t/camel-III/vstring.t t/op/pat.t
10064 ____________________________________________________________________________
10065 [  9059] By: jhi                                   on 2001/03/06  15:36:14
10066         Log: 0.999... does equal 1.0, doesn't it?
10067      Branch: perl
10068            ! t/camel-III/vstring.t
10069 ____________________________________________________________________________
10070 [  9058] By: jhi                                   on 2001/03/06  15:34:00
10071         Log: Make /x{abcd}/ to work without use utf8.
10072      Branch: perl
10073            ! regcomp.c
10074 ____________________________________________________________________________
10075 [  9057] By: jhi                                   on 2001/03/06  03:02:36
10076         Log: Easier to outcomment all the three reset() tests for now.
10077      Branch: perl
10078            ! t/op/pat.t
10079 ____________________________________________________________________________
10080 [  9056] By: jhi                                   on 2001/03/06  02:30:02
10081         Log: Comment out the deadly reset; until the 20010301.005
10082              is finally fixed.
10083      Branch: perl
10084            ! t/op/pat.t
10085 ____________________________________________________________________________
10086 [  9055] By: jhi                                   on 2001/03/06  02:21:26
10087         Log: Integrate the change #9054 from mainline:
10088              retract the PMOP cleanup patch pending further investigation.
10089      Branch: maint-5.6/perl
10090           !> op.c op.h
10091 ____________________________________________________________________________
10092 [  9054] By: jhi                                   on 2001/03/06  02:19:57
10093         Log: Retract the PMOP cleanup patch: I'm seeing strange core dumps
10094              with oddly familiar stack traces.
10095      Branch: perl
10096            ! op.c op.h
10097 ____________________________________________________________________________
10098 [  9053] By: jhi                                   on 2001/03/05  23:20:28
10099         Log: Integrate perlio.
10100      Branch: perl
10101           +> ext/Encode/Encode/koi8-r.ucm
10102           !> MANIFEST ext/Encode/Encode.pm ext/Encode/Makefile.PL
10103           !> makedef.pl
10104 ____________________________________________________________________________
10105 [  9052] By: nick                                  on 2001/03/05  23:08:17
10106         Log: skipping USE_PERLIO symbols correction.
10107      Branch: perlio
10108            ! makedef.pl
10109 ____________________________________________________________________________
10110 [  9051] By: nick                                  on 2001/03/05  22:35:07
10111         Log: More Encode alias tidying.
10112      Branch: perlio
10113            + ext/Encode/Encode/koi8-r.ucm
10114            ! MANIFEST ext/Encode/Encode.pm ext/Encode/Makefile.PL
10115 ____________________________________________________________________________
10116 [  9050] By: jhi                                   on 2001/03/05  21:44:29
10117         Log: Integrate changes #9033 and #9044 from mainline into maintperl,
10118              Sarathy's fix for ID 20010301.005.
10119      Branch: maint-5.6/perl
10120           !> op.c op.h
10121 ____________________________________________________________________________
10122 [  9049] By: nick                                  on 2001/03/05  19:54:04
10123         Log: Integrate Jarkko's Encode.pm tweak.
10124      Branch: perlio
10125           !> ext/Encode/Encode.pm
10126 ____________________________________________________________________________
10127 [  9048] By: nick                                  on 2001/03/05  19:47:57
10128         Log: Integrate mainline (mostly - holding of on Encode.pm for a bit.)
10129      Branch: perlio
10130           +> os2/os2add.sym
10131           !> lib/ExtUtils/MM_OS2.pm lib/ExtUtils/MM_Unix.pm makedef.pl op.c
10132           !> op.h os2/Changes os2/Makefile.SHs os2/OS2/REXX/Makefile.PL
10133           !> os2/OS2/REXX/REXX.pm os2/OS2/REXX/REXX.xs
10134           !> os2/OS2/REXX/t/rx_cmprt.t os2/os2.c os2/os2.sym os2/os2ish.h
10135           !> pod/perlapi.pod t/op/pat.t t/op/tr.t
10136 ____________________________________________________________________________
10137 [  9047] By: jhi                                   on 2001/03/05  19:25:26
10138         Log: Regen perlapi.
10139      Branch: perl
10140            ! pod/perlapi.pod
10141 ____________________________________________________________________________
10142 [  9046] By: jhi                                   on 2001/03/05  19:12:14
10143         Log: Integrate perlio.
10144      Branch: perl
10145           +> t/camel-III/vstring.t
10146           !> MANIFEST pp.h pp_sys.c t/TEST t/harness
10147 ____________________________________________________________________________
10148 [  9045] By: jhi                                   on 2001/03/05  19:10:36
10149         Log: The mapping of ISO Latin X to ISO 8859-Y is tricky.
10150      Branch: perl
10151            ! ext/Encode/Encode.pm
10152 ____________________________________________________________________________
10153 [  9044] By: jhi                                   on 2001/03/05  18:49:12
10154         Log: Forgot the other half of the PMOP patch (#9033).
10155      Branch: perl
10156            ! op.h
10157 ____________________________________________________________________________
10158 [  9043] By: nick                                  on 2001/03/05  18:14:47
10159         Log: Update MANIFEST for new test.
10160      Branch: perlio
10161            ! MANIFEST
10162 ____________________________________________________________________________
10163 [  9042] By: nick                                  on 2001/03/05  18:12:41
10164         Log: Some tests for Camel 3rd edition features.
10165              Make gethostbyaddr() test in above work.
10166      Branch: perlio
10167            + t/camel-III/vstring.t
10168            ! pp.h pp_sys.c t/TEST t/harness
10169 ____________________________________________________________________________
10170 [  9041] By: jhi                                   on 2001/03/05  17:41:48
10171         Log: Add more ISO 8859 encoding aliases.
10172      Branch: perl
10173            ! ext/Encode/Encode.pm
10174 ____________________________________________________________________________
10175 [  9040] By: jhi                                   on 2001/03/05  17:30:43
10176         Log: Integrate perlio.
10177      Branch: perl
10178           !> MANIFEST sv.c
10179 ____________________________________________________________________________
10180 [  9039] By: nick                                  on 2001/03/05  17:11:36
10181         Log: Missed added file.
10182      Branch: perlio
10183            ! MANIFEST
10184 ____________________________________________________________________________
10185 [  9038] By: jhi                                   on 2001/03/05  15:58:01
10186         Log: Add tr tests for EBCDIC, from Karsten Sperling.
10187      Branch: perl
10188            ! t/op/tr.t
10189 ____________________________________________________________________________
10190 [  9037] By: nick                                  on 2001/03/05  15:56:35
10191         Log: Long-standing "defined but not used" SvPVbyte*() are about to get used
10192              for auto-downgrade hooks in gethostbyaddr() etc. (as per Camel-III).
10193              
10194              Make SvPVbyte*() symetric with respect to SvPVutf8*() in that:
10195              - it does a sv_utf8_downgrade (c.f. SvPVutf8's sv_utf8_upgrade())
10196              - uses SvPV() rather than sv_2pv() in case it isn't a string.
10197      Branch: perlio
10198            ! sv.c
10199 ____________________________________________________________________________
10200 [  9036] By: jhi                                   on 2001/03/05  15:49:15
10201         Log: Add matching tests currently failing in EBCDIC,
10202              suggested by Karsten Sperling.
10203      Branch: perl
10204            ! t/op/pat.t
10205 ____________________________________________________________________________
10206 [  9035] By: jhi                                   on 2001/03/05  15:36:55
10207         Log: The #9034 needs a MANIFESTation.
10208      Branch: perl
10209            ! MANIFEST
10210 ____________________________________________________________________________
10211 [  9034] By: jhi                                   on 2001/03/05  15:35:14
10212         Log: Integrate perlio.
10213      Branch: perl
10214           +> ext/Encode/Encode/Tcl.pm
10215           !> ext/Encode/Encode.pm ext/Encode/Encode.xs
10216           !> ext/Encode/Encode/ascii.ucm ext/Encode/Encode/cp1250.ucm
10217           !> ext/Encode/Encode/iso8859-1.ucm
10218           !> ext/Encode/Encode/iso8859-10.ucm
10219           !> ext/Encode/Encode/iso8859-13.ucm
10220           !> ext/Encode/Encode/iso8859-14.ucm
10221           !> ext/Encode/Encode/iso8859-15.ucm
10222           !> ext/Encode/Encode/iso8859-16.ucm
10223           !> ext/Encode/Encode/iso8859-2.ucm
10224           !> ext/Encode/Encode/iso8859-3.ucm
10225           !> ext/Encode/Encode/iso8859-4.ucm
10226           !> ext/Encode/Encode/iso8859-5.ucm
10227           !> ext/Encode/Encode/iso8859-6.ucm
10228           !> ext/Encode/Encode/iso8859-7.ucm
10229           !> ext/Encode/Encode/iso8859-8.ucm
10230           !> ext/Encode/Encode/iso8859-9.ucm ext/Encode/compile
10231           !> t/lib/encode.t
10232 ____________________________________________________________________________
10233 [  9033] By: jhi                                   on 2001/03/05  15:33:18
10234         Log: Subject: Re: [ID 20010301.005] corrupt memory (since @8531, in 5.6.1-T2)
10235              From: Gurusamy Sarathy <gsar@ActiveState.com>
10236              Date: Sun, 04 Mar 2001 22:33:15 -0800
10237              Message-Id: <200103050633.f256XFo06998@smtp3.ActiveState.com>
10238              
10239              PMOPs need to remember their own stash so that they can
10240              gracefully remove themselves from their linked list.
10241      Branch: perl
10242            ! op.c
10243 ____________________________________________________________________________
10244 [  9032] By: nick                                  on 2001/03/05  14:51:50
10245         Log: Encode implementation "completion"
10246              Implement and document define_encoding()
10247              Implement and document encoding aliases including define_alias()
10248              Make Encode::XS use define_encoding() rather than back-door.
10249              Move run-time *.enc to separate Encode::Tcl module.
10250              Make 'compile' honour <codeset_name>
10251              Change canonical names of to iso-8859-* and US-ascii.
10252      Branch: perlio
10253            + ext/Encode/Encode/Tcl.pm
10254            ! ext/Encode/Encode.pm ext/Encode/Encode.xs
10255            ! ext/Encode/Encode/ascii.ucm ext/Encode/Encode/cp1250.ucm
10256            ! ext/Encode/Encode/iso8859-1.ucm
10257            ! ext/Encode/Encode/iso8859-10.ucm
10258            ! ext/Encode/Encode/iso8859-13.ucm
10259            ! ext/Encode/Encode/iso8859-14.ucm
10260            ! ext/Encode/Encode/iso8859-15.ucm
10261            ! ext/Encode/Encode/iso8859-16.ucm
10262            ! ext/Encode/Encode/iso8859-2.ucm
10263            ! ext/Encode/Encode/iso8859-3.ucm
10264            ! ext/Encode/Encode/iso8859-4.ucm
10265            ! ext/Encode/Encode/iso8859-5.ucm
10266            ! ext/Encode/Encode/iso8859-6.ucm
10267            ! ext/Encode/Encode/iso8859-7.ucm
10268            ! ext/Encode/Encode/iso8859-8.ucm
10269            ! ext/Encode/Encode/iso8859-9.ucm ext/Encode/compile
10270            ! t/lib/encode.t
10271 ____________________________________________________________________________
10272 [  9031] By: jhi                                   on 2001/03/05  13:51:17
10273         Log: Integrate change #9030 from maintperl into mainline.
10274              
10275              Subject: [PATCH 5.6.1] OS/2 cleanup
10276      Branch: perl
10277           +> os2/os2add.sym
10278           !> MANIFEST lib/ExtUtils/MM_OS2.pm lib/ExtUtils/MM_Unix.pm
10279           !> makedef.pl os2/Changes os2/Makefile.SHs
10280           !> os2/OS2/REXX/Makefile.PL os2/OS2/REXX/REXX.pm
10281           !> os2/OS2/REXX/REXX.xs os2/OS2/REXX/t/rx_cmprt.t os2/os2.c
10282           !> os2/os2.sym os2/os2ish.h
10283 ____________________________________________________________________________
10284 [  9030] By: jhi                                   on 2001/03/05  13:46:49
10285         Log: Subject: [PATCH 5.6.1] OS/2 cleanup
10286              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
10287              Date: Mon, 5 Mar 2001 02:29:44 -0500
10288              Message-ID: <20010305022944.A10117@math.ohio-state.edu>
10289      Branch: maint-5.6/perl
10290            + os2/os2add.sym
10291            ! MANIFEST lib/ExtUtils/MM_OS2.pm lib/ExtUtils/MM_Unix.pm
10292            ! makedef.pl os2/Changes os2/Makefile.SHs
10293            ! os2/OS2/REXX/Makefile.PL os2/OS2/REXX/REXX.pm
10294            ! os2/OS2/REXX/REXX.xs os2/OS2/REXX/t/rx_cmprt.t os2/os2.c
10295            ! os2/os2.sym os2/os2ish.h
10296 ____________________________________________________________________________
10297 [  9029] By: jhi                                   on 2001/03/05  13:40:35
10298         Log: Integrate change #9028 from maintperl into mainline.
10299              
10300              various nits in MM_Unix.pm found by disabling SelfLoader
10301      Branch: perl
10302           !> lib/ExtUtils/MM_Unix.pm
10303 ____________________________________________________________________________
10304 [  9028] By: gsar                                  on 2001/03/05  09:58:38
10305         Log: various nits in MM_Unix.pm found by disabling SelfLoader
10306      Branch: maint-5.6/perl
10307            ! lib/ExtUtils/MM_Unix.pm
10308 ____________________________________________________________________________
10309 [  9027] By: nick                                  on 2001/03/05  08:35:22
10310         Log: Integrate mainline
10311      Branch: perlio
10312           !> (integrate 28 files)
10313 ____________________________________________________________________________
10314 [  9026] By: jhi                                   on 2001/03/05  02:14:59
10315         Log: Integrate change #9025 from mainline to maintperl,
10316              retract \N{U+HHHH}.
10317      Branch: maint-5.6/perl
10318           !> lib/charnames.pm pod/perldiag.pod pod/perlretut.pod
10319           !> t/lib/charnames.t toke.c
10320 ____________________________________________________________________________
10321 [  9025] By: jhi                                   on 2001/03/05  02:13:09
10322         Log: Retracting \N{U+HHHH}.
10323      Branch: perl
10324            ! lib/charnames.pm pod/perldiag.pod pod/perlretut.pod
10325            ! t/lib/charnames.t toke.c
10326 ____________________________________________________________________________
10327 [  9024] By: jhi                                   on 2001/03/04  20:51:07
10328         Log: Subject: Re: Smoking patch 8898 for perl v5.7.0 on aix 4.3.0.0
10329              From: "H.Merijn Brand" <h.m.brand@hccnet.nl> 
10330              Date: Fri, 02 Mar 2001 18:25:26 +0100
10331              Message-Id: <20010302182416.1BF4.H.M.BRAND@hccnet.nl>
10332              
10333              Casting problem.
10334      Branch: perl
10335            ! ext/Storable/Storable.xs
10336 ____________________________________________________________________________
10337 [  9023] By: jhi                                   on 2001/03/04  19:46:45
10338         Log: Subject: [ID 20010303.009] SOCKS5 work around breaks other sockets
10339              From: nick@talking.bollo.cx
10340              Date: Sat, 03 Mar 2001 21:41:33 +0000
10341              Message-Id: <E14ZJmP-0000mE-00@Bagpuss.unfortu.net>
10342              
10343              Revert the workaround.
10344      Branch: perl
10345            ! perlio.c
10346 ____________________________________________________________________________
10347 [  9022] By: jhi                                   on 2001/03/04  19:36:28
10348         Log: Update Changes.
10349      Branch: perl
10350            ! Changes patchlevel.h
10351 ____________________________________________________________________________
10352 [  9021] By: jhi                                   on 2001/03/04  18:41:00
10353         Log: makedef.pl updates suggested by Chris Nandor; double-checking
10354              the changes in AIX, OS/2 Win32 would be nice.
10355      Branch: perl
10356            ! makedef.pl
10357 ____________________________________________________________________________
10358 [  9020] By: jhi                                   on 2001/03/04  18:23:58
10359         Log: Integrate change #9012 from maintperl into mainline,
10360              quench a compiler warning.
10361      Branch: perl
10362           !> toke.c
10363 ____________________________________________________________________________
10364 [  9019] By: jhi                                   on 2001/03/04  18:18:43
10365         Log: Integrate changes #9017 and 9018 from mainline into maintperl.
10366              
10367              \N{U+HHHH} fix.
10368              
10369              pattern in G_ARRAY context
10370      Branch: maint-5.6/perl
10371           !> pp_hot.c t/op/pat.t toke.c
10372 ____________________________________________________________________________
10373 [  9018] By: jhi                                   on 2001/03/04  18:07:48
10374         Log: Subject: [PATCH pp_hot.c regexp.t] pattern in G_ARRAY context
10375              From: Jeff Pinyan <jeffp@crusoe.net>
10376              Date: Sat, 3 Mar 2001 17:14:07 -0500 (EST)
10377              Message-ID: <Pine.GSO.4.21.0103031712070.1035-100000@crusoe.crusoe.net>
10378      Branch: perl
10379            ! pp_hot.c t/op/pat.t
10380 ____________________________________________________________________________
10381 [  9017] By: jhi                                   on 2001/03/04  18:06:21
10382         Log: I thought I tested the #9014.
10383      Branch: perl
10384            ! toke.c
10385 ____________________________________________________________________________
10386 [  9016] By: jhi                                   on 2001/03/04  17:41:22
10387         Log: Integrate changes #9013,9014,9015 from mainline into maintperl.
10388              
10389              Tweak the get*ent() OS/2 prototypes.
10390              
10391              Add the \N{U+HHHH} syntax.
10392              
10393              More tr/// UTF-8 fixes from Inaba Hiroto.
10394      Branch: maint-5.6/perl
10395           !> doop.c lib/charnames.pm os2/os2.c pod/perldiag.pod
10396           !> pod/perlretut.pod t/lib/charnames.t t/op/tr.t toke.c
10397 ____________________________________________________________________________
10398 [  9015] By: jhi                                   on 2001/03/04  17:36:04
10399         Log: More tr/// UTF-8 fixes from Inaba Hiroto.
10400      Branch: perl
10401            ! doop.c t/op/tr.t
10402 ____________________________________________________________________________
10403 [  9014] By: jhi                                   on 2001/03/04  17:24:49
10404         Log: Add the \N{U+HHHH} syntax.
10405      Branch: perl
10406            ! lib/charnames.pm pod/perldiag.pod pod/perlretut.pod
10407            ! t/lib/charnames.t toke.c
10408 ____________________________________________________________________________
10409 [  9013] By: jhi                                   on 2001/03/04  17:20:45
10410         Log: Tweak the get*ent() OS/2 prototypes.
10411      Branch: perl
10412            ! os2/os2.c
10413 ____________________________________________________________________________
10414 [  9012] By: gsar                                  on 2001/03/04  06:26:14
10415         Log: avoid warning (nit in change#9009)
10416      Branch: maint-5.6/perl
10417            ! toke.c
10418 ____________________________________________________________________________
10419 [  9011] By: gsar                                  on 2001/03/04  06:15:24
10420         Log: lib/charnames.t fails in 5.6.x because of older Unicode
10421              data
10422              
10423              TODO: need to revisit this after updating lib/unicode/...
10424      Branch: maint-5.6/perl
10425            ! t/lib/charnames.t
10426 ____________________________________________________________________________
10427 [  9010] By: gsar                                  on 2001/03/04  06:08:36
10428         Log: change#9009 breaks build (no "didrange" variable in 5.6.x)
10429      Branch: maint-5.6/perl
10430            ! toke.c
10431 ____________________________________________________________________________
10432 [  9009] By: jhi                                   on 2001/03/03  19:27:20
10433         Log: Integrate change #9008 from mainline to maintperl,
10434              UTF-8 tr/// fixes from Inaba Hiroto.
10435      Branch: maint-5.6/perl
10436           !> doop.c op.c t/op/tr.t toke.c
10437 ____________________________________________________________________________
10438 [  9008] By: jhi                                   on 2001/03/03  19:19:42
10439         Log: UTF8 tr/// fixes from Inaba Hiroto.
10440      Branch: perl
10441            ! doop.c op.c t/op/tr.t toke.c
10442 ____________________________________________________________________________
10443 [  9007] By: jhi                                   on 2001/03/03  19:00:30
10444         Log: Integrate change #9006 from maintperl to mainline,
10445              more robust quest for the infinite.
10446      Branch: perl
10447           !> lib/Math/Complex.pm
10448 ____________________________________________________________________________
10449 [  9006] By: jhi                                   on 2001/03/03  18:58:06
10450         Log: Subject: [PATCH 5.6.1] More robust Math::Complex
10451              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
10452              Date: Sat, 3 Mar 2001 12:51:50 -0500
10453              Message-ID: <20010303125150.A2147@math.ohio-state.edu>
10454              
10455              Be more robust in our quest for the infinite.
10456      Branch: maint-5.6/perl
10457            ! lib/Math/Complex.pm
10458 ____________________________________________________________________________
10459 [  9005] By: jhi                                   on 2001/03/03  17:55:50
10460         Log: The #8982 modified for perl 5.6.x, from Radu Greab.
10461      Branch: maint-5.6/perl
10462            ! doio.c
10463 ____________________________________________________________________________
10464 [  9004] By: jhi                                   on 2001/03/03  17:40:14
10465         Log: Rewrite REPORT() and REPORT2() (used for -DT) slightly
10466              so that picky compilers like IRIX won't get huffy about
10467              "statements without effect" (like 1;).
10468      Branch: perl
10469            ! toke.c
10470 ____________________________________________________________________________
10471 [  9003] By: jhi                                   on 2001/03/03  17:15:52
10472         Log: Integrate change #9002 from mainline to maintperl.
10473              
10474              Subject: [perl-5.6.x, perl-current] accept for EPOC
10475      Branch: maint-5.6/perl
10476           !> pp_sys.c
10477 ____________________________________________________________________________
10478 [  9002] By: jhi                                   on 2001/03/03  17:14:30
10479         Log: Subject: [perl-5.6.x, perl-current] accept for EPOC
10480              From: Olaf Flebbe <O.Flebbe@science-computing.de>
10481              Date: Sat, 3 Mar 2001 16:36:04 +0100 (CET)
10482              Message-ID: <Pine.LNX.4.02.10103031635190.4825-100000@milkyway.science-computing.de>
10483      Branch: perl
10484            ! pp_sys.c
10485 ____________________________________________________________________________
10486 [  9001] By: jhi                                   on 2001/03/03  17:13:13
10487         Log: Subject: [PATCH perl@8989] t/pod/find.t on VMS
10488              From: "Craig A. Berry" <craigberry@mac.com>
10489              Date: Fri, 02 Mar 2001 17:44:40 -0600
10490              Message-Id: <5.0.2.1.0.20010302172145.038d3c10@mail.mac.com>
10491      Branch: perl
10492            ! t/pod/find.t
10493 ____________________________________________________________________________
10494 [  9000] By: jhi                                   on 2001/03/03  17:11:55
10495         Log: Integrate changes #8997,8999 from maintperl.
10496              
10497              Subject: [PATCH 5.6.1] compiling on OS/2
10498              (Better error message from hints/os2.sh)
10499              
10500              Subject: [PATCH 5.6.1] syslog.t
10501      Branch: perl
10502           !> hints/os2.sh t/lib/syslog.t
10503 ____________________________________________________________________________
10504 [  8999] By: jhi                                   on 2001/03/03  17:09:28
10505         Log: Subject: [PATCH 5.6.1] syslog.t
10506              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
10507              Date: Sat, 3 Mar 2001 02:11:17 -0500
10508              Message-ID: <20010303021116.A11897@math.ohio-state.edu>
10509      Branch: maint-5.6/perl
10510            ! t/lib/syslog.t
10511 ____________________________________________________________________________
10512 [  8998] By: jhi                                   on 2001/03/03  17:07:50
10513         Log: Subject: Re: [PATCH 5.7.0] compiling on OS/2: 5.6.1 too
10514              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
10515              Date: Sat, 3 Mar 2001 01:53:52 -0500
10516              Message-ID: <20010303015352.A11741@math.ohio-state.edu>
10517      Branch: maint-5.6/perl
10518            ! opcode.pl os2/os2.c
10519 ____________________________________________________________________________
10520 [  8997] By: jhi                                   on 2001/03/03  17:03:30
10521         Log: Subject: [PATCH 5.6.1] compiling on OS/2
10522              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
10523              Date: Sat, 3 Mar 2001 01:59:59 -0500
10524              Message-ID: <20010303015959.B11741@math.ohio-state.edu>
10525      Branch: maint-5.6/perl
10526            ! hints/os2.sh
10527 ____________________________________________________________________________
10528 [  8996] By: jhi                                   on 2001/03/03  00:55:58
10529         Log: Regen files for mainline.
10530      Branch: perl
10531            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
10532            ! config_h.SH pod/perlapi.pod pod/perltoc.pod
10533 ____________________________________________________________________________
10534 [  8995] By: jhi                                   on 2001/03/03  00:35:22
10535         Log: Integrate changes #8099,8218,8220,8221,8227,8304,8317,
10536              8318,8320,8337,8503,8877,8890,8903,8971 from mainline
10537              to maintperl.
10538              
10539              Subject: Re: [ID 20000328.039] [PATCH] Eliminate Configure use of /tmp
10540              
10541              Add Configure option -Dmksymlinks which will create a symlink
10542              forest if the current/build differs from the source directory.
10543              (8218,8220,8221,8317,8318,8971)
10544              
10545              Subject: Re: A Configure option like 'otherlibdirs' but for *pre*pending?
10546              (Document APPLLIB_EXP in INSTALL.)
10547              
10548              If running byacc write-enable also perly.h.
10549              
10550              DB3 NDBM/ODBM emulation tweaks from Stanislav Brabec <utx@penguin.cz>.
10551              
10552              Subject: [PATCH 5.7.1/Configure] failure to set src='.'
10553              
10554              Sanity check for conflicting thread flavours.
10555              
10556              Fix the sys/fcntl.h problem reported by Peter Prymmer.
10557              
10558              Add few CPUs/architectures to the Cppsym scan,
10559              add -perlio to archname if so selected (modified 8890)
10560              
10561              Be more helpful for devel builders, suggested by John L. Allen.
10562              (admittedly pointless change for maintperl, but the usedevel
10563              code is there already)
10564      Branch: maint-5.6/perl
10565           !> Configure INSTALL Makefile.SH Porting/Glossary
10566           !> Porting/config.sh Porting/config_H config_h.SH embed.pl
10567           !> epoc/config.sh ext/NDBM_File/NDBM_File.xs
10568           !> ext/ODBM_File/ODBM_File.xs t/io/fs.t warnings.pl
10569           !> win32/config.bc win32/config.gc win32/config.vc
10570 ____________________________________________________________________________
10571 [  8994] By: jhi                                   on 2001/03/02  23:31:41
10572         Log: Use also $ccflags, not just $ldflags, when testing for gccness.
10573      Branch: metaconfig/U/perl
10574            ! gccvers.U
10575 ____________________________________________________________________________
10576 [  8993] By: jhi                                   on 2001/03/02  23:22:12
10577         Log: Regenerate various files for maint.
10578      Branch: maint-5.6/perl
10579            ! Porting/Glossary Porting/config.sh Porting/config_H objXSUB.h
10580            ! perlapi.c pod/perlapi.pod pod/perltoc.pod proto.h
10581 ____________________________________________________________________________
10582 [  8992] By: alanbur                               on 2001/03/02  22:48:34
10583         Log: Resync wuth parent
10584      Branch: maint-5.6/pureperl
10585           +> pod/perlclib.pod t/lib/cgi-esc.t t/run/runenv.t
10586           !> (integrate 60 files)
10587 ____________________________________________________________________________
10588 [  8991] By: jhi                                   on 2001/03/02  21:00:08
10589         Log: Retract the #8742 part of #8986, backward compat.
10590      Branch: maint-5.6/perl
10591            ! embed.pl
10592 ____________________________________________________________________________
10593 [  8990] By: jhi                                   on 2001/03/02  20:40:07
10594         Log: Retract the #8919 part of #8987, not applicable to the 5.6 branch.
10595      Branch: maint-5.6/perl
10596            ! hv.c
10597 ____________________________________________________________________________
10598 [  8989] By: jhi                                   on 2001/03/02  19:59:56
10599         Log: Update Changes.
10600      Branch: perl
10601            ! Changes patchlevel.h
10602 ____________________________________________________________________________
10603 [  8988] By: jhi                                   on 2001/03/02  19:57:08
10604         Log: Integrate perlio.
10605      Branch: perl
10606           !> ext/Encode/Encode/ascii.ucm ext/Encode/Encode/cp1047.ucm
10607           !> ext/Encode/Encode/cp1250.ucm ext/Encode/Encode/cp37.ucm
10608           !> ext/Encode/Encode/dingbats.ucm ext/Encode/Encode/iso8859-1.ucm
10609           !> ext/Encode/Encode/iso8859-10.ucm
10610           !> ext/Encode/Encode/iso8859-13.ucm
10611           !> ext/Encode/Encode/iso8859-14.ucm
10612           !> ext/Encode/Encode/iso8859-15.ucm
10613           !> ext/Encode/Encode/iso8859-16.ucm
10614           !> ext/Encode/Encode/iso8859-2.ucm
10615           !> ext/Encode/Encode/iso8859-3.ucm
10616           !> ext/Encode/Encode/iso8859-4.ucm
10617           !> ext/Encode/Encode/iso8859-5.ucm
10618           !> ext/Encode/Encode/iso8859-6.ucm
10619           !> ext/Encode/Encode/iso8859-7.ucm
10620           !> ext/Encode/Encode/iso8859-8.ucm
10621           !> ext/Encode/Encode/iso8859-9.ucm ext/Encode/Encode/posix-bc.ucm
10622           !> ext/Encode/Encode/symbol.ucm ext/Encode/compile
10623 ____________________________________________________________________________
10624 [  8987] By: jhi                                   on 2001/03/02  19:43:40
10625         Log: Integrate changes #8784,8839,8843,8847,8849,8859,8866,
10626              8873,8874,8876,8879,8901,8902,8908,8913,8918,8919,8946,8947,8948,
10627              8950,8952,8955 from mainline to maintperl.
10628              
10629              Subject: [PATCH: perl@8773] small fixups to perlclib.pod
10630              
10631              Put to rest the 20010205.001, the email address checking (not) regex.
10632              
10633              fork() not everywhere, cleanup temp files.
10634              
10635              The #8843 wasn't quite right: %Config needs to imported.
10636              
10637              Subject: [PATCH perl@8841] glob-basic.t, runenv.t fix-ups
10638              (#8849: the glob-basic hunk needed massaging as it depended
10639              on Schwern's large-scale (unintegrated) patches)
10640              
10641              Skip the Perl_sys_intern_clear and Perl_sys_intern_init.
10642              
10643              Upgrade to CGI.pm 2.752, from Lincoln Stein.
10644              (Note: there were some conflicts due to EBCDIC and EPOC
10645              patches, in general I preferred the repository code.)
10646              (When 2.753 comes out, we need to synchronize.)
10647              
10648              Subject: [PATCH] fix for charnames above FFFF
10649              
10650              Subject: [patch perl@8841] One URL update and a possible OS Version snag for perlport.pod
10651              
10652              If no sfio, no -lsfio.
10653              
10654              Run run/*.t also in minitest.
10655              
10656              Subject:  [PATCH perl 5.7.0] malloc message address offset
10657              
10658              Subject:  [PATCH 5.7.0] don't zero CvFLAGS before checking for CvCONST!
10659              
10660              Subject: fix for parameter -Dm (for perl@8867)
10661              
10662              Subject: [PATCH: perl@8892] was Re: hashing order difference?
10663              (make the test more portable)
10664              
10665              Subject: Re: [PATCH] fix for charnames above FFFF
10666              
10667              Subject: Re: I'm losing the war...
10668              (hv_store() not working correctly in ENV_IS_CASELESS case.)
10669              
10670              Subject: Modified README.bs2000 
10671              
10672              Subject: [PATCH: perl@8935] -Dt padsv($var)
10673              
10674              Subject: [PATCH: perl@8890] small fix in pod/perlop.pod
10675              
10676              Subject: PATCH: extra tests to check on negative float to unsigned cast
10677              
10678              Subject: [PATCH] XPUSH[insp] was Re: progress
10679              
10680              Subject: Re: Compile with perlcc..
10681      Branch: maint-5.6/perl
10682           !> (integrate 36 files)
10683 ____________________________________________________________________________
10684 [  8986] By: jhi                                   on 2001/03/02  18:51:25
10685         Log: Integrate changes #8689,8697,8724,8726,8731,8742,8754,8755,
10686              8763,8767,8770,8772,8795,8796,8813,8822,8823 from mainline
10687              to maintperl.
10688              
10689              Subject: Re: [PATCH lots of pod/] s/chop/chomp/g
10690              
10691              Subject: [DOC PATCH] overload.pm nits
10692              
10693              Add header for LIB$ prototypes (C. Berry)
10694              
10695              Convert fwrite()s to sockets to write()s, since some socket stacks
10696              don't take kindly to stdio.
10697              Ignore "expected" SS$_NOLOGNAM when doing internal LNM lookups
10698              (for often optional LNMs)
10699              Correct a few typos
10700              (C. Bailey)
10701              
10702              Subject: [PATCH: 5.6.1 trial2 && perl@8671] provide EBCDIC CGI::Util::escape() and test
10703              
10704              De-cut-and-pasto.
10705              
10706              Subject: Re: [PATCH embed.pl] Forgot to add ./lib to @INC for File::Glob
10707              
10708              Upgrade to Text-Tabs+Wrap-2001.0131 from David Muir Sharnoff.
10709              
10710              Upgrade to CPAN 1.59_54, from Andreas König.
10711              
10712              Bogus shebang.
10713              
10714              Subject: [PATCH] Document makepatch in Porting/patching
10715              
10716              UTF-8 documentation.
10717              
10718              Subject: Re: [PATCH] pod/perlclib.pod - Replacements for C library functions
10719              
10720              Sort the MANIFEST.
10721              
10722              Subject: [ID 20010210.002] perldiag doesn't include the "Scalars leaked" message
10723              
10724              Subject: [PATCH @8807] toke.c cleanup: scan_str()
10725              
10726              Subject: [PATCH perl.c] Fixing PERL5OPT (was Re: Warnings, strict, and CPAN)
10727              
10728              Add run/*.t to testables.
10729              
10730              TODO: integrate #8784.
10731      Branch: maint-5.6/perl
10732           +> pod/perlclib.pod t/lib/cgi-esc.t t/run/runenv.t
10733           !> (integrate 28 files)
10734 ____________________________________________________________________________
10735 [  8985] By: nick                                  on 2001/03/02  18:15:45
10736         Log: Integrate mainline
10737      Branch: perlio
10738           !> doio.c lib/File/Copy.pm pod/perldata.pod pod/perlfaq1.pod
10739           !> vms/vms.c
10740 ____________________________________________________________________________
10741 [  8984] By: jhi                                   on 2001/03/02  16:00:17
10742         Log: Integrate changes #8978,8979,8980,8981,8983 from mainline.
10743              
10744              perlfaq1 reworded to suggest 5.6.0 or 5.005_03, or POSSIBLY
10745              5.004_05, and mention the suidperl August 2000 security problem.
10746              (#8978,#8981)
10747              
10748              Subject: [ID 20010301.004] Technically speaking in perldata
10749              
10750              Subject: [PATCH] File::Copy for bleadperl, maintperl
10751              
10752              Subject:  [PATCH 5.7.0/5.6.0+] VMS piping ... cleanup at interpreter exit
10753              
10754              (The #8982, fix for 20010221.005 and 20010221.008,
10755              would be nice too but it didn't integrate cleanly.)
10756      Branch: maint-5.6/perl
10757           !> lib/File/Copy.pm pod/perldata.pod pod/perlfaq1.pod vms/vms.c
10758 ____________________________________________________________________________
10759 [  8983] By: jhi                                   on 2001/03/02  15:51:16
10760         Log: Subject:  [PATCH 5.7.0/5.6.0+] VMS piping ... cleanup at interpreter exit
10761              From: lane@DUPHY4.Physics.Drexel.Edu (Charles Lane)
10762              Date:     Thu, 1 Mar 2001 15:54:09 EST
10763              Message-Id: <010301155258.b8cc1@DUPHY4.Physics.Drexel.Edu>
10764      Branch: perl
10765            ! vms/vms.c
10766 ____________________________________________________________________________
10767 [  8982] By: jhi                                   on 2001/03/02  15:43:31
10768         Log: Subject: Re: sync sync sync: have I missed any patches?
10769              From: Radu Greab <radu@netsoft.ro> 
10770              Date: Thu, 1 Mar 2001 21:47:22 +0200 (EET)
10771              Message-ID: <15006.42826.747914.669893@ix.netsoft.ro>
10772              
10773              Fixes the bugs 20010221.005 and 20010221.008: "the taint checker
10774              was checking argv[0] regardless of whether a different pathname
10775              will actually be executed."  Test case not supplied because 
10776              drafting that, ironically enough, revealed another bug
10777              (or a feature).
10778      Branch: perl
10779            ! doio.c
10780 ____________________________________________________________________________
10781 [  8981] By: jhi                                   on 2001/03/02  15:28:03
10782         Log: Misdate in #8978.
10783      Branch: perl
10784            ! pod/perlfaq1.pod
10785 ____________________________________________________________________________
10786 [  8980] By: jhi                                   on 2001/03/02  15:24:20
10787         Log: Subject: [PATCH] File::Copy for bleadperl, maintperl
10788              From: Chris Nandor <pudge@pobox.com>
10789              Date: Wed, 28 Feb 2001 22:10:15 -0500
10790              Message-Id: <p05010400b6c36d959ae8@[10.0.1.177]>
10791      Branch: perl
10792            ! lib/File/Copy.pm
10793 ____________________________________________________________________________
10794 [  8979] By: jhi                                   on 2001/03/02  15:17:16
10795         Log: Subject: [ID 20010301.004] Technically speaking in perldata
10796              From: abela@geneanet.org
10797              Date: Thu,  1 Mar 2001 17:59:27 +0100 (CET)
10798              Message-Id: <20010301165927.262C2D17D@little-roots.geneanet.org>
10799      Branch: perl
10800            ! pod/perldata.pod
10801 ____________________________________________________________________________
10802 [  8978] By: jhi                                   on 2001/03/02  15:15:27
10803         Log: Subject: [ID 20010301.003] ref to 5.004
10804              From: abela@geneanet.org
10805              Date: Thu,  1 Mar 2001 14:48:40 +0100 (CET)
10806              Message-Id: <20010301134840.C0CD1D171@little-roots.geneanet.org>
10807              
10808              Reworded to suggest 5.6.0 or 5.005_03, or POSSIBLY 5.004_05,
10809              and mention the suidperl August 2000 security problem.
10810      Branch: perl
10811            ! pod/perlfaq1.pod
10812 ____________________________________________________________________________
10813 [  8977] By: alanbur                               on 2001/03/02  14:17:45
10814         Log: Resynchronised with parent
10815      Branch: maint-5.6/pureperl
10816           !> AUTHORS README.epoc configure.com epoc/createpkg.pl
10817           !> lib/File/Temp.pm perl.c pp_sys.c t/lib/ftmp-mktemp.t
10818           !> t/lib/ftmp-posix.t t/op/append.t t/op/sprintf.t toke.c util.c
10819           !> vms/descrip_mms.template win32/win32.c win32/win32.h
10820           !> win32/win32iop.h
10821 ____________________________________________________________________________
10822 [  8976] By: nick                                  on 2001/03/01  23:25:30
10823         Log: Integrate mainline.
10824      Branch: perlio
10825            - t/op/qu.t
10826           !> (integrate 55 files)
10827 ____________________________________________________________________________
10828 [  8975] By: jhi                                   on 2001/03/01  16:51:34
10829         Log: Integrate change #8974 from maintperl, fix for bugid 20010226.008.
10830      Branch: perl
10831           !> toke.c
10832 ____________________________________________________________________________
10833 [  8974] By: gsar                                  on 2001/03/01  16:28:21
10834         Log: fix for bugid 20010226.008
10835              
10836              the problem was that some of the pointers (PL_last_lop and
10837              PL_last_uni specifically) into the lex buffers weren't correctly
10838              being invalidated when the buffer changed; this would leave the
10839              pointers pointing at an arbitrary location in the buffer if
10840              the buffer didn't need to be reallocated, or point into freed
10841              memory if the buffer had to be realloced
10842              
10843              TODO item for bugdb maintainers: check other seemingly random
10844              parser-related bugs--they might be cured by this
10845      Branch: maint-5.6/perl
10846            ! toke.c
10847 ____________________________________________________________________________
10848 [  8973] By: jhi                                   on 2001/03/01  02:23:25
10849         Log: Retract #8970 because of a completely mysterious core dump:
10850              adding the tests 241..244 causes op/pat dump core at test #25.
10851              The test needs a lot of whittling down before the bug can be solved.
10852      Branch: perl
10853            ! t/op/pat.t
10854 ____________________________________________________________________________
10855 [  8972] By: jhi                                   on 2001/03/01  01:58:38
10856         Log: Regen perlapi.
10857      Branch: perl
10858            ! pod/perlapi.pod
10859 ____________________________________________________________________________
10860 [  8971] By: jhi                                   on 2001/03/01  01:34:09
10861         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))
10862              From: Nicholas Clark <nick@ccl4.org>
10863              Date: Wed, 28 Feb 2001 23:28:49 +0000
10864              Message-ID: <20010228232849.A55187@plum.flirble.org>
10865              
10866              Allow a completely write protected source code tree
10867              when using the Configure -Dmksymlinks.
10868      Branch: perl
10869            ! embed.pl warnings.pl
10870 ____________________________________________________________________________
10871 [  8970] By: jhi                                   on 2001/03/01  01:32:04
10872         Log: Add back the EBCDIC character range tests (for matching).
10873      Branch: perl
10874            ! t/op/pat.t
10875 ____________________________________________________________________________
10876 [  8969] By: nick                                  on 2001/02/28  18:18:01
10877         Log: Add charname comments to .ucm files writen by 'compile',
10878              also order charmaps in those files by source encoding.
10879              regenerate distrubuted .ucm files
10880      Branch: perlio
10881            ! ext/Encode/Encode/ascii.ucm ext/Encode/Encode/cp1047.ucm
10882            ! ext/Encode/Encode/cp1250.ucm ext/Encode/Encode/cp37.ucm
10883            ! ext/Encode/Encode/dingbats.ucm ext/Encode/Encode/iso8859-1.ucm
10884            ! ext/Encode/Encode/iso8859-10.ucm
10885            ! ext/Encode/Encode/iso8859-13.ucm
10886            ! ext/Encode/Encode/iso8859-14.ucm
10887            ! ext/Encode/Encode/iso8859-15.ucm
10888            ! ext/Encode/Encode/iso8859-16.ucm
10889            ! ext/Encode/Encode/iso8859-2.ucm
10890            ! ext/Encode/Encode/iso8859-3.ucm
10891            ! ext/Encode/Encode/iso8859-4.ucm
10892            ! ext/Encode/Encode/iso8859-5.ucm
10893            ! ext/Encode/Encode/iso8859-6.ucm
10894            ! ext/Encode/Encode/iso8859-7.ucm
10895            ! ext/Encode/Encode/iso8859-8.ucm
10896            ! ext/Encode/Encode/iso8859-9.ucm ext/Encode/Encode/posix-bc.ucm
10897            ! ext/Encode/Encode/symbol.ucm ext/Encode/compile
10898 ____________________________________________________________________________
10899 [  8968] By: jhi                                   on 2001/02/28  16:26:37
10900         Log: Expand usemorebits early if d_casti32 needs to be undefined.
10901      Branch: perl
10902            ! hints/hpux.sh hints/irix_6.sh
10903 ____________________________________________________________________________
10904 [  8967] By: jhi                                   on 2001/02/28  16:22:26
10905         Log: Undo qu.  Retract #8814, rewrite op/each part of #8615,
10906              retract toke.c/qu parts of #8583, retract #8485, retract
10907              or rewrite qu parts of #8439 of toke.c, keywords.h, keywords.pl,
10908              op/length.t, and MANIFEST, and delete t/op/qu.t.
10909      Branch: perl
10910            - t/op/qu.t
10911            ! MANIFEST pod/perlfunc.pod pod/perlop.pod pod/perlre.pod
10912            ! pod/perlretut.pod pod/perlunicode.pod t/op/each.t
10913            ! t/op/length.t toke.c
10914 ____________________________________________________________________________
10915 [  8966] By: jhi                                   on 2001/02/28  15:00:27
10916         Log: Retract #8865 and #8869, un?pack C now again agree with Camel 3
10917              by not changing from pre-Unicode days into being Unicode-aware.
10918              Sniff.
10919      Branch: perl
10920            ! pp.c t/op/pack.t t/op/qu.t
10921 ____________________________________________________________________________
10922 [  8965] By: jhi                                   on 2001/02/28  14:37:55
10923         Log: Subject: Re: Errors in core PODs
10924              From: Michael Stevens <michael@etla.org> 
10925              Date: Fri, 23 Feb 2001 15:47:56 +0000
10926              Message-ID: <20010223154756.A7723@firedrake.org> 
10927      Branch: perl
10928            ! ext/Encode/Encode.pm lib/Exporter/Heavy.pm
10929            ! lib/File/Spec/Epoc.pm lib/Test/Harness.pm lib/utf8.pm
10930            ! makedef.pl vms/ext/DCLsym/DCLsym.pm vms/ext/Stdio/Stdio.pm
10931            ! x2p/a2p.pod
10932 ____________________________________________________________________________
10933 [  8964] By: jhi                                   on 2001/02/28  14:35:35
10934         Log: Do not force d_casti32 to undef if we are on a 64-bit environment.
10935              (The #8961 was too bold.)
10936      Branch: perl
10937            ! hints/hpux.sh hints/irix_6.sh
10938 ____________________________________________________________________________
10939 [  8963] By: jhi                                   on 2001/02/28  14:33:39
10940         Log: Subject: Re: sync sync sync: have I missed any patches?
10941              From: Tim Jenness <t.jenness@jach.hawaii.edu>
10942              In-Reply-To: <20010227140737.Y10633@chaos.wustl.edu>
10943              Date: Tue, 27 Feb 2001 13:24:58 -1000 (HST)
10944              Message-ID: <Pine.LNX.4.30.0102271322070.8623-100000@lapaki.jach.hawaii.edu>
10945              
10946              Replace djSP with dSP.
10947      Branch: perl
10948            ! cop.h doio.c doop.c ext/B/B/C.pm ext/B/B/CC.pm
10949            ! pod/perlhack.pod pp.c pp.h pp_ctl.c pp_hot.c pp_sys.c sv.c
10950            ! win32/perlhost.h
10951 ____________________________________________________________________________
10952 [  8962] By: jhi                                   on 2001/02/27  23:21:14
10953         Log: Upgrade to Filter::Simple 0.50 (just few doc tweaks).
10954      Branch: perl
10955            ! lib/Filter/Simple.pm
10956 ____________________________________________________________________________
10957 [  8961] By: jhi                                   on 2001/02/27  22:55:26
10958         Log: The casting mystery in HP-UX and IRIX needs at least a workaround
10959              and this would be it.
10960      Branch: perl
10961            ! hints/hpux.sh hints/irix_6.sh
10962 ____________________________________________________________________________
10963 [  8960] By: jhi                                   on 2001/02/27  22:51:33
10964         Log: Subject: [PATCH perl@8958 and 5.6.1-trial2] configure.com bug fixing spree
10965              From: "Craig A. Berry" <craigberry@mac.com>
10966              Date: Tue, 27 Feb 2001 16:11:44 -0600
10967              Message-Id: <5.0.2.1.0.20010227150548.02a200f8@exchi01>
10968      Branch: maint-5.6/perl
10969            ! configure.com vms/descrip_mms.template
10970 ____________________________________________________________________________
10971 [  8959] By: jhi                                   on 2001/02/27  22:47:23
10972         Log: Subject: [PATCH perl@8958 and 5.6.1-trial2] configure.com bug fixing spree
10973              From: "Craig A. Berry" <craigberry@mac.com>
10974              Date: Tue, 27 Feb 2001 16:11:44 -0600
10975              Message-Id: <5.0.2.1.0.20010227150548.02a200f8@exchi01>
10976      Branch: perl
10977            ! configure.com vms/descrip_mms.template
10978 ____________________________________________________________________________
10979 [  8958] By: jhi                                   on 2001/02/27  15:16:42
10980         Log: Update Changes.
10981      Branch: perl
10982            ! Changes patchlevel.h
10983 ____________________________________________________________________________
10984 [  8957] By: jhi                                   on 2001/02/27  06:15:07
10985         Log: Subject: [5.6.x] EPOC additions
10986              From: Olaf Flebbe <O.Flebbe@science-computing.de>
10987              Date: Mon, 26 Feb 2001 23:33:46 +0100 (CET)
10988              Message-ID: <Pine.LNX.4.02.10102262333040.3736-100000@milkyway.science-computing.de>
10989      Branch: maint-5.6/perl
10990            ! AUTHORS README.epoc epoc/createpkg.pl pp_sys.c
10991 ____________________________________________________________________________
10992 [  8956] By: jhi                                   on 2001/02/27  06:12:11
10993         Log: Subject: [perl-current] EPOC 
10994              From: Olaf Flebbe <O.Flebbe@science-computing.de>
10995              Date: Mon, 26 Feb 2001 23:34:36 +0100 (CET)
10996              Message-ID: <Pine.LNX.4.02.10102262333490.3781-100000@milkyway.science-computing.de>
10997      Branch: perl
10998            ! AUTHORS README.epoc epoc/createpkg.pl epoc/epoc.c
10999            ! epoc/epocish.c epoc/epocish.h pp_sys.c
11000 ____________________________________________________________________________
11001 [  8955] By: jhi                                   on 2001/02/27  05:59:50
11002         Log: Subject: Re: Compile with perlcc..
11003              From: Edward Peschko <edwardp@excitehome.net>
11004              Date: Mon, 26 Feb 2001 18:51:58 -0800
11005              Message-ID: <20010226185158.A9871@excitehome.net>
11006              
11007              plus add a simple usage message if no arguments given.
11008      Branch: perl
11009            ! lib/Test/Harness.pm pod/Makefile.SH t/TEST t/harness
11010            ! utils/Makefile utils/perlcc.PL win32/pod.mak
11011 ____________________________________________________________________________
11012 [  8954] By: nick                                  on 2001/02/26  21:02:59
11013         Log: Integrate mainline
11014      Branch: perlio
11015           !> README.bs2000 ext/Encode/compile lib/Test.pm op.c perlio.c
11016           !> pod/perlguts.pod pod/perlop.pod pp_ctl.c run.c t/op/bop.t
11017           !> t/op/sprintf.t
11018 ____________________________________________________________________________
11019 [  8953] By: jhi                                   on 2001/02/26  14:43:54
11020         Log: Subject: Documenting coderef @INC (Re: CPAN "make this script work" feature)
11021              From: Nicholas Clark <nick@ccl4.org>
11022              Date: Mon, 26 Feb 2001 00:42:07 +0000
11023              Message-ID: <20010226004207.F23333@plum.flirble.org>
11024      Branch: perl
11025            ! pp_ctl.c
11026 ____________________________________________________________________________
11027 [  8952] By: jhi                                   on 2001/02/26  14:42:13
11028         Log: Subject: [PATCH] XPUSH[insp] was Re: progress
11029              From: Simon Cozens <simon@netthink.co.uk>
11030              Date: Mon, 26 Feb 2001 12:23:48 +0000
11031              Message-ID: <20010226122348.A25536@pembro26.pmb.ox.ac.uk>
11032      Branch: perl
11033            ! pod/perlguts.pod
11034 ____________________________________________________________________________
11035 [  8951] By: jhi                                   on 2001/02/26  14:39:15
11036         Log: Subject: [PATCH] perlio - unknown layer
11037              From: Nicholas Clark <nick@ccl4.org>
11038              Date: Mon, 26 Feb 2001 00:27:19 +0000
11039              Message-ID: <20010226002719.E23333@plum.flirble.org>
11040      Branch: perl
11041            ! perlio.c
11042 ____________________________________________________________________________
11043 [  8950] By: jhi                                   on 2001/02/26  14:38:04
11044         Log: Subject: PATCH: extra tests to check on negative float to unsigned cast
11045              From: Jeff Okamoto <okamoto@xfiles.corp.hp.com>
11046              Message-Id: <200102232128.NAA28938@xfiles.corp.hp.com>
11047              Date: Fri, 23 Feb 2001 13:28:33 -0800 (PST)
11048      Branch: perl
11049            ! t/op/bop.t
11050 ____________________________________________________________________________
11051 [  8949] By: jhi                                   on 2001/02/26  14:37:07
11052         Log: Subject: Re: [PATCH: perl 5.005_03] Record I/O fix for Test.pm in older perl
11053              From: Peter Prymmer <pvhp@forte.com>
11054              Date: Fri, 23 Feb 2001 10:51:37 -0800 (PST)
11055              Message-ID: <Pine.OSF.4.10.10102231042010.79050-100000@aspara.forte.com>
11056      Branch: perl
11057            ! lib/Test.pm
11058 ____________________________________________________________________________
11059 [  8948] By: jhi                                   on 2001/02/26  14:35:53
11060         Log: Subject: [PATCH: perl@8890] small fix in pod/perlop.pod
11061              From: Radu Greab <radu@netsoft.ro>
11062              Date: Fri, 23 Feb 2001 18:50:48 +0200 (EET)
11063              Message-ID: <14998.38120.623015.916165@ix.netsoft.ro>
11064      Branch: perl
11065            ! pod/perlop.pod
11066 ____________________________________________________________________________
11067 [  8947] By: jhi                                   on 2001/02/26  14:34:46
11068         Log: Subject: [PATCH: perl@8935] -Dt padsv($var)
11069              From: David Mitchell <davem@fdgroup.co.uk>
11070              Date: Mon, 26 Feb 2001 11:01:24 +0000 (GMT)
11071              Message-Id: <200102261101.LAA12915@tiree.fdgroup.co.uk>
11072      Branch: perl
11073            ! run.c
11074 ____________________________________________________________________________
11075 [  8946] By: jhi                                   on 2001/02/26  14:32:37
11076         Log: Subject: Modified README.bs2000 
11077              From: Dorner Thomas <Thomas.Dorner@start.de>
11078              Date: Mon, 26 Feb 2001 09:22:17 +0100
11079              Message-ID: <6727B1DACFCDD311A757009027CA8D69010A889D@Ex02.inhouse.start.de>
11080      Branch: perl
11081            ! README.bs2000
11082 ____________________________________________________________________________
11083 [  8945] By: jhi                                   on 2001/02/26  14:19:53
11084         Log: Integrate the t/op/sprintf.t parts of #7909 and #8944 from mainline
11085              to maintperl, listing the known failures on the tests 129 and 130.
11086      Branch: maint-5.6/perl
11087           !> t/op/sprintf.t
11088 ____________________________________________________________________________
11089 [  8944] By: jhi                                   on 2001/02/26  14:14:15
11090         Log: Add more known sprintf failures.
11091      Branch: perl
11092            ! t/op/sprintf.t
11093 ____________________________________________________________________________
11094 [  8943] By: jhi                                   on 2001/02/26  13:56:22
11095         Log: perlglob.exe needs to be found in Win32, patch from
11096              Vadim Konovalov.  Nick I-S comments: "Perhaps a lingering glob()
11097              which needs external glob at mini-perl time."
11098      Branch: perl
11099            ! ext/Encode/compile
11100 ____________________________________________________________________________
11101 [  8942] By: jhi                                   on 2001/02/26  13:52:19
11102         Log: A missing dTHX from Vadim Konovalov.
11103      Branch: perl
11104            ! perlio.c
11105 ____________________________________________________________________________
11106 [  8941] By: jhi                                   on 2001/02/26  13:37:05
11107         Log: Miscommunication at #8914: #8902 was okay, #8881 was to be retracted.
11108      Branch: perl
11109            ! op.c
11110 ____________________________________________________________________________
11111 [  8940] By: jhi                                   on 2001/02/26  13:35:40
11112         Log: Integrate perlio.
11113      Branch: perl
11114           !> ext/Encode/Encode.pm
11115 ____________________________________________________________________________
11116 [  8939] By: nick                                  on 2001/02/25  23:47:09
11117         Log: Integrate mainline.
11118      Branch: perlio
11119           !> Changes lib/Pod/Find.pm patchlevel.h perl.h regcomp.c
11120           !> t/op/pat.t t/op/tr.t t/pod/find.t toke.c utf8.c
11121 ____________________________________________________________________________
11122 [  8938] By: nick                                  on 2001/02/25  19:36:28
11123         Log: Encode implementations docs.
11124      Branch: perlio
11125            ! ext/Encode/Encode.pm
11126 ____________________________________________________________________________
11127 [  8937] By: jhi                                   on 2001/02/25  19:26:16
11128         Log: Script wasn't aligned with reality.
11129      Branch: perl
11130            ! t/pod/find.t
11131 ____________________________________________________________________________
11132 [  8936] By: jhi                                   on 2001/02/25  18:54:55
11133         Log: Update Changes.
11134      Branch: perl
11135            ! Changes patchlevel.h
11136 ____________________________________________________________________________
11137 [  8935] By: jhi                                   on 2001/02/25  18:46:36
11138         Log: Retract #8929,8930,8932,8933 for now.
11139      Branch: perl
11140            ! perl.h regcomp.c t/op/pat.t t/op/tr.t toke.c
11141 ____________________________________________________________________________
11142 [  8934] By: jhi                                   on 2001/02/25  17:34:35
11143         Log: Integrate perlio.
11144      Branch: perl
11145           !> embed.pl ext/Encode/Encode.pm ext/Encode/Encode.xs
11146           !> lib/ExtUtils/typemap perl.h perlapi.c proto.h sv.c
11147           !> t/lib/encode.t
11148 ____________________________________________________________________________
11149 [  8933] By: jhi                                   on 2001/02/25  17:33:12
11150         Log: (Retracted by #8395.)
11151              
11152              Slight tweaks in scan_const(), not fixes yet, it seems like
11153              lots of work remains to be done...
11154      Branch: perl
11155            ! toke.c
11156 ____________________________________________________________________________
11157 [  8932] By: jhi                                   on 2001/02/25  17:27:11
11158         Log: (Retracted by #8395.)
11159              
11160              Missing from #8930.
11161      Branch: perl
11162            ! perl.h
11163 ____________________________________________________________________________
11164 [  8931] By: jhi                                   on 2001/02/25  17:26:19
11165         Log: A comment tweak.
11166      Branch: perl
11167            ! utf8.c
11168 ____________________________________________________________________________
11169 [  8930] By: jhi                                   on 2001/02/25  17:25:47
11170         Log: (Retracted by #8395.)
11171              
11172              Attempt to fix the EBCDIC character range problwm with //.
11173      Branch: perl
11174            ! regcomp.c
11175 ____________________________________________________________________________
11176 [  8929] By: jhi                                   on 2001/02/25  17:23:45
11177         Log: (Retracted by #8395.)
11178              
11179              Expand the EBCDIC character range tests, and add few nasty
11180              tr tests from Karsten Sperling.
11181      Branch: perl
11182            ! t/op/pat.t t/op/tr.t
11183 ____________________________________________________________________________
11184 [  8928] By: jhi                                   on 2001/02/25  17:18:49
11185         Log: Missing check-in.
11186      Branch: perl
11187            ! lib/Pod/Find.pm
11188 ____________________________________________________________________________
11189 [  8927] By: nick                                  on 2001/02/25  11:30:22
11190         Log: Change method names in Encode implementation classes to something
11191              less confusing (preparing to "go public").
11192      Branch: perlio
11193            ! ext/Encode/Encode.pm ext/Encode/Encode.xs t/lib/encode.t
11194 ____________________________________________________________________________
11195 [  8926] By: nick                                  on 2001/02/25  10:53:24
11196         Log: GCC __atribute__ / printf fix
11197      Branch: perlio
11198            ! perl.h
11199 ____________________________________________________________________________
11200 [  8925] By: nick                                  on 2001/02/25  10:52:25
11201         Log: Checked in the wrong one ...
11202      Branch: perlio
11203            ! ext/Encode/Encode.pm
11204 ____________________________________________________________________________
11205 [  8924] By: nick                                  on 2001/02/24  18:46:51
11206         Log: Integrate mainline - to see what Jarkko has in ...
11207      Branch: perlio
11208           +> t/pod/testpods/lib/Pod/Stuff.pm
11209           !> MANIFEST t/TEST t/lib/glob-basic.t t/op/pat.t t/pod/find.t
11210 ____________________________________________________________________________
11211 [  8923] By: nick                                  on 2001/02/24  17:05:23
11212         Log: Encode API documentation nd tidy up.
11213              Minor additions to test.
11214              Tweaks sv_utf8_upgrade() to force SvPV, and always SvUTF8_on and return length.
11215              Adds STRLEN to standard typemap.
11216      Branch: perlio
11217            ! embed.pl ext/Encode/Encode.pm ext/Encode/Encode.xs
11218            ! lib/ExtUtils/typemap perlapi.c proto.h sv.c t/lib/encode.t
11219 ____________________________________________________________________________
11220 [  8922] By: jhi                                   on 2001/02/24  16:38:12
11221         Log: Add a test for the "character range should match in EBCDIC
11222              if specified using explicit numerics" bug found by Karsten
11223              Sperling.
11224      Branch: perl
11225            ! t/op/pat.t
11226 ____________________________________________________________________________
11227 [  8921] By: jhi                                   on 2001/02/24  16:30:16
11228         Log: Subject: [PATCH t/pod/find.t t/TEST] fixing t/pod/find.t, running t/pod
11229              From: schwern@pobox.com
11230              Date: Fri, 23 Feb 2001 03:21:37 -0500
11231              Message-ID: <20010223032137.A26022@magnonel.guild.net>
11232              
11233              plus Charles Lane's fixes, plus tweaks.
11234      Branch: perl
11235            + t/pod/testpods/lib/Pod/Stuff.pm
11236            ! MANIFEST t/TEST t/lib/glob-basic.t t/pod/find.t
11237 ____________________________________________________________________________
11238 [  8920] By: nick                                  on 2001/02/24  10:30:11
11239         Log: Integrate mainline
11240      Branch: perlio
11241           !> (integrate 33 files)
11242 ____________________________________________________________________________
11243 [  8919] By: jhi                                   on 2001/02/24  00:23:35
11244         Log: Subject: Re: I'm losing the war...
11245              From: "Vadim Konovalov" <watman@inbox.ru>
11246              Date: Sat, 24 Feb 2001 00:10:14 +0300
11247              Message-ID: <007501c09dde$a9b84420$2f7b55c2@vad>
11248              
11249              hv_store() not working correctly in ENV_IS_CASELESS case.
11250      Branch: perl
11251            ! hv.c
11252 ____________________________________________________________________________
11253 [  8918] By: jhi                                   on 2001/02/24  00:20:09
11254         Log: Subject: Re: [PATCH] fix for charnames above FFFF
11255              From: andreas.koenig@anima.de (Andreas J. Koenig)
11256              Date: 23 Feb 2001 02:39:03 +0100
11257              Message-ID: <m3u25mxjns.fsf@ak-71.mind.de>
11258              
11259              A further efficiency tweak.
11260      Branch: perl
11261            ! lib/charnames.pm
11262 ____________________________________________________________________________
11263 [  8917] By: jhi                                   on 2001/02/23  20:27:51
11264         Log: Integrate change #8916 from mainline,
11265              do away with USE_WIN32_RTL_ENV.
11266      Branch: maint-5.6/perl
11267           !> perl.c util.c win32/win32.c win32/win32.h win32/win32iop.h
11268 ____________________________________________________________________________
11269 [  8916] By: jhi                                   on 2001/02/23  20:02:25
11270         Log: Abolish USE_WIN32_RTL_ENV.
11271      Branch: perl
11272            ! perl.c util.c win32/win32.c win32/win32.h win32/win32iop.h
11273 ____________________________________________________________________________
11274 [  8915] By: jhi                                   on 2001/02/23  19:36:00
11275         Log: Retract #8893, zero-initializing may be costly, maybe reintroduce
11276              later protected by some #define.
11277      Branch: perl
11278            ! gv.c
11279 ____________________________________________________________________________
11280 [  8914] By: jhi                                   on 2001/02/23  19:31:38
11281         Log: Retract #8902 for now, requested by Charles Lane, the correct
11282              fix will be something else.
11283      Branch: perl
11284            ! op.c
11285 ____________________________________________________________________________
11286 [  8913] By: jhi                                   on 2001/02/23  19:11:36
11287         Log: Subject: [PATCH: perl@8892] was Re: hashing order difference?
11288              From: Peter Prymmer <pvhp@forte.com>
11289              Date: Fri, 23 Feb 2001 10:54:09 -0800 (PST)
11290              Message-ID: <Pine.OSF.4.10.10102231036100.79050-100000@aspara.forte.com>
11291      Branch: perl
11292            ! t/op/lex_assign.t
11293 ____________________________________________________________________________
11294 [  8912] By: jhi                                   on 2001/02/23  18:38:20
11295         Log: Subject: [patch] perlio + useithreads
11296              From: Doug MacEachern <dougm@covalent.net>
11297              Date: Fri, 23 Feb 2001 00:05:37 -0800 (PST)
11298              Message-ID: <Pine.LNX.4.21.0102222356460.14249-100000@mako.covalent.net>
11299              
11300              Gets things running but not complete.
11301      Branch: perl
11302            ! intrpvar.h objXSUB.h perlapi.c perlio.h proto.h sv.c
11303 ____________________________________________________________________________
11304 [  8911] By: jhi                                   on 2001/02/23  04:20:02
11305         Log: Integrate changes #8896,8897,8898,8906,8907,8908 from mainline.
11306              
11307              Duplicated environment freeing, File::Temp 0.12,
11308              op/append portability (EBCDIC) tweak.
11309      Branch: maint-5.6/perl
11310           !> lib/File/Temp.pm perl.c t/lib/ftmp-mktemp.t t/lib/ftmp-posix.t
11311           !> t/op/append.t
11312 ____________________________________________________________________________
11313 [  8910] By: jhi                                   on 2001/02/23  02:07:33
11314         Log: Integrate change #8909 from mainline, a better Borland
11315              putenv() workaround.
11316      Branch: maint-5.6/perl
11317           !> perl.c
11318 ____________________________________________________________________________
11319 [  8909] By: jhi                                   on 2001/02/23  02:05:46
11320         Log: A better workaround for Borland putenv() brokenness from Sarathy.
11321      Branch: perl
11322            ! perl.c
11323 ____________________________________________________________________________
11324 [  8908] By: jhi                                   on 2001/02/23  02:04:14
11325         Log: Subject: fix for parameter -Dm (for perl@8867)
11326              From: "Vadim Konovalov" <watman@inbox.ru>
11327              Date: Thu, 22 Feb 2001 17:30:12 +0300
11328              Message-ID: <001801c09cdc$2faba490$2a7b55c2@vad>
11329      Branch: perl
11330            ! perl.h
11331 ____________________________________________________________________________
11332 [  8907] By: jhi                                   on 2001/02/23  01:58:20
11333         Log: Subject: [PATCH: perl@8892] treat unicoding and null bytes in op/append.t
11334              From: Peter Prymmer <pvhp@forte.com>
11335              Date: Thu, 22 Feb 2001 13:23:59 -0800 (PST)
11336              Message-ID: <Pine.OSF.4.10.10102221319460.47500-100000@aspara.forte.com>
11337      Branch: perl
11338            ! t/op/append.t
11339 ____________________________________________________________________________
11340 [  8906] By: jhi                                   on 2001/02/23  01:48:34
11341         Log: Upgrade to File::Temp 0.12, from Tim Jenness.
11342      Branch: perl
11343            ! lib/File/Temp.pm t/lib/ftmp-mktemp.t t/lib/ftmp-posix.t
11344 ____________________________________________________________________________
11345 [  8905] By: jhi                                   on 2001/02/23  01:43:30
11346         Log: Subject: [PATCH: perl@8892] fix a patcho in t/lib/st-06compat.t
11347              From: Peter Prymmer <pvhp@forte.com>
11348              Date: Thu, 22 Feb 2001 12:54:31 -0800 (PST)
11349              Message-ID: <Pine.OSF.4.10.10102221249170.47500-100000@aspara.forte.com>
11350      Branch: perl
11351            ! t/lib/st-06compat.t
11352 ____________________________________________________________________________
11353 [  8904] By: jhi                                   on 2001/02/23  01:42:39
11354         Log: Metaconfig unit change for #8903.
11355      Branch: metaconfig/U/perl
11356            ! Devel.U
11357 ____________________________________________________________________________
11358 [  8903] By: jhi                                   on 2001/02/23  01:42:12
11359         Log: Be more helpful for devel builders, suggested by John L. Allen.
11360      Branch: perl
11361            ! Configure
11362 ____________________________________________________________________________
11363 [  8902] By: jhi                                   on 2001/02/23  01:37:41
11364         Log: (Retracted by #8914)
11365              (Wrongly, reinstated by #8941)             
11366
11367              Subject:  [PATCH 5.7.0] don't zero CvFLAGS before checking for CvCONST!
11368              From: lane@DUPHY4.Physics.Drexel.Edu (Charles Lane)
11369              Date:     Thu, 22 Feb 2001 09:43:57 EST
11370              Message-Id: <010222094237.9d22e@DUPHY4.Physics.Drexel.Edu>
11371      Branch: perl
11372            ! op.c
11373 ____________________________________________________________________________
11374 [  8901] By: jhi                                   on 2001/02/23  01:20:32
11375         Log: Subject:  [PATCH perl 5.7.0] malloc message address offset
11376              From: lane@DUPHY4.Physics.Drexel.Edu (Charles Lane)
11377              Date:     Thu, 22 Feb 2001 08:01:35 EST
11378              Message-Id: <010222075625.9d22e@DUPHY4.Physics.Drexel.Edu>
11379      Branch: perl
11380            ! malloc.c
11381 ____________________________________________________________________________
11382 [  8900] By: jhi                                   on 2001/02/23  01:18:02
11383         Log: Integrate changes #8898,8899 from mainline, environ handling.
11384      Branch: maint-5.6/perl
11385           !> perl.c
11386 ____________________________________________________________________________
11387 [  8899] By: jhi                                   on 2001/02/23  01:16:25
11388         Log: Rewrite putenv() using my_setenv().  (In general the vendors'
11389              putenv() is not to be relied on, they are either broken or leaky
11390              or both.)
11391      Branch: perl
11392            ! perl.c
11393 ____________________________________________________________________________
11394 [  8898] By: jhi                                   on 2001/02/22  23:36:59
11395         Log: Fix #8803 as #8897 fixed #8896: with environ safesysmalloc()
11396              and safesysfree() must be used.
11397      Branch: perl
11398            ! perl.c
11399 ____________________________________________________________________________
11400 [  8897] By: jhi                                   on 2001/02/22  23:25:45
11401         Log: With environ one must use safesysmalloc()/safesysfree().
11402      Branch: perl
11403            ! perl.c
11404 ____________________________________________________________________________
11405 [  8896] By: jhi                                   on 2001/02/22  22:13:18
11406         Log: If we have a duplicated environment free it
11407              if PERL_DESTRUCT_LEVEL.
11408      Branch: perl
11409            ! perl.c
11410 ____________________________________________________________________________
11411 [  8895] By: alanbur                               on 2001/02/22  19:31:57
11412         Log: Synchronised with parent
11413      Branch: maint-5.6/pureperl
11414           !> embed.h embed.pl ext/POSIX/POSIX.xs lib/File/Temp.pm op.c
11415 ____________________________________________________________________________
11416 [  8894] By: gsar                                  on 2001/02/22  19:06:18
11417         Log: integrate changes#6162,6163 from mainline (missing leak fixes!)
11418              
11419              fix memory leak in method call optimization (change#3768);
11420              made C<eval "$x->foo()"> leak
11421              
11422              fix memory leak in C<eval "BEGIN {}"> (bug in change#4579)
11423      Branch: maint-5.6/perl
11424           !> op.c
11425 ____________________________________________________________________________
11426 [  8893] By: jhi                                   on 2001/02/22  18:35:27
11427         Log: (Retracted by #8915.)
11428              
11429              Third Degree finding:
11430              reading uninitialized local variable smallbuf + 8 bytes of Perl_gv_fetchfile
11431      Branch: perl
11432            ! gv.c
11433 ____________________________________________________________________________
11434 [  8892] By: jhi                                   on 2001/02/22  14:28:32
11435         Log: Update Changes.
11436      Branch: perl
11437            ! Changes patchlevel.h
11438 ____________________________________________________________________________
11439 [  8891] By: jhi                                   on 2001/02/22  13:22:45
11440         Log: Metaconfig unit changes for #8890.
11441      Branch: metaconfig
11442            ! U/modified/Cppsym.U U/threads/archname.U
11443 ____________________________________________________________________________
11444 [  8890] By: jhi                                   on 2001/02/22  13:22:12
11445         Log: Add -stdio to the archname if no perlio selected,
11446              no -perlio added since that is now the default.
11447              
11448              Add few CPUs/architectures to the Cppsym scan.
11449      Branch: perl
11450            ! Configure config_h.SH
11451 ____________________________________________________________________________
11452 [  8889] By: jhi                                   on 2001/02/22  13:05:59
11453         Log: Metaconfig unit change for #8888.
11454      Branch: metaconfig/U/perl
11455            ! useperlio.U
11456 ____________________________________________________________________________
11457 [  8888] By: jhi                                   on 2001/02/22  13:05:28
11458         Log: *drum roll*  Make perlio the default.
11459      Branch: perl
11460            ! Configure config_h.SH
11461 ____________________________________________________________________________
11462 [  8887] By: jhi                                   on 2001/02/22  12:50:52
11463         Log: Integrate change #8665 from maintperl to mainline,
11464              IA64-induced POSIX::SigSet masking with IVs instead of NVs.
11465      Branch: perl
11466           !> ext/POSIX/POSIX.xs
11467 ____________________________________________________________________________
11468 [  8886] By: jhi                                   on 2001/02/22  12:49:24
11469         Log: Integrate changes #8883,8884 from mainline to maintperl.
11470              
11471              Subject: [patch: perl@8867] embed.{h|pl} need not mention ebcdic_control ...
11472              Subject: Re: File::Temp::_gettemp warning
11473      Branch: maint-5.6/perl
11474           !> embed.h embed.pl lib/File/Temp.pm
11475 ____________________________________________________________________________
11476 [  8885] By: jhi                                   on 2001/02/22  12:43:59
11477         Log: Based on
11478              
11479              Subject: [ID 20010222.001] POSIX.xs IV vs NV bug
11480              From: schwab@suse.de
11481              Date: Thu, 22 Feb 2001 13:08:09 +0100
11482              Message-Id: <200102221208.f1MC89H09364@sykes.suse.de>
11483              
11484              but the fix done slightly differently because the other
11485              half was already done in #8664.
11486      Branch: maint-5.6/perl
11487            ! ext/POSIX/POSIX.xs
11488 ____________________________________________________________________________
11489 [  8884] By: jhi                                   on 2001/02/22  12:37:15
11490         Log: Subject: Re: File::Temp::_gettemp warning
11491              From: Tim Jenness <t.jenness@jach.hawaii.edu>
11492              Date: Wed, 21 Feb 2001 22:15:32 -1000 (HST)
11493              Message-ID: <Pine.LNX.4.30.0102212211190.18964-100000@lapaki.jach.hawaii.edu>
11494              
11495              This patch to File::Temp does two things:
11496              
11497              1. Fixes the problem with CGI::Carp when determining
11498              the Fcntl constants
11499              
11500              2. Removes most of the carps and consolidates them so that all the
11501              reasons are included in a single die that is caught by the test. This
11502              means that the correct skipping behaviour is displayed by the test.
11503      Branch: perl
11504            ! lib/File/Temp.pm
11505 ____________________________________________________________________________
11506 [  8883] By: jhi                                   on 2001/02/22  12:29:19
11507         Log: Subject: [patch: perl@8867] embed.{h|pl} need not mention ebcdic_control ...
11508              From: Peter Prymmer <pvhp@forte.com>
11509              Date: Wed, 21 Feb 2001 16:30:06 -0800 (PST)
11510              Message-ID: <Pine.OSF.4.10.10102211624490.12601-100000@aspara.forte.com>
11511      Branch: perl
11512            ! embed.h embed.pl
11513 ____________________________________________________________________________
11514 [  8882] By: jhi                                   on 2001/02/21  19:41:33
11515         Log: Integrate change #8881 from mainlin to maintperl.
11516              
11517              Subject:  [PATCH - perl8585] glob-in-eval memory leak fix
11518      Branch: maint-5.6/perl
11519           !> op.c
11520 ____________________________________________________________________________
11521 [  8881] By: jhi                                   on 2001/02/21  19:38:57
11522         Log: Subject:  [PATCH - perl8585] glob-in-eval memory leak fix
11523              From: lane@DUPHY4.Physics.Drexel.Edu (Charles Lane)
11524              Date:     Wed, 21 Feb 2001 13:08:03 EST
11525              Message-Id: <010221130721.7a2ab@DUPHY4.Physics.Drexel.Edu>
11526      Branch: perl
11527            ! op.c
11528 ____________________________________________________________________________
11529 [  8880] By: jhi                                   on 2001/02/21  19:34:34
11530         Log: Retract #8875, cannot let go of the old semantics of unpack U
11531              without rethinking utf8decode.t.
11532      Branch: perl
11533            ! pp.c t/op/pack.t
11534 ____________________________________________________________________________
11535 [  8879] By: jhi                                   on 2001/02/21  19:08:02
11536         Log: Run run/*.t also in minitest.
11537      Branch: perl
11538            ! Makefile.SH
11539 ____________________________________________________________________________
11540 [  8878] By: nick                                  on 2001/02/21  18:55:37
11541         Log: Integrate mainline
11542      Branch: perlio
11543           !> (integrate 76 files)
11544 ____________________________________________________________________________
11545 [  8877] By: jhi                                   on 2001/02/21  15:09:33
11546         Log: Fix the sys/fcntl.h problem reported by Peter Prymmer.
11547      Branch: metaconfig
11548            ! U/compline/nblock_io.U
11549      Branch: perl
11550            ! Configure config_h.SH
11551 ____________________________________________________________________________
11552 [  8876] By: jhi                                   on 2001/02/21  14:54:45
11553         Log: If no sfio, no -lsfio.
11554      Branch: metaconfig/U/perl
11555            ! d_sfio.U
11556      Branch: perl
11557            ! Configure config_h.SH
11558 ____________________________________________________________________________
11559 [  8875] By: jhi                                   on 2001/02/21  14:54:00
11560         Log: Make unpack C and unpack C truly equivalent.
11561      Branch: perl
11562            ! pp.c t/op/pack.t
11563 ____________________________________________________________________________
11564 [  8874] By: jhi                                   on 2001/02/21  14:26:02
11565         Log: Subject: [patch perl@8841] One URL update and a possible OS Version snag for perlport.pod
11566              From: Peter Prymmer <pvhp@forte.com>
11567              Date: Tue, 20 Feb 2001 14:51:55 -0800 (PST)
11568              Message-ID: <Pine.OSF.4.10.10102201447380.501692-100000@aspara.forte.com>
11569      Branch: perl
11570            ! pod/perlport.pod
11571 ____________________________________________________________________________
11572 [  8873] By: jhi                                   on 2001/02/21  14:24:31
11573         Log: Subject: [PATCH] fix for charnames above FFFF
11574              From: andreas.koenig@anima.de (Andreas J. Koenig)
11575              Date: 21 Feb 2001 07:05:45 +0100
11576              Message-ID: <m366i44ll2.fsf@ak-71.mind.de>
11577      Branch: perl
11578            ! lib/charnames.pm t/lib/charnames.t
11579 ____________________________________________________________________________
11580 [  8872] By: jhi                                   on 2001/02/21  14:15:25
11581         Log: Integrate change #8868 from pureperl to mainline.
11582              
11583              Fixed reference count loop caused by sv_magic.
11584      Branch: perl
11585           !> sv.c
11586 ____________________________________________________________________________
11587 [  8871] By: jhi                                   on 2001/02/21  14:07:29
11588         Log: Integrate change #8868 from pureperl to maintperl.
11589              
11590              Fixed reference count loop caused by sv_magic.
11591      Branch: maint-5.6/perl
11592           !> sv.c
11593 ____________________________________________________________________________
11594 [  8870] By: jhi                                   on 2001/02/21  14:04:41
11595         Log: Put back the #8840, it was innocent.
11596      Branch: perl
11597            ! embed.h embed.pl global.sym objXSUB.h perlapi.c
11598            ! pod/perlapi.pod pod/perlfunc.pod pod/perlguts.pod proto.h sv.c
11599 ____________________________________________________________________________
11600 [  8869] By: jhi                                   on 2001/02/21  14:00:03
11601         Log: unpack("C", ...) was left slightly unfinished by #8865.
11602      Branch: perl
11603            ! pp.c t/op/pack.t
11604 ____________________________________________________________________________
11605 [  8868] By: alanbur                               on 2001/02/21  01:33:45
11606         Log: Fixed reference count loop caused by sv_magic.  sv_magic is called
11607              from gv_fetchpv to create single-character magic variables (e.g. $!),
11608              and it is passed a sv and the gv that contains the sv as the mg_obj
11609              value.  When sv_magic stores the mg_obj pointer it increments the gv
11610              refcount, thus causing a sv-gv pair that can't be freed.  There is
11611              already a check for sv == obj which is used to prevent such reference
11612              loops.  This change extends the check to cover the case described above.
11613      Branch: maint-5.6/pureperl
11614            ! sv.c
11615 ____________________________________________________________________________
11616 [  8867] By: jhi                                   on 2001/02/21  00:52:39
11617         Log: Update Changes.
11618      Branch: perl
11619            ! Changes patchlevel.h
11620 ____________________________________________________________________________
11621 [  8866] By: jhi                                   on 2001/02/21  00:34:20
11622         Log: Upgrade to CGI.pm 2.752, from Lincoln Stein.
11623              (Note: there were some conflicts due to EBCDIC and EPOC
11624              patches, in general I preferred the repository code.)
11625              (When 2.753 comes out, we need to synchronize.)
11626      Branch: perl
11627            ! lib/CGI.pm lib/CGI/Carp.pm lib/CGI/Cookie.pm lib/CGI/Pretty.pm
11628            ! lib/CGI/Push.pm lib/CGI/Util.pm t/lib/cgi-form.t
11629            ! t/lib/cgi-html.t
11630 ____________________________________________________________________________
11631 [  8865] By: jhi                                   on 2001/02/21  00:24:22
11632         Log: Make pack("C", 0x100) to create Unicode, unless under the
11633              evil influence of 'use bytes'.  Similarly, unpack("C", ...)
11634              will understand Unicode, unless you under know what.
11635      Branch: perl
11636            ! pp.c t/op/pack.t t/op/qu.t
11637 ____________________________________________________________________________
11638 [  8864] By: alanbur                               on 2001/02/20  22:35:34
11639         Log: Resynchronised with parent
11640      Branch: maint-5.6/pureperl
11641           !> README.win32 ext/GDBM_File/GDBM_File.pm
11642           !> ext/NDBM_File/NDBM_File.pm ext/ODBM_File/ODBM_File.pm
11643           !> ext/SDBM_File/SDBM_File.pm handy.h lib/Test.pm makedef.pl mg.c
11644           !> pod/perlop.pod t/lib/gdbm.t t/lib/ndbm.t t/lib/odbm.t
11645           !> t/lib/sdbm.t util.c
11646 ____________________________________________________________________________
11647 [  8863] By: jhi                                   on 2001/02/20  20:55:11
11648         Log: Integrate change #8860,8861 from mainline into maintperl.
11649              
11650              "pseudo-literal j"
11651              
11652              Subject: [PATCH: 5.6.1 trial2 && perl@8807] workaround VMS I/O problem in Test.pm for bug ID 20010213.009
11653      Branch: maint-5.6/perl
11654           !> lib/Test.pm pod/perlop.pod
11655 ____________________________________________________________________________
11656 [  8862] By: jhi                                   on 2001/02/20  20:30:07
11657         Log: Don't do casting between pointers pointing to differently sized
11658              integers.
11659      Branch: perl
11660            ! hv.c sv.c
11661 ____________________________________________________________________________
11662 [  8861] By: jhi                                   on 2001/02/20  19:53:44
11663         Log: Subject: [PATCH: 5.6.1 trial2 && perl@8807] workaround VMS I/O problem in Test.pm for bug ID 20010213.009
11664              From: Peter Prymmer <pvhp@forte.com>
11665              Message-ID: <Pine.OSF.4.10.10102141617350.197219-100000@aspara.forte.com>
11666              Date: Wed, 14 Feb 2001 16:28:16 -0800 (PST)
11667      Branch: perl
11668            ! lib/Test.pm
11669 ____________________________________________________________________________
11670 [  8860] By: jhi                                   on 2001/02/20  19:48:02
11671         Log: "pseudo-literal j", a documentation glitch reported to Debian.
11672              The text recovered from Perl 5.005_03, and pseudo-literal replaced
11673              by "backtick string".
11674      Branch: perl
11675            ! pod/perlop.pod
11676 ____________________________________________________________________________
11677 [  8859] By: jhi                                   on 2001/02/20  19:15:46
11678         Log: Skip the Perl_sys_intern_clear and Perl_sys_intern_init,
11679              from Chris Nandor.
11680      Branch: perl
11681            ! makedef.pl
11682 ____________________________________________________________________________
11683 [  8858] By: jhi                                   on 2001/02/20  17:36:53
11684         Log: Integrate pureperl changes #8844,8845,8850 to mainline
11685              (via maintperl #8855).
11686              
11687              Fixed %^H scoping bug
11688              
11689              Removed GV <-> CV refcount loop
11690              
11691              Removed %ENV refcount loop
11692      Branch: perl
11693           !> gv.c op.c perl.c pp.c scope.c
11694 ____________________________________________________________________________
11695 [  8857] By: jhi                                   on 2001/02/20  17:34:32
11696         Log: Integrate changes #8853,8854 from maintperl to mainline.
11697              
11698              EBDIC fixes, README.win32 Borland update.
11699      Branch: perl
11700           !> README.win32 handy.h util.c
11701 ____________________________________________________________________________
11702 [  8856] By: jhi                                   on 2001/02/20  17:33:16
11703         Log: Integrate change #8848 from mainline to maintperl: ?DBM_File cleanup.
11704      Branch: maint-5.6/perl
11705           !> ext/GDBM_File/GDBM_File.pm ext/NDBM_File/NDBM_File.pm
11706           !> ext/ODBM_File/ODBM_File.pm ext/SDBM_File/SDBM_File.pm
11707           !> t/lib/gdbm.t t/lib/ndbm.t t/lib/odbm.t t/lib/sdbm.t
11708 ____________________________________________________________________________
11709 [  8855] By: jhi                                   on 2001/02/20  17:32:13
11710         Log: Integrate pureperl changes #8844,8845,8850 to maintperl.
11711              
11712              Fixed %^H scoping bug
11713              
11714              Removed GV <-> CV refcount loop
11715              
11716              Removed %ENV refcount loop
11717      Branch: maint-5.6/perl
11718           !> gv.c op.c perl.c pp.c scope.c
11719 ____________________________________________________________________________
11720 [  8854] By: jhi                                   on 2001/02/20  17:25:06
11721         Log: Subject: Addition to readme.win32 for Borland C++ compilers
11722              Date: Tue, 20 Feb 2001 02:15:25 +0300
11723              From: "Vadim Konovalov" <watman@inbox.ru>
11724              Message-ID: <011c01c09aca$93bbbec0$367b55c2@vad>
11725              
11726              Document Borland compiler misbehaviour.
11727      Branch: maint-5.6/perl
11728            ! README.win32
11729 ____________________________________________________________________________
11730 [  8853] By: jhi                                   on 2001/02/20  17:22:25
11731         Log: The assimilation of ebcdic.c didn't quite work at the first try,
11732              patches from Thomas Dorner.
11733      Branch: maint-5.6/perl
11734            ! handy.h util.c
11735 ____________________________________________________________________________
11736 [  8852] By: jhi                                   on 2001/02/20  17:20:15
11737         Log: Subject: [PATCH] More Mac OS patches for maint-5.6
11738              From: Chris Nandor <pudge@pobox.com>
11739              Date: Tue, 20 Feb 2001 08:32:45 -0500
11740              Message-Id: <p05010403b6b81ee8dca0@[10.0.1.177]>
11741      Branch: maint-5.6/perl
11742            ! makedef.pl mg.c
11743 ____________________________________________________________________________
11744 [  8851] By: jhi                                   on 2001/02/20  17:15:52
11745         Log: Filter::Util::Call update to 1.05, from Paul Marquess.
11746      Branch: perl
11747            ! ext/Filter/Util/Call/Call.pm t/lib/filter-util.pl
11748            ! t/lib/filter-util.t
11749 ____________________________________________________________________________
11750 [  8850] By: alanbur                               on 2001/02/20  17:12:40
11751         Log: Removed %ENV refcount loop.  Elements of %ENV are magical,
11752              and the magic pointer points back to the GV that contains the
11753              %ENV hash.  This creates a refcount loop that prevents members
11754              of %ENV from being freed correctly.  This change removes the
11755              refcount loop - the magic pointer was never used anyway, the
11756              only use of the magic was to check the type ('E') so that the
11757              appropriate environment manipulation code is called when %ENV
11758              is modified.
11759      Branch: maint-5.6/pureperl
11760            ! perl.c
11761 ____________________________________________________________________________
11762 [  8849] By: jhi                                   on 2001/02/20  17:12:20
11763         Log: Subject: [PATCH perl@8841] glob-basic.t, runenv.t fix-ups
11764              From: "Craig A. Berry" <craigberry@mac.com>
11765              Date: Mon, 19 Feb 2001 23:36:12 -0600
11766              Message-Id: <5.0.2.1.0.20010219230450.02762648@exchi01>
11767              
11768              Case-forgiving systems match TestInit.pm with TES*.
11769      Branch: perl
11770            ! t/lib/glob-basic.t
11771 ____________________________________________________________________________
11772 [  8848] By: jhi                                   on 2001/02/20  17:10:02
11773         Log: strict-w-proof the ?DBM_File, from Paul Marquess.
11774      Branch: perl
11775            ! ext/GDBM_File/GDBM_File.pm ext/NDBM_File/NDBM_File.pm
11776            ! ext/ODBM_File/ODBM_File.pm ext/SDBM_File/SDBM_File.pm
11777            ! t/lib/gdbm.t t/lib/ndbm.t t/lib/odbm.t t/lib/sdbm.t
11778 ____________________________________________________________________________
11779 [  8847] By: jhi                                   on 2001/02/20  15:34:41
11780         Log: The #8843 wasn't quite right: %Config needs to imported.
11781      Branch: perl
11782            ! t/run/runenv.t
11783 ____________________________________________________________________________
11784 [  8846] By: jhi                                   on 2001/02/20  15:31:50
11785         Log: Retract the #8838 and #8840 for now because of
11786              the DB_File tie problem.
11787      Branch: perl
11788            ! embed.h embed.pl global.sym lib/ExtUtils/xsubpp objXSUB.h
11789            ! perlapi.c pod/perlapi.pod pod/perlfunc.pod pod/perlguts.pod
11790            ! proto.h sv.c
11791 ____________________________________________________________________________
11792 [  8845] By: alanbur                               on 2001/02/20  14:25:41
11793         Log: Removed GV <-> CV refcount loop
11794              CvGV(mycv) points to the parent GV of the CV, and was previously
11795              refcounted.  The pointer remains, but the refcounting has been removed
11796              as it causes a refcount loop between the CV and GV that means the CV
11797              can't ever be deleted.
11798      Branch: maint-5.6/pureperl
11799            ! gv.c op.c pp.c
11800 ____________________________________________________________________________
11801 [  8844] By: alanbur                               on 2001/02/20  14:23:13
11802         Log: Fixed %^H scoping bug
11803      Branch: maint-5.6/pureperl
11804            ! scope.c
11805 ____________________________________________________________________________
11806 [  8843] By: jhi                                   on 2001/02/19  13:38:08
11807         Log: fork() not everywhere, cleanup temp files.
11808      Branch: perl
11809            ! t/run/runenv.t
11810 ____________________________________________________________________________
11811 [  8842] By: alanbur                               on 2001/02/19  12:42:07
11812         Log: Resynchronised with parent
11813      Branch: maint-5.6/pureperl
11814           !> pod/perlfaq4.pod sv.c utf8.c
11815 ____________________________________________________________________________
11816 [  8841] By: jhi                                   on 2001/02/19  03:35:51
11817         Log: Update Changes.
11818      Branch: perl
11819            ! Changes patchlevel.h
11820 ____________________________________________________________________________
11821 [  8840] By: jhi                                   on 2001/02/19  00:23:41
11822         Log: Subject: [patch] add sv_setref_uv
11823              From: Doug MacEachern <dougm@covalent.net>
11824              Date: Sun, 18 Feb 2001 14:49:33 -0800 (PST)
11825              Message-ID: <Pine.LNX.4.21.0102181448290.10021-100000@mako.covalent.net>
11826      Branch: perl
11827            ! embed.h embed.pl global.sym objXSUB.h perlapi.c
11828            ! pod/perlapi.pod pod/perlfunc.pod pod/perlguts.pod proto.h sv.c
11829 ____________________________________________________________________________
11830 [  8839] By: jhi                                   on 2001/02/19  00:01:38
11831         Log: Put to rest the 20010205.001, the email address checking (not) regex.
11832      Branch: perl
11833            ! pod/perlfaq9.pod
11834 ____________________________________________________________________________
11835 [  8838] By: jhi                                   on 2001/02/18  22:17:54
11836         Log: Subject: [patch] xsubpp: make sv_setref_* targetable
11837              From: Doug MacEachern <dougm@covalent.net>
11838              Date: Sun, 18 Feb 2001 12:58:23 -0800 (PST)
11839              Message-ID: <Pine.LNX.4.21.0102181256310.10021-100000@mako.covalent.net>
11840      Branch: perl
11841            ! lib/ExtUtils/xsubpp
11842 ____________________________________________________________________________
11843 [  8837] By: jhi                                   on 2001/02/18  22:16:50
11844         Log: Subject: [patch] -Wall cleanup round 2
11845              From: Doug MacEachern <dougm@covalent.net>
11846              Date: Sun, 18 Feb 2001 13:08:04 -0800 (PST)
11847              Message-ID: <Pine.LNX.4.21.0102181304520.10021-100000@mako.covalent.net>
11848      Branch: perl
11849            ! ext/B/B.xs ext/Data/Dumper/Dumper.xs ext/Devel/DProf/DProf.xs
11850            ! ext/Devel/Peek/Peek.xs ext/Fcntl/Fcntl.xs
11851            ! ext/File/Glob/Glob.xs ext/Filter/Util/Call/Call.xs
11852            ! ext/GDBM_File/GDBM_File.xs ext/IO/IO.xs ext/IPC/SysV/SysV.xs
11853            ! ext/Opcode/Opcode.xs ext/POSIX/POSIX.xs
11854            ! ext/SDBM_File/SDBM_File.xs
11855 ____________________________________________________________________________
11856 [  8836] By: jhi                                   on 2001/02/18  22:11:20
11857         Log: Misapplied regex optimizations when \C is present.
11858              Fixes 20001230.002.
11859              
11860              What still remains broken is that the submatches that
11861              have \C in them get their UTF8 flag on because their
11862              parent SV has it on.  This will result in malformed
11863              UTF8 if a \C happened to match a non-ASCII byte.
11864      Branch: perl
11865            ! regcomp.c regcomp.h regexec.c regexp.h t/op/pat.t
11866            ! t/pragma/utf8.t
11867 ____________________________________________________________________________
11868 [  8835] By: jhi                                   on 2001/02/18  20:12:02
11869         Log: Fix for "[ID 20010213.005] utf8 + localized hash elems + 64 bits?"
11870              
11871              The hash key got wrongly UTF8fied.
11872      Branch: perl
11873            ! pod/perlapi.pod toke.c utf8.c
11874 ____________________________________________________________________________
11875 [  8834] By: jhi                                   on 2001/02/18  19:44:25
11876         Log: Tweak on #8234 (Subject: Re: [PATCH] Warn on use of reference as array elem):
11877              don't warn on magical or overloaded things.
11878      Branch: perl
11879            ! pp_hot.c
11880 ____________________________________________________________________________
11881 [  8833] By: nick                                  on 2001/02/18  19:31:22
11882         Log: Integrate mainline
11883      Branch: perlio
11884           +> t/TestInit.pm t/run/runenv.t
11885            - t/UTEST
11886           !> MANIFEST Makefile.SH ext/Storable/ChangeLog
11887           !> ext/Storable/Storable.pm ext/Storable/Storable.xs
11888           !> lib/Test/Harness.pm perl.c pod/perlfaq4.pod sv.c t/TEST
11889           !> t/lib/charnames.t t/lib/glob-basic.t t/lib/st-06compat.t
11890           !> t/lib/st-overload.t t/lib/st-recurse.t t/lib/st-tiedhook.t
11891           !> t/op/chop.t t/op/eval.t t/op/regexp_noamp.t t/op/subst_wamp.t
11892           !> utf8.c
11893 ____________________________________________________________________________
11894 [  8832] By: jhi                                   on 2001/02/18  19:21:18
11895         Log: Integrate perlio.
11896      Branch: perl
11897           !> perlio.c pod/perldiag.pod
11898 ____________________________________________________________________________
11899 [  8831] By: jhi                                   on 2001/02/18  19:14:20
11900         Log: Integrate change #8827 from mainline.
11901              
11902              UTF8 tweaks.
11903      Branch: maint-5.6/perl
11904           !> sv.c utf8.c
11905 ____________________________________________________________________________
11906 [  8830] By: nick                                  on 2001/02/18  19:10:34
11907         Log: Apply the spirit of patch from Nick Clark:
11908              Subject: [PATCH] Re: extensions that provide layers
11909              From: Nicholas Clark <nick@ccl4.org>
11910              Date: Mon, 12 Feb 2001 16:43:51 +0000
11911              Message-Id: <20010212164350.Q3652@plum.flirble.org>
11912      Branch: perlio
11913            ! perlio.c pod/perldiag.pod
11914 ____________________________________________________________________________
11915 [  8829] By: jhi                                   on 2001/02/18  19:03:25
11916         Log: Subject: [PATCH t/TEST t/TestSetup.pm] Adding in TestSetup.pm to replace BEGIN  preamble on tests.
11917              From: schwern@pobox.com 
11918              Date: Sun, 18 Feb 2001 13:44:35 -0500
11919              Message-ID: <20010218134435.A17544@magnonel.guild.net>
11920              
11921              Applied, but as t/TestInit.pm.
11922      Branch: perl
11923            + t/TestInit.pm
11924            ! MANIFEST t/TEST t/op/eval.t t/op/regexp_noamp.t
11925            ! t/op/subst_wamp.t
11926 ____________________________________________________________________________
11927 [  8828] By: jhi                                   on 2001/02/18  18:43:52
11928         Log: Integrate perlio.
11929      Branch: perl
11930           !> perlio.c
11931 ____________________________________________________________________________
11932 [  8827] By: jhi                                   on 2001/02/18  18:41:33
11933         Log: UTF-8 tweaks.
11934      Branch: perl
11935            ! sv.c utf8.c
11936 ____________________________________________________________________________
11937 [  8826] By: nick                                  on 2001/02/18  17:40:59
11938         Log: Fix [ID 20010217.002]
11939              open FOO, "<:raw:perlio", ...
11940              :raw now inserts default base layer below itself.
11941              Also
11942              open FOO, "<:unix", ...
11943              works as well - but leaves buffer layer on stack under the unix layer.
11944      Branch: perlio
11945            ! perlio.c
11946 ____________________________________________________________________________
11947 [  8825] By: jhi                                   on 2001/02/18  17:15:39
11948         Log: Integrate perlio.
11949      Branch: perl
11950           !> perlio.c perliol.h
11951 ____________________________________________________________________________
11952 [  8824] By: jhi                                   on 2001/02/18  17:10:53
11953         Log: Subject: [PATCH t/TEST lib/Test/Harness.pm] Adding todo tests
11954              From: schwern@pobox.com
11955              Date: Sun, 18 Feb 2001 01:48:50 -0500
11956              Message-ID: <20010218014850.C19957@magnonel.guild.net>
11957      Branch: perl
11958            ! lib/Test/Harness.pm t/TEST t/op/chop.t
11959 ____________________________________________________________________________
11960 [  8823] By: jhi                                   on 2001/02/18  17:01:06
11961         Log: Add run/*.t to testables.
11962      Branch: perl
11963            ! t/TEST
11964 ____________________________________________________________________________
11965 [  8822] By: jhi                                   on 2001/02/18  16:58:58
11966         Log: Subject: [PATCH perl.c] Fixing PERL5OPT (was Re: Warnings, strict, and CPAN)
11967              From: schwern@pobox.com
11968              Date: Sun, 18 Feb 2001 01:11:35 -0500
11969              Message-ID: <20010218011135.A19957@magnonel.guild.net>
11970              
11971              Revive mjd's and Simon's PERL5OPT fix.
11972      Branch: perl
11973            + t/run/runenv.t
11974            ! MANIFEST perl.c
11975 ____________________________________________________________________________
11976 [  8821] By: jhi                                   on 2001/02/18  16:53:46
11977         Log: Subject: Re: Why t/TEST and not Test::Harness?
11978              From: schwern@pobox.com
11979              Date: Sat, 17 Feb 2001 22:44:44 -0500
11980              Message-ID: <20010217224444.A6679@magnonel.guild.net>
11981              
11982              Replace UTEST with TEST -utf8.
11983      Branch: perl
11984            - t/UTEST
11985            ! MANIFEST Makefile.SH t/TEST t/lib/charnames.t
11986            ! t/lib/glob-basic.t
11987 ____________________________________________________________________________
11988 [  8820] By: nick                                  on 2001/02/18  13:06:16
11989         Log: Clean up a few core dumps when layers are used in unexpected ways.
11990              (Still not "right"...)
11991      Branch: perlio
11992            ! perlio.c perliol.h
11993 ____________________________________________________________________________
11994 [  8819] By: jhi                                   on 2001/02/18  02:25:55
11995         Log: Integrate change #8818 from maintperl, a FAQ nit.
11996      Branch: perl
11997           !> pod/perlfaq4.pod
11998 ____________________________________________________________________________
11999 [  8818] By: jhi                                   on 2001/02/18  02:24:50
12000         Log: FAQ nit from Chris Fedde.
12001      Branch: maint-5.6/perl
12002            ! pod/perlfaq4.pod
12003 ____________________________________________________________________________
12004 [  8817] By: nick                                  on 2001/02/17  18:20:14
12005         Log: Integrate mainline
12006      Branch: perlio
12007           +> lib/unicode/UCD.html lib/unicode/Unicode.html
12008           +> lib/unicode/Unicode.txt lib/unicode/rename lib/unicode/version
12009           +> pod/perlclib.pod
12010            - ebcdic.c lib/unicode/UCD301.html lib/unicode/UCDFF301.html
12011            - lib/unicode/Unicode.301
12012           !> (integrate 324 files)
12013 ____________________________________________________________________________
12014 [  8816] By: jhi                                   on 2001/02/17  16:56:58
12015         Log: Upgrade to Storable 1.0.10, from Raphael Manfredi.
12016      Branch: perl
12017            ! ext/Storable/ChangeLog ext/Storable/Storable.pm
12018            ! ext/Storable/Storable.xs t/lib/st-06compat.t
12019            ! t/lib/st-overload.t t/lib/st-recurse.t t/lib/st-tiedhook.t
12020 ____________________________________________________________________________
12021 [  8815] By: jhi                                   on 2001/02/17  16:40:07
12022         Log: Subject: [patch] -Wall
12023              From: Doug MacEachern <dougm@covalent.net>
12024              Date: Fri, 16 Feb 2001 15:25:36 -0800 (PST)
12025              Message-ID: <Pine.LNX.4.21.0102161519500.30352-100000@mako.covalent.net>
12026      Branch: perl
12027            ! doio.c doop.c embed.h embed.pl gv.c objXSUB.h op.c perl.c
12028            ! perlapi.c pp_ctl.c pp_hot.c pp_sys.c proto.h sv.c toke.c
12029 ____________________________________________________________________________
12030 [  8814] By: jhi                                   on 2001/02/16  19:27:18
12031         Log: Document qu better.
12032      Branch: perl
12033            ! pod/perlop.pod
12034 ____________________________________________________________________________
12035 [  8813] By: jhi                                   on 2001/02/15  13:54:37
12036         Log: Subject: [PATCH @8807] toke.c cleanup: scan_str()
12037              From: Hugo <hv@crypt.compulink.co.uk>
12038              Date: Thu, 15 Feb 2001 13:39:49 +0000
12039              Message-Id: <200102151339.NAA32248@crypt.compulink.co.uk>
12040      Branch: perl
12041            ! toke.c
12042 ____________________________________________________________________________
12043 [  8812] By: alanbur                               on 2001/02/15  13:52:16
12044         Log: Resynchronised with parent
12045      Branch: maint-5.6/pureperl
12046            - ebcdic.c
12047           !> (integrate 36 files)
12048 ____________________________________________________________________________
12049 [  8811] By: jhi                                   on 2001/02/15  13:51:16
12050         Log: Integrate changes #8659,8702,8808,8809,8810 from maintperl.
12051              
12052              Subject: [PATCH 5.6.1-TRIAL? and 5.7.?] perldoc uses unescaped backslashes in filenames
12053              From: Jan Dubois <JanD@ActiveState.com>
12054              Date: Wed, 31 Jan 2001 21:17:03 -0800
12055              Message-ID: <8qrh7t069jt32m98sap53l9dfoge0vjrle@4ax.com>
12056              
12057              tweak change#8659 to keep it simple
12058              
12059              Subject: [PATCH 5.6.1-TRIAL2] perldoc.PL using install directories
12060              From: Russ Allbery <rra@stanford.edu>
12061              Date: 14 Feb 2001 10:15:41 -0800
12062              Message-ID: <ylzofpf7w2.fsf@windlord.stanford.edu>
12063              
12064              (8809 empty)
12065
12066              Upgrade to podlators 1.08, from Russ Allbery.
12067      Branch: perl
12068           !> lib/Pod/Man.pm lib/Pod/Text.pm lib/Test/Harness.pm
12069           !> utils/perldoc.PL
12070 ____________________________________________________________________________
12071 [  8810] By: jhi                                   on 2001/02/15  13:35:08
12072         Log: Upgrade to podlators 1.08, from Russ Allbery.
12073      Branch: maint-5.6/perl
12074            ! lib/Pod/Man.pm lib/Pod/Text.pm
12075 ____________________________________________________________________________
12076 [  8809] By: jhi                                   on 2001/02/15  13:26:38
12077         Log: (accidentally empty check-in)
12078      Branch: maint-5.6/perl
12079            ! lib/Test/Harness.pm
12080 ____________________________________________________________________________
12081 [  8808] By: jhi                                   on 2001/02/15  13:23:47
12082         Log: Subject: [PATCH 5.6.1-TRIAL2] perldoc.PL using install directories
12083              From: Russ Allbery <rra@stanford.edu>
12084              Date: 14 Feb 2001 10:15:41 -0800
12085              Message-ID: <ylzofpf7w2.fsf@windlord.stanford.edu>
12086              
12087              perldoc was hardcoding $Config{installscript}, which breaks
12088              when install* isn't where Perl ends up (such as with AFS).
12089              
12090              Use $Config{scriptdir} instead.
12091      Branch: maint-5.6/perl
12092            ! utils/perldoc.PL
12093 ____________________________________________________________________________
12094 [  8807] By: jhi                                   on 2001/02/14  14:37:27
12095         Log: Update Changes.
12096      Branch: perl
12097            ! Changes patchlevel.h
12098 ____________________________________________________________________________
12099 [  8806] By: jhi                                   on 2001/02/14  14:25:31
12100         Log: Integrate changes #8803,8804,8805 from mainline.
12101              
12102              Duplicate environment for JPL so that JDK 1.2/1.3 don't get upset.
12103              
12104              Don't skip too much of the locale error message if no environ array,
12105              from Chris Nandor.
12106              
12107              More MacOS Classic fixes from Chris Nandor.
12108      Branch: maint-5.6/perl
12109           !> doop.c lib/Cwd.pm perl.c perl.h util.c
12110 ____________________________________________________________________________
12111 [  8805] By: jhi                                   on 2001/02/14  03:29:01
12112         Log: More MacOS Classic fixes from Chris Nandor.
12113      Branch: perl
12114            ! doop.c lib/Cwd.pm
12115 ____________________________________________________________________________
12116 [  8804] By: jhi                                   on 2001/02/14  03:18:35
12117         Log: Don't skip too much of the locale error message if no environ array,
12118              from Chris Nandor.
12119      Branch: perl
12120            ! util.c
12121 ____________________________________________________________________________
12122 [  8803] By: jhi                                   on 2001/02/14  03:14:14
12123         Log: Duplicate environment for JPL so that JDK 1.2/1.3 don't get upset.
12124      Branch: perl
12125            ! perl.c perl.h
12126 ____________________________________________________________________________
12127 [  8802] By: jhi                                   on 2001/02/13  18:31:33
12128         Log: AUTHORS update.
12129      Branch: perl
12130            ! AUTHORS
12131 ____________________________________________________________________________
12132 [  8801] By: jhi                                   on 2001/02/13  17:55:19
12133         Log: Integrate change #8792 from mainline.
12134              
12135              Subject: buncha MacPerl patches for bleadperl
12136              From: Chris Nandor <pudge@pobox.com>
12137              Date: Tue, 13 Feb 2001 00:02:43 -0500
12138              Message-Id: <p05010404b6ae6f85e07a@[10.0.1.177]>
12139      Branch: maint-5.6/perl
12140           !> lib/AutoLoader.pm lib/AutoSplit.pm lib/ExtUtils/MakeMaker.pm
12141           !> lib/File/Basename.pm makedef.pl perl.c pp_ctl.c
12142           !> t/lib/basename.t toke.c util.h
12143 ____________________________________________________________________________
12144 [  8800] By: jhi                                   on 2001/02/13  17:46:43
12145         Log: When doing that Fpos_t used in PerlIO_getpos proto needs
12146              to be forced to Off_t.
12147              
12148              Subject: [ID 20010201.009] 5.6.1-TRIAL2 sfio build fails
12149              From: nick@ccl4.org
12150              Date: Thu, 1 Feb 2001 12:01:04 +0000
12151              Message-Id: <20010201120103.E11401@plum.flirble.org>
12152      Branch: maint-5.6/perl
12153            ! iperlsys.h perlio.c
12154 ____________________________________________________________________________
12155 [  8799] By: jhi                                   on 2001/02/13  16:52:51
12156         Log: Duplex duplex hunk hunk.
12157      Branch: maint-5.6/perl
12158            ! Makefile.SH
12159 ____________________________________________________________________________
12160 [  8797] By: jhi                                   on 2001/02/13  14:52:04
12161         Log: Subject: [PATCH perl@8773] integral ok lines for VMS
12162              From: "Craig A. Berry" <craigberry@mac.com>
12163              Date: Mon, 12 Feb 2001 11:05:25 -0600
12164              Message-Id: <p04330104b6ac5dfe6d45@[172.16.52.1]>
12165      Branch: perl
12166            ! t/lib/filehand.t t/lib/test-harness.t t/lib/texttabs.t
12167 ____________________________________________________________________________
12168 [  8796] By: jhi                                   on 2001/02/13  14:36:47
12169         Log: Subject: [ID 20010210.002] perldiag doesn't include the "Scalars leaked" message
12170              From: simon.cozens@pembroke.oxford.ac.uk 
12171              Date: Sat, 10 Feb 2001 17:57:02 +0000
12172              Message-Id: <E14ReGc-0005Pk-00@pembro26.pmb.ox.ac.uk>
12173              
12174              Now it does include.
12175      Branch: perl
12176            ! pod/perldiag.pod
12177 ____________________________________________________________________________
12178 [  8795] By: jhi                                   on 2001/02/13  14:30:11
12179         Log: Sort the MANIFEST.
12180      Branch: perl
12181            ! MANIFEST
12182 ____________________________________________________________________________
12183 [  8794] By: jhi                                   on 2001/02/13  14:26:51
12184         Log: Integrate change #8793 from mainline, FAQ updates.
12185      Branch: maint-5.6/perl
12186           !> pod/perlfaq5.pod pod/perlfaq6.pod pod/perlfaq9.pod
12187 ____________________________________________________________________________
12188 [  8793] By: jhi                                   on 2001/02/13  14:25:13
12189         Log: FAQ updates from Chris Fedde <chris@fedde.littleton.co.us>.
12190      Branch: perl
12191            ! pod/perlfaq5.pod pod/perlfaq6.pod pod/perlfaq9.pod
12192 ____________________________________________________________________________
12193 [  8792] By: jhi                                   on 2001/02/13  14:22:50
12194         Log: Subject: buncha MacPerl patches for bleadperl
12195              From: Chris Nandor <pudge@pobox.com>
12196              Date: Tue, 13 Feb 2001 00:02:43 -0500
12197              Message-Id: <p05010404b6ae6f85e07a@[10.0.1.177]>
12198      Branch: perl
12199            ! lib/AutoLoader.pm lib/AutoSplit.pm lib/ExtUtils/MakeMaker.pm
12200            ! lib/File/Basename.pm makedef.pl perl.c pp_ctl.c
12201            ! t/lib/basename.t toke.c util.h
12202 ____________________________________________________________________________
12203 [  8791] By: jhi                                   on 2001/02/13  14:10:39
12204         Log: Integrate change #8790 from mainline.
12205              
12206              environ array wrongly assumed in Perl_init_i18nl10n(),
12207      Branch: maint-5.6/perl
12208           !> util.c
12209 ____________________________________________________________________________
12210 [  8790] By: jhi                                   on 2001/02/13  14:06:15
12211         Log: environ array wrongly assumed in Perl_init_i18nl10n(),
12212              noticed by Chris Nandor in MacOS Classic.
12213      Branch: perl
12214            ! util.c
12215 ____________________________________________________________________________
12216 [  8789] By: jhi                                   on 2001/02/13  13:58:07
12217         Log: Integrate changes #8373,8487,8544,8783 from mainline.
12218              
12219              Synchronize the EBCDIC platforms (os390,posix-bc,vmesa):
12220              hints files, the dynaloading, assimilate ebcdic into util.c.
12221      Branch: maint-5.6/perl
12222            - ebcdic.c
12223            ! MANIFEST hints/posix-bc.sh
12224           !> Makefile.SH embed.h embed.pl ext/DynaLoader/dl_dllload.xs
12225           !> handy.h hints/os390.sh hints/vmesa.sh installperl objXSUB.h
12226           !> perlapi.c proto.h util.c
12227 ____________________________________________________________________________
12228 [  8788] By: alanbur                               on 2001/02/13  10:33:13
12229         Log: Integrated changes from maint-5.6
12230      Branch: maint-5.6/pureperl
12231           !> Makefile.SH README.vos hints/openbsd.sh pod/perlport.pod
12232           !> regcomp.c t/op/re_tests vos/Changes vos/build.cm
12233           !> vos/config.alpha.def vos/config.alpha.h vos/config.ga.def
12234           !> vos/config.ga.h vos/configure_perl.cm
12235 ____________________________________________________________________________
12236 [  8787] By: jhi                                   on 2001/02/13  05:56:36
12237         Log: Integrate change #8786 from maintperl, posix-bc byacc handling.
12238      Branch: perl
12239           !> Makefile.SH
12240 ____________________________________________________________________________
12241 [  8786] By: jhi                                   on 2001/02/13  05:54:34
12242         Log: Subject: perl@8671 on posix-bc aka BS2000 Posix (small Patch included!)
12243              From: Dorner Thomas <Thomas.Dorner@start.de>
12244              Date: Mon, 12 Feb 2001 15:06:26 +0100
12245              Message-ID: <6727B1DACFCDD311A757009027CA8D69010A8853@Ex02.inhouse.start.de>
12246      Branch: maint-5.6/perl
12247            ! Makefile.SH
12248 ____________________________________________________________________________
12249 [  8785] By: jhi                                   on 2001/02/13  05:29:04
12250         Log: Integrate change #8781 from maintperl, OpenBSD hints update.
12251      Branch: perl
12252           !> hints/openbsd.sh
12253 ____________________________________________________________________________
12254 [  8784] By: jhi                                   on 2001/02/13  02:25:24
12255         Log: Subject: [PATCH: perl@8773] small fixups to perlclib.pod
12256              From: Peter Prymmer <pvhp@forte.com>
12257              Date: Mon, 12 Feb 2001 18:23:09 -0800 (PST)
12258              Message-ID: <Pine.OSF.4.10.10102121821090.126445-100000@aspara.forte.com>
12259      Branch: perl
12260            ! pod/perlclib.pod
12261 ____________________________________________________________________________
12262 [  8783] By: jhi                                   on 2001/02/13  02:22:36
12263         Log: Merge ebcdic.c (only one function, ebcdic_control()) into util.c.
12264      Branch: perl
12265            - ebcdic.c
12266            ! MANIFEST embed.h embed.pl handy.h hints/os390.sh
12267            ! hints/posix-bc.sh hints/vmesa.sh objXSUB.h perlapi.c proto.h
12268            ! util.c
12269 ____________________________________________________________________________
12270 [  8782] By: jhi                                   on 2001/02/13  02:00:07
12271         Log: Add OpenBSD to the list of 5.6.1-okay platforms.
12272      Branch: maint-5.6/perl
12273            ! pod/perlport.pod
12274 ____________________________________________________________________________
12275 [  8781] By: jhi                                   on 2001/02/13  01:58:44
12276         Log: OpenBSD hints update for 5.6.1-TRIAL2 from Todd C. Miller.
12277      Branch: maint-5.6/perl
12278            ! hints/openbsd.sh
12279 ____________________________________________________________________________
12280 [  8780] By: jhi                                   on 2001/02/13  01:57:33
12281         Log: Synchronize the regexp tests between maintperl and mainline.
12282      Branch: maint-5.6/perl
12283           !> t/op/re_tests
12284 ____________________________________________________________________________
12285 [  8779] By: jhi                                   on 2001/02/13  01:49:35
12286         Log: Subject: Re: [ID 20010212.006] Core dump with /((?:hard|soft)cover)?/ 
12287              From: Hugo <hv@crypt.compulink.co.uk>
12288              Date: Tue, 13 Feb 2001 00:11:11 +0000
12289              Message-Id: <200102130011.AAA14310@crypt.compulink.co.uk>
12290      Branch: perl
12291            ! regcomp.c t/op/re_tests
12292 ____________________________________________________________________________
12293 [  8778] By: jhi                                   on 2001/02/13  00:23:10
12294         Log: Comments do not nest.
12295      Branch: perl
12296            ! perl.h
12297 ____________________________________________________________________________
12298 [  8777] By: jhi                                   on 2001/02/13  00:17:54
12299         Log: Subject: Re: [ID 20010212.006] Core dump with /((?:hard|soft)cover)?/ 
12300              From: Hugo <hv@crypt.compulink.co.uk>
12301              Date: Tue, 13 Feb 2001 00:11:11 +0000
12302              Message-Id: <200102130011.AAA14310@crypt.compulink.co.uk>
12303      Branch: maint-5.6/perl
12304            ! regcomp.c t/op/re_tests
12305 ____________________________________________________________________________
12306 [  8776] By: jhi                                   on 2001/02/12  23:25:52
12307         Log: Add VOS to the list of 5.6.1 known-to-be-working platforms.
12308      Branch: maint-5.6/perl
12309            ! pod/perlport.pod
12310 ____________________________________________________________________________
12311 [  8775] By: jhi                                   on 2001/02/12  23:04:28
12312         Log: VOS updates for 5.6-TRIAL2 from Paul Green.
12313      Branch: maint-5.6/perl
12314            ! README.vos vos/Changes vos/build.cm vos/config.alpha.def
12315            ! vos/config.alpha.h vos/config.ga.def vos/config.ga.h
12316            ! vos/configure_perl.cm
12317 ____________________________________________________________________________
12318 [  8774] By: jhi                                   on 2001/02/12  22:59:11
12319         Log: Subject: Re: [patch] context for 'U' magic functions
12320              From: Doug MacEachern <dougm@covalent.net>
12321              Date: Mon, 12 Feb 2001 09:22:45 -0800 (PST)
12322              Message-ID: <Pine.LNX.4.21.0102120919040.26437-100000@mako.covalent.net>
12323              
12324              plus the suggestion by Nick Ing-Simmons to name the macro
12325              as PERL_MG_UFUNC to avoid namespace pollution, plus add
12326              the advice by Doug for XS writers to perl.h
12327      Branch: perl
12328            ! mg.c perl.h
12329 ____________________________________________________________________________
12330 [  8773] By: jhi                                   on 2001/02/11  20:14:12
12331         Log: Update Changes.
12332      Branch: perl
12333            ! Changes patchlevel.h
12334 ____________________________________________________________________________
12335 [  8772] By: jhi                                   on 2001/02/11  18:47:52
12336         Log: Subject: Re: [PATCH] pod/perlclib.pod - Replacements for C library functions
12337              From: Simon Cozens <simon@cozens.net>
12338              Date: Wed, 31 Jan 2001 16:31:43 +0000
12339              Message-ID: <20010131163143.A1427@pembro26.pmb.ox.ac.uk>
12340      Branch: perl
12341            + pod/perlclib.pod
12342            ! MANIFEST pod/buildtoc.PL pod/perl.pod pod/perlguts.pod
12343            ! pod/perltoc.pod
12344 ____________________________________________________________________________
12345 [  8771] By: jhi                                   on 2001/02/11  18:36:48
12346         Log: Upgrade to Unicode 3.1 beta 2001-02-11.
12347              
12348              Blocks-4d3.beta.txt
12349              CaseFolding-3d4.beta.txt
12350              CompositionExclusions-3d6.beta.txt
12351              EastAsianWidth-4d4.beta.txt
12352              LineBreak-6d3.beta.txt
12353              NamesList-3.1.0d1.beta.txt
12354              PropList-3.1.0d4.beta.txt
12355              SpecialCasing-4d1.beta.txt
12356              UnicodeData-3.1.0d6.beta.txt
12357      Branch: perl
12358            + lib/unicode/Unicode.txt lib/unicode/rename lib/unicode/version
12359           +> lib/unicode/UCD.html lib/unicode/Unicode.html
12360            - lib/unicode/UCD301.html lib/unicode/UCDFF301.html
12361            - lib/unicode/Unicode.301
12362            ! (edit 257 files)
12363 ____________________________________________________________________________
12364 [  8770] By: jhi                                   on 2001/02/11  17:26:22
12365         Log: UTF-8 documentation.
12366      Branch: perl
12367            ! utf8.h
12368 ____________________________________________________________________________
12369 [  8769] By: jhi                                   on 2001/02/11  17:12:49
12370         Log: Retract #8762.
12371      Branch: perl
12372            ! regexec.c
12373 ____________________________________________________________________________
12374 [  8768] By: jhi                                   on 2001/02/11  16:54:45
12375         Log: Subject: [PATCH] Test::Harness
12376              From: andreas.koenig@anima.de (Andreas J. Koenig)
12377              Date: 11 Feb 2001 14:37:00 +0100
12378              Message-ID: <m3g0hll4sj.fsf@ak-71.mind.de>
12379      Branch: perl
12380            ! lib/Test/Harness.pm
12381 ____________________________________________________________________________
12382 [  8767] By: jhi                                   on 2001/02/11  16:53:52
12383         Log: Subject: [PATCH] Document makepatch in Porting/patching
12384              From: andreas.koenig@anima.de (Andreas J. Koenig)
12385              Date: 11 Feb 2001 16:46:28 +0100
12386              Message-ID: <m3bss9kysr.fsf@ak-71.mind.de>
12387      Branch: perl
12388            ! Porting/patching.pod
12389 ____________________________________________________________________________
12390 [  8766] By: jhi                                   on 2001/02/11  06:30:23
12391         Log: Subject: Re: [patch] GvSHARED
12392              Date: Sat, 10 Feb 2001 14:04:40 -0800 (PST)
12393              From: Doug MacEachern <dougm@covalent.net>
12394              Message-ID: <Pine.LNX.4.21.0102101356000.15298-100000@mako.covalent.net>
12395              
12396              Subject: Re: [patch] GvSHARED
12397              From: Doug MacEachern <dougm@covalent.net>
12398              Date: Sat, 10 Feb 2001 15:00:54 -0800 (PST)
12399              Message-ID: <Pine.LNX.4.21.0102101453220.15298-100000@mako.covalent.net>
12400              
12401              Subject: [patch] attributes.pm support for `shared'
12402              From: Doug MacEachern <dougm@covalent.net>
12403              Date: Sat, 10 Feb 2001 20:08:48 -0800 (PST)
12404              Message-ID: <Pine.LNX.4.21.0102102004190.15298-100000@mako.covalent.net>
12405              
12406              our() attributes were ignored, our :shared pieces missing,
12407              allow attributes.pm to turn on shared.
12408      Branch: perl
12409            ! op.c t/op/attrs.t toke.c xsutils.c
12410 ____________________________________________________________________________
12411 [  8765] By: alanbur                               on 2001/02/10  23:11:19
12412         Log: Resync with parent (hopefully sucessfully this time)
12413      Branch: maint-5.6/pureperl
12414           !> MANIFEST README.bs2000 README.hpux README.vmesa installhtml
12415           !> lib/Math/Complex.pm lib/Pod/Find.pm pod/buildtoc.PL
12416           !> pod/perl.pod pod/perlapi.pod pod/perlboot.pod pod/perlcall.pod
12417           !> pod/perlfaq2.pod pod/perlfaq3.pod pod/perlfaq9.pod
12418           !> pod/perlmodlib.PL pod/perlobj.pod pod/perlport.pod
12419           !> pod/perlre.pod pod/perltoc.pod pod/perltoot.pod
12420           !> pod/perltootc.pod win32/Makefile win32/makefile.mk
12421 ____________________________________________________________________________
12422 [  8764] By: jhi                                   on 2001/02/10  22:54:38
12423         Log: Make TEST and UTEST more verbose in case something goes
12424              wrong in running/compiling a script, suggested by Doug
12425              MacEachern.
12426      Branch: perl
12427            ! t/TEST t/UTEST
12428 ____________________________________________________________________________
12429 [  8763] By: jhi                                   on 2001/02/10  22:11:34
12430         Log: Bogus shebang.
12431      Branch: perl
12432            ! t/lib/texttabs.t
12433 ____________________________________________________________________________
12434 [  8762] By: jhi                                   on 2001/02/10  21:56:02
12435         Log: (Retracted by #8769)
12436      Branch: perl
12437            ! regexec.c
12438 ____________________________________________________________________________
12439 [  8761] By: jhi                                   on 2001/02/10  21:26:15
12440         Log: Subject: Re: [patch] GvSHARED 
12441              From: Doug MacEachern <dougm@covalent.net>
12442              Date: Sat, 10 Feb 2001 13:11:14 -0800 (PST)
12443              Message-ID: <Pine.LNX.4.21.0102101253070.15298-100000@mako.covalent.net>
12444              
12445              our @EXPORT : shared = (...);
12446      Branch: perl
12447            ! toke.c
12448 ____________________________________________________________________________
12449 [  8760] By: jhi                                   on 2001/02/10  21:25:07
12450         Log: Subject: [patch] GvSHARED
12451              From: Doug MacEachern <dougm@covalent.net>
12452              Date: Sat, 10 Feb 2001 10:57:12 -0800 (PST)
12453              Message-ID: <Pine.LNX.4.21.0102101047320.15298-100000@mako.covalent.net>
12454      Branch: perl
12455            ! embed.h embed.pl gv.c gv.h op.c pp_sys.c proto.h sv.c
12456 ____________________________________________________________________________
12457 [  8759] By: alanbur                               on 2001/02/10  21:24:27
12458         Log: Backed out mismerge.
12459      Branch: maint-5.6/pureperl
12460            ! MANIFEST README.hpux README.vmesa gv.c installhtml
12461            ! lib/Math/Complex.pm lib/Pod/Find.pm perl.c pod/buildtoc.PL
12462            ! pod/perl.pod pod/perlapi.pod pod/perlboot.pod pod/perlcall.pod
12463            ! pod/perlfaq2.pod pod/perlfaq3.pod pod/perlfaq9.pod
12464            ! pod/perlmodlib.PL pod/perlobj.pod pod/perlport.pod
12465            ! pod/perlre.pod pod/perltoc.pod pod/perltoot.pod
12466            ! pod/perltootc.pod sv.c win32/Makefile win32/makefile.mk
12467 ____________________________________________________________________________
12468 [  8758] By: jhi                                   on 2001/02/10  18:01:17
12469         Log: Integrate changes #8701,8704,8756 from pureperl to maintperl.
12470              
12471              Fixed UMRs and leak in Perl_pmtrans()
12472              
12473              Several leaks an UMRs fixed, mainly in the area of Perl_pmtrans and
12474              associated UTFied tr/// code.  Also fixed scoping leak of
12475              PL_reg_start_tmp.
12476              
12477              newATTRSUB leaks when an attempt to redefine the active sort sub is
12478              made.
12479      Branch: maint-5.6/perl
12480           !> op.c regcomp.c
12481 ____________________________________________________________________________
12482 [  8757] By: alanbur                               on 2001/02/10  17:56:46
12483         Log: Resynchronised with parent
12484      Branch: maint-5.6/pureperl
12485           +> README.bs2000
12486            - README.posix-bc
12487            ! gv.c perl.c sv.c
12488           !> MANIFEST README.hpux README.vmesa installhtml
12489           !> lib/Math/Complex.pm lib/Pod/Find.pm pod/buildtoc.PL
12490           !> pod/perl.pod pod/perlapi.pod pod/perlboot.pod pod/perlcall.pod
12491           !> pod/perlfaq2.pod pod/perlfaq3.pod pod/perlfaq9.pod
12492           !> pod/perlmodlib.PL pod/perlobj.pod pod/perlport.pod
12493           !> pod/perlre.pod pod/perltoc.pod pod/perltoot.pod
12494           !> pod/perltootc.pod win32/Makefile win32/makefile.mk
12495 ____________________________________________________________________________
12496 [  8756] By: alanbur                               on 2001/02/10  17:51:15
12497         Log: newATTRSUB leaks when an attempt to redefine the active sort sub is
12498              made.
12499      Branch: maint-5.6/pureperl
12500            ! op.c
12501 ____________________________________________________________________________
12502 [  8755] By: jhi                                   on 2001/02/09  22:41:35
12503         Log: Upgrade to CPAN 1.59_54, from Andreas König.
12504      Branch: perl
12505            ! lib/CPAN.pm lib/CPAN/FirstTime.pm
12506 ____________________________________________________________________________
12507 [  8754] By: jhi                                   on 2001/02/09  22:29:20
12508         Log: Upgrade to Text-Tabs+Wrap-2001.0131 from David Muir Sharnoff.
12509              
12510              Didn't upgrade the fill.t since it has a dependency to File::Slurp
12511              purely for debugging purposes, the actual test hasn't changed.
12512      Branch: perl
12513            ! lib/Text/Tabs.pm lib/Text/Wrap.pm t/lib/texttabs.t
12514            ! t/lib/textwrap.t
12515 ____________________________________________________________________________
12516 [  8753] By: jhi                                   on 2001/02/09  20:17:50
12517         Log: Integrate change #8682 from maintperl.
12518              
12519              IRIX hints fix from Scott Henry, get Configure -Dcc="cc -64 -mips3"
12520              to work correctly.
12521      Branch: perl
12522           !> hints/irix_6.sh
12523 ____________________________________________________________________________
12524 [  8752] By: jhi                                   on 2001/02/09  20:00:46
12525         Log: Update Changes.
12526      Branch: perl
12527            ! Changes patchlevel.h
12528 ____________________________________________________________________________
12529 [  8751] By: nick                                  on 2001/02/09  19:48:37
12530         Log: Integrate mainline
12531      Branch: perlio
12532           +> README.bs2000 t/lib/cgi-esc.t
12533            - README.posix-bc
12534           !> (integrate 53 files)
12535 ____________________________________________________________________________
12536 [  8750] By: nick                                  on 2001/02/09  19:25:16
12537         Log: Subject: RE: Biannual Competition to Improve Hashing Function
12538              From: Fisher Mark <fisherm@tce.com>
12539              Date: Thu, 8 Feb 2001 10:44:00 -0500
12540              Message-Id: <A5E22933E3D5D4118FFE00508BF373C706A52F@indyexch28.indy.tce.
12541              Date: Thu, 8 Feb 2001 15:02:47 -0500
12542              Message-Id: <A5E22933E3D5D4118FFE00508BF373C706A52B@indyexch28.indy.tce.
12543      Branch: perl
12544            ! hv.h pod/perldelta.pod t/lib/dumper.t t/pragma/warn/perl
12545 ____________________________________________________________________________
12546 [  8749] By: jhi                                   on 2001/02/09  19:02:35
12547         Log: Forgotten fragment.
12548      Branch: perl
12549            ! pod/perlapi.pod
12550 ____________________________________________________________________________
12551 [  8748] By: jhi                                   on 2001/02/09  18:31:34
12552         Log: Integrate changes #8673,8674,8676 from maintperl into mainline,
12553              plus manual tweakage.
12554              
12555              Sync the perlfaq2 between mainline and maintperl.
12556      Branch: maint-5.6/perl
12557            ! pod/perlfaq2.pod
12558      Branch: perl
12559           !> pod/perlfaq2.pod
12560 ____________________________________________________________________________
12561 [  8747] By: jhi                                   on 2001/02/09  18:12:04
12562         Log: Subject: versiononly and installperl
12563              From: abigail@foad.org
12564              Date: Wed, 7 Feb 2001 22:43:12 +0100
12565              Message-ID: <20010207214312.7045.qmail@foad.org>    
12566              
12567              Add +v flag to force a normal install of the perl binary
12568              and the utilities.
12569              
12570              Subject: [PATCH] installperl
12571              From: Nicholas Clark <nick@ccl4.org>
12572              Date: Fri, 9 Feb 2001 16:28:57 +0000
12573              Message-ID: <20010209162857.B10931@plum.flirble.org>
12574              
12575              Add -A flag which also hardlinks the binary with
12576              the full architecture name.
12577      Branch: perl
12578            ! installperl
12579 ____________________________________________________________________________
12580 [  8746] By: jhi                                   on 2001/02/09  18:03:43
12581         Log: Integrate changes #8699,8708,8709,8744,8745 from mainline.
12582              
12583              Subject: perlfaq2, re: perlmongers
12584              
12585              Subject: Re: [PATCH pod/[bt]ootc?.pod] Adding mention of useful CPAN modules
12586              
12587              Subject: [PATCH pod/perlmodlib.PL 5.6.1-TRIAL2] Up to date CPAN mirror list
12588              
12589              Subject: [ID 20010205.001] typo in perlfaq9
12590              
12591              Subject: [ID 20010208.002] unordered explanation in perlcall
12592      Branch: maint-5.6/perl
12593           !> pod/perlapi.pod pod/perlboot.pod pod/perlcall.pod
12594           !> pod/perlfaq2.pod pod/perlfaq9.pod pod/perlmodlib.PL
12595           !> pod/perlobj.pod pod/perltoot.pod pod/perltootc.pod
12596 ____________________________________________________________________________
12597 [  8745] By: jhi                                   on 2001/02/09  17:59:09
12598         Log: Subject: [ID 20010208.002] unordered explanation in perlcall
12599              From: abela@geneanet.org
12600              Date: Thu,  8 Feb 2001 16:11:46 +0100 (CET)
12601              Message-Id: <20010208151146.0937BC97E@little-roots.geneanet.org>
12602      Branch: perl
12603            ! pod/perlcall.pod
12604 ____________________________________________________________________________
12605 [  8744] By: jhi                                   on 2001/02/09  17:48:16
12606         Log: Subject: [ID 20010205.001] typo in perlfaq9
12607              From: eserte@vran.herceg.de
12608              Date: Sun, 4 Feb 2001 23:44:09 +0100 (CET)
12609              Message-Id: <200102042244.XAA21926@vran.herceg.de>
12610      Branch: perl
12611            ! pod/perlfaq9.pod
12612 ____________________________________________________________________________
12613 [  8743] By: jhi                                   on 2001/02/09  17:25:12
12614         Log: Integrate change #8695 from maintperl.
12615              
12616              thread.h tweak to enable 5005threads on HP-UX 10.20 with DCE threads
12617      Branch: perl
12618           !> thread.h
12619 ____________________________________________________________________________
12620 [  8742] By: jhi                                   on 2001/02/09  17:21:22
12621         Log: Subject: Re: [PATCH embed.pl] Forgot to add ./lib to @INC for File::Glob
12622              From: Andy Dougherty <doughera@lafayette.edu>
12623              Date: Mon, 5 Feb 2001 10:19:29 -0500 (EST)
12624              Message-ID: <Pine.SOL.4.10.10102051013380.11242-100000@maxwell.phys.lafayette.edu>
12625      Branch: perl
12626            ! embed.pl
12627 ____________________________________________________________________________
12628 [  8741] By: jhi                                   on 2001/02/09  17:05:19
12629         Log: Integrate changes #8738,8739,8740 from maintperl.
12630              
12631              Html files will be installed in a more logical and easier to
12632              find directory. E.g. c:\perl\html instead of c:\perl\lib\pod\html
12633              
12634              Html files will be generated with a header to make them look
12635              a little less bare.
12636              
12637              Subject: [PATCH perl-current] perlfaq3.pod, URL for vile
12638      Branch: perl
12639           !> installhtml pod/perlfaq3.pod win32/Makefile win32/makefile.mk
12640 ____________________________________________________________________________
12641 [  8740] By: jhi                                   on 2001/02/09  17:03:46
12642         Log: Subject: [PATCH perl-current] perlfaq3.pod, URL for vile
12643              From: "Brendan O'Dea" <bod@compusol.com.au>
12644              Date: Sun, 4 Feb 2001 11:17:56 +1100
12645              Message-ID: <20010204111756.A16301@compusol.com.au>
12646      Branch: maint-5.6/perl
12647            ! pod/perlfaq3.pod
12648 ____________________________________________________________________________
12649 [  8739] By: jhi                                   on 2001/02/09  17:01:59
12650         Log: Subject: [PATCH: perl-5.6.1-TRIAL2] installhtml change to build prettier html files
12651              From: "Indy Singh" <indy@nusphere.com>
12652              Date: Fri, 2 Feb 2001 15:09:59 -0500
12653              Message-ID: <02b601c08d54$23fd3560$d24b7018@cr637287a>
12654              
12655              Html files will be generated with a header to make them look
12656              a little less bare.
12657      Branch: maint-5.6/perl
12658            ! installhtml
12659 ____________________________________________________________________________
12660 [  8738] By: jhi                                   on 2001/02/09  16:58:48
12661         Log: Subject: [PATCH: perl-5.6.1-TRIAL2] Win32 Makefile change to move html directory
12662              From: "Indy Singh" <indy@nusphere.com>
12663              Date: Fri, 2 Feb 2001 15:08:23 -0500
12664              Message-ID: <02b501c08d53$ec354550$d24b7018@cr637287a>
12665              
12666              Html files will be installed in a more logical and easier to
12667              find directory. E.g. c:\perl\html instead of c:\perl\lib\pod\html
12668      Branch: maint-5.6/perl
12669            ! win32/Makefile win32/makefile.mk
12670 ____________________________________________________________________________
12671 [  8737] By: jhi                                   on 2001/02/09  16:46:54
12672         Log: Integrate changes #8687,8736 from maintperl.
12673              
12674              HP-UX thread patches from Merijn H. Brand.
12675              
12676              Latin nit from Philip Newton.
12677      Branch: perl
12678           !> README.hpux hints/hpux.sh
12679 ____________________________________________________________________________
12680 [  8736] By: jhi                                   on 2001/02/09  16:42:31
12681         Log: Latin nit from Philip Newton.
12682      Branch: maint-5.6/perl
12683            ! README.hpux
12684 ____________________________________________________________________________
12685 [  8735] By: jhi                                   on 2001/02/09  16:24:03
12686         Log: Integrate changes #8704,8710 from pureperl.
12687              
12688              Fixed UMRs and leak in Perl_pmtrans()
12689              
12690              Several leaks an UMRs fixed, mainly in the area of Perl_pmtrans and
12691              associated UTFied tr/// code.  Also fixed scoping leak of
12692              PL_reg_start_tmp.
12693      Branch: perl
12694           !> op.c regcomp.c
12695 ____________________________________________________________________________
12696 [  8734] By: jhi                                   on 2001/02/09  15:40:21
12697         Log: Integrate change #8733 from maintperl.
12698              
12699              Subject: Re: [PATCH: 5.6.1 trial 2 && perl@8671] some coded char set issues in perlre.pod
12700      Branch: perl
12701           !> pod/perlre.pod
12702 ____________________________________________________________________________
12703 [  8733] By: jhi                                   on 2001/02/09  15:35:47
12704         Log: Subject: Re: [PATCH: 5.6.1 trial 2 && perl@8671] some coded char set issues in perlre.pod
12705              From: Prymmer/Kahn <pvhp@best.com>
12706              Date: Thu, 8 Feb 2001 21:21:22 -0800 (PST)
12707              Message-ID: <Pine.BSF.4.21.0102082048360.1499-100000@shell8.ba.best.com>
12708      Branch: maint-5.6/perl
12709            ! pod/perlre.pod
12710 ____________________________________________________________________________
12711 [  8732] By: jhi                                   on 2001/02/09  15:26:17
12712         Log: Rename README.posix-bc to README.bs2000 (to avoid the
12713              confusion of a "perlposix-bc.pod"), add a few missing
12714              arch pods, regen toc.
12715      Branch: maint-5.6/perl
12716           +> README.bs2000
12717            - README.posix-bc
12718            ! MANIFEST pod/buildtoc.PL pod/perl.pod pod/perlport.pod
12719            ! pod/perltoc.pod win32/Makefile win32/makefile.mk
12720 ____________________________________________________________________________
12721 [  8731] By: jhi                                   on 2001/02/09  15:23:39
12722         Log: De-cut-and-pasto.
12723      Branch: perl
12724            ! pod/perl.pod
12725 ____________________________________________________________________________
12726 [  8730] By: jhi                                   on 2001/02/09  15:11:13
12727         Log: Rename README.posix-bc to README.bs2000 to avoid confusion
12728              when people think that perlposix-bc.pod tells anything about
12729              Perl and POSIX.  Regen toc.
12730      Branch: perl
12731           +> README.bs2000
12732            - README.posix-bc
12733            ! MANIFEST pod/buildtoc.PL pod/perl.pod pod/perlport.pod
12734            ! pod/perltoc.pod win32/Makefile win32/makefile.mk
12735 ____________________________________________________________________________
12736 [  8729] By: jhi                                   on 2001/02/09  14:52:28
12737         Log: The README.vmesa part of #8712 from maintperl.
12738      Branch: perl
12739            ! README.vmesa
12740 ____________________________________________________________________________
12741 [  8728] By: jhi                                   on 2001/02/09  14:46:06
12742         Log: Subject: [PATCH: 5.6.1 trial 2 && perl@8671] podify README.vmesa
12743              From: Peter Prymmer <pvhp@forte.com>
12744              Date: Thu, 8 Feb 2001 13:00:30 -0800 (PST)
12745              Message-ID: <Pine.OSF.4.10.10102081246030.445810-100000@aspara.forte.com>
12746      Branch: maint-5.6/perl
12747            ! README.vmesa win32/Makefile win32/makefile.mk
12748 ____________________________________________________________________________
12749 [  8727] By: jhi                                   on 2001/02/09  14:33:25
12750         Log: Integrate change #8712 from mainline.
12751              
12752              [PATCH: perl-5.6.1 trial2 && perl@8671] VMS specific simplification for Pod::Find
12753      Branch: maint-5.6/perl
12754           !> lib/Pod/Find.pm
12755 ____________________________________________________________________________
12756 [  8726] By: jhi                                   on 2001/02/09  14:30:28
12757         Log: Subject: [PATCH: 5.6.1 trial2 && perl@8671] provide EBCDIC CGI::Util::escape() and test
12758              From: Peter Prymmer <pvhp@forte.com>
12759              Date: Mon, 5 Feb 2001 16:26:36 -0800 (PST)
12760              Message-ID: <Pine.OSF.4.10.10102051615260.280619-100000@aspara.forte.com>
12761      Branch: perl
12762            + t/lib/cgi-esc.t
12763            ! MANIFEST lib/CGI/Util.pm
12764 ____________________________________________________________________________
12765 [  8725] By: jhi                                   on 2001/02/09  04:56:47
12766         Log: Add NonStopUX to the list of 5.6.1-proven platforms.
12767      Branch: maint-5.6/perl
12768            ! pod/perlport.pod
12769 ____________________________________________________________________________
12770 [  8724] By: jhi                                   on 2001/02/09  04:40:59
12771         Log: Integrate changes 7819,7820 from vmsperl into mainline.
12772              
12773              Add header for LIB$ prototypes (C. Berry)
12774              
12775              Convert fwrite()s to sockets to write()s, since some socket stacks
12776              don't take kindly to stdio.
12777              Ignore "expected" SS$_NOLOGNAM when doing internal LNM lookups
12778              (for often optional LNMs)
12779              Correct a few typos
12780              (C. Bailey)
12781      Branch: perl
12782           !> ext/Devel/DProf/DProf.xs vms/vms.c vms/vmsish.h
12783 ____________________________________________________________________________
12784 [  8723] By: jhi                                   on 2001/02/09  03:29:29
12785         Log: Integrate change #8722 from mainline.
12786              
12787              The Im() function wasn't returning zero for non-Math::Complex
12788              arguments.  The bug reported by John Gamble.
12789      Branch: maint-5.6/perl
12790           !> lib/Math/Complex.pm
12791 ____________________________________________________________________________
12792 [  8722] By: jhi                                   on 2001/02/09  03:28:33
12793         Log: The Im() function wasn't returning zero for non-Math::Complex
12794              arguments.  The bug reported by John Gamble.
12795      Branch: perl
12796            ! lib/Math/Complex.pm
12797 ____________________________________________________________________________
12798 [  8721] By: nick                                  on 2001/02/08  22:11:35
12799         Log: Correct the correction :-(
12800      Branch: perl
12801            ! perl.c
12802 ____________________________________________________________________________
12803 [  8720] By: bailey                                on 2001/02/08  20:59:22
12804         Log: Convert frwite()s to sockets to write()s, since some socket stacks
12805              don't take kindly to stdio.
12806              Ignore "expected" SS$_NOLOGNAM when doing internal LNM lookups
12807              (for often optional LNMs)
12808              Correct a few typos
12809              (C. Bailey)
12810      Branch: vmsperl
12811            ! vms/vms.c vms/vmsish.h
12812 ____________________________________________________________________________
12813 [  8719] By: bailey                                on 2001/02/08  20:51:02
12814         Log: Add header for LIB$ prototypes (C. Berry)
12815      Branch: vmsperl
12816            ! ext/Devel/DProf/DProf.xs
12817 ____________________________________________________________________________
12818 [  8718] By: bailey                                on 2001/02/08  20:49:00
12819         Log: SYN SYN
12820      Branch: vmsperl
12821           +> pod/perliol.pod t/lib/sample-tests/bailout
12822           +> t/lib/sample-tests/combined t/lib/sample-tests/descriptive
12823           +> t/lib/sample-tests/duplicates t/lib/sample-tests/header_at_end
12824           +> t/lib/sample-tests/no_nums t/lib/sample-tests/simple
12825           +> t/lib/sample-tests/simple_fail t/lib/sample-tests/skip
12826           +> t/lib/sample-tests/skip_all t/lib/sample-tests/todo
12827           +> t/lib/sample-tests/with_comments t/lib/test-harness.t
12828            - lib/unicode/Is/DCinital.pl
12829           !> (integrate 101 files)
12830 ____________________________________________________________________________
12831 [  8717] By: nick                                  on 2001/02/08  19:38:48
12832         Log: Subject: [PATCH CPAN 1.59_51] warning message (not!)
12833              From: Robin Barker <rmb1@cise.npl.co.uk>
12834              Date: Thu, 8 Feb 2001 14:38:07 GMT
12835              Message-Id: <200102081438.OAA20498@tempest.npl.co.uk>
12836      Branch: perl
12837            ! lib/CPAN.pm
12838 ____________________________________________________________________________
12839 [  8716] By: nick                                  on 2001/02/08  19:29:07
12840         Log: Generated files form 8713 etc.
12841      Branch: perl
12842            ! embed.h global.sym objXSUB.h perlapi.c proto.h
12843 ____________________________________________________________________________
12844 [  8715] By: nick                                  on 2001/02/08  19:26:08
12845         Log: Fixup non-ithread build after 8713
12846      Branch: perl
12847            ! perl.c
12848 ____________________________________________________________________________
12849 [  8714] By: nick                                  on 2001/02/08  19:17:45
12850         Log: Subject: [ID 20010206.010] S_ functions not declared STATIC
12851              From: nick@ccl4.org
12852              Date: Wed, 7 Feb 2001 00:27:47 +0000
12853              Message-Id: <20010207002747.B63724@plum.flirble.org>
12854      Branch: perl
12855            ! sv.c toke.c
12856 ____________________________________________________________________________
12857 [  8713] By: nick                                  on 2001/02/08  19:15:58
12858         Log: Subject: Re: [patch] Re: PL_ptr_table
12859              From: Doug Maceachern <dougm@covalent.net>
12860              Date: Wed, 7 Feb 2001 19:18:52 -0800 (PST)
12861              Message-Id: <Pine.LNX.4.21.0102071916270.29229-100000@mako.covalent.net>
12862      Branch: perl
12863            ! embed.pl perl.c sv.c sv.h
12864 ____________________________________________________________________________
12865 [  8712] By: nick                                  on 2001/02/08  19:12:47
12866         Log: Subject: [PATCH: perl-5.6.1 trial2 && perl@8671] VMS specific simplificationfor Pod::Find
12867              From: Peter Prymmer <pvhp@forte.com>
12868              Date: Wed, 7 Feb 2001 17:07:39 -0800 (PST)
12869              Message-Id: <Pine.OSF.4.10.10102071704150.411763-100000@aspara.forte.com
12870      Branch: perl
12871            ! lib/Pod/Find.pm
12872 ____________________________________________________________________________
12873 [  8711] By: nick                                  on 2001/02/07  21:06:11
12874         Log: Manually appliued version for dev branch of Alan/Sarathy 5.6 patch.
12875              Subject: Re: Incorrect scoping of PL_reg_start_tmp causes leak
12876              From: Alan Burlison <Alan.Burlison@uk.sun.com>
12877              Date: Tue, 06 Feb 2001 23:37:01 +0000
12878              Message-Id: <3A808A9D.20F7A035@uk.sun.com>
12879      Branch: perl
12880            ! regcomp.c
12881 ____________________________________________________________________________
12882 [  8710] By: alanbur                               on 2001/02/07  00:22:04
12883         Log: Several leaks an UMRs fixed, mainly in the area of Perl_pmtrans and
12884              associated UTFied tr/// code.  Also fixed scoping leak of
12885              PL_reg_start_tmp.
12886      Branch: maint-5.6/pureperl
12887            ! op.c regcomp.c
12888 ____________________________________________________________________________
12889 [  8709] By: nick                                  on 2001/02/06  21:16:49
12890         Log: Subject: [PATCH pod/perlmodlib.PL 5.6.1-TRIAL2] Up to date CPAN mirror list
12891              From: Michael G Schwern <schwern@pobox.com>
12892              Date: Sun, 4 Feb 2001 19:47:14 -0500
12893              Message-Id: <20010204194714.A4698@blackrider.aocn.com>
12894      Branch: perl
12895            ! pod/perlapi.pod pod/perlmodlib.PL
12896 ____________________________________________________________________________
12897 [  8708] By: nick                                  on 2001/02/06  20:41:20
12898         Log: Subject: Re: [PATCH pod/[bt]ootc?.pod] Adding mention of useful CPAN modules
12899              From: Michael G Schwern <schwern@pobox.com>
12900              Date: Sun, 4 Feb 2001 21:17:49 -0500
12901              Message-Id: <20010204211748.A13415@blackrider.aocn.com>
12902      Branch: perl
12903            ! pod/perlboot.pod pod/perlobj.pod pod/perltoot.pod
12904            ! pod/perltootc.pod
12905 ____________________________________________________________________________
12906 [  8707] By: nick                                  on 2001/02/06  20:29:11
12907         Log: Subject: [PATCH lib/ExtUtils/MANIFEST.SKIP] Skipping CVS conflict backup files
12908              From: Michael G Schwern <schwern@pobox.com>
12909              Date: Tue, 6 Feb 2001 05:54:30 -0500
12910              Message-Id: <20010206055430.A951@blackrider.aocn.com>
12911      Branch: perl
12912            ! lib/ExtUtils/MANIFEST.SKIP lib/ExtUtils/Manifest.pm
12913 ____________________________________________________________________________
12914 [  8706] By: nick                                  on 2001/02/06  20:21:40
12915         Log: Subject: RE: some win32 fixes
12916              Date: Tue, 6 Feb 2001 09:23:20 +0300
12917              From: Vadim Konovalov <vkonovalov@lucent.com>
12918              Message-ID: <402099F49BEED211999700805FC7359F9CAF49@ru0028exch01.spb.lucent.com>
12919      Branch: perl
12920            ! toke.c win32/Makefile win32/config.bc win32/config.gc
12921            ! win32/config.vc win32/config_H.bc win32/makefile.mk
12922 ____________________________________________________________________________
12923 [  8705] By: alanbur                               on 2001/02/06  15:00:03
12924         Log: Synchronised with parent
12925      Branch: maint-5.6/pureperl
12926            ! regexec.c
12927           !> t/lib/db-btree.t t/lib/db-hash.t t/lib/db-recno.t
12928           !> utils/perldoc.PL win32/Makefile win32/makefile.mk
12929 ____________________________________________________________________________
12930 [  8704] By: alanbur                               on 2001/02/06  14:55:24
12931         Log: Fixed UMRs and leak in Perl_pmtrans()
12932      Branch: maint-5.6/pureperl
12933            ! op.c
12934 ____________________________________________________________________________
12935 [  8703] By: gsar                                  on 2001/02/06  02:29:37
12936         Log: $(MAKE) distclean doesn't clean up properly on windows
12937      Branch: maint-5.6/perl
12938            ! win32/Makefile win32/makefile.mk
12939 ____________________________________________________________________________
12940 [  8702] By: gsar                                  on 2001/02/06  01:00:46
12941         Log: tweak change#8659 to keep it simple
12942      Branch: maint-5.6/perl
12943            ! utils/perldoc.PL
12944 ____________________________________________________________________________
12945 [  8701] By: gsar                                  on 2001/02/05  22:45:41
12946         Log: change#8693 was missing testsuite changes
12947      Branch: maint-5.6/perl
12948           !> t/lib/db-btree.t t/lib/db-hash.t t/lib/db-recno.t
12949 ____________________________________________________________________________
12950 [  8700] By: nick                                  on 2001/02/05  20:32:52
12951         Log: Integrate mainline
12952      Branch: perlio
12953           +> t/lib/sample-tests/bailout t/lib/sample-tests/combined
12954           +> t/lib/sample-tests/descriptive t/lib/sample-tests/duplicates
12955           +> t/lib/sample-tests/header_at_end t/lib/sample-tests/no_nums
12956           +> t/lib/sample-tests/simple t/lib/sample-tests/simple_fail
12957           +> t/lib/sample-tests/skip t/lib/sample-tests/skip_all
12958           +> t/lib/sample-tests/todo t/lib/sample-tests/with_comments
12959           +> t/lib/test-harness.t
12960           !> Configure MANIFEST lib/Test/Harness.pm lib/overload.pm
12961           !> perlio.c pod/perldiag.pod pod/perlfaq2.pod pod/perlfaq8.pod
12962           !> pod/perlfunc.pod pod/perlop.pod pod/perlport.pod
12963           !> pod/perlutil.pod t/TEST utils/h2xs.PL
12964 ____________________________________________________________________________
12965 [  8699] By: nick                                  on 2001/02/05  19:41:07
12966         Log: Subject: perlfaq2, re: perlmongers
12967              From: David H. Adler <dha@panix.com>
12968              Date: Sun, 4 Feb 2001 23:48:23 -0500
12969              Message-Id: <20010204234823.A13429@panix.com>
12970      Branch: perl
12971            ! pod/perlfaq2.pod
12972 ____________________________________________________________________________
12973 [  8698] By: nick                                  on 2001/02/05  19:39:31
12974         Log: Missed file f#rom the testharness mess.
12975      Branch: perl
12976            + t/lib/test-harness.t
12977 ____________________________________________________________________________
12978 [  8697] By: nick                                  on 2001/02/05  19:37:21
12979         Log: Subject: [DOC PATCH] overload.pm nits
12980              From: John Tobey <jtobey@john-edwin-tobey.org>
12981              Date: Sun, 4 Feb 2001 20:40:47 -0500 (EST)
12982              Message-Id: <m14Pae7-000FOoC@feynman.localnet>
12983      Branch: perl
12984            ! lib/overload.pm
12985 ____________________________________________________________________________
12986 [  8696] By: alanbur                               on 2001/02/05  11:56:00
12987         Log: Sync with parent
12988      Branch: maint-5.6/pureperl
12989           !> thread.h
12990 ____________________________________________________________________________
12991 [  8695] By: gsar                                  on 2001/02/05  03:27:34
12992         Log: thread.h tweak to enable 5005threads on HP-UX 10.20 with DCE threads
12993      Branch: maint-5.6/perl
12994            ! thread.h
12995 ____________________________________________________________________________
12996 [  8694] By: alanbur                               on 2001/02/05  00:07:47
12997         Log: Initial branch creation from //depot/maint-5.6/perl
12998      Branch: maint-5.6/pureperl
12999           +> (branch 1719 files)
13000 ____________________________________________________________________________
13001 [  8693] By: gsar                                  on 2001/02/04  22:38:49
13002         Log: integrate changes#7801,8068,8094,8108,8196 from mainline (DB_File
13003              changes)
13004      Branch: maint-5.6/perl
13005           !> ext/DB_File/Changes ext/DB_File/DB_File.pm
13006           !> ext/DB_File/DB_File.xs ext/DB_File/dbinfo ext/DB_File/typemap
13007           !> ext/DB_File/version.c
13008 ____________________________________________________________________________
13009 [  8692] By: nick                                  on 2001/02/04  18:15:57
13010         Log: The missed t/TEST part of the grand testharness upgrade.
13011      Branch: perl
13012            ! t/TEST
13013 ____________________________________________________________________________
13014 [  8691] By: nick                                  on 2001/02/04  18:05:17
13015         Log: New improved test harness
13016              Subject: Re: [PATCH Test::Harness] Third time's a charm?
13017              From: Michael G Schwern <schwern@pobox.com>
13018              Date: Sun, 4 Feb 2001 08:01:20 -0500
13019              Message-Id: <20010204080120.G10493@blackrider.aocn.com>
13020      Branch: perl
13021            + t/lib/sample-tests/bailout t/lib/sample-tests/combined
13022            + t/lib/sample-tests/descriptive t/lib/sample-tests/duplicates
13023            + t/lib/sample-tests/header_at_end t/lib/sample-tests/no_nums
13024            + t/lib/sample-tests/simple t/lib/sample-tests/simple_fail
13025            + t/lib/sample-tests/skip t/lib/sample-tests/skip_all
13026            + t/lib/sample-tests/todo t/lib/sample-tests/with_comments
13027            ! MANIFEST lib/Test/Harness.pm
13028 ____________________________________________________________________________
13029 [  8690] By: nick                                  on 2001/02/04  17:57:51
13030         Log: Subject: [PATCH h2xs.PL perl@8670] Small usage change and author gueesing
13031              From: Jonathan Stowe <gellyfish@gellyfish.com>
13032              Date: Sun, 4 Feb 2001 10:46:01 +0000 (GMT)
13033              Message-Id: <Pine.LNX.4.32.0102041037510.1555-100000@orpheus.gellyfish.com>
13034      Branch: perl
13035            ! utils/h2xs.PL
13036 ____________________________________________________________________________
13037 [  8689] By: nick                                  on 2001/02/04  17:55:24
13038         Log: Subject: Re: [PATCH lots of pod/] s/chop/chomp/g
13039              From: Michael G Schwern <schwern@pobox.com>
13040              Date: Sat, 3 Feb 2001 22:46:38 -0500
13041              Message-Id: <20010203224638.E10493@blackrider.aocn.com>
13042      Branch: perl
13043            ! pod/perldiag.pod pod/perlfaq8.pod pod/perlfunc.pod
13044            ! pod/perlop.pod pod/perlport.pod pod/perlutil.pod
13045 ____________________________________________________________________________
13046 [  8688] By: nick                                  on 2001/02/04  17:43:55
13047         Log: Subject: [ID 20010203.006] perlio.c is mis-reporting argument
13048              length byfailing to spot lack of closing )
13049              From: nick@talking.bollo.cx
13050              Date: Sat, 03 Feb 2001 23:53:16 +0000
13051              Message-Id: <E14PCUW-0001Qo-00@Bagpuss.unfortu.net>
13052      Branch: perl
13053            ! perlio.c pod/perldiag.pod
13054 ____________________________________________________________________________
13055 [  8687] By: jhi                                   on 2001/02/03  17:11:42
13056         Log: HP-UX thread patches from Merijn H. Brand.
13057      Branch: maint-5.6/perl
13058            ! README.hpux hints/hpux.sh
13059 ____________________________________________________________________________
13060 [  8686] By: jhi                                   on 2001/02/03  16:40:12
13061         Log: Metaconfig changes for #8685.
13062      Branch: metaconfig
13063            ! U/installdirs/instubperl.U
13064      Branch: metaconfig/U/perl
13065            ! Devel.U versiononly.U
13066 ____________________________________________________________________________
13067 [  8685] By: jhi                                   on 2001/02/03  16:39:49
13068         Log: For -Dusedevel builds turn off installusrbinperl and turn on
13069              versiononly, a combined idea of Richard Soderberg and Merijn
13070              H. Brand.  You can still override both of these from the command
13071              line if you need to, -Dinstallusrbinperl and -Uversiononly.
13072      Branch: perl
13073            ! Configure
13074 ____________________________________________________________________________
13075 [  8684] By: jhi                                   on 2001/02/03  16:16:34
13076         Log: Metaconfig unit fix for #8683.
13077      Branch: metaconfig
13078            ! U/compline/nblock_io.U
13079 ____________________________________________________________________________
13080 [  8683] By: jhi                                   on 2001/02/03  16:16:12
13081         Log: Configure fix for the DYNIX/ptx F_SETFL problem,
13082              reported by Peter Prymmer for 5.6-TRIAL1.
13083      Branch: perl
13084            ! Configure
13085 ____________________________________________________________________________
13086 [  8682] By: jhi                                   on 2001/02/03  05:52:11
13087         Log: IRIX hints fix from Scott Henry, get Configure -Dcc="cc -64 -mips3"
13088              to work correctly.
13089      Branch: maint-5.6/perl
13090            ! hints/irix_6.sh
13091 ____________________________________________________________________________
13092 [  8681] By: jhi                                   on 2001/02/03  05:47:33
13093         Log: perlport tweaks from Peter Prymmer and Chris Nandor.
13094      Branch: maint-5.6/perl
13095            ! pod/perlport.pod
13096 ____________________________________________________________________________
13097 [  8680] By: jhi                                   on 2001/02/02  21:39:49
13098         Log: perlport update from Peter Prymmer.
13099      Branch: maint-5.6/perl
13100            ! pod/perlport.pod
13101 ____________________________________________________________________________
13102 [  8679] By: nick                                  on 2001/02/02  20:50:48
13103         Log: Integrate mainline
13104      Branch: perlio
13105           !> Changes Porting/makerel embed.pl embedvar.h ext/POSIX/POSIX.xs
13106           !> lib/Getopt/Long.pm patchlevel.h pod/perlfunc.pod
13107           !> pod/perlmodlib.PL pod/perlmodlib.pod pp.h sv.c t/lib/peek.t
13108 ____________________________________________________________________________
13109 [  8678] By: gsar                                  on 2001/02/02  16:02:12
13110         Log: note about bincompat, slightly modified (from Lupe Christoph)
13111      Branch: maint-5.6/perl
13112            ! README.solaris
13113 ____________________________________________________________________________
13114 [  8677] By: jhi                                   on 2001/02/02  15:46:20
13115         Log: Supported platforms updates.
13116      Branch: maint-5.6/perl
13117            ! pod/perlport.pod
13118 ____________________________________________________________________________
13119 [  8676] By: jhi                                   on 2001/02/02  03:41:26
13120         Log: A couple more perlfaq2 tweaks.
13121      Branch: maint-5.6/perl
13122            ! pod/perlfaq2.pod
13123 ____________________________________________________________________________
13124 [  8675] By: jhi                                   on 2001/02/02  03:17:44
13125         Log: Misedit in #8661.
13126      Branch: maint-5.6/perl
13127            ! Configure
13128 ____________________________________________________________________________
13129 [  8674] By: jhi                                   on 2001/02/02  03:14:38
13130         Log: Damien again.
13131      Branch: maint-5.6/perl
13132            ! pod/perlfaq2.pod
13133 ____________________________________________________________________________
13134 [  8673] By: jhi                                   on 2001/02/02  03:12:40
13135         Log: perlfaq update from Elaine Ashton.
13136      Branch: maint-5.6/perl
13137            ! pod/perlfaq2.pod
13138 ____________________________________________________________________________
13139 [  8672] By: jhi                                   on 2001/02/02  03:07:08
13140         Log: UTF-8 s/// patch from Inaba Hiroto.
13141      Branch: maint-5.6/perl
13142            ! pp_ctl.c pp_hot.c
13143 ____________________________________________________________________________
13144 [  8671] By: jhi                                   on 2001/02/01  22:34:31
13145         Log: Update Changes.
13146      Branch: perl
13147            ! Changes patchlevel.h
13148 ____________________________________________________________________________
13149 [  8670] By: jhi                                   on 2001/02/01  22:15:29
13150         Log: Integrate changes #8641,8644,8649,8654,8662,8663,8664,8665,8667,8669
13151              from maintperl.
13152              
13153              Upgrade to Getopt::Long 2.25, from Johan Vromans.
13154              
13155              more files need to be writable in the source distribution
13156              
13157              perl_clone() wants to clone PL_numeric_radix_sv (fix for change#8626)
13158              
13159              Solaris 2.7 i386 #defines SP in /usr/include/sys/reg.h
13160              
13161              Subject: Re: [PATCH perl5.6.1-TRIAL2] long C<=item>s in perlmodlib.pod
13162              
13163              Allow the float to be fuzzier.
13164              
13165              need to use INT2PTR instead of a straight cast or ia64 fails
13166              
13167              Subject: Re: [ID 20010201.006] bad pointer from perlfunc to perlmod 
13168              
13169              add ppaddr as one of the compatibility symbols under -DPERL_POLLUTE
13170      Branch: perl
13171           !> Porting/makerel embed.pl embedvar.h ext/POSIX/POSIX.xs
13172           !> lib/Getopt/Long.pm pod/perlfunc.pod pod/perlmodlib.PL
13173           !> pod/perlmodlib.pod pp.h sv.c t/lib/peek.t
13174 ____________________________________________________________________________
13175 [  8669] By: jhi                                   on 2001/02/01  21:57:02
13176         Log: Subject: Re: [PATCH perl5.6.1-TRIAL2] long C<=item>s in perlmodlib.pod
13177              From: Robin Barker <rmb1@cise.npl.co.uk>
13178              Date: Thu, 1 Feb 2001 16:59:05 GMT
13179              Message-Id: <200102011659.QAA01274@tempest.npl.co.uk>
13180      Branch: maint-5.6/perl
13181            ! pod/perlmodlib.PL
13182 ____________________________________________________________________________
13183 [  8668] By: nick                                  on 2001/02/01  19:41:40
13184         Log: Integrate mainline
13185      Branch: perlio
13186           !> dump.c ext/Errno/Errno_pm.PL intrpvar.h mg.c perl.c perl.h
13187           !> pod/perlapi.pod pp.c pp.h pp_hot.c sv.c t/op/arith.t
13188           !> t/op/each.t utf8.c utf8.h util.c vms/test.com
13189 ____________________________________________________________________________
13190 [  8667] By: gsar                                  on 2001/02/01  16:59:11
13191         Log: add ppaddr as one of the compatibility symbols under -DPERL_POLLUTE
13192      Branch: maint-5.6/perl
13193            ! embed.pl embedvar.h
13194 ____________________________________________________________________________
13195 [  8666] By: gsar                                  on 2001/02/01  16:34:51
13196         Log: add missing entries to win32/config.?c
13197      Branch: maint-5.6/perl
13198            ! win32/config.bc win32/config.gc win32/config.vc
13199            ! win32/config_H.bc win32/config_H.gc win32/config_H.vc
13200 ____________________________________________________________________________
13201 [  8665] By: jhi                                   on 2001/02/01  14:58:51
13202         Log: Subject: Re: [ID 20010201.006] bad pointer from perlfunc to perlmod 
13203              From: "Stephen P. Potter" <spp@spotter.yi.org>
13204              Date: Thu, 01 Feb 2001 10:45:46 -0500
13205              Message-Id: <200102011545.KAA31479@spotter.yi.org>
13206      Branch: maint-5.6/perl
13207            ! pod/perlfunc.pod
13208 ____________________________________________________________________________
13209 [  8664] By: gsar                                  on 2001/02/01  14:52:37
13210         Log: need to use INT2PTR instead of a straight cast or ia64 fails
13211              posix.t (from Brendan O'Dea <bod@compusol.com.au>)
13212      Branch: maint-5.6/perl
13213            ! ext/POSIX/POSIX.xs
13214 ____________________________________________________________________________
13215 [  8663] By: jhi                                   on 2001/02/01  14:09:13
13216         Log: Allow the float to be fuzzier.
13217      Branch: maint-5.6/perl
13218            ! t/lib/peek.t
13219 ____________________________________________________________________________
13220 [  8662] By: jhi                                   on 2001/02/01  13:59:00
13221         Log: Subject: [PATCH perl5.6.1-TRIAL2] long C<=item>s in perlmodlib.pod
13222              From: Robin Barker <rmb1@cise.npl.co.uk>
13223              Date: Thu, 1 Feb 2001 13:05:39 GMT
13224              Message-Id: <200102011305.NAA26160@tempest.npl.co.uk>
13225      Branch: maint-5.6/perl
13226            ! pod/perlmodlib.pod
13227 ____________________________________________________________________________
13228 [  8661] By: jhi                                   on 2001/02/01  13:57:38
13229         Log: Subject: [PATCH] Re: v5.6.1 trial2 is available
13230              Date: Thu, 01 Feb 2001 14:15:41 +0100
13231              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
13232              Message-Id: <20010201141104.303F.H.M.BRAND@hccnet.nl>
13233              
13234              Have the $ccflags in the gcc version test (strange, this change
13235              is claimed to be have been integrated already)
13236      Branch: maint-5.6/perl
13237            ! Configure
13238 ____________________________________________________________________________
13239 [  8660] By: jhi                                   on 2001/02/01  13:44:10
13240         Log: Integrate changes #7950,7964,7962 from mainline.
13241              
13242              Find the stdchar signedness using cpp, should fix some of
13243              the Solaris compiler warnings reported by Alan Burlison.
13244      Branch: maint-5.6/perl
13245           !> Configure config_h.SH
13246 ____________________________________________________________________________
13247 [  8659] By: jhi                                   on 2001/02/01  05:35:32
13248         Log: Subject: [PATCH 5.6.1-TRIAL? and 5.7.?] perldoc uses unescaped backslashes in filenames
13249              From: Jan Dubois <JanD@ActiveState.com>
13250              Date: Wed, 31 Jan 2001 21:17:03 -0800
13251              Message-ID: <8qrh7t069jt32m98sap53l9dfoge0vjrle@4ax.com>
13252      Branch: maint-5.6/perl
13253            ! utils/perldoc.PL
13254 ____________________________________________________________________________
13255 [  8658] By: jhi                                   on 2001/02/01  04:33:17
13256         Log: Integrate the README.os390 and README.posix-bc parts of mainline
13257              changes #8373,8486, 8544,8556.  (The hints/os390.sh,Makefile.SH,
13258              installperl parts were taken care of by #8657.)
13259      Branch: maint-5.6/perl
13260           !> README.os390 README.posix-bc
13261 ____________________________________________________________________________
13262 [  8657] By: jhi                                   on 2001/02/01  04:29:21
13263         Log: Subject: [PATCH: 5.6.1 trial2] DynaLoading for OS/390 build option
13264              From: Peter Prymmer <pvhp@forte.com>
13265              Date: Wed, 31 Jan 2001 18:18:11 -0800 (PST)
13266              Message-ID: <Pine.OSF.4.10.10101311815560.336633-100000@aspara.forte.com>
13267      Branch: maint-5.6/perl
13268            + ext/DynaLoader/dl_dllload.xs
13269            ! MANIFEST Makefile.SH hints/os390.sh installperl
13270 ____________________________________________________________________________
13271 [  8656] By: jhi                                   on 2001/02/01  04:25:45
13272         Log: Subject: [PATCH: 5.6.1 trial2]Not OK: perl v5.6.1 +v5.6.1-TRIAL2 on os390 05.00 (UNINSTALLED)
13273              From: Peter Prymmer <pvhp@forte.com>
13274              Date: Wed, 31 Jan 2001 15:26:57 -0800 (PST)
13275              Message-ID: <Pine.OSF.4.10.10101311523101.336633-100000@aspara.forte.com>
13276      Branch: maint-5.6/perl
13277            ! lib/Math/BigInt.pm lib/bigint.pl t/lib/b.t t/pragma/sub_lval.t
13278 ____________________________________________________________________________
13279 [  8655] By: jhi                                   on 2001/02/01  04:14:47
13280         Log: Subject: [ID 20010131.066] Not OK: perl v5.6.1 +v5.6.1-TRIAL2 on os2 2.40 (UNINSTALLED)
13281              From: troc@netrus.net
13282              Date: Wed, 31 Jan 2001 22:31:26 -0500
13283              Message-Id: <200102010331.WAA117.85@rocco.homenet>
13284      Branch: maint-5.6/perl
13285            ! os2/os2.c
13286 ____________________________________________________________________________
13287 [  8654] By: jhi                                   on 2001/02/01  04:12:52
13288         Log: Solaris 2.7 i386 #defines SP in /usr/include/sys/reg.h
13289              as reported by Alan Burlison.
13290      Branch: maint-5.6/perl
13291            ! pp.h
13292 ____________________________________________________________________________
13293 [  8653] By: jhi                                   on 2001/02/01  04:05:12
13294         Log: Subject: [ID 20010131.042] Not OK: perl v5.6.1 +v5.6.1-TRIAL2 on VMS_AXP V7.2-1
13295              From: dsugalski@northernlight.com
13296              Date: Wed, 31 Jan 2001 18:54:11 -0500
13297              Message-Id: <01013118541126@monsoon.stratus.northernlight.com>
13298      Branch: maint-5.6/perl
13299            ! configure.com
13300 ____________________________________________________________________________
13301 [  8652] By: jhi                                   on 2001/02/01  04:03:11
13302         Log: Misplaced #endif.
13303              
13304              Subject: [perl-5-6-1-trial2] patches for EPOC
13305              From: Olaf Flebbe <O.Flebbe@science-computing.de>
13306              Date: Wed, 31 Jan 2001 23:15:34 +0100 (CET)
13307              Message-ID: <Pine.LNX.4.02.10101312314470.5682-100000@milkyway.science-computing.de>
13308      Branch: maint-5.6/perl
13309            ! epoc/epocish.c
13310 ____________________________________________________________________________
13311 [  8651] By: jhi                                   on 2001/02/01  04:00:25
13312         Log: Integrate changes #8647,8648,8650 from mainline.
13313              
13314              Macrofy a magic UTF-8 test.
13315              
13316              Protect PL_numeric_radix_sv with USE_NUMERIC_LOCALE.
13317              
13318              Watch out for cross compiling for EPOC (usually done on linux).
13319      Branch: maint-5.6/perl
13320           !> ext/Errno/Errno_pm.PL sv.c utf8.c utf8.h
13321 ____________________________________________________________________________
13322 [  8650] By: jhi                                   on 2001/02/01  03:56:20
13323         Log: Watch out for cross compiling for EPOC (usually done on linux)
13324              
13325              Subject: [perl-5-6-1-trial2] patches for EPOC
13326              From: Olaf Flebbe <O.Flebbe@science-computing.de>
13327              Date: Wed, 31 Jan 2001 23:15:34 +0100 (CET)
13328              Message-ID: <Pine.LNX.4.02.10101312314470.5682-100000@milkyway.science-computing.de>
13329      Branch: perl
13330            ! ext/Errno/Errno_pm.PL
13331 ____________________________________________________________________________
13332 [  8649] By: gsar                                  on 2001/02/01  00:46:00
13333         Log: perl_clone() wants to clone PL_numeric_radix_sv (fix for change#8626)
13334      Branch: maint-5.6/perl
13335            ! sv.c
13336 ____________________________________________________________________________
13337 [  8648] By: jhi                                   on 2001/01/31  23:35:36
13338         Log: All the uses of PL_numeric_radix must be protected by
13339              USE_LOCALE_NUMERIC, noticed by Olaf Flebbe in
13340              
13341              Subject: [perl-5-6-1-trial2] patches for EPOC
13342              From: Olaf Flebbe <O.Flebbe@science-computing.de>
13343              Date: Wed, 31 Jan 2001 23:15:34 +0100 (CET)
13344              Message-ID: <Pine.LNX.4.02.10101312314470.5682-100000@milkyway.science-computing.de>
13345      Branch: perl
13346            ! sv.c
13347 ____________________________________________________________________________
13348 [  8647] By: jhi                                   on 2001/01/31  22:56:16
13349         Log: Macrofy a magic UTF-8 test.
13350      Branch: perl
13351            ! utf8.c utf8.h
13352 ____________________________________________________________________________
13353 [  8646] By: gsar                                  on 2001/01/31  15:55:12
13354         Log: update Changes
13355      Branch: maint-5.6/perl
13356            ! Changes
13357 ____________________________________________________________________________
13358 [  8645] By: gsar                                  on 2001/01/31  15:10:14
13359         Log: Configure tweak suggested by Peter Prymmer
13360      Branch: maint-5.6/perl
13361            ! Configure
13362 ____________________________________________________________________________
13363 [  8644] By: gsar                                  on 2001/01/31  15:06:32
13364         Log: more files need to be writable in the source distribution
13365      Branch: maint-5.6/perl
13366            ! Porting/makerel
13367 ____________________________________________________________________________
13368 [  8643] By: jhi                                   on 2001/01/31  14:59:46
13369         Log: Integrate changes #8258,8278,8279 from mainline.
13370              
13371              Make the large file tests more robust/talkative.
13372      Branch: maint-5.6/perl
13373           !> t/lib/syslfs.t t/op/lfs.t
13374 ____________________________________________________________________________
13375 [  8642] By: gsar                                  on 2001/01/31  14:53:48
13376         Log: integrate changes#8311,8334 from mainline
13377              
13378              Add a new MakeMaker variable PM_FILTER that defines a Unix
13379              filter to be run on each .pm during the pm_to_blib() phase,
13380              a fixed version of
13381              Subject: PATCH (blead 8269) ExtUtils::MakeMaker
13382              
13383              Subject: PATCH 5.6.1 & blead 8327 -- workaround for t/io/fs.t
13384              Apparently, the glibc2.2 + linux 2.4.0 + NFS combination prevent
13385              accurate reading of the "atime".  
13386      Branch: maint-5.6/perl
13387           !> lib/ExtUtils/Install.pm lib/ExtUtils/MM_Unix.pm
13388           !> lib/ExtUtils/MM_VMS.pm lib/ExtUtils/MM_Win32.pm
13389           !> lib/ExtUtils/MakeMaker.pm t/io/fs.t
13390 ____________________________________________________________________________
13391 [  8641] By: jhi                                   on 2001/01/31  14:46:37
13392         Log: Upgrade to Getopt::Long 2.25, from Johan Vromans.
13393      Branch: maint-5.6/perl
13394            ! lib/Getopt/Long.pm
13395 ____________________________________________________________________________
13396 [  8640] By: gsar                                  on 2001/01/31  14:40:24
13397         Log: make regen_all
13398      Branch: maint-5.6/perl
13399            ! patchlevel.h pod/perlmodlib.pod pod/perltoc.pod
13400 ____________________________________________________________________________
13401 [  8639] By: gsar                                  on 2001/01/31  14:37:25
13402         Log: refresh windows config files
13403      Branch: maint-5.6/perl
13404            ! win32/Makefile win32/config_H.bc win32/config_H.gc
13405            ! win32/config_H.vc win32/makefile.mk
13406 ____________________________________________________________________________
13407 [  8638] By: gsar                                  on 2001/01/31  14:28:10
13408         Log: makefile tweaks for windows: introduce a bulk-switch to enable
13409              same options as ActivePerl; sync changes with makefile.mk
13410      Branch: maint-5.6/perl
13411            ! win32/Makefile win32/makefile.mk
13412 ____________________________________________________________________________
13413 [  8637] By: jhi                                   on 2001/01/31  04:41:30
13414         Log: Subject: [PATCH] Re: [PATCH] Re: [ID 20010105.023] numeric problems in IRIX
13415              From: Nicholas Clark <nick@ccl4.org>
13416              Date: Tue, 30 Jan 2001 19:51:05 +0000
13417              Message-ID: <20010130195105.R76607@plum.flirble.org> 
13418              
13419              op/inc cure.
13420      Branch: perl
13421            ! pp.c pp.h pp_hot.c t/op/arith.t
13422 ____________________________________________________________________________
13423 [  8636] By: jhi                                   on 2001/01/31  02:38:32
13424         Log: Integrate changes #7884,8122,8155,8197,8213[just to /nolog part,
13425              no perlio],8257,8380,8479,8515 from mainline.
13426              
13427              Subject:  [PATCH perl@7795 (and earlier)] VMS test cleanup
13428              
13429              Subject: Re: [ID 20001214.011] Unreachable value in a search list logical name
13430              Subject: [PATCH perl@8133] fix-up for VMS extensions
13431              
13432              In VMS embedded perls couldn't access the statically built Socket.
13433              
13434              Subject: [patch: perl@8211]VMS: add -Duseperlio capacity to configure.com (8213)
13435              
13436              Further VMS piping fixes from Charles Lane.
13437              
13438              Subject:  [PATCH] make t/op/misc.t work on VMS
13439              
13440              Add tracing for debugging extensions builds in VMS.
13441              
13442              Subject: [PATCH perl@8506] typo in last week's configure.com frenzy
13443      Branch: maint-5.6/perl
13444           !> configure.com doio.c t/op/misc.t vms/descrip_mms.template
13445           !> vms/ext/DCLsym/Makefile.PL vms/ext/Stdio/Makefile.PL
13446           !> vms/test.com vms/vms.c vms/vmsish.h vms/vmspipe.com
13447 ____________________________________________________________________________
13448 [  8635] By: jhi                                   on 2001/01/31  01:46:41
13449         Log: Integrate change #7732 from mainline.
13450              
13451              Sparc 64-bit pack() fix from Jens Hamisch.
13452      Branch: maint-5.6/perl
13453           !> pp.c
13454 ____________________________________________________________________________
13455 [  8634] By: jhi                                   on 2001/01/31  01:41:16
13456         Log: One spot missing from #8626.
13457      Branch: maint-5.6/perl
13458            ! sv.c
13459 ____________________________________________________________________________
13460 [  8633] By: jhi                                   on 2001/01/31  00:49:17
13461         Log: Integrate change #7495 from mainline.
13462              
13463              Subject: [PATCH: perl@7483] generalize AIX ccversion hack for re extension
13464      Branch: maint-5.6/perl
13465           !> MANIFEST ext/re/Makefile.PL
13466 ____________________________________________________________________________
13467 [  8632] By: jhi                                   on 2001/01/30  23:38:49
13468         Log: Integrate change #8396 from mainline.
13469              
13470              Subject: [PATCH] add SO_REUSEPORT to export list in Socket.pm for
13471              better multicast support (resend)
13472      Branch: maint-5.6/perl
13473           !> ext/Socket/Socket.pm
13474 ____________________________________________________________________________
13475 [  8631] By: jhi                                   on 2001/01/30  23:28:03
13476         Log: Integrate changes #7514,7813,8113,8144,8397,8398,8490 from mainline.
13477              
13478              More AIX lore. (7514, ext/re/hints/aix.pl)
13479              
13480              Subject: Re: [PATCH bleadperl] Re: Not OK: perl5.7.0 +DEVEL7706    +Duseperlio on AIX4.[23]
13481              
13482              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)
13483              
13484              Subject: [ID 20001214.002] Net::Ping patch
13485              
13486              Subject: [patch perl@8133] Typo in my Net::Ping doc patch :(
13487              
13488              Subject: [PATCH] add ReusePort option to IO::Socket::INET for better multicast support (resend)
13489              
13490              Add ReuseAddr as a (preferred) alias for Reuse as we now
13491              also have ReusePort.
13492              
13493              Subject: [PATCH: perl@8482] minor typos in some dl_$foo.xs files
13494      Branch: maint-5.6/perl
13495           +> ext/re/hints/aix.pl
13496           !> ext/DynaLoader/dl_aix.xs ext/DynaLoader/dl_dlopen.xs
13497           !> ext/IO/lib/IO/Socket/INET.pm lib/Net/Ping.pm
13498 ____________________________________________________________________________
13499 [  8630] By: jhi                                   on 2001/01/30  23:03:59
13500         Log: Integrate changes #8215,8587 from mainline: missing pod nits.
13501              
13502              read() documentation tweak for 20001121.004.
13503              
13504              Subject: [ID 20010128.003] [PATCH] perlre.pod buglet
13505      Branch: maint-5.6/perl
13506           !> pod/perlfunc.pod pod/perlre.pod
13507 ____________________________________________________________________________
13508 [  8629] By: jhi                                   on 2001/01/30  22:41:57
13509         Log: Integrate change #8098 from mainline.
13510              
13511              fastgetcwd is defined using a glob alias on a $^O dependent basis
13512              and there was no default assignment or perl subroutine.
13513      Branch: maint-5.6/perl
13514           !> lib/Cwd.pm
13515 ____________________________________________________________________________
13516 [  8628] By: jhi                                   on 2001/01/30  21:58:52
13517         Log: Integrate change #7866 from mainline.
13518              
13519              File::Temp 0.11.
13520      Branch: maint-5.6/perl
13521           !> lib/File/Temp.pm t/lib/ftmp-tempfile.t
13522 ____________________________________________________________________________
13523 [  8627] By: jhi                                   on 2001/01/30  21:39:44
13524         Log: Integrate changes #8075,8086,8228 from mainline.  
13525              
13526              Darwin is not Windows. (8075,8086)
13527              
13528              Subject: [PATCH 5.6.1-TRIAL1 and @8223]; was Re: Perlbug 20000322.006 status +update
13529      Branch: maint-5.6/perl
13530           !> lib/CGI.pm lib/Pod/Select.pm lib/Text/ParseWords.pm
13531           !> pod/perl.pod pod/perl5004delta.pod pod/perl5005delta.pod
13532           !> pod/perldiag.pod pod/perlembed.pod pod/perlfaq4.pod
13533           !> pod/perllocale.pod pod/perlmodlib.pod pod/perlretut.pod
13534 ____________________________________________________________________________
13535 [  8626] By: jhi                                   on 2001/01/30  21:22:11
13536         Log: Integrate with tweakery the change #8625 from mainline,
13537              the multibyte decimal separator fix ("fa_IR locale failure").
13538      Branch: maint-5.6/perl
13539            ! embedvar.h perlapi.h
13540           !> intrpvar.h perl.c perl.h sv.c util.c
13541 ____________________________________________________________________________
13542 [  8625] By: jhi                                   on 2001/01/30  20:26:33
13543         Log: Fix for the fa_IR locale failure.  The reason for the failure
13544              was that Perl was assuming the decimal separator aka the radix
13545              separator is one character.  The Farsi-Iranian locale crushed
13546              that bad assumption since there the separator is 'Momayyez',
13547              glyphwise looking somewhat like a slash, and in Unicode UTF-8
13548              encoded in two bytes, 0xd9 0xab.
13549      Branch: perl
13550            ! intrpvar.h perl.c perl.h sv.c util.c
13551 ____________________________________________________________________________
13552 [  8624] By: gsar                                  on 2001/01/30  20:17:03
13553         Log: regen_headers
13554      Branch: maint-5.6/perl
13555            ! Makefile.SH pod/perlintern.pod
13556 ____________________________________________________________________________
13557 [  8623] By: gsar                                  on 2001/01/30  19:42:34
13558         Log: backout change#7431 and its dependents (causes spurious rebuilds
13559              of autogenerated files)
13560              
13561              fix benign b.t failure
13562      Branch: maint-5.6/perl
13563            ! Makefile.SH t/lib/b.t
13564 ____________________________________________________________________________
13565 [  8622] By: jhi                                   on 2001/01/30  19:41:41
13566         Log: Microperl sync.
13567      Branch: perl
13568            ! mg.c perl.h
13569 ____________________________________________________________________________
13570 [  8621] By: gsar                                  on 2001/01/30  19:24:47
13571         Log: integrate changes#8259,8442,8444,8445,8448,8449,8451,8455
13572              from mainline
13573              
13574              Subject: podlators 1.06 released
13575              
13576              Subject: [PATCH @8436] Eliminate op_children
13577              
13578              (Replaced by #8448)  Traces of op_children (cleanup of #8442)
13579              
13580              (Replaced by #8448)  More op_children traces (cleanup of #8442).
13581              
13582              Subject: [PATCH #3 @8436] Re: Eliminate op_children
13583              Replace #8444 and #8445.
13584              
13585              Under 5.005 threads and debugging crashed in Debian 2.2 Linux/x86
13586              at the setting of the ofs_sv in new_struct_thread() as the
13587              thr->Tofs_sv (PL_ofs_sv) was still 0xabab.... (this is what
13588              uninitialized fields are, uh, initialized with),
13589              SvREFCNT_inc()ing that invited a core dump.
13590              
13591              podlators 1.07, from Russ Allbery.
13592              
13593              Subject: [PATCH] regcomp.c old feature removal
13594              From: mjd@plover.com
13595              Date: 16 Jan 2001 14:43:18 -0000 
13596              Message-ID: <20010116144318.7140.qmail@plover.com> 
13597      Branch: maint-5.6/perl
13598           +> lib/Pod/Text/Overstrike.pm
13599           !> MANIFEST bytecode.pl ext/B/B.xs ext/B/B/Asmdata.pm
13600           !> ext/B/B/Bytecode.pm ext/B/B/C.pm ext/B/B/Concise.pm
13601           !> ext/B/B/Debug.pm ext/ByteLoader/byterun.c
13602           !> ext/ByteLoader/byterun.h lib/Pod/Man.pm lib/Pod/Text/Color.pm
13603           !> lib/Pod/Text/Termcap.pm op.c op.h pod/pod2text.PL regcomp.c
13604           !> util.c
13605 ____________________________________________________________________________
13606 [  8620] By: gsar                                  on 2001/01/30  18:48:32
13607         Log: integrate changes#8243,8254,8255,8313,8314,8363,8383,8390,8416,
13608              8417,8418,8419,8424,8427,8430,8441,8563 from mainline (TODO: b.t
13609              now fails one test)
13610              
13611              Subject: [PATCH] lvalue AUTOLOAD. No, really.
13612              
13613              Subject: [PATCH] Interesting syntax idea
13614              Make opens + bareword assigns do typeglob assigns.
13615              
13616              Tests for #8254.
13617              
13618              Subject: [PATCH @8269] Continue blocks and B::Deparse
13619              Make the peephole optimizer to bypass more null ops and
13620              and rewrite the deparse handling of continue blocks.
13621              
13622              Subject: Re: [PATCH @8269] Continue blocks and B::Deparse
13623              Doc tweak on #8313.
13624              
13625              Subject: [PATCH @8344] Fix spurious GVSV OPpOUR_INTRO
13626              
13627              Subject: [PATCH @8382] Remove FileHandle/IO dependence in t/io/openpid.t
13628              
13629              Subject:  [PATCH perl@8269] Opcode.XS, fix memory leak
13630              
13631              Subject: RE: [PATCH] [ID 20001223.002] lvalues in list context
13632              Replace 10000 with RETVAL_MAX, and compute RETVAL_MAX
13633              according to the platform.
13634              
13635              Subject: [PATCH @8404] Consolidated lvalue sub changes
13636              
13637              Subject: Re: [PATCH] [ID 20001223.002] lvalues in list context
13638              
13639              Rename RETVAL_MAX to RETURN_UNLIMITED_NUMBER.
13640              
13641              Subject: B::Concise -- an improved replacement for B::Terse 
13642              
13643              The B::Terse drop-in replacement wasn't quite drop-in.
13644              
13645              The LVRET macro needed an aTHX.
13646              
13647              Use the /^Perl_/-less form of is_lvalue_sub().
13648              
13649              Subject: [PATCH @8545] [ID 20000808.005] OP_REFGEN as an lvalue
13650      Branch: maint-5.6/perl
13651           +> ext/B/B/Concise.pm
13652           !> (integrate 27 files)
13653 ____________________________________________________________________________
13654 [  8619] By: nick                                  on 2001/01/30  18:40:28
13655         Log: Integrate mainline
13656      Branch: perlio
13657           !> (integrate 40 files)
13658 ____________________________________________________________________________
13659 [  8618] By: jhi                                   on 2001/01/30  18:37:18
13660         Log: Subject: [PATCH perl@8585] protect VMS test harness from chdir switcheroo
13661              Date: Mon, 29 Jan 2001 22:51:29 -0600
13662              From: "Craig A. Berry" <craigberry@mac.com>
13663              Message-Id: <p04330101b69bef0ebab4@[172.16.52.1]>
13664      Branch: perl
13665            ! vms/test.com
13666 ____________________________________________________________________________
13667 [  8617] By: jhi                                   on 2001/01/30  18:34:53
13668         Log: Subject: [PATCH] Add missing CV flags to dump.c
13669              From: Tim Jenness <t.jenness@jach.hawaii.edu>
13670              Date: Mon, 29 Jan 2001 21:48:55 -1000 (HST)
13671              Message-ID: <Pine.LNX.4.30.0101292144280.14179-100000@lapaki.jach.hawaii.edu>
13672      Branch: perl
13673            ! dump.c
13674 ____________________________________________________________________________
13675 [  8616] By: jhi                                   on 2001/01/30  18:20:58
13676         Log: Integrate partly the change #8615 from mainline, the t/op/each.t
13677              part isn't applicable to maintperl.
13678              
13679              UTF-8 nit from Inaba Hiroto.
13680      Branch: maint-5.6/perl
13681           !> pod/perlapi.pod utf8.c
13682 ____________________________________________________________________________
13683 [  8615] By: jhi                                   on 2001/01/30  18:18:51
13684         Log: UTF-8 nit from Inaba Hiroto.
13685      Branch: perl
13686            ! pod/perlapi.pod t/op/each.t utf8.c
13687 ____________________________________________________________________________
13688 [  8614] By: jhi                                   on 2001/01/30  18:13:38
13689         Log: Integrate changes #8608,8609,8610,8611,8612,8613 from maintperl.
13690              
13691              perl's internal variables are not for public consumption,
13692              move their docs from perlapi.pod to perlintern.pod
13693              
13694              support for -Dusethreads build under HP-UX 10.20 and DCE threads
13695              library (11.0 and later have pthreads but 10.x don't)
13696              
13697              avoid uninitialized value warnings
13698              
13699              canonicalize paths when doing chdir() on windows (or Cwd::getcwd()
13700              gets weird results)
13701              
13702              perldoc nit on windows
13703              
13704              make it possible to run the tests outside the source tree
13705              (there's still a dependency on ../lib being the library
13706              location)
13707      Branch: perl
13708           !> hints/hpux.sh intrpvar.h perlapi.c pod/perlapi.pod
13709           !> pod/perlintern.pod t/base/term.t t/io/tell.t t/lib/dprof/V.pm
13710           !> t/op/flip.t thrdvar.h thread.h utils/perldoc.PL
13711           !> win32/bin/search.pl win32/vdir.h
13712 ____________________________________________________________________________
13713 [  8613] By: gsar                                  on 2001/01/30  16:39:59
13714         Log: make it possible to run the tests outside the source tree
13715              (there's still a dependency on ../lib being the library
13716              location)
13717      Branch: maint-5.6/perl
13718            ! t/base/term.t t/io/tell.t t/lib/dprof/V.pm t/op/flip.t
13719 ____________________________________________________________________________
13720 [  8612] By: gsar                                  on 2001/01/30  16:31:12
13721         Log: perldoc nit on windows
13722      Branch: maint-5.6/perl
13723            ! utils/perldoc.PL
13724 ____________________________________________________________________________
13725 [  8611] By: gsar                                  on 2001/01/30  16:22:54
13726         Log: canonicalize paths when doing chdir() on windows (or Cwd::getcwd()
13727              gets weird results)
13728      Branch: maint-5.6/perl
13729            ! win32/vdir.h
13730 ____________________________________________________________________________
13731 [  8610] By: gsar                                  on 2001/01/30  16:12:45
13732         Log: avoid uninitialized value warnings
13733      Branch: maint-5.6/perl
13734            ! win32/bin/search.pl
13735 ____________________________________________________________________________
13736 [  8609] By: gsar                                  on 2001/01/30  16:08:01
13737         Log: support for -Dusethreads build under HP-UX 10.20 and DCE threads
13738              library (11.0 and later have pthreads but 10.x don't)
13739      Branch: maint-5.6/perl
13740            ! hints/hpux.sh thread.h
13741 ____________________________________________________________________________
13742 [  8608] By: gsar                                  on 2001/01/30  15:48:55
13743         Log: perl's internal variables are not for public consumption,
13744              move their docs from perlapi.pod to perlintern.pod
13745      Branch: maint-5.6/perl
13746            ! intrpvar.h perlapi.c pod/perlapi.pod pod/perlintern.pod
13747            ! thrdvar.h
13748 ____________________________________________________________________________
13749 [  8607] By: gsar                                  on 2001/01/30  15:44:27
13750         Log: mistakenly branched perl56delta.pod, revert
13751      Branch: maint-5.6/perl
13752            - pod/perl56delta.pod
13753           !> pod/perldelta.pod
13754 ____________________________________________________________________________
13755 [  8606] By: gsar                                  on 2001/01/30  14:20:24
13756         Log: integrate changes#7984,7987,8010 from mainline (gets rid of
13757              dTHR which has been a noop for a while now, except for the
13758              compatibility definition in thread.h)
13759      Branch: maint-5.6/perl
13760           !> (integrate 45 files)
13761 ____________________________________________________________________________
13762 [  8605] By: jhi                                   on 2001/01/30  05:43:58
13763         Log: Mark the UTF-8 APIs as experimental.
13764      Branch: maint-5.6/perl
13765            ! embed.pl pod/perlapi.pod
13766 ____________________________________________________________________________
13767 [  8604] By: jhi                                   on 2001/01/30  05:38:40
13768         Log: Nits from earlier integrates.
13769      Branch: maint-5.6/perl
13770            ! lib/Carp/Heavy.pm
13771           !> sv.c
13772 ____________________________________________________________________________
13773 [  8603] By: jhi                                   on 2001/01/30  05:27:26
13774         Log: Regenerate Porting files.
13775      Branch: maint-5.6/perl
13776            ! Porting/Glossary Porting/config.sh Porting/config_H
13777 ____________________________________________________________________________
13778 [  8602] By: jhi                                   on 2001/01/30  05:14:59
13779         Log: Integrate changes #7891,8034,8078,8110,8111,8112,8277,8291,
13780              8310,8339,8447,8492,8493,8505,8525: documentation changes.
13781              
13782              Subject: Re: perlfaq style changes
13783              
13784              Subject: DOC PATCH 5.6.0: -s return value incompletely documented
13785              
13786              Subject: [PATCH] docs on NaN
13787              
13788              Subject: [patch] perlfaq7
13789              
13790              Subject: [ID 20001214.003] [PATCH bleadperl] POSIX::tmpnam() is dangerous
13791              
13792              Subject: [PATCH] Re: [ID 20001013.006] XS subs are not define()ed
13793              
13794              Subject: [PATCH] open() example in perlfunc.pod
13795              
13796              Podify README.mpeix (a new version from the web)
13797              
13798              Subject: [PATCH 5.[67].1]; as Re: [PATCH 5.6.1-TRIAL1 and @8223]; was Re: Perlbug 20000322.006 status update
13799              
13800              Subject: [PATCH] format and rewording in perlfaq.pod
13801              
13802              Subject: [PATCH] API Variable documentation   
13803              
13804              Memory management calls documentation.
13805              
13806              Subject: [PATCH: perl@8482] README.vms URL updates
13807              
13808              Subject: Minor typos in perlfaq2.pod
13809              
13810              Subject: [PATCH] pod/perlvar.pod
13811      Branch: maint-5.6/perl
13812           +> pod/perl56delta.pod
13813            ! pod/buildtoc.PL pod/perl.pod pod/perltoc.pod
13814           !> README.amiga README.epoc README.mpeix README.vms
13815           !> ext/POSIX/POSIX.pod lib/CPAN.pm lib/Carp/Heavy.pm
13816           !> lib/Win32.pod pod/perlapi.pod pod/perlfaq.pod pod/perlfaq1.pod
13817           !> pod/perlfaq2.pod pod/perlfaq6.pod pod/perlfaq7.pod
13818           !> pod/perlfunc.pod pod/perlop.pod pod/perlrequick.pod
13819           !> pod/perlvar.pod thrdvar.h
13820 ____________________________________________________________________________
13821 [  8601] By: jhi                                   on 2001/01/30  04:38:35
13822         Log: Integrate changes #8036,8096,8253 from mainline:
13823              hints changes.
13824              
13825              Subject: [ID 20001207.004] [PATCH 5.6.0 and 5.7.x] add NCR MP-RAS support
13826              Subject: [8095] HP-UX 11.00 / cc / 64bitint & 64bitall / perlio 
13827              
13828              Output the (apparent) version of gcc in Tru64.
13829      Branch: maint-5.6/perl
13830           +> ext/POSIX/hints/svr4.pl
13831           !> MANIFEST ext/POSIX/Makefile.PL hints/dec_osf.sh hints/hpux.sh
13832           !> hints/svr4.sh t/lib/bigfltpm.t
13833 ____________________________________________________________________________
13834 [  8600] By: jhi                                   on 2001/01/30  04:04:01
13835         Log: Integrate changes #7863,7868,7875,7876,7888,8384,8480 from mainline:
13836              locale fixes.
13837              
13838              sprintf() does not taint since print() does not. (7863,7875,7876,7888)
13839              
13840              Debian allows /usr/bin/locale to exist without any locales. (7868)
13841              
13842              Allow the locale test needing POSIX and the taint test
13843              needing IPC::SysV to run under 'minitest' (basically,
13844              bail out if loading the extension fails). (8384)
13845              
13846              Cleanup the locale.t output  (8480)
13847      Branch: maint-5.6/perl
13848           !> pod/perllocale.pod sv.c t/op/misc.t t/op/taint.t
13849           !> t/pragma/locale.t
13850 ____________________________________________________________________________
13851 [  8599] By: jhi                                   on 2001/01/30  03:51:04
13852         Log: Missing generated files from #8598.
13853      Branch: maint-5.6/perl
13854            ! embed.h global.sym objXSUB.h perlapi.c proto.h
13855 ____________________________________________________________________________
13856 [  8598] By: jhi                                   on 2001/01/30  03:41:54
13857         Log: Integrate change #8555 from mainline, manually integrate parts
13858              of changes 8452 and 8583.
13859              
13860              Subject: [PATCH] utf8.c documentation (8452)
13861              
13862              No point in checking the length if the pointer is bogus. (8555)
13863              
13864              Introduce bytes_from_utf8() and implement sv_eq() using it,
13865              tr/// did not handle UTF-8 ranges, \ before a raw UTF-8 character
13866              produced "Malformed UTF-8 character" warning, "\x{100}\N{CENT SIGN}"
13867              was malformed. (8583)
13868      Branch: maint-5.6/perl
13869            ! embed.pl t/lib/charnames.t t/op/tr.t toke.c
13870           !> pod/perlapi.pod sv.c utf8.c
13871 ____________________________________________________________________________
13872 [  8597] By: gsar                                  on 2001/01/30  02:37:26
13873         Log: get PERL_OBJECT build going again on windows
13874      Branch: maint-5.6/perl
13875            ! embed.h embed.pl global.sym objXSUB.h perlapi.c
13876            ! pod/perlapi.pod proto.h sv.c
13877 ____________________________________________________________________________
13878 [  8596] By: jhi                                   on 2001/01/30  02:16:17
13879         Log: Signedness nit.
13880      Branch: perl
13881            ! sv.c
13882 ____________________________________________________________________________
13883 [  8595] By: jhi                                   on 2001/01/30  02:11:07
13884         Log: EBCDIC patch for Storable, from Peter Prymmer.
13885      Branch: perl
13886            ! t/lib/st-06compat.t
13887 ____________________________________________________________________________
13888 [  8594] By: jhi                                   on 2001/01/30  01:04:48
13889         Log: Subject: [PATCH: perl@8585] yet another tweak to lib/b.t for EBCDIC
13890              From: Peter Prymmer <pvhp@forte.com>
13891              Date: Mon, 29 Jan 2001 16:51:38 -0800 (PST)
13892              Message-ID: <Pine.OSF.4.10.10101291646320.230748-100000@aspara.forte.com>
13893      Branch: perl
13894            ! t/lib/b.t
13895 ____________________________________________________________________________
13896 [  8593] By: jhi                                   on 2001/01/30  00:56:47
13897         Log: Subject: [PATCH: perl@8585] pod problems in io
13898              From: Peter Prymmer <pvhp@forte.com>
13899              Date: Mon, 29 Jan 2001 16:46:25 -0800 (PST)
13900              Message-ID: <Pine.OSF.4.10.10101291636420.230748-100000@aspara.forte.com>
13901      Branch: perl
13902            ! pod/perlapio.pod pod/perliol.pod
13903 ____________________________________________________________________________
13904 [  8592] By: jhi                                   on 2001/01/30  00:48:20
13905         Log: Integrate perlio.
13906      Branch: perl
13907           !> pod/perlapio.pod pod/perliol.pod
13908 ____________________________________________________________________________
13909 [  8591] By: nick                                  on 2001/01/29  22:02:28
13910         Log: GNU 'merge' Simon's copy of perliol.pod with version
13911              patched by Craig's patch.
13912      Branch: perlio
13913            ! pod/perliol.pod
13914 ____________________________________________________________________________
13915 [  8590] By: nick                                  on 2001/01/29  21:55:10
13916         Log: PerlIO doc tweaks from Craig A. Berry <craig.berry@psinetcs.com>
13917      Branch: perlio
13918            ! pod/perlapio.pod pod/perliol.pod
13919 ____________________________________________________________________________
13920 [  8589] By: jhi                                   on 2001/01/29  15:35:33
13921         Log: Integrate change #8586 from maint-5.6/perl.
13922              
13923              make the BOM detection code not call tell() until it has to
13924              (meant to fix esoteric compatibility issues where PL_rsfp
13925              is overridden)
13926      Branch: perl
13927           !> toke.c
13928 ____________________________________________________________________________
13929 [  8588] By: jhi                                   on 2001/01/29  15:29:11
13930         Log: Subject: MAking Solaris malloc() the default
13931              From: Lupe Christoph <lupe@lupe-christoph.de>
13932              Date: Mon, 29 Jan 2001 12:59:36 +0100
13933              Message-ID: <20010129125936.Z4830@alanya.lupe-christoph.de>
13934              
13935              The README.solaris part slightly tweaked.
13936      Branch: perl
13937            ! README.solaris hints/solaris_2.sh
13938 ____________________________________________________________________________
13939 [  8587] By: jhi                                   on 2001/01/29  15:17:34
13940         Log: Subject: [ID 20010128.003] [PATCH] perlre.pod \b buglet
13941              From: root@ak-75.mind.de
13942              Date: Sun, 28 Jan 2001 20:32:29 +0100
13943              Message-Id: <200101281932.UAA15768@ak-75.mind.de>
13944      Branch: perl
13945            ! pod/perlre.pod
13946 ____________________________________________________________________________
13947 [  8586] By: gsar                                  on 2001/01/29  13:43:44
13948         Log: make the BOM detection code not call tell() until it has to
13949              (meant to fix esoteric compatibility issues where PL_rsfp
13950              is overridden)
13951      Branch: maint-5.6/perl
13952            ! toke.c
13953 ____________________________________________________________________________
13954 [  8585] By: jhi                                   on 2001/01/28  20:05:45
13955         Log: Update Changes.
13956      Branch: perl
13957            ! Changes patchlevel.h
13958 ____________________________________________________________________________
13959 [  8584] By: jhi                                   on 2001/01/28  19:30:02
13960         Log: Integrate perlio.
13961      Branch: perl
13962           +> pod/perliol.pod
13963           !> MANIFEST pod/perlapio.pod
13964 ____________________________________________________________________________
13965 [  8583] By: jhi                                   on 2001/01/28  19:28:40
13966         Log: Patch from Inaba Hiroto:
13967              - canonical UTF-8 hash keys: if a key string for a hash is
13968              UTF8-on, try downgrade the string and use it if
13969              unicode::distinct is not in effect.
13970              For the task, I added a function bytes_from_utf8() to utf8.c.
13971              It might resemble utf8_to_bytes() but it is not convenient
13972              to the task.
13973              Made a test for it and added to t/op/each.t
13974              - Changed do_print in doio.c to apply sv_utf8_(downgrade|upgrade) to
13975              the mortal copy of the argument SV.
13976              And changed t/io/utf8.t test 18 which expects print() to
13977              upgrade its argument.
13978              - re-implement sv_eq with bytes_from_utf8()
13979              - some bug fixes
13980              - tr/// does not handle UTF8 range (\x{}-\x{})
13981              - \ before raw UTF8 character produced
13982              "Malformed UTF-8 character" warning.
13983              - "\x{100}\N{CENT SIGN}" is Malformed.
13984              Added tests for these 3.
13985              - and one silly bug (by me) with qu operator.
13986      Branch: perl
13987            ! doio.c embed.h embed.pl global.sym hv.c objXSUB.h perlapi.c
13988            ! pod/perlapi.pod proto.h sv.c t/io/utf8.t t/lib/charnames.t
13989            ! t/op/each.t t/op/tr.t t/pragma/utf8.t toke.c utf8.c
13990 ____________________________________________________________________________
13991 [  8582] By: nick                                  on 2001/01/28  19:25:04
13992         Log: Add pod/perliol.pod to MANIFEST :-(
13993      Branch: perlio
13994            ! MANIFEST
13995 ____________________________________________________________________________
13996 [  8581] By: nick                                  on 2001/01/28  19:22:40
13997         Log: PerlIO documentation. Proofing and sub-editing requested.
13998      Branch: perlio
13999            + pod/perliol.pod
14000            ! pod/perlapio.pod
14001 ____________________________________________________________________________
14002 [  8580] By: jhi                                   on 2001/01/28  05:16:25
14003         Log: Revert the change to sv_2pv() done by #8054: Someone who
14004              did SvNV_set() on a scalar that also happened to be POK,
14005              followed by sv_2pv() won't get the right coercion anymore.
14006              [Sarathy]
14007      Branch: maint-5.6/perl
14008            ! sv.c
14009 ____________________________________________________________________________
14010 [  8579] By: jhi                                   on 2001/01/28  05:15:04
14011         Log: Remove the #8084 effect: do not allow -Q to be interpreted
14012              as -&Q(), this is too much wiggle room.
14013      Branch: maint-5.6/perl
14014            ! toke.c
14015 ____________________________________________________________________________
14016 [  8578] By: jhi                                   on 2001/01/28  05:12:45
14017         Log: Needed bits of #8439 (should have been in #8576),
14018              mainly for lval substr().
14019      Branch: maint-5.6/perl
14020            ! mg.c pp.c pp_hot.c
14021 ____________________________________________________________________________
14022 [  8577] By: jhi                                   on 2001/01/28  05:02:46
14023         Log: A missing check-in.
14024      Branch: maint-5.6/perl
14025            ! utf8.c
14026 ____________________________________________________________________________
14027 [  8576] By: jhi                                   on 2001/01/28  04:26:18
14028         Log: Integrate changes #8425,8436,8439,8517 from mainline.
14029              The 8439 was not truly integrated because it had too many
14030              dependencies on the development branch and because it introduced
14031              concepts too bold for a maintenance branch (such as the qu operator).
14032              
14033              Subject: [PATCH perl@8342] -Wformat
14034              
14035              Tighten some of the UTF-8 tests a bit.
14036              
14037              More UTF-8 patches from Inaba Hiroto. (8439, but only partly)
14038              - The substr lval was still not okay.
14039              - Now pp_stringify and sv_setsv copies source's UTF8 flag
14040              even if IN_BYTE.  pp_stringify is called from fold_constants
14041              at optimization phase and "\x{100}" was made SvUTF8_off under
14042              use bytes (the bytes pragma is for "byte semantics" and not
14043              for "do not produce UTF8 data")
14044      Branch: maint-5.6/perl
14045            ! t/lib/charnames.t t/op/substr.t toke.c
14046           !> sv.c t/pragma/utf8.t
14047 ____________________________________________________________________________
14048 [  8575] By: jhi                                   on 2001/01/28  04:01:51
14049         Log: Integrate changes #8378,8379,8385,8386,8405 from mainline.
14050              
14051              Subject: One more patch for UTF8  (UTF-8 fixes for 'x' and tr////)
14052              
14053              Subject: [ID 20001230.003] UTF-8 tr still hurts
14054              
14055              Test cases for #8385 (from Simon's "torture.pl")
14056              
14057              Start fixing UTF-8 lval substr() (8405)
14058      Branch: maint-5.6/perl
14059           !> doop.c embed.h embed.pl mg.c op.c pod/perlapi.pod pp.c proto.h
14060           !> regcomp.c regexec.c t/op/substr.t t/op/tr.t toke.c utf8.c
14061 ____________________________________________________________________________
14062 [  8574] By: jhi                                   on 2001/01/28  03:09:06
14063         Log: Integrate changes #8328,8329,8330,8331,8332,8341,8343,8377
14064              from mainline.
14065              
14066              UTF-8 cleanup.
14067              
14068              Subject: [PATCH perl@8327] strings with \x{..} in the middle are corrupted 
14069              
14070              "\x{FF}\xFF" was broken.
14071              
14072              Tests for #8329 and #8330.
14073              
14074              Add a note about EBCDIC versus UTF-8 to a potential problem spot.
14075              
14076              IRIX compiler noticed that the bof initialization might be
14077              bypassed by control flow.
14078              
14079              Make explicit our assumption that (for now) "\x{80}" produces UTF-8.
14080      Branch: maint-5.6/perl
14081           !> doop.c op.c pp.c pp_ctl.c pp_hot.c pp_sys.c regcomp.c
14082           !> regexec.c sv.c t/op/bop.t toke.c utf8.c
14083 ____________________________________________________________________________
14084 [  8573] By: jhi                                   on 2001/01/28  02:06:12
14085         Log: Retract #8552.
14086      Branch: perl
14087            ! lib/Text/Wrap.pm t/lib/textwrap.t
14088 ____________________________________________________________________________
14089 [  8572] By: jhi                                   on 2001/01/28  02:04:49
14090         Log: Integrate changes #8267,8272[perlio],8274,8298,8300,8303,
14091              8305,8323,8324 from mainline.  The 8267,8272, and 8298 were
14092              not really integrated but instead salvaged by hand
14093              (they had too many dependencies on the development release
14094              to be cleanly integratable).
14095              
14096              Subject: more UTF8 test suites and an UTF8 patch
14097              
14098              Tweak for MULTIPLICITY/USE_PERLIO
14099              
14100              Signedness nit.
14101              
14102              Turn SvUTF8 off if not required in pp_chr and pp_stringify.
14103              
14104              Use the UTF8_XXX macros in is_utf8_char().
14105              
14106              Rewrite pp_concat() in terms of sv_catsv().  The . operator
14107              should now be UTF-8-proof.
14108              
14109              Subject: [PATCH perl@8269] scanning two hex-constants
14110              fails on EBCDIC environment (script length.t)
14111              
14112              Add some Unicode chop() tests.
14113      Branch: maint-5.6/perl
14114            ! doop.c mg.c pp.c pp_hot.c toke.c utf8.c
14115           !> sv.c t/op/chop.t utf8.h
14116 ____________________________________________________________________________
14117 [  8571] By: jhi                                   on 2001/01/28  00:35:59
14118         Log: Integrate changes #8090,8093[perlio,only the sv.c tweak],
14119              8245,8247,8248,8249,8250,8251,8260,8263,8264,8265 from mainline.
14120              
14121              Subject: [PATCH] Re: Breadperl & Tk (sv_utf8_upgrade fixes)
14122              
14123              The maxiters upper limit sanity check (guarding against
14124              non-progress) assumed bytes instead of characters in s///
14125              and split().
14126              
14127              Signedness nit.
14128              
14129              sv_catsv() rewrite (8248,8249,8251,8260,8263,8264,8265)
14130              join() should now be UTF-8-proof.
14131              
14132              More split // UTF-8 tests. (8250)
14133      Branch: maint-5.6/perl
14134           !> doop.c hv.c pp.c pp_hot.c sv.c t/op/join.t utf8.c utf8.h
14135           !> util.c
14136 ____________________________________________________________________________
14137 [  8570] By: jhi                                   on 2001/01/27  22:15:46
14138         Log: Integrate changes #7941,7943,7944,7958,7967,7995,7996,7998,
14139              8004,8005,8023,8024,8028,8030,8031,8033,8039,8042,8052[perlio],
14140              8053[perlio],8054[perlio,+sv.c(-PerlIO_isutf8),+require.t],
14141              8084,8204,8244,8333 from mainline.
14142              
14143              For -Q where Q might be a one-letter sub name one does no more
14144              get a warning about an unknown filetest (7941,7943,7944,8084).
14145              
14146              Subject: Re: [ID 20001130.011] expression parsing bug ?
14147              
14148              Make uv_to_utf8() to zero-terminate its output buffer.
14149              
14150              Split off t/op/length.t (7995)
14151              
14152              Split off t/op/utf8decode.t (7996)
14153              
14154              Remove an unnecessary 'use utf8' from the utf8.t (7998)
14155              
14156              Split off t/op/concat.t (8004)
14157              
14158              Split off t/op/ver.t (8005)
14159              
14160              Document utf8_length(), utf8_distance(), and utf8_hop().
14161              
14162              Document utf8_to_uv() better.
14163              
14164              Introduce macros for UTF8 decoding (8028,8033).
14165              
14166              Add test for reverse() (8030,8031).
14167              
14168              Subject: [PATCH] Re: ebcdic <-> ascii tables interjected in uv <-> utf8 considered harmful (8039,8333)
14169              
14170              Do not return the Unicode replacement character    on UTF-8
14171              decoding failure.
14172              
14173              Typo/thinko in S_scan_const() - seeing high bit sets has_utf8
14174              not this_utf8 i.e. the output string has one, but don't mess
14175              with source assumption. (8052,8053)
14176              
14177              Tweak t/comp/require.t to add a 'use bytes' to permit its dubious
14178              writing of BOM to a non-utf8 stream.  Fix SvPVutf8() - sv_2pv()
14179              was not expecting to be called with something that was already
14180              SvPOK() - (we just fossiked with SvUTF8 bit). Fix that and also
14181              just use the SvPV macro in sv_2pvutf8() to avoid the issue/overhead.
14182              (8054)
14183              
14184              Recode the naughty binary bytes in utf8decode.t using the \xHH.
14185              
14186              Make some panic messages a bit more logical.
14187      Branch: maint-5.6/perl
14188           +> t/op/concat.t t/op/length.t t/op/reverse.t t/op/utf8decode.t
14189           !> MANIFEST doop.c embed.pl lib/ExtUtils/Liblist.pm op.c
14190           !> pod/perlapi.pod pod/perldiag.pod pp.c pp_hot.c regcomp.c
14191           !> regexec.c sv.c t/comp/require.t t/op/misc.t t/op/ver.t
14192           !> t/pragma/utf8.t t/pragma/warn/toke t/pragma/warn/utf8 toke.c
14193           !> utf8.c utf8.h
14194 ____________________________________________________________________________
14195 [  8569] By: jhi                                   on 2001/01/27  19:16:43
14196         Log: Integrate changes #7750 from perlio and #8566 from mainline.
14197      Branch: maint-5.6/perl
14198           !> regexec.c sv.c
14199 ____________________________________________________________________________
14200 [  8568] By: jhi                                   on 2001/01/27  18:06:51
14201         Log: Integrate changes #7355[-doio.c],7691,7744,7753[perlio],
14202              7783,7790[perlio],7869,7871,7872,7911,7916,7932,
14203              7935[-perlio.c],7936,7959,7965 from mainline.
14204              
14205              Change the "big byte" error message to "Wide character".
14206              (7355, the croak-if-wide-chars-in-print part ignored)
14207              
14208              Use UINT64_C().
14209              
14210              Introduce Perl_utf8_length().
14211              
14212              diff -se shows these as different (7753, forgotten check-ins)
14213              
14214              Subject: [PATCH] doop.c - UTF8 tr///
14215              
14216              If we use (aTHX_ ...) then put Perl_ on the front.
14217              
14218              Make utf8_length() and utf8_distance() to be less forgiving
14219              about bad UTF-8.
14220              
14221              Test line numbers are different with utf8.
14222              
14223              No need to scan till infinity, 13 is enough. (7872,7911)
14224              
14225              Subject: [PATCH] Tokeniser debugging
14226              
14227              Subject: Re: question about retlen in utf8.c:Perl_utf8_to_uv()
14228              
14229              Subject: [PATCH perl@7930] toke.c perlio.c -Wformat nits (only toke.c)
14230              
14231              Be more careful in Perl_sv_utf8_downgrade().
14232              
14233              Use DO_UTF8().
14234              
14235              Raw zero bytes in text files confuse at least GNU patch 2.1.
14236      Branch: maint-5.6/perl
14237           !> doop.c embed.h embed.pl global.sym handy.h objXSUB.h op.c
14238           !> perl.c perl.h perlapi.c pod/perlapi.pod pod/perldiag.pod
14239           !> pod/perlrun.pod proto.h scope.h sv.c t/op/re_tests
14240           !> t/pragma/utf8.t toke.c utf8.c utf8.h
14241 ____________________________________________________________________________
14242 [  8567] By: nick                                  on 2001/01/27  11:10:38
14243         Log: Integrate mainline
14244      Branch: perlio
14245           !> Changes README.os390 embed.h embed.pl op.c patchlevel.h pp.c
14246           !> proto.h regexec.c sv.c t/lib/1_compile.t t/lib/b.t
14247           !> t/lib/st-06compat.t t/pragma/overload.t t/pragma/sub_lval.t
14248           !> toke.c
14249 ____________________________________________________________________________
14250 [  8566] By: jhi                                   on 2001/01/27  06:22:48
14251         Log: More documentation for the regexp context stack.
14252      Branch: perl
14253            ! regexec.c
14254 ____________________________________________________________________________
14255 [  8565] By: jhi                                   on 2001/01/27  05:21:57
14256         Log: Update Changes.
14257      Branch: perl
14258            ! Changes patchlevel.h
14259 ____________________________________________________________________________
14260 [  8564] By: jhi                                   on 2001/01/27  04:44:04
14261         Log: Threadedness patch for #8562 from Doug MacEachern.
14262      Branch: perl
14263            ! toke.c
14264 ____________________________________________________________________________
14265 [  8563] By: jhi                                   on 2001/01/27  04:26:24
14266         Log: Subject: [PATCH @8545] [ID 20000808.005] OP_REFGEN as an lvalue
14267              From: Stephen McCamant <smcc@CSUA.Berkeley.EDU>
14268              Date: Thu, 25 Jan 2001 01:17:21 -0800 (PST)
14269              Message-ID: <14959.59703.507462.978833@soda.csua.berkeley.edu>
14270      Branch: perl
14271            ! op.c
14272 ____________________________________________________________________________
14273 [  8562] By: jhi                                   on 2001/01/27  04:20:30
14274         Log: Subject: Re: Announce : Tokener reporting patch
14275              From: Simon Cozens <simon@cozens.net>
14276              Date: Mon, 22 Jan 2001 02:17:22 +0000
14277              Message-ID: <20010122021722.A9334@pembro26.pmb.ox.ac.uk>
14278      Branch: perl
14279            ! embed.h embed.pl proto.h toke.c
14280 ____________________________________________________________________________
14281 [  8561] By: jhi                                   on 2001/01/27  04:17:24
14282         Log: Forgot from #8545.  Oops.
14283      Branch: perl
14284            ! pp.c t/pragma/overload.t
14285 ____________________________________________________________________________
14286 [  8560] By: jhi                                   on 2001/01/27  03:01:47
14287         Log: A better module compilation test, use MANIFEST as suggested
14288              by Spider.
14289      Branch: perl
14290            ! t/lib/1_compile.t
14291 ____________________________________________________________________________
14292 [  8559] By: jhi                                   on 2001/01/27  02:50:48
14293         Log: Subject: [PATCH: perl@8531] EBCDIC cleanup for B test
14294              From: Peter Prymmer <pvhp@forte.com>
14295              Date: Fri, 26 Jan 2001 16:38:08 -0800 (PST)
14296              Message-ID: <Pine.OSF.4.10.10101261635400.14820-100000@aspara.forte.com>
14297      Branch: perl
14298            ! t/lib/b.t
14299 ____________________________________________________________________________
14300 [  8558] By: jhi                                   on 2001/01/27  02:27:05
14301         Log: Subject: [PATCH: perl@8531] EBCDIC branch for pragma/sub-lval.t
14302              From: Peter Prymmer <pvhp@forte.com>
14303              Date: Fri, 26 Jan 2001 16:05:11 -0800 (PST)
14304              Message-ID: <Pine.OSF.4.10.10101261603460.14820-100000@aspara.forte.com>
14305      Branch: perl
14306            ! t/pragma/sub_lval.t
14307 ____________________________________________________________________________
14308 [  8557] By: jhi                                   on 2001/01/27  02:26:03
14309         Log: Subject: [PATCH: perl@8531] a peek at uuencoded EBCDIC (st-06compat.t)
14310              From: Peter Prymmer <pvhp@forte.com>
14311              Date: Fri, 26 Jan 2001 14:47:46 -0800 (PST)
14312              Message-ID: <Pine.OSF.4.10.10101261443561.14820-100000@aspara.forte.com>
14313      Branch: perl
14314            ! t/lib/st-06compat.t
14315 ____________________________________________________________________________
14316 [  8556] By: jhi                                   on 2001/01/27  02:24:33
14317         Log: Subject: [PATCH: perl@8531] minor update to README.os390
14318              From: Peter Prymmer <pvhp@forte.com>
14319              Date: Fri, 26 Jan 2001 14:33:27 -0800 (PST)
14320              Message-ID: <Pine.OSF.4.10.10101261425560.14820-100000@aspara.forte.com>
14321      Branch: perl
14322            ! README.os390
14323 ____________________________________________________________________________
14324 [  8555] By: jhi                                   on 2001/01/27  00:35:47
14325         Log: No point in checking the length before we know whether the pointer
14326              is bogus or not, fixes Abigail's odbm failures in Linux.
14327      Branch: perl
14328            ! sv.c
14329 ____________________________________________________________________________
14330 [  8554] By: nick                                  on 2001/01/26  19:01:31
14331         Log: Integrate mainline
14332      Branch: perlio
14333           !> lib/Text/Wrap.pm t/lib/textwrap.t
14334 ____________________________________________________________________________
14335 [  8553] By: jhi                                   on 2001/01/26  15:19:39
14336         Log: Integrate change #7792 from perlio (multiplicity fix),
14337              fix the AV leak in regex DEBUGGING (tiny part of the
14338              polymorphic regexp patch #8143).
14339      Branch: maint-5.6/perl
14340            ! regcomp.c
14341           !> scope.h
14342 ____________________________________________________________________________
14343 [  8552] By: jhi                                   on 2001/01/26  15:03:23
14344         Log: Subject: [PATCH Text::Wrap 2000.06292219] Spurious leading whitespace
14345              From: Michael G Schwern <schwern@pobox.com>
14346              Date: Fri, 26 Jan 2001 09:28:31 -0500
14347              Message-ID: <20010126092831.A15328@blackrider.aocn.com>
14348      Branch: perl
14349            ! lib/Text/Wrap.pm t/lib/textwrap.t
14350 ____________________________________________________________________________
14351 [  8551] By: jhi                                   on 2001/01/26  02:33:19
14352         Log: Integrate changes #7760,7815,7870,7873,7874,7877,7878,7879,7881,
14353              7937,7938,7939,7940,7968,7969,8403,8414,8510 from mainline.
14354              
14355              Subject: [PATCH 5.7.0] The first step in removing recursion from the REx engine
14356              
14357              Subject: [PATCH 5.7.0] Overeager visited-positions optimizations
14358              
14359              Message nit.
14360              
14361              BOUND regex opcodes (\b, \B) could try to scan zero length UTF-8.
14362              
14363              Debug dump of ANYOFUTF8 was garbage (data from ANYOF).
14364              
14365              (the cleanup of unused submatches in regtry() and regcppop())
14366              
14367              Fix for 20001130.008 and 20001130.010, the PL_regnpar wasn't
14368              stored and restored, and thusly was trounced by the utf8 swash
14369              routines.
14370              
14371              use utf8 not required to use \x{}.
14372              
14373              Removed two more tests that make no sense in UTF-8 since the test
14374              data is not in UTF-8.
14375              
14376              Get the three different space character classes right under utf8.
14377              
14378              Implement ANYOFUTF8 regprop() dumping.
14379              
14380              Subject: Re: [ID 20001029.005] Regex error: "cd. (A. Tw)" !~ /\((\w\. \w+)\)/
14381              
14382              Document the regex context pushing/popping a bit better.
14383      Branch: maint-5.6/perl
14384           +> lib/unicode/Is/Blank.pl lib/unicode/Is/SpacePerl.pl
14385           !> MANIFEST lib/unicode/mktables.PL pod/perlre.pod regcomp.c
14386           !> regexec.c scope.h t/op/pat.t t/op/re_tests t/op/regexp.t
14387           !> t/op/regmesg.t utf8.c
14388 ____________________________________________________________________________
14389 [  8550] By: nick                                  on 2001/01/25  19:42:30
14390         Log: Integrate mainline
14391      Branch: perlio
14392           !> Makefile.SH README.os390 gv.c hints/os390.sh installperl
14393           !> lib/Math/BigFloat.pm lib/Math/BigInt.pm lib/overload.pm perl.h
14394           !> pod/perlguts.pod t/lib/bigfloat.t t/lib/bigfltpm.t
14395           !> t/lib/bigint.t t/lib/bigintpm.t
14396 ____________________________________________________________________________
14397 [  8549] By: jhi                                   on 2001/01/25  15:22:28
14398         Log: Undo 6475: { use utf8; chr(128..255) } is better off producing bytes.
14399      Branch: maint-5.6/perl
14400            ! pod/perlfunc.pod pp.c t/pragma/utf8.t
14401 ____________________________________________________________________________
14402 [  8548] By: jhi                                   on 2001/01/25  15:02:55
14403         Log: Integrate changes #7997,8063,8492,8547 from mainline.
14404              
14405              Subject: Re: STRLEN - what?
14406              
14407              Subject: [PATCH] perlguts.pod
14408              
14409              Memory management calls documentation.
14410              
14411              Layout using tabulator is not a good idea in a pod.
14412      Branch: maint-5.6/perl
14413           !> pod/perlguts.pod
14414 ____________________________________________________________________________
14415 [  8547] By: jhi                                   on 2001/01/25  14:49:05
14416         Log: Layout using tabulator is not a good idea in a pod.
14417      Branch: perl
14418            ! pod/perlguts.pod
14419 ____________________________________________________________________________
14420 [  8546] By: jhi                                   on 2001/01/25  14:31:12
14421         Log: Integrate changes #8188,8189,8208,8209,8210,8212,8374,8388
14422              from mainline.
14423              
14424              Subject: [DOC PATCH: perl@7953] update list of lang. sensitive editors/IDES
14425              
14426              Subject: [DOC PATCH: perl@8150, 5.6.1-TRIAL1] update list of lang. sensitive editors/IDES
14427              
14428              More Win32 editor/IDE/shell hints.
14429              
14430              More Win32 Perling.
14431              
14432              Yet another editor edit.
14433              
14434              Edit edit edit.
14435              
14436              IDE/editor section tweaking.
14437              
14438              Few more IDE/editor nits from p5p.
14439      Branch: maint-5.6/perl
14440           !> pod/perlfaq3.pod
14441 ____________________________________________________________________________
14442 [  8545] By: jhi                                   on 2001/01/25  04:16:32
14443         Log: Subject: [PATCH 5.7.0] overload int()
14444              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
14445              Date: Wed, 24 Jan 2001 19:06:57 -0500
14446              Message-ID: <20010124190657.A8512@math.ohio-state.edu>
14447      Branch: perl
14448            ! gv.c lib/Math/BigFloat.pm lib/Math/BigInt.pm lib/overload.pm
14449            ! perl.h t/lib/bigfloat.t t/lib/bigfltpm.t t/lib/bigint.t
14450            ! t/lib/bigintpm.t
14451 ____________________________________________________________________________
14452 [  8544] By: jhi                                   on 2001/01/25  04:15:11
14453         Log: Subject: [PATCH: perl@8506]completion and docs for dynamic loading on OS/390
14454              From: Peter Prymmer <pvhp@forte.com>
14455              Date: Wed, 24 Jan 2001 17:17:14 -0800 (PST)
14456              Message-ID: <Pine.OSF.4.10.10101241706120.411912-100000@aspara.forte.com>
14457      Branch: perl
14458            ! Makefile.SH README.os390 hints/os390.sh installperl
14459 ____________________________________________________________________________
14460 [  8543] By: jhi                                   on 2001/01/25  03:52:08
14461         Log: Integrate change #8462,8469 from mainline.
14462              
14463              In VMS Perl subversion (perl -V) is undef.
14464      Branch: maint-5.6/perl
14465           !> configure.com
14466 ____________________________________________________________________________
14467 [  8542] By: jhi                                   on 2001/01/25  03:44:55
14468         Log: Integrate changes #7835,7850,8315,8316 from mainline.
14469              
14470              Solaris hints.
14471      Branch: maint-5.6/perl
14472           !> hints/solaris_2.sh
14473 ____________________________________________________________________________
14474 [  8541] By: jhi                                   on 2001/01/25  03:39:28
14475         Log: Integrate #8336 from mainline.
14476      Branch: maint-5.6/perl
14477           !> hv.c
14478 ____________________________________________________________________________
14479 [  8540] By: jhi                                   on 2001/01/25  03:23:50
14480         Log: Retract #8539.
14481      Branch: maint-5.6/perl
14482            ! pod/perlfaq3.pod
14483 ____________________________________________________________________________
14484 [  8539] By: jhi                                   on 2001/01/25  03:21:55
14485         Log: (Retracted by #5940.)
14486      Branch: maint-5.6/perl
14487            ! pod/perlfaq3.pod
14488 ____________________________________________________________________________
14489 [  8538] By: jhi                                   on 2001/01/25  03:14:07
14490         Log: Subject: [re-patch: 5.6.1-TRIAL1] was Re: [PATCH 5.6.1-TRIAL1]VMS buildpatches
14491              From: Peter Prymmer <pvhp@forte.com>
14492              Date: Mon, 18 Dec 2000 13:10:35 -0800 (PST)
14493              Message-ID: <Pine.OSF.4.10.10012181249310.410192-100000@aspara.forte.com>
14494              
14495              The VMS bits.
14496      Branch: maint-5.6/perl
14497            ! configure.com vms/descrip_mms.template
14498 ____________________________________________________________________________
14499 [  8537] By: jhi                                   on 2001/01/25  03:06:09
14500         Log: Integrate #7710,7824,7973 from mainline.
14501      Branch: maint-5.6/perl
14502           !> Configure Porting/Glossary Porting/config.sh Porting/config_H
14503           !> config_h.SH configure.com epoc/config.sh hints/aix.sh malloc.c
14504           !> regcomp.c sv.c vos/config.alpha.def vos/config.alpha.h
14505           !> vos/config.ga.def vos/config.ga.h win32/config.bc
14506           !> win32/config.gc win32/config.vc
14507 ____________________________________________________________________________
14508 [  8536] By: jhi                                   on 2001/01/24  13:50:20
14509         Log: Revert the edits made by me so far to the 5.6 branch since
14510              the TRIAL1 since I did edits when I should have been using
14511              integrates.  Bad programmer.   (Will integrate them properly later.)
14512              Undoes #8347, #8349, #8350, #8351, #8353, #8355, #8376, #8463, #8470.
14513              The #8353 will not be reapplied at least for now since
14514              the UTF-8 hash keys need more thinking.
14515              (The patches #8347, #8354, #8454, #8473 were okay since they
14516              were original edits made specifically for the 5.6.1-TRIAL1.)
14517      Branch: maint-5.6/perl
14518            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
14519            ! config_h.SH configure.com embed.pl epoc/config.sh hints/aix.sh
14520            ! hints/solaris_2.sh hv.c hv.h malloc.c perlapi.c
14521            ! pod/perlapi.pod pod/perlfaq3.pod proto.h regcomp.c sv.c
14522            ! t/op/each.t vms/descrip_mms.template vos/config.alpha.def
14523            ! vos/config.alpha.h vos/config.ga.def vos/config.ga.h
14524            ! win32/config.bc win32/config.gc win32/config.vc
14525 ____________________________________________________________________________
14526 [  8535] By: bailey                                on 2001/01/24  06:37:02
14527         Log: SYN SYN
14528      Branch: vmsperl
14529           +> (branch 26 files)
14530           !> (integrate 130 files)
14531 ____________________________________________________________________________
14532 [  8534] By: nick                                  on 2001/01/23  19:30:57
14533         Log: Integrate mainline.
14534      Branch: perlio
14535           !> Changes Configure Porting/Glossary Porting/config.sh
14536           !> Porting/config_H embed.h embed.pl ext/Encode/compile
14537           !> ext/Opcode/Opcode.xs ext/Opcode/Safe.pm installperl objXSUB.h
14538           !> patchlevel.h perlapi.c perly.y pod/perlfunc.pod
14539           !> pod/perlvar.pod proto.h t/lib/1_compile.t
14540 ____________________________________________________________________________
14541 [  8533] By: jhi                                   on 2001/01/23  16:15:46
14542         Log: Forgotten from #8501.
14543      Branch: perl
14544            ! Porting/Glossary Porting/config.sh Porting/config_H
14545 ____________________________________________________________________________
14546 [  8532] By: jhi                                   on 2001/01/23  16:13:27
14547         Log: Subject: RE: [PATCH perl@8269] Corrections for Perl_yylex_r (used by a reentrant parser as Bison) 
14548              From: "Roca, Ignasi" <ignasi.roca@fujitsu.siemens.es>
14549              Date: Mon, 22 Jan 2001 17:51:58 +0100
14550              Message-ID: <5930DC161690D21196670090271575470397E915@madt009a.siemens.es>
14551      Branch: perl
14552            ! embed.h embed.pl objXSUB.h perlapi.c perly.y proto.h
14553 ____________________________________________________________________________
14554 [  8531] By: jhi                                   on 2001/01/23  15:46:01
14555         Log: Update Changes.
14556      Branch: perl
14557            ! Changes patchlevel.h
14558 ____________________________________________________________________________
14559 [  8530] By: jhi                                   on 2001/01/23  15:38:39
14560         Log: De-cut-and-pasto.
14561      Branch: perl
14562            ! t/lib/1_compile.t
14563 ____________________________________________________________________________
14564 [  8529] By: jhi                                   on 2001/01/23  15:11:04
14565         Log: Document the mkdir trailing slashes case.
14566      Branch: perl
14567            ! pod/perlfunc.pod
14568 ____________________________________________________________________________
14569 [  8528] By: jhi                                   on 2001/01/23  15:08:28
14570         Log: lib/lib.pm is arch dependent, and lib/lib_pm.PL shouldn't
14571              get installed:
14572              
14573              Subject: lib/lib.pm
14574              From: <abigail@foad.org>
14575              Date: Mon, 28 Aug 2000 20:35:08 -0400
14576              Message-ID: <20000829003508.21281.qmail@foad.org>
14577      Branch: perl
14578            ! installperl
14579 ____________________________________________________________________________
14580 [  8527] By: jhi                                   on 2001/01/23  14:44:04
14581         Log: Metaconfig unit change for #8526.
14582      Branch: metaconfig
14583            ! U/threads/archname.U
14584 ____________________________________________________________________________
14585 [  8526] By: jhi                                   on 2001/01/23  14:43:19
14586         Log: Attach -perlio to the archname if so selected.
14587      Branch: perl
14588            ! Configure
14589 ____________________________________________________________________________
14590 [  8525] By: jhi                                   on 2001/01/23  14:24:01
14591         Log: Subject: [PATCH] pod/perlvar.pod
14592              From: abigail@foad.org
14593              Date: Tue, 23 Jan 2001 01:41:10 +0100
14594              Message-ID: <20010123004110.22259.qmail@foad.org>
14595      Branch: perl
14596            ! pod/perlvar.pod
14597 ____________________________________________________________________________
14598 [  8524] By: jhi                                   on 2001/01/23  14:22:32
14599         Log: A bug introduced in #8217 (the undefined variable in the
14600              lib/safe1_t #3) fixed, by Charles Lane:
14601              
14602              The earlier patch made it so that stuff running in Safe
14603              compartments could do a "caller" and see "main".  That
14604              little change in name is done right before the code in
14605              the compartment is run, and apparantly the parser
14606              was picking up the stash name before it got changed.
14607              
14608              (why it was threaded vs. unthreaded Perl that was sensitive to this
14609              I still don't know...and it probably doesn't matter).
14610              
14611              I tryed removing the stash name-change and saw that threaded Perl
14612              did indeed pass the lib/safe1.t tests.
14613              
14614              So here's a patch; a routine (_safe_pkg_prep) is added to Opcode to
14615              do the name change (and to connect _ in the compartment to the global
14616              _) which is removed from _safe_call_sv.   Then Safe.pm is modified
14617              to call _safe_pkg_prep when creating a new compartment.
14618              
14619              Passes all tests with threaded perl on linux; passes all tests
14620              with unthreaded perl on VMS.
14621              
14622              At some point I'll probably want to revisit Safe and Opcode to
14623              provide more sensible handling of global variables...and to get
14624              formats working in Safe compartments, which they don't do currently.
14625      Branch: perl
14626            ! ext/Opcode/Opcode.xs ext/Opcode/Safe.pm
14627 ____________________________________________________________________________
14628 [  8523] By: jhi                                   on 2001/01/23  14:11:58
14629         Log: Also the lib/Thread.pm itself needs to be ignored if
14630              the Thread extension hasn't been built.
14631      Branch: perl
14632            ! t/lib/1_compile.t
14633 ____________________________________________________________________________
14634 [  8522] By: jhi                                   on 2001/01/23  13:51:28
14635         Log: print() instead of warn() so that stderr doesn't get
14636              unncessarily polluted.
14637      Branch: perl
14638            ! ext/Encode/compile
14639 ____________________________________________________________________________
14640 [  8521] By: jhi                                   on 2001/01/23  13:49:48
14641         Log: Integrate perlio.
14642      Branch: perl
14643           !> ext/Encode/Encode.xs ext/Encode/Makefile.PL ext/Encode/compile
14644           !> ext/Encode/encode.h
14645 ____________________________________________________________________________
14646 [  8520] By: nick                                  on 2001/01/22  21:44:00
14647         Log: More messing with Encode:
14648              Extra fields in header to allow multiple names and to record
14649              other things "compile" knows.
14650              Re-organise compile to factor out common output routines.
14651      Branch: perlio
14652            ! ext/Encode/Encode.xs ext/Encode/compile ext/Encode/encode.h
14653 ____________________________________________________________________________
14654 [  8519] By: nick                                  on 2001/01/22  20:33:50
14655         Log: Change file-of-files command line from -F to -f to avoid case issues on VMS.
14656      Branch: perlio
14657            ! ext/Encode/Makefile.PL ext/Encode/compile
14658 ____________________________________________________________________________
14659 [  8518] By: nick                                  on 2001/01/22  20:28:13
14660         Log: Integrate mainline
14661      Branch: perlio
14662           !> MANIFEST configure.com epoc/config.sh pp_sys.c regexec.c sv.c
14663           !> vos/config.alpha.def vos/config.alpha.h
14664 ____________________________________________________________________________
14665 [  8517] By: jhi                                   on 2001/01/22  15:37:17
14666         Log: Add sv_force_normal() to sv_utf8_downgrade() as suggested
14667              by Inaba Hiroto.
14668      Branch: perl
14669            ! sv.c
14670 ____________________________________________________________________________
14671 [  8516] By: jhi                                   on 2001/01/22  14:55:15
14672         Log: More SIG_SIZE fixes.
14673      Branch: perl
14674            ! epoc/config.sh vos/config.alpha.def vos/config.alpha.h
14675 ____________________________________________________________________________
14676 [  8515] By: jhi                                   on 2001/01/22  14:50:27
14677         Log: Subject: [PATCH perl@8506] typo in last week's configure.com frenzy
14678              From: "Craig A. Berry" <craigberry@mac.com>
14679              Date: Mon, 22 Jan 2001 00:42:24 -0600
14680              Message-Id: <p04330103b6917f35375b@[172.16.52.1]>
14681      Branch: perl
14682            ! configure.com
14683 ____________________________________________________________________________
14684 [  8514] By: jhi                                   on 2001/01/22  14:31:17
14685         Log: Subject: [PATCH perl@8506] VMS catches up with change #8501
14686              From: "Craig A. Berry" <craigberry@mac.com>
14687              Date: Sun, 21 Jan 2001 23:03:25 -0600
14688              Message-Id: <p04330101b691596f577f@[172.16.52.1]>
14689      Branch: perl
14690            ! configure.com
14691 ____________________________________________________________________________
14692 [  8513] By: jhi                                   on 2001/01/22  14:14:00
14693         Log: Add the .ucm encoding tables to the MANIFEST.
14694      Branch: perl
14695            ! MANIFEST
14696 ____________________________________________________________________________
14697 [  8512] By: jhi                                   on 2001/01/22  13:43:33
14698         Log: Integrate perlio.
14699      Branch: perl
14700           +> ext/Encode/Encode/ascii.ucm ext/Encode/Encode/cp1047.ucm
14701           +> ext/Encode/Encode/cp1250.ucm ext/Encode/Encode/cp37.ucm
14702           +> ext/Encode/Encode/dingbats.ucm ext/Encode/Encode/iso8859-1.ucm
14703           +> ext/Encode/Encode/iso8859-10.ucm
14704           +> ext/Encode/Encode/iso8859-13.ucm
14705           +> ext/Encode/Encode/iso8859-14.ucm
14706           +> ext/Encode/Encode/iso8859-15.ucm
14707           +> ext/Encode/Encode/iso8859-16.ucm
14708           +> ext/Encode/Encode/iso8859-2.ucm
14709           +> ext/Encode/Encode/iso8859-3.ucm
14710           +> ext/Encode/Encode/iso8859-4.ucm
14711           +> ext/Encode/Encode/iso8859-5.ucm
14712           +> ext/Encode/Encode/iso8859-6.ucm
14713           +> ext/Encode/Encode/iso8859-7.ucm
14714           +> ext/Encode/Encode/iso8859-8.ucm
14715           +> ext/Encode/Encode/iso8859-9.ucm ext/Encode/Encode/posix-bc.ucm
14716           +> ext/Encode/Encode/symbol.ucm
14717           !> ext/Encode/Makefile.PL ext/Encode/compile lib/open.pm perlio.c
14718           !> perliol.h
14719 ____________________________________________________________________________
14720 [  8511] By: nick                                  on 2001/01/21  23:44:47
14721         Log: Make "real" layers of ":utf8" and ":raw".
14722              So now PERLIO=utf8 perl ...
14723              does what Andreas wanted.
14724              Fix arg passing in open.pm (still have a Carp issue).
14725      Branch: perlio
14726            ! lib/open.pm perlio.c perliol.h
14727 ____________________________________________________________________________
14728 [  8510] By: jhi                                   on 2001/01/21  22:56:53
14729         Log: Document the regex context pushing/popping a bit better.
14730      Branch: perl
14731            ! regexec.c
14732 ____________________________________________________________________________
14733 [  8509] By: jhi                                   on 2001/01/21  22:55:44
14734         Log: Tweak the mkdir trailing slash code some more.
14735              
14736              TO DO: the same handling should probably be done for
14737              all the other filesystem functions that can have directories
14738              as their arguments.
14739      Branch: perl
14740            ! pp_sys.c
14741 ____________________________________________________________________________
14742 [  8508] By: nick                                  on 2001/01/21  21:37:43
14743         Log: Switch "compiled in" encodings to .ucm format.
14744              (Leave others as .enc till we can run-time load .ucm,
14745              or find some other way to load them.)
14746      Branch: perlio
14747            + ext/Encode/Encode/ascii.ucm ext/Encode/Encode/cp1047.ucm
14748            + ext/Encode/Encode/cp1250.ucm ext/Encode/Encode/cp37.ucm
14749            + ext/Encode/Encode/dingbats.ucm ext/Encode/Encode/iso8859-1.ucm
14750            + ext/Encode/Encode/iso8859-10.ucm
14751            + ext/Encode/Encode/iso8859-13.ucm
14752            + ext/Encode/Encode/iso8859-14.ucm
14753            + ext/Encode/Encode/iso8859-15.ucm
14754            + ext/Encode/Encode/iso8859-16.ucm
14755            + ext/Encode/Encode/iso8859-2.ucm
14756            + ext/Encode/Encode/iso8859-3.ucm
14757            + ext/Encode/Encode/iso8859-4.ucm
14758            + ext/Encode/Encode/iso8859-5.ucm
14759            + ext/Encode/Encode/iso8859-6.ucm
14760            + ext/Encode/Encode/iso8859-7.ucm
14761            + ext/Encode/Encode/iso8859-8.ucm
14762            + ext/Encode/Encode/iso8859-9.ucm ext/Encode/Encode/posix-bc.ucm
14763            + ext/Encode/Encode/symbol.ucm
14764            ! ext/Encode/Makefile.PL ext/Encode/compile
14765 ____________________________________________________________________________
14766 [  8507] By: nick                                  on 2001/01/21  21:02:03
14767         Log: Integrate (partial) mainline.
14768      Branch: perlio
14769           !> Changes Configure config_h.SH patchlevel.h pod/perlfaq2.pod
14770           !> sv.c uconfig.h uconfig.sh vos/config.alpha.h vos/config.ga.h
14771           !> win32/config_H.bc win32/config_H.gc win32/config_H.vc
14772 ____________________________________________________________________________
14773 [  8506] By: jhi                                   on 2001/01/21  20:09:30
14774         Log: Update Changes.
14775      Branch: perl
14776            ! Changes patchlevel.h
14777 ____________________________________________________________________________
14778 [  8505] By: jhi                                   on 2001/01/21  19:39:59
14779         Log: Subject: Minor typos in perlfaq2.pod
14780              From: "Stephen P. Potter" <spp@spotter.yi.org>
14781              Message-Id: <200101192101.QAA11911@spotter.yi.org>
14782              Date: Fri, 19 Jan 2001 16:01:13 -0500
14783              
14784              with a nit from Philip Netwon.
14785      Branch: perl
14786            ! pod/perlfaq2.pod
14787 ____________________________________________________________________________
14788 [  8504] By: jhi                                   on 2001/01/21  19:33:05
14789         Log: Metaconfig change for #8503.
14790      Branch: metaconfig
14791            ! U/threads/usethreads.U
14792 ____________________________________________________________________________
14793 [  8503] By: jhi                                   on 2001/01/21  19:32:21
14794         Log: Sanity check for conflicting thread flavours.
14795      Branch: perl
14796            ! Configure config_h.SH
14797 ____________________________________________________________________________
14798 [  8502] By: jhi                                   on 2001/01/21  19:23:00
14799         Log: Metaconfig change for #8501.
14800      Branch: metaconfig
14801            ! U/modified/sig_name.U
14802 ____________________________________________________________________________
14803 [  8501] By: jhi                                   on 2001/01/21  19:22:26
14804         Log: The SIG_SIZE is the number of the elements *excluding*
14805              the terminating NULL.
14806      Branch: perl
14807            ! Configure config_h.SH uconfig.h uconfig.sh vos/config.alpha.h
14808            ! vos/config.ga.h win32/config_H.bc win32/config_H.gc
14809            ! win32/config_H.vc
14810 ____________________________________________________________________________
14811 [  8500] By: jhi                                   on 2001/01/21  18:31:31
14812         Log: Integrate perlio.
14813      Branch: perl
14814           !> doio.c embed.h embed.pl ext/Encode/Encode.xs
14815           !> ext/Encode/Makefile.PL ext/Encode/compile global.sym objXSUB.h
14816           !> opcode.h opcode.pl opnames.h perlapi.c pp.sym pp_proto.h
14817           !> pp_sys.c proto.h sv.c
14818 ____________________________________________________________________________
14819 [  8499] By: jhi                                   on 2001/01/21  17:43:57
14820         Log: Subject: Re: 8482 busted for $^V sprintf()s on OS/390 
14821              From: Hugo <hv@crypt.compulink.co.uk>
14822              Date: Sun, 21 Jan 2001 13:34:05 +0000
14823              Message-Id: <200101211334.NAA18121@crypt.compulink.co.uk>
14824              
14825              In sprintf UTF8ize only if necessary.
14826      Branch: perl
14827            ! sv.c
14828 ____________________________________________________________________________
14829 [  8498] By: nick                                  on 2001/01/21  16:25:32
14830         Log: Encode cleanup.
14831              Add command line control over "compile" so that Makefile.PL
14832              needs can be combined with other uses.
14833              Use command line options in Makefile.PL.
14834              Fix multi-byte parsing in .ucm files.
14835      Branch: perlio
14836            ! ext/Encode/Makefile.PL ext/Encode/compile
14837 ____________________________________________________________________________
14838 [  8497] By: nick                                  on 2001/01/21  12:56:27
14839         Log: Warn and set errno when open(...,":encoding(xxxxx)",...) cannot find xxxxx.
14840      Branch: perlio
14841            ! ext/Encode/Encode.xs
14842 ____________________________________________________________________________
14843 [  8496] By: nick                                  on 2001/01/21  12:18:45
14844         Log: Fixup after integrate:
14845              missed the .sym files that are changed by regen_headers
14846              sv.c and proto.h disagreed about pTHX_ ness of EXPECT_NUMBER.
14847      Branch: perlio
14848            ! global.sym pp.sym sv.c
14849 ____________________________________________________________________________
14850 [  8495] By: nick                                  on 2001/01/21  11:51:07
14851         Log: Integrate mainline.
14852      Branch: perlio
14853           +> ext/DynaLoader/dl_dllload.xs t/op/qu.t
14854           !> MANIFEST Makefile.SH README.os390 README.posix-bc README.vms
14855           !> embed.h embed.pl ext/DynaLoader/dl_aix.xs
14856           !> ext/DynaLoader/dl_dlopen.xs hints/os390.sh pod/perlfunc.pod
14857           !> pod/perlguts.pod pod/perlop.pod pod/perlre.pod
14858           !> pod/perlretut.pod pod/perlunicode.pod proto.h sv.c
14859           !> win32/Makefile win32/makefile.mk
14860 ____________________________________________________________________________
14861 [  8494] By: jhi                                   on 2001/01/20  23:12:11
14862         Log: Forgot the expect_number() prototype.
14863      Branch: perl
14864            ! embed.h embed.pl proto.h
14865 ____________________________________________________________________________
14866 [  8493] By: jhi                                   on 2001/01/20  22:56:39
14867         Log: Subject: [PATCH: perl@8482] README.vms URL updates
14868              From: Peter Prymmer <pvhp@forte.com>
14869              Date: Fri, 19 Jan 2001 18:59:02 -0800 (PST)
14870              Message-ID: <Pine.OSF.4.10.10101191856510.61572-100000@aspara.forte.com>
14871              
14872              Plus Craig A. Berry's suggestion to use compaq.com instead
14873              of digital.com.
14874      Branch: perl
14875            ! README.vms
14876 ____________________________________________________________________________
14877 [  8492] By: jhi                                   on 2001/01/20  22:50:05
14878         Log: Memory management calls documentation.
14879      Branch: perl
14880            ! pod/perlguts.pod
14881 ____________________________________________________________________________
14882 [  8491] By: jhi                                   on 2001/01/20  22:38:33
14883         Log: Signedness nit plus few memcpy/Copy nits.
14884      Branch: perl
14885            ! sv.c
14886 ____________________________________________________________________________
14887 [  8490] By: jhi                                   on 2001/01/20  22:25:53
14888         Log: Subject: [PATCH: perl@8482] minor typos in some dl_$foo.xs files
14889              From: Peter Prymmer <pvhp@forte.com>
14890              Date: Fri, 19 Jan 2001 18:43:14 -0800 (PST)
14891              Message-ID: <Pine.OSF.4.10.10101191841080.61505-100000@aspara.forte.com>
14892      Branch: perl
14893            ! ext/DynaLoader/dl_aix.xs ext/DynaLoader/dl_dlopen.xs
14894 ____________________________________________________________________________
14895 [  8489] By: jhi                                   on 2001/01/20  22:24:41
14896         Log: Subject: [PATCH: perl@8482] win32 Makefile(s) handle podified READMEs
14897              From: Peter Prymmer <pvhp@forte.com>
14898              Date: Fri, 19 Jan 2001 18:33:43 -0800 (PST)
14899              Message-ID: <Pine.OSF.4.10.10101191828050.61158-100000@aspara.forte.com>
14900      Branch: perl
14901            ! win32/Makefile win32/makefile.mk
14902 ____________________________________________________________________________
14903 [  8488] By: jhi                                   on 2001/01/20  22:22:27
14904         Log: Subject: [PATCH: perl@8482] remove redundant dependencies that are unneeded
14905              From: Peter Prymmer <pvhp@forte.com>
14906              Date: Fri, 19 Jan 2001 18:25:38 -0800 (PST)
14907              Message-ID: <Pine.OSF.4.10.10101191816550.61158-100000@aspara.forte.com>
14908      Branch: perl
14909            ! Makefile.SH
14910 ____________________________________________________________________________
14911 [  8487] By: jhi                                   on 2001/01/20  22:21:18
14912         Log: Subject: [PATCH: perl@8482] partial support for dynaloading on OS/390
14913              From: Peter Prymmer <pvhp@forte.com>
14914              Date: Fri, 19 Jan 2001 18:12:05 -0800 (PST)
14915              Message-ID: <Pine.OSF.4.10.10101191646420.61158-100000@aspara.forte.com>
14916      Branch: perl
14917            + ext/DynaLoader/dl_dllload.xs
14918            ! MANIFEST Makefile.SH hints/os390.sh
14919 ____________________________________________________________________________
14920 [  8486] By: jhi                                   on 2001/01/20  22:17:53
14921         Log: Subject: [PATCH: perl@8482] floating point mangling warnings for README.os390 and README.posix-bc
14922              From: Peter Prymmer <pvhp@forte.com>
14923              Date: Fri, 19 Jan 2001 13:48:15 -0800 (PST)
14924              Message-ID: <Pine.OSF.4.10.10101191347140.59299-100000@aspara.forte.com>
14925      Branch: perl
14926            ! README.os390 README.posix-bc
14927 ____________________________________________________________________________
14928 [  8485] By: jhi                                   on 2001/01/20  20:15:30
14929         Log: Document and test the new qu operator.
14930      Branch: perl
14931            + t/op/qu.t
14932            ! MANIFEST pod/perlfunc.pod pod/perlop.pod pod/perlre.pod
14933            ! pod/perlretut.pod pod/perlunicode.pod
14934 ____________________________________________________________________________
14935 [  8484] By: nick                                  on 2001/01/20  19:42:30
14936         Log: Infrastructure to allow:
14937              open($fh,"|-",@array);
14938              to be implemented
14939              i.e. mark pp_open as needing a stack mark, and make pp_open
14940              process its args in that style (and pass them _all_ to tied handles OPEN).
14941              Invent do_openn() which takes SV ** at allow it to see multiple args.
14942              Note this does not _do_ anything yet.
14943      Branch: perlio
14944            ! doio.c embed.h embed.pl objXSUB.h opcode.h opcode.pl opnames.h
14945            ! perlapi.c pp_proto.h pp_sys.c proto.h
14946 ____________________________________________________________________________
14947 [  8483] By: nick                                  on 2001/01/20  17:23:14
14948         Log: Integrate mainline.
14949      Branch: perlio
14950           !> Changes configure.com patchlevel.h sv.c t/lib/1_compile.t
14951           !> t/op/sprintf.t t/op/ver.t t/pragma/locale.t
14952 ____________________________________________________________________________
14953 [  8482] By: jhi                                   on 2001/01/19  15:37:49
14954         Log: Update Changes.
14955      Branch: perl
14956            ! Changes patchlevel.h
14957 ____________________________________________________________________________
14958 [  8481] By: jhi                                   on 2001/01/19  14:41:24
14959         Log: Subject: Re: new feature: s?printf parameter reordering 
14960              From: Hugo <hv@crypt.compulink.co.uk>
14961              Date: Thu, 11 Jan 2001 17:09:03 +0000
14962              Message-Id: <200101111709.RAA23756@crypt.compulink.co.uk>
14963              
14964              - support reordering for all parameters: %, *v, *, .*
14965              - lay down that the reordering specification must immediately
14966              follow that parameter: %3$, *v3$, *3$, .*3$
14967              - fix vectorisation of a zero-length string
14968              - factor out the code choosing the argument to format
14969              
14970              Possibly unwanted side-effects:
14971              - the special format specifiers ' +-0' must now precede any
14972              vectorisation specifier. Tests in op/sprintf and op/ver
14973              have been changed to reflect this.
14974              - sprintf.t test #214 changed its expectations because in many
14975              cases, the next parameter has already been consumed when an
14976              invalid type letter is detected.
14977              
14978              Probably wanted side-effects:
14979              - attempts to format a non-existent parameter will warn as if C<undef>
14980              - attempt to write to non-existent parameter with '%n' will complain
14981              of "attempt to modify read-only value" instead of being silent
14982      Branch: perl
14983            ! sv.c t/op/sprintf.t t/op/ver.t
14984 ____________________________________________________________________________
14985 [  8480] By: jhi                                   on 2001/01/19  14:08:37
14986         Log: Subject: PATCH pragma/locale.t
14987              From: andreas.koenig@anima.de (Andreas J. Koenig)
14988              Date: 18 Jan 2001 09:45:37 +0100
14989              Message-ID: <m3lms98czy.fsf@ak-71.mind.de>
14990      Branch: perl
14991            ! t/pragma/locale.t
14992 ____________________________________________________________________________
14993 [  8479] By: jhi                                   on 2001/01/19  13:19:58
14994         Log: Add tracing for debugging extensions builds in VMS, from Charles Lane.
14995      Branch: perl
14996            ! configure.com
14997 ____________________________________________________________________________
14998 [  8478] By: jhi                                   on 2001/01/19  02:12:35
14999         Log: Automate 1_compile.t.
15000      Branch: perl
15001            ! t/lib/1_compile.t
15002 ____________________________________________________________________________
15003 [  8477] By: jhi                                   on 2001/01/19  01:49:56
15004         Log: Integrate perlio.
15005      Branch: perl
15006           !> sv.c win32/config.bc win32/config.gc win32/config.vc
15007           !> win32/config_H.bc win32/config_H.gc win32/config_H.vc
15008 ____________________________________________________________________________
15009 [  8476] By: nick                                  on 2001/01/18  21:51:52
15010         Log: Integrate mainline
15011      Branch: perlio
15012           +> t/lib/1_compile.t t/lib/compmod.pl
15013           !> MANIFEST configure.com lib/unicode/distinct.pm
15014 ____________________________________________________________________________
15015 [  8475] By: nick                                  on 2001/01/18  21:48:02
15016         Log: Win32 "safe signals" co-existance fix.
15017              Fix SIG_SIZE value.
15018              Clear PL_sig_pending when cloning (fork).
15019      Branch: perlio
15020            ! sv.c win32/config.bc win32/config.gc win32/config.vc
15021            ! win32/config_H.bc win32/config_H.gc win32/config_H.vc
15022 ____________________________________________________________________________
15023 [  8474] By: jhi                                   on 2001/01/18  14:40:57
15024         Log: It's Pod::Text::Overstrike, not Pod::Overstrike.
15025      Branch: perl
15026            ! t/lib/1_compile.t
15027 ____________________________________________________________________________
15028 [  8473] By: gsar                                  on 2001/01/18  11:42:31
15029         Log: unsubmitted trial1 change
15030      Branch: maint-5.6/perl
15031            ! Changes
15032 ____________________________________________________________________________
15033 [  8472] By: jhi                                   on 2001/01/18  04:30:24
15034         Log: The first bug found by 1_compile.t.
15035      Branch: perl
15036            ! lib/unicode/distinct.pm
15037 ____________________________________________________________________________
15038 [  8471] By: jhi                                   on 2001/01/18  04:29:42
15039         Log: Add Schwern's 1_compile test.  The compile_module script renamed
15040              to be a bit shorter for the 8.3 people.
15041      Branch: perl
15042            + t/lib/1_compile.t t/lib/compmod.pl
15043            ! MANIFEST
15044 ____________________________________________________________________________
15045 [  8470] By: jhi                                   on 2001/01/18  04:16:00
15046         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)
15047              From: Peter Prymmer <pvhp@forte.com>
15048              Date: Wed, 17 Jan 2001 13:07:11 -0800 (PST)
15049              Message-ID: <Pine.OSF.4.10.10101171255380.289071-100000@aspara.forte.com>
15050              Replace #8463.
15051      Branch: maint-5.6/perl
15052            ! configure.com
15053 ____________________________________________________________________________
15054 [  8469] By: jhi                                   on 2001/01/18  04:13:02
15055         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)
15056              From: Peter Prymmer <pvhp@forte.com>
15057              Date: Wed, 17 Jan 2001 13:07:11 -0800 (PST)
15058              Message-ID: <Pine.OSF.4.10.10101171255380.289071-100000@aspara.forte.com>
15059              Replace #8462.
15060      Branch: perl
15061            ! configure.com
15062 ____________________________________________________________________________
15063 [  8468] By: jhi                                   on 2001/01/18  03:42:08
15064         Log: Integrate perlio.
15065      Branch: perl
15066           !> gv.c mg.c perlio.c util.c
15067 ____________________________________________________________________________
15068 [  8467] By: nick                                  on 2001/01/17  22:41:10
15069         Log: "Safe" signals - trial implementation.
15070              gv.c tweaked to zero PL_sig_pend array
15071              perlio.c tweaked to PERL_ASYNC_CHECK() on EINTR
15072              util.c tweaked to not set SA_RESTART to give perlio.c a chance.
15073              Odd thing is that it "works" with PERLIO=stdio as well (linux).
15074      Branch: perlio
15075            ! gv.c mg.c perlio.c util.c
15076 ____________________________________________________________________________
15077 [  8466] By: nick                                  on 2001/01/17  20:40:20
15078         Log: Integrate mainline.
15079      Branch: perlio
15080           !> Configure Porting/Glossary Porting/config.sh Porting/config_H
15081           !> config_h.SH configure.com epoc/config.sh gv.c pod/perltoc.pod
15082           !> pp.c pp_sys.c sv.c t/op/int.t uconfig.h uconfig.sh
15083           !> vos/config.alpha.def vos/config.alpha.h vos/config.ga.def
15084           !> vos/config.ga.h win32/config.bc win32/config.gc
15085           !> win32/config.vc
15086 ____________________________________________________________________________
15087 [  8465] By: jhi                                   on 2001/01/17  18:37:13
15088         Log: Subject: [PATCH] Re: [PATCH: perl@8429]  lib/tie-substrhash.t FAILED at test 11
15089              From: Nicholas Clark <nick@ccl4.org>
15090              Date: Wed, 17 Jan 2001 17:31:33 +0000
15091              Message-ID: <20010117173133.I2633@plum.flirble.org>
15092      Branch: perl
15093            ! t/op/int.t
15094 ____________________________________________________________________________
15095 [  8464] By: jhi                                   on 2001/01/17  14:43:17
15096         Log: Subject: [PATCH: perl@8429]  lib/tie-substrhash.t FAILED at test 11
15097              From: "Roca, Ignasi" <ignasi.roca@fujitsu.siemens.es>
15098              Date: Wed, 17 Jan 2001 15:16:43 +0100
15099              Message-ID: <5930DC161690D2119667009027157547038C8A85@madt009a.siemens.es> 
15100              
15101              pp_int() was dropping an NV to the floor,
15102              int(279964589018079/59) either returned not an integer
15103              4745162525730.15, or one got "Attempt to free unreferenced scalar."
15104      Branch: perl
15105            ! pp.c
15106 ____________________________________________________________________________
15107 [  8463] By: jhi                                   on 2001/01/17  06:12:42
15108         Log: (Replaced by #8470)
15109              
15110              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)
15111              From: "Craig A. Berry" <craigberry@mac.com>
15112              Date: Tue, 16 Jan 2001 23:38:46 -0600
15113              Message-Id: <p04330103b68ad8cfcbfd@[172.16.52.1]>
15114      Branch: maint-5.6/perl
15115            ! configure.com
15116 ____________________________________________________________________________
15117 [  8462] By: jhi                                   on 2001/01/17  06:11:31
15118         Log: (Replaced by #8469)
15119              
15120              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)
15121              From: "Craig A. Berry" <craigberry@mac.com>
15122              Date: Tue, 16 Jan 2001 23:38:46 -0600
15123              Message-Id: <p04330103b68ad8cfcbfd@[172.16.52.1]>
15124      Branch: perl
15125            ! configure.com
15126 ____________________________________________________________________________
15127 [  8461] By: jhi                                   on 2001/01/17  05:56:12
15128         Log: Allow for one trailing slash in the directory of mkdir().
15129      Branch: perl
15130            ! pp_sys.c
15131 ____________________________________________________________________________
15132 [  8460] By: jhi                                   on 2001/01/17  03:26:01
15133         Log: Metaconfig unit changes for #8459.
15134      Branch: metaconfig
15135            ! U/modified/Loc.U U/modified/sig_name.U
15136 ____________________________________________________________________________
15137 [  8459] By: jhi                                   on 2001/01/17  03:24:48
15138         Log: Define SIG_SIZE, the number of elements in the sig_name and
15139              sig_num arrays, including the final NULL entry.
15140      Branch: perl
15141            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
15142            ! config_h.SH configure.com epoc/config.sh gv.c pod/perltoc.pod
15143            ! sv.c uconfig.h uconfig.sh vos/config.alpha.def
15144            ! vos/config.alpha.h vos/config.ga.def vos/config.ga.h
15145            ! win32/config.bc win32/config.gc win32/config.vc
15146 ____________________________________________________________________________
15147 [  8458] By: jhi                                   on 2001/01/17  01:41:33
15148         Log: Integrate perlio.
15149      Branch: perl
15150           !> embed.h embed.pl embedvar.h gv.c intrpvar.h mg.c perl.c perl.h
15151           !> perlapi.h proto.h sv.c
15152 ____________________________________________________________________________
15153 [  8457] By: nick                                  on 2001/01/16  22:07:26
15154         Log: Provide infrastructure for PERL_ASYNC_CHECK() style safe signals.
15155              Provides all the "cost" but no benefit yet - it is to allow cost
15156              to be measured, and implementation experiments (just in mg.c?).
15157      Branch: perlio
15158            ! embed.h embed.pl embedvar.h gv.c intrpvar.h mg.c perl.c perl.h
15159            ! perlapi.h proto.h sv.c
15160 ____________________________________________________________________________
15161 [  8456] By: nick                                  on 2001/01/16  21:07:07
15162         Log: Integrate mainline.
15163      Branch: perlio
15164           !> (integrate 51 files)
15165 ____________________________________________________________________________
15166 [  8455] By: jhi                                   on 2001/01/16  18:13:43
15167         Log: Subject: [PATCH] regcomp.c old feature removal
15168              From: mjd@plover.com
15169              Date: 16 Jan 2001 14:43:18 -0000 
15170              Message-ID: <20010116144318.7140.qmail@plover.com> 
15171      Branch: perl
15172            ! regcomp.c
15173 ____________________________________________________________________________
15174 [  8454] By: jhi                                   on 2001/01/16  16:12:39
15175         Log: Subject: [PATCH: perl-5.6.1-TRIAL1] Win32 Makefile fixes - v2
15176              From: "Indy Singh" <indy@nusphere.com>
15177              Date: Wed, 10 Jan 2001 20:17:49 -0500
15178              Message-ID: <003001c07b6c$524630b0$00957018@roadhog>
15179      Branch: maint-5.6/perl
15180            ! win32/Makefile
15181 ____________________________________________________________________________
15182 [  8453] By: jhi                                   on 2001/01/16  16:09:33
15183         Log: Update Changes.
15184      Branch: perl
15185            ! Changes patchlevel.h
15186 ____________________________________________________________________________
15187 [  8452] By: jhi                                   on 2001/01/16  15:42:04
15188         Log: Subject: Re: API Cleanup
15189              To: perl5-porters@perl.org
15190              Date: Tue, 16 Jan 2001 13:42:30 +0000
15191              Message-ID: <20010116134230.A13420@pembro26.pmb.ox.ac.uk>
15192              
15193              Subject: [PATCH] utf8.c documentation
15194              From: Simon Cozens <simon@cozens.net>
15195              Date: Tue, 16 Jan 2001 13:52:48 +0000
15196              Message-ID: <20010116135248.A13496@pembro26.pmb.ox.ac.uk>
15197              
15198              Subject: Re: API Cleanup
15199              From: Simon Cozens <simon@cozens.net>
15200              Date: Tue, 16 Jan 2001 14:58:55 +0000
15201              Message-ID: <20010116145855.A13794@pembro26.pmb.ox.ac.uk>
15202              
15203              UTF-8 doc patches.
15204      Branch: perl
15205            ! embed.pl pod/perlapi.pod utf8.c
15206 ____________________________________________________________________________
15207 [  8451] By: jhi                                   on 2001/01/16  14:41:39
15208         Log: podlators 1.07, from Russ Allbery.
15209      Branch: perl
15210            ! lib/Pod/Man.pm
15211 ____________________________________________________________________________
15212 [  8450] By: jhi                                   on 2001/01/16  14:24:19
15213         Log: Subject: [PATCH: perl@8429] Win32 Makefile fixes
15214              From: "Indy Singh" <indy@nusphere.com>
15215              Date: Mon, 15 Jan 2001 20:59:40 -0500
15216              Message-ID: <07be01c07f5f$fdadf270$d24b7018@cr637287a>
15217      Branch: perl
15218            ! win32/Makefile
15219 ____________________________________________________________________________
15220 [  8449] By: jhi                                   on 2001/01/16  03:42:55
15221         Log: Under 5.005 threads and debugging crashed in Debian 2.2 Linux/x86
15222              at the setting of the ofs_sv in new_struct_thread() as the
15223              thr->Tofs_sv (PL_ofs_sv) was still 0xabab...., SvREFCNT_inc()ing
15224              that invited a core dump.
15225      Branch: perl
15226            ! util.c
15227 ____________________________________________________________________________
15228 [  8448] By: jhi                                   on 2001/01/16  01:49:07
15229         Log: Subject: [PATCH #3 @8436] Re: Eliminate op_children
15230              From: Stephen McCamant <smcc@CSUA.Berkeley.EDU>
15231              Date: Mon, 15 Jan 2001 17:14:37 -0800 (PST)
15232              Message-ID: <14947.40656.841280.551785@soda.csua.berkeley.edu>
15233              
15234              Replace #8444 and #8445.
15235      Branch: perl
15236            ! ext/B/B.xs ext/B/B/Debug.pm
15237 ____________________________________________________________________________
15238 [  8447] By: jhi                                   on 2001/01/15  21:05:35
15239         Log: Subject: [PATCH] API Variable documentation   
15240              From: Simon Cozens <simon@cozens.net>
15241              Date: Mon, 15 Jan 2001 19:35:54 +0000
15242              Message-ID: <20010115193554.A9919@pembro26.pmb.ox.ac.uk> 
15243      Branch: perl
15244            ! pod/perlapi.pod thrdvar.h
15245 ____________________________________________________________________________
15246 [  8446] By: jhi                                   on 2001/01/15  20:49:20
15247         Log: Signedness nit.
15248      Branch: perl
15249            ! pp_ctl.c
15250 ____________________________________________________________________________
15251 [  8445] By: jhi                                   on 2001/01/15  20:28:48
15252         Log: (Replaced by #8448)  More op_children traces (cleanup of #8442).
15253      Branch: perl
15254            ! ext/B/B/Debug.pm
15255 ____________________________________________________________________________
15256 [  8444] By: jhi                                   on 2001/01/15  13:09:10
15257         Log: (Replaced by #8448)  Traces of op_children (cleanup of #8442)
15258      Branch: perl
15259            ! ext/B/B.xs
15260 ____________________________________________________________________________
15261 [  8443] By: jhi                                   on 2001/01/15  13:06:26
15262         Log: Missing from #8439.
15263      Branch: perl
15264            ! keywords.h mg.c
15265 ____________________________________________________________________________
15266 [  8442] By: jhi                                   on 2001/01/15  13:02:38
15267         Log: Subject: [PATCH @8436] Eliminate op_children
15268              From: Stephen McCamant <smcc@CSUA.Berkeley.EDU>
15269              Date: Sun, 14 Jan 2001 03:00:13 -0800 (PST)
15270              Message-ID: <14945.32919.44271.685122@soda.csua.berkeley.edu>
15271              
15272              Subject: [PATCH @8436] Re: Eliminate op_children
15273              From: Stephen McCamant <smcc@CSUA.Berkeley.EDU>
15274              Date: Sun, 14 Jan 2001 03:23:56 -0800 (PST)
15275              Message-ID: <14945.35680.571387.810763@soda.csua.berkeley.edu>
15276      Branch: perl
15277            ! bytecode.pl ext/B/B/Asmdata.pm ext/B/B/Bytecode.pm
15278            ! ext/B/B/C.pm ext/ByteLoader/byterun.c ext/ByteLoader/byterun.h
15279            ! op.c op.h
15280 ____________________________________________________________________________
15281 [  8441] By: jhi                                   on 2001/01/15  12:57:08
15282         Log: Use the /^Perl_/-less form of is_lvalue_sub().
15283      Branch: perl
15284            ! pp.h
15285 ____________________________________________________________________________
15286 [  8440] By: jhi                                   on 2001/01/15  05:13:09
15287         Log: Revert #8437 and #8438, the Linux large files story is more complex.
15288      Branch: metaconfig/U/perl
15289            ! d_fpos64_t.U d_off64_t.U
15290      Branch: perl
15291            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
15292            ! config_h.SH configure.com epoc/config.sh perl.h
15293            ! pod/perltoc.pod uconfig.h uconfig.sh vos/config.alpha.def
15294            ! vos/config.alpha.h vos/config.ga.def vos/config.ga.h
15295            ! win32/config.bc win32/config.gc win32/config.vc
15296 ____________________________________________________________________________
15297 [  8439] By: jhi                                   on 2001/01/15  05:02:24
15298         Log: More UTF-8 patches from Inaba Hiroto.
15299              - The substr lval was still not okay.
15300              - Now pp_stringify and sv_setsv copies source's UTF8 flag
15301              even if IN_BYTE.  pp_stringify is called from fold_constants
15302              at optimization phase and "\x{100}" was made SvUTF8_off under
15303              use bytes (the bytes pragma is for "byte semantics" and not
15304              for "do not produce UTF8 data")
15305              - New `qu' operator to generate UTF8 string explicitly.
15306              Though I agree with the policy "0x00-0xff always produce bytes",
15307              sometimes want to such a string to be coded in UTF8.
15308              I can use pack"U0a*" but it requires more typing and has
15309              runtime overhead.
15310              - Fix pp_regcomp bug uncovered by "0x00-0xff always produce bytes"
15311              change, the bug apears if a pm has PMdf_UTF8 flag but interpolated
15312              string is not UTF8_on and has char 0x80-0xff.
15313              
15314              TODO: document and test qu.
15315      Branch: perl
15316            ! keywords.h keywords.pl mg.c pp.c pp_ctl.c pp_hot.c sv.c
15317            ! t/lib/charnames.t t/op/length.t t/op/substr.t t/pragma/utf8.t
15318            ! toke.c
15319 ____________________________________________________________________________
15320 [  8438] By: jhi                                   on 2001/01/14  05:10:23
15321         Log: Metaconfig unit changes for #8437.
15322      Branch: metaconfig/U/perl
15323            ! d_fpos64_t.U d_off64_t.U
15324 ____________________________________________________________________________
15325 [  8437] By: jhi                                   on 2001/01/14  04:55:34
15326         Log: Add <features.h> probing, seems to be needed for (some?)
15327              Linux largefileness.
15328      Branch: perl
15329            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
15330            ! config_h.SH configure.com epoc/config.sh perl.h
15331            ! pod/perltoc.pod uconfig.h uconfig.sh vos/config.alpha.def
15332            ! vos/config.alpha.h vos/config.ga.def vos/config.ga.h
15333            ! win32/config.bc win32/config.gc win32/config.vc
15334 ____________________________________________________________________________
15335 [  8436] By: jhi                                   on 2001/01/13  17:47:21
15336         Log: Tighten some of the tests a bit.
15337      Branch: perl
15338            ! t/pragma/utf8.t
15339 ____________________________________________________________________________
15340 [  8435] By: jhi                                   on 2001/01/13  17:31:54
15341         Log: Integrate perlio.
15342      Branch: perl
15343           !> ext/Encode/Makefile.PL ext/Encode/compile win32/config_H.bc
15344           !> win32/config_H.gc win32/config_H.vc
15345 ____________________________________________________________________________
15346 [  8434] By: nick                                  on 2001/01/13  11:36:53
15347         Log: Run dmake regen_config_h for Win32
15348      Branch: perlio
15349            ! win32/config_H.bc win32/config_H.gc win32/config_H.vc
15350 ____________________________________________________________________________
15351 [  8433] By: nick                                  on 2001/01/13  11:31:55
15352         Log: VMS friendly patch to Encode compile process
15353      Branch: perlio
15354            ! ext/Encode/Makefile.PL ext/Encode/compile
15355 ____________________________________________________________________________
15356 [  8432] By: nick                                  on 2001/01/13  11:06:44
15357         Log: Integrate mainline
15358      Branch: perlio
15359           +> ext/B/B/Concise.pm
15360           !> (integrate 52 files)
15361 ____________________________________________________________________________
15362 [  8431] By: jhi                                   on 2001/01/13  05:55:55
15363         Log: Subject: [PATCH @8429] Re: B::Concise -- an improved replacement for B::Terse
15364              From: Stephen McCamant <smcc@CSUA.Berkeley.EDU>
15365              Date: Fri, 12 Jan 2001 21:45:17 -0800 (PST)
15366              Message-ID: <14943.59712.993695.180189@soda.csua.berkeley.edu>
15367      Branch: perl
15368            ! ext/B/B/Concise.pm
15369 ____________________________________________________________________________
15370 [  8430] By: jhi                                   on 2001/01/13  04:24:18
15371         Log: The LVRET macro needed an aTHX.
15372      Branch: perl
15373            ! pp.h
15374 ____________________________________________________________________________
15375 [  8429] By: jhi                                   on 2001/01/13  02:12:42
15376         Log: Update Changes.
15377      Branch: perl
15378            ! Changes patchlevel.h
15379 ____________________________________________________________________________
15380 [  8428] By: jhi                                   on 2001/01/13  02:08:50
15381         Log: Subject: Re: [PATCH: perl@8342]  lib/bigfloat.t FAILED at test 351
15382              From: Peter Prymmer <pvhp@forte.com>
15383              Date: Fri, 12 Jan 2001 16:27:36 -0800 (PST)
15384              Message-ID: <Pine.OSF.4.10.10101121623130.478096-100000@aspara.forte.com>
15385              
15386              Add a BEGIN guard for sloppy floating point division.
15387      Branch: perl
15388            ! lib/Math/BigInt.pm lib/bigint.pl
15389 ____________________________________________________________________________
15390 [  8427] By: jhi                                   on 2001/01/13  01:47:16
15391         Log: The B::Terse drop-in replacement wasn't quite drop-in.
15392      Branch: perl
15393            ! ext/B/B/Terse.pm
15394 ____________________________________________________________________________
15395 [  8426] By: jhi                                   on 2001/01/12  21:20:43
15396         Log: Use UVXf.
15397      Branch: perl
15398            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
15399            ! config_h.SH configure.com epoc/config.sh sv.c uconfig.h
15400            ! uconfig.sh vos/config.alpha.def vos/config.alpha.h
15401            ! vos/config.ga.def vos/config.ga.h win32/config.bc
15402            ! win32/config.gc win32/config.vc
15403 ____________________________________________________________________________
15404 [  8425] By: jhi                                   on 2001/01/12  20:20:14
15405         Log: Subject: [PATCH perl@8342] -Wformat
15406              From: Robin Barker <rmb1@cise.npl.co.uk>
15407              Date: Fri, 12 Jan 2001 20:03:14 GMT
15408              Message-Id: <200101122003.UAA29599@tempest.npl.co.uk>
15409      Branch: perl
15410            ! ext/Encode/Encode.xs mg.c sv.c toke.c
15411 ____________________________________________________________________________
15412 [  8424] By: jhi                                   on 2001/01/12  20:01:48
15413         Log: Subject: B::Concise -- an improved replacement for B::Terse 
15414              From: Stephen McCamant <smcc@CSUA.Berkeley.EDU>
15415              Date: Sat,  6 Jan 2001 20:18:05 -0800 (PST)
15416              Message-ID: <14935.43597.962940.803717@soda.csua.berkeley.edu>
15417      Branch: perl
15418            + ext/B/B/Concise.pm
15419            ! MANIFEST ext/B/B/Terse.pm
15420 ____________________________________________________________________________
15421 [  8423] By: jhi                                   on 2001/01/12  19:24:02
15422         Log: The new metaconfig unit from the #8421.
15423      Branch: metaconfig/U/perl
15424            + d_sigprocmask.U
15425 ____________________________________________________________________________
15426 [  8422] By: jhi                                   on 2001/01/12  19:23:43
15427         Log: Forgot the microperl config from the #8421.
15428      Branch: perl
15429            ! uconfig.h uconfig.sh
15430 ____________________________________________________________________________
15431 [  8421] By: jhi                                   on 2001/01/12  19:05:27
15432         Log: Add sigprocmask() probe, regen Configure, regen toc.
15433      Branch: perl
15434            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
15435            ! config_h.SH configure.com epoc/config.sh mg.c pod/perltoc.pod
15436            ! vos/config.alpha.def vos/config.alpha.h vos/config.ga.def
15437            ! vos/config.ga.h win32/config.bc win32/config.gc
15438            ! win32/config.vc
15439 ____________________________________________________________________________
15440 [  8420] By: jhi                                   on 2001/01/12  18:34:31
15441         Log: Add sockatmark() to the todo list.
15442      Branch: perl
15443            ! Todo-5.6
15444 ____________________________________________________________________________
15445 [  8419] By: jhi                                   on 2001/01/12  18:09:46
15446         Log: Rename RETVAL_MAX to RETURN_UNLIMITED_NUMBER.
15447      Branch: perl
15448            ! op.c
15449 ____________________________________________________________________________
15450 [  8418] By: jhi                                   on 2001/01/12  18:05:30
15451         Log: Subject: Re: [PATCH] [ID 20001223.002] lvalues in list context
15452              From: Radu Greab <radu@netsoft.ro>
15453              Message-ID: <14943.15321.515713.119805@ix.netsoft.ro>
15454              Date: Fri, 12 Jan 2001 19:16:09 +0200 (EET)
15455      Branch: perl
15456            ! op.c t/pragma/sub_lval.t
15457 ____________________________________________________________________________
15458 [  8417] By: jhi                                   on 2001/01/12  16:09:09
15459         Log: Subject: [PATCH @8404] Consolidated lvalue sub changes
15460              From: Stephen McCamant <smcc@CSUA.Berkeley.EDU> 
15461              Date: Wed, 10 Jan 2001 21:36:51 -0800 (PST)
15462              Message-ID: <14941.16925.736415.785818@soda.csua.berkeley.edu>
15463      Branch: perl
15464            ! doop.c embed.h embed.pl op.c op.h opcode.h opcode.pl
15465            ! pod/perldiag.pod pod/perlintern.pod pod/perlsub.pod pp.c pp.h
15466            ! pp.sym pp_ctl.c pp_hot.c pp_proto.h proto.h t/lib/b.t
15467            ! t/pragma/sub_lval.t toke.c
15468 ____________________________________________________________________________
15469 [  8416] By: jhi                                   on 2001/01/12  15:42:06
15470         Log: Subject: RE: [PATCH] [ID 20001223.002] lvalues in list context
15471              From: "Richard Soderberg" <rs@crystalflame.net>
15472              Date: Fri, 12 Jan 2001 04:49:35 -0800
15473              Message-ID: <NAEKLNAAHLMBPMPNBMLEAELDCKAA.rs@crystalflame.net>
15474              
15475              Replace 10000 with RETVAL_MAX, and compute RETVAL_MAX
15476              according to the platform.
15477      Branch: perl
15478            ! op.c
15479 ____________________________________________________________________________
15480 [  8415] By: jhi                                   on 2001/01/12  15:33:41
15481         Log: One more UTF-8 fix from Inaba Hiroto.
15482      Branch: perl
15483            ! pp.c regexec.c t/pragma/utf8.t
15484 ____________________________________________________________________________
15485 [  8414] By: jhi                                   on 2001/01/12  15:30:18
15486         Log: Mea culpa: I botched up Hugo's "Tw" bug fix when applying it.
15487      Branch: perl
15488            ! regexec.c
15489 ____________________________________________________________________________
15490 [  8413] By: jhi                                   on 2001/01/12  15:22:10
15491         Log: Subject: [Patch perl@8375] pragma/subs.t ......FAILED tests 1-2 using Bison's parser
15492              From: "Roca, Ignasi" <ignasi.roca@fujitsu.siemens.es>
15493              Date: Thu, 11 Jan 2001 12:53:36 +0100
15494              Message-ID: <5930DC161690D2119667009027157547038123E1@madt009a.siemens.es>
15495      Branch: perl
15496            ! toke.c
15497 ____________________________________________________________________________
15498 [  8412] By: jhi                                   on 2001/01/12  15:20:25
15499         Log: Subject: [PATCH: perl@8342] updates to posix-bc hints file
15500              From: "Roca, Ignasi" <ignasi.roca@fujitsu.siemens.es>
15501              Date: Fri, 12 Jan 2001 14:37:55 +0100
15502              Message-ID: <5930DC161690D21196670090271575470384E3FC@madt009a.siemens.es>
15503      Branch: perl
15504            ! hints/posix-bc.sh
15505 ____________________________________________________________________________
15506 [  8411] By: jhi                                   on 2001/01/12  15:14:14
15507         Log: Subject: [PATCH: perl@8342]  op/regmesg FAILED at test 33 on EBCDIC machines
15508              From: "Roca, Ignasi" <ignasi.roca@fujitsu.siemens.es>
15509              Date: Fri, 12 Jan 2001 10:42:21 +0100
15510              Message-ID: <5930DC161690D211966700902715754703812F33@madt009a.siemens.es>
15511      Branch: perl
15512            ! t/op/regmesg.t
15513 ____________________________________________________________________________
15514 [  8410] By: jhi                                   on 2001/01/12  05:48:55
15515         Log: Subject: Re: [ID 20010101.004] Not OK: perl v5.7.0 +DEVEL8268 on i586-linux-64int-ld 2.2.17-21mdk (UNINSTALLED)
15516              From: Nicholas Clark <nick@ccl4.org> 
15517              Date: Sun, 7 Jan 2001 19:47:14 +0000
15518              Message-ID: <20010107194714.B1048@plum.flirble.org>
15519      Branch: perl
15520            ! t/op/numconvert.t
15521 ____________________________________________________________________________
15522 [  8409] By: jhi                                   on 2001/01/12  05:41:28
15523         Log: Integrate perlio.
15524      Branch: perl
15525           !> mg.c scope.h
15526 ____________________________________________________________________________
15527 [  8408] By: nick                                  on 2001/01/11  22:43:28
15528         Log: Remove variables that were used in experiments.
15529      Branch: perlio
15530            ! mg.c
15531 ____________________________________________________________________________
15532 [  8407] By: nick                                  on 2001/01/11  20:57:44
15533         Log: Catch die in %SIG handler and unblock the signal before re-dying.
15534              This make Linux work _without_ sigsetjmp().
15535              Turn off sigsetjmp() to see what else it does.
15536              May need Configure probe for sigprocmask() if anything has sigaction()
15537              but not sigprocmask().
15538      Branch: perlio
15539            ! mg.c scope.h
15540 ____________________________________________________________________________
15541 [  8406] By: nick                                  on 2001/01/11  19:32:07
15542         Log: Integrate mainline
15543      Branch: perlio
15544           !> Changes ext/IO/lib/IO/Socket/INET.pm ext/Socket/Socket.pm mg.c
15545           !> patchlevel.h perl.h regexec.c t/op/re_tests t/op/split.t
15546           !> t/op/substr.t
15547 ____________________________________________________________________________
15548 [  8405] By: jhi                                   on 2001/01/11  17:11:01
15549         Log: Fix UTF-8 lval substr().
15550      Branch: perl
15551            ! mg.c t/op/substr.t
15552 ____________________________________________________________________________
15553 [  8404] By: jhi                                   on 2001/01/11  05:13:58
15554         Log: Update Changes.
15555      Branch: perl
15556            ! Changes patchlevel.h
15557 ____________________________________________________________________________
15558 [  8403] By: jhi                                   on 2001/01/11  04:38:24
15559         Log: Subject: Re: [ID 20001029.005] Regex error: "cd. (A. Tw)" !~ /\((\w\. \w+)\)/
15560              From: Hugo <hv@crypt.compulink.co.uk>
15561              Date: Mon, 30 Oct 2000 01:33:26 +0000
15562              Message-Id: <200010300133.BAA10390@crypt.compulink.co.uk>
15563      Branch: perl
15564            ! regexec.c t/op/re_tests
15565 ____________________________________________________________________________
15566 [  8402] By: jhi                                   on 2001/01/11  04:26:12
15567         Log: Integrate perlio.
15568      Branch: perl
15569           !> scope.h util.c
15570 ____________________________________________________________________________
15571 [  8401] By: nick                                  on 2001/01/10  22:52:55
15572         Log: Allow control of 2nd arg to segsetjmp() via -DSCOPE_SAVES_SIGNAL_MASK.
15573              (So Alan and Ilya can try setting via hints.)
15574              Verified Linux "works" with it true and fails to re-enable SIGINT if false.
15575              Restoring sigmask in Perl_sighandler() if handler dies is not equivalent;
15576              doing the save everywhere seems to restart read() correctly, but just
15577              doing it once "round" the handler does not.
15578      Branch: perlio
15579            ! scope.h
15580 ____________________________________________________________________________
15581 [  8400] By: jhi                                   on 2001/01/10  21:57:54
15582         Log: Not defining PERL_PRESERVE_IVUV fixes only the op/inc problem
15583              of IRIX, HP-UX is unaffected.
15584      Branch: perl
15585            ! perl.h
15586 ____________________________________________________________________________
15587 [  8399] By: nick                                  on 2001/01/10  21:29:19
15588         Log: Safe fix for Simon's pclose() doing SvIVX of undef -> core bug.
15589      Branch: perlio
15590            ! util.c
15591 ____________________________________________________________________________
15592 [  8398] By: jhi                                   on 2001/01/10  20:55:31
15593         Log: Add ReuseAddr as a (preferred) alias for Reuse as we now
15594              also have ReusePort.
15595      Branch: perl
15596            ! ext/IO/lib/IO/Socket/INET.pm
15597 ____________________________________________________________________________
15598 [  8397] By: jhi                                   on 2001/01/10  20:50:57
15599         Log: Subject: [PATCH] add ReusePort option to IO::Socket::INET for better multicast support (resend)
15600              From: "Jeremy D. Zawodny" <jzawodn@yahoo-inc.com>
15601              Date: Wed, 10 Jan 2001 01:38:13 -0800
15602              Message-ID: <20010110013813.B41744@yahoo-inc.com>
15603      Branch: perl
15604            ! ext/IO/lib/IO/Socket/INET.pm
15605 ____________________________________________________________________________
15606 [  8396] By: jhi                                   on 2001/01/10  20:49:30
15607         Log: Subject: [PATCH] add SO_REUSEPORT to export list in Socket.pm for better multicast support (resend)
15608              From: "Jeremy D. Zawodny" <jzawodn@yahoo-inc.com>
15609              Date: Wed, 10 Jan 2001 01:37:32 -0800
15610              Message-ID: <20010110013732.A41744@yahoo-inc.com>
15611      Branch: perl
15612            ! ext/Socket/Socket.pm
15613 ____________________________________________________________________________
15614 [  8395] By: jhi                                   on 2001/01/10  20:41:37
15615         Log: Test for bug id 20010105.016 (fixed by #8378).
15616      Branch: perl
15617            ! t/op/split.t
15618 ____________________________________________________________________________
15619 [  8394] By: jhi                                   on 2001/01/10  20:26:32
15620         Log: Integrate perlio.
15621      Branch: perl
15622            ! util.c
15623 ____________________________________________________________________________
15624 [  8393] By: nick                                  on 2001/01/10  19:34:30
15625         Log: Back out Simon's pid hackery for now.
15626      Branch: perlio
15627            ! util.c
15628 ____________________________________________________________________________
15629 [  8392] By: nick                                  on 2001/01/10  19:23:13
15630         Log: Integrate mainline. (Builds but does not work - something broke pipes...)
15631      Branch: perlio
15632           !> (integrate 29 files)
15633 ____________________________________________________________________________
15634 [  8391] By: jhi                                   on 2001/01/10  18:43:15
15635         Log: Subject: [PATCH] Fix my_pclose segfault
15636              From: Simon Cozens <simon@cozens.net>
15637              Date: Wed, 10 Jan 2001 18:39:35 +0000
15638              Message-ID: <20010110183934.A25640@pembro26.pmb.ox.ac.uk>
15639      Branch: perl
15640            ! util.c
15641 ____________________________________________________________________________
15642 [  8390] By: jhi                                   on 2001/01/10  18:42:08
15643         Log: Subject:  [PATCH perl@8269] Opcode.XS, fix memory leak
15644              From: lane@DUPHY4.Physics.Drexel.Edu (Charles Lane)
15645              Date:     Wed, 10 Jan 2001 13:23:02 EST
15646              Message-Id: <010110132245.8129a@DUPHY4.Physics.Drexel.Edu>
15647      Branch: perl
15648            ! ext/Opcode/Opcode.xs
15649 ____________________________________________________________________________
15650 [  8389] By: jhi                                   on 2001/01/10  15:16:07
15651         Log: Turn off the integer preservation for now.
15652      Branch: perl
15653            ! perl.h
15654 ____________________________________________________________________________
15655 [  8388] By: jhi                                   on 2001/01/10  15:01:25
15656         Log: Few more IDE/editor nits from p5p.
15657      Branch: perl
15658            ! pod/perlfaq3.pod
15659 ____________________________________________________________________________
15660 [  8387] By: jhi                                   on 2001/01/10  06:53:16
15661         Log: Subject: Re: [ID 20010109.003] Patch 8138 broke a test in libwww
15662              To: "Andreas J. Koenig" <andreas.koenig@anima.de>
15663              Date: Tue, 9 Jan 2001 23:16:02 +0000
15664              Message-ID: <20010109231602.A81101@plum.flirble.org>
15665      Branch: perl
15666            ! sv.c
15667 ____________________________________________________________________________
15668 [  8386] By: jhi                                   on 2001/01/10  03:17:54
15669         Log: Test cases for #8385 (from Simon's "torture.pl")
15670      Branch: perl
15671            ! t/op/tr.t
15672 ____________________________________________________________________________
15673 [  8385] By: jhi                                   on 2001/01/10  03:17:11
15674         Log: Subject: Re: more UTF8 test suites and an UTF8 patch
15675              From: Inaba Hiroto <inaba@sdd.tokyo-sc.toshiba.co.jp>
15676              Date: Wed, 10 Jan 2001 11:39:39 +0900
15677              Message-Id: <10101100239.AA10002@tux0017.sdd.tokyo-sc.toshiba.co.jp>
15678              
15679              Some more UTF-8 tr cases fixed.
15680      Branch: perl
15681            ! doop.c
15682 ____________________________________________________________________________
15683 [  8384] By: jhi                                   on 2001/01/09  22:45:40
15684         Log: Allow the locale test needing POSIX and the taint test
15685              needing IPC::SysV to run under 'minitest' (basically,
15686              bail out if loading the extension fails)
15687      Branch: perl
15688            ! t/op/misc.t t/op/taint.t
15689 ____________________________________________________________________________
15690 [  8383] By: jhi                                   on 2001/01/09  21:36:04
15691         Log: Subject: [PATCH @8382] Remove FileHandle/IO dependence in t/io/openpid.t
15692              From: Stephen McCamant <smcc@CSUA.Berkeley.EDU>
15693              Date: Tue,  9 Jan 2001 13:33:22 -0800 (PST)
15694              Message-ID: <14939.33475.474459.147429@soda.csua.berkeley.edu>
15695      Branch: perl
15696            ! t/io/openpid.t
15697 ____________________________________________________________________________
15698 [  8382] By: jhi                                   on 2001/01/09  21:06:08
15699         Log: save_delete(), err, SAVEDELETE() fixes from Charles Lane.
15700              Should finish up the bug id 20001205.022.
15701      Branch: perl
15702            ! pp.c pp_hot.c scope.c
15703 ____________________________________________________________________________
15704 [  8381] By: jhi                                   on 2001/01/09  18:27:43
15705         Log: Subject: Re: [PATCH: perl@8342] comp/proto..........FAILED tests 112-123
15706              From: Andy Dougherty <doughera@lafayette.edu>
15707              Date: Tue, 9 Jan 2001 12:11:16 -0500 (EST)
15708              Message-ID: <Pine.SOL.4.10.10101091144440.13124-100000@maxwell.phys.lafayette.edu>
15709              
15710              More robust yacc/bison error detection.
15711      Branch: perl
15712            ! t/comp/proto.t
15713 ____________________________________________________________________________
15714 [  8380] By: jhi                                   on 2001/01/09  15:21:38
15715         Log: Subject:  [PATCH] make t/op/misc.t work on VMS
15716              From: lane@DUPHY4.Physics.Drexel.Edu (Charles Lane)
15717              Date:     Tue, 9 Jan 2001 07:53:55 EST
15718              Message-Id: <010109075323.91c8f@DUPHY4.Physics.Drexel.Edu> 
15719      Branch: perl
15720            ! t/op/misc.t vms/test.com
15721 ____________________________________________________________________________
15722 [  8379] By: jhi                                   on 2001/01/09  15:20:38
15723         Log: Subject: [ID 20001230.003] UTF-8 tr still hurts
15724              From: jhi@cc.hut.fi
15725              Date: Sat, 30 Dec 2000 22:57:32 +0200 (EET)
15726              Message-Id: <200012302057.WAA31168@alpha.hut.fi>
15727              
15728              The #8378 fixed this.
15729      Branch: perl
15730            ! t/op/tr.t
15731 ____________________________________________________________________________
15732 [  8378] By: jhi                                   on 2001/01/09  15:05:32
15733         Log: Subject: One more patch for UTF8 
15734              From: Inaba Hiroto <inaba@st.rim.or.jp>
15735              Date: Tue, 09 Jan 2001 01:04:32 +0900
15736              Message-ID: <3A59E510.52BAB5B9@st.rim.or.jp>
15737              
15738              UTF-8 fixes for 'x' and tr///.
15739      Branch: perl
15740            ! doop.c embed.h embed.pl op.c pod/perlapi.pod pp.c proto.h
15741            ! regcomp.c regexec.c toke.c utf8.c
15742 ____________________________________________________________________________
15743 [  8377] By: jhi                                   on 2001/01/09  14:32:17
15744         Log: Make explicit our assumption that (for now) "\x{80}" produces UTF-8.
15745      Branch: perl
15746            ! t/op/length.t
15747 ____________________________________________________________________________
15748 [  8376] By: jhi                                   on 2001/01/09  04:32:32
15749         Log: integrate changes #7775, #8316, #8316 from mainline
15750      Branch: maint-5.6/perl
15751            ! hints/solaris_2.sh
15752 ____________________________________________________________________________
15753 [  8375] By: jhi                                   on 2001/01/09  04:26:43
15754         Log: Update Changes.
15755      Branch: perl
15756            ! Changes patchlevel.h
15757 ____________________________________________________________________________
15758 [  8374] By: jhi                                   on 2001/01/09  04:14:32
15759         Log: IDE/editor section tweaking.
15760      Branch: perl
15761            ! pod/perlfaq3.pod
15762 ____________________________________________________________________________
15763 [  8373] By: jhi                                   on 2001/01/09  02:38:26
15764         Log: Subject: [PATCH: perl@8342] updates to OS/390 hints file
15765              From: Peter Prymmer <pvhp@forte.com>
15766              Date: Mon, 8 Jan 2001 18:06:51 -0800 (PST)
15767              Message-ID: <Pine.OSF.4.10.10101081805530.239173-100000@aspara.forte.com>
15768              
15769              In preparation os OS/390 dynamic loading.
15770      Branch: perl
15771            ! README.os390 hints/os390.sh
15772 ____________________________________________________________________________
15773 [  8372] By: jhi                                   on 2001/01/09  00:24:30
15774         Log: Integrate with perlio.
15775      Branch: perl
15776           !> embed.h embed.pl gv.c mg.c perl.h proto.h sv.c
15777 ____________________________________________________________________________
15778 [  8371] By: nick                                  on 2001/01/08  23:54:33
15779         Log: Fix "scalars leaked" bugs caused by overload magic
15780              (Highlighted by Ilya's DESTROY optimization.)
15781      Branch: perlio
15782            ! embed.h embed.pl gv.c mg.c perl.h proto.h sv.c
15783 ____________________________________________________________________________
15784 [  8370] By: nick                                  on 2001/01/08  20:19:41
15785         Log: Integrate mainline
15786      Branch: perlio
15787           !> README.epoc dump.c ext/GDBM_File/GDBM_File.xs gv.c
15788           !> lib/Getopt/Long.pm mg.c op.c scope.c sv.c t/io/pipe.t
15789           !> t/op/64bitint.t
15790 ____________________________________________________________________________
15791 [  8369] By: jhi                                   on 2001/01/08  17:30:52
15792         Log: save_delete() Safefree() doesn't (anymore?) work with shared
15793              strings, one test failure in op/misc and almost all of lib/b.
15794              (Outcomments #8369.)
15795      Branch: perl
15796            ! scope.c
15797 ____________________________________________________________________________
15798 [  8368] By: jhi                                   on 2001/01/08  14:47:10
15799         Log: (Outcommented by #8369.)
15800              
15801              Subject: Re: Perl BugID 20001205.022 ---- save_delete
15802              From: Simon Cozens <simon@cozens.net>
15803              Date: Sat, 6 Jan 2001 11:48:40 +0000
15804              Message-ID: <20010106114840.A13227@deep-dark-truthful-mirror.perlhacker.org>
15805              
15806              The save_delete() does need the Safefree.
15807      Branch: perl
15808            ! scope.c
15809 ____________________________________________________________________________
15810 [  8367] By: bailey                                on 2001/01/08  08:53:52
15811         Log: Once again syncing after too long an absence
15812      Branch: vmsperl
15813           +> (branch 55 files)
15814            - MAINTAIN fix_pl vos/config.def vos/config.h
15815            - vos/config_h.SH_orig
15816           !> (integrate 498 files)
15817 ____________________________________________________________________________
15818 [  8366] By: jhi                                   on 2001/01/08  02:42:59
15819         Log: Subject: [ID 20010107.012] [PATCH] 18446744073709551616e0 was treated as UV=18446744073709551615
15820              From: nick@ccl4.org
15821              Date: Sun, 7 Jan 2001 21:07:18 +0000
15822              Message-Id: <20010107210717.D1048@plum.flirble.org>
15823      Branch: perl
15824            ! sv.c t/op/64bitint.t
15825 ____________________________________________________________________________
15826 [  8365] By: jhi                                   on 2001/01/08  02:35:16
15827         Log: Subject: [PATCH] environ nit
15828              From: Simon Cozens <simon@cozens.net>
15829              Date: Sun, 7 Jan 2001 17:57:07 +0000
15830              Message-ID: <20010107175707.A2013@pembro26.pmb.ox.ac.uk>
15831              
15832              Use environ only if we have it.
15833      Branch: perl
15834            ! mg.c
15835 ____________________________________________________________________________
15836 [  8364] By: jhi                                   on 2001/01/08  02:24:51
15837         Log: Replace #6721, GDBM, system malloc, and LEAKTEST.
15838      Branch: perl
15839            ! ext/GDBM_File/GDBM_File.xs
15840 ____________________________________________________________________________
15841 [  8363] By: jhi                                   on 2001/01/08  02:19:24
15842         Log: Subject: [PATCH @8344] Fix spurious GVSV OPpOUR_INTRO
15843              From: Stephen McCamant <smcc@CSUA.Berkeley.EDU>
15844              Date: Sat,  6 Jan 2001 15:25:02 -0800 (PST)
15845              Message-ID: <14935.41722.239364.55174@soda.csua.berkeley.edu>
15846      Branch: perl
15847            ! dump.c op.c
15848 ____________________________________________________________________________
15849 [  8362] By: jhi                                   on 2001/01/08  02:17:43
15850         Log: Subject: [patch] xsub AUTOLOAD fix/optimization
15851              From: Doug MacEachern <dougm@covalent.net>
15852              Date: Sat, 6 Jan 2001 09:30:05 -0800 (PST)
15853              Message-ID: <Pine.LNX.4.10.10101060924280.24460-100000@mojo.covalent.net>
15854              
15855              Allow AUTOLOAD to be an xsub and allow such xsubs
15856              to avoid use of $AUTOLOAD.
15857      Branch: perl
15858            ! gv.c
15859 ____________________________________________________________________________
15860 [  8361] By: jhi                                   on 2001/01/08  02:16:07
15861         Log: Subject: Re: [PATCH] Re: [ID 20010105.002] close() on process filehandle leaves defunct process
15862              From: Radu Greab <radu@netsoft.ro>
15863              Date: Sun, 7 Jan 2001 03:16:55 +0200 (EET)
15864              Message-ID: <14935.50055.838449.408835@ix.netsoft.ro>
15865              
15866              No need for the potentially unportable $SIG{CHLD}.
15867      Branch: perl
15868            ! t/io/pipe.t
15869 ____________________________________________________________________________
15870 [  8360] By: jhi                                   on 2001/01/08  01:58:23
15871         Log: Update to Getopt::Long 2.24_02, from Johan Vromans.
15872      Branch: perl
15873            ! lib/Getopt/Long.pm
15874 ____________________________________________________________________________
15875 [  8359] By: jhi                                   on 2001/01/08  01:55:44
15876         Log: Integrate perlio.
15877      Branch: perl
15878           !> ext/Encode/Encode.xs lib/ExtUtils/typemap perl.c perlio.c
15879           !> perlio.h pp.c pp_hot.c pp_sys.c sv.c t/lib/tie-refhash.t
15880           !> utf8.c win32/Makefile
15881 ____________________________________________________________________________
15882 [  8358] By: jhi                                   on 2001/01/07  21:16:50
15883         Log: Update the EPOC cross SDK URL.
15884      Branch: perl
15885            ! README.epoc
15886 ____________________________________________________________________________
15887 [  8357] By: jhi                                   on 2001/01/07  21:16:09
15888         Log: Update the EPOC cross SDK URL.
15889      Branch: maint-5.6/perl
15890            ! README.epoc
15891 ____________________________________________________________________________
15892 [  8356] By: nick                                  on 2001/01/06  21:47:52
15893         Log: FILE * in XS code for PerlIO world:
15894              - make PERLIO_NOT_STDIO 0 (co-existance) default for non PERL_CORE case.
15895              - Add FILE * T_STDIO typemap.
15896              - Finish PerlIO_findFILE() and PerlIO_extprtFILE()
15897      Branch: perlio
15898            ! lib/ExtUtils/typemap perlio.c perlio.h
15899 ____________________________________________________________________________
15900 [  8355] By: jhi                                   on 2001/01/06  20:27:15
15901         Log: integrate change #8336 from mainline
15902              
15903              Scoping of %^H still broken in both perl@8269 and perl-5.6.1-TRIAL1
15904      Branch: maint-5.6/perl
15905            ! hv.c
15906 ____________________________________________________________________________
15907 [  8354] By: jhi                                   on 2001/01/06  20:24:29
15908         Log: Subject: [PATCH 5.6.1-TRIAL1 and @8223]; was Re: Perlbug 20000322.006 status update
15909              From: Robin Barker <rmb1@cise.npl.co.uk>
15910              Date: Fri, 22 Dec 2000 12:17:38 GMT
15911              Message-Id: <200012221217.MAA21332@tempest.npl.co.uk>
15912              
15913              The patch reformats some long =item lines so they give
15914              correct output via pod2man | nroff -man
15915              
15916              Subject: [PATCH 5.[67].1]; as Re: [PATCH 5.6.1-TRIAL1 and @8223]; was Re: Perlbug 20000322.006 status update
15917              From: Robin Barker <rmb1@cise.npl.co.uk>
15918              Date: Tue, 2 Jan 2001 15:35:03 GMT
15919              Message-Id: <200101021535.PAA15161@tempest.npl.co.uk>
15920              
15921              Here is a _further_ patch which corrects a few more errors:
15922              * an empty C<=item> in CPAN.pm
15923              * patching the wrong file (pod/perlamiga.pod not README.amiga)
15924              * leaving empty C<=item>s which formatted incorrectly
15925              * over long C<=item>s revealed by latest patch to Pod::Man
15926      Branch: maint-5.6/perl
15927            ! README.amiga lib/CGI.pm lib/CPAN.pm lib/Pod/Select.pm
15928            ! lib/Text/ParseWords.pm lib/Win32.pod pod/perl.pod
15929            ! pod/perl5004delta.pod pod/perl5005delta.pod pod/perlapi.pod
15930            ! pod/perldelta.pod pod/perldiag.pod pod/perlembed.pod
15931            ! pod/perlfaq4.pod pod/perllocale.pod pod/perlmodlib.pod
15932            ! pod/perlrequick.pod pod/perlretut.pod pod/perlsub.pod
15933 ____________________________________________________________________________
15934 [  8353] By: jhi                                   on 2001/01/06  20:21:10
15935         Log: integrate changes #7980, 7990, 8056, 8057 from mainline
15936              
15937              UTF-8 hash keys.
15938      Branch: maint-5.6/perl
15939            ! embed.h embed.pl hv.c hv.h perlapi.c proto.h t/op/each.t
15940 ____________________________________________________________________________
15941 [  8352] By: jhi                                   on 2001/01/06  20:18:44
15942         Log: Forgotten from #8438.
15943      Branch: maint-5.6/perl
15944            ! epoc/epocish.h
15945 ____________________________________________________________________________
15946 [  8351] By: jhi                                   on 2001/01/06  20:18:12
15947         Log: Forgotten from #8347.
15948      Branch: maint-5.6/perl
15949            ! config_h.SH
15950 ____________________________________________________________________________
15951 [  8350] By: jhi                                   on 2001/01/06  20:00:19
15952         Log: Thinko in #8347.
15953      Branch: maint-5.6/perl
15954            ! regcomp.c
15955 ____________________________________________________________________________
15956 [  8349] By: jhi                                   on 2001/01/06  18:05:30
15957         Log: Copy the FAQ3 IDE section from the development branch,
15958              changes originally by Peter Prymmer.
15959      Branch: maint-5.6/perl
15960            ! pod/perlfaq3.pod
15961 ____________________________________________________________________________
15962 [  8348] By: jhi                                   on 2001/01/06  18:03:02
15963         Log: EPOC updates for TRIAL1.
15964              
15965              Subject: [5.6.1 trial1] EPOC update
15966              From: Olaf Flebbe <O.Flebbe@science-computing.de>
15967              Date: Sun, 31 Dec 2000 16:04:52 +0100 (CET)
15968              Message-ID: <Pine.LNX.4.02.10012311603040.14097-100000@milkyway.science-computing.de> 
15969              
15970              Subject: epoc patch2 for perl-5.6.1-trial1
15971              From: Olaf Flebbe <O.Flebbe@science-computing.de>
15972              Date: Sat, 6 Jan 2001 13:55:53 +0100 (CET)
15973              Message-ID: <Pine.LNX.4.02.10101061355220.26469-100000@milkyway.science-computing.de> 
15974      Branch: maint-5.6/perl
15975            ! README.epoc epoc/config.sh epoc/createpkg.pl epoc/epoc.c
15976            ! epoc/epocish.c
15977 ____________________________________________________________________________
15978 [  8347] By: jhi                                   on 2001/01/06  17:29:10
15979         Log: integrate changes #7710,7824,7973 from mainline,
15980              plus VMS nits from Peter Prymmer and Dan Sugalski.
15981              
15982              AIX 4.2 (using latest patchlevels on 20001130) has a broken bind
15983              library (getprotobyname and getprotobynumber are outversioned by
15984              the same calls in libc, at least for xlc version 3.
15985              
15986              Add HAS_SBRK_PROTO.
15987              
15988              Fixes for signedness warnings noticed by VMSperlers.
15989      Branch: maint-5.6/perl
15990            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
15991            ! configure.com epoc/config.sh hints/aix.sh malloc.c regcomp.c
15992            ! sv.c vms/descrip_mms.template vos/config.alpha.def
15993            ! vos/config.alpha.h vos/config.ga.def vos/config.ga.h
15994            ! win32/config.bc win32/config.gc win32/config.vc
15995 ____________________________________________________________________________
15996 [  8346] By: nick                                  on 2001/01/06  14:36:01
15997         Log: Fixup accumulated integrate muddles (perlio == devperl again)
15998      Branch: perlio
15999            ! ext/Encode/Encode.xs perl.c pp_sys.c t/lib/tie-refhash.t
16000 ____________________________________________________________________________
16001 [  8345] By: nick                                  on 2001/01/06  14:24:58
16002         Log: Integrate mainline
16003      Branch: perlio
16004           !> (integrate 55 files)
16005 ____________________________________________________________________________
16006 [  8344] By: jhi                                   on 2001/01/06  02:24:02
16007         Log: Subject: [patch] PerlIO_cleanup() prototype
16008              From: Doug MacEachern <dougm@covalent.net>
16009              Date: Fri, 5 Jan 2001 18:15:31 -0800 (PST)
16010              Message-ID: <Pine.LNX.4.10.10101051813220.340-100000@mojo.covalent.net>
16011      Branch: perl
16012            ! perlio.h
16013 ____________________________________________________________________________
16014 [  8343] By: jhi                                   on 2001/01/06  01:04:09
16015         Log: IRIX compiler noticed that the bof initialization might be
16016              bypassed by control flow.
16017      Branch: perl
16018            ! toke.c
16019 ____________________________________________________________________________
16020 [  8342] By: jhi                                   on 2001/01/06  00:10:48
16021         Log: Update Changes.
16022      Branch: perl
16023            ! Changes patchlevel.h
16024 ____________________________________________________________________________
16025 [  8341] By: jhi                                   on 2001/01/05  23:52:33
16026         Log: Add a note about EBCDIC versus UTF-8 to a potential problem spot.
16027      Branch: perl
16028            ! toke.c
16029 ____________________________________________________________________________
16030 [  8340] By: jhi                                   on 2001/01/05  22:44:08
16031         Log: Subject: [PATCH] Re: [ID 20010105.002] close() on process filehandle leaves defunct process
16032              From: Radu Greab <radu@netsoft.ro>
16033              Date: Fri, 5 Jan 2001 21:04:33 +0200 (EET)
16034              Message-ID: <14934.6849.742435.23178@ix.netsoft.ro>
16035      Branch: perl
16036            ! t/io/pipe.t util.c
16037 ____________________________________________________________________________
16038 [  8339] By: jhi                                   on 2001/01/05  22:35:17
16039         Log: Subject: [PATCH] format and rewording in perlfaq.pod
16040              From: Robin Barker <rmb1@cise.npl.co.uk>
16041              Date: Fri, 5 Jan 2001 18:51:20 GMT
16042              Message-Id: <200101051851.SAA03310@tempest.npl.co.uk>
16043      Branch: perl
16044            ! pod/perlfaq.pod
16045 ____________________________________________________________________________
16046 [  8338] By: jhi                                   on 2001/01/05  22:31:17
16047         Log: Subject: [patch: perl@8327] have perlbug's Save to File respect -F flag
16048              From: Peter Prymmer <pvhp@forte.com>
16049              Date: Fri, 5 Jan 2001 14:02:13 -0800 (PST)
16050              Message-ID: <Pine.OSF.4.10.10101051357400.28294-100000@aspara.forte.com>
16051      Branch: perl
16052            ! utils/perlbug.PL
16053 ____________________________________________________________________________
16054 [  8337] By: jhi                                   on 2001/01/05  18:15:11
16055         Log: Subject: [PATCH 5.7.1/Configure] failure to set src='.'
16056              From: Robin Barker <rmb1@cise.npl.co.uk>
16057              Date: Tue, 2 Jan 2001 15:24:07 GMT
16058              Message-Id: <200101021524.PAA15145@tempest.npl.co.uk>
16059              
16060              If you call configure as C<./Configure> or C<sh ./Configure>,
16061              $src is set to the absolute path name, not '.'.
16062              
16063              This, in turn, means -Dmksymlink tries to do its stuff because
16064              it does not think it is in the src directory.
16065              
16066              (plus a metaconfig nitfix)
16067      Branch: metaconfig
16068            ! U/compline/ccflags.U U/modified/src.U
16069      Branch: perl
16070            ! Configure config_h.SH
16071 ____________________________________________________________________________
16072 [  8336] By: jhi                                   on 2001/01/05  17:48:32
16073         Log: Subject: Re: [Fwd: Scoping of %^H still broken in both perl@8269 and perl-5.6.1-TRIAL1]
16074              From: Alan Burlison <Alan.Burlison@uk.sun.com>
16075              Message-ID: <3A5606C4.473D2226@uk.sun.com>
16076              Date: Fri, 05 Jan 2001 17:39:16 +0000
16077      Branch: perl
16078            ! hv.c
16079 ____________________________________________________________________________
16080 [  8335] By: jhi                                   on 2001/01/05  16:05:44
16081         Log: Upgrade to Getopt::Long 2.24_01, from Johan Vromans.
16082      Branch: perl
16083            ! lib/Getopt/Long.pm
16084 ____________________________________________________________________________
16085 [  8334] By: jhi                                   on 2001/01/05  16:00:51
16086         Log: Subject: PATCH 5.6.1 & blead 8327 -- workaround for t/io/fs.t
16087              From: Raphael Manfredi <Raphael_Manfredi@pobox.com>
16088              Date: Fri, 05 Jan 2001 13:46:51 +0100
16089              Message-ID: <13693.978698811@nice.ram.loc>
16090              
16091              Apparently, the glibc2.2 + linux 2.4.0 + NFS combination prevent
16092              accurate reading of the "atime".  
16093      Branch: perl
16094            ! t/io/fs.t
16095 ____________________________________________________________________________
16096 [  8333] By: jhi                                   on 2001/01/05  15:57:37
16097         Log: Subject: [PATCH] Re: ebcdic <-> ascii tables interjected in uv <-> utf8 considered harmful 
16098              From: Simon Cozens <simon@cozens.net>
16099              Date: Fri, 8 Dec 2000 13:33:31 +0000
16100              Message-ID: <20001208133331.A11535@deep-dark-truthful-mirror.perlhacker.org> 
16101              
16102              A lost patch fragment.
16103      Branch: perl
16104            ! doop.c
16105 ____________________________________________________________________________
16106 [  8332] By: jhi                                   on 2001/01/05  15:40:42
16107         Log: Do away with strncpy() and a fixed length buffer.
16108      Branch: perl
16109            ! utf8.c
16110 ____________________________________________________________________________
16111 [  8331] By: jhi                                   on 2001/01/05  15:03:07
16112         Log: Tests for #8329 and #8330.
16113      Branch: perl
16114            ! t/op/bop.t
16115 ____________________________________________________________________________
16116 [  8330] By: jhi                                   on 2001/01/05  15:02:38
16117         Log: "\x{FF}\xFF" was broken, the \xFF was appended in its
16118              raw 8-bit form to the UTF-8 string.
16119      Branch: perl
16120            ! toke.c
16121 ____________________________________________________________________________
16122 [  8329] By: jhi                                   on 2001/01/05  14:55:13
16123         Log: Subject: [PATCH perl@8327] strings with \x{..} in the middle are corrupted 
16124              From: "Roca, Ignasi" <ignasi.roca@fujitsu.siemens.es>
16125              Date: Fri, 5 Jan 2001 12:28:52 +0100
16126              Message-ID: <5930DC161690D211966700902715754703738F96@madt009a.siemens.es>
16127              
16128              UTF-8 parsing fix that seems to be needed for EBCDIC, in ASCII
16129              no effect.  (changed the strncpy() to Copy())
16130      Branch: perl
16131            ! toke.c
16132 ____________________________________________________________________________
16133 [  8328] By: jhi                                   on 2001/01/05  06:44:27
16134         Log: UTF-8 cleanup.
16135      Branch: perl
16136            ! doop.c op.c pp.c pp_ctl.c pp_hot.c pp_sys.c regcomp.c
16137            ! regexec.c sv.c toke.c
16138 ____________________________________________________________________________
16139 [  8327] By: jhi                                   on 2001/01/05  01:11:29
16140         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')
16141              From: Radu Greab <radu@netsoft.ro>
16142              Message-ID: <14933.5458.672637.641215@ix.netsoft.ro>
16143              Date: Fri, 5 Jan 2001 02:29:06 +0200 (EET)
16144              
16145              Cleans up Harness to not use FileHandle, which uses IO.
16146      Branch: perl
16147            ! lib/Test/Harness.pm t/lib/ftmp-mktemp.t t/lib/ftmp-posix.t
16148 ____________________________________________________________________________
16149 [  8326] By: jhi                                   on 2001/01/05  00:56:37
16150         Log: Update Changes.
16151      Branch: perl
16152            ! Changes patchlevel.h
16153 ____________________________________________________________________________
16154 [  8325] By: jhi                                   on 2001/01/05  00:53:18
16155         Log: Subject: Re: [patch bug 20010103.019] Re: perl@8269: failure to build on NT 4.0.1381 with MSVC (fwd)
16156              From: Peter Prymmer <pvhp@forte.com>
16157              Date: Thu, 4 Jan 2001 14:20:15 -0800 (PST)
16158              Message-ID: <Pine.OSF.4.10.10101041406420.492782-100000@aspara.forte.com>
16159              
16160              plus a couple more tailing whitespace removals.
16161      Branch: perl
16162            ! win32/Makefile
16163 ____________________________________________________________________________
16164 [  8324] By: jhi                                   on 2001/01/05  00:47:39
16165         Log: Add some Unicode chop() tests.
16166      Branch: perl
16167            ! t/op/chop.t
16168 ____________________________________________________________________________
16169 [  8323] By: jhi                                   on 2001/01/05  00:47:23
16170         Log: Unify UTF-8 malformedness handling.
16171      Branch: perl
16172            ! doop.c pp.c sv.c toke.c utf8.c utf8.h
16173 ____________________________________________________________________________
16174 [  8322] By: jhi                                   on 2001/01/04  22:21:54
16175         Log: The new $issymlink was unknown to Mksymlinks.
16176      Branch: metaconfig/U/perl
16177            ! Mksymlinks.U issymlink.U
16178      Branch: perl
16179            ! Configure config_h.SH
16180 ____________________________________________________________________________
16181 [  8321] By: jhi                                   on 2001/01/04  21:51:05
16182         Log: The test didn't work under the core test framework.
16183      Branch: perl
16184            ! t/lib/st-lock.t
16185 ____________________________________________________________________________
16186 [  8320] By: jhi                                   on 2001/01/04  21:14:22
16187         Log: DB3 NDBM/ODBM emulation tweaks from Stanislav Brabec <utx@penguin.cz>.
16188      Branch: perl
16189            ! INSTALL ext/NDBM_File/NDBM_File.xs ext/ODBM_File/ODBM_File.xs
16190 ____________________________________________________________________________
16191 [  8319] By: jhi                                   on 2001/01/04  20:46:17
16192         Log: Typo in #8312 when manually appying a problematic patch fragment.
16193      Branch: perl
16194            ! ext/Storable/Storable.xs
16195 ____________________________________________________________________________
16196 [  8318] By: jhi                                   on 2001/01/04  20:43:01
16197         Log: The $sh_c didn't fly.
16198      Branch: metaconfig
16199            ! U/compline/ccflags.U U/compline/d_keepsig.U U/modified/Head.U
16200            ! U/modified/Loc.U U/modified/myhostname.U
16201            ! U/modified/spitshell.U
16202      Branch: metaconfig/U/perl
16203            ! issymlink.U
16204      Branch: perl
16205            ! Configure config_h.SH
16206 ____________________________________________________________________________
16207 [  8317] By: jhi                                   on 2001/01/04  19:58:01
16208         Log: AIX builtin test -h is broken, changes based on
16209              
16210              Subject: [PATCH] 8297. Symlink stuff breaks on AIX 4 bsh
16211              Date: Tue, 02 Jan 2001 11:24:39 +0100
16212              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
16213              Message-Id: <20010102093747.A6F7.H.M.BRAND@hccnet.nl>
16214      Branch: metaconfig
16215            + U/modified/spitshell.U
16216            ! U/compline/ccflags.U U/compline/d_keepsig.U U/modified/Head.U
16217            ! U/modified/Loc.U U/modified/myhostname.U
16218      Branch: metaconfig/U/perl
16219            ! Mksymlinks.U issymlink.U
16220      Branch: perl
16221            ! Configure
16222 ____________________________________________________________________________
16223 [  8316] By: jhi                                   on 2001/01/04  19:02:22
16224         Log: Subject: [PATCH] Re: New attempt on hints/solaris_2.sh
16225              From: Andy Dougherty <doughera@lafayette.edu>
16226              Message-ID: <Pine.SOL.4.10.10101031518320.28840-100000@maxwell.phys.lafayette.edu>
16227              Date: Wed, 3 Jan 2001 15:36:06 -0500 (EST)
16228              
16229              Beware of GNU ld.
16230      Branch: perl
16231            ! hints/solaris_2.sh
16232 ____________________________________________________________________________
16233 [  8315] By: jhi                                   on 2001/01/04  18:56:48
16234         Log: From: Lupe Christoph <lupe@lupe-christoph.de>
16235              Subject: Re: [PATCH 5.7.1/Configure] failure to set src='.'
16236              Date: Wed, 3 Jan 2001 07:58:51 +0100
16237              Message-ID: <20010103075851.P4594@alanya.lupe-christoph.de>
16238      Branch: perl
16239            ! hints/solaris_2.sh
16240 ____________________________________________________________________________
16241 [  8314] By: jhi                                   on 2001/01/04  18:54:07
16242         Log: Subject: Re: [PATCH @8269] Continue blocks and B::Deparse
16243              From: Stephen McCamant <smcc@CSUA.Berkeley.EDU>
16244              Date: Wed,  3 Jan 2001 13:48:04 -0800 (PST)
16245              Message-ID: <14931.40265.379608.910008@soda.csua.berkeley.edu>
16246              
16247              Doc tweak on #8313.
16248      Branch: perl
16249            ! ext/B/B/Deparse.pm
16250 ____________________________________________________________________________
16251 [  8313] By: jhi                                   on 2001/01/04  18:52:27
16252         Log: Subject: [PATCH @8269] Continue blocks and B::Deparse
16253              Date: Wed,  3 Jan 2001 13:31:53 -0800 (PST)
16254              From: Stephen McCamant <smcc@CSUA.Berkeley.EDU>
16255              Message-ID: <14931.37732.62835.279605@soda.csua.berkeley.edu>
16256              
16257              Make the peephole optimizer to bypass more null ops and
16258              and rewrite the deparse handling of continue blocks.
16259      Branch: perl
16260            ! ext/B/B/Deparse.pm op.c op.h t/lib/b.t
16261 ____________________________________________________________________________
16262 [  8312] By: jhi                                   on 2001/01/04  18:47:39
16263         Log: Upgrade to Storable 1.0.7, from Raphael Manfredi.
16264      Branch: perl
16265            ! ext/Storable/ChangeLog ext/Storable/Makefile.PL
16266            ! ext/Storable/Storable.pm ext/Storable/Storable.xs
16267            ! t/lib/st-lock.t
16268 ____________________________________________________________________________
16269 [  8311] By: jhi                                   on 2001/01/04  18:36:08
16270         Log: Add a new MakeMaker variable PM_FILTER that defines a Unix
16271              filter to be run on each .pm during the pm_to_blib() phase,
16272              a fixed version of
16273              
16274              Subject: PATCH (blead 8269) ExtUtils::MakeMaker
16275              From: Raphael Manfredi <Raphael_Manfredi@pobox.com>
16276              Date: Wed, 03 Jan 2001 22:01:30 +0100
16277              Message-ID: <5296.978555690@nice.ram.loc>
16278      Branch: perl
16279            ! lib/ExtUtils/Install.pm lib/ExtUtils/MM_Unix.pm
16280            ! lib/ExtUtils/MM_VMS.pm lib/ExtUtils/MM_Win32.pm
16281            ! lib/ExtUtils/MakeMaker.pm
16282 ____________________________________________________________________________
16283 [  8310] By: jhi                                   on 2001/01/04  18:32:54
16284         Log: Subject: [PATCH 5.[67].1]; as Re: [PATCH 5.6.1-TRIAL1 and @8223]; was Re: Perlbug 20000322.006 status update
16285              From: Robin Barker <rmb1@cise.npl.co.uk>
16286              Date: Tue, 2 Jan 2001 15:35:03 GMT
16287              Message-Id: <200101021535.PAA15161@tempest.npl.co.uk>
16288      Branch: perl
16289            ! README.amiga lib/CPAN.pm lib/Win32.pod pod/perl56delta.pod
16290            ! pod/perlrequick.pod
16291 ____________________________________________________________________________
16292 [  8309] By: jhi                                   on 2001/01/04  18:29:07
16293         Log: Subject: Re: [patch] static-ize XS()
16294              From: Doug MacEachern <dougm@covalent.net>
16295              Date: Mon, 1 Jan 2001 15:26:01 -0800 (PST)
16296              Message-ID: <Pine.LNX.4.10.10101011523560.3379-100000@mojo.covalent.net>
16297              
16298              Provide prototypes for the XS functions.
16299      Branch: perl
16300            ! lib/ExtUtils/xsubpp
16301 ____________________________________________________________________________
16302 [  8308] By: jhi                                   on 2001/01/04  18:27:44
16303         Log: Subject: [patch] typemap =~ s/croak/Perl_croak/
16304              From: Doug MacEachern <dougm@covalent.net>
16305              Date: Mon, 1 Jan 2001 11:41:57 -0800 (PST)
16306              Message-ID: <Pine.LNX.4.10.10101011139570.3379-100000@mojo.covalent.net>
16307      Branch: perl
16308            ! lib/ExtUtils/typemap
16309 ____________________________________________________________________________
16310 [  8307] By: jhi                                   on 2001/01/04  18:25:25
16311         Log: Subject: Re: [patch] MM_Unix cpprun shortcut
16312              From: Doug MacEachern <dougm@covalent.net>
16313              Date: Wed, 3 Jan 2001 20:09:57 -0800 (PST)
16314              Message-ID: <Pine.LNX.4.10.10101032009330.280-100000@mojo.covalent.net>
16315              
16316              Add a .c.i: MakeMaker make rule to create cpreprocessed outputs.
16317      Branch: perl
16318            ! lib/ExtUtils/MM_Unix.pm
16319 ____________________________________________________________________________
16320 [  8306] By: jhi                                   on 2001/01/04  18:23:00
16321         Log: Subject: [PATCH perl@8269] Corrections for Perl_yylex_r (used by a reentrant parser as Bison)
16322              From: "Roca, Ignasi" <ignasi.roca@fujitsu.siemens.es>
16323              Date: Thu, 4 Jan 2001 12:47:10 +0100 
16324              Message-ID: <5930DC161690D21196670090271575470370111A@madt009a.siemens.es>
16325              
16326              The toke.c part only, patching embed.h and proto.h is futile.
16327      Branch: perl
16328            ! toke.c
16329 ____________________________________________________________________________
16330 [  8305] By: jhi                                   on 2001/01/04  18:05:51
16331         Log: Subject: [PATCH perl@8269] scanning two hex-constants fails on EBCDIC environment (script length.t)
16332              From: "Roca, Ignasi" <ignasi.roca@fujitsu.siemens.es>
16333              Date: Thu, 4 Jan 2001 17:50:12 +0100 
16334              Message-ID: <5930DC161690D211966700902715754703738AA6@madt009a.siemens.es>
16335      Branch: perl
16336            ! toke.c
16337 ____________________________________________________________________________
16338 [  8304] By: jhi                                   on 2001/01/04  18:03:26
16339         Log: Subject: [PATCH perl@8269]
16340              From: "Roca, Ignasi" <ignasi.roca@fujitsu.siemens.es>
16341              Date: Thu, 4 Jan 2001 12:53:39 +0100 
16342              Message-ID: <5930DC161690D211966700902715754703701130@madt009a.siemens.es>
16343              
16344              If running byacc write-enable also perly.h.
16345      Branch: perl
16346            ! Makefile.SH
16347 ____________________________________________________________________________
16348 [  8303] By: jhi                                   on 2001/01/04  15:40:49
16349         Log: Rewrite pp_concat() in terms of sv_catsv().
16350      Branch: perl
16351            ! pp_hot.c
16352 ____________________________________________________________________________
16353 [  8302] By: nick                                  on 2001/01/03  22:43:22
16354         Log: Integrate mainline.
16355      Branch: perlio
16356           !> ext/Encode/Encode.xs sv.c utf8.c
16357 ____________________________________________________________________________
16358 [  8301] By: jhi                                   on 2001/01/02  23:40:26
16359         Log: Variable naming tweak.
16360      Branch: perl
16361            ! sv.c
16362 ____________________________________________________________________________
16363 [  8300] By: jhi                                   on 2001/01/02  23:40:02
16364         Log: Use the UTF8_XXX macros in is_utf8_char(), a performance nit
16365              in is_utf8_string().
16366      Branch: perl
16367            ! utf8.c
16368 ____________________________________________________________________________
16369 [  8299] By: jhi                                   on 2001/01/02  22:14:40
16370         Log: Integrate perlio.
16371      Branch: perl
16372           !> pp.c pp_hot.c win32/Makefile
16373 ____________________________________________________________________________
16374 [  8298] By: nick                                  on 2001/01/02  22:03:06
16375         Log: Turn SvUTF8 off if not required in pp_chr and pp_stringify.
16376      Branch: perlio
16377            ! pp.c pp_hot.c
16378 ____________________________________________________________________________
16379 [  8297] By: jhi                                   on 2001/01/02  04:26:28
16380         Log: Signedness nit.
16381      Branch: perl
16382            ! ext/Encode/Encode.xs
16383 ____________________________________________________________________________
16384 [  8296] By: nick                                  on 2001/01/01  23:49:36
16385         Log: Add Encode and correct Filter/Util/Call in nmake Makefile
16386      Branch: perlio
16387            ! win32/Makefile
16388 ____________________________________________________________________________
16389 [  8295] By: jhi                                   on 2001/01/01  23:05:48
16390         Log: Integrate perlio.
16391      Branch: perl
16392           !> ext/Encode/Encode.pm ext/Encode/Encode.xs pp_hot.c
16393           !> t/lib/encode.t
16394 ____________________________________________________________________________
16395 [  8294] By: nick                                  on 2001/01/01  22:48:34
16396         Log: Integrate mainline
16397      Branch: perlio
16398            ! pp_hot.c t/lib/encode.t
16399           !> (integrate 65 files)
16400 ____________________________________________________________________________
16401 [  8293] By: nick                                  on 2001/01/01  21:58:50
16402         Log: More rigor in UTF-8-ness of Encode's toUnicode
16403              XS export some of the utf8 internal functions.
16404              Test some of the functions.
16405              Fix pp_concat() bug shown by said tests.
16406      Branch: perlio
16407            ! ext/Encode/Encode.pm ext/Encode/Encode.xs pp_hot.c
16408            ! t/lib/encode.t
16409 ____________________________________________________________________________
16410 [  8292] By: jhi                                   on 2001/01/01  18:11:44
16411         Log: Integrate perlio.
16412      Branch: perl
16413           !> ext/Encode/Encode.pm ext/Encode/Encode.xs ext/Encode/compile
16414           !> ext/Encode/encengine.c ext/Encode/encode.h
16415 ____________________________________________________________________________
16416 [  8291] By: jhi                                   on 2001/01/01  18:10:58
16417         Log: Podify README.mpeix (a new version from the web),
16418              add a dummy NAME to Carp::Heavy, regen toc.
16419      Branch: perl
16420            ! README.mpeix lib/Carp/Heavy.pm pod/buildtoc.PL pod/perl.pod
16421            ! pod/perltoc.pod
16422 ____________________________________________________________________________
16423 [  8290] By: nick                                  on 2001/01/01  17:43:47
16424         Log: Loose the "Loading..." warning.
16425              Another bug in fallback support
16426      Branch: perlio
16427            ! ext/Encode/Encode.pm ext/Encode/encengine.c
16428 ____________________________________________________________________________
16429 [  8289] By: jhi                                   on 2001/01/01  00:01:57
16430         Log: Bump up Larry's copyright.
16431      Branch: perl
16432            ! EXTERN.h INTERN.h README av.c av.h cop.h cv.h deb.c doio.c
16433            ! doop.c dump.c ext/DynaLoader/dl_dld.xs form.h gv.c gv.h
16434            ! handy.h hv.c hv.h mg.c mg.h op.c op.h perl.c perl.h perly.y
16435            ! pp.c pp.h pp_ctl.c pp_hot.c pp_sys.c regcomp.c regexec.c run.c
16436            ! scope.c sv.c sv.h toke.c utf8.c utf8.h util.c util.h
16437            ! x2p/EXTERN.h x2p/INTERN.h x2p/a2p.c x2p/a2p.h x2p/a2p.y
16438            ! x2p/a2py.c x2p/hash.c x2p/hash.h x2p/proto.h x2p/str.c
16439            ! x2p/str.h x2p/util.c x2p/util.h x2p/walk.c
16440 ____________________________________________________________________________
16441 [  8288] By: nick                                  on 2000/12/31  21:27:53
16442         Log: Fix .ucm reading - forgot a chr()
16443              Start of .ucm write (for .enc to .ucm)
16444      Branch: perlio
16445            ! ext/Encode/compile
16446 ____________________________________________________________________________
16447 [  8287] By: jhi                                   on 2000/12/31  18:15:56
16448         Log: Comment away a diagnostic message as noted by Craig A. Berry
16449              (the unexpected message was confusing testing)
16450      Branch: perl
16451            ! ext/Encode/Encode.pm
16452 ____________________________________________________________________________
16453 [  8286] By: jhi                                   on 2000/12/31  18:14:51
16454         Log: Subject: [PATCH perl@8269] ext/Encode/Makefile.PL line shortening
16455              Date: Sun, 31 Dec 2000 11:17:37 -0600
16456              From: "Craig A. Berry" <craigberry@mac.com>
16457              Message-Id: <5.0.2.1.0.20001230195844.025636c0@exchi01>
16458      Branch: perl
16459            ! ext/Encode/Makefile.PL
16460 ____________________________________________________________________________
16461 [  8285] By: nick                                  on 2000/12/31  18:11:54
16462         Log: Start of support of ICU-style .ucm files:
16463              - teach compile how to read a .ucm file
16464              - first guess at how to represent fallbacks in "tries".
16465              - use fallbacks if check == 0
16466              - new return code to indicate we used one.
16467      Branch: perlio
16468            ! ext/Encode/Encode.pm ext/Encode/Encode.xs ext/Encode/compile
16469            ! ext/Encode/encengine.c ext/Encode/encode.h
16470 ____________________________________________________________________________
16471 [  8284] By: jhi                                   on 2000/12/31  18:04:41
16472         Log: Pacify picky VMS compiler.
16473              
16474              Subject: perl@8269, whiny Compaq C compiler, unsigned expressions
16475              From: "Craig A. Berry" <craig.berry@psinetcs.com>
16476              Date: Sat, 30 Dec 2000 18:10:02 -0600
16477              Message-Id: <200012310010.CAA09719@tiku.hut.fi>
16478      Branch: perl
16479            ! sv.c
16480 ____________________________________________________________________________
16481 [  8283] By: jhi                                   on 2000/12/31  16:11:47
16482         Log: Wrong alarm: cygwin's getpwuid() is just fine (from Gerrit P. Haase)
16483      Branch: perl
16484            ! t/lib/glob-basic.t
16485 ____________________________________________________________________________
16486 [  8282] By: jhi                                   on 2000/12/31  15:26:11
16487         Log: Integrate perlio.
16488      Branch: perl
16489           !> makedef.pl opcode.pl os2/os2.c perlio.c
16490 ____________________________________________________________________________
16491 [  8281] By: nick                                  on 2000/12/31  10:06:15
16492         Log: Tweak perlio.c so that makedef.pl-exported perlsio_binmode()
16493              is available to be exported
16494      Branch: perlio
16495            ! makedef.pl perlio.c
16496 ____________________________________________________________________________
16497 [  8280] By: nick                                  on 2000/12/31  09:41:26
16498         Log: Ilya's OS2 patch (testing for damage on Win32)
16499      Branch: perlio
16500            ! makedef.pl opcode.pl os2/os2.c
16501 ____________________________________________________________________________
16502 [  8279] By: jhi                                   on 2000/12/30  21:52:07
16503         Log: Test nits.
16504      Branch: perl
16505            ! t/lib/syslfs.t t/op/lfs.t
16506 ____________________________________________________________________________
16507 [  8278] By: jhi                                   on 2000/12/30  21:47:49
16508         Log: Subject: Re: [ID 20001229.001] Not OK: perl v5.7.0 +DEVEL8221 on i686-linux 2.4.0-test13pre4-ac2 -2 (UNINSTALLED)
16509              From: andreas.koenig@anima.de (Andreas J. Koenig)
16510              Date: 30 Dec 2000 22:35:37 +0100
16511              Message-ID: <m3vgs1a8ye.fsf@ak-71.mind.de>
16512              
16513              The 32-bit wraparound test wasn't quite right.
16514      Branch: perl
16515            ! t/lib/syslfs.t t/op/lfs.t
16516 ____________________________________________________________________________
16517 [  8277] By: jhi                                   on 2000/12/30  21:33:44
16518         Log: Subject: [PATCH] open() example in perlfunc.pod 
16519              From: Karsten Sperling <s_sperli@ira.uka.de>
16520              Date: Sat, 30 Dec 2000 22:27:09 +0100
16521              Message-ID: <"iraun1.ira.0090801:001230.213049"@ira.uka.de>
16522      Branch: perl
16523            ! pod/perlfunc.pod
16524 ____________________________________________________________________________
16525 [  8276] By: jhi                                   on 2000/12/30  20:32:40
16526         Log: Not quite that many tests yet.
16527      Branch: perl
16528            ! t/op/pat.t
16529 ____________________________________________________________________________
16530 [  8275] By: jhi                                   on 2000/12/30  20:26:58
16531         Log: Integrate perlio.
16532      Branch: perl
16533           !> toke.c
16534 ____________________________________________________________________________
16535 [  8274] By: jhi                                   on 2000/12/30  20:24:56
16536         Log: Signedness nit.
16537      Branch: perl
16538            ! utf8.c
16539 ____________________________________________________________________________
16540 [  8273] By: jhi                                   on 2000/12/30  20:15:46
16541         Log: Add a test case for 20000731.001 which was fixed by the #8267.
16542      Branch: perl
16543            ! t/op/pat.t
16544 ____________________________________________________________________________
16545 [  8272] By: nick                                  on 2000/12/30  19:47:51
16546         Log: Tweak for MULTIPLICITY/USE_PERLIO
16547      Branch: perlio
16548            ! toke.c
16549 ____________________________________________________________________________
16550 [  8271] By: nick                                  on 2000/12/30  19:46:45
16551         Log: Integrate mainline
16552      Branch: perlio
16553           +> lib/unicode/distinct.pm
16554           !> Changes MANIFEST doop.c embed.h embed.pl mg.c op.c op.h
16555           !> patchlevel.h perl.h pod/perlapi.pod pp.c pp_ctl.c pp_hot.c
16556           !> proto.h regcomp.c regcomp.h regexec.c sv.c t/op/split.t utf8.c
16557 ____________________________________________________________________________
16558 [  8270] By: jhi                                   on 2000/12/30  19:39:50
16559         Log: Subject: RE: perl@8269
16560              From: "Richard Soderberg" <rs@crystalflame.net>
16561              Date: Sat, 30 Dec 2000 11:36:27 -0800
16562              Message-ID: <NAEKLNAAHLMBPMPNBMLEIEAKCKAA.rs@crystalflame.net>
16563              
16564              A missing aTHX_.
16565      Branch: perl
16566            ! toke.c
16567 ____________________________________________________________________________
16568 [  8269] By: jhi                                   on 2000/12/30  18:55:48
16569         Log: Update Changes.
16570      Branch: perl
16571            ! Changes patchlevel.h
16572 ____________________________________________________________________________
16573 [  8268] By: jhi                                   on 2000/12/30  17:18:40
16574         Log: Add a test for Unicode split //.  The #8267 was the cure.
16575      Branch: perl
16576            ! t/op/split.t
16577 ____________________________________________________________________________
16578 [  8267] By: jhi                                   on 2000/12/30  17:14:19
16579         Log: Subject: more UTF8 test suites and an UTF8 patch
16580              From: Inaba Hiroto <inaba@st.rim.or.jp>
16581              Date: Sat, 30 Dec 2000 14:27:10 +0900
16582              Message-ID: <3A4D722D.243AFD88@st.rim.or.jp> 
16583              
16584              Just the patch part for now, and the pragma renamed
16585              as unicode::distinct.
16586      Branch: perl
16587            + lib/unicode/distinct.pm
16588            ! MANIFEST doop.c embed.h embed.pl mg.c op.c op.h perl.h
16589            ! pod/perlapi.pod pp.c pp_ctl.c pp_hot.c proto.h regcomp.c
16590            ! regcomp.h regexec.c sv.c toke.c utf8.c
16591 ____________________________________________________________________________
16592 [  8266] By: nick                                  on 2000/12/30  16:40:49
16593         Log: Integrate mainline
16594      Branch: perlio
16595           +> lib/Pod/Text/Overstrike.pm
16596           !> MANIFEST doio.c hints/dec_osf.sh hv.c lib/Pod/Man.pm
16597           !> lib/Pod/Text/Color.pm lib/Pod/Text/Termcap.pm op.c
16598           !> pod/pod2text.PL sv.c t/lib/syslfs.t t/op/join.t t/op/lfs.t
16599           !> t/pragma/constant.t t/pragma/sub_lval.t t/pragma/utf8.t util.c
16600           !> vms/vms.c vms/vmsish.h vms/vmspipe.com
16601 ____________________________________________________________________________
16602 [  8265] By: jhi                                   on 2000/12/30  07:28:55
16603         Log: The sv_catsv() fix, take two.
16604      Branch: perl
16605            ! sv.c t/op/join.t
16606 ____________________________________________________________________________
16607 [  8264] By: jhi                                   on 2000/12/30  06:19:18
16608         Log: Undo all the join-related changes since #8248: relevant
16609              portions of 8248, 8249, 8250, 8251, 8260, 8263 must go.
16610              The new sv_catsv() doesn't fly so it must go back to
16611              the drawing board.
16612      Branch: perl
16613            ! sv.c t/op/join.t t/pragma/utf8.t
16614 ____________________________________________________________________________
16615 [  8263] By: jhi                                   on 2000/12/30  01:08:32
16616         Log: (Retracted by #8264)  Tweak sv_catsv() some more.
16617      Branch: perl
16618            ! sv.c
16619 ____________________________________________________________________________
16620 [  8262] By: jhi                                   on 2000/12/30  00:45:14
16621         Log: Retract #8261.
16622      Branch: perl
16623            ! hv.c util.c
16624 ____________________________________________________________________________
16625 [  8261] By: jhi                                   on 2000/12/30  00:38:32
16626         Log: (Retracted by #8261). (Unsuccessful memory access tweaks.)
16627      Branch: perl
16628            ! hv.c util.c
16629 ____________________________________________________________________________
16630 [  8260] By: jhi                                   on 2000/12/29  22:51:33
16631         Log: (Retracted by #8264)  More fixing for #8251.
16632      Branch: perl
16633            ! sv.c
16634 ____________________________________________________________________________
16635 [  8259] By: jhi                                   on 2000/12/29  18:27:30
16636         Log: Subject: podlators 1.06 released
16637              From: Russ Allbery <rra@stanford.edu>
16638              Date: 25 Dec 2000 05:09:30 -0800
16639              Message-ID: <ylwvcosl4l.fsf@windlord.stanford.edu>
16640      Branch: perl
16641            + lib/Pod/Text/Overstrike.pm
16642            ! MANIFEST lib/Pod/Man.pm lib/Pod/Text/Color.pm
16643            ! lib/Pod/Text/Termcap.pm pod/pod2text.PL
16644 ____________________________________________________________________________
16645 [  8258] By: jhi                                   on 2000/12/29  18:20:45
16646         Log: Make the large file tests more robust/talkative as suggested by
16647              
16648              Subject: Re: [ID 20001229.001] Not OK: perl v5.7.0 +DEVEL8221 on i686-linux 2.4.0-test13pre4-ac2 -2 (UNINSTALLED)
16649              From: andreas.koenig@anima.de (Andreas J. Koenig)
16650              Date: 29 Dec 2000 14:23:01 +0100
16651              Message-ID: <m3snn7uzt6.fsf@ak-71.mind.de>
16652      Branch: perl
16653            ! t/lib/syslfs.t t/op/lfs.t
16654 ____________________________________________________________________________
16655 [  8257] By: jhi                                   on 2000/12/29  17:48:04
16656         Log: Further VMS piping fixes from Charles Lane:
16657              
16658              In summary, error messages produced when a subprocess terminated
16659              abnormally were being sent not just to the parent process, but to
16660              grandparents, because of default values for error output that were
16661              not completely overridden when the subprocess was started.
16662              
16663              This patch fixes this behavior by defining user-mode (i.e., temporary
16664              for the duration of the program) logical names for SYS$OUTPUT and
16665              SYS$ERROR when they are (re)opened inside Perl.  And a bunch of other
16666              changes to make it so that the user-mode logicals are the ones that
16667              control where Perl's error messages go if it terminates abnormally.
16668              
16669              I also added some gratuitous fixes to the indentation of braces in
16670              the piping code.  It just looked ugly, before.
16671      Branch: perl
16672            ! doio.c vms/vms.c vms/vmsish.h vms/vmspipe.com
16673 ____________________________________________________________________________
16674 [  8256] By: jhi                                   on 2000/12/29  17:45:12
16675         Log: Subject: [PATCH] Idea: Declare multiple constants at once (fwd)
16676              From: "Casey R. Tweten" <crt@kiski.net>
16677              Date: Fri, 29 Dec 2000 12:03:00 -0500 (EST)
16678              Message-ID: <Pine.OSF.4.21.0012291201150.17186-100000@home.kiski.net>
16679              
16680              Tests for for #8240.
16681      Branch: perl
16682            ! t/pragma/constant.t
16683 ____________________________________________________________________________
16684 [  8255] By: jhi                                   on 2000/12/29  17:43:07
16685         Log: Subject: Re: [PATCH] Interesting syntax idea
16686              From: Simon Cozens <simon@cozens.net>
16687              Date: Fri, 29 Dec 2000 14:34:04 +0000
16688              Message-ID: <20001229143404.A7762@deep-dark-truthful-mirror.perlhacker.org>
16689              
16690              Tests for #8254.
16691      Branch: perl
16692            ! t/pragma/sub_lval.t
16693 ____________________________________________________________________________
16694 [  8254] By: jhi                                   on 2000/12/29  17:42:11
16695         Log: Subject: [PATCH] Interesting syntax idea
16696              From: Simon Cozens <simon@cozens.net>
16697              Date: Wed, 27 Dec 2000 05:08:57 +0000
16698              Message-ID: <20001227050857.A11296@deep-dark-truthful-mirror.perlhacker.org>
16699              
16700              Make opens + bareword assigns do typeglob assigns.
16701      Branch: perl
16702            ! op.c
16703 ____________________________________________________________________________
16704 [  8253] By: jhi                                   on 2000/12/29  17:36:45
16705         Log: Output the (apparent) version of gcc, as suggested by
16706              
16707              Subject: [ID 20001226.001] dec_osf.sh mis-parses gcc version 2.95.2 as less than 2.95, causing installation-failure
16708              From: jhbrown@ai.mit.edu (Jeremy H. Brown)
16709              Date: 26 Dec 2000 04:29:17 -0500
16710              Message-Id: <uv6puify1hu.fsf@suspiria.ai.mit.edu>
16711              
16712              (The patch as such didn't any more apply as the misparsing had
16713              already been addressed in #6474.)  Also change the wording about
16714              gcc 2.95.2, for Jeremy it didn't break sdbm, for me it did.
16715      Branch: perl
16716            ! hints/dec_osf.sh
16717 ____________________________________________________________________________
16718 [  8252] By: nick                                  on 2000/12/29  12:14:31
16719         Log: Integrate mainline
16720      Branch: perlio
16721           !> (integrate 27 files)
16722 ____________________________________________________________________________
16723 [  8251] By: jhi                                   on 2000/12/29  08:45:46
16724         Log: (Retracted by #8264)
16725              
16726              (Fixed by #8260.)
16727              
16728              sv_catsv() needs one more byte space than seems reasonable.
16729              (for join() and PERL_DESTRUCT_LEVEL=2, built with debugging).
16730              Curiouser and curiouser.
16731      Branch: perl
16732            ! sv.c
16733 ____________________________________________________________________________
16734 [  8250] By: jhi                                   on 2000/12/29  07:57:52
16735         Log: More split // UTF-8 tests.
16736      Branch: perl
16737            ! t/pragma/utf8.t
16738 ____________________________________________________________________________
16739 [  8249] By: jhi                                   on 2000/12/29  07:54:51
16740         Log: (Retracted by #8264)  More join() testing which was good because
16741              it revealed a bug in #8248 (the UTF8_EIGHT_BIT_LO() was wrong).
16742      Branch: perl
16743            ! pp.c t/op/join.t utf8.c utf8.h
16744 ____________________________________________________________________________
16745 [  8248] By: jhi                                   on 2000/12/29  07:08:32
16746         Log: (Retracted by #8264)  Externally: join() was still quite UTF-8-unaware.
16747              Internally: sv_catsv() wasn't quite okay on UTF-8, it assumed
16748              that the only cases to care about are byte+byte and byte+character.
16749              
16750              TODO: See how well pp_concat() could be implemented in terms
16751              of sv_catsv().
16752      Branch: perl
16753            ! doop.c sv.c t/op/join.t utf8.h
16754 ____________________________________________________________________________
16755 [  8247] By: jhi                                   on 2000/12/29  06:35:23
16756         Log: Signedness nit.
16757      Branch: perl
16758            ! pp_hot.c
16759 ____________________________________________________________________________
16760 [  8246] By: jhi                                   on 2000/12/29  01:23:31
16761         Log: Subject: Re: [ID 20001226.002] Not OK: perl v5.7.0 +DEVEL8221 on i86pc-solaris 2.8 (UNINSTALLED)
16762              From: Lupe Christoph <lupe@lupe-christoph.de>
16763              Date: Thu, 28 Dec 2000 23:00:00 +0100
16764              Message-ID: <20001228230000.F2574@alanya.lupe-christoph.de>
16765              
16766              Suggest rsync --delete --dry-run.
16767      Branch: perl
16768            ! pod/perlhack.pod
16769 ____________________________________________________________________________
16770 [  8245] By: jhi                                   on 2000/12/28  23:57:05
16771         Log: The maxiters upper limit sanity check (guarding against
16772              non-progress) assumed bytes instead of characters in s///
16773              and split().
16774      Branch: perl
16775            ! pp.c pp_hot.c
16776 ____________________________________________________________________________
16777 [  8244] By: jhi                                   on 2000/12/28  23:34:08
16778         Log: Make some panic messages a bit more logical.
16779      Branch: perl
16780            ! doop.c pod/perldiag.pod pp.c pp_hot.c
16781 ____________________________________________________________________________
16782 [  8243] By: jhi                                   on 2000/12/28  22:59:16
16783         Log: Subject: [PATCH] lvalue AUTOLOAD. No, really.
16784              From: Simon Cozens <simon@cozens.net>
16785              Date: Wed, 27 Dec 2000 02:30:03 +0000
16786              Message-ID: <20001227023003.A7677@deep-dark-truthful-mirror.perlhacker.org>
16787      Branch: perl
16788            ! pp.c t/pragma/sub_lval.t
16789 ____________________________________________________________________________
16790 [  8242] By: jhi                                   on 2000/12/28  22:56:53
16791         Log: Subject: [PATCH blead] Fix B::Terse indentation
16792              From: Daniel Chetlin <daniel@chetlin.com>
16793              Date: Wed, 27 Dec 2000 06:43:30 -0800
16794              Message-ID: <20001227064329.B9573@darkstar>
16795      Branch: perl
16796            ! ext/B/B.pm ext/B/B/Terse.pm t/lib/b.t
16797 ____________________________________________________________________________
16798 [  8241] By: jhi                                   on 2000/12/28  22:48:59
16799         Log: The latter patch from the
16800              
16801              Subject: [PATCH: perl@8211] directory depth typo in one win32 Makefile
16802              From: Peter Prymmer <pvhp@forte.com> 
16803              Date: Fri, 22 Dec 2000 14:52:12 -0800 (PST)
16804              Message-ID: <Pine.OSF.4.10.10012221433140.195493-100000@aspara.forte.com>
16805              
16806              (the former patch from the above should have been
16807              taken care of by Nick I-S)
16808      Branch: perl
16809            ! win32/Makefile
16810 ____________________________________________________________________________
16811 [  8240] By: jhi                                   on 2000/12/28  22:45:22
16812         Log: Subject: Re: [PATCH] Idea: Declare multiple constants at once
16813              From: "Casey R. Tweten" <crt@kiski.net>
16814              Date: Fri, 22 Dec 2000 10:35:53 -0500 (EST)
16815              Message-ID: <Pine.OSF.4.21.0012221032030.28992-100000@home.kiski.net>
16816      Branch: perl
16817            ! lib/constant.pm
16818 ____________________________________________________________________________
16819 [  8239] By: jhi                                   on 2000/12/28  22:37:45
16820         Log: Subject: [PATCH] Re: [ID 19991001.003] sort(sub(arg)) misparsed as sort sub args
16821              From: Simon Cozens <simon@cozens.net>
16822              Date: Wed, 27 Dec 2000 14:12:44 +0000
16823              Message-ID: <20001227141244.A13344@deep-dark-truthful-mirror.perlhacker.org>
16824      Branch: perl
16825            ! t/op/method.t t/op/sort.t toke.c
16826 ____________________________________________________________________________
16827 [  8238] By: jhi                                   on 2000/12/28  22:30:32
16828         Log: Subject: [PATCH perl@8229] Call.pm
16829              From: "Paul Marquess" <Paul.Marquess@btinternet.com>
16830              Date: Mon, 25 Dec 2000 10:47:15 -0000
16831              Message-ID: <000201c06e60$0b967760$a20a140a@bfs.phone.com>
16832      Branch: perl
16833            ! ext/Filter/Util/Call/Call.pm
16834 ____________________________________________________________________________
16835 [  8237] By: jhi                                   on 2000/12/28  22:19:21
16836         Log: Subject: [PATCH blead] Fix problem with `&' prototype
16837              From: Daniel Chetlin <daniel@chetlin.com>
16838              Date: Wed, 27 Dec 2000 15:55:32 -0800
16839              Message-ID: <20001227155532.D9573@darkstar>
16840      Branch: perl
16841            ! op.c t/comp/proto.t
16842 ____________________________________________________________________________
16843 [  8236] By: jhi                                   on 2000/12/28  22:09:25
16844         Log: Subject: Re: [PATCH blead] Fix segfault in gv_handler/mg_find
16845              From: Daniel Chetlin <daniel@chetlin.com>
16846              Date: Sun, 24 Dec 2000 04:09:49 -0800
16847              Message-ID: <20001224040949.B3090@darkstar>
16848      Branch: perl
16849            ! gv.c mg.c t/op/attrs.t
16850 ____________________________________________________________________________
16851 [  8235] By: jhi                                   on 2000/12/28  22:07:11
16852         Log: Subject: [PATCH] Win32::Spawn() didn't inherit cwd and env correctly
16853              From: Jan Dubois <jand@ActiveState.com>
16854              Date: Tue, 26 Dec 2000 20:57:31 -0800
16855              Message-ID: <reti4ts0php3anruv0qcjru3tl850g3sfd@4ax.com>
16856      Branch: perl
16857            ! win32/win32.c
16858 ____________________________________________________________________________
16859 [  8234] By: jhi                                   on 2000/12/28  21:52:42
16860         Log: Subject: Re: [PATCH] Warn on use of reference as array elem
16861              From: Simon Cozens <simon@cozens.net>
16862              Date: Thu, 28 Dec 2000 20:33:13 +0000
16863              Message-ID: <20001228203313.A2607@deep-dark-truthful-mirror.perlhacker.org>
16864      Branch: perl
16865            ! pod/perldiag.pod pp_hot.c t/pragma/warn/pp_hot
16866 ____________________________________________________________________________
16867 [  8233] By: jhi                                   on 2000/12/28  19:40:49
16868         Log: Integrate perlio.
16869      Branch: perl
16870           !> ext/Encode/Makefile.PL ext/Encode/compile
16871 ____________________________________________________________________________
16872 [  8232] By: nick                                  on 2000/12/23  16:06:00
16873         Log: Encode's Makefile.PL fix not good for dmake $(MAKEFILE) is set to -f Makefile
16874              and fails to make '-f'. (Also handle case where xxxx.c files have not been deleted.)
16875      Branch: perlio
16876            ! ext/Encode/Makefile.PL
16877 ____________________________________________________________________________
16878 [  8231] By: nick                                  on 2000/12/23  14:30:34
16879         Log: "Compiled" encode build cleanup
16880              - Makefile uses catfile $(MAKEFILE) etc. for platform issues.
16881              - .c files do not export sub-tables
16882      Branch: perlio
16883            ! ext/Encode/Makefile.PL ext/Encode/compile
16884 ____________________________________________________________________________
16885 [  8230] By: nick                                  on 2000/12/23  12:50:37
16886         Log: Integrate mainline
16887      Branch: perlio
16888           !> INSTALL lib/CGI.pm lib/CPAN.pm lib/Pod/Select.pm
16889           !> lib/Text/ParseWords.pm lib/Win32.pod pod/perl.pod
16890           !> pod/perl5004delta.pod pod/perl5005delta.pod
16891           !> pod/perl56delta.pod pod/perldelta.pod pod/perldiag.pod
16892           !> pod/perlembed.pod pod/perlfaq4.pod pod/perllocale.pod
16893           !> pod/perlmodlib.pod pod/perlrequick.pod pod/perlretut.pod
16894           !> pod/perlsub.pod
16895 ____________________________________________________________________________
16896 [  8229] By: jhi                                   on 2000/12/22  15:32:12
16897         Log: Integrate perlio.
16898      Branch: perl
16899           +> win32/distclean.bat
16900           !> MANIFEST t/io/utf8.t
16901 ____________________________________________________________________________
16902 [  8228] By: jhi                                   on 2000/12/22  15:29:40
16903         Log: Subject: [PATCH 5.6.1-TRIAL1 and @8223]; was Re: Perlbug 20000322.006 status +update
16904              From: Robin Barker <rmb1@cise.npl.co.uk>
16905              Date: Fri, 22 Dec 2000 12:17:38 GMT
16906              Message-Id: <200012221217.MAA21332@tempest.npl.co.uk>
16907      Branch: perl
16908            ! lib/CGI.pm lib/CPAN.pm lib/Pod/Select.pm
16909            ! lib/Text/ParseWords.pm lib/Win32.pod pod/perl.pod
16910            ! pod/perl5004delta.pod pod/perl5005delta.pod
16911            ! pod/perl56delta.pod pod/perldelta.pod pod/perldiag.pod
16912            ! pod/perlembed.pod pod/perlfaq4.pod pod/perllocale.pod
16913            ! pod/perlmodlib.pod pod/perlrequick.pod pod/perlretut.pod
16914            ! pod/perlsub.pod
16915 ____________________________________________________________________________
16916 [  8227] By: jhi                                   on 2000/12/22  15:24:28
16917         Log: Subject: Re: A Configure option like 'otherlibdirs' but for *pre*pending?
16918              From: "John L. Allen" <allen@grumman.com>
16919              Date: Thu, 21 Dec 2000 14:39:58 -0500 (EST)
16920              Message-ID: <Pine.SOL.3.91.1001221133227.23511A-100000@gateway.grumman.com>
16921              
16922              Document APPLLIB_EXP.
16923      Branch: perl
16924            ! INSTALL
16925 ____________________________________________________________________________
16926 [  8226] By: nick                                  on 2000/12/21  22:11:50
16927         Log: Handy script for when one forgets to "dmake clean" 
16928      Branch: perlio
16929            + win32/distclean.bat
16930            ! MANIFEST
16931 ____________________________________________________________________________
16932 [  8225] By: nick                                  on 2000/12/21  21:54:04
16933         Log: CRLF platform issue with io/utf8 fix.
16934      Branch: perlio
16935            ! t/io/utf8.t
16936 ____________________________________________________________________________
16937 [  8224] By: nick                                  on 2000/12/21  21:02:20
16938         Log: Integrate mainline
16939      Branch: perlio
16940           !> Changes Configure Makefile.SH Porting/Glossary
16941           !> Porting/config.sh Porting/config_H configure.com
16942           !> epoc/config.sh ext/Thread/Thread.xs patchlevel.h
16943           !> pod/perlfaq3.pod pod/perlfunc.pod pod/perltoc.pod pp_sys.c
16944           !> sv.c t/io/fs.t t/op/misc.t t/op/utf8decode.t t/pragma/utf8.t
16945           !> win32/config.bc win32/config.gc win32/config.vc
16946 ____________________________________________________________________________
16947 [  8223] By: jhi                                   on 2000/12/21  17:09:16
16948         Log: Update Changes.
16949      Branch: perl
16950            ! Changes patchlevel.h
16951 ____________________________________________________________________________
16952 [  8222] By: jhi                                   on 2000/12/21  16:24:01
16953         Log: Metaconfig unit changes for #8221.
16954      Branch: metaconfig/U/perl
16955           +> issymlink.U
16956            - testsyml.U
16957            ! Mksymlinks.U
16958 ____________________________________________________________________________
16959 [  8221] By: jhi                                   on 2000/12/21  16:23:48
16960         Log: Rename testsyml to issymlink.
16961      Branch: perl
16962            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
16963            ! epoc/config.sh pod/perltoc.pod win32/config.bc win32/config.gc
16964            ! win32/config.vc
16965 ____________________________________________________________________________
16966 [  8220] By: jhi                                   on 2000/12/21  15:47:26
16967         Log: Robustness support for #8218 (symlink forest) since the GNU
16968              tools seem to be overly picky about symlinkage depths.
16969      Branch: perl
16970            ! Makefile.SH t/io/fs.t
16971 ____________________________________________________________________________
16972 [  8219] By: jhi                                   on 2000/12/21  15:38:27
16973         Log: Metaconfig changes for #8218.
16974      Branch: metaconfig
16975            ! U/modified/Oldconfig.U
16976      Branch: metaconfig/U/perl
16977            + Mksymlinks.U
16978            ! testsyml.U
16979 ____________________________________________________________________________
16980 [  8218] By: jhi                                   on 2000/12/21  15:37:57
16981         Log: Add Configure option -Dmksymlinks which will create a symlink
16982              forest if the current/build differs from the source directory.
16983              TODO: mkdir -p is not portable.
16984      Branch: perl
16985            ! Configure
16986 ____________________________________________________________________________
16987 [  8217] By: jhi                                   on 2000/12/21  14:39:12
16988         Log: Subject: [PATCH] Re: Latest tarball doesn't build with threads
16989              From: Nick Ing-Simmons <nik@tiuk.ti.com> 
16990              Date: Thu, 21 Dec 2000 09:38:18 GMT
16991              Message-Id: <200012210938.JAA29043@mikado.tiuk.ti.com>
16992              
16993              The ofs became an SV.
16994      Branch: perl
16995            ! ext/Thread/Thread.xs
16996 ____________________________________________________________________________
16997 [  8216] By: jhi                                   on 2000/12/21  05:40:21
16998         Log: The polymorphism seems to have fixed 20000517.001.
16999      Branch: perl
17000            ! t/pragma/utf8.t
17001 ____________________________________________________________________________
17002 [  8215] By: jhi                                   on 2000/12/21  04:44:52
17003         Log: read() documentation tweak for 20001121.004.
17004      Branch: perl
17005            ! pod/perlfunc.pod
17006 ____________________________________________________________________________
17007 [  8214] By: jhi                                   on 2000/12/21  03:54:11
17008         Log: Fix for 20001210.003, "write(FH) on closed FH causes segv".
17009      Branch: perl
17010            ! pp_sys.c t/op/misc.t
17011 ____________________________________________________________________________
17012 [  8213] By: jhi                                   on 2000/12/21  00:28:10
17013         Log: Subject: [patch: perl@8211]VMS: add -Duseperlio capacity to configure.com
17014              From: Peter Prymmer <pvhp@forte.com>
17015              Date: Wed, 20 Dec 2000 16:13:32 -0800 (PST)
17016              Message-ID: <Pine.OSF.4.10.10012201609140.11967-100000@aspara.forte.com>
17017      Branch: perl
17018            ! configure.com
17019 ____________________________________________________________________________
17020 [  8212] By: jhi                                   on 2000/12/21  00:26:21
17021         Log: Edit edit edit.
17022      Branch: perl
17023            ! pod/perlfaq3.pod
17024 ____________________________________________________________________________
17025 [  8211] By: jhi                                   on 2000/12/20  18:52:46
17026         Log: Update Changes.
17027      Branch: perl
17028            ! Changes patchlevel.h
17029 ____________________________________________________________________________
17030 [  8210] By: jhi                                   on 2000/12/20  18:34:47
17031         Log: Yet another editor edit.
17032      Branch: perl
17033            ! pod/perlfaq3.pod
17034 ____________________________________________________________________________
17035 [  8209] By: jhi                                   on 2000/12/20  15:33:28
17036         Log: More Win32 Perling.
17037      Branch: perl
17038            ! pod/perlfaq3.pod
17039 ____________________________________________________________________________
17040 [  8208] By: jhi                                   on 2000/12/20  15:07:46
17041         Log: More Win32 editor/IDE/shell hints.
17042      Branch: perl
17043            ! pod/perlfaq3.pod
17044 ____________________________________________________________________________
17045 [  8207] By: jhi                                   on 2000/12/20  03:54:08
17046         Log: Subject: [PATCH] obscure timing knowledge
17047              From: Nicholas Clark <nick@ccl4.org>
17048              Date: Tue, 19 Dec 2000 19:22:31 +0000
17049              Message-ID: <20001219192231.F2827@plum.flirble.org>
17050      Branch: perl
17051            ! sv.c
17052 ____________________________________________________________________________
17053 [  8206] By: jhi                                   on 2000/12/20  03:45:57
17054         Log: Subject: [ID 20001219.011] Not OK: perl v5.7.1 +DEVEL8205 on alpha-dec_osf-perlio-multi 4.0f (UNINSTALLED)
17055              From: Spider Boardman <spider@leggy.zk3.dec.com>
17056              Date: Tue, 19 Dec 2000 21:30:16 -0500
17057              Message-Id: <200012200230.VAA17619@leggy.zk3.dec.com>
17058      Branch: perl
17059            ! sv.c
17060 ____________________________________________________________________________
17061 [  8205] By: jhi                                   on 2000/12/19  23:02:01
17062         Log: Update Changes.
17063      Branch: perl
17064            ! Changes patchlevel.h
17065 ____________________________________________________________________________
17066 [  8204] By: jhi                                   on 2000/12/19  22:58:18
17067         Log: Recode the naughty binary bytes ([\x00-\x08\x0b-\x1f\x7f-\xff])
17068              using the \xHH notation.  No more inlined UTF-8, sigh, but easier
17069              on editors and diffing/patching.
17070      Branch: perl
17071            ! t/op/utf8decode.t
17072 ____________________________________________________________________________
17073 [  8203] By: nick                                  on 2000/12/19  21:36:16
17074         Log: Integrate mainline (forgot my own change...)
17075      Branch: perlio
17076           !> ext/Encode/compile
17077 ____________________________________________________________________________
17078 [  8202] By: nick                                  on 2000/12/19  21:34:42
17079         Log: Integrate mainline.
17080      Branch: perlio
17081           !> (integrate 61 files)
17082 ____________________________________________________________________________
17083 [  8201] By: nick                                  on 2000/12/19  21:34:06
17084         Log: Avoid looking for File::Glob when we don't need it.
17085      Branch: perl
17086            ! ext/Encode/compile
17087 ____________________________________________________________________________
17088 [  8200] By: jhi                                   on 2000/12/19  18:35:49
17089         Log: Update Changes.
17090      Branch: perl
17091            ! Changes patchlevel.h
17092 ____________________________________________________________________________
17093 [  8199] By: jhi                                   on 2000/12/19  18:35:07
17094         Log: Microperl tweaks.
17095      Branch: perl
17096            ! sv.c uconfig.h uconfig.sh
17097 ____________________________________________________________________________
17098 [  8198] By: jhi                                   on 2000/12/19  18:29:59
17099         Log: Regen Configure, nitfix uconfig.sh (d_vendorarch is needed).
17100      Branch: perl
17101            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
17102            ! config_h.SH pod/perltoc.pod uconfig.h uconfig.sh
17103 ____________________________________________________________________________
17104 [  8197] By: jhi                                   on 2000/12/19  17:55:29
17105         Log: In VMS embedded perls couldn't access the statically built Socket,
17106              from Charles Lane.
17107      Branch: perl
17108            ! configure.com
17109 ____________________________________________________________________________
17110 [  8196] By: jhi                                   on 2000/12/19  17:49:50
17111         Log: Subject: [PATCH perl@8143] DB_File-1.75 (was RE: [8104] DB_File)
17112              From: "Paul Marquess" <Paul_Marquess@yahoo.co.uk> 
17113              Date: Sun, 17 Dec 2000 19:11:44 -0000
17114              Message-ID: <000801c0685d$3224e5a0$a20a140a@bfs.phone.com> 
17115      Branch: perl
17116            ! ext/DB_File/Changes ext/DB_File/DB_File.pm
17117            ! ext/DB_File/DB_File.xs ext/DB_File/dbinfo
17118 ____________________________________________________________________________
17119 [  8195] By: jhi                                   on 2000/12/19  17:47:53
17120         Log: Subject: [patch perl@8150] h2xs SYNOPSIS
17121              From: Jonathan Stowe <gellyfish@gellyfish.com>
17122              Date: Mon, 18 Dec 2000 10:24:38 +0000 (GMT)
17123              Message-ID: <Pine.LNX.4.10.10012181021180.20731-100000@orpheus.gellyfish.com>
17124      Branch: perl
17125            ! utils/h2xs.PL
17126 ____________________________________________________________________________
17127 [  8194] By: jhi                                   on 2000/12/19  17:46:28
17128         Log: Subject: Re: useless use of void context work-around
17129              From: andreas.koenig@anima.de (Andreas J. Koenig)
17130              Date: 16 Dec 2000 15:13:36 +0100
17131              Message-ID: <m3g0jofo8f.fsf@ak-71.mind.de>
17132              
17133              Document (comment) the q(di ds ig) trick in the code.
17134      Branch: perl
17135            ! op.c
17136 ____________________________________________________________________________
17137 [  8193] By: jhi                                   on 2000/12/19  17:10:57
17138         Log: Subject: [ID 20001215.004] Sys::Syslog::xlate doesn't handle LOG_EMERG
17139              From: "Mark J. Reed" <mreed@strange.turner.com>
17140              Date: Fri, 15 Dec 2000 21:22:29 -0500 (EST)
17141              Message-Id: <200012160222.VAA13986@strange.turner.com>
17142      Branch: perl
17143            ! ext/Sys/Syslog/Syslog.pm
17144 ____________________________________________________________________________
17145 [  8192] By: jhi                                   on 2000/12/19  17:07:45
17146         Log: Subject: [PATCH] Re: [PATCH] strtoq, strtou(q|ll|l) testing
17147              From: Nicholas Clark <nick@ccl4.org>
17148              Date: Sat, 16 Dec 2000 19:03:13 +0000
17149              Message-ID: <20001216190313.D68304@plum.flirble.org>
17150      Branch: perl
17151            ! t/op/64bitint.t
17152 ____________________________________________________________________________
17153 [  8191] By: jhi                                   on 2000/12/19  17:06:13
17154         Log: Subject: [ID 20001218.005] Not OK: perl v5.7.0 +DEVEL8148 on powerpc-machten 4.1.4
17155              From: Dominic Dunlop <domo@computer.org>
17156              Date: Mon, 18 Dec 2000 12:00:15 +0100
17157              Message-Id: <p04320404b6639e7aa043@[192.168.1.4]>
17158              
17159              This patchlet is needed in order that perl can be statically linked.  
17160      Branch: perl
17161            ! regexec.c
17162 ____________________________________________________________________________
17163 [  8190] By: jhi                                   on 2000/12/19  17:03:08
17164         Log: Subject: [PATCH perl@8133] finding PerlIO symbols for VMS
17165              From: "Craig A. Berry" <craig.berry@psinetcs.com>
17166              Date: Sun, 17 Dec 2000 00:18:35 -0600
17167              Message-Id: <p04330102b661bc01daba@[172.16.52.1]>
17168      Branch: perl
17169            ! perlio.h vms/gen_shrfls.pl
17170 ____________________________________________________________________________
17171 [  8189] By: jhi                                   on 2000/12/19  16:20:28
17172         Log: Subject: [DOC PATCH: perl@8150, 5.6.1-TRIAL1] update list of lang. sensitive editors/IDES
17173              From: Prymmer/Kahn <pvhp@best.com>
17174              Date: Tue, 19 Dec 2000 08:08:31 -0800 (PST)
17175              Message-ID: <Pine.BSF.4.21.0012190804040.14656-100000@shell8.ba.best.com>
17176              
17177              A better version of #8188.
17178      Branch: perl
17179            ! pod/perlfaq3.pod
17180 ____________________________________________________________________________
17181 [  8188] By: jhi                                   on 2000/12/19  15:57:06
17182         Log: (Replaced by #8189)
17183              
17184              Subject: [DOC PATCH: perl@7953] update list of lang. sensitive editors/IDES
17185              Date: Mon, 18 Dec 2000 08:03:34 -0800 (PST)
17186              From: Prymmer/Kahn <pvhp@best.com>
17187              Message-ID: <Pine.BSF.4.21.0012180802090.27110-100000@shell8.ba.best.com>
17188              Subject: Re: [DOC PATCH: perl@7953] update list of lang. sensitive editors/IDES
17189              From: Ronald J Kimball <rjk@linguist.Thayer.Dartmouth.EDU>
17190              Date: Mon, 18 Dec 2000 11:10:45 -0500
17191              Message-ID: <20001218111044.B180222@linguist.thayer.dartmouth.edu>
17192      Branch: perl
17193            ! pod/perlfaq3.pod
17194 ____________________________________________________________________________
17195 [  8187] By: jhi                                   on 2000/12/19  15:54:19
17196         Log: Email address fix for Anton Berezin.
17197      Branch: perl
17198            ! AUTHORS
17199 ____________________________________________________________________________
17200 [  8186] By: jhi                                   on 2000/12/19  15:38:54
17201         Log: Subject: [PATCH perl@8102] cygwin port
17202              From: "Eric Fifer" <efifer@dircon.co.uk> 
17203              Date: Thu, 14 Dec 2000 13:41:29 -0000
17204              Message-Id: <200012141340.NAA54236@mailhost1.dircon.co.uk>
17205              
17206              When compiling modules the data item that is being imported
17207              from libperl.dll needs to be tagged as imported/shared data:
17208              extern __declspec(dllimport) PerlIO_funcs PerlIO_pending;
17209      Branch: perl
17210            ! perliol.h
17211 ____________________________________________________________________________
17212 [  8185] By: jhi                                   on 2000/12/19  14:53:24
17213         Log: Regen uconfig.h and uconfig.sh.
17214      Branch: perl
17215            ! uconfig.h uconfig.sh
17216 ____________________________________________________________________________
17217 [  8184] By: jhi                                   on 2000/12/18  20:43:49
17218         Log: Comments work so much better when they are closed.
17219      Branch: perl
17220            ! regcomp.c
17221 ____________________________________________________________________________
17222 [  8183] By: jhi                                   on 2000/12/18  18:04:02
17223         Log: Some compilers (e.g. HP-UX) can't switch on 64-bit integers.
17224              Fixes the bug 20001218.016.
17225      Branch: perl
17226            ! regcomp.c
17227 ____________________________________________________________________________
17228 [  8182] By: gsar                                  on 2000/12/18  09:53:47
17229         Log: delete spurious files
17230      Branch: maint-5.6/perl
17231            - lib/CGI/eg/make_links.pl lib/CGI/eg/wilogo.gif vos/config.def
17232            - vos/config.h vos/config_h.SH_orig
17233 ____________________________________________________________________________
17234 [  8181] By: gsar                                  on 2000/12/18  09:46:08
17235         Log: regen perltoc
17236      Branch: maint-5.6/perl
17237            ! pod/buildtoc.PL pod/perl.pod pod/perlapi.pod pod/perltoc.pod
17238 ____________________________________________________________________________
17239 [  8180] By: gsar                                  on 2000/12/18  09:20:27
17240         Log: integrate changes#7924..7926,7946,7952 from mainline
17241      Branch: maint-5.6/perl
17242           !> lib/CPAN.pm lib/CPAN/FirstTime.pm lib/ExtUtils/MM_Unix.pm
17243           !> lib/File/stat.pm t/lib/class-struct.t
17244 ____________________________________________________________________________
17245 [  8179] By: gsar                                  on 2000/12/18  08:55:54
17246         Log: integrate changes#7889,7890,7900,7903,7904,7907,7910,7917,
17247              7918,7919,7988,8907 from mainline (various)
17248      Branch: maint-5.6/perl
17249           +> t/lib/class-struct.t
17250           !> MANIFEST README.amiga ext/Sys/Syslog/Syslog.pm gv.c
17251           !> lib/Class/Struct.pm pod/perlipc.pod pod/perltie.pod
17252           !> t/lib/syslfs.t t/op/lfs.t utils/perlcc.PL
17253 ____________________________________________________________________________
17254 [  8178] By: gsar                                  on 2000/12/18  08:16:30
17255         Log: avoid redefinition warnings on windows due to sys/socket.h getting
17256              #included before win32.h
17257      Branch: maint-5.6/perl
17258            ! win32/include/sys/socket.h
17259 ____________________________________________________________________________
17260 [  8177] By: gsar                                  on 2000/12/18  05:24:04
17261         Log: make regen_headers; fix POSIX.xs problems; remove outdated
17262              code from sys/socket.h that makes build fail now
17263      Branch: maint-5.6/perl
17264            ! ext/POSIX/POSIX.xs global.sym objXSUB.h perlapi.c
17265            ! pod/perlapi.pod
17266           !> win32/include/sys/socket.h
17267 ____________________________________________________________________________
17268 [  8176] By: gsar                                  on 2000/12/18  05:20:17
17269         Log: update Changes
17270      Branch: maint-5.6/perl
17271            ! Changes patchlevel.h
17272 ____________________________________________________________________________
17273 [  8175] By: gsar                                  on 2000/12/18  04:57:48
17274         Log: integrate changes#7643,7646..7649,7651..7654,7658,7659,
17275              7661..7665,7667..7669,7671,7673,7676,7677,7681..7683,
17276              7689..7697,7699..7701,7703,7705,7714,7715,7718..7723,
17277              7725,7726,7729..7732,7737,7748,7749,7758,7759,7761,7773,
17278              7775,7776,7782,7785..7787,7804,7807,7808,7810,7811,7816,
17279              7823,7825,7838
17280      Branch: maint-5.6/perl
17281           +> lib/File/Spec/Epoc.pm
17282           !> (integrate 88 files)
17283 ____________________________________________________________________________
17284 [  8174] By: gsar                                  on 2000/12/18  03:53:09
17285         Log: integrate changes#7602,7604..7611,7614,7616..7619,7621..7623,
17286              7625..7629,7631..7634,7637,7639,7642 from mainline
17287      Branch: maint-5.6/perl
17288           +> README.solaris
17289           !> (integrate 26 files)
17290 ____________________________________________________________________________
17291 [  8173] By: gsar                                  on 2000/12/18  03:37:02
17292         Log: integrate changes#7472,7474..7479,7481,7485,7489,7493,7494,7496,
17293              7497,7499..7503,7505..7507,7509..7513,7515..7523,7526..7534,
17294              7536,7540,7542,7544..7546,7549,7553,7556,7557,7559,7561..7563,
17295              7565,7568..7572,7576,7578..7589,9592..7594,7596..7601 from mainline
17296      Branch: maint-5.6/perl
17297           +> t/lib/tie-refhash.t t/lib/tie-substrhash.t
17298            - MAINTAIN
17299           !> (integrate 111 files)
17300 ____________________________________________________________________________
17301 [  8172] By: jhi                                   on 2000/12/18  02:49:27
17302         Log: Regen pods.
17303      Branch: perl
17304            ! pod/perlmodlib.pod pod/perltoc.pod
17305 ____________________________________________________________________________
17306 [  8171] By: gsar                                  on 2000/12/18  02:49:24
17307         Log: integrate changes#7447,7448,7450,7454,7456,7457,7460,7462,
17308              7465..7471 from mainline
17309              
17310              Remains of the old UTF-8 API, utf8_to_uv_chk(): didn't link
17311              in platforms that strictly require all the symbols being present
17312              at link time.
17313              
17314              Subject: [PATCH: perl@7446] restore missing d_stdio_cnt_lval to VMS
17315              
17316              Subject: [ID 20001025.011] [PATCH] t/io/open.t perl@7369[  7350] breaks VMS perl
17317              
17318              Subject: [ID 20001026.006] C<use integer; $x += 1> gives uninitialized warning
17319              
17320              Subject: [PATCH] todo
17321              
17322              Subject: [ID 20001027.002] Patch 7380 followup - Perl_modfl *must* be defined
17323              
17324              Use $sort, $uniq (and $tr) consistently as wondered
17325              by Nicholas Clark.
17326              
17327              Too enthusiastic editing in #7460.
17328              
17329              The reëntrant version shouldn't be needed unless USE_PURE_BISON.
17330              
17331              Upgrade to CPAN 1.58_55.
17332              Subject: CPAN.pm status
17333              
17334              Subject: [ID 20001027.005] Nit in perlos2.pod - space needs deleted on line 118
17335              
17336              Make target reordering to avoid pointless re-makes.
17337              Subject: Re: Total re-make of 'make okfile' after 7451 ?
17338              
17339              Subject: [ID 20001027.010] [PATCH] Add info on building CPAN modules to README.dos
17340              
17341              Subject: DOC PATCH 5.6.0
17342              
17343              Add the repository doc by Malcolm, Sarathy, and by Simon,
17344              name as suggested by Michael Bletzinger <mbletzin@ncsa.uiuc.edu>.
17345      Branch: maint-5.6/perl
17346           +> Porting/repository.pod
17347           !> Configure MANIFEST Makefile.SH README.dos README.os2
17348           !> config_h.SH configure.com embed.h embed.pl handy.h lib/CPAN.pm
17349           !> lib/CPAN/FirstTime.pm perl.h pod/perlfunc.pod pod/perltodo.pod
17350           !> pp.c proto.h t/io/open.t t/op/assignwarn.t toke.c
17351 ____________________________________________________________________________
17352 [  8169] By: gsar                                  on 2000/12/18  02:33:34
17353         Log: integrate changes#7416,7417,7420..7422,7424,7426..7429,7431..7433,
17354              7435..7441,7445 from mainline
17355              
17356              Make the UTF-8 decoding stricter and more verbose when
17357              malformation happens.  This involved adding an argument
17358              to utf8_to_uv_chk(), which involved changing its prototype,
17359              and prefer STRLEN over I32 for the UTF-8 length, which as
17360              a domino effect necessitated changing the prototypes of
17361              scan_bin(), scan_oct(), scan_hex(), and reg_uni().
17362              The stricter UTF-8 decoding checking uses Markus Kuhn's
17363              UTF-8 Decode Stress Tester from
17364              http://www.cl.cam.ac.uk/~mgk25/ucs/examples/UTF-8-test.txt
17365              
17366              Run vms/vms_yfix.pl, should have done that after changing
17367              perly.c in #7382.
17368              
17369              Subject: [PATCH 5.7.0] static linking with uninstalled perl
17370              
17371              (Replaced by #7440.)
17372              Subject: Re: [ID 20001022.001] Not OK: perl v5.7.0 +DEVEL7368 on i686-linux 2.2.16
17373              
17374              Fix the bug ID 20001024.005, the bug introduced by #7416.
17375              
17376              Subject: Re: [ID 20001023.003] PATCH perlfaq5 [perl-current]
17377              
17378              Fix the bug reported in
17379              From: andreas.koenig@anima.de (Andreas J. Koenig)
17380              Also make is_utf8_char() stricter.
17381              
17382              Missed the header file changes from #7425.
17383              
17384              Check if stdio supports tweaking lval and cnt simultaneously.
17385              Subject: PATCH (Re: PerlIO - Configure tweak for Linux/glibc?)
17386              
17387              Stratus VOS updates from Paul Green.
17388              
17389              Podify README.epoc and README.vos.
17390              
17391              Add targets to Makefile.SH, most importantly
17392              'regen_all' which also remembers to update vms/perly*.
17393              
17394              Subject: Minor update to find2perl, for portability
17395              
17396              Subject: patch 7416 breaks sv.c on AIX and HP-UX (patch included)
17397              
17398              Subject: [ID 20001024.007] [PATCH] "Dump local *FH" causes SEGV
17399              
17400              Rename UTF8LEN() to be UNISKIP(), too confusing to have
17401              UTF8LEN() and UTF8SKIP(). 
17402              
17403              Allow poking holes at the UTF-8 decoding strictness.
17404              
17405              Continue the internal UTF-8 API tweaking.
17406              Rename utf8_to_uv_chk() back to utf8_to_uv() because it's
17407              used much more than the simpler API, now called utf8_to_uv_simple().
17408              Still not quite happy with API, too much partial duplication
17409              of functionality.
17410              
17411              A new version of making the syslog test more robust.
17412              (Replaces #7421.)
17413              Subject: Re: [ID 20001022.001] Not OK: perl v5.7.0 +DEVEL7368 on i686-linux 2.2.16
17414              
17415              buildtoc target tweaks.
17416              
17417              Integrate with vmsperl #7430 by Charles Bailey:
17418              
17419              Cleanup from prior patch (Charles Lane?):
17420              - improve handling of MFDs in Basename and Path
17421              - default to no xsubpp line # munging when building debug images
17422      Branch: maint-5.6/perl
17423           +> vos/config.alpha.def vos/config.alpha.h vos/config.ga.def
17424           +> vos/config.ga.h vos/configure_perl.cm vos/install_perl.cm
17425           !> (integrate 67 files)
17426 ____________________________________________________________________________
17427 [  8168] By: gsar                                  on 2000/12/18  02:05:49
17428         Log: integrate changes#7512,7733 from mainline (regex bugfixes)
17429              
17430              Subject: [ID 20001031.004] Uninitialized auto variable in regcomp.c
17431              From: Martin Husemann <martin@duskware.de>
17432              
17433              Subject: [PATCH 5.7.0] restore match data on backtracing
17434              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
17435      Branch: maint-5.6/perl
17436           !> regcomp.c regexec.c t/op/re_tests
17437 ____________________________________________________________________________
17438 [  8167] By: gsar                                  on 2000/12/18  01:55:22
17439         Log: integrate changes#7858,7986 from mainline
17440              
17441              C<foreach my $x ...> in pseudo-fork()ed process may diddle
17442              parent's memory; fix it by keeping track of the actual pad
17443              offset rather than a raw pointer (this change is probably also
17444              relevant to non-ithreads case to avoid fallout from reallocs of
17445              the pad array, but is currently only enabled for the ithreads
17446              case in the interests of minimal disruption to existing "well
17447              tested" code)
17448              
17449              fix open(FOO, ">&MYSOCK") failure under Windows 9x (problem is
17450              due to the notorious GetFileType() bug in Windows 9x, which fstat()
17451              tickles)
17452      Branch: maint-5.6/perl
17453           !> embed.h embed.pl global.sym objXSUB.h perlapi.c pp_ctl.c
17454           !> proto.h scope.c scope.h sv.c t/op/fork.t win32/perlhost.h
17455           !> win32/win32.c win32/win32.h win32/win32sck.c
17456 ____________________________________________________________________________
17457 [  8166] By: gsar                                  on 2000/12/18  01:52:59
17458         Log: integrate changes#7626,7632,7717,7738,7814,7817,7902,7912,7915
17459              from mainline (xsubpp and ExtUtils::LibList fixups, various
17460              other small items)
17461      Branch: maint-5.6/perl
17462           !> emacs/cperl-mode.el emacs/ptags lib/ExtUtils/Liblist.pm
17463           !> lib/ExtUtils/MM_VMS.pm lib/ExtUtils/MakeMaker.pm
17464           !> lib/ExtUtils/xsubpp lib/unicode/syllables.txt minimod.pl
17465           !> pod/perlfunc.pod pod/perlxs.pod pod/perlxstut.pod t/op/split.t
17466           !> win32/bin/search.pl
17467 ____________________________________________________________________________
17468 [  8165] By: gsar                                  on 2000/12/18  01:28:45
17469         Log: integrate changes#7533,7563,7611,7623 from mainline (various
17470              malloc.c embellishments)
17471      Branch: maint-5.6/perl
17472           !> malloc.c pod/perldiag.pod
17473 ____________________________________________________________________________
17474 [  8164] By: gsar                                  on 2000/12/18  01:23:33
17475         Log: integrate changes#7419,7806,8129 from mainline (various h2xs
17476              fixups)
17477      Branch: maint-5.6/perl
17478           !> utils/h2xs.PL
17479 ____________________________________________________________________________
17480 [  8163] By: gsar                                  on 2000/12/18  01:17:50
17481         Log: integrate changes#7493,7599,7803 from mainline (various perlbug
17482              fixups)
17483      Branch: maint-5.6/perl
17484           !> Makefile.SH utils/perlbug.PL
17485 ____________________________________________________________________________
17486 [  8162] By: gsar                                  on 2000/12/18  00:25:43
17487         Log: always export Perl_deb() (it is required by re.xs whether
17488              Perl is built with or without -DDEBUGGING)
17489      Branch: maint-5.6/perl
17490            ! makedef.pl
17491 ____________________________________________________________________________
17492 [  8161] By: gsar                                  on 2000/12/18  00:23:38
17493         Log: integrate change#7414 from mainline
17494              
17495              Undo the basename() part of #7412 since the lib/basename
17496              tests would need upgrading too.
17497              
17498              squelch two tests in tr.t that rely on tr/// paranoia change
17499              that's not in 5.6.x
17500      Branch: maint-5.6/perl
17501            ! t/op/tr.t
17502           !> lib/File/Basename.pm
17503 ____________________________________________________________________________
17504 [  8160] By: gsar                                  on 2000/12/18  00:05:30
17505         Log: missing change in previous integrate
17506      Branch: maint-5.6/perl
17507           !> README.aix
17508 ____________________________________________________________________________
17509 [  8159] By: gsar                                  on 2000/12/18  00:03:38
17510         Log: integrate changes#7205..7210,7212,7214..7219,7222,7223,7225,7226,
17511              7228,7230..7241,7243,7346,7347,7350..7354,7356,7358..7360,7362,
17512              7363,7365..7368,7370..7374,7376..7386,7391,7393..7399,7304..7408,
17513              7410..7413 from mainline
17514      Branch: maint-5.6/perl
17515           +> README.aix hints/nonstopux.sh lib/unicode/Is/DCmedial.pl
17516           +> t/lib/tie-splice.t
17517            - lib/unicode/Is/DCinital.pl
17518           !> (integrate 112 files)
17519 ____________________________________________________________________________
17520 [  8158] By: jhi                                   on 2000/12/17  23:04:24
17521         Log: Subject: [PATCHES] RE: perl@8150 
17522              From: "Gerrit P. Haase" <gerrit.haase@t-online.de>
17523              Date: Sun, 17 Dec 2000 21:46:39 +0100
17524              Message-ID: <3A3D343F.13566.1ACA7D93@localhost>
17525              
17526              Neither cygwin has a getpwuid() one can trust on.
17527      Branch: perl
17528            ! t/lib/glob-basic.t
17529 ____________________________________________________________________________
17530 [  8157] By: jhi                                   on 2000/12/17  23:01:54
17531         Log: More MAN.PODS => {} fixes.
17532      Branch: perl
17533            ! os2/OS2/ExtAttr/Makefile.PL os2/OS2/PrfDB/Makefile.PL
17534            ! os2/OS2/Process/Makefile.PL os2/OS2/REXX/DLL/Makefile.PL
17535            ! os2/OS2/REXX/Makefile.PL
17536 ____________________________________________________________________________
17537 [  8156] By: gsar                                  on 2000/12/17  22:49:13
17538         Log: integrate changes#7069..7077,7079,7081..7087,7090,7092,7093,
17539              7096..7104,7109..7117,7119..7124,7126,7128,7129,7133,7134,
17540              7136..7139,7141..7146,7148,7149,7151,7153..7155,7157,7158,
17541              7160,7161,7164,7165,7169..7178,7180..7191,7193..7197,7199,
17542              7201,7204 from mainline
17543      Branch: maint-5.6/perl
17544           !> (integrate 121 files)
17545 ____________________________________________________________________________
17546 [  8155] By: jhi                                   on 2000/12/17  22:30:58
17547         Log: Subject: [PATCH perl@8133] fix-up for VMS extensions
17548              From: "Craig A. Berry" <craigberry@mac.com>
17549              Date: Sun, 17 Dec 2000 13:09:28 -0600
17550              Message-Id: <p04330103b6628cabe114@[172.16.52.1]>
17551              
17552              MAN.PODS => ' ' is naughty.
17553      Branch: perl
17554            ! vms/ext/DCLsym/Makefile.PL vms/ext/Stdio/Makefile.PL
17555 ____________________________________________________________________________
17556 [  8154] By: nick                                  on 2000/12/17  22:07:13
17557         Log: MULTIPLICITY nit.
17558      Branch: perl
17559            ! mg.c
17560 ____________________________________________________________________________
17561 [  8153] By: gsar                                  on 2000/12/17  21:23:05
17562         Log: integrate changes#7017..7019,7021..7025,7027..7036,7038,7039,
17563              7041..7044,7046..7048,7050..7061,7063,7066..7067,7069..7074
17564              from mainline
17565              
17566              Document the SvIOK_.*UV().
17567              
17568              Update Unicode todo list.
17569              
17570              Guard against bad string->int conversion for quads.
17571              
17572              Subject: small apidoc fix
17573              
17574              Subject: [PATCH] Tie::StdHandle did not know about 3-arg open
17575              
17576              Subject: [PATCH] Tied filehandle documentation
17577              
17578              Subject: [PATCH] Modernize Opcode.pm documentation
17579              
17580              Make Data::Dumper (non-XS) to work with changed semantics of ref().
17581              Subject: Re: Undocumented(?) change to "ref" semantics in 5.7.0
17582              [applied even though said semantics didn't change in 5.6.x]
17583              
17584              Subject: [PATCH@7014] \G in non-/g is well-defined now ... right?
17585              
17586              Subject: Re: [ID 20000905.001] Assertion failed: file "toke.c", line 202 
17587              
17588              Fix the URL, but the server is still missing in action.
17589              Subject: [ID 20000905.002] perlfaq1.pod URL error
17590              
17591              Subject: [ID 20000903.001] \w in utf8-strings
17592              
17593              Fix the ccversion detection for 5.1 and beyond.
17594              Subject: [ID 20000907.007] Not OK: perl v5.7.0 +devel-7030 on alpha-dec_osf 4.0f
17595              
17596              Subject: [PATCH 5.7.0] perl5db.pl [Was: Re: Debugger question]
17597              
17598              Subject: [ID 20000904.008] Tiny fix for perldiag
17599              
17600              Subject: Re: [ID 20000906.004] segfault with bad perl statement
17601              
17602              Subject: Re: [ID 20000907.007] Not OK: perl v5.7.0 +devel-7030 on alpha-dec_osf 4.0f
17603              
17604              Subject: [ID 20000908.002] perlipc documentation bug.
17605              
17606              Subject: [PATCH lib/Benchmark.pm]
17607              
17608              Re-allow vec() for characters > 255.
17609              Subject: [PATCH] Re: [ID 20000907.005] Not OK: perl v5.7.0 +devel-7030 on alpha-dec_osf-perlio 4.0f (UNINSTALLED) 
17610              
17611              Do away with memory models cruft.  Sorry, PDP users.
17612              
17613              Continue #7041.
17614              
17615              Subject: [PATCH (or RFC): 5.7.0] make the ran_tests intermediate file 8.3 friendly
17616              
17617              Subject: [PATCH: 5.7.0] proper setting for isnan for DECC 5.3
17618              
17619              Upgrade to CPAN 1.57_65, from Andreas König.
17620              
17621              Upgrade to podlators-1.03 (Pod::Man 1.07 and Pod::Text 2.05),
17622              by Russ Allbery.
17623              
17624              Silence t/pod/*.t about alternate quote-mappings now implemented
17625              by Pod::Text, from Brad Appleton.
17626              
17627              Modern Borland C now seems to have anon unions for info.wProcessorArchitecture
17628              Subject: borland C++ win32.c tweak
17629              
17630              C<@a = @b = split(...)> optimization coredumps under ithreads
17631              (missed a spot when fixing up op_pmreplroot hack for ithreads)
17632              
17633              Document the SvUTF8*().
17634              
17635              Subject:  [PATCH] Perl 5.6.0, 5.7.0 ... vms/test.com to eliminate spurious NL's in test output
17636              
17637              Subject: RE: [Patch 5.7.0] Removing -ldb from the core build
17638              
17639              Do in VMS as the #7054 does.
17640              
17641              Subject: [patch] perlfunc.pod -- POSIX::sigpause should be POSIX::pause
17642              
17643              Subject: [ID 20000911.008] Not OK: perl v5.7.0 +DEVEL7048 on os2-64int-ld 2.30 (UNINSTALLED)
17644              
17645              Subject: [patch: perl@7045] vms updates
17646              
17647              Test for the #7049.
17648              Subject: Re: [PATCH] Re: [ID 20000910.001] Not OK: perl v5.7.0 +DEVEL7044 on    i686-linux 2.2.16-raid (UNINSTALLED)
17649              
17650              Break up the myconfig lines a bit.
17651              Subject: perlbug/perl -V output format
17652              
17653              Subject: [ID 20000911.011] misplaced typemap in perlxs.pod
17654              
17655              The #7054 truncated Configure badly.
17656              
17657              change#6327 didn't quite go all the way to enable USE_SOCKETS_AS_HANDLES
17658              initialization in all the threads on Windows
17659              
17660              Allow for whitespace between "#" and "line" in cpp output.
17661              Subject: [PATCH] Re: Problems compiling bleadperl on Unicos 9
17662              
17663              Remove vestiges of tr//CU.
17664              Subject: [ID 20000912.009] perlunicode.pod still mentions tr///CU
17665              
17666              The return value of setlocale must be copied away.
17667              Subject: [ID 20000913.001] Heap corruption in Perl_init_i18nl10n
17668              
17669              Allow chop() and chomp() to be overridden.
17670              Subject: [PATCH] Re: [ID 20000911.006] I can override glob but not chop?
17671              
17672              Hints optimization.
17673              Subject: Minor nit
17674              
17675              Subject: [PATCH] de-wall t/README
17676              
17677              Subject: Re: Two advertising clauses need to be removed
17678      Branch: maint-5.6/perl
17679           !> (integrate 75 files)
17680 ____________________________________________________________________________
17681 [  8152] By: gsar                                  on 2000/12/17  20:30:11
17682         Log: integrate changes#6945,6947,6949..6954,6956,6958,6959,6961,
17683              6964..6972,6977..6981..6984,6987,6988,6991,6994,6997,
17684              6999..7001,7003..7005,7007,7009,7011,7012 from mainline
17685              
17686              Don't attach -ld to the archname if pointless.
17687              
17688              Document UNTIE in a very minimalistic way.
17689              
17690              POSIX doesn't report long double values under -Duselongdouble
17691              when the long doubles are "real" (bigger than doubles).
17692              
17693              More author updates.
17694              
17695              Try to deduce NV_MAX.  Really should be Configure fodder.
17696              
17697              :: not allowed in pathnames, change to .
17698              Subject: [PATCH perl@6938] cygwin port
17699              
17700              Forget about NV_MAX (#6951).  Various floating point tweaks,
17701              ideas from Eric Fifer, Yitzchak, Alan, and Spider.
17702              
17703              Move the Solaris 7 scan to use64bitall, make the
17704              failure to find 64-bot sparc libc to mention the
17705              possibility of being in an intel, from Lupe and Alan.
17706              
17707              Regen perltoc.
17708              
17709              AUTHORS tweaks, from Peter Prymmer.
17710              
17711              More address tweaking.
17712              
17713              Small tweaks all over.
17714              
17715              File::Temp patches from Andreas König,
17716              
17717              Subject: [PATCH perl@6962] 2 more vms.c fix-ups and status
17718              
17719              Subject: CPAN.pm beta 1.57_57 for the core
17720              
17721              Part of the solution.
17722              Subject: Re: [ID 20000807.004] [PATCH] conditional breakpoints leak memory
17723              
17724              Subject: [PATCH@6961] Fix misleading example in perlretut.pod
17725              
17726              Subject: [PATCH lib/overload.pm] Sanaty checking of arguments to overload::constant
17727              
17728              Add the overload warnings to perldiag.
17729              
17730              Drop unused argument.
17731              Subject: Re: [ID 20000831.034] overload::constant and number of arguments. 
17732              
17733              Subject: Nit in Configure (bleadperl@6961)
17734              
17735              Update to PodParser 1.18, from Brad Appleton.
17736              
17737              Subject: [ID 20000901.017] [PATCH] Basic test failure in an untidy world       
17738              
17739              Subject: [PATCH: 6948] add SCNfldbl to configure.com
17740              
17741              Document UNTIE. Also tweak implementation to suppress the 'inner references'
17742              warning when UNTIE exists and instead pass the cound of extra references to
17743              the UNTIE method.
17744              
17745              Rename the PRIElfbl, PRIX64, etc, to be PRIEUfldbl, PRIXU64,
17746              so that case-ignoring systems like DCL can tell them from
17747              PRIefldbl and PRIx64.  Apply Merijn's ccversion patches.
17748              
17749              Subject: Re: [PATCH lib/overload.pm] Sanaty checking of arguments to overload::constant
17750              
17751              Feature ordering tweak.
17752              
17753              Regen perltoc.
17754              
17755              Subject: [PATCH] Fix vec() / utf8   (was Re: bitvec ops still broken with utf8 -- or not?)
17756              
17757              Subject: Re: [PATCH perl@6962] 2 more vms.c fix-ups and status
17758              
17759              Subject: http:// in L<>
17760              
17761              Detypo.
17762              
17763              change#6791 accidentally clobbered change#6710, put it back
17764              
17765              Only the first line, thank you very much.
17766              
17767              Subject: [PATCH: 6996] minimal removal of 8 bit chrs from perlebcdic.pod
17768              plus rework the http: spots as suggested by Tom Christiansen,
17769              plus regen perltoc.
17770              
17771              Undo part of change 6489 which looks like a bulk edit which
17772              changed _all_ gv_efullname3() calls to gv_efullname4() calls.
17773              The supressing of main:: on return from select() is undesirable.
17774              
17775              Apparently avoiding the swapping is too costly.
17776              
17777              Various Configure nits by Philip Newton,
17778              plus the ebcdic one by me.
17779              
17780              Make certain cc is set before trying to run it.
17781              
17782              If overloaded %{} etc. return the object do not loop.
17783              Thus  sub deref { $_[0] } functions if object is wanted type.
17784              
17785              Update perlhist.
17786              
17787              More %{} and other deref special casing - do not pass to 'nomethod'.
17788      Branch: maint-5.6/perl
17789           !> (integrate 59 files)
17790 ____________________________________________________________________________
17791 [  8151] By: gsar                                  on 2000/12/17  19:14:38
17792         Log: integrate changes#6903,6905..6907,6909,6911..6913,6915,6917,6918,
17793              6920..6926,6928..6930,6934..6937,6939,6940,6942..6944 from mainline
17794              
17795              Subject: [PATCH perl@6889] Chuck Lane's OpenVMS piping improvements
17796              
17797              Make the epsilon to be relative, not absolute.
17798              
17799              Put back the flags dump as reasoned in
17800              Subject: Re: [PATCH] Glob dumping
17801              
17802              Introduce ccname to keep track of what compiler kind of we have.
17803              
17804              Subject: Re: [ID 20000829.020] perl -e 'package; print __PACKAGE__' core dumps 
17805              
17806              Put back the slice accidentally removed by #6907.
17807              
17808              Reset archname and archname64 always, forcing them be
17809              recomputed at each Configure run, make Configure and
17810              the hints files agree on the naming of largefiles variables.
17811              
17812              Don't say "Perl 5.0 source kit".
17813              
17814              Subject: [PATCH] fix misc cast warnings
17815              
17816              Subject: typos in pods
17817              
17818              NVs not necessarily doubles, as pointed out by Yitzchak.
17819              
17820              Subject: [PATCH 6889] add a few ldbl formats to configure.com
17821              
17822              Subject: [ID 20000830.036] [DOC] chom?p %hash not documented
17823              
17824              Better options for rsync.
17825              
17826              Subject: [PATCH perl@6889] fix Storable on VMS by fixing my_fwrite()
17827              
17828              Subject: Re: not OK, 6919 on Alpha VMS V 7.1 w/ DECC 6.0-001
17829              
17830              Subject: [PATCH] Re: UNTIE method 
17831              
17832              A better fix for the Socket building problem from Craig Berry.
17833              
17834              Retract the dummy test, skip the security tests (instead of failing),
17835              explain what the warnings mean.
17836              
17837              Heap decorruption.
17838              Subject: [PATCH] Fix for miniperl coredump on Solaris with -Duselongdouble
17839              
17840              Update to Unicode 3.0.1.
17841              
17842              Missed one Unicode file.
17843              
17844              Subject: Re: typos in pods
17845              
17846              The #6929 was too skimpy.
17847              
17848              sscanf() may be the only way to read long doubles from strings.
17849              
17850              Reveal Borland's isnan.
17851              Subject: build with BC++ tweak
17852              
17853              Issue useful diagnostic on unknown pod commands.
17854              Subject: [PATCH lib/Pod/Man.pm] Re: [ID 20000830.048]
17855              
17856              Subject: [PATCH] Re: [ID 20000830.048] Not OK: perl v5.7.0 +DEVEL6938 on i686-linux 2.2.13
17857              
17858              Clarify the third case of ftmp-security warnings.
17859              
17860              Make -Dusemorebits find long doubles in Solaris.
17861              
17862              Wrap the test in eval.
17863      Branch: maint-5.6/perl
17864           +> lib/unicode/BidiMirr.txt lib/unicode/CaseFold.txt
17865           +> lib/unicode/PropList.txt lib/unicode/README.perl
17866           +> lib/unicode/UCD301.html lib/unicode/UCDFF301.html
17867           +> lib/unicode/Unicode.301 vms/vmspipe.com
17868            - lib/unicode/Props.txt lib/unicode/UCD300.html
17869            - lib/unicode/Unicode.300 lib/unicode/Unicode3.html
17870           !> (integrate 305 files)
17871 ____________________________________________________________________________
17872 [  8150] By: jhi                                   on 2000/12/17  18:47:57
17873         Log: Uncheckedin generated files.
17874      Branch: perl
17875            ! global.sym perlapi.c pod/perlapi.pod
17876 ____________________________________________________________________________
17877 [  8149] By: jhi                                   on 2000/12/17  18:41:22
17878         Log: Update Changes.
17879      Branch: perl
17880            ! Changes patchlevel.h
17881 ____________________________________________________________________________
17882 [  8148] By: jhi                                   on 2000/12/17  18:39:16
17883         Log: Subject: [PATCH] Fcntl constants speedup
17884              From: Nicholas Clark <nick@ccl4.org>
17885              Date: Sun, 17 Dec 2000 16:29:24 +0000
17886              Message-ID: <20001217162924.E97668@plum.flirble.org>
17887              
17888              Use IVs for the Fcntl constants instead of NVs.
17889      Branch: perl
17890            ! ext/Fcntl/Fcntl.pm ext/Fcntl/Fcntl.xs t/op/goto_xs.t
17891 ____________________________________________________________________________
17892 [  8147] By: jhi                                   on 2000/12/17  18:33:41
17893         Log: Add test for #8145 (binmode() warning), add warning for
17894              ioctl() and sockpair(), document them. (fileno() cannot
17895              be tripwired with the same kind of warning because
17896              'defined fileno($foo)' seems to be an idiom.)
17897      Branch: perl
17898            ! pod/perldiag.pod pp_sys.c t/pragma/warn/pp_sys
17899 ____________________________________________________________________________
17900 [  8146] By: gsar                                  on 2000/12/17  18:09:08
17901         Log: update Changes
17902      Branch: maint-5.6/perl
17903            ! Changes
17904 ____________________________________________________________________________
17905 [  8145] By: jhi                                   on 2000/12/17  17:39:35
17906         Log: Subject: [PATCH] Re: The long awaited feature ...
17907              From: Simon Cozens <simon@cozens.net>
17908              Date: Sun, 17 Dec 2000 12:31:56 +0000
17909              Message-ID: <20001217123156.A3891@deep-dark-truthful-mirror.perlhacker.org>
17910              
17911              Add a warning to binmode() about using bad filehandles
17912              (can happen e.g. if someone forgets the filehandle argument)
17913      Branch: perl
17914            ! pp_sys.c
17915 ____________________________________________________________________________
17916 [  8144] By: jhi                                   on 2000/12/17  17:33:48
17917         Log: Subject: [patch perl@8133] Typo in my Net::Ping doc patch :(
17918              From: Jonathan Stowe <gellyfish@gellyfish.com>
17919              Date: Sun, 17 Dec 2000 17:08:10 +0000 (GMT)
17920              Message-ID: <Pine.LNX.4.10.10012171700010.3834-100000@orpheus.gellyfish.com>
17921      Branch: perl
17922            ! lib/Net/Ping.pm
17923 ____________________________________________________________________________
17924 [  8143] By: jhi                                   on 2000/12/17  05:31:37
17925         Log: Polymorphic regexps.
17926              
17927              Fixes at least the bugs 20001028.003 (both of them...) and
17928              20001108.001.  The bugs 20001114.001 and 20001205.014 seem
17929              also to be fixed by now, probably already before this patch.
17930      Branch: perl
17931            ! embed.h embed.pl mg.c objXSUB.h pp_ctl.c pp_hot.c proto.h
17932            ! regcomp.c regcomp.h regcomp.sym regexec.c regnodes.h sv.c
17933            ! t/op/utf8decode.t t/pragma/utf8.t
17934 ____________________________________________________________________________
17935 [  8142] By: jhi                                   on 2000/12/16  17:16:05
17936         Log: Subject: [patch perl@8102] dos/djgpp update
17937              From: Laszlo Molnar <ml1050@freemail.hu>
17938              Date: Sat, 16 Dec 2000 01:40:52 +0100
17939              Message-ID: <20001216014052.A335@freemail.hu>
17940      Branch: perl
17941            ! djgpp/config.over t/base/commonsense.t
17942 ____________________________________________________________________________
17943 [  8141] By: jhi                                   on 2000/12/16  17:09:27
17944         Log: Few uncheckedin files.
17945      Branch: perl
17946            ! global.sym perlapi.c pod/perlapi.pod pod/perlintern.pod
17947 ____________________________________________________________________________
17948 [  8140] By: nick                                  on 2000/12/15  22:14:31
17949         Log: Integrate mainline
17950      Branch: perlio
17951           !> (integrate 53 files)
17952 ____________________________________________________________________________
17953 [  8139] By: jhi                                   on 2000/12/15  19:49:49
17954         Log: One more IVUV tweak from Nicholas Clark.
17955      Branch: perl
17956            ! sv.c
17957 ____________________________________________________________________________
17958 [  8138] By: jhi                                   on 2000/12/15  19:17:06
17959         Log: Return of the IVUV-preservation, now seems to be happy even
17960              in Digital UNIX (the broken strtoul brokenness detection
17961              seems to have been the fly in the ointment).
17962      Branch: perl
17963            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
17964            ! config_h.SH configure.com embed.h embed.pl epoc/config.sh
17965            ! objXSUB.h op.c perl.h pp.c pp_hot.c proto.h sv.c sv.h
17966            ! t/lib/peek.t t/op/cmp.t t/op/numconvert.t uconfig.h
17967            ! vos/config.alpha.def vos/config.alpha.h vos/config.ga.def
17968            ! vos/config.ga.h win32/config.bc win32/config.gc
17969            ! win32/config.vc
17970 ____________________________________________________________________________
17971 [  8137] By: jhi                                   on 2000/12/15  18:12:14
17972         Log: Metaconfig unit change for #8136.
17973      Branch: metaconfig
17974            ! U/modified/d_strtoul.U
17975      Branch: metaconfig/U/perl
17976            ! d_strtoull.U d_strtouq.U
17977 ____________________________________________________________________________
17978 [  8136] By: jhi                                   on 2000/12/15  18:11:35
17979         Log: I don't think it's sensible or portable to test the strtou*
17980              on /^-/ strings.
17981      Branch: perl
17982            ! Configure
17983 ____________________________________________________________________________
17984 [  8135] By: jhi                                   on 2000/12/15  17:18:49
17985         Log: Metaconfig unit change for #8134.
17986      Branch: metaconfig
17987            ! U/modified/d_strtoul.U
17988 ____________________________________________________________________________
17989 [  8134] By: jhi                                   on 2000/12/15  17:14:13
17990         Log: If longsize is 8 we don't need a LL suffix for integer constants.
17991      Branch: perl
17992            ! Configure config_h.SH
17993 ____________________________________________________________________________
17994 [  8133] By: jhi                                   on 2000/12/15  16:00:23
17995         Log: Update Changes.
17996      Branch: perl
17997            ! Changes patchlevel.h
17998 ____________________________________________________________________________
17999 [  8132] By: jhi                                   on 2000/12/15  15:44:16
18000         Log: Some compilers get huffy if you do not cast a const pointer
18001              to a non-const when assigning.
18002      Branch: perl
18003            ! gv.c
18004 ____________________________________________________________________________
18005 [  8131] By: jhi                                   on 2000/12/15  15:38:30
18006         Log: Subject: [PATCH 5.7.0] speeding up object creation/destruction 4x times
18007              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
18008              Date: Fri, 15 Dec 2000 05:26:57 -0500
18009              Message-ID: <20001215052657.A8319@math.mps.ohio-state.edu>
18010      Branch: perl
18011            ! embed.h embed.pl gv.c objXSUB.h perl.h proto.h sv.c
18012            ! t/pragma/overload.t
18013 ____________________________________________________________________________
18014 [  8130] By: jhi                                   on 2000/12/15  15:36:08
18015         Log: Subject: [PATCH 5.7.0] cosmetic change to overloading
18016              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
18017              Date: Thu, 14 Dec 2000 22:02:43 -0500
18018              Message-ID: <20001214220243.A18437@monk.mps.ohio-state.edu>
18019      Branch: perl
18020            ! gv.c perl.h
18021 ____________________________________________________________________________
18022 [  8129] By: jhi                                   on 2000/12/15  15:34:16
18023         Log: Subject: PATCH: h2xs nit
18024              From: Tim Jenness <t.jenness@jach.hawaii.edu>
18025              Date: Thu, 14 Dec 2000 18:25:46 -1000 (HST)
18026              Message-ID: <Pine.LNX.4.30.0012141820340.2533-100000@lapaki.jach.hawaii.edu>
18027              
18028              Add a template README.
18029      Branch: perl
18030            ! utils/h2xs.PL
18031 ____________________________________________________________________________
18032 [  8128] By: jhi                                   on 2000/12/15  15:32:22
18033         Log: Still buggy findgteprime, fix from Eric Joanis <joanis@cs.toronto.edu>.
18034      Branch: perl
18035            ! lib/Tie/SubstrHash.pm t/lib/tie-substrhash.t
18036 ____________________________________________________________________________
18037 [  8127] By: jhi                                   on 2000/12/15  15:19:34
18038         Log: Subject:  [PATCH Opcode.XS, Perl 5.6+] stuff for caller and _ in Safe::
18039              From: lane@DUPHY4.Physics.Drexel.Edu (Charles Lane)
18040              Date:     Thu, 14 Dec 2000 20:04:42 EST
18041              Message-Id: <001214200310.49929@DUPHY4.Physics.Drexel.Edu>
18042      Branch: perl
18043            ! ext/Opcode/Opcode.xs
18044 ____________________________________________________________________________
18045 [  8126] By: jhi                                   on 2000/12/15  15:17:49
18046         Log: Subject: [PATCH: perl@8102] s/use vars qw\(/our(/ for OS/390 extension builds
18047              From: Peter Prymmer <pvhp@forte.com>
18048              Date: Thu, 14 Dec 2000 15:50:20 -0800 (PST)
18049              Message-ID: <Pine.OSF.4.10.10012141548200.57557-100000@aspara.forte.com>
18050      Branch: perl
18051            ! ext/Errno/Errno_pm.PL lib/ExtUtils/MM_Unix.pm
18052            ! lib/ExtUtils/Manifest.pm lib/File/Spec.pm
18053            ! lib/File/Spec/Functions.pm lib/File/Spec/Unix.pm
18054 ____________________________________________________________________________
18055 [  8125] By: jhi                                   on 2000/12/15  15:11:05
18056         Log: This seems to be a stage sane and stable enough to checkin.
18057              (it basically is 8102..8118+8122 but no 8120, 8121, 8123, 8124)
18058      Branch: perl
18059            ! MANIFEST embed.h embed.pl objXSUB.h op.c perl.h perlapi.c
18060            ! pod/perlapi.pod pp.c pp_hot.c proto.h sv.c sv.h t/lib/peek.t
18061            ! t/op/cmp.t t/op/numconvert.t
18062 ____________________________________________________________________________
18063 [  8124] By: jhi                                   on 2000/12/15  04:20:26
18064         Log: Something is really wonky.
18065      Branch: perl
18066            ! sv.c
18067 ____________________________________________________________________________
18068 [  8123] By: jhi                                   on 2000/12/15  04:00:50
18069         Log: Fixes for the IV UV patches to compile in Digital UNIX.
18070      Branch: perl
18071            ! sv.c
18072 ____________________________________________________________________________
18073 [  8122] By: jhi                                   on 2000/12/15  02:53:40
18074         Log: Subject: Re: [ID 20001214.011] Unreachable value in a search list logical name
18075              From: "Craig A. Berry" <craigberry@mac.com>
18076              Date: Thu, 14 Dec 2000 19:10:49 -0600
18077              Message-Id: <p04330100b65efbe32f30@[172.16.52.1]>
18078      Branch: perl
18079            ! vms/vms.c
18080 ____________________________________________________________________________
18081 [  8121] By: jhi                                   on 2000/12/15  02:50:00
18082         Log: Metaconfig changes for #8120.
18083      Branch: metaconfig
18084            + U/modified/d_strtoul.U
18085      Branch: metaconfig/U/perl
18086            ! d_strtoull.U d_strtouq.U
18087 ____________________________________________________________________________
18088 [  8120] By: jhi                                   on 2000/12/15  02:49:42
18089         Log: From: Nicholas Clark <nick@ccl4.org> 
18090              Subject: [PATCH] strtoq, strtou(q|ll|l) testing (was [PATCH] faster and 64 bit  preserving arithmetic)
18091              Date: Thu, 14 Dec 2000 18:38:57 +0000
18092              Message-ID: <20001214183857.B97909@plum.flirble.org>
18093      Branch: perl
18094            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
18095            ! config_h.SH configure.com epoc/config.sh perl.h sv.c uconfig.h
18096            ! uconfig.sh vos/config.alpha.def vos/config.alpha.h
18097            ! vos/config.ga.def vos/config.ga.h win32/config.bc
18098            ! win32/config.gc win32/config.vc
18099 ____________________________________________________________________________
18100 [  8119] By: jhi                                   on 2000/12/14  23:40:58
18101         Log: Subject: [PATCH] faster and 64 bit preserving arithmetic
18102              From: Nicholas Clark <nick@ccl4.org>
18103              Date: Wed, 13 Dec 2000 20:08:50 +0000
18104              Message-ID: <20001213200849.B71166@plum.flirble.org>
18105      Branch: perl
18106            ! embed.h embed.pl objXSUB.h op.c perl.h pp.c pp_hot.c proto.h
18107            ! sv.c sv.h t/lib/peek.t t/op/cmp.t t/op/numconvert.t
18108 ____________________________________________________________________________
18109 [  8118] By: jhi                                   on 2000/12/14  22:46:26
18110         Log: Integrate perlio.
18111      Branch: perl
18112           !> MANIFEST ext/Encode/compile makedef.pl
18113 ____________________________________________________________________________
18114 [  8117] By: nick                                  on 2000/12/14  22:38:53
18115         Log: Win32 tweaks to get Encode to build
18116              - temp hack to makedef.pl till PerlIO is properly "exported".
18117              - MSVC dislikes  
18118              static encpage_t foo[];
18119              so make 'em extern for now.
18120      Branch: perlio
18121            ! ext/Encode/compile makedef.pl
18122 ____________________________________________________________________________
18123 [  8116] By: nick                                  on 2000/12/14  22:00:53
18124         Log: Document the new files
18125      Branch: perlio
18126            ! MANIFEST
18127 ____________________________________________________________________________
18128 [  8115] By: jhi                                   on 2000/12/14  21:58:01
18129         Log: MANIFEST new files of #8114.
18130      Branch: perl
18131            ! MANIFEST
18132 ____________________________________________________________________________
18133 [  8114] By: jhi                                   on 2000/12/14  21:50:49
18134         Log: Integrate perlio.
18135      Branch: perl
18136           +> ext/Encode/compile ext/Encode/encengine.c ext/Encode/encode.h
18137           !> ext/Encode/Encode.pm ext/Encode/Encode.xs
18138           !> ext/Encode/Encode/ascii.enc ext/Encode/Encode/cp1047.enc
18139           !> ext/Encode/Encode/cp37.enc ext/Encode/Encode/posix-bc.enc
18140           !> ext/Encode/Makefile.PL
18141 ____________________________________________________________________________
18142 [  8113] By: jhi                                   on 2000/12/14  21:48:49
18143         Log: The documentation part of the
18144              
18145              Subject: [ID 20001214.002] Net::Ping patch
18146              From: Jonathan Stowe <gellyfish@gellyfish.com>
18147              Date: Thu, 14 Dec 2000 08:28:14 +0000 (GMT)
18148              Message-Id: <Pine.LNX.4.10.10012140805480.19767-200000@orpheus.gellyfish.com>
18149              since the #7529 had already addressed the same problem.
18150      Branch: perl
18151            ! lib/Net/Ping.pm
18152 ____________________________________________________________________________
18153 [  8112] By: jhi                                   on 2000/12/14  21:42:57
18154         Log: Subject: [PATCH] Re: [ID 20001013.006] XS subs are not define()ed
18155              From: Dominic Dunlop <domo@computer.org>
18156              Date: Tue, 12 Dec 2000 10:47:10 +0100
18157              Message-Id: <p04320402b65ba33a92b2@[192.168.1.4]>
18158              
18159              Document how elusive subroutines can be.
18160      Branch: perl
18161            ! pod/perlfunc.pod
18162 ____________________________________________________________________________
18163 [  8111] By: jhi                                   on 2000/12/14  21:38:05
18164         Log: Subject: [ID 20001214.003] [PATCH bleadperl] POSIX::tmpnam() is dangerous
18165              From: Dominic Dunlop <domo@computer.org>
18166              Date: Thu, 14 Dec 2000 10:13:51 +0100
18167              Message-Id: <p04320407b65e3f4853aa@[192.168.1.4]>
18168      Branch: perl
18169            ! ext/POSIX/POSIX.pod
18170 ____________________________________________________________________________
18171 [  8110] By: jhi                                   on 2000/12/14  21:36:32
18172         Log: Subject: [patch] perlfaq7
18173              From: "Gerrit P. Haase" <gerrit.haase@t-online.de>
18174              Date: Thu, 14 Dec 2000 15:31:07 +0100
18175              Message-ID: <3A38E7BB.13178.11C40A8@localhost>
18176      Branch: perl
18177            ! pod/perlfaq7.pod
18178 ____________________________________________________________________________
18179 [  8109] By: jhi                                   on 2000/12/14  21:29:20
18180         Log: Subject: [8104] Encode
18181              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
18182              Date: Thu, 14 Dec 2000 14:49:34 +0100
18183              Message-Id: <20001214142101.B338.H.M.BRAND@hccnet.nl>
18184              
18185              Type casting for nervous compilers.
18186      Branch: perl
18187            ! ext/Encode/Encode.xs
18188 ____________________________________________________________________________
18189 [  8108] By: jhi                                   on 2000/12/14  21:26:17
18190         Log: Subject: [8104] DB_File
18191              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
18192              Date: Thu, 14 Dec 2000 14:49:35 +0100
18193              Message-Id: <20001214144439.B33A.H.M.BRAND@hccnet.nl>
18194              
18195              Type definition incorrect for DB 2.7.7.  Not known when it
18196              changed, so only changed it for a known revision.
18197      Branch: perl
18198            ! ext/DB_File/DB_File.xs
18199 ____________________________________________________________________________
18200 [  8107] By: jhi                                   on 2000/12/14  21:23:41
18201         Log: Subject: [PATCH: perl@8102] Re: Encode/cp1047.enc etc.
18202              From: Peter Prymmer <pvhp@forte.com>
18203              Date: Thu, 14 Dec 2000 11:11:50 -0800 (PST)
18204              Message-ID: <Pine.OSF.4.10.10012141057330.57557-100000@aspara.forte.com>
18205              
18206              Use '?' (0x6F in EBCDIC) for the illegal codepoint.
18207      Branch: perl
18208            ! ext/Encode/Encode/cp1047.enc ext/Encode/Encode/cp37.enc
18209            ! ext/Encode/Encode/posix-bc.enc
18210 ____________________________________________________________________________
18211 [  8106] By: nick                                  on 2000/12/14  20:36:13
18212         Log: "Cold" build correction to Encode's Makefile.PL
18213      Branch: perlio
18214            ! ext/Encode/Makefile.PL
18215 ____________________________________________________________________________
18216 [  8105] By: nick                                  on 2000/12/14  20:09:37
18217         Log: "Compiled" encodings.
18218              Correct replacement character in EBCDIC .enc files
18219              Add 0x7F to ASCII repertoire.
18220      Branch: perlio
18221            ! ext/Encode/Encode.pm ext/Encode/Encode.xs
18222            ! ext/Encode/Encode/ascii.enc ext/Encode/Encode/cp1047.enc
18223            ! ext/Encode/Encode/cp37.enc ext/Encode/Encode/posix-bc.enc
18224            ! ext/Encode/Makefile.PL ext/Encode/compile
18225            ! ext/Encode/encengine.c ext/Encode/encode.h
18226 ____________________________________________________________________________
18227 [  8104] By: nick                                  on 2000/12/14  00:38:20
18228         Log: Integrate mainline
18229      Branch: perlio
18230           !> Changes Configure doio.c embed.h embed.pl ext/DB_File/Changes
18231           !> ext/DB_File/DB_File.pm ext/DB_File/DB_File.xs
18232           !> ext/DB_File/dbinfo ext/DB_File/typemap ext/DB_File/version.c
18233           !> hints/hpux.sh lib/Cwd.pm objXSUB.h patchlevel.h perlapi.c
18234           !> pod/perlapi.pod pp_hot.c proto.h t/lib/db-btree.t
18235           !> t/lib/db-hash.t t/lib/db-recno.t
18236 ____________________________________________________________________________
18237 [  8103] By: nick                                  on 2000/12/13  23:16:13
18238         Log: Beginings of compiled encodings - checked in as a snapshot of thoughts
18239              so far and so it does not get lost.
18240      Branch: perlio
18241            + ext/Encode/compile ext/Encode/encengine.c ext/Encode/encode.h
18242 ____________________________________________________________________________
18243 [  8102] By: jhi                                   on 2000/12/13  17:14:22
18244         Log: Update Changes.
18245      Branch: perl
18246            ! Changes patchlevel.h
18247 ____________________________________________________________________________
18248 [  8101] By: jhi                                   on 2000/12/13  16:53:41
18249         Log: Move the proto of start_glob() to a better place; regen api files.
18250      Branch: perl
18251            ! embed.h embed.pl objXSUB.h perlapi.c pod/perlapi.pod proto.h
18252 ____________________________________________________________________________
18253 [  8100] By: jhi                                   on 2000/12/13  16:47:11
18254         Log: Metaconfig change for #8099.
18255      Branch: metaconfig
18256            ! U/modified/Head.U
18257 ____________________________________________________________________________
18258 [  8099] By: jhi                                   on 2000/12/13  16:46:48
18259         Log: Subject: Re: [ID 20000328.039] [PATCH] Eliminate Configure use of /tmp
18260              From: Andy Dougherty <doughera@lafayette.edu>
18261              Date: Wed, 13 Dec 2000 10:36:09 -0500 (EST)
18262              Message-ID: <Pine.SOL.4.10.10012131031230.2017-100000@maxwell.phys.lafayette.edu>
18263      Branch: perl
18264            ! Configure
18265 ____________________________________________________________________________
18266 [  8098] By: jhi                                   on 2000/12/13  16:39:02
18267         Log: Subject: [20000615.005] [PATCH] Cwd::fastgetcwd broken (or mis-named?) on Unix  
18268              From: rspier@pobox.com (Robert Spier)
18269              Date: Tue, 12 Dec 2000 21:12:39 -0500
18270              Message-ID: <14902.56087.678086.725773@rls.cx>
18271              
18272              fastgetcwd is defined using a glob alias on a $^O dependent basis -
18273              and there was no default assignment or perl subroutine.
18274      Branch: perl
18275            ! lib/Cwd.pm
18276 ____________________________________________________________________________
18277 [  8097] By: jhi                                   on 2000/12/13  16:16:01
18278         Log: Subject: [PATCH] move startglob out of pp_hot.c
18279              From: Nicholas Clark <nick@ccl4.org>
18280              Date: Mon, 11 Dec 2000 23:16:39 +0000
18281              Message-ID: <20001211231638.A55550@plum.flirble.org>
18282      Branch: perl
18283            ! doio.c embed.h embed.pl objXSUB.h pp_hot.c proto.h
18284 ____________________________________________________________________________
18285 [  8096] By: jhi                                   on 2000/12/13  15:26:23
18286         Log: Subject: [8095] HP-UX 11.00 / cc / 64bitint & 64bitall / perlio 
18287              From: "H.Merijn Brand" <h.m.brand@hccnet.nl> 
18288              Date: Wed, 13 Dec 2000 14:01:37 +0100
18289              Message-Id: <20001213135318.621A.H.M.BRAND@hccnet.nl>
18290              
18291              perl/64/HP-UX wants libdb-3.0 to be shared ELF 64 bit which
18292              in turn requires libpthread in libswanted.
18293      Branch: perl
18294            ! hints/hpux.sh
18295 ____________________________________________________________________________
18296 [  8095] By: jhi                                   on 2000/12/12  19:51:05
18297         Log: The integration wars continue.
18298      Branch: perl
18299           !> sv.c
18300 ____________________________________________________________________________
18301 [  8094] By: jhi                                   on 2000/12/12  19:48:26
18302         Log: Subject: [PATCH perl@8070] DB_File-1.74  
18303              From: "Paul Marquess" <paul_marquess@yahoo.co.uk> 
18304              Date: Mon, 11 Dec 2000 23:07:17 -0000
18305              Message-ID: <000001c063c7$1b9d28a0$a20a140a@bfs.phone.com> 
18306      Branch: perl
18307            ! ext/DB_File/Changes ext/DB_File/DB_File.pm
18308            ! ext/DB_File/DB_File.xs ext/DB_File/dbinfo ext/DB_File/typemap
18309            ! ext/DB_File/version.c t/lib/db-btree.t t/lib/db-hash.t
18310            ! t/lib/db-recno.t
18311 ____________________________________________________________________________
18312 [  8093] By: nick                                  on 2000/12/12  19:42:13
18313         Log: Integrate/merge mainline with further efficiency tweak to sv.c's utf8 stuff.
18314      Branch: perlio
18315            ! sv.c
18316           !> lib/File/DosGlob.pm
18317 ____________________________________________________________________________
18318 [  8092] By: jhi                                   on 2000/12/12  19:28:11
18319         Log: Integrate perlio.
18320      Branch: perl
18321           !> sv.c
18322 ____________________________________________________________________________
18323 [  8091] By: nick                                  on 2000/12/12  18:49:45
18324         Log: Fix for Tk, and upgrading shared SVs.
18325      Branch: perlio
18326            ! sv.c
18327 ____________________________________________________________________________
18328 [  8090] By: jhi                                   on 2000/12/12  16:48:59
18329         Log: Subject: [PATCH] Re: Breadperl & Tk
18330              From: Nick Ing-Simmons <nik@tiuk.ti.com>
18331              Date: Tue, 12 Dec 2000 14:48:27 GMT
18332              Message-Id: <200012121448.OAA11516@mikado.tiuk.ti.com> 
18333      Branch: perl
18334            ! sv.c
18335 ____________________________________________________________________________
18336 [  8089] By: jhi                                   on 2000/12/12  03:37:19
18337         Log: Subject: DosGlob.pm diff for bash style brace expansion.
18338              From: "Mestnik, Mike" <MMestnik@rustconsulting.com>
18339              Date: Fri, 8 Dec 2000 10:45:30 -0600
18340              Message-ID: <B50C47897E98D3118130009027D3971920F278@EXCHANGE_M1>
18341      Branch: perl
18342            ! lib/File/DosGlob.pm
18343 ____________________________________________________________________________
18344 [  8088] By: nick                                  on 2000/12/11  23:59:59
18345         Log: Integrate mainline
18346      Branch: perlio
18347           !> ext/B/B.pm ext/B/B/Deparse.pm installperl lib/CGI.pm
18348           !> lib/ExtUtils/Liblist.pm lib/ExtUtils/MM_Unix.pm
18349           !> lib/ExtUtils/MakeMaker.pm lib/File/DosGlob.pm pod/perldiag.pod
18350           !> pod/perlop.pod pp.c pp_hot.c scope.c t/io/utf8.t t/lib/b.t
18351           !> t/op/local.t t/pragma/warn/toke toke.c
18352 ____________________________________________________________________________
18353 [  8087] By: jhi                                   on 2000/12/11  23:20:23
18354         Log: Integrate perlio.
18355      Branch: perl
18356           !> ext/Encode/Encode.xs perlio.c perlio.h perliol.h
18357 ____________________________________________________________________________
18358 [  8086] By: jhi                                   on 2000/12/11  22:50:59
18359         Log: Tune further the OS detection of CGI.
18360      Branch: perl
18361            ! lib/CGI.pm
18362 ____________________________________________________________________________
18363 [  8085] By: nick                                  on 2000/12/11  22:50:46
18364         Log: Finish 1st pass of "encoding" layer e.g. :
18365              open($fh,"<encoding(iso8859-7)",$greek) || die;
18366      Branch: perlio
18367            ! ext/Encode/Encode.xs perlio.c perliol.h
18368 ____________________________________________________________________________
18369 [  8084] By: jhi                                   on 2000/12/11  22:32:06
18370         Log: Revert the -f ambiguousity patch, seems to cause
18371              too much hassle (the interpret -Q as a function
18372              where Q is not a known filetest part is left in).
18373      Branch: perl
18374            ! lib/ExtUtils/Liblist.pm pod/perldiag.pod t/pragma/warn/toke
18375            ! toke.c
18376 ____________________________________________________________________________
18377 [  8083] By: jhi                                   on 2000/12/11  22:27:23
18378         Log: (accidentally empty check-in)
18379      Branch: perl
18380            ! lib/File/DosGlob.pm
18381 ____________________________________________________________________________
18382 [  8082] By: nick                                  on 2000/12/11  19:09:51
18383         Log: Restore mmap function (broken by tweaks to shared buffer
18384              layer for encode(xxxx)).
18385      Branch: perlio
18386            ! perlio.c
18387 ____________________________________________________________________________
18388 [  8081] By: jhi                                   on 2000/12/11  18:29:13
18389         Log: Subject: Re: The long awaited feature ...
18390              From: Simon Cozens <simon@cozens.net>
18391              Date: Mon, 11 Dec 2000 15:54:24 +0000
18392              Message-ID: <20001211155424.A17680@deep-dark-truthful-mirror.perlhacker.org>
18393              
18394              More io/utf8 tests.
18395      Branch: perl
18396            ! t/io/utf8.t
18397 ____________________________________________________________________________
18398 [  8080] By: jhi                                   on 2000/12/11  18:19:36
18399         Log: Subject: PATCH MakeMaker manpage clarification
18400              From: andreas.koenig@anima.de (Andreas J. Koenig)
18401              Date: 10 Dec 2000 20:46:13 +0100
18402              Message-ID: <m3aea4kqka.fsf@ak-71.mind.de>
18403      Branch: perl
18404            ! lib/ExtUtils/MakeMaker.pm
18405 ____________________________________________________________________________
18406 [  8079] By: jhi                                   on 2000/12/11  15:35:07
18407         Log: Subject: Re: [ID 20001204.007] -MO=Deparse -we '{234;}' failing
18408              From: Simon Cozens <simon@cozens.net>
18409              Date: Sun, 10 Dec 2000 19:06:19 +0000
18410              Message-ID: <20001210190619.B21402@deep-dark-truthful-mirror.perlhacker.org>
18411      Branch: perl
18412            ! ext/B/B/Deparse.pm t/lib/b.t
18413 ____________________________________________________________________________
18414 [  8078] By: jhi                                   on 2000/12/11  15:09:11
18415         Log: Subject: [PATCH] docs on NaN
18416              From: Nicholas Clark <nick@ccl4.org>
18417              Date: Mon, 11 Dec 2000 01:48:38 +0000
18418              Message-ID: <20001211014838.B99205@plum.flirble.org>
18419      Branch: perl
18420            ! pod/perlop.pod
18421 ____________________________________________________________________________
18422 [  8077] By: jhi                                   on 2000/12/11  15:02:21
18423         Log: Subject: [PATCH] Re: [Fwd: BUG 20001205.022] Local on Hash elements
18424              From: Simon Cozens <simon@cozens.net>
18425              Date: Mon, 11 Dec 2000 01:21:45 +0000
18426              Message-ID: <20001211012144.A23467@deep-dark-truthful-mirror.perlhacker.org>
18427      Branch: perl
18428            ! pp.c pp_hot.c scope.c t/op/local.t
18429 ____________________________________________________________________________
18430 [  8076] By: nick                                  on 2000/12/10  20:43:32
18431         Log: Not merge worthy...
18432              Allow arg to layers e.g. open($fh,"<:encode(iso8859-15)",$name)
18433              syntax is modelled on attributes.
18434              Untested fix for io/utf8 on Win32 etc.
18435              Very clumsy start to the encode layer.
18436      Branch: perlio
18437            ! ext/Encode/Encode.xs perlio.c perlio.h perliol.h
18438 ____________________________________________________________________________
18439 [  8075] By: jhi                                   on 2000/12/10  18:39:33
18440         Log: Darwin is not Windows.
18441      Branch: perl
18442            ! lib/CGI.pm
18443 ____________________________________________________________________________
18444 [  8074] By: jhi                                   on 2000/12/10  18:31:27
18445         Log: Subject: Ambiguous -%c() resolved as a file test
18446              From: "Paul Marquess" <Paul.Marquess@openwave.com>
18447              Date: Sun, 10 Dec 2000 15:35:07 -0000
18448              Message-ID: <002601c062be$c5f749c0$a20a140a@bfs.phone.com>
18449      Branch: perl
18450            ! lib/ExtUtils/Liblist.pm lib/ExtUtils/MM_Unix.pm
18451 ____________________________________________________________________________
18452 [  8073] By: jhi                                   on 2000/12/10  18:16:29
18453         Log: Subject: PATCH installperl misinformed 
18454              From: andreas.koenig@anima.de (Andreas J. Koenig)
18455              Date: 10 Dec 2000 13:01:32 +0100 
18456              Message-ID: <m3r93glc2r.fsf@ak-71.mind.de>
18457      Branch: perl
18458            ! installperl
18459 ____________________________________________________________________________
18460 [  8072] By: jhi                                   on 2000/12/10  18:07:55
18461         Log: The walkoptree confusion rages; walkoptree() seems to be coming
18462              from B.xs, while walkoptree_slow() comes from B.pm.
18463      Branch: perl
18464            ! ext/B/B.pm
18465 ____________________________________________________________________________
18466 [  8071] By: nick                                  on 2000/12/10  11:45:47
18467         Log: Integrate mainline
18468      Branch: perlio
18469           +> t/base/commonsense.t
18470           !> (integrate 37 files)
18471 ____________________________________________________________________________
18472 [  8070] By: jhi                                   on 2000/12/10  04:46:21
18473         Log: Update Changes.
18474      Branch: perl
18475            ! Changes patchlevel.h
18476 ____________________________________________________________________________
18477 [  8069] By: jhi                                   on 2000/12/10  04:39:19
18478         Log: Subject: Re: PATCH: Let Test::Harness bail out early (Was: Testing module dependencies)
18479              From: andreas.koenig@anima.de (Andreas J. Koenig)
18480              Date: 09 Dec 2000 17:14:25 +0100
18481              Message-ID: <m3wvd9o9lq.fsf@ak-71.mind.de>
18482      Branch: perl
18483            + t/base/commonsense.t
18484            ! MANIFEST lib/Test/Harness.pm t/TEST t/UTEST
18485 ____________________________________________________________________________
18486 [  8068] By: jhi                                   on 2000/12/10  04:17:36
18487         Log: Subject: [PATCH 5.7.0@8047] RE: [ID 20001013.009] DB_File issues warning when setting element to    undef
18488              From: "Paul Marquess" <paul_marquess@yahoo.co.uk>
18489              Date: Sat, 9 Dec 2000 16:47:22 -0000
18490              Message-ID: <002001c061ff$b3aba820$a20a140a@bfs.phone.com>
18491      Branch: perl
18492            ! ext/DB_File/typemap ext/GDBM_File/GDBM_File.pm
18493            ! ext/GDBM_File/typemap ext/NDBM_File/NDBM_File.pm
18494            ! ext/NDBM_File/typemap ext/ODBM_File/ODBM_File.pm
18495            ! ext/ODBM_File/typemap ext/SDBM_File/SDBM_File.pm
18496            ! ext/SDBM_File/typemap t/lib/db-btree.t t/lib/db-hash.t
18497            ! t/lib/db-recno.t t/lib/gdbm.t t/lib/ndbm.t t/lib/odbm.t
18498            ! t/lib/sdbm.t
18499 ____________________________________________________________________________
18500 [  8067] By: jhi                                   on 2000/12/10  03:52:02
18501         Log: Test case for #8066.
18502      Branch: perl
18503            ! t/op/misc.t
18504 ____________________________________________________________________________
18505 [  8066] By: jhi                                   on 2000/12/10  03:50:30
18506         Log: Subject: [PATCH] Re: [ID 20001202.002] [BUG all] 'die qr{pattern}' does not check termination
18507              From: Simon Cozens <simon@cozens.net>
18508              Date: Sun, 10 Dec 2000 00:55:37 +0000
18509              Message-ID: <20001210005537.B16221@deep-dark-truthful-mirror.perlhacker.org>
18510      Branch: perl
18511            ! pp_sys.c
18512 ____________________________________________________________________________
18513 [  8065] By: jhi                                   on 2000/12/10  03:44:52
18514         Log: Test case for #8064.
18515      Branch: perl
18516            ! t/comp/proto.t
18517 ____________________________________________________________________________
18518 [  8064] By: jhi                                   on 2000/12/10  03:42:32
18519         Log: Subject: Re: prototype of substr
18520              From: Simon Cozens <simon@cozens.net>
18521              Date: Sun, 10 Dec 2000 00:13:33 +0000
18522              Message-ID: <20001210001333.A16221@deep-dark-truthful-mirror.perlhacker.org>
18523              
18524              Make CORE::substr to be '$$;$$' instead of '$$;$;$'.
18525      Branch: perl
18526            ! pp.c
18527 ____________________________________________________________________________
18528 [  8063] By: jhi                                   on 2000/12/10  03:39:42
18529         Log: Subject: [PATCH] perlguts.pod
18530              From: Simon Cozens <simon@cozens.net>
18531              Date: Sun, 10 Dec 2000 00:06:47 +0000
18532              Message-ID: <20001210000647.A16203@deep-dark-truthful-mirror.perlhacker.org>
18533              
18534              Documentation of the different types of ops,
18535              plus the functions in dump.c
18536      Branch: perl
18537            ! pod/perlguts.pod
18538 ____________________________________________________________________________
18539 [  8062] By: jhi                                   on 2000/12/10  03:30:04
18540         Log: Subject: [ID 20001209.006] Not OK: perl v5.7.0 +DEVEL7978 on armv4l-linux-64int 2.2.17-rmk1 (UNINSTALLED)
18541              From: Nicholas Clark <nick@talking.bollo.cx>
18542              Date: Sat, 09 Dec 2000 18:57:25 +0000
18543              Message-Id: <E144pBV-0002Nv-00@Bagpuss.unfortu.net>
18544              
18545              Be more robust in weird hostname setups.
18546      Branch: perl
18547            ! t/lib/net-hostent.t
18548 ____________________________________________________________________________
18549 [  8061] By: jhi                                   on 2000/12/10  03:28:21
18550         Log: Pacify fussy compiler. 
18551      Branch: perl
18552            ! pp_sys.c
18553 ____________________________________________________________________________
18554 [  8060] By: jhi                                   on 2000/12/10  02:52:46
18555         Log: Integrate perlio.
18556      Branch: perl
18557           !> pp_sys.c t/io/utf8.t
18558 ____________________________________________________________________________
18559 [  8059] By: nick                                  on 2000/12/09  23:40:14
18560         Log: read/sysread/recv should now be utf8 aware.
18561              Basic test for utf8 read.
18562      Branch: perlio
18563            ! pp_sys.c t/io/utf8.t
18564 ____________________________________________________________________________
18565 [  8058] By: jhi                                   on 2000/12/09  21:56:02
18566         Log: Integrate perlio.
18567      Branch: perl
18568           +> t/io/utf8.t
18569           !> MANIFEST doio.c perlio.c pp_sys.c sv.c t/comp/require.t toke.c
18570 ____________________________________________________________________________
18571 [  8057] By: jhi                                   on 2000/12/09  21:53:35
18572         Log: Subject: Re: Additional patch for UTF8-keys (Re: perl@8016)
18573              From: Inaba Hiroto <inaba@st.rim.or.jp>
18574              Date: Sun, 10 Dec 2000 05:53:21 +0900
18575              Message-ID: <3A329BC0.15E8BFF9@st.rim.or.jp>
18576              
18577              Tests for #8056.
18578      Branch: perl
18579            ! t/op/each.t
18580 ____________________________________________________________________________
18581 [  8056] By: jhi                                   on 2000/12/09  21:51:16
18582         Log: Subject: Additional patch for UTF8-keys (Re: perl@8016)
18583              From: Inaba Hiroto <inaba@st.rim.or.jp>
18584              Date: Sat, 09 Dec 2000 18:02:00 +0900
18585              Message-ID: <3A31F508.34F4BB23@st.rim.or.jp>
18586              
18587              exists() didn't work for UTF-8 keys, and neither did shared hash keys.
18588      Branch: perl
18589            ! embed.h embed.pl hv.c objXSUB.h op.c proto.h sv.c
18590 ____________________________________________________________________________
18591 [  8055] By: nick                                  on 2000/12/09  20:11:48
18592         Log: Make write() (i.e. formats) utf8-aware by calling do_print() rather
18593              than raw PerlIO_write() - does not seem to break any tests.
18594      Branch: perlio
18595            ! pp_sys.c
18596 ____________________________________________________________________________
18597 [  8054] By: nick                                  on 2000/12/09  19:47:30
18598         Log: Make print, syswrite, send, readline, getc honour utf8-ness of PerlIO.
18599              (sysread, recv and write i.e. formats still to do...)
18600              Allow :utf8 or :bytes in PerlIO_apply_layers() so that
18601              open($fh,">:utf8","name")
18602              etc. work. - "applying" those just sets/clears the UTF8 bit of the top layer,
18603              so no extra overhead is involved.
18604              Tweak t/comp/require.t to add a 'use bytes' to permit its dubious writing of BOM
18605              to a non-utf8 stream.
18606              Add initial io/utf8.t
18607              Fix SvPVutf8() - sv_2pv() was not expecting to be called with something
18608              that was already SvPOK() - (we just fossiked with SvUTF8 bit). Fix that
18609              and also just use the SvPV macro in sv_2pvutf8() to avoid the issue/overhead.
18610      Branch: perlio
18611            + t/io/utf8.t
18612            ! MANIFEST doio.c perlio.c pp_sys.c sv.c t/comp/require.t
18613 ____________________________________________________________________________
18614 [  8053] By: nick                                  on 2000/12/09  19:26:37
18615         Log: Did not get that has_utf8/this_utf8 fix right last time, another spot
18616              was only testing this_utf8.
18617      Branch: perlio
18618            ! toke.c
18619 ____________________________________________________________________________
18620 [  8052] By: nick                                  on 2000/12/09  19:09:41
18621         Log: Typo/thinko in S_scan_const() - seeing high bit sets has_utf8 not this_utf8
18622              i.e. the output string has one, but don't mess with source assumption.
18623      Branch: perlio
18624            ! toke.c
18625 ____________________________________________________________________________
18626 [  8051] By: jhi                                   on 2000/12/09  16:55:17
18627         Log: Integrate perlio.
18628      Branch: perl
18629           !> MANIFEST embedvar.h intrpvar.h mg.c perl.c perlapi.h pp_hot.c
18630           !> sv.c thrdvar.h util.c
18631 ____________________________________________________________________________
18632 [  8050] By: jhi                                   on 2000/12/09  16:48:07
18633         Log: Nits noticed by Peter Prymmer.
18634      Branch: perl
18635            ! lib/ExtUtils/MM_VMS.pm
18636 ____________________________________________________________________________
18637 [  8049] By: nick                                  on 2000/12/09  13:49:40
18638         Log: UTF8 output prework.
18639              - Store $\ and $, as SVs so they can have SvUTF8 flag
18640              - use do_print() rather than raw PerlIO_write() to print them.
18641      Branch: perlio
18642            ! embedvar.h intrpvar.h mg.c perl.c perlapi.h pp_hot.c sv.c
18643            ! thrdvar.h util.c
18644 ____________________________________________________________________________
18645 [  8048] By: nick                                  on 2000/12/09  12:30:43
18646         Log: Integrate mainline.
18647      Branch: perlio
18648           +> ext/Encode/Encode/iso8859-16.enc ext/POSIX/hints/svr4.pl
18649           +> t/op/reverse.t
18650           !> Changes MANIFEST doop.c ext/POSIX/Makefile.PL hints/svr4.sh
18651           !> lib/ExtUtils/MM_OS2.pm lib/ExtUtils/MM_Unix.pm
18652           !> lib/ExtUtils/MM_VMS.pm lib/ExtUtils/Manifest.pm patchlevel.h
18653           !> pod/perlapi.pod pod/perlfunc.pod pod/perlintern.pod pp.h
18654           !> pp_hot.c t/README t/base/term.t t/lib/bigfltpm.t
18655           !> t/op/utf8decode.t t/pragma/warn/utf8 utf8.c utf8.h
18656 ____________________________________________________________________________
18657 [  8047] By: jhi                                   on 2000/12/09  00:23:27
18658         Log: Subject: Re: [pvhp@forte.com: [ID 20001208.004] Not OK: perl v5.7.0 +DEVEL8042 on VMS_AXP V7.1 (UNINSTALLED)]
18659              From: Michael G Schwern <schwern@pobox.com>
18660              Date: Fri, 8 Dec 2000 14:43:04 -0600
18661      Branch: perl
18662            ! lib/ExtUtils/MM_VMS.pm
18663 ____________________________________________________________________________
18664 [  8046] By: jhi                                   on 2000/12/08  23:10:27
18665         Log: A missed check-in.
18666      Branch: perl
18667            ! lib/ExtUtils/Manifest.pm
18668 ____________________________________________________________________________
18669 [  8045] By: jhi                                   on 2000/12/08  21:57:12
18670         Log: (null check-in)
18671      Branch: perl
18672            ! lib/ExtUtils/MM_Unix.pm pod/perlintern.pod
18673 ____________________________________________________________________________
18674 [  8044] By: jhi                                   on 2000/12/08  21:11:06
18675         Log: Add ISO 8859-16 encoding.  Not a standard yet but seems to be
18676              at the final draft stage.
18677      Branch: perl
18678            + ext/Encode/Encode/iso8859-16.enc
18679            ! MANIFEST
18680 ____________________________________________________________________________
18681 [  8043] By: jhi                                   on 2000/12/08  16:39:04
18682         Log: Update Changes.
18683      Branch: perl
18684            ! Changes patchlevel.h
18685 ____________________________________________________________________________
18686 [  8042] By: jhi                                   on 2000/12/08  16:33:39
18687         Log: Do not return the Unicode replacement character if UTF-8
18688              decoding goes awry, it should be up to the caller to decide.
18689      Branch: perl
18690            ! pod/perlapi.pod utf8.c
18691 ____________________________________________________________________________
18692 [  8041] By: jhi                                   on 2000/12/08  16:22:28
18693         Log: metaconfig maintenance.
18694      Branch: metaconfig
18695            ! U/modified/stdchar.U
18696      Branch: metaconfig/U/perl
18697            + testsyml.U
18698 ____________________________________________________________________________
18699 [  8040] By: jhi                                   on 2000/12/08  16:03:08
18700         Log: Subject: [ID 20001207.009] Not OK: perl v5.7.0 +DEVEL8030 on os2-64int-ld 2.30
18701              From: sthoenna@efn.org
18702              Date: Thu, 7 Dec 2000 21:32:43 -0800 (PST)
18703              Message-Id: <200012080532.eB85Wh729109@garcia.efn.org>
18704      Branch: perl
18705            ! Changes lib/ExtUtils/MM_OS2.pm
18706 ____________________________________________________________________________
18707 [  8039] By: jhi                                   on 2000/12/08  15:57:11
18708         Log: Subject: [PATCH] Re: ebcdic <-> ascii tables interjected in uv <-> utf8 considered harmful
18709              From: Simon Cozens <simon@cozens.net>
18710              Date: Fri, 8 Dec 2000 13:33:31 +0000
18711              Message-ID: <20001208133331.A11535@deep-dark-truthful-mirror.perlhacker.org>
18712              
18713              (The pp_hot part needed a rewrite.)
18714      Branch: perl
18715            ! doop.c pp_hot.c utf8.c
18716 ____________________________________________________________________________
18717 [  8038] By: jhi                                   on 2000/12/08  15:25:08
18718         Log: Subject: djSP
18719              From: Michael Stevens <michael@etla.org>
18720              Date: Wed, 6 Dec 2000 23:24:01 +0000
18721              Message-ID: <20001206232400.A21381@firedrake.org>
18722              
18723              Plus a note from Nick Ing-Simmons.
18724      Branch: perl
18725            ! pp.h
18726 ____________________________________________________________________________
18727 [  8037] By: jhi                                   on 2000/12/08  15:18:35
18728         Log: Filetype is text.
18729      Branch: perl
18730            ! t/op/utf8decode.t
18731 ____________________________________________________________________________
18732 [  8036] By: jhi                                   on 2000/12/08  03:31:27
18733         Log: Subject: [ID 20001207.004] [PATCH 5.6.0 and 5.7.x] add NCR MP-RAS support
18734              From: Andy Dougherty <doughera@lafayette.edu>
18735              Date: Thu, 7 Dec 2000 12:36:45 -0500 (EST)
18736              Message-Id: <Pine.SOL.4.10.10012071235400.13162-100000@maxwell.phys.lafayette.edu>
18737              
18738              Subject: Re: [ID 20001207.004] [PATCH 5.6.0 and 5.7.x] add NCR MP-RAS support
18739              From: Andy Dougherty <doughera@lafayette.edu>
18740              Date: Thu, 7 Dec 2000 13:56:10 -0500 (EST)
18741              Message-ID: <Pine.SOL.4.10.10012071354420.6665-100000@maxwell.phys.lafayette.edu>
18742      Branch: perl
18743            + ext/POSIX/hints/svr4.pl
18744            ! MANIFEST ext/POSIX/Makefile.PL hints/svr4.sh t/lib/bigfltpm.t
18745 ____________________________________________________________________________
18746 [  8035] By: jhi                                   on 2000/12/08  03:26:01
18747         Log: Subject: [ID 20001207.003] [PATCH] t/base/term.t causes abort if Config.pm not built
18748              From: Andy Dougherty <doughera@lafayette.edu>
18749              Date: Thu, 7 Dec 2000 10:50:47 -0500 (EST)
18750              Message-Id: <Pine.SOL.4.10.10012071049400.7566-100000@maxwell.phys.lafayette.edu>
18751      Branch: perl
18752            ! t/README t/base/term.t
18753 ____________________________________________________________________________
18754 [  8034] By: jhi                                   on 2000/12/08  03:21:59
18755         Log: Subject: DOC PATCH 5.6.0: -s return value incompletely documented
18756              From: mjd@plover.com  
18757              Date: 7 Dec 2000 21:04:20 -0000
18758              Message-ID: <20001207210420.22282.qmail@plover.com>
18759              
18760              Plus -z doc.
18761      Branch: perl
18762            ! pod/perlfunc.pod
18763 ____________________________________________________________________________
18764 [  8033] By: jhi                                   on 2000/12/08  03:19:03
18765         Log: Use the UTF8 macros a bit.  They can't be used with abandon
18766              everywhere because we do generate illegal UTF-8 in some situations.
18767              This is of course naughty.
18768      Branch: perl
18769            ! pod/perlapi.pod utf8.c utf8.h
18770 ____________________________________________________________________________
18771 [  8032] By: jhi                                   on 2000/12/08  03:00:09
18772         Log: Out of sync?
18773      Branch: perl
18774            ! t/pragma/warn/utf8
18775 ____________________________________________________________________________
18776 [  8031] By: jhi                                   on 2000/12/08  02:22:39
18777         Log: Cnt spl.
18778      Branch: perl
18779            ! MANIFEST
18780 ____________________________________________________________________________
18781 [  8030] By: jhi                                   on 2000/12/08  01:23:54
18782         Log: Add test for reverse().
18783      Branch: perl
18784            + t/op/reverse.t
18785            ! MANIFEST
18786 ____________________________________________________________________________
18787 [  8029] By: jhi                                   on 2000/12/08  01:21:47
18788         Log: Integrate perlio.
18789      Branch: perl
18790           !> ext/IO/IO.xs fakesdio.h global.sym lib/warnings.pm perlapi.c
18791           !> perlio.c perlio.h perlsdio.h warnings.pl
18792 ____________________________________________________________________________
18793 [  8028] By: jhi                                   on 2000/12/08  01:19:08
18794         Log: Introduce macros for UTF8 decoding.
18795      Branch: perl
18796            ! t/op/utf8decode.t t/pragma/warn/utf8 utf8.c utf8.h
18797 ____________________________________________________________________________
18798 [  8027] By: nick                                  on 2000/12/07  22:18:19
18799         Log: Integrate mainline
18800      Branch: perlio
18801           !> embed.pl pod/perlapi.pod utf8.c
18802 ____________________________________________________________________________
18803 [  8026] By: nick                                  on 2000/12/07  21:45:08
18804         Log: Various oddities p4 diff -se showed up
18805              Remove 'our' from warnings.pl
18806      Branch: perlio
18807            ! global.sym lib/warnings.pm pod/perlapi.pod warnings.pl
18808 ____________________________________________________________________________
18809 [  8025] By: nick                                  on 2000/12/07  21:43:32
18810         Log: Change PerlIO_(get|set)pos to take SV *
18811              Should fix, OS/2, VMS, (sfio??)
18812      Branch: perlio
18813            ! ext/IO/IO.xs fakesdio.h perlapi.c perlio.c perlio.h perlsdio.h
18814 ____________________________________________________________________________
18815 [  8024] By: jhi                                   on 2000/12/07  19:05:32
18816         Log: Document utf8_to_uv() better.
18817      Branch: perl
18818            ! pod/perlapi.pod utf8.c
18819 ____________________________________________________________________________
18820 [  8023] By: jhi                                   on 2000/12/07  18:23:47
18821         Log: Document utf8_length(), utf8_distance(), and utf8_hop().
18822      Branch: perl
18823            ! embed.pl pod/perlapi.pod utf8.c
18824 ____________________________________________________________________________
18825 [  8022] By: jhi                                   on 2000/12/07  04:13:51
18826         Log: Integrate perlio.
18827      Branch: perl
18828           !> perlio.c t/io/dup.t win32/config.vc win32/config_H.bc
18829           !> win32/config_H.gc win32/config_H.vc win32/config_h.PL
18830           !> win32/makefile.mk
18831 ____________________________________________________________________________
18832 [  8021] By: nick                                  on 2000/12/07  00:28:14
18833         Log: Various attempts at MSVC debug - not sure what has
18834              changed but works now. 
18835              Seems atexit() _may_ work for DLLs built with MSVC so don't
18836              call cleanup that way.
18837      Branch: perlio
18838            ! perlio.c win32/makefile.mk
18839 ____________________________________________________________________________
18840 [  8020] By: nick                                  on 2000/12/06  19:57:20
18841         Log: Integrate mainline
18842      Branch: perlio
18843           +> lib/ExtUtils/MANIFEST.SKIP t/op/concat.t
18844           !> (integrate 75 files)
18845 ____________________________________________________________________________
18846 [  8019] By: nick                                  on 2000/12/06  19:28:21
18847         Log: Add useperlio to config.vc
18848              Turn off binmode in config_H.PL
18849              Regen all the config_H.xx
18850              Attempt to get debugging build with MSVC.
18851      Branch: perlio
18852            ! win32/config.vc win32/config_H.bc win32/config_H.gc
18853            ! win32/config_H.vc win32/config_h.PL win32/makefile.mk
18854 ____________________________________________________________________________
18855 [  8018] By: nick                                  on 2000/12/06  19:21:57
18856         Log: Test various dup/external program options on all platforms.
18857      Branch: perlio
18858            ! t/io/dup.t
18859 ____________________________________________________________________________
18860 [  8017] By: nick                                  on 2000/12/06  19:20:47
18861         Log: Fix harness to be less picky
18862      Branch: perlio
18863            ! lib/Test/Harness.pm
18864 ____________________________________________________________________________
18865 [  8016] By: jhi                                   on 2000/12/06  16:45:12
18866         Log: Update Changes.
18867      Branch: perl
18868            ! Changes patchlevel.h
18869 ____________________________________________________________________________
18870 [  8015] By: jhi                                   on 2000/12/06  16:41:03
18871         Log: Test \x{...} with ord().
18872      Branch: perl
18873            ! t/op/ord.t
18874 ____________________________________________________________________________
18875 [  8014] By: jhi                                   on 2000/12/06  16:20:33
18876         Log: Test tweak because of #8013.
18877      Branch: perl
18878            ! t/lib/b.t
18879 ____________________________________________________________________________
18880 [  8013] By: jhi                                   on 2000/12/06  16:09:09
18881         Log: Subject: [PATCH] $VERSION crusade, strict, tests, etc... all over lib/
18882              From: Michael G Schwern <schwern@pobox.com>
18883              Date: Tue, 5 Dec 2000 21:23:28 -0500
18884              Message-ID: <20001205212328.C6473@blackrider.aocn.com>
18885              
18886              Carp::Heavy parts not very applicable because of recent changes.
18887      Branch: perl
18888            ! ext/Opcode/Opcode.pm lib/AnyDBM_File.pm lib/CGI/Apache.pm
18889            ! lib/CGI/Switch.pm lib/Carp.pm lib/Carp/Heavy.pm
18890            ! lib/DirHandle.pm lib/Dumpvalue.pm lib/English.pm lib/Env.pm
18891            ! lib/Exporter.pm lib/Exporter/Heavy.pm
18892            ! lib/ExtUtils/MM_Cygwin.pm lib/ExtUtils/MM_OS2.pm
18893            ! lib/ExtUtils/MM_Unix.pm lib/ExtUtils/MM_VMS.pm
18894            ! lib/ExtUtils/MM_Win32.pm lib/File/CheckTree.pm
18895            ! lib/File/DosGlob.pm lib/File/Find.pm lib/File/stat.pm
18896            ! lib/FileCache.pm lib/I18N/Collate.pm lib/Net/hostent.pm
18897            ! lib/Net/netent.pm lib/Net/protoent.pm lib/Net/servent.pm
18898            ! lib/Pod/Functions.pm lib/Pod/Html.pm lib/Search/Dict.pm
18899            ! lib/SelectSaver.pm lib/Term/Cap.pm lib/Term/Complete.pm
18900            ! lib/Term/ReadLine.pm lib/Text/Abbrev.pm lib/Tie/Hash.pm
18901            ! lib/Tie/RefHash.pm lib/Tie/Scalar.pm lib/Tie/SubstrHash.pm
18902            ! lib/Time/Local.pm lib/Time/tm.pm lib/UNIVERSAL.pm
18903            ! lib/User/grent.pm lib/User/pwent.pm lib/bytes.pm
18904            ! lib/charnames.pm lib/diagnostics.pm lib/filetest.pm
18905            ! lib/integer.pm lib/less.pm lib/locale.pm lib/open.pm
18906            ! lib/overload.pm lib/subs.pm lib/utf8.pm lib/vars.pm
18907            ! lib/warnings/register.pm t/lib/attrs.t t/lib/syslog.t
18908            ! warnings.pl
18909 ____________________________________________________________________________
18910 [  8012] By: jhi                                   on 2000/12/06  15:22:38
18911         Log: Subject: [PATCH] Re: New harness is failing things
18912              From: Nick Ing-Simmons <nik@tiuk.ti.com>
18913              Date: Wed, 6 Dec 2000 13:00:30 GMT
18914              Message-Id: <200012061300.NAA10567@mikado.tiuk.ti.com>
18915      Branch: perl
18916            ! lib/Test/Harness.pm
18917 ____________________________________________________________________________
18918 [  8011] By: jhi                                   on 2000/12/06  15:12:08
18919         Log: Subject: installhtml changes
18920              From: Michael Stevens <michael@etla.org>
18921              Date: Wed, 6 Dec 2000 13:15:53 +0000
18922              Message-ID: <20001206131553.A27317@firedrake.org>
18923      Branch: perl
18924            ! installhtml
18925 ____________________________________________________________________________
18926 [  8010] By: jhi                                   on 2000/12/06  15:06:05
18927         Log: Subject: the dTHR hits
18928              From: Michael Stevens <michael@etla.org>
18929              Date: Wed, 6 Dec 2000 12:06:03 +0000
18930              Message-ID: <20001206120603.A24581@firedrake.org>
18931              
18932              More, errrm, less dTHRs.
18933      Branch: perl
18934            ! bytecode.pl ext/B/B/C.pm
18935 ____________________________________________________________________________
18936 [  8009] By: jhi                                   on 2000/12/06  15:04:25
18937         Log: Subject: MakeMaker mailing list gone?
18938              From: Michael G Schwern <schwern@pobox.com>
18939              Date: Tue, 5 Dec 2000 19:29:59 -0500
18940              Message-ID: <20001205192959.B6473@blackrider.aocn.com>
18941              
18942              The MakeMaker mailing list is dead, perlbug is the right
18943              address to report bugs.
18944      Branch: perl
18945            ! lib/ExtUtils/MakeMaker.pm
18946 ____________________________________________________________________________
18947 [  8008] By: jhi                                   on 2000/12/06  15:00:32
18948         Log: Subject: [PATCH ExtUtils::Manifest 1.1] Default MANIFEST.SKIP]
18949              From: Michael G Schwern <schwern@pobox.com>
18950              Date: Tue, 5 Dec 2000 19:21:21 -0500
18951              Message-ID: <20001205192121.A6473@blackrider.aocn.com>
18952              
18953              Add a default MANIFEST skip that ignores things like
18954              version control files, editor temporary files, and the Makefile.
18955      Branch: perl
18956            + lib/ExtUtils/MANIFEST.SKIP
18957            ! MANIFEST lib/ExtUtils/Manifest.pm
18958 ____________________________________________________________________________
18959 [  8007] By: jhi                                   on 2000/12/06  14:57:20
18960         Log: In Amiga more manual hackery of the scripts seems to be needed,
18961              from Jan-Erik Karlsson.  Why Configure does not get this right
18962              is unknown, may be shell-induced.
18963      Branch: perl
18964            ! README.amiga
18965 ____________________________________________________________________________
18966 [  8006] By: jhi                                   on 2000/12/05  23:53:12
18967         Log: Add TOPm1s to peek at the second topmost stack item.
18968      Branch: perl
18969            ! pp.h
18970 ____________________________________________________________________________
18971 [  8005] By: jhi                                   on 2000/12/05  23:13:55
18972         Log: Avaunt, you foul UTF-8 tests.
18973      Branch: perl
18974            ! t/op/ver.t t/pragma/utf8.t
18975 ____________________________________________________________________________
18976 [  8004] By: jhi                                   on 2000/12/05  23:09:54
18977         Log: Continue utf8 dispersal. 
18978      Branch: perl
18979            + t/op/concat.t
18980            ! MANIFEST t/pragma/utf8.t
18981 ____________________________________________________________________________
18982 [  8003] By: nick                                  on 2000/12/05  23:02:39
18983         Log: Integrate mainline.
18984      Branch: perlio
18985           +> t/op/length.t t/op/utf8decode.t
18986           !> (integrate 69 files)
18987 ____________________________________________________________________________
18988 [  8002] By: jhi                                   on 2000/12/05  22:59:28
18989         Log: Integrate perlio.
18990      Branch: perl
18991           !> iperlsys.h perl.c perlio.c win32/perllib.c
18992 ____________________________________________________________________________
18993 [  8001] By: nick                                  on 2000/12/05  22:07:52
18994         Log: Win32 PERL_IMPLICIT_SYS passes all tests with USE_PERLIO
18995              - calloc/free suffer from damage on TerminateThread()
18996              - use PerlMemShared (as originally planned) now fixed
18997              - avoid doing anything important on DLL "detach".
18998      Branch: perlio
18999            ! perl.c perlio.c win32/perllib.c
19000 ____________________________________________________________________________
19001 [  8000] By: nick                                  on 2000/12/05  21:05:09
19002         Log: Fix gross PerlMemShared issue.
19003      Branch: perlio
19004            ! iperlsys.h
19005 ____________________________________________________________________________
19006 [  7999] By: jhi                                   on 2000/12/05  20:46:58
19007         Log: Test for Unicode (UTF-8) hash keys.
19008      Branch: perl
19009            ! t/op/each.t
19010 ____________________________________________________________________________
19011 [  7998] By: jhi                                   on 2000/12/05  20:30:35
19012         Log: Remove an unnecessary 'use utf8' (unnecessary because \x{...}
19013              is now always UTF-8), empty line cosmetics.
19014      Branch: perl
19015            ! t/pragma/utf8.t
19016 ____________________________________________________________________________
19017 [  7997] By: jhi                                   on 2000/12/05  20:15:40
19018         Log: Subject: Re: STRLEN - what?
19019              From: Andy Dougherty <doughera@lafayette.edu>
19020              Date: Tue, 5 Dec 2000 11:58:46 -0500 (EST)
19021              Message-ID: <Pine.SOL.4.10.10012051152100.3586-100000@maxwell.phys.lafayette.edu>
19022              
19023              Explain STRLEN.
19024      Branch: perl
19025            ! pod/perlguts.pod
19026 ____________________________________________________________________________
19027 [  7996] By: jhi                                   on 2000/12/05  20:13:34
19028         Log: Split off the UTF-8 decoder tests, make them to check also
19029              the error message.
19030      Branch: perl
19031            + t/op/utf8decode.t
19032            ! MANIFEST t/pragma/utf8.t utf8.c
19033 ____________________________________________________________________________
19034 [  7995] By: jhi                                   on 2000/12/05  16:39:47
19035         Log: Start migrating bits of pragma/utf8 to elsewhere
19036              (since the long term plan is to obsolete 'use utf8').
19037      Branch: perl
19038            + t/op/length.t
19039            ! MANIFEST t/pragma/utf8.t
19040 ____________________________________________________________________________
19041 [  7994] By: jhi                                   on 2000/12/05  16:30:21
19042         Log: Fix a manual edit typo from #7993, fix the message formatting
19043              for Unicode, add few our declarations.
19044      Branch: perl
19045            ! lib/Carp/Heavy.pm
19046 ____________________________________________________________________________
19047 [  7993] By: jhi                                   on 2000/12/05  16:09:15
19048         Log: Subject: Need help with warnings :-(
19049              From: "Ben Tilly" <ben_tilly@hotmail.com>
19050              Date: Tue, 05 Dec 2000 01:35:54 -0500
19051              Message-ID: <LAW2-F2380n7J95K7aI00001bb9@hotmail.com>
19052              
19053              Subject: UPDATE: Carp/Heavy now passes all tests
19054              From: "Ben Tilly" <ben_tilly@hotmail.com>
19055              Date: Tue, 05 Dec 2000 07:59:41 -0500
19056              Message-ID: <LAW2-F58V1qdiixjnzi00005523@hotmail.com>
19057              
19058              The Brave New Carp.
19059      Branch: perl
19060            ! lib/Carp.pm lib/Carp/Heavy.pm
19061 ____________________________________________________________________________
19062 [  7992] By: jhi                                   on 2000/12/05  15:55:08
19063         Log: Subject: [PATCH perl@7979] cygwin port
19064              From: "Eric Fifer" <efifer@dircon.co.uk>
19065              Date: Tue, 5 Dec 2000 14:04:09 -0000
19066              Message-Id: <200012051402.OAA60286@mailhost2.dircon.co.uk>
19067      Branch: perl
19068            ! t/lib/net-hostent.t
19069 ____________________________________________________________________________
19070 [  7991] By: jhi                                   on 2000/12/05  15:52:34
19071         Log: Subject: Re: [PATCH] The largest hoax of all times?
19072              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
19073              Date: Tue, 5 Dec 2000 00:40:25 -0500
19074              Message-ID: <20001205004025.A4050@monk.mps.ohio-state.edu>
19075              
19076              Subject: Re: [PATCH] The largest hoax of all times?
19077              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
19078              Date: Mon, 4 Dec 2000 23:55:53 -0500
19079              Message-ID: <20001204235553.A1140@monk.mps.ohio-state.edu>
19080              
19081              Subject: Re: [PATCH] The largest hoax of all times?
19082              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
19083              Date: Tue, 5 Dec 2000 01:28:45 -0500
19084              Message-ID: <20001205012844.A4227@monk.mps.ohio-state.edu>
19085              
19086              Fix the unpredictable order of DESTROYs.
19087      Branch: perl
19088            ! embed.h embed.pl objXSUB.h pod/perlapi.pod proto.h scope.c
19089            ! sv.c sv.h t/op/ref.t
19090 ____________________________________________________________________________
19091 [  7990] By: jhi                                   on 2000/12/05  14:38:53
19092         Log: Subject: [PATCH] shrink pp_hot fractionally
19093              From: Nicholas Clark <nick@ccl4.org>
19094              Date: Tue, 5 Dec 2000 12:44:31 +0000
19095              Message-ID: <20001205124431.E74518@plum.flirble.org>
19096              
19097              Use report_evil_fh().
19098      Branch: perl
19099            ! opcode.pl opnames.h pp_hot.c util.c
19100 ____________________________________________________________________________
19101 [  7989] By: jhi                                   on 2000/12/05  14:21:27
19102         Log: Subject: [PATCH] [ID 20001203.001] Not OK: perl v5.7.0 +DEVEL7965 on os2-64int-ld 2.30 (UNINSTALLED)
19103              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
19104              Date: Mon, 04 Dec 2000 22:21:59 -0800
19105              Message-ID: <HmIL6gzkgepS092yn@efn.org>
19106              
19107              Harness shouldn't ignore responses like "ok 3\r\r\n".
19108      Branch: perl
19109            ! lib/Test/Harness.pm
19110 ____________________________________________________________________________
19111 [  7988] By: jhi                                   on 2000/12/05  13:51:28
19112         Log: Integrate the "skip" messages to explain().
19113      Branch: perl
19114            ! t/lib/syslfs.t t/op/lfs.t
19115 ____________________________________________________________________________
19116 [  7987] By: jhi                                   on 2000/12/05  12:34:54
19117         Log: The one that got away in #7984.
19118              
19119              Subject: Re: dTHR - what and why?
19120              From: Michael Stevens <michael@etla.org> 
19121              Date: Tue, 5 Dec 2000 11:15:52 +0000
19122              Message-ID: <20001205111552.A4647@firedrake.org>
19123      Branch: perl
19124            ! sv.h
19125 ____________________________________________________________________________
19126 [  7986] By: gsar                                  on 2000/12/05  09:14:44
19127         Log: fix open(FOO, ">&MYSOCK") failure under Windows 9x (problem is
19128              due to the notorious GetFileType() bug in Windows 9x, which fstat()
19129              tickles)
19130      Branch: perl
19131            ! win32/perlhost.h win32/win32.c win32/win32.h win32/win32sck.c
19132 ____________________________________________________________________________
19133 [  7985] By: jhi                                   on 2000/12/05  05:49:03
19134         Log: Integrate perlio.
19135      Branch: perl
19136           !> iperlsys.h perl.c perlio.c perlio.h perliol.h sv.c t/op/fork.t
19137           !> win32/perlhost.h win32/perllib.c
19138 ____________________________________________________________________________
19139 [  7984] By: jhi                                   on 2000/12/05  05:48:16
19140         Log: dTHR is a nop in 5.6.0 onwards.  Ergo, it can go.
19141      Branch: perl
19142            ! av.c cygwin/cygwin.c deb.c djgpp/djgpp.c doio.c doop.c dump.c
19143            ! epoc/epoc.c ext/ByteLoader/ByteLoader.xs
19144            ! ext/ByteLoader/byterun.c ext/Devel/DProf/DProf.xs
19145            ! ext/Thread/Thread.xs ext/re/re.xs gv.c hv.c mg.c op.c
19146            ! os2/OS2/REXX/REXX.xs os2/os2.c os2/os2ish.h perl.c perl.h
19147            ! perlapi.c pp.c pp.h pp_ctl.c pp_hot.c pp_sys.c regcomp.c
19148            ! regexec.c run.c scope.c sv.c taint.c thread.h toke.c
19149            ! universal.c utf8.c util.c vmesa/vmesa.c vms/ext/Stdio/Stdio.xs
19150            ! win32/win32.c
19151 ____________________________________________________________________________
19152 [  7983] By: nick                                  on 2000/12/04  23:27:43
19153         Log: PERL_IMPLICIT_SYS (almost) works - something odd with "signal"
19154      Branch: perlio
19155            ! iperlsys.h perl.c perlio.c perlio.h perliol.h sv.c t/op/fork.t
19156            ! win32/perlhost.h win32/perllib.c
19157 ____________________________________________________________________________
19158 [  7982] By: jhi                                   on 2000/12/04  19:44:09
19159         Log: Yet Another Copying-Without-Paying-Attention-To-SvUTF8(sv) Bug
19160              uncovered by #7980.
19161      Branch: perl
19162            ! op.c
19163 ____________________________________________________________________________
19164 [  7981] By: jhi                                   on 2000/12/04  19:42:07
19165         Log: Subject: [PATCH] Trivial dump.c feature
19166              From: Simon Cozens <simon@cozens.net>
19167              Date: Mon, 4 Dec 2000 18:08:38 +0000
19168              Message-ID: <20001204180838.A5541@pembro33.pmb.ox.ac.uk>
19169              
19170              Show whether a constant is UTF-8.
19171      Branch: perl
19172            ! dump.c
19173 ____________________________________________________________________________
19174 [  7980] By: jhi                                   on 2000/12/04  19:36:51
19175         Log: UTF-8 hash keys, patch from Inaba Hiroto.
19176      Branch: perl
19177            ! embed.h embed.pl hv.c hv.h pod/perlapi.pod proto.h
19178 ____________________________________________________________________________
19179 [  7979] By: jhi                                   on 2000/12/04  17:36:28
19180         Log: Update Changes.
19181      Branch: perl
19182            ! Changes patchlevel.h
19183 ____________________________________________________________________________
19184 [  7978] By: jhi                                   on 2000/12/04  16:42:17
19185         Log: Retract #7977, still too volatile (the euphemism of the day
19186              for unfinished and buggy :-)
19187      Branch: perl
19188            ! doop.c hv.c pp.c sv.h
19189 ____________________________________________________________________________
19190 [  7977] By: jhi                                   on 2000/12/04  16:25:15
19191         Log: (Retracted by #7978, too shaky yet.)
19192              
19193              Subject: Re: utf8 in hash keys, implementor missing
19194              From: Simon Cozens <simon@cozens.net>
19195              Date: Sat, 2 Dec 2000 19:49:35 +0000
19196              Message-ID: <20001202194935.A25673@pembro33.pmb.ox.ac.uk>
19197              
19198              The first step at UTF-8 hash keys.
19199      Branch: perl
19200            ! doop.c hv.c pp.c sv.h
19201 ____________________________________________________________________________
19202 [  7976] By: jhi                                   on 2000/12/04  16:13:53
19203         Log: Subject: [ID 20001203.001] Not OK: perl v5.7.0 +DEVEL7965 on os2-64int-ld 2.30 (UNINSTALLED)
19204              From: sthoenna@efn.org
19205              Date: Sun, 3 Dec 2000 19:06:53 -0800 (PST)
19206              Message-Id: <200012040306.eB436rE18922@garcia.efn.org>
19207      Branch: perl
19208            ! os2/os2.c perlio.c
19209 ____________________________________________________________________________
19210 [  7975] By: jhi                                   on 2000/12/04  16:05:25
19211         Log: Subject: Re: [ID 20001129.009] Not OK: perl v5.7.0 +DEVEL7928 on os2-64int-ld 2.30 (UNINSTALLED)
19212              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
19213              Date: Thu, 30 Nov 2000 20:50:37 -0800
19214              Message-ID: <d4yJ6gzkgGsJ092yn@efn.org>
19215      Branch: perl
19216            ! os2/os2.c
19217 ____________________________________________________________________________
19218 [  7974] By: jhi                                   on 2000/12/04  16:03:57
19219         Log: Subject: [PATCH] ++ 20% faster
19220              From: Nicholas Clark <nick@ccl4.org>
19221              Date: Mon, 4 Dec 2000 12:17:27 +0000
19222              Message-ID: <20001204121726.B52976@plum.flirble.org>
19223              
19224              Make '$i = ""; $i++' to produce true IVs without a hint of NVs.
19225      Branch: perl
19226            ! sv.c
19227 ____________________________________________________________________________
19228 [  7973] By: jhi                                   on 2000/12/04  16:00:48
19229         Log: 
19230              Subject: Re: Not OK: perl v5.7.0 +DEVEL7825 on aix 4.2.1.0 (UNINSTALLED)
19231              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
19232              Date: Mon, 04 Dec 2000 12:30:45 +0100
19233              Message-Id: <20001204122118.E85D.H.M.BRAND@hccnet.nl>
19234              
19235              AIX 4.2 (using latest patchlevels on 20001130) has a broken bind
19236              library (getprotobyname and getprotobynumber are outversioned by
19237              the same calls in libc, at least for xlc version 3.
19238      Branch: perl
19239            ! hints/aix.sh
19240 ____________________________________________________________________________
19241 [  7972] By: jhi                                   on 2000/12/04  02:58:31
19242         Log: Integrate perlio.
19243      Branch: perl
19244           !> doio.c iperlsys.h perl.c perl.h perlio.c perlio.h toke.c
19245           !> win32/makefile.mk win32/perlhost.h win32/perllib.c
19246           !> win32/win32.h win32/win32iop.h win32/win32thread.h
19247 ____________________________________________________________________________
19248 [  7971] By: nick                                  on 2000/12/04  00:24:33
19249         Log: Quieten some noise in Win32 builds:
19250              - win32.h is included after <sys/socket.h>, so need to 
19251              set Win32SCK_IS_STDSCK earlier to avoid re-defined noise in XSUB.h
19252              - GCC (& MSVC?) have execv(...,const char *const *) so need a cast from char **.
19253      Branch: perlio
19254            ! doio.c perl.h toke.c win32/win32.h
19255 ____________________________________________________________________________
19256 [  7970] By: nick                                  on 2000/12/03  22:57:46
19257         Log: PERL_IMPLICIT_SYS compiles but does not work.
19258      Branch: perlio
19259            ! iperlsys.h perl.c perlio.c perlio.h win32/makefile.mk
19260            ! win32/perlhost.h win32/perllib.c win32/win32.h
19261            ! win32/win32iop.h win32/win32thread.h
19262 ____________________________________________________________________________
19263 [  7969] By: jhi                                   on 2000/12/03  22:12:58
19264         Log: On DEBUGGING make ANYOFUTF8 nodes store away also the SV
19265              used to swash_init(), makes regprop() dumps more informative
19266              (+utf8::IsAlpha, -utf8::IsDigit, for example).
19267      Branch: perl
19268            ! regcomp.c regexec.c
19269 ____________________________________________________________________________
19270 [  7968] By: jhi                                   on 2000/12/03  21:39:56
19271         Log: Implement ANYOFUTF8 regprop() dumping.
19272      Branch: perl
19273            ! regcomp.c
19274 ____________________________________________________________________________
19275 [  7967] By: jhi                                   on 2000/12/03  20:57:19
19276         Log: Make uv_to_utf8() to zero-terminate its output buffer,
19277              always use (at least) UTF8_MAXLEN + 1 U8s deep buffer.
19278      Branch: perl
19279            ! op.c pp.c regcomp.c regexec.c sv.c toke.c utf8.c
19280 ____________________________________________________________________________
19281 [  7966] By: nick                                  on 2000/12/03  18:41:21
19282         Log: Integrate mainline (STDCHAR)
19283      Branch: perlio
19284           !> Configure t/pragma/utf8.t
19285 ____________________________________________________________________________
19286 [  7965] By: jhi                                   on 2000/12/03  17:58:20
19287         Log: Raw zero bytes in text files confuse at least GNU patch 2.1.
19288      Branch: perl
19289            ! t/pragma/utf8.t
19290 ____________________________________________________________________________
19291 [  7964] By: jhi                                   on 2000/12/03  17:35:56
19292         Log: Integrate perlio.
19293      Branch: perl
19294           !> iperlsys.h perlio.c
19295 ____________________________________________________________________________
19296 [  7963] By: jhi                                   on 2000/12/03  17:33:55
19297         Log: Metaconfig unit change for #7962.
19298      Branch: metaconfig
19299            ! U/modified/stdchar.U
19300 ____________________________________________________________________________
19301 [  7962] By: jhi                                   on 2000/12/03  17:33:27
19302         Log: Untangle the <stdio.h> #include nest for the stdchar test,
19303              from Andy Dougherty.
19304      Branch: perl
19305            ! Configure
19306 ____________________________________________________________________________
19307 [  7961] By: nick                                  on 2000/12/03  16:53:00
19308         Log: Make iperlsys.h vector stdio not PerlIO.
19309      Branch: perlio
19310            ! iperlsys.h perlio.c
19311 ____________________________________________________________________________
19312 [  7960] By: nick                                  on 2000/12/03  14:43:01
19313         Log: Integrate mainline
19314      Branch: perlio
19315           !> Changes Configure config_h.SH lib/ExtUtils/MM_Unix.pm op.c
19316           !> patchlevel.h pod/perldiag.pod t/lib/net-hostent.t toke.c
19317 ____________________________________________________________________________
19318 [  7959] By: jhi                                   on 2000/12/03  08:16:36
19319         Log: Use DO_UTF8().
19320      Branch: perl
19321            ! op.c
19322 ____________________________________________________________________________
19323 [  7958] By: jhi                                   on 2000/12/02  18:33:05
19324         Log: Subject: Re: [ID 20001130.011] expression parsing bug ?
19325              From: Mike Guy <mjtg@cam.ac.uk>         
19326              Date: Sat, 02 Dec 2000 17:27:13 +0000
19327              Message-Id: <E142GRN-0003go-00@libra.cus.cam.ac.uk>
19328              
19329              An extraneous argument.
19330      Branch: perl
19331            ! toke.c
19332 ____________________________________________________________________________
19333 [  7957] By: jhi                                   on 2000/12/02  18:22:32
19334         Log: A missing hunk.
19335      Branch: perl
19336            ! t/lib/net-hostent.t
19337 ____________________________________________________________________________
19338 [  7956] By: jhi                                   on 2000/12/02  18:06:20
19339         Log: Subject: [PATCH] Re: [ID 20001202.001] (Net::hostent)
19340              From: Nicholas Clark <nick@ccl4.org>
19341              Date: Sat, 2 Dec 2000 14:28:27 +0000
19342              Message-ID: <20001202142827.A12308@plum.flirble.org>
19343              
19344              Test robustness.
19345      Branch: perl
19346            ! t/lib/net-hostent.t
19347 ____________________________________________________________________________
19348 [  7955] By: jhi                                   on 2000/12/02  17:58:06
19349         Log: Metaconfig unit change for #7954.
19350      Branch: metaconfig
19351            ! U/modified/stdchar.U
19352 ____________________________________________________________________________
19353 [  7954] By: jhi                                   on 2000/12/02  17:54:32
19354         Log: An inconvenient hang would happen if the stdio _ptr wasn't
19355              found in <stdio.h> and <stdio_impl.h> didn't exist.  (grep
19356              would be grepping stdin for all eternity for the _ptr.)
19357      Branch: perl
19358            ! Configure
19359 ____________________________________________________________________________
19360 [  7953] By: jhi                                   on 2000/12/02  00:07:15
19361         Log: Update Changes.
19362      Branch: perl
19363            ! Changes patchlevel.h
19364 ____________________________________________________________________________
19365 [  7952] By: jhi                                   on 2000/12/01  23:54:47
19366         Log: Subject: Re: long shell lines
19367              From: Andy Dougherty <doughera@lafayette.edu>
19368              Date: Thu, 30 Nov 2000 12:45:37 -0500 (EST)
19369              Message-ID: <Pine.SOL.4.10.10011301044590.26388-100000@maxwell.phys.lafayette.edu>
19370              
19371              Split overly long shell command lines.
19372      Branch: perl
19373            ! lib/ExtUtils/MM_Unix.pm
19374 ____________________________________________________________________________
19375 [  7951] By: jhi                                   on 2000/12/01  23:48:02
19376         Log: The metaconfig unit change for #7950.
19377      Branch: metaconfig
19378            + U/modified/stdchar.U
19379 ____________________________________________________________________________
19380 [  7950] By: jhi                                   on 2000/12/01  23:47:39
19381         Log: Try to find stdchar also from <stdio_impl.h>.
19382      Branch: perl
19383            ! Configure config_h.SH
19384 ____________________________________________________________________________
19385 [  7949] By: jhi                                   on 2000/12/01  23:46:45
19386         Log: Subject: Re: [ID 20001130.011] expression parsing bug ?
19387              From: Ronald J Kimball <rjk@linguist.dartmouth.edu>
19388              Date: Fri, 1 Dec 2000 16:26:08 -0500
19389              Message-ID: <20001201162608.B1436@linguist.dartmouth.edu>
19390              
19391              Reword the diagnostic message.
19392      Branch: perl
19393            ! pod/perldiag.pod
19394 ____________________________________________________________________________
19395 [  7948] By: nick                                  on 2000/12/01  22:49:43
19396         Log: Integrate mainline (for s/y/m as sub names stuff).
19397      Branch: perlio
19398           !> lib/CPAN.pm lib/CPAN/FirstTime.pm pod/perldiag.pod t/op/misc.t
19399           !> t/pragma/warn/toke toke.c
19400 ____________________________________________________________________________
19401 [  7947] By: jhi                                   on 2000/12/01  20:55:41
19402         Log: Integrate perlio.
19403      Branch: perl
19404           !> perlio.c perliol.h t/io/pipe.t
19405 ____________________________________________________________________________
19406 [  7946] By: jhi                                   on 2000/12/01  20:36:51
19407         Log: Upgrade to CPAN 1.59_51, from Andreas König.
19408      Branch: perl
19409            ! lib/CPAN.pm lib/CPAN/FirstTime.pm
19410 ____________________________________________________________________________
19411 [  7945] By: nick                                  on 2000/12/01  20:31:32
19412         Log: Integrate mainline
19413      Branch: perlio
19414           +> ext/Encode/Encode/EncodeFormat.pod lib/unicode/Is/Blank.pl
19415           +> lib/unicode/Is/SpacePerl.pl t/lib/class-struct.t
19416           +> t/lib/net-hostent.t
19417           !> (integrate 35 files)
19418 ____________________________________________________________________________
19419 [  7944] By: jhi                                   on 2000/12/01  20:23:29
19420         Log: Some help for 20001130.011.  Now one gets warnings like
19421              "Ambiguous -f() resolved as a file test ..."
19422      Branch: perl
19423            ! pod/perldiag.pod t/pragma/warn/toke toke.c
19424 ____________________________________________________________________________
19425 [  7943] By: jhi                                   on 2000/12/01  19:44:44
19426         Log: Retract #7941.  Forbidding subs m/s/etc is too cruel because
19427              that also breaks using them as methods. 
19428      Branch: perl
19429            ! pod/perldiag.pod t/op/misc.t toke.c
19430 ____________________________________________________________________________
19431 [  7942] By: nick                                  on 2000/12/01  17:56:46
19432         Log: Fix 'mmap' lib/filehand.t (ungetc) test fail.
19433              Make 'unix' pass most tests
19434              - do unread by temporary push of layer ("pending") holding unread chars
19435              - fast_gets is now based on per-handle flag
19436              - relax one of io/pipe.t tests to allow print to fail and close to
19437              succeed so that it passes on unbuffered "unix" layer.
19438              Remaining fail is sporadic and a genuine race condition between
19439              parent/child in fork test.
19440      Branch: perlio
19441            ! perlio.c perliol.h t/io/pipe.t
19442 ____________________________________________________________________________
19443 [  7941] By: jhi                                   on 2000/12/01  15:28:58
19444         Log: (Retracted by #7943.)
19445              
19446              Reserve the short named string operator names.
19447      Branch: perl
19448            ! pod/perldiag.pod t/op/misc.t toke.c
19449 ____________________________________________________________________________
19450 [  7940] By: jhi                                   on 2000/12/01  06:45:53
19451         Log: Get the three different space character classes right under utf8.
19452      Branch: perl
19453            + lib/unicode/Is/Blank.pl lib/unicode/Is/SpacePerl.pl
19454            ! MANIFEST lib/unicode/mktables.PL pod/perlre.pod regcomp.c
19455            ! regexec.c t/op/pat.t utf8.c
19456 ____________________________________________________________________________
19457 [  7939] By: jhi                                   on 2000/12/01  03:26:26
19458         Log: Two more tests that make no sense in UTF-8 since the test
19459              data is not in UTF-8.
19460      Branch: perl
19461            ! t/op/regexp.t
19462 ____________________________________________________________________________
19463 [  7938] By: jhi                                   on 2000/12/01  03:20:39
19464         Log: \x{} doesn't any more require 'use utf8' outside regexen so why
19465              should it be required inside regexen?
19466      Branch: perl
19467            ! regcomp.c t/op/regmesg.t
19468 ____________________________________________________________________________
19469 [  7937] By: jhi                                   on 2000/12/01  02:58:53
19470         Log: Fix for 20001130.008 and 20001130.010, the PL_regnpar wasn't
19471              stored and restored, and thusly was trounced by the utf8 swash
19472              routines.
19473      Branch: perl
19474            ! regcomp.c
19475 ____________________________________________________________________________
19476 [  7936] By: jhi                                   on 2000/11/30  20:41:39
19477         Log: Fix for 20001128.006, be more careful in Perl_sv_utf8_downgrade().
19478              Why the different platforms behave so differently (core dump vs
19479              no core dump) on this bug is a but of a mystery, but if I had to
19480              guess I would mumble something like 'alignment'.
19481      Branch: perl
19482            ! sv.c
19483 ____________________________________________________________________________
19484 [  7935] By: jhi                                   on 2000/11/30  16:17:02
19485         Log: Subject: [PATCH perl@7930] toke.c perlio.c -Wformat nits
19486              From: Robin Barker <rmb1@cise.npl.co.uk>
19487              Message-Id: <200011301427.OAA00030@tempest.npl.co.uk>
19488              Date: Thu, 30 Nov 2000 14:27:12 GMT
19489      Branch: perl
19490            ! perlio.c toke.c
19491 ____________________________________________________________________________
19492 [  7934] By: jhi                                   on 2000/11/30  16:04:49
19493         Log: In OS/390 'localhost' can be 'localhost.FOO.BAR'.
19494      Branch: perl
19495            ! t/lib/net-hostent.t
19496 ____________________________________________________________________________
19497 [  7933] By: jhi                                   on 2000/11/30  06:07:26
19498         Log: Subject: [ID 20001129.007] Not OK: perl v5.7.0 +DEVEL7928 on VMS_AXP V7.1 (UNINSTALLED)
19499              From: Peter Prymmer <pvhp@forte.com>
19500              Date: Wed, 29 Nov 2000 15:16:45 -0800 (PST)
19501              Message-Id: <Pine.OSF.4.10.10011291515570.328738-100000@aspara.forte.com>
19502              
19503              In VMS the localhost may be LOCALHOST.
19504      Branch: perl
19505            ! t/lib/net-hostent.t
19506 ____________________________________________________________________________
19507 [  7932] By: jhi                                   on 2000/11/30  01:11:11
19508         Log: Subject: Re: question about retlen in utf8.c:Perl_utf8_to_uv()
19509              From: Peter Prymmer <pvhp@forte.com>
19510              Date: Wed, 29 Nov 2000 12:36:40 -0800 (PST)
19511              Message-ID: <Pine.OSF.4.10.10011291233120.328738-100000@aspara.forte.com>
19512              
19513              plus regen perlapi.pod.
19514      Branch: perl
19515            ! pod/perlapi.pod utf8.c
19516 ____________________________________________________________________________
19517 [  7931] By: jhi                                   on 2000/11/30  01:06:19
19518         Log: Subject:  [PATCH perl@7930] get t/lib/filter-util.t to work on VMS 
19519              From: lane@DUPHY4.Physics.Drexel.Edu (Charles Lane)
19520              Date:     Wed, 29 Nov 2000 17:15:11 EST
19521              Message-Id: <001129171439.6099b@DUPHY4.Physics.Drexel.Edu>
19522      Branch: perl
19523            ! t/lib/filter-util.pl t/lib/filter-util.t
19524 ____________________________________________________________________________
19525 [  7930] By: jhi                                   on 2000/11/29  18:51:55
19526         Log: Update Changes.
19527      Branch: perl
19528            ! Changes patchlevel.h
19529 ____________________________________________________________________________
19530 [  7929] By: jhi                                   on 2000/11/29  18:50:55
19531         Log: Update the va_copy() metaconfig unit.
19532      Branch: metaconfig/U/perl
19533            ! need_va_copy.U
19534 ____________________________________________________________________________
19535 [  7928] By: jhi                                   on 2000/11/29  17:50:43
19536         Log: Subject: [ID 20001128.003] Not OK: perl v5.7.0 +DEVEL7891 on ppc-linux 2.2.17  
19537              From: Dominic Dunlop <domo@computer.org>
19538              Date: Tue, 28 Nov 2000 16:41:57 +0100
19539              Message-Id: <p04320400b649771b9797@[192.168.1.4]>
19540              
19541              Patch to catch a core dump in the Configure va_copy test.
19542      Branch: perl
19543            ! Configure config_h.SH
19544 ____________________________________________________________________________
19545 [  7927] By: jhi                                   on 2000/11/29  17:31:59
19546         Log: Retract #7921, the patch shouldn't be needed.
19547      Branch: perl
19548            ! sv.c
19549 ____________________________________________________________________________
19550 [  7926] By: jhi                                   on 2000/11/29  17:01:41
19551         Log: Make the Class::Struct import() wiser.
19552      Branch: perl
19553            ! lib/Class/Struct.pm t/lib/class-struct.t
19554 ____________________________________________________________________________
19555 [  7925] By: jhi                                   on 2000/11/29  16:36:33
19556         Log: All the core library users of Class::Struct seem to be
19557              using "use Class::Struct 'struct';" instead of the bare
19558              "use Class::Struct;", which isn't documented in Class::Struct.
19559              This can't be right.
19560      Branch: perl
19561            ! lib/File/stat.pm
19562 ____________________________________________________________________________
19563 [  7924] By: jhi                                   on 2000/11/29  16:32:15
19564         Log: A test works better if it has the right 1..$n output.
19565      Branch: perl
19566            ! t/lib/class-struct.t
19567 ____________________________________________________________________________
19568 [  7923] By: jhi                                   on 2000/11/29  16:29:11
19569         Log: Forgot to MANIFEST the new Net::hostent test.
19570      Branch: perl
19571            ! MANIFEST
19572 ____________________________________________________________________________
19573 [  7922] By: jhi                                   on 2000/11/29  16:27:49
19574         Log: Integrate perlio.
19575      Branch: perl
19576           !> iperlsys.h perlio.c
19577 ____________________________________________________________________________
19578 [  7921] By: jhi                                   on 2000/11/29  16:27:10
19579         Log: (Retracted by #7927.)
19580              
19581              Subject: [PATCH] Is infinity a number?
19582              From: Simon Cozens <simon@cozens.net>
19583              Date: Wed, 29 Nov 2000 14:48:20 +0000
19584              Message-ID: <20001129144820.A31339@pembro33.pmb.ox.ac.uk>
19585      Branch: perl
19586            ! sv.c
19587 ____________________________________________________________________________
19588 [  7920] By: jhi                                   on 2000/11/29  16:23:02
19589         Log: Subject: net_hostent.t (was Re: [ID 20001128.002] what's the point of example code if it is buggy?)
19590              From: rspier@pobox.com (Robert Spier)
19591              Date: Wed, 29 Nov 2000 02:17:49 -0500
19592              Message-ID: <14884.44445.760322.278647@localhost.localdomain>
19593              
19594              Add a test for Net::hostent.
19595      Branch: perl
19596            + t/lib/net-hostent.t
19597 ____________________________________________________________________________
19598 [  7919] By: jhi                                   on 2000/11/29  16:21:31
19599         Log: Make "use Class::Struct 'struct';" work again (broken by #7617);
19600              add a test for Class::Struct.
19601      Branch: perl
19602            + t/lib/class-struct.t
19603            ! MANIFEST lib/Class/Struct.pm
19604 ____________________________________________________________________________
19605 [  7918] By: jhi                                   on 2000/11/29  15:48:40
19606         Log: Subject: Re: Minor suggestion for Sys::Syslog  [PATCH]
19607              From: rspier@pobox.com (Robert Spier)
19608              Date: Wed, 29 Nov 2000 02:25:39 -0500
19609              Message-ID: <14884.44915.86028.422238@localhost.localdomain>
19610              
19611              More checking in case someone has broken their services or
19612              protocol databases.
19613      Branch: perl
19614            ! ext/Sys/Syslog/Syslog.pm
19615 ____________________________________________________________________________
19616 [  7917] By: jhi                                   on 2000/11/29  15:46:25
19617         Log: Subject: [PATCH] $^O  win32 -> MSWin32
19618              From: rspier@pobox.com (Robert Spier)
19619              Date: Wed, 29 Nov 2000 02:17:38 -0500
19620              Message-ID: <14884.44434.340627.126145@localhost.localdomain>
19621              
19622              plus similar nits for vms, err, VMS, and UNICOS.
19623      Branch: perl
19624            ! t/lib/syslfs.t t/op/lfs.t
19625 ____________________________________________________________________________
19626 [  7916] By: jhi                                   on 2000/11/29  15:42:51
19627         Log: Subject: [PATCH] Tokeniser debugging
19628              From: Simon Cozens <simon@cozens.net>
19629              Date: Wed, 29 Nov 2000 14:15:45 +0000
19630              Message-ID: <20001129141545.A30864@pembro33.pmb.ox.ac.uk>
19631      Branch: perl
19632            ! perl.c perl.h pod/perlrun.pod toke.c
19633 ____________________________________________________________________________
19634 [  7915] By: jhi                                   on 2000/11/29  15:41:36
19635         Log: Subject: Re: [PATCH 5.7.0] OUT keyword for xsubpp
19636              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
19637              Date: Wed, 29 Nov 2000 02:13:14 -0500
19638              Message-ID: <20001129021314.A2532@monk.mps.ohio-state.edu>
19639              
19640              OUT keyword nits.
19641              
19642              Subject: Re: [PATCH 5.7.0] OUT keyword for xsubpp
19643              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
19644              Date: Wed, 29 Nov 2000 03:09:04 -0500
19645              Message-ID: <20001129030904.A2754@monk.mps.ohio-state.edu>
19646              
19647              OUT and IN_OUT documentation.
19648      Branch: perl
19649            ! lib/ExtUtils/xsubpp pod/perlxs.pod
19650 ____________________________________________________________________________
19651 [  7914] By: jhi                                   on 2000/11/29  03:35:01
19652         Log: Subject: Re: [ID 20001127.002] const subs hurt under debugger
19653              From: John Tobey <jtobey@john-edwin-tobey.org>
19654              Date: Tue, 28 Nov 2000 01:13:41 -0500 (EST)
19655              Message-Id: <m140e1N-000FOoC@feynman.localnet>
19656              
19657              plus a performance speedup noticed by Sarathy.
19658      Branch: perl
19659            ! op.c
19660 ____________________________________________________________________________
19661 [  7913] By: jhi                                   on 2000/11/29  03:16:59
19662         Log: Use "1 while unlink" so that VMS gets clean, too.
19663      Branch: perl
19664            ! t/lib/filter-util.t
19665 ____________________________________________________________________________
19666 [  7912] By: jhi                                   on 2000/11/29  03:09:08
19667         Log: Subject: [PATCH 5.7.0] OUT keyword for xsubpp
19668              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
19669              Date: Tue, 28 Nov 2000 03:27:09 -0500
19670              Message-ID: <20001128032709.A23401@monk.mps.ohio-state.edu>
19671      Branch: perl
19672            ! lib/ExtUtils/xsubpp
19673 ____________________________________________________________________________
19674 [  7911] By: jhi                                   on 2000/11/29  03:06:30
19675         Log: This should have been part of #7872: no need to scan UTF-8
19676              until eternity.
19677      Branch: perl
19678            ! utf8.c
19679 ____________________________________________________________________________
19680 [  7910] By: jhi                                   on 2000/11/29  02:50:04
19681         Log: One more perltie.pod nit from Casey R. Tweten.
19682      Branch: perl
19683            ! pod/perltie.pod
19684 ____________________________________________________________________________
19685 [  7909] By: jhi                                   on 2000/11/29  02:44:23
19686         Log: Document the known sprintf test failures, exact standard
19687              reference from Dominic Dunlop, NonStop-UX testing from Tom Bates.
19688      Branch: perl
19689            ! pod/perldelta.pod t/op/sprintf.t
19690 ____________________________________________________________________________
19691 [  7908] By: jhi                                   on 2000/11/29  02:36:23
19692         Log: Add the Encoding table format documentation.
19693      Branch: perl
19694            + ext/Encode/Encode/EncodeFormat.pod
19695            ! MANIFEST
19696 ____________________________________________________________________________
19697 [  7907] By: jhi                                   on 2000/11/29  02:07:24
19698         Log: Subject: Re: [PATCH] Updating perltie.pod for arrays
19699              From: "Casey R. Tweten" <crt@kiski.net>
19700              Date: Tue, 28 Nov 2000 12:11:41 -0500 (EST)
19701              Message-ID: <Pine.OSF.4.21.0011281209050.25178-100000@home.kiski.net>
19702              
19703              Subject: Re: [PATCH] Updating perltie.pod for arrays
19704              From: "Casey R. Tweten" <crt@kiski.net>
19705              Date: Tue, 28 Nov 2000 15:03:50 -0500 (EST)
19706              Message-ID: <Pine.OSF.4.21.0011281458500.10331-100000@home.kiski.net>
19707      Branch: perl
19708            ! pod/perltie.pod
19709 ____________________________________________________________________________
19710 [  7906] By: nick                                  on 2000/11/28  22:40:59
19711         Log: Initial tidy of setmode() muddle (UNIX does not have, nor need it).
19712      Branch: perlio
19713            ! iperlsys.h perlio.c
19714 ____________________________________________________________________________
19715 [  7905] By: nick                                  on 2000/11/28  22:04:34
19716         Log: Integrate mainline
19717      Branch: perlio
19718           !> (integrate 39 files)
19719 ____________________________________________________________________________
19720 [  7904] By: jhi                                   on 2000/11/28  16:44:43
19721         Log: Subject: [ID 20001128.002] what's the point of example code if it is buggy?
19722              From: Nicholas Clark <nick@babyhippo.co.uk>
19723              Date: Tue, 28 Nov 2000 11:16:57 +0000
19724              Message-Id: <E140ikr-00076N-00@fruitbat.babyhippo.co.uk>
19725      Branch: perl
19726            ! pod/perlipc.pod
19727 ____________________________________________________________________________
19728 [  7903] By: jhi                                   on 2000/11/28  16:40:31
19729         Log: Subject: [PATCH] Updating perltie.pod for arrays
19730              From: "Casey R. Tweten" <crt@kiski.net>
19731              Date: Mon, 27 Nov 2000 17:47:20 -0500 (EST)
19732              Message-ID: <Pine.OSF.4.21.0011271746360.11659-100000@home.kiski.net>
19733      Branch: perl
19734            ! pod/perltie.pod
19735 ____________________________________________________________________________
19736 [  7902] By: jhi                                   on 2000/11/28  16:39:37
19737         Log: Subject: [PATCH] Re: 5.6 bug: split /^/ implies /m modifier (from CLPM)
19738              From: Robin Barker <rmb1@cise.npl.co.uk>
19739              Date: Mon, 27 Nov 2000 17:56:44 GMT
19740              Message-Id: <200011271756.RAA22706@tempest.npl.co.uk>
19741      Branch: perl
19742            ! pod/perlfunc.pod t/op/split.t
19743 ____________________________________________________________________________
19744 [  7901] By: jhi                                   on 2000/11/28  16:28:04
19745         Log: setmode() is a DOSish-only thing.
19746      Branch: perl
19747            ! perlio.c
19748 ____________________________________________________________________________
19749 [  7900] By: jhi                                   on 2000/11/28  16:21:46
19750         Log: Subject: [PATCH] perlcc.PL cleanups
19751              From: Simon Cozens <simon@cozens.net>
19752              Date: Tue, 28 Nov 2000 12:44:35 +0000
19753              Message-ID: <20001128124435.A5500@pembro33.pmb.ox.ac.uk>
19754      Branch: perl
19755            ! utils/perlcc.PL
19756 ____________________________________________________________________________
19757 [  7899] By: gsar                                  on 2000/11/28  06:32:55
19758         Log: reintegrate files missed by change#7895
19759      Branch: maint-5.6/perl
19760           +> ext/ByteLoader/bytecode.h utils/Makefile
19761            - utils/perlbc.PL
19762 ____________________________________________________________________________
19763 [  7897] By: gsar                                  on 2000/11/27  18:22:47
19764         Log: can't integrate these two files, for some reason
19765      Branch: maint-5.6/perl
19766            - ext/ByteLoader/bytecode.h utils/Makefile
19767 ____________________________________________________________________________
19768 [  7895] By: gsar                                  on 2000/11/27  18:11:21
19769         Log: integrate changes#6763..6766,6770,6773,6775..6776,6778,6780,
19770              6782..6791,6793..6814,6816,6818..6822,6824..6830,6838..6849,
19771              6757..6890,6892..6901 from mainline
19772              
19773              Bytecompiler patches from Benjamin Stuhl.
19774              
19775              More bytecompiler.
19776              
19777              Subject: [PATCH blead] B:: missing dependency
19778              
19779              Subject: [PATCH: 6757] configure.com updates and syslog build
19780              
19781              Long double Gconvert fixes from Yitzchak Scott-Thoennes
19782              and Spider Boardman.
19783              
19784              Subject: [PATCH blead] nextchar() abuse misses an optimisation
19785              
19786              Long double fixes from Spider Boardman.
19787              
19788              Make the selection of NVff et al stricter.
19789              
19790              cSVOPo_*v things index into the current PL_curpad
19791              under ithreads, which is different from the curpad
19792              used by the XSUB.  (In other words, the code as-is
19793              before this patch wouldn't work under ithreads.)
19794              
19795              Be portable.
19796              
19797              VMS MMS (make) wants null action.
19798              
19799              Mac and other portability updates from Chris Nandor.
19800              
19801              Storable support, v-version fixes.
19802              Subject: CPAN.pm beta for testing available
19803              
19804              Portability fix from Hugo van der Sanden.
19805              
19806              Bad makefile.
19807              
19808              Subject: [ID 20000823.004] [PATCH 5.6.0+] Pod::Html is too self-contained
19809              
19810              Subject: [PATCH] (Mac OS X): Don't #define environ unless PERL_CORE
19811              
19812              Subject: [PATCH] Re: [ID 20000821.008] Negitive numbers with vec dumps core
19813              
19814              Replace #6705 with a minimal doc patch.
19815              Subject: [PATCH 5.6.0] replace change #6705
19816              
19817              Drop the separate perlbc, perlcc -b should be enough.
19818              
19819              installperl couldn't tell whether it had run tests or not.
19820              Subject: [PATCH] Re: installperl and t/TEST
19821              
19822              Add silencer flags to installperl.
19823              Subject: [PATCH] Making installperl silent.
19824              
19825              Make "make install" by default silent.  A new "install-verbose"
19826              target is verbose.
19827              
19828              More liberal parsing of version numbers.
19829              Subject: Re: CPAN.pm beta for testing available
19830              
19831              Create directories in silence.
19832              Subject: [PATCH] Another silencer for MakeMaker
19833              
19834              DOS patches and portability/porting notes, from Tim Jenness.
19835              
19836              Make installman to recognize the silence flag -S.
19837              
19838              Actually do something with the silencer option.
19839              
19840              Continue silencing.
19841              
19842              Show the doc file, not the temp file.
19843              
19844              Regen perltoc.
19845              
19846              Subject: [PATCH] More silencing of installman.
19847              
19848              Better wording for the vec lvalue diagnostic.
19849              Subject: Re: [PATCH] Re: [ID 20000821.008] Negitive numbers with vec dumps core
19850              
19851              Subject: [PATCH: 6805] several more tweaks to configure.com
19852              
19853              Subject: [PATCH perl@6805, 5.6.0, 5.005_03] prevent rare Perl hang on VMS
19854              
19855              Missing parts of 
19856              Subject: [PATCH: 6789] some endl fixes for VMS wackiness
19857              
19858              Subject: [ID 20000824.029] MakeMaker manifypods fails on DJGPP systems
19859              (applied slightly modified)
19860              
19861              installperl --verbose and --silent.
19862              Subject: Re: [PATCH] More silencing of installman.
19863              
19864              Add install-silent target.
19865              
19866              AIX 4.3.3 has SOCKS in libc with a differently named init routine,
19867              the problem reported in
19868              Subject: [ID 20000825.007] Building stable 5.6.0 on AIX 4.3.3 using SOCKS
19869              
19870              Tweak the sfio/useperlio logic, hopefully as wished in
19871              Subject: [ID 20000825.004] Not OK: perl v5.7.0 +SUIDMAIL +DEVEL6804 on i586-linux 2.2.12 (UNINSTALLED)
19872              
19873              One forgotten file from #6816.
19874              
19875              Subject: [PATCH @6820] installman under -w and strict (was Re: [PATCH] More silencing of installman.)
19876              
19877              Remove duplicately applied patch shards.
19878              Subject: [ID 20000825.012] [PATCH@6822] t/lib/cgi-html.t produces ugly cruft during 'make test'
19879              
19880              Support preserving extremely big/small angles.
19881              
19882              Subject: Re: [ID 20000825.019] Not OK: perl v5.7.0 +SUIDMAIL +DEVEL6820 on alpha-dec_osf 5.1 (UNINSTALLED) 
19883              
19884              Subject: [PATCH] installation not quite silent yet.
19885              
19886              Update the test count.
19887              
19888              Use UVxf, PTR2UV, NVff.
19889              
19890              Document PTR2XX and INT2PTR.
19891              
19892              no-install target a la make -n.
19893              Subject: [PATCH] make no-install (was Re: [PATCH] installation not quite silent yet.)
19894              
19895              grep -e isn't portable.
19896              Subject: [ID 20000825.027] let me (perlbug@perl.com) know how I blew it
19897              
19898              Can't get the test to reliably work thanks to the
19899              inaccurateness of floating point.  "Resolves" bug ids
19900              20000826.003, 20000826.009, 20000826.010,
19901              
19902              Subject: installman buglet
19903              
19904              DJGPP update from Laszlo Molnar.
19905              
19906              Subject: MM_Unix.pm LD_RUN_PATH niggles on Solaris
19907              
19908              Passing -R in ldflags makes now it to appear in the default
19909              for lddlflags, just like with -L.
19910              Subject: Re: MM_Unix.pm LD_RUN_PATH niggles on Solaris
19911              
19912              Test nit.
19913              
19914              Use the actual thread type, not the pointer-to-struct.
19915              
19916              Provice virtual $Config{ccflags_nolargefiles} etc. 
19917              
19918              display_format used as a class method without arguments was broken,
19919              reported in
19920              Subject: Math::Complex->display_format() sets style to 'Math::Complex'
19921              
19922              Subject: [ID 20000828.006] dir name "0" not safe with Cwd.pm
19923              
19924              Subject: [ID 20000828.009] Not OK: perl v5.7.0 +SUIDMAIL +DEVEL6855 on i586-linux 2.2.12 (UNINSTALLED)
19925              
19926              Subject: [PATCH@6855] _Minor_ change to overload.pm pod
19927              
19928              opmini.o may be left around if a build is interrupted.
19929              
19930              Typo in #6858.
19931              
19932              Fix for ID 20000828.001, long doubles were not formatted
19933              correctly (showed up in $], which stopped installing perl).
19934              
19935              An attempt to fix the problem reported in
19936              Subject: Building perl@6856 using gcc/AIX 4.3.3 
19937              I can't test this properly since the gcc installation I have
19938              access to seems to be botched (gcc is calling the AIX cpp,
19939              a losing proposition...)
19940              
19941              Add -ld to archname on long tr...double platforms.
19942              
19943              Subject: hv.h Doc Patch
19944              
19945              Potential cruft.
19946              
19947              Subject: [PATCH bleedperl@6856] warnings fixes
19948              
19949              -S is the silent flag, -s is the strip flag.
19950              Subject: [PATCH] Re: [PATCH] make no-install          
19951              
19952              Take out the SUIDMAIL thing, that will not be
19953              a problem in 5.7.*.
19954              
19955              Subject: [PATCH bleedperl@6866] spellings
19956              
19957              Subject: [PATCH] Re: files not cleaned even by veryclean
19958              
19959              Use minimal @INC in tests, most of the time just '../lib',
19960              so that we simply can't pick up stuff from other Perls than
19961              the one we are testing.  Pointed out by
19962              Subject: Re: [PATCH: 6757] make new Storable tests forgiving of places where not built   
19963              
19964              Update to Getopt::Long 2.24, from Johan Vromans.
19965              
19966              Fix for thinko in #6848.
19967              Subject: Compiler error in ext/Thread/Thread.c (bleadperl@6866)
19968              
19969              Patches all over for people and the files they (hopefully) care about.
19970              
19971              Subject: Net::protoent does not export 'getproto'
19972              
19973              Missed a change in #6869.
19974              
19975              Subject: [PATCH] Warnings in B::Deparse
19976              
19977              Subject: [PATCH] Glob dumping
19978              
19979              Disable one of the tests for now.
19980              
19981              Disabling the one test is a bit tricky.
19982              
19983              Don't forget to tidy up.
19984              
19985              The #6881 removed one dump line.
19986              
19987              Subject: Re: [ID 20000525.003] perldoc fails when Makefile.PL is in cwd
19988              
19989              Under usethreads the dumped variable is IN_PAD.
19990              Subject: Re: [PATCH] Glob dumping
19991              
19992              Subject: [ID 20000829.026] [PATCH 6868] File::Temp
19993              
19994              Subject: [ID 20000829.022] [PATCH 6868] Minor nit in installhtml
19995              
19996              Subject: [ID 20000829.023] [PATCH 6868] perlbug@perl.com --> perlbug@perl.org
19997              
19998              Regen Configure for #6894.
19999              
20000              Subject: [PATCH: 6889] updates to perlebcdic.pod
20001              
20002              Undo namespace pollution of #6878.
20003              Subject: Re: Net::protoent does not export 'getproto'
20004              
20005              Admit that we are leaking scalars.
20006              
20007              Subject: [PATCH 5.6.0] [ID 20000608.006] panic: magic_killbackrefs with blessed global weakrefs
20008      Branch: maint-5.6/perl
20009           !> (integrate 271 files)
20010 ____________________________________________________________________________
20011 [  7894] By: gsar                                  on 2000/11/27  16:00:34
20012         Log: a couple of nits
20013      Branch: maint-5.6/perl
20014            ! MANIFEST pp_sys.c
20015 ____________________________________________________________________________
20016 [  7893] By: gsar                                  on 2000/11/27  15:10:56
20017         Log: integrate changes#6666..6678,6680..6682,6684..6691,6699..6733,
20018              6740..6745,6747..6757,6760
20019              
20020              Subject: Re: [ID 20000816.006] [PATCH @6655] Shell.pm, bug fix, strict and OO Interface
20021              
20022              Subject: [PATCH(2) @6655] Re: perldebut.pod - spelling
20023              
20024              Doc nits spotted by Richard Soderberg.
20025              
20026              move WNOHANG definition to where other such things are
20027              
20028              Make $Config{byteorder} more magical so that it is
20029              dynamically computed: nice for 'fat binaries'.
20030              Subject: [PATCH]: default byteorder
20031              
20032              Subject: [PATCH] Cwd.pm now uses strict
20033              
20034              Subject: Re: [PATCH]Re: Questions about Math::BigFloat
20035              
20036              Get -DLEAKTEST to compile (not necessarily to work, mind)
20037              Subject: [ID 20000724.006] -DLEAKTEST problem
20038              
20039              perldebtut 1.10 from Richard Foley, plus Celsius and Fahrenheit.
20040              
20041              Add perlebcdic from Peter Prymmer, regen toc.
20042              
20043              Don't propose using modules built for 5.005 if no binary
20044              compatibility with 5.005 is attempted.
20045              
20046              Do not use prototyping here.
20047              Subject: [ID 20000817.016] [PATCH] Peek.xs
20048              
20049              Document what the backtick returns if the command fails.
20050              
20051              Add byteorder to the myconfig output.
20052              
20053              Introduce NVef, NVff, and NVgf, use the middle one.
20054              (helps for lib/peek + Linux + long doubles)  Reported in
20055              Subject: [ID 20000814.005] Not OK: perl v5.6.0 on i686-linux-64int 2.2.13       
20056              Use NVs in POSIX math, not doubles.
20057              Subject: [ID 20000817.014] POSIX & modfl
20058              
20059              Subject: [PATCH 5.6.0+] newSVrv() memory leak
20060              
20061              The byteorder code in #6671 was wrong.
20062              
20063              Fix the lib/complex failure of
20064              Subject: [ID 20000814.005] Not OK: perl v5.6.0 on i686-linux-64int 2.2.13       
20065              Linux long double accuracy issue: something that
20066              when printed with %g looks like "2" but int() of it is 1.
20067              
20068              Propagate new Configure vars.
20069              
20070              Unbuffer the output.
20071              
20072              Subject: [PATCH] perltrap.pod spring cleaning
20073              
20074              Subject: [PATCH] perlfunc.pod -- clarifying sprintf array argument issues
20075              Subject: [ID 20000817.018] behaviour change 5.5.3 -> 5.6.0 re "Modification of a read-only value"
20076              
20077              Tiny Getopt::Long patch from Johan Vromans.
20078              
20079              Document code point which makes if (defined %stash::) to work
20080              (noted by Spider Boardman).
20081              
20082              Subject: [PATCH perl@6698] cygwin port
20083              
20084              Document the NDBM_File and ODBM_File as SDBM_File
20085              was documented in #6417.
20086              
20087              The new tests were missing from #6415.
20088              
20089              Add [[:blank:]] as suggested in
20090              Subject: [ID 20000716.024] [=cc=] / [:blank:]
20091              (the [=cc=] has already been taken care of by #6439
20092              so the whole bug report can be closed)
20093              and make [[:space:]] to be equivalent to isspace(3)
20094              (as opposed to \s, which is isSPACE()).  The difference
20095              is that now [[:space:]] matches the mythical vertical tab,
20096              while \s doesn't.
20097              
20098              Don't eat leading os from index entries.
20099              Subject: Re: [ID 20000810.006] Pod::Man Ate My 'O'!
20100              
20101              Subject: [PATCH 5.6.0+] fix for Win32::DomainName
20102              
20103              Typo in pp_complement().
20104              Subject: [PATCH perl-current] Deparse
20105              
20106              Add warnif(), check warnings further up the stack,
20107              all the warnings functions now can take an optional object reference.
20108              Subject: [PATCH bleedperl@6691] warnings pragma update
20109              
20110              Fix a core dump in lib/selfloader under -DDEBUGGING.
20111              Subject: PATCH @6698 for [ID 20000817.007] Not OK: perl v5.7.0 +SUIDMAIL +DEVEL6676 on alpha-dec_osf 4.0f (UNINSTALLED) 
20112              
20113              Subject: [PATCH 5.6.0+] fix for Win32::GetFullPathName and Win32::GetShortPathName
20114              
20115              Subject: [PATCH: 6698] tidy up the temp files left by peek tests on VMS
20116              
20117              Subject: [PATCH: 6698] was Re: [PATCH: 6640] VMS Makefile.SH update (fwd)
20118              Put back the long double avoidance code to POSIX.xs
20119              because VMS seems to need it still.
20120              
20121              Introduce a 'veryclean' target that is like 'distclean'
20122              but also removes *~ and *.orig.
20123              
20124              Subject: [ID 20000817.023] endianness description in perlfunc.pod
20125              
20126              Subject: [PATCH perl@6698] File::Temp fix-ups for OpenVMS
20127              
20128              Let's try #6717 again.
20129              
20130              UTF8 concat fixes.
20131              Subject: [PATCH @6713] Re: [ID 20000815.006] latest patched perl core dumps
20132              
20133              pp_open() could pass an uninitialized filename down to do_open9().
20134              
20135              Subject: Re: [ID 20000819.002] Not OK: perl v5.7.0 +SUIDMAIL +DEVEL6707 on i686-linux 2.2.5-16 (UNINSTALLED)
20136              
20137              Update to CGI 2.72, from Lincoln Stein.
20138              
20139              Subject: [PATCH] Silence MakeMaker (Was: installman)
20140              
20141              Use temporary directory instead of current directory.
20142              Subject: Re: [ID 20000816.011] Test failure in lib/ftmp-security.t
20143              
20144              Document odd vs even subreleases and -Dusedevel.
20145              
20146              The veryclean target needs to clobber.
20147              
20148              Use File::Spec->tmpdir().
20149              
20150              Document the number of exponent digits.
20151              
20152              Mention perlebcdic and perlposix-bc.
20153              
20154              s/this one/the 5.6.0 release/
20155              
20156              The #6724 is here.
20157              
20158              The correct cleaning order is an art.
20159              
20160              small tweaks for change#6705: avoid C++ style comments in C code;
20161              use Perl's malloc API rather than the low level system one
20162              
20163              Array context keeps slithering in.
20164              
20165              Subject: Re: 5.7.0 getting really close, new snapshot: perldelta, Storable
20166              
20167              Subject: [PATCH] os2.c fix for use64bitint
20168              
20169              Update to Pod::LaTeX 0.53.
20170              Subject: [PATCH] lib/Pod/LaTeX.pm updates
20171              
20172              Document the endianness of Alpha more precisely.
20173              
20174              Subject: RE: [PATCH perl@6736] t/pragma/warn/9enabled assumes stdout buffered
20175              
20176              Rename the macro argument because some preprocessors
20177              can't tell the difference and expand arguments also inside
20178              double quoted strings.
20179              
20180              free TLS slot properly on Windows
20181              
20182              use Cwd 'chdir' didn't set $ENV{PWD} correctly on Windows
20183              
20184              Unicos/mk requires elaborate paranoia.
20185              
20186              Tweak the floating point output routine preferences.
20187              
20188              Also under djgpp the timestamps are funky.
20189              
20190              Apply some PodParser 1.18 patches; the Pod/Find.pm
20191              patches cannot be applied since #6712 conflicts.
20192              
20193              Use PodParser 1.18 new test.
20194              
20195              A pod nit.
20196              Subject: [PATCH] pod/perlre.pod (was Re: [ID 20000821.007] $&, $1, etc. disappear when sub returns)
20197              
20198              Be verydeepclean.
20199      Branch: maint-5.6/perl
20200           +> pod/perlebcdic.pod
20201           !> (integrate 106 files)
20202 ____________________________________________________________________________
20203 [  7892] By: jhi                                   on 2000/11/27  15:02:32
20204         Log: Update Changes.
20205      Branch: perl
20206            ! Changes patchlevel.h
20207 ____________________________________________________________________________
20208 [  7891] By: jhi                                   on 2000/11/27  14:57:23
20209         Log: Subject: Re: perlfaq style changes
20210              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
20211              Date: Sat, 25 Nov 2000 23:32:26 -0800
20212              Message-ID: <KyLI6gzkgiRK092yn@efn.org>
20213              
20214              plus a note from Ronald Kimball.
20215      Branch: perl
20216            ! pod/perlfaq.pod pod/perlfaq1.pod pod/perlfaq6.pod
20217 ____________________________________________________________________________
20218 [  7890] By: jhi                                   on 2000/11/27  14:53:14
20219         Log: Subject: [PATCH perl@7825] Re: [ID 20001122.006] weird behaviour of $|
20220              From: Benjamin Holzman <bah@ecnvantage.com>
20221              Date: Sun, 26 Nov 2000 16:27:33 -0500
20222              Message-ID: <20001126162733.J25040@ecnvantage.com>
20223      Branch: perl
20224            ! gv.c
20225 ____________________________________________________________________________
20226 [  7889] By: jhi                                   on 2000/11/27  14:43:11
20227         Log: Subject: [ID 20001127.004] White space problem in perlamiga.pod
20228              From: lvirden@cas.org
20229              Date: Mon, 27 Nov 2000 09:32:06 -0500 (EST)
20230              Message-Id: <200011271432.JAA09550@lwv26awu.cas.org>     
20231      Branch: perl
20232            ! README.amiga
20233 ____________________________________________________________________________
20234 [  7888] By: jhi                                   on 2000/11/27  14:32:34
20235         Log: Restore also the locale test to no-sprintf-taint state.
20236              Fixes the bug 20001127.003.
20237      Branch: perl
20238            ! sv.c t/pragma/locale.t
20239 ____________________________________________________________________________
20240 [  7887] By: gsar                                  on 2000/11/27  14:13:05
20241         Log: integrate changes#6613..6616,6620..6665 from mainline
20242              
20243              VMS configure.com update continues.
20244              
20245              Subject: Test fails / warnings with perl-current #6612
20246              
20247              Subject: [PATCH] @+, @- readonly (was Re: @<punct> interpolating in "")
20248              
20249              Subject: Re: [ID 20000807.003] [PATCH] Debugger treatment of condition "0"
20250              
20251              For now remove the mail code.
20252              
20253              Subject: Re: [PATCH] @+, @- readonly
20254              
20255              Subject: warning: storage class after type is obsolescent
20256              
20257              Subject: sfio2000
20258              
20259              Subject: Re: File::Temp problems on VMS in bleedperl
20260              
20261              README.os2 update.
20262              Subject: Re: [PATCH perl-current] Make op/sprintf.t more comprehensive,
20263              
20264              Make the user to give up his firstborn, err, to knowingly
20265              verify installing an unstable developer release.  Also bump
20266              the release to 5.7.0, but leave a patch tag in the local
20267              patches saying that this is not yet the real thing.
20268              
20269              Update (kinda) to Test 1.14, from Joshua Pritikin.
20270              
20271              make ok etc also for win32.
20272              
20273              Subject: [ID 20000815.005] [PATCH] perldoc not looking in the right place for script pod
20274              
20275              Don't blow limited stacks, a lower number is enough to
20276              tickle the lookbehind limit.
20277              
20278              Use -Dusedevel; regen Configure and the respective Porting stuff.
20279              
20280              Subject: [PATCH] debugger exit code should reflect user exit code
20281              
20282              Subject: [PATCH perl@6620] cygwin port
20283              
20284              Missed a file from #6638.
20285              
20286              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)
20287              
20288              magic callbacks all need to have same type signature
20289              
20290              Subject: [ID 20000815.014] [PATCH] INSTALL doesn't mention 64 bit support.
20291              
20292              Fix a dependency problem.
20293              Subject: [PATCH: 6640] VMS Makefile.SH update
20294              
20295              The numeric locale was reset to "C" by s?printf and never restored.
20296              Subject: [ID 20000809.003] setlocale(LC_NUMERIC...) produces different results in 5.005 and 5.6
20297              No test since adding the failing example to locale.t
20298              does not fail -- probably because the locale settings are so
20299              thoroughly tweaked by that time.  Running the example standalone
20300              does fail, though.  UPDATE: test case added at change #7540.
20301              
20302              Subject: [ID 20000324.040] minor fix to perlhpux.pod
20303              
20304              Update to CPAN 1.57.
20305              
20306              Subject: [PATCH] Cwd::_backtick_pwd does not check return value
20307              
20308              Change the perlbug address to perl.org since it's more forgiving.
20309              
20310              Change the regx compilation error markers to use = instead of <
20311              since pod makes using the latter quite messy.  Reported in
20312              ID 20000814.006 by Abigail and in
20313              Subject: Unknown escape E<> ?
20314              
20315              Update to perldebtut 1.9, from Richard Foley.
20316              
20317              check that the number pseudo children doesn't exceed
20318              MAXIMUM_WAIT_OBJECTS, which is currently 64 (avoids overflowing
20319              the WaitForMultipleObjects() limit that would cause wait()
20320              to crash)
20321              wait() and waitpid() could potentially be rewritten to use
20322              more than one thread to do the waiting to eliminate this
20323              limitation
20324              
20325              change#6328 could make close(SOCKET) return false on windows
20326              when it shouldn't
20327              
20328              pod nit seen in passing
20329              
20330              on windows, the return values from wait() and waitpid() don't
20331              match those of pseudo-pids
20332              
20333              waitpid() now handles externally spawned pids correctly;
20334              fixes for backtick/wait/waitpid failures on Windows 9x
20335              these changes make the pid returned by process functions on
20336              Windows 9x always positive by clearing the high bit (which
20337              is always set on Win9x); pseudo-process PIDs are likewise
20338              always negative now on Win9x (just as on NT/2000)
20339              
20340              trailing new %ENV entries weren't being pushed into the real
20341              environment of subprocesses on Windows
20342              
20343              Tweak the regex compilation errors once more.
20344              
20345              avoid warnings from dense compiler
20346              
20347              add "ok" targets from change#6632 in makefile.mk
20348      Branch: maint-5.6/perl
20349            - lib/Pod/PlainText.pm vms/configure.com
20350           !> (integrate 66 files)
20351 ____________________________________________________________________________
20352 [  7886] By: jhi                                   on 2000/11/27  13:54:18
20353         Log: __FUNCTION__ isn't portable and trying to emulate it leads
20354              into practically spelling out the name of the function.
20355              Takes care of the bug 20001127.001.
20356      Branch: perl
20357            ! perlio.c
20358 ____________________________________________________________________________
20359 [  7885] By: gsar                                  on 2000/11/27  13:53:18
20360         Log: integrate changes#6540..6541,6546..6549,6552..6554,6557..6606,
20361              6610..6611 from mainline
20362              
20363              Make regular expression parse error messages easier to understand.
20364              Subject: Re: enhanced(?) regex error messages
20365              
20366              Tiny tidying on report_evil_fh().
20367              
20368              Subject: Re: enhanced(?) regex error messages 
20369              plus Capitalize the error messages, plus perldiag them.
20370              
20371              Subject: Patch against 5.6.0 to allow "-d:Module=arg,arg,arg"
20372              
20373              Document here-doc better.
20374              
20375              Subject: [ID 20000807.003] [PATCH] Debugger treatment of condition "0"
20376              
20377              Subject: [PATCH] Re: [ID 20000807.008] Double reads considered evil? (deja vu)
20378              Do away with array context, from Daniel Chetlin <daniel@chetlin.com>
20379              (either perlbug or p5p ate the original), plus regen
20380              perlapi and perltoc. 
20381              
20382              Regen global.sym.
20383              
20384              Double check that we have a dirhandle.
20385              
20386              Subject: Re: enhanced(?) regex error messages
20387              (plus two small patches sent privately)
20388              (this still seems to leave few test failures)
20389              
20390              warn is a macro, avoid using at a variable to avoid warnings
20391              in some configurations; readdir.t is too conservative in
20392              estimating number of *.t's
20393              
20394              Get back into sync with Jeffrey on the enhanced regex warnings.
20395              
20396              Subject: [PATCH 5.6.0] cygwin port
20397              
20398              Zero entries were skipped, fix from Adrian Goalby
20399              <argoalby@yahoo.co.uk>
20400              
20401              Subject: Remove dead entry in perldiag
20402              
20403              Amend the description of Perl6.
20404              Subject: [PATCH Perl-5.6.0] perlfaq1.pod
20405              
20406              detypo
20407              
20408              It's the 2ndO'ROSSC.
20409              
20410              Revert the sv.c part of #6559, a better fix is needed.
20411              
20412              Iterating perl6 description.
20413              
20414              Update to Term::ANSIColor 1.03, from Russ Allbery.
20415              
20416              Update to Getopt::Long 2.23_05, from Johan Vromans.
20417              
20418              Small AUTHORS and MAINTAIN updates.  Could do with big updates.
20419              
20420              Update to Pod::Parser 1.17, from Brad Appleton.
20421              
20422              Update to CPAN 1.56, from Andreas König.
20423              
20424              Update to CGI 2.70, from Lincoln Stein.
20425              
20426              Put back the std @INC thing.
20427              
20428              Fixes to looking-like-number to keep behaviour as it was in 5.005_03.
20429              Subject: Re: [ID 20000810.002] $a["1foo"] same as $a[0]
20430              
20431              Document the IO::Select timeout.
20432              
20433              sleep(1) does not necessarily return 1.
20434              Subject: [PATCH bleadperl] op/lex_assign.t  
20435              
20436              Subject: debugger "d" command doesnt check line number
20437              
20438              B::Deparse didn't do sub attributes.
20439              Subject: B::Deparse was Re: [ID 20000808.005] refs to returned lvalues are lvalues??
20440              
20441              Preprocessing and postprocessing for File::Find.
20442              Subject: Patch to Find::File.pm to allow alphabetical results
20443              
20444              Subject: Re: [ID 20000809.005] trouble with long string and /m modifier - uninitialized value 
20445              
20446              Subject: Re: [ID 20000809.006] Debugger lost the ability to see $1 et al
20447              
20448              Subject: Re: [ID 20000730.003] utf8::length() bad
20449              
20450              Subject: Getting perlio and threads to compile
20451              (the Solaris version changes in Configure skipped)
20452              
20453              Tests for #6589.
20454              Subject: Re: B::Deparse was Re: [ID 20000808.005] refs to returned lvalues are lvalues??
20455              
20456              Add Perl debugging tutorial, regen toc. 
20457              Subject: perldebtut.pod
20458              
20459              Add a few missing files, update MANIFEST.
20460              
20461              Rewrite of vms/subconfigure.com as configure.com,
20462              from Peter Prymmer and the vmsperl crew.
20463              
20464              Should have deleted this in #6603.
20465              
20466              Fix the test for 5005threads.
20467              
20468              Fix-n-skip the tests under 5005threads.
20469              
20470              Subject: [PATCH] t/op/regmesg.t fails if REG_INFTY set
20471              
20472              Upgrade to CGI 2.71, from Lincoln Stein.
20473      Branch: maint-5.6/perl
20474           +> lib/CGI/eg/make_links.pl lib/CGI/eg/wilogo.gif
20475           +> lib/Pod/PlainText.pm pod/perldebtut.pod t/lib/gol-oo.t
20476           +> t/op/regmesg.t t/pod/find.t vms/configure.com
20477            - vms/subconfigure.com
20478            ! lib/lib.pm
20479           !> (integrate 115 files)
20480 ____________________________________________________________________________
20481 [  7884] By: jhi                                   on 2000/11/27  13:44:33
20482         Log: Subject:  [PATCH perl@7795 (and earlier)] VMS test cleanup
20483              From: lane@DUPHY4.Physics.Drexel.Edu (Charles Lane)
20484              Date:     Mon, 27 Nov 2000 08:23:54 EST
20485              Message-Id: <001127082318.6381c@DUPHY4.Physics.Drexel.Edu>
20486      Branch: perl
20487            ! vms/descrip_mms.template vms/test.com
20488 ____________________________________________________________________________
20489 [  7883] By: gsar                                  on 2000/11/27  11:50:46
20490         Log: integrate changes#6469..6484,6486..6501,6504..6505,6507..6509,
20491              6511..6513,6515..6523,6525..6536
20492              
20493              The swallow_bom() saga continues.  The #23 of require.t
20494              (UTF16-LE) still fails (silently, no output) but the #22
20495              (UTF16-BE) seems to be working now.  The root of the
20496              failure may be in sv_gets(): is it UTF-16LE-aware,
20497              especially when it comes to line endings? 
20498              
20499              Document the problem with -P in HP-UX and its workaround.
20500              
20501              Subject: [PATCH] allow non-variable as lhs of non-updating tr///
20502              (aka ID 20000730.002)
20503              
20504              Subject: fix and question re: waitpid() under win32
20505              
20506              Make the safety catch for buggy gccs work with triple version
20507              numbers like 2.95.2.  Reported in
20508              Subject: [ID 20000731.005] Perl 5.6.0 "Configure" fails to recognize gcc 2.95.2
20509              
20510              In Digital UNIX warn if gcc explicitly chosen because even
20511              2.95.2 is known to cause problems.
20512              
20513              Make chr() for values >127 to create utf8 when under utf8.
20514              
20515              various syntax errors and such (not fixed: comp/require.t#22 coredump
20516              on Windows)
20517              
20518              Stash away the largefiles flags and libswanted.
20519              
20520              BOM patching from Simon Cozens.
20521              
20522              If gccosandvers is equal to osname, clear gccosandvers.
20523              
20524              Make p4desc to skip non-mainperl branches by default.
20525              
20526              Subject: [Proposed PATCH] Let Perl define QUAD_MIN and _MAX itself
20527              
20528              The test from this
20529              Subject: Re: [ID 20000411.002] qw() gives different results in 5.6 to previous versions
20530              
20531              In new BSDs changes to argv[] do not show up in ps(1) output,
20532              instead one must use setproctitle().  This was already addressed
20533              by change #6457, but the below has a new variant for FreeBSD 4.0
20534              or later, and the matter is also documented more.
20535              
20536              FreeBSD 3.* updates from
20537              Subject: [ID 20000801.007] setting $0 on FreeBSD 4.x does not get reflected in /bin/ps
20538              
20539              regen_headers, regen perltoc.
20540              
20541              Document in one place the memory abstractions used in Perl core.
20542              
20543              memcpy has n o in it, as pinted ut by Sarathy.
20544              
20545              Remove the extraneous "main::" prefix from all the
20546              "opened only for", "on closed", and "never opened" warnings.
20547              
20548              The name of a filehandle does not have <these>.
20549              
20550              The tr utf8 patching continues.
20551              
20552              The new setproctitle() feature is available only in 
20553              bleeding edge FreeBSD.  From Paul Saab.
20554              
20555              Subject: [PATCH bleadperl] [ID 20000731.010] regex error 
20556              
20557              Dump UVs as UVs in Data::Dumper.
20558              
20559              detypo #6494
20560              
20561              Document the IVdf UVuf UVof UVxf.
20562              
20563              require.t needs binmode() to work on windows
20564              
20565              Generate OP_IS_SOCKET() and OP_IS_FILETEST() macros
20566              that are hopefully soon put into use.
20567              
20568              Allow "no Module;" even if there is no 'unimport'.
20569              
20570              Better skip message for the test; one of the two problems in
20571              Subject: [ID 20000224.003] Not OK: perl v5.5.660 on i86pc-solaris 2.7
20572              
20573              The subtest 4 may fail also on VOBS, as pointed out
20574              by Nick Ing-Simmons in November 1999, bug id 19991124.003
20575              (but the failure in that bug report isn't the subtest 4).
20576              
20577              Be more informative on what is skipped and why,
20578              also repeat the list at the end.
20579              
20580              Add a URL for FSF.
20581              
20582              Subject: [PATCH] sv.h documentation - SvLEN
20583              
20584              Subject: [PATCH bleadperl] [ID 20000803.001] further regexp counting problems
20585              
20586              Subject: [PATCH perl-current] Comings and goings in op/sprintf.t
20587              
20588              Subject: [PATCH] bad cppsymbols on os2 + Configure question
20589              
20590              Subject: [ID 20000802.002] [PATCH] memory pseudo-leak in sv_dump
20591              
20592              Subject: [ID 20000802.004] Tests op/grent.t and op/pwent.t fail unnecessarily
20593              mention the idea of @( and @)
20594              
20595              This is 6512.  Really.
20596              
20597              Subject: [ID 19990721.004] Documentation bug in perlfunc
20598              
20599              Subject: Minor tweak to perlvar.pod
20600              
20601              In the warnings call filehandles consistently so;
20602              add "unopened" warning for stat().
20603              
20604              After the #6519 a warning about stat() is just that,
20605              not about a filetest, which now have their own warning.
20606              
20607              Subject: [ID 20000804.002] configure.gnu and arguments with whitespace characters
20608              
20609              Subject: Re: Array vs. List context
20610              
20611              Subject: New perlcc, take 2
20612              
20613              Weed buglets pointed out by
20614              Subject: Re: [ID 20000803.005] miniperl aborts during Perl make
20615              
20616              gcc versions might have (parentheses) in them.
20617              
20618              Subject: [ID 20000724.004] Perl interpreter segfault when using built-in flock
20619              
20620              Essential prototype changes were missing from #6527.
20621              Also make report_evil_fh() more bomb-proof.
20622              
20623              Zap lib/Sys directory when cleaning up.
20624              
20625              Change the Policy policy: now -Dprefix= with an existing
20626              Policy.sh and prefix == siteprefix == vendorprefix, then all
20627              of them follow along the new prefix.
20628              Subject: Re: [ID 20000508.002] -Dprefix completely broken [PATCH]
20629              
20630              Continue fixing the io warnings.  This also
20631              sort of fixes bug ID 20000802.003: the core dump
20632              is no more.  Whether the current behaviour is correct
20633              (giving a warning: "Not a format reference"), is another matter.
20634              
20635              Have symbols for the IoTYPEs.
20636              
20637              Subject: [PATCH] perlfunc.pod use documentation (5.6.0)
20638              
20639              Document a bit that UDP is not what you might think.
20640              Subject: Re: IO::Socket::INET bug sending large UDP packets/fragmentation
20641              tr memory corruption fix from Simon Cozens.
20642              
20643              Plug the security hole described in the Aug 05 2000 bugtraq message
20644              "sperl 5.00503 (and newer ;) exploit" by Michal Zalewski.
20645              The security hole exists only in suidperls, which isn't
20646              installed or even built by default.
20647      Branch: maint-5.6/perl
20648           !> (integrate 71 files)
20649 ____________________________________________________________________________
20650 [  7882] By: gsar                                  on 2000/11/27  10:25:36
20651         Log: integrate changes#6439..6444,6446..6453,6455..6457,6460..6465,6467..6468
20652              from mainline
20653              
20654              Make the unimplemented POSIX regex features [[.cc.]] and [[=c=]]
20655              to be fatal errors (instead of by default ignoring them, and
20656              ignoring with a bug: even though -w gave an error, the opening [
20657              was left in)  Reported in:
20658              
20659              Subject: [PATCH: perl@6409] bug fix for munchconfig (turned up by CXX)
20660              
20661              Subject: [PATCH] split /^/
20662              
20663              MacOS nits from Matthias Neeracher.
20664              
20665              More split() doc and test patches from Mike Guy.
20666              
20667              Allow "sub AUTOLOAD;" to stop AUTOLOAD inheritance,
20668              from Graham Barr in the module list.
20669              
20670              docfix from Peter Scott <Peter@PSDT.com>.
20671              
20672              File::Temp patches for VMS and OS/2 from Tim Jenness.
20673              
20674              open() wariness in perlbug.
20675              
20676              Subject: [PATCH] minor doc change - perlguts
20677              
20678              Subject: Minor doc patch: handy.h
20679              
20680              Be wary of close()s, too.
20681              
20682              Further File::Temp patches from Yitzchak Scott-Thoennes
20683              and Craig A. Berry.
20684              
20685              Subject: [PATCH] fixes bug 20000508.004
20686              
20687              Subject: [ID 19990709.002] [DOCUMENTATION PATCH] perldiag
20688              
20689              Allow "no AutoLoader;", based on change #6444,
20690              suggested by Graham Barr.
20691              
20692              Use setproctitle() if available to modify $0.
20693              
20694              Warn if the version of the operating system used to compile gcc
20695              differs from the current version of the operating system.
20696              Also display the gcc compilation os and version in myconfig.
20697              Inspiration from
20698              
20699              Tiny fixes for #6460.
20700              
20701              The problem described in this
20702              Subject: [ID 20000322.018] named chars aren't magical enough
20703              has been fixed in perl 5.6.0 but just in case added a test
20704              to keep it away.  (The report from Joseph Hall.)
20705              
20706              Tune the comments and hopefully stop a memory leak.
20707              
20708              Subject: UTF8 concat
20709              (with a memory leak fixed, plus a few casts added)
20710              This also seems to help for
20711              Subject: [ID 20000716.015] join UTF8 weirdness
20712              
20713              Do not upgrade SVs into utf8 just because they participate
20714              in eq or cmp.  Reported and fix suggested in
20715              Subject: [ID 20000720.009] sv_eq UTF8 bug
20716              
20717              Fix the HALF_UPGRADE() macro introduced in #6263.
20718              
20719              Find green threads before native threads.
20720              Subject: Re: Patch to jpl/JNI/Makefile.PL
20721      Branch: maint-5.6/perl
20722           !> (integrate 30 files)
20723 ____________________________________________________________________________
20724 [  7881] By: jhi                                   on 2000/11/27  05:48:41
20725         Log: It seems that *both* the unused submatch loop cleanup
20726              codes are needed.
20727      Branch: perl
20728            ! regexec.c
20729 ____________________________________________________________________________
20730 [  7880] By: jhi                                   on 2000/11/27  04:50:07
20731         Log: Clean .exists deeper.
20732      Branch: perl
20733            ! Makefile.SH
20734 ____________________________________________________________________________
20735 [  7879] By: jhi                                   on 2000/11/27  02:31:35
20736         Log: The code in regcppop() (see #7878) contains the correct lower
20737              limit for the unused submatch 'cleanup' loop so that under
20738              "use utf8" the following code wouldn't dump core:
20739              "," =~ /([^,]*,)*/  With the the wrong lower limit (>=1)
20740              the cleanup loop in regtry() stomped beyond allocated area
20741              in the startp[] array.  Therefore, copied the correct lower
20742              loop limit (*PL_reglastparen) to regtry().  Note: something
20743              may still not be quite right: why was the _higher_ loop limit
20744              (prog->nparens) different in the utf8 case?
20745              
20746              After this patch "./perl -Ilib -Mutf8 t/op/regexp.t" works
20747              without core dumps, there were about 17 of them before
20748              the patch (with us since Perl 5.7.0).  Two failures, still:
20749              496 and 505 (though these may not be severe).
20750              
20751              Patch #7881 is also needed since both the cleanup loops
20752              seem to be needed.
20753              
20754              Also, the t/op/pat#44 seems to core dump under utf8.
20755              Plus a couple of failures.  UGH-8.
20756      Branch: perl
20757            ! regexec.c
20758 ____________________________________________________________________________
20759 [  7878] By: jhi                                   on 2000/11/27  02:21:17
20760         Log: The unused submatch cleanup code in regtry() seems to be more crucial,
20761              the code in regcppop() seems to be redundant for the test suite --
20762              but it contains a germ of truth, and it needed for the build
20763              process itself: see #7879 and #7881.
20764      Branch: perl
20765            ! regexec.c
20766 ____________________________________________________________________________
20767 [  7877] By: jhi                                   on 2000/11/27  01:53:09
20768         Log: Comment on comment.
20769      Branch: perl
20770            ! regexec.c
20771 ____________________________________________________________________________
20772 [  7876] By: jhi                                   on 2000/11/27  00:49:59
20773         Log: Adjust the docs to agree with #7875.
20774      Branch: perl
20775            ! pod/perllocale.pod
20776 ____________________________________________________________________________
20777 [  7875] By: jhi                                   on 2000/11/27  00:49:27
20778         Log: Retract #7863.  It makes more sense not to taint formatted output,
20779              not even by sprintf().
20780      Branch: perl
20781            ! sv.c
20782 ____________________________________________________________________________
20783 [  7874] By: jhi                                   on 2000/11/26  23:36:02
20784         Log: Debug dump of ANYOFUTF8 was garbage (data from ANYOF).
20785              Not really fixed (should really dump the UTF-8 charclass),
20786              but stopped displaying the garbage.
20787              
20788              Also add a note on the (missing) Unicode PSXSPC and BLANK.
20789      Branch: perl
20790            ! regcomp.c
20791 ____________________________________________________________________________
20792 [  7873] By: jhi                                   on 2000/11/26  21:31:13
20793         Log: BOUND regex opcodes (\b, \B) could try to scan zero length UTF-8.
20794      Branch: perl
20795            ! regexec.c
20796 ____________________________________________________________________________
20797 [  7872] By: jhi                                   on 2000/11/26  21:06:04
20798         Log: No need to scan till infinity, 13 is enough.
20799      Branch: perl
20800            ! handy.h utf8.c
20801 ____________________________________________________________________________
20802 [  7871] By: jhi                                   on 2000/11/26  20:20:32
20803         Log: Test line numbers are different with utf8.
20804      Branch: perl
20805            ! t/op/re_tests
20806 ____________________________________________________________________________
20807 [  7870] By: jhi                                   on 2000/11/26  20:10:12
20808         Log: Message nit.
20809      Branch: perl
20810            ! regcomp.c
20811 ____________________________________________________________________________
20812 [  7869] By: jhi                                   on 2000/11/26  19:01:05
20813         Log: Make utf8_length() and utf8_distance() (the latter of which
20814              is unused at the moment) to be less forgiving about bad UTF-8.
20815      Branch: perl
20816            ! embed.h embed.pl objXSUB.h proto.h utf8.c
20817 ____________________________________________________________________________
20818 [  7868] By: jhi                                   on 2000/11/26  18:45:56
20819         Log: Subject: Re: [ID 20001125.004] OK: perl v5.7.0 +DEVEL7825 on i686-linux 2.2.17 (UNINSTALLED)
20820              From: Benjamin Holzman <bah@ecnvantage.com>
20821              Date: Sat, 25 Nov 2000 20:40:20 -0500       
20822              Message-ID: <20001125204020.A25040@ecnvantage.com>              
20823              
20824              Debian allows installing /usr/bin/locale without installing
20825              any locales, an error message will ensue.
20826      Branch: perl
20827            ! t/pragma/locale.t
20828 ____________________________________________________________________________
20829 [  7867] By: jhi                                   on 2000/11/26  18:31:12
20830         Log: Subject: Re: [PATCH: perl@7825] SvTEMP-ness on rhs of aassign can wreak havoc
20831              From: Benjamin Holzman <bah@ecnvantage.com>
20832              Date: Sun, 26 Nov 2000 02:42:34 -0500
20833              Message-ID: <20001126024234.G25040@ecnvantage.com>
20834              
20835              Patch for the bug 20000212.002.
20836      Branch: perl
20837            ! sv.c t/op/array.t
20838 ____________________________________________________________________________
20839 [  7866] By: jhi                                   on 2000/11/26  18:28:09
20840         Log: Subject: PATCH: File::Temp fix on WindowsNT/VMS
20841              From: Tim Jenness <t.jenness@jach.hawaii.edu>
20842              Date: Fri, 24 Nov 2000 18:38:34 -1000 (HST)
20843              Message-ID: <Pine.LNX.4.21.0011241833230.18423-100000@lapaki.jach.hawaii.edu>
20844              
20845              File::Temp 0.11.
20846      Branch: perl
20847            ! lib/File/Temp.pm t/lib/ftmp-tempfile.t
20848 ____________________________________________________________________________
20849 [  7865] By: jhi                                   on 2000/11/26  18:24:22
20850         Log: The metaconfig unit change for #7864.
20851      Branch: metaconfig/U/perl
20852            ! need_va_copy.U
20853 ____________________________________________________________________________
20854 [  7864] By: jhi                                   on 2000/11/26  18:23:41
20855         Log: Make the va_copy() test not to be so talkative.
20856      Branch: perl
20857            ! Configure config_h.SH
20858 ____________________________________________________________________________
20859 [  7863] By: jhi                                   on 2000/11/26  18:11:02
20860         Log: Fix locale inconsistencies unearthed by Hugo's work.
20861              Now the floating point sprintf really does taint the result
20862              string as perllocale promises (has promised for a long time)
20863              if "use locale" is in the lexical scope.
20864      Branch: perl
20865            ! sv.c t/pragma/locale.t
20866 ____________________________________________________________________________
20867 [  7862] By: jhi                                   on 2000/11/26  00:35:15
20868         Log: Subject: [PATCH] Re: pp_add -> pp_i_add efficiency hack?
20869              From: Nicholas Clark <nick@ccl4.org>
20870              Date: Sun, 26 Nov 2000 00:07:50 +0000
20871              Message-ID: <20001126000750.A22446@plum.flirble.org>
20872              
20873              Infinit.
20874      Branch: perl
20875            ! sv.c
20876 ____________________________________________________________________________
20877 [  7861] By: jhi                                   on 2000/11/26  00:01:26
20878         Log: Integrate perlio.
20879      Branch: perl
20880           !> doio.c perlio.c perliol.h pp_sys.c win32/makefile.mk
20881 ____________________________________________________________________________
20882 [  7860] By: nick                                  on 2000/11/25  22:04:17
20883         Log: Correct relative path from new ext\Filter\Util\Call location
20884              back to miniperl.
20885      Branch: perlio
20886            ! win32/makefile.mk
20887 ____________________________________________________________________________
20888 [  7859] By: nick                                  on 2000/11/25  21:26:54
20889         Log: Integrate mainline.
20890      Branch: perlio
20891           +> ext/Filter/Util/Call/Call.pm ext/Filter/Util/Call/Call.xs
20892           +> ext/Filter/Util/Call/Makefile.PL t/lib/filter-util.pl
20893           +> t/lib/filter-util.t
20894            - ext/Filter/Util/Call.pm ext/Filter/Util/Call.xs
20895            - ext/Filter/Util/Makefile.PL t/lib/filt-util.pl
20896            - t/lib/filt-util.t
20897           !> AUTHORS Configure MANIFEST README.amiga configure.com doio.c
20898           !> embed.h embed.pl ext/B/B.pm ext/B/B/Lint.pm ext/B/B/Terse.pm
20899           !> hints/solaris_2.sh hints/uwin.sh hints/vmesa.sh
20900           !> lib/ExtUtils/MM_Unix.pm makedef.pl perl.h perlio.c perlio.h
20901           !> perlsdio.h proto.h t/lib/io_sock.t win32/Makefile
20902           !> win32/makefile.mk
20903 ____________________________________________________________________________
20904 [  7858] By: gsar                                  on 2000/11/25  20:52:17
20905         Log: C<foreach my $x ...> in pseudo-fork()ed process may diddle
20906              parent's memory; fix it by keeping track of the actual pad
20907              offset rather than a raw pointer (this change is probably also
20908              relevant to non-ithreads case to avoid fallout from reallocs of
20909              the pad array, but is currently only enabled for the ithreads
20910              case in the interests of minimal disruption to existing "well
20911              tested" code)
20912      Branch: perl
20913            ! embed.h embed.pl global.sym objXSUB.h perlapi.c pp_ctl.c
20914            ! proto.h scope.c scope.h sv.c t/op/fork.t
20915 ____________________________________________________________________________
20916 [  7857] By: nick                                  on 2000/11/25  20:01:28
20917         Log: All tests pass on Win32/gcc/USE_PERLIO.
20918              - when crlf layer is pushed make unix-level binary.
20919              - remove :crlf injection in pp_backtick in pp_sys.c
20920              - (Change dependacy of extension .dll's to perldll.def rather than perl.exe)
20921      Branch: perlio
20922            ! doio.c perlio.c pp_sys.c win32/makefile.mk
20923 ____________________________________________________________________________
20924 [  7856] By: jhi                                   on 2000/11/25  18:38:30
20925         Log: Update the metaconfig units for #7855.
20926      Branch: metaconfig/U/perl
20927            ! useperlio.U usesocks.U
20928 ____________________________________________________________________________
20929 [  7855] By: jhi                                   on 2000/11/25  18:37:54
20930         Log: Undo the SOCKS workarounds, instead start using PerlIO
20931              if SOCKS is selected.
20932              
20933              Subject: perl@7847, [ID 20001030.005], close-patch, perlio - The big cleanup
20934              From: Jens Hamisch <jens@Strawberry.COM>
20935              Date: Fri, 24 Nov 2000 18:31:30 +0100
20936              Message-ID: <20001124183130.E28337@Strawberry.COM>
20937              
20938              Subject: Re: perl@7847, [ID 20001030.005], close-patch, perlio - Patch the patch ...
20939              From: Jens Hamisch <jens@Strawberry.COM>
20940              Date: Fri, 24 Nov 2000 19:11:51 +0100
20941              Message-ID: <20001124191151.A28753@Strawberry.COM>
20942      Branch: perl
20943            ! Configure doio.c embed.h embed.pl makedef.pl perl.h perlio.c
20944            ! perlio.h perlsdio.h proto.h t/lib/io_sock.t
20945 ____________________________________________________________________________
20946 [  7854] By: jhi                                   on 2000/11/25  17:39:08
20947         Log: Undo #7848.  Some of the code seems to use walkoptree(),
20948              some walkoptree_slow().  An unfinished renaming?
20949              Now the sub is walkoptree() (which is @EXPORT_OK),
20950              the walkoptree_slow() is a typeglob alias to walkoptree.
20951              This makes the tests to pass, at least.
20952      Branch: perl
20953            ! ext/B/B.pm ext/B/B/Lint.pm ext/B/B/Terse.pm
20954 ____________________________________________________________________________
20955 [  7853] By: nick                                  on 2000/11/24  22:24:33
20956         Log: Re-arrange crlf vs binary for platforms that care.
20957              crlf layer is now "the" buffer layer and can turn its behaviour on/off.
20958              Lip-service to making stdio layer work on such platfroms (untested).
20959              Now fails 3 tests rather than one, checkin to see if I can debug 
20960              the issue under linux. (Do not merge.)
20961      Branch: perlio
20962            ! doio.c perlio.c perliol.h
20963 ____________________________________________________________________________
20964 [  7852] By: jhi                                   on 2000/11/24  18:57:39
20965         Log: AUTHORS edits.
20966      Branch: perl
20967            ! AUTHORS
20968 ____________________________________________________________________________
20969 [  7851] By: jhi                                   on 2000/11/24  17:34:56
20970         Log: Add Jan-Erik Karlsson.
20971      Branch: perl
20972            ! AUTHORS
20973 ____________________________________________________________________________
20974 [  7850] By: jhi                                   on 2000/11/24  17:27:56
20975         Log: Configure should find stdchar on its own.
20976      Branch: perl
20977            ! hints/solaris_2.sh
20978 ____________________________________________________________________________
20979 [  7849] By: jhi                                   on 2000/11/24  17:24:55
20980         Log: Subject: PATCH over 7848: Filter test flawed
20981              From: andreas.koenig@anima.de (Andreas J. Koenig)
20982              Date: 24 Nov 2000 10:28:29 +0100
20983              Message-ID: <m3k89tbtxe.fsf@ak-71.mind.de>
20984      Branch: perl
20985            ! t/lib/filter-util.t
20986 ____________________________________________________________________________
20987 [  7848] By: jhi                                   on 2000/11/24  17:22:15
20988         Log: Subject: [ID 20001124.001] B exports "walkoptree" but does not define it
20989              From: Simon Cozens <simon@pembro4.pmb.ox.ac.uk>
20990              Date: Fri, 24 Nov 2000 16:12:58 +0000
20991              Message-Id: <E13zLT8-0005FN-00@pembro4.pmb.ox.ac.uk>
20992      Branch: perl
20993            ! ext/B/B.pm
20994 ____________________________________________________________________________
20995 [  7847] By: jhi                                   on 2000/11/24  03:07:01
20996         Log: Integrate perlio.
20997      Branch: perl
20998           !> doio.c perlio.c perlio.h pp_sys.c t/lib/io_tell.t
20999           !> win32/makefile.mk
21000 ____________________________________________________________________________
21001 [  7846] By: gsar                                  on 2000/11/24  00:55:57
21002         Log: integrate changes#6415..6418,6420..6438 from mainline
21003              
21004              Fix the bitvector ops for utf8 (tricky since past 7 bits
21005              the utf8 'characters' can be more than one octet).
21006              
21007              MPE/ix updates for perl 5.6.0 from Mark Bixby.
21008              
21009              Subject: SDBM_File documentation
21010              
21011              Detypo.
21012              
21013              Decutandpasto.
21014              
21015              Send all installperl messages to STDERR and be -w clean.
21016              
21017              Out-of-date note removed.
21018              
21019              Protect against "wild next"s, that is, callbacks doing "next"
21020              instead of "return".
21021              
21022              Use STDOUT consistently.
21023              
21024              The output might have been produced in the wrong order.
21025              
21026              A missing 'break' after the [[:space:]] switch case.
21027              
21028              Add tests for
21029              [ID 19991110.003] another matching finding by pcre author
21030              which has already been fixed by some patch, as verified in
21031              
21032              Documentation to explain the behaviour of map().
21033              
21034              Add an optimization for map-maps-a-list-element-to-more-list-elements
21035              case, but add also notes explaining the relationship of this
21036              patch and the earlier notes by Sarathy.
21037              
21038              Subject: [ID 20000716.023] syslog test fails without sockets
21039              
21040              Subject: Re: [PATCH] [ID 20000716.011] strangeness with split($_ =~ m/.../)
21041              Test cases for #6431.
21042              
21043              File::Spec::VMS fixup for tmpdir from Craig Berry.
21044              
21045              Make the "uninit variable" warning to say "concat or string"
21046              or "join or string" when in concat or join .
21047              
21048              Get UTF16 BOMs working.  Patch from
21049              Subject: Re: [ID 20000719.001] Problem with bleadperl of 7/18/00
21050              
21051              Subject: [PATCH] Make large file tests deal with SIGXFSZ
21052              
21053              Subject: [ID 20000724.003] Documentation changes for perllocale.pod
21054              
21055              Subject: [PATCH] av.c apidoc
21056      Branch: maint-5.6/perl
21057           !> (integrate 43 files)
21058 ____________________________________________________________________________
21059 [  7845] By: gsar                                  on 2000/11/24  00:20:45
21060         Log: integrate changes#6406..6414 from mainline
21061              
21062              Merge perlhacktut into perlhack, update perlguts.
21063              
21064              Fix AutoSplit to use File::Spec the right way in VMS,
21065              from Peter Prymmer.
21066              
21067              The bug report
21068              [ID 19991110.002] minimal matching discrepancy found by pcre author
21069              seems to have been fixed (though differently from what was suggested
21070              in the report) in 5.6.0.  Add tests to keep the bug from reappearing.
21071              
21072              thinko fix in vms/descrip_mms.template, the win32.pod in lib,
21073              not in pod, from Peter Prymmer
21074              
21075              Subject: [docpatch] Re: [ID 19991002.011] perldoc -f shift
21076              From: Hugo <hv@crypt.compulink.co.uk>
21077              Date: Fri, 14 Jul 2000 23:05:20 +0100
21078              Message-Id: <200007142205.XAA17882@crypt.compulink.co.uk>
21079              
21080              Didn't anymore apply, but that point still could use another fix.
21081              
21082              lib/b test fixes from Peter Prymmer.
21083              
21084              More docs for sv functions.
21085              
21086              perlvms.pod whitespace cleanup to keep pod utils happy.
21087              
21088              another VMS build tweak from Peter Prymmer
21089      Branch: maint-5.6/perl
21090           !> embed.pl lib/AutoSplit.pm pod/perlapi.pod pod/perlfunc.pod
21091           !> pod/perlguts.pod pod/perlhack.pod sv.c t/lib/b.t t/op/re_tests
21092           !> vms/descrip_mms.template vms/perlvms.pod
21093 ____________________________________________________________________________
21094 [  7844] By: nick                                  on 2000/11/23  23:42:45
21095         Log: Win32/perlio Now just fails one io/argv.t test - lack 
21096              of default :crlf on standard streams.
21097      Branch: perlio
21098            ! doio.c perlio.c
21099 ____________________________________________________________________________
21100 [  7843] By: nick                                  on 2000/11/23  23:04:05
21101         Log: Win32 passes all but t/lib/peek.t with perlio and home-grown crlf.
21102              peek fail is showing a real problem (multiple crlf layers
21103              are getting pushed.)
21104      Branch: perlio
21105            ! doio.c perlio.c win32/makefile.mk
21106 ____________________________________________________________________________
21107 [  7842] By: nick                                  on 2000/11/23  19:46:23
21108         Log: Implement PerlIO_binmode()
21109              Fix PerlIOCrlf_unread() (*--ptr rather than *ptr-- ...)
21110              Test on UNIX with PERLIO="perlio crlf" to mimic Win32,
21111              make binmode in t/lib/io_tell.t unconditional so that works.
21112              Checkin just so Win32 machine can see these changes.
21113      Branch: perlio
21114            ! doio.c perlio.c perlio.h pp_sys.c t/lib/io_tell.t
21115 ____________________________________________________________________________
21116 [  7841] By: jhi                                   on 2000/11/23  19:30:00
21117         Log: README.amiga changes from Jan-Erik Karlsson <trg@privat.utfors.se>.
21118      Branch: perl
21119            ! README.amiga
21120 ____________________________________________________________________________
21121 [  7840] By: jhi                                   on 2000/11/23  17:18:02
21122         Log: SOCKS wrestling continues, patches from Jens Hamisch.
21123      Branch: perl
21124            ! doio.c embed.h embed.pl perlsdio.h proto.h
21125 ____________________________________________________________________________
21126 [  7839] By: jhi                                   on 2000/11/23  16:54:14
21127         Log: Push Filter::Util::Call one level deeper.
21128      Branch: perl
21129            + t/lib/filter-util.t
21130           +> ext/Filter/Util/Call/Call.pm ext/Filter/Util/Call/Call.xs
21131           +> ext/Filter/Util/Call/Makefile.PL t/lib/filter-util.pl
21132            - ext/Filter/Util/Call.pm ext/Filter/Util/Call.xs
21133            - ext/Filter/Util/Makefile.PL t/lib/filt-util.pl
21134            - t/lib/filt-util.t
21135            ! MANIFEST configure.com hints/uwin.sh hints/vmesa.sh
21136            ! win32/Makefile win32/makefile.mk
21137 ____________________________________________________________________________
21138 [  7838] By: jhi                                   on 2000/11/23  16:52:40
21139         Log: Reach back one higher up when searching for PERL_SRC.
21140      Branch: perl
21141            ! lib/ExtUtils/MM_Unix.pm
21142 ____________________________________________________________________________
21143 [  7837] By: jhi                                   on 2000/11/23  16:05:41
21144         Log: Subject: Re: perl@7826
21145              Date: Thu, 23 Nov 2000 02:20:25 -0600
21146              From: "Craig A. Berry" <craigberry@mac.com>
21147              Message-Id: <p04330102b6424b6cd4c9@[172.16.52.1]>
21148              
21149              Make VMS to like Filter::Util::Call. 
21150      Branch: perl
21151            ! configure.com ext/Filter/Util/Makefile.PL
21152 ____________________________________________________________________________
21153 [  7836] By: nick                                  on 2000/11/23  16:04:08
21154         Log: Implement crlf layer - not ready for merge.
21155      Branch: perlio
21156            ! perlio.c win32/makefile.mk
21157 ____________________________________________________________________________
21158 [  7835] By: jhi                                   on 2000/11/23  15:56:52
21159         Log: STDCHAR is different in Sparc v9 vs x86.
21160      Branch: perl
21161            ! hints/solaris_2.sh
21162 ____________________________________________________________________________
21163 [  7834] By: jhi                                   on 2000/11/23  15:50:47
21164         Log: The type needs to be visible to protos.
21165      Branch: perl
21166            ! perl.h
21167 ____________________________________________________________________________
21168 [  7833] By: jhi                                   on 2000/11/23  15:40:46
21169         Log: Finish unfinished SOCKS workaround changes.
21170      Branch: perl
21171            ! doio.c
21172 ____________________________________________________________________________
21173 [  7832] By: jhi                                   on 2000/11/23  15:33:30
21174         Log: Integrate perlio.
21175      Branch: perl
21176           !> win32/config_H.bc win32/config_H.gc win32/config_H.vc
21177           !> win32/makefile.mk
21178 ____________________________________________________________________________
21179 [  7831] By: nick                                  on 2000/11/23  10:31:07
21180         Log: Correct makefile.mk dependancies for ext/Filter/Util
21181              Build ext/Encode
21182              Run dmake regen_config_h
21183      Branch: perlio
21184            ! win32/config_H.bc win32/config_H.gc win32/config_H.vc
21185            ! win32/makefile.mk
21186 ____________________________________________________________________________
21187 [  7830] By: nick                                  on 2000/11/23  08:05:07
21188         Log: Integrate mainline
21189      Branch: perlio
21190           +> ext/Filter/Util/Call.pm ext/Filter/Util/Call.xs
21191           +> ext/Filter/Util/Makefile.PL lib/Filter/Simple.pm
21192           +> t/lib/filt-util.pl t/lib/filt-util.t
21193           !> (integrate 41 files)
21194 ____________________________________________________________________________
21195 [  7829] By: gsar                                  on 2000/11/23  03:07:11
21196         Log: build the Filter extension on windows
21197      Branch: perl
21198            ! win32/Makefile win32/makefile.mk
21199 ____________________________________________________________________________
21200 [  7828] By: gsar                                  on 2000/11/23  02:46:35
21201         Log: regenerate win32/config* and fix some inconsistencies in the
21202              makefiles; always export Perl_deb() because it is needed
21203              by ext/re/* (whether perl itself is built with -DDEBUGGING
21204              or not)
21205      Branch: perl
21206            ! makedef.pl win32/Makefile win32/config_H.bc win32/config_H.gc
21207            ! win32/config_H.vc win32/makefile.mk
21208 ____________________________________________________________________________
21209 [  7827] By: gsar                                  on 2000/11/23  02:18:38
21210         Log: get sources building on windows+MSVC again (untested with other
21211              compilers)
21212      Branch: perl
21213            ! win32/include/sys/socket.h win32/perllib.c
21214 ____________________________________________________________________________
21215 [  7826] By: jhi                                   on 2000/11/23  01:18:26
21216         Log: Update Changes.
21217      Branch: perl
21218            ! Changes patchlevel.h
21219 ____________________________________________________________________________
21220 [  7825] By: jhi                                   on 2000/11/23  00:20:41
21221         Log: Subject: Re: av.c patch (having slight problems)
21222              From: "Ben Tilly" <ben_tilly@hotmail.com>
21223              Date: Tue, 21 Nov 2000 23:29:31 -0500
21224              Message-ID: <LAW2-F113pL32ctFfj800000d81@hotmail.com>
21225              
21226              unshift() speedup.
21227      Branch: perl
21228            ! av.c
21229 ____________________________________________________________________________
21230 [  7824] By: jhi                                   on 2000/11/22  23:59:15
21231         Log: Fixes for signedness warnings noticed by VMSperlers.
21232      Branch: perl
21233            ! ext/Storable/Storable.xs regcomp.c sv.c
21234 ____________________________________________________________________________
21235 [  7823] By: jhi                                   on 2000/11/22  23:19:31
21236         Log: Subject: [PATCH perl@7795] small cleanup task for test suite
21237              From: Peter Prymmer <pvhp@forte.com>
21238              Date: Wed, 22 Nov 2000 15:04:13 -0800 (PST)
21239              Message-ID: <Pine.OSF.4.10.10011221457530.519633-100000@aspara.forte.com>
21240      Branch: perl
21241            ! t/pragma/warn/pp_hot
21242 ____________________________________________________________________________
21243 [  7822] By: jhi                                   on 2000/11/22  22:52:20
21244         Log: Be clean.
21245      Branch: perl
21246            ! Makefile.SH
21247 ____________________________________________________________________________
21248 [  7821] By: jhi                                   on 2000/11/22  22:46:39
21249         Log: Add the simple frontend to Filter::Util:Call, Filter::Simple 0.01
21250              by Damian Conway, as suggested by Paul Marquess.
21251      Branch: perl
21252            + lib/Filter/Simple.pm
21253 ____________________________________________________________________________
21254 [  7820] By: jhi                                   on 2000/11/22  22:45:51
21255         Log: Add the Filter::Util::Call 1.04 by Paul Marquess from Filter-1.19.
21256      Branch: perl
21257            + ext/Filter/Util/Call.pm ext/Filter/Util/Call.xs
21258            + ext/Filter/Util/Makefile.PL t/lib/filt-util.pl
21259            + t/lib/filt-util.t
21260            ! MANIFEST
21261 ____________________________________________________________________________
21262 [  7819] By: jhi                                   on 2000/11/22  22:03:27
21263         Log: Integrate perlio.
21264      Branch: perl
21265           !> README.win32 perlio.c t/pragma/warnings.t win32/config_H.gc
21266           !> win32/makefile.mk
21267 ____________________________________________________________________________
21268 [  7818] By: jhi                                   on 2000/11/22  21:56:02
21269         Log: More SOCKS versus 64-bit patches from Jens Hamisch.
21270      Branch: perl
21271            ! doio.c embed.h embed.pl makedef.pl perl.h pp_sys.c proto.h
21272            ! t/lib/io_sock.t
21273 ____________________________________________________________________________
21274 [  7817] By: jhi                                   on 2000/11/22  21:39:49
21275         Log: Subject: [PATCH 5.7.0] Liblist returns found libraries
21276              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
21277              Date: Wed, 22 Nov 2000 16:08:12 -0500
21278              Message-ID: <20001122160812.A24269@monk.mps.ohio-state.edu>
21279      Branch: perl
21280            ! lib/ExtUtils/Liblist.pm
21281 ____________________________________________________________________________
21282 [  7816] By: jhi                                   on 2000/11/22  21:38:25
21283         Log: Go ahead and #include <unistd.h> in perl.h.
21284      Branch: perl
21285            ! doio.c malloc.c mg.c perl.h pp.c pp_hot.c pp_sys.c toke.c
21286            ! util.c
21287 ____________________________________________________________________________
21288 [  7815] By: jhi                                   on 2000/11/22  21:22:52
21289         Log: Subject: [PATCH 5.7.0] Overeager visited-positions optimizations
21290              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
21291              Date: Mon, 20 Nov 2000 18:30:52 -0500
21292              Message-ID: <20001120183051.A15228@monk.mps.ohio-state.edu>
21293      Branch: perl
21294            ! pod/perlre.pod regcomp.c t/op/re_tests
21295 ____________________________________________________________________________
21296 [  7814] By: jhi                                   on 2000/11/22  21:21:46
21297         Log: Subject: [PATCH 5.7.0] Liblist finally works
21298              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
21299              Date: Tue, 21 Nov 2000 22:02:17 -0500
21300              Message-ID: <20001121220217.A24174@monk.mps.ohio-state.edu>
21301      Branch: perl
21302            ! lib/ExtUtils/Liblist.pm lib/ExtUtils/MM_VMS.pm
21303            ! lib/ExtUtils/MakeMaker.pm
21304 ____________________________________________________________________________
21305 [  7813] By: jhi                                   on 2000/11/22  21:20:23
21306         Log: Subject: Re: [PATCH bleadperl] Re: Not OK: perl5.7.0 +DEVEL7706    +Duseperlio on AIX4.[23]
21307              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
21308              Date: Wed, 22 Nov 2000 17:53:15 +0100
21309              Message-Id: <20001122174544.49A2.H.M.BRAND@hccnet.nl>
21310              
21311              AIX dynaloader and perlio patch.
21312      Branch: perl
21313            ! ext/DynaLoader/dl_aix.xs
21314 ____________________________________________________________________________
21315 [  7812] By: jhi                                   on 2000/11/22  21:17:52
21316         Log: (Accidentally empty patch.)
21317      Branch: perl
21318            ! av.c
21319 ____________________________________________________________________________
21320 [  7811] By: jhi                                   on 2000/11/22  21:16:31
21321         Log: Subject: [PATCH: perl@7777] make VMS' test.com tail compatible w/ unix
21322              From: Peter Prymmer <pvhp@forte.com>
21323              Date: Mon, 20 Nov 2000 16:53:54 -0800 (PST)
21324              Message-ID: <Pine.OSF.4.10.10011201651050.373336-100000@aspara.forte.com>
21325      Branch: perl
21326            ! vms/test.com
21327 ____________________________________________________________________________
21328 [  7810] By: jhi                                   on 2000/11/22  21:15:36
21329         Log: Subject: Re: perl@7777 
21330              From: "John P. Linderman" <jpl@research.att.com>
21331              Date: Wed, 22 Nov 2000 13:11:11 -0500
21332              Message-Id: <200011221811.NAA90072@raptor.research.att.com>
21333              
21334              Detypoing.
21335      Branch: perl
21336            ! lib/CPAN.pm
21337 ____________________________________________________________________________
21338 [  7809] By: jhi                                   on 2000/11/22  21:14:19
21339         Log: Subject:  [PATCH perl@7795] Perlio_tell fix
21340              From: lane@DUPHY4.Physics.Drexel.Edu (Charles Lane)
21341              Date:     Wed, 22 Nov 2000 13:51:37 EST
21342              Message-Id: <001122135058.56e24@DUPHY4.Physics.Drexel.Edu>
21343      Branch: perl
21344            ! perlsdio.h
21345 ____________________________________________________________________________
21346 [  7808] By: jhi                                   on 2000/11/22  21:13:27
21347         Log: Subject: [ID 20001120.003] [PATCH] io_udp.t fails without 'localhost'
21348              From: Casey Tweten <crt@kiski.net>
21349              Date: Mon, 20 Nov 2000 11:53:03 -0500 (EST)
21350              Message-Id: <200011201653.LAA10194@home.kiski.net>
21351      Branch: perl
21352            ! t/lib/io_udp.t
21353 ____________________________________________________________________________
21354 [  7807] By: jhi                                   on 2000/11/22  21:12:35
21355         Log: Subject: [ID 20001120.002] [PATCH] io_sock.t fails without 'localhost'
21356              From: Casey Tweten <crt@kiski.net>
21357              Date: Mon, 20 Nov 2000 11:36:11 -0500 (EST)
21358              Message-Id: <200011201636.LAA07227@home.kiski.net>
21359      Branch: perl
21360            ! t/lib/io_sock.t
21361 ____________________________________________________________________________
21362 [  7806] By: jhi                                   on 2000/11/22  21:10:59
21363         Log: Subject: Re: [PATCH] Evolution of h2xs [WAS: Re: PATCH subs.pm]
21364              From: "Casey R. Tweten" <crt@kiski.net>
21365              Date: Wed, 22 Nov 2000 09:05:07 -0500 (EST)
21366              Message-ID: <Pine.OSF.4.21.0011220903580.1811-100000@home.kiski.net>
21367      Branch: perl
21368            ! utils/h2xs.PL
21369 ____________________________________________________________________________
21370 [  7805] By: nick                                  on 2000/11/22  21:05:06
21371         Log: Integrate mainline
21372      Branch: perlio
21373           !> Changes Porting/genlog ext/DB_File/DB_File.xs
21374           !> ext/DB_File/version.c lib/Test.pm patchlevel.h
21375           !> utils/perlbug.PL
21376 ____________________________________________________________________________
21377 [  7804] By: jhi                                   on 2000/11/22  21:01:12
21378         Log: Subject: [PATCH] Test.pm POD peculiarity
21379              From: "Casey R. Tweten" <crt@kiski.net>
21380              Date: Tue, 21 Nov 2000 15:01:25 -0500 (EST)
21381              Message-ID: <Pine.OSF.4.21.0011211458020.20114-100000@home.kiski.net>
21382      Branch: perl
21383            ! lib/Test.pm
21384 ____________________________________________________________________________
21385 [  7803] By: jhi                                   on 2000/11/22  20:59:59
21386         Log: Subject: [ID 20001122.002] [PATCH 5.7.0@7795] two small patches to perlbug
21387              From: "Philip Newton" <pnewton@gmx.de>
21388              Date: Wed, 22 Nov 2000 14:25:53 +0100
21389              Message-Id: <3A1BD771.25462.1939FAD@localhost>
21390              
21391              Be case-understanding also on 's', and use the -oi of sendmail
21392              not to terminate the transmission on a lone '.'.
21393      Branch: perl
21394            ! utils/perlbug.PL
21395 ____________________________________________________________________________
21396 [  7802] By: nick                                  on 2000/11/22  20:51:42
21397         Log: Win32 PerlIO intermediate state now working as expected.
21398              - In current state we are still using C runtime in text/binary
21399              mode and "crlf" layer is just a dummy (clone of perlio buffer layer).
21400              - PERLIO=stdio and PERLIO=unix pass all expected tests.
21401              - PERLIO=perlio fails t/lib/dprof.t because Dprof.xs calls PerlIO_tell()
21402              and PerlIO_seek() and the dummy crlf layer is not making adjustments
21403              for CRLF translation happening in C runtime. All other tests pass.
21404              
21405              Added note to README.win32 to point out the snags of doing a perl build
21406              with Norton AntiVirus turned on.
21407              
21408              Tweaked t/pragma/warnings.t so that when run stand-alone you can tell
21409              which file a fail comes from.
21410              
21411              Updated "canned" config.h to match the one generated.
21412      Branch: perlio
21413            ! README.win32 perlio.c t/pragma/warnings.t win32/config_H.gc
21414            ! win32/makefile.mk
21415 ____________________________________________________________________________
21416 [  7801] By: jhi                                   on 2000/11/22  06:50:20
21417         Log: Nickety nits.
21418      Branch: perl
21419            ! ext/DB_File/DB_File.xs ext/DB_File/version.c
21420 ____________________________________________________________________________
21421 [  7800] By: jhi                                   on 2000/11/22  01:29:55
21422         Log: Changes had accidentally gone too silent on non-main branches.
21423      Branch: perl
21424            ! Changes Porting/genlog patchlevel.h
21425 ____________________________________________________________________________
21426 [  7799] By: gsar                                  on 2000/11/22  01:02:56
21427         Log: some lib_pm.PL changes snuck in via change#7772
21428      Branch: maint-5.6/perl
21429            ! Makefile.SH
21430 ____________________________________________________________________________
21431 [  7798] By: nick                                  on 2000/11/21  21:59:40
21432         Log: Integrate mainline
21433      Branch: perlio
21434           !> (integrate 28 files)
21435 ____________________________________________________________________________
21436 [  7797] By: jhi                                   on 2000/11/21  21:01:45
21437         Log: Integrate perlio.
21438      Branch: perl
21439           !> doio.c perlio.c perlio.h win32/perllib.c win32/win32.c
21440 ____________________________________________________________________________
21441 [  7796] By: nick                                  on 2000/11/21  20:36:22
21442         Log: Win32 builds and runs (mostly) with USE_PERLIO.
21443              PERLIO=perlio passes all tests. 
21444              PERLIO=stdio (sadly the default) hangs in t.pragma/warnings.t #319
21445      Branch: perlio
21446            ! perlio.c win32/perllib.c win32/win32.c
21447 ____________________________________________________________________________
21448 [  7795] By: jhi                                   on 2000/11/21  19:03:44
21449         Log: Update Changes.
21450      Branch: perl
21451            ! Changes patchlevel.h
21452 ____________________________________________________________________________
21453 [  7794] By: jhi                                   on 2000/11/21  18:56:34
21454         Log: Subject: PerlIO_apply_layers prototype (was Re: [PATCH: perl@7777] add system locale testing for VMS)
21455              From: "Craig A. Berry" <craigberry@mac.com>
21456              Date: Mon, 20 Nov 2000 20:27:06 -0600
21457              Message-Id: <p04330101b63f8baf25a2@[172.16.52.1]>
21458              
21459              A cut-and-pasto.
21460      Branch: perl
21461            ! perlio.h
21462 ____________________________________________________________________________
21463 [  7793] By: jhi                                   on 2000/11/21  18:54:41
21464         Log: Subject: [PATCH bleadperl] Re: Not OK: perl5.7.0 +DEVEL7706 +Duseperlio on AIX4.[23]
21465              From: Dominic Dunlop <domo@computer.org> 
21466              Date: Mon, 20 Nov 2000 18:55:29 +0100
21467              Message-Id: <p04320403b63b2c750dce@[192.168.1.4]> 
21468              
21469              va_copy() and the need of it.
21470              See <http://wwwold.dkuug.dk/JTC1/SC22/WG14/www/docs/n907.ps>.
21471      Branch: metaconfig/U/perl
21472            + need_va_copy.U
21473      Branch: perl
21474            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
21475            ! config_h.SH configure.com epoc/config.sh handy.h perlio.c
21476            ! pod/perltoc.pod uconfig.h uconfig.sh vos/config.alpha.def
21477            ! vos/config.alpha.h vos/config.ga.def vos/config.ga.h
21478            ! win32/config.bc win32/config.gc win32/config.vc
21479 ____________________________________________________________________________
21480 [  7792] By: jhi                                   on 2000/11/21  17:04:10
21481         Log: Integrate scope.h@7790 from perlio, works better with multiplicity.
21482      Branch: perl
21483           !> scope.h
21484 ____________________________________________________________________________
21485 [  7791] By: jhi                                   on 2000/11/21  17:01:16
21486         Log: Export the SOCKS workaround symbols only if necessary.
21487      Branch: perl
21488            ! doio.c embed.h embed.pl makedef.pl perlsdio.h proto.h
21489 ____________________________________________________________________________
21490 [  7790] By: nick                                  on 2000/11/20  23:57:11
21491         Log: If we use (aTHX_ ...) then put Perl_ on the front. (Or drop the aTHX_).
21492      Branch: perlio
21493            ! scope.h
21494 ____________________________________________________________________________
21495 [  7789] By: nick                                  on 2000/11/20  23:38:33
21496         Log: Integrate mainline
21497      Branch: perlio
21498           +> lib/File/Spec/Epoc.pm
21499           !> (integrate 34 files)
21500 ____________________________________________________________________________
21501 [  7788] By: nick                                  on 2000/11/20  23:20:18
21502         Log: Make extra buffer layer work (dummy crlf layer)
21503      Branch: perlio
21504            ! doio.c perlio.c perlio.h
21505 ____________________________________________________________________________
21506 [  7787] By: jhi                                   on 2000/11/20  22:44:04
21507         Log: Subject: [PATCH: perl@7777] add system locale testing for VMS
21508              From: Peter Prymmer <pvhp@forte.com>
21509              Date: Mon, 20 Nov 2000 12:56:52 -0800 (PST)
21510              Message-ID: <Pine.OSF.4.10.10011201244390.376086-100000@aspara.forte.com>
21511      Branch: perl
21512            ! t/pragma/locale.t
21513 ____________________________________________________________________________
21514 [  7786] By: jhi                                   on 2000/11/20  22:29:10
21515         Log: Subject: DOC PATCH 5.6.0 perlreftut
21516              From: mjd@plover.com
21517              Date: 20 Nov 2000 19:45:06 -0000
21518              Message-ID: <20001120194506.9505.qmail@plover.com>
21519      Branch: perl
21520            ! pod/perlreftut.pod
21521 ____________________________________________________________________________
21522 [  7785] By: jhi                                   on 2000/11/20  22:27:44
21523         Log: Subject: [ID 20001120.010] typo in lib/Cwd.pm broke Cwd::chdir
21524              From: David Dyck <dcd@tc.fluke.com>
21525              Date: Mon, 20 Nov 2000 11:43:40 -0800
21526              Message-Id: <200011201943.LAA08451@dd.tc.fluke.com>
21527      Branch: perl
21528            ! lib/Cwd.pm
21529 ____________________________________________________________________________
21530 [  7784] By: jhi                                   on 2000/11/20  22:23:21
21531         Log: Subject: [PATCH 5.7.0] lexicals not recognized in a run-time (?{})
21532              Date: Mon, 20 Nov 2000 17:06:10 -0500
21533              To: Mailing list Perl5 <perl5-porters@perl.org>
21534              Message-ID: <20001120170609.A11780@monk.mps.ohio-state.edu>
21535      Branch: perl
21536            ! pp_ctl.c t/op/pat.t
21537 ____________________________________________________________________________
21538 [  7783] By: jhi                                   on 2000/11/20  22:11:18
21539         Log: Subject: [PATCH] doop.c - UTF8 tr///               
21540              From: Simon Cozens <simon@cozens.net>
21541              Date: Sat, 18 Nov 2000 18:49:30 +0000
21542              Message-ID: <20001118184930.A31687@pembro4.pmb.ox.ac.uk>
21543              
21544              Subject: Re: [PATCH] doop.c - UTF8 tr///           
21545              From: Simon Cozens <simon@cozens.net>
21546              Date: Mon, 20 Nov 2000 20:45:22 +0000
21547              Message-ID: <20001120204522.A26042@pembro4.pmb.ox.ac.uk>
21548              
21549              Make tr on UTF-8 better but still not correct.
21550      Branch: perl
21551            ! doop.c
21552 ____________________________________________________________________________
21553 [  7782] By: jhi                                   on 2000/11/20  22:02:16
21554         Log: Remove the shared object before attempting to create
21555              (by linking) a new one.  E.g. in AIX not removing
21556              becomes quite painful if one tries to do more than one
21557              build in the same tree (an interrupted build, for example),
21558              since the AIX' shared dynaloader seemingly keeps the shared
21559              objects open and therefore 'busy' for quite a while, even when
21560              nobody is using the objects, leading into link failures.
21561      Branch: perl
21562            ! lib/ExtUtils/MM_Unix.pm
21563 ____________________________________________________________________________
21564 [  7781] By: gsar                                  on 2000/11/20  19:02:55
21565         Log: type mismatch due to faulty integration
21566      Branch: maint-5.6/perl
21567            ! toke.c win32/Makefile
21568 ____________________________________________________________________________
21569 [  7780] By: gsar                                  on 2000/11/20  17:31:55
21570         Log: integrate changes#6392,6394..6399,6401..6404
21571              
21572              The {multiplier} of a fixed substring was overlooked which
21573              caused a wrong initial search offset for that substring.
21574              
21575              Subject: [PATCH 5.6.0] Re: [ID 20000613.001] Regex works in v5.005_03 but fails in v5.06
21576              From: Hugo <hv@crypt.compulink.co.uk>
21577              Message-Id: <200007131827.TAA14487@crypt.compulink.co.uk>
21578              Date: Thu, 13 Jul 2000 19:27:13 +0100
21579              
21580              Fix the BOM bug: not a byteorder bug, a signedness bug.
21581              
21582              Replace change #6337 with a better one.
21583              
21584              Subject: Re: [PATCH] [ID 20000701.002] Regular Expressions Not Unsetting $1 Vars When Backtracking
21585              From: Hugo <hv@crypt.compulink.co.uk>
21586              Date: Fri, 14 Jul 2000 04:16:20 +0100
21587              Message-Id: <200007140316.EAA15857@crypt.compulink.co.uk>
21588              
21589              MakeMaker should not remove editor backups (*~) on `make clean`
21590              by default (completes change#6383)
21591              
21592              move new variables to the end of the interpreter structure (for
21593              bincompat in code that doesn't #include XSUB.h)
21594              
21595              rename totally bletcherous SvLOCK() thingy (doesn't do what the
21596              name suggests anyway)
21597              
21598              various cleanups (typos, misformatted code, and small bugs)
21599              
21600              typecasts needed for change#6394
21601              
21602              typos in change#6399, regen headers
21603              
21604              inconsistent types needs casts
21605              
21606              PERL_OBJECT build tweaks
21607      Branch: maint-5.6/perl
21608           !> MANIFEST doop.c embed.h embed.pl embedvar.h
21609           !> ext/IPC/SysV/Makefile.PL global.sym intrpvar.h
21610           !> lib/ExtUtils/MM_Unix.pm mg.c op.c perlapi.h pod/perlapi.pod
21611           !> pp.c proto.h regcomp.c regexec.c sv.h t/op/re_tests thread.h
21612           !> toke.c util.c
21613 ____________________________________________________________________________
21614 [  7779] By: gsar                                  on 2000/11/20  17:06:29
21615         Log: integrate changes#6376..6378,6380,6383,6385..6388,6391
21616              
21617              Cosmetics and perldelta.
21618              
21619              Fix nits noticed by Boston.pm.
21620              
21621              Do the cc sanity check both before the hints and
21622              after the cc selction.
21623              
21624              get sprintf.t to adjust properly for 3-digit exponents
21625              
21626              don't clobber *.orig files on *clean targets
21627              
21628              fix bugs in processing %v-*d and similar format specs (from
21629              Avi Finkel <avi@finkel.org>)
21630              
21631              sprintf test tweaks (from Dominic Dunlop)
21632              
21633              new selfloader.t in change#6183 doesn't close DATA handles,
21634              and thus fails to clean up tmp files on dosish platforms
21635              
21636              typos (spotted by Peter Prymmer)
21637              
21638              typo fix from Craig Berry
21639      Branch: maint-5.6/perl
21640           !> Configure Makefile.SH config_h.SH ext/IPC/SysV/Makefile.PL
21641           !> pod/perldelta.pod pod/perlre.pod sv.c t/lib/english.t
21642           !> t/lib/selfloader.t t/op/sprintf.t vms/subconfigure.com
21643           !> x2p/Makefile.SH
21644 ____________________________________________________________________________
21645 [  7778] By: gsar                                  on 2000/11/20  16:46:51
21646         Log: integrate changes#6340..6342,6348,6354,6356,6357,6371,6372,6375
21647              
21648              Subject: Re: format bug report  [Patch]
21649              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
21650              Date: Wed, 05 Jul 2000 13:12:52 +0200
21651              Message-Id: <20000705130745.67BF.H.M.BRAND@hccnet.nl>
21652              
21653              Subject: Re: format bug report  [Patch]
21654              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
21655              Date: Wed, 05 Jul 2000 14:10:01 +0200
21656              Message-Id: <20000705140837.73C2.H.M.BRAND@hccnet.nl>
21657              
21658              Subject: Re: [ID 20000704.002] [PATCH] memory leak with debug / anon subs
21659              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
21660              Message-Id: <E13AbRE-00009T-00@libra.cus.cam.ac.uk>
21661              Date: Fri, 07 Jul 2000 17:57:16 +0100
21662              
21663              Subject: [ID 20000710.002] fatal error or memory loss when deleting symbols in evaled code with syntax errors
21664              To: perl5-porters@perl.org
21665              From: Karsten Sperling <spiff@phreax.net>
21666              Date: Mon, 10 Jul 2000 15:12:52 +0200
21667              Message-Id: <200007101315.e6ADFrg21041@chthon.perl.com>
21668              
21669              README.posix-bc podified from Thomas Dorner.
21670              
21671              Subject: [PATCH perl-current] Make op/sprintf.t more comprehensive, take2
21672              From: Dominic Dunlop <domo@computer.org>
21673              Date: Tue, 11 Jul 2000 12:27:33 +0200
21674              Message-Id: <p04320405b590a14d4650@[192.168.1.4]>
21675              
21676              Typo in #6341.
21677              
21678              Fix for
21679              Subject: [ID 20000711.005] spurious uninit warning with msgrcv()
21680              From: Roderick Schertler <roderick@argon.org>
21681              Date: Tue, 11 Jul 2000 13:55:05 -0400
21682              Message-Id: <200007111755.NAA05077@jones.argon.org>
21683              
21684              Minor cleanups on the booklist.
21685              
21686              Reintroduce perlbook (updated for Mk III), introduce perlposix-bc,
21687              regen perltoc.
21688              
21689              windows build tweaks (op/sprintf.t still fails tests 120-121, 149)
21690      Branch: maint-5.6/perl
21691           +> pod/perlbook.pod
21692           !> MANIFEST README.posix-bc doio.c lib/Symbol.pm pod/Makefile.SH
21693           !> pod/buildtoc.PL pod/perl.pod pod/perlfaq2.pod pod/perltoc.pod
21694           !> pp_hot.c t/op/sprintf.t t/op/write.t toke.c win32/win32sck.c
21695 ____________________________________________________________________________
21696 [  7777] By: jhi                                   on 2000/11/20  16:08:49
21697         Log: Update Changes.
21698      Branch: perl
21699            ! Changes patchlevel.h
21700 ____________________________________________________________________________
21701 [  7776] By: jhi                                   on 2000/11/20  15:27:56
21702         Log: Assume SOCKS is broken in all 64bitall platforms, not just Solaris.
21703              This may be overly harsh but until proven otherwise, we think this
21704              way, or until we have a simple test for Configure (having to start
21705              up servers is does not count as simple) to check for the problems.
21706      Branch: perl
21707            ! perl.h
21708 ____________________________________________________________________________
21709 [  7775] By: jhi                                   on 2000/11/20  15:22:17
21710         Log: Solaris hints tweaks.
21711      Branch: perl
21712            ! hints/solaris_2.sh
21713 ____________________________________________________________________________
21714 [  7774] By: jhi                                   on 2000/11/20  15:01:20
21715         Log: Add a workaround to SOCKS 64-bit problems.
21716      Branch: perl
21717            ! doio.c embed.h embed.pl perlsdio.h proto.h
21718 ____________________________________________________________________________
21719 [  7773] By: jhi                                   on 2000/11/20  14:51:47
21720         Log: sysseek() instead of seek().
21721      Branch: perl
21722            ! t/lib/syslfs.t
21723 ____________________________________________________________________________
21724 [  7772] By: gsar                                  on 2000/11/20  13:06:23
21725         Log: integrate changes#6315..6319,6321..6331,6333..6338
21726              
21727              Integrate with Sarathy, preliminary fix for unicos
21728              alignment problems in [ID 20000612.002] Perl problem on Cray system.
21729              
21730              some debugger output does not go to the socket when RemotePort is set
21731              
21732              winsock cleanup never done on Windows (leads to handle leaks)
21733              
21734              fix UNC path handling on Windows under ithreads, and chdir()
21735              return value when given a non-existent directory
21736              
21737              Autogenerate pod/Makefile and pod/buildtoc.
21738              buildtoc also checks whether the existin pods are
21739              mentioned in MANIFEST and perl.pod, and vice versa.
21740              (None of the thusly found discrepancies fixed yet.)
21741              roffitall also needs to be autogenerated similarly but it
21742              seems so badly out of date that I didn't touch it yet.
21743              
21744              Config is being used.
21745              
21746              Add =head1 NAMEs so that buildtoc is happy.
21747              (The CGI::Util nit reported to Lincoln.)
21748              
21749              Fix complaints of buildtoc.
21750              
21751              Fix the alignment problem in Crays ([ID 20000612.002]).
21752              
21753              Remove perlbook, update perlfaq book listing,
21754              rearrange perl.pod, regenerate perltoc.
21755              
21756              Fix a nit spotted by 64bit IRIX compilation: a (64-bit) pointer
21757              was cast to an unsigned (32-bit) integer with wild abandon.
21758              
21759              winsock options weren't being set in all threads under ithreads
21760              (caused send()s from second and subsequent threads to fail)
21761              
21762              accept() leaks memory on windows due to incorrect ordering of
21763              closesocket() and fclose() calls
21764              
21765              Reorder perl.pod once more.
21766              
21767              More POSIX.pod tweaks.
21768              
21769              Sprinkle ldlibpath.
21770              
21771              Precedence goof, fix based on
21772              Subject: [PATCH 5.6.0] op/taint.t continues on failed shmget()
21773              From: Hugo <hv@crypt.compulink.co.uk>
21774              Date: Tue, 11 Jul 2000 12:52:38 +0100
21775              Message-Id: <200007111152.MAA05488@crypt.compulink.co.uk>
21776              
21777              Subject: PATCH perlguts.pod: Document D and d magic types
21778              From: mjd@plover.com
21779              Date: 5 Jul 2000 18:01:51 -0000
21780              Message-ID: <20000705180151.29413.qmail@plover.com>
21781              
21782              Subject: [ID 20000705.002] problem with perl 5.6.0 on NetBSD/sparc
21783              From: Hubert Feyrer <feyrer@rfhs8012.fh-regensburg.de>
21784              Date: Wed, 5 Jul 2000 14:56:43 +0200 (MET DST)
21785              Message-Id: <Pine.GSO.4.10.10007051452330.29215-100000@rfhpc8320.fh-regensburg.de>
21786              
21787              Subject: [PATCH cfgperl] $& segfaults if you trick it
21788              From: simon@brecon.co.uk (Simon Cozens)
21789              Date: 7 Jul 2000 11:26:09 GMT
21790              Message-ID: <slrn8mbfif.ead.simon@justanother.perlhacker.org>
21791              
21792              Subject: [PATCH] [ID 20000701.002] Regular Expressions Not Unsetting $1 Vars When Backtracking
21793              From: Hugo <hv@crypt.compulink.co.uk>
21794              Date: Tue, 11 Jul 2000 12:44:50 +0100
21795              Message-Id: <200007111144.MAA04446@crypt.compulink.co.uk>
21796              
21797              Subject: [PATCH] Re: "%#p" format specifier: document and test or not?
21798              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
21799              Date: Tue, 11 Jul 2000 13:50:51 +0100
21800              Message-Id: <E13BzUx-00033c-00@libra.cus.cam.ac.uk>
21801      Branch: maint-5.6/perl
21802           +> ext/DynaLoader/hints/netbsd.pl lib/Win32.pod pod/Makefile.SH
21803           +> pod/buildtoc.PL
21804            - pod/Makefile pod/Win32.pod pod/buildtoc pod/perlbook.pod
21805           !> (integrate 26 files)
21806 ____________________________________________________________________________
21807 [  7771] By: gsar                                  on 2000/11/20  12:31:42
21808         Log: integrate changes#6283..6285,6291,6294..6300,6302..6304,6306..6307,
21809              6310,6311,6314
21810              
21811              Subject: [PATCH bleedperl] File::Spec 0.82 beta
21812              From: Barrie Slaymaker <barries@jester.slaysys.com>
21813              Date: Wed, 28 Jun 2000 11:35:29 -0400
21814              Message-Id: <200006281535.LAA21095@jester.slaysys.com>
21815              
21816              tweak perlembed for multiplicity/usethreads sanity; correct notes
21817              about Windows
21818              
21819              localize %INC in a Safe compartment so that use/require work
21820              (many other magic globals probably need similar treatment)
21821              
21822              dounwind() may cause POPSUB() to diddle the wrong PL_curpad
21823              when @_ is modified, causing coredumps
21824              
21825              slurp mode fix in change#4736 still not quite right
21826              
21827              Point to perlipc for more SysV IPC examples.
21828              
21829              Elaborate POSIX.pod.  Still needs work.
21830              
21831              fix ~320 byte memory leak (psig_{ptr,name} tables were never freed)
21832              
21833              fix large memory leak that has been around for ever, masked by
21834              -DPURIFY (most of the arenas were never freed!)
21835              
21836              fix memory leak on Windows (PL_sys_intern contents were never
21837              freed)
21838              
21839              PERL_OBJECT build tweak
21840              
21841              adjust change#6299
21842              
21843              remove rel2abs prototypes (from Barrie Slaymaker)
21844              
21845              missing perldiag entry for unpack("w",...) diagnostic (from
21846              Andreas Koenig)
21847              
21848              better diagnostic on Frob->stuff() when Frob:: doesn't exist
21849              (from Richard Soderberg <rs@oregonnet.com>)
21850              
21851              Win32 patches for cfgperl from Sarathy.
21852              
21853              b.t fails under OS/2 (from Yitzchak Scott-Thoennes)
21854              
21855              More POSIX.pod embellishment.
21856              
21857              tyop in change#6306
21858      Branch: maint-5.6/perl
21859           !> (integrate 44 files)
21860 ____________________________________________________________________________
21861 [  7770] By: gsar                                  on 2000/11/20  11:51:00
21862         Log: integrate changes#6268..6282 from cfgperl branch
21863              
21864              Subject: [PATCH perl-current] Make op/sprintf.t more comprehensive
21865              From: Dominic Dunlop <domo@computer.org>
21866              Date: Thu, 29 Jun 2000 12:32:39 +0200
21867              Message-Id: <p04320403b580cc1338db@[192.168.1.4]>
21868              
21869              Regen headers for #6261 (and update embed.pl for this) and #6267,
21870              silence few compiler warnings.
21871              
21872              Subject: PATCH (Re: [ID 20000612.004] Should regression tests fail if user doesn't build XS extensions?)
21873              From: Nicholas Clark <nick@talking.bollo.cx>
21874              Date: Fri, 23 Jun 2000 16:21:15 +0100
21875              Message-ID: <20000623162115.A19894@Bagpuss.unfortu.net>
21876              
21877              Subject: PATCH pod/perltie.pod
21878              From: Ian Phillipps <Ian.Phillipps@iname.com>
21879              Date: Fri, 16 Jun 2000 00:17:19 +0100
21880              Message-ID: <20000616001719.A17108@homer.diplex.co.uk>
21881              (only the first hunk, the second hunk had already been done
21882              by some other patch)
21883              
21884              Subject: [ID 20000614.005] [patch] Tweak to Net::Ping docs
21885              From: Tom Phoenix <rootbeer@redcat.com>
21886              Received: (qmail 6398 invoked by uid 508); 15 Jun 2000 00:30:54 -0000
21887              Date: Wed, 14 Jun 2000 17:30:37 -0700 (PDT)
21888              
21889              Subject: [PATCH] xsub attributes
21890              From: Doug MacEachern <dougm@covalent.net>
21891              Date: Wed, 14 Jun 2000 15:09:22 -0700 (PDT)
21892              Message-ID: <Pine.LNX.4.10.10006141456050.340-100000@mojo.covalent.net>
21893              
21894              Subject: [ID 20000614.003] 5.6.0 File/Glob.pm incompatibility
21895              From: Andy Dougherty <doughera@lafayette.edu>
21896              Date: Wed, 14 Jun 2000 13:33:32 -0400 (EDT)
21897              Message-Id: <Pine.SOL.4.10.10006141332220.3643-100000@maxwell.phys.lafayette.edu>
21898              
21899              Subject: [PATCH] 5.6.0 lib/Pod/{Html,Man,Text}.pm
21900              From: "Daniel S. Lewart" <d-lewart@uiuc.edu>
21901              Date: Tue, 13 Jun 2000 02:43:48 -0500
21902              Message-ID: <20000613024347.A28388@staff2.cso.uiuc.edu>
21903              
21904              Subject: [PATCH] Re: eval documentation: context
21905              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
21906              Date: Mon, 12 Jun 2000 15:07:29 +0100
21907              Message-Id: <E131UsD-0002ke-00@ursa.cus.cam.ac.uk>
21908              
21909              Subject: [PATCH] Re: [ID 20000612.001] map {chop; $_} (Literals problem)
21910              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
21911              Date: Mon, 12 Jun 2000 14:55:59 +0100
21912              Message-Id: <E131Uh5-0002cj-00@ursa.cus.cam.ac.uk>
21913              
21914              Subject: [ID 20000609.002] Text::Wrap::wrap does not handle multiline strings properly
21915              From: "Milton L. Hankins" <mlh@swl.msd.ray.com>
21916              Date: Fri, 09 Jun 2000 12:39:27 -0400
21917              Message-Id: <39411DBF.A04BB1A@swl.msd.ray.com>
21918              (plus update the version "number" of Text::Wrap)
21919              
21920              Subject: [ID 20000602.002] [PATCH] perlsub.pod: ambiguous usage of "closure"
21921              From: Tim Ayers <tayers@bridge.com>
21922              Date: Thu, 08 Jun 2000 08:11:06 +0200
21923              Message-id: <393F38FA.9B5F4C7D@m.dasa.de>
21924              [resent by Richard Foley, Message-Id probably wrong]
21925              
21926              Subject: Re: backwards compatibility in h2xs and makemaker  [PATCH]
21927              From: rspier@pobox.com (Robert Spier)
21928              Date: Wed, 7 Jun 2000 12:47:37 -0400 (EDT)
21929              Message-ID: <14654.31913.845602.610277@rls.cx>
21930              
21931              Subject: [PATCH 5.6.0] utils/h2xs.PL
21932              From: "Daniel S. Lewart" <d-lewart@uiuc.edu>
21933              Date: Wed, 7 Jun 2000 04:02:04 -0500
21934              Message-ID: <20000607040201.A22568@staff1.cso.uiuc.edu>
21935              
21936              Subject: [PATCH 5.6.0]ITHREADs for VMS
21937              From: Dan Sugalski <dan@sidhe.org>
21938              Date: Tue, 06 Jun 2000 11:59:50 -0400
21939              Message-Id: <4.3.2.7.0.20000606115752.01c82220@24.8.96.48>
21940      Branch: maint-5.6/perl
21941           !> (integrate 31 files)
21942 ____________________________________________________________________________
21943 [  7769] By: gsar                                  on 2000/11/20  11:29:06
21944         Log: integrate changes#6261..6266 from cfgperl
21945              
21946              Subject: Re: [PATCH cfgperl] BOMs away!
21947              From: simon@brecon.co.uk (Simon Cozens)
21948              Date: 17 Jun 2000 11:49:57 GMT
21949              Message-ID: <slrn8kmpf5.8pl.simon@justanother.perlhacker.org>
21950              
21951              Subject: 5.6.0 Patch for EPOC
21952              From: Olaf Flebbe <o.flebbe@gmx.de>
21953              Date: Tue, 13 Jun 2000 22:59:29 +0200 (MEST)
21954              Message-ID: <23449.960929969@www11.gmx.net>
21955              
21956              tr fixes from Simon Cozens
21957              
21958              Subject: [ID 20000628.004] Re: Problem compiling perl? [BSDI-Support-Request #71232]
21959              From: Marty Lucich <marty@netcom.com>
21960              Date: Wed, 28 Jun 2000 14:16:05 -0700 (PDT)
21961              Message-Id: <200006282116.OAA11148@netcom.com>
21962              ccdlflags update (the BSD/OS 4.1 part had already been taken
21963              care of by #6141).
21964              
21965              Subject: Re: [ID 20000628.006] POSIX::STRERR_FILENO typo
21966              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
21967              Date: Wed, 28 Jun 2000 17:50:12 -0700
21968              Message-ID: <E1pW5gzkg2kV092yn@efn.org>
21969              
21970              Subject: [PATCH 5.6.0] cygwin port
21971              Message-ID: <779F20BCCE5AD31186A50008C75D997917173C@silldn_mail1.sanwaint.com>
21972              From: "Fifer, Eric" <EFifer@sanwaint.com>
21973              Date: Thu, 29 Jun 2000 12:58:29 +0100
21974      Branch: maint-5.6/perl
21975           !> README.epoc cygwin/Makefile.SHs doop.c epoc/config.sh
21976           !> epoc/createpkg.pl epoc/epocish.c epoc/epocish.h
21977           !> ext/POSIX/POSIX.pm ext/POSIX/POSIX.pod ext/POSIX/POSIX.xs
21978           !> hints/bsdos.sh pod/perldiag.pod t/comp/require.t toke.c
21979 ____________________________________________________________________________
21980 [  7768] By: gsar                                  on 2000/11/20  11:13:44
21981         Log: integrate changes#6252..6256,6259..6260
21982              
21983              Paranoia tweak on #6249.
21984              Subject: Re: [PATCH 5.6.0 IPC/Open3.pm] Allow the use of numeric fd's
21985              From: Ronald J Kimball <rjk@linguist.dartmouth.edu>
21986              Date: Sun, 25 Jun 2000 23:43:12 -0400
21987              Message-ID: <20000625234312.B74147@linguist.dartmouth.edu>
21988              
21989              Subject: tr///, help wanted.
21990              From: simon@brecon.co.uk (Simon Cozens)
21991              Date: 28 Jun 2000 11:29:04 GMT
21992              Message-ID: <slrn8ljoc0.fbd.simon@justanother.perlhacker.org>
21993              
21994              small thinko tweaks
21995              
21996              tweaks from Simon Conzes to further fix tr/// under utf8
21997              
21998              perlnewmod was missing from MANIFEST.
21999              
22000              Subject: Re: [PATCH] pack('U',$foo) doesn't UTF8
22001              From: simon@brecon.co.uk (Simon Cozens)
22002              Date: 17 Jun 2000 11:56:44 GMT
22003              Message-ID: <slrn8kmprs.8pl.simon@justanother.perlhacker.org>
22004              pack U0, pack C0
22005      Branch: maint-5.6/perl
22006           !> MANIFEST doop.c embed.h embed.pl embedvar.h global.sym
22007           !> lib/Exporter.pm lib/IPC/Open3.pm objXSUB.h op.c
22008           !> pod/perlfunc.pod pp.c pp_proto.h proto.h sv.c t/op/my_stash.t
22009           !> t/op/pack.t t/op/tr.t t/pragma/constant.t t/pragma/warn/op
22010 ____________________________________________________________________________
22011 [  7767] By: gsar                                  on 2000/11/20  10:51:38
22012         Log: integrate change#6250 from cfgperl
22013              
22014              Subject: Re: [PATCH] support 'my __PACKAGE__ $obj = ...'
22015              From: Doug MacEachern <dougm@covalent.net>
22016              Date: Tue, 27 Jun 2000 14:17:28 -0700 (PDT)
22017              Message-ID: <Pine.LNX.4.10.10006271412340.7587-100000@mojo.covalent.net>
22018      Branch: maint-5.6/perl
22019           +> t/op/my_stash.t
22020           !> MANIFEST embed.pl global.sym proto.h toke.c
22021 ____________________________________________________________________________
22022 [  7766] By: gsar                                  on 2000/11/20  10:48:34
22023         Log: integrate changes#6240,6242..6246,6248,6249 from cfgperl
22024              
22025              Subject: [ID 20000626.007] h2xs man page contains trailing garbage
22026              From: Nicholas Clark <nick@Bagpuss.unfortu.net>
22027              Date: Mon, 26 Jun 2000 18:40:14 +0100
22028              Message-Id: <200006261740.SAA02740@Bagpuss.unfortu.net>
22029              
22030              Subject: [PATCH] bytes<->utf8 fixes
22031              From: simon@brecon.co.uk (Simon Cozens)
22032              Date: 26 Jun 2000 04:55:45 GMT
22033              Message-ID: <slrn8ldoih.fbd.simon@justanother.perlhacker.org>
22034              
22035              Subject: [PATCH] is_utf8_string
22036              From: simon@brecon.co.uk (Simon Cozens)
22037              Date: 26 Jun 2000 02:25:59 GMT
22038              Message-ID: <slrn8ldfpn.h5k.simon@justanother.perlhacker.org>
22039              
22040              Subject: [PATCH] avoid mg_ptr in '*' magic
22041              From: Doug MacEachern <dougm@covalent.net>
22042              Date: Sun, 25 Jun 2000 11:16:08 -0700 (PDT)
22043              Message-ID: <Pine.LNX.4.10.10006251045190.461-100000@mojo.covalent.net>
22044              
22045              Subject: [ID 20000624.001] PERL_DL_DEBUG=1 DynaLoader message appears to be wrong
22046              From: Nicholas Clark <nick@Bagpuss.unfortu.net>
22047              Date: Sat, 24 Jun 2000 13:06:20 +0100
22048              Message-Id: <200006241206.NAA03771@Bagpuss.unfortu.net>
22049              
22050              Allow for standalone testing.
22051              
22052              Subject: DOC PATCH 5.6.0: perlfunc/sprintf does not contain an example
22053              From: Mark-Jason Dominus <mjd@plover.com>
22054              Date: Tue, 27 Jun 2000 22:36:42 -0400
22055              Message-ID: <20000628023642.12166.qmail@plover.com>
22056              
22057              Subject: Re: [PATCH 5.6.0 IPC/Open3.pm] Allow the use of numeric fd's
22058              From: Frank Tobin <ftobin@uiuc.edu>
22059              Date: Sun, 25 Jun 2000 19:00:58 -0500 (CDT)
22060              Message-ID: <Pine.BSF.4.21.0006251855340.20487-100000@srh0902.urh.uiuc.edu>
22061      Branch: maint-5.6/perl
22062           !> embed.h embed.pl embedvar.h ext/DynaLoader/DynaLoader_pm.PL
22063           !> global.sym gv.c lib/IPC/Open3.pm objXSUB.h perlapi.c perlapi.h
22064           !> pod/perlapi.pod pod/perlfunc.pod pod/perlintern.pod pp_proto.h
22065           !> proto.h sv.c t/lib/filefunc.t t/lib/filespec.t t/lib/peek.t
22066           !> utf8.c utils/h2xs.PL
22067 ____________________________________________________________________________
22068 [  7765] By: gsar                                  on 2000/11/20  10:29:13
22069         Log: integrate change#6239 from cfgperl
22070              
22071              Configure maintenance.  Sever some dependency cycles,
22072              separate gccversion from the cc unit,
22073              address [ID 20000623.006] Configure script patch for using gcc on AIX
22074              (but solve it a little bit differently),
22075              unduplex some accidentally duplicated units,
22076              suggest using gcc if no cc available
22077              (p5p thread: "Solaris configure: counterproposal", 1999-09)
22078      Branch: maint-5.6/perl
22079           !> Configure Todo-5.6 config_h.SH
22080 ____________________________________________________________________________
22081 [  7764] By: gsar                                  on 2000/11/20  10:25:55
22082         Log: integrate changes#6233..6238 from cfgperl
22083              
22084              Subject: PATCH 5.6.0: Document OPf_SPECIAL flag in regcomp op nodes
22085              From: Mark-Jason Dominus <mjd@plover.com>
22086              Date: Fri, 16 Jun 2000 20:53:04 -0400
22087              Message-ID: <20000617005304.8008.qmail@plover.com>
22088              
22089              Prefer C:/temp in Win32 as File::Spec->tmpdir to /tmp
22090              because when run as services (Win32ese for daemons)
22091              no environment variables are set and tmpdir ends up as /tmp,
22092              which is ambiguous.
22093              Subject:[ID 20000616.002] File::Spec->tmpdir broken when running as service
22094              From: matt@sergeant.org
22095              Date: 16 Jun 2000 16:30:43 -0000
22096              Message-Id: <20000616163043.26398.qmail@mail.sergeant.org>
22097              
22098              The thread begun by
22099              Subject: [ID 20000616.001] Typo on line 390 of .../hints/solaris_2.sh
22100              From: Kevin.Ruscoe@ubsw.com
22101              Date: Fri, 16 Jun 2000 16:38:51 +0100
22102              Message-Id: <H000019b03c300d6@MHS>
22103              
22104              Tweak embed.pl, regen headers.
22105              
22106              Subject: [PATCH 5.6.0] XS module loading fixup for VMS
22107              From: Dan Sugalski <dan@sidhe.org>
22108              Date: Fri, 23 Jun 2000 17:00:00 -0400
22109              Message-Id: <4.3.2.7.0.20000623165934.00c93d10@24.8.96.48>
22110      Branch: maint-5.6/perl
22111           !> (integrate 27 files)
22112 ____________________________________________________________________________
22113 [  7763] By: gsar                                  on 2000/11/20  10:08:08
22114         Log: s/perl56delta/perldelta/g
22115      Branch: maint-5.6/perl
22116            ! pod/Makefile
22117 ____________________________________________________________________________
22118 [  7762] By: gsar                                  on 2000/11/20  10:04:00
22119         Log: integrate changes#6225,6229,6231,6232 from cfgperl
22120              
22121              Add source code filenames to apidoc.
22122              From: simon@brecon.co.uk (Simon Cozens)
22123              Subject: [PATCH embed.pl] Source X-ref
22124              Date: 22 Jun 2000 02:18:49 GMT
22125              Message-ID: <slrn8l2ts8.h5k.simon@justanother.perlhacker.org>
22126              
22127              Subject: README.hpux version 0.6.1
22128              Date: Tue, 20 Jun 2000 15:25:51 -0700 (PDT)
22129              From: Jeff Okamoto <okamoto@xfiles.intercon.hp.com>
22130              Message-Id: <200006202225.PAA26205@xfiles.intercon.hp.com>
22131              
22132              Subject: [PATCH 5.6.0] cygwin port
22133              From: "Fifer, Eric" <EFifer@sanwaint.com>
22134              Date: Tue, 20 Jun 2000 14:30:58 +0100
22135              Message-ID: <779F20BCCE5AD31186A50008C75D9979171734@silldn_mail1.sanwaint.com>
22136              
22137              Subject: PATCH: pod/perlutil.pod - utilities packaged with the Perl distribution
22138              From: simon@brecon.co.uk (Simon Cozens)
22139              Date: 19 Jun 2000 15:18:27 GMT
22140              Message-ID: <slrn8ksee3.cp9.simon@justanother.perlhacker.org>
22141              
22142              plus update pod/Makefile and regenerate perltoc
22143      Branch: maint-5.6/perl
22144           +> pod/perlutil.pod
22145           !> MANIFEST README.cygwin README.hpux Todo-5.6 embed.pl
22146           !> lib/File/Find.pm pod/Makefile pod/perltoc.pod pod/roffitall
22147 ____________________________________________________________________________
22148 [  7761] By: jhi                                   on 2000/11/20  04:09:55
22149         Log: Miraculous typo.
22150      Branch: perl
22151            ! t/op/pat.t
22152 ____________________________________________________________________________
22153 [  7760] By: jhi                                   on 2000/11/20  04:06:08
22154         Log: Subject: [PATCH 5.7.0] The first step in removing recursion from the REx engine
22155              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
22156              Date: Sun, 19 Nov 2000 22:30:26 -0500
22157              Message-ID: <20001119223026.A5165@monk.mps.ohio-state.edu>
22158      Branch: perl
22159            ! regexec.c scope.h t/op/pat.t
22160 ____________________________________________________________________________
22161 [  7759] By: jhi                                   on 2000/11/20  02:05:22
22162         Log: Make certain MacOS Classic has NO_ENVIRON_ARRAY.
22163      Branch: perl
22164            ! perl.h
22165 ____________________________________________________________________________
22166 [  7758] By: jhi                                   on 2000/11/20  01:58:11
22167         Log: Subject: [perl 7711: EPOC] updates
22168              From: Olaf Flebbe <o.flebbe@gmx.de>
22169              Date: Sun, 19 Nov 2000 19:33:30 +0100 (MET)
22170              Message-ID: <25575.974658810@www23.gmx.net>               
22171      Branch: perl
22172            + lib/File/Spec/Epoc.pm
22173            ! MANIFEST epoc/epocish.c lib/CGI.pm lib/Cwd.pm
22174            ! lib/File/Basename.pm lib/File/Find.pm lib/File/Path.pm
22175            ! lib/File/Spec.pm perl.c sv.c
22176 ____________________________________________________________________________
22177 [  7757] By: jhi                                   on 2000/11/20  01:53:11
22178         Log: ext/re/hints/MSWin32.pl seems to be missing from perlio.
22179      Branch: perl
22180            ! MANIFEST
22181 ____________________________________________________________________________
22182 [  7756] By: jhi                                   on 2000/11/20  01:47:22
22183         Log: Integrate perlio.
22184      Branch: perl
22185            - ext/re/hints/MSWin32.pl
22186           !> global.sym perlio.c perlio.h perliol.h pod/perlapi.pod sv.c
22187           !> win32/config.gc win32/config_H.gc win32/win32sck.c
22188 ____________________________________________________________________________
22189 [  7755] By: nick                                  on 2000/11/19  20:57:17
22190         Log: Add dummy crlf layer (just as buffer)
22191              Correct 1st bug - one layer of indirection.
22192      Branch: perlio
22193            ! perlio.c perlio.h perliol.h
22194 ____________________________________________________________________________
22195 [  7754] By: nick                                  on 2000/11/19  20:56:12
22196         Log: Work-round to Perl_deb_nocontext is no longer required
22197      Branch: perlio
22198            - ext/re/hints/MSWin32.pl
22199 ____________________________________________________________________________
22200 [  7753] By: nick                                  on 2000/11/19  20:01:16
22201         Log: diff -se shows these as different
22202      Branch: perlio
22203            ! global.sym pod/perlapi.pod
22204 ____________________________________________________________________________
22205 [  7752] By: nick                                  on 2000/11/19  18:57:30
22206         Log: Configure GCC/Win32 build -Duseperlio
22207              Fix a couple of gross issues
22208              - double-include of ../deb.o in re.dll
22209              - win32sck.c needs PerlIO and FILE 
22210      Branch: perlio
22211            ! ext/re/hints/MSWin32.pl win32/config.gc win32/config_H.gc
22212            ! win32/win32sck.c
22213 ____________________________________________________________________________
22214 [  7751] By: nick                                  on 2000/11/19  17:05:36
22215         Log: Special case :crlf and :raw in dummy PerlIO_apply_layers
22216      Branch: perlio
22217            ! perlio.c
22218 ____________________________________________________________________________
22219 [  7750] By: nick                                  on 2000/11/19  16:57:14
22220         Log: Missing aTHX_
22221      Branch: perlio
22222            ! sv.c
22223 ____________________________________________________________________________
22224 [  7749] By: jhi                                   on 2000/11/19  16:28:40
22225         Log: Subject: [ID 20001118.006] [PATCH] perl@7707 djgpp/config.over, hints/dos_djgpp.sh and Storable.pm
22226              From: "Peter J. Farley III" <pjfarley@banet.net>
22227              Date: Sun, 19 Nov 2000 01:42:58 -0500
22228              Message-Id: <5.0.1.4.0.20001119011855.00a55ec0@pop5.banet.net>
22229      Branch: perl
22230            ! djgpp/config.over ext/Storable/Storable.pm hints/dos_djgpp.sh
22231 ____________________________________________________________________________
22232 [  7748] By: jhi                                   on 2000/11/19  16:08:10
22233         Log: Subject: podlators 1.05 available        
22234              From: Russ Allbery <rra@stanford.edu>   
22235              Date: 18 Nov 2000 22:04:28 -0800
22236              Message-ID: <ylitpkijkj.fsf@windlord.stanford.edu>
22237      Branch: perl
22238            ! lib/Pod/Man.pm lib/Pod/Text.pm pod/pod2man.PL
22239 ____________________________________________________________________________
22240 [  7747] By: nick                                  on 2000/11/19  11:19:39
22241         Log: Integrate mainline
22242      Branch: perlio
22243           !> embed.h embed.pl objXSUB.h perlapi.c proto.h sv.c utf8.c
22244           !> util.c
22245 ____________________________________________________________________________
22246 [  7746] By: jhi                                   on 2000/11/19  06:42:22
22247         Log: Make hex scanning warn on "\x{x}" and "\xx".
22248              "\x" and and hex("x") are still valid.
22249      Branch: perl
22250            ! util.c
22251 ____________________________________________________________________________
22252 [  7745] By: nick                                  on 2000/11/18  22:52:28
22253         Log: Integrate mainline
22254      Branch: perlio
22255           !> emacs/ptags embed.h embed.pl lib/CPAN.pm lib/CPAN/FirstTime.pm
22256           !> perl.h perlio.c proto.h regcomp.c regcomp.h
22257 ____________________________________________________________________________
22258 [  7744] By: jhi                                   on 2000/11/18  22:50:28
22259         Log: Introduce Perl_utf8_length().  Use it.
22260      Branch: perl
22261            ! embed.h embed.pl objXSUB.h perlapi.c proto.h sv.c utf8.c
22262 ____________________________________________________________________________
22263 [  7743] By: jhi                                   on 2000/11/18  22:38:51
22264         Log: Compiler denit.
22265      Branch: perl
22266            ! perlio.c
22267 ____________________________________________________________________________
22268 [  7742] By: jhi                                   on 2000/11/18  20:33:05
22269         Log: Integrate perlio.
22270      Branch: perl
22271           !> cop.h doio.c gv.c lib/open.pm mg.c op.c perl.c perlio.c
22272           !> perlio.h pp_ctl.c pp_sys.c sv.c
22273 ____________________________________________________________________________
22274 [  7741] By: jhi                                   on 2000/11/18  20:31:27
22275         Log: Subject: [PATCH 5.7.0] make regcomp reenterable
22276              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
22277              Date: Fri, 17 Nov 2000 20:35:11 -0500
22278              Message-ID: <20001117203511.A13121@monk.mps.ohio-state.edu>
22279              
22280              Subject: Re: [PATCH 5.7.0] make regcomp reenterable
22281              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
22282              Date: Fri, 17 Nov 2000 21:03:47 -0500
22283              Message-ID: <20001117210347.A16570@monk.mps.ohio-state.edu>
22284              
22285              Plus a little bit of tweaking in pregcomp().
22286      Branch: perl
22287            ! embed.h embed.pl perl.h proto.h regcomp.c regcomp.h
22288 ____________________________________________________________________________
22289 [  7740] By: nick                                  on 2000/11/18  20:17:22
22290         Log: Lexical use open ... support:
22291              add ->cop_io to COP structure in cop.h.
22292              Make mg.c and gv.c associate it with ${^OPEN}.
22293              Make lib/open.pm set it.
22294              Have sv.c, perl.c, pp_ctl.c, op.c manipulate it in a manner
22295              manner similar to ->cop_warnings.
22296              Have doio.c's do_open9 and pp_sys.c's pp_backticks use it as default and
22297              call new PerlIO_apply_layers().
22298              Declare latter in perlio.h and define in perlio.c
22299      Branch: perlio
22300            ! cop.h doio.c gv.c lib/open.pm mg.c op.c perl.c perlio.c
22301            ! perlio.h pp_ctl.c pp_sys.c sv.c
22302 ____________________________________________________________________________
22303 [  7739] By: jhi                                   on 2000/11/18  19:54:00
22304         Log: Integrate perlio.
22305      Branch: perl
22306           !> doio.c perlio.c pp.c
22307 ____________________________________________________________________________
22308 [  7738] By: jhi                                   on 2000/11/18  17:16:13
22309         Log: Subject: [PATCH 5.7.0] etags broken again
22310              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
22311              Date: Sat, 18 Nov 2000 02:41:36 -0500
22312              Message-ID: <20001118024136.A19097@monk.mps.ohio-state.edu>
22313      Branch: perl
22314            ! emacs/ptags
22315 ____________________________________________________________________________
22316 [  7737] By: jhi                                   on 2000/11/18  17:12:18
22317         Log: Upgrade to CPAN.pm 1.58_93 (the RC1 for 1.59), from Andreas König.
22318      Branch: perl
22319            ! lib/CPAN.pm lib/CPAN/FirstTime.pm
22320 ____________________________________________________________________________
22321 [  7736] By: nick                                  on 2000/11/18  14:06:20
22322         Log: Basic tweaks to do_open() type parsing to allow layer/discipline
22323              part to be isolated.
22324      Branch: perlio
22325            ! doio.c perlio.c
22326 ____________________________________________________________________________
22327 [  7735] By: nick                                  on 2000/11/18  11:03:32
22328         Log: Integrate mainline
22329      Branch: perlio
22330           !> Changes README.amiga README.win32 patchlevel.h
22331           !> pod/perlfunc.pod pp.c regcomp.c regexec.c t/op/re_tests
22332 ____________________________________________________________________________
22333 [  7734] By: jhi                                   on 2000/11/18  01:18:56
22334         Log: Update Changes.
22335      Branch: perl
22336            ! Changes patchlevel.h
22337 ____________________________________________________________________________
22338 [  7733] By: jhi                                   on 2000/11/18  00:32:54
22339         Log: Subject: [PATCH 5.7.0] restore match data on backtracing
22340              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
22341              Date: Fri, 17 Nov 2000 17:28:02 -0500
22342              Message-ID: <20001117172802.A1032@monk.mps.ohio-state.edu>
22343      Branch: perl
22344            ! regcomp.c regexec.c t/op/re_tests
22345 ____________________________________________________________________________
22346 [  7732] By: jhi                                   on 2000/11/18  00:28:56
22347         Log: Sparc 64-bit pack() fix from Jens Hamisch.
22348      Branch: perl
22349            ! pp.c
22350 ____________________________________________________________________________
22351 [  7731] By: jhi                                   on 2000/11/18  00:18:39
22352         Log: Explain in more detail the {} syntax ambiguousity.
22353              
22354              Subject: [PATCH] Re: [ID 20001117.003] map { "$_", 1} @array is syntax error
22355              From: Nicholas Clark <nick@ccl4.org>
22356              Date: Fri, 17 Nov 2000 22:10:28 +0000
22357              Message-ID: <20001117221028.A88930@plum.flirble.org>
22358      Branch: perl
22359            ! pod/perlfunc.pod
22360 ____________________________________________________________________________
22361 [  7730] By: jhi                                   on 2000/11/18  00:12:18
22362         Log: Subject: Fix for README.amiga (20000323.033)
22363              From: "Stephen P. Potter" <spp@spotter.yi.org>
22364              Date: Fri, 17 Nov 2000 12:25:51 -0500
22365              Message-Id: <200011171725.MAA05768@spotter.yi.org>
22366      Branch: perl
22367            ! README.amiga
22368 ____________________________________________________________________________
22369 [  7729] By: jhi                                   on 2000/11/18  00:08:34
22370         Log: Subject: [PATCH 5.6.0 README.win32] very minor typos
22371              From: "A. C. Yardley" <yardley@tanet.net>
22372              Date: Mon, 3 Apr 2000 11:35:33 -0700
22373              Message-ID: <3483.000403@tanet.net>
22374      Branch: perl
22375            ! README.win32
22376 ____________________________________________________________________________
22377 [  7728] By: nick                                  on 2000/11/17  21:59:47
22378         Log: Integrate mainline
22379      Branch: perlio
22380           !> configure.com hints/solaris_2.sh lib/Carp/Heavy.pm
22381           !> lib/ExtUtils/xsubpp lib/Pod/Checker.pm pod/perlfaq9.pod
22382           !> pod/perlhack.pod pod/perllocale.pod pod/perlmodlib.PL
22383           !> pod/perlpod.pod pod/perlxs.pod pod/perlxstut.pod t/lib/b.t
22384 ____________________________________________________________________________
22385 [  7727] By: nick                                  on 2000/11/17  21:56:31
22386         Log: Experiment on use of attributes.pm interface.
22387              Valid generic fix to auto-vivify code in rv2gv - only "upgrade" to
22388              SVt_PVRV if not already something better (else vivify of say magic gets
22389              core dump).
22390      Branch: perlio
22391            ! perlio.c pp.c
22392 ____________________________________________________________________________
22393 [  7726] By: jhi                                   on 2000/11/17  14:15:49
22394         Log: Subject: Fix for 20000815.006
22395              From: "Stephen P. Potter" <spp@spotter.yi.org>
22396              Date: Fri, 17 Nov 2000 08:57:45 -0500
22397              Message-Id: <200011171357.IAA05122@spotter.yi.org>
22398              
22399              It's really 20000518.006.
22400      Branch: perl
22401            ! pod/perlmodlib.PL
22402 ____________________________________________________________________________
22403 [  7725] By: jhi                                   on 2000/11/17  14:12:31
22404         Log: Subject: Fix for 20000409.001
22405              From: "Stephen P. Potter" <spp@spotter.yi.org>
22406              Date: Fri, 17 Nov 2000 08:55:45 -0500
22407              Message-Id: <200011171355.IAA05104@spotter.yi.org>
22408      Branch: perl
22409            ! pod/perlfaq9.pod
22410 ____________________________________________________________________________
22411 [  7724] By: jhi                                   on 2000/11/17  14:08:58
22412         Log: Undo #7627 now that we have =head3.
22413      Branch: perl
22414            ! pod/perlhack.pod
22415 ____________________________________________________________________________
22416 [  7723] By: jhi                                   on 2000/11/17  14:04:09
22417         Log: As surmised the #7719 wasn't a good move.
22418      Branch: perl
22419            ! hints/solaris_2.sh
22420 ____________________________________________________________________________
22421 [  7722] By: jhi                                   on 2000/11/17  13:59:04
22422         Log: Also the 64bitall hints can be either here or there.
22423      Branch: perl
22424            ! hints/solaris_2.sh
22425 ____________________________________________________________________________
22426 [  7721] By: jhi                                   on 2000/11/17  02:26:23
22427         Log: Test tweak for the open pragma.
22428      Branch: perl
22429            ! t/lib/b.t
22430 ____________________________________________________________________________
22431 [  7720] By: jhi                                   on 2000/11/17  00:23:22
22432         Log: The long double hints can be here or there.
22433      Branch: perl
22434            ! hints/solaris_2.sh
22435 ____________________________________________________________________________
22436 [  7719] By: jhi                                   on 2000/11/17  00:14:06
22437         Log: For Solaris use64bitall the stdchar needs a little bit of help.
22438      Branch: perl
22439            ! hints/solaris_2.sh
22440 ____________________________________________________________________________
22441 [  7718] By: jhi                                   on 2000/11/16  23:27:34
22442         Log: Subject: Re: Bug in Carp::Heavy/5.6.0?
22443              From: Wolfgang Laun <Wolfgang.Laun@alcatel.at>
22444              Date: Wed, 15 Nov 2000 08:56:32 +0100
22445              Message-ID: <3A1241B0.64477E00@alcatel.at>
22446      Branch: perl
22447            ! lib/Carp/Heavy.pm
22448 ____________________________________________________________________________
22449 [  7717] By: jhi                                   on 2000/11/16  23:23:29
22450         Log: Subject: [PATCH] Re: 20001101.003 PDL
22451              From: Nicholas Clark <nick@ccl4.org>
22452              Date: Thu, 16 Nov 2000 16:48:25 +0000
22453              Message-ID: <20001116164825.B93487@plum.flirble.org>
22454      Branch: perl
22455            ! lib/ExtUtils/xsubpp pod/perlxs.pod pod/perlxstut.pod
22456 ____________________________________________________________________________
22457 [  7716] By: jhi                                   on 2000/11/16  23:21:31
22458         Log: Subject: [PATCH] Re: [p5p] [PATCH perlpod.pod] Digging into the =head
22459              From: "Casey R. Tweten" <crt@kiski.net>
22460              Date: Thu, 16 Nov 2000 12:02:47 -0500 (EST)
22461              Message-ID: <Pine.OSF.4.21.0011161200410.700-100000@home.kiski.net>
22462      Branch: perl
22463            ! lib/Pod/Checker.pm pod/perlpod.pod
22464 ____________________________________________________________________________
22465 [  7715] By: jhi                                   on 2000/11/16  23:19:40
22466         Log: Avoid an infinite loop in VMS when utils scripts are run
22467              with no arguments, from Charles Lane.
22468      Branch: perl
22469            ! configure.com
22470 ____________________________________________________________________________
22471 [  7714] By: jhi                                   on 2000/11/16  23:17:08
22472         Log: Subject: perllocale.pod changes
22473              From: "Konovalov, Vadim" <vkonovalov@lucent.com>
22474              Date: Mon, 13 Nov 2000 10:09:22 +0300
22475              Message-ID: <402099F49BEED211999700805FC7359F825416@ru0028exch01.spb.lucent.com>
22476      Branch: perl
22477            ! pod/perllocale.pod
22478 ____________________________________________________________________________
22479 [  7713] By: jhi                                   on 2000/11/16  23:14:06
22480         Log: Integrate perlio.
22481      Branch: perl
22482           !> doio.c perlio.c perlio.h util.c
22483 ____________________________________________________________________________
22484 [  7712] By: nick                                  on 2000/11/16  21:10:58
22485         Log: Integrate mainline
22486      Branch: perlio
22487           !> Configure Porting/Glossary Porting/config.sh Porting/config_H
22488           !> config_h.SH configure.com epoc/config.sh malloc.c uconfig.h
22489           !> uconfig.sh vos/config.alpha.def vos/config.alpha.h
22490           !> vos/config.ga.def vos/config.ga.h win32/config.bc
22491           !> win32/config.gc win32/config.vc
22492 ____________________________________________________________________________
22493 [  7711] By: nick                                  on 2000/11/16  19:56:41
22494         Log: Minor tweaks:
22495              consistent way of getting 'rb', 'wb' etc. for binary opens
22496              move *perlio::layers to *open::layers
22497              a #define to show layers available
22498              DOSISH popen/PerlIO had export/import sense inverted.
22499      Branch: perlio
22500            ! doio.c perlio.c perlio.h util.c
22501 ____________________________________________________________________________
22502 [  7710] By: jhi                                   on 2000/11/16  15:46:05
22503         Log: Add HAS_SBRK_PROTO.
22504      Branch: metaconfig/U/perl
22505            + d_sbrkproto.U
22506      Branch: perl
22507            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
22508            ! config_h.SH configure.com epoc/config.sh malloc.c uconfig.h
22509            ! uconfig.sh vos/config.alpha.def vos/config.alpha.h
22510            ! vos/config.ga.def vos/config.ga.h win32/config.bc
22511            ! win32/config.gc win32/config.vc
22512 ____________________________________________________________________________
22513 [  7709] By: nick                                  on 2000/11/16  07:31:49
22514         Log: Integrate mainline
22515      Branch: perlio
22516           !> (integrate 35 files)
22517 ____________________________________________________________________________
22518 [  7708] By: jhi                                   on 2000/11/16  05:33:03
22519         Log: These files are text, not binary.
22520      Branch: perl
22521            ! ext/Encode/Encode/iso8859-10.enc
22522            ! ext/Encode/Encode/iso8859-13.enc
22523            ! ext/Encode/Encode/iso8859-14.enc
22524            ! ext/Encode/Encode/iso8859-15.enc
22525 ____________________________________________________________________________
22526 [  7707] By: jhi                                   on 2000/11/16  01:53:37
22527         Log: Update Changes.
22528      Branch: perl
22529            ! Changes patchlevel.h
22530 ____________________________________________________________________________
22531 [  7706] By: jhi                                   on 2000/11/16  01:35:59
22532         Log: More #undefing of stdio.
22533      Branch: perl
22534            ! fakesdio.h nostdio.h
22535 ____________________________________________________________________________
22536 [  7705] By: jhi                                   on 2000/11/16  01:34:18
22537         Log: Add fwalk() probe to the configuration files and regen perltoc.
22538      Branch: perl
22539            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
22540            ! config_h.SH configure.com epoc/config.sh pod/perltoc.pod
22541            ! uconfig.h uconfig.sh util.c vos/config.alpha.def
22542            ! vos/config.alpha.h vos/config.ga.def vos/config.ga.h
22543            ! win32/config.bc win32/config.gc win32/config.vc
22544 ____________________________________________________________________________
22545 [  7704] By: jhi                                   on 2000/11/16  01:33:07
22546         Log: Add the _fwalk() unit.  (The probe says 'fwalk()'.  Time for
22547              an optional third argument to Inlibc?)
22548      Branch: metaconfig/U/perl
22549            + d__fwalk.U
22550 ____________________________________________________________________________
22551 [  7703] By: jhi                                   on 2000/11/16  01:09:22
22552         Log: The type of the hash_cb() size argument is tricky.
22553      Branch: perl
22554            ! ext/DB_File/DB_File.xs
22555 ____________________________________________________________________________
22556 [  7702] By: jhi                                   on 2000/11/15  23:01:16
22557         Log: Quick temporary fix for 20001114.008 as suggested by Nick Ing-Simmons.
22558      Branch: perl
22559            ! nostdio.h
22560 ____________________________________________________________________________
22561 [  7701] By: jhi                                   on 2000/11/15  22:52:32
22562         Log: Detypo.
22563      Branch: perl
22564            ! t/lib/bigfltpm.t
22565 ____________________________________________________________________________
22566 [  7700] By: jhi                                   on 2000/11/15  22:51:56
22567         Log: UINT64_C() work continues.
22568      Branch: perl
22569            ! handy.h perl.h utf8.h
22570 ____________________________________________________________________________
22571 [  7699] By: jhi                                   on 2000/11/15  14:13:04
22572         Log: SOCKS has its own USE_THREADS, based on
22573              
22574              Subject: [ID 20001114.002] et. al. bugfix followup
22575              From: Jens Hamisch <jens@Strawberry.COM> 
22576              Date: Wed, 15 Nov 2000 14:23:11 +0100
22577              Message-ID: <20001115142311.A21164@Strawberry.COM>
22578      Branch: perl
22579            ! perl.h
22580 ____________________________________________________________________________
22581 [  7698] By: jhi                                   on 2000/11/15  03:50:56
22582         Log: Add few missing #undefs and sort them.
22583      Branch: perl
22584            ! fakesdio.h
22585 ____________________________________________________________________________
22586 [  7697] By: jhi                                   on 2000/11/15  03:39:14
22587         Log: Linenumber fix.
22588      Branch: perl
22589            ! t/pragma/warn/utf8
22590 ____________________________________________________________________________
22591 [  7696] By: jhi                                   on 2000/11/15  02:55:26
22592         Log: EBCDIC tweaks.
22593              
22594              Subject: [PATCH: perl@7674 ++] fixes for warnings and regmesg (reprise)
22595              From: Peter Prymmer <pvhp@forte.com>
22596              Date: Tue, 14 Nov 2000 17:05:11 -0800 (PST)
22597              Message-ID: <Pine.OSF.4.10.10011141653510.106218-100000@aspara.forte.com>
22598      Branch: perl
22599            ! t/op/regmesg.t t/pragma/warn/utf8
22600 ____________________________________________________________________________
22601 [  7695] By: jhi                                   on 2000/11/15  02:53:58
22602         Log: Subject: [PATCH: perl@7674 + Scott-Thoennes] hush warnings about malformed EBCDIC text
22603              From: Peter Prymmer <pvhp@forte.com>
22604              Date: Tue, 14 Nov 2000 15:09:41 -0800 (PST)
22605              Message-ID: <Pine.OSF.4.10.10011141500260.106218-100000@aspara.forte.com>
22606      Branch: perl
22607            ! utf8.c
22608 ____________________________________________________________________________
22609 [  7694] By: jhi                                   on 2000/11/15  02:50:55
22610         Log: Subject: [PATCH: perl@7674] updates to README.os390
22611              From: Prymmer/Kahn <pvhp@best.com>
22612              Date: Tue, 14 Nov 2000 09:20:20 -0800 (PST)
22613              Message-ID: <Pine.BSF.4.21.0011140913370.15162-100000@shell8.ba.best.com>
22614      Branch: perl
22615            ! README.os390
22616 ____________________________________________________________________________
22617 [  7693] By: jhi                                   on 2000/11/15  02:48:37
22618         Log: Quit utf8_to_uv() instantly if curlen == 0.
22619      Branch: perl
22620            ! utf8.c
22621 ____________________________________________________________________________
22622 [  7692] By: jhi                                   on 2000/11/15  02:24:29
22623         Log: Use u_int32_t for the size of hash_cb(), not size_t.
22624              
22625              Subject: [ID 20001114.003] Solaris 8, 64 Bit DB_file patch
22626              From: Jens Hamisch <jens@Strawberry.COM>     
22627              Date: Tue, 14 Nov 2000 19:03:55 +0100
22628              Message-Id: <20001114190355.A20559@Strawberry.COM>
22629      Branch: perl
22630            ! ext/DB_File/DB_File.xs
22631 ____________________________________________________________________________
22632 [  7691] By: jhi                                   on 2000/11/15  02:20:12
22633         Log: Use UINT64_C().
22634              
22635              Subject: [ID 20001114.006] 5.7.0-7680 Solaris 8, 64 bit, utf8 patch
22636              From: Jens Hamisch <jens@Strawberry.COM>
22637              Date: Tue, 14 Nov 2000 19:16:23 +0100
22638              Message-Id: <20001114191623.G20559@Strawberry.COM>
22639      Branch: perl
22640            ! utf8.c utf8.h
22641 ____________________________________________________________________________
22642 [  7690] By: jhi                                   on 2000/11/15  02:17:06
22643         Log: Defined INT64_C() and UINT64_C() unless defined by <inttypes.h>
22644              (a macro to define signed and unsigned integer constants).
22645      Branch: perl
22646            ! handy.h
22647 ____________________________________________________________________________
22648 [  7689] By: jhi                                   on 2000/11/15  01:56:51
22649         Log: Regen Configure.
22650      Branch: perl
22651            ! Configure
22652 ____________________________________________________________________________
22653 [  7688] By: jhi                                   on 2000/11/15  01:56:32
22654         Log: Make the unit know about SOCKS.
22655      Branch: metaconfig
22656            ! U/protos/socksizetype.U
22657 ____________________________________________________________________________
22658 [  7687] By: jhi                                   on 2000/11/15  01:54:47
22659         Log: Remove unused dependencies.
22660      Branch: metaconfig
22661            ! U/compline/d_getpagsz.U
22662 ____________________________________________________________________________
22663 [  7686] By: nick                                  on 2000/11/14  21:25:13
22664         Log: Integrate mainline.
22665      Branch: perlio
22666           +> ext/re/hints/MSWin32.pl win32/bin/mdelete.bat
22667           !> MANIFEST doio.c doop.c ext/IO/lib/IO/Handle.pm
22668           !> ext/IO/lib/IO/Seekable.pm ext/SDBM_File/Makefile.PL
22669           !> lib/ExtUtils/MM_Unix.pm lib/perl5db.pl makedef.pl perl.h
22670           !> perlio.c pp.c pp_sys.c toke.c utf8.c utf8.h win32/Makefile
22671           !> win32/config.bc win32/config.gc win32/config.vc
22672           !> win32/makefile.mk win32/win32.c win32/win32.h win32/win32sck.c
22673 ____________________________________________________________________________
22674 [  7685] By: jhi                                   on 2000/11/14  17:54:56
22675         Log: Integrate perlio.
22676      Branch: perl
22677           +> fakesdio.h perliol.h
22678           !> MANIFEST iperlsys.h nostdio.h perl.c perlio.c perlio.h
22679           !> perlsdio.h perlsfio.h pod/perlfunc.pod
22680 ____________________________________________________________________________
22681 [  7684] By: nick                                  on 2000/11/14  17:43:04
22682         Log: PerlIO #include and #ifdef re-work.
22683      Branch: perlio
22684            + fakesdio.h perliol.h
22685            ! MANIFEST iperlsys.h nostdio.h perl.c perlio.c perlio.h
22686            ! perlsdio.h perlsfio.h
22687 ____________________________________________________________________________
22688 [  7683] By: jhi                                   on 2000/11/14  15:42:40
22689         Log: Hoist the duplicated socket/netdb include logic to perl.h;
22690              undef SETERRNO in case SOCKS has defined it.  Based on:
22691              
22692              Subject: [ID 20001114.002] Code-Cleanups concerning SOCKS5 and Solaris   
22693              From: Jens Hamisch <jens@Strawberry.COM> 
22694              Date: Tue, 14 Nov 2000 11:34:40 +0100
22695              Message-Id: <20001114113440.A20005@Strawberry.COM>
22696      Branch: perl
22697            ! doio.c perl.h pp_sys.c
22698 ____________________________________________________________________________
22699 [  7682] By: jhi                                   on 2000/11/14  14:07:28
22700         Log: Subject: some additions for makefiles for win32 (for perl@7674)
22701              From: "Konovalov, Vadim" <vkonovalov@lucent.com>
22702              Date: Tue, 14 Nov 2000 09:31:13 +0300
22703              Message-ID: <402099F49BEED211999700805FC7359F8254FC@ru0028exch01.spb.lucent.com>
22704      Branch: perl
22705            ! win32/Makefile win32/config.bc win32/config.gc win32/config.vc
22706            ! win32/makefile.mk
22707 ____________________________________________________________________________
22708 [  7681] By: jhi                                   on 2000/11/14  14:01:41
22709         Log: Subject: tiny typo in perl5db.pl
22710              From: "Konovalov, Vadim" <vkonovalov@lucent.com>
22711              Date: Tue, 14 Nov 2000 09:29:28 +0300
22712              Message-ID: <402099F49BEED211999700805FC7359F8254F7@ru0028exch01.spb.lucent.com>
22713      Branch: perl
22714            ! lib/perl5db.pl
22715 ____________________________________________________________________________
22716 [  7680] By: jhi                                   on 2000/11/14  04:13:50
22717         Log: Redo #7679 with LFs instead of CRLFs.
22718      Branch: perl
22719            ! ext/SDBM_File/Makefile.PL lib/ExtUtils/MM_Unix.pm makedef.pl
22720            ! perlio.c win32/Makefile win32/bin/mdelete.bat win32/config.gc
22721            ! win32/config.vc win32/win32.c win32/win32.h win32/win32sck.c
22722 ____________________________________________________________________________
22723 [  7679] By: jhi                                   on 2000/11/14  01:21:09
22724         Log: Subject: [PATCH perl@7638] Get PerlIO building on Win32
22725              From: Benjamin Stuhl <tiriath@yahoo.com> 
22726              Date: Mon, 13 Nov 2000 15:08:08 -0800 (PST)
22727              Message-ID: <20001113230808.18659.qmail@web6305.mail.yahoo.com>
22728      Branch: perl
22729            + win32/bin/mdelete.bat
22730            ! MANIFEST ext/SDBM_File/Makefile.PL lib/ExtUtils/MM_Unix.pm
22731            ! makedef.pl perlio.c win32/Makefile win32/config.gc
22732            ! win32/config.vc win32/win32.c win32/win32.h win32/win32sck.c
22733 ____________________________________________________________________________
22734 [  7678] By: jhi                                   on 2000/11/14  01:19:20
22735         Log: Fix the re extension building for Win32.
22736              
22737              Subject: [PATCH perl@7638] Get PerlIO building on Win32
22738              From: Benjamin Stuhl <tiriath@yahoo.com> 
22739              Date: Mon, 13 Nov 2000 15:08:08 -0800 (PST)
22740              Message-ID: <20001113230808.18659.qmail@web6305.mail.yahoo.com>
22741      Branch: perl
22742            + ext/re/hints/MSWin32.pl
22743            ! MANIFEST
22744 ____________________________________________________________________________
22745 [  7677] By: jhi                                   on 2000/11/14  01:13:54
22746         Log: Subject: [ID 20001113.003] utf8_to_uv on malformed utf returns wrong values
22747              From: sthoenna@efn.org
22748              Date: Mon, 13 Nov 2000 14:49:40 -0800 (PST)
22749              Message-Id: <200011132249.eADMnek09679@garcia.efn.org>
22750      Branch: perl
22751            ! doop.c pp.c toke.c utf8.c utf8.h
22752 ____________________________________________________________________________
22753 [  7676] By: jhi                                   on 2000/11/13  20:23:15
22754         Log: Subject: Re: [ID 20001112.008] perlio.c's PerlIO_getpos ingores error return
22755              From: Nicholas Clark <nick@ccl4.org>
22756              Date: Mon, 13 Nov 2000 18:55:04 +0000
22757              Message-ID: <20001113185504.J29183@plum.flirble.org>
22758      Branch: perl
22759            ! ext/IO/lib/IO/Handle.pm ext/IO/lib/IO/Seekable.pm
22760 ____________________________________________________________________________
22761 [  7675] By: nick                                  on 2000/11/13  20:21:57
22762         Log: Integrate mainline ...
22763      Branch: perlio
22764           !> Changes MANIFEST doop.c ext/IO/IO.xs ext/IO/lib/IO/Handle.pm
22765           !> ext/IO/lib/IO/Seekable.pm patchlevel.h perl.h perlio.c
22766           !> perlsfio.h pod/perlfunc.pod pod/perlunicode.pod pp.c regexp.h
22767           !> t/io/tell.t t/lib/io_xs.t t/op/bop.t utf8.c
22768 ____________________________________________________________________________
22769 [  7674] By: jhi                                   on 2000/11/13  15:07:56
22770         Log: Update Changes.
22771      Branch: perl
22772            ! Changes patchlevel.h
22773 ____________________________________________________________________________
22774 [  7673] By: jhi                                   on 2000/11/13  14:42:42
22775         Log: Remove the new two tests of lib/io_xs for now, they seem to
22776              fail under perlio on some platforms.
22777      Branch: perl
22778            ! t/lib/io_xs.t
22779 ____________________________________________________________________________
22780 [  7672] By: jhi                                   on 2000/11/13  13:57:53
22781         Log: Make PerlIO_getpos() to behave like fgetpos() on return.
22782      Branch: perl
22783            ! perlio.c
22784 ____________________________________________________________________________
22785 [  7671] By: jhi                                   on 2000/11/13  05:30:48
22786         Log: Placate nervous compilers that see longer than ints switch()ing.
22787      Branch: perl
22788            ! utf8.c
22789 ____________________________________________________________________________
22790 [  7670] By: jhi                                   on 2000/11/13  05:14:21
22791         Log: fputs() does return EOF on error but here we don't care.
22792      Branch: perl
22793            ! perlio.c
22794 ____________________________________________________________________________
22795 [  7669] By: jhi                                   on 2000/11/13  05:02:45
22796         Log: Declare reg_data like reg_substr_data.
22797      Branch: perl
22798            ! regexp.h
22799 ____________________________________________________________________________
22800 [  7668] By: jhi                                   on 2000/11/13  04:54:34
22801         Log: Typos in #7667.
22802      Branch: perl
22803            ! perl.h
22804 ____________________________________________________________________________
22805 [  7667] By: jhi                                   on 2000/11/13  04:49:49
22806         Log: Cleanup messy #ifdef.
22807      Branch: perl
22808            ! perl.h
22809 ____________________________________________________________________________
22810 [  7666] By: jhi                                   on 2000/11/13  04:17:34
22811         Log: Subject: [ID 20001112.008] perlio.c's PerlIO_getpos ingores error return
22812              From: Nicholas Clark <nick@talking.bollo.cx>
22813              Date: Sun, 12 Nov 2000 21:14:11 +0000
22814              Message-Id: <E13v4S3-0000iY-00@Bagpuss.unfortu.net>
22815              
22816              Note: only one breakage of the two reported is fixed by this patch.
22817      Branch: perl
22818            ! perlio.c
22819 ____________________________________________________________________________
22820 [  7665] By: jhi                                   on 2000/11/13  04:05:07
22821         Log: Tweak the definition of the bit complement on UTF-8 data:
22822              if none of the characters in the string are > 0xff,
22823              the result is a complemented byte string, not a (UTF-8)
22824              char string.  Based on the summary in
22825              
22826              Subject: Re: [ID 20000918.005] ~ on wide chars
22827              From: sthoenna@efn.org (Yitzchak Scott-Thoennes) 
22828              Date: Fri, 10 Nov 2000 09:47:15 -0800
22829              Message-ID: <jSDD6gzkgi/T092yn@efn.org>
22830              
22831              This should give us the maximum backward (pre-char string)
22832              compatibility and utf8 compatibility.  The other alternative
22833              would be to limit the bit complement to be always byte only,
22834              taking the least significant byte of the chars.
22835      Branch: perl
22836            ! doop.c pod/perlunicode.pod pp.c t/op/bop.t
22837 ____________________________________________________________________________
22838 [  7664] By: jhi                                   on 2000/11/13  00:23:44
22839         Log: Couple of tests from #7660 salvaged.
22840      Branch: perl
22841            - t/op/tell.t
22842            ! MANIFEST t/io/tell.t
22843 ____________________________________________________________________________
22844 [  7663] By: jhi                                   on 2000/11/13  00:02:48
22845         Log: Subject: [ID 20001112.007] sfio's sftell isn't ftell
22846              From: Nicholas Clark <nick@talking.bollo.cx>
22847              Date: Sun, 12 Nov 2000 21:23:43 +0000
22848              Message-Id: <E13v4bH-0000lN-00@Bagpuss.unfortu.net>
22849      Branch: perl
22850            ! perlsfio.h
22851 ____________________________________________________________________________
22852 [  7662] By: jhi                                   on 2000/11/13  00:01:39
22853         Log: Subject: [ID 20001112.006] IO::Seekable::getpos doesn't check for fgetpos() failure
22854              From: Nicholas Clark <nick@talking.bollo.cx>
22855              Date: Sun, 12 Nov 2000 21:30:04 +0000
22856              Message-Id: <E13v4hQ-0000mn-00@Bagpuss.unfortu.net>
22857      Branch: perl
22858            ! ext/IO/IO.xs ext/IO/lib/IO/Seekable.pm t/lib/io_xs.t
22859 ____________________________________________________________________________
22860 [  7661] By: jhi                                   on 2000/11/12  23:57:29
22861         Log: Document tell() on special streams.
22862      Branch: perl
22863            ! pod/perlfunc.pod
22864 ____________________________________________________________________________
22865 [  7660] By: jhi                                   on 2000/11/12  23:54:22
22866         Log: (Subsumed by #7664)
22867      Branch: perl
22868            + t/op/tell.t
22869            ! MANIFEST
22870 ____________________________________________________________________________
22871 [  7659] By: jhi                                   on 2000/11/12  22:55:25
22872         Log: Many subdocumented return values of the IO extension now documented.
22873              ungetc and write still left subdocumented.
22874              
22875              Subject: [PATCH] (was Re: IO::Handle::ungetc)
22876              From: Nicholas Clark <nick@talking.bollo.cx>
22877              Date: Sun, 12 Nov 2000 21:35:53 +0000
22878              Message-ID: <20001112213552.A3034@Bagpuss.unfortu.net>
22879      Branch: perl
22880            ! ext/IO/lib/IO/Handle.pm
22881 ____________________________________________________________________________
22882 [  7658] By: jhi                                   on 2000/11/12  21:37:06
22883         Log: Subject: [ID 20001112.004] man perlfunc omits tell()'s error return
22884              From: Nicholas Clark <nick@talking.bollo.cx>
22885              Date: Sun, 12 Nov 2000 20:03:22 +0000
22886              Message-Id: <E13v3LV-0008Pd-00@Bagpuss.unfortu.net>
22887      Branch: perl
22888            ! pod/perlfunc.pod
22889 ____________________________________________________________________________
22890 [  7657] By: jhi                                   on 2000/11/12  20:34:55
22891         Log: Integrate perlio.
22892      Branch: perl
22893           !> perlio.c
22894 ____________________________________________________________________________
22895 [  7656] By: nick                                  on 2000/11/12  19:25:06
22896         Log: Add aTHX_ to Perl_croak's (MULTIPLICITY et. al.)
22897      Branch: perlio
22898            ! perlio.c
22899 ____________________________________________________________________________
22900 [  7655] By: nick                                  on 2000/11/12  19:09:41
22901         Log: Integrate mainline
22902      Branch: perlio
22903           +> README.solaris ext/Encode/Encode/cp1006.enc
22904           +> ext/Encode/Encode/cp424.enc ext/Encode/Encode/cp856.enc
22905           +> ext/Encode/Encode/gsm0338.enc ext/Encode/Encode/iso8859-10.enc
22906           +> ext/Encode/Encode/iso8859-13.enc
22907           +> ext/Encode/Encode/iso8859-14.enc
22908           +> ext/Encode/Encode/iso8859-15.enc
22909           !> (integrate 34 files)
22910 ____________________________________________________________________________
22911 [  7654] By: jhi                                   on 2000/11/12  19:00:22
22912         Log: Add a metaconfig unit for fsync.
22913      Branch: metaconfig/U/perl
22914            + d_fsync.U
22915 ____________________________________________________________________________
22916 [  7653] By: jhi                                   on 2000/11/12  19:00:01
22917         Log: Add HAS_FSYNC, lack noticed by Nicholas Clark.
22918      Branch: perl
22919            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
22920            ! config_h.SH configure.com epoc/config.sh uconfig.h uconfig.sh
22921            ! vos/config.alpha.def vos/config.alpha.h vos/config.ga.def
22922            ! vos/config.ga.h win32/config.bc win32/config.gc
22923            ! win32/config.vc
22924 ____________________________________________________________________________
22925 [  7652] By: jhi                                   on 2000/11/11  21:12:01
22926         Log: Copy the s// information of README.hpux also to the perlrun.
22927      Branch: perl
22928            ! README.hpux pod/perlrun.pod
22929 ____________________________________________________________________________
22930 [  7651] By: jhi                                   on 2000/11/11  21:03:13
22931         Log: More README.solaris updates from Andy Dougherty.
22932      Branch: perl
22933            ! README.solaris
22934 ____________________________________________________________________________
22935 [  7650] By: jhi                                   on 2000/11/11  18:38:57
22936         Log: More descriptive error for unknown perlio layers.
22937              
22938              Subject: [PATCHES Bleadperl] Re: PerlIO - what all of you can all do.   
22939              From: Dominic Dunlop <domo@computer.org> 
22940              Date: Sat, 11 Nov 2000 18:20:32 +0100             
22941              Message-Id: <p04320401b632c4c3335b@[192.168.1.4]>
22942      Branch: perl
22943            ! perlio.c pod/perldiag.pod
22944 ____________________________________________________________________________
22945 [  7649] By: jhi                                   on 2000/11/11  18:37:52
22946         Log: MachTen doesn't really do mmap() and munmap().
22947              
22948              Subject: [PATCHES Bleadperl] Re: PerlIO - what all of you can all do.   
22949              From: Dominic Dunlop <domo@computer.org> 
22950              Date: Sat, 11 Nov 2000 18:20:32 +0100             
22951              Message-Id: <p04320401b632c4c3335b@[192.168.1.4]>
22952      Branch: perl
22953            ! hints/machten.sh
22954 ____________________________________________________________________________
22955 [  7648] By: jhi                                   on 2000/11/11  18:36:46
22956         Log: Subject: [PATCH] fwd: Re: [ID 20001105.011] Perl 5.6.0 documentation glitch
22957              From: rspier@pobox.com (Robert Spier)
22958              Date: Sat, 11 Nov 2000 12:22:15 -0500 (EST)
22959              Message-ID: <14861.32839.491271.985797@rls.cx>
22960      Branch: perl
22961            ! Porting/Contract pod/perltoot.pod
22962 ____________________________________________________________________________
22963 [  7647] By: jhi                                   on 2000/11/11  18:35:30
22964         Log: Simplify the getpagesize() unit by dropping the
22965              pagesize probe since it's nowadays slightly more
22966              complicated because of sysconf(). (Note: if some
22967              platform really needs the -lPW for getpagesize,
22968              I just broke it.)
22969              
22970              TODO: a new pagesize unit.
22971      Branch: metaconfig
22972            ! U/compline/d_getpagsz.U
22973 ____________________________________________________________________________
22974 [  7646] By: jhi                                   on 2000/11/11  18:33:23
22975         Log: Add getpagesize() probing, on non-UNIX guess 'undef'.
22976      Branch: perl
22977            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
22978            ! config_h.SH configure.com epoc/config.sh uconfig.h uconfig.sh
22979            ! vos/config.alpha.def vos/config.alpha.h vos/config.ga.def
22980            ! vos/config.ga.h win32/config.bc win32/config.gc
22981            ! win32/config.vc
22982 ____________________________________________________________________________
22983 [  7645] By: jhi                                   on 2000/11/11  16:45:15
22984         Log: Use sysconf() or getpagesize() to find out the pagesize.
22985      Branch: perl
22986            ! perlio.c
22987 ____________________________________________________________________________
22988 [  7644] By: jhi                                   on 2000/11/11  15:46:08
22989         Log: Integrate perlio.
22990      Branch: perl
22991           !> perlio.c
22992 ____________________________________________________________________________
22993 [  7643] By: jhi                                   on 2000/11/11  15:33:36
22994         Log: Subject: Re: [PATCH] README.solaris
22995              From: Lupe Christoph <lupe@lupe-christoph.de>
22996              Date: Sat, 11 Nov 2000 14:08:10 +0100
22997              Message-ID: <20001111140810.C10394@alanya.lupe-christoph.de>
22998      Branch: perl
22999            ! README.solaris
23000 ____________________________________________________________________________
23001 [  7642] By: jhi                                   on 2000/11/11  15:22:12
23002         Log: Subject: [PATCH perl@7638] cygwin port
23003              From: "Eric Fifer" <egf7@columbia.edu>            
23004              Date: Fri, 10 Nov 2000 19:30:30 -0000
23005              Message-ID: <000001c04b4c$b96b7980$243670c2@fifer>
23006      Branch: perl
23007            ! README.cygwin lib/ExtUtils/MM_Cygwin.pm
23008 ____________________________________________________________________________
23009 [  7641] By: nick                                  on 2000/11/11  14:50:36
23010         Log: Fixup mmap layer by doing mmap() calls on pagesize boundaries.
23011              Also call "Buf" layer directly when unread'ing non-read chars.
23012      Branch: perlio
23013            ! perlio.c
23014 ____________________________________________________________________________
23015 [  7640] By: jhi                                   on 2000/11/11  02:05:02
23016         Log: Add more encoding tables.
23017      Branch: perl
23018            + ext/Encode/Encode/cp1006.enc ext/Encode/Encode/cp424.enc
23019            + ext/Encode/Encode/cp856.enc ext/Encode/Encode/gsm0338.enc
23020            + ext/Encode/Encode/iso8859-10.enc
23021            + ext/Encode/Encode/iso8859-13.enc
23022            + ext/Encode/Encode/iso8859-14.enc
23023            + ext/Encode/Encode/iso8859-15.enc
23024            ! MANIFEST
23025 ____________________________________________________________________________
23026 [  7639] By: jhi                                   on 2000/11/10  18:49:25
23027         Log: Subject: [PATCH] README.solaris
23028              From: Andy Dougherty <doughera@lafayette.edu>
23029              Date: Fri, 10 Nov 2000 12:18:00 -0500 (EST)
23030              Message-ID: <Pine.SOL.4.10.10011101217100.28341-100000@maxwell.phys.lafayette.edu>
23031      Branch: perl
23032            + README.solaris
23033            ! INSTALL MANIFEST hints/solaris_2.sh pod/buildtoc.PL
23034            ! pod/perl.pod pod/perltoc.pod
23035 ____________________________________________________________________________
23036 [  7638] By: jhi                                   on 2000/11/10  15:04:15
23037         Log: Update Changes.
23038      Branch: perl
23039            ! Changes patchlevel.h
23040 ____________________________________________________________________________
23041 [  7637] By: jhi                                   on 2000/11/10  14:14:28
23042         Log: Explain better why certain regex tests are skipped.
23043              
23044              Subject: Re: tests skipped: unknown reason
23045              From: Lupe Christoph <lupe@lupe-christoph.de>
23046              Date: Fri, 10 Nov 2000 09:08:56 +0100
23047              Message-ID: <20001110090856.J785@alanya.lupe-christoph.de>
23048      Branch: perl
23049            ! t/op/regexp.t
23050 ____________________________________________________________________________
23051 [  7636] By: nick                                  on 2000/11/10  13:40:00
23052         Log: Integrate mainline.
23053      Branch: perlio
23054           !> emacs/cperl-mode.el ext/IO/lib/IO/Handle.pm hints/linux.sh
23055           !> hints/uts.sh lib/unicode/syllables.txt perlio.c
23056           !> win32/bin/search.pl
23057 ____________________________________________________________________________
23058 [  7635] By: nick                                  on 2000/11/10  13:25:52
23059         Log: Re-instate stdio large file support via perlio.
23060      Branch: perl
23061            ! perlio.c
23062 ____________________________________________________________________________
23063 [  7634] By: jhi                                   on 2000/11/10  04:49:55
23064         Log: Amdahl UTS hints updates.
23065              
23066              Subject: [ID 20001109.016] Trouble going from 5.4 to 5.6
23067              From: hom00@utsglobal.com (Harold O Morris)
23068              Date: Thu, 9 Nov 2000 20:02 PST
23069              Message-Id: <m13u5OV-000045C@juno.uts.utsglobal.com>
23070      Branch: perl
23071            ! hints/uts.sh
23072 ____________________________________________________________________________
23073 [  7633] By: jhi                                   on 2000/11/09  23:33:28
23074         Log: Subject: [PATCH] IO::Seekable pod
23075              From: Nicholas Clark <nick@talking.bollo.cx>
23076              Date: Thu, 9 Nov 2000 20:29:45 +0000
23077              Message-ID: <20001109202945.A10451@Bagpuss.unfortu.net>
23078      Branch: perl
23079            ! ext/IO/lib/IO/Handle.pm
23080 ____________________________________________________________________________
23081 [  7632] By: jhi                                   on 2000/11/09  21:55:41
23082         Log: Various doc oddball characters.
23083              
23084              Subject: [ID 20001106.004] Perl 5.6.0 bugs  
23085              From: Michael Somos <somos@grail.cba.csuohio.edu>
23086              Date: Mon, 6 Nov 2000 17:44:20 -0500
23087              Message-Id: <200011062244.RAA28632@grail.cba.csuohio.edu>
23088      Branch: perl
23089            ! emacs/cperl-mode.el lib/unicode/syllables.txt
23090            ! win32/bin/search.pl
23091 ____________________________________________________________________________
23092 [  7631] By: jhi                                   on 2000/11/09  21:12:29
23093         Log: Subject: Re: bash -c exit and linux hints 
23094              From: "John P. Linderman" <jpl@research.att.com>
23095              Date: Thu, 02 Nov 2000 09:37:25 -0500
23096              Message-Id: <200011021437.JAA63199@raptor.research.att.com>
23097      Branch: perl
23098            ! hints/linux.sh
23099 ____________________________________________________________________________
23100 [  7630] By: nick                                  on 2000/11/09  20:34:11
23101         Log: Integrate mainline.
23102      Branch: perlio
23103           !> (integrate 91 files)
23104 ____________________________________________________________________________
23105 [  7629] By: jhi                                   on 2000/11/09  19:46:31
23106         Log: Missing dTHXs.
23107              
23108              Subject: RE: perl@7595 builds not on cygwin
23109              From: "Eric Fifer" <egf7@columbia.edu>
23110              Date: Thu, 9 Nov 2000 19:26:50 -0000
23111              Message-ID: <000201c04a83$05ef1660$933570c2@fifer>
23112      Branch: perl
23113            ! ext/Devel/Peek/Peek.xs
23114 ____________________________________________________________________________
23115 [  7628] By: jhi                                   on 2000/11/09  14:48:27
23116         Log: Disable only the tests 99 and 166 for UTF-8 locales.
23117      Branch: perl
23118            ! t/pragma/locale.t
23119 ____________________________________________________________________________
23120 [  7627] By: jhi                                   on 2000/11/09  14:40:27
23121         Log: There's no =head3.
23122      Branch: perl
23123            ! pod/perlhack.pod
23124 ____________________________________________________________________________
23125 [  7626] By: jhi                                   on 2000/11/09  13:54:26
23126         Log: The generated boot_* headers are wrong.  Pickier compiler,
23127              such as KAI C++ will refuse to compile the resulting perlmain.
23128              
23129              Subject: [ID 20001109.005] Bug in minimod.pl, perl 5.6.0
23130              From: Harri Pasanen <harri.pasanen@trema.com>
23131              Date: Thu, 09 Nov 2000 14:23:28 +0100
23132              Message-Id: <3A0AA550.26D548A3@trema.com>
23133      Branch: perl
23134            ! minimod.pl
23135 ____________________________________________________________________________
23136 [  7625] By: jhi                                   on 2000/11/09  13:50:44
23137         Log: Subject: [PATCH: perl@7613] updates to Porting/pumpkin.pod
23138              From: Prymmer/Kahn <pvhp@best.com>
23139              Date: Wed, 8 Nov 2000 22:13:26 -0800 (PST)
23140              Message-ID: <Pine.BSF.4.21.0011082208390.5584-100000@shell8.ba.best.com>
23141              
23142              All except the "cow orker" change.
23143      Branch: perl
23144            ! Porting/pumpkin.pod
23145 ____________________________________________________________________________
23146 [  7624] By: jhi                                   on 2000/11/09  13:45:33
23147         Log: Fix for
23148              
23149              Subject: [ID 20001109.003] Not OK: perl v5.7.0 +DEVEL7620 on PA-RISC2.0 11.00 (UNINSTALLED)
23150              From: "H.Merijn Brand" <h.m.brand@hccnet.nl> 
23151              Date: Thu, 09 Nov 2000 11:05:52 +0100
23152              Message-Id: <20001109110452.66CF.H.M.BRAND@hccnet.nl>
23153      Branch: perl
23154            ! pod/perldiag.pod t/pragma/warn/pp_sys
23155 ____________________________________________________________________________
23156 [  7623] By: jhi                                   on 2000/11/09  13:37:16
23157         Log: Typo in an ifndef.
23158              
23159              Subject: Re: [PATCH 5.7.0] better messages from malloc()
23160              From: Joe Smith <jms@inwap.com>         
23161              Date: Thu, 09 Nov 2000 01:33:14 -0800
23162              Message-Id: <3A0A6F5A.1E3969BB@inwap.com>
23163      Branch: perl
23164            ! malloc.c
23165 ____________________________________________________________________________
23166 [  7622] By: jhi                                   on 2000/11/09  13:31:18
23167         Log: Remove unused extra arguments.
23168      Branch: metaconfig/U/perl
23169            ! perlxv.U
23170      Branch: perl
23171            ! Configure config_h.SH
23172 ____________________________________________________________________________
23173 [  7621] By: jhi                                   on 2000/11/09  13:16:36
23174         Log: More VMS moves on environment handling, from Charles Lane.
23175      Branch: perl
23176            ! t/pragma/locale.t
23177 ____________________________________________________________________________
23178 [  7620] By: jhi                                   on 2000/11/09  04:42:38
23179         Log: Subject: patch to detect stat followed by lstat(_): [ID 20001106.006] find2perl generated scripts issue new lstat()    on filehandle _ warning
23180              From: David Dyck <dcd@tc.fluke.com>
23181              Date: Wed, 8 Nov 2000 18:36:26 -0800 (PST)
23182              Message-ID: <Pine.LNX.4.30.0011081817490.177-100000@dd.tc.fluke.com>
23183      Branch: perl
23184            ! pp_sys.c
23185 ____________________________________________________________________________
23186 [  7619] By: jhi                                   on 2000/11/09  04:36:21
23187         Log: Forgot from #7618.
23188      Branch: perl
23189            ! lib/File/stat.pm
23190 ____________________________________________________________________________
23191 [  7618] By: jhi                                   on 2000/11/09  04:28:44
23192         Log: Make deleting for %ENV work for (newer versions of) VMS,
23193              from Craig A. Berry.
23194      Branch: perl
23195            ! vms/vms.c
23196 ____________________________________________________________________________
23197 [  7617] By: jhi                                   on 2000/11/09  04:25:05
23198         Log: Subject: [PATCH] Class::Struct at compile time
23199              From: "Casey R. Tweten" <crt@kiski.net>
23200              Date: Wed, 8 Nov 2000 20:46:41 -0500 (EST)
23201              Message-ID: <Pine.OSF.4.21.0011082041360.8238-100000@home.kiski.net>
23202      Branch: perl
23203            ! lib/Class/Struct.pm
23204 ____________________________________________________________________________
23205 [  7616] By: jhi                                   on 2000/11/09  04:15:17
23206         Log: Subject: [ID 20001108.013] spelling
23207              From: "Todd T. Fries" <todd@fries.int.mrleng.com>
23208              Date: Wed, 8 Nov 2000 18:36:42 -0600 (CST)
23209              Message-Id: <200011090036.eA90agN05921@fries.int.mrleng.com>
23210      Branch: perl
23211            ! lib/ftp.pl
23212 ____________________________________________________________________________
23213 [  7615] By: jhi                                   on 2000/11/09  04:12:42
23214         Log: Subject: [PATCH: perl@7613] add Encode to VMS build and tests
23215              From: Peter Prymmer <pvhp@forte.com>
23216              Date: Wed, 8 Nov 2000 15:29:06 -0800 (PST)
23217              Message-ID: <Pine.OSF.4.10.10011081524450.248546-100000@aspara.forte.com>
23218      Branch: perl
23219            ! configure.com
23220 ____________________________________________________________________________
23221 [  7614] By: jhi                                   on 2000/11/08  22:42:55
23222         Log: A missing aTHX_.
23223      Branch: perl
23224            ! ext/IPC/SysV/SysV.xs
23225 ____________________________________________________________________________
23226 [  7613] By: jhi                                   on 2000/11/08  19:30:21
23227         Log: Update Changes.
23228      Branch: perl
23229            ! Changes patchlevel.h
23230 ____________________________________________________________________________
23231 [  7612] By: jhi                                   on 2000/11/08  18:35:25
23232         Log: Subject: is this the appropriate patch to fix: [ID 20001106.006] find2perl generated scripts issue new lstat()    on filehandle _ warning
23233              From: David Dyck <dcd@tc.fluke.com>
23234              Date: Wed, 8 Nov 2000 10:05:44 -0800 (PST)
23235              Message-ID: <Pine.LNX.4.30.0011080957440.2572-100000@dd.tc.fluke.com>
23236      Branch: perl
23237            ! pp_sys.c
23238 ____________________________________________________________________________
23239 [  7611] By: jhi                                   on 2000/11/08  18:30:26
23240         Log: Subject: [PATCH bleadperl] Re: Patch 7533 prevents malloc.c from compiling on MachTen
23241              From: Dominic Dunlop <domo@computer.org>
23242              Date: Tue, 7 Nov 2000 12:05:25 +0100
23243              Message-Id: <p04320403b62d8e0870cf@[192.168.1.4]>
23244      Branch: perl
23245            ! malloc.c
23246 ____________________________________________________________________________
23247 [  7610] By: jhi                                   on 2000/11/08  18:25:14
23248         Log: Do not test UTF-8 locales since that the tests would require
23249              polymorphic regexen.
23250      Branch: perl
23251            ! t/pragma/locale.t
23252 ____________________________________________________________________________
23253 [  7609] By: jhi                                   on 2000/11/08  17:12:51
23254         Log: Locale buglets.
23255              
23256              Subject: RE: Locales support (setlocale) fixes
23257              From: "Konovalov, Vadim" <vkonovalov@lucent.com>
23258              Date: Wed, 8 Nov 2000 20:01:39 +0300
23259              Message-ID: <402099F49BEED211999700805FC7359F825283@ru0028exch01.spb.lucent.com>
23260      Branch: perl
23261            ! t/pragma/locale.t util.c
23262 ____________________________________________________________________________
23263 [  7608] By: jhi                                   on 2000/11/08  17:00:16
23264         Log: Deleting $ENV{PATH} in VMS is not recommendable.
23265      Branch: perl
23266            ! t/pragma/locale.t
23267 ____________________________________________________________________________
23268 [  7607] By: jhi                                   on 2000/11/08  16:58:26
23269         Log: Subject: PATCH std stdio for (Free)BSD
23270              From: Nicholas Clark <nick@ccl4.org>
23271              Date: Wed, 8 Nov 2000 15:36:29 +0000
23272              Message-ID: <20001108153629.D98736@plum.flirble.org>
23273      Branch: metaconfig
23274            ! U/compline/d_stdstdio.U
23275      Branch: perl
23276            ! Configure config_h.SH
23277 ____________________________________________________________________________
23278 [  7606] By: jhi                                   on 2000/11/08  16:43:31
23279         Log: Forgot to bump the line numbers in #7601.
23280      Branch: perl
23281            ! t/pragma/warn/pp_sys
23282 ____________________________________________________________________________
23283 [  7605] By: jhi                                   on 2000/11/08  16:39:12
23284         Log: More careful detection of how well NVs and UVs mix.
23285              
23286              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))
23287              From: Nicholas Clark <nick@ccl4.org>
23288              Date: Wed, 8 Nov 2000 15:14:12 +0000
23289              Message-ID: <20001108151412.B98736@plum.flirble.org>
23290              
23291              Added some SIGFPE paranoia.
23292      Branch: metaconfig/U/perl
23293            ! perlxv.U
23294      Branch: perl
23295            ! Configure config_h.SH
23296 ____________________________________________________________________________
23297 [  7604] By: jhi                                   on 2000/11/08  14:39:10
23298         Log: Subject: [patch perl@7595] VMS configure.com tweak
23299              From: "Craig A. Berry" <craigberry@mac.com>
23300              Date: Wed, 8 Nov 2000 00:24:12 -0600
23301              Message-Id: <p04330103b62e879ceeff@[192.168.56.177]>
23302      Branch: perl
23303            ! configure.com
23304 ____________________________________________________________________________
23305 [  7603] By: jhi                                   on 2000/11/08  14:27:11
23306         Log: Subject: [PATCH @7595] int/ptr casts in perlio.c
23307              From: Robin Barker <rmb1@cise.npl.co.uk>
23308              Date: Wed, 8 Nov 2000 11:11:39 GMT
23309              Message-Id: <200011081111.LAA07377@tempest.npl.co.uk>
23310      Branch: perl
23311            ! perlio.c
23312 ____________________________________________________________________________
23313 [  7602] By: jhi                                   on 2000/11/08  14:25:03
23314         Log: Fix for the tie-refhash string table leaks.
23315              
23316              From: Nick Ing-Simmons <nik@tiuk.ti.com> 
23317              Date: Wed, 8 Nov 2000 13:03:04 GMT
23318              Message-Id: <200011081303.NAA07042@mikado.tiuk.ti.com>
23319      Branch: perl
23320            ! t/lib/tie-refhash.t
23321 ____________________________________________________________________________
23322 [  7601] By: jhi                                   on 2000/11/08  14:21:08
23323         Log: Try to avoid flockless and emulationless places.
23324      Branch: perl
23325            ! t/pragma/warn/pp_sys
23326 ____________________________________________________________________________
23327 [  7600] By: jhi                                   on 2000/11/08  02:28:54
23328         Log: Overrideable keys, each, pop, push, shift, splice, unshift.
23329              
23330              Subject: [PATCH] prototyped functions that should be overrideable
23331              From: "Casey R. Tweten" <crt@kiski.net>
23332              Date: Fri, 3 Nov 2000 11:09:12 -0500 (EST)
23333              Message-ID: <Pine.OSF.4.21.0011031100470.17471-100000@home.kiski.net>
23334      Branch: perl
23335            ! toke.c
23336 ____________________________________________________________________________
23337 [  7599] By: jhi                                   on 2000/11/08  01:12:05
23338         Log: Make perlbug not insist on dumping to a file when stdout isn't a tty.
23339              
23340              Subject: [PATCH] perlbug.PL
23341              From: "Kurt D. Starsinic" <kstar@chapin.edu>
23342              Date: Mon, 6 Nov 2000 21:39:01 -0500
23343              Message-ID: <20001106213901.B20955@O2.chapin.edu>
23344      Branch: perl
23345            ! utils/perlbug.PL
23346 ____________________________________________________________________________
23347 [  7598] By: jhi                                   on 2000/11/07  23:42:00
23348         Log: Bad thinko in #7581 (I used the test program with the expanded
23349              values as-is).
23350      Branch: metaconfig
23351            ! U/compline/d_stdstdio.U
23352      Branch: perl
23353            ! Configure
23354 ____________________________________________________________________________
23355 [  7597] By: jhi                                   on 2000/11/07  21:43:29
23356         Log: Subject: [PATCH perl@7573] cygwin port
23357              From: "Fifer, Eric" <EFifer@sanwaint.com>
23358              Date: Tue, 7 Nov 2000 18:08:51 -0000 
23359              Message-ID: <779F20BCCE5AD31186A50008C75D99791717BB@silldn_mail1.sanwaint.com>
23360              
23361              Synchronize with Cygwin 1.1.5.
23362      Branch: perl
23363            ! AUTHORS README.cygwin cygwin/cygwin.c hints/cygwin.sh mg.c
23364            ! pod/perlport.pod unixish.h util.c
23365 ____________________________________________________________________________
23366 [  7596] By: jhi                                   on 2000/11/07  21:39:25
23367         Log: perlhack updates from H.Merijn Brand.
23368      Branch: perl
23369            ! pod/perlhack.pod
23370 ____________________________________________________________________________
23371 [  7595] By: jhi                                   on 2000/11/07  20:21:41
23372         Log: Update Changes.
23373      Branch: perl
23374            ! Changes patchlevel.h
23375 ____________________________________________________________________________
23376 [  7594] By: jhi                                   on 2000/11/07  19:18:58
23377         Log: Be more robust in Dynaloader.pm.
23378      Branch: perl
23379            ! ext/DynaLoader/DynaLoader_pm.PL
23380 ____________________________________________________________________________
23381 [  7593] By: jhi                                   on 2000/11/07  16:49:31
23382         Log: AUTHORS update.
23383      Branch: perl
23384            ! AUTHORS
23385 ____________________________________________________________________________
23386 [  7592] By: gsar                                  on 2000/11/07  16:39:51
23387         Log: normalize relative paths in virtualized current directory on windows,
23388              under ithreads (avoids ".." etc showing up in what Cwd::cwd()
23389              returns)
23390      Branch: perl
23391            ! win32/vdir.h
23392 ____________________________________________________________________________
23393 [  7591] By: jhi                                   on 2000/11/07  16:04:26
23394         Log: Too profiler-happy: with optimization the #7590 actually makes
23395              the test to run 0.5% _slower_.  Requires much more instrumentation.
23396              Retract #7590.
23397      Branch: perl
23398            ! regcomp.c regcomp.h
23399 ____________________________________________________________________________
23400 [  7590] By: jhi                                   on 2000/11/07  15:51:13
23401         Log: Shave off about 5% (Digital UNIX, -g, pixie) of the op/regexp
23402              execution time in regcomp.c S_cl_any() and S_cl_is_anything()
23403              by using memset() and testing bytewise (as opposed to bitwise).
23404      Branch: perl
23405            ! regcomp.c regcomp.h
23406 ____________________________________________________________________________
23407 [  7589] By: jhi                                   on 2000/11/07  12:56:39
23408         Log: Subject: [PATCH perl@7573] configure.com and st-lock.t changes for   
23409              From: "Craig A. Berry" <craig.berry@psinetcs.com>
23410              Date: Mon, 06 Nov 2000 23:45:30 -0500
23411              Message-Id: <0011079735.AA973576259@univpress.com>
23412      Branch: perl
23413            ! configure.com t/lib/st-lock.t
23414 ____________________________________________________________________________
23415 [  7588] By: jhi                                   on 2000/11/07  01:03:28
23416         Log: Tweak #7587.
23417      Branch: perl
23418            ! pod/perldiag.pod
23419 ____________________________________________________________________________
23420 [  7587] By: jhi                                   on 2000/11/07  01:00:27
23421         Log: A doc addition for bug id 20001105.019, beware \p.
23422      Branch: perl
23423            ! pod/perldiag.pod
23424 ____________________________________________________________________________
23425 [  7586] By: jhi                                   on 2000/11/07  00:32:22
23426         Log: Fake support of holey files in win/dosish platforms.
23427              
23428              Subject: SDBM_File under MS-Windows95/98 does not work correctly. (APR#1302)
23429              From: kipp@shonanblue.ne.jp
23430              Date: Mon, 6 Nov 2000 13:30:55 -0800
23431              Message-Id: <200011062130.eA6LUpZ17387@smtp3.ActiveState.com>
23432      Branch: perl
23433            ! ext/SDBM_File/sdbm/sdbm.c
23434 ____________________________________________________________________________
23435 [  7585] By: jhi                                   on 2000/11/07  00:12:54
23436         Log: Subject: Pod updates
23437              From: "Stephen P. Potter" <spp@spotter.yi.org>
23438              Date: Mon, 06 Nov 2000 18:56:43 -0500
23439              Message-Id: <200011062357.SAA18173@spotter.yi.org>
23440      Branch: perl
23441            ! README.dos README.os2 README.win32 pod/buildtoc.PL
23442            ! pod/perl.pod pod/perl5004delta.pod pod/perl5005delta.pod
23443            ! pod/perl56delta.pod pod/perldebguts.pod pod/perldebtut.pod
23444            ! pod/perldebug.pod pod/perldelta.pod pod/perldiag.pod
23445            ! pod/perlembed.pod pod/perlfaq.pod pod/perlfaq1.pod
23446            ! pod/perlfaq2.pod pod/perlfaq5.pod pod/perlfaq7.pod
23447            ! pod/perlfaq8.pod pod/perlfilter.pod pod/perlfunc.pod
23448            ! pod/perlguts.pod pod/perlhack.pod pod/perlhist.pod
23449            ! pod/perlipc.pod pod/perllexwarn.pod pod/perllocale.pod
23450            ! pod/perlmodlib.pod pod/perlnumber.pod pod/perlop.pod
23451            ! pod/perlopentut.pod pod/perlport.pod pod/perlre.pod
23452            ! pod/perlsub.pod pod/perltie.pod pod/perltoot.pod
23453            ! pod/perltootc.pod pod/perlunicode.pod
23454 ____________________________________________________________________________
23455 [  7584] By: jhi                                   on 2000/11/07  00:04:17
23456         Log: Varargs don't always work too well if one puts an unsigned
23457              char on the stack and pop an unsigned quad off the stack.
23458              
23459              Subject: Re: [ID 20001103.002] Not OK: perl v5.7.0 +DEVEL7523 on os2-64int-ld-2.30 (UNINSTALLED)
23460              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)         
23461              Date: Mon, 06 Nov 2000 15:19:05 -0800
23462              Message-ID: <pxzB6gzkgKXY092yn@efn.org>  
23463      Branch: perl
23464            ! utf8.c
23465 ____________________________________________________________________________
23466 [  7583] By: jhi                                   on 2000/11/06  23:58:48
23467         Log: %ENV note tweaks from Dan Sugalski.
23468      Branch: perl
23469            ! pod/perlport.pod vms/perlvms.pod
23470 ____________________________________________________________________________
23471 [  7582] By: jhi                                   on 2000/11/06  23:05:49
23472         Log: glibc5 detection by __GNU_LIBRARY__.
23473      Branch: perl
23474            ! toke.c
23475 ____________________________________________________________________________
23476 [  7581] By: jhi                                   on 2000/11/06  22:51:29
23477         Log: Make the stdio test program of 7427 less noisy while being 
23478              compiled so that Digital UNIX wouldn't get both
23479              d_stdio_ptr_lval_nochange_cnt and d_stdio_ptr_lval_sets_cnt
23480              undefined.  This makes perlio happy.
23481      Branch: metaconfig
23482            ! U/compline/d_stdstdio.U
23483      Branch: perl
23484            ! Configure config_h.SH
23485 ____________________________________________________________________________
23486 [  7580] By: jhi                                   on 2000/11/06  22:41:41
23487         Log: Document %ENV = () portability issues.
23488      Branch: perl
23489            ! pod/perlport.pod vms/perlvms.pod
23490 ____________________________________________________________________________
23491 [  7579] By: jhi                                   on 2000/11/06  21:29:24
23492         Log: VOS updates from Paul Green.
23493      Branch: perl
23494            ! vos/config.alpha.h vos/config.ga.def vos/config.ga.h
23495 ____________________________________________________________________________
23496 [  7578] By: jhi                                   on 2000/11/06  21:00:40
23497         Log: Sanitize the environment further.
23498      Branch: perl
23499            ! t/pragma/locale.t
23500 ____________________________________________________________________________
23501 [  7577] By: jhi                                   on 2000/11/06  20:53:51
23502         Log: Re-introduce 7552 lost in integration.
23503      Branch: perl
23504            ! perlio.c
23505 ____________________________________________________________________________
23506 [  7576] By: jhi                                   on 2000/11/06  20:33:46
23507         Log: Admit that the test leaks scalars.
23508      Branch: perl
23509            ! t/comp/proto.t
23510 ____________________________________________________________________________
23511 [  7575] By: jhi                                   on 2000/11/06  20:17:08
23512         Log: Integrate perlio.
23513      Branch: perl
23514           !> perlio.c
23515 ____________________________________________________________________________
23516 [  7574] By: nick                                  on 2000/11/06  20:07:28
23517         Log: Remove debug. Try (Mmap_t) on madvise() call.
23518      Branch: perlio
23519            ! perlio.c
23520 ____________________________________________________________________________
23521 [  7573] By: jhi                                   on 2000/11/06  13:56:05
23522         Log: Update Changes.
23523      Branch: perl
23524            ! Changes patchlevel.h
23525 ____________________________________________________________________________
23526 [  7572] By: jhi                                   on 2000/11/06  13:48:41
23527         Log: Subject: Re: rsync'ed patches vs. rsync'ed source
23528              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
23529              Date: Mon, 06 Nov 2000 10:11:42 +0100
23530              Message-Id: <20001106100920.9BAD.H.M.BRAND@hccnet.nl>
23531      Branch: perl
23532            ! pod/perlhack.pod
23533 ____________________________________________________________________________
23534 [  7571] By: jhi                                   on 2000/11/06  01:45:51
23535         Log: AUTHORS updates.
23536      Branch: perl
23537            ! AUTHORS
23538 ____________________________________________________________________________
23539 [  7570] By: jhi                                   on 2000/11/06  00:18:00
23540         Log: Fix for
23541              
23542              Subject: [ID 20000728.005] perl -P broken
23543              From: David Dyck <dcd@tc.fluke.com>
23544              Date: Fri, 28 Jul 2000 17:19:16 -0700
23545              Message-Id: <200007290019.RAA08484@dd.tc.fluke.com>
23546              
23547              (hopefully).  The fix is also not complete, it seems to break
23548              BOM swallowing for libc5 systems, but until someone figures
23549              out a way to do this without ftell(), this will do.
23550      Branch: perl
23551            ! toke.c
23552 ____________________________________________________________________________
23553 [  7569] By: jhi                                   on 2000/11/06  00:05:30
23554         Log: Document that the evaled syntax errors cause scalar leaks.
23555      Branch: perl
23556            ! t/comp/proto.t
23557 ____________________________________________________________________________
23558 [  7568] By: jhi                                   on 2000/11/05  23:14:47
23559         Log: opmini.o can linger from Configures past.
23560      Branch: perl
23561            ! Makefile.SH
23562 ____________________________________________________________________________
23563 [  7567] By: jhi                                   on 2000/11/05  21:28:39
23564         Log: Fake __FUNCTION__ for non-gcc builds, cast madvise()
23565              first argument correctly.
23566      Branch: perl
23567            ! perlio.c
23568 ____________________________________________________________________________
23569 [  7566] By: jhi                                   on 2000/11/05  21:15:56
23570         Log: Integrate perlio.
23571      Branch: perl
23572           !> perlio.c
23573 ____________________________________________________________________________
23574 [  7565] By: jhi                                   on 2000/11/05  21:15:13
23575         Log: Use -dM for gcc (the suggested patch did it only for Linux,
23576              but I think it can be generalized).
23577              
23578              Subject: Re: connect and $!{EINPROGRESS} pb (was [ID 20001030.010] [PATCH] io_multihomed.t failing)
23579              From: Pixel <pixel@mandrakesoft.com>
23580              Date: 05 Nov 2000 21:49:34 +0100 
23581              Message-ID: <ly8zqygn4x.fsf@leia.mandrakesoft.com>
23582      Branch: perl
23583            ! ext/Errno/Errno_pm.PL
23584 ____________________________________________________________________________
23585 [  7564] By: nick                                  on 2000/11/05  21:09:18
23586         Log: Added a mmap layer as a "subclass" of perlio.
23587              PERLIO=mmap ./perl harness passes
23588      Branch: perlio
23589            ! perlio.c
23590 ____________________________________________________________________________
23591 [  7563] By: jhi                                   on 2000/11/05  19:48:55
23592         Log: Add a note for future generations about bug id 20000229.006.
23593      Branch: perl
23594            ! malloc.c
23595 ____________________________________________________________________________
23596 [  7562] By: jhi                                   on 2000/11/05  19:38:24
23597         Log: Fix for bug id 19990615.008, pos() unset during s///ge.
23598      Branch: perl
23599            ! pp_ctl.c t/op/pos.t
23600 ____________________________________________________________________________
23601 [  7561] By: jhi                                   on 2000/11/05  18:21:46
23602         Log: Add =pod to be tidy.
23603      Branch: perl
23604            ! lib/Math/Complex.pm
23605 ____________________________________________________________________________
23606 [  7560] By: jhi                                   on 2000/11/05  17:38:46
23607         Log: Upgrade to Storable 1.0.6, from Raphael Manfredi.
23608      Branch: perl
23609            ! ext/Storable/ChangeLog ext/Storable/Storable.pm
23610            ! ext/Storable/Storable.xs t/lib/st-recurse.t
23611 ____________________________________________________________________________
23612 [  7559] By: jhi                                   on 2000/11/05  17:32:59
23613         Log: Subject: [Corrected/tested PATCH] Re: [ID 20001102.008] Not OK: perl v5.7.0 +DEVEL7503 on i686-linux 2.2.16
23614              From: "Peter J. Farley III" <pjfarley@banet.net>
23615              Date: Sun, 05 Nov 2000 11:55:59 -0500
23616              Message-Id: <4.3.1.0.20001105115341.00b35160@pop5.banet.net> 
23617      Branch: perl
23618            ! t/lib/syslog.t
23619 ____________________________________________________________________________
23620 [  7558] By: jhi                                   on 2000/11/05  17:29:19
23621         Log: Integrate perlio.
23622      Branch: perl
23623           !> perlio.c
23624 ____________________________________________________________________________
23625 [  7557] By: jhi                                   on 2000/11/05  17:22:01
23626         Log: A fix of sorts for 20000329.026, a better error message
23627              for a missing "use charnames" when using the \N{...}. 
23628      Branch: perl
23629            ! pod/perldiag.pod toke.c
23630 ____________________________________________________________________________
23631 [  7556] By: jhi                                   on 2000/11/05  16:33:50
23632         Log: Test tweak: show also the failed locales.
23633              
23634              Subject: [ID 20001105.001] Not OK: perl v5.7.0 +DEVEL7523 on i86pc-solaris 2.8  
23635              From: Lupe Christoph <lupe@lupe-christoph.de>         
23636              Date: Sun, 5 Nov 2000 12:39:27 +0100 (MET)
23637              Message-Id: <200011051139.MAA12442@lupe-christoph.de>
23638      Branch: perl
23639            ! t/pragma/locale.t
23640 ____________________________________________________________________________
23641 [  7555] By: nick                                  on 2000/11/05  11:09:34
23642         Log: Fix read from STDERR on raw unix layer for Solaris where fd 2 is
23643              open RDWR so does not fail. (pragma/warnings 303 again...)
23644      Branch: perlio
23645            ! perlio.c
23646 ____________________________________________________________________________
23647 [  7554] By: nick                                  on 2000/11/05  10:10:13
23648         Log: Fix case where ungetc(f,EOF) was allowed.
23649              Move PerlIO_ungetc() near PerlIO_putc()/PerlIO_getc() in the file
23650              so we can see similarities.
23651              Use types more carefully and a STDCHAR array in hope that this will
23652              fix Jarrko's 64bit machine.
23653      Branch: perlio
23654            ! perlio.c
23655 ____________________________________________________________________________
23656 [  7553] By: jhi                                   on 2000/11/05  01:12:16
23657         Log: Fix for
23658              
23659              Subject: [ID 20001004.007] taint propogation is inconsistent
23660              From: pimlott@idiomtech.com (Andrew Pimlott) 
23661              Date: Wed, 4 Oct 2000 23:17:44 -0400 (EDT)
23662              Message-Id: <m13h1XU-000SEmC@nolfolan.idiomtech.com>
23663              
23664              The culprit was sv_setsv() which was rather blindly
23665              propagating taint, which lead to behaviour where if
23666              a tainted anon hash value was seen all the hash values
23667              from then on at that level became tainted, or at any
23668              upper levels in the case of nested anon hashes.
23669      Branch: perl
23670            ! sv.c t/op/taint.t
23671 ____________________________________________________________________________
23672 [  7552] By: jhi                                   on 2000/11/04  23:44:18
23673         Log: Some cpps don't like splitting conditionals across several lines.
23674      Branch: perl
23675            ! perlio.c
23676 ____________________________________________________________________________
23677 [  7551] By: nick                                  on 2000/11/04  23:40:44
23678         Log: Integrate mainline
23679      Branch: perlio
23680           !> pp_hot.c t/op/taint.t
23681 ____________________________________________________________________________
23682 [  7550] By: nick                                  on 2000/11/04  23:39:05
23683         Log: Integrate mainline again
23684      Branch: perlio
23685           !> Configure config_h.SH embed.h embed.pl perl.h proto.h
23686           !> t/lib/b.t t/op/misc.t util.c
23687 ____________________________________________________________________________
23688 [  7549] By: jhi                                   on 2000/11/04  23:14:01
23689         Log: Fix for
23690              
23691              Subject: [ID 20001004.006] undef is never tainted
23692              From: pimlott@idiomtech.com (Andrew Pimlott)
23693              Date: Wed, 4 Oct 2000 21:57:43 -0400 (EDT)
23694              Message-Id: <m13h0I3-000SEmC@nolfolan.idiomtech.com>
23695              
23696              An undef read from a slurped file was not tainted.
23697      Branch: perl
23698            ! pp_hot.c t/op/taint.t
23699 ____________________________________________________________________________
23700 [  7548] By: jhi                                   on 2000/11/04  22:56:21
23701         Log: Test tweak ($Config{useperlio} is by default undef) .
23702      Branch: perl
23703            ! t/lib/b.t
23704 ____________________________________________________________________________
23705 [  7547] By: jhi                                   on 2000/11/04  22:43:56
23706         Log: Integrate perlio.
23707      Branch: perl
23708           +> lib/perlio.pm
23709           !> MANIFEST iperlsys.h objXSUB.h perlapi.c perlio.c
23710           !> pod/perlapi.pod t/lib/b.t
23711 ____________________________________________________________________________
23712 [  7546] By: jhi                                   on 2000/11/04  22:40:59
23713         Log: Configure would use a bad $myuname from an old config.sh.
23714              
23715              Subject: [PATCH 5.6.1-to-be and 5.7.x] Very old Configure myuname bug
23716              From: Andy Dougherty <doughera@lafayette.edu>
23717              Date: Sat, 4 Nov 2000 14:15:29 -0500 (EST)
23718              Message-ID: <Pine.SOL.4.10.10011041410120.982-100000@maxwell.phys.lafayette.edu>
23719      Branch: metaconfig
23720            ! U/modified/Oldconfig.U
23721      Branch: perl
23722            ! Configure config_h.SH
23723 ____________________________________________________________________________
23724 [  7545] By: jhi                                   on 2000/11/04  22:36:54
23725         Log: Subject: Locales support (setlocale) fixes
23726              From: "Konovalov, Vadim" <vkonovalov@lucent.com>
23727              Date: Sat, 4 Nov 2000 10:15:48 +0300 
23728              Message-ID: <402099F49BEED211999700805FC7359F82511F@ru0028exch01.spb.lucent.com>
23729              
23730              Modified quite a bit to be more portable.
23731      Branch: perl
23732            ! embed.h embed.pl perl.h proto.h util.c
23733 ____________________________________________________________________________
23734 [  7544] By: jhi                                   on 2000/11/04  22:32:47
23735         Log: Dying is too strict here, better just skip.
23736      Branch: perl
23737            ! t/op/misc.t
23738 ____________________________________________________________________________
23739 [  7543] By: nick                                  on 2000/11/04  21:55:13
23740         Log: Merge mainline
23741      Branch: perlio
23742           +> ext/Encode/Encode/cp1047.enc ext/Encode/Encode/cp37.enc
23743           +> ext/Encode/Encode/posix-bc.enc ext/re/hints/aix.pl
23744           +> t/lib/tie-refhash.t t/lib/tie-substrhash.t
23745           !> (integrate 64 files)
23746 ____________________________________________________________________________
23747 [  7542] By: jhi                                   on 2000/11/04  21:09:28
23748         Log: More Changes tweakery.
23749      Branch: perl
23750            ! Changes Porting/genlog
23751 ____________________________________________________________________________
23752 [  7541] By: jhi                                   on 2000/11/04  20:58:18
23753         Log: Changes fixups.
23754      Branch: perl
23755            ! Changes
23756 ____________________________________________________________________________
23757 [  7540] By: jhi                                   on 2000/11/04  20:42:38
23758         Log: Locale tweakery.  Add test case for bug id 20000809.003 to op/misc,
23759              create a "fast path" for locale name probing using "locale -a"
23760              if available, squash finally hopefully the s?printf resetting
23761              the numeric locale (since, IIUC perllocale, it never shouldn't). 
23762      Branch: perl
23763            ! sv.c t/op/misc.t t/pragma/locale.t
23764 ____________________________________________________________________________
23765 [  7539] By: nick                                  on 2000/11/04  19:56:10
23766         Log: PerlIO infrastructure complete.
23767      Branch: perlio
23768            + lib/perlio.pm
23769            ! MANIFEST iperlsys.h perlio.c t/lib/b.t
23770 ____________________________________________________________________________
23771 [  7538] By: nick                                  on 2000/11/04  14:31:32
23772         Log: Type tweaks + less contorted allocation scheme
23773      Branch: perlio
23774            ! perlio.c
23775 ____________________________________________________________________________
23776 [  7537] By: nick                                  on 2000/11/04  12:40:42
23777         Log: Fix for stdio as default "discipline" - PerlIO_init() was fdopen(2,"w")'ing
23778              a fresh FILE * rather than re-using stderr. Which meant PerlIO_stderr() was
23779              fully buffered rather than unbuffered (on Solaris, Linux seemed to do something
23780              sensible) which lead to some interesting fails.
23781      Branch: perlio
23782            ! perlio.c
23783 ____________________________________________________________________________
23784 [  7536] By: jhi                                   on 2000/11/04  00:20:02
23785         Log: Add FCNTL_CAN_LOCK.
23786              
23787              Subject: Re: [ID 20001030.011] Not OK: perl v5.7.0 +DEVEL7481 on VMS_AXP V7.1 (UNINSTALLED)
23788              From: Andy Dougherty <doughera@lafayette.edu>
23789              Date: Fri, 3 Nov 2000 15:32:14 -0500 (EST)
23790              Message-ID: <Pine.SOL.4.10.10011031528090.29-100000@maxwell.phys.lafayette.edu>
23791              
23792              Subject: Re: [ID 20001030.011] Not OK: perl v5.7.0 +DEVEL7481 on VMS_AXP V7.1 (UNINSTALLED)
23793              From: Andy Dougherty <doughera@lafayette.edu>
23794              In-Reply-To: <4.3.1.0.20001031222203.00b24b20@pop5.banet.net>
23795              Message-ID: <Pine.SOL.4.10.10011031532170.29-100000@maxwell.phys.lafayette.edu>
23796      Branch: metaconfig/U/perl
23797            + d_fcntl_can_lock.U
23798            ! startperl.U
23799      Branch: perl
23800            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
23801            ! config_h.SH epoc/config.sh pp_sys.c uconfig.h uconfig.sh
23802            ! vos/config.alpha.def vos/config.alpha.h vos/config.ga.def
23803            ! vos/config.ga.h win32/config.bc win32/config.gc
23804            ! win32/config.vc
23805 ____________________________________________________________________________
23806 [  7535] By: nick                                  on 2000/11/03  22:19:10
23807         Log: Implement stack of layers - (perlio.c _is_ derived from the old file honest...)
23808              - Works on Linux with
23809              perlio + unix
23810              stdio
23811              - Works on Solaris with
23812              perlio + unix
23813              - Fails ONE test (print to STDIN should fail) on Solaris with stdio.
23814              - Fails (hangs in openpid) if you try and stack
23815              perlio + stdio - Linux stdio's read() logic is hanging.
23816      Branch: perlio
23817            ! iperlsys.h perlio.c
23818 ____________________________________________________________________________
23819 [  7534] By: jhi                                   on 2000/11/03  15:16:02
23820         Log: Subject: Re: README.aix
23821              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
23822              Date: Fri, 03 Nov 2000 16:03:15 +0100
23823              Message-Id: <20001103151040.95C6.H.M.BRAND@hccnet.nl>
23824      Branch: perl
23825            ! README.aix
23826 ____________________________________________________________________________
23827 [  7533] By: jhi                                   on 2000/11/03  03:59:02
23828         Log: Subject: [PATCH 5.7.0] better messages from malloc()
23829              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
23830              Date: Wed, 1 Nov 2000 23:39:56 -0500
23831              Message-ID: <20001101233956.A520@monk.mps.ohio-state.edu>
23832      Branch: perl
23833            ! malloc.c pod/perldiag.pod
23834 ____________________________________________________________________________
23835 [  7532] By: jhi                                   on 2000/11/03  00:11:56
23836         Log: The #7521 touched things it shouldn't have.
23837      Branch: perl
23838            ! ext/POSIX/POSIX.xs ext/POSIX/typemap
23839 ____________________________________________________________________________
23840 [  7531] By: jhi                                   on 2000/11/02  22:32:33
23841         Log: Subject:  [PATCH] Perl@7504, vms/gen_shrfls.pl
23842              From: lane@DUPHY4.Physics.Drexel.Edu (Charles Lane)
23843              Date:     Thu, 2 Nov 2000 16:58:36 EST
23844              Message-Id: <001102165758.31020@DUPHY4.Physics.Drexel.Edu>
23845      Branch: perl
23846            ! vms/gen_shrfls.pl
23847 ____________________________________________________________________________
23848 [  7530] By: jhi                                   on 2000/11/02  22:08:49
23849         Log: Fix the problem discussed in
23850              
23851              Subject: [ID 20001015.004] Fwd: Tie::SubstrHash -- bug & fix (all Perl versions)
23852              Date: Mon, 16 Oct 2000 04:48:59 +0300 (EET DST) 
23853              Message-Id: <200010160148.EAA14523@alpha.hut.fi> 
23854              
23855              originally from Linc Madison.  Also Andreas König's comments
23856              taken into account.  Some other problems with Tie::SubstrHash
23857              fixed: didn't croak when the table exceeded the requested number
23858              of entries (as documented) but instead when the number of entries
23859              exceeded the size of the table, a croak() had an unnecessary \n,
23860              didn't have a CLEAR method, documented that there is no exists().
23861              Didn't fix to be strict-proof because the module uses &foo; and
23862              dynamic scope.  Added a test script exercizing both first tamely 
23863              the basic functionality, and then the failure cases reported by
23864              Linc Madison.
23865      Branch: perl
23866            + t/lib/tie-substrhash.t
23867            ! MANIFEST lib/Tie/SubstrHash.pm
23868 ____________________________________________________________________________
23869 [  7529] By: jhi                                   on 2000/11/02  17:58:08
23870         Log: recv() can fail and return undef.
23871              
23872              Subject: [ID 20001102.003] Net::Ping patch: "Bad arg lenght" error appears if host is unreachable    
23873              From: "Alexey V. Barantsev" <barancev@kazbek.ispras.ru>
23874              Date: Thu, 2 Nov 2000 20:12:20 +0300
23875              Message-Id: <200011021712.UAA07919@dallas.kazbek.ispras.ru>
23876      Branch: perl
23877            ! lib/Net/Ping.pm
23878 ____________________________________________________________________________
23879 [  7528] By: jhi                                   on 2000/11/02  17:49:09
23880         Log: Detpyo.
23881      Branch: perl
23882            ! pod/perlop.pod
23883 ____________________________________________________________________________
23884 [  7527] By: jhi                                   on 2000/11/02  15:48:37
23885         Log: Add Tie::RefHash::Nestable (lives in Tie/RefHash.pm),
23886              fix a autovivification bug in Tie::RefHash, add tests for both.
23887              
23888              Subject: Re: Tie::RefHash: use hash refs as keys in nested hashes
23889              From: Edward Avis <epa98@doc.ic.ac.uk>
23890              Date: Thu, 2 Nov 2000 15:24:30 +0000 (GMT)
23891              Message-ID: <Pine.LNX.4.21.0011021516010.8344-100000@texel03.doc.ic.ac.uk>
23892      Branch: perl
23893            + t/lib/tie-refhash.t
23894            ! MANIFEST lib/Tie/RefHash.pm
23895 ____________________________________________________________________________
23896 [  7526] By: jhi                                   on 2000/11/02  13:56:26
23897         Log: Test::Harness revealed buglets in the new DynaLoader.
23898              
23899              Subject: [ID 20001102.001] Not OK: perl v5.7.0 +DEVEL7523 on i686-linux 2.2.16a (UNINSTALLED)
23900              From: andreas.koenig@anima.de (Andreas J. Koenig)
23901              Date: 02 Nov 2000 11:26:48 +0100 
23902              Message-Id: <m3vgu6k6tz.fsf@ak-71.mind.de>
23903      Branch: perl
23904            ! ext/DynaLoader/DynaLoader_pm.PL
23905 ____________________________________________________________________________
23906 [  7525] By: jhi                                   on 2000/11/01  23:52:08
23907         Log: The entry for #7503 was missing.
23908      Branch: perl
23909            ! Changes
23910 ____________________________________________________________________________
23911 [  7524] By: jhi                                   on 2000/11/01  23:40:52
23912         Log: Update Changes.
23913      Branch: perl
23914            ! Changes patchlevel.h
23915 ____________________________________________________________________________
23916 [  7523] By: jhi                                   on 2000/11/01  22:57:09
23917         Log: More tweaking on the #7522 theme.
23918      Branch: perl
23919            ! ext/DynaLoader/DynaLoader_pm.PL
23920 ____________________________________________________________________________
23921 [  7522] By: jhi                                   on 2000/11/01  22:06:15
23922         Log: Expand %Config variables and %ENV variables only if
23923              so requested during build time using the
23924              PERL_BUILD_EXPAND_CONFIG_VARS and PERL_BUILD_EXPAND_ENV_VARS.
23925              Not expanding makes relocating distributions easier.
23926      Branch: perl
23927            ! ext/DynaLoader/DynaLoader_pm.PL
23928 ____________________________________________________________________________
23929 [  7521] By: jhi                                   on 2000/11/01  20:56:34
23930         Log: Make the POSIX::setuid and POSIX::setgid to really call setuid()
23931              and setgid() because they were just changing $< and $( which means
23932              only changing the real uid/gid, as opposed to changing both
23933              real and effective ids.  (The alternative way could have been
23934              in POSIX.pm to change $> and $), too, but making a direct call
23935              to the C API feels cleaner.)  Fixes the bug
23936              
23937              Subject: [ID 20000904.005] POSIX::setuid() Doesn't Call setuid()
23938              From: "Garry T. Williams" <garry@zvolve.com>
23939              Date: Mon, 4 Sep 2000 12:09:44 -0400 (EDT)
23940              Message-Id: <200009041609.e84G9iN12155@ifr.inside.zvolve.net>
23941      Branch: perl
23942            ! ext/POSIX/POSIX.pm ext/POSIX/POSIX.pod ext/POSIX/POSIX.xs
23943            ! ext/POSIX/typemap pod/perlvar.pod
23944 ____________________________________________________________________________
23945 [  7520] By: jhi                                   on 2000/11/01  20:08:33
23946         Log: Subject: [ID 20000904.004] perlsec Manual Page Incorrect Doing "Safe Backticks"
23947              From: "Garry T. Williams" <garry@zvolve.com>
23948              Date: Mon, 4 Sep 2000 11:32:38 -0400 (EDT)
23949              Message-Id: <200009041532.e84FWcl12106@ifr.inside.zvolve.net>
23950      Branch: perl
23951            ! pod/perlsec.pod
23952 ____________________________________________________________________________
23953 [  7519] By: jhi                                   on 2000/11/01  20:01:22
23954         Log: Locale warning explanation tweak.
23955      Branch: perl
23956            ! pod/perldiag.pod
23957 ____________________________________________________________________________
23958 [  7518] By: jhi                                   on 2000/11/01  18:57:13
23959         Log: C.pm part of
23960              
23961              Subject: [ID 20001010.001] [Daniel.Stutz@astaro.de: perlcc and C.pm in perl-5.7.0]
23962              From: Jarkko Hietaniemi <jhi@iki.fi>
23963              Date: Tue, 10 Oct 2000 08:22:28 -0500
23964              Message-Id: <20001010082228.B17030@chaos.wustl.edu>
23965      Branch: perl
23966            ! ext/B/B/C.pm
23967 ____________________________________________________________________________
23968 [  7517] By: jhi                                   on 2000/11/01  18:41:59
23969         Log: Subject: [ID 20001005.006] Documentation -- description of qr//
23970              From: Martien Verbruggen <mgjv@comdyn.com.au>
23971              Date: Fri, 6 Oct 2000 14:09:10 +1100
23972              Message-Id: <200010060309.OAA03457@verbruggen.comdyn.com.au>
23973      Branch: perl
23974            ! pod/perlop.pod
23975 ____________________________________________________________________________
23976 [  7516] By: jhi                                   on 2000/11/01  18:34:55
23977         Log: Generalize the Camel wording.
23978              
23979              Subject: Re: perlfaq style changes
23980              From: John Borwick <jhborwic@unity.ncsu.edu>
23981              Date: Wed, 1 Nov 2000 13:19:21 -0500 (EST)
23982              Message-ID: <Pine.GSO.4.21.0011011318270.7428-100000@eos00du.eos.ncsu.edu>
23983      Branch: perl
23984            ! pod/perlfaq3.pod pod/perlfaq8.pod pod/perlfaq9.pod
23985 ____________________________________________________________________________
23986 [  7515] By: jhi                                   on 2000/11/01  16:52:31
23987         Log: Subject: [ID 20001005.004] doc bug: perlsec misleading re file output
23988              From: pimlott@idiomtech.com (Andrew Pimlott)
23989              Date: Thu, 5 Oct 2000 13:20:58 -0400 (EDT)
23990              Message-Id: <m13hEhW-000SEmC@nolfolan.idiomtech.com>
23991      Branch: perl
23992            ! pod/perlsec.pod
23993 ____________________________________________________________________________
23994 [  7514] By: jhi                                   on 2000/11/01  15:03:40
23995         Log: More AIX lore.
23996      Branch: perl
23997            ! ext/re/hints/aix.pl
23998 ____________________________________________________________________________
23999 [  7513] By: jhi                                   on 2000/11/01  14:48:30
24000         Log: Subject: [ID 20001101.001] Net::Ping icmp odd $bytes
24001              From: root <root@chronos.fi.muni.cz>
24002              Date: Wed, 1 Nov 2000 12:31:32 +0100
24003              Message-Id: <200011011131.MAA03310@chronos.fi.muni.cz>
24004      Branch: perl
24005            ! lib/Net/Ping.pm
24006 ____________________________________________________________________________
24007 [  7512] By: jhi                                   on 2000/11/01  14:46:47
24008         Log: Subject: [ID 20001031.004] Uninitialized auto variable in regcomp.c
24009              From: Martin Husemann <martin@duskware.de>
24010              Date: Tue, 31 Oct 2000 23:39:35 +0100 (MET)
24011              Message-Id: <200010312239.e9VMdZR01580@night-porter.duskware.de>
24012      Branch: perl
24013            ! regcomp.c
24014 ____________________________________________________________________________
24015 [  7511] By: jhi                                   on 2000/11/01  14:39:50
24016         Log: AUTHORS updates.
24017      Branch: perl
24018            ! AUTHORS
24019 ____________________________________________________________________________
24020 [  7510] By: jhi                                   on 2000/11/01  14:29:50
24021         Log: Subject: [PATCH] startperl to respect versiononly
24022              From: Robin Barker <rmb1@cise.npl.co.uk> 
24023              Date: Tue, 31 Oct 2000 16:29:36 GMT
24024              Message-Id: <200010311629.QAA01771@tempest.npl.co.uk>
24025      Branch: metaconfig/U/perl
24026            ! startperl.U
24027      Branch: perl
24028            ! Configure config_h.SH
24029 ____________________________________________________________________________
24030 [  7509] By: jhi                                   on 2000/11/01  14:19:53
24031         Log: printf UVs the correct way, noticed by Robin Barker.
24032      Branch: perl
24033            ! utf8.c
24034 ____________________________________________________________________________
24035 [  7508] By: jhi                                   on 2000/11/01  14:10:03
24036         Log: Do not cleanup *% because the % has special meanings in some
24037              shell environments.
24038      Branch: perl
24039            ! ext/Storable/Makefile.PL
24040 ____________________________________________________________________________
24041 [  7507] By: jhi                                   on 2000/11/01  14:06:00
24042         Log: The NonStop-UX libraries have a novel way to say NaN.
24043      Branch: perl
24044            ! t/lib/bigfltpm.t
24045 ____________________________________________________________________________
24046 [  7506] By: jhi                                   on 2000/11/01  14:03:35
24047         Log: The osname has been lowercased by now, from Tom Bates.
24048      Branch: metaconfig
24049            ! U/modified/Oldconfig.U
24050      Branch: perl
24051            ! Configure config_h.SH
24052 ____________________________________________________________________________
24053 [  7505] By: jhi                                   on 2000/10/31  19:18:39
24054         Log: The compiler is either gcc or cc, from Tom Bates.
24055      Branch: perl
24056            ! hints/nonstopux.sh
24057 ____________________________________________________________________________
24058 [  7504] By: jhi                                   on 2000/10/31  14:53:42
24059         Log: Update Changes.
24060      Branch: perl
24061            ! Changes patchlevel.h
24062 ____________________________________________________________________________
24063 [  7503] By: jhi                                   on 2000/10/31  14:30:50
24064         Log: Whitespace style tweak.  Was originally going to see to
24065              
24066              Subject: PATCH (Re: PerlIO - Configure tweak for Linux/glibc?)
24067              From: Joe Smith <jms@inwap.com>
24068              Date: Mon, 30 Oct 2000 18:47:57 -0800
24069              Message-Id: <39FE32DD.24AAC4D@inwap.com>
24070              
24071              but that had already been taken care of.
24072      Branch: metaconfig
24073            ! U/compline/d_stdstdio.U
24074      Branch: perl
24075            ! Configure config_h.SH
24076 ____________________________________________________________________________
24077 [  7502] By: jhi                                   on 2000/10/31  14:25:02
24078         Log: AUTHORS tweaks.
24079      Branch: perl
24080            ! AUTHORS
24081 ____________________________________________________________________________
24082 [  7501] By: jhi                                   on 2000/10/31  14:23:59
24083         Log: Subject: perlfaq style changes
24084              From: John Borwick <jhborwic@unity.ncsu.edu>
24085              Date: Tue, 31 Oct 2000 03:15:11 -0500 (EST)
24086              Message-ID: <Pine.GSO.4.21.0010310307500.5819-100000@eos00du.eos.ncsu.edu>
24087      Branch: perl
24088            ! pod/perlfaq.pod pod/perlfaq1.pod pod/perlfaq2.pod
24089            ! pod/perlfaq3.pod pod/perlfaq4.pod pod/perlfaq5.pod
24090            ! pod/perlfaq6.pod pod/perlfaq7.pod pod/perlfaq8.pod
24091            ! pod/perlfaq9.pod
24092 ____________________________________________________________________________
24093 [  7500] By: jhi                                   on 2000/10/31  14:22:15
24094         Log: Be more lenient on bad UTF-8 when doing bit arithmetics.
24095              
24096              Subject: Re: [ID 20000918.005] ~ on wide chars
24097              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
24098              Date: Mon, 30 Oct 2000 21:09:55 -0800
24099              Message-ID: <jQl/5gzkgWYL092yn@efn.org>
24100              
24101              (The ord() part of the patch skipped.)
24102      Branch: perl
24103            ! doop.c
24104 ____________________________________________________________________________
24105 [  7499] By: jhi                                   on 2000/10/31  14:20:08
24106         Log: Subject: [ID 20001030.001] 5.7.0-7489: Null-Pointer reference in mg.c
24107              From: Jens Hamisch <jens@Strawberry.COM>
24108              Date: Mon, 30 Oct 2000 15:17:07 +0100
24109              Message-Id: <20001030151707.A9597@Strawberry.COM>
24110      Branch: perl
24111            ! av.c
24112 ____________________________________________________________________________
24113 [  7498] By: jhi                                   on 2000/10/31  14:16:29
24114         Log: Subject: [PATCH: perl@7483] add three new EBCDIC Encode-ings && many tests
24115              From: Peter Prymmer <pvhp@forte.com>
24116              Date: Mon, 30 Oct 2000 16:59:11 -0800 (PST)
24117              Message-ID: <Pine.OSF.4.10.10010301643590.67363-100000@aspara.forte.com>
24118      Branch: perl
24119            + ext/Encode/Encode/cp1047.enc ext/Encode/Encode/cp37.enc
24120            + ext/Encode/Encode/posix-bc.enc
24121            ! MANIFEST t/lib/encode.t
24122 ____________________________________________________________________________
24123 [  7497] By: jhi                                   on 2000/10/31  14:13:22
24124         Log: Subject: [PATCH: perl@7483] fix coded control chars in cgi-html.t
24125              From: Peter Prymmer <pvhp@forte.com>
24126              Date: Mon, 30 Oct 2000 17:48:11 -0800 (PST)
24127              Message-ID: <Pine.OSF.4.10.10010301746350.69159-100000@aspara.forte.com>
24128      Branch: perl
24129            ! t/lib/cgi-html.t
24130 ____________________________________________________________________________
24131 [  7496] By: jhi                                   on 2000/10/31  14:12:05
24132         Log: Subject: [PATCH: perl@7483] CRLF fix for cgi-function.t tests
24133              From: Peter Prymmer <pvhp@forte.com>
24134              Date: Mon, 30 Oct 2000 17:46:33 -0800 (PST)
24135              Message-ID: <Pine.OSF.4.10.10010301745120.69159-100000@aspara.forte.com>
24136      Branch: perl
24137            ! t/lib/cgi-function.t
24138 ____________________________________________________________________________
24139 [  7495] By: jhi                                   on 2000/10/31  14:11:08
24140         Log: Subject: [PATCH: perl@7483] generalize AIX ccversion hack for re extension
24141              From: Peter Prymmer <pvhp@forte.com>
24142              Date: Mon, 30 Oct 2000 16:41:21 -0800 (PST)
24143              Message-ID: <Pine.OSF.4.10.10010301634500.67363-100000@aspara.forte.com>
24144      Branch: perl
24145            + ext/re/hints/aix.pl
24146            ! MANIFEST ext/re/Makefile.PL
24147 ____________________________________________________________________________
24148 [  7494] By: jhi                                   on 2000/10/31  14:08:32
24149         Log: Use Errno magic.
24150              
24151              Subject: [ID 20001030.009] [PATCH] ftmp-mktemp failing
24152              From: Casey Tweten <perl@ctweten.amsite.com>
24153              Date: Mon, 30 Oct 2000 15:51:17 -0500
24154              Message-Id: <200010302051.e9UKpHd02194@ctweten.amsite.com>
24155      Branch: perl
24156            ! lib/File/Temp.pm
24157 ____________________________________________________________________________
24158 [  7493] By: jhi                                   on 2000/10/31  14:05:07
24159         Log: Add a perlbug flag, -A, to avoid acknowledgement messages.
24160              
24161              Subject: PATCH (Re: [ID 20001030.008] OK: perl v5.7.0 +DEVEL7445 on i586-linux 2.2.16 (UNINSTALLED))
24162              From: Nicholas Clark <nick@ccl4.org>
24163              Date: Mon, 30 Oct 2000 17:38:45 +0000
24164              Message-ID: <20001030173845.O60355@plum.flirble.org>
24165      Branch: perl
24166            ! Makefile.SH utils/perlbug.PL
24167 ____________________________________________________________________________
24168 [  7492] By: nick                                  on 2000/10/30  19:37:23
24169         Log: Change files which are mysteriously different to mainline to be
24170              copies of mainline.
24171      Branch: perlio
24172            ! objXSUB.h perlapi.c pod/perlapi.pod
24173 ____________________________________________________________________________
24174 [  7491] By: nick                                  on 2000/10/30  18:05:54
24175         Log: Perlio fixes discovered on big-endian & very traditional Solaris:
24176              - typo in endian code in putc.
24177              - Don't allow read of write-only files and vice-versa
24178              - and off-by-one in flush-all loop.
24179              Remove debug calls as they were using GCC specific features.
24180      Branch: perlio
24181            ! perlio.c
24182 ____________________________________________________________________________
24183 [  7490] By: nick                                  on 2000/10/29  21:45:45
24184         Log: Integrate mainline to perlio
24185      Branch: perlio
24186           !> lib/ExtUtils/Manifest.pm op.c t/comp/proto.t t/pragma/utf8.t
24187           !> toke.c
24188 ____________________________________________________________________________
24189 [  7489] By: jhi                                   on 2000/10/29  21:11:08
24190         Log: Subject: [Chris Winters <cwinters@intes.net>] patch to ExtUtils::Manifest
24191              From: andreas.koenig@anima.de (Andreas J. Koenig)
24192              Date: 29 Oct 2000 22:05:59 +0100
24193              Message-ID: <m3snpfqrwo.fsf@ak-71.mind.de>
24194      Branch: perl
24195            ! lib/ExtUtils/Manifest.pm
24196 ____________________________________________________________________________
24197 [  7488] By: jhi                                   on 2000/10/29  21:07:47
24198         Log: Tests for #7487.
24199              
24200              Subject: Re: [ID 20001029.002] Not OK: perl v5.7.0 +DEVEL7462 on i686-linux 2.2.16a (UNINSTALLED)
24201              From: andreas.koenig@anima.de (Andreas J. Koenig)
24202              Date: 29 Oct 2000 19:37:09 +0100
24203              Message-ID: <m34s1vsdd6.fsf@ak-71.mind.de>
24204      Branch: perl
24205            ! t/comp/proto.t
24206 ____________________________________________________________________________
24207 [  7487] By: jhi                                   on 2000/10/29  21:06:27
24208         Log: constsub spillage.
24209              
24210              Subject: Re: [ID 20001029.002] Not OK: perl v5.7.0 +DEVEL7462 on i686-linux 2.2.16a (UNINSTALLED)
24211              From: John Tobey <jtobey@john-edwin-tobey.org>
24212              Date: Sun, 29 Oct 2000 11:37:45 -0500 (EST)
24213              Message-Id: <m13pvSr-000FObC@feynman.localnet>
24214      Branch: perl
24215            ! op.c
24216 ____________________________________________________________________________
24217 [  7486] By: nick                                  on 2000/10/29  21:05:04
24218         Log: Integrate mainline to perlio branch
24219      Branch: perlio
24220           +> Porting/repository.pod lib/unicode/Is/DCmedial.pl
24221           +> t/lib/tie-splice.t vos/config.alpha.def vos/config.alpha.h
24222           +> vos/config.ga.def vos/config.ga.h vos/configure_perl.cm
24223           +> vos/install_perl.cm
24224            - MAINTAIN fix_pl lib/unicode/Is/DCinital.pl vos/config.def
24225            - vos/config.h vos/config_h.SH_orig
24226           !> (integrate 141 files)
24227 ____________________________________________________________________________
24228 [  7485] By: jhi                                   on 2000/10/29  21:00:47
24229         Log: Make \x{...} consistently produce UTF-8.
24230              
24231              Subject: Re: \x{...} is confused 
24232              From: Simon Cozens <simon@cozens.net>
24233              Date: Sun, 29 Oct 2000 19:36:48 +0000
24234              Message-ID: <20001029193648.A6287@pembro4.pmb.ox.ac.uk>
24235      Branch: perl
24236            ! t/pragma/utf8.t toke.c
24237 ____________________________________________________________________________
24238 [  7484] By: nick                                  on 2000/10/29  20:05:29
24239         Log: PerlIO passes all tests.
24240      Branch: perlio
24241            ! perlio.c
24242 ____________________________________________________________________________
24243 [  7483] By: jhi                                   on 2000/10/29  18:06:55
24244         Log: Update Changes.
24245      Branch: perl
24246            ! Changes patchlevel.h
24247 ____________________________________________________________________________
24248 [  7482] By: nick                                  on 2000/10/29  17:43:28
24249         Log: Include <unistd.h> to get correct lseek() prototype etc.
24250              (I thought perl.h did that) - down to two fails
24251              - comp/require.t (last test)
24252              - lib/io_xs.t - possibly import/export of FILE * ?
24253      Branch: perlio
24254            ! perlio.c
24255 ____________________________________________________________________________
24256 [  7481] By: jhi                                   on 2000/10/29  17:02:37
24257         Log: UTF-8 decoder tweak.
24258      Branch: perl
24259            ! utf8.c
24260 ____________________________________________________________________________
24261 [  7480] By: nick                                  on 2000/10/29  16:26:11
24262         Log: Fixed two bugs:
24263              - error code not being set on close (of broken pipe)
24264              - append mode was truncating.
24265              At least one seek/tell bug remains.
24266      Branch: perlio
24267            ! perlio.c
24268 ____________________________________________________________________________
24269 [  7479] By: nick                                  on 2000/10/29  11:18:16
24270         Log: Prototype (stdio-like) PerlIO passing basic tests. Checked in
24271              in case of accidents. Still several worrying fails, no line disciplines yet.
24272      Branch: perlio
24273            ! iperlsys.h perlio.c
24274 ____________________________________________________________________________
24275 [  7478] By: jhi                                   on 2000/10/29  02:04:01
24276         Log: Add also emailless people.
24277      Branch: perl
24278            ! AUTHORS
24279 ____________________________________________________________________________
24280 [  7477] By: jhi                                   on 2000/10/29  01:36:00
24281         Log: The #7476 needs a MANIFEST change, too.
24282      Branch: perl
24283            ! MANIFEST
24284 ____________________________________________________________________________
24285 [  7476] By: jhi                                   on 2000/10/29  01:35:21
24286         Log: Have only one master list of AUTHORS, drop unmaintained MAINTAIN.
24287      Branch: perl
24288            - MAINTAIN
24289            ! AUTHORS Changes
24290 ____________________________________________________________________________
24291 [  7475] By: jhi                                   on 2000/10/28  23:57:25
24292         Log: De-quoted-unreadable to ISO Latin 1.
24293              (There's one ISO-2022-JP name in Changes5.004.)
24294      Branch: perl
24295            ! Changes Changes5.6
24296 ____________________________________________________________________________
24297 [  7474] By: jhi                                   on 2000/10/28  19:13:06
24298         Log: Subject: [ID 20001027.007] uniq array in perlfaq
24299              From: Hans Ginzel <hans@kolej.mff.cuni.cz>     
24300              Date: Fri, 27 Oct 2000 19:28:30 +0200
24301              Message-Id: <20001027192830.A1564@kolej.mff.cuni.cz> 
24302      Branch: perl
24303            ! pod/perlfaq4.pod
24304 ____________________________________________________________________________
24305 [  7473] By: jhi                                   on 2000/10/28  18:02:05
24306         Log: Locking null mutexes is not recommendable.
24307              
24308              Subject: Re: [ID 20001027.008] Not OK: perl v5.7.0 +DEVEL7462 on i386-freebsd-thread-64all 4.1-stable (UNINSTALLED) 
24309              From: Hugo <hv@crypt.compulink.co.uk>
24310              Date: Sat, 28 Oct 2000 18:41:12 +0100
24311              Message-Id: <200010281741.SAA31327@crypt.compulink.co.uk>
24312      Branch: perl
24313            ! op.c
24314 ____________________________________________________________________________
24315 [  7472] By: jhi                                   on 2000/10/28  17:52:58
24316         Log: Better create a true mailing list for the repository keepers.
24317      Branch: perl
24318            ! Porting/repository.pod
24319 ____________________________________________________________________________
24320 [  7471] By: jhi                                   on 2000/10/28  17:28:24
24321         Log: Add the repository doc by Malcolm, Sarathy, and by Simon,
24322              name as suggested by Michael Bletzinger <mbletzin@ncsa.uiuc.edu>.
24323      Branch: perl
24324            + Porting/repository.pod
24325            ! MANIFEST
24326 ____________________________________________________________________________
24327 [  7470] By: jhi                                   on 2000/10/28  17:20:54
24328         Log: Subject: DOC PATCH 5.6.0
24329              From: mjd@plover.com
24330              Date: 27 Oct 2000 17:32:44 -0000
24331              Message-ID: <20001027173244.23754.qmail@plover.com>
24332      Branch: perl
24333            ! pod/perlfunc.pod
24334 ____________________________________________________________________________
24335 [  7469] By: jhi                                   on 2000/10/28  17:16:45
24336         Log: Subject: [ID 20001027.010] [PATCH] Add info on building CPAN modules to README.dos
24337              From: "Peter J. Farley III" <pjfarley@banet.net>
24338              Date: Fri, 27 Oct 2000 20:32:56 -0400
24339              Message-Id: <4.3.1.0.20001027202303.00ad8900@pop5.banet.net>
24340      Branch: perl
24341            ! README.dos
24342 ____________________________________________________________________________
24343 [  7468] By: jhi                                   on 2000/10/28  17:07:18
24344         Log: Make target reordering to avoid pointless re-makes.
24345              
24346              Subject: Re: Total re-make of 'make okfile' after 7451 ?
24347              From: Nicholas Clark <nick@ccl4.org>
24348              Date: Sat, 28 Oct 2000 00:31:02 +0100
24349              Message-ID: <20001028003101.A54517@plum.flirble.org>
24350      Branch: perl
24351            ! Makefile.SH
24352 ____________________________________________________________________________
24353 [  7467] By: jhi                                   on 2000/10/28  17:05:31
24354         Log: Subject: [ID 20001027.005] Nit in perlos2.pod - space needs deleted on line 118
24355              From: lvirden@cas.org
24356              Date: Fri, 27 Oct 2000 13:14:41 -0400 (EDT)
24357              Message-Id: <200010271714.NAA22015@lwv26awu.cas.org>
24358      Branch: perl
24359            ! README.os2
24360 ____________________________________________________________________________
24361 [  7466] By: jhi                                   on 2000/10/28  16:09:16
24362         Log: Upgrade to CPAN 1.58_55.
24363              
24364              Subject: CPAN.pm status
24365              From: andreas.koenig@anima.de (Andreas J. Koenig) 
24366              Date: 28 Oct 2000 08:18:00 +0200 
24367              Message-ID: <m3n1fpa3qf.fsf@ak-71.mind.de>
24368      Branch: perl
24369            ! lib/CPAN.pm lib/CPAN/FirstTime.pm
24370 ____________________________________________________________________________
24371 [  7465] By: jhi                                   on 2000/10/28  16:02:47
24372         Log: The reëntrant version shouldn't be needed unless USE_PURE_BISON.
24373      Branch: perl
24374            ! embed.h embed.pl perl.h proto.h toke.c
24375 ____________________________________________________________________________
24376 [  7464] By: nick                                  on 2000/10/28  10:43:44
24377         Log: Fix for sv_2iv() on "shared" value from keys %hash.
24378      Branch: perl
24379            ! sv.c
24380 ____________________________________________________________________________
24381 [  7463] By: jhi                                   on 2000/10/27  16:18:29
24382         Log: Update Changes.
24383      Branch: perl
24384            ! Changes patchlevel.h
24385 ____________________________________________________________________________
24386 [  7462] By: jhi                                   on 2000/10/27  16:17:44
24387         Log: Too enthusiastic editing in #7460.
24388      Branch: metaconfig
24389            ! U/modified/Oldsym.U
24390      Branch: perl
24391            ! Configure config_h.SH
24392 ____________________________________________________________________________
24393 [  7461] By: jhi                                   on 2000/10/27  15:37:38
24394         Log: Retract #7459, the script needs more work.
24395      Branch: perl
24396            - mkreef
24397            ! MANIFEST
24398 ____________________________________________________________________________
24399 [  7460] By: jhi                                   on 2000/10/27  15:23:14
24400         Log: Use $sort, $uniq (and $tr) consistently as wondered
24401              by Nicholas Clark.
24402      Branch: metaconfig
24403            ! U/modified/Cppsym.U U/modified/Getfile.U U/modified/Guess.U
24404            ! U/modified/Myread.U U/modified/Oldsym.U U/modified/Signal.U
24405            ! U/modified/libc.U
24406      Branch: perl
24407            ! Configure config_h.SH
24408 ____________________________________________________________________________
24409 [  7459] By: jhi                                   on 2000/10/27  15:02:07
24410         Log: (Retracted by #7461)
24411              
24412              Add a shell script for creating/removing symbolic link farms,
24413              useful for keeping the source code read-only and doing the
24414              builds somewhere else.
24415      Branch: perl
24416            + mkreef
24417            ! MANIFEST
24418 ____________________________________________________________________________
24419 [  7458] By: jhi                                   on 2000/10/27  14:42:20
24420         Log: Do away with the fix_pl.
24421      Branch: perl
24422            - fix_pl
24423            ! MANIFEST Makefile.SH
24424 ____________________________________________________________________________
24425 [  7457] By: jhi                                   on 2000/10/27  12:43:13
24426         Log: Subject: [ID 20001027.002] Patch 7380 followup - Perl_modfl *must* be defined
24427              From: Jens Hamisch <jens@Strawberry.COM>
24428              Date: Fri, 27 Oct 2000 14:38:21 +0200
24429              Message-Id: <20001027143821.B3366@Strawberry.COM>
24430      Branch: perl
24431            ! perl.h
24432 ____________________________________________________________________________
24433 [  7456] By: jhi                                   on 2000/10/27  12:33:42
24434         Log: Subject: [PATCH] todo
24435              From: Nicholas Clark <nick@ccl4.org>
24436              Date: Thu, 26 Oct 2000 22:32:29 +0100
24437              Message-ID: <20001026223229.A44540@plum.flirble.org>
24438      Branch: perl
24439            ! pod/perltodo.pod
24440 ____________________________________________________________________________
24441 [  7455] By: jhi                                   on 2000/10/27  12:02:21
24442         Log: Subject: Re: [PATCH bleadperl] ripples from constsub patch
24443              From: John Tobey <jtobey@john-edwin-tobey.org>
24444              Date: Thu, 26 Oct 2000 22:29:53 -0400 (EDT)
24445              Message-Id: <m13ozHF-000FObC@feynman.localnet>
24446      Branch: perl
24447            ! op.c t/pragma/sub_lval.t
24448 ____________________________________________________________________________
24449 [  7454] By: jhi                                   on 2000/10/27  11:59:42
24450         Log: Subject: [ID 20001026.006] C<use integer; $x += 1> gives uninitialized warning
24451              From: sthoenna@efn.org
24452              Date: Thu, 26 Oct 2000 14:00:03 -0700 (PDT)
24453              Message-Id: <200010262100.e9QL03U06386@garcia.efn.org>
24454      Branch: perl
24455            ! pp.c t/op/assignwarn.t
24456 ____________________________________________________________________________
24457 [  7453] By: jhi                                   on 2000/10/27  00:15:08
24458         Log: Upgrade to Storable 1.0.5, from Raphael Manfredi.
24459      Branch: perl
24460            ! ext/Storable/ChangeLog ext/Storable/Storable.pm
24461            ! ext/Storable/Storable.xs t/lib/st-lock.t
24462 ____________________________________________________________________________
24463 [  7452] By: jhi                                   on 2000/10/26  13:05:52
24464         Log: Undo #7451, this seems to be a deficiency in Perforce,
24465              there is no per-file line-terminator type, only per-client.
24466      Branch: perl
24467            ! README.dos README.win32 djgpp/configure.bat win32/Makefile
24468            ! win32/makefile.mk
24469 ____________________________________________________________________________
24470 [  7451] By: jhi                                   on 2000/10/26  04:56:03
24471         Log: Experimenting in DOS arcana.
24472      Branch: perl
24473            ! README.dos README.win32 djgpp/configure.bat win32/Makefile
24474            ! win32/makefile.mk
24475 ____________________________________________________________________________
24476 [  7450] By: jhi                                   on 2000/10/26  04:50:52
24477         Log: Subject: [ID 20001025.011] [PATCH] t/io/open.t perl@7369[  7350] breaks VMS perl
24478              From: "Peter J. Farley III" <pjfarley@banet.net>            
24479              Date: Wed, 25 Oct 2000 23:10:18 -0400
24480              Message-Id: <4.3.1.0.20001025230222.00accba0@pop5.banet.net>
24481      Branch: perl
24482            ! t/io/open.t
24483 ____________________________________________________________________________
24484 [  7449] By: jhi                                   on 2000/10/26  04:49:16
24485         Log: Subject: Re: [PATCH 5.6.0]Add non-blocking thread doneness checking
24486              From: Hugo <hv@crypt.compulink.co.uk>
24487              Date: Thu, 26 Oct 2000 01:55:17 +0100
24488              Message-Id: <200010260055.BAA27869@crypt.compulink.co.uk>
24489              
24490              minus one unneeded mutex lock/unlock pointed out by Dan Sugalski.
24491      Branch: perl
24492            ! ext/Thread/Thread.pm ext/Thread/Thread.xs t/lib/thr5005.t
24493 ____________________________________________________________________________
24494 [  7448] By: jhi                                   on 2000/10/26  04:38:36
24495         Log: Subject: [PATCH: perl@7446] restore missing d_stdio_cnt_lval to VMS
24496              From: Peter Prymmer <pvhp@forte.com>
24497              Date: Wed, 25 Oct 2000 18:23:56 -0700 (PDT)                          
24498              Message-ID: <Pine.OSF.4.10.10010251816200.247618-100000@aspara.forte.com>
24499      Branch: perl
24500            ! configure.com
24501 ____________________________________________________________________________
24502 [  7447] By: jhi                                   on 2000/10/25  23:20:02
24503         Log: Remains of the old UTF-8 API, utf8_to_uv_chk(): didn't link
24504              in platforms that strictly require all the symbols being present
24505              at link time.
24506      Branch: perl
24507            ! handy.h
24508 ____________________________________________________________________________
24509 [  7446] By: jhi                                   on 2000/10/25  21:55:57
24510         Log: Update Changes.
24511      Branch: perl
24512            ! Changes patchlevel.h
24513 ____________________________________________________________________________
24514 [  7445] By: jhi                                   on 2000/10/25  21:27:08
24515         Log: Integrate with vmsperl #7430 by Charles Bailey:
24516              
24517              Cleanup from prior patch (Charles Lane?):
24518              - improve handling of MFDs in Basename and Path
24519              - default to no xsubpp line # munging when building debug images
24520      Branch: perl
24521           !> lib/ExtUtils/MM_VMS.pm lib/File/Basename.pm lib/File/Path.pm
24522 ____________________________________________________________________________
24523 [  7444] By: jhi                                   on 2000/10/25  21:03:50
24524         Log: Subject: [PATCH] Zero-padded Numerics in Perl Format
24525              From: John Peacock <JPeacock@UnivPress.com>
24526              Date: Thu, 18 May 2000 11:55:27 -0400
24527              Message-ID: <3924126F.A58BE57A@UnivPress.com>
24528      Branch: perl
24529            ! form.h pod/perldelta.pod pod/perlform.pod pp_ctl.c
24530            ! t/op/write.t
24531 ____________________________________________________________________________
24532 [  7443] By: jhi                                   on 2000/10/25  20:43:10
24533         Log: Temporary stopgap for the self-tying issue: for now only
24534              array and hash self-ties are verboten.  The real fix, of
24535              course, would be to comprehensively test (and implement?)
24536              and debug (and document) self-ties.
24537      Branch: perl
24538            ! pod/perldiag.pod pp_sys.c t/op/tie.t
24539 ____________________________________________________________________________
24540 [  7442] By: jhi                                   on 2000/10/25  20:14:30
24541         Log: Subject: [PATCH 5.6.0]Add non-blocking thread doneness checking
24542              From: Dan Sugalski <dan@sidhe.org>
24543              Date: Wed, 25 Oct 2000 13:36:35 -0400
24544              Message-Id: <5.0.0.25.0.20001025133504.01ef1e20@24.8.96.48>
24545              
24546              plus regen global.sym.
24547      Branch: perl
24548            ! ext/Thread/Thread.pm ext/Thread/Thread.xs global.sym perl.c
24549            ! thrdvar.h util.c
24550 ____________________________________________________________________________
24551 [  7441] By: jhi                                   on 2000/10/25  20:12:20
24552         Log: buildtoc target tweaks.
24553      Branch: perl
24554            ! pod/Makefile.SH
24555 ____________________________________________________________________________
24556 [  7440] By: jhi                                   on 2000/10/25  20:03:53
24557         Log: A new version of making the syslog test more robust.
24558              (Replaces #7421.)
24559              
24560              Subject: Re: [ID 20001022.001] Not OK: perl v5.7.0 +DEVEL7368 on i686-linux 2.2.16
24561              From: "Kurt D. Starsinic" <kstar@chapin.edu>
24562              Date: Wed, 25 Oct 2000 12:13:54 -0400
24563              Message-ID: <20001025121354.B2264@O2.chapin.edu>
24564      Branch: perl
24565            ! t/lib/syslog.t
24566 ____________________________________________________________________________
24567 [  7439] By: jhi                                   on 2000/10/25  20:00:48
24568         Log: Continue the internal UTF-8 API tweaking.
24569              Rename utf8_to_uv_chk() back to utf8_to_uv() because it's
24570              used much more than the simpler API, now called utf8_to_uv_simple().
24571              Still not quite happy with API, too much partial duplication
24572              of functionality.
24573      Branch: perl
24574            ! doop.c embed.h embed.pl handy.h objXSUB.h op.c perlapi.c
24575            ! pod/perlapi.pod pod/perlunicode.pod pp.c pp_ctl.c proto.h
24576            ! regcomp.c regexec.c sv.c toke.c utf8.c
24577 ____________________________________________________________________________
24578 [  7438] By: jhi                                   on 2000/10/25  18:52:30
24579         Log: Allow poking holes at the UTF-8 decoding strictness.
24580      Branch: perl
24581            ! embed.pl pp.c proto.h sv.c t/pragma/utf8.t toke.c utf8.c
24582            ! utf8.h
24583 ____________________________________________________________________________
24584 [  7437] By: jhi                                   on 2000/10/25  13:53:05
24585         Log: Rename UTF8LEN() to be UNISKIP(), too confusing to have
24586              UTF8LEN() and UTF8SKIP(). 
24587      Branch: perl
24588            ! pp.c utf8.c utf8.h
24589 ____________________________________________________________________________
24590 [  7436] By: jhi                                   on 2000/10/25  13:51:37
24591         Log: Subject: [PATCH] Re: PerlIO - Configure tweak for Linux/glibc?
24592              From: Nicholas Clark <nick@ccl4.org>
24593              Date: Wed, 25 Oct 2000 14:44:05 +0100
24594              Message-ID: <20001025144404.D27253@plum.flirble.org>
24595      Branch: perl
24596            ! pod/perlrun.pod
24597 ____________________________________________________________________________
24598 [  7435] By: jhi                                   on 2000/10/25  13:49:32
24599         Log: Subject: [ID 20001024.007] [PATCH] "Dump local *FH" causes SEGV
24600              From: Mike Guy <mjtg@cam.ac.uk>
24601              Date: Tue, 24 Oct 2000 14:59:40 +0100
24602              Message-Id: <E13o4c8-00076u-00@libra.cus.cam.ac.uk>
24603      Branch: perl
24604            ! scope.c
24605 ____________________________________________________________________________
24606 [  7434] By: jhi                                   on 2000/10/25  13:48:41
24607         Log: AIX is picky about its symbol exports.  Solution for now
24608              is to include the deb.o explicitly to the re extension build.
24609              
24610              Subject: Re: introduce missing .Perl_deb symbol to aix build (Questions)
24611              From: Peter Prymmer <pvhp@forte.com>
24612              Date: Tue, 24 Oct 2000 12:57:22 -0700 (PDT)
24613              Message-ID: <Pine.OSF.4.10.10010241252180.127055-100000@aspara.forte.com>
24614      Branch: perl
24615            ! ext/re/Makefile.PL hints/aix.sh
24616 ____________________________________________________________________________
24617 [  7433] By: jhi                                   on 2000/10/25  13:46:49
24618         Log: Subject: patch 7416 breaks sv.c on AIX and HP-UX (patch included)
24619              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
24620              Date: Wed, 25 Oct 2000 12:02:20 +0200
24621              Message-Id: <20001025114712.C9F9.H.M.BRAND@hccnet.nl>
24622      Branch: perl
24623            ! perlsdio.h
24624 ____________________________________________________________________________
24625 [  7432] By: jhi                                   on 2000/10/25  13:44:28
24626         Log: Subject: Minor update to find2perl, for portability
24627              From: "Moore, Paul" <Paul.Moore@uk.origin-it.com>
24628              Date: Wed, 25 Oct 2000 12:05:47 +0100
24629              Message-ID: <714DFA46B9BBD0119CD000805FC1F53B012A8355@UKRUX002.rundc.uk.origin-it.com>
24630      Branch: perl
24631            ! x2p/find2perl.PL
24632 ____________________________________________________________________________
24633 [  7431] By: jhi                                   on 2000/10/25  13:40:39
24634         Log: Add targets to Makefile.SH, most importantly
24635              'regen_all' which also remembers to update vms/perly*.
24636      Branch: perl
24637            ! Makefile.SH
24638 ____________________________________________________________________________
24639 [  7430] By: bailey                                on 2000/10/25  03:13:53
24640         Log: Cleanup from prior patch (Charles Lane?):
24641              - improve handling of MFDs in Basename and Path
24642              - default to no xsubpp line # munging when building debug images
24643      Branch: vmsperl
24644            ! lib/ExtUtils/MM_VMS.pm lib/File/Basename.pm lib/File/Path.pm
24645 ____________________________________________________________________________
24646 [  7429] By: jhi                                   on 2000/10/24  20:03:40
24647         Log: Podify README.epoc and README.vos.
24648      Branch: perl
24649            ! README.epoc README.vos pod/buildtoc.PL pod/perl.pod
24650            ! pod/perlport.pod pod/perltoc.pod
24651 ____________________________________________________________________________
24652 [  7428] By: jhi                                   on 2000/10/24  19:10:33
24653         Log: Stratus VOS updates from Paul Green.
24654      Branch: perl
24655            + vos/config.alpha.def vos/config.alpha.h vos/config.ga.def
24656            + vos/config.ga.h vos/configure_perl.cm vos/install_perl.cm
24657            - vos/config.def vos/config.h vos/config_h.SH_orig
24658            ! MANIFEST README.vos pod/perlport.pod vos/Changes vos/build.cm
24659            ! vos/compile_perl.cm vos/config.pl vos/perl.bind vos/vosish.h
24660 ____________________________________________________________________________
24661 [  7427] By: jhi                                   on 2000/10/24  18:59:48
24662         Log: Check if stdio supports tweaking lval and cnt simultaneously.
24663              
24664              Subject: PATCH (Re: PerlIO - Configure tweak for Linux/glibc?)
24665              From: Nicholas Clark <nick@ccl4.org>
24666              Date: Mon, 23 Oct 2000 15:39:32 +0100
24667              Message-ID: <20001023153932.A10786@plum.flirble.org>
24668      Branch: metaconfig
24669            ! U/compline/d_stdstdio.U
24670      Branch: perl
24671            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
24672            ! config_h.SH configure.com epoc/config.sh iperlsys.h perlio.c
24673            ! perlsdio.h perlsfio.h pod/Makefile.SH pod/perltoc.pod
24674            ! uconfig.h uconfig.sh vms/genconfig.pl vos/config.def
24675            ! vos/config.h vos/config_h.SH_orig win32/config.bc
24676            ! win32/config.gc win32/config.vc
24677 ____________________________________________________________________________
24678 [  7426] By: jhi                                   on 2000/10/24  17:57:44
24679         Log: Missed the header file changes from #7425.
24680      Branch: perl
24681            ! embed.h embed.pl objXSUB.h proto.h
24682 ____________________________________________________________________________
24683 [  7425] By: jhi                                   on 2000/10/24  17:55:17
24684         Log: Fix the bug reported in
24685              
24686              From: andreas.koenig@anima.de (Andreas J. Koenig)
24687              Subject: Encode bug?
24688              Date: 24 Oct 2000 14:01:26 +0200 
24689              Message-ID: <m3lmveqwh5.fsf@ak-71.mind.de>
24690              
24691              Also make is_utf8_char() stricter.
24692      Branch: perl
24693            ! ext/Encode/Encode.xs utf8.c
24694 ____________________________________________________________________________
24695 [  7424] By: jhi                                   on 2000/10/24  15:15:39
24696         Log: Subject: Re: [ID 20001023.003] PATCH perlfaq5 [perl-current]
24697              From: Peter Scott <Peter@PSDT.com>
24698              Date: Mon, 23 Oct 2000 19:46:01 -0700
24699              Message-Id: <4.3.2.7.2.20001023194324.00ab7220@psdt.com>
24700      Branch: perl
24701            ! pod/perlfaq5.pod
24702 ____________________________________________________________________________
24703 [  7423] By: jhi                                   on 2000/10/24  14:25:30
24704         Log: Test tweak to avoid pulling in the whole Config.
24705      Branch: perl
24706            ! t/lib/st-lock.t
24707 ____________________________________________________________________________
24708 [  7422] By: jhi                                   on 2000/10/24  14:03:16
24709         Log: Fix the bug ID 20001024.005, the bug introduced by #7416.
24710      Branch: perl
24711            ! pp.c
24712 ____________________________________________________________________________
24713 [  7421] By: jhi                                   on 2000/10/24  13:32:09
24714         Log: (Replaced by #7440.)
24715              
24716              Subject: Re: [ID 20001022.001] Not OK: perl v5.7.0 +DEVEL7368 on i686-linux 2.2.16
24717              From: "Kurt D. Starsinic" <kstar@chapin.edu>
24718              Date: Mon, 23 Oct 2000 16:40:54 -0400
24719              Message-ID: <20001023164054.B14491@O2.chapin.edu>
24720      Branch: perl
24721            ! t/lib/syslog.t
24722 ____________________________________________________________________________
24723 [  7420] By: jhi                                   on 2000/10/24  13:30:53
24724         Log: Subject: [PATCH 5.7.0] static linking with uninstalled perl
24725              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
24726              Date: Mon, 23 Oct 2000 17:29:03 -0400
24727              Message-ID: <20001023172903.A18749@monk.mps.ohio-state.edu>
24728      Branch: perl
24729            ! lib/ExtUtils/MM_Unix.pm
24730 ____________________________________________________________________________
24731 [  7419] By: jhi                                   on 2000/10/24  13:29:57
24732         Log: Subject: Re: [PATCH 5.7.0] h2xs not documenting the created module
24733              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
24734              Date: Mon, 23 Oct 2000 19:01:32 -0400
24735              Message-ID: <20001023190132.A19791@monk.mps.ohio-state.edu>
24736      Branch: perl
24737            ! utils/h2xs.PL
24738 ____________________________________________________________________________
24739 [  7418] By: jhi                                   on 2000/10/24  13:26:04
24740         Log: Replace #7409 with
24741              
24742              Subject: Re: [PATCH] Re: [ID 20001020.009] Not OK: perl v5.7.0 +DEVEL7368 on dos-djgpp djgp
24743              From: Raphael Manfredi <Raphael_Manfredi@pobox.com>
24744              Date: Mon, 23 Oct 2000 20:08:56 +0200
24745              Message-ID: <20001023200855.A14850@nice.ram.loc>
24746      Branch: perl
24747            ! ext/Storable/Storable.pm t/lib/st-lock.t
24748 ____________________________________________________________________________
24749 [  7417] By: jhi                                   on 2000/10/24  13:17:52
24750         Log: Run vms/vms_yfix.pl, should have done that after changing
24751              perly.c in #7382.
24752      Branch: perl
24753            ! vms/perly_c.vms vms/perly_h.vms
24754 ____________________________________________________________________________
24755 [  7416] By: jhi                                   on 2000/10/24  02:55:33
24756         Log: Make the UTF-8 decoding stricter and more verbose when
24757              malformation happens.  This involved adding an argument
24758              to utf8_to_uv_chk(), which involved changing its prototype,
24759              and prefer STRLEN over I32 for the UTF-8 length, which as
24760              a domino effect necessitated changing the prototypes of
24761              scan_bin(), scan_oct(), scan_hex(), and reg_uni().
24762              The stricter UTF-8 decoding checking uses Markus Kuhn's
24763              UTF-8 Decode Stress Tester from
24764              http://www.cl.cam.ac.uk/~mgk25/ucs/examples/UTF-8-test.txt
24765      Branch: perl
24766            ! doop.c embed.h embed.pl handy.h objXSUB.h op.c perl.c
24767            ! perlapi.c pod/perlapi.pod pod/perldiag.pod pod/perlunicode.pod
24768            ! pp.c pp_ctl.c proto.h regcomp.c regexec.c sv.c t/pragma/utf8.t
24769            ! t/pragma/warn/utf8 toke.c utf8.c utf8.h util.c
24770 ____________________________________________________________________________
24771 [  7415] By: jhi                                   on 2000/10/23  14:06:06
24772         Log: Update Changes.
24773      Branch: perl
24774            ! Changes patchlevel.h
24775 ____________________________________________________________________________
24776 [  7414] By: jhi                                   on 2000/10/23  12:39:52
24777         Log: Undo the basename() part of #7412 since the lib/basename
24778              tests would need upgrading too.
24779      Branch: perl
24780            ! lib/File/Basename.pm
24781 ____________________________________________________________________________
24782 [  7413] By: jhi                                   on 2000/10/23  12:19:27
24783         Log: Document PERL_INSTALL_ROOT of #7210.
24784      Branch: perl
24785            ! lib/ExtUtils/Install.pm
24786 ____________________________________________________________________________
24787 [  7412] By: jhi                                   on 2000/10/23  12:16:47
24788         Log: Miscellaneous MacOS Classic library updates from Matthias Neeracher.
24789      Branch: perl
24790            ! lib/ExtUtils/Mksymlists.pm lib/File/Basename.pm
24791            ! lib/File/Path.pm lib/Term/ReadLine.pm lib/perl5db.pl
24792 ____________________________________________________________________________
24793 [  7411] By: jhi                                   on 2000/10/23  12:07:41
24794         Log: Subject: [PATCH: perl@7386] miscellaneous typos in 3 pods
24795              From: Prymmer/Kahn <pvhp@best.com>
24796              Date: Sun, 22 Oct 2000 22:18:40 -0700 (PDT)
24797              Message-ID: <Pine.BSF.4.21.0010222214150.11774-100000@shell8.ba.best.com>
24798      Branch: perl
24799            ! README.aix pod/perlebcdic.pod vms/ext/Stdio/Stdio.pm
24800 ____________________________________________________________________________
24801 [  7410] By: jhi                                   on 2000/10/23  04:10:11
24802         Log: The change #7187 was not so good on VMS.
24803              
24804              Subject: [PATCH perl@7369] VMS perldoc.PL fix for double quoted temp filename
24805              From: "Craig A. Berry" <craig.berry@psinetcs.com>
24806              Date: Sun, 22 Oct 2000 23:03:08 -0500
24807              Message-Id: <p04330102b617d093470b@[172.16.52.1]>
24808      Branch: perl
24809            ! utils/perldoc.PL
24810 ____________________________________________________________________________
24811 [  7409] By: jhi                                   on 2000/10/23  03:57:36
24812         Log: Avoid Storable locking on DJGPP for now.
24813              
24814              Subject: [PATCH] Re: [ID 20001020.009] Not OK: perl v5.7.0 +DEVEL7368 on dos-djgpp djgpp
24815              From: "Peter J. Farley III" <pjfarley@banet.net>
24816              Date: Sun, 22 Oct 2000 20:00:00 -0400
24817              Message-Id: <4.3.1.0.20001022194247.00acfee0@pop5.banet.net>
24818      Branch: perl
24819            ! ext/Storable/Storable.pm t/lib/st-lock.t
24820 ____________________________________________________________________________
24821 [  7408] By: jhi                                   on 2000/10/23  03:50:24
24822         Log: Subject: Re: [20000731.007] potential syntax error not detected [PATCH]
24823              From: Ronald J Kimball <rjk@linguist.dartmouth.edu>
24824              Date: Sun, 22 Oct 2000 21:12:22 -0400
24825              Message-ID: <20001022211222.A1062496@linguist.dartmouth.edu>
24826      Branch: perl
24827            ! lib/vars.pm
24828 ____________________________________________________________________________
24829 [  7407] By: jhi                                   on 2000/10/23  03:43:12
24830         Log: Subject: Re: [ID 20001021.005] SEGV with regex match 
24831              From: Hugo <hv@crypt.compulink.co.uk>
24832              Date: Mon, 23 Oct 2000 00:47:22 +0100
24833              Message-Id: <200010222347.AAA09697@crypt.compulink.co.uk>
24834      Branch: perl
24835            ! regexec.c t/op/pat.t
24836 ____________________________________________________________________________
24837 [  7406] By: jhi                                   on 2000/10/23  03:40:29
24838         Log: Retract #7404 with a patch from Robin Barker, via Andy Dougherty.
24839      Branch: perl
24840            ! lib/ExtUtils/MakeMaker.pm
24841 ____________________________________________________________________________
24842 [  7405] By: jhi                                   on 2000/10/22  21:32:00
24843         Log: Doc patch.
24844              
24845              Subject: [ID 19991128.002] \&{'foo'} not caught by strict refs
24846              From: rspier@pobox.com (Robert Spier)
24847              Date: Sun, 22 Oct 2000 15:24:32 -0400 (EDT)
24848              Message-ID: <14835.16112.13457.447971@rls.cx>
24849      Branch: perl
24850            ! lib/strict.pm
24851 ____________________________________________________________________________
24852 [  7404] By: jhi                                   on 2000/10/22  21:30:51
24853         Log: Subject: [PATCH] Re: [ID 20000121.007] XXX documentation in man ExtUtils::MakeMaker
24854              From: rspier@pobox.com (Robert Spier)
24855              Date: Sun, 22 Oct 2000 15:43:03 -0400 (EDT)
24856              Message-ID: <14835.17223.72448.705566@rls.cx>
24857      Branch: perl
24858            ! lib/ExtUtils/MakeMaker.pm
24859 ____________________________________________________________________________
24860 [  7403] By: jhi                                   on 2000/10/22  21:24:11
24861         Log: Subject: [PATCH bleadperl] ripples from constsub patch
24862              From: John Tobey <jtobey@john-edwin-tobey.org>
24863              Date: Sun, 22 Oct 2000 17:10:43 -0400 (EDT)
24864              Message-Id: <m13nSOB-000FObC@feynman.localnet>
24865      Branch: perl
24866            ! dump.c ext/B/B.pm ext/B/B.xs ext/B/B/Deparse.pm t/lib/b.t
24867 ____________________________________________________________________________
24868 [  7402] By: jhi                                   on 2000/10/22  20:59:35
24869         Log: Support s?printf parameter reordering.
24870      Branch: perl
24871            ! pod/perldelta.pod pod/perlfunc.pod sv.c t/op/sprintf.t
24872 ____________________________________________________________________________
24873 [  7401] By: jhi                                   on 2000/10/22  19:19:14
24874         Log: Expand %Config variables only if explicitly so requested
24875              during build time by PERL_BUILD_EXPAND_CONFIG_VARS.
24876              
24877              Subject: Re: PATCH $Config::Config{ldlibpthname} in ext/DynaLoader/DynaLoader_pm.PL
24878              From: Gurusamy Sarathy <gsar@ActiveState.com>
24879              Date: Sun, 22 Oct 2000 11:47:32 -0700
24880              Message-Id: <200010221847.LAA02167@smtp3.ActiveState.com>            
24881      Branch: perl
24882            ! Makefile.SH lib/lib_pm.PL
24883 ____________________________________________________________________________
24884 [  7400] By: jhi                                   on 2000/10/22  18:24:10
24885         Log: Move the #7390 test from warn/op to comp/redef.
24886              
24887              Subject: Re: Creating const subs for constants.
24888              From: John Tobey <jtobey@john-edwin-tobey.org>
24889              Date: Sun, 22 Oct 2000 04:04:12 -0400 (EDT)
24890              Message-Id: <m13nG72-000FObC@feynman.localnet>               
24891      Branch: perl
24892            ! t/comp/redef.t t/pragma/warn/op
24893 ____________________________________________________________________________
24894 [  7399] By: jhi                                   on 2000/10/22  17:49:59
24895         Log: Subject: PATCH $Config::Config{ldlibpthname} in ext/DynaLoader/DynaLoader_pm.PL
24896              From: Nicholas Clark <nick@ccl4.org>
24897              Date: Sat, 21 Oct 2000 22:23:19 +0100
24898              Message-ID: <20001021222319.B45586@plum.flirble.org>
24899      Branch: perl
24900            ! ext/DynaLoader/DynaLoader_pm.PL
24901 ____________________________________________________________________________
24902 [  7398] By: jhi                                   on 2000/10/22  17:47:35
24903         Log: Subject: [PATCH bleadperl] -MO=C falls over on package <none>
24904              From: Hugo <hv@crypt.compulink.co.uk>
24905              Date: Sat, 21 Oct 2000 18:19:59 +0100
24906              Message-Id: <200010211719.SAA02087@crypt.compulink.co.uk>
24907      Branch: perl
24908            ! ext/B/B.pm ext/B/B/C.pm
24909 ____________________________________________________________________________
24910 [  7397] By: jhi                                   on 2000/10/22  17:35:18
24911         Log: Subject: [ID 20001021.003] updated hints/openbsd.sh
24912              From: "Todd C. Miller" <Todd.Miller@courtesan.com>
24913              Date: Sat, 21 Oct 2000 13:55:50 -0600 (MDT)
24914              Message-Id: <200010211955.e9LJton24170@xerxes.courtesan.com>
24915      Branch: perl
24916            ! hints/openbsd.sh
24917 ____________________________________________________________________________
24918 [  7396] By: jhi                                   on 2000/10/22  17:19:46
24919         Log: Subject: installman go-faster stripes
24920              From: Nicholas Clark <nick@talking.bollo.cx>
24921              Date: Sat, 21 Oct 2000 17:24:53 +0100
24922              Message-ID: <20001021172452.A20371@Bagpuss.unfortu.net>
24923              
24924              Subject: Re: installman go-faster stripes
24925              From: Russ Allbery <rra@stanford.edu>
24926              Date: 21 Oct 2000 11:04:13 -0700
24927              Message-ID: <ylbswe5aw2.fsf@windlord.stanford.edu>
24928      Branch: perl
24929            ! installman pod/pod2man.PL
24930 ____________________________________________________________________________
24931 [  7395] By: jhi                                   on 2000/10/22  17:17:35
24932         Log: Hints tweak from Anton Berezin.
24933      Branch: perl
24934            ! hints/freebsd.sh
24935 ____________________________________________________________________________
24936 [  7394] By: jhi                                   on 2000/10/22  04:50:04
24937         Log: Tweak the Is* definitions of Unicode character classes
24938              to better match the official categorizations; embrace
24939              the official categorizations; add the combining marks
24940              as alpha (and -numeric); fix DCinital (a typo and edito)
24941              to be DCmedial.
24942      Branch: perl
24943            + lib/unicode/Is/DCmedial.pl
24944            - lib/unicode/Is/DCinital.pl
24945            ! MANIFEST lib/unicode/Is/Alnum.pl lib/unicode/Is/Alpha.pl
24946            ! lib/unicode/Is/Graph.pl lib/unicode/Is/Print.pl
24947            ! lib/unicode/Is/Punct.pl lib/unicode/Is/Space.pl
24948            ! lib/unicode/Is/Word.pl lib/unicode/mktables.PL
24949 ____________________________________________________________________________
24950 [  7393] By: jhi                                   on 2000/10/21  18:06:05
24951         Log: Subject: [PATCH@blead Tie/Array.pm] Re: [ID 20001020.002] Tie::Array SPLICE method is buggy
24952              From: Daniel Chetlin <daniel@chetlin.com>
24953              Date: Sat, 21 Oct 2000 02:57:03 -0700
24954              Message-ID: <20001021025703.A2115@darkstar.chetlin.org>
24955      Branch: perl
24956            + t/lib/tie-splice.t
24957            ! MANIFEST lib/Tie/Array.pm
24958 ____________________________________________________________________________
24959 [  7392] By: gsar                                  on 2000/10/21  18:05:15
24960         Log: resync utfperl branch with mainline
24961      Branch: utfperl
24962           !> (integrate 1760 files)
24963 ____________________________________________________________________________
24964 [  7391] By: jhi                                   on 2000/10/21  14:37:49
24965         Log: Testcases for a #7383,#7385 related bug.
24966              
24967              Subject: PATCH Re: [ID 20001020.006] "$2$utf8" == modification of read-only-variable
24968              From: Nicholas Clark <nick@ccl4.org>
24969              Date: Sat, 21 Oct 2000 15:04:51 +0100
24970              Message-ID: <20001021150451.A51566@plum.flirble.org>
24971      Branch: perl
24972            ! t/pragma/utf8.t
24973 ____________________________________________________________________________
24974 [  7390] By: jhi                                   on 2000/10/21  14:35:57
24975         Log: Add a testcase for #7389.
24976      Branch: perl
24977            ! t/pragma/warn/op
24978 ____________________________________________________________________________
24979 [  7389] By: jhi                                   on 2000/10/21  14:26:45
24980         Log: Subject: Re: Creating const subs for constants.
24981              From: John Tobey <jtobey@john-edwin-tobey.org>
24982              Date: Fri, 20 Oct 2000 22:03:27 -0400 (EDT)
24983              Message-Id: <m13mo0N-000FObC@feynman.localnet>
24984      Branch: perl
24985            ! cv.h embed.h embed.pl objXSUB.h op.c perlapi.c pod/perlapi.pod
24986            ! proto.h sv.c
24987 ____________________________________________________________________________
24988 [  7388] By: nick                                  on 2000/10/21  11:44:23
24989         Log: Populate perlio branch
24990      Branch: perlio
24991           +> (branch 1760 files)
24992 ____________________________________________________________________________
24993 [  7387] By: nick                                  on 2000/10/21  10:52:05
24994         Log: Get branch back as replica of mainline via :
24995              p4 integrate -b utfperl
24996              p4 resolve -at ./...
24997      Branch: utfperl
24998           +> (branch 269 files)
24999            - Todo-5.005 eg/ADB eg/README eg/cgi/RunMeFirst
25000            - eg/cgi/caution.xbm eg/cgi/clickable_image.cgi
25001            - eg/cgi/cookie.cgi eg/cgi/crash.cgi eg/cgi/customize.cgi
25002            - eg/cgi/diff_upload.cgi eg/cgi/dna_small_gif.uu
25003            - eg/cgi/file_upload.cgi eg/cgi/frameset.cgi eg/cgi/index.html
25004            - eg/cgi/internal_links.cgi eg/cgi/javascript.cgi
25005            - eg/cgi/monty.cgi eg/cgi/multiple_forms.cgi
25006            - eg/cgi/nph-clock.cgi eg/cgi/nph-multipart.cgi eg/cgi/popup.cgi
25007            - eg/cgi/save_state.cgi eg/cgi/tryit.cgi eg/cgi/wilogo_gif.uu
25008            - eg/changes eg/client eg/down eg/dus eg/findcp eg/findtar
25009            - eg/g/gcp eg/g/gcp.man eg/g/ged eg/g/ghosts eg/g/gsh
25010            - eg/g/gsh.man eg/muck eg/muck.man eg/myrup eg/nih eg/relink
25011            - eg/rename eg/rmfrom eg/scan/scan_df eg/scan/scan_last
25012            - eg/scan/scan_messages eg/scan/scan_passwd eg/scan/scan_ps
25013            - eg/scan/scan_sudo eg/scan/scan_suid eg/scan/scanner eg/server
25014            - eg/shmkill eg/sysvipc/README eg/sysvipc/ipcmsg
25015            - eg/sysvipc/ipcsem eg/sysvipc/ipcshm eg/travesty eg/unuc
25016            - eg/uudecode eg/van/empty eg/van/unvanish eg/van/vanexp
25017            - eg/van/vanish eg/who eg/wrapsuid epoc/Config.pm
25018            - epoc/autosplit.pl epoc/config.h epoc/perl.mmp epoc/perl.pkg
25019            - ext/DynaLoader/dl_rhapsody.xs lib/Sys/Hostname.pm
25020            - lib/Sys/Syslog.pm lib/byte.pm lib/byte_heavy.pl lib/caller.pm
25021            - lib/chat2.pl lib/lib.pm lib/unicode/Eq/Latin1.pl
25022            - lib/unicode/Eq/Unicode.pl lib/unicode/Props.txt
25023            - lib/unicode/UCD300.html lib/unicode/Unicode.300
25024            - lib/unicode/Unicode3.html os2/POSIX.mkfifo pod/Makefile
25025            - pod/Win32.pod pod/buildtoc t/lib/thread.t t/op/64bit.t
25026            - t/op/nothread.t utils/perlbc.PL vms/subconfigure.com
25027            - win32/PerlCRT.def win32/gstartup.c win32/oldnames.def
25028           !> (integrate 965 files)
25029 ____________________________________________________________________________
25030 [  7386] By: jhi                                   on 2000/10/21  01:31:12
25031         Log: Update Changes.
25032      Branch: perl
25033            ! Changes patchlevel.h
25034 ____________________________________________________________________________
25035 [  7385] By: jhi                                   on 2000/10/21  01:28:42
25036         Log: The #7383 was right only in the context of the original bug report,
25037              not in more general case.
25038      Branch: perl
25039            ! pp_hot.c
25040 ____________________________________________________________________________
25041 [  7384] By: jhi                                   on 2000/10/21  01:08:23
25042         Log: Fix for ID 20000915.011, IO::Select warning for an undefined fd.
25043      Branch: perl
25044            ! ext/IO/lib/IO/Select.pm
25045 ____________________________________________________________________________
25046 [  7383] By: jhi                                   on 2000/10/21  00:44:18
25047         Log: Fix for ID 20001020.006, concatenating an unset submatch
25048              with utf8 resulted in "Modification of a read-only value".
25049      Branch: perl
25050            ! pp_hot.c t/pragma/utf8.t
25051 ____________________________________________________________________________
25052 [  7382] By: jhi                                   on 2000/10/20  20:44:31
25053         Log: Make scan_num() reëntrant, as suggested in
25054              
25055              Subject: [PATCH perl@7229] Rentrant parser and yylex()
25056              From: "Roca, Ignasi" <ignasi.roca@fujitsu.siemens.es>
25057              Date: Fri, 20 Oct 2000 14:17:27 +0100
25058              Message-ID: <5930DC161690D211966700902715754702DA09CD@madt009a.siemens.es>
25059      Branch: perl
25060            ! embed.h embed.pl objXSUB.h perlapi.c perly.c perly.y proto.h
25061            ! toke.c
25062 ____________________________________________________________________________
25063 [  7381] By: jhi                                   on 2000/10/20  20:07:29
25064         Log: Reëntrancy fix.
25065              
25066              Subject: [PATCH perl@7229] Rentrant parser and yylex()
25067              From: "Roca, Ignasi" <ignasi.roca@fujitsu.siemens.es>
25068              Date: Fri, 20 Oct 2000 14:17:27 +0100
25069              Message-ID: <5930DC161690D211966700902715754702DA09CD@madt009a.siemens.es>
25070      Branch: perl
25071            ! embed.h embed.pl perl.h proto.h toke.c
25072 ____________________________________________________________________________
25073 [  7380] By: jhi                                   on 2000/10/20  19:15:54
25074         Log: Don't write double values through long double pointers,
25075              based on a part of
25076              
25077              Subject: [ID 20001016.017] [jens: 5.7.0 Solaris 8, 64 Bit, Workshop 6.0 Compiler]
25078              From: Jens Hamisch <jens@Strawberry.COM>
25079              Date: Tue, 17 Oct 2000 08:39:36 +0200
25080              Message-Id: <20001017083936.A11104@Strawberry.COM>
25081      Branch: perl
25082            ! perl.h pp.c
25083 ____________________________________________________________________________
25084 [  7379] By: jhi                                   on 2000/10/20  18:43:37
25085         Log: Portability tweak on #7377.
25086              
25087              Subject:  Re: [nick@cow.org.uk: [ID 20001020.004] Not OK: perl v5.7.0 +DEVEL7368 on i386-freebsd-64all 4.1-stable (UNINSTALLED)]
25088              From: lane@DUPHY4.Physics.Drexel.Edu (Charles Lane)
25089              Date:     Fri, 20 Oct 2000 13:13:41 EDT
25090              Message-Id: <001020131216.3b141@DUPHY4.Physics.Drexel.Edu>
25091      Branch: perl
25092            ! t/lib/dprof.t
25093 ____________________________________________________________________________
25094 [  7378] By: jhi                                   on 2000/10/20  12:57:19
25095         Log: SOCKS function redefinitions need prototypes, too, otherwise
25096              for example 32 bit versus 64 bit differences cause a lot of
25097              problems.  Part of
25098              
25099              Subject: [ID 20001016.017] [jens: 5.7.0 Solaris 8, 64 Bit, Workshop 6.0 Compiler]
25100              From: Jens Hamisch <jens@Strawberry.COM>
25101              Date: Tue, 17 Oct 2000 08:39:36 +0200
25102              Message-Id: <20001017083936.A11104@Strawberry.COM>
25103      Branch: perl
25104            ! doio.c pp_sys.c
25105 ____________________________________________________________________________
25106 [  7377] By: jhi                                   on 2000/10/20  12:37:12
25107         Log: Subject:  [PATCH] Perl 5.6.0/5.7.0 enable DProf test for VMS
25108              From: lane@DUPHY4.Physics.Drexel.Edu (Charles Lane)
25109              Date:     Fri, 20 Oct 2000 08:26:04 EDT
25110              Message-Id: <001020074851.3751a@DUPHY4.Physics.Drexel.Edu>
25111      Branch: perl
25112            ! configure.com t/lib/dprof.t t/lib/dprof/V.pm vms/test.com
25113 ____________________________________________________________________________
25114 [  7376] By: jhi                                   on 2000/10/20  12:35:31
25115         Log: Subject:  [PATCH] Perl 5.6.0/5.7.0, vms/gen_shrfls.pl update
25116              From: lane@DUPHY4.Physics.Drexel.Edu (Charles Lane)
25117              Date:     Fri, 20 Oct 2000 07:48:15 EDT
25118              Message-Id: <001020074423.39b82@DUPHY4.Physics.Drexel.Edu>
25119      Branch: perl
25120            ! configure.com vms/gen_shrfls.pl
25121 ____________________________________________________________________________
25122 [  7375] By: bailey                                on 2000/10/20  04:44:37
25123         Log: SYN SYN
25124      Branch: vmsperl
25125           +> (branch 134 files)
25126            - eg/ADB eg/README eg/cgi/RunMeFirst eg/cgi/caution.xbm
25127            - eg/cgi/clickable_image.cgi eg/cgi/cookie.cgi eg/cgi/crash.cgi
25128            - eg/cgi/customize.cgi eg/cgi/diff_upload.cgi
25129            - eg/cgi/dna_small_gif.uu eg/cgi/file_upload.cgi
25130            - eg/cgi/frameset.cgi eg/cgi/index.html
25131            - eg/cgi/internal_links.cgi eg/cgi/javascript.cgi
25132            - eg/cgi/monty.cgi eg/cgi/multiple_forms.cgi
25133            - eg/cgi/nph-clock.cgi eg/cgi/nph-multipart.cgi eg/cgi/popup.cgi
25134            - eg/cgi/save_state.cgi eg/cgi/tryit.cgi eg/cgi/wilogo_gif.uu
25135            - eg/changes eg/client eg/down eg/dus eg/findcp eg/findtar
25136            - eg/g/gcp eg/g/gcp.man eg/g/ged eg/g/ghosts eg/g/gsh
25137            - eg/g/gsh.man eg/muck eg/muck.man eg/myrup eg/nih eg/relink
25138            - eg/rename eg/rmfrom eg/scan/scan_df eg/scan/scan_last
25139            - eg/scan/scan_messages eg/scan/scan_passwd eg/scan/scan_ps
25140            - eg/scan/scan_sudo eg/scan/scan_suid eg/scan/scanner eg/server
25141            - eg/shmkill eg/sysvipc/README eg/sysvipc/ipcmsg
25142            - eg/sysvipc/ipcsem eg/sysvipc/ipcshm eg/travesty eg/unuc
25143            - eg/uudecode eg/van/empty eg/van/unvanish eg/van/vanexp
25144            - eg/van/vanish eg/who eg/wrapsuid lib/chat2.pl
25145            - lib/unicode/Props.txt lib/unicode/UCD300.html
25146            - lib/unicode/Unicode.300 lib/unicode/Unicode3.html
25147            - utils/perlbc.PL vms/subconfigure.com
25148           !> (integrate 785 files)
25149 ____________________________________________________________________________
25150 [  7374] By: jhi                                   on 2000/10/20  00:59:48
25151         Log: In the latest compiler builds cccdlflags must not become -fpic,
25152              from Wilfredo Sánchez.
25153      Branch: perl
25154            ! hints/darwin.sh
25155 ____________________________________________________________________________
25156 [  7373] By: jhi                                   on 2000/10/20  00:56:35
25157         Log: Subject: PATCH CR+LF should be "\cM\cJ" in perlop
25158              From: Tony Cook <tony@develop-help.com>
25159              Date: Fri, 20 Oct 2000 07:29:15 +1100 (EST)
25160              Message-ID: <Pine.LNX.4.10.10010200725530.12682-100000@develop-help.com>
25161      Branch: perl
25162            ! pod/perlop.pod
25163 ____________________________________________________________________________
25164 [  7372] By: jhi                                   on 2000/10/19  19:34:40
25165         Log: Typo noted by Mark Lutz.
25166      Branch: perl
25167            ! t/op/64bitint.t
25168 ____________________________________________________________________________
25169 [  7371] By: jhi                                   on 2000/10/19  19:33:13
25170         Log: NonStop-UX patches from Tom Bates <tom.bates@compaq.com>
25171      Branch: metaconfig
25172            ! U/modified/Cppsym.U U/modified/Oldconfig.U
25173      Branch: metaconfig/U/perl
25174            ! End.U dlsrc.U libperl.U
25175      Branch: perl
25176            + hints/nonstopux.sh
25177            ! Configure MANIFEST config_h.SH
25178 ____________________________________________________________________________
25179 [  7370] By: jhi                                   on 2000/10/19  17:18:08
25180         Log: Subject: PATCH do_print has 2 PerlIO_error()s
25181              From: nick@ccl4.org
25182              Date: Thu, 19 Oct 2000 18:09:20 +0100
25183              Message-ID: <20001019180920.A8440@babyhippo.co.uk>
25184      Branch: perl
25185            ! doio.c
25186 ____________________________________________________________________________
25187 [  7369] By: jhi                                   on 2000/10/19  14:01:49
25188         Log: Update Changes.
25189      Branch: perl
25190            ! Changes patchlevel.h
25191 ____________________________________________________________________________
25192 [  7368] By: jhi                                   on 2000/10/19  13:04:29
25193         Log: Subject: Re: [ID 20001013.008] perl 5.6.0 on AIX w/GCC
25194              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
25195              Date: Wed, 18 Oct 2000 13:12:01 +0200
25196              Message-Id: <20001018131021.F844.H.M.BRAND@hccnet.nl>
25197      Branch: perl
25198            ! hints/aix.sh
25199 ____________________________________________________________________________
25200 [  7367] By: jhi                                   on 2000/10/19  02:22:40
25201         Log: Fix of sorts for bug id 20000901.092.  There seems to be no trace
25202              of a 'pmshort' anywhere in the B, so the offending line was simply
25203              removed.
25204      Branch: perl
25205            ! ext/B/B/Debug.pm
25206 ____________________________________________________________________________
25207 [  7366] By: jhi                                   on 2000/10/19  02:12:37
25208         Log: Add the test case for the bug id 20000730.004 which seems
25209              to have been fixed by now.
25210      Branch: perl
25211            ! t/pragma/utf8.t
25212 ____________________________________________________________________________
25213 [  7365] By: jhi                                   on 2000/10/18  23:36:24
25214         Log: Subject: [PATCH 5.7.0] Re: [ID 20001018.008] flip-flop bug when there's no <FH> 
25215              From: Hugo <hv@crypt.compulink.co.uk>
25216              Date: Wed, 18 Oct 2000 23:25:58 +0100
25217              Message-Id: <200010182225.XAA20330@crypt.compulink.co.uk>
25218      Branch: perl
25219            ! pp_ctl.c pp_hot.c t/op/flip.t t/pragma/warn/pp_hot
25220 ____________________________________________________________________________
25221 [  7364] By: jhi                                   on 2000/10/18  21:12:53
25222         Log: (retracted)
25223      Branch: perl
25224            ! pp.c
25225 ____________________________________________________________________________
25226 [  7363] By: jhi                                   on 2000/10/18  20:55:38
25227         Log: Missing change from #7362.
25228      Branch: perl
25229            ! win32/perlhost.h
25230 ____________________________________________________________________________
25231 [  7362] By: jhi                                   on 2000/10/18  20:52:01
25232         Log: Borland C fstat() never saw the fd as writable.
25233              
25234              Subject: fix for Borland's weak "stat" (perl@7211)
25235              From: "Konovalov, Vadim" <vkonovalov@lucent.com>
25236              Date: Mon, 16 Oct 2000 09:55:03 +0400
25237              Message-ID: <402099F49BEED211999700805FC7359F7C0E40@ru0028exch01.spb.lucent.com>
25238      Branch: perl
25239            ! win32/win32.c
25240 ____________________________________________________________________________
25241 [  7361] By: jhi                                   on 2000/10/18  17:43:50
25242         Log: Regen toc.
25243      Branch: perl
25244            ! pod/buildtoc.PL pod/perl.pod pod/perlport.pod pod/perltoc.pod
25245 ____________________________________________________________________________
25246 [  7360] By: jhi                                   on 2000/10/18  17:07:44
25247         Log: From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
25248              Subject: Re: [ID 20001013.008] perl 5.6.0 on AIX 4.3.2 w/GCC 2.95.2
25249              Message-Id: <20001016151837.9977.H.M.BRAND@hccnet.nl>
25250              Date: Mon, 16 Oct 2000 15:19:49 +0200
25251      Branch: perl
25252            + README.aix
25253            ! MANIFEST
25254 ____________________________________________________________________________
25255 [  7359] By: jhi                                   on 2000/10/18  17:04:49
25256         Log: Subject: Pod patch for Devel::Peek
25257              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
25258              Message-Id: <20001016121252.996B.H.M.BRAND@hccnet.nl>
25259              Date: Mon, 16 Oct 2000 12:26:34 +0200
25260      Branch: perl
25261            ! ext/Devel/Peek/Peek.pm
25262 ____________________________________________________________________________
25263 [  7358] By: jhi                                   on 2000/10/18  17:03:15
25264         Log: Make Cwd more bulletproof in chrooted environments.
25265              
25266              Subject: [ID 20001018.001] Fix for Cwd.pm (chroot)
25267              From: "Eric E. Coe" <Eric.Coe@oracle.com>
25268              Date: Wed, 18 Oct 2000 04:03:54 -0400
25269              Message-Id: <39ED596A.70E599FE@oracle.com>
25270      Branch: perl
25271            ! lib/Cwd.pm
25272 ____________________________________________________________________________
25273 [  7357] By: jhi                                   on 2000/10/18  16:37:26
25274         Log: Disable the UTF8 downgrade croakage for now to avoid
25275              too many not okay messages.
25276      Branch: perl
25277            ! doio.c
25278 ____________________________________________________________________________
25279 [  7356] By: jhi                                   on 2000/10/17  23:29:41
25280         Log: Show the failed remote port, instead of the failing line number.
25281              
25282              Subject: [PATCH 5.6.1 Debugger] More diagnostics
25283              From: David Sparks <daves@ActiveState.com>
25284              Date: Tue, 17 Oct 2000 15:00:24 -0700
25285              Message-Id: <5.0.0.25.0.20001017144037.02551e10@pop3>
25286      Branch: perl
25287            ! lib/perl5db.pl
25288 ____________________________________________________________________________
25289 [  7355] By: jhi                                   on 2000/10/17  14:11:31
25290         Log: On output try to downgrade to bytes, croak if impossible,
25291              from Simon Cozens.  This means that outputting >255 UTF8
25292              is impossible.  Consider this as a strong incentive to get
25293              the I/O disciplines implemented.
25294      Branch: perl
25295            ! doio.c pod/perldiag.pod sv.c
25296 ____________________________________________________________________________
25297 [  7354] By: jhi                                   on 2000/10/17  13:42:23
25298         Log: Clarify documentation on 'use bytes'.
25299              
25300              Subject: Re: What does 'use bytes' "mean" ?
25301              From: Simon Cozens <simon@cozens.net>
25302              Date: Mon, 18 Sep 2000 18:24:25 +0100
25303              Message-ID: <20000918182425.A26765@deep-dark-truthful-mirror.perlhacker.org>
25304      Branch: perl
25305            ! lib/bytes.pm
25306 ____________________________________________________________________________
25307 [  7353] By: jhi                                   on 2000/10/17  13:28:12
25308         Log: Workaround for a sfio bug where the stream error indicator
25309              is not cleared as documented.
25310              
25311              Subject: PATCH (was Re: [ID 20001016.007] Not OK: perl v5.7.0 +DEVEL7228 on i586-linux 2.2.16 (UNINSTALLED))
25312              From: Nicholas Clark <nick@ccl4.org>
25313              Date: Mon, 16 Oct 2000 18:28:23 +0100
25314              Message-ID: <20001016182823.J19700@plum.flirble.org>
25315      Branch: perl
25316            ! doio.c
25317 ____________________________________________________________________________
25318 [  7352] By: jhi                                   on 2000/10/17  13:06:19
25319         Log: More IoTYPE sprinkling.
25320      Branch: perl
25321            ! doio.c pp_hot.c
25322 ____________________________________________________________________________
25323 [  7351] By: jhi                                   on 2000/10/16  22:47:07
25324         Log: Detect early whether the std streams have gone bad.
25325              
25326              Subject: PATCH (was Re: [ID 20001016.007] Not OK: perl v5.7.0 +DEVEL7228 on i586-linux 2.2.16 (UNINSTALLED))
25327              Date: Mon, 16 Oct 2000 23:28:42 +0100
25328              From: Nicholas Clark <nick@ccl4.org>
25329              Message-ID: <20001016232842.A37942@plum.flirble.org>
25330      Branch: perl
25331            ! t/op/misc.t
25332 ____________________________________________________________________________
25333 [  7350] By: jhi                                   on 2000/10/16  22:45:16
25334         Log: Subject: [ID 20001016.012] [PATCHes Included]OK: perl v5.7.0 on dos-djgpp djgpp
25335              From: "Peter J. Farley III" <pjfarley@banet.net>
25336              Date: Mon, 16 Oct 2000 18:15:59 -0400
25337              Message-Id: <4.3.1.0.20001016180235.00ac65a0@pop5.banet.net>
25338      Branch: perl
25339            ! djgpp/djgpp.c dosish.h t/io/open.t
25340 ____________________________________________________________________________
25341 [  7349] By: jhi                                   on 2000/10/16  22:36:45
25342         Log: perldelta tweak.
25343      Branch: perl
25344            ! pod/perldelta.pod
25345 ____________________________________________________________________________
25346 [  7348] By: jhi                                   on 2000/10/16  15:17:53
25347         Log: Update Changes.
25348      Branch: perl
25349            ! Changes patchlevel.h
25350 ____________________________________________________________________________
25351 [  7347] By: jhi                                   on 2000/10/16  13:55:27
25352         Log: Add the capability to include/exclude branches.
25353      Branch: perl
25354            ! Porting/genlog
25355 ____________________________________________________________________________
25356 [  7346] By: jhi                                   on 2000/10/16  13:18:04
25357         Log: Add Charles Lane.
25358      Branch: perl
25359            ! AUTHORS Changes
25360 ____________________________________________________________________________
25361 [  7345] By: jhi                                   on 2000/10/16  13:13:21
25362         Log: Add a perldelta note about the change #6024, pointed out by Sarathy.
25363      Branch: perl
25364            ! pod/perldelta.pod
25365 ____________________________________________________________________________
25366 [  7344] By: gsar                                  on 2000/10/16  09:30:21
25367         Log: integrate change#6220 from cfgperl
25368              
25369              Win32 patches from Benjamin Stuhl.
25370      Branch: maint-5.6/perl
25371           !> makedef.pl win32/win32.h
25372 ____________________________________________________________________________
25373 [  7343] By: gsar                                  on 2000/10/16  08:32:19
25374         Log: integrate changes#6221,6222 from cfgperl
25375              
25376              Remove tr///CU (the feature is to be obsoleted by better interfaces).
25377              From: simon@brecon.co.uk (Simon Cozens)
25378              Subject: [PATCH] Eliminate tr///[CU][CU]
25379              Date: 23 Jun 2000 11:05:40 GMT
25380              Message-ID: <slrn8l6h44.h5k.simon@justanother.perlhacker.org>
25381              
25382              doc typo fix
25383              Subject: [PATCH] documentation typo in lib/Pod/Usage.pm
25384              From: Ian Phillipps <Ian.Phillipps@iname.com>
25385              Date: Fri, 23 Jun 2000 10:40:58 +0100
25386              Message-ID: <20000623104058.A22791@homer.diplex.co.uk>
25387      Branch: maint-5.6/perl
25388           !> doop.c embed.pl lib/Pod/Usage.pm pod/perlop.pod toke.c utf8.c
25389 ____________________________________________________________________________
25390 [  7342] By: gsar                                  on 2000/10/16  08:28:08
25391         Log: integrate change#6217 from cfgperl (in part)
25392              
25393              Rename the fdpid locking and integrate with Sarathy.
25394      Branch: maint-5.6/perl
25395           !> Configure config_h.SH doio.c embed.h embed.pl embedvar.h
25396           !> global.sym gv.c intrpvar.h objXSUB.h perl.c perlapi.h pp.c
25397           !> pp_ctl.c proto.h sv.h util.c util.h vmesa/vmesa.c
25398           !> win32/win32.c
25399 ____________________________________________________________________________
25400 [  7341] By: gsar                                  on 2000/10/16  08:23:39
25401         Log: integrate changes#6214..6216 from mainline
25402              
25403              @_ can't have junk in it even in the non-USE_ITHREADS case because
25404              caller() wants to populate @DB::args with it (causes a coredump
25405              in Carp::confess())
25406              
25407              tweak comment about @DB::args
25408              
25409              be more optimal about clearing @_
25410      Branch: maint-5.6/perl
25411           !> av.h cop.h pp_ctl.c t/op/runlevel.t
25412 ____________________________________________________________________________
25413 [  7340] By: gsar                                  on 2000/10/16  08:20:37
25414         Log: integrate changes#6207..6210 from cfgperl
25415              
25416              Subject: [PATCH 5.6.0] Threadsafe patches
25417              From: Dan Sugalski <dan@sidhe.org>
25418              To: perl5-porters@perl.org
25419              Date: Mon, 08 May 2000 18:08:13 -0400
25420              Message-Id: <4.3.1.0.20000508180729.02182de0@24.8.96.48>
25421              
25422              Regen headers for #6207.
25423              
25424              Lock PL_fdpid against race conditions, based on:
25425              Subject: [PATCH 5.6.0]subprocess fixup for threads
25426              From: Dan Sugalski <dan@sidhe.org>
25427              To: perl5-porters@perl.org
25428              Date: Tue, 11 Apr 2000 17:02:32 -0400
25429              Message-Id: <4.3.0.20000411170218.01d2f580@24.8.96.48>
25430              
25431              Mopup for #6207 and #6209.
25432      Branch: maint-5.6/perl
25433           !> doio.c embed.h embed.pl global.sym gv.c intrpvar.h objXSUB.h
25434           !> perl.c pp.c pp_ctl.c proto.h sv.h util.c vmesa/vmesa.c
25435           !> win32/win32.c
25436 ____________________________________________________________________________
25437 [  7339] By: gsar                                  on 2000/10/16  08:14:34
25438         Log: integrate change#6203 from cfgperl
25439              
25440              perldiag should refer to perlos2.pod not README.os2
25441      Branch: maint-5.6/perl
25442           !> pod/perldiag.pod
25443 ____________________________________________________________________________
25444 [  7338] By: gsar                                  on 2000/10/16  08:11:42
25445         Log: integrate change#6201 from mainline
25446              
25447              Perl_eval_pv() leaks 4 bytes every time it is called because it
25448              does a PUSHMARK that's never ever POPMARKed; in general, only
25449              Perl_call_[sp]v() need a PUSHMARK for incoming arguments;
25450              Perl_eval_[sp]v() don't because they don't take any incoming
25451              arguments (this leak has been around since the original version
25452              of perl_eval_pv() in 5.003_97e)
25453      Branch: maint-5.6/perl
25454           !> perl.c
25455 ____________________________________________________________________________
25456 [  7337] By: gsar                                  on 2000/10/16  08:08:47
25457         Log: integrate changes#6197..6200 from cfgperl
25458              
25459              Subject: [ID 20000602.005] [PATCH]5.6.0 (DOC) tiny change to perlsyn.pod
25460              From: John Borwick <jhborwic@unity.ncsu.edu>
25461              Date: Fri, 2 Jun 2000 14:35:03 -0400 (EDT)
25462              Message-Id: <Pine.GSO.4.21.0006021420290.11432-100000@eos00du.eos.ncsu.edu>
25463              
25464              Subject: [PATCH 5.6.0]VMS fixups so we can build with MULTIPLICITY
25465              From: Dan Sugalski <dan@sidhe.org>
25466              To: vmsperl@perl.org, perl5-porters@perl.org
25467              Date: Fri, 02 Jun 2000 16:00:41 -0400
25468              Message-Id: <4.3.2.7.0.20000602155951.01f02b20@24.8.96.48>
25469              Message-Id: <4.3.2.7.0.20000602164011.01ec8c30@24.8.96.48>
25470              
25471              Subject: [PATCH 5.6.0]Make perl's malloc work on VMS
25472              From: Dan Sugalski <dan@sidhe.org>
25473              To: perl5-porters@perl.org, vmsperl@perl.org
25474              Date: Fri, 02 Jun 2000 17:30:51 -0400
25475              Message-Id: <4.3.2.7.0.20000602173021.01f03570@24.8.96.48>
25476              
25477              Update to cperl-mode.el 4.31 from
25478              ftp://ftp.math.ohio-state.edu/pub/users/ilya/cperl-mode.el
25479              Subject: A couple of notes
25480              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
25481              To: Mailing list Perl5 <perl5-porters@perl.org>
25482              Date: Sat, 3 Jun 2000 23:33:32 -0400
25483              Message-ID: <20000603233332.A6790@monk.mps.ohio-state.edu>
25484      Branch: maint-5.6/perl
25485           !> emacs/cperl-mode.el embed.h embed.pl embedvar.h
25486           !> ext/POSIX/POSIX.xs global.sym objXSUB.h perlapi.c perlapi.h
25487           !> pod/perlapi.pod pod/perlintern.pod pod/perlsyn.pod proto.h
25488           !> vms/descrip_mms.template vms/gen_shrfls.pl vms/vms.c
25489           !> vms/vmsish.h
25490 ____________________________________________________________________________
25491 [  7336] By: gsar                                  on 2000/10/16  08:03:46
25492         Log: integrate changes#6194,6195 from mainline
25493              
25494              fix small eval"" memory leaks under USE_ITHREADS
25495              
25496              fix yet another eval"" leak under USE_ITHREADS
25497      Branch: maint-5.6/perl
25498           !> cop.h embed.h embed.pl objXSUB.h op.c perl.c perlapi.c perly.c
25499           !> perly_c.diff pp_ctl.c proto.h scope.c scope.h sv.c toke.c
25500           !> vms/perly_c.vms
25501 ____________________________________________________________________________
25502 [  7335] By: gsar                                  on 2000/10/16  08:02:15
25503         Log: integrate changes#6190,6191 from mainline
25504              
25505              submit missing embed.pl change
25506              
25507              vec() loses numericalness (modified version of patch suggested
25508              by Robin Barker)
25509      Branch: maint-5.6/perl
25510           !> doop.c embed.pl t/op/vec.t
25511 ____________________________________________________________________________
25512 [  7334] By: gsar                                  on 2000/10/16  08:01:03
25513         Log: integrate change#6189 from mainline
25514              
25515              counting tr/// corrupts later operation (from M.J.T Guy)
25516      Branch: maint-5.6/perl
25517           !> doop.c t/op/tr.t
25518 ____________________________________________________________________________
25519 [  7333] By: gsar                                  on 2000/10/16  07:59:07
25520         Log: integrate changes#6183..6188 from mainline
25521              
25522              SelfLoader can lose $@ in AUTOLOAD() (from Nicholas Clark
25523              <nick@ccl4.org>)
25524              
25525              tweak for change#6127
25526              
25527              remove incorrect documentation about implicit split to @_ in
25528              list context, which never really worked in perl 5 (from
25529              M.J.T. Guy)
25530              
25531              further qualify references to "alphanumeric" (from Wolfgang Laun
25532              <wolfgang.laun@alcatel.at>)
25533              
25534              replace pod2latex with the one in Pod-LaTeX v0.52 from CPAN
25535              (from Tim Jenness <t.jenness@jach.hawaii.edu>)
25536              
25537              h2xs tweaks
25538      Branch: maint-5.6/perl
25539           +> lib/Pod/LaTeX.pm t/lib/selfloader.t
25540           !> AUTHORS MAINTAIN MANIFEST ext/Devel/Peek/Peek.pm handy.h
25541           !> lib/SelfLoader.pm perl.c pod/perlapi.pod pod/perldata.pod
25542           !> pod/perlfaq6.pod pod/perlfaq9.pod pod/perlfunc.pod
25543           !> pod/perllocale.pod pod/perlre.pod pod/perltrap.pod
25544           !> pod/pod2latex.PL utils/h2xs.PL
25545 ____________________________________________________________________________
25546 [  7332] By: gsar                                  on 2000/10/16  07:53:52
25547         Log: integrate change#6179 from mainline
25548              
25549              buggy modulus on UVs introduced by change#3378 (resulted in
25550              4063328477 % 65535 amounting to 27406, instead of 27407)
25551      Branch: maint-5.6/perl
25552           !> pp.c t/op/arith.t
25553 ____________________________________________________________________________
25554 [  7331] By: gsar                                  on 2000/10/16  07:52:49
25555         Log: integrate changes#6176,6177,6178,6182 from cfgperl
25556              
25557              Single-quoted utf8 patch from Simon Cozens.
25558              
25559              Substitution utf8 patch from Simon Cozens.
25560              
25561              Be cleaner.
25562              
25563              Be Cleaner Part Deux.
25564      Branch: maint-5.6/perl
25565           !> Makefile.SH pp_hot.c toke.c
25566 ____________________________________________________________________________
25567 [  7330] By: gsar                                  on 2000/10/16  07:41:36
25568         Log: integrate change#6172 from mainline
25569              
25570              fix buggy multiline matching of C<"a\nxb\n" =~ /(?!\A)x/m>
25571              (from Ilya Zakharevich)
25572      Branch: maint-5.6/perl
25573           !> regexec.c t/op/re_tests
25574 ____________________________________________________________________________
25575 [  7329] By: gsar                                  on 2000/10/16  07:40:25
25576         Log: integrate change#6171 from mainline
25577              
25578              scalar() doesn't force scalar context when used in void context
25579              (from Simon Cozens)
25580      Branch: maint-5.6/perl
25581           !> op.c t/op/wantarray.t
25582 ____________________________________________________________________________
25583 [  7328] By: gsar                                  on 2000/10/16  07:39:33
25584         Log: integrate change#6170 from mainline
25585              
25586              change#6142 needs tweaks to tests to work where there's no
25587              symlink() (from Helmut Jarausch <jarausch@igpm.rwth-aachen.de>)
25588      Branch: maint-5.6/perl
25589           !> t/lib/filefind.t
25590 ____________________________________________________________________________
25591 [  7327] By: gsar                                  on 2000/10/16  07:35:34
25592         Log: integrate changes#6166..6168 from cfgperl
25593              
25594              Introduce HAS_GETESPWNAM, HAS_GETPRPWNAM, and I_PROT
25595              in case somebody wants to write an extension for more
25596              shadow database interfaces.
25597              
25598              tweak todo
25599              
25600              Tweak NV_PRESERVES_UV*, vms/subconfigure.com left untouched.
25601      Branch: maint-5.6/perl
25602           !> Configure Porting/Glossary Porting/config.sh Porting/config_H
25603           !> Todo-5.6 config_h.SH epoc/config.sh perl.h pp_sys.c toke.c
25604           !> vms/subconfigure.com vos/config.def vos/config.h vos/config.pl
25605           !> vos/config_h.SH_orig win32/config.bc win32/config.gc
25606           !> win32/config.vc win32/config_H.bc win32/config_H.gc
25607           !> win32/config_H.vc win32/config_h.PL win32/config_sh.PL
25608 ____________________________________________________________________________
25609 [  7326] By: gsar                                  on 2000/10/16  07:29:05
25610         Log: integrate changes#6157,6159..6161,6164 from cfgperl
25611              
25612              Regen Configure to jive with #6149.
25613              
25614              Upgrade to File::Temp 0.08 from Tim Jenness via CPAN.
25615              
25616              Changes for the File::Temp 0.08 (change #6159) test suite
25617              to fit better into the Perl distribution test framework.
25618              
25619              Add autogeneration of perlmodlib.pod and the new perlnewmod.pod,
25620              both from Simon Cozens.
25621              
25622              detypo
25623      Branch: maint-5.6/perl
25624           +> pod/perlmodlib.PL pod/perlnewmod.pod
25625           !> AUTHORS Configure MAINTAIN MANIFEST config_h.SH
25626           !> lib/File/Temp.pm pod/Makefile pod/perl.pod pod/perlmodlib.pod
25627           !> pod/perltoc.pod t/lib/ftmp-mktemp.t t/lib/ftmp-posix.t
25628           !> t/lib/ftmp-security.t t/lib/ftmp-tempfile.t
25629 ____________________________________________________________________________
25630 [  7325] By: gsar                                  on 2000/10/16  07:25:13
25631         Log: integrate change#6158 from vmsperl
25632              
25633              Add fallback to tmpfile for use in cases where user's relying on
25634              ACLs on SYS$SCRATCH to permit file creation. (based on Charles
25635              Lane's patch)
25636      Branch: maint-5.6/perl
25637           !> vms/vms.c vms/vmsish.h
25638 ____________________________________________________________________________
25639 [  7324] By: gsar                                  on 2000/10/16  07:20:50
25640         Log: integrate changes#6153..6155 from mainline
25641              
25642              prettier Test::Harness output on failed tests (from Nicholas Clark
25643              <nick@Bagpuss.uk.boo.com>)
25644              
25645              avoid type mismatch warning
25646              
25647              small bug in change#6144; remove random \xA0 character that snuck
25648              in via change#6145
25649      Branch: maint-5.6/perl
25650           !> lib/AutoSplit.pm lib/ExtUtils/xsubpp lib/Test/Harness.pm
25651           !> perl.c
25652 ____________________________________________________________________________
25653 [  7323] By: gsar                                  on 2000/10/16  07:18:47
25654         Log: integrate changes#6151,6152 from mainline
25655              
25656              fix accidental pessimization in RE optimizer (from Ilya Zakharevich)
25657              
25658              cosmetic fixups of RE debug output (from Ilya Zakharevich)
25659      Branch: maint-5.6/perl
25660           !> regexec.c
25661 ____________________________________________________________________________
25662 [  7322] By: gsar                                  on 2000/10/16  07:17:25
25663         Log: integrate changes#6146..6150 from mainline
25664              
25665              doc typo
25666              
25667              add a make entry to Config.pm so "perl -V:make" works on VMS
25668              (from Peter Prymmer)
25669              
25670              close open file before chmod() (from Rocco Caputo <troc@netrus.net>)
25671              
25672              OS/2 tweaks for usethreads build (from Rocco Caputo
25673              <troc@netrus.net>)
25674              
25675              perlrequick.pod updates (from Mark Kvale <kvale@phy.ucsf.edu>)
25676      Branch: maint-5.6/perl
25677           !> Configure hints/os2.sh lib/ExtUtils/MM_Unix.pm lib/warnings.pm
25678           !> makedef.pl os2/Makefile.SHs os2/OS2/REXX/t/rx_dllld.t
25679           !> os2/OS2/REXX/t/rx_objcall.t os2/OS2/REXX/t/rx_tievar.t
25680           !> os2/OS2/REXX/t/rx_tieydb.t os2/os2.c os2/os2ish.h perl.c
25681           !> pod/perlrequick.pod util.c vms/subconfigure.com warnings.h
25682           !> warnings.pl x2p/a2p.h
25683 ____________________________________________________________________________
25684 [  7321] By: gsar                                  on 2000/10/16  07:14:02
25685         Log: integrate changes#6143..6145 from mainline
25686              
25687              MacOS support, part 1 (from Matthias Neeracher
25688              <neeri@iis.ee.ethz.ch>)
25689              
25690              MacOS support, part 2: make AutoSplit use File::Spec instead
25691              of assuming Unixisms; *UNTESTED on Unix* (from Matthias Neeracher
25692              <neeri@iis.ee.ethz.ch>)
25693              
25694              make xsubpp skip embedded pod (from Matthias Neeracher
25695              <neeri@iis.ee.ethz.ch>)
25696      Branch: maint-5.6/perl
25697           +> ext/DynaLoader/dl_mac.xs
25698           !> MANIFEST ext/DB_File/Makefile.PL ext/NDBM_File/Makefile.PL
25699           !> ext/POSIX/POSIX.xs lib/AutoSplit.pm lib/ExtUtils/MakeMaker.pm
25700           !> lib/ExtUtils/xsubpp mg.c perl.c perlsfio.h pod/perlfaq4.pod
25701           !> pp_ctl.c proto.h toke.c util.c util.h
25702 ____________________________________________________________________________
25703 [  7320] By: gsar                                  on 2000/10/16  07:12:13
25704         Log: integrate changes#6141,6142 from mainline
25705              
25706              BSD/OS (bsdi) hints update by Timur I. Bakeyev and Todd C. Miller,
25707              forwarded by Peter Seebach from the bsdi-users mailing list.
25708              p5p Message-Id: <200005280543.AAA24519@guild.plethora.net>
25709              
25710              File::Find fails to chdir when chasing symlinks (from
25711              Helmut Jarausch <jarausch@igpm.rwth-aachen.de>)
25712      Branch: maint-5.6/perl
25713           !> hints/bsdos.sh lib/File/Find.pm t/lib/filefind.t
25714 ____________________________________________________________________________
25715 [  7319] By: gsar                                  on 2000/10/16  07:04:30
25716         Log: integrate change#6139 from mainline
25717              
25718              revise mktables.PL for bugs and newness in Unicode 3.0
25719              (from James Bence <jbence@amgen.com>)
25720      Branch: maint-5.6/perl
25721           +> (branch 30 files)
25722           !> (integrate 49 files)
25723 ____________________________________________________________________________
25724 [  7318] By: gsar                                  on 2000/10/16  07:01:01
25725         Log: integrate changes#6137,6138 from mainline
25726              
25727              fix bogus redeclaration warning for "our" variables in different
25728              scopes
25729              
25730              add note about the handling of negative indices to tied arrays
25731              (from Michael G Schwern <schwern@pobox.com>)
25732      Branch: maint-5.6/perl
25733           !> op.c pod/perltie.pod t/pragma/strict-vars
25734 ____________________________________________________________________________
25735 [  7317] By: gsar                                  on 2000/10/16  06:58:46
25736         Log: integrate changes#6127..6136 from mainline
25737              
25738              call_method(...,G_EVAL) can longjmp() out if the method probing
25739              failed (from Gisle Aas)
25740              
25741              new perlxstut example for passing/returning refs to arrays
25742              (from David Lowe <dlowe@pootpoot.com>)
25743              
25744              VMS test harness tweak (from Jesper Naur <jesper.naur@post.tele.dk>)
25745              
25746              fix places that mean C<"word" character> but say C<alphanumeric
25747              character>
25748              
25749              avoid warnings in POSIX.pm (from Barrie Slaymaker)
25750              
25751              warnings::enabled() doesn't fall back to looking at $^W if
25752              caller isn't using lexical warnings (from Paul Marquess)
25753              
25754              elide bogus test in change#6132
25755              
25756              make Test::Harness use wait.h/WCOREDUMP if available
25757              (from Ben Tilly <ben_tilly@hotmail.com>)
25758              
25759              enable Test::Harness to dynamically determine column width etc.
25760              (from Rob Napier <rnapier@employees.org>)
25761              
25762              random pod typos (from Peter Scott <Peter@PSDT.com>)
25763      Branch: maint-5.6/perl
25764           !> cop.h ext/Devel/Peek/Peek.pm ext/POSIX/POSIX.pm
25765           !> lib/Test/Harness.pm perl.c pod/perldebguts.pod
25766           !> pod/perlfunc.pod pod/perlre.pod pod/perlretut.pod
25767           !> pod/perlxstut.pod pp_ctl.c t/pragma/warn/9enabled vms/test.com
25768 ____________________________________________________________________________
25769 [  7316] By: gsar                                  on 2000/10/16  06:53:23
25770         Log: integrate change#6126 from mainline
25771              
25772              change#2879 broke rvalue autovivification of magicals such as
25773              ${$num} (reworked variant of patch suggested by Simon Cozens)
25774      Branch: maint-5.6/perl
25775           !> embed.h embed.pl gv.c pod/perlapi.pod pod/perlintern.pod pp.c
25776           !> pp_hot.c proto.h t/op/gv.t
25777 ____________________________________________________________________________
25778 [  7315] By: gsar                                  on 2000/10/16  06:51:38
25779         Log: integrate changes#6123,6125 from mainline
25780              
25781              clarify gotcha with #line directives (from Rocco Caputo
25782              <troc@netrus.net>)
25783              
25784              enable propagating exception objects via Perl_croak() in XS code
25785              (from Gisle Aas)
25786      Branch: maint-5.6/perl
25787           !> pod/perldebug.pod pod/perlsyn.pod util.c
25788 ____________________________________________________________________________
25789 [  7314] By: gsar                                  on 2000/10/16  06:49:28
25790         Log: integrate change#6122 from mainline
25791              
25792              downgrade fatal error on C<"foo@nosucharray.com"> to optional
25793              warning (from Mark-Jason Dominus)
25794      Branch: maint-5.6/perl
25795           !> lib/ExtUtils/typemap pod/perldelta.pod pod/perlsub.pod
25796           !> pod/perltrap.pod t/base/lex.t t/pragma/strict-vars
25797           !> t/pragma/strict.t t/pragma/warn/toke t/pragma/warnings.t
25798           !> toke.c
25799 ____________________________________________________________________________
25800 [  7313] By: gsar                                  on 2000/10/16  06:46:54
25801         Log: integrate changes#6112..6121 from vmsperl
25802              
25803              Check for existence of file before trying to delete
25804              
25805              Ugly workaround for version-specific RTL error
25806              
25807              Urk -- undo previous removal of vmsish 'exit' change
25808              
25809              Add bounds checking for several strings (Charles Lane)
25810              
25811              Miscellaneous cosmetic fixes (Charles Lane)
25812              
25813              Treat sockets as special in sys(read|write) (Charles Lane et al.)
25814              
25815              Regularize distinction between RMS$_DNF and RMS$_DIR (Craig Berry)
25816              Flatten case labels in switch statements uniformly (Charles Bailey)
25817              
25818              Quiet error messages in vmsish.t (Charles Lane)
25819              
25820              Add missing escape (Charles Lane)
25821              
25822              Allow eliminate_macros() and fixpath() to handle space-delimited
25823              lists (based on fixes by Craig Berry)
25824      Branch: maint-5.6/perl
25825           !> lib/ExtUtils/MM_VMS.pm lib/File/Spec/VMS.pm t/op/lex_assign.t
25826           !> vms/ext/vmsish.pm vms/ext/vmsish.t vms/test.com vms/vms.c
25827           !> vms/vmsish.h
25828 ____________________________________________________________________________
25829 [  7312] By: gsar                                  on 2000/10/16  06:41:18
25830         Log: integrate changes#6107,6110 from cfgperl
25831              
25832              Tweak the todo list.
25833              
25834              todo tweak
25835      Branch: maint-5.6/perl
25836           !> Todo-5.6
25837 ____________________________________________________________________________
25838 [  7311] By: gsar                                  on 2000/10/16  06:38:38
25839         Log: integrate changes#6104,6108 from mainline
25840              
25841              PL_sys_intern was being initialized too late on windows
25842              
25843              reenable fake signal handling on Windows, bugs and all
25844      Branch: maint-5.6/perl
25845           !> embed.h embed.pl global.sym makedef.pl mg.c objXSUB.h perl.c
25846           !> perl.h perlapi.c pod/perlapi.pod proto.h win32/perlhost.h
25847           !> win32/win32.c
25848 ____________________________________________________________________________
25849 [  7310] By: gsar                                  on 2000/10/16  06:36:03
25850         Log: integrate changes#6095,6097..6103 from cfgperl
25851              
25852              Introduce NV_PRESERVED_BITS.  Not yet used anywhere but
25853              might be useful in future.
25854              
25855              Add a note about possible compilation problems from Allen Smith.
25856              
25857              Add a note about other, yet unsupported, shadow password APIs.
25858              
25859              Tweaks for the cc bugs from Allen Smith.
25860              
25861              More compilation tweakery from Allen Smith.
25862              
25863              Hints and test tweaks for Unicos.
25864              
25865              The test suite tweak in #6101 wasn't quite right.
25866              
25867              Test tweaking for Unicos continues.
25868      Branch: maint-5.6/perl
25869           !> Configure Porting/Glossary Porting/config.sh Porting/config_H
25870           !> config_h.SH hints/irix_6.sh hints/unicos.sh pp_sys.c t/lib/b.t
25871           !> t/lib/complex.t t/op/64bitint.t
25872 ____________________________________________________________________________
25873 [  7309] By: gsar                                  on 2000/10/16  06:29:41
25874         Log: integrate changes#6093,6094 from mainline
25875              
25876              fork() failure to create pseudo process sets errno=EAGAIN and returns
25877              undef on windows (from Clinton Pierce <clintp@geeksalad.org>)
25878              
25879              cygwin update (from Eric Fifer <efifer@sanwaint.com>)
25880      Branch: maint-5.6/perl
25881           !> README.cygwin cygwin/Makefile.SHs cygwin/cygwin.c
25882           !> hints/cygwin.sh pp_sys.c sv.c win32/perlhost.h
25883 ____________________________________________________________________________
25884 [  7308] By: gsar                                  on 2000/10/16  06:27:29
25885         Log: integrate change#6092 from cfgperl
25886              
25887              Regen perltoc with the fixed buildtoc.
25888      Branch: maint-5.6/perl
25889           !> pod/perltoc.pod
25890 ____________________________________________________________________________
25891 [  7307] By: gsar                                  on 2000/10/16  06:26:40
25892         Log: integrate changes#6089,6090 from mainline
25893              
25894              buildtoc tweak to fix newline lossage
25895              
25896              concat doesn't preserve utf8-ness, and doesn't invalidate
25897              [NI]OK; added tests for both
25898      Branch: maint-5.6/perl
25899           !> perl.c pod/buildtoc pp_hot.c sv.c t/op/substr.t
25900 ____________________________________________________________________________
25901 [  7306] By: gsar                                  on 2000/10/16  06:24:05
25902         Log: integrate change#6088 from cfgperl
25903              
25904              Remove HAS_SETSPENT, HAS_GETSPENT, HAS_ENDSPENT,
25905              because we do not use those.  The HAS_GETSPNAM remains,
25906              though, because we still do use that.
25907      Branch: maint-5.6/perl
25908           !> Configure Porting/Glossary Porting/config.sh Porting/config_H
25909           !> config_h.SH epoc/config.sh hints/machten.sh pod/perltoc.pod
25910           !> pp_sys.c vms/subconfigure.com vos/config.def vos/config.h
25911           !> vos/config_h.SH_orig win32/config.bc win32/config.gc
25912           !> win32/config.vc win32/config_H.bc win32/config_H.gc
25913           !> win32/config_H.vc win32/config_h.PL win32/config_sh.PL
25914 ____________________________________________________________________________
25915 [  7305] By: gsar                                  on 2000/10/16  06:15:52
25916         Log: integrate changes#6084,6085,6087 from mainline
25917              
25918              substr() does not preserve utf8-ness (from Stefan Eissing
25919              <Eissing@medicaldataservice.de>); added tests
25920              
25921              repeat operator (x) doesn't preserve utf8-ness
25922              
25923              reverse() and quotemeta() weren't preserving utf8-ness; add tests
25924      Branch: maint-5.6/perl
25925           !> pp.c sv.c t/op/quotemeta.t t/op/substr.t toke.c
25926 ____________________________________________________________________________
25927 [  7304] By: gsar                                  on 2000/10/16  06:13:10
25928         Log: integrate changes#6077..6083 from mainline
25929              
25930              avoid warnings in diagnostics.pm; pod tweaks (from Peter Prymmer
25931              and Tom Phoenix)
25932              
25933              workaround for CRT bug in chdir() (from Charles Lane, via
25934              Peter Prymmer)
25935              
25936              remove outdated kludge in Carp (NULLs are permitted in diagnostics
25937              now)
25938              
25939              add File::Temp v0.08 from CPAN, with small tweaks to testsuite
25940              (from Tim Jenness <t.jenness@jach.hawaii.edu>)
25941              
25942              better default perlbug categories for ok reports (from Richard Foley)
25943              
25944              peek.t non-portable to ithreads
25945              
25946              note about undocumented caller() return value (from M.J.T. Guy);
25947              yet another peek.t tweak
25948      Branch: maint-5.6/perl
25949           +> lib/File/Temp.pm t/lib/ftmp-mktemp.t t/lib/ftmp-posix.t
25950           +> t/lib/ftmp-security.t t/lib/ftmp-tempfile.t
25951           !> AUTHORS MAINTAIN MANIFEST iperlsys.h lib/Carp/Heavy.pm
25952           !> lib/diagnostics.pm pod/perlfunc.pod pod/perlrun.pod
25953           !> pod/perltie.pod t/lib/peek.t utils/perlbug.PL vms/vms.c
25954           !> vms/vmsish.h
25955 ____________________________________________________________________________
25956 [  7303] By: gsar                                  on 2000/10/16  06:03:18
25957         Log: integrate changes#6011,6016,6033,6035..6039,6047..6052,6054..6059,
25958              6073..6075 from cfgperl (pp_sys.c manually merged due to conflicts)
25959              
25960              &HUGE_VAL is not defined, it exists.
25961              
25962              Do not warn that an infinity does not look like a number.
25963              
25964              Rewrite the pwent/spent logic to be a little bit more clearer.
25965              
25966              Continue on the pwent/spent case.
25967              
25968              Correct Freudian slip.
25969              
25970              Use HUGE_VALL if applicable.
25971              
25972              pwent/spent #ifdef imbalance.
25973              
25974              Infinite problems.
25975              
25976              Call getspnam() only iff needd.
25977              
25978              Test both the scalar and list contexts.
25979              
25980              Use setxxent()/endxxent().
25981              
25982              Complex tweakery.
25983              
25984              Unicos hint tweak.
25985              
25986              Be more forgiving in POSIX about HUGE_VALL.
25987              
25988              Detypo.
25989              
25990              The search of infinity continues, this time simplified.
25991              
25992              The logic of choosing strtol/strtoul/strtoll/strtoull was wrong
25993              in natively 64-bit platforms where a long is a quad (no need
25994              for long longs).  Also added bias for IVs.
25995              
25996              Complex tweaks.
25997              
25998              Introduce t/lib/peek.t.
25999              
26000              Make the test more portable.
26001      Branch: maint-5.6/perl
26002           +> t/lib/peek.t
26003            ! pp_sys.c
26004           !> MANIFEST ext/POSIX/POSIX.xs hints/unicos.sh
26005           !> lib/Math/Complex.pm sv.c t/lib/complex.t t/op/grent.t
26006           !> t/op/pwent.t toke.c util.c
26007 ____________________________________________________________________________
26008 [  7302] By: gsar                                  on 2000/10/16  05:03:37
26009         Log: integrate changes#6066..6071 from mainline
26010              
26011              s/END/CHECK/
26012              
26013              replace direct call to sighandler() with (*PL_sighandlerp)()
26014              
26015              note about values()
26016              
26017              File::Spec compatibility update (from Barrie Slaymaker
26018              <barries@slaysys.com>)
26019              
26020              remove misleading comment (from M.J.T. Guy)
26021              
26022              misformatted perllocal.pod (from Tim Jenness
26023              <t.jenness@jach.hawaii.edu>)
26024      Branch: maint-5.6/perl
26025           !> lib/ExtUtils/MM_Unix.pm lib/ExtUtils/MM_Win32.pm
26026           !> lib/File/Spec.pm lib/File/Spec/Mac.pm lib/File/Spec/Unix.pm
26027           !> lib/File/Spec/VMS.pm lib/File/Spec/Win32.pm perl.c
26028           !> pod/perlfunc.pod t/lib/anydbm.t win32/win32.c
26029 ____________________________________________________________________________
26030 [  7301] By: gsar                                  on 2000/10/16  05:00:08
26031         Log: integrate changes#6061..6063 from mainline
26032              
26033              change#5921 neglected to make eq honor "use bytes"
26034              
26035              additional tests for utf8.t
26036              
26037              tokeq() could read unallocated field in argument
26038      Branch: maint-5.6/perl
26039           !> sv.c t/pragma/utf8.t toke.c
26040 ____________________________________________________________________________
26041 [  7300] By: gsar                                  on 2000/10/16  04:56:54
26042         Log: integrate changes#6046,6048,6057,6058 from mainline
26043              
26044              libscheck has insufficient checks for n32 libs (from
26045              Albert Chin-A-Young <china@thewrittenword.com>)
26046              
26047              add note about how $( doesn't interpolate in REs (from
26048              Philip Newton <newton@ficus.frogspace.net>)
26049              
26050              fix broken parsing of /\x{ab}/
26051              
26052              printf(...) should be PerlIO_printf(PerlIO_stdout(), ...)
26053              (spotted by Donald Kinzer <dkinzer@premia.com>)
26054      Branch: maint-5.6/perl
26055           !> hints/irix_6.sh perl.c pod/perlop.pod regcomp.c
26056           !> t/pragma/utf8.t
26057 ____________________________________________________________________________
26058 [  7299] By: gsar                                  on 2000/10/16  04:52:50
26059         Log: integrate change#6044 from mainline
26060              
26061              change#3798 broke the meaning of "\0_7_7", tr/\0_// etc.; fix it
26062              such that underscores are only ignored in literal numbers,
26063              "\x{...}", and hex/oct argument
26064      Branch: maint-5.6/perl
26065           !> perl.c pp.c regcomp.c t/op/oct.t toke.c util.c
26066 ____________________________________________________________________________
26067 [  7298] By: gsar                                  on 2000/10/16  04:50:53
26068         Log: integrate changes#6027..6043 from mainline
26069              
26070              podlators-1.02 update (from Russ Allbery)
26071              
26072              Pod::Man generates groff-incompatible macro definition (from
26073              Tom Christiansen)
26074              
26075              add CGI.pm v2.66 (from Lincoln Stein)
26076              
26077              introduce @LAST_MATCH_START and @LAST_MATCH_END, English aliases
26078              for @- and @+ (from Johan Vromans)
26079              
26080              small nits in diagnostics.pm (from Robin Barker)
26081              
26082              whitespace adjustments
26083              
26084              missing files in MANIFEST
26085              
26086              cpio 2.4.2 on Linux creates directories in 0700 mode, adjust makerel
26087              to compensate
26088              
26089              remove outdated perltrap entry (from Peter Scott <Peter@PSDT.com>)
26090              
26091              perlretut revisions (from Mark Kvale <kvale@phy.ucsf.edu>)
26092      Branch: maint-5.6/perl
26093           +> lib/CGI/Util.pm t/lib/cgi-pretty.t
26094           !> MANIFEST Porting/makerel lib/CGI.pm lib/CGI/Carp.pm
26095           !> lib/CGI/Cookie.pm lib/CGI/Pretty.pm lib/CGI/Push.pm
26096           !> lib/English.pm lib/Pod/Man.pm lib/Pod/Text.pm
26097           !> lib/diagnostics.pm pod/perldiag.pod pod/perlretut.pod
26098           !> pod/perltrap.pod pod/perlvar.pod pp_sys.c t/lib/cgi-function.t
26099           !> t/lib/cgi-html.t t/lib/cgi-request.t
26100 ____________________________________________________________________________
26101 [  7297] By: gsar                                  on 2000/10/16  04:44:30
26102         Log: integrate change#6025 from mainline
26103              
26104              Is{Alnum,Alpha,Word} don't match titlecase
26105              TODO: IsSpace is defined recursively!
26106              (both spotted by Larry)
26107      Branch: maint-5.6/perl
26108           !> lib/unicode/Is/Alnum.pl lib/unicode/Is/Alpha.pl
26109           !> lib/unicode/Is/Word.pl lib/unicode/mktables.PL
26110 ____________________________________________________________________________
26111 [  7296] By: gsar                                  on 2000/10/16  04:39:30
26112         Log: integrate change#6023 from mainline
26113              
26114              debugger stomps on $. (from M.J.T. Guy)
26115      Branch: maint-5.6/perl
26116           !> lib/perl5db.pl
26117 ____________________________________________________________________________
26118 [  7295] By: gsar                                  on 2000/10/16  04:38:02
26119         Log: integrate change#6022 from mainline
26120              
26121              unbalanced LEAVE after perl_clone(...,0) (from Doug MacEachern)
26122      Branch: maint-5.6/perl
26123           !> sv.c
26124 ____________________________________________________________________________
26125 [  7294] By: gsar                                  on 2000/10/16  04:37:05
26126         Log: integrate changes#6018..6021 from mainline
26127              
26128              make lib/syslog.t portable to systems that don't have _PATH_LOG,
26129              make _PATH_LOG() return "" if unavailable
26130              
26131              windows portability tweaks
26132              
26133              test tweak
26134              
26135              remove Win2K issue in pod (fixed by change#6020)
26136      Branch: maint-5.6/perl
26137           !> README.win32 ext/File/Glob/Glob.pm ext/Sys/Syslog/Syslog.pm
26138           !> ext/Sys/Syslog/Syslog.xs pod/perldelta.pod t/lib/b.t
26139           !> t/lib/open3.t t/lib/syslog.t win32/win32.h
26140 ____________________________________________________________________________
26141 [  7293] By: gsar                                  on 2000/10/16  04:20:00
26142         Log: integrate changes#6013..6015 from mainline
26143              
26144              tweak change#5945 to display correct switch name in diagnostic
26145              
26146              glob() loading File::Glob behind the scenes may cause syntax errors
26147              
26148              tweak test for portability
26149      Branch: maint-5.6/perl
26150           !> op.c perl.c pod/perldiag.pod t/lib/b.t
26151 ____________________________________________________________________________
26152 [  7292] By: gsar                                  on 2000/10/16  04:18:11
26153         Log: integrate changes#6005..6010 from mainline, cfgperl
26154              
26155              perldoc might fail via "use blib" (from Hugo van der Sanden)
26156              
26157              Regen Configure.
26158              
26159              note about compile failures and END blocks (from M.J.T. Guy)
26160              
26161              VMS config tweak (from Craig A. Berry <craig.berry@metamorgs.com>)
26162              
26163              (change#6009 integrated earlier in change#7255)
26164              
26165              clarify note about shadow password support (from
26166              gellyfish@gellyfish.com)
26167      Branch: maint-5.6/perl
26168           !> Configure Porting/Glossary Porting/config.sh Porting/config_H
26169           !> config_h.SH installperl pod/perldelta.pod pod/perlfunc.pod
26170           !> pod/perlmod.pod utils/perldoc.PL vms/subconfigure.com
26171 ____________________________________________________________________________
26172 [  7291] By: gsar                                  on 2000/10/16  04:12:03
26173         Log: integrate changes#6002,6003 from mainline
26174              
26175              destructive sv_setsv() can lose UV-ness from source, causing
26176              numeric promotions/comparisons to fail to do the right thing
26177              
26178              allow REG_EXPAND_SZ keys in Windows registry (from
26179              John Clayton <John.Clayton@barclayscapital.com>)
26180      Branch: maint-5.6/perl
26181           !> sv.c win32/win32.c
26182 ____________________________________________________________________________
26183 [  7290] By: gsar                                  on 2000/10/16  04:10:19
26184         Log: integrate change#6001 from mainline
26185              
26186              support additional library locations via $Config{otherlibdirs}
26187              (from Andy Dougherty)
26188      Branch: maint-5.6/perl
26189           !> Configure INSTALL Porting/Glossary Porting/config.sh
26190           !> Porting/config_H config_h.SH epoc/config.sh perl.c
26191           !> vms/subconfigure.com vos/config.def vos/config_h.SH_orig
26192           !> win32/config.bc win32/config.gc win32/config.vc
26193 ____________________________________________________________________________
26194 [  7289] By: gsar                                  on 2000/10/16  04:08:28
26195         Log: integrate change#5999 from mainline
26196              
26197              fix line renumbering bug in C<eval qq[#line 10 "X"\nwarn]>
26198      Branch: maint-5.6/perl
26199           !> t/pragma/warn/toke toke.c
26200 ____________________________________________________________________________
26201 [  7288] By: gsar                                  on 2000/10/16  04:07:01
26202         Log: integrate changes#5997,5998 from cfgperl
26203              
26204              Preserve $!.
26205              
26206              Try to get "Inf" by using &POSIX::HUGE_VAL in sprintf.
26207      Branch: maint-5.6/perl
26208           !> lib/Math/Complex.pm
26209 ____________________________________________________________________________
26210 [  7287] By: gsar                                  on 2000/10/16  04:04:37
26211         Log: integrate change#5995 from mainline
26212              
26213              fixes for bugs in C<use warnings qw(FATAL all)> (from Paul Marquess)
26214      Branch: maint-5.6/perl
26215           !> mg.c t/pragma/warn/7fatal warnings.h warnings.pl
26216 ____________________________________________________________________________
26217 [  7286] By: gsar                                  on 2000/10/16  04:03:21
26218         Log: integrate change#5994 from mainline
26219              
26220              fix for missed accounting for null byte in pack("Z",...) (from
26221              M.J.T. Guy)
26222      Branch: maint-5.6/perl
26223           !> pp.c t/op/pack.t
26224 ____________________________________________________________________________
26225 [  7285] By: gsar                                  on 2000/10/16  04:02:11
26226         Log: integrate changes#5989..5993 from mainline
26227              
26228              qw(a\\b) must be parsed like 'a\\b', i.e., backslash escapes
26229              itself and no other (from Tom Hughes)
26230              
26231              use $ENV{LIB} to search for libs under Visual C compiler
26232              on Windows (from Jochen Wiedmann <joe@ispsoft.de>)
26233              
26234              posix-bc patches (from Dorner Thomas <Thomas.Dorner@start.de>)
26235              
26236              pod nit (from Simon Cozens)
26237              
26238              various minor tweaks seen on p5p
26239      Branch: maint-5.6/perl
26240           !> README.posix-bc hints/posix-bc.sh lib/ExtUtils/Liblist.pm
26241           !> lib/perl5db.pl pod/perlipc.pod pod/perlop.pod pod/perlvar.pod
26242           !> t/op/array.t toke.c
26243 ____________________________________________________________________________
26244 [  7284] By: gsar                                  on 2000/10/16  03:59:00
26245         Log: integrate changes#5978..5988 from mainline
26246              
26247              sync version numbers in File::Spec with the ones on CPAN
26248              (from Barrie Slaymaker)
26249              
26250              under useithreads, constant pad entries could inadvertantly be
26251              shared across threads (from Eric Blood <eblood@xmission.com>);
26252              added Eric's test case to testsuite
26253              
26254              allow Configure -S to run non-interactively (spotted by Greg Hudson
26255              <ghudson@mit.edu>)
26256              
26257              rename File::Glob::glob() to File::Glob::bsd_glob() to avoid
26258              prototype mismatch with CORE::glob(); update pod and tests to
26259              suit (File::Glob::glob() is still available for backward
26260              compatibility, but should be considered deprecated)
26261              
26262              avoid error in IO::Socket::INET when given an unknown service name
26263              with a port number (from Brian Raven <brianr@ssprdmh01.liffe.com>)
26264              
26265              numeric conversion of non-number in change#3378 tramples on
26266              OOK offset, causing segfaults
26267              
26268              attributes::reftype() doesn't work on tied argument
26269              
26270              forked child may not exit correctly if it failed to open
26271              /dev/console (from Graham Barr)
26272              
26273              add regular expressions tutorial and quick-start guide (from
26274              Mark Kvale <kvale@phy.ucsf.edu>)
26275              
26276              B::Bytecode tweaks (from Simon Cozens <simon@brecon.co.uk>)
26277              
26278              s/HTMLSCRIPTPOD/HTMLSCRIPTPODS/ (from Paul Sharpe
26279              <paul@miraclefish.com>)
26280      Branch: maint-5.6/perl
26281           +> pod/perlrequick.pod pod/perlretut.pod
26282           !> AUTHORS Configure MAINTAIN MANIFEST ext/B/B/Bytecode.pm
26283           !> ext/B/B/Disassembler.pm ext/File/Glob/Glob.pm
26284           !> ext/IO/lib/IO/Socket/INET.pm ext/Sys/Syslog/Syslog.pm
26285           !> lib/ExtUtils/MakeMaker.pm lib/File/Spec/Functions.pm
26286           !> lib/File/Spec/Mac.pm lib/File/Spec/OS2.pm
26287           !> lib/File/Spec/Unix.pm lib/File/Spec/VMS.pm
26288           !> lib/File/Spec/Win32.pm op.c sv.c t/lib/glob-basic.t
26289           !> t/lib/glob-case.t t/lib/glob-taint.t t/op/misc.t xsutils.c
26290 ____________________________________________________________________________
26291 [  7283] By: gsar                                  on 2000/10/16  03:52:14
26292         Log: integrate change#5977 from mainline
26293              
26294              autoquote barewords followed by newline and arrow properly
26295              (variant of fix suggested by Rick Delaney and M.J.T. Guy)
26296      Branch: maint-5.6/perl
26297           !> t/pragma/warn/toke toke.c
26298 ____________________________________________________________________________
26299 [  7282] By: gsar                                  on 2000/10/16  03:50:48
26300         Log: integrate change#5976 from mainline
26301              
26302              DB_File v1.73 update (from Paul Marquess)
26303      Branch: maint-5.6/perl
26304           !> ext/DB_File/Changes ext/DB_File/DB_File.pm
26305           !> ext/DB_File/DB_File.xs ext/DB_File/version.c
26306 ____________________________________________________________________________
26307 [  7281] By: gsar                                  on 2000/10/16  03:49:14
26308         Log: integrate change#5975 from mainline
26309              
26310              allow sort() reentrancy (variant of patch suggested by
26311              Hugo van der Sanden)
26312      Branch: maint-5.6/perl
26313           !> pp_ctl.c t/op/sort.t
26314 ____________________________________________________________________________
26315 [  7280] By: gsar                                  on 2000/10/16  03:48:22
26316         Log: integrate change#5974 from mainline
26317              
26318              change#4197 somehow missed initializing PL_errors, meaning
26319              syntax error queueing wasn't working outside eval"" at all;
26320              also fixed eval"" to localize PL_error_count, so that compile-time
26321              eval's don't clobber the error state of the outer context
26322      Branch: maint-5.6/perl
26323           !> lib/Math/Complex.pm perl.c pp_ctl.c t/pragma/warn/op
26324           !> t/pragma/warn/toke
26325 ____________________________________________________________________________
26326 [  7279] By: gsar                                  on 2000/10/16  03:46:21
26327         Log: integrate change#5973 from mainline
26328              
26329              fix for failure to match $foo =~ /(?i)/ (from Ilya Zakharevich)
26330      Branch: maint-5.6/perl
26331           !> regcomp.c regexec.c t/op/re_tests
26332 ____________________________________________________________________________
26333 [  7278] By: gsar                                  on 2000/10/16  03:44:54
26334         Log: integrate change#5971 from cfgperl
26335              
26336              Unicos tweaks from Mark P. Lutz.
26337      Branch: maint-5.6/perl
26338           !> hints/unicos.sh lib/Math/Complex.pm
26339 ____________________________________________________________________________
26340 [  7277] By: gsar                                  on 2000/10/16  03:42:59
26341         Log: integrate changes#5966..5970 from mainline
26342              
26343              add testsuite for B backends, fix bug in B::Deparse (from
26344              Simon Cozens <simon@brecon.co.uk>)
26345              
26346              improved docs on the warn_uninit diagnostic (from David Glasser
26347              and Simon Cozens)
26348              
26349              tolerate spaces in group names in test on solaris (from David Boyce
26350              <dsb@boyski.com>)
26351              
26352              fix Sys::Syslog breakage on domain sockets (from Tom Hughes)
26353              
26354              Data::Dumper fumbles negative numbers on 32-bit platforms where
26355              IV is >32bits
26356      Branch: maint-5.6/perl
26357           +> t/lib/b.t t/lib/syslog.t
26358           !> MANIFEST ext/B/B/Deparse.pm ext/B/B/Stash.pm
26359           !> ext/Data/Dumper/Dumper.xs ext/Sys/Syslog/Syslog.pm
26360           !> pod/perldiag.pod t/lib/dumper.t t/op/groups.t
26361 ____________________________________________________________________________
26362 [  7276] By: gsar                                  on 2000/10/16  03:39:30
26363         Log: integrate change#5965 from mainline
26364              
26365              avoid "will not stay shared" warnings for our variables (from
26366              Robin Barker)
26367      Branch: maint-5.6/perl
26368           !> op.c t/pragma/warn/op
26369 ____________________________________________________________________________
26370 [  7275] By: gsar                                  on 2000/10/16  03:38:18
26371         Log: integrate change#5964 from mainline
26372              
26373              reformat to 72 columns (again)
26374      Branch: maint-5.6/perl
26375           !> pod/perldiag.pod
26376 ____________________________________________________________________________
26377 [  7274] By: gsar                                  on 2000/10/16  03:36:58
26378         Log: integrate change#5963 from mainline
26379              
26380              patch from Larry to make (\&) prototype work; added tests for
26381              the same
26382      Branch: maint-5.6/perl
26383           !> op.c t/comp/proto.t
26384 ____________________________________________________________________________
26385 [  7273] By: gsar                                  on 2000/10/16  03:35:51
26386         Log: integrate changes#5956..5962 from mainline
26387              
26388              better diagnostics on failed tests (from Ilya Zakharevich)
26389              
26390              pod nits (from A. C. Yardley <yardley@tanet.net>)
26391              
26392              change#3569 deleted some essential code, revert; avoid use of
26393              atexit() to make DynaLoader work properly on AIX under mod_perl
26394              (from Jens-Uwe Mager <jum@helios.de>)
26395              
26396              doubled words in pods (from Simon Cozens
26397              <simon.p.cozens@jp.pwcglobal.com>)
26398              
26399              better INSTALL notes on Solaris issues (from Dominic Dunlop)
26400              
26401              recognize our, CHECK and INIT in cperl-mode (from Doug MacEachern)
26402              
26403              updated README.hpux (from Jeff Okamoto)
26404      Branch: maint-5.6/perl
26405           !> INSTALL README.hpux emacs/cperl-mode.el
26406           !> ext/DynaLoader/dl_aix.xs pod/perldebguts.pod pod/perldelta.pod
26407           !> pod/perlfaq5.pod pod/perlfork.pod pod/perlfunc.pod
26408           !> pod/perlipc.pod pod/perllexwarn.pod pod/perllocale.pod
26409           !> pod/perlmod.pod pod/perlmodlib.pod pod/perlnumber.pod
26410           !> pod/perlopentut.pod pod/perltodo.pod pod/perltootc.pod
26411           !> t/op/lex_assign.t
26412 ____________________________________________________________________________
26413 [  7272] By: gsar                                  on 2000/10/16  03:31:22
26414         Log: integrate change#5955 from mainline
26415              
26416              longstanding bug exposed by change#3307: sort arguments weren't
26417              compiled with the right wantarray context (ensuing runtime lookup
26418              via block_gimme() was getting the incidental context of the
26419              sort() itself)
26420      Branch: maint-5.6/perl
26421           !> op.c t/op/sort.t
26422 ____________________________________________________________________________
26423 [  7271] By: gsar                                  on 2000/10/16  03:29:11
26424         Log: integrate changes#5933,5935,5940..5944,5946,5951,5952 from cfgperl
26425              branch
26426              
26427              Flatten the cpp jungle doing the nosuid checking.
26428              
26429              Do not assume sign propagation. (from M.J.T. Guy)
26430              
26431              Various Unicos 10.0.0.6 fixes. (from Mark Lutz)
26432              
26433              Add HAS_FREXPL, HAS_ISNAN, HAS_ISNANL, and HAS_MODFL.
26434              Now pp_ncmp() returns undef is either operand is a NaN.
26435              
26436              On second thoughts frexp() does have two arguments.
26437              
26438              Document that tr() is not tr(1).
26439              
26440              Be more robust on "extreme" (large absolute value)
26441              arguments.  Originally reported by Daniel Connelly
26442              as a problem with asinh() on large negative arguments,
26443              asinh() used to bail out because an argument to log()
26444              ended up being zero.  Ilya Zakharevich proposed using
26445              Taylor's series in such cases, which for such large
26446              arguments is a very good approximation.
26447              
26448              Undo "use integer" addition from 64bitint as it seems
26449              to break most of the subtests in Digital UNIX;
26450              Unicos needs to find another way.
26451      Branch: maint-5.6/perl
26452           !> (integrate 29 files)
26453 ____________________________________________________________________________
26454 [  7270] By: gsar                                  on 2000/10/16  03:09:44
26455         Log: integrate changes#5948,5949,5950 from mainline
26456              
26457              typo in vars.pm that leads to cryptic message (from Piotr
26458              Piatkowski <kompas@kompas.usr.onet.pl>)
26459              
26460              make perldoc use the pod2man from the same version (from
26461              M.J.T. Guy)
26462              
26463              reformat perldiag to avoid long lines
26464      Branch: maint-5.6/perl
26465           !> lib/vars.pm pod/perldiag.pod utils/perldoc.PL
26466 ____________________________________________________________________________
26467 [  7269] By: gsar                                  on 2000/10/16  03:05:54
26468         Log: integrate change#5947 from mainline
26469              
26470              use &dl_error rather than &dl_load_file as the guard for calling
26471              boot_DynaLoader() (meant to fix dl_error() redefined warnings in
26472              statically built perl)
26473      Branch: maint-5.6/perl
26474           !> ext/DynaLoader/DynaLoader_pm.PL ext/DynaLoader/XSLoader_pm.PL
26475 ____________________________________________________________________________
26476 [  7268] By: gsar                                  on 2000/10/16  03:04:48
26477         Log: integrate change#5945 from mainline
26478              
26479              make module name mandatory after -M switch; reorder perldiag
26480              alphabetically (from Mark-Jason Dominus)
26481      Branch: maint-5.6/perl
26482           !> perl.c pod/perldiag.pod
26483 ____________________________________________________________________________
26484 [  7267] By: gsar                                  on 2000/10/16  03:03:01
26485         Log: integrate change#5939 from mainline
26486              
26487              more pod nits (from Larry Virden)
26488      Branch: maint-5.6/perl
26489           !> README.win32 pod/perlsub.pod pod/perlsyn.pod
26490           !> pod/perlthrtut.pod pod/perltoc.pod pod/perltodo.pod
26491           !> pod/perlxs.pod pod/perlxstut.pod vms/perlvms.pod
26492 ____________________________________________________________________________
26493 [  7266] By: gsar                                  on 2000/10/16  03:01:39
26494         Log: integrate change#5938 from mainline
26495              
26496              Consolidated B::Deparse fixes (from Stephen McCamant)
26497      Branch: maint-5.6/perl
26498           !> ext/B/B/Deparse.pm
26499 ____________________________________________________________________________
26500 [  7265] By: gsar                                  on 2000/10/16  03:00:43
26501         Log: integrate change#5936 from mainline
26502              
26503              additional tests for change#7263 (from Paul Marquess)
26504      Branch: maint-5.6/perl
26505           !> t/pragma/warn/2use t/pragma/warn/3both t/pragma/warn/4lint
26506           !> t/pragma/warn/5nolint t/pragma/warn/6default
26507 ____________________________________________________________________________
26508 [  7264] By: gsar                                  on 2000/10/16  02:58:34
26509         Log: integrate change#5934 from mainline
26510              
26511              propagate lexical warnings from surrounding scope correctly
26512              within string eval() (from Paul Marquess)
26513      Branch: maint-5.6/perl
26514           !> pp_ctl.c t/pragma/warn/pp_ctl
26515 ____________________________________________________________________________
26516 [  7263] By: gsar                                  on 2000/10/16  02:56:53
26517         Log: integrate change#5932 from mainline
26518              
26519              add rsignal(), whichsig() and do_join() to public API list
26520              (mod_perl uses them to good advantage)
26521      Branch: maint-5.6/perl
26522           !> embed.pl global.sym objXSUB.h perlapi.c proto.h
26523 ____________________________________________________________________________
26524 [  7262] By: gsar                                  on 2000/10/16  02:55:53
26525         Log: integrate change#5931 from mainline
26526              
26527              fix RE brokenness on refs/overloaded things (from Ilya Zakharevich)
26528      Branch: maint-5.6/perl
26529           !> pp_hot.c regexec.c t/op/pat.t
26530 ____________________________________________________________________________
26531 [  7261] By: gsar                                  on 2000/10/16  02:55:01
26532         Log: integrate change#5930 from mainline
26533              
26534              small os390 tweaks (from Peter Prymmer)
26535      Branch: maint-5.6/perl
26536           !> config_h.SH makedepend.SH
26537 ____________________________________________________________________________
26538 [  7260] By: gsar                                  on 2000/10/16  02:54:10
26539         Log: integrate change#5929 from mainline
26540              
26541              pod nits
26542      Branch: maint-5.6/perl
26543           !> pod/perlguts.pod
26544 ____________________________________________________________________________
26545 [  7259] By: gsar                                  on 2000/10/16  02:52:55
26546         Log: integrate change#5927 from mainline
26547              
26548              arrange for next() to resume at the unstack op rather than the
26549              loop conditional, so that scope cleanup happens correctly
26550              (from Stephen McCamant)
26551      Branch: maint-5.6/perl
26552           !> op.c pp_ctl.c t/op/misc.t
26553 ____________________________________________________________________________
26554 [  7258] By: gsar                                  on 2000/10/16  02:51:38
26555         Log: integrate change#5926 from mainline
26556              
26557              on windows, reserve 16M of stack rather than 128M (allows more
26558              threads to run concurrently)
26559      Branch: maint-5.6/perl
26560           !> win32/Makefile win32/makefile.mk
26561 ____________________________________________________________________________
26562 [  7257] By: gsar                                  on 2000/10/16  02:50:37
26563         Log: integrate change#5925 from mainline
26564              
26565              POSIX-BC tweak (from Ignasi Roca <ignasi.roca@fujitsu.siemens.es>)
26566      Branch: maint-5.6/perl
26567           !> toke.c
26568 ____________________________________________________________________________
26569 [  7256] By: gsar                                  on 2000/10/16  02:49:36
26570         Log: integrate change#5924 from mainline
26571              
26572              avoid using uninitialized memory in require version check
26573      Branch: maint-5.6/perl
26574           !> pp_ctl.c universal.c
26575 ____________________________________________________________________________
26576 [  7255] By: gsar                                  on 2000/10/16  02:48:03
26577         Log: integrate changes#5923,5928,6009 from mainline
26578              
26579              IO::Poll bugs fixed (from Lincoln Stein <lstein@cshl.org>)
26580      Branch: maint-5.6/perl
26581           !> ext/IO/lib/IO/Poll.pm t/lib/io_poll.t
26582 ____________________________________________________________________________
26583 [  7254] By: gsar                                  on 2000/10/16  02:44:46
26584         Log: integrate change#5922 from mainline
26585              
26586              commentary about IoTYPE() (from Nathan Torkington)
26587      Branch: maint-5.6/perl
26588           !> sv.h
26589 ____________________________________________________________________________
26590 [  7253] By: gsar                                  on 2000/10/16  02:43:49
26591         Log: integrate change#5921 from mainline
26592              
26593              make eq unicode-aware (from Gisle Aas); fix bogus tests revealed
26594      Branch: maint-5.6/perl
26595           !> sv.c t/lib/charnames.t t/pragma/utf8.t
26596 ____________________________________________________________________________
26597 [  7252] By: gsar                                  on 2000/10/16  02:42:31
26598         Log: integrate change#5920 from mainline
26599              
26600              Larry's fix for buggy propagation of utf8-ness in join(); add test
26601      Branch: maint-5.6/perl
26602           !> doop.c t/op/ver.t
26603 ____________________________________________________________________________
26604 [  7251] By: gsar                                  on 2000/10/16  02:41:14
26605         Log: integrate changes#5915..5919 from mainline
26606              
26607              various (pod tweaks &c)
26608      Branch: maint-5.6/perl
26609           !> (integrate 33 files)
26610 ____________________________________________________________________________
26611 [  7250] By: gsar                                  on 2000/10/16  02:38:16
26612         Log: integrate change#5914 from mainline
26613              
26614              caller() wasn't returning the right number of elements for
26615              eval {...}
26616      Branch: maint-5.6/perl
26617           !> pp_ctl.c t/pragma/warn/9enabled
26618 ____________________________________________________________________________
26619 [  7249] By: gsar                                  on 2000/10/16  02:37:02
26620         Log: integrate change#5913 from mainline
26621              
26622              pod nit: $yday range for localtime/gmtime is 0..364 not 1..365
26623              (from Mark-Jason Dominus)
26624      Branch: maint-5.6/perl
26625           !> pod/perlfunc.pod
26626 ____________________________________________________________________________
26627 [  7248] By: gsar                                  on 2000/10/16  02:35:58
26628         Log: integrate change#5912 from mainline
26629              
26630              fix totally broken caching in UNIVERSAL::isa() (from
26631              Nick Ing-Simmons)
26632      Branch: maint-5.6/perl
26633           !> t/op/universal.t universal.c
26634 ____________________________________________________________________________
26635 [  7247] By: gsar                                  on 2000/10/16  02:34:27
26636         Log: integrate changes#5910,5911 from mainline
26637              
26638              typo in pod
26639              
26640              add linebreak properties from unicode/LineBrk.txt (from
26641              Dave Hartnoll <Dave_Hartnoll@3b2.com>)
26642      Branch: maint-5.6/perl
26643           +> (branch 29 files)
26644           !> ext/Thread/Thread.pm lib/unicode/mktables.PL
26645 ____________________________________________________________________________
26646 [  7246] By: gsar                                  on 2000/10/16  02:33:29
26647         Log: integrate change#5909 from mainline
26648              
26649              mode argument to do_binmode() should be file mode, not boolean
26650      Branch: maint-5.6/perl
26651           !> pp_sys.c
26652 ____________________________________________________________________________
26653 [  7245] By: gsar                                  on 2000/10/16  02:31:04
26654         Log: integrate change#5908 from mainline
26655              
26656              introduce illegal symbols into null package so that
26657              gv_fetchpv(...,TRUE) always returns a valid GV even when the
26658              symbol is trapped by strictures (avoids coredumps)
26659      Branch: maint-5.6/perl
26660           !> embedvar.h gv.c intrpvar.h perl.c perlapi.h
26661           !> t/pragma/strict-vars
26662 ____________________________________________________________________________
26663 [  7244] By: jhi                                   on 2000/10/16  02:29:54
26664         Log: Subject: $Carp::ExportLevel confusion in Exporter
26665              From: "Ben Tilly" <ben_tilly@hotmail.com>
26666              Date: Sat, 14 Oct 2000 16:44:34 EDT
26667              Message-ID: <LAW2-F258sQwY6YHkid00003788@hotmail.com>
26668      Branch: perl
26669            ! lib/Exporter/Heavy.pm
26670 ____________________________________________________________________________
26671 [  7243] By: jhi                                   on 2000/10/16  02:28:33
26672         Log: Subject: [PATCH perlguts.pod] Document offset hack
26673              From: Simon Cozens <simon@cozens.net>
26674              Message-ID: <20001014193225.A6568@pembro4.pmb.ox.ac.uk>
26675              Date: Sat, 14 Oct 2000 19:32:25 +0100
26676      Branch: perl
26677            ! pod/perlguts.pod
26678 ____________________________________________________________________________
26679 [  7242] By: gsar                                  on 2000/10/16  02:26:51
26680         Log: integrate changes#5905,5906,5907,6064 from mainline
26681              
26682              printf/sprintf didn't get quad types right under use64bitint
26683      Branch: maint-5.6/perl
26684           !> pp_sys.c sv.c t/op/64bitint.t
26685 ____________________________________________________________________________
26686 [  7241] By: jhi                                   on 2000/10/16  02:22:44
26687         Log: Subject: small pod patch
26688              From: Dan Boorstein <dan_boo@bellsouth.net>
26689              Date: Sat, 14 Oct 2000 14:29:24 -0400
26690              Message-ID: <39E8A604.B501DB4F@bellsouth.net>
26691      Branch: perl
26692            ! pod/perlfaq7.pod pod/perlmod.pod
26693 ____________________________________________________________________________
26694 [  7240] By: jhi                                   on 2000/10/16  02:13:46
26695         Log: -w cleanup.
26696              
26697              Subject: Re: Problems with bleadperl 
26698              From: "Stephen P. Potter" <spp@ds.net>
26699              Date: Fri, 13 Oct 2000 13:32:49 -0400
26700              Message-Id: <200010131732.NAA19391@spp.users.ds.net>
26701      Branch: perl
26702            ! t/pragma/overload.t
26703 ____________________________________________________________________________
26704 [  7239] By: jhi                                   on 2000/10/16  01:41:18
26705         Log: One more ~utf8 tweak.
26706      Branch: perl
26707            ! t/op/bop.t
26708 ____________________________________________________________________________
26709 [  7238] By: jhi                                   on 2000/10/16  01:34:14
26710         Log: Tweak the test of #7235.
26711      Branch: perl
26712            ! t/op/bop.t
26713 ____________________________________________________________________________
26714 [  7237] By: jhi                                   on 2000/10/16  01:25:04
26715         Log: Fix a couple of compiler-noted nits in #7235.
26716      Branch: perl
26717            ! pp.c
26718 ____________________________________________________________________________
26719 [  7236] By: jhi                                   on 2000/10/16  01:22:46
26720         Log: Fix few quad issues, which for example broke chr(~chr(~0)) for UTF8.
26721      Branch: perl
26722            ! pp.c pp_hot.c
26723 ____________________________________________________________________________
26724 [  7235] By: jhi                                   on 2000/10/15  16:24:44
26725         Log: Make ~(chr(a).chr(b)) eq chr(~a).chr(~b) on utf8.
26726              
26727              From: Simon Cozens <simon@cozens.net>
26728              Subject: [PATCH] Re: [ID 20000918.005] ~ on wide chars
26729              Date: Sat, 14 Oct 2000 20:52:13 +0100
26730              Message-ID: <20001014205213.A9645@pembro4.pmb.ox.ac.uk>
26731      Branch: perl
26732            ! pp.c t/op/bop.t utf8.h
26733 ____________________________________________________________________________
26734 [  7234] By: jhi                                   on 2000/10/15  15:19:29
26735         Log: split() utf8 fixes.  Should fix both 20001014.001 and 20000426.003.
26736              The problem was that rx->minlen was in chars while pp_split()
26737              thought it would be in bytes. 
26738      Branch: perl
26739            ! pp.c t/pragma/utf8.t
26740 ____________________________________________________________________________
26741 [  7233] By: jhi                                   on 2000/10/14  20:24:24
26742         Log: Document FNCASE=y as discussed in the bug 20000902.009.
26743      Branch: perl
26744            ! README.dos
26745 ____________________________________________________________________________
26746 [  7232] By: jhi                                   on 2000/10/14  18:52:21
26747         Log: Add test for bug id 20000427.003 (which seems to have
26748              been fixed) (also duplicate as 20000427.004, though
26749              with a higher severity).  Move one utf8 from op/append
26750              to pragma/utf8, tag the tests with bug ids.
26751      Branch: perl
26752            ! t/op/append.t t/pragma/utf8.t
26753 ____________________________________________________________________________
26754 [  7231] By: jhi                                   on 2000/10/14  17:28:37
26755         Log: Test cases for bug id 20000323.056 (the bug seems to be fixed).
26756      Branch: perl
26757            ! t/pragma/utf8.t
26758 ____________________________________________________________________________
26759 [  7230] By: jhi                                   on 2000/10/14  14:24:50
26760         Log: Needs to be conditional on SunOS 4.
26761              
26762              Subject: [Pach 5.7.0@7229] Removing -ldb from the core build
26763              From: "Paul Marquess" <paul_marquess@yahoo.co.uk>
26764              Date: Sat, 14 Oct 2000 13:37:49 +0100
26765              Message-ID: <000101c035db$8ffb60a0$2614140a@bfs.phone.com>
26766      Branch: metaconfig/U/perl
26767            ! End.U
26768      Branch: perl
26769            ! Configure myconfig.SH pod/perldelta.pod
26770 ____________________________________________________________________________
26771 [  7229] By: jhi                                   on 2000/10/14  00:49:22
26772         Log: Update Changes.
26773      Branch: perl
26774            ! Changes patchlevel.h
26775 ____________________________________________________________________________
26776 [  7228] By: jhi                                   on 2000/10/14  00:46:10
26777         Log: Subject: RFC: a (temporary?) way around utf8.pm for EBCDIC
26778              From: Peter Prymmer <pvhp@forte.com>
26779              Date: Fri, 13 Oct 2000 15:59:56 -0700 (PDT)
26780              Message-ID: <Pine.OSF.4.10.10010131548260.133963-100000@aspara.forte.com>
26781      Branch: perl
26782            ! lib/utf8.pm
26783 ____________________________________________________________________________
26784 [  7227] By: jhi                                   on 2000/10/13  23:20:30
26785         Log: Make the test acknowledge that self-ties are disabled as #7213 said.
26786      Branch: perl
26787            ! t/op/tie.t
26788 ____________________________________________________________________________
26789 [  7226] By: jhi                                   on 2000/10/13  22:14:32
26790         Log: Tweak #7225.
26791              
26792              Subject: Re: [ID 20001006.014] Not OK: perl v5.7.0 +DEVEL7158 on os390 05.00 (UNINSTALLED) [PATCH bleadperl]
26793              From: Peter Prymmer <pvhp@forte.com>
26794              Date: Fri, 13 Oct 2000 14:44:49 -0700 (PDT)
26795              Message-ID: <Pine.OSF.4.10.10010131414410.133963-100000@aspara.forte.com>
26796      Branch: perl
26797            ! t/op/sprintf.t
26798 ____________________________________________________________________________
26799 [  7225] By: jhi                                   on 2000/10/13  22:11:31
26800         Log: op/sprintf.t patch for OS/390 (and any other host with limited
26801              floating-point exponent length)
26802              
26803              Subject: Re: [ID 20001006.014] Not OK: perl v5.7.0 +DEVEL7158 on os390 05.00  (UNINSTALLED) [PATCH bleadperl]
26804              From: Dominic Dunlop <domo@computer.org>
26805              Date: Fri, 13 Oct 2000 19:17:57 +0200
26806              Message-Id: <p04320400b60cf2a6a05c@[192.168.1.4]>
26807      Branch: perl
26808            ! t/op/sprintf.t
26809 ____________________________________________________________________________
26810 [  7224] By: jhi                                   on 2000/10/13  18:40:48
26811         Log: Allow @+ and @- to be doublequoted, from Simon Cozens. 
26812      Branch: perl
26813            ! toke.c
26814 ____________________________________________________________________________
26815 [  7223] By: jhi                                   on 2000/10/13  18:37:13
26816         Log: Thinko in #7222.
26817      Branch: perl
26818            ! utf8.c
26819 ____________________________________________________________________________
26820 [  7222] By: jhi                                   on 2000/10/13  18:05:23
26821         Log: Use UTF8SKIP(), from Simon Cozens.
26822      Branch: perl
26823            ! utf8.c
26824 ____________________________________________________________________________
26825 [  7221] By: jhi                                   on 2000/10/13  15:43:19
26826         Log: (accidentally empty check-in)
26827      Branch: perl
26828            ! utf8.c
26829 ____________________________________________________________________________
26830 [  7220] By: jhi                                   on 2000/10/13  15:23:51
26831         Log: Add (optimistically) Storable to static extensions.
26832      Branch: perl
26833            ! hints/uwin.sh hints/vmesa.sh
26834 ____________________________________________________________________________
26835 [  7219] By: jhi                                   on 2000/10/13  15:20:05
26836         Log: Amdahl UTS doesn't seem to do dynaloading.
26837      Branch: perl
26838            ! hints/uts.sh
26839 ____________________________________________________________________________
26840 [  7218] By: jhi                                   on 2000/10/13  15:15:20
26841         Log: Slight tweak of the code to appease Amdahl UTS cc.
26842      Branch: perl
26843            ! pp.c
26844 ____________________________________________________________________________
26845 [  7217] By: jhi                                   on 2000/10/13  14:50:42
26846         Log: In Amdahl UTS "struct sv" is defined by a system header,
26847              <ksync.h>.
26848      Branch: perl
26849            ! perl.h sv.h
26850 ____________________________________________________________________________
26851 [  7216] By: jhi                                   on 2000/10/13  11:58:25
26852         Log: Ilya implemented the memory profiling API.
26853      Branch: perl
26854            ! Todo
26855 ____________________________________________________________________________
26856 [  7215] By: jhi                                   on 2000/10/13  02:56:38
26857         Log: Subject: [PATCH 5.7.0] Perl API for mstats
26858              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
26859              Date: Thu, 12 Oct 2000 22:52:40 -0400
26860              Message-ID: <20001012225240.A7113@monk.mps.ohio-state.edu>
26861      Branch: perl
26862            ! ext/Devel/Peek/Peek.pm ext/Devel/Peek/Peek.xs
26863 ____________________________________________________________________________
26864 [  7214] By: jhi                                   on 2000/10/13  02:55:38
26865         Log: Subject: [PATCH 5.7.0] IVs in mtats
26866              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
26867              Date: Thu, 12 Oct 2000 22:51:04 -0400
26868              Message-ID: <20001012225104.A7103@monk.mps.ohio-state.edu>
26869      Branch: perl
26870            ! malloc.c perl.h
26871 ____________________________________________________________________________
26872 [  7213] By: jhi                                   on 2000/10/13  02:31:47
26873         Log: Self-ties are unsupported currently, stopgap patch from Alan Burlison.
26874      Branch: perl
26875            ! pod/perldiag.pod pp_sys.c
26876 ____________________________________________________________________________
26877 [  7212] By: jhi                                   on 2000/10/13  01:27:38
26878         Log: Subject: [PATCH: perl@7181] was: Re: off to a bad start on fixing regression tests
26879              From: Peter Prymmer <pvhp@forte.com>
26880              Date: Tue, 10 Oct 2000 10:26:07 -0700 (PDT)
26881              Message-ID: <Pine.OSF.4.10.10010101020180.441897-100000@aspara.forte.com>
26882      Branch: perl
26883            ! t/op/oct.t
26884 ____________________________________________________________________________
26885 [  7211] By: jhi                                   on 2000/10/13  00:35:09
26886         Log: Update Changes.
26887      Branch: perl
26888            ! Changes patchlevel.h
26889 ____________________________________________________________________________
26890 [  7210] By: jhi                                   on 2000/10/12  23:59:40
26891         Log: The Install.pm third of
26892              
26893              Subject: Proposed patches, Install.pm getopts.pl termcap.pl
26894              From: Bill Campbell <bill@celestial.com>
26895              Message-ID: <20001005180451.A22029@kstarr.celestial.com>
26896              Date: Thu, 5 Oct 2000 18:04:51 -0700
26897      Branch: perl
26898            ! lib/ExtUtils/Install.pm
26899 ____________________________________________________________________________
26900 [  7209] By: jhi                                   on 2000/10/12  23:58:43
26901         Log: Two thirds of
26902              
26903              Subject: Proposed patches, Install.pm getopts.pl termcap.pl
26904              Date: Thu, 5 Oct 2000 18:04:51 -0700
26905              From: Bill Campbell <bill@celestial.com>
26906              Message-ID: <20001005180451.A22029@kstarr.celestial.com>
26907              
26908              The Install.pm changes will be submitted separately because
26909              they need some work and discussion still.
26910      Branch: perl
26911            ! lib/getopts.pl lib/termcap.pl
26912 ____________________________________________________________________________
26913 [  7208] By: jhi                                   on 2000/10/12  23:41:19
26914         Log: Subject:  [PATCH] 5.6.0 & 5.7.1,  VMS fixes
26915              From: lane@DUPHY4.Physics.Drexel.Edu (Charles Lane)
26916              Date:     Thu, 12 Oct 2000 07:30:02 EDT
26917              Message-Id: <001012072828.2eabc@DUPHY4.Physics.Drexel.Edu>
26918      Branch: perl
26919            ! lib/File/Temp.pm t/lib/st-lock.t t/pod/find.t
26920            ! t/pod/testp2pt.pl vms/gen_shrfls.pl
26921 ____________________________________________________________________________
26922 [  7207] By: jhi                                   on 2000/10/12  23:39:01
26923         Log: An updated EBCDIC tr patch.
26924              
26925              Subject: Re: [PATCH: perl@7181] op/tr tests on OS/390
26926              From: Peter Prymmer <pvhp@forte.com>
26927              Date: Wed, 11 Oct 2000 17:16:30 -0700 (PDT)
26928              Message-ID: <Pine.OSF.4.10.10010111707430.516446-100000@aspara.forte.com>
26929      Branch: perl
26930            ! t/op/tr.t
26931 ____________________________________________________________________________
26932 [  7206] By: jhi                                   on 2000/10/12  23:34:55
26933         Log: Upgrade to CPAN 1.58, from Andreas König.
26934      Branch: perl
26935            ! lib/CPAN.pm lib/CPAN/FirstTime.pm
26936 ____________________________________________________________________________
26937 [  7205] By: jhi                                   on 2000/10/12  23:29:08
26938         Log: Introduce the man[24-8] variables, from Andy Dougherty.
26939      Branch: metaconfig/U/perl
26940            + mandirs.U mandirstyle.U
26941      Branch: perl
26942            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
26943            ! config_h.SH epoc/config.sh uconfig.h uconfig.sh vos/config.def
26944            ! vos/config.h vos/config.pl vos/config_h.SH_orig
26945            ! win32/config.bc win32/config.gc win32/config.vc
26946 ____________________________________________________________________________
26947 [  7204] By: gsar                                  on 2000/10/12  18:11:24
26948         Log: restore change#7202
26949      Branch: perl
26950            ! mg.c
26951 ____________________________________________________________________________
26952 [  7203] By: gsar                                  on 2000/10/12  18:09:40
26953         Log: another test of the Emergency Broadcast System--back out 
26954              change#7202
26955      Branch: perl
26956            ! mg.c
26957 ____________________________________________________________________________
26958 [  7202] By: gsar                                  on 2000/10/12  16:40:47
26959         Log: (submitted on behalf of Jarkko)
26960              Fix the lib/encode.t subtest 6 failure as reported by Andreas
26961              Koenig, gmagical substr() wasn't propagating UTF8ness.  The bug
26962              was unearthed by change 7182, as was a bug in HTML::Entities.
26963      Branch: perl
26964            ! mg.c
26965 ____________________________________________________________________________
26966 [  7201] By: jhi                                   on 2000/10/11  03:16:05
26967         Log: SvPV() (via mg_get() of sv_2pv()) can update the UTF8ness of the SVs.
26968      Branch: perl
26969            ! pp_hot.c t/pragma/utf8.t
26970 ____________________________________________________________________________
26971 [  7200] By: jhi                                   on 2000/10/11  00:40:30
26972         Log: The #7198 was a false alarm.
26973      Branch: perl
26974            ! pp_hot.c
26975 ____________________________________________________________________________
26976 [  7199] By: jhi                                   on 2000/10/11  00:26:04
26977         Log: Remove duplicated code.
26978      Branch: perl
26979            ! t/lib/cgi-html.t
26980 ____________________________________________________________________________
26981 [  7198] By: jhi                                   on 2000/10/10  23:30:46
26982         Log: (Retracted by #7200.)
26983      Branch: perl
26984            ! pp_hot.c
26985 ____________________________________________________________________________
26986 [  7197] By: jhi                                   on 2000/10/10  21:49:30
26987         Log: Add the test case for #7190, from the original bug report
26988              by Andreas König.
26989      Branch: perl
26990            ! t/pragma/utf8.t
26991 ____________________________________________________________________________
26992 [  7196] By: jhi                                   on 2000/10/10  21:40:49
26993         Log: Reapply Andy's patch and regen Configure.
26994      Branch: perl
26995            ! Configure INSTALL Makefile.SH Porting/Glossary
26996            ! Porting/config.sh config_h.SH epoc/config.sh installperl
26997            ! uconfig.sh vos/config.def win32/config.bc win32/config.gc
26998            ! win32/config.vc
26999 ____________________________________________________________________________
27000 [  7195] By: jhi                                   on 2000/10/10  21:09:30
27001         Log: Use the versiononly instead of the installscripts,
27002              retract the changes 7146 and 7147.
27003      Branch: perl
27004            ! Configure INSTALL Makefile.SH Porting/Glossary
27005            ! Porting/config.sh Porting/config_H config_h.SH epoc/config.sh
27006            ! installperl uconfig.sh vos/config.def win32/config.bc
27007            ! win32/config.gc win32/config.vc
27008 ____________________________________________________________________________
27009 [  7194] By: jhi                                   on 2000/10/10  21:06:15
27010         Log: Subject: [PATCH: perl@7181] ver.t v string tests for os/390
27011              From: Peter Prymmer <pvhp@forte.com>
27012              Date: Tue, 10 Oct 2000 13:24:18 -0700 (PDT)
27013              Message-ID: <Pine.OSF.4.10.10010101322510.441897-100000@aspara.forte.com>
27014      Branch: perl
27015            ! t/op/ver.t
27016 ____________________________________________________________________________
27017 [  7193] By: jhi                                   on 2000/10/10  21:05:12
27018         Log: Subject: [PATCH: perl@7181] op/tr tests on OS/390
27019              From: Peter Prymmer <pvhp@forte.com>
27020              Date: Tue, 10 Oct 2000 13:56:35 -0700 (PDT)
27021              Message-ID: <Pine.OSF.4.10.10010101355140.441897-100000@aspara.forte.com>
27022      Branch: perl
27023            ! t/op/tr.t
27024 ____________________________________________________________________________
27025 [  7192] By: jhi                                   on 2000/10/10  20:57:30
27026         Log: Add versiononly, delete installscripts, from Andy Dougherty.
27027      Branch: metaconfig
27028            - U/installdirs/installscripts.U
27029      Branch: metaconfig/U/perl
27030            + versiononly.U
27031 ____________________________________________________________________________
27032 [  7191] By: jhi                                   on 2000/10/10  19:41:21
27033         Log: Subject: [PATCH: perl@7181] perlebcdic.pod updates and corrections
27034              From: Peter Prymmer <pvhp@forte.com>
27035              Date: Tue, 10 Oct 2000 12:35:57 -0700 (PDT)
27036              Message-ID: <Pine.OSF.4.10.10010101231390.441897-100000@aspara.forte.com>
27037      Branch: perl
27038            ! pod/perlebcdic.pod
27039 ____________________________________________________________________________
27040 [  7190] By: jhi                                   on 2000/10/10  19:26:14
27041         Log: Subject: Re: utf8 concat, mg_get
27042              From: Simon Cozens <simon@cozens.net>
27043              Date: Tue, 10 Oct 2000 17:40:17 +0100
27044              Message-ID: <20001010174017.A13130@pembro4.pmb.ox.ac.uk>
27045      Branch: perl
27046            ! pp_hot.c
27047 ____________________________________________________________________________
27048 [  7189] By: jhi                                   on 2000/10/10  19:23:03
27049         Log: Subject: [ID 20000720.004] ExtUtils::MakeMaker finds wrong version of perl
27050              From: jdb@dfwnet.sbms.sbc.com (J. David Blackstone)
27051              Date: Thu, 20 Jul 2000 13:31:22 -0500 (CDT)
27052              Message-Id: <200007201831.NAA05776@dfwnet1.dfwnet.sbms.sbc.com>
27053      Branch: perl
27054            ! lib/ExtUtils/MM_Unix.pm
27055 ____________________________________________________________________________
27056 [  7188] By: jhi                                   on 2000/10/10  15:31:24
27057         Log: Subject: RE: [ID 19990803.001] README.win32 suggestions 
27058              From: "Moore, Paul" <Paul.Moore@uk.origin-it.com>
27059              Date: Fri, 14 Jul 2000 10:47:36 +0100
27060              Message-ID: <714DFA46B9BBD0119CD000805FC1F53B012A8224@UKRUX002.rundc.uk.origin-it.com>
27061      Branch: perl
27062            ! README.win32
27063 ____________________________________________________________________________
27064 [  7187] By: jhi                                   on 2000/10/10  13:30:10
27065         Log: Quote the temp file name, needed in Win32 because the
27066              default name unfortunately contains spaces, shouldn't
27067              hurt elsewhere.
27068              
27069              Subject: FW: perldoc fails if $TEMP contains spaces
27070              From: "Moore, Paul" <Paul.Moore@uk.origin-it.com>
27071              Date: Thu, 14 Sep 2000 08:58:45 +0100
27072              Message-ID: <714DFA46B9BBD0119CD000805FC1F53B012A82AA@UKRUX002.rundc.uk.origin-it.com>
27073      Branch: perl
27074            ! utils/perldoc.PL
27075 ____________________________________________________________________________
27076 [  7186] By: jhi                                   on 2000/10/10  13:16:27
27077         Log: Subject: [PATCH 5.6.0] Re: [ID 20001009.004] SEGV from sprintf in a thread 
27078              From: hv@hugo.hybyte.com
27079              Date: Tue, 10 Oct 2000 14:10:20 +0100
27080              Message-Id: <200010101310.OAA00953@hugo.hybyte.com>
27081      Branch: perl
27082            ! t/lib/thr5005.t util.c
27083 ____________________________________________________________________________
27084 [  7185] By: jhi                                   on 2000/10/10  12:06:22
27085         Log: Upgrade to podlators 1.04, from Russ Allbery.
27086      Branch: perl
27087            ! lib/Pod/Man.pm lib/Pod/Text.pm
27088 ____________________________________________________________________________
27089 [  7184] By: jhi                                   on 2000/10/10  12:01:32
27090         Log: Upgrade to CGI.pm 2.74, from Lincoln Stein.
27091      Branch: perl
27092            ! lib/CGI.pm t/lib/cgi-form.t t/lib/cgi-html.t
27093 ____________________________________________________________________________
27094 [  7183] By: jhi                                   on 2000/10/09  23:47:15
27095         Log: Subject: [PATCH: perl@7159] various VMS cleanup issues + CXX configure
27096              From: Peter Prymmer <pvhp@forte.com>
27097              Message-ID: <Pine.OSF.4.10.10010091625290.260786-100000@aspara.forte.com>
27098              Date: Mon, 9 Oct 2000 16:30:44 -0700 (PDT)
27099      Branch: perl
27100            ! configure.com vms/descrip_mms.template vms/vms.c vms/vmsish.h
27101 ____________________________________________________________________________
27102 [  7182] By: jhi                                   on 2000/10/09  23:43:16
27103         Log: Make eq work again with utf8 (disabling the upgrading
27104              should no more be necessary since the copies of the
27105              scalars are upgraded, not the scalars themselves).
27106              Takes care of ID 20001009.001.  (The claimed length()
27107              bug in 20001009.001 seems bogus to me.)
27108      Branch: perl
27109            ! sv.c t/pragma/utf8.t
27110 ____________________________________________________________________________
27111 [  7181] By: gsar                                  on 2000/10/09  19:41:54
27112         Log: tweak for change#7173
27113      Branch: perl
27114            ! win32/win32sck.c
27115 ____________________________________________________________________________
27116 [  7180] By: gsar                                  on 2000/10/09  19:26:56
27117         Log: on Windows, clean targets might not work under some flavors of the shell
27118      Branch: perl
27119            ! win32/Makefile win32/makefile.mk
27120 ____________________________________________________________________________
27121 [  7179] By: jhi                                   on 2000/10/09  19:21:02
27122         Log: Update Changes.
27123      Branch: perl
27124            ! Changes patchlevel.h
27125 ____________________________________________________________________________
27126 [  7178] By: jhi                                   on 2000/10/09  19:18:23
27127         Log: Warn about unknown scripts.
27128              
27129              Subject: Re: ideas? patches? [PATCH bleadperl]
27130              From: Dominic Dunlop <domo@computer.org>
27131              Date: Mon, 9 Oct 2000 14:57:17 +0200
27132              Message-Id: <p04320400b6076a75b15f@[192.168.1.4]>
27133      Branch: perl
27134            ! lib/charnames.pm
27135 ____________________________________________________________________________
27136 [  7177] By: jhi                                   on 2000/10/09  19:13:27
27137         Log: Change #7160 had a nasty typo.
27138      Branch: metaconfig
27139            ! U/compline/Compile.U
27140      Branch: perl
27141            ! Configure config_h.SH
27142 ____________________________________________________________________________
27143 [  7176] By: gsar                                  on 2000/10/09  18:59:33
27144         Log: pod nit
27145      Branch: perl
27146            ! pod/perlport.pod
27147 ____________________________________________________________________________
27148 [  7175] By: gsar                                  on 2000/10/09  18:54:28
27149         Log: Windows9x doesn't support link(), despite what Config.pm
27150              might think
27151      Branch: perl
27152            ! lib/ExtUtils/Manifest.pm
27153 ____________________________________________________________________________
27154 [  7174] By: gsar                                  on 2000/10/09  18:50:03
27155         Log: avoid nonportable example code
27156      Branch: perl
27157            ! lib/File/Copy.pm
27158 ____________________________________________________________________________
27159 [  7173] By: gsar                                  on 2000/10/09  18:46:54
27160         Log: on Windows, avoid potential exception (could happen if MSVCRT isn't
27161              being used) when closing a socket handle
27162      Branch: perl
27163            ! win32/win32.c win32/win32.h win32/win32sck.c
27164 ____________________________________________________________________________
27165 [  7172] By: gsar                                  on 2000/10/09  18:41:40
27166         Log: on Windows, cwd strings in the environment should be of the
27167              form =X:=X:\foo instead of =X=X:\foo\
27168      Branch: perl
27169            ! win32/vdir.h
27170 ____________________________________________________________________________
27171 [  7171] By: gsar                                  on 2000/10/09  18:30:09
27172         Log: on Windows, LoadLibrary() could load an extension DLL multiple
27173              times if forward slashes are used in the path
27174      Branch: perl
27175            ! win32/win32.c
27176 ____________________________________________________________________________
27177 [  7170] By: jhi                                   on 2000/10/09  17:53:59
27178         Log: Add a todo note about overloadable assertions.
27179      Branch: perl
27180            ! Todo-5.6
27181 ____________________________________________________________________________
27182 [  7169] By: jhi                                   on 2000/10/09  13:43:45
27183         Log: Subject: PATCH 5.6 perldebguts grammar cleanup
27184              From: mjd@plover.com
27185              Date: 9 Oct 2000 00:24:44 -0000
27186              Message-ID: <20001009002444.10616.qmail@plover.com>
27187      Branch: perl
27188            ! pod/perldebguts.pod
27189 ____________________________________________________________________________
27190 [  7168] By: nick                                  on 2000/10/08  13:16:33
27191         Log: Tables assume network byte order for 16 bit forms, so 'S' packing
27192              is not right thing to do on (e.g. x86). Network order is also "right" for
27193              X fonts.
27194      Branch: perl
27195            ! ext/Encode/Encode.pm
27196 ____________________________________________________________________________
27197 [  7167] By: nick                                  on 2000/10/08  12:54:42
27198         Log: Make "encodings" work post-install when Encode/*.enc files may not
27199              be in same directory as Encode.pm
27200      Branch: perl
27201            ! ext/Encode/Encode.pm
27202 ____________________________________________________________________________
27203 [  7166] By: nick                                  on 2000/10/08  11:51:26
27204         Log: Work round the fact that $hash->{$key} does not take into account
27205              UTF8'ness of $key yet.  Thus fromUnicode needs to do $hash->{chr(ord($ch))}
27206              so that key is always in the "expected" encoding - i.e. same way we put
27207              it in the hash.
27208      Branch: perl
27209            ! ext/Encode/Encode.pm
27210 ____________________________________________________________________________
27211 [  7165] By: gsar                                  on 2000/10/08  04:15:29
27212         Log: save_re_context() could reset PL_curcop to freed memory, causing core
27213              dumps in code such as C<use CGI::Carp; use something_that_calls_die;>
27214      Branch: perl
27215            ! pp_ctl.c
27216 ____________________________________________________________________________
27217 [  7164] By: jhi                                   on 2000/10/06  20:51:48
27218         Log: UTF8ize split() so that the cloned substrings get the UTF8
27219              flag of the original scalar.  Problem reported by Simon Cozens.
27220      Branch: perl
27221            ! pp.c t/pragma/utf8.t
27222 ____________________________________________________________________________
27223 [  7163] By: nick                                  on 2000/10/06  20:48:34
27224         Log: Fix in change 7162 was too-late for case where we "upgraded" to PVIV and
27225              got a false +ve and so did not reach code which would have un-FAKEd the SV.
27226      Branch: perl
27227            ! sv.c
27228 ____________________________________________________________________________
27229 [  7162] By: nick                                  on 2000/10/06  20:25:37
27230         Log: Make sv_upgrade() undo READONLY|FAKE shared string hackery.
27231              To fix  (sort {$a <=> $b} keys %hash) in particular but
27232              should cover a number of other as-yet-unknown cases as well.
27233      Branch: perl
27234            ! sv.c
27235 ____________________________________________________________________________
27236 [  7161] By: jhi                                   on 2000/10/06  19:56:18
27237         Log: Change the version number of Tie::Handle in the core to 4.0,
27238              the (unrelated) Tie::Handle in CPAN will remain at 3.0.
27239              
27240              Subject: Note on Tie::Handle
27241              From: andreas.koenig@anima.de (Andreas J. Koenig)
27242              Date:      06 Oct 2000 21:48:58 +0200
27243              Message-ID: <m3ya01kaxh.fsf@ak-71.mind.de>
27244      Branch: perl
27245            ! lib/Tie/Handle.pm
27246 ____________________________________________________________________________
27247 [  7160] By: jhi                                   on 2000/10/06  18:20:35
27248         Log: Fix bug in #7157 (s/cflags/ccflags); moved the -o foo
27249              as the first option of cc/ld because of ultrapicky compilers
27250              (e.g. OS/390 R2.5)
27251      Branch: metaconfig
27252            + U/modified/d_getpgrp.U U/modified/d_setpgrp.U
27253            ! U/compline/Compile.U U/compline/Csym.U U/compline/ccflags.U
27254            ! U/compline/orderlib.U U/modified/Cppsym.U
27255            ! U/modified/d_access.U
27256      Branch: metaconfig/U/perl
27257            ! Checkcc.U d_dlsymun.U gccvers.U
27258      Branch: perl
27259            ! Configure config_h.SH
27260 ____________________________________________________________________________
27261 [  7159] By: jhi                                   on 2000/10/06  13:56:39
27262         Log: Update Changes.
27263      Branch: perl
27264            ! Changes patchlevel.h
27265 ____________________________________________________________________________
27266 [  7158] By: jhi                                   on 2000/10/06  12:48:40
27267         Log: Eliminate $Is_VMS code from the test.
27268              
27269              Subject:  Re: [ID 20001004.005] Not OK: perl v5.7.0 +DEVEL7129 on VMS_AXP V7.1
27270              From: lane@DUPHY4.Physics.Drexel.Edu (Charles Lane)
27271              Message-Id: <001005074528.21621@DUPHY4.Physics.Drexel.Edu>
27272              Date:     Thu, 5 Oct 2000 07:46:33 EDT
27273      Branch: perl
27274            ! t/lib/b.t
27275 ____________________________________________________________________________
27276 [  7157] By: jhi                                   on 2000/10/06  12:47:13
27277         Log: Also the $ccflags is needed for the C compiler check.
27278              
27279              Subject: Configure (check for C-compiler)
27280              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
27281              Date: Fri, 06 Oct 2000 08:47:15 +0200
27282              Message-Id: <20001006084120.C52B.H.M.BRAND@hccnet.nl>
27283      Branch: metaconfig/U/perl
27284            ! Checkcc.U
27285      Branch: perl
27286            ! Configure config_h.SH
27287 ____________________________________________________________________________
27288 [  7156] By: jhi                                   on 2000/10/06  11:45:15
27289         Log: The HINT_BYTE patch is apparently unnecessary, retracted.
27290      Branch: perl
27291            ! perl.c pp_ctl.c sv.h utf8.c
27292 ____________________________________________________________________________
27293 [  7155] By: jhi                                   on 2000/10/06  11:40:41
27294         Log: IO::Handle->syswrite() did not handle length omission
27295              like CORE::syswrite() does.
27296              
27297              Subject: [Fwd] IO::Handle, syswrite and arguments
27298              From: Graham Barr <gbarr@pobox.com>
27299              Date: Fri, 6 Oct 2000 10:22:05 +0100
27300              Message-ID: <20001006102205.U6312@pobox.com>
27301              
27302              The original patch from andrew@ugh.net.au.
27303      Branch: perl
27304            ! ext/IO/lib/IO/Handle.pm
27305 ____________________________________________________________________________
27306 [  7154] By: jhi                                   on 2000/10/06  01:42:15
27307         Log: Tweak #7153.
27308      Branch: perl
27309            ! utf8.h
27310 ____________________________________________________________________________
27311 [  7153] By: jhi                                   on 2000/10/06  00:39:55
27312         Log: Patch from Simon Cozens to avoid using utf8 routines in EBCDIC.
27313      Branch: perl
27314            ! utf8.h
27315 ____________________________________________________________________________
27316 [  7152] By: jhi                                   on 2000/10/06  00:38:11
27317         Log: Patch from Peter Prymmer to disable utf8 in EBCDIC platforms.
27318      Branch: perl
27319            ! perl.c pp_ctl.c sv.h utf8.c
27320 ____________________________________________________________________________
27321 [  7151] By: jhi                                   on 2000/10/06  00:36:38
27322         Log: Subject: Re: Questions about Tie::Array and perl modules
27323              From: Nick Ing-Simmons <nik@tiuk.ti.com>
27324              Date: Thu, 5 Oct 2000 09:37:11 +0100 (BST)
27325              Message-Id: <200010050837.JAA00564@mikado.tiuk.ti.com>
27326              
27327              Bug reported and fix suggested by Philip D Crow <pcrow@hertz.com>.
27328      Branch: perl
27329            ! lib/Tie/Array.pm t/op/array.t
27330 ____________________________________________________________________________
27331 [  7150] By: jhi                                   on 2000/10/05  00:20:45
27332         Log: Regen Changes.
27333      Branch: perl
27334            ! Changes patchlevel.h
27335 ____________________________________________________________________________
27336 [  7149] By: jhi                                   on 2000/10/05  00:20:01
27337         Log: Regen toc.
27338      Branch: perl
27339            ! pod/perltoc.pod
27340 ____________________________________________________________________________
27341 [  7148] By: jhi                                   on 2000/10/04  23:35:08
27342         Log: Code around the stat-on-a-pipe-returns-a-mode-of-zero bug
27343              reported several times by Dominic Dunlop, for example in
27344              ID 20000315.008.  Patch from Dominic.  Patch affects at
27345              least MachTen, and possibly other oldish BSDs. Should not
27346              break non-broken platforms (tested on LinuxPPC). 
27347      Branch: perl
27348            ! doio.c
27349 ____________________________________________________________________________
27350 [  7147] By: jhi                                   on 2000/10/04  23:26:34
27351         Log: The one that got away from 7146.
27352      Branch: metaconfig
27353            + U/installdirs/installscripts.U
27354 ____________________________________________________________________________
27355 [  7146] By: jhi                                   on 2000/10/04  23:25:04
27356         Log: Enable disabling scripts installation by Configure -Uinstallscripts,
27357              suggested by H. Merijn Brand.
27358      Branch: perl
27359            ! Configure INSTALL Makefile.SH Porting/Glossary
27360            ! Porting/config.sh Porting/config_H epoc/config.sh installperl
27361            ! uconfig.sh vos/config.def win32/config.bc win32/config.gc
27362            ! win32/config.vc
27363 ____________________________________________________________________________
27364 [  7145] By: jhi                                   on 2000/10/04  22:08:21
27365         Log: Subject: Re: [PATCH 5.7.0] h2xs not documenting the created module
27366              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
27367              Date: Wed, 4 Oct 2000 17:37:46 -0400
27368              Message-ID: <20001004173746.A26697@monk.mps.ohio-state.edu>
27369      Branch: perl
27370            ! utils/h2xs.PL
27371 ____________________________________________________________________________
27372 [  7144] By: jhi                                   on 2000/10/04  18:11:41
27373         Log: Subject: [PATCH perlrun.pod] Re: [ID 20000930.002] perlrun nor perldelta mention -s modification
27374              From: Jeff Pinyan <jeffp@crusoe.net>
27375              Date: Tue, 3 Oct 2000 16:35:42 -0400 (EDT)
27376              Message-ID: <Pine.GSO.4.21.0010031634530.14163-100000@crusoe.crusoe.net>
27377      Branch: perl
27378            ! pod/perlrun.pod
27379 ____________________________________________________________________________
27380 [  7143] By: jhi                                   on 2000/10/04  18:09:58
27381         Log: Subject: perlhack.pod Patch for Externals Tools
27382              From: Fisher Mark <fisherm@tce.com>
27383              Date: Tue, 3 Oct 2000 15:43:27 -0500 
27384              Message-ID: <B9B6874277EED211B1890008C707AF530505B180@indyexch3.indy.tce.com>
27385      Branch: perl
27386            ! pod/perlhack.pod
27387 ____________________________________________________________________________
27388 [  7142] By: jhi                                   on 2000/10/04  18:08:41
27389         Log: Subject:  [PATCH] 5.6.0 & 5.7.0  VMS TZ fix for VMS6.2 and earlier
27390              From: lane@DUPHY4.Physics.Drexel.Edu (Charles Lane)
27391              Date:     Wed, 4 Oct 2000 12:11:11 EDT
27392              Message-Id: <001004120530.25cb5@DUPHY4.Physics.Drexel.Edu>
27393      Branch: perl
27394            ! vms/vms.c
27395 ____________________________________________________________________________
27396 [  7141] By: jhi                                   on 2000/10/04  12:20:16
27397         Log: Subject: [PATCH 5.7.0] h2xs not working
27398              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
27399              Message-ID: <20001003214301.A22851@monk.mps.ohio-state.edu>
27400              Date: Tue, 3 Oct 2000 21:43:01 -0400
27401              
27402              Subject: [PATCH 5.7.0] h2xs not documenting the created module
27403              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
27404              Date: Tue, 3 Oct 2000 22:55:19 -0400
27405              Message-ID: <20001003225519.A23360@monk.mps.ohio-state.edu>
27406      Branch: perl
27407            ! utils/h2xs.PL
27408 ____________________________________________________________________________
27409 [  7140] By: jhi                                   on 2000/10/04  11:53:44
27410         Log: Subject: [ID 20001004.003] installman "Ambiguous call resolved as CORE::"
27411              From: nick@babyhippo.com
27412              Date: Wed, 4 Oct 2000 12:06:45 +0100
27413              Message-Id: <20001004120645.A7356@babyhippo.com>
27414              
27415              Retract 7118 and 7135.
27416      Branch: perl
27417            ! installman installperl op.c t/pragma/subs.t
27418 ____________________________________________________________________________
27419 [  7139] By: jhi                                   on 2000/10/03  22:09:41
27420         Log: It is possible to have no hosts database at all.  Pointed out in
27421              
27422              Subject: [PATCH: 7131] PWPASSWD problem for passwd less pwd's
27423              From: Peter Prymmer <pvhp@forte.com>
27424              Date: Tue, 3 Oct 2000 12:05:59 -0700 (PDT)
27425              Message-ID: <Pine.OSF.4.10.10010031203470.388222-100000@aspara.forte.com>
27426      Branch: metaconfig
27427            ! U/modified/myhostname.U
27428      Branch: perl
27429            ! Configure config_h.SH
27430 ____________________________________________________________________________
27431 [  7138] By: jhi                                   on 2000/10/03  21:49:49
27432         Log: Subject: [PATCH: 7131] PWPASSWD problem for passwd less pwd's
27433              From: Peter Prymmer <pvhp@forte.com>
27434              Date: Tue, 3 Oct 2000 12:05:59 -0700 (PDT)
27435              Message-ID: <Pine.OSF.4.10.10010031203470.388222-100000@aspara.forte.com>
27436      Branch: perl
27437            ! pp_sys.c
27438 ____________________________________________________________________________
27439 [  7137] By: jhi                                   on 2000/10/03  20:10:05
27440         Log: One remaining nit less at the VMS mailbox sizing.
27441      Branch: perl
27442            ! vms/vms.c
27443 ____________________________________________________________________________
27444 [  7136] By: jhi                                   on 2000/10/03  20:08:47
27445         Log: Test harness update to sync with the new perlcc,
27446              from Simon Cozens.
27447      Branch: perl
27448            ! t/TEST t/UTEST
27449 ____________________________________________________________________________
27450 [  7135] By: jhi                                   on 2000/10/03  15:15:42
27451         Log: Subject: Re: PATCH for 20001003.004
27452              Date: Tue, 3 Oct 2000 11:03:04 -0400 (EDT)
27453              From: "AARON B. DOSSETT" <aaron@iglou.com>
27454              Message-Id: <E13gTay-0006od-00@iglou.com>
27455      Branch: perl
27456            ! installman installperl
27457 ____________________________________________________________________________
27458 [  7134] By: jhi                                   on 2000/10/03  15:00:34
27459         Log: Subject: [ID 20001003.006] B::Debug not -w clean
27460              From: Nicholas Clark <nick@babyhippo.co.uk>
27461              Date: Tue, 03 Oct 2000 15:46:32 +0100
27462              Message-Id: <E13gTKy-0002R2-00@fruitbat.babyhippo.co.uk>
27463      Branch: perl
27464            ! ext/B/B/Debug.pm
27465 ____________________________________________________________________________
27466 [  7133] By: jhi                                   on 2000/10/03  14:58:39
27467         Log: Scale down the VMS message boxes, by Charles Lane.
27468              Fix for ID 20000903.009, workaround at
27469              http://www.xray.mpe.mpg.de/mailing-lists/vmsperl/2000-09/msg00039.html
27470      Branch: perl
27471            ! vms/vms.c
27472 ____________________________________________________________________________
27473 [  7132] By: jhi                                   on 2000/10/03  11:20:37
27474         Log: Upgrade to Storable 1.0.3, from Raphael Manfredi.
27475      Branch: perl
27476            + t/lib/st-lock.t t/lib/st-utf8.t
27477            ! MANIFEST ext/Storable/ChangeLog ext/Storable/Storable.pm
27478            ! ext/Storable/Storable.xs t/lib/st-recurse.t
27479 ____________________________________________________________________________
27480 [  7131] By: jhi                                   on 2000/10/03  03:38:23
27481         Log: Encode nits.
27482      Branch: perl
27483            ! MANIFEST Makefile.SH
27484 ____________________________________________________________________________
27485 [  7130] By: jhi                                   on 2000/10/03  03:31:05
27486         Log: Update Changes.
27487      Branch: perl
27488            ! Changes patchlevel.h
27489 ____________________________________________________________________________
27490 [  7129] By: jhi                                   on 2000/10/03  02:24:02
27491         Log: Misplaced else.
27492      Branch: metaconfig/U/perl
27493            ! d_strtoll.U
27494      Branch: perl
27495            ! Configure config_h.SH
27496 ____________________________________________________________________________
27497 [  7128] By: jhi                                   on 2000/10/03  02:08:29
27498         Log: Subject: [ID 20000915.007] Not OK: perl v5.7.0 +DEVEL7092 on os2-64int-ld 2.30 '(UNINSTALLED)'
27499              From: sthoenna@efn.org
27500              Date: Fri, 15 Sep 2000 07:19:57 -0700 (PDT)
27501              Message-Id: <200009151419.e8FEJvE19796@garcia.efn.org>
27502      Branch: metaconfig/U/perl
27503            ! d_strtoll.U
27504      Branch: perl
27505            ! Configure config_h.SH hints/os2.sh os2/os2ish.h
27506 ____________________________________________________________________________
27507 [  7127] By: jhi                                   on 2000/10/03  01:13:14
27508         Log: Update Changes.
27509      Branch: perl
27510            ! Changes patchlevel.h
27511 ____________________________________________________________________________
27512 [  7126] By: jhi                                   on 2000/10/03  00:57:08
27513         Log: Introduce NO_ENVIRON_ARRAY (and USE_ENVIRON_ARRAY) defines
27514              as suggested by Olaf Flebbe and Nick Clark.
27515      Branch: perl
27516            ! epoc/epocish.h perl.h sv.c unixish.h util.c vms/vmsish.h
27517 ____________________________________________________________________________
27518 [  7125] By: jhi                                   on 2000/10/03  00:50:56
27519         Log: Subject: [ID 20001002.001] Not OK: perl v5.7.0 +DEVEL7093 +...001 on i586-linux 2.2.16 (UNINSTALLED)
27520              From: Nick Clark <nick@plum.flirble.org>
27521              Date: Mon, 2 Oct 2000 11:03:24 +0100
27522              Message-Id: <20001002110324.D20073@plum.flirble.org>
27523              
27524              Also fixes bug ID 20001002.005.
27525      Branch: perl
27526            ! t/lib/encode.t
27527 ____________________________________________________________________________
27528 [  7124] By: jhi                                   on 2000/10/03  00:34:59
27529         Log: Subject: [PATCH 5.7.0] Epoc update
27530              From: Olaf Flebbe <o.flebbe@gmx.de>
27531              Date: Wed, 20 Sep 2000 23:16:26 +0200 (MEST)
27532              Message-ID: <26423.969484586@www10.gmx.net>
27533      Branch: perl
27534            ! README.epoc epoc/config.sh epoc/createpkg.pl epoc/epoc.c
27535            ! epoc/epoc_stubs.c epoc/epocish.h epoc/link.pl
27536            ! lib/AutoLoader.pm lib/Cwd.pm mg.c perl.c perl.h pp_sys.c sv.c
27537            ! util.c util.h
27538 ____________________________________________________________________________
27539 [  7123] By: jhi                                   on 2000/10/03  00:30:07
27540         Log: Regen headers.
27541      Branch: perl
27542            ! embed.h opcode.h pod/perlapi.pod pp.sym pp_proto.h
27543 ____________________________________________________________________________
27544 [  7122] By: jhi                                   on 2000/10/03  00:10:48
27545         Log: OpenBSD flags tweak from Todd C. Miller, tweaked some more by Abigail.
27546      Branch: perl
27547            ! hints/openbsd.sh
27548 ____________________________________________________________________________
27549 [  7121] By: jhi                                   on 2000/10/03  00:05:06
27550         Log: Subject: [PATCH pod/perlop.pod]  Documentation glitch in magic autoincrement.
27551              From: <abigail@foad.org>
27552              Date: Tue, 26 Sep 2000 13:36:14 -0400
27553              Message-ID: <20000926173614.4356.qmail@foad.org>
27554      Branch: perl
27555            ! pod/perlop.pod
27556 ____________________________________________________________________________
27557 [  7120] By: jhi                                   on 2000/10/03  00:04:00
27558         Log: Inside require() $^S was always left undefined.
27559              
27560              Subject: Re: Tiny 2-byte change to fix debugger's eval bug
27561              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
27562              Date: Wed, 27 Sep 2000 18:54:49 -0400
27563              Message-ID: <20000927185449.A24927@monk.mps.ohio-state.edu>
27564      Branch: perl
27565            ! cop.h mg.c pp_ctl.c util.c
27566 ____________________________________________________________________________
27567 [  7119] By: jhi                                   on 2000/10/03  00:00:16
27568         Log: Subject: [PATCH] DLL not restartabke with threaded perl
27569              From: "Dave Hartnoll" <Dave_Hartnoll@3b2.com>
27570              Date: Thu, 28 Sep 2000 09:20:46 +0100
27571              Message-ID: <002101c02925$00aa8d80$7e0aa8c0@3b2.com>
27572      Branch: perl
27573            ! perl.c
27574 ____________________________________________________________________________
27575 [  7118] By: jhi                                   on 2000/10/02  23:59:20
27576         Log: Subject: Re: [ID 20000828.017] bytecode fails with use subs;
27577              From: Nicholas Clark <nick@ccl4.org>
27578              Date: Thu, 28 Sep 2000 11:52:24 +0100
27579              Message-ID: <20000928115224.D7924@plum.flirble.org>
27580      Branch: perl
27581            ! op.c
27582 ____________________________________________________________________________
27583 [  7117] By: jhi                                   on 2000/10/02  23:57:51
27584         Log: Subject: [ID 20000928.002] perlcc & ByteCode.pm option mismatch
27585              From: Nicholas Clark <nick@babyhippo.co.uk>
27586              Date: Thu, 28 Sep 2000 12:18:10 +0100
27587              Message-Id: <E13ebha-0004IV-00@fruitbat.babyhippo.co.uk>
27588              
27589              Did not apply cleanly, manual intervention was needed.
27590      Branch: perl
27591            ! ext/B/B/Bytecode.pm utils/perlcc.PL
27592 ____________________________________________________________________________
27593 [  7116] By: jhi                                   on 2000/10/02  23:50:40
27594         Log: Document the issue (is not a syntax error, kind of)
27595              
27596              Subject: Re: [ID 20000901.011] the list (1,,3) ought to be a syntax error
27597              From: Nicholas Clark <nick@ccl4.org>
27598              Date: Thu, 28 Sep 2000 17:12:42 +0100
27599              Message-ID: <20000928171242.K7924@plum.flirble.org>
27600      Branch: perl
27601            ! pod/perldata.pod
27602 ____________________________________________________________________________
27603 [  7115] By: jhi                                   on 2000/10/02  23:48:58
27604         Log: Subject: [PATCH 5.7.0] Minor optimization in re_intuit_start
27605              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
27606              Date: Thu, 28 Sep 2000 21:55:31 -0400
27607              Message-ID: <20000928215531.A4315@monk.mps.ohio-state.edu>
27608      Branch: perl
27609            ! regexec.c
27610 ____________________________________________________________________________
27611 [  7114] By: jhi                                   on 2000/10/02  23:47:57
27612         Log: Subject: DOC PATCH 5.6.0
27613              From: mjd@plover.com
27614              Date: 30 Sep 2000 06:02:34 -0000
27615              Message-ID: <20000930060234.4559.qmail@plover.com>
27616      Branch: perl
27617            ! pod/perldebguts.pod
27618 ____________________________________________________________________________
27619 [  7113] By: jhi                                   on 2000/10/02  23:46:43
27620         Log: SOCK_DGRAM and listen() do not mix as reported in
27621              
27622              Subject: [ID 20000930.001] Bug in perl 5.00503 IO::Socket
27623              From: Petter Reinholdtsen <pere@hungry.com>
27624              Date: Sun, 1 Oct 2000 10:57:20 +0800
27625              Message-Id: <200010010257.KAA05735@localhost.localdomain>
27626              
27627              The patch for 5.7.0+ had to be reengineered, though.
27628      Branch: perl
27629            ! ext/IO/lib/IO/Socket/UNIX.pm
27630 ____________________________________________________________________________
27631 [  7112] By: jhi                                   on 2000/10/02  23:36:57
27632         Log: Subject: Re: [PATCH 5.005_64 missed]
27633              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
27634              Date: Sun, 1 Oct 2000 18:50:10 -0400
27635              Message-ID: <20001001185010.A14152@monk.mps.ohio-state.edu>
27636      Branch: perl
27637            ! pod/perlxs.pod
27638 ____________________________________________________________________________
27639 [  7111] By: jhi                                   on 2000/10/02  23:35:40
27640         Log: Subject: Re: [ID 20000912.008] substr replacement of tainted data (bug) 
27641              From: Radu Greab <radu@netsoft.ro>
27642              Date: Mon, 2 Oct 2000 22:03:44 +0300 (EEST)
27643              Message-ID: <14808.56336.594486.626712@busy.netsoft.ro>
27644      Branch: perl
27645            ! op.c opcode.pl t/op/substr.t
27646 ____________________________________________________________________________
27647 [  7110] By: jhi                                   on 2000/10/02  23:32:38
27648         Log: Subject: [PATCH] Fix aliasing of tied filehandles
27649              From: Daniel Chetlin <daniel@chetlin.com>
27650              Date: Mon, 2 Oct 2000 14:53:27 -0700
27651              Message-ID: <20001002145327.C1617@ilmd>
27652      Branch: perl
27653            ! perl.h pp_hot.c t/op/tiehandle.t
27654 ____________________________________________________________________________
27655 [  7109] By: jhi                                   on 2000/10/02  23:31:30
27656         Log: s/Robin Parker/Robin Barker/
27657      Branch: perl
27658            ! Changes5.6
27659 ____________________________________________________________________________
27660 [  7108] By: jhi                                   on 2000/10/02  23:15:46
27661         Log: Retract #7091 as suggested in
27662              
27663              From: Robin Barker <rmb1@cise.npl.co.uk> 
27664              Subject: [PATCH-R]  was Re: SuSE's gcc-2.95.2 and //depot/perl
27665              Date: Fri, 29 Sep 2000 13:10:22 +0100 (BST)
27666              Message-Id: <200009291210.NAA17098@tempest.npl.co.uk>
27667      Branch: perl
27668            ! embed.pl proto.h
27669 ____________________________________________________________________________
27670 [  7107] By: nick                                  on 2000/10/02  18:23:14
27671         Log: A few tweaks to get Tk803 to work with Encode scheme.
27672      Branch: perl
27673            ! ext/Encode/Encode.pm ext/Encode/Encode.xs t/lib/encode.t
27674 ____________________________________________________________________________
27675 [  7106] By: nick                                  on 2000/10/01  21:34:14
27676         Log: Add checking cases to Encode's toUnicode and fromUnicode.
27677      Branch: perl
27678            ! ext/Encode/Encode.pm
27679 ____________________________________________________________________________
27680 [  7105] By: nick                                  on 2000/10/01  17:18:01
27681         Log: Add encoding tables from tcl8.3.2 and perl code in Encode.pm
27682              To read and use them.
27683              Add a lib/encode.t which checks a few things.
27684      Branch: perl
27685            + ext/Encode/Encode/ascii.enc ext/Encode/Encode/big5.enc
27686            + ext/Encode/Encode/cp1250.enc ext/Encode/Encode/cp1251.enc
27687            + ext/Encode/Encode/cp1252.enc ext/Encode/Encode/cp1253.enc
27688            + ext/Encode/Encode/cp1254.enc ext/Encode/Encode/cp1255.enc
27689            + ext/Encode/Encode/cp1256.enc ext/Encode/Encode/cp1257.enc
27690            + ext/Encode/Encode/cp1258.enc ext/Encode/Encode/cp437.enc
27691            + ext/Encode/Encode/cp737.enc ext/Encode/Encode/cp775.enc
27692            + ext/Encode/Encode/cp850.enc ext/Encode/Encode/cp852.enc
27693            + ext/Encode/Encode/cp855.enc ext/Encode/Encode/cp857.enc
27694            + ext/Encode/Encode/cp860.enc ext/Encode/Encode/cp861.enc
27695            + ext/Encode/Encode/cp862.enc ext/Encode/Encode/cp863.enc
27696            + ext/Encode/Encode/cp864.enc ext/Encode/Encode/cp865.enc
27697            + ext/Encode/Encode/cp866.enc ext/Encode/Encode/cp869.enc
27698            + ext/Encode/Encode/cp874.enc ext/Encode/Encode/cp932.enc
27699            + ext/Encode/Encode/cp936.enc ext/Encode/Encode/cp949.enc
27700            + ext/Encode/Encode/cp950.enc ext/Encode/Encode/dingbats.enc
27701            + ext/Encode/Encode/euc-cn.enc ext/Encode/Encode/euc-jp.enc
27702            + ext/Encode/Encode/euc-kr.enc ext/Encode/Encode/gb12345.enc
27703            + ext/Encode/Encode/gb1988.enc ext/Encode/Encode/gb2312.enc
27704            + ext/Encode/Encode/iso2022-jp.enc
27705            + ext/Encode/Encode/iso2022-kr.enc ext/Encode/Encode/iso2022.enc
27706            + ext/Encode/Encode/iso8859-1.enc
27707            + ext/Encode/Encode/iso8859-2.enc
27708            + ext/Encode/Encode/iso8859-3.enc
27709            + ext/Encode/Encode/iso8859-4.enc
27710            + ext/Encode/Encode/iso8859-5.enc
27711            + ext/Encode/Encode/iso8859-6.enc
27712            + ext/Encode/Encode/iso8859-7.enc
27713            + ext/Encode/Encode/iso8859-8.enc
27714            + ext/Encode/Encode/iso8859-9.enc ext/Encode/Encode/jis0201.enc
27715            + ext/Encode/Encode/jis0208.enc ext/Encode/Encode/jis0212.enc
27716            + ext/Encode/Encode/koi8-r.enc ext/Encode/Encode/ksc5601.enc
27717            + ext/Encode/Encode/macCentEuro.enc
27718            + ext/Encode/Encode/macCroatian.enc
27719            + ext/Encode/Encode/macCyrillic.enc
27720            + ext/Encode/Encode/macDingbats.enc
27721            + ext/Encode/Encode/macGreek.enc
27722            + ext/Encode/Encode/macIceland.enc
27723            + ext/Encode/Encode/macJapan.enc ext/Encode/Encode/macRoman.enc
27724            + ext/Encode/Encode/macRomania.enc ext/Encode/Encode/macThai.enc
27725            + ext/Encode/Encode/macTurkish.enc
27726            + ext/Encode/Encode/macUkraine.enc
27727            + ext/Encode/Encode/shiftjis.enc ext/Encode/Encode/symbol.enc
27728            + t/lib/encode.t
27729            ! MANIFEST ext/Encode/Encode.pm
27730 ____________________________________________________________________________
27731 [  7104] By: nick                                  on 2000/09/30  13:04:30
27732         Log: Subject: [PATCH@blead] Fix some recursion in overload.pm
27733              From: Daniel Chetlin <daniel@chetlin.com>
27734              Date: Mon, 18 Sep 2000 05:05:40 -0700
27735              Message-Id: <20000918050540.C652@ilmd>
27736      Branch: perl
27737            ! lib/overload.pm sv.c t/pragma/overload.t
27738 ____________________________________________________________________________
27739 [  7103] By: nick                                  on 2000/09/30  12:53:36
27740         Log: Subject: [ID 20000917.002] 5.7.0 and blead@7095 make html makes man
27741              From: Johan Vromans <jvromans@squirrel.nl>
27742              Date: Sun, 17 Sep 2000 19:46:05 +0200 (CEST)
27743              Message-Id: <14789.861.376723.870640@phoenix.squirrel.nl>
27744      Branch: perl
27745            ! pod/Makefile.SH
27746 ____________________________________________________________________________
27747 [  7102] By: nick                                  on 2000/09/30  12:52:31
27748         Log: Subject: [PATCH] Re: [ID 20000915.010] Infinite loop with -MO=Deparse
27749              From: Spider Boardman <spider@Orb.Nashua.NH.US>
27750              Date: Sat, 16 Sep 2000 16:36:45 -0400
27751              Message-Id: <200009162036.QAA11694@Orb.Nashua.NH.US>
27752      Branch: perl
27753            ! ext/B/B/Deparse.pm
27754 ____________________________________________________________________________
27755 [  7101] By: nick                                  on 2000/09/30  12:51:41
27756         Log: Subject: [PATCH perl@7065] another VMS my_fwrite() fix for Storable
27757              From: Craig A. Berry <craig.berry@psinetcs.com>
27758              Date: Sat, 16 Sep 2000 10:11:10 -0500
27759              Message-Id: <4.3.2.7.2.20000916010548.01ce1b60@exchi01>
27760      Branch: perl
27761            ! vms/vms.c
27762 ____________________________________________________________________________
27763 [  7100] By: nick                                  on 2000/09/30  12:50:33
27764         Log: Subject: Re: unicode support and perl [ID 20000901.097]
27765              From: Spider Boardman <spider@Orb.Nashua.NH.US>
27766              Date: Fri, 15 Sep 2000 16:37:58 -0400
27767              Message-Id: <200009152037.QAA19056@Orb.Nashua.NH.US>
27768      Branch: perl
27769            ! t/op/append.t
27770 ____________________________________________________________________________
27771 [  7099] By: nick                                  on 2000/09/30  12:49:35
27772         Log: Subject: Re: unicode support and perl [ID 20000901.097]
27773              From: Spider Boardman <spider@Orb.Nashua.NH.US>
27774              Date: Fri, 15 Sep 2000 16:25:30 -0400
27775              Message-Id: <200009152025.QAA18540@Orb.Nashua.NH.US>
27776      Branch: perl
27777            ! pp_hot.c
27778 ____________________________________________________________________________
27779 [  7098] By: nick                                  on 2000/09/30  12:48:00
27780         Log: Subject: Re: Trapping by opmask sets strange parser state [PATCH]
27781              From: Gisle Aas <gisle@ActiveState.com>
27782              Date: 15 Sep 2000 16:23:41 +0200
27783              Message-Id: <m3aed9ybrm.fsf@eik.g.aas.no>
27784      Branch: perl
27785            ! toke.c
27786 ____________________________________________________________________________
27787 [  7097] By: nick                                  on 2000/09/30  12:45:16
27788         Log: Subject: [PATCH] Nits in perlmod.pod
27789              From: Daniel Chetlin <daniel@chetlin.com>
27790              Date: Fri, 15 Sep 2000 02:04:09 -0700
27791              Message-Id: <20000915020409.A2104@ilmd>
27792      Branch: perl
27793            ! pod/perlmod.pod
27794 ____________________________________________________________________________
27795 [  7096] By: nick                                  on 2000/09/30  12:18:00
27796         Log: Re-instate Perl_utf8_to_uv without checking parameter - added in change 7075.
27797              i.e. rename Simon's function to Perl_utf8_to_uv_chk, change all calls to it
27798              to use new name and add Perl_utf8_to_uv() as a wrapper which calls it passing
27799              0 to checking to get the warning.
27800      Branch: perl
27801            ! doop.c embed.h embed.pl global.sym handy.h objXSUB.h op.c
27802            ! perlapi.c pod/perlapi.pod pp.c pp_ctl.c proto.h regcomp.c
27803            ! regexec.c sv.c toke.c utf8.c
27804 ____________________________________________________________________________
27805 [  7095] By: nick                                  on 2000/09/15  16:55:59
27806         Log: Mutliplicity & ithreads fix for sv.c/Encode.xs
27807              
27808              Subject: [ID 20000915.004] Not OK: perl v5.7.1 +devel-7094 on alpha-dec_osf-thread-multi 4.0f (UNINSTALLED)
27809              From: Spider Boardman <spider@Orb.Nashua.NH.US>
27810              Message-Id: <200009151037.GAA07447@Orb.Nashua.NH.US>
27811              Date: Fri, 15 Sep 2000 06:37:30 -0400
27812      Branch: perl
27813            ! ext/Encode/Encode.xs sv.c
27814 ____________________________________________________________________________
27815 [  7094] By: jhi                                   on 2000/09/15  03:23:32
27816         Log: Update Changes.
27817      Branch: perl
27818            ! Changes patchlevel.h
27819 ____________________________________________________________________________
27820 [  7093] By: jhi                                   on 2000/09/15  03:11:44
27821         Log: Fix for the charnames.t failures from Spider Boardman.
27822      Branch: perl
27823            ! toke.c
27824 ____________________________________________________________________________
27825 [  7092] By: jhi                                   on 2000/09/15  00:15:48
27826         Log: Botched the #7090 check-in.
27827      Branch: perl
27828            ! sv.c
27829 ____________________________________________________________________________
27830 [  7091] By: jhi                                   on 2000/09/14  23:33:24
27831         Log: Part of #7081 didn't come through.
27832      Branch: perl
27833            ! embed.pl proto.h
27834 ____________________________________________________________________________
27835 [  7090] By: jhi                                   on 2000/09/14  23:17:39
27836         Log: Subject: Re: perl@7078 
27837              From: Spider Boardman <spider@web.zk3.dec.com>
27838              Date: Thu, 14 Sep 2000 19:06:36 -0400
27839              Message-Id: <200009142306.TAA20082@leggy.zk3.dec.com>
27840      Branch: perl
27841            ! sv.c toke.c
27842 ____________________________________________________________________________
27843 [  7089] By: jhi                                   on 2000/09/14  23:11:21
27844         Log: Small portability tweaks.
27845      Branch: perl
27846            ! ext/Encode/Encode.xs
27847 ____________________________________________________________________________
27848 [  7088] By: jhi                                   on 2000/09/14  22:57:23
27849         Log: Fake return to pacify picky compilers.
27850      Branch: perl
27851            ! ext/Encode/Encode.xs
27852 ____________________________________________________________________________
27853 [  7087] By: jhi                                   on 2000/09/14  22:53:37
27854         Log: Subject: [PATCH] utf8.c apidoc
27855              From: Simon Cozens <simon@cozens.net>
27856              Date: Thu, 14 Sep 2000 23:46:57 +0100
27857              Message-ID: <20000914234657.A13953@deep-dark-truthful-mirror.perlhacker.org>
27858      Branch: perl
27859            ! perlapi.c pod/perlapi.pod utf8.c
27860 ____________________________________________________________________________
27861 [  7086] By: jhi                                   on 2000/09/14  22:40:38
27862         Log: We don't need to count the high bit bytes, a boolean is enough. 
27863      Branch: perl
27864            ! sv.c
27865 ____________________________________________________________________________
27866 [  7085] By: jhi                                   on 2000/09/14  21:20:09
27867         Log: Replace #7084 with
27868              
27869              Subject: Re: perl@7078 
27870              From: Spider Boardman <spider@web.zk3.dec.com>
27871              Date: Thu, 14 Sep 2000 17:09:36 -0400
27872              Message-Id: <200009142109.RAA03425@leggy.zk3.dec.com>
27873      Branch: perl
27874            ! sv.c utf8.c
27875 ____________________________________________________________________________
27876 [  7084] By: jhi                                   on 2000/09/14  20:03:34
27877         Log: UTF8-encoded version of 256 is 0xc4 0x80; test that a char is
27878              convertable to bytes by checking it doesn't go above 0xc3
27879              
27880              Subject: Re: perl@7078
27881              From: Simon Cozens <simon@cozens.net>
27882              Date: Thu, 14 Sep 2000 20:59:19 +0100
27883              Message-ID: <20000914205919.A11098@deep-dark-truthful-mirror.perlhacker.org>
27884      Branch: perl
27885            ! utf8.c
27886 ____________________________________________________________________________
27887 [  7083] By: jhi                                   on 2000/09/14  19:38:47
27888         Log: Subject: Re: perl@7078
27889              From: Simon Cozens <simon@cozens.net>
27890              Date: Thu, 14 Sep 2000 20:13:09 +0100
27891              Message-ID: <20000914201309.A10640@deep-dark-truthful-mirror.perlhacker.org>
27892      Branch: perl
27893            ! t/op/bop.t
27894 ____________________________________________________________________________
27895 [  7082] By: jhi                                   on 2000/09/14  17:50:44
27896         Log: The one that got away.
27897      Branch: perl
27898            ! lib/File/Find.pm
27899 ____________________________________________________________________________
27900 [  7081] By: jhi                                   on 2000/09/14  17:45:35
27901         Log: Subject: [PATCH perl-5.7.0] continued -Wformat support
27902              From: Robin Barker <rmb1@cise.npl.co.uk>
27903              Message-Id: <200009141707.SAA13276@tempest.npl.co.uk>
27904              Date: Thu, 14 Sep 2000 18:07:38 +0100 (BST)
27905      Branch: perl
27906            ! Porting/pumpkin.pod embed.pl ext/ByteLoader/bytecode.h
27907            ! ext/Devel/Peek/Peek.xs ext/DynaLoader/dl_dlopen.xs
27908            ! ext/Storable/Storable.xs malloc.c perl.c perl.h pp.c proto.h
27909            ! regcomp.c toke.c universal.c
27910 ____________________________________________________________________________
27911 [  7080] By: jhi                                   on 2000/09/14  17:40:35
27912         Log: Problems picked up by AIX cc.
27913              
27914              Subject: Re: perl@7078 (patch included)
27915              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
27916              Date: Thu, 14 Sep 2000 18:53:30 +0200
27917              Message-Id: <20000914182304.7017.H.M.BRAND@hccnet.nl>
27918      Branch: perl
27919            ! ext/Encode/Encode.xs
27920 ____________________________________________________________________________
27921 [  7079] By: jhi                                   on 2000/09/14  17:38:27
27922         Log: Subject: File::Find 5.7.0 POD nits
27923              From: Rich Morin <rdm@cfcl.com>
27924              Date: Wed, 13 Sep 2000 22:03:58 -0700
27925              Message-Id: <v042208a0b5e60b3149be@w205.z205158144.scl-ca.dsl.cnc.net>
27926      Branch: perl
27927            ! lib/File/Find.pm
27928 ____________________________________________________________________________
27929 [  7078] By: jhi                                   on 2000/09/14  14:58:20
27930         Log: Update Changes.
27931      Branch: perl
27932            ! Changes patchlevel.h
27933 ____________________________________________________________________________
27934 [  7077] By: jhi                                   on 2000/09/14  14:55:54
27935         Log: Compilation warnings and an error.
27936      Branch: perl
27937            ! sv.c
27938 ____________________________________________________________________________
27939 [  7076] By: jhi                                   on 2000/09/14  14:42:56
27940         Log: Fix for a parsing bug, not for the original bug.
27941              
27942              Subject: Re: [ID 20000910.005] Another segfault with regexes. 
27943              From: Spider Boardman <spider@web.zk3.dec.com>
27944              Date: Wed, 13 Sep 2000 17:52:20 -0400
27945              Message-Id: <200009132152.RAA24029@leggy.zk3.dec.com>
27946      Branch: perl
27947            ! regcomp.c
27948 ____________________________________________________________________________
27949 [  7075] By: jhi                                   on 2000/09/14  14:40:40
27950         Log: Batch of UTF-8 patches from Simon Cozens.
27951      Branch: perl
27952            ! doop.c embed.h embed.pl ext/Encode/Encode.xs handy.h op.c
27953            ! pod/perlapi.pod pp.c pp_ctl.c proto.h regcomp.c regexec.c sv.c
27954            ! toke.c utf8.c
27955 ____________________________________________________________________________
27956 [  7074] By: jhi                                   on 2000/09/14  14:29:58
27957         Log: Subject: Re: Two advertising clauses need to be removed
27958              From: Russ Allbery <rra@stanford.edu>
27959              Date: 13 Sep 2000 18:50:26 -0700
27960              Message-ID: <ylwvgfvj19.fsf@windlord.stanford.edu>
27961      Branch: perl
27962            ! ext/SDBM_File/sdbm/dbm.c ext/SDBM_File/sdbm/dbm.h
27963 ____________________________________________________________________________
27964 [  7073] By: jhi                                   on 2000/09/14  14:28:20
27965         Log: Subject: [PATCH] de-wall t/README
27966              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
27967              Date: Wed, 13 Sep 2000 17:46:55 -0700
27968              Message-ID: <//Bw5gzkge/e092yn@efn.org>
27969      Branch: perl
27970            ! t/README
27971 ____________________________________________________________________________
27972 [  7072] By: jhi                                   on 2000/09/14  14:25:10
27973         Log: Hints optimization.
27974              
27975              Subject: Minor nit
27976              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
27977              Date: Wed, 13 Sep 2000 21:42:07 +0200
27978              Message-Id: <20000913214116.1D38.H.M.BRAND@hccnet.nl>
27979      Branch: perl
27980            ! hints/hpux.sh
27981 ____________________________________________________________________________
27982 [  7071] By: jhi                                   on 2000/09/14  14:23:30
27983         Log: Allow chop() and chomp() to be overridden.
27984              
27985              Subject: [PATCH] Re: [ID 20000911.006] I can override glob but not chop?
27986              From: "Casey R. Tweten" <crt@kiski.net>
27987              Date: Wed, 13 Sep 2000 12:41:31 -0400 (EDT)
27988              Message-ID: <Pine.OSF.4.21.0009131154120.6661-100000@home.kiski.net>
27989      Branch: perl
27990            ! toke.c
27991 ____________________________________________________________________________
27992 [  7070] By: jhi                                   on 2000/09/14  14:20:36
27993         Log: The return value of setlocale must be copied away.
27994              
27995              Subject: [ID 20000913.001] Heap corruption in Perl_init_i18nl10n
27996              From: Alan Burlison <Alan.Burlison@uk.sun.com>
27997              Date: Wed, 13 Sep 2000 16:27:37 +0100 
27998              Message-Id: <39BF9CE9.3D7FBBDD@uk.sun.com>
27999      Branch: perl
28000            ! util.c
28001 ____________________________________________________________________________
28002 [  7069] By: jhi                                   on 2000/09/14  14:16:27
28003         Log: Remove vestiges of tr//CU.
28004              
28005              Subject: [ID 20000912.009] perlunicode.pod still mentions tr///CU
28006              From: Nick Clark <nick@plum.flirble.org>
28007              Date: Tue, 12 Sep 2000 22:50:14 +0100
28008              Message-Id: <E13YxwU-000DDQ-00@plum.flirble.org>
28009              
28010              Subject: Re: [ID 20000912.009] perlunicode.pod still mentions tr///CU
28011              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
28012              Date: Tue, 12 Sep 2000 21:38:48 -0700
28013              Message-ID: <YTwv5gzkgmfL092yn@efn.org>
28014      Branch: perl
28015            ! op.h pod/perlunicode.pod
28016 ____________________________________________________________________________
28017 [  7068] By: jhi                                   on 2000/09/13  14:18:39
28018         Log: Add the Encode extension.  The code is still largely just skeleton.
28019      Branch: perl
28020            + ext/Encode/Encode.pm ext/Encode/Encode.xs
28021            + ext/Encode/Makefile.PL ext/Encode/Todo
28022            ! MANIFEST Todo-5.6
28023 ____________________________________________________________________________
28024 [  7067] By: jhi                                   on 2000/09/12  17:43:33
28025         Log: Allow for whitespace between "#" and "line" in cpp output.
28026              
28027              Subject: [PATCH] Re: Problems compiling bleadperl on Unicos 9
28028              From: Calle Dybedahl <calle@lysator.liu.se>
28029              Date: 12 Sep 2000 19:38:02 +0200 
28030              Message-ID: <867l8hy0hx.fsf_-_@tezcatlipoca.algonet.se>
28031      Branch: perl
28032            ! ext/Errno/ChangeLog ext/Errno/Errno_pm.PL
28033 ____________________________________________________________________________
28034 [  7066] By: gsar                                  on 2000/09/12  17:24:29
28035         Log: change#6327 didn't quite go all the way to enable USE_SOCKETS_AS_HANDLES
28036              initialization in all the threads on Windows
28037      Branch: perl
28038            ! win32/win32.c
28039 ____________________________________________________________________________
28040 [  7065] By: jhi                                   on 2000/09/12  15:11:31
28041         Log: Update Changes.
28042      Branch: perl
28043            ! Changes patchlevel.h
28044 ____________________________________________________________________________
28045 [  7064] By: jhi                                   on 2000/09/12  14:54:54
28046         Log: Retract #7062, the pod tests are not ready.
28047      Branch: perl
28048            ! t/TEST t/harness
28049 ____________________________________________________________________________
28050 [  7063] By: jhi                                   on 2000/09/12  14:25:41
28051         Log: The #7054 truncated Configure badly.
28052      Branch: metaconfig/U/perl
28053            ! End.U
28054      Branch: perl
28055            ! Configure config_h.SH
28056 ____________________________________________________________________________
28057 [  7062] By: jhi                                   on 2000/09/12  14:08:32
28058         Log: Subject: [ID 20000911.009] t/pod/*.t tests not run by harness or make test
28059              From: sthoenna@efn.org
28060              Date: Mon, 11 Sep 2000 17:56:47 -0700 (PDT)
28061              Message-Id: <200009120056.e8C0ulZ21635@garcia.efn.org>
28062      Branch: perl
28063            ! t/TEST t/harness
28064 ____________________________________________________________________________
28065 [  7061] By: jhi                                   on 2000/09/12  14:07:18
28066         Log: Subject: [ID 20000911.011] misplaced typemap in perlxs.pod
28067              From: sthoenna@efn.org
28068              Date: Mon, 11 Sep 2000 22:07:21 -0700 (PDT)
28069              Message-Id: <200009120507.e8C57LA02461@garcia.efn.org>
28070      Branch: perl
28071            ! pod/perlxs.pod
28072 ____________________________________________________________________________
28073 [  7060] By: jhi                                   on 2000/09/12  14:06:08
28074         Log: Break up the myconfig lines a bit.
28075              
28076              Subject: perlbug/perl -V output format
28077              From: sthoenna@efn.org
28078              Date: Tue, 12 Sep 2000 00:04:11 -0700 (PDT)
28079              Message-Id: <200009120704.e8C74BX10562@garcia.efn.org>
28080      Branch: perl
28081            ! myconfig.SH
28082 ____________________________________________________________________________
28083 [  7059] By: jhi                                   on 2000/09/12  14:05:04
28084         Log: Test for the #7049.
28085              
28086              Subject: Re: [PATCH] Re: [ID 20000910.001] Not OK: perl v5.7.0 +DEVEL7044 on    i686-linux 2.2.16-raid (UNINSTALLED)
28087              From: andreas.koenig@anima.de (Andreas J. Koenig)
28088              Date: 12 Sep 2000 06:42:01 +0200
28089              Message-ID: <m3k8cigr1i.fsf@ak-71.mind.de>
28090      Branch: perl
28091            ! t/op/my.t
28092 ____________________________________________________________________________
28093 [  7058] By: jhi                                   on 2000/09/12  14:03:05
28094         Log: Subject: [patch: perl@7045] vms updates
28095              From: Peter Prymmer <pvhp@forte.com>
28096              Date: Mon, 11 Sep 2000 18:41:48 -0700 (PDT)
28097              Message-ID: <Pine.OSF.4.10.10009111840030.339348-100000@aspara.forte.com>
28098      Branch: perl
28099            ! configure.com lib/ExtUtils/MM_VMS.pm vms/descrip_mms.template
28100 ____________________________________________________________________________
28101 [  7057] By: jhi                                   on 2000/09/12  14:00:51
28102         Log: Subject: [ID 20000911.008] Not OK: perl v5.7.0 +DEVEL7048 on os2-64int-ld 2.30 (UNINSTALLED)
28103              From: sthoenna@efn.org
28104              Date: Mon, 11 Sep 2000 16:28:13 -0700 (PDT)
28105              Message-Id: <200009112328.e8BNSD616812@garcia.efn.org>
28106      Branch: perl
28107            ! t/op/64bitint.t
28108 ____________________________________________________________________________
28109 [  7056] By: jhi                                   on 2000/09/12  13:58:14
28110         Log: Subject: [patch] perlfunc.pod -- POSIX::sigpause should be POSIX::pause
28111              From: Jeff Pinyan <jeffp@crusoe.net>
28112              Date: Sun, 10 Sep 2000 12:01:21 -0400 (EDT)
28113              Message-ID: <Pine.GSO.4.21.0009101200190.12441-100000@crusoe.crusoe.net>
28114      Branch: perl
28115            ! pod/perlfunc.pod
28116 ____________________________________________________________________________
28117 [  7055] By: jhi                                   on 2000/09/12  13:56:32
28118         Log: Do in VMS as the #7054 does.
28119      Branch: perl
28120            ! configure.com
28121 ____________________________________________________________________________
28122 [  7054] By: jhi                                   on 2000/09/12  13:50:31
28123         Log: Subject: RE: [Patch 5.7.0] Removing -ldb from the core build
28124              From: "Paul Marquess" <paul_marquess@yahoo.co.uk>
28125              Date: Mon, 11 Sep 2000 08:33:09 +0100
28126              Message-ID: <000e01c01bc2$88b2d2c0$0e14140a@bfs.phone.com>
28127      Branch: metaconfig/U/perl
28128            ! End.U
28129      Branch: perl
28130            ! Configure Makefile.SH config_h.SH lib/ExtUtils/Embed.pm
28131            ! lib/ExtUtils/Liblist.pm lib/ExtUtils/MM_Unix.pm
28132 ____________________________________________________________________________
28133 [  7053] By: jhi                                   on 2000/09/12  13:29:19
28134         Log: Subject:  [PATCH] Perl 5.6.0, 5.7.0 ... vms/test.com to eliminate spurious NL's in test output
28135              From: lane@DUPHY4.Physics.Drexel.Edu (Charles Lane)
28136              Date:     Tue, 12 Sep 2000 08:35:59 EDT
28137              Message-Id: <000912081130.13ca9@DUPHY4.Physics.Drexel.Edu>
28138      Branch: perl
28139            ! vms/test.com
28140 ____________________________________________________________________________
28141 [  7052] By: jhi                                   on 2000/09/11  23:01:50
28142         Log: Document the SvUTF8*().
28143      Branch: perl
28144            ! pod/perlapi.pod sv.h
28145 ____________________________________________________________________________
28146 [  7051] By: gsar                                  on 2000/09/11  14:46:30
28147         Log: C<@a = @b = split(...)> optimization coredumps under ithreads
28148              (missed a spot when fixing up op_pmreplroot hack for ithreads)
28149      Branch: perl
28150            ! op.c t/op/split.t
28151 ____________________________________________________________________________
28152 [  7050] By: nick                                  on 2000/09/11  10:03:51
28153         Log: Modern Borland C now seems to have anon unions for info.wProcessorArchitecture
28154              
28155              Subject: borland C++ win32.c tweak
28156              From: Vadim Konovalov <vkonovalov@lucent.com>
28157              Message-ID: <402099F49BEED211999700805FC7359F6FB379@ru0028exch01.spb.lucent.com>
28158              Date: Mon, 11 Sep 2000 11:22:33 +0400
28159      Branch: perl
28160            ! win32/win32.c
28161 ____________________________________________________________________________
28162 [  7049] By: nick                                  on 2000/09/11  09:57:33
28163         Log: Point fix for s/// on foreach (keys %xxx).
28164      Branch: perl
28165            ! pp_hot.c
28166 ____________________________________________________________________________
28167 [  7048] By: jhi                                   on 2000/09/10  23:37:09
28168         Log: Silence t/pod/*.t about alternate quote-mappings now implemented
28169              by Pod::Text, from Brad Appleton.
28170      Branch: perl
28171            ! t/pod/testp2pt.pl
28172 ____________________________________________________________________________
28173 [  7047] By: jhi                                   on 2000/09/10  14:32:53
28174         Log: Upgrade to podlators-1.03 (Pod::Man 1.07 and Pod::Text 2.05),
28175              by Russ Allbery.
28176      Branch: perl
28177            ! lib/Pod/Man.pm lib/Pod/Text.pm pod/pod2man.PL pod/pod2text.PL
28178 ____________________________________________________________________________
28179 [  7046] By: jhi                                   on 2000/09/10  14:15:08
28180         Log: Upgrade to CPAN 1.57_65, from Andreas König.
28181      Branch: perl
28182            ! lib/CPAN.pm lib/CPAN/FirstTime.pm
28183 ____________________________________________________________________________
28184 [  7045] By: jhi                                   on 2000/09/08  21:36:32
28185         Log: Update Changes.
28186      Branch: perl
28187            ! Changes patchlevel.h
28188 ____________________________________________________________________________
28189 [  7044] By: jhi                                   on 2000/09/08  21:29:56
28190         Log: Subject: [PATCH: 5.7.0] proper setting for isnan for DECC 5.3
28191              From: Peter Prymmer <pvhp@forte.com>
28192              Date: Fri, 8 Sep 2000 13:33:27 -0700 (PDT)
28193              Message-ID: <Pine.OSF.4.10.10009081331420.132461-100000@aspara.forte.com>
28194      Branch: perl
28195            ! configure.com
28196 ____________________________________________________________________________
28197 [  7043] By: jhi                                   on 2000/09/08  21:27:50
28198         Log: Subject: [PATCH (or RFC): 5.7.0] make the ran_tests intermediate file 8.3 friendly
28199              From: Peter Prymmer <pvhp@forte.com>
28200              Date: Fri, 8 Sep 2000 11:02:19 -0700 (PDT)
28201              Message-ID: <Pine.OSF.4.10.10009081054340.132461-100000@aspara.forte.com>
28202      Branch: perl
28203            ! Makefile.SH installperl
28204 ____________________________________________________________________________
28205 [  7042] By: jhi                                   on 2000/09/08  21:23:21
28206         Log: Continue #7041.
28207      Branch: perl
28208            ! cygwin/Makefile.SHs os2/Makefile.SHs
28209 ____________________________________________________________________________
28210 [  7041] By: jhi                                   on 2000/09/08  21:18:10
28211         Log: Do away with memory models cruft.  Sorry, PDP users.
28212      Branch: metaconfig
28213            ! U/modified/cc.U U/modified/libpth.U
28214      Branch: perl
28215            ! Configure Makefile.SH Porting/Glossary Porting/config.sh
28216            ! Porting/config_H cflags.SH config_h.SH configure.com
28217            ! epoc/config.sh hints/mint.sh hints/titanos.sh hints/vmesa.sh
28218            ! lib/ExtUtils/MM_Unix.pm win32/config.bc win32/config.gc
28219            ! win32/config.vc x2p/Makefile.SH x2p/cflags.SH
28220 ____________________________________________________________________________
28221 [  7040] By: jhi                                   on 2000/09/08  14:34:18
28222         Log: Major rewrite of s2p.  And I mean really major, it is
28223              an implementation of sed in perl.  If called as s2p it
28224              will function as s2p.  Note: needs non-UNIXifying.
28225              
28226              Subject: s2p
28227              From: Wolfgang Laun <Wolfgang.Laun@alcatel.at>
28228              Date: Mon, 28 Aug 2000 14:05:12 +0200
28229              Message-ID: <39AA5578.2102E2AA@alcatel.at>
28230      Branch: perl
28231            ! x2p/s2p.PL
28232 ____________________________________________________________________________
28233 [  7039] By: jhi                                   on 2000/09/08  14:19:49
28234         Log: Re-allow vec() for characters > 255.
28235              
28236              Subject: [PATCH] Re: [ID 20000907.005] Not OK: perl v5.7.0 +devel-7030 on alpha-dec_osf-perlio 4.0f (UNINSTALLED) 
28237              From: Spider Boardman <spider@web.zk3.dec.com>
28238              Date: Fri, 08 Sep 2000 02:21:02 -0400
28239              Message-Id: <200009080621.CAA03409@leggy.zk3.dec.com>
28240      Branch: perl
28241            ! doop.c pod/perldelta.pod pod/perldiag.pod pod/perlfunc.pod
28242            ! t/op/vec.t
28243 ____________________________________________________________________________
28244 [  7038] By: jhi                                   on 2000/09/08  14:14:18
28245         Log: Subject: [PATCH lib/Benchmark.pm]
28246              From: <abigail@foad.org>
28247              Date: Thu, 7 Sep 2000 15:03:20 -0400
28248              Message-ID: <20000907190320.888.qmail@foad.org>
28249      Branch: perl
28250            ! lib/Benchmark.pm
28251 ____________________________________________________________________________
28252 [  7037] By: jhi                                   on 2000/09/08  14:11:06
28253         Log: Optimizing hash keys into shared strings doesn't work with ithreads.
28254              
28255              Subject: Re: [ID 20000907.008] Not OK: v5.7.0 on alpha-dec_osf-thread-multi    
28256              From: Spider Boardman <spider@web.zk3.dec.com>
28257              Date: Fri, 08 Sep 2000 01:30:27 -0400
28258              Message-Id: <200009080530.BAA10498@leggy.zk3.dec.com>
28259      Branch: perl
28260            ! op.c
28261 ____________________________________________________________________________
28262 [  7036] By: jhi                                   on 2000/09/08  14:08:58
28263         Log: Subject: [ID 20000908.002] perlipc documentation bug.
28264              From: Major Sébastien <sebastien.major@crdp.ac-caen.fr>
28265              Date: Fri, 08 Sep 2000 12:38:32 +0200
28266              Message-Id: <39B8C1A8.3DC36E6D@crdp.ac-caen.fr>
28267      Branch: perl
28268            ! pod/perlipc.pod
28269 ____________________________________________________________________________
28270 [  7035] By: jhi                                   on 2000/09/08  14:03:12
28271         Log: Subject: Re: [ID 20000907.007] Not OK: perl v5.7.0 +devel-7030 on alpha-dec_osf 4.0f
28272              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
28273              Date: Fri, 08 Sep 2000 11:47:34 +0200
28274              Message-Id: <20000908111426.FBDB.H.M.BRAND@hccnet.nl>
28275      Branch: perl
28276            ! hints/dec_osf.sh
28277 ____________________________________________________________________________
28278 [  7034] By: jhi                                   on 2000/09/08  13:59:35
28279         Log: Subject: Re: [ID 20000906.004] segfault with bad perl statement
28280              From: Simon Cozens <simon@cozens.net>
28281              Date: Thu, 7 Sep 2000 20:40:38 +0100
28282              Message-ID: <20000907204038.A15650@deep-dark-truthful-mirror.perlhacker.org>
28283      Branch: perl
28284            ! pp_hot.c
28285 ____________________________________________________________________________
28286 [  7033] By: jhi                                   on 2000/09/08  04:03:03
28287         Log: Subject: [ID 20000904.008] Tiny fix for perldiag
28288              From: "Larry W. Virden" <lvirden@cas.org>
28289              Date: Mon, 4 Sep 2000 18:45:44 -0400 (EDT)
28290              Message-Id: <200009042245.SAA22916@lwv26awu.cas.org>
28291      Branch: perl
28292            ! pod/perldiag.pod
28293 ____________________________________________________________________________
28294 [  7032] By: jhi                                   on 2000/09/07  22:18:30
28295         Log: Subject: [PATCH 5.7.0] perl5db.pl [Was: Re: Debugger question]
28296              From: Peter Scott <Peter.J.Scott@jpl.nasa.gov>
28297              Date: Mon, 04 Sep 2000 13:16:38 -0700
28298              Message-Id: <4.3.2.7.2.20000904130939.00adae90@mail2a.jpl.nasa.gov>
28299      Branch: perl
28300            ! lib/perl5db.pl
28301 ____________________________________________________________________________
28302 [  7031] By: jhi                                   on 2000/09/07  22:02:29
28303         Log: Fix the ccversion detection for 5.1 and beyond.
28304              
28305              Subject: [ID 20000907.007] Not OK: perl v5.7.0 +devel-7030 on alpha-dec_osf 4.0f
28306              From: Spider Boardman <spider@leggy.zk3.dec.com>
28307              Date: Thu, 7 Sep 2000 17:54:27 -0400
28308              Message-Id: <200009072154.RAA14747@leggy.zk3.dec.com>
28309      Branch: perl
28310            ! hints/dec_osf.sh
28311 ____________________________________________________________________________
28312 [  7030] By: jhi                                   on 2000/09/07  19:12:28
28313         Log: Fix for
28314              
28315              Subject: [ID 20000903.001] \w in utf8-strings
28316              From: Marc Lehmann <pcg@goof.com>
28317              Date: Sun, 03 Sep 2000 09:44:29 +0200
28318              Message-Id: <E13VUS5-0000cv-00.pgcc-forever-2000-09-03-09-44-29@fuji>
28319              
28320              and various related nits.
28321      Branch: perl
28322            ! lib/unicode/mktables.PL regcomp.h regexec.c utf8.c
28323 ____________________________________________________________________________
28324 [  7029] By: jhi                                   on 2000/09/07  18:49:09
28325         Log: Fix the URL, but the server is still missing in action.
28326              
28327              Subject: [ID 20000905.002] perlfaq1.pod URL error
28328              From: "Larry W. Virden" <lvirden@cas.org>
28329              Date: Tue, 5 Sep 2000 08:24:40 -0400 (EDT)
28330              Message-Id: <200009051224.IAA11226@lwv26awu.cas.org>
28331      Branch: perl
28332            ! pod/perlfaq1.pod
28333 ____________________________________________________________________________
28334 [  7028] By: jhi                                   on 2000/09/07  18:47:13
28335         Log: Subject: Re: [ID 20000905.001] Assertion failed: file "toke.c", line 202 
28336              From: Hugo <hv@crypt.compulink.co.uk>
28337              Date: Tue, 05 Sep 2000 14:13:37 +0100
28338              Message-Id: <200009051313.OAA24507@crypt.compulink.co.uk>
28339      Branch: perl
28340            ! toke.c
28341 ____________________________________________________________________________
28342 [  7027] By: jhi                                   on 2000/09/07  18:45:35
28343         Log: Subject: [PATCH@7014] \G in non-/g is well-defined now ... right?
28344              From: Daniel Chetlin <daniel@chetlin.com>
28345              Date: Tue, 5 Sep 2000 04:57:07 -0700
28346              Message-ID: <20000905045707.A8620@ilmd.chetlin.org>
28347      Branch: perl
28348            ! pod/perlfaq6.pod pod/perlop.pod
28349 ____________________________________________________________________________
28350 [  7026] By: jhi                                   on 2000/09/07  18:44:01
28351         Log: Document the new ref() semantics.
28352              
28353              Subject: Re: Undocumented(?) change to "ref" semantics in 5.7.0
28354              From: Gisle Aas <gisle@ActiveState.com>
28355              Date: 05 Sep 2000 08:10:30 +0200
28356              Message-ID: <m3vgwb8j3d.fsf@eik.g.aas.no>
28357      Branch: perl
28358            ! pod/perldelta.pod
28359 ____________________________________________________________________________
28360 [  7025] By: jhi                                   on 2000/09/07  18:42:27
28361         Log: Make Data::Dumper (non-XS) to work with changed semantics of ref().
28362              
28363              Subject: Re: Undocumented(?) change to "ref" semantics in 5.7.0
28364              From: Gisle Aas <gisle@ActiveState.com>
28365              Date: 05 Sep 2000 08:11:40 +0200
28366              Message-ID: <m3snrf8j1f.fsf@eik.g.aas.no>
28367      Branch: perl
28368            ! ext/Data/Dumper/Dumper.pm t/lib/dumper.t
28369 ____________________________________________________________________________
28370 [  7024] By: jhi                                   on 2000/09/07  18:39:32
28371         Log: Subject: [PATCH] Modernize Opcode.pm documentation
28372              From: Gisle Aas <gisle@ActiveState.com>
28373              Date: 4 Sep 2000 00:18:55 -0000
28374              Message-ID: <20000904001855.26128.qmail@eik.g.aas.no>
28375      Branch: perl
28376            ! ext/Opcode/Opcode.pm
28377 ____________________________________________________________________________
28378 [  7023] By: jhi                                   on 2000/09/07  18:37:42
28379         Log: Subject: [PATCH] Tied filehandle documentation
28380              From: Gisle Aas <gisle@ActiveState.com>
28381              Date: 4 Sep 2000 00:14:40 -0000
28382              Message-ID: <20000904001440.26084.qmail@eik.g.aas.no>
28383      Branch: perl
28384            ! pod/perlfunc.pod pod/perltie.pod
28385 ____________________________________________________________________________
28386 [  7022] By: jhi                                   on 2000/09/07  18:35:37
28387         Log: Subject: [PATCH] Tie::StdHandle did not know about 3-arg open
28388              From: Gisle Aas <gisle@ActiveState.com>
28389              Date: 4 Sep 2000 00:04:22 -0000
28390              Message-ID: <20000904000422.26002.qmail@eik.g.aas.no>
28391      Branch: perl
28392            ! lib/Tie/Handle.pm t/lib/tie-stdhandle.t
28393 ____________________________________________________________________________
28394 [  7021] By: jhi                                   on 2000/09/07  18:33:22
28395         Log: Subject: small apidoc fix
28396              From: Marc Lehmann <pcg@goof.com>
28397              Date: Sun, 3 Sep 2000 05:12:06 +0200
28398              Message-ID: <20000903051206.A5909@cerebro.laendle>
28399      Branch: perl
28400            ! pod/perlapi.pod utf8.c
28401 ____________________________________________________________________________
28402 [  7020] By: jhi                                   on 2000/09/07  16:14:57
28403         Log: Tiny perldelta nits.
28404      Branch: perl
28405            ! pod/perldelta.pod
28406 ____________________________________________________________________________
28407 [  7019] By: jhi                                   on 2000/09/07  16:04:20
28408         Log: Guard against bad string->int conversion for quads.
28409      Branch: perl
28410            ! t/op/64bitint.t
28411 ____________________________________________________________________________
28412 [  7018] By: jhi                                   on 2000/09/06  17:07:03
28413         Log: Update Unicode todo list.
28414      Branch: perl
28415            ! Todo-5.6
28416 ____________________________________________________________________________
28417 [  7017] By: jhi                                   on 2000/09/05  21:16:01
28418         Log: Document the SvIOK_.*UV().
28419      Branch: perl
28420            ! pod/perlapi.pod sv.h
28421 ____________________________________________________________________________
28422 [  7016] By: nick                                  on 2000/09/03  21:54:46
28423         Log: Hash lookup of constant strings optimization:
28424              Introduce SvREADONLY && SvFAKE to flag an SV which has SvPVX pointing
28425              to string table (as per sharepvn). Add newSV_pvn_share to create such
28426              a thing. Make hv.c compare addresses of strings and skip string compare
28427              if equal. Make method_named and helem ops use these shared-string SVs
28428              when arg is constant. Make keys op return shared-string SVs (less clearly
28429              a win).
28430      Branch: perl
28431            ! embed.h embed.pl embedvar.h global.sym hv.c objXSUB.h op.c
28432            ! opcode.h opnames.h perlapi.c perlapi.h pod/perlapi.pod
28433            ! pod/perlintern.pod pp_hot.c proto.h sv.c
28434 ____________________________________________________________________________
28435 [  7015] By: jhi                                   on 2000/09/02  17:48:59
28436         Log: This is 5.7.0.
28437      Branch: perl
28438            ! Changes
28439 ____________________________________________________________________________
28440 [  7014] By: jhi                                   on 2000/09/02  17:35:45
28441         Log: Changes and patchlevel tweaks.
28442      Branch: perl
28443            ! Changes patchlevel.h
28444 ____________________________________________________________________________
28445 [  7013] By: jhi                                   on 2000/09/02  17:30:50
28446         Log: Update Changes.
28447      Branch: perl
28448            ! Changes patchlevel.h
28449 ____________________________________________________________________________
28450 [  7012] By: nick                                  on 2000/09/02  17:25:20
28451         Log: More %{} and other deref special casing - do not pass to 'nomethod'.
28452      Branch: perl
28453            ! gv.c lib/overload.pm
28454 ____________________________________________________________________________
28455 [  7011] By: jhi                                   on 2000/09/02  17:16:25
28456         Log: Update perlhist.
28457      Branch: perl
28458            ! pod/perlhist.pod
28459 ____________________________________________________________________________
28460 [  7010] By: jhi                                   on 2000/09/02  17:01:35
28461         Log: perldelta nits.
28462      Branch: perl
28463            ! pod/perldelta.pod
28464 ____________________________________________________________________________
28465 [  7009] By: nick                                  on 2000/09/02  16:48:35
28466         Log: If overloaded %{} etc. return the object do not loop.
28467              Thus  sub deref { $_[0] } functions if object is wanted type.
28468      Branch: perl
28469            ! pp.h
28470 ____________________________________________________________________________
28471 [  7008] By: jhi                                   on 2000/09/02  16:26:11
28472         Log: Retab MANIFEST.
28473      Branch: perl
28474            ! ext/Storable/MANIFEST
28475 ____________________________________________________________________________
28476 [  7007] By: jhi                                   on 2000/09/02  16:23:02
28477         Log: Make certain cc is set before trying to run it.
28478      Branch: perl
28479            ! hints/hpux.sh hints/irix_6.sh hints/solaris_2.sh
28480 ____________________________________________________________________________
28481 [  7006] By: jhi                                   on 2000/09/02  15:45:41
28482         Log: Unicode notes.
28483      Branch: perl
28484            ! pod/perldelta.pod
28485 ____________________________________________________________________________
28486 [  7005] By: jhi                                   on 2000/09/02  15:42:11
28487         Log: Various Configure nits by Philip Newton,
28488              plus the ebcdic one by me.
28489      Branch: metaconfig
28490            + U/modified/pager.U
28491            ! U/ebcdic/ebcdic.U U/modified/Finish.U U/modified/Guess.U
28492      Branch: metaconfig/U/perl
28493            ! Devel.U quadfio.U
28494      Branch: perl
28495            ! Configure config_h.SH
28496 ____________________________________________________________________________
28497 [  7004] By: jhi                                   on 2000/09/02  15:06:14
28498         Log: Apparently avoiding the swapping is too costly.
28499              
28500              From: "Ben Tilly" <ben_tilly@hotmail.com>
28501              Subject: Re: the door is closed.
28502              Date: Fri, 01 Sep 2000 20:23:16 EDT
28503              Message-ID: <LAW2-F2963JkUwWpSWe00000904@hotmail.com>
28504      Branch: perl
28505            ! pod/perlfaq4.pod
28506 ____________________________________________________________________________
28507 [  7003] By: nick                                  on 2000/09/02  12:26:04
28508         Log: Undo part of change 6489 which looks like a bulk edit which
28509              changed _all_ gv_efullname3() calls to gv_efullname4() calls.
28510              The supressing of main:: on return from select() is undesirable.
28511      Branch: perl
28512            ! pp_sys.c
28513 ____________________________________________________________________________
28514 [  7002] By: jhi                                   on 2000/09/01  23:08:54
28515         Log: Update Changes.
28516      Branch: perl
28517            ! Changes patchlevel.h
28518 ____________________________________________________________________________
28519 [  7001] By: jhi                                   on 2000/09/01  23:00:13
28520         Log: Subject: [PATCH: 6996] minimal removal of 8 bit chrs from perlebcdic.pod
28521              From: Peter Prymmer <pvhp@forte.com>
28522              Date: Fri, 1 Sep 2000 15:50:57 -0700 (PDT)
28523              Message-ID: <Pine.OSF.4.10.10009011542550.147696-100000@aspara.forte.com>
28524              
28525              plus rework the http: spots as suggested by Tom Christiansen,
28526              plus regen perltoc.
28527      Branch: perl
28528            ! README.os2 pod/perl56delta.pod pod/perlebcdic.pod
28529            ! pod/perlguts.pod pod/perltoc.pod pod/perlxs.pod
28530 ____________________________________________________________________________
28531 [  7000] By: jhi                                   on 2000/09/01  22:36:01
28532         Log: Only the first line, thank you very much.
28533      Branch: perl
28534            ! hints/solaris_2.sh
28535 ____________________________________________________________________________
28536 [  6999] By: gsar                                  on 2000/09/01  22:16:40
28537         Log: change#6791 accidentally clobbered change#6710, put it back
28538      Branch: perl
28539            ! win32/win32.c
28540 ____________________________________________________________________________
28541 [  6998] By: jhi                                   on 2000/09/01  22:14:16
28542         Log: Mention the HP-UX LP64 freak failure.
28543      Branch: perl
28544            ! pod/perldelta.pod
28545 ____________________________________________________________________________
28546 [  6997] By: jhi                                   on 2000/09/01  21:48:32
28547         Log: Detypo.
28548      Branch: perl
28549            ! hints/hpux.sh
28550 ____________________________________________________________________________
28551 [  6996] By: jhi                                   on 2000/09/01  21:27:10
28552         Log: Update Changes.
28553      Branch: perl
28554            ! Changes patchlevel.h
28555 ____________________________________________________________________________
28556 [  6995] By: jhi                                   on 2000/09/01  21:14:24
28557         Log: Mi splgn s gnin.g
28558      Branch: perl
28559            ! pp_ctl.c
28560 ____________________________________________________________________________
28561 [  6994] By: jhi                                   on 2000/09/01  21:09:54
28562         Log: Subject: http:// in L<>
28563              From: Nicholas Clark <nick@ccl4.org>
28564              Date: Fri, 1 Sep 2000 22:03:21 +0100
28565              Message-ID: <20000901220321.B72074@plum.flirble.org>
28566      Branch: perl
28567            ! README.os2 pod/perl56delta.pod pod/perlxs.pod
28568 ____________________________________________________________________________
28569 [  6993] By: jhi                                   on 2000/09/01  21:06:54
28570         Log: Update to Storable 1.0, from Raphael Manfredi.
28571      Branch: perl
28572            ! ext/Storable/ChangeLog ext/Storable/MANIFEST
28573            ! ext/Storable/Makefile.PL ext/Storable/README
28574            ! ext/Storable/Storable.pm ext/Storable/Storable.xs
28575            ! t/lib/st-06compat.t t/lib/st-blessed.t t/lib/st-canonical.t
28576            ! t/lib/st-dclone.t t/lib/st-dump.pl t/lib/st-forgive.t
28577            ! t/lib/st-freeze.t t/lib/st-overload.t t/lib/st-recurse.t
28578            ! t/lib/st-retrieve.t t/lib/st-store.t t/lib/st-tied.t
28579            ! t/lib/st-tiedhook.t t/lib/st-tieditems.t
28580 ____________________________________________________________________________
28581 [  6992] By: jhi                                   on 2000/09/01  20:43:05
28582         Log: Mention known sfio+linux buglet.
28583      Branch: perl
28584            ! pod/perldelta.pod
28585 ____________________________________________________________________________
28586 [  6991] By: jhi                                   on 2000/09/01  20:40:11
28587         Log: Subject: Re: [PATCH perl@6962] 2 more vms.c fix-ups and status
28588              From: Peter Prymmer <pvhp@forte.com>
28589              Date: Fri, 1 Sep 2000 12:03:38 -0700 (PDT)
28590              Message-ID: <Pine.OSF.4.10.10009011140240.147696-100000@aspara.forte.com>
28591      Branch: perl
28592            ! vms/vms.c
28593 ____________________________________________________________________________
28594 [  6990] By: jhi                                   on 2000/09/01  20:25:26
28595         Log: Retract #6986.
28596      Branch: perl
28597            ! hints/solaris_2.sh
28598 ____________________________________________________________________________
28599 [  6989] By: jhi                                   on 2000/09/01  20:23:00
28600         Log: Mergesort is back.
28601      Branch: perl
28602            ! pod/perldelta.pod pod/perltoc.pod pp_ctl.c
28603 ____________________________________________________________________________
28604 [  6988] By: jhi                                   on 2000/09/01  19:37:40
28605         Log: Subject: [PATCH] Fix vec() / utf8   (was Re: bitvec ops still broken with utf8 -- or not?)
28606              From: Mike Guy <mjtg@cam.ac.uk>
28607              Date: Fri, 01 Sep 2000 17:43:33 +0100
28608              Message-Id: <E13Utuf-0004Bw-00@draco.cus.cam.ac.uk>
28609      Branch: perl
28610            ! doop.c embed.pl perlapi.c pod/perlapi.pod pod/perldiag.pod
28611            ! pod/perlfunc.pod proto.h t/op/vec.t utf8.c
28612 ____________________________________________________________________________
28613 [  6987] By: jhi                                   on 2000/09/01  19:17:10
28614         Log: Regen perltoc.
28615      Branch: perl
28616            ! pod/perltoc.pod
28617 ____________________________________________________________________________
28618 [  6986] By: jhi                                   on 2000/09/01  18:51:10
28619         Log: Subject: Re: Solaris x86 has no SPARC libraries!
28620              From: Lupe Christoph <lupe@lupe-christoph.de>
28621              Date: Fri, 1 Sep 2000 20:41:20 +0200
28622              Message-ID: <20000901204120.P13547@alanya.lupe-christoph.de>
28623      Branch: perl
28624            ! hints/solaris_2.sh
28625 ____________________________________________________________________________
28626 [  6985] By: jhi                                   on 2000/09/01  18:28:10
28627         Log: Update Changes.
28628      Branch: perl
28629            ! Changes patchlevel.h
28630 ____________________________________________________________________________
28631 [  6984] By: jhi                                   on 2000/09/01  18:26:53
28632         Log: Feature ordering tweak.
28633      Branch: perl
28634            ! myconfig.SH
28635 ____________________________________________________________________________
28636 [  6983] By: jhi                                   on 2000/09/01  18:19:50
28637         Log: Subject: Re: [PATCH lib/overload.pm] Sanaty checking of arguments to overload::constant
28638              From: <abigail@foad.org>
28639              Date: Fri, 1 Sep 2000 13:07:32 -0400
28640              Message-ID: <20000901170732.18249.qmail@foad.org>
28641      Branch: perl
28642            ! t/pragma/overload.t
28643 ____________________________________________________________________________
28644 [  6982] By: jhi                                   on 2000/09/01  18:17:54
28645         Log: Rename the PRIElfbl, PRIX64, etc, to be PRIEUfldbl, PRIXU64,
28646              so that case-ignoring systems like DCL can tell them from
28647              PRIefldbl and PRIx64.  Apply Merijn's ccversion patches.
28648      Branch: metaconfig/U/perl
28649            ! Checkcc.U gccvers.U longdblfio.U perlxvf.U quadfio.U
28650      Branch: perl
28651            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
28652            ! config_h.SH configure.com epoc/config.sh hints/aix.sh
28653            ! hints/dec_osf.sh hints/hpux.sh hints/irix_6.sh
28654            ! hints/solaris_2.sh myconfig.SH uconfig.h uconfig.sh
28655            ! vos/config.def vos/config.h vos/config_h.SH_orig
28656            ! win32/config.bc win32/config.gc win32/config.vc
28657 ____________________________________________________________________________
28658 [  6981] By: nick                                  on 2000/09/01  17:21:57
28659         Log: Document UNTIE. Also tweak implementation to suppress the 'inner references'
28660              warning when UNTIE exists and instead pass the cound of extra references to
28661              the UNTIE method.
28662      Branch: perl
28663            ! pod/perltie.pod pp_sys.c
28664 ____________________________________________________________________________
28665 [  6980] By: jhi                                   on 2000/09/01  16:54:44
28666         Log: Subject: [PATCH: 6948] add SCNfldbl to configure.com
28667              From: Peter Prymmer <pvhp@forte.com>
28668              Date: Thu, 31 Aug 2000 18:47:18 -0700 (PDT)
28669              Message-ID: <Pine.OSF.4.10.10008311811060.91659-100000@aspara.forte.com>
28670      Branch: perl
28671            ! configure.com
28672 ____________________________________________________________________________
28673 [  6979] By: jhi                                   on 2000/09/01  16:06:20
28674         Log: Subject: [ID 20000901.017] [PATCH] Basic test failure in an untidy world       
28675              From: Mike Guy <mjtg@cam.ac.uk> 
28676              Date: Fri, 01 Sep 2000 16:49:27 +0100
28677              Message-Id: <E13Ut4J-0002sd-00@draco.cus.cam.ac.uk>  
28678      Branch: perl
28679            ! t/base/rs.t
28680 ____________________________________________________________________________
28681 [  6978] By: jhi                                   on 2000/09/01  16:00:42
28682         Log: Update to PodParser 1.18, from Brad Appleton.
28683      Branch: perl
28684            ! lib/Pod/Checker.pm t/pod/find.t
28685 ____________________________________________________________________________
28686 [  6977] By: jhi                                   on 2000/09/01  14:48:58
28687         Log: Subject: Nit in Configure (bleadperl@6961)
28688              From: Lupe Christoph <lupe@lupe-christoph.de>
28689              Date: Fri, 1 Sep 2000 16:34:29 +0200
28690              Message-ID: <20000901163429.K13547@alanya.lupe-christoph.de>
28691      Branch: metaconfig
28692            ! U/compline/ccflags.U
28693      Branch: perl
28694            ! Configure config_h.SH
28695 ____________________________________________________________________________
28696 [  6976] By: jhi                                   on 2000/09/01  14:39:52
28697         Log: Update Changes.
28698      Branch: perl
28699            ! Changes patchlevel.h
28700 ____________________________________________________________________________
28701 [  6975] By: jhi                                   on 2000/09/01  14:37:36
28702         Log: microperl config update.
28703      Branch: perl
28704            ! uconfig.h uconfig.sh
28705 ____________________________________________________________________________
28706 [  6974] By: jhi                                   on 2000/09/01  14:36:53
28707         Log: Document known deficiencies.
28708      Branch: perl
28709            ! pod/perldelta.pod
28710 ____________________________________________________________________________
28711 [  6973] By: jhi                                   on 2000/09/01  14:10:20
28712         Log: Mention warnings fixes and updates.
28713      Branch: perl
28714            ! pod/perldelta.pod
28715 ____________________________________________________________________________
28716 [  6972] By: jhi                                   on 2000/09/01  14:01:52
28717         Log: Drop unused argument.
28718              
28719              Subject: Re: [ID 20000831.034] overload::constant and number of arguments. 
28720              From: Spider Boardman <spider@web.zk3.dec.com>
28721              Date: Thu, 31 Aug 2000 16:10:15 -0400
28722              Message-Id: <200008312010.QAA20392@leggy.zk3.dec.com>
28723      Branch: perl
28724            ! toke.c
28725 ____________________________________________________________________________
28726 [  6971] By: jhi                                   on 2000/09/01  13:59:24
28727         Log: Add the overload warnings to perldiag.
28728      Branch: perl
28729            ! lib/overload.pm pod/perldiag.pod
28730 ____________________________________________________________________________
28731 [  6970] By: jhi                                   on 2000/09/01  13:55:10
28732         Log: Subject: RE: [PATCH lib/overload.pm] Sanaty checking of arguments to overload::constant
28733              From: "Paul Marquess" <paul_marquess@yahoo.co.uk>
28734              Date: Fri, 1 Sep 2000 13:43:15 +0100 
28735              Message-ID: <001001c01412$32c7dde0$a20a140a@bfs.phone.com>                
28736      Branch: perl
28737            ! lib/overload.pm t/pragma/overload.t
28738 ____________________________________________________________________________
28739 [  6969] By: jhi                                   on 2000/09/01  13:52:27
28740         Log: Subject: [PATCH lib/overload.pm] Sanaty checking of arguments to overload::constant
28741              From: <abigail@foad.org>
28742              Date: Fri, 1 Sep 2000 05:46:54 -0400
28743              Message-ID: <20000901094654.6476.qmail@foad.org>
28744      Branch: perl
28745            ! lib/overload.pm
28746 ____________________________________________________________________________
28747 [  6968] By: jhi                                   on 2000/09/01  13:50:05
28748         Log: Subject: [PATCH@6961] Fix misleading example in perlretut.pod
28749              From: Daniel Chetlin <daniel@chetlin.com>
28750              Date: Fri, 1 Sep 2000 02:10:55 -0700
28751              Message-ID: <20000901021055.C3400@ilmd.chetlin.org>
28752      Branch: perl
28753            ! pod/perlretut.pod
28754 ____________________________________________________________________________
28755 [  6967] By: jhi                                   on 2000/09/01  13:47:54
28756         Log: Part of the solution.
28757              
28758              Subject: Re: [ID 20000807.004] [PATCH] conditional breakpoints leak memory
28759              From: Mike Guy <mjtg@cam.ac.uk>
28760              Date: Fri, 01 Sep 2000 14:16:01 +0100
28761              Message-Id: <E13Uqfp-0006dN-00@draco.cus.cam.ac.uk>
28762      Branch: perl
28763            ! gv.c mg.c
28764 ____________________________________________________________________________
28765 [  6966] By: jhi                                   on 2000/09/01  13:46:17
28766         Log: Subject: CPAN.pm beta 1.57_57 for the core
28767              From: andreas.koenig@anima.de (Andreas J. Koenig)
28768              Date: 01 Sep 2000 15:16:31 +0200
28769              Message-ID: <m3r974z1zk.fsf@ak-71.mind.de>
28770      Branch: perl
28771            ! lib/CPAN.pm lib/CPAN/FirstTime.pm
28772 ____________________________________________________________________________
28773 [  6965] By: jhi                                   on 2000/09/01  13:43:18
28774         Log: Subject: [PATCH perl@6962] 2 more vms.c fix-ups and status
28775              From: "Craig A. Berry" <craig.berry@psinetcs.com>
28776              Date: Fri, 01 Sep 2000 01:47:22 -0500
28777              Message-Id: <4.3.2.7.2.20000901011206.01ca2e88@exchi01>
28778      Branch: perl
28779            ! pod/perldelta.pod vms/vms.c
28780 ____________________________________________________________________________
28781 [  6964] By: jhi                                   on 2000/09/01  13:35:35
28782         Log: File::Temp patches from Andreas König,
28783              
28784              Subject: Re: [ID 20000831.046] OK: perl v5.7.0 +DEVEL6961 on sun4-solaris 2.8  (UNINSTALLED)
28785              From: andreas.koenig@anima.de (Andreas J. Koenig)
28786              Date: 01 Sep 2000 10:07:20 +0200
28787              Message-ID: <m3lmxc1qo7.fsf@ak-71.mind.de>
28788              
28789              Subject: Re: Almost OK: perl v5.7.0 +DEVEL6937 on PA-RISC2.0 11.00 (INSTALLED)
28790              From: andreas.koenig@anima.de (Andreas J. Koenig)
28791              Date: 31 Aug 2000 23:26:08 +0200
28792              Message-ID: <m3bsy92kcv.fsf@ak-71.mind.de>
28793      Branch: perl
28794            ! lib/File/Temp.pm t/lib/ftmp-security.t
28795 ____________________________________________________________________________
28796 [  6963] By: jhi                                   on 2000/09/01  02:22:24
28797         Log: Retract the mergesort code, way too incompatible licensing
28798              and copyrights.
28799      Branch: perl
28800            ! pod/perldelta.pod pp_ctl.c
28801 ____________________________________________________________________________
28802 [  6962] By: jhi                                   on 2000/08/31  23:27:32
28803         Log: Update Changes.
28804      Branch: perl
28805            ! Changes patchlevel.h
28806 ____________________________________________________________________________
28807 [  6961] By: jhi                                   on 2000/08/31  23:20:04
28808         Log: Small tweaks all over.
28809      Branch: metaconfig
28810            ! U/compline/d_gconvert.U
28811      Branch: perl
28812            ! AUTHORS Configure config_h.SH pp_ctl.c
28813 ____________________________________________________________________________
28814 [  6960] By: jhi                                   on 2000/08/31  22:39:36
28815         Log: Further rewording.
28816      Branch: perl
28817            ! pp_ctl.c
28818 ____________________________________________________________________________
28819 [  6959] By: jhi                                   on 2000/08/31  21:26:44
28820         Log: More address tweaking.
28821      Branch: perl
28822            ! AUTHORS Changes
28823 ____________________________________________________________________________
28824 [  6958] By: jhi                                   on 2000/08/31  20:47:25
28825         Log: AUTHORS tweaks, from Peter Prymmer.
28826              
28827              Subject: [PATCH: 6948] mvs doesn't exist (not any more)
28828              From: Peter Prymmer <pvhp@forte.com>
28829              Date: Thu, 31 Aug 2000 12:56:32 -0700 (PDT) 
28830              Message-ID: <Pine.OSF.4.10.10008311248410.91659-100000@aspara.forte.com>
28831      Branch: perl
28832            ! AUTHORS MAINTAIN
28833 ____________________________________________________________________________
28834 [  6957] By: jhi                                   on 2000/08/31  20:34:43
28835         Log: perldelta tweaks.
28836      Branch: perl
28837            ! pod/perldelta.pod
28838 ____________________________________________________________________________
28839 [  6956] By: jhi                                   on 2000/08/31  19:11:06
28840         Log: Regen perltoc.
28841      Branch: perl
28842            ! pod/perltoc.pod
28843 ____________________________________________________________________________
28844 [  6955] By: jhi                                   on 2000/08/31  19:06:30
28845         Log: Clarify the mergesort situation.
28846      Branch: perl
28847            ! pp_ctl.c
28848 ____________________________________________________________________________
28849 [  6954] By: jhi                                   on 2000/08/31  18:24:17
28850         Log: Move the Solaris 7 scan to use64bitall, make the
28851              failure to find 64-bot sparc libc to mention the
28852              possibility of being in an intel, from Lupe and Alan.
28853      Branch: perl
28854            ! hints/solaris_2.sh
28855 ____________________________________________________________________________
28856 [  6953] By: jhi                                   on 2000/08/31  18:09:20
28857         Log: Forget about NV_MAX (#6951).  Various floating point tweaks,
28858              ideas from Eric Fifer, Yitzchak, Alan, and Spider.
28859      Branch: metaconfig
28860            ! U/compline/d_gconvert.U U/threads/archname.U
28861      Branch: metaconfig/U/perl
28862            ! perlxv.U
28863      Branch: perl
28864            ! Configure config_h.SH sv.c
28865 ____________________________________________________________________________
28866 [  6952] By: jhi                                   on 2000/08/31  17:42:24
28867         Log: :: not allowed in pathnames, change to .
28868              
28869              Subject: [PATCH perl@6938] cygwin port
28870              From: "Fifer, Eric" <EFifer@sanwaint.com>
28871              Date: Thu, 31 Aug 2000 16:32:59 +0100
28872              Message-ID: <779F20BCCE5AD31186A50008C75D997917179A@silldn_mail1.sanwaint.com>
28873      Branch: metaconfig/U/perl
28874            ! perlxv.U
28875 ____________________________________________________________________________
28876 [  6951] By: jhi                                   on 2000/08/31  17:02:05
28877         Log: Try to deduce NV_MAX.  Really should be Configure fodder.
28878      Branch: perl
28879            ! perl.h
28880 ____________________________________________________________________________
28881 [  6950] By: jhi                                   on 2000/08/31  16:26:08
28882         Log: More author updates.
28883              
28884              Subject: Re: [PATCH] Mark-Jason Dominus Does Exist
28885              From: Simon Cozens <simon@cozens.net>
28886              Date: Thu, 31 Aug 2000 17:13:32 +0100
28887              Message-ID: <20000831171332.A22498@deep-dark-truthful-mirror.perlhacker.org>
28888      Branch: perl
28889            ! AUTHORS
28890 ____________________________________________________________________________
28891 [  6949] By: jhi                                   on 2000/08/31  16:04:49
28892         Log: POSIX doesn't report long double values under -Duselongdouble
28893              when the long doubles are "real" (bigger than doubles).
28894              
28895              Subject: [ID 20000831.014] Not OK: perl v5.7.0 +DEVEL6919 on alpha-dec_osf-ld 5.1
28896              From: Spider Boardman <spider@peano.zk3.dec.com>
28897              Date: Thu, 31 Aug 2000 11:48:48 -0400 (EDT)
28898              Message-Id: <200008311548.LAA0000161952@peano.zk3.dec.com>
28899      Branch: perl
28900            ! ext/POSIX/POSIX.xs
28901 ____________________________________________________________________________
28902 [  6948] By: jhi                                   on 2000/08/31  15:25:10
28903         Log: Update Changes.
28904      Branch: perl
28905            ! Changes patchlevel.h
28906 ____________________________________________________________________________
28907 [  6947] By: jhi                                   on 2000/08/31  15:22:29
28908         Log: Document UNTIE in a very minimalistic way.
28909      Branch: perl
28910            ! pod/perlfunc.pod pod/perltie.pod
28911 ____________________________________________________________________________
28912 [  6946] By: jhi                                   on 2000/08/31  15:15:23
28913         Log: Document known failures.
28914      Branch: perl
28915            ! pod/perldelta.pod
28916 ____________________________________________________________________________
28917 [  6945] By: jhi                                   on 2000/08/31  15:07:00
28918         Log: Don't attach -ld to the archname if pointless.
28919      Branch: metaconfig
28920            ! U/threads/archname.U
28921      Branch: perl
28922            ! Configure config_h.SH
28923 ____________________________________________________________________________
28924 [  6944] By: jhi                                   on 2000/08/31  14:37:42
28925         Log: Wrap the test in eval.
28926              
28927              Subject: Re: [ID 20000831.009] Not OK: perl v5.7.0 +DEVEL6932 on sun4-solaris2.8 (UNINSTALLED)
28928              From: Tim Jenness <timj@jach.hawaii.edu>
28929              Date: Thu, 31 Aug 2000 03:39:33 -1000 (HST)
28930              Message-ID: <Pine.LNX.4.21.0008310311190.7444-100000@lapaki.jach.hawaii.edu>
28931      Branch: perl
28932            ! t/lib/ftmp-security.t
28933 ____________________________________________________________________________
28934 [  6943] By: jhi                                   on 2000/08/31  14:30:57
28935         Log: Make -Dusemorebits find long doubles in Solaris.
28936      Branch: perl
28937            ! hints/solaris_2.sh
28938 ____________________________________________________________________________
28939 [  6942] By: jhi                                   on 2000/08/31  13:48:45
28940         Log: Clarify the third case of ftmp-security warnings.
28941      Branch: perl
28942            ! INSTALL
28943 ____________________________________________________________________________
28944 [  6941] By: jhi                                   on 2000/08/31  13:40:31
28945         Log: Subject: [PATCH] Re: [ID 20000830.048] Not OK: perl v5.7.0 +DEVEL6938 on i686-linux 2.2.13
28946              From: <abigail@foad.org>
28947              Date: Thu, 31 Aug 2000 01:35:05 -0400
28948              Message-ID: <20000831053505.32120.qmail@foad.org>
28949      Branch: perl
28950            ! pod/perldelta.pod
28951 ____________________________________________________________________________
28952 [  6940] By: jhi                                   on 2000/08/31  13:38:48
28953         Log: Issue useful diagnostic on unknown pod commands.
28954              
28955              Subject: [PATCH lib/Pod/Man.pm] Re: [ID 20000830.048]
28956              From: <abigail@foad.org>
28957              Date: Thu, 31 Aug 2000 03:41:18 -0400
28958              Message-ID: <20000831074118.24880.qmail@foad.org>
28959      Branch: perl
28960            ! lib/Pod/Man.pm
28961 ____________________________________________________________________________
28962 [  6939] By: jhi                                   on 2000/08/31  13:34:33
28963         Log: Reveal Borland's isnan.
28964              
28965              Subject: build with BC++ tweak
28966              From: "Konovalov, Vadim" <vkonovalov@lucent.com>
28967              Date: Thu, 31 Aug 2000 13:09:37 +0400
28968              Message-ID: <402099F49BEED211999700805FC7359F6FACA6@ru0028exch01.spb.lucent.com>
28969      Branch: perl
28970            ! win32/win32.h
28971 ____________________________________________________________________________
28972 [  6938] By: jhi                                   on 2000/08/31  05:01:20
28973         Log: Update Changes.
28974      Branch: perl
28975            ! Changes patchlevel.h
28976 ____________________________________________________________________________
28977 [  6937] By: jhi                                   on 2000/08/31  04:26:23
28978         Log: sscanf() may be the only way to read long doubles from strings.
28979      Branch: metaconfig/U/perl
28980            ! longdblfio.U
28981      Branch: perl
28982            ! Configure config_h.SH perl.h util.c
28983 ____________________________________________________________________________
28984 [  6936] By: jhi                                   on 2000/08/31  04:18:19
28985         Log: The #6929 was too skimpy.
28986      Branch: perl
28987            ! sv.c
28988 ____________________________________________________________________________
28989 [  6935] By: jhi                                   on 2000/08/31  02:47:07
28990         Log: Subject: Re: typos in pods
28991              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
28992              Date: Wed, 30 Aug 2000 19:25:34 -0700
28993              Message-ID: <eIcr5gzkg25X092yn@efn.org>
28994      Branch: perl
28995            ! lib/CPAN.pm lib/Pod/Checker.pm pod/perlmodlib.PL
28996 ____________________________________________________________________________
28997 [  6934] By: jhi                                   on 2000/08/31  02:42:55
28998         Log: Missed one Unicode file.
28999      Branch: perl
29000            + lib/unicode/UCDFF301.html
29001 ____________________________________________________________________________
29002 [  6933] By: jhi                                   on 2000/08/30  23:42:27
29003         Log: Update Changes.
29004      Branch: perl
29005            ! Changes patchlevel.h
29006 ____________________________________________________________________________
29007 [  6932] By: jhi                                   on 2000/08/30  23:40:07
29008         Log: Mention UNTIE in perldelta.  Still needs documenting
29009              in perltie et alia.
29010      Branch: perl
29011            ! pod/perldelta.pod
29012 ____________________________________________________________________________
29013 [  6931] By: jhi                                   on 2000/08/30  23:36:02
29014         Log: Subject: [PATCH] Don't use big-Oh when talking about lower bounds.
29015              From: <abigail@foad.org>
29016              Date: Wed, 30 Aug 2000 19:28:07 -0400
29017              Message-ID: <20000830232807.305.qmail@foad.org>
29018      Branch: perl
29019            ! pod/perldelta.pod
29020 ____________________________________________________________________________
29021 [  6930] By: jhi                                   on 2000/08/30  23:32:40
29022         Log: Update to Unicode 3.0.1.
29023      Branch: perl
29024            + lib/unicode/BidiMirr.txt lib/unicode/CaseFold.txt
29025            + lib/unicode/PropList.txt lib/unicode/README.perl
29026            + lib/unicode/UCD301.html lib/unicode/Unicode.301
29027            - lib/unicode/Props.txt lib/unicode/UCD300.html
29028            - lib/unicode/Unicode.300 lib/unicode/Unicode3.html
29029            ! (edit 257 files)
29030 ____________________________________________________________________________
29031 [  6929] By: jhi                                   on 2000/08/30  22:38:18
29032         Log: Heap decorruption.
29033              
29034              Subject: [PATCH] Fix for miniperl coredump on Solaris with -Duselongdouble
29035              From: Alan Burlison <Alan.Burlison@uk.sun.com>
29036              Date: Wed, 30 Aug 2000 22:39:52 +0100
29037              Message-ID: <39AD7F28.A06533CF@uk.sun.com>
29038      Branch: perl
29039            ! sv.c
29040 ____________________________________________________________________________
29041 [  6928] By: jhi                                   on 2000/08/30  22:29:34
29042         Log: Retract the dummy test, skip the security tests (instead of failing),
29043              explain what the warnings mean.
29044      Branch: perl
29045            ! INSTALL lib/File/Temp.pm t/lib/ftmp-security.t
29046 ____________________________________________________________________________
29047 [  6927] By: jhi                                   on 2000/08/30  22:14:13
29048         Log: Change the internal implementation of sort() to be mergesort
29049              instead of quicksort, from John Linderman <jpl@research.att.com>.
29050              Gives us better worst case, better average case, and stability.
29051              What's there not to like?  (Small fixes for threaded builds
29052              were required).
29053      Branch: perl
29054            ! pod/perldelta.pod pp_ctl.c t/op/runlevel.t
29055 ____________________________________________________________________________
29056 [  6926] By: jhi                                   on 2000/08/30  20:55:20
29057         Log: A better fix for the Socket building problem from Craig Berry.
29058      Branch: perl
29059            ! vms/vms.c
29060 ____________________________________________________________________________
29061 [  6925] By: jhi                                   on 2000/08/30  20:20:25
29062         Log: Subject: [PATCH] Re: UNTIE method 
29063              From: Nick Ing-Simmons <nik@tiuk.ti.com>
29064              Date: Wed, 30 Aug 2000 18:26:55 +0100 (BST)
29065              Message-Id: <200008301726.SAA01114@mikado.tiuk.ti.com>
29066      Branch: perl
29067            ! pp_sys.c t/op/tie.t
29068 ____________________________________________________________________________
29069 [  6924] By: jhi                                   on 2000/08/30  20:17:11
29070         Log: Subject: Re: not OK, 6919 on Alpha VMS V 7.1 w/ DECC 6.0-001
29071              From: "Craig A. Berry" <craig.berry@psinetcs.com>
29072              Date: Wed, 30 Aug 2000 15:03:14 -0500
29073              Message-Id: <4.3.2.7.2.20000830144622.028fe7a8@exchi01>
29074      Branch: perl
29075            ! vms/vms.c
29076 ____________________________________________________________________________
29077 [  6923] By: jhi                                   on 2000/08/30  20:15:18
29078         Log: Subject: [PATCH perl@6889] fix Storable on VMS by fixing my_fwrite()
29079              From: "Craig A. Berry" <craig.berry@psinetcs.com>
29080              Date: Wed, 30 Aug 2000 13:30:36 -0500
29081              Message-Id: <4.3.2.7.2.20000830130617.02b8b968@exchi01>
29082      Branch: perl
29083            ! vms/vms.c
29084 ____________________________________________________________________________
29085 [  6922] By: jhi                                   on 2000/08/30  19:54:43
29086         Log: Better options for rsync.
29087      Branch: perl
29088            ! pod/perlhack.pod
29089 ____________________________________________________________________________
29090 [  6921] By: jhi                                   on 2000/08/30  19:40:16
29091         Log: Subject: [ID 20000830.036] [DOC] chom?p %hash not documented
29092              From: Rick Delaney <rick@consumercontact.com>
29093              Date: Wed, 30 Aug 2000 15:36:55 -0400 (EDT)
29094              Message-Id: <Pine.UW2.4.10.10008301535210.1949-100000@consumer>
29095      Branch: perl
29096            ! pod/perlfunc.pod
29097 ____________________________________________________________________________
29098 [  6920] By: jhi                                   on 2000/08/30  19:36:40
29099         Log: Subject: [PATCH 6889] add a few ldbl formats to configure.com
29100              From: Peter Prymmer <pvhp@forte.com>
29101              Date: Tue, 29 Aug 2000 17:36:00 -0700 (PDT)
29102              Message-ID: <Pine.OSF.4.10.10008291720260.502507-100000@aspara.forte.com>
29103      Branch: perl
29104            ! configure.com
29105 ____________________________________________________________________________
29106 [  6919] By: jhi                                   on 2000/08/30  14:52:02
29107         Log: Update Changes.
29108      Branch: perl
29109            ! Changes patchlevel.h
29110 ____________________________________________________________________________
29111 [  6918] By: jhi                                   on 2000/08/30  14:48:34
29112         Log: NVs not necessarily doubles, as pointed out by Yitzchak.
29113      Branch: perl
29114            ! lib/ExtUtils/typemap
29115 ____________________________________________________________________________
29116 [  6917] By: jhi                                   on 2000/08/30  14:46:34
29117         Log: Subject: typos in pods
29118              From: Nicholas Clark <nick@ccl4.org>
29119              Date: Wed, 30 Aug 2000 01:12:50 +0100
29120              Message-ID: <20000830011249.A61388@plum.flirble.org>
29121      Branch: perl
29122            ! pod/perldbmfilter.pod pod/perldebtut.pod pod/perldebug.pod
29123            ! pod/perldiag.pod pod/perlebcdic.pod pod/perlfunc.pod
29124            ! pod/perlguts.pod pod/perlhack.pod pod/perlmodlib.pod
29125            ! pod/perlnewmod.pod pod/perlport.pod pod/perltoc.pod
29126 ____________________________________________________________________________
29127 [  6916] By: jhi                                   on 2000/08/30  14:19:09
29128         Log: Document Storable problems on Crays.  (Will have
29129              to document all the other Storable problems, too.)
29130      Branch: perl
29131            ! pod/perldelta.pod
29132 ____________________________________________________________________________
29133 [  6915] By: jhi                                   on 2000/08/30  14:06:02
29134         Log: Subject: [PATCH] fix misc cast warnings
29135              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
29136              Date: Tue, 29 Aug 2000 23:16:14 -0700
29137              Message-ID: <uaKr5gzkgGwQ092yn@efn.org>
29138      Branch: perl
29139            ! lib/ExtUtils/typemap os2/OS2/ExtAttr/ExtAttr.xs
29140            ! os2/OS2/ExtAttr/typemap os2/OS2/REXX/REXX.xs os2/os2.c
29141            ! os2/os2ish.h
29142 ____________________________________________________________________________
29143 [  6914] By: jhi                                   on 2000/08/30  14:03:45
29144         Log: Timestamp mismatch again.  Need to fix this dependence on
29145              config_h.SH timestamp, since it's the contents of config_h.SH
29146              that matter.
29147      Branch: perl
29148            ! uconfig.h uconfig.sh
29149 ____________________________________________________________________________
29150 [  6913] By: jhi                                   on 2000/08/30  13:54:06
29151         Log: Don't say "Perl 5.0 source kit".
29152      Branch: perl
29153            ! perl.c
29154 ____________________________________________________________________________
29155 [  6912] By: jhi                                   on 2000/08/30  13:51:24
29156         Log: Reset archname and archname64 always, forcing them be
29157              recomputed at each Configure run, make Configure and
29158              the hints files agree on the naming of largefiles variables.
29159      Branch: metaconfig
29160            ! U/threads/archname.U
29161      Branch: metaconfig/U/perl
29162            ! use64bits.U
29163      Branch: perl
29164            ! Configure config_h.SH configpm hints/aix.sh hints/hpux.sh
29165            ! hints/linux.sh hints/solaris_2.sh
29166 ____________________________________________________________________________
29167 [  6911] By: jhi                                   on 2000/08/30  13:30:13
29168         Log: Put back the slice accidentally removed by #6907.
29169      Branch: perl
29170            ! hints/solaris_2.sh
29171 ____________________________________________________________________________
29172 [  6910] By: jhi                                   on 2000/08/30  01:24:26
29173         Log: Be consistent: other Net::get* do export theirs.
29174              
29175              Subject: Re: Net::protoent does not export 'getproto'
29176              From: Yasushi Nakajima <sey@jkc.co.jp>
29177              Date: Wed, 30 Aug 2000 09:53:14 +0900
29178              Message-Id: <200008300051.DAA24700@taku.hut.fi>
29179      Branch: perl
29180            ! lib/Net/protoent.pm
29181 ____________________________________________________________________________
29182 [  6909] By: jhi                                   on 2000/08/30  01:17:25
29183         Log: Subject: Re: [ID 20000829.020] perl -e 'package; print __PACKAGE__' core dumps 
29184              From: Gurusamy Sarathy <gsar@ActiveState.com>
29185              Date: Tue, 29 Aug 2000 17:17:07 -0700
29186              Message-Id: <200008300017.RAA25382@smtp3.ActiveState.com>
29187      Branch: perl
29188            ! cop.h
29189 ____________________________________________________________________________
29190 [  6908] By: jhi                                   on 2000/08/30  00:58:05
29191         Log: Update Changes.
29192      Branch: perl
29193            ! Changes patchlevel.h
29194 ____________________________________________________________________________
29195 [  6907] By: jhi                                   on 2000/08/30  00:57:22
29196         Log: Introduce ccname to keep track of what compiler kind of we have.
29197      Branch: metaconfig/U/perl
29198            ! Checkcc.U gccvers.U
29199      Branch: perl
29200            ! Configure config_h.SH hints/solaris_2.sh
29201 ____________________________________________________________________________
29202 [  6906] By: jhi                                   on 2000/08/30  00:25:47
29203         Log: Put back the flags dump as reasoned in
29204              
29205              Subject: Re: [PATCH] Glob dumping
29206              From: Mike Guy <mjtg@cam.ac.uk> 
29207              Date: Tue, 29 Aug 2000 21:41:32 +0100
29208              Message-Id: <E13TsCK-0007iL-00@draco.cus.cam.ac.uk>
29209      Branch: perl
29210            ! dump.c t/lib/peek.t
29211 ____________________________________________________________________________
29212 [  6905] By: jhi                                   on 2000/08/30  00:16:17
29213         Log: Make the epsilon to be relative, not absolute.
29214              
29215              Subject: Re: [ID 20000829.039] Not OK: perl v5.7.0 +DEVEL6899 +[ID on alpha-dec_osf-ld 5.1 (UNINSTALLED)
29216              From: Spider Boardman <spider-perl@orb.nashua.nh.us>
29217              Date: Tue, 29 Aug 2000 19:58:56 -0400
29218              Message-Id: <200008292358.TAA31114@leggy.zk3.dec.com>
29219      Branch: perl
29220            ! t/lib/trig.t
29221 ____________________________________________________________________________
29222 [  6904] By: jhi                                   on 2000/08/30  00:13:09
29223         Log: From now on, Gisle is on my list of usual suspects :-)
29224              Retract #6902.
29225      Branch: perl
29226            ! ext/Opcode/Safe.pm
29227 ____________________________________________________________________________
29228 [  6903] By: jhi                                   on 2000/08/29  23:51:20
29229         Log: Subject: [PATCH perl@6889] Chuck Lane's OpenVMS piping improvements
29230              From: "Craig A. Berry" <craig.berry@psinetcs.com>
29231              Date: Tue, 29 Aug 2000 18:43:26 -0500
29232              Message-Id: <4.3.2.7.2.20000829180705.01b005b8@exchi01>
29233      Branch: perl
29234            + vms/vmspipe.com
29235            ! MANIFEST t/io/openpid.t vms/descrip_mms.template vms/test.com
29236            ! vms/vms.c
29237 ____________________________________________________________________________
29238 [  6902] By: jhi                                   on 2000/08/29  23:44:14
29239         Log: Retry what #6882 attempted.
29240              
29241              Subject: Re: [ID 20000829.004] Sharing leak root name into safe compartment
29242              From: Gisle Aas <gisle@ActiveState.com>
29243              Date: 30 Aug 2000 00:33:09 +0200
29244              Message-ID: <m3pumry9y2.fsf@eik.g.aas.no>
29245      Branch: perl
29246            ! ext/Opcode/Safe.pm
29247 ____________________________________________________________________________
29248 [  6901] By: jhi                                   on 2000/08/29  22:59:32
29249         Log: Subject: [PATCH 5.6.0] [ID 20000608.006] panic: magic_killbackrefs with blessed global weakrefs
29250              From: Hugo <hv@crypt.compulink.co.uk>
29251              Date: Mon, 12 Jun 2000 19:36:08 +0100
29252              Message-Id: <200006121836.TAA16977@crypt.compulink.co.uk>
29253      Branch: perl
29254            ! sv.c
29255 ____________________________________________________________________________
29256 [  6900] By: jhi                                   on 2000/08/29  22:58:35
29257         Log: Admit that we are leaking scalars.
29258              
29259              Subject: [ID 20000829.037] Not OK: perl v5.7.0 +DEVEL6899 on alpha-dec_osf 4.0f (UNINSTALLED)
29260              From: Spider Boardman <spider@leggy.zk3.dec.com>
29261              Date: Tue, 29 Aug 2000 18:48:29 -0400
29262              Message-Id: <200008292248.SAA31507@leggy.zk3.dec.com>
29263      Branch: perl
29264            ! t/pragma/warnings.t
29265 ____________________________________________________________________________
29266 [  6899] By: jhi                                   on 2000/08/29  20:53:13
29267         Log: Update Changes.
29268      Branch: perl
29269            ! Changes patchlevel.h
29270 ____________________________________________________________________________
29271 [  6898] By: jhi                                   on 2000/08/29  20:46:21
29272         Log: Undo namespace pollution of #6878.
29273              
29274              Subject: Re: Net::protoent does not export 'getproto'
29275              From: Mike Guy <mjtg@cam.ac.uk>
29276              Date: Tue, 29 Aug 2000 21:32:37 +0100
29277              Message-Id: <E13Ts3h-0007eN-00@draco.cus.cam.ac.uk>
29278      Branch: perl
29279            ! lib/Net/protoent.pm
29280 ____________________________________________________________________________
29281 [  6897] By: jhi                                   on 2000/08/29  20:44:29
29282         Log: Subject: [PATCH: 6889] updates to perlebcdic.pod
29283              From: Peter Prymmer <pvhp@forte.com>
29284              Date: Tue, 29 Aug 2000 13:32:41 -0700 (PDT)
29285              Message-ID: <Pine.OSF.4.10.10008291327500.502507-100000@aspara.forte.com>
29286      Branch: perl
29287            ! pod/perlebcdic.pod
29288 ____________________________________________________________________________
29289 [  6896] By: jhi                                   on 2000/08/29  20:40:57
29290         Log: There's no point repeating the 'revision' (5) of perl5.
29291      Branch: metaconfig/U/perl
29292            ! Devel.U patchlevel.U
29293      Branch: perl
29294            ! Configure config_h.SH
29295 ____________________________________________________________________________
29296 [  6895] By: jhi                                   on 2000/08/29  20:16:58
29297         Log: Regen Configure for #6894.
29298      Branch: metaconfig/U/perl
29299            ! perladmin.U
29300      Branch: perl
29301            ! Configure config_h.SH
29302 ____________________________________________________________________________
29303 [  6894] By: jhi                                   on 2000/08/29  19:59:52
29304         Log: Subject: [ID 20000829.023] [PATCH 6868] perlbug@perl.com --> perlbug@perl.org
29305              From: "Philip Newton" <Philip.Newton@gmx.net>
29306              Date: Tue, 29 Aug 2000 21:39:14 +0200
29307              Message-Id: <200008291938.VAA98259@smtp1.nikoma.de>
29308      Branch: perl
29309            ! Configure INSTALL README hints/README.hints hints/bsdos.sh
29310            ! hints/freebsd.sh pod/perl.pod pod/perl56delta.pod
29311            ! pod/perlfaq2.pod pod/perllocale.pod pod/perlxs.pod
29312            ! utils/perlbug.PL
29313 ____________________________________________________________________________
29314 [  6893] By: jhi                                   on 2000/08/29  19:55:30
29315         Log: Subject: [ID 20000829.022] [PATCH 6868] Minor nit in installhtml
29316              From: "Philip Newton" <Philip.Newton@gmx.net>
29317              Date: Tue, 29 Aug 2000 21:39:14 +0200
29318              Message-Id: <200008291938.VAA98255@smtp1.nikoma.de>
29319      Branch: perl
29320            ! installhtml
29321 ____________________________________________________________________________
29322 [  6892] By: jhi                                   on 2000/08/29  19:53:59
29323         Log: Subject: [ID 20000829.026] [PATCH 6868] File::Temp
29324              From: "Philip Newton" <Philip.Newton@gmx.net>
29325              Date: Tue, 29 Aug 2000 21:48:18 +0200
29326              Message-Id: <200008291947.VAA13628@smtp2.nikoma.de>
29327      Branch: perl
29328            ! lib/File/Temp.pm
29329 ____________________________________________________________________________
29330 [  6891] By: jhi                                   on 2000/08/29  18:30:03
29331         Log: Nail the ID 20000828.023.
29332      Branch: perl
29333            ! ext/Storable/Storable.xs
29334 ____________________________________________________________________________
29335 [  6890] By: jhi                                   on 2000/08/29  16:50:17
29336         Log: Under usethreads the dumped variable is IN_PAD.
29337              
29338              Subject: Re: [PATCH] Glob dumping
29339              From: Gisle Aas <gisle@ActiveState.com>
29340              Date: 29 Aug 2000 18:45:05 +0200
29341              Message-ID: <m37l9010fi.fsf@eik.g.aas.no>
29342      Branch: perl
29343            ! t/lib/peek.t
29344 ____________________________________________________________________________
29345 [  6889] By: jhi                                   on 2000/08/29  15:17:37
29346         Log: Update Changes.
29347      Branch: perl
29348            ! Changes patchlevel.h
29349 ____________________________________________________________________________
29350 [  6888] By: jhi                                   on 2000/08/29  14:49:59
29351         Log: Retract #6882, broke the safe tests.
29352      Branch: perl
29353            ! ext/Opcode/Safe.pm
29354 ____________________________________________________________________________
29355 [  6887] By: jhi                                   on 2000/08/29  14:47:06
29356         Log: Subject: Re: [ID 20000525.003] perldoc fails when Makefile.PL is in cwd
29357              From: Gisle Aas <gisle@ActiveState.com> 
29358              Date: 09 Jun 2000 20:00:11 +0200
29359              Message-ID: <m3n1kud9as.fsf@eik.g.aas.no>
29360      Branch: perl
29361            ! utils/perldoc.PL
29362 ____________________________________________________________________________
29363 [  6886] By: jhi                                   on 2000/08/29  14:42:45
29364         Log: The #6881 removed one dump line.
29365      Branch: perl
29366            ! t/lib/peek.t
29367 ____________________________________________________________________________
29368 [  6885] By: jhi                                   on 2000/08/29  14:30:47
29369         Log: Don't forget to tidy up.
29370      Branch: perl
29371            ! t/lib/ftmp-security.t
29372 ____________________________________________________________________________
29373 [  6884] By: jhi                                   on 2000/08/29  14:25:17
29374         Log: Disabling the one test is a bit tricky.
29375      Branch: perl
29376            ! t/lib/ftmp-security.t
29377 ____________________________________________________________________________
29378 [  6883] By: jhi                                   on 2000/08/29  14:16:25
29379         Log: Disable one of the tests for now.
29380      Branch: perl
29381            ! t/lib/ftmp-security.t
29382 ____________________________________________________________________________
29383 [  6882] By: jhi                                   on 2000/08/29  14:05:50
29384         Log: Subject: [ID 20000829.004] Sharing leak root name into safe compartment
29385              From: gisle@aas.no
29386              Date: 29 Aug 2000 10:35:06 -0000
29387              Message-Id: <20000829103506.21538.qmail@eik.g.aas.no>
29388      Branch: perl
29389            ! ext/Opcode/Safe.pm
29390 ____________________________________________________________________________
29391 [  6881] By: jhi                                   on 2000/08/29  14:03:51
29392         Log: Subject: [PATCH] Glob dumping
29393              From: Gisle Aas <gisle@ActiveState.com>
29394              Date: 29 Aug 2000 07:59:42 -0000
29395              Message-ID: <20000829075942.20923.qmail@eik.g.aas.no>
29396      Branch: perl
29397            ! dump.c
29398 ____________________________________________________________________________
29399 [  6880] By: jhi                                   on 2000/08/29  14:02:01
29400         Log: Subject: [PATCH] Warnings in B::Deparse
29401              From: <abigail@foad.org>
29402              Date: Tue, 29 Aug 2000 00:00:01 -0400
29403              Message-ID: <20000829040001.2999.qmail@foad.org>
29404      Branch: perl
29405            ! ext/B/B/Deparse.pm
29406 ____________________________________________________________________________
29407 [  6879] By: jhi                                   on 2000/08/29  13:57:26
29408         Log: Missed a change in #6869.
29409      Branch: perl
29410            ! mg.c
29411 ____________________________________________________________________________
29412 [  6878] By: jhi                                   on 2000/08/29  13:45:04
29413         Log: Subject: Net::protoent does not export 'getproto'
29414              From: Yasushi Nakajima <sey@jkc.co.jp>
29415              Date: Tue, 29 Aug 2000 17:28:57 +0900                 
29416      Branch: perl
29417            ! lib/Net/protoent.pm
29418 ____________________________________________________________________________
29419 [  6877] By: jhi                                   on 2000/08/29  13:39:19
29420         Log: Patches all over for people and the files they (hopefully) care about.
29421      Branch: perl
29422            ! AUTHORS Changes MAINTAIN
29423 ____________________________________________________________________________
29424 [  6876] By: jhi                                   on 2000/08/29  12:53:54
29425         Log: Fix for thinko in #6848.
29426              
29427              Subject: Compiler error in ext/Thread/Thread.c (bleadperl@6866)
29428              From: Lupe Christoph <lupe@lupe-christoph.de>
29429              Date: Tue, 29 Aug 2000 09:04:08 +0200
29430              Message-ID: <20000829090408.V4437@alanya.lupe-christoph.de>
29431      Branch: perl
29432            ! ext/Thread/Thread.xs
29433 ____________________________________________________________________________
29434 [  6875] By: jhi                                   on 2000/08/29  12:50:14
29435         Log: Update to Getopt::Long 2.24, from Johan Vromans.
29436      Branch: perl
29437            ! lib/Getopt/Long.pm t/lib/gol-basic.t t/lib/gol-oo.t
29438 ____________________________________________________________________________
29439 [  6874] By: jhi                                   on 2000/08/29  02:09:53
29440         Log: Use minimal @INC in tests, most of the time just '../lib',
29441              so that we simply can't pick up stuff from other Perls than
29442              the one we are testing.  Pointed out by
29443              
29444              From: Mike Guy <mjtg@cam.ac.uk>
29445              Subject: Re: [PATCH: 6757] make new Storable tests forgiving of places where not built   
29446              Date: Fri, 25 Aug 2000 15:15:59 +0100
29447              Message-Id: <E13SKH1-00031D-00@virgo.cus.cam.ac.uk>
29448      Branch: perl
29449            ! (edit 185 files)
29450 ____________________________________________________________________________
29451 [  6873] By: jhi                                   on 2000/08/29  01:07:11
29452         Log: Subject: [PATCH] Re: files not cleaned even by veryclean
29453              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
29454              Date: Mon, 28 Aug 2000 17:45:52 -0700
29455              Message-ID: <Afwq5gzkg2UB092yn@efn.org>
29456      Branch: perl
29457            ! Makefile.SH hints/os2.sh
29458 ____________________________________________________________________________
29459 [  6872] By: jhi                                   on 2000/08/28  23:33:39
29460         Log: Subject: [PATCH bleedperl@6866] spellings
29461              From: marcel@codewerk.com (Marcel Grunauer)
29462              Date: Tue, 29 Aug 2000 01:19:59 +0200
29463              Message-Id: <200008282319.BAA29862@gandalf.local>
29464      Branch: perl
29465            ! README.os390 pod/perl5004delta.pod pod/perldebtut.pod
29466            ! pod/perlebcdic.pod pod/perlfunc.pod pod/perlguts.pod
29467            ! pod/perlipc.pod pod/perlthrtut.pod pod/perlutil.pod
29468 ____________________________________________________________________________
29469 [  6871] By: jhi                                   on 2000/08/28  23:22:09
29470         Log: Take out the SUIDMAIL thing, that will not be
29471              a problem in 5.7.*.
29472      Branch: perl
29473            ! patchlevel.h
29474 ____________________________________________________________________________
29475 [  6870] By: jhi                                   on 2000/08/28  23:19:30
29476         Log: -S is the silent flag, -s is the strip flag.
29477              
29478              Subject: [PATCH] Re: [PATCH] make no-install          
29479              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
29480              Date: Mon, 28 Aug 2000 15:12:55 -0700
29481              Message-ID: <nPuq5gzkg2FO092yn@efn.org> 
29482      Branch: perl
29483            ! Makefile.SH
29484 ____________________________________________________________________________
29485 [  6869] By: jhi                                   on 2000/08/28  23:12:05
29486         Log: Subject: [PATCH bleedperl@6856] warnings fixes
29487              From: "Paul Marquess" <paul_marquess@yahoo.co.uk>
29488              Date: Mon, 28 Aug 2000 23:55:06 +0100
29489              Message-ID: <000501c01143$0230af80$2014140a@bfs.phone.com>
29490      Branch: perl
29491            ! lib/warnings.pm pod/perllexwarn.pod t/pragma/warn/7fatal
29492            ! warnings.h warnings.pl
29493 ____________________________________________________________________________
29494 [  6868] By: jhi                                   on 2000/08/28  21:38:22
29495         Log: Potential cruft.
29496      Branch: perl
29497            ! Makefile.SH
29498 ____________________________________________________________________________
29499 [  6867] By: jhi                                   on 2000/08/28  21:35:36
29500         Log: Update Changes.
29501      Branch: perl
29502            ! Changes patchlevel.h
29503 ____________________________________________________________________________
29504 [  6866] By: jhi                                   on 2000/08/28  21:33:49
29505         Log: Subject: hv.h Doc Patch
29506              From: Fisher Mark <fisherm@tce.com>
29507              Date: Mon, 28 Aug 2000 16:24:59 -0500
29508              Message-ID: <B9B6874277EED211B1890008C707AF5302881C77@indyexch3.indy.tce.com>
29509      Branch: perl
29510            ! hv.h
29511 ____________________________________________________________________________
29512 [  6865] By: jhi                                   on 2000/08/28  21:02:15
29513         Log: Add -ld to archname on long tr...double platforms.
29514      Branch: metaconfig
29515            ! U/threads/archname.U
29516      Branch: perl
29517            ! Configure config_h.SH
29518 ____________________________________________________________________________
29519 [  6864] By: jhi                                   on 2000/08/28  20:38:59
29520         Log: An attempt to fix the problem reported in
29521              
29522              Subject: Building perl@6856 using gcc/AIX 4.3.3 
29523              From: Daniel Muino <dmuino@afip.gov.ar> 
29524              Date: Mon, 28 Aug 2000 15:50:01 -0300   
29525              Message-ID: <20000828155001.A14403@con2-dgi>
29526              
29527              I can't test this properly since the gcc installation I have
29528              access to seems to be botched (gcc is calling the AIX cpp,
29529              a losing proposition...)
29530      Branch: perl
29531            ! hints/aix.sh
29532 ____________________________________________________________________________
29533 [  6863] By: jhi                                   on 2000/08/28  18:57:52
29534         Log: Fix for ID 20000828.001, long doubles were not formatted
29535              correctly (showed up in $], which stopped installing perl).
29536      Branch: perl
29537            ! sv.c
29538 ____________________________________________________________________________
29539 [  6862] By: jhi                                   on 2000/08/28  18:07:15
29540         Log: Typo in #6858.
29541      Branch: perl
29542            ! lib/Cwd.pm
29543 ____________________________________________________________________________
29544 [  6861] By: jhi                                   on 2000/08/28  17:57:27
29545         Log: opmini.o may be left around if a build is interrupted.
29546      Branch: perl
29547            ! Makefile.SH
29548 ____________________________________________________________________________
29549 [  6860] By: jhi                                   on 2000/08/28  16:52:50
29550         Log: Subject: [PATCH@6855] _Minor_ change to overload.pm pod
29551              From: Daniel Chetlin <daniel@chetlin.com>
29552              Date: Mon, 28 Aug 2000 01:14:18 -0700
29553              Message-ID: <20000828011418.J769@ilmd.chetlin.org>
29554      Branch: perl
29555            ! lib/overload.pm
29556 ____________________________________________________________________________
29557 [  6859] By: jhi                                   on 2000/08/28  16:08:46
29558         Log: Subject: [ID 20000828.009] Not OK: perl v5.7.0 +SUIDMAIL +DEVEL6855 on i586-linux 2.2.12 (UNINSTALLED)
29559              From: Nicholas Clark <nick@ccl4.org>
29560              Date: Mon, 28 Aug 2000 16:03:27 +0100
29561              Message-Id: <20000828160327.C49785@plum.flirble.org>
29562      Branch: perl
29563            ! ext/ByteLoader/bytecode.h
29564 ____________________________________________________________________________
29565 [  6858] By: jhi                                   on 2000/08/28  16:02:10
29566         Log: Subject: [ID 20000828.006] dir name "0" not safe with Cwd.pm
29567              From: Wolfgang Laun <wolfgang.laun@alcatel.at>
29568              Date: Mon, 28 Aug 2000 13:08:30 +0200
29569              Message-Id: <200008281108.NAA00782@localhost.aut.alcatel.at>
29570      Branch: perl
29571            ! lib/Cwd.pm
29572 ____________________________________________________________________________
29573 [  6857] By: jhi                                   on 2000/08/28  15:42:47
29574         Log: display_format used as a class method without arguments was broken,
29575              reported in
29576              
29577              Subject: Math::Complex->display_format() sets style to 'Math::Complex'
29578              From: Yasushi Nakajima <sey@san.p.kyoto.jkc.co.jp>
29579              Date: Mon, 28 Aug 2000 16:38:08 +0900 (JST)
29580              Message-Id: <200008280738.QAA00215@san.p.kyoto.jkc.co.jp>
29581      Branch: perl
29582            ! lib/Math/Complex.pm t/lib/complex.t
29583 ____________________________________________________________________________
29584 [  6856] By: jhi                                   on 2000/08/27  22:09:48
29585         Log: Update Changes.
29586      Branch: perl
29587            ! Changes patchlevel.h
29588 ____________________________________________________________________________
29589 [  6855] By: jhi                                   on 2000/08/27  21:59:21
29590         Log: Retract #6853 (false alarm).
29591      Branch: perl
29592            ! lib/ExtUtils/xsubpp
29593 ____________________________________________________________________________
29594 [  6854] By: jhi                                   on 2000/08/27  21:37:44
29595         Log: Update Changes.
29596      Branch: perl
29597            ! Changes patchlevel.h
29598 ____________________________________________________________________________
29599 [  6853] By: jhi                                   on 2000/08/27  21:37:16
29600         Log: Subject: [PATCH perl@6850] workaround for xsubpp
29601              From: Hugo <hv@crypt.compulink.co.uk>
29602              Date: Sun, 27 Aug 2000 22:30:25 +0100
29603              Message-Id: <200008272130.WAA10083@crypt.compulink.co.uk>
29604      Branch: perl
29605            ! lib/ExtUtils/xsubpp
29606 ____________________________________________________________________________
29607 [  6852] By: jhi                                   on 2000/08/27  21:33:58
29608         Log: Big-endian 64-bit patch from Raphael Manfredi.
29609      Branch: perl
29610            ! ext/Storable/Storable.xs
29611 ____________________________________________________________________________
29612 [  6851] By: jhi                                   on 2000/08/27  21:22:21
29613         Log: More ruthless editing from Hugo van der Sanden.
29614      Branch: perl
29615            ! pod/perldelta.pod
29616 ____________________________________________________________________________
29617 [  6850] By: jhi                                   on 2000/08/27  16:11:46
29618         Log: Update Changes.
29619      Branch: perl
29620            ! Changes patchlevel.h
29621 ____________________________________________________________________________
29622 [  6849] By: jhi                                   on 2000/08/27  16:11:05
29623         Log: Provice virtual $Config{ccflags_nolargefiles} etc. 
29624      Branch: perl
29625            ! configpm pod/perldelta.pod
29626 ____________________________________________________________________________
29627 [  6848] By: jhi                                   on 2000/08/27  15:35:08
29628         Log: Use the actual thread type, not the pointer-to-struct.
29629      Branch: perl
29630            ! ext/Thread/Thread.xs
29631 ____________________________________________________________________________
29632 [  6847] By: jhi                                   on 2000/08/27  15:30:49
29633         Log: Test nit.
29634      Branch: perl
29635            ! t/pragma/warn/pp_sys
29636 ____________________________________________________________________________
29637 [  6846] By: jhi                                   on 2000/08/27  15:19:02
29638         Log: Passing -R in ldflags makes now it to appear in the default
29639              for lddlflags, just like with -L.
29640              
29641              Subject: Re: MM_Unix.pm LD_RUN_PATH niggles on Solaris
29642              From: Lupe Christoph <lupe@lupe-christoph.de>
29643              Date: Sun, 27 Aug 2000 10:28:21 +0200
29644              Message-ID: <20000827102821.B4437@alanya.lupe-christoph.de>
29645      Branch: metaconfig/U/perl
29646            ! dlsrc.U
29647      Branch: perl
29648            ! Configure
29649 ____________________________________________________________________________
29650 [  6845] By: jhi                                   on 2000/08/27  15:08:54
29651         Log: Subject: MM_Unix.pm LD_RUN_PATH niggles on Solaris
29652              From: Alan Burlison <Alan.Burlison@uk.sun.com>
29653              Date: Sat, 26 Aug 2000 22:23:27 +0100
29654              Message-ID: <39A8354F.E1E832C9@uk.sun.com>
29655      Branch: perl
29656            ! lib/ExtUtils/MM_Unix.pm
29657 ____________________________________________________________________________
29658 [  6844] By: jhi                                   on 2000/08/27  15:02:37
29659         Log: DJGPP update from Laszlo Molnar.
29660              
29661              Subject: [ID 20000826.014] Not OK: perl v5.7.0 +SUIDMAIL +DEVEL6788 on dos-djgpp djgpp (UNINSTALLED) [PATCH]
29662              From: ml1050 <ml1050@freemail.hu>
29663              Date: Sat, 26 Aug 2000 23:24:40 +0200
29664              Message-Id: <20000826232440.A439@freemail.hu>
29665      Branch: perl
29666            ! djgpp/config.over lib/File/Temp.pm pod/buildtoc.PL
29667            ! t/lib/ftmp-security.t t/lib/posix.t t/pragma/warn/pp_sys
29668 ____________________________________________________________________________
29669 [  6843] By: jhi                                   on 2000/08/27  14:53:58
29670         Log: Subject: installman buglet
29671              From: Lupe Christoph <lupe@lupe-christoph.de>
29672              Date: Sun, 27 Aug 2000 14:38:59 +0200
29673              Message-ID: <20000827143859.E4437@alanya.lupe-christoph.de>
29674      Branch: perl
29675            ! installman
29676 ____________________________________________________________________________
29677 [  6842] By: jhi                                   on 2000/08/27  14:52:08
29678         Log: Can't get the test to reliably work thanks to the
29679              inaccurateness of floating point.  "Resolves" bug ids
29680              20000826.003, 20000826.009, 20000826.010,
29681      Branch: perl
29682            ! t/lib/trig.t
29683 ____________________________________________________________________________
29684 [  6841] By: jhi                                   on 2000/08/26  15:53:58
29685         Log: Update Changes.
29686      Branch: perl
29687            ! Changes patchlevel.h
29688 ____________________________________________________________________________
29689 [  6840] By: jhi                                   on 2000/08/26  14:23:03
29690         Log: grep -e isn't portable.
29691              
29692              Subject: [ID 20000825.027] let me (perlbug@perl.com) know how I blew it
29693              From: chris@broadband.att.com
29694              Date: Sat, 26 Aug 2000 00:17:27 -0600 (MDT)
29695              Message-Id: <200008260617.AAA10219@lazlo.tci.com>
29696      Branch: perl
29697            ! hints/solaris_2.sh
29698 ____________________________________________________________________________
29699 [  6839] By: jhi                                   on 2000/08/26  14:12:23
29700         Log: no-install target a la make -n.
29701              
29702              Subject: [PATCH] make no-install (was Re: [PATCH] installation not quite silent yet.)
29703              From: <abigail@foad.org>
29704              Date: Sat, 26 Aug 2000 03:57:34 -0400
29705              Message-ID: <20000826075735.18912.qmail@foad.org>
29706      Branch: perl
29707            ! Makefile.SH installman installperl
29708 ____________________________________________________________________________
29709 [  6838] By: jhi                                   on 2000/08/26  14:06:33
29710         Log: Retract #6826 as the #6828 should be do the same
29711              in a More Correct Way.
29712      Branch: perl
29713            ! installperl
29714 ____________________________________________________________________________
29715 [  6837] By: jhi                                   on 2000/08/26  05:24:00
29716         Log: More casting.
29717      Branch: perl
29718            ! ext/Storable/Storable.xs
29719 ____________________________________________________________________________
29720 [  6836] By: jhi                                   on 2000/08/26  05:05:46
29721         Log: Nicer in decimal.
29722      Branch: perl
29723            ! ext/Storable/Storable.xs
29724 ____________________________________________________________________________
29725 [  6835] By: jhi                                   on 2000/08/26  05:03:50
29726         Log: There be no UVdf.
29727      Branch: perl
29728            ! ext/Storable/Storable.xs
29729 ____________________________________________________________________________
29730 [  6834] By: jhi                                   on 2000/08/26  05:00:18
29731         Log: Continue IVdfing and UVxfing.
29732      Branch: perl
29733            ! ext/Storable/Storable.xs
29734 ____________________________________________________________________________
29735 [  6833] By: jhi                                   on 2000/08/26  04:53:14
29736         Log: Use IVdf.
29737      Branch: perl
29738            ! ext/Storable/Storable.xs
29739 ____________________________________________________________________________
29740 [  6832] By: jhi                                   on 2000/08/26  04:40:41
29741         Log: Document PTR2XX and INT2PTR.
29742      Branch: perl
29743            ! pod/perlguts.pod
29744 ____________________________________________________________________________
29745 [  6831] By: jhi                                   on 2000/08/26  04:33:18
29746         Log: Use UVxf, PTR2UV, NVff.
29747      Branch: perl
29748            ! ext/Storable/Storable.xs
29749 ____________________________________________________________________________
29750 [  6830] By: jhi                                   on 2000/08/26  04:31:32
29751         Log: Update the test count.
29752      Branch: perl
29753            ! t/lib/trig.t
29754 ____________________________________________________________________________
29755 [  6829] By: jhi                                   on 2000/08/26  03:05:50
29756         Log: Subject: [PATCH] installation not quite silent yet.
29757              From: <abigail@foad.org>
29758              Date: Fri, 25 Aug 2000 20:07:53 -0400
29759              Message-ID: <20000826000753.7822.qmail@foad.org>
29760      Branch: perl
29761            ! installman installperl
29762 ____________________________________________________________________________
29763 [  6828] By: jhi                                   on 2000/08/26  03:05:14
29764         Log: Subject: Re: [ID 20000825.019] Not OK: perl v5.7.0 +SUIDMAIL +DEVEL6820 on alpha-dec_osf 5.1 (UNINSTALLED) 
29765              From: Spider Boardman <spider@web.zk3.dec.com>
29766              Date: Fri, 25 Aug 2000 19:12:40 -0400
29767              Message-Id: <200008252312.TAA17828@leggy.zk3.dec.com>
29768      Branch: perl
29769            ! gv.c
29770 ____________________________________________________________________________
29771 [  6827] By: jhi                                   on 2000/08/25  23:54:34
29772         Log: Support preserving extremely big/small angles.
29773      Branch: perl
29774            ! lib/Math/Trig.pm pod/perldelta.pod t/lib/trig.t
29775 ____________________________________________________________________________
29776 [  6826] By: jhi                                   on 2000/08/25  23:01:20
29777         Log: Patch installperl to be long double-aware.
29778              
29779              Subject: Re: [PATCH] [ID 20000825.019] Not OK: perl v5.7.0 +SUIDMAIL +DEVEL6820 on alpha-dec_osf 5.1 (UNINSTALLED) 
29780              From: Spider Boardman <spider@web.zk3.dec.com>
29781              Date: Fri, 25 Aug 2000 18:15:23 -0400
29782              Message-Id: <200008252215.SAA28740@leggy.zk3.dec.com>
29783      Branch: perl
29784            ! installperl
29785 ____________________________________________________________________________
29786 [  6825] By: jhi                                   on 2000/08/25  22:58:25
29787         Log: Remove duplicately applied patch shards.
29788              
29789              Subject: [ID 20000825.012] [PATCH@6822] t/lib/cgi-html.t produces ugly cruft during 'make test'
29790              From: Spider Boardman <spider@leggy.zk3.dec.com>
29791              Date: Fri, 25 Aug 2000 16:45:03 -0400
29792              Message-Id: <200008252045.QAA23518@leggy.zk3.dec.com>
29793      Branch: perl
29794            ! t/lib/cgi-html.t
29795 ____________________________________________________________________________
29796 [  6824] By: jhi                                   on 2000/08/25  22:57:00
29797         Log: Subject: [PATCH @6820] installman under -w and strict (was Re: [PATCH] More silencing of installman.)
29798              From: Daniel Chetlin <daniel@chetlin.com>
29799              Date: Fri, 25 Aug 2000 12:23:16 -0700
29800              Message-ID: <20000825122316.A10250@ilmd.chetlin.org>
29801              
29802              Subject: Re: [PATCH @6820] installman under -w and strict (was Re: [PATCH] More silencing of installman.)
29803              From: Daniel Chetlin <daniel@chetlin.com>
29804              Date: Fri, 25 Aug 2000 14:47:19 -0700
29805              Message-ID: <20000825144719.A20587@ilmd.chetlin.org>
29806      Branch: perl
29807            ! installman
29808 ____________________________________________________________________________
29809 [  6823] By: jhi                                   on 2000/08/25  22:44:17
29810         Log: Timestamp problem?
29811      Branch: perl
29812            ! uconfig.h uconfig.sh
29813 ____________________________________________________________________________
29814 [  6822] By: jhi                                   on 2000/08/25  19:01:06
29815         Log: One forgotten file from #6816.
29816      Branch: perl
29817            ! vos/config.h
29818 ____________________________________________________________________________
29819 [  6821] By: jhi                                   on 2000/08/25  18:56:39
29820         Log: Regen Changes.
29821      Branch: perl
29822            ! Changes patchlevel.h
29823 ____________________________________________________________________________
29824 [  6820] By: jhi                                   on 2000/08/25  18:52:35
29825         Log: Fix Changes ordering.
29826      Branch: perl
29827            ! Changes
29828 ____________________________________________________________________________
29829 [  6819] By: jhi                                   on 2000/08/25  18:50:25
29830         Log: Update Changes.
29831      Branch: perl
29832            ! Changes patchlevel.h
29833 ____________________________________________________________________________
29834 [  6818] By: jhi                                   on 2000/08/25  18:47:45
29835         Log: Tweak the sfio/useperlio logic, hopefully as wished in
29836              
29837              Subject: [ID 20000825.004] Not OK: perl v5.7.0 +SUIDMAIL +DEVEL6804 on i586-linux 2.2.12 (UNINSTALLED)
29838              From: Nicholas Clark <nick@babyhippo.co.uk>
29839              Date: Fri, 25 Aug 2000 12:01:45 +0100
29840              Message-Id: <E13SHF3-0005I9-00@fruitbat.babyhippo.co.uk>
29841      Branch: metaconfig/U/perl
29842            ! d_sfio.U
29843      Branch: perl
29844            ! Configure
29845 ____________________________________________________________________________
29846 [  6817] By: jhi                                   on 2000/08/25  18:32:51
29847         Log: Allow microperl to assume <math.h>, without it the math
29848              functions like floor() are assumed to return int, which makes
29849              for core dumps in machines where integer and floating register
29850              don't mix.
29851      Branch: perl
29852            ! uconfig.h uconfig.sh
29853 ____________________________________________________________________________
29854 [  6816] By: jhi                                   on 2000/08/25  18:27:17
29855         Log: AIX 4.3.3 has SOCKS in libc with a differently named init routine,
29856              the problem reported in
29857              
29858              Subject: [ID 20000825.007] Building stable 5.6.0 on AIX 4.3.3 using SOCKS
29859              From: danhale@us.ibm.com
29860              Date: Fri, 25 Aug 2000 10:58:06 -0400
29861              Message-Id: <85256946.005238A3.00@d54mta02.raleigh.ibm.com>
29862      Branch: metaconfig/U/perl
29863            + d_socks5_init.U
29864      Branch: perl
29865            ! Configure INSTALL config_h.SH configure.com epoc/config.sh
29866            ! perl.c uconfig.h uconfig.sh vos/config.def vos/config.h
29867            ! vos/config.pl vos/config_h.SH_orig win32/config.bc
29868            ! win32/config.gc win32/config.vc
29869 ____________________________________________________________________________
29870 [  6815] By: jhi                                   on 2000/08/25  17:43:31
29871         Log: A solution for the retrieve_fd autosplit warning,
29872              idea suggested by Mike Guy.
29873      Branch: perl
29874            ! ext/Storable/Storable.pm
29875 ____________________________________________________________________________
29876 [  6814] By: jhi                                   on 2000/08/25  17:16:03
29877         Log: Add install-silent target.
29878      Branch: perl
29879            ! Makefile.SH
29880 ____________________________________________________________________________
29881 [  6813] By: jhi                                   on 2000/08/25  17:14:23
29882         Log: Subject: Re: [PATCH] More silencing of installman.
29883              From: <abigail@foad.org>
29884              Date: Thu, 24 Aug 2000 19:27:03 -0400
29885              Message-ID: <20000824232703.7001.qmail@foad.org>
29886              
29887              Subject: Re: [PATCH] More silencing of installman.
29888              From: <abigail@foad.org>
29889              Date: Fri, 25 Aug 2000 03:00:58 -0400
29890              Message-ID: <20000825070058.10697.qmail@foad.org>
29891      Branch: perl
29892            ! installman
29893 ____________________________________________________________________________
29894 [  6812] By: jhi                                   on 2000/08/25  17:11:28
29895         Log: installperl --verbose and --silent.
29896              
29897              Subject: Re: [PATCH] More silencing of installman.
29898              From: <abigail@foad.org>
29899              Message-ID: <20000825064430.9719.qmail@foad.org>
29900              Date: Fri, 25 Aug 2000 02:44:30 -0400
29901      Branch: perl
29902            ! installperl
29903 ____________________________________________________________________________
29904 [  6811] By: jhi                                   on 2000/08/25  17:05:43
29905         Log: Subject: [ID 20000824.029] MakeMaker manifypods fails on DJGPP systems
29906              From: "Peter J. Farley III" <pjfarley@banet.net>
29907              Date: Thu, 24 Aug 2000 21:58:03 -0400
29908              Message-Id: <4.3.1.0.20000824215500.00ac3df0@pop5.banet.net>
29909              
29910              (applied slightly modified)
29911      Branch: perl
29912            ! lib/ExtUtils/MM_Unix.pm
29913 ____________________________________________________________________________
29914 [  6810] By: jhi                                   on 2000/08/25  17:01:18
29915         Log: Missing parts of 
29916              
29917              Subject: [PATCH: 6789] some endl fixes for VMS wackiness
29918              From: Peter Prymmer <pvhp@forte.com>
29919              Date: Wed, 23 Aug 2000 13:58:31 -0700 (PDT)
29920              Message-ID: <Pine.OSF.4.10.10008231351000.126820-100000@aspara.forte.com>
29921      Branch: perl
29922            ! t/lib/cgi-html.t
29923 ____________________________________________________________________________
29924 [  6809] By: jhi                                   on 2000/08/25  16:46:32
29925         Log: Subject: [PATCH perl@6805, 5.6.0, 5.005_03] prevent rare Perl hang on VMS
29926              From: "Craig A. Berry" <craig.berry@psinetcs.com>
29927              Date: Thu, 24 Aug 2000 19:13:11 -0500
29928              Message-Id: <4.3.2.7.2.20000824174417.02479ef8@exchi01>
29929      Branch: perl
29930            ! vms/vms.c
29931 ____________________________________________________________________________
29932 [  6808] By: jhi                                   on 2000/08/25  16:39:22
29933         Log: Subject: [PATCH: 6805] several more tweaks to configure.com
29934              From: Peter Prymmer <pvhp@forte.com>
29935              Date: Thu, 24 Aug 2000 16:25:48 -0700 (PDT)
29936              Message-ID: <Pine.OSF.4.10.10008241623420.181493-100000@aspara.forte.com>
29937      Branch: perl
29938            ! configure.com
29939 ____________________________________________________________________________
29940 [  6807] By: jhi                                   on 2000/08/25  16:36:37
29941         Log: Better wording for the vec lvalue diagnostic.
29942              
29943              Subject: Re: [PATCH] Re: [ID 20000821.008] Negitive numbers with vec dumps core
29944              From: Ronald J Kimball <rjk@linguist.dartmouth.edu>
29945              Date: Wed, 23 Aug 2000 14:12:16 -0400
29946              Message-ID: <20000823141215.A173200@linguist.dartmouth.edu>
29947      Branch: perl
29948            ! pod/perldiag.pod
29949 ____________________________________________________________________________
29950 [  6806] By: jhi                                   on 2000/08/24  18:17:22
29951         Log: Subject: [PATCH] More silencing of installman.
29952              From: <abigail@foad.org>
29953              Date: Thu, 24 Aug 2000 14:01:44 -0400
29954              Message-ID: <20000824180144.20062.qmail@foad.org>
29955      Branch: perl
29956            ! installman
29957 ____________________________________________________________________________
29958 [  6805] By: jhi                                   on 2000/08/24  15:00:31
29959         Log: Update Changes.
29960      Branch: perl
29961            ! Changes patchlevel.h
29962 ____________________________________________________________________________
29963 [  6804] By: jhi                                   on 2000/08/24  14:59:07
29964         Log: Regen perltoc.
29965      Branch: perl
29966            ! pod/perltoc.pod
29967 ____________________________________________________________________________
29968 [  6803] By: jhi                                   on 2000/08/24  14:44:39
29969         Log: Show the doc file, not the temp file.
29970      Branch: perl
29971            ! installman
29972 ____________________________________________________________________________
29973 [  6802] By: jhi                                   on 2000/08/24  14:41:53
29974         Log: Continue silencing.
29975      Branch: perl
29976            ! installman
29977 ____________________________________________________________________________
29978 [  6801] By: jhi                                   on 2000/08/24  14:34:40
29979         Log: Actually do something with the silencer option.
29980      Branch: perl
29981            ! installman
29982 ____________________________________________________________________________
29983 [  6800] By: jhi                                   on 2000/08/24  14:26:22
29984         Log: Make installman to recognize the silence flag -S.
29985      Branch: perl
29986            ! installman
29987 ____________________________________________________________________________
29988 [  6799] By: jhi                                   on 2000/08/24  13:49:38
29989         Log: DOS patches and portability/porting notes, from Tim Jenness.
29990      Branch: perl
29991            ! lib/File/Temp.pm
29992 ____________________________________________________________________________
29993 [  6798] By: jhi                                   on 2000/08/24  13:48:27
29994         Log: Create directories in silence.
29995              
29996              Subject: [PATCH] Another silencer for MakeMaker
29997              From: andreas.koenig@anima.de (Andreas J. Koenig)
29998              Date: 24 Aug 2000 14:18:52 +0200
29999              Message-ID: <m3zom297ir.fsf@ak-71.mind.de>
30000      Branch: perl
30001            ! lib/ExtUtils/Command.pm
30002 ____________________________________________________________________________
30003 [  6797] By: jhi                                   on 2000/08/24  13:46:42
30004         Log: More liberal parsing of version numbers.
30005              
30006              Subject: Re: CPAN.pm beta for testing available
30007              From: andreas.koenig@anima.de (Andreas J. Koenig)
30008              Date: 24 Aug 2000 13:51:57 +0200
30009              Message-ID: <m34s4aanc2.fsf@ak-71.mind.de>
30010      Branch: perl
30011            ! lib/CPAN.pm
30012 ____________________________________________________________________________
30013 [  6796] By: jhi                                   on 2000/08/24  13:44:36
30014         Log: Make "make install" by default silent.  A new "install-verbose"
30015              target is verbose.
30016      Branch: perl
30017            ! Makefile.SH
30018 ____________________________________________________________________________
30019 [  6795] By: jhi                                   on 2000/08/24  13:39:14
30020         Log: Add silencer flags to installperl.
30021              
30022              Subject: [PATCH] Making installperl silent.
30023              From: <abigail@foad.org>
30024              Date: Thu, 24 Aug 2000 05:01:45 -0400
30025              Message-ID: <20000824090145.13141.qmail@foad.org>
30026      Branch: perl
30027            ! installperl
30028 ____________________________________________________________________________
30029 [  6794] By: jhi                                   on 2000/08/24  13:35:50
30030         Log: installperl couldn't tell whether it had run tests or not.
30031              
30032              Subject: [PATCH] Re: installperl and t/TEST
30033              From: <abigail@foad.org>
30034              Date: Thu, 24 Aug 2000 04:00:53 -0400
30035              Message-ID: <20000824080053.2494.qmail@foad.org>
30036      Branch: perl
30037            ! Makefile.SH installperl
30038 ____________________________________________________________________________
30039 [  6793] By: jhi                                   on 2000/08/24  13:27:50
30040         Log: Drop the separate perlbc, perlcc -b should be enough.
30041      Branch: perl
30042            - utils/perlbc.PL
30043            ! MANIFEST pod/perldelta.pod pod/perlutil.pod utils/Makefile
30044 ____________________________________________________________________________
30045 [  6792] By: jhi                                   on 2000/08/24  04:41:30
30046         Log: Upgrade to Storable 0.7.4, from Raphael Manfredi,
30047              plus the typo fix from Peter Prymmer.
30048      Branch: perl
30049            ! ext/Storable/ChangeLog ext/Storable/Makefile.PL
30050            ! ext/Storable/Storable.pm ext/Storable/Storable.xs
30051 ____________________________________________________________________________
30052 [  6791] By: jhi                                   on 2000/08/24  02:10:43
30053         Log: Replace #6705 with a minimal doc patch.
30054              
30055              Subject: [PATCH 5.6.0] replace change #6705
30056              From: Jan Dubois <jand@ActiveState.com>
30057              Date: Wed, 23 Aug 2000 18:31:51 -0700
30058              Message-ID: <dau8qsolaurdcbom4810gfuhbjegemtr58@4ax.com>
30059      Branch: perl
30060            ! lib/Win32.pod win32/win32.c
30061 ____________________________________________________________________________
30062 [  6790] By: jhi                                   on 2000/08/23  17:52:00
30063         Log: Subject: [PATCH] Re: [ID 20000821.008] Negitive numbers with vec dumps core
30064              From: Mike Guy <mjtg@cam.ac.uk>
30065              Date: Wed, 23 Aug 2000 18:38:46 +0100
30066              Message-Id: <E13ReUA-0000vC-00@virgo.cus.cam.ac.uk>
30067      Branch: perl
30068            ! doop.c pod/perldiag.pod pod/perlfunc.pod t/op/vec.t
30069 ____________________________________________________________________________
30070 [  6789] By: jhi                                   on 2000/08/23  15:34:21
30071         Log: Update Changes.
30072      Branch: perl
30073            ! Changes patchlevel.h
30074 ____________________________________________________________________________
30075 [  6788] By: jhi                                   on 2000/08/23  15:33:40
30076         Log: Subject: [PATCH] (Mac OS X): Don't #define environ unless PERL_CORE
30077              From: Wilfredo Sánchez <wsanchez@apple.com>
30078              Date: Tue, 22 Aug 2000 19:31:27 -0700
30079              Message-Id: <200008230231.TAA00461@ns1.abstrata.com>
30080      Branch: perl
30081            ! perl.h
30082 ____________________________________________________________________________
30083 [  6787] By: jhi                                   on 2000/08/23  15:29:31
30084         Log: Subject: [ID 20000823.004] [PATCH 5.6.0+] Pod::Html is too self-contained
30085              From: Spider Boardman <spider@leggy.zk3.dec.com>
30086              Date: Wed, 23 Aug 2000 10:33:23 -0400
30087              Message-Id: <200008231433.KAA28122@leggy.zk3.dec.com>
30088      Branch: perl
30089            ! lib/Pod/Html.pm
30090 ____________________________________________________________________________
30091 [  6786] By: jhi                                   on 2000/08/23  15:28:11
30092         Log: Bad makefile.
30093      Branch: perl
30094            ! ext/B/Makefile.PL
30095 ____________________________________________________________________________
30096 [  6785] By: jhi                                   on 2000/08/23  14:37:04
30097         Log: Update Changes.
30098      Branch: perl
30099            ! Changes patchlevel.h
30100 ____________________________________________________________________________
30101 [  6784] By: jhi                                   on 2000/08/23  13:58:41
30102         Log: Portability fix from Hugo van der Sanden.
30103      Branch: perl
30104            ! ext/re/Makefile.PL
30105 ____________________________________________________________________________
30106 [  6783] By: jhi                                   on 2000/08/23  13:53:53
30107         Log: Storable support, v-version fixes.
30108              
30109              Subject: CPAN.pm beta for testing available
30110              From: andreas.koenig@anima.de (Andreas J. Koenig)
30111              Date: 22 Aug 2000 23:31:33 +0200
30112              Message-ID: <m3hf8dc79m.fsf@ak-71.mind.de>
30113      Branch: perl
30114            ! lib/CPAN.pm lib/CPAN/FirstTime.pm
30115 ____________________________________________________________________________
30116 [  6782] By: jhi                                   on 2000/08/23  13:51:26
30117         Log: Mac and other portability updates from Chris Nandor.
30118      Branch: perl
30119            ! pod/perlmodinstall.pod
30120 ____________________________________________________________________________
30121 [  6781] By: jhi                                   on 2000/08/23  13:47:33
30122         Log: Subject: [PATCH: 6778] fix a small typo in Storable.xs
30123              From: Peter Prymmer <pvhp@forte.com>
30124              Date: Tue, 22 Aug 2000 16:20:41 -0700 (PDT)
30125              Message-ID: <Pine.OSF.4.10.10008221616430.68568-100000@aspara.forte.com>
30126      Branch: perl
30127            ! ext/Storable/Storable.xs
30128 ____________________________________________________________________________
30129 [  6780] By: jhi                                   on 2000/08/23  13:33:34
30130         Log: VMS MMS (make) wants null action.
30131      Branch: perl
30132            ! ext/B/Makefile.PL
30133 ____________________________________________________________________________
30134 [  6779] By: jhi                                   on 2000/08/22  19:44:47
30135         Log: Forgot portability nit.
30136      Branch: perl
30137            ! t/lib/st-forgive.t
30138 ____________________________________________________________________________
30139 [  6778] By: jhi                                   on 2000/08/22  19:35:25
30140         Log: Be portable.
30141      Branch: perl
30142            ! ext/B/Makefile.PL t/lib/st-forgive.t t/lib/st-retrieve.t
30143            ! t/lib/st-store.t
30144 ____________________________________________________________________________
30145 [  6777] By: jhi                                   on 2000/08/22  18:50:53
30146         Log: Update Changes.
30147      Branch: perl
30148            ! Changes patchlevel.h
30149 ____________________________________________________________________________
30150 [  6776] By: jhi                                   on 2000/08/22  18:44:46
30151         Log: cSVOPo_*v things index into the current PL_curpad
30152              under ithreads, which is different from the curpad
30153              used by the XSUB.  (In other words, the code as-is
30154              before this patch wouldn't work under ithreads.)
30155              From Sarathy.
30156      Branch: perl
30157            ! ext/B/B.xs
30158 ____________________________________________________________________________
30159 [  6775] By: jhi                                   on 2000/08/22  18:18:37
30160         Log: Make the selection of NVff et al stricter.
30161      Branch: metaconfig/U/perl
30162            ! perlxvf.U
30163      Branch: perl
30164            ! Configure config_h.SH
30165 ____________________________________________________________________________
30166 [  6774] By: jhi                                   on 2000/08/22  17:19:42
30167         Log: perldelta nits.
30168      Branch: perl
30169            ! pod/perldelta.pod
30170 ____________________________________________________________________________
30171 [  6773] By: jhi                                   on 2000/08/22  17:06:26
30172         Log: Long double fixes from Spider Boardman.
30173              
30174              Subject: [ID 20000821.014] Not OK: perl v5.7.0 +SUIDMAIL +DEVEL6756 on alpha-dec_osf 5.1 (UNINSTALLED)
30175              From: system PRIVILEGED account <root@peano.zk3.dec.com>
30176              Date: Mon, 21 Aug 2000 18:41:15 -0400 (EDT)
30177              Message-Id: <200008212241.SAA0000014255@peano.zk3.dec.com>
30178      Branch: perl
30179            ! t/lib/bigfltpm.t t/lib/st-06compat.t
30180 ____________________________________________________________________________
30181 [  6772] By: jhi                                   on 2000/08/22  15:04:53
30182         Log: Update Changes.
30183      Branch: perl
30184            ! Changes patchlevel.h
30185 ____________________________________________________________________________
30186 [  6771] By: jhi                                   on 2000/08/22  15:01:44
30187         Log: perldelta fixes from Hugo van der Sanden.
30188      Branch: perl
30189            ! pod/perldelta.pod
30190 ____________________________________________________________________________
30191 [  6770] By: jhi                                   on 2000/08/22  14:34:49
30192         Log: Subject: [PATCH blead] nextchar() abuse misses an optimisation
30193              From: Hugo <hv@crypt.compulink.co.uk>
30194              Date: Tue, 22 Aug 2000 11:21:53 +0100
30195              Message-Id: <200008221021.LAA03332@crypt.compulink.co.uk>
30196      Branch: perl
30197            ! regcomp.c
30198 ____________________________________________________________________________
30199 [  6769] By: jhi                                   on 2000/08/22  14:30:02
30200         Log: Add Yitzchak, reformat.
30201      Branch: perl
30202            ! Changes config_h.SH
30203 ____________________________________________________________________________
30204 [  6768] By: jhi                                   on 2000/08/22  14:21:35
30205         Log: Long double Gconvert fixes from Yitzchak Scott-Thoennes
30206              and Spider Boardman.
30207      Branch: metaconfig
30208            ! U/compline/d_gconvert.U
30209      Branch: perl
30210            ! Configure
30211 ____________________________________________________________________________
30212 [  6767] By: jhi                                   on 2000/08/22  14:11:24
30213         Log: Subject: Re: [PATCH] [ID 20000820.012] Not OK: perl v5.7.0 +SUIDMAIL +DEVEL6735 on
30214              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
30215              Date: Mon, 21 Aug 2000 19:08:31 -0700
30216              Message-ID: <fCeo5gzkgmhY092yn@efn.org>
30217      Branch: perl
30218            - ext/Storable/patchlevel.h
30219            ! MANIFEST ext/Storable/MANIFEST
30220 ____________________________________________________________________________
30221 [  6766] By: jhi                                   on 2000/08/22  13:49:29
30222         Log: Subject: [PATCH: 6757] configure.com updates and syslog build
30223              From: Peter Prymmer <pvhp@forte.com>
30224              Date: Mon, 21 Aug 2000 17:15:35 -0700 (PDT)
30225              Message-ID: <Pine.OSF.4.10.10008211653270.17516-100000@aspara.forte.com>
30226      Branch: perl
30227            ! configure.com ext/Storable/Makefile.PL
30228 ____________________________________________________________________________
30229 [  6765] By: jhi                                   on 2000/08/22  13:44:59
30230         Log: Subject: [PATCH blead] B:: missing dependency
30231              From: Hugo <hv@crypt.compulink.co.uk>
30232              Date: Tue, 22 Aug 2000 06:44:33 +0100
30233              Message-Id: <200008220544.GAA31051@crypt.compulink.co.uk>
30234      Branch: perl
30235            ! ext/B/Makefile.PL
30236 ____________________________________________________________________________
30237 [  6764] By: jhi                                   on 2000/08/22  13:38:12
30238         Log: More bytecompiler.
30239      Branch: perl
30240            ! pod/perlutil.pod utils/Makefile utils/perlbc.PL
30241 ____________________________________________________________________________
30242 [  6763] By: jhi                                   on 2000/08/22  13:36:44
30243         Log: Bytecompiler patches from Benjamin Stuhl.
30244      Branch: perl
30245            ! bytecode.pl embedvar.h ext/B/B.pm ext/B/B.xs
30246            ! ext/B/B/Asmdata.pm ext/B/B/Assembler.pm ext/B/B/Bytecode.pm
30247            ! ext/B/O.pm ext/B/defsubs_h.PL ext/ByteLoader/ByteLoader.pm
30248            ! ext/ByteLoader/ByteLoader.xs ext/ByteLoader/bytecode.h
30249            ! ext/ByteLoader/byterun.c ext/ByteLoader/byterun.h intrpvar.h
30250            ! perl.c perlapi.h pod/perldelta.pod
30251 ____________________________________________________________________________
30252 [  6762] By: jhi                                   on 2000/08/21  23:43:40
30253         Log: An obsoleted diagnostic.
30254      Branch: perl
30255            ! pod/perldelta.pod
30256 ____________________________________________________________________________
30257 [  6761] By: jhi                                   on 2000/08/21  23:01:45
30258         Log: The #6759 wasn't quite right.
30259      Branch: perl
30260            ! t/lib/st-06compat.t t/lib/st-blessed.t t/lib/st-canonical.t
30261            ! t/lib/st-dclone.t t/lib/st-forgive.t t/lib/st-freeze.t
30262            ! t/lib/st-overload.t t/lib/st-recurse.t t/lib/st-retrieve.t
30263            ! t/lib/st-store.t t/lib/st-tied.t t/lib/st-tiedhook.t
30264            ! t/lib/st-tieditems.t
30265 ____________________________________________________________________________
30266 [  6760] By: jhi                                   on 2000/08/21  22:35:49
30267         Log: Be verydeepclean.
30268      Branch: perl
30269            ! Makefile.SH
30270 ____________________________________________________________________________
30271 [  6759] By: jhi                                   on 2000/08/21  22:25:40
30272         Log: Subject: [PATCH: 6757] make new Storable tests forgiving of places where not built
30273              From: Peter Prymmer <pvhp@forte.com>
30274              Date: Mon, 21 Aug 2000 14:58:16 -0700 (PDT)
30275              Message-ID: <Pine.OSF.4.10.10008211456250.17516-100000@aspara.forte.com>
30276      Branch: perl
30277            ! t/lib/st-06compat.t t/lib/st-blessed.t t/lib/st-canonical.t
30278            ! t/lib/st-dclone.t t/lib/st-forgive.t t/lib/st-freeze.t
30279            ! t/lib/st-overload.t t/lib/st-recurse.t t/lib/st-retrieve.t
30280            ! t/lib/st-store.t t/lib/st-tied.t t/lib/st-tiedhook.t
30281            ! t/lib/st-tieditems.t
30282 ____________________________________________________________________________
30283 [  6758] By: jhi                                   on 2000/08/21  22:22:32
30284         Log: Few more casts, need reported in
30285              
30286              Subject: Re: [ID 20000821.010] OK: perl v5.7.0 +SUIDMAIL +DEVEL6756 on i586-linux-64all 2.2.16-9mdk (UNINSTALLED)
30287              From: Mike Stok <mike@stok.co.uk>
30288              Date: Mon, 21 Aug 2000 15:59:29 -0500 (CDT)
30289              Message-ID: <Pine.LNX.4.21.0008211558480.19081-100000@ratdog.stok.co.uk>
30290              
30291              and
30292              
30293              Subject: [ID 20000821.013] Not OK: perl v5.7.0 +SUIDMAIL +DEVEL6756 on i686-linux-64int 2.2.13
30294              From: abigail@foad.org
30295              Date: 21 Aug 2000 21:31:34 -0000
30296              Message-Id: <20000821213134.30170.qmail@foad.org>
30297      Branch: perl
30298            ! ext/Storable/Storable.xs
30299 ____________________________________________________________________________
30300 [  6757] By: jhi                                   on 2000/08/21  18:37:07
30301         Log: Update Changes.
30302      Branch: perl
30303            ! Changes patchlevel.h
30304 ____________________________________________________________________________
30305 [  6756] By: jhi                                   on 2000/08/21  18:34:02
30306         Log: A pod nit.
30307              
30308              Subject: [PATCH] pod/perlre.pod (was Re: [ID 20000821.007] $&, $1, etc. disappear when sub returns)
30309              From: <abigail@foad.org>
30310              Date: Mon, 21 Aug 2000 14:00:16 -0400
30311              Message-ID: <20000821180016.28627.qmail@foad.org>
30312      Branch: perl
30313            ! pod/perlre.pod
30314 ____________________________________________________________________________
30315 [  6755] By: jhi                                   on 2000/08/21  18:30:56
30316         Log: Use PodParser 1.18 new test.
30317      Branch: perl
30318            ! t/pod/special_seqs.t t/pod/special_seqs.xr
30319 ____________________________________________________________________________
30320 [  6754] By: jhi                                   on 2000/08/21  18:28:35
30321         Log: Apply some PodParser 1.18 patches; the Pod/Find.pm
30322              patches cannot be applied since #6712 conflicts.
30323      Branch: perl
30324            ! lib/Pod/InputObjects.pm lib/Pod/Parser.pm lib/Pod/Usage.pm
30325 ____________________________________________________________________________
30326 [  6753] By: jhi                                   on 2000/08/21  18:15:11
30327         Log: Weed out some smaller changes.
30328      Branch: perl
30329            ! pod/perldelta.pod
30330 ____________________________________________________________________________
30331 [  6752] By: jhi                                   on 2000/08/21  18:02:30
30332         Log: Also under djgpp the timestamps are funky.
30333      Branch: perl
30334            ! t/op/stat.t
30335 ____________________________________________________________________________
30336 [  6751] By: jhi                                   on 2000/08/21  17:55:56
30337         Log: Tweak the floating point output routine preferences.
30338      Branch: metaconfig
30339            ! U/compline/d_gconvert.U
30340      Branch: perl
30341            ! Configure
30342 ____________________________________________________________________________
30343 [  6750] By: jhi                                   on 2000/08/21  17:51:29
30344         Log: Unicos/mk requires elaborate paranoia.
30345      Branch: perl
30346            ! lib/Math/Complex.pm
30347 ____________________________________________________________________________
30348 [  6749] By: gsar                                  on 2000/08/21  16:53:31
30349         Log: use Cwd 'chdir' didn't set $ENV{PWD} correctly on Windows
30350      Branch: perl
30351            ! lib/Cwd.pm
30352 ____________________________________________________________________________
30353 [  6748] By: gsar                                  on 2000/08/21  16:22:19
30354         Log: free TLS slot properly on Windows
30355      Branch: perl
30356            ! thread.h win32/perllib.c win32/win32thread.h
30357 ____________________________________________________________________________
30358 [  6747] By: jhi                                   on 2000/08/21  16:20:58
30359         Log: Rename the macro argument because some preprocessors
30360              can't tell the difference and expand arguments also inside
30361              double quoted strings.
30362      Branch: perl
30363            ! regcomp.c
30364 ____________________________________________________________________________
30365 [  6746] By: jhi                                   on 2000/08/21  16:09:41
30366         Log: Support long doubles in Storable.
30367              
30368              Subject: Re: Not OK: perl v5.7.0 +SUIDMAIL +DEVEL6735 on i686-linux-thread-multi-64int 2.2.14-5.0 (UNINSTALLED)
30369              From: Radu Greab <radu@netsoft.ro>
30370              Date: Mon, 21 Aug 2000 18:05:59 +0300 (EET DST)
30371              Message-ID: <Pine.GSO.4.05.10008211804210.10137-100000@localhost>
30372      Branch: perl
30373            ! ext/Storable/Storable.xs
30374 ____________________________________________________________________________
30375 [  6745] By: jhi                                   on 2000/08/21  15:51:40
30376         Log: Subject: RE: [PATCH perl@6736] t/pragma/warn/9enabled assumes stdout buffered
30377              From: "Fifer, Eric" <EFifer@sanwaint.com>
30378              Date: Mon, 21 Aug 2000 15:34:49 +0100
30379              Message-ID: <779F20BCCE5AD31186A50008C75D9979171786@silldn_mail1.sanwaint.com>
30380      Branch: perl
30381            ! t/pragma/warn/9enabled
30382 ____________________________________________________________________________
30383 [  6744] By: jhi                                   on 2000/08/21  15:39:35
30384         Log: Document the endianness of Alpha more precisely.
30385      Branch: perl
30386            ! hints/unicos.sh pod/perldelta.pod pod/perlfunc.pod
30387            ! pod/perlport.pod
30388 ____________________________________________________________________________
30389 [  6743] By: jhi                                   on 2000/08/21  14:47:05
30390         Log: perldelta fixes from the p5p crowd.
30391      Branch: perl
30392            ! pod/perldelta.pod pod/perlop.pod
30393 ____________________________________________________________________________
30394 [  6742] By: jhi                                   on 2000/08/21  13:34:51
30395         Log: Update to Pod::LaTeX 0.53.
30396              
30397              Subject: [PATCH] lib/Pod/LaTeX.pm updates
30398              From: Tim Jenness <timj@jach.hawaii.edu>
30399              Date: Sun, 20 Aug 2000 23:09:48 -1000 (HST)
30400              Message-ID: <Pine.LNX.4.21.0008202308040.12047-100000@lapaki.jach.hawaii.edu>
30401      Branch: perl
30402            ! lib/Pod/LaTeX.pm
30403 ____________________________________________________________________________
30404 [  6741] By: jhi                                   on 2000/08/21  13:33:01
30405         Log: Subject: [PATCH] os2.c fix for use64bitint
30406              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
30407              Date: Mon, 21 Aug 2000 01:32:25 -0700
30408              Message-ID: <ZkOo5gzkgWEb092yn@efn.org>
30409      Branch: perl
30410            ! os2/os2.c
30411 ____________________________________________________________________________
30412 [  6740] By: jhi                                   on 2000/08/21  13:28:52
30413         Log: Array context keeps slithering in.
30414              
30415              Subject: Re: 5.7.0 getting really close, new snapshot: perldelta, Storable
30416              From: Daniel Chetlin <daniel@chetlin.com>
30417              Date: Sun, 20 Aug 2000 21:40:25 -0700
30418              Message-ID: <20000820214025.C29387@ilmd.chetlin.org>
30419      Branch: perl
30420            ! ext/Storable/Storable.xs lib/Pod/InputObjects.pm
30421            ! pod/perldebtut.pod
30422 ____________________________________________________________________________
30423 [  6739] By: jhi                                   on 2000/08/21  13:23:55
30424         Log: Big-endian quad fixes for Storable from Radu Greab,
30425              plus few explicit null casts for picky compilers.
30426      Branch: perl
30427            ! ext/Storable/Storable.xs
30428 ____________________________________________________________________________
30429 [  6738] By: gsar                                  on 2000/08/21  05:56:13
30430         Log: small tweaks for change#6705: avoid C++ style comments in C code;
30431              use Perl's malloc API rather than the low level system one
30432      Branch: perl
30433            ! win32/win32.c
30434 ____________________________________________________________________________
30435 [  6737] By: gsar                                  on 2000/08/21  05:35:41
30436         Log: add Storable to list of extensions on Windows
30437      Branch: perl
30438            ! win32/Makefile win32/makefile.mk
30439 ____________________________________________________________________________
30440 [  6736] By: jhi                                   on 2000/08/21  02:57:53
30441         Log: Update Changes.
30442      Branch: perl
30443            ! Changes patchlevel.h
30444 ____________________________________________________________________________
30445 [  6735] By: jhi                                   on 2000/08/21  02:57:20
30446         Log: Draft 0.
30447      Branch: perl
30448            ! pod/perldelta.pod
30449 ____________________________________________________________________________
30450 [  6734] By: jhi                                   on 2000/08/21  02:57:03
30451         Log: Add Storable 0.7.2 from Raphael Manfredi,
30452              plus the patch from
30453              
30454              Subject: Re: someone with too much time and a 64-bit box and interest in Storable?
30455              From: Radu Greab <radu@netsoft.ro>
30456              Date: Mon, 21 Aug 2000 03:10:05 +0300 (EEST)
30457              Message-ID: <Pine.LNX.4.10.10008210258160.1292-100000@busy.netsoft.ro>
30458              
30459              plus changes to get Storable to compile with
30460              picky ANSI compilers.
30461      Branch: perl
30462            + ext/Storable/ChangeLog ext/Storable/MANIFEST
30463            + ext/Storable/Makefile.PL ext/Storable/README
30464            + ext/Storable/Storable.pm ext/Storable/Storable.xs
30465            + ext/Storable/patchlevel.h t/lib/st-06compat.t
30466            + t/lib/st-blessed.t t/lib/st-canonical.t t/lib/st-dclone.t
30467            + t/lib/st-dump.pl t/lib/st-forgive.t t/lib/st-freeze.t
30468            + t/lib/st-overload.t t/lib/st-recurse.t t/lib/st-retrieve.t
30469            + t/lib/st-store.t t/lib/st-tied.t t/lib/st-tiedhook.t
30470            + t/lib/st-tieditems.t
30471            ! MANIFEST
30472 ____________________________________________________________________________
30473 [  6733] By: jhi                                   on 2000/08/21  02:29:09
30474         Log: The correct cleaning order is an art.
30475      Branch: perl
30476            ! Makefile.SH
30477 ____________________________________________________________________________
30478 [  6732] By: jhi                                   on 2000/08/21  01:23:39
30479         Log: The #6724 is here.
30480      Branch: perl
30481            ! t/lib/ftmp-security.t
30482 ____________________________________________________________________________
30483 [  6731] By: jhi                                   on 2000/08/20  23:17:03
30484         Log: s/this one/the 5.6.0 release/
30485      Branch: perl
30486            ! pod/perl56delta.pod
30487 ____________________________________________________________________________
30488 [  6730] By: jhi                                   on 2000/08/20  23:07:34
30489         Log: Mention perlebcdic and perlposix-bc.
30490      Branch: perl
30491            ! pod/perlport.pod
30492 ____________________________________________________________________________
30493 [  6729] By: jhi                                   on 2000/08/20  21:32:59
30494         Log: Document the number of exponent digits.
30495      Branch: perl
30496            ! pod/perlfunc.pod
30497 ____________________________________________________________________________
30498 [  6728] By: jhi                                   on 2000/08/20  21:16:47
30499         Log: Use File::Spec->tmpdir().
30500              
30501              Subject: Re: [ID 20000820.001] not OK - Perl 5.7.0 (uninstalled)
30502              From: Tim Jenness <timj@jach.hawaii.edu>
30503              Message-ID: <Pine.LNX.4.21.0008201057080.20544-100000@lapaki.jach.hawaii.edu>
30504              MIME-Version: 1.0
30505              Date: Sun, 20 Aug 2000 11:01:25 -1000 (HST)
30506      Branch: perl
30507            ! utils/perlbug.PL
30508 ____________________________________________________________________________
30509 [  6727] By: jhi                                   on 2000/08/20  20:43:32
30510         Log: Update Changes.
30511      Branch: perl
30512            ! Changes patchlevel.h
30513 ____________________________________________________________________________
30514 [  6726] By: jhi                                   on 2000/08/20  20:41:44
30515         Log: The veryclean target needs to clobber.
30516      Branch: perl
30517            ! Makefile.SH
30518 ____________________________________________________________________________
30519 [  6725] By: jhi                                   on 2000/08/20  20:37:38
30520         Log: Document odd vs even subreleases and -Dusedevel.
30521      Branch: perl
30522            ! INSTALL
30523 ____________________________________________________________________________
30524 [  6724] By: jhi                                   on 2000/08/20  19:58:05
30525         Log: Use temporary directory instead of current directory.
30526              
30527              Subject: Re: [ID 20000816.011] Test failure in lib/ftmp-security.t
30528              From: Tim Jenness <timj@jach.hawaii.edu>
30529              Date: Sat, 19 Aug 2000 10:26:07 -1000 (HST)
30530              Message-ID: <Pine.LNX.4.21.0008191015090.13727-100000@lapaki.jach.hawaii.edu>
30531      Branch: perl
30532            ! t/lib/ftmp-security.t
30533 ____________________________________________________________________________
30534 [  6723] By: jhi                                   on 2000/08/20  19:55:55
30535         Log: Subject: [PATCH] Silence MakeMaker (Was: installman)
30536              From: andreas.koenig@anima.de (Andreas J. Koenig)
30537              Date: 20 Aug 2000 15:52:03 +0200
30538              Message-ID: <m3em3khwfw.fsf_-_@ak-71.mind.de>
30539      Branch: perl
30540            ! lib/ExtUtils/MM_Unix.pm
30541 ____________________________________________________________________________
30542 [  6722] By: jhi                                   on 2000/08/20  19:46:01
30543         Log: Update to CGI 2.72, from Lincoln Stein.
30544      Branch: perl
30545            ! lib/CGI.pm
30546 ____________________________________________________________________________
30547 [  6721] By: jhi                                   on 2000/08/20  19:43:54
30548         Log: Subject: Re: [ID 20000819.002] Not OK: perl v5.7.0 +SUIDMAIL +DEVEL6707 on i686-linux 2.2.5-16 (UNINSTALLED)
30549              From: Radu Greab <radu@netsoft.ro>
30550              Date: Sun, 20 Aug 2000 18:03:26 +0300 (EEST)
30551              Message-ID: <Pine.LNX.4.10.10008201753260.1292-100000@busy.netsoft.ro>
30552      Branch: perl
30553            ! ext/GDBM_File/GDBM_File.xs
30554 ____________________________________________________________________________
30555 [  6720] By: jhi                                   on 2000/08/20  19:42:01
30556         Log: pp_open() could pass an uninitialized filename down to do_open9().
30557      Branch: perl
30558            ! pp_sys.c
30559 ____________________________________________________________________________
30560 [  6719] By: jhi                                   on 2000/08/20  14:06:41
30561         Log: UTF8 concat fixes.
30562              
30563              Subject: [PATCH @6713] Re: [ID 20000815.006] latest patched perl core dumps
30564              From: Hugo <hv@crypt.compulink.co.uk>
30565              Date: Sun, 20 Aug 2000 07:30:46 +0100
30566              Message-Id: <200008200630.HAA18053@crypt.compulink.co.uk>
30567      Branch: perl
30568            ! pp_hot.c t/op/append.t
30569 ____________________________________________________________________________
30570 [  6718] By: jhi                                   on 2000/08/20  02:09:37
30571         Log: Let's try #6717 again.
30572      Branch: perl
30573            ! lib/File/Temp.pm
30574 ____________________________________________________________________________
30575 [  6717] By: jhi                                   on 2000/08/20  01:56:55
30576         Log: Subject: [PATCH perl@6698] File::Temp fix-ups for OpenVMS
30577              From: "Craig A. Berry" <craig.berry@metamorgs.com>
30578              Date: Sat, 19 Aug 2000 18:15:39 -0500
30579              Message-Id: <p04320402b5c4c10bc280@[192.168.56.169]>
30580      Branch: perl
30581            ! lib/File/Temp.pm
30582 ____________________________________________________________________________
30583 [  6716] By: jhi                                   on 2000/08/19  15:50:11
30584         Log: Update Changes.
30585      Branch: perl
30586            ! Changes patchlevel.h
30587 ____________________________________________________________________________
30588 [  6715] By: jhi                                   on 2000/08/19  15:39:09
30589         Log: Subject: [ID 20000817.023] endianness description in perlfunc.pod
30590              From: Jonathan D Johnston <jdjohnston2@juno.com>
30591              Date: Thu, 17 Aug 2000 23:13:01 -0400       
30592              Message-Id: <20000817.231304.-743351.1.jdjohnston2@juno.com>
30593      Branch: perl
30594            ! pod/perlfunc.pod
30595 ____________________________________________________________________________
30596 [  6714] By: jhi                                   on 2000/08/19  15:34:04
30597         Log: Introduce a 'veryclean' target that is like 'distclean'
30598              but also removes *~ and *.orig.
30599      Branch: perl
30600            ! Makefile.SH lib/ExtUtils/MM_Unix.pm pod/Makefile.SH
30601            ! utils/Makefile x2p/Makefile.SH
30602 ____________________________________________________________________________
30603 [  6713] By: jhi                                   on 2000/08/19  14:15:45
30604         Log: Put back the long double avoidance code to POSIX.xs
30605              because VMS seems to need it still.
30606      Branch: perl
30607            ! ext/POSIX/POSIX.xs
30608 ____________________________________________________________________________
30609 [  6712] By: jhi                                   on 2000/08/19  14:10:41
30610         Log: Subject: [PATCH: 6698] was Re: [PATCH: 6640] VMS Makefile.SH update (fwd)
30611              From: Peter Prymmer <pvhp@forte.com>
30612              Date: Fri, 18 Aug 2000 18:18:31 -0700 (PDT)
30613              Message-ID: <Pine.OSF.4.10.10008181818100.322420-100000@aspara.forte.com>
30614      Branch: perl
30615            ! lib/Pod/Find.pm t/pod/find.t
30616 ____________________________________________________________________________
30617 [  6711] By: jhi                                   on 2000/08/19  14:09:19
30618         Log: Subject: [PATCH: 6698] tidy up the temp files left by peek tests on VMS
30619              From: Peter Prymmer <pvhp@forte.com>
30620              Date: Fri, 18 Aug 2000 17:54:10 -0700 (PDT)
30621              Message-ID: <Pine.OSF.4.10.10008181751350.322420-100000@aspara.forte.com>
30622              cc: vmsperl@perl.org
30623      Branch: perl
30624            ! t/lib/peek.t
30625 ____________________________________________________________________________
30626 [  6710] By: jhi                                   on 2000/08/19  14:08:01
30627         Log: Subject: [PATCH 5.6.0+] fix for Win32::GetFullPathName and Win32::GetShortPathName
30628              From: Jan Dubois <jand@ActiveState.com>
30629              Date: Fri, 18 Aug 2000 16:31:48 -0700
30630              Message-ID: <2ihrps00u6qkpjtfq6f2b1d1ndkrs7l04u@4ax.com>
30631      Branch: perl
30632            ! win32/win32.c
30633 ____________________________________________________________________________
30634 [  6709] By: jhi                                   on 2000/08/19  14:06:57
30635         Log: Fix a core dump in lib/selfloader under -DDEBUGGING.
30636              
30637              Subject: PATCH @6698 for [ID 20000817.007] Not OK: perl v5.7.0 +SUIDMAIL +DEVEL6676 on alpha-dec_osf 4.0f (UNINSTALLED) 
30638              From: Spider.Boardman@Orb.Nashua.NH.US
30639              Date: Fri, 18 Aug 2000 18:41:14 -0400
30640              Message-Id: <200008182241.SAA29667@Orb.Nashua.NH.US>
30641      Branch: perl
30642            ! regcomp.c
30643 ____________________________________________________________________________
30644 [  6708] By: jhi                                   on 2000/08/18  22:04:49
30645         Log: Update Changes.
30646      Branch: perl
30647            ! Changes patchlevel.h
30648 ____________________________________________________________________________
30649 [  6707] By: jhi                                   on 2000/08/18  21:55:14
30650         Log: Add warnif(), check warnings further up the stack,
30651              all the warnings functions now can take an optional object reference.
30652              
30653              Subject: [PATCH bleedperl@6691] warnings pragma update
30654              From: "Paul Marquess" <Paul.Marquess@btinternet.com>
30655              Date: Fri, 18 Aug 2000 22:42:06 +0100
30656              Message-ID: <000c01c0095d$278e0040$ca01073e@bfs.phone.com>
30657      Branch: perl
30658            ! lib/Class/Struct.pm lib/Tie/Handle.pm lib/Tie/Hash.pm
30659            ! lib/Tie/Scalar.pm lib/fields.pm lib/syslog.pl lib/warnings.pm
30660            ! pod/perllexwarn.pod t/pragma/warn/9enabled warnings.pl
30661 ____________________________________________________________________________
30662 [  6706] By: jhi                                   on 2000/08/18  21:41:45
30663         Log: Typo in pp_complement().
30664              
30665              Subject: [PATCH perl-current] Deparse
30666              From: Peter Scott <Peter@PSDT.com>
30667              Date: Fri, 18 Aug 2000 12:44:37 -0700
30668              Message-Id: <4.3.2.7.2.20000818124024.00ba2be0@psdt.com>
30669      Branch: perl
30670            ! ext/B/B/Deparse.pm
30671 ____________________________________________________________________________
30672 [  6705] By: jhi                                   on 2000/08/18  21:25:59
30673         Log: Subject: [PATCH 5.6.0+] fix for Win32::DomainName
30674              From: Jan Dubois <jand@ActiveState.com>
30675              Date: Fri, 18 Aug 2000 14:22:51 -0700
30676              Message-ID: <0o9rps458r29eb97h5csuq81b1eip4no33@4ax.com>
30677      Branch: perl
30678            ! lib/Win32.pod win32/win32.c
30679 ____________________________________________________________________________
30680 [  6704] By: jhi                                   on 2000/08/18  21:16:14
30681         Log: Don't eat leading os from index entries.
30682              
30683              Subject: Re: [ID 20000810.006] Pod::Man Ate My 'O'!
30684              From: Russ Allbery <rra@stanford.edu>
30685              Date: 10 Aug 2000 20:49:25 -0700
30686              Message-ID: <ylu2cs78ze.fsf@windlord.stanford.edu>
30687      Branch: perl
30688            ! lib/Pod/Man.pm
30689 ____________________________________________________________________________
30690 [  6703] By: jhi                                   on 2000/08/18  21:07:06
30691         Log: Add [[:blank:]] as suggested in
30692              
30693              Subject: [ID 20000716.024] [=cc=] / [:blank:]
30694              From: Jeffrey Friedl <jfriedl@fummy.dsl.yahoo.com>
30695              Date: Sun, 16 Jul 2000 17:55:29 -0700
30696              Message-Id: <200007170055.RAA23528@fummy.dsl.yahoo.com>
30697              
30698              (the [=cc=] has already been taken care of by #6439
30699              so the whole bug report can be closed)
30700              
30701              and make [[:space:]] to be equivalent to isspace(3)
30702              (as opposed to \s, which is isSPACE()).  The difference
30703              is that now [[:space:]] matches the mythical vertical tab,
30704              while \s doesn't.
30705      Branch: perl
30706            ! handy.h pod/perlre.pod pod/perlretut.pod regcomp.c regcomp.h
30707            ! regexec.c t/op/pat.t
30708 ____________________________________________________________________________
30709 [  6702] By: jhi                                   on 2000/08/18  18:47:47
30710         Log: The new tests were missing from #6415.
30711      Branch: perl
30712            ! t/op/bop.t
30713 ____________________________________________________________________________
30714 [  6701] By: jhi                                   on 2000/08/18  18:20:40
30715         Log: Document the NDBM_File and ODBM_File as SDBM_File
30716              was documented in #6417.
30717      Branch: perl
30718            ! ext/NDBM_File/NDBM_File.pm ext/ODBM_File/ODBM_File.pm
30719            ! ext/SDBM_File/SDBM_File.pm
30720 ____________________________________________________________________________
30721 [  6700] By: jhi                                   on 2000/08/18  18:10:39
30722         Log: Subject: [PATCH perl@6698] cygwin port
30723              From: "Fifer, Eric" <EFifer@sanwaint.com>
30724              Date: Fri, 18 Aug 2000 17:30:05 +0100
30725              Message-ID: <779F20BCCE5AD31186A50008C75D9979171784@silldn_mail1.sanwaint.com>
30726      Branch: perl
30727            ! lib/File/Temp.pm
30728 ____________________________________________________________________________
30729 [  6699] By: jhi                                   on 2000/08/18  16:21:49
30730         Log: Document code point which makes if (defined %stash::) to work
30731              (noted by Spider Boardman).
30732      Branch: perl
30733            ! op.c
30734 ____________________________________________________________________________
30735 [  6698] By: jhi                                   on 2000/08/18  13:43:27
30736         Log: Update Changes.
30737      Branch: perl
30738            ! Changes patchlevel.h
30739 ____________________________________________________________________________
30740 [  6697] By: jhi                                   on 2000/08/18  13:35:57
30741         Log: Tiny Getopt::Long patch from Johan Vromans.
30742      Branch: perl
30743            ! lib/Getopt/Long.pm t/lib/gol-basic.t t/lib/gol-oo.t
30744 ____________________________________________________________________________
30745 [  6696] By: jhi                                   on 2000/08/18  13:26:14
30746         Log: Subject: [ID 20000817.018] behaviour change 5.5.3 -> 5.6.0 re "Modification of a read-only value"
30747              From: Paul David Fardy <pdf@morgan.ucs.mun.ca>
30748              Date: Thu, 17 Aug 2000 17:23:40 -0230 (NDT)
30749              Message-Id: <200008171953.RAA17673@porthos.ucs.mun.ca>
30750      Branch: perl
30751            ! pod/perldiag.pod pod/perlsyn.pod
30752 ____________________________________________________________________________
30753 [  6695] By: jhi                                   on 2000/08/18  13:13:26
30754         Log: Subject: [PATCH] perlfunc.pod -- clarifying sprintf array argument issues
30755              From: Daniel Chetlin <daniel@chetlin.com>
30756              Date: Fri, 18 Aug 2000 03:13:36 -0700
30757              Message-ID: <20000818031336.B14165@ilmd.chetlin.org>
30758      Branch: perl
30759            ! pod/perlfunc.pod
30760 ____________________________________________________________________________
30761 [  6694] By: jhi                                   on 2000/08/18  13:08:05
30762         Log: Subject: [PATCH] perltrap.pod spring cleaning
30763              From: Daniel Chetlin <daniel@chetlin.com>
30764              Date: Fri, 18 Aug 2000 03:06:54 -0700
30765              Message-ID: <20000818030654.A14165@ilmd.chetlin.org>
30766              
30767              plus Mike Guy's nitfix.
30768      Branch: perl
30769            ! pod/perltrap.pod
30770 ____________________________________________________________________________
30771 [  6693] By: jhi                                   on 2000/08/18  13:00:26
30772         Log: Unbuffer the output.
30773              
30774              Subject: Re: [ID 20000817.017] Not OK: perl v5.7.0 +SUIDMAIL +DEVEL6680 on
30775              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
30776              Date: Thu, 17 Aug 2000 18:39:29 -0700
30777              Message-ID: <RPJn5gzkgydf092yn@efn.org>
30778      Branch: perl
30779            ! t/op/fork.t
30780 ____________________________________________________________________________
30781 [  6692] By: jhi                                   on 2000/08/18  05:19:17
30782         Log: Delete the image, too, not just its MANIFEStation.
30783      Branch: perl
30784            - lib/CGI/eg/wilogo.gif
30785 ____________________________________________________________________________
30786 [  6691] By: jhi                                   on 2000/08/18  05:10:26
30787         Log: Propagate new Configure vars.
30788      Branch: perl
30789            ! configure.com epoc/config.sh uconfig.h uconfig.sh
30790            ! vos/config.def vos/config.h vos/config_h.SH_orig
30791            ! win32/config.bc win32/config.gc win32/config.vc
30792            ! win32/config_H.bc win32/config_H.gc win32/config_H.vc
30793 ____________________________________________________________________________
30794 [  6690] By: jhi                                   on 2000/08/18  04:30:56
30795         Log: Update Changes.
30796      Branch: perl
30797            ! Changes patchlevel.h
30798 ____________________________________________________________________________
30799 [  6689] By: jhi                                   on 2000/08/18  04:12:30
30800         Log: Fix the lib/complex failure of
30801              
30802              From: abigail@foad.org
30803              Subject: [ID 20000814.005] Not OK: perl v5.6.0 on i686-linux-64int 2.2.13       
30804              Date: 15 Aug 2000 04:06:38 -0000
30805              Message-Id: <20000815040638.8524.qmail@foad.org> 
30806              
30807              Linux long double accuracy issue: something that
30808              when printed with %g looks like "2" but int() of it is 1.
30809      Branch: perl
30810            ! lib/Math/Complex.pm
30811 ____________________________________________________________________________
30812 [  6688] By: jhi                                   on 2000/08/18  03:15:35
30813         Log: The byteorder code in #6671 was wrong.
30814      Branch: perl
30815            ! configpm
30816 ____________________________________________________________________________
30817 [  6687] By: jhi                                   on 2000/08/18  02:08:42
30818         Log: Subject: [PATCH 5.6.0+] newSVrv() memory leak
30819              From: Jan Dubois <jand@ActiveState.com>
30820              Date: Thu, 17 Aug 2000 18:31:55 -0700
30821              Message-ID: <l64ppsggaiuc4t6msm45iqohmhpjblb4qf@4ax.com>
30822      Branch: perl
30823            ! sv.c
30824 ____________________________________________________________________________
30825 [  6686] By: jhi                                   on 2000/08/18  02:04:15
30826         Log: Use NVs in POSIX math, not doubles.
30827              
30828              From: abigail@foad.org
30829              Subject: [ID 20000817.014] POSIX & modfl
30830              Date: 17 Aug 2000 20:49:18 -0000
30831              Message-Id: <20000817204918.23123.qmail@foad.org>
30832      Branch: perl
30833            ! ext/POSIX/POSIX.xs ext/POSIX/typemap
30834 ____________________________________________________________________________
30835 [  6685] By: jhi                                   on 2000/08/18  02:02:12
30836         Log: Introduce NVef, NVff, and NVgf, use the middle one.
30837              (helps for lib/peek + Linux + long doubles)  Reported in
30838              
30839              From: abigail@foad.org
30840              Subject: [ID 20000814.005] Not OK: perl v5.6.0 on i686-linux-64int 2.2.13       
30841              Date: 15 Aug 2000 04:06:38 -0000
30842              Message-Id: <20000815040638.8524.qmail@foad.org> 
30843              
30844              (note: the lib/complex failure has not yet been addressed)
30845      Branch: metaconfig/U/perl
30846            ! perlxvf.U
30847      Branch: perl
30848            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
30849            ! config_h.SH dump.c perl.h pod/perlguts.pod
30850 ____________________________________________________________________________
30851 [  6684] By: jhi                                   on 2000/08/17  23:22:19
30852         Log: Add byteorder to the myconfig output.
30853      Branch: perl
30854            ! myconfig.SH
30855 ____________________________________________________________________________
30856 [  6683] By: jhi                                   on 2000/08/17  23:20:19
30857         Log: The image doth not exist, spotted by Johan Vromans.
30858      Branch: perl
30859            ! MANIFEST
30860 ____________________________________________________________________________
30861 [  6682] By: jhi                                   on 2000/08/17  22:38:16
30862         Log: Document what the backtick returns if the command fails.
30863      Branch: perl
30864            ! pod/perlop.pod
30865 ____________________________________________________________________________
30866 [  6681] By: jhi                                   on 2000/08/17  22:33:12
30867         Log: Do not use prototyping here.
30868              
30869              Subject: [ID 20000817.016] [PATCH] Peek.xs
30870              From: abigail@foad.org
30871              Date: 17 Aug 2000 20:55:56 -0000
30872              Message-Id: <20000817205556.24270.qmail@foad.org>
30873      Branch: perl
30874            ! ext/Devel/Peek/Makefile.PL
30875 ____________________________________________________________________________
30876 [  6680] By: jhi                                   on 2000/08/17  19:46:43
30877         Log: Don't propose using modules built for 5.005 if no binary
30878              compatibility with 5.005 is attempted.
30879              
30880              From: Jeff Okamoto <okamoto@xfiles.intercon.hp.com>
30881              Subject: Minor nit with 5.7.0 (6655)
30882              Date: Wed, 16 Aug 2000 15:56:14 -0700 (PDT)
30883              Message-Id: <200008162256.PAA06964@xfiles.intercon.hp.com>
30884      Branch: metaconfig
30885            ! U/installdirs/inc_version_list.U
30886      Branch: perl
30887            ! Configure config_h.SH
30888 ____________________________________________________________________________
30889 [  6679] By: jhi                                   on 2000/08/17  19:16:39
30890         Log: Microperl config update.
30891      Branch: perl
30892            ! uconfig.h uconfig.sh
30893 ____________________________________________________________________________
30894 [  6678] By: jhi                                   on 2000/08/17  19:16:13
30895         Log: The #6648 wasn't protective enough for limited platforms
30896              (like microperl).
30897      Branch: perl
30898            ! dump.c sv.c
30899 ____________________________________________________________________________
30900 [  6677] By: jhi                                   on 2000/08/17  14:46:35
30901         Log: Update Changes.
30902      Branch: perl
30903            ! Changes patchlevel.h
30904 ____________________________________________________________________________
30905 [  6676] By: jhi                                   on 2000/08/17  14:44:02
30906         Log: Add perlebcdic from Peter Prymmer, regen toc.
30907      Branch: perl
30908            + pod/perlebcdic.pod
30909            ! MANIFEST pod/buildtoc.PL pod/perl.pod pod/perltoc.pod
30910 ____________________________________________________________________________
30911 [  6675] By: jhi                                   on 2000/08/17  14:41:52
30912         Log: perldebtut 1.10 from Richard Foley, plus Celsius and Fahrenheit.
30913      Branch: perl
30914            ! pod/perldebtut.pod
30915 ____________________________________________________________________________
30916 [  6674] By: jhi                                   on 2000/08/17  14:29:43
30917         Log: Get -DLEAKTEST to compile (not necessarily to work, mind)
30918              
30919              Subject: [ID 20000724.006] -DLEAKTEST problem
30920              From: Gregory Martin Pfeil <pfeilgm@technomadic.org>
30921              Date: Tue, 25 Jul 2000 00:36:32 -0500
30922              Message-Id: <20000725003632.A26186@www.llamacom.com>
30923              
30924              Reminder sent
30925              
30926              Subject: [PATCH bleadperl@6647] -DLEAKTEST compile error      
30927              From: Hugo <hv@crypt.compulink.co.uk>
30928              Date: Thu, 17 Aug 2000 15:23:42 +0100
30929              Message-Id: <200008171423.PAA06749@crypt.compulink.co.uk>
30930      Branch: perl
30931            ! util.c
30932 ____________________________________________________________________________
30933 [  6673] By: jhi                                   on 2000/08/17  04:07:10
30934         Log: Subject: Re: [PATCH]Re: Questions about Math::BigFloat
30935              From: John Peacock <JPeacock@UnivPress.com>
30936              Date: Tue, 01 Aug 2000 09:38:12 -0400
30937              Message-ID: <3986D2C4.54B78FE4@UnivPress.com>
30938      Branch: perl
30939            ! lib/Math/BigFloat.pm lib/Math/BigInt.pm t/lib/bigfltpm.t
30940 ____________________________________________________________________________
30941 [  6672] By: jhi                                   on 2000/08/17  03:04:35
30942         Log: Subject: [PATCH] Cwd.pm now uses strict
30943              From: Tim Jenness <timj@jach.hawaii.edu>
30944              Date: Wed, 16 Aug 2000 16:42:35 -1000 (HST)
30945              Message-ID: <Pine.LNX.4.21.0008161639510.1135-100000@lapaki.jach.hawaii.edu>
30946      Branch: perl
30947            ! lib/Cwd.pm
30948 ____________________________________________________________________________
30949 [  6671] By: jhi                                   on 2000/08/17  02:16:35
30950         Log: Make $Config{byteorder} more magical so that it is
30951              dynamically computed: nice for 'fat binaries'.
30952              
30953              Subject: [PATCH]: default byteorder
30954              From: Wilfredo Sánchez <wsanchez@apple.com>
30955              Date: Mon, 31 Jul 2000 19:45:31 -0700
30956              Message-Id: <200008010245.TAA04459@ns1.abstrata.com>
30957      Branch: perl
30958            ! configpm
30959 ____________________________________________________________________________
30960 [  6670] By: gsar                                  on 2000/08/17  01:22:21
30961         Log: move WNOHANG definition to where other such things are
30962      Branch: perl
30963            ! win32/win32.h
30964 ____________________________________________________________________________
30965 [  6669] By: jhi                                   on 2000/08/17  01:19:17
30966         Log: Update Changes.
30967      Branch: perl
30968            ! Changes patchlevel.h
30969 ____________________________________________________________________________
30970 [  6668] By: jhi                                   on 2000/08/17  01:16:29
30971         Log: Doc nits spotted by Richard Soderberg.
30972      Branch: perl
30973            ! README.posix-bc README.vmesa
30974 ____________________________________________________________________________
30975 [  6667] By: jhi                                   on 2000/08/17  01:12:11
30976         Log: Subject: [PATCH(2) @6655] Re: perldebut.pod - spelling
30977              From: "Casey R. Tweten" <crt@kiski.net>
30978              Date: Wed, 16 Aug 2000 12:39:08 -0400 (EDT)
30979              Message-ID: <Pine.OSF.4.21.0008161238250.32058-100000@home.kiski.net>
30980      Branch: perl
30981            ! pod/perldebtut.pod
30982 ____________________________________________________________________________
30983 [  6666] By: jhi                                   on 2000/08/17  01:09:31
30984         Log: Subject: Re: [ID 20000816.006] [PATCH @6655] Shell.pm, bug fix, strict and OO Interface
30985              From: "Casey R. Tweten" <crt@kiski.net>
30986              Date: Wed, 16 Aug 2000 11:35:09 -0400 (EDT)
30987              Message-ID: <Pine.OSF.4.21.0008161132270.10885-100000@home.kiski.net>
30988      Branch: perl
30989            ! lib/Shell.pm
30990 ____________________________________________________________________________
30991 [  6665] By: gsar                                  on 2000/08/17  01:03:52
30992         Log: add "ok" targets from change#6632 in makefile.mk
30993      Branch: perl
30994            ! pod/perlport.pod win32/Makefile win32/makefile.mk
30995 ____________________________________________________________________________
30996 [  6664] By: gsar                                  on 2000/08/17  00:56:11
30997         Log: avoid warnings from dense compiler
30998      Branch: perl
30999            ! win32/win32.c
31000 ____________________________________________________________________________
31001 [  6663] By: jhi                                   on 2000/08/17  00:51:49
31002         Log: Tweak the regex compilation errors once more.
31003      Branch: perl
31004            ! pod/perldiag.pod regcomp.c t/op/misc.t t/op/re_tests
31005            ! t/op/regmesg.t t/pragma/warn/regcomp
31006 ____________________________________________________________________________
31007 [  6662] By: gsar                                  on 2000/08/17  00:28:19
31008         Log: trailing new %ENV entries weren't being pushed into the real
31009              environment of subprocesses on Windows
31010      Branch: perl
31011            ! t/op/magic.t win32/perlhost.h
31012 ____________________________________________________________________________
31013 [  6661] By: gsar                                  on 2000/08/17  00:19:20
31014         Log: waitpid() now handles externally spawned pids correctly;
31015              fixes for backtick/wait/waitpid failures on Windows 9x
31016              
31017              these changes make the pid returned by process functions on
31018              Windows 9x always positive by clearing the high bit (which
31019              is always set on Win9x); pseudo-process PIDs are likewise
31020              always negative now on Win9x (just as on NT/2000)
31021      Branch: perl
31022            ! pp_sys.c win32/perlhost.h win32/win32.c
31023 ____________________________________________________________________________
31024 [  6660] By: jhi                                   on 2000/08/17  00:04:32
31025         Log: Retract #6645.
31026      Branch: perl
31027            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
31028            ! config_h.SH pod/perldelta.pod pod/perlfunc.pod sv.c
31029            ! t/op/sprintf.t
31030 ____________________________________________________________________________
31031 [  6659] By: gsar                                  on 2000/08/16  23:59:28
31032         Log: on windows, the return values from wait() and waitpid() don't
31033              match those of pseudo-pids
31034      Branch: perl
31035            ! pp_sys.c t/op/fork.t util.c win32/win32.c
31036 ____________________________________________________________________________
31037 [  6658] By: gsar                                  on 2000/08/16  23:56:14
31038         Log: pod nit seen in passing
31039      Branch: perl
31040            ! pod/perlfunc.pod
31041 ____________________________________________________________________________
31042 [  6657] By: gsar                                  on 2000/08/16  23:53:42
31043         Log: change#6328 could make close(SOCKET) return false on windows
31044              when it shouldn't
31045      Branch: perl
31046            ! win32/win32sck.c
31047 ____________________________________________________________________________
31048 [  6656] By: gsar                                  on 2000/08/16  23:46:57
31049         Log: check that the number pseudo children doesn't exceed
31050              MAXIMUM_WAIT_OBJECTS, which is currently 64 (avoids overflowing
31051              the WaitForMultipleObjects() limit that would cause wait()
31052              to crash)
31053              
31054              wait() and waitpid() could potentially be rewritten to use
31055              more than one thread to do the waiting to eliminate this
31056              limitation
31057      Branch: perl
31058            ! win32/perlhost.h
31059 ____________________________________________________________________________
31060 [  6655] By: jhi                                   on 2000/08/16  14:11:05
31061         Log: Update Changes.
31062      Branch: perl
31063            ! Changes patchlevel.h
31064 ____________________________________________________________________________
31065 [  6654] By: jhi                                   on 2000/08/16  14:10:12
31066         Log: Update to perldebtut 1.9, from Richard Foley.
31067      Branch: perl
31068            ! pod/perldebtut.pod
31069 ____________________________________________________________________________
31070 [  6653] By: jhi                                   on 2000/08/16  14:08:17
31071         Log: Change the regx compilation error markers to use = instead of <
31072              since pod makes using the latter quite messy.  Reported in
31073              ID 20000814.006 by Abigail and in
31074              Subject: Unknown escape E<> ?
31075              From: Lupe Christoph <lupe@lupe-christoph.de>
31076              Date: Fri, 11 Aug 2000 00:30:27 +0200
31077              Message-ID: <20000811003027.F17420@alanya.lupe-christoph.de>
31078      Branch: perl
31079            ! pod/perldiag.pod regcomp.c t/op/misc.t t/op/re_tests
31080            ! t/op/regmesg.t t/pragma/warn/regcomp
31081 ____________________________________________________________________________
31082 [  6652] By: jhi                                   on 2000/08/16  13:25:31
31083         Log: Change the perlbug address to perl.org since it's more forgiving.
31084              
31085              Subject: [ID 20000814.007] [PATCH] Email address in perlbug.
31086              From: abigail@foad.org
31087              Date: 15 Aug 2000 04:15:40 -0000
31088              Message-Id: <20000815041540.8633.qmail@foad.org>
31089      Branch: perl
31090            ! utils/perlbug.PL
31091 ____________________________________________________________________________
31092 [  6651] By: jhi                                   on 2000/08/16  13:22:35
31093         Log: Subject: [PATCH] Cwd::_backtick_pwd does not check return value
31094              From: Tim Jenness <timj@jach.hawaii.edu>
31095              Date: Tue, 15 Aug 2000 15:51:59 -1000 (HST)
31096              Message-ID: <Pine.LNX.4.21.0008151547560.1223-100000@lapaki.jach.hawaii.edu>
31097      Branch: perl
31098            ! lib/Cwd.pm
31099 ____________________________________________________________________________
31100 [  6650] By: jhi                                   on 2000/08/16  13:18:13
31101         Log: Update to CPAN 1.57.
31102              
31103              Subject: Re: [PATCH] Cwd::_backtick_pwd does not check return value
31104              From: andreas.koenig@anima.de (Andreas J. Koenig)
31105              Date: 16 Aug 2000 15:09:46 +0200
31106              Message-ID: <m3k8dh5p45.fsf@ak-71.mind.de>
31107      Branch: perl
31108            ! lib/CPAN.pm
31109 ____________________________________________________________________________
31110 [  6649] By: jhi                                   on 2000/08/16  13:12:31
31111         Log: Subject: [ID 20000324.040] minor fix to perlhpux.pod
31112              From: "Larry W. Virden" <lvirden@cas.org>
31113              Date: Fri, 24 Mar 2000 14:25:37 -0500 (EST)
31114              Message-Id: <200003241925.OAA27985@lwv26awu.cas.org>
31115      Branch: perl
31116            ! README.hpux
31117 ____________________________________________________________________________
31118 [  6648] By: jhi                                   on 2000/08/16  13:03:53
31119         Log: The numeric locale was reset to "C" by s?printf and never restored.
31120              
31121              Subject: [ID 20000809.003] setlocale(LC_NUMERIC...) produces different results in 5.005 and 5.6
31122              From: Christian Kirsch <ck@held.mind.de>
31123              Date: Wed, 9 Aug 2000 17:05:17 +0200
31124              Message-Id: <20000809170517.A25389@held>
31125              
31126              No test since adding the failing example to locale.t
31127              does not fail -- probably because the locale settings are so
31128              thoroughly tweaked by that time.  Running the example standalone
31129              does fail, though.  UPDATE: test case added at change #7540.
31130      Branch: perl
31131            ! dump.c perl.h pp.c pp_ctl.c sv.c
31132 ____________________________________________________________________________
31133 [  6647] By: jhi                                   on 2000/08/16  00:07:54
31134         Log: Update Changes and test semi-automatic patchlevel updating.
31135      Branch: perl
31136            ! Changes patchlevel.h
31137 ____________________________________________________________________________
31138 [  6646] By: jhi                                   on 2000/08/15  23:35:07
31139         Log: Fix a dependency problem.
31140              
31141              Subject: [PATCH: 6640] VMS Makefile.SH update
31142              From: Peter Prymmer <pvhp@forte.com>
31143              Date: Tue, 15 Aug 2000 16:31:34 -0700 (PDT)
31144              Message-ID: <Pine.OSF.4.10.10008151613140.141017-100000@aspara.forte.com>
31145      Branch: perl
31146            ! vms/descrip_mms.template
31147 ____________________________________________________________________________
31148 [  6645] By: jhi                                   on 2000/08/15  23:33:23
31149         Log: (Retracted by #6660)
31150              
31151              Subject: [PATCH perl-current] make s?printf() produce two exponent digits where possible
31152              From: Dominic Dunlop <domo@computer.org>
31153              Date: Tue, 15 Aug 2000 22:20:52 +0200
31154              Message-Id: <p04320403b5bf4c32d381@[192.168.1.4]>
31155      Branch: metaconfig/U/perl
31156            + d_printfed.U
31157      Branch: perl
31158            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
31159            ! config_h.SH pod/perldelta.pod pod/perlfunc.pod sv.c
31160            ! t/op/sprintf.t
31161 ____________________________________________________________________________
31162 [  6644] By: jhi                                   on 2000/08/15  21:17:20
31163         Log: Subject: [ID 20000815.014] [PATCH] INSTALL doesn't mention 64 bit support.
31164              From: abigail@foad.org
31165              Date: 15 Aug 2000 20:12:41 -0000
31166              Message-Id: <20000815201241.25556.qmail@foad.org>
31167      Branch: perl
31168            ! INSTALL
31169 ____________________________________________________________________________
31170 [  6643] By: jhi                                   on 2000/08/15  21:15:28
31171         Log: (an already applied patch)
31172      Branch: perl
31173            ! lib/CGI.pm
31174 ____________________________________________________________________________
31175 [  6642] By: gsar                                  on 2000/08/15  19:54:05
31176         Log: magic callbacks all need to have same type signature
31177      Branch: perl
31178            ! embed.pl mg.c proto.h
31179 ____________________________________________________________________________
31180 [  6641] By: jhi                                   on 2000/08/15  17:56:27
31181         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)
31182              From: Mike Guy <mjtg@cam.ac.uk>
31183              Message-Id: <E13OkU9-0006rb-00@libra.cus.cam.ac.uk>
31184              Date: Tue, 15 Aug 2000 18:26:45 +0100
31185              
31186              Only the peek.t part applied, not the hash quality part.
31187      Branch: perl
31188            ! t/lib/peek.t
31189 ____________________________________________________________________________
31190 [  6640] By: jhi                                   on 2000/08/15  16:37:37
31191         Log: Update Changes.
31192      Branch: perl
31193            ! Changes
31194 ____________________________________________________________________________
31195 [  6639] By: jhi                                   on 2000/08/15  16:34:55
31196         Log: Missed a file from #6638.
31197      Branch: perl
31198            ! lib/File/Temp.pm
31199 ____________________________________________________________________________
31200 [  6638] By: jhi                                   on 2000/08/15  16:33:19
31201         Log: Subject: [PATCH perl@6620] cygwin port
31202              From: "Fifer, Eric" <EFifer@sanwaint.com>
31203              Date: Tue, 15 Aug 2000 17:00:49 +0100
31204              Message-ID: <779F20BCCE5AD31186A50008C75D9979171779@silldn_mail1.sanwaint.com>
31205      Branch: perl
31206            ! README.cygwin hints/cygwin.sh pod/perlport.pod t/lib/b.t
31207 ____________________________________________________________________________
31208 [  6637] By: jhi                                   on 2000/08/15  16:29:22
31209         Log: Subject: [PATCH] debugger exit code should reflect user exit code
31210              From: Mike Guy <mjtg@cam.ac.uk>
31211              Date: Tue, 15 Aug 2000 16:55:59 +0100
31212              Message-Id: <E13Oj4J-0005FS-00@libra.cus.cam.ac.uk>
31213      Branch: perl
31214            ! lib/perl5db.pl
31215 ____________________________________________________________________________
31216 [  6636] By: jhi                                   on 2000/08/15  15:30:58
31217         Log: Update Changes.
31218      Branch: perl
31219            ! Changes
31220 ____________________________________________________________________________
31221 [  6635] By: jhi                                   on 2000/08/15  15:27:21
31222         Log: Use -Dusedevel; regen Configure and the respective Porting stuff.
31223      Branch: metaconfig
31224            ! U/mkglossary U/mksample
31225      Branch: metaconfig/U/perl
31226            ! Devel.U
31227      Branch: perl
31228            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
31229 ____________________________________________________________________________
31230 [  6634] By: jhi                                   on 2000/08/15  14:11:55
31231         Log: Don't blow limited stacks, a lower number is enough to
31232              tickle the lookbehind limit.
31233              
31234              Subject: [ID 20000815.007] Not OK: perl@6627 +SUIDMAIL on powerpc-machten 4.1.4 (UNINSTALLED) [PATCH]
31235              From: Dominic Dunlop <domo@computer.org>
31236              Date: Tue, 15 Aug 2000 13:51:24 +0200
31237              Message-Id: <p04320400b5bedcedaf22@[192.168.1.4]>
31238      Branch: perl
31239            ! t/op/regmesg.t
31240 ____________________________________________________________________________
31241 [  6633] By: jhi                                   on 2000/08/15  14:01:46
31242         Log: Subject: [ID 20000815.005] [PATCH] perldoc not looking in the right place for script pod
31243              From: Mike Guy <mjtg@cam.ac.uk>
31244              Date: Tue, 15 Aug 2000 12:10:50 +0100
31245              Message-Id: <E13OecM-0006nF-00@libra.cus.cam.ac.uk>
31246      Branch: perl
31247            ! utils/perldoc.PL
31248 ____________________________________________________________________________
31249 [  6632] By: jhi                                   on 2000/08/15  13:58:48
31250         Log: make ok etc also for win32.
31251              
31252              Subject: [ID 20000814.008] Not OK: perl v5.6.0 (6620) on MSWin32-x86 4.0 (UNINSTALLED)
31253              From: Prymmer/Kahn <pvhp@best.com>
31254              Date: Mon, 14 Aug 2000 22:42:06 -0700 (PDT)
31255              Message-Id: <Pine.BSF.4.21.0008142240280.3888-100000@shell8.ba.best.com>
31256      Branch: perl
31257            ! win32/Makefile
31258 ____________________________________________________________________________
31259 [  6631] By: jhi                                   on 2000/08/15  13:45:03
31260         Log: Update (kinda) to Test 1.14, from Joshua Pritikin.
31261      Branch: perl
31262            ! lib/Test.pm
31263 ____________________________________________________________________________
31264 [  6630] By: jhi                                   on 2000/08/15  03:25:09
31265         Log: Update Changes.
31266      Branch: perl
31267            ! Changes
31268 ____________________________________________________________________________
31269 [  6629] By: jhi                                   on 2000/08/15  03:23:53
31270         Log: magic_regdatum_set() is void, not int.
31271      Branch: perl
31272            ! embed.pl mg.c proto.h
31273 ____________________________________________________________________________
31274 [  6628] By: jhi                                   on 2000/08/15  03:08:02
31275         Log: Make the user to give up his firstborn, err, to knowingly
31276              verify installing an unstable developer release.  Also bump
31277              the release to 5.7.0, but leave a patch tag in the local
31278              patches saying that this is not yet the real thing.
31279      Branch: metaconfig
31280            ! U/modified/Instruct.U
31281      Branch: metaconfig/U/perl
31282            + Devel.U
31283      Branch: perl
31284            ! Configure patchlevel.h
31285 ____________________________________________________________________________
31286 [  6627] By: jhi                                   on 2000/08/14  22:32:52
31287         Log: README.os2 update.
31288              
31289              Subject: Re: [PATCH perl-current] Make op/sprintf.t more comprehensive,
31290              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
31291              Date: Wed, 02 Aug 2000 21:55:09 -0700
31292              Message-ID: <tsPi5gzkgegX092yn@efn.org>
31293      Branch: perl
31294            ! README.os2
31295 ____________________________________________________________________________
31296 [  6626] By: jhi                                   on 2000/08/14  21:00:02
31297         Log: Subject: Re: File::Temp problems on VMS in bleedperl
31298              From: Tim Jenness <timj@jach.hawaii.edu>
31299              cc: vmsperl@perl.org
31300              Date: Mon, 14 Aug 2000 09:44:33 -1000 (HST)
31301              Message-ID: <Pine.LNX.4.21.0008140941300.6753-100000@lapaki.jach.hawaii.edu>
31302      Branch: perl
31303            ! lib/File/Temp.pm t/lib/ftmp-tempfile.t
31304 ____________________________________________________________________________
31305 [  6625] By: jhi                                   on 2000/08/14  20:52:16
31306         Log: Add SUIDMAIL as was done for the CERT alert.
31307      Branch: perl
31308            ! patchlevel.h
31309 ____________________________________________________________________________
31310 [  6624] By: jhi                                   on 2000/08/14  20:48:50
31311         Log: Subject: sfio2000
31312              From: Daniel Muino <dmuino@afip.gov.ar>
31313              Date: Mon, 14 Aug 2000 16:58:11 -0300
31314              Message-ID: <20000814165811.B16368@con2-dgi>
31315      Branch: perl
31316            ! perlsdio.h perlsfio.h
31317 ____________________________________________________________________________
31318 [  6623] By: jhi                                   on 2000/08/14  20:47:36
31319         Log: Subject: warning: storage class after type is obsolescent
31320              From: Daniel Muino <dmuino@afip.gov.ar>
31321              Date: Mon, 14 Aug 2000 16:42:47 -0300
31322              Message-ID: <20000814164247.A16368@con2-dgi>
31323      Branch: perl
31324            ! regcomp.pl regnodes.h
31325 ____________________________________________________________________________
31326 [  6622] By: jhi                                   on 2000/08/14  20:43:05
31327         Log: Subject: [ID 20000814.002] [Patch] Email address in Changes.
31328              From: abigail@foad.org
31329              Date: 14 Aug 2000 20:00:10 -0000
31330              Message-Id: <20000814200010.27271.qmail@foad.org>
31331      Branch: perl
31332            ! Changes
31333 ____________________________________________________________________________
31334 [  6621] By: jhi                                   on 2000/08/14  15:23:05
31335         Log: Update Changes.
31336      Branch: perl
31337            ! Changes
31338 ____________________________________________________________________________
31339 [  6620] By: jhi                                   on 2000/08/14  15:22:14
31340         Log: Subject: Re: [PATCH] @+, @- readonly
31341              From: Mike Guy <mjtg@cam.ac.uk>
31342              Date: Mon, 14 Aug 2000 15:26:55 +0100
31343              Message-Id: <E13OLCZ-00020N-00@libra.cus.cam.ac.uk>
31344      Branch: perl
31345            ! XSUB.h embed.h embed.pl globvar.sym gv.c mg.c perl.h proto.h
31346            ! sv.c t/op/pat.t
31347 ____________________________________________________________________________
31348 [  6619] By: jhi                                   on 2000/08/14  14:12:08
31349         Log: Update Changes.
31350      Branch: perl
31351            ! Changes
31352 ____________________________________________________________________________
31353 [  6618] By: jhi                                   on 2000/08/14  14:09:34
31354         Log: For now remove the mail code.
31355      Branch: perl
31356            ! perl.c
31357 ____________________________________________________________________________
31358 [  6617] By: jhi                                   on 2000/08/14  14:08:28
31359         Log: Drop the eg/ mentions and also mention the recent suidperl thing.
31360      Branch: perl
31361            ! jpl/README lib/ExtUtils/Embed.pm pod/perlcompile.pod
31362            ! pod/perlfaq8.pod pod/perlsec.pod
31363 ____________________________________________________________________________
31364 [  6616] By: jhi                                   on 2000/08/14  14:00:11
31365         Log: Subject: Re: [ID 20000807.003] [PATCH] Debugger treatment of condition "0"
31366              From: Mike Guy <mjtg@cam.ac.uk>
31367              Date: Mon, 14 Aug 2000 08:26:02 +0100
31368              Message-Id: <E13OEdG-0007LT-00@libra.cus.cam.ac.uk>
31369      Branch: perl
31370            ! lib/perl5db.pl
31371 ____________________________________________________________________________
31372 [  6615] By: jhi                                   on 2000/08/14  13:58:45
31373         Log: Subject: [PATCH] @+, @- readonly (was Re: @<punct> interpolating in "")
31374              From: Mike Guy <mjtg@cam.ac.uk>
31375              Date: Mon, 14 Aug 2000 08:04:22 +0100
31376              Message-Id: <E13OEII-0007B2-00@libra.cus.cam.ac.uk>
31377      Branch: perl
31378            ! gv.c mg.c t/op/pat.t
31379 ____________________________________________________________________________
31380 [  6614] By: jhi                                   on 2000/08/14  13:56:45
31381         Log: Subject: Test fails / warnings with perl-current #6612
31382              From: Mike Guy <mjtg@cam.ac.uk>
31383              Date: Mon, 14 Aug 2000 07:57:23 +0100
31384              Message-Id: <E13OEBX-000776-00@libra.cus.cam.ac.uk>
31385      Branch: perl
31386            ! t/lib/b.t t/lib/peek.t
31387 ____________________________________________________________________________
31388 [  6613] By: jhi                                   on 2000/08/14  13:45:33
31389         Log: VMS configure.com update continues.
31390      Branch: perl
31391            - vms/configure.com
31392            ! MANIFEST configure.com
31393 ____________________________________________________________________________
31394 [  6612] By: jhi                                   on 2000/08/13  22:13:35
31395         Log: Update Changes.
31396      Branch: perl
31397            ! Changes
31398 ____________________________________________________________________________
31399 [  6611] By: jhi                                   on 2000/08/13  16:21:45
31400         Log: Upgrade to CGI 2.71, from Lincoln Stein.
31401      Branch: perl
31402            ! lib/CGI.pm lib/CGI/Cookie.pm t/lib/cgi-function.t
31403 ____________________________________________________________________________
31404 [  6610] By: jhi                                   on 2000/08/13  15:09:16
31405         Log: Subject: [PATCH] t/op/regmesg.t fails if REG_INFTY set
31406              From: Mike Guy <mjtg@cam.ac.uk>
31407              Date: Sun, 13 Aug 2000 13:45:51 +0100
31408              Message-Id: <E13Nx9D-00027M-00@libra.cus.cam.ac.uk>
31409      Branch: perl
31410            ! t/op/regmesg.t
31411 ____________________________________________________________________________
31412 [  6609] By: jhi                                   on 2000/08/13  14:31:26
31413         Log: Andreas says that 1.56 is fine, so reverting back to it.
31414      Branch: perl
31415            ! lib/CPAN.pm
31416 ____________________________________________________________________________
31417 [  6608] By: jhi                                   on 2000/08/13  05:34:20
31418         Log: Update Changes.
31419      Branch: perl
31420            ! Changes
31421 ____________________________________________________________________________
31422 [  6607] By: jhi                                   on 2000/08/13  05:32:01
31423         Log: Put back the \z changes of #5406 to CPAN.pm.
31424      Branch: perl
31425            ! lib/CPAN.pm
31426 ____________________________________________________________________________
31427 [  6606] By: jhi                                   on 2000/08/13  05:20:16
31428         Log: Fix-n-skip the tests under 5005threads.
31429      Branch: perl
31430            ! t/lib/b.t
31431 ____________________________________________________________________________
31432 [  6605] By: jhi                                   on 2000/08/13  05:07:48
31433         Log: Fix the test for 5005threads.
31434      Branch: perl
31435            ! t/lib/peek.t
31436 ____________________________________________________________________________
31437 [  6604] By: jhi                                   on 2000/08/13  03:35:37
31438         Log: Should have deleted this in #6603.
31439      Branch: perl
31440            - vms/subconfigure.com
31441 ____________________________________________________________________________
31442 [  6603] By: jhi                                   on 2000/08/12  18:29:32
31443         Log: Rewrite of vms/subconfigure.com as configure.com,
31444              from Peter Prymmer and the vmsperl crew.
31445      Branch: perl
31446            + vms/configure.com
31447            ! MANIFEST
31448 ____________________________________________________________________________
31449 [  6602] By: jhi                                   on 2000/08/11  13:00:01
31450         Log: PlainText.pm is dead.
31451      Branch: perl
31452            - lib/Pod/PlainText.pm
31453            ! MANIFEST
31454 ____________________________________________________________________________
31455 [  6601] By: jhi                                   on 2000/08/11  04:06:45
31456         Log: Update Changes.
31457      Branch: perl
31458            ! Changes
31459 ____________________________________________________________________________
31460 [  6600] By: jhi                                   on 2000/08/11  04:06:10
31461         Log: Add a few missing files, update MANIFEST.
31462      Branch: perl
31463            + lib/CGI/eg/make_links.pl lib/CGI/eg/wilogo.gif
31464            + lib/Pod/PlainText.pm t/pod/find.t
31465            ! MANIFEST t/op/regmesg.t
31466 ____________________________________________________________________________
31467 [  6599] By: jhi                                   on 2000/08/11  03:31:10
31468         Log: Add Perl debugging tutorial, regen toc. 
31469              
31470              Subject: perldebtut.pod
31471              From: Richard Foley <Richard.Foley@m.dasa.de>
31472              Date: Wed, 09 Aug 2000 10:17:15 +0200
31473              Message-id: <3991138B.262247B8@m.dasa.de>
31474      Branch: perl
31475            + pod/perldebtut.pod
31476            ! MANIFEST pod/buildtoc.PL pod/perl.pod pod/perltoc.pod
31477 ____________________________________________________________________________
31478 [  6598] By: jhi                                   on 2000/08/11  02:48:56
31479         Log: tiny Changes edit
31480      Branch: perl
31481            ! Changes
31482 ____________________________________________________________________________
31483 [  6597] By: jhi                                   on 2000/08/11  02:39:04
31484         Log: Tests for #6589.
31485              
31486              Subject: Re: B::Deparse was Re: [ID 20000808.005] refs to returned lvalues are lvalues??
31487              From: simon@brecon.co.uk (Simon Cozens)
31488              Date: 11 Aug 2000 02:24:52 GMT
31489              Message-ID: <slrn8p6ovk.5sh.simon@justanother.perlhacker.org>
31490      Branch: perl
31491            ! t/lib/b.t
31492 ____________________________________________________________________________
31493 [  6596] By: jhi                                   on 2000/08/11  01:50:07
31494         Log: Update Changes.
31495      Branch: perl
31496            ! Changes
31497 ____________________________________________________________________________
31498 [  6595] By: jhi                                   on 2000/08/11  01:47:16
31499         Log: nitfix
31500      Branch: perl
31501            ! Changes
31502 ____________________________________________________________________________
31503 [  6594] By: jhi                                   on 2000/08/11  01:36:16
31504         Log: Subject: Getting perlio and threads to compile
31505              From: Lupe Christoph <lupe@lupe-christoph.de>
31506              Date: Wed, 9 Aug 2000 11:35:54 +0200
31507              Message-ID: <20000809113554.G23160@alanya.lupe-christoph.de>
31508              
31509              (the Solaris version changes in Configure skipped)
31510      Branch: perl
31511            ! hints/solaris_2.sh thread.h
31512 ____________________________________________________________________________
31513 [  6593] By: jhi                                   on 2000/08/11  01:30:16
31514         Log: Subject: Re: [ID 20000730.003] utf8::length() bad
31515              From: simon@brecon.co.uk (Simon Cozens)
31516              Date: 1 Aug 2000 06:55:19 GMT
31517              Message-ID: <slrn8oct2n.19l.simon@justanother.perlhacker.org>
31518      Branch: perl
31519            ! lib/utf8.pm
31520 ____________________________________________________________________________
31521 [  6592] By: jhi                                   on 2000/08/11  01:26:39
31522         Log: Subject: Re: [ID 20000809.006] Debugger lost the ability to see $1 et al
31523              From: Peter Scott <Peter@PeterScott.com>
31524              Date: Thu, 10 Aug 2000 08:23:27 -0700
31525              Message-Id: <4.3.2.7.2.20000810081749.00aa92c0@peterscott.com>
31526      Branch: perl
31527            ! lib/perl5db.pl
31528 ____________________________________________________________________________
31529 [  6591] By: jhi                                   on 2000/08/11  01:22:02
31530         Log: Subject: Re: [ID 20000809.005] trouble with long string and /m modifier - uninitialized value 
31531              From: Hugo <hv@crypt.compulink.co.uk>
31532              Date: Thu, 10 Aug 2000 19:23:04 +0100
31533              Message-Id: <200008101823.TAA23580@crypt.compulink.co.uk>
31534      Branch: perl
31535            ! regexec.c t/op/pat.t
31536 ____________________________________________________________________________
31537 [  6590] By: jhi                                   on 2000/08/11  01:19:19
31538         Log: Preprocessing and postprocessing for File::Find.
31539              
31540              Subject: Patch to Find::File.pm to allow alphabetical results
31541              From: Joe Smith <jsmith@inwap.com>
31542              Date: Wed, 9 Aug 2000 02:44:54 -0700
31543              Message-Id: <20000809024453.A21193@tardis.Tymnet.COM>
31544      Branch: perl
31545            ! lib/File/Find.pm
31546 ____________________________________________________________________________
31547 [  6589] By: jhi                                   on 2000/08/11  01:12:39
31548         Log: B::Deparse didn't do sub attributes.
31549              
31550              Subject: B::Deparse was Re: [ID 20000808.005] refs to returned lvalues are lvalues??
31551              From: simon@brecon.co.uk (Simon Cozens)
31552              Date: 9 Aug 2000 04:49:20 GMT
31553              Message-ID: <slrn8p1omg.beq.simon@justanother.perlhacker.org>
31554      Branch: perl
31555            ! ext/B/B.xs ext/B/B/Deparse.pm ext/B/defsubs_h.PL
31556 ____________________________________________________________________________
31557 [  6588] By: jhi                                   on 2000/08/11  01:06:40
31558         Log: Subject: debugger "d" command doesnt check line number
31559              From: Mike Guy <mjtg@cam.ac.uk>
31560              Date: Tue, 08 Aug 2000 21:54:29 +0100
31561              Message-Id: <E13MGOL-000053-00@libra.cus.cam.ac.uk>
31562      Branch: perl
31563            ! lib/perl5db.pl mg.c pod/perldiag.pod
31564 ____________________________________________________________________________
31565 [  6587] By: jhi                                   on 2000/08/11  00:45:03
31566         Log: sleep(1) does not necessarily return 1.
31567              
31568              Subject: [PATCH bleadperl] op/lex_assign.t  
31569              From: Hugo <hv@crypt.compulink.co.uk>
31570              Date: Thu, 03 Aug 2000 14:34:22 +0100        
31571              Message-Id: <200008031334.OAA03379@crypt.compulink.co.uk>
31572      Branch: perl
31573            ! t/op/lex_assign.t
31574 ____________________________________________________________________________
31575 [  6586] By: jhi                                   on 2000/08/11  00:31:50
31576         Log: Document the IO::Select timeout.
31577      Branch: perl
31578            ! ext/IO/lib/IO/Select.pm
31579 ____________________________________________________________________________
31580 [  6585] By: jhi                                   on 2000/08/11  00:13:54
31581         Log: Forgot contributor.
31582      Branch: perl
31583            ! Changes
31584 ____________________________________________________________________________
31585 [  6584] By: jhi                                   on 2000/08/11  00:09:19
31586         Log: detypo
31587      Branch: perl
31588            ! Changes
31589 ____________________________________________________________________________
31590 [  6583] By: jhi                                   on 2000/08/11  00:07:53
31591         Log: Fixes to looking-like-number to keep behaviour as it was in 5.005_03.
31592              
31593              Subject: Re: [ID 20000810.002] $a["1foo"] same as $a[0]
31594              From: Mike Guy <mjtg@cam.ac.uk> 
31595              Date: Thu, 10 Aug 2000 15:50:54 +0100
31596              Message-Id: <E13Mtfa-0005Ge-00@libra.cus.cam.ac.uk>
31597      Branch: perl
31598            ! sv.c t/op/int.t
31599 ____________________________________________________________________________
31600 [  6582] By: jhi                                   on 2000/08/10  23:29:32
31601         Log: Update Changes.
31602      Branch: perl
31603            ! Changes
31604 ____________________________________________________________________________
31605 [  6581] By: jhi                                   on 2000/08/10  23:26:16
31606         Log: Put back the std @INC thing.
31607      Branch: perl
31608            ! t/lib/ansicolor.t t/lib/cgi-form.t t/lib/cgi-function.t
31609            ! t/lib/cgi-html.t t/lib/cgi-pretty.t t/lib/cgi-request.t
31610            ! t/lib/gol-basic.t t/lib/gol-compat.t t/lib/gol-linkage.t
31611            ! t/lib/gol-oo.t
31612 ____________________________________________________________________________
31613 [  6580] By: jhi                                   on 2000/08/10  23:03:34
31614         Log: Update to CGI 2.70, from Lincoln Stein.
31615      Branch: perl
31616            ! lib/CGI.pm lib/CGI/Carp.pm lib/CGI/Cookie.pm lib/CGI/Pretty.pm
31617            ! lib/CGI/Push.pm lib/CGI/Util.pm t/lib/cgi-form.t
31618            ! t/lib/cgi-function.t t/lib/cgi-html.t t/lib/cgi-pretty.t
31619            ! t/lib/cgi-request.t
31620 ____________________________________________________________________________
31621 [  6579] By: jhi                                   on 2000/08/10  22:41:50
31622         Log: Update to CPAN 1.56, from Andreas König.
31623      Branch: perl
31624            ! lib/CPAN.pm lib/CPAN/FirstTime.pm
31625 ____________________________________________________________________________
31626 [  6578] By: jhi                                   on 2000/08/10  22:38:13
31627         Log: Update to Pod::Parser 1.17, from Brad Appleton.
31628      Branch: perl
31629            ! lib/Pod/Checker.pm lib/Pod/Find.pm lib/Pod/InputObjects.pm
31630            ! lib/Pod/ParseUtils.pm lib/Pod/Parser.pm lib/Pod/Select.pm
31631            ! lib/Pod/Usage.pm pod/pod2usage.PL pod/podchecker.PL
31632            ! pod/podselect.PL t/pod/emptycmd.t t/pod/for.t t/pod/headings.t
31633            ! t/pod/include.t t/pod/included.t t/pod/lref.t
31634            ! t/pod/multiline_items.t t/pod/nested_items.t
31635            ! t/pod/nested_seqs.t t/pod/oneline_cmds.t t/pod/pod2usage.t
31636            ! t/pod/poderrs.t t/pod/poderrs.xr t/pod/podselect.t
31637            ! t/pod/special_seqs.t
31638 ____________________________________________________________________________
31639 [  6577] By: jhi                                   on 2000/08/10  22:35:41
31640         Log: Small AUTHORS and MAINTAIN updates.  Could do with big updates.
31641      Branch: perl
31642            ! AUTHORS MAINTAIN
31643 ____________________________________________________________________________
31644 [  6576] By: jhi                                   on 2000/08/10  22:24:54
31645         Log: Update to Getopt::Long 2.23_05, from Johan Vromans.
31646      Branch: perl
31647            + t/lib/gol-oo.t
31648            ! MANIFEST lib/Getopt/Long.pm lib/newgetopt.pl t/lib/gol-basic.t
31649            ! t/lib/gol-compat.t t/lib/gol-linkage.t
31650 ____________________________________________________________________________
31651 [  6575] By: jhi                                   on 2000/08/10  22:02:07
31652         Log: Update to Term::ANSIColor 1.03, from Russ Allbery.
31653      Branch: perl
31654            ! lib/Term/ANSIColor.pm t/lib/ansicolor.t
31655 ____________________________________________________________________________
31656 [  6574] By: jhi                                   on 2000/08/10  21:55:03
31657         Log: Iterating perl6 description.
31658      Branch: perl
31659            ! pod/perlfaq1.pod
31660 ____________________________________________________________________________
31661 [  6573] By: jhi                                   on 2000/08/10  21:48:26
31662         Log: Revert the sv.c part of #6559, a better fix is needed.
31663      Branch: perl
31664            ! sv.c
31665 ____________________________________________________________________________
31666 [  6572] By: jhi                                   on 2000/08/10  20:33:43
31667         Log: It's the 2ndO'ROSSC.
31668      Branch: perl
31669            ! pod/perlfaq1.pod
31670 ____________________________________________________________________________
31671 [  6571] By: jhi                                   on 2000/08/10  15:55:48
31672         Log: detypo
31673      Branch: perl
31674            ! pod/perlfaq1.pod
31675 ____________________________________________________________________________
31676 [  6570] By: jhi                                   on 2000/08/10  14:11:17
31677         Log: An exceptionally sticky typo.
31678      Branch: perl
31679            ! Changes
31680 ____________________________________________________________________________
31681 [  6569] By: jhi                                   on 2000/08/10  14:09:33
31682         Log: detypo (and test Changes updating script)
31683      Branch: perl
31684            ! Changes
31685 ____________________________________________________________________________
31686 [  6568] By: jhi                                   on 2000/08/10  14:07:07
31687         Log: Update Changes.
31688      Branch: perl
31689            ! Changes
31690 ____________________________________________________________________________
31691 [  6567] By: jhi                                   on 2000/08/10  14:06:19
31692         Log: Amend the description of Perl6.
31693              Subject: [PATCH Perl-5.6.0] perlfaq1.pod
31694              From: Elaine -HFB- Ashton <elaine@chaos.wustl.edu>
31695              Date: Wed, 9 Aug 2000 22:11:06 -0500
31696              Message-ID: <20000809221106.A12246@chaos.wustl.edu>
31697      Branch: perl
31698            ! pod/perlfaq1.pod
31699 ____________________________________________________________________________
31700 [  6566] By: jhi                                   on 2000/08/10  13:58:57
31701         Log: Subject: Remove dead entry in perldiag
31702              From: Mike Guy <mjtg@cam.ac.uk>
31703              Date: Thu, 10 Aug 2000 14:19:19 +0100
31704              Message-Id: <E13MsEx-00033G-00@libra.cus.cam.ac.uk>
31705      Branch: perl
31706            ! pod/perldiag.pod
31707 ____________________________________________________________________________
31708 [  6565] By: jhi                                   on 2000/08/10  13:51:48
31709         Log: Zero entries were skipped, fix from Adrian Goalby
31710              <argoalby@yahoo.co.uk>
31711      Branch: perl
31712            ! lib/unicode/Number.pl lib/unicode/mktables.PL
31713 ____________________________________________________________________________
31714 [  6564] By: jhi                                   on 2000/08/10  13:00:12
31715         Log: Subject: [PATCH 5.6.0] cygwin port
31716              From: "Fifer, Eric" <EFifer@sanwaint.com>
31717              Date: Thu, 10 Aug 2000 13:15:36 +0100
31718              Message-ID: <779F20BCCE5AD31186A50008C75D997917176A@silldn_mail1.sanwaint.com>
31719      Branch: perl
31720            ! README.cygwin hints/cygwin.sh
31721 ____________________________________________________________________________
31722 [  6563] By: jhi                                   on 2000/08/10  12:55:16
31723         Log: Get back into sync with Jeffrey on the enhanced regex warnings.
31724      Branch: perl
31725            ! pod/perldiag.pod regcomp.c t/op/re_tests t/op/readdir.t
31726 ____________________________________________________________________________
31727 [  6562] By: gsar                                  on 2000/08/10  08:38:39
31728         Log: warn is a macro, avoid using at a variable to avoid warnings
31729              in some configurations; readdir.t is too conservative in
31730              estimating number of *.t's
31731      Branch: perl
31732            ! t/op/readdir.t util.c
31733 ____________________________________________________________________________
31734 [  6561] By: jhi                                   on 2000/08/09  23:35:42
31735         Log: Update Changes.
31736      Branch: perl
31737            ! Changes
31738 ____________________________________________________________________________
31739 [  6560] By: jhi                                   on 2000/08/09  23:05:47
31740         Log: Subject: Re: enhanced(?) regex error messages
31741              From: Jeffrey Friedl <jfriedl@yahoo-inc.com>
31742              Date: Wed, 9 Aug 2000 00:59:43 -0700 (PDT)
31743              Message-Id: <200008090759.AAA07144@ventrue.yahoo.com>
31744              
31745              (plus two small patches sent privately)
31746              (this still seems to leave few test failures)
31747      Branch: perl
31748            + t/op/regmesg.t
31749            ! MANIFEST pod/perldiag.pod regcomp.c regcomp.h t/op/misc.t
31750            ! t/pragma/warn/regcomp
31751 ____________________________________________________________________________
31752 [  6559] By: jhi                                   on 2000/08/09  20:41:18
31753         Log: (The fix did work but was not right, retracted in #6573)
31754              
31755              Subject: [ID 20000809.003] setlocale(LC_NUMERIC...) produces different results in 5.005 and 5.6
31756              From: Christian Kirsch <ck@held.mind.de>
31757              Date: Wed, 9 Aug 2000 17:05:17 +0200
31758              Message-Id: <20000809170517.A25389@held>
31759      Branch: perl
31760            ! sv.c t/pragma/locale.t
31761 ____________________________________________________________________________
31762 [  6558] By: jhi                                   on 2000/08/08  22:34:08
31763         Log: Tiny updates on the contributors list.
31764      Branch: perl
31765            ! Changes
31766 ____________________________________________________________________________
31767 [  6557] By: jhi                                   on 2000/08/08  19:34:28
31768         Log: Double check that we have a dirhandle.
31769      Branch: perl
31770            ! util.c
31771 ____________________________________________________________________________
31772 [  6556] By: jhi                                   on 2000/08/08  19:01:51
31773         Log: Delete eg as agreed at TPC3 (yes, 3).  Dusty, obsolete, non-w-clean.
31774              May be repopulated with fresh maintained examples.
31775      Branch: perl
31776            + lib/CGI/eg/RunMeFirst lib/CGI/eg/caution.xbm
31777            + lib/CGI/eg/clickable_image.cgi lib/CGI/eg/cookie.cgi
31778            + lib/CGI/eg/crash.cgi lib/CGI/eg/customize.cgi
31779            + lib/CGI/eg/diff_upload.cgi lib/CGI/eg/dna_small_gif.uu
31780            + lib/CGI/eg/file_upload.cgi lib/CGI/eg/frameset.cgi
31781            + lib/CGI/eg/index.html lib/CGI/eg/internal_links.cgi
31782            + lib/CGI/eg/javascript.cgi lib/CGI/eg/monty.cgi
31783            + lib/CGI/eg/multiple_forms.cgi lib/CGI/eg/nph-clock.cgi
31784            + lib/CGI/eg/nph-multipart.cgi lib/CGI/eg/popup.cgi
31785            + lib/CGI/eg/save_state.cgi lib/CGI/eg/tryit.cgi
31786            + lib/CGI/eg/wilogo_gif.uu
31787            - eg/ADB eg/README eg/cgi/RunMeFirst eg/cgi/caution.xbm
31788            - eg/cgi/clickable_image.cgi eg/cgi/cookie.cgi eg/cgi/crash.cgi
31789            - eg/cgi/customize.cgi eg/cgi/diff_upload.cgi
31790            - eg/cgi/dna_small_gif.uu eg/cgi/file_upload.cgi
31791            - eg/cgi/frameset.cgi eg/cgi/index.html
31792            - eg/cgi/internal_links.cgi eg/cgi/javascript.cgi
31793            - eg/cgi/monty.cgi eg/cgi/multiple_forms.cgi
31794            - eg/cgi/nph-clock.cgi eg/cgi/nph-multipart.cgi eg/cgi/popup.cgi
31795            - eg/cgi/save_state.cgi eg/cgi/tryit.cgi eg/cgi/wilogo_gif.uu
31796            - eg/changes eg/client eg/down eg/dus eg/findcp eg/findtar
31797            - eg/g/gcp eg/g/gcp.man eg/g/ged eg/g/ghosts eg/g/gsh
31798            - eg/g/gsh.man eg/muck eg/muck.man eg/myrup eg/nih eg/relink
31799            - eg/rename eg/rmfrom eg/scan/scan_df eg/scan/scan_last
31800            - eg/scan/scan_messages eg/scan/scan_passwd eg/scan/scan_ps
31801            - eg/scan/scan_sudo eg/scan/scan_suid eg/scan/scanner eg/server
31802            - eg/shmkill eg/sysvipc/README eg/sysvipc/ipcmsg
31803            - eg/sysvipc/ipcsem eg/sysvipc/ipcshm eg/travesty eg/unuc
31804            - eg/uudecode eg/van/empty eg/van/unvanish eg/van/vanexp
31805            - eg/van/vanish eg/who eg/wrapsuid
31806            ! MANIFEST
31807 ____________________________________________________________________________
31808 [  6555] By: jhi                                   on 2000/08/08  18:51:08
31809         Log: Delete chat2 as requested by Randal.
31810              
31811              Subject: Re: perlfaq8 coyness
31812              From: merlyn@stonehenge.com (Randal L. Schwartz) 
31813              Date: 15 May 2000 18:52:42 -0700 
31814              Message-ID: <m166sfl0r9.fsf@halfdome.holdit.com> 
31815      Branch: perl
31816            - lib/chat2.pl
31817            ! MANIFEST
31818 ____________________________________________________________________________
31819 [  6554] By: jhi                                   on 2000/08/08  18:31:35
31820         Log: Regen global.sym.
31821      Branch: perl
31822            ! global.sym
31823 ____________________________________________________________________________
31824 [  6553] By: jhi                                   on 2000/08/08  18:28:13
31825         Log: Do away with array context, from Daniel Chetlin <daniel@chetlin.com>
31826              (either perlbug or p5p ate the original), plus regen
31827              perlapi and perltoc. 
31828      Branch: perl
31829            ! Changes Changes5.004 README.Y2K cop.h emacs/cperl-mode.el
31830            ! ext/B/ramblings/flip-flop ext/Data/Dumper/Dumper.pm
31831            ! ext/IO/lib/IO/Handle.pm ext/IO/lib/IO/Socket.pm
31832            ! ext/Socket/Socket.pm lib/CGI.pm lib/CGI/Cookie.pm
31833            ! lib/File/Temp.pm lib/FileHandle.pm lib/Pod/Functions.pm
31834            ! lib/Pod/InputObjects.pm lib/Pod/LaTeX.pm lib/Text/Soundex.pm
31835            ! lib/perl5db.pl op.h opcode.pl perlapi.c perlapi.h
31836            ! pod/perlapi.pod pod/perltoc.pod t/lib/dosglob.t
31837            ! t/lib/ftmp-posix.t t/lib/glob-global.t t/op/grent.t
31838            ! t/op/pwent.t vms/ext/DCLsym/DCLsym.pm
31839 ____________________________________________________________________________
31840 [  6552] By: jhi                                   on 2000/08/08  18:06:29
31841         Log: Subject: [PATCH] Re: [ID 20000807.008] Double reads considered evil? (deja vu)
31842              From: Mike Guy <mjtg@cam.ac.uk>
31843              Message-Id: <E13MAj1-00038W-00@libra.cus.cam.ac.uk>
31844              Date: Tue, 08 Aug 2000 15:51:27 +0100
31845      Branch: perl
31846            ! doop.c sv.h t/op/join.t t/pragma/overload.t
31847 ____________________________________________________________________________
31848 [  6551] By: jhi                                   on 2000/08/08  18:01:11
31849         Log: Re-apply #6549.
31850      Branch: perl
31851            ! lib/perl5db.pl
31852 ____________________________________________________________________________
31853 [  6550] By: jhi                                   on 2000/08/08  17:43:08
31854         Log: Accidental retraction of #6549.
31855      Branch: perl
31856            ! lib/perl5db.pl
31857 ____________________________________________________________________________
31858 [  6549] By: jhi                                   on 2000/08/08  17:40:04
31859         Log: Subject: [ID 20000807.003] [PATCH] Debugger treatment of condition "0"
31860              From: Mike Guy <mjtg@cam.ac.uk>
31861              Date: Mon, 07 Aug 2000 21:49:58 +0100
31862              Message-Id: <E13LtqQ-0006Jc-00@libra.cus.cam.ac.uk>
31863      Branch: perl
31864            ! lib/perl5db.pl
31865 ____________________________________________________________________________
31866 [  6548] By: jhi                                   on 2000/08/08  17:37:57
31867         Log: Document here-doc better.
31868              
31869              Subject: Re: [ID 20000804.003] heredoc in s///e replacement
31870              From: Mike Guy <mjtg@cam.ac.uk>
31871              Date: Mon, 07 Aug 2000 14:02:09 +0100
31872              Message-Id: <E13LmXh-0006rM-00@libra.cus.cam.ac.uk>
31873      Branch: perl
31874            ! pod/perldata.pod
31875 ____________________________________________________________________________
31876 [  6547] By: jhi                                   on 2000/08/08  17:33:34
31877         Log: Subject: Patch against 5.6.0 to allow "-d:Module=arg,arg,arg"
31878              From: "Randy J. Ray" <rjray@redhat.com>
31879              Date: Mon, 07 Aug 2000 19:12:25 -0700
31880              Message-Id: <200008080212.TAA12784@tzimisce.soma.redhat.com>
31881      Branch: perl
31882            ! perl.c pod/perlrun.pod
31883 ____________________________________________________________________________
31884 [  6546] By: jhi                                   on 2000/08/08  17:29:26
31885         Log: Subject: Re: enhanced(?) regex error messages 
31886              From: Hugo <hv@crypt.compulink.co.uk>
31887              Date: Tue, 08 Aug 2000 03:25:51 +0100
31888              Message-Id: <200008080225.DAA10998@crypt.compulink.co.uk>
31889              
31890              plus Capitalize the error messages, plus perldiag them.
31891      Branch: perl
31892            ! pod/perldiag.pod regcomp.c t/op/pat.t t/op/re_tests
31893 ____________________________________________________________________________
31894 [  6545] By: jhi                                   on 2000/08/08  13:59:28
31895         Log: Augment #6539 a bit: don't croak if there's magic in the air.
31896              
31897              Subject: Re: [PATCH bleadperl-6530] bless, REF, and bless(REF, REF) 
31898              From: Hugo <hv@crypt.compulink.co.uk>
31899              Date: Tue, 08 Aug 2000 03:02:03 +0100
31900              Message-Id: <200008080202.DAA09147@crypt.compulink.co.uk>
31901      Branch: perl
31902            ! pp.c t/op/bless.t
31903 ____________________________________________________________________________
31904 [  6544] By: jhi                                   on 2000/08/07  21:11:52
31905         Log: Make the test -w clean.
31906      Branch: perl
31907            ! t/op/bless.t
31908 ____________________________________________________________________________
31909 [  6543] By: jhi                                   on 2000/08/07  19:49:53
31910         Log: use warnings instead of $^W.
31911      Branch: perl
31912            ! t/op/bless.t
31913 ____________________________________________________________________________
31914 [  6542] By: jhi                                   on 2000/08/07  17:41:41
31915         Log: Disable a portability warning Because We Know What We Are Doing.
31916      Branch: perl
31917            ! t/op/bless.t
31918 ____________________________________________________________________________
31919 [  6541] By: jhi                                   on 2000/08/07  17:29:51
31920         Log: Tiny tidying on report_evil_fh().
31921      Branch: perl
31922            ! util.c
31923 ____________________________________________________________________________
31924 [  6540] By: jhi                                   on 2000/08/07  16:37:38
31925         Log: Make regular expression parse error messages easier to understand.
31926              
31927              Subject: Re: enhanced(?) regex error messages
31928              From: Jeffrey Friedl <jfriedl@yahoo-inc.com>
31929              Date: Fri, 4 Aug 2000 23:34:07 -0700 (PDT)
31930              Message-Id: <200008050634.XAA20360@ventrue.yahoo.com>
31931      Branch: perl
31932            ! regcomp.c
31933 ____________________________________________________________________________
31934 [  6539] By: jhi                                   on 2000/08/07  16:12:27
31935         Log: Make bless(REF, REF) a fatal error, add bless tests.
31936              
31937              Subject: [PATCH bleadperl-6530] bless, REF, and bless(REF, REF)
31938              From: Hugo <hv@crypt.compulink.co.uk>
31939              Date: Mon, 07 Aug 2000 16:59:38 +0100
31940              Message-Id: <200008071559.QAA29541@crypt.compulink.co.uk>
31941      Branch: perl
31942            + t/op/bless.t
31943            ! MANIFEST pod/perldiag.pod pp.c sv.c
31944 ____________________________________________________________________________
31945 [  6538] By: jhi                                   on 2000/08/07  15:59:43
31946         Log: Subject: [ID 20000803.006] 'use lib ...' doesn't behave as documented
31947              From: Tim Conrow <tim@spindrift.srl.caltech.edu>
31948              Date: Thu, 3 Aug 2000 14:29:21 -0700
31949              Message-Id: <200008032129.OAA27898@spindrift.caltech.edu>
31950      Branch: perl
31951            ! lib/lib_pm.PL
31952 ____________________________________________________________________________
31953 [  6537] By: jhi                                   on 2000/08/07  15:47:18
31954         Log: Retract #6419 for now since it breaks in AFS and MachTen.
31955      Branch: perl
31956            ! lib/Cwd.pm
31957 ____________________________________________________________________________
31958 [  6536] By: jhi                                   on 2000/08/07  15:05:29
31959         Log: Plug the security hole described in the Aug 05 2000 bugtraq message
31960              "sperl 5.00503 (and newer ;) exploit" by Michal Zalewski.
31961              The security hole exists only in suidperls, which isn't
31962              installed or even built by default.
31963      Branch: perl
31964            ! perl.c
31965 ____________________________________________________________________________
31966 [  6535] By: jhi                                   on 2000/08/07  14:45:14
31967         Log: tr memory corruption fix from Simon Cozens.
31968      Branch: perl
31969            ! doop.c
31970 ____________________________________________________________________________
31971 [  6534] By: jhi                                   on 2000/08/06  11:38:16
31972         Log: Document a bit that UDP is not what you might think.
31973              
31974              Subject: Re: IO::Socket::INET bug sending large UDP packets/fragmentation
31975              From: Lupe Christoph <lupe@lupe-christoph.de>
31976              Message-ID: <20000724085915.B13172@alanya.lupe-christoph.de>
31977              Date: Mon, 24 Jul 2000 08:59:15 +0200
31978      Branch: perl
31979            ! pod/perlipc.pod
31980 ____________________________________________________________________________
31981 [  6533] By: jhi                                   on 2000/08/06  11:35:01
31982         Log: Subject: [PATCH] perlfunc.pod use documentation (5.6.0)
31983              From: Jeff Pinyan <jeffp@hut.crusoe.net>
31984              Date: Sat, 5 Aug 2000 00:22:01 -0400 (EDT)
31985              Message-ID: <Pine.BSF.3.96.1000805002052.23260A-100000@hut.crusoe.net>
31986      Branch: perl
31987            ! pod/perlfunc.pod
31988 ____________________________________________________________________________
31989 [  6532] By: jhi                                   on 2000/08/06  03:45:41
31990         Log: Have symbols for the IoTYPEs.
31991      Branch: perl
31992            ! doio.c pp_ctl.c pp_sys.c sv.h toke.c util.c
31993 ____________________________________________________________________________
31994 [  6531] By: jhi                                   on 2000/08/06  01:33:55
31995         Log: Continue fixing the io warnings.  This also
31996              sort of fixes bug ID 20000802.003: the core dump
31997              is no more.  Whether the current behaviour is correct
31998              (giving a warning: "Not a format reference"), is another matter.
31999      Branch: perl
32000            ! doio.c pod/perldiag.pod pp_hot.c pp_sys.c t/pragma/warn/doio
32001            ! t/pragma/warn/pp_hot t/pragma/warn/pp_sys util.c
32002 ____________________________________________________________________________
32003 [  6530] By: jhi                                   on 2000/08/05  21:33:12
32004         Log: Change the Policy policy: now -Dprefix= with an existing
32005              Policy.sh and prefix == siteprefix == vendorprefix, then all
32006              of them follow along the new prefix.
32007              
32008              Subject: Re: [ID 20000508.002] -Dprefix completely broken [PATCH]
32009              From: Andy Dougherty <doughera@lafayette.edu>
32010              Date: Fri, 4 Aug 2000 14:53:50 -0400 (EDT)
32011              Message-ID: <Pine.SOL.4.10.10008041440560.17981-100000@maxwell.phys.lafayette.edu>
32012      Branch: perl
32013            ! Policy_sh.SH
32014 ____________________________________________________________________________
32015 [  6529] By: jhi                                   on 2000/08/05  18:57:28
32016         Log: Zap lib/Sys directory when cleaning up.
32017      Branch: perl
32018            ! Makefile.SH
32019 ____________________________________________________________________________
32020 [  6528] By: jhi                                   on 2000/08/05  18:40:44
32021         Log: Essential prototype changes were missing from #6527.
32022              Also make report_evil_fh() more bomb-proof.
32023      Branch: perl
32024            ! embed.h util.c
32025 ____________________________________________________________________________
32026 [  6527] By: jhi                                   on 2000/08/05  03:22:05
32027         Log: Subject: [ID 20000724.004] Perl interpreter segfault when using built-in flock
32028              From: "Ronald F. Guilmette" <rfg@monkeys.com>
32029              Date: Mon, 24 Jul 2000 15:47:00 -0700 (PDT)
32030              Message-Id: <200007242247.PAA52177@monkeys.com>
32031      Branch: perl
32032            ! embed.pl pp_hot.c pp_sys.c proto.h t/pragma/warn/pp_sys util.c
32033 ____________________________________________________________________________
32034 [  6526] By: jhi                                   on 2000/08/04  21:23:27
32035         Log: gcc versions might have (parentheses) in them.
32036      Branch: metaconfig/U/perl
32037            ! gccvers.U
32038      Branch: perl
32039            ! Configure config_h.SH
32040 ____________________________________________________________________________
32041 [  6525] By: jhi                                   on 2000/08/04  20:23:12
32042         Log: Weed buglets pointed out by
32043              
32044              From: Lupe Christoph <lupe@lupe-christoph.de>
32045              Subject: Re: [ID 20000803.005] miniperl aborts during Perl make
32046              Date: Fri, 4 Aug 2000 17:34:39 +0200
32047              Message-ID: <20000804173439.L8087@alanya.lupe-christoph.de>
32048      Branch: metaconfig/U/perl
32049            ! gccvers.U uselfs.U
32050      Branch: perl
32051            ! Configure config_h.SH
32052 ____________________________________________________________________________
32053 [  6524] By: jhi                                   on 2000/08/04  19:02:08
32054         Log: Warn under -w if lstat(FH) is attempted.
32055              
32056              Subject: [ID 20000421.003] perlfunc says you can lstat a file handle but you cannot
32057              From: "Todd C. Miller" <Todd.Miller@courtesan.com> 
32058              Date: Fri, 21 Apr 2000 10:43:46 -0600 (MDT) 
32059              Message-Id: <200004211643.e3LGhkX24720@xerxes.courtesan.com> 
32060      Branch: perl
32061            ! pod/perldiag.pod pod/perlfunc.pod pp_sys.c
32062            ! t/pragma/warn/pp_sys
32063 ____________________________________________________________________________
32064 [  6523] By: jhi                                   on 2000/08/04  12:31:11
32065         Log: Subject: New perlcc, take 2
32066              From: simon@brecon.co.uk (Simon Cozens)
32067              Date: 4 Aug 2000 06:21:04 GMT
32068              Message-ID: <slrn8oko6g.da2.simon@justanother.perlhacker.org>
32069      Branch: perl
32070            ! utils/perlcc.PL
32071 ____________________________________________________________________________
32072 [  6522] By: jhi                                   on 2000/08/04  12:26:33
32073         Log: Subject: Re: Array vs. List context
32074              From: Daniel Chetlin <daniel@chetlin.com>
32075              Date: Fri, 4 Aug 2000 00:22:44 -0700
32076              Message-ID: <20000804002244.A5924@ilmd.chetlin.org>
32077      Branch: perl
32078            ! pod/perlapi.pod pod/perlcall.pod pod/perlembed.pod
32079            ! pod/perlfaq4.pod
32080 ____________________________________________________________________________
32081 [  6521] By: jhi                                   on 2000/08/04  12:22:38
32082         Log: Subject: [ID 20000804.002] configure.gnu and arguments with whitespace characters
32083              From: Raymund Will <ray@caldera.de>
32084              Date: Fri, 4 Aug 2000 12:07:09 +0200
32085              Message-Id: <20000804120709.A14982@caldera.de>
32086      Branch: perl
32087            ! configure.gnu
32088 ____________________________________________________________________________
32089 [  6520] By: jhi                                   on 2000/08/04  04:09:06
32090         Log: After the #6519 a warning about stat() is just that,
32091              not about a filetest, which now have their own warning.
32092      Branch: perl
32093            ! pod/perldiag.pod
32094 ____________________________________________________________________________
32095 [  6519] By: jhi                                   on 2000/08/04  04:06:30
32096         Log: In the warnings call filehandles consistently so;
32097              add "unopened" warning for stat().
32098      Branch: perl
32099            ! doio.c pod/perldiag.pod pp_sys.c t/pragma/warn/doio
32100            ! t/pragma/warn/pp_sys
32101 ____________________________________________________________________________
32102 [  6518] By: jhi                                   on 2000/08/04  02:55:35
32103         Log: Subject: Minor tweak to perlvar.pod
32104              From: "Stephen P. Potter" <spp@ds.net>
32105              Date: Tue, 18 Apr 2000 09:26:03 -0400
32106              Message-Id: <200004181326.JAA01560@spp.users.ds.net>
32107      Branch: perl
32108            ! pod/perlvar.pod
32109 ____________________________________________________________________________
32110 [  6517] By: jhi                                   on 2000/08/04  02:50:08
32111         Log: Subject: [ID 19990721.004] Documentation bug in perlfunc
32112              From: "Clinton Pierce" <cpierce1@ford.com>
32113              Date: Wed, 21 Jul 1999 16:45:31 -0400
32114              Message-Id: <199907212049.QAA12875@mailfw3.ford.com>
32115              
32116              Fix by Stephen Potter (visible in the bug db but not in p5p?)
32117      Branch: perl
32118            ! pod/perlfunc.pod pod/perlop.pod
32119 ____________________________________________________________________________
32120 [  6516] By: jhi                                   on 2000/08/04  02:09:25
32121         Log: This is 6512.  Really.
32122      Branch: perl
32123            ! dump.c
32124 ____________________________________________________________________________
32125 [  6515] By: jhi                                   on 2000/08/04  01:25:50
32126         Log: mention the idea of @( and @)
32127      Branch: perl
32128            ! Todo-5.6
32129 ____________________________________________________________________________
32130 [  6514] By: bailey                                on 2000/08/04  01:18:46
32131         Log: YA resync with mainstem, including VMS patches from others
32132      Branch: vmsperl
32133           +> (branch 48 files)
32134            - lib/lib.pm pod/Makefile pod/Win32.pod pod/buildtoc
32135           !> (integrate 354 files)
32136 ____________________________________________________________________________
32137 [  6513] By: jhi                                   on 2000/08/04  01:18:18
32138         Log: Subject: [ID 20000802.004] Tests op/grent.t and op/pwent.t fail unnecessarily
32139              From: Mark Dickinson <dickins3@fas.harvard.edu>
32140              Date: Wed, 2 Aug 2000 13:25:07 -0400 (EDT)
32141              Message-Id: <Pine.OSF.4.10.10008021321380.32190-200000@is07.fas.harvard.edu>
32142      Branch: perl
32143            ! t/op/grent.t t/op/pwent.t
32144 ____________________________________________________________________________
32145 [  6512] By: jhi                                   on 2000/08/04  01:14:06
32146         Log: Subject: [ID 20000802.002] [PATCH] memory pseudo-leak in sv_dump
32147              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
32148              Date: Wed, 02 Aug 2000 10:51:01 +0100
32149              Message-Id: <E13JvAz-0005B5-00@libra.cus.cam.ac.uk>
32150      Branch: perl
32151            ! sv.c
32152 ____________________________________________________________________________
32153 [  6511] By: jhi                                   on 2000/08/04  00:57:00
32154         Log: Subject: [PATCH] bad cppsymbols on os2 + Configure question                
32155              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
32156              Date: Thu, 03 Aug 2000 17:20:04 -0700
32157              Message-ID: <0wgi5gzkgqLb092yn@efn.org> 
32158      Branch: metaconfig
32159            ! U/modified/Cppsym.U
32160      Branch: perl
32161            ! Configure config_h.SH
32162 ____________________________________________________________________________
32163 [  6510] By: jhi                                   on 2000/08/04  00:25:28
32164         Log: detypo
32165      Branch: perl
32166            ! Makefile.SH
32167 ____________________________________________________________________________
32168 [  6509] By: jhi                                   on 2000/08/03  23:43:18
32169         Log: Subject: [PATCH perl-current] Comings and goings in op/sprintf.t
32170              From: Dominic Dunlop <domo@computer.org>
32171              Date: Thu, 3 Aug 2000 22:16:46 +0200
32172              Message-Id: <p04320411b5af8091f6fe@[194.235.193.148]>
32173      Branch: perl
32174            ! t/op/sprintf.t
32175 ____________________________________________________________________________
32176 [  6508] By: jhi                                   on 2000/08/03  23:40:37
32177         Log: Subject: [PATCH bleadperl] [ID 20000803.001] further regexp counting problems
32178              From: Hugo <hv@crypt.compulink.co.uk>
32179              Date: Thu, 03 Aug 2000 18:25:30 +0100
32180              Message-Id: <200008031725.SAA10580@crypt.compulink.co.uk>
32181      Branch: perl
32182            ! regcomp.c t/op/re_tests
32183 ____________________________________________________________________________
32184 [  6507] By: jhi                                   on 2000/08/03  23:38:28
32185         Log: Subject: [PATCH] sv.h documentation - SvLEN
32186              From: Mike Guy <mjtg@cam.ac.uk>
32187              Date: Thu, 03 Aug 2000 14:43:09 +0100
32188              Message-Id: <E13KLHB-0004UK-00@libra.cus.cam.ac.uk>
32189      Branch: perl
32190            ! sv.h
32191 ____________________________________________________________________________
32192 [  6506] By: jhi                                   on 2000/08/03  15:49:14
32193         Log: Disable the fix_pl hack for now.
32194      Branch: perl
32195            ! Makefile.SH
32196 ____________________________________________________________________________
32197 [  6505] By: jhi                                   on 2000/08/03  13:49:04
32198         Log: Add a URL for FSF.
32199              
32200              Subject: Patch for README
32201              From: Elaine -HFB- Ashton <elaine@chaos.wustl.edu>
32202              Date: Wed, 2 Aug 2000 13:25:09 -0500
32203              Message-ID: <20000802132509.I10379@chaos.wustl.edu>
32204      Branch: perl
32205            ! README
32206 ____________________________________________________________________________
32207 [  6504] By: jhi                                   on 2000/08/03  13:29:19
32208         Log: Be more informative on what is skipped and why,
32209              also repeat the list at the end.
32210      Branch: perl
32211            ! Porting/p4desc
32212 ____________________________________________________________________________
32213 [  6503] By: jhi                                   on 2000/08/03  13:07:05
32214         Log: Circumvent the removal of .patch by fix_pl.
32215              
32216              Subject: Re: [ID 20000802.011] unable to 'make test'          
32217              From: simon@brecon.co.uk (Simon Cozens) 
32218              Date: 3 Aug 2000 04:17:00 GMT
32219              Message-ID: <slrn8ohshs.81o.simon@justanother.perlhacker.org> 
32220      Branch: perl
32221            ! Makefile.SH
32222 ____________________________________________________________________________
32223 [  6502] By: jhi                                   on 2000/08/03  00:14:34
32224         Log: Add the missing setproctitle unit.
32225      Branch: metaconfig/U/perl
32226            + d_setproctitle.U
32227 ____________________________________________________________________________
32228 [  6501] By: jhi                                   on 2000/08/03  00:00:26
32229         Log: The subtest 4 may fail also on VOBS, as pointed out
32230              by Nick Ing-Simmons in November 1999, bug id 19991124.003
32231              (but the failure in that bug report isn't the subtest 4).
32232      Branch: perl
32233            ! t/op/stat.t
32234 ____________________________________________________________________________
32235 [  6500] By: jhi                                   on 2000/08/02  23:49:30
32236         Log: Better skip message for the test; one of the two problems in
32237              
32238              Subject: [ID 20000224.003] Not OK: perl v5.5.660 on i86pc-solaris 2.7
32239              From: Lupe Christoph <lupe@lupe-christoph.de>
32240              Date: Thu, 24 Feb 2000 11:54:50 +0100 (MET)
32241              Message-Id: <200002241054.LAA06808@lupe-christoph.de>
32242      Branch: perl
32243            ! t/op/numconvert.t
32244 ____________________________________________________________________________
32245 [  6499] By: jhi                                   on 2000/08/02  22:49:16
32246         Log: Allow "no Module;" even if there is no 'unimport'.
32247              
32248              Subject: [ID 20000324.029] `unimport' is not special the way `import' is
32249              From: mjd@plover.com
32250              Date: 24 Mar 2000 15:24:34 -0000
32251              Message-Id: <20000324152434.15160.qmail@plover.com>
32252      Branch: perl
32253            ! gv.c
32254 ____________________________________________________________________________
32255 [  6498] By: jhi                                   on 2000/08/02  22:42:58
32256         Log: Generate OP_IS_SOCKET() and OP_IS_FILETEST() macros
32257              that are hopefully soon put into use.
32258      Branch: perl
32259            ! opcode.h opcode.pl opnames.h
32260 ____________________________________________________________________________
32261 [  6497] By: gsar                                  on 2000/08/02  22:28:59
32262         Log: require.t needs binmode() to work on windows
32263      Branch: perl
32264            ! t/comp/require.t
32265 ____________________________________________________________________________
32266 [  6496] By: jhi                                   on 2000/08/02  22:08:51
32267         Log: Document the IVdf UVuf UVof UVxf.
32268      Branch: perl
32269            ! pod/perlguts.pod
32270 ____________________________________________________________________________
32271 [  6495] By: jhi                                   on 2000/08/02  21:54:26
32272         Log: detypo #6494
32273      Branch: perl
32274            ! ext/Data/Dumper/Dumper.xs
32275 ____________________________________________________________________________
32276 [  6494] By: jhi                                   on 2000/08/02  21:49:17
32277         Log: Dump UVs as UVs in Data::Dumper.
32278              
32279              Subject: Re: [ID 20000405.018] Data::Dumper and negative numbers
32280              From: Gurusamy Sarathy <gsar@ActiveState.com>
32281              Date: Thu, 27 Apr 2000 12:26:25 -0700
32282              Message-Id: <200004271926.MAA04331@molotok.activestate.com>
32283      Branch: perl
32284            ! ext/Data/Dumper/Dumper.xs
32285 ____________________________________________________________________________
32286 [  6493] By: jhi                                   on 2000/08/02  17:01:58
32287         Log: Subject: [PATCH bleadperl] [ID 20000731.010] regex error 
32288              From: Hugo <hv@crypt.compulink.co.uk>
32289              Date: Wed, 02 Aug 2000 14:53:56 +0100
32290              Message-Id: <200008021353.OAA24761@crypt.compulink.co.uk>
32291      Branch: perl
32292            ! regexec.c t/op/re_tests
32293 ____________________________________________________________________________
32294 [  6492] By: jhi                                   on 2000/08/02  15:02:46
32295         Log: The new setproctitle() feature is available only in 
32296              bleeding edge FreeBSD.  From Paul Saab.
32297      Branch: perl
32298            ! mg.c
32299 ____________________________________________________________________________
32300 [  6491] By: jhi                                   on 2000/08/02  13:34:36
32301         Log: The tr utf8 patching continues.
32302              
32303              Subject: Re: #6469, too many tests claimed in require.t
32304              From: simon@brecon.co.uk (Simon Cozens)
32305              Date: 2 Aug 2000 02:37:17 GMT
32306              Message-ID: <slrn8of2at.81o.simon@justanother.perlhacker.org>
32307              
32308              (the logic of the test was the wrong way round in the patch)
32309      Branch: perl
32310            ! doop.c
32311 ____________________________________________________________________________
32312 [  6490] By: jhi                                   on 2000/08/02  13:27:38
32313         Log: The name of a filehandle does not have <these>.
32314      Branch: perl
32315            ! doio.c pod/perldiag.pod pp_sys.c t/pragma/warn/doio
32316            ! t/pragma/warn/pp_sys util.c
32317 ____________________________________________________________________________
32318 [  6489] By: jhi                                   on 2000/08/02  04:26:46
32319         Log: Remove the extraneous "main::" prefix from all the
32320              "opened only for", "on closed", and "never opened" warnings.
32321              
32322              Subject: Re: inappropriate warning
32323              From: Gurusamy Sarathy <gsar@ActiveState.com>
32324              Date: Mon, 20 Mar 2000 11:28:02 -0800
32325              Message-Id: <200003201928.LAA32224@maul.ActiveState.com>
32326      Branch: perl
32327            ! doio.c embed.h embed.pl gv.c objXSUB.h pp_hot.c pp_sys.c
32328            ! proto.h t/pragma/warn/4lint t/pragma/warn/doio
32329            ! t/pragma/warn/pp_hot t/pragma/warn/pp_sys util.c
32330 ____________________________________________________________________________
32331 [  6488] By: jhi                                   on 2000/08/02  03:02:57
32332         Log: memcpy has n o in it, as pinted ut by Sarathy.
32333      Branch: perl
32334            ! pod/perlguts.pod
32335 ____________________________________________________________________________
32336 [  6487] By: jhi                                   on 2000/08/02  02:44:51
32337         Log: Document in one place the memory abstractions used in Perl core.
32338              
32339              Subject: Re: Memory abstraction
32340              From: simon@brecon.co.uk (Simon Cozens)
32341              Date: 2 Aug 2000 02:20:23 GMT
32342              Organization: Earth.li Origins
32343      Branch: perl
32344            ! pod/perlguts.pod
32345 ____________________________________________________________________________
32346 [  6486] By: jhi                                   on 2000/08/02  02:41:57
32347         Log: regen_headers, regen perltoc.
32348      Branch: perl
32349            ! perlapi.c pod/perltoc.pod
32350 ____________________________________________________________________________
32351 [  6485] By: jhi                                   on 2000/08/02  01:43:33
32352         Log: "This little thing tests for a file .patch, and if it contains
32353              a number, pops into patchlevel.h" (making it easier to track
32354              which development version people are reporting bugs against)
32355              
32356              Subject: Patchlevel autogeneration for repository perls
32357              From: simon@brecon.co.uk (Simon Cozens)
32358              Date: 14 Jul 2000 07:12:15 GMT
32359              Message-ID: <slrn8mtfaf.1qo.simon@justanother.perlhacker.org>
32360      Branch: perl
32361            + fix_pl
32362            ! MANIFEST Makefile.SH
32363 ____________________________________________________________________________
32364 [  6484] By: jhi                                   on 2000/08/02  01:32:54
32365         Log: FreeBSD 3.* updates from
32366              
32367              From: Paul Saab <ps@yahoo-inc.com>
32368              Subject: [ID 20000801.007] setting $0 on FreeBSD 4.x does not get reflected in /bin/ps
32369              Date: Tue, 1 Aug 2000 15:41:39 -0700
32370              Message-Id: <20000801154139.A53740@yahoo-inc.com>
32371      Branch: perl
32372            ! hints/freebsd.sh
32373 ____________________________________________________________________________
32374 [  6483] By: jhi                                   on 2000/08/02  01:27:44
32375         Log: In new BSDs changes to argv[] do not show up in ps(1) output,
32376              instead one must use setproctitle().  This was already addressed
32377              by change #6457, but the below has a new variant for FreeBSD 4.0
32378              or later, and the matter is also documented more.
32379              
32380              From: Paul Saab <ps@yahoo-inc.com>
32381              Subject: [ID 20000801.007] setting $0 on FreeBSD 4.x does not get reflected in /bin/ps
32382              Date: Tue, 1 Aug 2000 15:41:39 -0700
32383              Message-Id: <20000801154139.A53740@yahoo-inc.com>
32384      Branch: metaconfig/U/perl
32385            + i_libutil.U
32386      Branch: perl
32387            ! Configure config_h.SH mg.c perl.h pod/perlvar.pod
32388 ____________________________________________________________________________
32389 [  6482] By: jhi                                   on 2000/08/01  22:17:32
32390         Log: The test from this
32391              
32392              Subject: Re: [ID 20000411.002] qw() gives different results in 5.6 to previous versions
32393              Date: Sat, 15 Apr 2000 17:03:44 +0100
32394              From: Tom Hughes <tom@compton.nu>
32395              Message-ID: <d1c9b2af49.tom@compton.compton.nu>
32396              
32397              was missing, the code change went in as #5989
32398              (which had a different test?)
32399      Branch: perl
32400            ! t/op/misc.t
32401 ____________________________________________________________________________
32402 [  6481] By: jhi                                   on 2000/08/01  21:48:38
32403         Log: Subject: [Proposed PATCH] Let Perl define QUAD_MIN and _MAX itself
32404              From: Jeff Okamoto <okamoto@xfiles.intercon.hp.com>
32405              Date: Thu, 27 Jul 2000 13:51:41 -0700 (PDT)
32406              Message-Id: <200007272051.NAA02178@xfiles.intercon.hp.com>
32407      Branch: perl
32408            ! perl.h
32409 ____________________________________________________________________________
32410 [  6480] By: jhi                                   on 2000/08/01  18:05:28
32411         Log: Make p4desc to skip non-mainperl branches by default.
32412      Branch: perl
32413            ! Porting/p4desc
32414 ____________________________________________________________________________
32415 [  6479] By: jhi                                   on 2000/08/01  17:29:19
32416         Log: If gccosandvers is equal to osname, clear gccosandvers.
32417      Branch: metaconfig/U/perl
32418            ! gccvers.U
32419      Branch: perl
32420            ! Configure config_h.SH
32421 ____________________________________________________________________________
32422 [  6478] By: jhi                                   on 2000/08/01  15:54:08
32423         Log: BOM patching from Simon Cozens.
32424      Branch: perl
32425            ! toke.c
32426 ____________________________________________________________________________
32427 [  6477] By: jhi                                   on 2000/08/01  04:50:33
32428         Log: Stash away the largefiles flags and libswanted.
32429      Branch: perl
32430            ! hints/aix.sh hints/hpux.sh hints/linux.sh hints/solaris_2.sh
32431 ____________________________________________________________________________
32432 [  6476] By: gsar                                  on 2000/08/01  04:24:24
32433         Log: various syntax errors and such (not fixed: comp/require.t#22 coredump
32434              on Windows)
32435      Branch: perl
32436            ! t/pragma/utf8.t utf8.c win32/win32.c
32437 ____________________________________________________________________________
32438 [  6475] By: jhi                                   on 2000/08/01  03:35:24
32439         Log: Make chr() for values >127 to create utf8 when under utf8.
32440              
32441              Subject: Re: uft8/chr()
32442              From: simon@brecon.co.uk (Simon Cozens)
32443              Date: 1 Aug 2000 02:37:02 GMT
32444              Message-ID: <slrn8ocdud.19l.simon@justanother.perlhacker.org>
32445      Branch: perl
32446            ! pod/perlfunc.pod pp.c t/pragma/utf8.t
32447 ____________________________________________________________________________
32448 [  6474] By: jhi                                   on 2000/08/01  02:36:18
32449         Log: In Digital UNIX warn if gcc explicitly chosen because even
32450              2.95.2 is known to cause problems.
32451      Branch: perl
32452            ! hints/dec_osf.sh
32453 ____________________________________________________________________________
32454 [  6473] By: jhi                                   on 2000/08/01  02:00:56
32455         Log: Make the safety catch for buggy gccs work with triple version
32456              numbers like 2.95.2.  Reported in
32457              
32458              Subject: [ID 20000731.005] Perl 5.6.0 "Configure" fails to recognize gcc 2.95.2
32459              From: Maurizio Loreti <maurizio.loreti@pd.infn.it>
32460              Date: Mon, 31 Jul 2000 14:55:06 +0200
32461              Message-Id: <200007311255.AA25586@axcdf4.pd.infn.it>
32462      Branch: perl
32463            ! hints/dec_osf.sh
32464 ____________________________________________________________________________
32465 [  6472] By: jhi                                   on 2000/08/01  01:13:33
32466         Log: Subject: fix and question re: waitpid() under win32
32467              From: Brian Clarke <clarke@appliedmeta.com>
32468              Date: Fri, 28 Jul 2000 15:18:29 -0400
32469              Message-ID: <3981DC85.290314EB@appliedmeta.com>
32470              
32471              Slightly reformatted and WNOHANG # define moved to win32.h
32472              so that also POSIX.xs sees it, as suggsted by Sarathy.
32473      Branch: perl
32474            ! win32/win32.c win32/win32.h
32475 ____________________________________________________________________________
32476 [  6471] By: jhi                                   on 2000/08/01  00:55:05
32477         Log: Subject: [PATCH] allow non-variable as lhs of non-updating tr///
32478              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
32479              Message-Id: <E13JEgd-0003fy-00@libra.cus.cam.ac.uk>
32480              Date: Mon, 31 Jul 2000 13:28:51 +0100
32481              
32482              (aka ID 20000730.002)
32483      Branch: perl
32484            ! op.c t/op/tr.t
32485 ____________________________________________________________________________
32486 [  6470] By: jhi                                   on 2000/07/31  23:34:42
32487         Log: Document the problem with -P in HP-UX and its workaround.
32488              
32489              Subject: [ID 20000628.002] HPUX 11: -Ae compiler flag breaks perl -P
32490              From: Milton Hankins {64892} <webtools@uewrhp03.msd.ray.com>
32491              Date: Wed, 28 Jun 2000 13:58:21 -0400 (EDT)
32492              Message-Id: <200006281758.NAA10339@uewrhp03.msd.ray.com>
32493      Branch: perl
32494            ! README.hpux
32495 ____________________________________________________________________________
32496 [  6469] By: jhi                                   on 2000/07/31  04:15:02
32497         Log: The swallow_bom() saga continues.  The #23 of require.t
32498              (UTF16-LE) still fails (silently, no output) but the #22
32499              (UTF16-BE) seems to be working now.  The root of the
32500              failure may be in sv_gets(): is it UTF-16LE-aware,
32501              especially when it comes to line endings? 
32502      Branch: perl
32503            ! embed.h embed.pl objXSUB.h pod/perldiag.pod proto.h
32504            ! t/comp/require.t toke.c utf8.c
32505 ____________________________________________________________________________
32506 [  6468] By: jhi                                   on 2000/07/30  19:05:48
32507         Log: Find green threads before native threads.
32508              
32509              Subject: Re: Patch to jpl/JNI/Makefile.PL
32510              From: Jens Thomsen <jens@fiend.cis.com>
32511              Date: Fri, 28 Jul 2000 15:54:49 -0600 (MDT)
32512              Message-ID: <Pine.LNX.4.21.0007281553470.687-200000@fiend.cis.com>
32513      Branch: perl
32514            ! jpl/JNI/Makefile.PL
32515 ____________________________________________________________________________
32516 [  6467] By: jhi                                   on 2000/07/30  18:36:22
32517         Log: Fix the HALF_UPGRADE() macro introduced in #6263.
32518      Branch: perl
32519            ! doop.c
32520 ____________________________________________________________________________
32521 [  6466] By: jhi                                   on 2000/07/30  04:37:29
32522         Log: A new version of the "remove UPPERACSE string comparison"
32523              operators.  The problem with the previous one (change #6454)
32524              was that it was for Perl 5.6.0.  From Paul Marquess.
32525      Branch: perl
32526            ! t/op/do.t t/pragma/warn/2use t/pragma/warn/3both
32527            ! t/pragma/warn/4lint t/pragma/warn/5nolint t/pragma/warn/7fatal
32528            ! t/pragma/warn/8signal t/pragma/warn/toke toke.c
32529 ____________________________________________________________________________
32530 [  6465] By: jhi                                   on 2000/07/29  22:39:56
32531         Log: Do not upgrade SVs into utf8 just because they participate
32532              in eq or cmp.  Reported and fix suggested in
32533              
32534              Subject: [ID 20000720.009] sv_eq UTF8 bug
32535              From: "Simon Cozens" <simon@othersideofthe.earth.li>
32536              Date: 21 Jul 2000 04:37:29 -0000
32537              Message-Id: <20000721043729.30081.qmail@othersideofthe.earth.li>
32538              
32539              Exercise for the kind reader: should we or should we not
32540              cache the utf8 conversion alonside the SV? (as magic,
32541              as thestrxfrm()ed version is cached under use locale)
32542              Argue both for and against.
32543      Branch: perl
32544            ! sv.c
32545 ____________________________________________________________________________
32546 [  6464] By: jhi                                   on 2000/07/29  22:36:22
32547         Log: Subject: UTF8 concat
32548              From: simon@brecon.co.uk (Simon Cozens) 
32549              Date: 30 Jun 2000 06:13:25 GMT
32550              Message-ID: <slrn8loek5.9ai.simon@justanother.perlhacker.org> 
32551              
32552              (with a memory leak fixed, plus a few casts added)
32553              
32554              This also seems to help for
32555              
32556              Subject: [ID 20000716.015] join UTF8 weirdness
32557              From: root <root@ak-71.mind.de> 
32558              Date: Sat, 15 Jul 2000 15:29:54 +0200
32559              Message-Id: <200007151329.PAA13970@ak-71.mind.de>
32560              
32561              (from Andreas König)
32562      Branch: perl
32563            ! pp_hot.c
32564 ____________________________________________________________________________
32565 [  6463] By: jhi                                   on 2000/07/29  00:55:39
32566         Log: Tune the comments and hopefully stop a memory leak.
32567      Branch: perl
32568            ! toke.c utf8.c
32569 ____________________________________________________________________________
32570 [  6462] By: jhi                                   on 2000/07/29  00:16:53
32571         Log: The problem described in this
32572              
32573              Subject: [ID 20000322.018] named chars aren't magical enough
32574              From: root <root@dixie.cscaper.com>     
32575              Date: Wed, 22 Mar 2000 18:37:42 -0700
32576              Message-Id: <200003230137.SAA29532@dixie.cscaper.com>
32577              
32578              has been fixed in perl 5.6.0 but just in case added a test
32579              to keep it away.  (The report from Joseph Hall.)
32580      Branch: perl
32581            ! t/lib/charnames.t
32582 ____________________________________________________________________________
32583 [  6461] By: jhi                                   on 2000/07/28  23:56:36
32584         Log: Tiny fixes for #6460.
32585      Branch: metaconfig/U/perl
32586            ! gccvers.U
32587      Branch: perl
32588            ! Configure config_h.SH
32589 ____________________________________________________________________________
32590 [  6460] By: jhi                                   on 2000/07/28  23:24:41
32591         Log: Warn if the version of the operating system used to compile gcc
32592              differs from the current version of the operating system.
32593              Also display the gcc compilation os and version in myconfig.
32594              Inspiration from
32595              
32596              Subject: Re: [ID 20000710.003] ERRORS!!         
32597              From: "Kurt D. Starsinic" <kstar@chapin.edu>
32598              Date: Mon, 10 Jul 2000 15:54:16 -0400
32599              Message-ID: <20000710155416.A1384@O2.chapin.edu>
32600      Branch: metaconfig/U/perl
32601            ! gccvers.U
32602      Branch: perl
32603            ! Configure config_h.SH myconfig.SH
32604 ____________________________________________________________________________
32605 [  6459] By: jhi                                   on 2000/07/28  22:00:32
32606         Log: In DEC OSF aka Digital UNIX aka Tru64 add the version
32607              letter to $Config{osvers}.
32608      Branch: metaconfig
32609            ! U/modified/Oldconfig.U
32610      Branch: perl
32611            ! Configure config_h.SH
32612 ____________________________________________________________________________
32613 [  6458] By: jhi                                   on 2000/07/28  04:15:39
32614         Log: Back out #6454, doesn't seem to work.
32615              (Reason: that patch was for perl 5.6.0, not perl-current)
32616              (A version of the patch for perl-current came in later as #6466)
32617      Branch: perl
32618            ! regcomp.c t/op/do.t t/pragma/warn/2use t/pragma/warn/4lint
32619            ! t/pragma/warn/5nolint t/pragma/warn/7fatal
32620            ! t/pragma/warn/8signal t/pragma/warn/toke toke.c
32621 ____________________________________________________________________________
32622 [  6457] By: jhi                                   on 2000/07/27  23:31:49
32623         Log: Use setproctitle() if available to modify $0.
32624              
32625              Subject: setting $* on BSD4 broken
32626              From: Jeffrey Friedl <jfriedl@yahoo-inc.com>
32627              Date: Sun, 23 Jul 2000 01:31:34 -0700 (PDT)
32628              Message-Id: <200007230831.BAA08379@ventrue.yahoo.com>
32629      Branch: metaconfig
32630            ! U/modified/Myinit.U
32631      Branch: perl
32632            ! Configure config_h.SH mg.c
32633 ____________________________________________________________________________
32634 [  6456] By: jhi                                   on 2000/07/27  14:50:47
32635         Log: Allow "no AutoLoader;", based on change #6444,
32636              suggested by Graham Barr.
32637      Branch: perl
32638            ! lib/AutoLoader.pm
32639 ____________________________________________________________________________
32640 [  6455] By: jhi                                   on 2000/07/27  14:19:10
32641         Log: Subject: [ID 19990709.002] [DOCUMENTATION PATCH] perldiag
32642              From: rspier@pobox.com (Robert Spier)
32643              Date: Thu, 27 Jul 2000 09:49:35 -0400 (EDT)
32644              Message-ID: <14720.15855.787664.424783@rls.cx>
32645      Branch: perl
32646            ! pod/perldiag.pod
32647 ____________________________________________________________________________
32648 [  6454] By: jhi                                   on 2000/07/27  14:03:02
32649         Log: Remove EQ, NE, GT, LT, GE, LE (they have been deprecated
32650              for a long time).
32651              
32652              Reported in
32653              
32654              Subject: [ID 20000717.004] Unexpected complaint of NE deprecation
32655              From: Ryan Herbert <rherbert@sycamorehq.com>
32656              Date: Mon, 17 Jul 2000 11:40:42 -0400
32657              Message-Id: <200007171540.LAA20480@beorn.hq.sai>
32658              
32659              Patched in
32660              
32661              Subject: RE: [ID 20000717.004] Unexpected complaint of NE deprecation
32662              From: "Paul Marquess" <Paul.Marquess@btinternet.com>
32663              Date: Wed, 26 Jul 2000 23:40:18 +0100
32664              Message-ID: <000001bff752$79511880$0a17073e@tiny>
32665              
32666              based on an earlier patch from Stephen P. Potter.
32667              
32668              (Removed later by change #6458 because this patch was for
32669              perl 5.6.0, not perl-current)
32670      Branch: perl
32671            ! t/op/do.t t/pragma/warn/2use t/pragma/warn/4lint
32672            ! t/pragma/warn/5nolint t/pragma/warn/7fatal
32673            ! t/pragma/warn/8signal t/pragma/warn/toke toke.c
32674 ____________________________________________________________________________
32675 [  6453] By: jhi                                   on 2000/07/27  13:48:02
32676         Log: Subject: [PATCH] fixes bug 20000508.004
32677              From: Michael Stevens <mstevens@globnix.org>
32678              Date: Thu, 27 Jul 2000 13:49:04 +0100
32679              Message-ID: <20000727134903.A9351@athenaeum.globnix.org>
32680      Branch: perl
32681            ! pod/perldata.pod
32682 ____________________________________________________________________________
32683 [  6452] By: jhi                                   on 2000/07/26  23:51:26
32684         Log: Further File::Temp patches from Yitzchak Scott-Thoennes
32685              and Craig A. Berry.
32686      Branch: perl
32687            ! lib/File/Temp.pm pod/perlport.pod
32688 ____________________________________________________________________________
32689 [  6451] By: jhi                                   on 2000/07/26  19:43:30
32690         Log: Be wary of close()s, too.
32691              
32692              Subject: Re: [PATCH] perlbug cleanup
32693              From: Tim Jenness <t.jenness@jach.hawaii.edu>
32694              Date: Wed, 26 Jul 2000 09:32:43 -1000 (HST)
32695              Message-ID: <Pine.LNX.4.10.10007260931540.27658-100000@lapaki.jach.hawaii.edu>
32696      Branch: perl
32697            ! utils/perlbug.PL
32698 ____________________________________________________________________________
32699 [  6450] By: jhi                                   on 2000/07/26  18:41:40
32700         Log: Subject: Minor doc patch: handy.h
32701              From: Daniel =?iso-8859-1?Q?Mui=F1o?= <dmuino@afip.gov.ar>
32702              Date: Wed, 26 Jul 2000 15:34:25 -0300
32703              Message-ID: <397F2F31.F3F9F4F3@afip.gov.ar>
32704      Branch: perl
32705            ! handy.h pod/perlapi.pod
32706 ____________________________________________________________________________
32707 [  6449] By: jhi                                   on 2000/07/26  18:23:55
32708         Log: Subject: [PATCH] minor doc change - perlguts
32709              From: Michael Stevens <mstevens@globnix.org>
32710              Date: Thu, 13 Jul 2000 12:39:18 +0100
32711              Message-ID: <20000713123918.A26561@athenaeum.globnix.org>
32712      Branch: perl
32713            ! pod/perlguts.pod
32714 ____________________________________________________________________________
32715 [  6448] By: jhi                                   on 2000/07/26  18:20:30
32716         Log: open() wariness in perlbug.
32717              
32718              Subject: [PATCH] perlbug cleanup
32719              From: Michael Stevens <mstevens@globnix.org>
32720              Message-ID: <20000713155222.A11380@athenaeum.globnix.org>
32721              Date: Thu, 13 Jul 2000 15:52:23 +0100
32722      Branch: perl
32723            ! utils/perlbug.PL
32724 ____________________________________________________________________________
32725 [  6447] By: jhi                                   on 2000/07/26  18:13:04
32726         Log: File::Temp patches for VMS and OS/2 from Tim Jenness.
32727      Branch: perl
32728            ! lib/File/Temp.pm t/lib/ftmp-security.t
32729 ____________________________________________________________________________
32730 [  6446] By: jhi                                   on 2000/07/26  18:06:32
32731         Log: docfix from Peter Scott <Peter@PSDT.com>.
32732      Branch: perl
32733            ! pod/perlfunc.pod
32734 ____________________________________________________________________________
32735 [  6445] By: jhi                                   on 2000/07/26  17:53:31
32736         Log: Fix *foo{FORMAT}.
32737              
32738              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
32739              Subject: Re: Looking for a starting point (Mark-Jason?, Chip?, Jarkko?)
32740              Date: Wed, 26 Jul 2000 19:51:02 +0200
32741              Message-Id: <20000726194952.41DD.H.M.BRAND@hccnet.nl>
32742              
32743              From: Graham Barr <gbarr@pobox.com>
32744              Subject: Re: Looking for a starting point (Mark-Jason?, Chip?, Jarkko?)
32745              Date: Wed, 26 Jul 2000 17:38:36 +0100
32746              Message-ID: <20000726173836.L472@pobox.com>
32747      Branch: perl
32748            ! pp.c sv.c t/op/gv.t
32749 ____________________________________________________________________________
32750 [  6444] By: jhi                                   on 2000/07/26  17:49:14
32751         Log: Allow "sub AUTOLOAD;" to stop AUTOLOAD inheritance,
32752              from Graham Barr in the module list.
32753      Branch: perl
32754            ! gv.c pod/perlobj.pod
32755 ____________________________________________________________________________
32756 [  6443] By: jhi                                   on 2000/07/26  16:06:56
32757         Log: More split() doc and test patches from Mike Guy.
32758      Branch: perl
32759            ! pod/perlfunc.pod t/op/split.t
32760 ____________________________________________________________________________
32761 [  6442] By: jhi                                   on 2000/07/26  16:05:30
32762         Log: MacOS nits from Matthias Neeracher.
32763      Branch: perl
32764            ! perl.c pp_ctl.c
32765 ____________________________________________________________________________
32766 [  6441] By: jhi                                   on 2000/07/26  04:39:57
32767         Log: Subject: [PATCH] split /^/
32768              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
32769              Date: Tue, 25 Jul 2000 14:18:57 +0100
32770              Message-Id: <E13H4bp-00062h-00@libra.cus.cam.ac.uk>
32771              
32772              (with notes from tchrist and gbarr)
32773      Branch: perl
32774            ! pod/perlfunc.pod t/op/split.t
32775 ____________________________________________________________________________
32776 [  6440] By: jhi                                   on 2000/07/26  04:32:32
32777         Log: Subject: [PATCH: perl@6409] bug fix for munchconfig (turned up by CXX)
32778              From: Peter Prymmer <pvhp@forte.com>
32779              Date: Tue, 25 Jul 2000 18:59:16 -0700 (PDT)
32780              Message-ID: <Pine.OSF.4.10.10007251805350.294719-100000@aspara.forte.com>
32781      Branch: perl
32782            ! vms/munchconfig.c
32783 ____________________________________________________________________________
32784 [  6439] By: jhi                                   on 2000/07/26  04:31:01
32785         Log: Make the unimplemented POSIX regex features [[.cc.]] and [[=c=]]
32786              to be fatal errors (instead of by default ignoring them, and
32787              ignoring with a bug: even though -w gave an error, the opening [
32788              was left in)  Reported in:
32789              
32790              Subject: [ID 20000716.024] [=cc=] / [:blank:]
32791              From: Jeffrey Friedl <jfriedl@fummy.dsl.yahoo.com>
32792              Date: Sun, 16 Jul 2000 17:55:29 -0700
32793              Message-Id: <200007170055.RAA23528@fummy.dsl.yahoo.com>
32794      Branch: perl
32795            ! pod/perldiag.pod regcomp.c t/pragma/warn/regcomp
32796 ____________________________________________________________________________
32797 [  6438] By: jhi                                   on 2000/07/25  15:41:15
32798         Log: Subject: [PATCH] av.c apidoc
32799              From: simon@brecon.co.uk (Simon Cozens)
32800              Date: 24 Jul 2000 06:40:52 GMT
32801              Message-ID: <slrn8nnp7k.cgv.simon@justanother.perlhacker.org>
32802      Branch: perl
32803            ! av.c embed.h embed.pl embedvar.h global.sym objXSUB.h
32804            ! perlapi.c perlapi.h pod/perlapi.pod proto.h
32805 ____________________________________________________________________________
32806 [  6437] By: jhi                                   on 2000/07/25  14:05:36
32807         Log: Subject: [ID 20000724.003] Documentation changes for perllocale.pod
32808              From: "Stephen P. Potter" <spp@ds.net>
32809              Date: Mon, 24 Jul 2000 14:22:23 -0400
32810              Message-Id: <200007241822.OAA06827@spp.users.ds.net>
32811      Branch: perl
32812            ! pod/perllocale.pod
32813 ____________________________________________________________________________
32814 [  6436] By: jhi                                   on 2000/07/25  14:02:03
32815         Log: Subject: [PATCH] Make large file tests deal with SIGXFSZ
32816              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
32817              Date: Mon, 24 Jul 2000 18:04:28 +0100
32818              Message-Id: <E13GleW-0000fr-00@libra.cus.cam.ac.uk>
32819      Branch: perl
32820            ! t/lib/syslfs.t t/op/lfs.t
32821 ____________________________________________________________________________
32822 [  6435] By: jhi                                   on 2000/07/25  13:59:28
32823         Log: Get UTF16 BOMs working.  Patch from
32824              
32825              Subject: Re: [ID 20000719.001] Problem with bleadperl of 7/18/00
32826              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
32827              Date: Tue, 25 Jul 2000 12:52:45 +0100
32828              Message-Id: <E13H3GP-0004MR-00@libra.cus.cam.ac.uk>
32829              
32830              and notes from
32831              
32832              Subject: Re: [ID 20000719.001] Problem with bleadperl of 7/18/00
32833              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
32834              Date: Tue, 25 Jul 2000 11:43:25 +0100
32835              Message-Id: <E13H2BJ-0002nG-00@libra.cus.cam.ac.uk>
32836      Branch: perl
32837            ! t/comp/require.t toke.c utf8.c
32838 ____________________________________________________________________________
32839 [  6434] By: jhi                                   on 2000/07/25  02:39:54
32840         Log: Make the "uninit variable" warning to say "concat or string"
32841              or "join or string" when in concat or join .
32842              
32843              Subject: Re: [ID 20000403.009] uninitialised concatenation???
32844              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
32845              Date: Tue, 04 Apr 2000 18:22:58 +0100
32846              Message-Id: <E12cX2Y-000364-00@taurus.cus.cam.ac.uk>
32847              
32848              Subject: [ID 20000330.052] Use of uninitialized value in concatenation (.)
32849              From: William R Ward <hermit@BayView.COM>
32850              Date: Thu, 30 Mar 2000 19:50:03 -0800
32851              Message-Id: <200003310350.TAA13319@komodo.bayview.com>
32852      Branch: perl
32853            ! opcode.h opcode.pl opnames.h pp.sym pp_proto.h
32854            ! t/pragma/warn/op t/pragma/warn/sv
32855 ____________________________________________________________________________
32856 [  6433] By: jhi                                   on 2000/07/24  17:52:56
32857         Log: File::Spec::VMS fixup for tmpdir from Craig Berry.
32858      Branch: perl
32859            ! lib/File/Spec/VMS.pm
32860 ____________________________________________________________________________
32861 [  6432] By: jhi                                   on 2000/07/24  17:44:44
32862         Log: Test cases for #6431.
32863              
32864              Subject: Re: [PATCH] [ID 20000716.011] strangeness with split($_ =~ m/.../)
32865              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
32866              Date: Mon, 24 Jul 2000 15:32:29 +0100
32867              Message-Id: <E13GjHR-00058t-00@libra.cus.cam.ac.uk>
32868      Branch: perl
32869            ! t/op/pat.t t/op/split.t
32870 ____________________________________________________________________________
32871 [  6431] By: jhi                                   on 2000/07/24  17:43:17
32872         Log: Bind op fix.
32873              
32874              Subject: Re: [PATCH] [ID 20000716.011] strangeness with split($_ =~ m/.../)
32875              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
32876              Date: Mon, 17 Jul 2000 20:04:56 +0100
32877              Message-Id: <E13EGCG-0006oO-00@libra.cus.cam.ac.uk>
32878      Branch: perl
32879            ! op.c
32880 ____________________________________________________________________________
32881 [  6430] By: jhi                                   on 2000/07/24  03:42:42
32882         Log: Subject: [ID 20000716.023] syslog test fails without sockets
32883              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
32884              Date: Sun, 16 Jul 2000 12:07:42 -0700 (PDT)
32885              Message-Id: <200007161907.e6GJ7g115736@garcia.efn.org>
32886      Branch: metaconfig/U/perl
32887            ! Extensions.U
32888      Branch: perl
32889            ! Configure config_h.SH
32890 ____________________________________________________________________________
32891 [  6429] By: jhi                                   on 2000/07/24  03:11:52
32892         Log: Add an optimization for map-maps-a-list-element-to-more-list-elements
32893              case, but add also notes explaining the relationship of this
32894              patch and the earlier notes by Sarathy.
32895              
32896              Subject: Map is still slow
32897              From: "Ben Tilly" <ben_tilly@hotmail.com>
32898              Date: Sat, 15 Jul 2000 17:23:27 EDT
32899              Message-ID: <20000715212327.21656.qmail@hotmail.com>
32900      Branch: perl
32901            ! pp_ctl.c
32902 ____________________________________________________________________________
32903 [  6428] By: jhi                                   on 2000/07/24  02:58:52
32904         Log: Documentation to explain the behaviour of map().
32905              
32906              Subject: Re: Map is still slow 
32907              From: Gurusamy Sarathy <gsar@ActiveState.com>
32908              Date: Sat, 15 Jul 2000 16:05:09 -0700
32909              Message-Id: <200007152305.QAA26887@molotok.activestate.com>
32910      Branch: perl
32911            ! pp_ctl.c
32912 ____________________________________________________________________________
32913 [  6427] By: jhi                                   on 2000/07/24  02:50:03
32914         Log: Add tests for
32915              [ID 19991110.003] another matching finding by pcre author
32916              which has already been fixed by some patch, as verified in
32917              
32918              Subject: Re: two regex bugs from the mists of time (well, last November)
32919              From: Hugo <hv@crypt.compulink.co.uk>
32920              Date: Sat, 22 Jul 2000 18:12:58 +0100
32921              Message-Id: <200007221712.SAA26770@crypt.compulink.co.uk>
32922      Branch: perl
32923            ! t/op/re_tests
32924 ____________________________________________________________________________
32925 [  6426] By: jhi                                   on 2000/07/24  02:11:20
32926         Log: A missing 'break' after the [[:space:]] switch case.
32927              
32928              Subject: [ID 20000718.006] Missing 'break' in regcomp.c
32929              From: "Stephen P. Potter" <spp@ds.net>
32930              Date: Tue, 18 Jul 2000 16:25:17 -0400
32931              Message-Id: <200007182025.QAA28383@spp.users.ds.net>
32932      Branch: perl
32933            ! regcomp.c
32934 ____________________________________________________________________________
32935 [  6425] By: jhi                                   on 2000/07/24  02:06:12
32936         Log: The output might have been produced in the wrong order.
32937              
32938              Subject: [ID 20000720.003] [PATCH] t/op/write.t
32939              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
32940              Date: Thu, 20 Jul 2000 18:49:18 +0100
32941              Message-Id: <E13FKRi-0004rF-00@libra.cus.cam.ac.uk>
32942      Branch: perl
32943            ! t/op/write.t
32944 ____________________________________________________________________________
32945 [  6424] By: jhi                                   on 2000/07/24  02:00:07
32946         Log: Use STDOUT consistently.
32947              
32948              Subject: [ID 20000720.002] [PATCH] Consistency of Test::Harness output
32949              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
32950              Date: Thu, 20 Jul 2000 18:04:01 +0100
32951              Message-Id: <E13FJjt-0004Jh-00@libra.cus.cam.ac.uk>
32952      Branch: perl
32953            ! lib/Test/Harness.pm
32954 ____________________________________________________________________________
32955 [  6423] By: jhi                                   on 2000/07/24  01:54:54
32956         Log: Protect against "wild next"s, that is, callbacks doing "next"
32957              instead of "return".
32958              
32959              Subject: [PATCH] Re: [ID 20000717.003] Core dump in 5.6.0
32960              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
32961              Date: Tue, 18 Jul 2000 11:30:16 +0100
32962              Message-Id: <E13EUdk-0006ha-00@libra.cus.cam.ac.uk>
32963      Branch: perl
32964            ! lib/File/Find.pm
32965 ____________________________________________________________________________
32966 [  6422] By: jhi                                   on 2000/07/24  01:35:47
32967         Log: Out-of-date note removed.
32968              
32969              Subject: [PATCH] documentation perlipc
32970              From: rspier@pobox.com (Robert Spier)
32971              Date: Thu, 20 Jul 2000 19:21:14 -0400 (EDT)
32972              Message-ID: <14711.35178.572612.502654@rls.cx>
32973      Branch: perl
32974            ! pod/perlipc.pod
32975 ____________________________________________________________________________
32976 [  6421] By: jhi                                   on 2000/07/24  00:09:18
32977         Log: Send all installperl messages to STDERR and be -w clean.
32978              
32979              Subject: [PATCH] Re: [ID 20000721.003] installperl stderr/stdout problem
32980              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
32981              Date: Sat, 22 Jul 2000 14:02:11 +0100
32982              Message-Id: <E13Fyux-0003Q2-00@libra.cus.cam.ac.uk>
32983      Branch: perl
32984            ! installperl
32985 ____________________________________________________________________________
32986 [  6420] By: jhi                                   on 2000/07/24  00:04:19
32987         Log: Decutandpasto.
32988              
32989              Subject: [PATCH perl-current] 19990607.008 - perlipc.pod
32990              From: "Richard Soderberg" <rs@crystalflame.net>
32991              Date: Sun, 23 Jul 2000 01:37:23 -0700
32992              Message-ID: <NAEKLNAAHLMBPMPNBMLECEIKCBAA.rs@crystalflame.net>
32993      Branch: perl
32994            ! pod/perlipc.pod
32995 ____________________________________________________________________________
32996 [  6419] By: jhi                                   on 2000/07/24  00:01:12
32997         Log: A cleaner abs_path().
32998              Subject: Re: unix alternative to Cwd.pm
32999              From: Jeff Pinyan <jeffp@crusoe.net>
33000              Date: Sun, 23 Jul 2000 17:43:02 -0400 (EDT)
33001              Message-ID: <Pine.GSO.4.21.0007231739120.4304-100000@crusoe.crusoe.net>
33002      Branch: perl
33003            ! lib/Cwd.pm
33004 ____________________________________________________________________________
33005 [  6418] By: jhi                                   on 2000/07/23  23:48:56
33006         Log: Detypo.
33007              
33008              Subject: [PATCH perl-current] Typo in hints/powerux.sh
33009              From: "Richard Soderberg" <rs@crystalflame.net>
33010              Date: Sun, 23 Jul 2000 01:27:33 -0700
33011              Message-ID: <NAEKLNAAHLMBPMPNBMLEOEIJCBAA.rs@crystalflame.net>
33012      Branch: perl
33013            ! hints/powerux.sh
33014 ____________________________________________________________________________
33015 [  6417] By: jhi                                   on 2000/07/17  22:13:31
33016         Log: Subject: SDBM_File documentation
33017              From: mjd@plover.com
33018              Date: 16 Jul 2000 17:41:17 -0000
33019              Message-ID: <20000716174117.18515.qmail@plover.com>
33020      Branch: perl
33021            ! ext/SDBM_File/SDBM_File.pm
33022 ____________________________________________________________________________
33023 [  6416] By: jhi                                   on 2000/07/17  19:13:26
33024         Log: MPE/ix updates for perl 5.6.0 from Mark Bixby.
33025      Branch: perl
33026            ! hints/mpeix.sh mpeix/relink
33027 ____________________________________________________________________________
33028 [  6415] By: jhi                                   on 2000/07/15  14:11:02
33029         Log: Fix the bitvector ops for utf8 (tricky since past 7 bits
33030              the utf8 'characters' can be more than one octet).
33031              
33032              Date: Sat, 15 Jul 2000 00:21:56 +0100
33033              From: Tom Hughes <tom@compton.nu>
33034              Subject: Re: [ID 20000714.002]
33035              Message-ID: <db2334de49.tom@compton.compton.nu>
33036              
33037              Reported in
33038              
33039              Subject: [ID 20000714.002]
33040              From: "Simon Cozens" <simon@othersideofthe.earth.li>
33041              Date: 14 Jul 2000 15:13:09 -0000
33042              Message-Id: <20000714151309.7170.qmail@othersideofthe.earth.li>
33043      Branch: perl
33044            ! doop.c
33045 ____________________________________________________________________________
33046 [  6414] By: jhi                                   on 2000/07/15  03:13:41
33047         Log: another VMS build tweak from Peter Prymmer
33048      Branch: perl
33049            ! vms/descrip_mms.template
33050 ____________________________________________________________________________
33051 [  6413] By: jhi                                   on 2000/07/15  03:10:40
33052         Log: perlvms.pod whitespace cleanup to keep pod utils happy.
33053      Branch: perl
33054            ! vms/perlvms.pod
33055 ____________________________________________________________________________
33056 [  6412] By: jhi                                   on 2000/07/15  00:31:05
33057         Log: More docs for sv functions.
33058              
33059              Subject: [PATCH cfgperl] sv.c apidoc
33060              From: simon@brecon.co.uk (Simon Cozens)
33061              Date: 13 Jul 2000 09:00:20 GMT
33062              Message-ID: <slrn8mr194.2em.simon@justanother.perlhacker.org>
33063              
33064              Subject: Re: [PATCH cfgperl] sv.c apidoc
33065              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
33066              Date: Thu, 13 Jul 2000 12:27:41 +0100
33067              Message-Id: <E13Ch9Z-0006QL-00@libra.cus.cam.ac.uk>
33068              
33069              Subject: Re: [PATCH cfgperl] sv.c apidoc
33070              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
33071              Date: Thu, 13 Jul 2000 13:23:09 +0100
33072              Message-Id: <E13Ci1F-0007WR-00@libra.cus.cam.ac.uk>
33073              
33074              Subject: Re: [PATCH cfgperl] sv.c apidoc
33075              From: simon@brecon.co.uk (Simon Cozens)
33076              Date: 14 Jul 2000 06:51:02 GMT
33077              Message-ID: <slrn8mte2m.1qo.simon@justanother.perlhacker.org>
33078      Branch: perl
33079            ! embed.pl pod/perlapi.pod sv.c
33080 ____________________________________________________________________________
33081 [  6411] By: jhi                                   on 2000/07/15  00:10:41
33082         Log: lib/b test fixes from Peter Prymmer.
33083      Branch: perl
33084            ! t/lib/b.t
33085 ____________________________________________________________________________
33086 [  6410] By: jhi                                   on 2000/07/15  00:02:09
33087         Log: Subject: [docpatch] Re: [ID 19991002.011] perldoc -f shift
33088              From: Hugo <hv@crypt.compulink.co.uk>
33089              Date: Fri, 14 Jul 2000 23:05:20 +0100
33090              Message-Id: <200007142205.XAA17882@crypt.compulink.co.uk>
33091              
33092              Didn't anymore apply, but that point still could use another fix.
33093      Branch: perl
33094            ! pod/perlfunc.pod
33095 ____________________________________________________________________________
33096 [  6409] By: jhi                                   on 2000/07/14  23:15:15
33097         Log: thinko fix in vms/descrip_mms.template, the win32.pod in lib,
33098              not in pod, from Peter Prymmer
33099      Branch: perl
33100            ! vms/descrip_mms.template
33101 ____________________________________________________________________________
33102 [  6408] By: jhi                                   on 2000/07/14  20:35:05
33103         Log: The bug report
33104              [ID 19991110.002] minimal matching discrepancy found by pcre author
33105              seems to have been fixed (though differently from what was suggested
33106              in the report) in 5.6.0.  Add tests to keep the bug from reappearing.
33107      Branch: perl
33108            ! t/op/re_tests
33109 ____________________________________________________________________________
33110 [  6407] By: jhi                                   on 2000/07/14  17:38:08
33111         Log: Fix AutoSplit to use File::Spec the right way in VMS,
33112              from Peter Prymmer.
33113      Branch: perl
33114            ! lib/AutoSplit.pm
33115 ____________________________________________________________________________
33116 [  6406] By: jhi                                   on 2000/07/14  14:13:22
33117         Log: Merge perlhacktut into perlhack, update perlguts.
33118              
33119              Subject: Re: Perlhacktut
33120              From: simon@brecon.co.uk (Simon Cozens)
33121              Date: 14 Jul 2000 06:49:21 GMT
33122              Message-ID: <slrn8mtdvh.1qo.simon@justanother.perlhacker.org>
33123              
33124              Subject: Re: Perlhacktut
33125              From: simon@brecon.co.uk (Simon Cozens)
33126              Date: 14 Jul 2000 07:09:45 GMT
33127              Message-ID: <slrn8mtf5p.1qo.simon@justanother.perlhacker.org>
33128      Branch: perl
33129            ! pod/perlguts.pod pod/perlhack.pod
33130 ____________________________________________________________________________
33131 [  6405] By: jhi                                   on 2000/07/14  14:02:31
33132         Log: Integrate with Sarathy.
33133      Branch: cfgperl
33134           !> doop.c embed.h embed.pl embedvar.h ext/IPC/SysV/Makefile.PL
33135           !> intrpvar.h lib/ExtUtils/MM_Unix.pm mg.c op.c perlapi.h
33136           !> pod/perlapi.pod pp.c proto.h sv.h thread.h toke.c util.c
33137 ____________________________________________________________________________
33138 [  6404] By: gsar                                  on 2000/07/14  12:15:02
33139         Log: PERL_OBJECT build tweaks
33140      Branch: perl
33141            ! toke.c
33142 ____________________________________________________________________________
33143 [  6403] By: gsar                                  on 2000/07/14  11:23:41
33144         Log: inconsistent types needs casts
33145      Branch: perl
33146            ! toke.c
33147 ____________________________________________________________________________
33148 [  6402] By: gsar                                  on 2000/07/14  11:12:04
33149         Log: typos in change#6399, regen headers
33150      Branch: perl
33151            ! doop.c embed.h embedvar.h perlapi.h pod/perlapi.pod proto.h
33152 ____________________________________________________________________________
33153 [  6401] By: gsar                                  on 2000/07/14  10:59:12
33154         Log: typecasts needed for change#6394
33155      Branch: perl
33156            ! toke.c
33157 ____________________________________________________________________________
33158 [  6400] By: gsar                                  on 2000/07/14  10:49:37
33159         Log: integrate cfgperl contents into mainline
33160      Branch: perl
33161           !> Configure MANIFEST config_h.SH embed.pl global.sym proto.h
33162           !> regcomp.c regexec.c t/op/re_tests toke.c vms/subconfigure.com
33163 ____________________________________________________________________________
33164 [  6399] By: gsar                                  on 2000/07/14  10:38:35
33165         Log: enable UTF-16 filter by default if relevant BOM is seen; various
33166              cleanups (typos, misformatted code, and small bugs)
33167      Branch: perl
33168            ! doop.c embed.pl mg.c op.c pp.c toke.c
33169 ____________________________________________________________________________
33170 [  6398] By: gsar                                  on 2000/07/14  08:55:38
33171         Log: rename totally bletcherous SvLOCK() thingy (doesn't do what the
33172              name suggests anyway)
33173      Branch: perl
33174            ! ext/IPC/SysV/Makefile.PL sv.h thread.h util.c
33175 ____________________________________________________________________________
33176 [  6397] By: gsar                                  on 2000/07/14  08:44:33
33177         Log: move new variables to the end of the interpreter structure (for
33178              bincompat in code that doesn't #include XSUB.h)
33179      Branch: perl
33180            ! intrpvar.h
33181 ____________________________________________________________________________
33182 [  6396] By: gsar                                  on 2000/07/14  08:13:58
33183         Log: MakeMaker should not remove editor backups (*~) on `make clean`
33184              by default (completes change#6383)
33185      Branch: perl
33186            ! lib/ExtUtils/MM_Unix.pm
33187 ____________________________________________________________________________
33188 [  6395] By: jhi                                   on 2000/07/14  05:20:33
33189         Log: Replace change #6337 with a better one.
33190              
33191              Subject: Re: [PATCH] [ID 20000701.002] Regular Expressions Not Unsetting $1 Vars When Backtracking 
33192              From: Hugo <hv@crypt.compulink.co.uk>
33193              Date: Fri, 14 Jul 2000 04:16:20 +0100
33194              Message-Id: <200007140316.EAA15857@crypt.compulink.co.uk>
33195      Branch: cfgperl
33196            ! regexec.c t/op/re_tests
33197 ____________________________________________________________________________
33198 [  6394] By: jhi                                   on 2000/07/14  01:33:59
33199         Log: Fix the BOM bug: not a byteorder bug, a signedness bug.
33200      Branch: cfgperl
33201            ! embed.pl global.sym proto.h toke.c
33202 ____________________________________________________________________________
33203 [  6393] By: jhi                                   on 2000/07/13  23:41:23
33204         Log: remove discarded test
33205      Branch: cfgperl
33206            ! MANIFEST
33207 ____________________________________________________________________________
33208 [  6392] By: jhi                                   on 2000/07/13  23:32:25
33209         Log: The {multiplier} of a fixed substring was overlooked which
33210              caused a wrong initial search offset for that substring.
33211              
33212              Subject: [PATCH 5.6.0] Re: [ID 20000613.001] Regex works in v5.005_03 but fails in v5.06
33213              From: Hugo <hv@crypt.compulink.co.uk>
33214              Message-Id: <200007131827.TAA14487@crypt.compulink.co.uk>
33215              Date: Thu, 13 Jul 2000 19:27:13 +0100
33216      Branch: cfgperl
33217            ! regcomp.c t/op/re_tests
33218 ____________________________________________________________________________
33219 [  6391] By: jhi                                   on 2000/07/13  16:37:42
33220         Log: typo fix from Craig Berry
33221      Branch: cfgperl
33222            ! vms/subconfigure.com
33223 ____________________________________________________________________________
33224 [  6390] By: jhi                                   on 2000/07/13  13:20:12
33225         Log: Integrate with Sarathy.
33226      Branch: cfgperl
33227            - t/op/method2entersub.t
33228           !> Changes Configure Makefile.SH ext/IPC/SysV/Makefile.PL
33229           !> pod/perldelta.pod sv.c t/lib/english.t t/lib/selfloader.t
33230           !> t/op/sprintf.t toke.c win32/Makefile win32/config_h.PL
33231           !> win32/makefile.mk win32/win32sck.c x2p/Makefile.SH
33232 ____________________________________________________________________________
33233 [  6389] By: jhi                                   on 2000/07/13  13:18:48
33234         Log: Detypo from Peter Prymmer, part of #6388.
33235      Branch: cfgperl
33236            ! Configure config_h.SH
33237      Branch: metaconfig
33238            ! U/modified/d_longlong.U
33239 ____________________________________________________________________________
33240 [  6388] By: gsar                                  on 2000/07/13  06:33:40
33241         Log: typos (spotted by Peter Prymmer)
33242      Branch: perl
33243            ! Configure t/lib/english.t
33244 ____________________________________________________________________________
33245 [  6387] By: gsar                                  on 2000/07/13  05:35:28
33246         Log: new selfloader.t in change#6183 doesn't close DATA handles,
33247              and thus fails to clean up tmp files on dosish platforms
33248      Branch: perl
33249            ! t/lib/selfloader.t
33250 ____________________________________________________________________________
33251 [  6386] By: gsar                                  on 2000/07/12  21:42:39
33252         Log: sprintf test tweaks (from Dominic Dunlop)
33253      Branch: perl
33254            ! t/op/sprintf.t
33255 ____________________________________________________________________________
33256 [  6385] By: gsar                                  on 2000/07/12  21:33:46
33257         Log: fix bugs in processing %v-*d and similar format specs (from
33258              Avi Finkel <avi@finkel.org>)
33259      Branch: perl
33260            ! sv.c t/op/sprintf.t
33261 ____________________________________________________________________________
33262 [  6384] By: gsar                                  on 2000/07/12  16:04:19
33263         Log: readd missing perldelta.pod changes from changes#6339,6376
33264      Branch: perl
33265            ! pod/perldelta.pod
33266 ____________________________________________________________________________
33267 [  6383] By: gsar                                  on 2000/07/12  16:00:51
33268         Log: don't clobber *.orig files on *clean targets
33269      Branch: perl
33270            ! Makefile.SH ext/IPC/SysV/Makefile.PL x2p/Makefile.SH
33271 ____________________________________________________________________________
33272 [  6382] By: gsar                                  on 2000/07/12  07:59:12
33273         Log: fix broken integrations in cfgperl
33274      Branch: cfgperl
33275           !> Changes pod/perldelta.pod
33276 ____________________________________________________________________________
33277 [  6381] By: gsar                                  on 2000/07/12  07:42:17
33278         Log: integrate cfgperl changes into mainline
33279      Branch: perl
33280            ! Changes
33281           !> Configure config_h.SH pod/perlbook.pod pod/perldelta.pod
33282           !> pod/perlre.pod
33283 ____________________________________________________________________________
33284 [  6380] By: gsar                                  on 2000/07/12  07:31:00
33285         Log: get sprintf.t to adjust properly for 3-digit exponents
33286      Branch: perl
33287            ! t/op/sprintf.t
33288 ____________________________________________________________________________
33289 [  6379] By: gsar                                  on 2000/07/12  06:40:04
33290         Log: change#6174 needs corresponding change in win32/config_h.PL,
33291              which grovels through config_h.SH to find the config.h name
33292      Branch: perl
33293            ! win32/config_h.PL
33294 ____________________________________________________________________________
33295 [  6378] By: jhi                                   on 2000/07/12  05:03:59
33296         Log: Do the cc sanity check both before the hints and
33297              after the cc selction.
33298      Branch: cfgperl
33299            ! Configure config_h.SH
33300      Branch: metaconfig
33301            ! U/modified/Oldconfig.U U/modified/cc.U
33302      Branch: metaconfig/U/perl
33303            + Checkcc.U
33304 ____________________________________________________________________________
33305 [  6377] By: jhi                                   on 2000/07/12  02:49:22
33306         Log: Fix nits noticed by Boston.pm.
33307      Branch: cfgperl
33308            ! pod/perlre.pod
33309 ____________________________________________________________________________
33310 [  6376] By: jhi                                   on 2000/07/11  21:22:13
33311         Log: Configure cosmetics and perldelta.
33312      Branch: cfgperl
33313            ! Configure config_h.SH pod/perldelta.pod
33314      Branch: metaconfig
33315            ! U/modified/cc.U
33316 ____________________________________________________________________________
33317 [  6375] By: gsar                                  on 2000/07/11  21:17:35
33318         Log: windows build tweaks (op/sprintf.t still fails tests 120-121, 149)
33319      Branch: perl
33320            ! t/op/sprintf.t win32/Makefile win32/makefile.mk
33321            ! win32/win32sck.c
33322 ____________________________________________________________________________
33323 [  6374] By: gsar                                  on 2000/07/11  20:48:50
33324         Log: tweak for build failure under multiplicity
33325      Branch: perl
33326            ! toke.c
33327 ____________________________________________________________________________
33328 [  6373] By: gsar                                  on 2000/07/11  20:37:23
33329         Log: integrate cfgperl changes#6325..6373 into mainline
33330              (NOTE: today's batch of integrations still untested)
33331      Branch: perl
33332           +> ext/DynaLoader/hints/netbsd.pl
33333            ! Changes
33334           !> (integrate 26 files)
33335 ____________________________________________________________________________
33336 [  6372] By: jhi                                   on 2000/07/11  20:30:36
33337         Log: Reintroduce perlbook (updated for Mk III), introduce perlposix-bc,
33338              regen perltoc.
33339      Branch: cfgperl
33340            + pod/perlbook.pod
33341            ! MANIFEST pod/Makefile.SH pod/buildtoc.PL pod/perl.pod
33342            ! pod/perltoc.pod
33343 ____________________________________________________________________________
33344 [  6371] By: jhi                                   on 2000/07/11  20:08:56
33345         Log: Minor cleanups on the booklist.
33346      Branch: cfgperl
33347            ! pod/perlfaq2.pod
33348 ____________________________________________________________________________
33349 [  6370] By: jhi                                   on 2000/07/11  19:31:13
33350         Log: mjd's tr patches "broke" tr/z-Z/z-Z/
33351      Branch: cfgperl
33352            ! t/pragma/overload.t
33353 ____________________________________________________________________________
33354 [  6369] By: gsar                                  on 2000/07/11  19:27:48
33355         Log: integrate cfgperl changes#6293..6324 into mainline
33356      Branch: perl
33357           +> lib/Win32.pod lib/lib_pm.PL pod/Makefile.SH pod/buildtoc.PL
33358            - lib/lib.pm.PL pod/Makefile pod/Win32.pod pod/buildtoc
33359           !> (integrate 30 files)
33360 ____________________________________________________________________________
33361 [  6368] By: gsar                                  on 2000/07/11  19:18:57
33362         Log: skip integrate of problematic change#6292 from cfgperl into mainline
33363      Branch: perl
33364           !> pp_hot.c
33365 ____________________________________________________________________________
33366 [  6367] By: gsar                                  on 2000/07/11  19:17:21
33367         Log: integrate cfgperl changes#6288..6290 into mainline
33368      Branch: perl
33369           !> lib/File/Spec/Functions.pm lib/File/Spec/OS2.pm
33370 ____________________________________________________________________________
33371 [  6366] By: gsar                                  on 2000/07/11  19:11:18
33372         Log: integrate cfgperl changes#6268..6282 into mainline
33373      Branch: perl
33374           !> (integrate 30 files)
33375 ____________________________________________________________________________
33376 [  6365] By: gsar                                  on 2000/07/11  18:57:00
33377         Log: delete new accidentally branched file
33378      Branch: perl
33379            - t/op/method2entersub.t
33380 ____________________________________________________________________________
33381 [  6364] By: gsar                                  on 2000/07/11  18:55:13
33382         Log: skip integrate of change#6267 from cfgperl into mainline (the
33383              method call optimization is flawed without additional hints
33384              from user about immutableness of @ISA and no runtime method
33385              definitions)
33386      Branch: perl
33387           +> t/op/method2entersub.t
33388           !> MANIFEST embed.pl lib/ExtUtils/Install.pm lib/base.pm op.c
33389           !> perl.h t/op/sprintf.t xsutils.c
33390 ____________________________________________________________________________
33391 [  6363] By: gsar                                  on 2000/07/11  18:49:43
33392         Log: integrate cfgperl changes#6261..6266 into mainline
33393      Branch: perl
33394           !> README.epoc cygwin/Makefile.SHs doop.c epoc/config.sh
33395           !> epoc/createpkg.pl epoc/epocish.c epoc/epocish.h
33396           !> ext/POSIX/POSIX.pm ext/POSIX/POSIX.pod ext/POSIX/POSIX.xs
33397           !> hints/bsdos.sh pod/perldiag.pod t/comp/require.t toke.c
33398 ____________________________________________________________________________
33399 [  6362] By: gsar                                  on 2000/07/11  18:43:26
33400         Log: integrate cfgperl changes#6252..6260 into mainline
33401      Branch: perl
33402           !> MANIFEST doop.c embed.h embed.pl embedvar.h lib/Exporter.pm
33403           !> lib/IPC/Open3.pm objXSUB.h op.c pod/perlfunc.pod pp.c
33404           !> pp_proto.h proto.h sv.c t/op/my_stash.t t/op/pack.t t/op/tr.t
33405           !> t/pragma/constant.t t/pragma/warn/op t/pragma/warn/regcomp
33406 ____________________________________________________________________________
33407 [  6361] By: gsar                                  on 2000/07/11  18:37:12
33408         Log: skip integrate of problematic change#6251 from cfgperl into mainline
33409      Branch: perl
33410           !> lib/Exporter.pm
33411 ____________________________________________________________________________
33412 [  6360] By: gsar                                  on 2000/07/11  18:34:56
33413         Log: integrate cfgperl change#6250 into mainline
33414      Branch: perl
33415           +> t/op/my_stash.t
33416           !> MANIFEST embed.pl proto.h toke.c
33417 ____________________________________________________________________________
33418 [  6359] By: gsar                                  on 2000/07/11  18:21:19
33419         Log: integrate cfgperl changes#6242..6249 into mainline
33420      Branch: perl
33421           !> embed.h embed.pl embedvar.h ext/DynaLoader/DynaLoader_pm.PL
33422           !> gv.c lib/File/Spec.pm lib/IPC/Open3.pm objXSUB.h perlapi.c
33423           !> perlapi.h pod/perlapi.pod pod/perlfunc.pod pod/perlintern.pod
33424           !> pp_proto.h proto.h sv.c t/lib/filefunc.t t/lib/filespec.t
33425           !> t/lib/peek.t utf8.c
33426 ____________________________________________________________________________
33427 [  6358] By: gsar                                  on 2000/07/11  18:15:45
33428         Log: skip integrate of problematic change#6241 from cfgperl into mainline
33429      Branch: perl
33430           !> regcomp.c t/pragma/warn/regcomp t/pragma/warn/toke toke.c
33431 ____________________________________________________________________________
33432 [  6357] By: jhi                                   on 2000/07/11  18:15:16
33433         Log: Fix for
33434              Subject: [ID 20000711.005] spurious uninit warning with msgrcv()
33435              From: Roderick Schertler <roderick@argon.org> 
33436              Date: Tue, 11 Jul 2000 13:55:05 -0400 
33437              Message-Id: <200007111755.NAA05077@jones.argon.org> 
33438      Branch: cfgperl
33439            ! doio.c
33440 ____________________________________________________________________________
33441 [  6356] By: jhi                                   on 2000/07/11  18:12:51
33442         Log: Typo in #6341.
33443      Branch: cfgperl
33444            ! pp_hot.c
33445 ____________________________________________________________________________
33446 [  6355] By: gsar                                  on 2000/07/11  18:12:10
33447         Log: integrate cfgperl changes#6231..6240 into mainline
33448      Branch: perl
33449           +> pod/perlutil.pod
33450           !> (integrate 35 files)
33451 ____________________________________________________________________________
33452 [  6354] By: jhi                                   on 2000/07/11  18:04:34
33453         Log: Subject: [PATCH perl-current] Make op/sprintf.t more comprehensive, take 2
33454              From: Dominic Dunlop <domo@computer.org> 
33455              Date: Tue, 11 Jul 2000 12:27:33 +0200 
33456              Message-Id: <p04320405b590a14d4650@[192.168.1.4]> 
33457              
33458              Replaces change #6268.
33459      Branch: cfgperl
33460            ! t/op/sprintf.t
33461 ____________________________________________________________________________
33462 [  6353] By: gsar                                  on 2000/07/11  17:59:51
33463         Log: skip integrate of problematic change#6230 from cfgperl into mainline
33464              (a later version of File::Spec is already in mainline)
33465      Branch: perl
33466           !> lib/File/Spec.pm lib/File/Spec/Functions.pm
33467           !> lib/File/Spec/OS2.pm t/lib/filefunc.t t/lib/filespec.t
33468 ____________________________________________________________________________
33469 [  6352] By: gsar                                  on 2000/07/11  17:57:48
33470         Log: integrate cfgperl changes#6224..6229 into mainline
33471      Branch: perl
33472           +> lib/lib.pm.PL
33473            - lib/lib.pm
33474           !> MANIFEST Makefile.SH README.hpux embed.pl ext/Socket/Socket.pm
33475           !> lib/English.pm op.c t/lib/english.t
33476 ____________________________________________________________________________
33477 [  6351] By: gsar                                  on 2000/07/11  17:50:10
33478         Log: skip integrate of problematic change#6223 from cfgperl into mainline
33479      Branch: perl
33480           !> doio.c
33481 ____________________________________________________________________________
33482 [  6350] By: gsar                                  on 2000/07/11  17:48:28
33483         Log: integrate cfgperl changes#6220..6222 into mainline
33484      Branch: perl
33485           !> doop.c embed.pl lib/Pod/Usage.pm makedef.pl pod/perlop.pod
33486           !> toke.c utf8.c win32/win32.h
33487 ____________________________________________________________________________
33488 [  6349] By: gsar                                  on 2000/07/11  17:46:13
33489         Log: skip integrate of problematic changes#6218..6219 from cfgperl into
33490              mainline
33491      Branch: perl
33492           !> bytecode.pl ext/B/B/Assembler.pm ext/B/B/Bytecode.pm
33493           !> ext/B/O.pm ext/B/defsubs_h.PL ext/ByteLoader/ByteLoader.pm
33494           !> ext/ByteLoader/ByteLoader.xs ext/ByteLoader/bytecode.h
33495 ____________________________________________________________________________
33496 [  6348] By: jhi                                   on 2000/07/11  17:45:49
33497         Log: README.posix-bc podified from Thomas Dorner.
33498      Branch: cfgperl
33499            ! README.posix-bc
33500 ____________________________________________________________________________
33501 [  6347] By: gsar                                  on 2000/07/11  17:42:04
33502         Log: integrate cfgperl change#6217 into mainline
33503      Branch: perl
33504           !> Configure config_h.SH doio.c embed.h embed.pl embedvar.h gv.c
33505           !> intrpvar.h objXSUB.h perl.c perlapi.h pp.c pp_ctl.c proto.h
33506           !> sv.h util.c util.h vmesa/vmesa.c win32/win32.c
33507 ____________________________________________________________________________
33508 [  6346] By: gsar                                  on 2000/07/11  17:39:37
33509         Log: skip integrate of problematic changes#6211..6212 from cfgperl into
33510              mainline
33511      Branch: perl
33512           !> embedvar.h ext/B/B.xs ext/B/B/Asmdata.pm ext/B/defsubs_h.PL
33513           !> ext/ByteLoader/ByteLoader.xs ext/ByteLoader/bytecode.h
33514           !> ext/ByteLoader/byterun.c ext/ByteLoader/byterun.h perlapi.c
33515           !> perlapi.h pod/perlapi.pod
33516 ____________________________________________________________________________
33517 [  6345] By: gsar                                  on 2000/07/11  17:36:42
33518         Log: integrate cfgperl changes#6207..6210 into mainline
33519      Branch: perl
33520           !> doio.c embed.h embed.pl gv.c intrpvar.h objXSUB.h perl.c pp.c
33521           !> pp_ctl.c proto.h sv.h util.c vmesa/vmesa.c win32/win32.c
33522 ____________________________________________________________________________
33523 [  6344] By: gsar                                  on 2000/07/11  17:31:20
33524         Log: skip integrate of problematic changes#6204..6206 from cfgperl into
33525              mainline
33526      Branch: perl
33527           !> (integrate 40 files)
33528 ____________________________________________________________________________
33529 [  6343] By: gsar                                  on 2000/07/11  17:19:08
33530         Log: integrate cfgperl changes#6174..6203 into mainline (first of several)
33531      Branch: perl
33532           +> Makefile.micro README.micro Todo.micro uconfig.h uconfig.sh
33533            ! Changes
33534           !> (integrate 34 files)
33535 ____________________________________________________________________________
33536 [  6342] By: jhi                                   on 2000/07/11  16:05:48
33537         Log: Subject: [ID 20000710.002] fatal error or memory loss when deleting symbols in evaled code with syntax errors
33538              To: perl5-porters@perl.org
33539              From: Karsten Sperling <spiff@phreax.net>
33540              Date: Mon, 10 Jul 2000 15:12:52 +0200
33541              Message-Id: <200007101315.e6ADFrg21041@chthon.perl.com>
33542      Branch: cfgperl
33543            ! lib/Symbol.pm
33544 ____________________________________________________________________________
33545 [  6341] By: jhi                                   on 2000/07/11  15:59:23
33546         Log: Subject: Re: [ID 20000704.002] [PATCH] memory leak with debug / anon subs
33547              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
33548              Message-Id: <E13AbRE-00009T-00@libra.cus.cam.ac.uk>
33549              Date: Fri, 07 Jul 2000 17:57:16 +0100
33550      Branch: cfgperl
33551            ! pp_hot.c
33552 ____________________________________________________________________________
33553 [  6340] By: jhi                                   on 2000/07/11  15:55:47
33554         Log: Subject: Re: format bug report  [Patch]
33555              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
33556              Date: Wed, 05 Jul 2000 13:12:52 +0200
33557              Message-Id: <20000705130745.67BF.H.M.BRAND@hccnet.nl>
33558              
33559              Subject: Re: format bug report  [Patch]
33560              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
33561              Date: Wed, 05 Jul 2000 14:10:01 +0200
33562              Message-Id: <20000705140837.73C2.H.M.BRAND@hccnet.nl>
33563      Branch: cfgperl
33564            ! t/op/write.t toke.c
33565 ____________________________________________________________________________
33566 [  6339] By: jhi                                   on 2000/07/11  13:54:09
33567         Log: Be less forgiving about ambiguous and illegal tr ranges.
33568              Subject: Re: [ID 20000703.001] tr/// operator understands multiple hyphens in a bizarre way 
33569              From: Mark-Jason Dominus <mjd@plover.com>
33570              Date: Tue, 04 Jul 2000 10:00:12 -0400
33571              Message-ID: <20000704140012.17772.qmail@plover.com>
33572              
33573              Subject: Re: [ID 20000703.001] tr/// operator understands multiple hyphens in a bizarre way 
33574              From: Mark-Jason Dominus <mjd@plover.com>
33575              Date: Wed, 05 Jul 2000 09:37:36 -0400
33576              Message-ID: <20000705133736.27293.qmail@plover.com>
33577      Branch: cfgperl
33578            ! pod/perldelta.pod pod/perldiag.pod t/op/tr.t toke.c
33579 ____________________________________________________________________________
33580 [  6338] By: jhi                                   on 2000/07/11  13:31:24
33581         Log: Subject: [PATCH] Re: "%#p" format specifier: document and test or not?
33582              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
33583              Date: Tue, 11 Jul 2000 13:50:51 +0100
33584              Message-Id: <E13BzUx-00033c-00@libra.cus.cam.ac.uk>
33585      Branch: cfgperl
33586            ! sv.c
33587 ____________________________________________________________________________
33588 [  6337] By: jhi                                   on 2000/07/11  13:29:14
33589         Log: Subject: [PATCH] [ID 20000701.002] Regular Expressions Not Unsetting $1 Vars When Backtracking 
33590              From: Hugo <hv@crypt.compulink.co.uk>
33591              Date: Tue, 11 Jul 2000 12:44:50 +0100
33592              Message-Id: <200007111144.MAA04446@crypt.compulink.co.uk>
33593      Branch: cfgperl
33594            ! regexec.c t/op/re_tests
33595 ____________________________________________________________________________
33596 [  6336] By: jhi                                   on 2000/07/11  13:26:47
33597         Log: Subject: [PATCH cfgperl] $& segfaults if you trick it
33598              From: simon@brecon.co.uk (Simon Cozens)
33599              Date: 7 Jul 2000 11:26:09 GMT
33600              Message-ID: <slrn8mbfif.ead.simon@justanother.perlhacker.org>
33601      Branch: cfgperl
33602            ! mg.c
33603 ____________________________________________________________________________
33604 [  6335] By: jhi                                   on 2000/07/11  13:23:37
33605         Log: Subject: [ID 20000705.002] problem with perl 5.6.0 on NetBSD/sparc
33606              From: Hubert Feyrer <feyrer@rfhs8012.fh-regensburg.de>
33607              Date: Wed, 5 Jul 2000 14:56:43 +0200 (MET DST)
33608              Message-Id: <Pine.GSO.4.10.10007051452330.29215-100000@rfhpc8320.fh-regensburg.de>
33609      Branch: cfgperl
33610            + ext/DynaLoader/hints/netbsd.pl
33611            ! MANIFEST ext/DynaLoader/hints/openbsd.pl
33612 ____________________________________________________________________________
33613 [  6334] By: jhi                                   on 2000/07/11  13:20:38
33614         Log: Subject: PATCH perlguts.pod: Document D and d magic types
33615              From: mjd@plover.com
33616              Date: 5 Jul 2000 18:01:51 -0000
33617              Message-ID: <20000705180151.29413.qmail@plover.com>
33618      Branch: cfgperl
33619            ! pod/perlguts.pod
33620 ____________________________________________________________________________
33621 [  6333] By: jhi                                   on 2000/07/11  13:15:51
33622         Log: Precedence goof, fix based on
33623              Subject: [PATCH 5.6.0] op/taint.t continues on failed shmget()
33624              From: Hugo <hv@crypt.compulink.co.uk>
33625              Date: Tue, 11 Jul 2000 12:52:38 +0100
33626              Message-Id: <200007111152.MAA05488@crypt.compulink.co.uk>
33627      Branch: cfgperl
33628            ! t/op/taint.t
33629 ____________________________________________________________________________
33630 [  6332] By: jhi                                   on 2000/07/11  12:40:17
33631         Log: Integrate with Sarathy.
33632      Branch: cfgperl
33633           !> win32/win32sck.c
33634 ____________________________________________________________________________
33635 [  6331] By: jhi                                   on 2000/07/10  20:14:16
33636         Log: Sprinkle ldlibpath.
33637      Branch: cfgperl
33638            ! pod/Makefile.SH
33639 ____________________________________________________________________________
33640 [  6330] By: jhi                                   on 2000/07/10  17:54:49
33641         Log: More POSIX.pod tweaks.
33642      Branch: cfgperl
33643            ! ext/POSIX/POSIX.pod
33644 ____________________________________________________________________________
33645 [  6329] By: jhi                                   on 2000/07/10  14:02:12
33646         Log: Reorder perl.pod once more.
33647      Branch: cfgperl
33648            ! pod/buildtoc.PL pod/perl.pod pod/perltoc.pod
33649 ____________________________________________________________________________
33650 [  6328] By: gsar                                  on 2000/07/10  07:06:00
33651         Log: accept() leaks memory on windows due to incorrect ordering of
33652              closesocket() and fclose() calls
33653      Branch: perl
33654            ! win32/win32sck.c
33655 ____________________________________________________________________________
33656 [  6327] By: gsar                                  on 2000/07/10  06:49:17
33657         Log: winsock options weren't being set in all threads under ithreads
33658              (caused send()s from second and subsequent threads to fail)
33659      Branch: perl
33660            ! win32/win32sck.c
33661 ____________________________________________________________________________
33662 [  6326] By: jhi                                   on 2000/07/08  02:45:40
33663         Log: Fix a nit spotted by 64bit IRIX compilation: a (64-bit) pointer
33664              was cast to an unsigned (32-bit) integer with wild abandon.
33665      Branch: cfgperl
33666            ! ext/Devel/DProf/DProf.xs
33667 ____________________________________________________________________________
33668 [  6325] By: jhi                                   on 2000/07/07  18:50:33
33669         Log: Remove perlbook, update perlfaq book listing,
33670              rearrange perl.pod, regenerate perltoc.
33671      Branch: cfgperl
33672            - pod/perlbook.pod
33673            ! MANIFEST pod/buildtoc.PL pod/perl.pod pod/perldiag.pod
33674            ! pod/perlfaq2.pod pod/perltoc.pod
33675 ____________________________________________________________________________
33676 [  6324] By: jhi                                   on 2000/07/07  14:03:40
33677         Log: Fix the alignment problem in Crays ([ID 20000612.002]).
33678      Branch: cfgperl
33679            ! sv.h toke.c
33680 ____________________________________________________________________________
33681 [  6323] By: jhi                                   on 2000/07/06  16:03:55
33682         Log: Fix complaints of buildtoc.
33683      Branch: cfgperl
33684            + lib/Win32.pod
33685            - pod/Win32.pod
33686            ! MANIFEST pod/buildtoc.PL pod/perl.pod pod/perltoc.pod
33687 ____________________________________________________________________________
33688 [  6322] By: jhi                                   on 2000/07/06  15:15:52
33689         Log: Add =head1 NAMEs so that buildtoc is happy.
33690              (The CGI::Util nit reported to Lincoln.)
33691      Branch: cfgperl
33692            ! ext/B/B/Stash.pm lib/CGI/Util.pm lib/warnings/register.pm
33693            ! pod/perltoc.pod
33694 ____________________________________________________________________________
33695 [  6321] By: jhi                                   on 2000/07/06  03:16:04
33696         Log: Config is being used.
33697      Branch: cfgperl
33698            ! t/op/method.t
33699 ____________________________________________________________________________
33700 [  6320] By: jhi                                   on 2000/07/06  03:13:13
33701         Log: Integrate with Sarathy.
33702      Branch: cfgperl
33703           !> lib/perl5db.pl win32/perllib.c win32/vdir.h win32/win32sck.c
33704 ____________________________________________________________________________
33705 [  6319] By: jhi                                   on 2000/07/06  03:11:46
33706         Log: Autogenerate pod/Makefile and pod/buildtoc.
33707              buildtoc also checks whether the existin pods are
33708              mentioned in MANIFEST and perl.pod, and vice versa.
33709              (None of the thusly found discrepancies fixed yet.)
33710              roffitall also needs to be autogenerated similarly but it
33711              seems so badly out of date that I didn't touch it yet.
33712      Branch: cfgperl
33713            + pod/Makefile.SH pod/buildtoc.PL
33714            - pod/Makefile pod/buildtoc
33715            ! MANIFEST Makefile.SH pod/perl.pod pod/perltoc.pod
33716 ____________________________________________________________________________
33717 [  6318] By: gsar                                  on 2000/07/05  22:10:54
33718         Log: fix UNC path handling on Windows under ithreads, and chdir()
33719              return value when given a non-existent directory
33720      Branch: perl
33721            ! win32/vdir.h
33722 ____________________________________________________________________________
33723 [  6317] By: gsar                                  on 2000/07/05  22:08:19
33724         Log: winsock cleanup never done on Windows (leads to handle leaks)
33725      Branch: perl
33726            ! win32/perllib.c win32/win32sck.c
33727 ____________________________________________________________________________
33728 [  6316] By: gsar                                  on 2000/07/05  22:06:19
33729         Log: some debugger output does not go to the socket when RemotePort is set
33730      Branch: perl
33731            ! lib/perl5db.pl
33732 ____________________________________________________________________________
33733 [  6315] By: jhi                                   on 2000/07/05  00:25:21
33734         Log: Integrate with Sarathy, preliminary fix for unicos
33735              alignment problems in [ID 20000612.002] Perl problem on Cray system.
33736      Branch: cfgperl
33737            ! sv.h
33738           !> pp_hot.c
33739 ____________________________________________________________________________
33740 [  6314] By: gsar                                  on 2000/07/04  23:34:02
33741         Log: tyop in change#6306
33742      Branch: perl
33743            ! pp_hot.c
33744 ____________________________________________________________________________
33745 [  6313] By: jhi                                   on 2000/07/04  22:14:38
33746         Log: Multiline string literals ENONPORTABLE.
33747      Branch: cfgperl
33748            ! pp_hot.c
33749 ____________________________________________________________________________
33750 [  6312] By: jhi                                   on 2000/07/04  20:34:44
33751         Log: Integrate with Sarathy.
33752      Branch: cfgperl
33753           !> pod/perldelta.pod pod/perldiag.pod pp_hot.c t/lib/b.t
33754           !> t/op/method.t
33755 ____________________________________________________________________________
33756 [  6311] By: jhi                                   on 2000/07/04  20:30:56
33757         Log: More POSIX.pod embellishment.
33758      Branch: cfgperl
33759            ! ext/POSIX/POSIX.pod
33760 ____________________________________________________________________________
33761 [  6310] By: gsar                                  on 2000/07/04  17:28:48
33762         Log: b.t fails under OS/2 (from Yitzchak Scott-Thoennes)
33763      Branch: perl
33764            ! t/lib/b.t
33765 ____________________________________________________________________________
33766 [  6309] By: jhi                                   on 2000/07/04  17:22:18
33767         Log: The #6308 required a little bit more.
33768      Branch: cfgperl
33769            ! Makefile.SH win32/Makefile
33770 ____________________________________________________________________________
33771 [  6308] By: jhi                                   on 2000/07/04  16:35:24
33772         Log: Rename lib.pm.PL to lib_pm.PL to keep the 8.3 people happy.
33773      Branch: cfgperl
33774            + lib/lib_pm.PL
33775            - lib/lib.pm.PL
33776            ! MANIFEST Makefile.SH
33777 ____________________________________________________________________________
33778 [  6307] By: jhi                                   on 2000/07/04  16:28:58
33779         Log: Win32 patches for cfgperl from Sarathy.
33780      Branch: cfgperl
33781            ! doio.c doop.c embed.h embed.pl global.sym gv.c makedef.pl
33782            ! objXSUB.h op.c perlapi.c pp.c pp_ctl.c pp_hot.c proto.h
33783            ! thread.h toke.c util.c win32/Makefile win32/win32.c
33784 ____________________________________________________________________________
33785 [  6306] By: gsar                                  on 2000/07/04  16:28:40
33786         Log: better diagnostic on Frob->stuff() when Frob:: doesn't exist
33787              (from Richard Soderberg <rs@oregonnet.com>)
33788      Branch: perl
33789            ! pod/perldelta.pod pod/perldiag.pod pp_hot.c t/op/method.t
33790 ____________________________________________________________________________
33791 [  6305] By: jhi                                   on 2000/07/04  16:24:24
33792         Log: Integrate with Sarathy.
33793      Branch: cfgperl
33794           !> embed.h embed.pl global.sym lib/File/Spec/Mac.pm
33795           !> lib/File/Spec/Unix.pm lib/File/Spec/VMS.pm
33796           !> lib/File/Spec/Win32.pm objXSUB.h perlapi.c pod/perldiag.pod
33797           !> proto.h win32/win32.c
33798 ____________________________________________________________________________
33799 [  6304] By: gsar                                  on 2000/07/04  16:17:24
33800         Log: missing perldiag entry for unpack("w",...) diagnostic (from
33801              Andreas Koenig)
33802      Branch: perl
33803            ! pod/perldiag.pod
33804 ____________________________________________________________________________
33805 [  6303] By: gsar                                  on 2000/07/04  16:14:44
33806         Log: remove rel2abs prototypes (from Barrie Slaymaker)
33807      Branch: perl
33808            ! lib/File/Spec/Mac.pm lib/File/Spec/Unix.pm
33809            ! lib/File/Spec/VMS.pm lib/File/Spec/Win32.pm
33810 ____________________________________________________________________________
33811 [  6302] By: gsar                                  on 2000/07/04  04:59:35
33812         Log: adjust change#6299
33813      Branch: perl
33814            ! embed.h embed.pl global.sym objXSUB.h perlapi.c proto.h
33815            ! win32/win32.c
33816 ____________________________________________________________________________
33817 [  6301] By: jhi                                   on 2000/07/04  04:50:07
33818         Log: Integrate with Sarathy.
33819      Branch: cfgperl
33820           !> embed.h embed.pl embedvar.h global.sym hv.c intrpvar.h
33821           !> makedef.pl objXSUB.h perl.c perl.h perlapi.c perlapi.h
33822           !> pp_hot.c proto.h sv.c t/io/argv.t win32/win32.c
33823 ____________________________________________________________________________
33824 [  6300] By: gsar                                  on 2000/07/04  04:42:09
33825         Log: PERL_OBJECT build tweak
33826      Branch: perl
33827            ! perl.h
33828 ____________________________________________________________________________
33829 [  6299] By: gsar                                  on 2000/07/04  04:37:00
33830         Log: fix memory leak on Windows (PL_sys_intern contents were never
33831              freed)
33832      Branch: perl
33833            ! embed.h embed.pl global.sym makedef.pl objXSUB.h perl.c
33834            ! perlapi.c proto.h win32/win32.c
33835 ____________________________________________________________________________
33836 [  6298] By: gsar                                  on 2000/07/04  04:15:59
33837         Log: fix large memory leak that has been around for ever, masked by
33838              -DPURIFY (most of the arenas were never freed!)
33839      Branch: perl
33840            ! embedvar.h global.sym hv.c intrpvar.h perl.c perlapi.h sv.c
33841 ____________________________________________________________________________
33842 [  6297] By: gsar                                  on 2000/07/04  04:07:46
33843         Log: fix ~320 byte memory leak (psig_{ptr,name} tables were never freed)
33844      Branch: perl
33845            ! perl.c
33846 ____________________________________________________________________________
33847 [  6296] By: jhi                                   on 2000/06/30  18:28:37
33848         Log: Elaborate POSIX.pod.  Still needs work.
33849      Branch: cfgperl
33850            ! ext/POSIX/POSIX.pod
33851 ____________________________________________________________________________
33852 [  6295] By: jhi                                   on 2000/06/30  14:58:18
33853         Log: Point to perlipc for more SysV IPC examples.
33854      Branch: cfgperl
33855            ! pod/perlfunc.pod
33856 ____________________________________________________________________________
33857 [  6294] By: gsar                                  on 2000/06/30  14:47:45
33858         Log: slurp mode fix in change#4736 still not quite right
33859      Branch: perl
33860            ! pp_hot.c t/io/argv.t
33861 ____________________________________________________________________________
33862 [  6293] By: jhi                                   on 2000/06/30  12:02:55
33863         Log: Integrate with Sarathy.
33864      Branch: cfgperl
33865           !> cop.h pp_ctl.c pp_hot.c t/op/args.t
33866 ____________________________________________________________________________
33867 [  6292] By: jhi                                   on 2000/06/30  12:01:11
33868         Log: From: simon@brecon.co.uk (Simon Cozens)
33869              Subject: UTF8 concat
33870              Date: 30 Jun 2000 06:13:25 GMT
33871              Message-ID: <slrn8loek5.9ai.simon@justanother.perlhacker.org>
33872      Branch: cfgperl
33873            ! pp_hot.c
33874 ____________________________________________________________________________
33875 [  6291] By: gsar                                  on 2000/06/30  04:37:33
33876         Log: dounwind() may cause POPSUB() to diddle the wrong PL_curpad
33877              when @_ is modified, causing coredumps
33878      Branch: perl
33879            ! cop.h pp_ctl.c pp_hot.c t/op/args.t
33880 ____________________________________________________________________________
33881 [  6290] By: jhi                                   on 2000/06/30  02:21:44
33882         Log: Integrate with Sarathy.
33883      Branch: cfgperl
33884           !> vms/vms.c vms/vmsish.h
33885 ____________________________________________________________________________
33886 [  6289] By: jhi                                   on 2000/06/30  02:21:02
33887         Log: Check VERSIONs.
33888      Branch: cfgperl
33889            ! lib/File/Spec/Functions.pm lib/File/Spec/Mac.pm
33890            ! lib/File/Spec/OS2.pm lib/File/Spec/Unix.pm
33891            ! lib/File/Spec/VMS.pm lib/File/Spec/Win32.pm
33892 ____________________________________________________________________________
33893 [  6288] By: jhi                                   on 2000/06/30  02:18:52
33894         Log: Integrate with Sarathy.
33895      Branch: cfgperl
33896           !> ext/Opcode/Opcode.xs lib/File/Spec.pm
33897           !> lib/File/Spec/Functions.pm lib/File/Spec/Mac.pm
33898           !> lib/File/Spec/OS2.pm lib/File/Spec/Unix.pm
33899           !> lib/File/Spec/VMS.pm lib/File/Spec/Win32.pm pod/perlembed.pod
33900 ____________________________________________________________________________
33901 [  6287] By: gsar                                  on 2000/06/30  02:17:08
33902         Log: integrate vmsperl changes into mainline
33903      Branch: perl
33904           !> vms/vms.c vms/vmsish.h
33905 ____________________________________________________________________________
33906 [  6285] By: gsar                                  on 2000/06/30  02:05:28
33907         Log: localize %INC in a Safe compartment so that use/require work
33908              (many other magic globals probably need similar treatment)
33909      Branch: perl
33910            ! ext/Opcode/Opcode.xs
33911 ____________________________________________________________________________
33912 [  6284] By: gsar                                  on 2000/06/30  01:54:54
33913         Log: tweak perlembed for multiplicity/usethreads sanity; correct notes
33914              about Windows
33915      Branch: perl
33916            ! pod/perlembed.pod
33917 ____________________________________________________________________________
33918 [  6283] By: jhi                                   on 2000/06/30  01:50:10
33919         Log: Subject: [PATCH bleedperl] File::Spec 0.82 beta
33920              From: Barrie Slaymaker <barries@jester.slaysys.com>
33921              Date: Wed, 28 Jun 2000 11:35:29 -0400
33922              Message-Id: <200006281535.LAA21095@jester.slaysys.com>
33923      Branch: perl
33924            ! lib/File/Spec.pm lib/File/Spec/Functions.pm
33925            ! lib/File/Spec/Mac.pm lib/File/Spec/OS2.pm
33926            ! lib/File/Spec/Unix.pm lib/File/Spec/VMS.pm
33927            ! lib/File/Spec/Win32.pm
33928 ____________________________________________________________________________
33929 [  6282] By: jhi                                   on 2000/06/29  22:57:22
33930         Log: Subject: [PATCH 5.6.0]ITHREADs for VMS
33931              From: Dan Sugalski <dan@sidhe.org>
33932              Date: Tue, 06 Jun 2000 11:59:50 -0400
33933              Message-Id: <4.3.2.7.0.20000606115752.01c82220@24.8.96.48>
33934      Branch: cfgperl
33935            ! vms/vms.c
33936 ____________________________________________________________________________
33937 [  6281] By: jhi                                   on 2000/06/29  22:52:50
33938         Log: Subject: [PATCH 5.6.0] utils/h2xs.PL
33939              From: "Daniel S. Lewart" <d-lewart@uiuc.edu>
33940              Date: Wed, 7 Jun 2000 04:02:04 -0500
33941              Message-ID: <20000607040201.A22568@staff1.cso.uiuc.edu>
33942      Branch: cfgperl
33943            ! utils/h2xs.PL
33944 ____________________________________________________________________________
33945 [  6280] By: jhi                                   on 2000/06/29  22:45:47
33946         Log: Subject: Re: backwards compatibility in h2xs and makemaker  [PATCH]
33947              From: rspier@pobox.com (Robert Spier)
33948              Date: Wed, 7 Jun 2000 12:47:37 -0400 (EDT)
33949              Message-ID: <14654.31913.845602.610277@rls.cx>
33950      Branch: cfgperl
33951            ! utils/h2xs.PL
33952 ____________________________________________________________________________
33953 [  6279] By: jhi                                   on 2000/06/29  22:38:16
33954         Log: Subject: [ID 20000602.002] [PATCH] perlsub.pod: ambiguous usage of "closure"
33955              From: Tim Ayers <tayers@bridge.com>
33956              Date: Thu, 08 Jun 2000 08:11:06 +0200
33957              Message-id: <393F38FA.9B5F4C7D@m.dasa.de>
33958              [resent by Richard Foley, Message-Id probably wrong]
33959      Branch: cfgperl
33960            ! pod/perlsub.pod
33961 ____________________________________________________________________________
33962 [  6278] By: jhi                                   on 2000/06/29  22:21:45
33963         Log: Subject: [ID 20000609.002] Text::Wrap::wrap does not handle multiline strings properly
33964              From: "Milton L. Hankins" <mlh@swl.msd.ray.com>
33965              Date: Fri, 09 Jun 2000 12:39:27 -0400
33966              Message-Id: <39411DBF.A04BB1A@swl.msd.ray.com>
33967              (plus update the version "number" of Text::Wrap)
33968      Branch: cfgperl
33969            ! lib/Text/Wrap.pm
33970 ____________________________________________________________________________
33971 [  6277] By: jhi                                   on 2000/06/29  22:13:10
33972         Log: Subject: [PATCH] Re: [ID 20000612.001] map {chop; $_} (Literals problem)
33973              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
33974              Date: Mon, 12 Jun 2000 14:55:59 +0100
33975              Message-Id: <E131Uh5-0002cj-00@ursa.cus.cam.ac.uk>
33976      Branch: cfgperl
33977            ! pod/perlfunc.pod
33978 ____________________________________________________________________________
33979 [  6276] By: jhi                                   on 2000/06/29  22:11:06
33980         Log: Subject: [PATCH] Re: eval documentation: context
33981              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
33982              Date: Mon, 12 Jun 2000 15:07:29 +0100
33983              Message-Id: <E131UsD-0002ke-00@ursa.cus.cam.ac.uk>
33984      Branch: cfgperl
33985            ! pod/perlfunc.pod
33986 ____________________________________________________________________________
33987 [  6275] By: jhi                                   on 2000/06/29  21:59:46
33988         Log: Subject: [PATCH] 5.6.0 lib/Pod/{Html,Man,Text}.pm
33989              From: "Daniel S. Lewart" <d-lewart@uiuc.edu>
33990              Date: Tue, 13 Jun 2000 02:43:48 -0500
33991              Message-ID: <20000613024347.A28388@staff2.cso.uiuc.edu>
33992      Branch: cfgperl
33993            ! lib/Pod/Html.pm lib/Pod/Man.pm lib/Pod/Text.pm
33994 ____________________________________________________________________________
33995 [  6274] By: jhi                                   on 2000/06/29  21:56:14
33996         Log: Subject: [ID 20000614.003] 5.6.0 File/Glob.pm incompatibility
33997              From: Andy Dougherty <doughera@lafayette.edu>
33998              Date: Wed, 14 Jun 2000 13:33:32 -0400 (EDT)
33999              Message-Id: <Pine.SOL.4.10.10006141332220.3643-100000@maxwell.phys.lafayette.edu>
34000      Branch: cfgperl
34001            ! ext/File/Glob/Glob.pm
34002 ____________________________________________________________________________
34003 [  6273] By: jhi                                   on 2000/06/29  21:49:09
34004         Log: Subject: [PATCH] xsub attributes
34005              From: Doug MacEachern <dougm@covalent.net>
34006              Date: Wed, 14 Jun 2000 15:09:22 -0700 (PDT)
34007              Message-ID: <Pine.LNX.4.10.10006141456050.340-100000@mojo.covalent.net>
34008      Branch: cfgperl
34009            ! embed.h embed.pl embedvar.h global.sym lib/ExtUtils/xsubpp
34010            ! objXSUB.h op.c perlapi.c perlapi.h proto.h
34011 ____________________________________________________________________________
34012 [  6272] By: jhi                                   on 2000/06/29  21:41:28
34013         Log: Subject: [ID 20000614.005] [patch] Tweak to Net::Ping docs
34014              From: Tom Phoenix <rootbeer@redcat.com>
34015              Received: (qmail 6398 invoked by uid 508); 15 Jun 2000 00:30:54 -0000
34016              Date: Wed, 14 Jun 2000 17:30:37 -0700 (PDT)
34017      Branch: cfgperl
34018            ! lib/Net/Ping.pm
34019 ____________________________________________________________________________
34020 [  6271] By: jhi                                   on 2000/06/29  21:36:55
34021         Log: Subject: PATCH pod/perltie.pod
34022              From: Ian Phillipps <Ian.Phillipps@iname.com>
34023              Date: Fri, 16 Jun 2000 00:17:19 +0100
34024              Message-ID: <20000616001719.A17108@homer.diplex.co.uk>
34025              (only the first hunk, the second hunk had already been done
34026              by some other patch)
34027      Branch: cfgperl
34028            ! pod/perltie.pod
34029 ____________________________________________________________________________
34030 [  6270] By: jhi                                   on 2000/06/29  21:24:51
34031         Log: Subject: PATCH (Re: [ID 20000612.004] Should regression tests fail if user doesn't build XS extensions?)
34032              From: Nicholas Clark <nick@talking.bollo.cx>
34033              Date: Fri, 23 Jun 2000 16:21:15 +0100
34034              Message-ID: <20000623162115.A19894@Bagpuss.unfortu.net>
34035      Branch: cfgperl
34036            ! t/lib/anydbm.t t/lib/dprof.t t/lib/dumper-ovl.t t/lib/dumper.t
34037            ! t/lib/hostname.t t/lib/ipc_sysv.t t/op/taint.t
34038 ____________________________________________________________________________
34039 [  6269] By: jhi                                   on 2000/06/29  19:38:15
34040         Log: Regen headers for #6261 (and update embed.pl for this) and #6267,
34041              silence few compiler warnings.
34042      Branch: cfgperl
34043            ! doop.c embed.pl global.sym objXSUB.h op.c proto.h toke.c
34044 ____________________________________________________________________________
34045 [  6268] By: jhi                                   on 2000/06/29  18:21:50
34046         Log: Subject: [PATCH perl-current] Make op/sprintf.t more comprehensive
34047              From: Dominic Dunlop <domo@computer.org> 
34048              Date: Thu, 29 Jun 2000 12:32:39 +0200 
34049              Message-Id: <p04320403b580cc1338db@[192.168.1.4]> 
34050      Branch: cfgperl
34051            ! t/op/sprintf.t
34052 ____________________________________________________________________________
34053 [  6267] By: jhi                                   on 2000/06/29  18:16:07
34054         Log: Subject: Re: [PATCH] Re: Speeding up method lookups 
34055              From: Doug MacEachern <dougm@covalent.net>
34056              Date: Sun, 18 Jun 2000 13:24:55 -0700 (PDT)
34057              Message-ID: <Pine.LNX.4.10.10006181306031.397-100000@mojo.covalent.net>
34058      Branch: cfgperl
34059            + t/op/method2entersub.t
34060            ! MANIFEST embed.pl lib/ExtUtils/Install.pm lib/File/Spec/Mac.pm
34061            ! lib/File/Spec/Unix.pm lib/File/Spec/VMS.pm
34062            ! lib/File/Spec/Win32.pm lib/base.pm op.c perl.h t/op/sprintf.t
34063            ! xsutils.c
34064 ____________________________________________________________________________
34065 [  6266] By: jhi                                   on 2000/06/29  15:11:15
34066         Log: Subject: [PATCH 5.6.0] cygwin port
34067              Message-ID: <779F20BCCE5AD31186A50008C75D997917173C@silldn_mail1.sanwaint.com>
34068              From: "Fifer, Eric" <EFifer@sanwaint.com>
34069              Date: Thu, 29 Jun 2000 12:58:29 +0100
34070      Branch: cfgperl
34071            ! cygwin/Makefile.SHs
34072 ____________________________________________________________________________
34073 [  6265] By: jhi                                   on 2000/06/29  15:04:05
34074         Log: Subject: Re: [ID 20000628.006] POSIX::STRERR_FILENO typo
34075              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
34076              Date: Wed, 28 Jun 2000 17:50:12 -0700
34077              Message-ID: <E1pW5gzkg2kV092yn@efn.org>
34078      Branch: cfgperl
34079            ! ext/POSIX/POSIX.pm ext/POSIX/POSIX.pod ext/POSIX/POSIX.xs
34080 ____________________________________________________________________________
34081 [  6264] By: jhi                                   on 2000/06/29  15:00:57
34082         Log: Subject: [ID 20000628.004] Re: Problem compiling perl? [BSDI-Support-Request #71232]
34083              From: Marty Lucich <marty@netcom.com>
34084              Date: Wed, 28 Jun 2000 14:16:05 -0700 (PDT)
34085              Message-Id: <200006282116.OAA11148@netcom.com>
34086              ccdlflags update (the BSD/OS 4.1 part had already been taken
34087              care of by #6141).
34088      Branch: cfgperl
34089            ! hints/bsdos.sh
34090 ____________________________________________________________________________
34091 [  6263] By: jhi                                   on 2000/06/29  13:47:44
34092         Log: tr fixes from Simon Cozens
34093      Branch: cfgperl
34094            ! doop.c
34095 ____________________________________________________________________________
34096 [  6262] By: jhi                                   on 2000/06/28  18:46:01
34097         Log: Subject: 5.6.0 Patch for EPOC
34098              From: Olaf Flebbe <o.flebbe@gmx.de>
34099              Date: Tue, 13 Jun 2000 22:59:29 +0200 (MEST)
34100              Message-ID: <23449.960929969@www11.gmx.net>
34101      Branch: cfgperl
34102            ! README.epoc epoc/config.sh epoc/createpkg.pl epoc/epocish.c
34103            ! epoc/epocish.h
34104 ____________________________________________________________________________
34105 [  6261] By: jhi                                   on 2000/06/28  18:29:07
34106         Log: Subject: Re: [PATCH cfgperl] BOMs away!
34107              From: simon@brecon.co.uk (Simon Cozens)
34108              Date: 17 Jun 2000 11:49:57 GMT
34109              Message-ID: <slrn8kmpf5.8pl.simon@justanother.perlhacker.org>
34110      Branch: cfgperl
34111            ! pod/perldiag.pod t/comp/require.t toke.c
34112 ____________________________________________________________________________
34113 [  6260] By: jhi                                   on 2000/06/28  17:47:16
34114         Log: Subject: Re: [PATCH] pack('U',$foo) doesn't UTF8
34115              From: simon@brecon.co.uk (Simon Cozens) 
34116              Date: 17 Jun 2000 11:56:44 GMT 
34117              Message-ID: <slrn8kmprs.8pl.simon@justanother.perlhacker.org> 
34118              pack U0, pack C0
34119      Branch: cfgperl
34120            ! pod/perlfunc.pod pp.c t/op/pack.t
34121 ____________________________________________________________________________
34122 [  6259] By: jhi                                   on 2000/06/28  16:43:17
34123         Log: perlnewmod was missing from MANIFEST.
34124      Branch: cfgperl
34125            ! MANIFEST
34126 ____________________________________________________________________________
34127 [  6258] By: jhi                                   on 2000/06/28  15:54:30
34128         Log: linenumber tweak
34129      Branch: cfgperl
34130            ! t/pragma/warn/regcomp
34131 ____________________________________________________________________________
34132 [  6257] By: jhi                                   on 2000/06/28  15:50:44
34133         Log: Subject: Re: [PATCH] "Constant subroutine redefined" mandatory warning
34134              From: Doug MacEachern <dougm@covalent.net>
34135              Date: Sun, 25 Jun 2000 12:11:28 -0700 (PDT)
34136              Message-ID: <Pine.LNX.4.10.10006251209191.461-100000@mojo.covalent.net>
34137              (one part of the patch had been applied earlier)
34138      Branch: cfgperl
34139            ! op.c sv.c t/pragma/constant.t t/pragma/warn/op
34140 ____________________________________________________________________________
34141 [  6256] By: jhi                                   on 2000/06/28  15:40:22
34142         Log: tweaks from Simon Cozens to further fix tr/// under utf8
34143      Branch: cfgperl
34144            ! doop.c
34145 ____________________________________________________________________________
34146 [  6255] By: jhi                                   on 2000/06/28  15:33:45
34147         Log: small thinko tweaks
34148      Branch: cfgperl
34149            ! lib/IPC/Open3.pm t/op/my_stash.t
34150 ____________________________________________________________________________
34151 [  6254] By: jhi                                   on 2000/06/28  15:33:25
34152         Log: Subject: tr///, help wanted.
34153              From: simon@brecon.co.uk (Simon Cozens)
34154              Date: 28 Jun 2000 11:29:04 GMT
34155              Message-ID: <slrn8ljoc0.fbd.simon@justanother.perlhacker.org>
34156      Branch: cfgperl
34157            ! doop.c embed.h embed.pl embedvar.h global.sym objXSUB.h
34158            ! pp_proto.h proto.h t/op/tr.t
34159 ____________________________________________________________________________
34160 [  6253] By: jhi                                   on 2000/06/28  15:09:17
34161         Log: Paranoia tweak on #6249.
34162              Subject: Re: [PATCH 5.6.0 IPC/Open3.pm] Allow the use of numeric fd's
34163              From: Ronald J Kimball <rjk@linguist.dartmouth.edu>
34164              Date: Sun, 25 Jun 2000 23:43:12 -0400
34165              Message-ID: <20000625234312.B74147@linguist.dartmouth.edu>
34166      Branch: cfgperl
34167            ! lib/IPC/Open3.pm
34168 ____________________________________________________________________________
34169 [  6252] By: jhi                                   on 2000/06/28  15:01:38
34170         Log: Document #6249 and #6251.
34171      Branch: cfgperl
34172            ! lib/Exporter.pm lib/IPC/Open3.pm
34173 ____________________________________________________________________________
34174 [  6251] By: jhi                                   on 2000/06/28  14:50:43
34175         Log: Subject: [PATCH] inline AUTOLOADed constants via Exporter.pm
34176              From: Doug MacEachern <dougm@covalent.net>
34177              Date: Fri, 23 Jun 2000 00:16:39 -0700 (PDT)
34178              Message-ID: <Pine.LNX.4.10.10006230009400.322-100000@mojo.covalent.net>
34179      Branch: cfgperl
34180            ! lib/Exporter.pm
34181 ____________________________________________________________________________
34182 [  6250] By: jhi                                   on 2000/06/28  14:45:23
34183         Log: Subject: Re: [PATCH] support 'my __PACKAGE__ $obj = ...'
34184              From: Doug MacEachern <dougm@covalent.net>
34185              Date: Tue, 27 Jun 2000 14:17:28 -0700 (PDT)
34186              Message-ID: <Pine.LNX.4.10.10006271412340.7587-100000@mojo.covalent.net>
34187      Branch: cfgperl
34188            + t/op/my_stash.t
34189            ! MANIFEST embed.pl global.sym proto.h toke.c
34190 ____________________________________________________________________________
34191 [  6249] By: jhi                                   on 2000/06/28  14:36:34
34192         Log: Subject: Re: [PATCH 5.6.0 IPC/Open3.pm] Allow the use of numeric fd's 
34193              From: Frank Tobin <ftobin@uiuc.edu>
34194              Date: Sun, 25 Jun 2000 19:00:58 -0500 (CDT)
34195              Message-ID: <Pine.BSF.4.21.0006251855340.20487-100000@srh0902.urh.uiuc.edu>
34196      Branch: cfgperl
34197            ! lib/IPC/Open3.pm
34198 ____________________________________________________________________________
34199 [  6248] By: jhi                                   on 2000/06/28  14:11:25
34200         Log: Subject: DOC PATCH 5.6.0: perlfunc/sprintf does not contain an example
34201              From: Mark-Jason Dominus <mjd@plover.com>
34202              Date: Tue, 27 Jun 2000 22:36:42 -0400
34203              Message-ID: <20000628023642.12166.qmail@plover.com>
34204      Branch: cfgperl
34205            ! pod/perlfunc.pod
34206 ____________________________________________________________________________
34207 [  6247] By: jhi                                   on 2000/06/27  12:46:37
34208         Log: Tweak $VERSION, patch from Doug MacEachern.
34209      Branch: cfgperl
34210            ! lib/File/Spec.pm
34211 ____________________________________________________________________________
34212 [  6246] By: jhi                                   on 2000/06/27  03:34:46
34213         Log: Allow for standalone testing.
34214      Branch: cfgperl
34215            ! t/lib/filefunc.t t/lib/filespec.t
34216 ____________________________________________________________________________
34217 [  6245] By: jhi                                   on 2000/06/27  02:50:02
34218         Log: Subject: [ID 20000624.001] PERL_DL_DEBUG=1 DynaLoader message appears to be wrong
34219              From: Nicholas Clark <nick@Bagpuss.unfortu.net>
34220              Date: Sat, 24 Jun 2000 13:06:20 +0100
34221              Message-Id: <200006241206.NAA03771@Bagpuss.unfortu.net>
34222      Branch: cfgperl
34223            ! ext/DynaLoader/DynaLoader_pm.PL
34224 ____________________________________________________________________________
34225 [  6244] By: jhi                                   on 2000/06/27  02:46:10
34226         Log: Subject: [PATCH] avoid mg_ptr in '*' magic
34227              From: Doug MacEachern <dougm@covalent.net>
34228              Date: Sun, 25 Jun 2000 11:16:08 -0700 (PDT)
34229              Message-ID: <Pine.LNX.4.10.10006251045190.461-100000@mojo.covalent.net>
34230      Branch: cfgperl
34231            ! gv.c sv.c t/lib/peek.t
34232 ____________________________________________________________________________
34233 [  6243] By: jhi                                   on 2000/06/27  02:38:07
34234         Log: Subject: [PATCH] is_utf8_string
34235              From: simon@brecon.co.uk (Simon Cozens)
34236              Date: 26 Jun 2000 02:25:59 GMT
34237              Message-ID: <slrn8ldfpn.h5k.simon@justanother.perlhacker.org>
34238      Branch: cfgperl
34239            ! embed.h embed.pl embedvar.h global.sym objXSUB.h perlapi.c
34240            ! perlapi.h pod/perlapi.pod pod/perlintern.pod pp_proto.h
34241            ! proto.h utf8.c
34242 ____________________________________________________________________________
34243 [  6242] By: jhi                                   on 2000/06/27  02:24:00
34244         Log: Subject: [PATCH] bytes<->utf8 fixes
34245              From: simon@brecon.co.uk (Simon Cozens)
34246              Date: 26 Jun 2000 04:55:45 GMT
34247              Message-ID: <slrn8ldoih.fbd.simon@justanother.perlhacker.org>
34248      Branch: cfgperl
34249            ! embed.pl perlapi.c pod/perlapi.pod proto.h utf8.c
34250 ____________________________________________________________________________
34251 [  6241] By: jhi                                   on 2000/06/27  02:12:42
34252         Log: Do no -warn on \_, only on \alpha.
34253              Subject: New Unrecognized escape warning for /\_/ from activestate perl-current5.6.0
34254              From: David Dyck <dcd@tc.fluke.com>
34255              Date: Mon, 26 Jun 2000 09:32:02 -0700 (PDT)
34256              Message-ID: <Pine.LNX.4.05.10006260830280.3054-100000@dd.tc.fluke.com>
34257      Branch: cfgperl
34258            ! regcomp.c t/pragma/warn/regcomp t/pragma/warn/toke toke.c
34259 ____________________________________________________________________________
34260 [  6240] By: jhi                                   on 2000/06/27  02:00:01
34261         Log: Subject: [ID 20000626.007] h2xs man page contains trailing garbage
34262              From: Nicholas Clark <nick@Bagpuss.unfortu.net>
34263              Date: Mon, 26 Jun 2000 18:40:14 +0100
34264              Message-Id: <200006261740.SAA02740@Bagpuss.unfortu.net>
34265      Branch: cfgperl
34266            ! utils/h2xs.PL
34267 ____________________________________________________________________________
34268 [  6239] By: jhi                                   on 2000/06/27  01:53:40
34269         Log: Configure maintenance.  Sever some dependency cycles,
34270              separate gccversion from the cc unit,
34271              address [ID 20000623.006] Configure script patch for using gcc on AIX
34272              (but solve it a little bit differently),
34273              unduplex some accidentally duplicated units,
34274              suggest using gcc if no cc available
34275              (p5p thread: "Solaris configure: counterproposal", 1999-09)
34276      Branch: cfgperl
34277            ! Configure Todo-5.6 config_h.SH
34278      Branch: metaconfig
34279            ! U/modified/Config_h.U U/modified/cc.U U/modified/cpp_stuff.U
34280            ! U/modified/libs.U U/modified/models.U U/modified/usrinc.U
34281      Branch: metaconfig/U/perl
34282            + gccvers.U
34283            ! d_getespwnam.U d_getprpwnam.U i_prot.U
34284 ____________________________________________________________________________
34285 [  6238] By: jhi                                   on 2000/06/25  18:04:56
34286         Log: Subject: [PATCH 5.6.0] XS module loading fixup for VMS
34287              From: Dan Sugalski <dan@sidhe.org>
34288              Date: Fri, 23 Jun 2000 17:00:00 -0400
34289              Message-Id: <4.3.2.7.0.20000623165934.00c93d10@24.8.96.48>
34290      Branch: cfgperl
34291            ! lib/ExtUtils/MM_VMS.pm vms/vms.c
34292 ____________________________________________________________________________
34293 [  6237] By: jhi                                   on 2000/06/25  16:36:45
34294         Log: Tweak embed.pl, regen headers.
34295      Branch: cfgperl
34296            ! embed.h embed.pl embedvar.h ext/B/B/Asmdata.pm
34297            ! ext/ByteLoader/byterun.c ext/ByteLoader/byterun.h global.sym
34298            ! keywords.h lib/warnings.pm objXSUB.h opcode.h opnames.h
34299            ! perlapi.c perlapi.h pod/perlapi.pod pod/perlintern.pod pp.sym
34300            ! pp_proto.h proto.h regnodes.h utf8.c warnings.h
34301 ____________________________________________________________________________
34302 [  6236] By: jhi                                   on 2000/06/25  15:26:42
34303         Log: Regen headers.
34304      Branch: cfgperl
34305            ! embed.h embedvar.h ext/B/B/Asmdata.pm ext/ByteLoader/byterun.c
34306            ! ext/ByteLoader/byterun.h global.sym keywords.h lib/warnings.pm
34307            ! objXSUB.h opcode.h opnames.h perlapi.c perlapi.h
34308            ! pod/perlapi.pod pod/perlintern.pod pp.sym pp_proto.h proto.h
34309            ! regnodes.h warnings.h
34310 ____________________________________________________________________________
34311 [  6235] By: jhi                                   on 2000/06/23  19:39:35
34312         Log: The thread begun by
34313              Subject: [ID 20000616.001] Typo on line 390 of .../hints/solaris_2.sh
34314              From: Kevin.Ruscoe@ubsw.com
34315              Date: Fri, 16 Jun 2000 16:38:51 +0100
34316              Message-Id: <H000019b03c300d6@MHS>
34317      Branch: cfgperl
34318            ! hints/solaris_2.sh
34319 ____________________________________________________________________________
34320 [  6234] By: jhi                                   on 2000/06/23  19:23:36
34321         Log: Prefer C:/temp in Win32 as File::Spec->tmpdir to /tmp
34322              because when run as services (Win32ese for daemons)
34323              no environment variables are set and tmpdir ends up as /tmp,
34324              which is ambiguous.
34325              
34326              Subject:[ID 20000616.002] File::Spec->tmpdir broken when running as service
34327              From: matt@sergeant.org
34328              Date: 16 Jun 2000 16:30:43 -0000
34329              Message-Id: <20000616163043.26398.qmail@mail.sergeant.org>
34330      Branch: cfgperl
34331            ! lib/File/Spec/Win32.pm
34332 ____________________________________________________________________________
34333 [  6233] By: jhi                                   on 2000/06/23  19:18:58
34334         Log: Subject: PATCH 5.6.0: Document OPf_SPECIAL flag in regcomp op nodes
34335              From: Mark-Jason Dominus <mjd@plover.com>
34336              Date: Fri, 16 Jun 2000 20:53:04 -0400
34337              Message-ID: <20000617005304.8008.qmail@plover.com>
34338      Branch: cfgperl
34339            ! op.h
34340 ____________________________________________________________________________
34341 [  6232] By: jhi                                   on 2000/06/23  16:10:02
34342         Log: Subject: PATCH: pod/perlutil.pod - utilities packaged with the Perl distribution
34343              From: simon@brecon.co.uk (Simon Cozens)
34344              Date: 19 Jun 2000 15:18:27 GMT
34345              Message-ID: <slrn8ksee3.cp9.simon@justanother.perlhacker.org>
34346              
34347              plus update pod/Makefile and regenerate perltoc
34348      Branch: cfgperl
34349            + pod/perlutil.pod
34350            ! MANIFEST Todo-5.6 pod/Makefile pod/perltoc.pod pod/roffitall
34351 ____________________________________________________________________________
34352 [  6231] By: jhi                                   on 2000/06/23  15:19:18
34353         Log: Subject: [PATCH 5.6.0] cygwin port
34354              From: "Fifer, Eric" <EFifer@sanwaint.com>
34355              Date: Tue, 20 Jun 2000 14:30:58 +0100
34356              Message-ID: <779F20BCCE5AD31186A50008C75D9979171734@silldn_mail1.sanwaint.com>
34357      Branch: cfgperl
34358            ! README.cygwin lib/File/Find.pm
34359 ____________________________________________________________________________
34360 [  6230] By: jhi                                   on 2000/06/23  14:25:21
34361         Log: Upgrade to File::Spec 0.810_01 from CPAN by Barrie Slaymaker.
34362      Branch: cfgperl
34363            ! lib/File/Spec.pm lib/File/Spec/Functions.pm
34364            ! lib/File/Spec/Mac.pm lib/File/Spec/OS2.pm
34365            ! lib/File/Spec/Unix.pm lib/File/Spec/VMS.pm
34366            ! lib/File/Spec/Win32.pm t/lib/filefunc.t t/lib/filespec.t
34367 ____________________________________________________________________________
34368 [  6229] By: jhi                                   on 2000/06/23  14:13:34
34369         Log: Subject: README.hpux version 0.6.1
34370              Date: Tue, 20 Jun 2000 15:25:51 -0700 (PDT)
34371              From: Jeff Okamoto <okamoto@xfiles.intercon.hp.com>
34372              Message-Id: <200006202225.PAA26205@xfiles.intercon.hp.com>
34373      Branch: cfgperl
34374            ! README.hpux
34375 ____________________________________________________________________________
34376 [  6228] By: jhi                                   on 2000/06/23  14:07:20
34377         Log: Subject: [PATCH] "Constant subroutine redefined" mandatory warning
34378              From: Doug MacEachern <dougm@covalent.net>
34379              Date: Tue, 20 Jun 2000 21:23:56 -0700 (PDT)
34380              Message-ID: <Pine.LNX.4.10.10006202116340.321-100000@mojo.covalent.net>
34381      Branch: cfgperl
34382            ! op.c
34383 ____________________________________________________________________________
34384 [  6227] By: jhi                                   on 2000/06/23  14:01:06
34385         Log: Subject: [PATCH] lib.pm -> lib.pm.PL
34386              From: Doug MacEachern <dougm@covalent.net>
34387              Date: Tue, 20 Jun 2000 22:14:41 -0700 (PDT)
34388              Message-ID: <Pine.LNX.4.10.10006202208210.321-100000@mojo.covalent.net>
34389      Branch: cfgperl
34390            + lib/lib.pm.PL
34391            - lib/lib.pm
34392            ! MANIFEST Makefile.SH
34393 ____________________________________________________________________________
34394 [  6226] By: jhi                                   on 2000/06/23  13:53:07
34395         Log: Subject: [PATCH] remove forward declarations in Socket.pm
34396              From: Doug MacEachern <dougm@covalent.net>
34397              Date: Tue, 20 Jun 2000 21:54:12 -0700 (PDT)
34398              Message-ID: <Pine.LNX.4.10.10006202149190.321-100000@mojo.covalent.net>
34399              
34400              From: Doug MacEachern <dougm@covalent.net>
34401              Subject: Re: [PATCH] remove forward declarations in Socket.pm
34402              Date: Fri, 23 Jun 2000 00:09:29 -0700 (PDT)
34403              Message-ID: <Pine.LNX.4.10.10006222349440.322-100000@mojo.covalent.net>
34404      Branch: cfgperl
34405            ! ext/Socket/Socket.pm op.c
34406 ____________________________________________________________________________
34407 [  6225] By: jhi                                   on 2000/06/23  13:41:52
34408         Log: Add source code filenames to apidoc.
34409              From: simon@brecon.co.uk (Simon Cozens)
34410              Subject: [PATCH embed.pl] Source X-ref
34411              Date: 22 Jun 2000 02:18:49 GMT
34412              Message-ID: <slrn8l2ts8.h5k.simon@justanother.perlhacker.org>
34413      Branch: cfgperl
34414            ! embed.pl
34415 ____________________________________________________________________________
34416 [  6224] By: jhi                                   on 2000/06/23  13:32:33
34417         Log: A way to avoid English.pm performance hit.
34418              From: root <root@jester.slaysys.com>
34419              Subject: [YAPATCH English.pm] My turn to putt again
34420              Date: Thu, 22 Jun 2000 20:33:58 -0400
34421              Message-Id: <200006230033.UAA05960@jester.slaysys.com>
34422      Branch: cfgperl
34423            ! lib/English.pm t/lib/english.t
34424 ____________________________________________________________________________
34425 [  6223] By: jhi                                   on 2000/06/23  13:27:06
34426         Log: Avoid double close().
34427              Subject: [PATCH] avoid double close()
34428              From: Doug MacEachern <dougm@covalent.net>
34429              Date: Thu, 22 Jun 2000 23:08:06 -0700 (PDT)
34430              Message-ID: <Pine.LNX.4.10.10006222251260.322-100000@mojo.covalent.net>
34431      Branch: cfgperl
34432            ! doio.c
34433 ____________________________________________________________________________
34434 [  6222] By: jhi                                   on 2000/06/23  13:25:54
34435         Log: doc typo fix
34436              Subject: [PATCH] documentation typo in lib/Pod/Usage.pm
34437              From: Ian Phillipps <Ian.Phillipps@iname.com>
34438              Date: Fri, 23 Jun 2000 10:40:58 +0100
34439              Message-ID: <20000623104058.A22791@homer.diplex.co.uk>
34440      Branch: cfgperl
34441            ! lib/Pod/Usage.pm
34442 ____________________________________________________________________________
34443 [  6221] By: jhi                                   on 2000/06/23  13:24:15
34444         Log: Remove tr///CU (the feature is to be obsoleted by better interfaces).
34445              From: simon@brecon.co.uk (Simon Cozens)
34446              Subject: [PATCH] Eliminate tr///[CU][CU]
34447              Date: 23 Jun 2000 11:05:40 GMT
34448              Message-ID: <slrn8l6h44.h5k.simon@justanother.perlhacker.org>
34449      Branch: cfgperl
34450            ! doop.c embed.pl pod/perlop.pod toke.c utf8.c
34451 ____________________________________________________________________________
34452 [  6220] By: jhi                                   on 2000/06/22  16:07:51
34453         Log: Win32 patches from Benjamin Stuhl.
34454      Branch: cfgperl
34455            ! makedef.pl win32/win32.h
34456 ____________________________________________________________________________
34457 [  6219] By: jhi                                   on 2000/06/22  16:06:34
34458         Log: Bytecode patches from Benjamin Stuhl.
34459      Branch: cfgperl
34460            ! bytecode.pl ext/B/B/Assembler.pm ext/B/B/Bytecode.pm
34461            ! ext/B/O.pm ext/B/defsubs_h.PL ext/ByteLoader/ByteLoader.pm
34462            ! ext/ByteLoader/ByteLoader.xs ext/ByteLoader/bytecode.h
34463 ____________________________________________________________________________
34464 [  6218] By: jhi                                   on 2000/06/15  23:54:16
34465         Log: Bytecode patches from Benjamin Stuhl.
34466      Branch: cfgperl
34467            ! ext/B/B/Assembler.pm ext/B/B/Bytecode.pm
34468 ____________________________________________________________________________
34469 [  6217] By: jhi                                   on 2000/06/09  13:38:29
34470         Log: Rename the fdpid locking and integrate with Sarathy.
34471      Branch: cfgperl
34472            ! Configure config_h.SH doio.c embed.h embed.pl embedvar.h
34473            ! global.sym gv.c intrpvar.h objXSUB.h perl.c perlapi.h pp.c
34474            ! pp_ctl.c proto.h sv.h util.c util.h vmesa/vmesa.c
34475            ! win32/win32.c
34476           !> av.h cop.h hints/solaris_2.sh t/op/runlevel.t
34477 ____________________________________________________________________________
34478 [  6216] By: gsar                                  on 2000/06/08  14:54:21
34479         Log: be more optimal about clearing @_
34480      Branch: perl
34481            ! cop.h
34482 ____________________________________________________________________________
34483 [  6215] By: gsar                                  on 2000/06/08  14:33:04
34484         Log: tweak comment about @DB::args
34485      Branch: perl
34486            ! av.h pp_ctl.c
34487 ____________________________________________________________________________
34488 [  6214] By: gsar                                  on 2000/06/08  13:57:54
34489         Log: @_ can't have junk in it even in the non-USE_ITHREADS case because
34490              caller() wants to populate @DB::args with it (causes a coredump
34491              in Carp::confess())
34492      Branch: perl
34493            ! cop.h t/op/runlevel.t
34494 ____________________________________________________________________________
34495 [  6213] By: gsar                                  on 2000/06/08  07:06:35
34496         Log: back out change#6106 (seems problematic)
34497      Branch: perl
34498            ! hints/solaris_2.sh
34499 ____________________________________________________________________________
34500 [  6212] By: jhi                                   on 2000/06/07  03:10:36
34501         Log: Continuing mopup for #6204.
34502      Branch: cfgperl
34503            ! ext/B/defsubs_h.PL
34504 ____________________________________________________________________________
34505 [  6211] By: jhi                                   on 2000/06/07  02:41:50
34506         Log: Mopup for #6204.
34507              Under the 5005 threads the t/lib/b.t for B::Deparse fails:
34508              Can't locate object method "PV" via package "B::RV" at ../lib/B/Deparse.pm line 2360.
34509              This is comes from const() where POK isn't on when expected.
34510      Branch: cfgperl
34511            ! embedvar.h ext/B/B.xs ext/B/B/Asmdata.pm
34512            ! ext/ByteLoader/ByteLoader.xs ext/ByteLoader/bytecode.h
34513            ! ext/ByteLoader/byterun.c ext/ByteLoader/byterun.h perlapi.c
34514            ! perlapi.h pod/perlapi.pod
34515 ____________________________________________________________________________
34516 [  6210] By: jhi                                   on 2000/06/07  01:56:29
34517         Log: Mopup for #6207 and #6209.
34518      Branch: cfgperl
34519            ! doio.c gv.c sv.h util.c vmesa/vmesa.c win32/win32.c
34520 ____________________________________________________________________________
34521 [  6209] By: jhi                                   on 2000/06/07  01:33:12
34522         Log: Lock PL_fdpid against race conditions, based on:
34523              Subject: [PATCH 5.6.0]subprocess fixup for threads
34524              From: Dan Sugalski <dan@sidhe.org>
34525              To: perl5-porters@perl.org
34526              Date: Tue, 11 Apr 2000 17:02:32 -0400
34527              Message-Id: <4.3.0.20000411170218.01d2f580@24.8.96.48>
34528      Branch: cfgperl
34529            ! doio.c intrpvar.h perl.c sv.h util.c vmesa/vmesa.c
34530            ! win32/win32.c
34531 ____________________________________________________________________________
34532 [  6208] By: jhi                                   on 2000/06/07  01:05:23
34533         Log: Regen headers for #6207.
34534      Branch: cfgperl
34535            ! embed.h global.sym objXSUB.h proto.h
34536 ____________________________________________________________________________
34537 [  6207] By: jhi                                   on 2000/06/06  23:43:13
34538         Log: Subject: [PATCH 5.6.0] Threadsafe patches
34539              From: Dan Sugalski <dan@sidhe.org>
34540              To: perl5-porters@perl.org
34541              Date: Mon, 08 May 2000 18:08:13 -0400
34542              Message-Id: <4.3.1.0.20000508180729.02182de0@24.8.96.48>
34543      Branch: cfgperl
34544            ! embed.pl global.sym gv.c intrpvar.h perl.c pp.c pp_ctl.c
34545            ! proto.h sv.h util.c
34546 ____________________________________________________________________________
34547 [  6206] By: jhi                                   on 2000/06/06  23:21:23
34548         Log: Subject: [PATCH] Eliminate $a/$b in pod
34549              From: David Glasser <me@davidglasser.net>
34550              To: perl5-porters@perl.org
34551              Date: Mon, 29 May 2000 21:15:59 -0400
34552              Message-Id: <l03130302b558bb2640ce@[209.195.241.121]>
34553      Branch: cfgperl
34554            ! pod/perl5004delta.pod pod/perl56delta.pod pod/perlboot.pod
34555            ! pod/perlbot.pod pod/perlcall.pod pod/perldata.pod
34556            ! pod/perldbmfilter.pod pod/perldiag.pod pod/perldsc.pod
34557            ! pod/perlembed.pod pod/perlfaq4.pod pod/perlfaq6.pod
34558            ! pod/perlfaq7.pod pod/perlfilter.pod pod/perlfunc.pod
34559            ! pod/perlguts.pod pod/perllexwarn.pod pod/perllocale.pod
34560            ! pod/perlobj.pod pod/perlop.pod pod/perlref.pod pod/perlsub.pod
34561            ! pod/perlsyn.pod pod/perltie.pod pod/perltrap.pod
34562            ! pod/perlvar.pod pod/perlxs.pod
34563 ____________________________________________________________________________
34564 [  6205] By: jhi                                   on 2000/06/06  23:12:14
34565         Log: Subject: [PATCH] Win32 improvements
34566              From: "Benjamin Stuhl" <sho_pi@hotmail.com>
34567              To: gsar@activestate.com, perl5-porters@perl.org
34568              Date: Mon, 29 May 2000 17:22:24 PDT
34569              Message-ID: <20000530002224.91142.qmail@hotmail.com>
34570              (MUA had mangled many lines by wordwrapping)
34571      Branch: cfgperl
34572            ! utils/c2ph.PL win32/makefile.mk win32/win32.c win32/win32sck.c
34573 ____________________________________________________________________________
34574 [  6204] By: jhi                                   on 2000/06/06  23:01:50
34575         Log: Subject: [PATCH] B::Bytecode patches
34576              From: "Benjamin Stuhl" <sho_pi@hotmail.com>
34577              To: gsar@activestate.com, jhi@iki.fi
34578              Cc: perl5-porters@perl.org
34579              Message-ID: <20000602202526.48694.qmail@hotmail.com>
34580              (MUA had mangled many lines by wordwrapping)
34581      Branch: cfgperl
34582            ! bytecode.pl ext/B/B.pm ext/B/B.xs ext/B/B/Assembler.pm
34583            ! ext/B/B/Bytecode.pm ext/B/O.pm ext/B/defsubs_h.PL
34584            ! ext/ByteLoader/ByteLoader.xs ext/ByteLoader/bytecode.h
34585            ! intrpvar.h perl.c
34586 ____________________________________________________________________________
34587 [  6203] By: jhi                                   on 2000/06/06  22:32:43
34588         Log: Subject: [PATCH] perldiag should refer to perlos2.pod not README.os2
34589              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
34590              Date: Tue, 06 Jun 2000 13:07:45 -0700
34591              Message-ID: <RoVP5gzkgmTL092yn@efn.org>
34592      Branch: cfgperl
34593            ! pod/perldiag.pod
34594 ____________________________________________________________________________
34595 [  6202] By: jhi                                   on 2000/06/06  19:38:35
34596         Log: Integrate with Sarathy.
34597      Branch: cfgperl
34598           !> perl.c
34599 ____________________________________________________________________________
34600 [  6201] By: gsar                                  on 2000/06/06  00:42:59
34601         Log: Perl_eval_pv() leaks 4 bytes every time it is called because it
34602              does a PUSHMARK that's never ever POPMARKed; in general, only
34603              Perl_call_[sp]v() need a PUSHMARK for incoming arguments;
34604              Perl_eval_[sp]v() don't because they don't take any incoming
34605              arguments (this leak has been around since the original version
34606              of perl_eval_pv() in 5.003_97e)
34607      Branch: perl
34608            ! perl.c
34609 ____________________________________________________________________________
34610 [  6200] By: jhi                                   on 2000/06/04  03:44:52
34611         Log: Update to cperl-mode.el 4.31 from
34612              ftp://ftp.math.ohio-state.edu/pub/users/ilya/cperl-mode.el
34613              Subject: A couple of notes
34614              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
34615              To: Mailing list Perl5 <perl5-porters@perl.org>
34616              Date: Sat, 3 Jun 2000 23:33:32 -0400
34617              Message-ID: <20000603233332.A6790@monk.mps.ohio-state.edu>
34618      Branch: cfgperl
34619            ! emacs/cperl-mode.el
34620 ____________________________________________________________________________
34621 [  6199] By: jhi                                   on 2000/06/03  15:11:05
34622         Log: Subject: [PATCH 5.6.0]Make perl's malloc work on VMS
34623              From: Dan Sugalski <dan@sidhe.org>
34624              To: perl5-porters@perl.org, vmsperl@perl.org
34625              Date: Fri, 02 Jun 2000 17:30:51 -0400
34626              Message-Id: <4.3.2.7.0.20000602173021.01f03570@24.8.96.48>
34627      Branch: cfgperl
34628            ! vms/descrip_mms.template vms/gen_shrfls.pl
34629 ____________________________________________________________________________
34630 [  6198] By: jhi                                   on 2000/06/03  14:59:15
34631         Log: Subject: [PATCH 5.6.0]VMS fixups so we can build with MULTIPLICITY
34632              From: Dan Sugalski <dan@sidhe.org>
34633              To: vmsperl@perl.org, perl5-porters@perl.org
34634              Date: Fri, 02 Jun 2000 16:00:41 -0400
34635              Message-Id: <4.3.2.7.0.20000602155951.01f02b20@24.8.96.48>
34636              Message-Id: <4.3.2.7.0.20000602164011.01ec8c30@24.8.96.48>
34637      Branch: cfgperl
34638            ! embed.h embed.pl embedvar.h ext/POSIX/POSIX.xs global.sym
34639            ! objXSUB.h perlapi.c perlapi.h pod/perlapi.pod
34640            ! pod/perlintern.pod proto.h vms/vms.c vms/vmsish.h
34641 ____________________________________________________________________________
34642 [  6197] By: jhi                                   on 2000/06/03  14:41:30
34643         Log: Subject: [ID 20000602.005] [PATCH]5.6.0 (DOC) tiny change to perlsyn.pod
34644              From: John Borwick <jhborwic@unity.ncsu.edu>
34645              Date: Fri, 2 Jun 2000 14:35:03 -0400 (EDT)
34646              Message-Id: <Pine.GSO.4.21.0006021420290.11432-100000@eos00du.eos.ncsu.edu>
34647      Branch: cfgperl
34648            ! pod/perlsyn.pod
34649 ____________________________________________________________________________
34650 [  6196] By: jhi                                   on 2000/06/03  14:38:09
34651         Log: Integrate with Sarathy.
34652      Branch: cfgperl
34653           !> cop.h embed.h embed.pl objXSUB.h op.c perl.c perlapi.c perly.c
34654           !> perly_c.diff pp_ctl.c proto.h scope.c scope.h sv.c toke.c
34655           !> vms/perly_c.vms
34656 ____________________________________________________________________________
34657 [  6195] By: gsar                                  on 2000/06/02  22:43:13
34658         Log: fix yet another eval"" leak under USE_ITHREADS
34659      Branch: perl
34660            ! op.c
34661 ____________________________________________________________________________
34662 [  6194] By: gsar                                  on 2000/06/02  18:22:06
34663         Log: fix small eval"" memory leaks under USE_ITHREADS
34664      Branch: perl
34665            ! cop.h embed.h embed.pl objXSUB.h op.c perl.c perlapi.c perly.c
34666            ! perly_c.diff pp_ctl.c proto.h scope.c scope.h sv.c toke.c
34667            ! vms/perly_c.vms
34668 ____________________________________________________________________________
34669 [  6193] By: jhi                                   on 2000/06/01  13:03:56
34670         Log: Signals-be-gone for microperl.
34671      Branch: cfgperl
34672            ! Todo.micro doop.c mg.c perl.c perl.h pp_sys.c util.c
34673 ____________________________________________________________________________
34674 [  6192] By: jhi                                   on 2000/06/01  12:52:02
34675         Log: Integrate with Sarathy.
34676      Branch: cfgperl
34677           +> lib/Pod/LaTeX.pm t/lib/selfloader.t
34678           !> AUTHORS MAINTAIN MANIFEST doop.c embed.pl
34679           !> ext/Devel/Peek/Peek.pm handy.h lib/SelfLoader.pm perl.c
34680           !> pod/perlapi.pod pod/perldata.pod pod/perlfaq6.pod
34681           !> pod/perlfaq9.pod pod/perlfunc.pod pod/perllocale.pod
34682           !> pod/perlre.pod pod/perltrap.pod pod/pod2latex.PL t/op/tr.t
34683           !> t/op/vec.t utils/h2xs.PL
34684 ____________________________________________________________________________
34685 [  6191] By: gsar                                  on 2000/06/01  09:38:21
34686         Log: vec() loses numericalness (modified version of patch suggested
34687              by Robin Barker)
34688      Branch: perl
34689            ! doop.c t/op/vec.t
34690 ____________________________________________________________________________
34691 [  6190] By: gsar                                  on 2000/06/01  09:26:15
34692         Log: submit missing embed.pl change
34693      Branch: perl
34694            ! embed.pl
34695 ____________________________________________________________________________
34696 [  6189] By: gsar                                  on 2000/06/01  09:05:34
34697         Log: counting tr/// corrupts later operation (from M.J.T Guy)
34698      Branch: perl
34699            ! doop.c t/op/tr.t
34700 ____________________________________________________________________________
34701 [  6188] By: gsar                                  on 2000/06/01  08:58:39
34702         Log: h2xs tweaks
34703      Branch: perl
34704            ! utils/h2xs.PL
34705 ____________________________________________________________________________
34706 [  6187] By: gsar                                  on 2000/06/01  08:50:07
34707         Log: replace pod2latex with the one in Pod-LaTeX v0.52 from CPAN
34708              (from Tim Jenness <t.jenness@jach.hawaii.edu>)
34709      Branch: perl
34710            + lib/Pod/LaTeX.pm
34711            ! AUTHORS MAINTAIN MANIFEST ext/Devel/Peek/Peek.pm
34712            ! pod/pod2latex.PL
34713 ____________________________________________________________________________
34714 [  6186] By: gsar                                  on 2000/06/01  08:24:40
34715         Log: further qualify references to "alphanumeric" (from Wolfgang Laun
34716              <wolfgang.laun@alcatel.at>)
34717      Branch: perl
34718            ! handy.h pod/perlapi.pod pod/perldata.pod pod/perlfaq6.pod
34719            ! pod/perlfaq9.pod pod/perllocale.pod pod/perlre.pod
34720 ____________________________________________________________________________
34721 [  6185] By: gsar                                  on 2000/06/01  08:12:00
34722         Log: remove incorrect documentation about implicit split to @_ in
34723              list context, which never really worked in perl 5 (from
34724              M.J.T. Guy)
34725      Branch: perl
34726            ! pod/perlfunc.pod pod/perltrap.pod
34727 ____________________________________________________________________________
34728 [  6184] By: gsar                                  on 2000/06/01  07:52:27
34729         Log: tweak for change#6127
34730      Branch: perl
34731            ! perl.c
34732 ____________________________________________________________________________
34733 [  6183] By: gsar                                  on 2000/06/01  07:41:02
34734         Log: SelfLoader can lose $@ in AUTOLOAD() (from Nicholas Clark
34735              <nick@ccl4.org>)
34736      Branch: perl
34737            + t/lib/selfloader.t
34738            ! MANIFEST lib/SelfLoader.pm
34739 ____________________________________________________________________________
34740 [  6182] By: jhi                                   on 2000/06/01  00:34:42
34741         Log: Be Cleaner Part Deux.
34742      Branch: cfgperl
34743            ! Makefile.SH
34744 ____________________________________________________________________________
34745 [  6181] By: jhi                                   on 2000/06/01  00:32:09
34746         Log: Integrate with Sarathy.
34747      Branch: cfgperl
34748           !> pp.c t/op/arith.t
34749 ____________________________________________________________________________
34750 [  6180] By: jhi                                   on 2000/06/01  00:31:13
34751         Log: microperl nits from Simon Cozens.
34752      Branch: cfgperl
34753            + uconfig.h
34754            ! MAINTAIN MANIFEST Makefile.SH Todo.micro perl.h uconfig.sh
34755            ! unixish.h
34756 ____________________________________________________________________________
34757 [  6179] By: gsar                                  on 2000/05/31  22:37:51
34758         Log: buggy modulus on UVs introduced by change#3378 (resulted in
34759              4063328477 % 65535 amounting to 27406, instead of 27407)
34760      Branch: perl
34761            ! pp.c t/op/arith.t
34762 ____________________________________________________________________________
34763 [  6178] By: jhi                                   on 2000/05/31  21:52:41
34764         Log: Be cleaner.
34765      Branch: cfgperl
34766            ! Makefile.SH
34767 ____________________________________________________________________________
34768 [  6177] By: jhi                                   on 2000/05/31  21:47:33
34769         Log: Substitution utf8 patch from Simon Cozens.
34770      Branch: cfgperl
34771            ! pp_hot.c
34772 ____________________________________________________________________________
34773 [  6176] By: jhi                                   on 2000/05/31  21:45:34
34774         Log: Single-quoted utf8 patch from Simon Cozens.
34775      Branch: cfgperl
34776            ! toke.c
34777 ____________________________________________________________________________
34778 [  6175] By: jhi                                   on 2000/05/31  21:40:18
34779         Log: Integrate with Sarathy.
34780      Branch: cfgperl
34781           !> op.c regexec.c t/lib/filefind.t t/op/re_tests t/op/wantarray.t
34782 ____________________________________________________________________________
34783 [  6174] By: jhi                                   on 2000/05/31  21:37:31
34784         Log: microperl changes from Simon Cozens; Makefile for microperl
34785              written from scratch; few casts added as microperl compilation
34786              doesn't have all prototypes available.
34787      Branch: cfgperl
34788            + Makefile.micro README.micro Todo.micro uconfig.sh
34789            ! Configure MAINTAIN MANIFEST config_h.SH doop.c mg.c op.c
34790            ! perl.c perl.h perlio.c unixish.h utf8.c util.c
34791      Branch: metaconfig
34792            + U/modified/Config_h.U
34793 ____________________________________________________________________________
34794 [  6173] By: jhi                                   on 2000/05/31  20:00:24
34795         Log: metaconfig maintenance.
34796      Branch: metaconfig
34797            + U/modified/Inhdr.U U/typedefs/inotype.U
34798      Branch: metaconfig/U/perl
34799            + d_finitel.U d_getcwd.U d_llseek.U i_fp_class.U i_iconv.U
34800            + i_ieeefp.U i_syslog.U i_sysrusage.U i_ulimit.U
34801 ____________________________________________________________________________
34802 [  6172] By: gsar                                  on 2000/05/31  05:05:42
34803         Log: fix buggy multiline matching of C<"a\nxb\n" =~ /(?!\A)x/m>
34804              (from Ilya Zakharevich)
34805      Branch: perl
34806            ! regexec.c t/op/re_tests
34807 ____________________________________________________________________________
34808 [  6171] By: gsar                                  on 2000/05/31  05:01:47
34809         Log: scalar() doesn't force scalar context when used in void context
34810              (from Simon Cozens)
34811      Branch: perl
34812            ! op.c t/op/wantarray.t
34813 ____________________________________________________________________________
34814 [  6170] By: gsar                                  on 2000/05/31  04:41:33
34815         Log: change#6142 needs tweaks to tests to work where there's no symlink()
34816              (from Helmut Jarausch <jarausch@igpm.rwth-aachen.de>)
34817      Branch: perl
34818            ! t/lib/filefind.t
34819 ____________________________________________________________________________
34820 [  6169] By: gsar                                  on 2000/05/31  04:29:49
34821         Log: integrate cfgperl contents into mainline
34822      Branch: perl
34823           +> pod/perlmodlib.PL pod/perlnewmod.pod
34824           !> (integrate 42 files)
34825 ____________________________________________________________________________
34826 [  6168] By: jhi                                   on 2000/05/30  22:53:37
34827         Log: Tweak NV_PRESERVES_UV*, vms/subconfigure.com left untouched.
34828      Branch: cfgperl
34829            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
34830            ! config_h.SH epoc/config.sh perl.h toke.c vms/subconfigure.com
34831            ! vos/config.def vos/config.h vos/config.pl vos/config_h.SH_orig
34832            ! win32/config.bc win32/config.gc win32/config.vc
34833            ! win32/config_H.bc win32/config_H.gc win32/config_H.vc
34834            ! win32/config_h.PL win32/config_sh.PL
34835      Branch: metaconfig/U/perl
34836            ! perlxv.U
34837 ____________________________________________________________________________
34838 [  6167] By: jhi                                   on 2000/05/30  22:20:21
34839         Log: tweak todo 
34840      Branch: cfgperl
34841            ! Todo-5.6
34842 ____________________________________________________________________________
34843 [  6166] By: jhi                                   on 2000/05/30  22:11:51
34844         Log: Introduce HAS_GETESPWNAM, HAS_GETPRPWNAM, and I_PROT
34845              in case somebody wants to write an extension for more
34846              shadow database interfaces.
34847      Branch: cfgperl
34848            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
34849            ! config_h.SH epoc/config.sh pp_sys.c vms/subconfigure.com
34850            ! vos/config.def vos/config.h vos/config_h.SH_orig
34851            ! win32/config.bc win32/config.gc win32/config.vc
34852            ! win32/config_H.bc win32/config_H.gc win32/config_H.vc
34853      Branch: metaconfig
34854            ! U/modified/Myinit.U
34855      Branch: metaconfig/U/perl
34856            + d_getespwnam.U d_getprpwnam.U i_prot.U
34857 ____________________________________________________________________________
34858 [  6165] By: jhi                                   on 2000/05/30  18:35:34
34859         Log: Integrate with Sarathy.
34860      Branch: cfgperl
34861           !> op.c
34862 ____________________________________________________________________________
34863 [  6164] By: jhi                                   on 2000/05/30  18:30:16
34864         Log: detypo
34865      Branch: cfgperl
34866            ! Configure config_h.SH
34867      Branch: metaconfig/U/perl
34868            ! perlxv.U
34869 ____________________________________________________________________________
34870 [  6163] By: gsar                                  on 2000/05/30  03:24:03
34871         Log: fix memory leak in C<eval "BEGIN {}"> (bug in change#4579)
34872      Branch: perl
34873            ! op.c
34874 ____________________________________________________________________________
34875 [  6162] By: gsar                                  on 2000/05/30  03:09:38
34876         Log: fix memory leak in method call optimization (change#3768);
34877              made C<eval "$x->foo()"> leak
34878      Branch: perl
34879            ! op.c
34880 ____________________________________________________________________________
34881 [  6161] By: jhi                                   on 2000/05/29  17:56:26
34882         Log: Add autogeneration of perlmodlib.pod and the new perlnewmod.pod,
34883              both from Simon Cozens.
34884      Branch: cfgperl
34885            + pod/perlmodlib.PL pod/perlnewmod.pod
34886            ! AUTHORS MAINTAIN MANIFEST pod/Makefile pod/perl.pod
34887            ! pod/perlmodlib.pod pod/perltoc.pod
34888 ____________________________________________________________________________
34889 [  6160] By: jhi                                   on 2000/05/29  17:23:55
34890         Log: Changes for the File::Temp 0.08 (change #6159) test suite
34891              to fit better into the Perl distribution test framework.
34892      Branch: cfgperl
34893            ! t/lib/ftmp-mktemp.t t/lib/ftmp-posix.t t/lib/ftmp-security.t
34894            ! t/lib/ftmp-tempfile.t
34895 ____________________________________________________________________________
34896 [  6159] By: jhi                                   on 2000/05/29  16:55:36
34897         Log: Upgrade to File::Temp 0.08 from Tim Jenness via CPAN.
34898      Branch: cfgperl
34899            ! lib/File/Temp.pm t/lib/ftmp-mktemp.t t/lib/ftmp-posix.t
34900            ! t/lib/ftmp-security.t t/lib/ftmp-tempfile.t
34901 ____________________________________________________________________________
34902 [  6158] By: bailey                                on 2000/05/29  16:22:08
34903         Log: Add fallback to tmpfile for use in cases where user's relying on
34904              ACLs on SYS$SCRATCH to permit file creation. (based on Charles
34905              Lane's patch)
34906      Branch: vmsperl
34907            ! vms/vms.c vms/vmsish.h
34908 ____________________________________________________________________________
34909 [  6157] By: jhi                                   on 2000/05/29  03:10:36
34910         Log: Regen Configure to jive with #6149.
34911      Branch: cfgperl
34912            ! Configure
34913      Branch: metaconfig
34914            ! U/modified/Getfile.U
34915 ____________________________________________________________________________
34916 [  6156] By: jhi                                   on 2000/05/29  03:01:38
34917         Log: Integrate with Sarathy.
34918      Branch: cfgperl
34919           +> ext/DynaLoader/dl_mac.xs
34920           !> (integrate 38 files)
34921 ____________________________________________________________________________
34922 [  6155] By: gsar                                  on 2000/05/28  21:15:58
34923         Log: small bug in change#6144; remove random \xA0 character that snuck
34924              in via change#6145
34925      Branch: perl
34926            ! lib/AutoSplit.pm lib/ExtUtils/xsubpp
34927 ____________________________________________________________________________
34928 [  6154] By: gsar                                  on 2000/05/28  21:04:19
34929         Log: avoid type mismatch warning
34930      Branch: perl
34931            ! perl.c
34932 ____________________________________________________________________________
34933 [  6153] By: gsar                                  on 2000/05/28  20:58:31
34934         Log: prettier Test::Harness output on failed tests (from Nicholas Clark
34935              <nick@Bagpuss.uk.boo.com>)
34936      Branch: perl
34937            ! lib/Test/Harness.pm
34938 ____________________________________________________________________________
34939 [  6152] By: gsar                                  on 2000/05/28  20:53:42
34940         Log: cosmetic fixups of RE debug output (from Ilya Zakharevich)
34941      Branch: perl
34942            ! regexec.c
34943 ____________________________________________________________________________
34944 [  6151] By: gsar                                  on 2000/05/28  20:50:28
34945         Log: fix accidental pessimization in RE optimizer (from Ilya Zakharevich)
34946      Branch: perl
34947            ! regexec.c
34948 ____________________________________________________________________________
34949 [  6150] By: gsar                                  on 2000/05/28  20:39:58
34950         Log: perlrequick.pod updates (from Mark Kvale <kvale@phy.ucsf.edu>)
34951      Branch: perl
34952            ! pod/perlrequick.pod
34953 ____________________________________________________________________________
34954 [  6149] By: gsar                                  on 2000/05/28  20:35:16
34955         Log: OS/2 tweaks for usethreads build (from Rocco Caputo
34956              <troc@netrus.net>)
34957      Branch: perl
34958            ! Configure hints/os2.sh makedef.pl os2/Makefile.SHs
34959            ! os2/OS2/REXX/t/rx_dllld.t os2/OS2/REXX/t/rx_objcall.t
34960            ! os2/OS2/REXX/t/rx_tievar.t os2/OS2/REXX/t/rx_tieydb.t
34961            ! os2/os2.c os2/os2ish.h perl.c util.c x2p/a2p.h
34962 ____________________________________________________________________________
34963 [  6148] By: gsar                                  on 2000/05/28  20:21:07
34964         Log: close open file before chmod() (from Rocco Caputo <troc@netrus.net>)
34965      Branch: perl
34966            ! lib/ExtUtils/MM_Unix.pm
34967 ____________________________________________________________________________
34968 [  6147] By: gsar                                  on 2000/05/28  20:12:41
34969         Log: add a make entry to Config.pm so "perl -V:make" works on VMS
34970              (from Peter Prymmer)
34971      Branch: perl
34972            ! vms/subconfigure.com
34973 ____________________________________________________________________________
34974 [  6146] By: gsar                                  on 2000/05/28  20:06:15
34975         Log: doc typo
34976      Branch: perl
34977            ! lib/warnings.pm warnings.h warnings.pl
34978 ____________________________________________________________________________
34979 [  6145] By: gsar                                  on 2000/05/28  18:44:33
34980         Log: make xsubpp skip embedded pod (from Matthias Neeracher
34981              <neeri@iis.ee.ethz.ch>)
34982      Branch: perl
34983            ! lib/ExtUtils/xsubpp
34984 ____________________________________________________________________________
34985 [  6144] By: gsar                                  on 2000/05/28  18:42:49
34986         Log: MacOS support, part 2: make AutoSplit use File::Spec instead
34987              of assuming Unixisms; *UNTESTED on Unix* (from Matthias Neeracher
34988              <neeri@iis.ee.ethz.ch>)
34989      Branch: perl
34990            ! lib/AutoSplit.pm
34991 ____________________________________________________________________________
34992 [  6143] By: gsar                                  on 2000/05/28  18:41:12
34993         Log: MacOS support, part 1 (from Matthias Neeracher
34994              <neeri@iis.ee.ethz.ch>)
34995      Branch: perl
34996            + ext/DynaLoader/dl_mac.xs
34997            ! MANIFEST ext/DB_File/Makefile.PL ext/NDBM_File/Makefile.PL
34998            ! ext/POSIX/POSIX.xs lib/ExtUtils/MakeMaker.pm mg.c perl.c
34999            ! perlsfio.h pod/perlfaq4.pod pp_ctl.c proto.h toke.c util.c
35000            ! util.h
35001 ____________________________________________________________________________
35002 [  6142] By: gsar                                  on 2000/05/28  18:21:51
35003         Log: File::Find fails to chdir when chasing symlinks (from
35004              Helmut Jarausch <jarausch@igpm.rwth-aachen.de>)
35005      Branch: perl
35006            ! lib/File/Find.pm t/lib/filefind.t
35007 ____________________________________________________________________________
35008 [  6141] By: jhi                                   on 2000/05/28  14:25:15
35009         Log: BSD/OS (bsdi) hints update by Timur I. Bakeyev and Todd C. Miller,
35010              forwarded by Peter Seebach from the bsdi-users mailing list.
35011              p5p Message-Id: <200005280543.AAA24519@guild.plethora.net>
35012      Branch: perl
35013            ! hints/bsdos.sh
35014 ____________________________________________________________________________
35015 [  6140] By: jhi                                   on 2000/05/28  14:11:57
35016         Log: Integrate with Sarathy.
35017      Branch: cfgperl
35018           +> (branch 30 files)
35019           !> (integrate 93 files)
35020 ____________________________________________________________________________
35021 [  6139] By: gsar                                  on 2000/05/28  10:01:48
35022         Log: revise mktables.PL for bugs and newness in Unicode 3.0
35023              (from James Bence <jbence@amgen.com>)
35024      Branch: perl
35025            + lib/unicode/Is/BidiAL.pl lib/unicode/Is/BidiBN.pl
35026            + lib/unicode/Is/BidiLRE.pl lib/unicode/Is/BidiLRO.pl
35027            + lib/unicode/Is/BidiNSM.pl lib/unicode/Is/BidiPDF.pl
35028            + lib/unicode/Is/BidiRLE.pl lib/unicode/Is/BidiRLO.pl
35029            + lib/unicode/Is/Cf.pl lib/unicode/Is/Cs.pl
35030            + lib/unicode/Is/DCfraction.pl lib/unicode/Is/Me.pl
35031            + lib/unicode/Is/Nl.pl lib/unicode/Is/Pc.pl lib/unicode/Is/Pf.pl
35032            + lib/unicode/Is/Pi.pl lib/unicode/Is/Sk.pl
35033            + lib/unicode/Is/SylAA.pl lib/unicode/Is/SylAAI.pl
35034            + lib/unicode/Is/SylAI.pl lib/unicode/Is/SylEE.pl
35035            + lib/unicode/Is/SylII.pl lib/unicode/Is/SylN.pl
35036            + lib/unicode/Is/SylOO.pl lib/unicode/Is/SylWAA.pl
35037            + lib/unicode/Is/SylWEE.pl lib/unicode/Is/SylWII.pl
35038            + lib/unicode/Is/SylWO.pl lib/unicode/Is/SylWOO.pl
35039            + lib/unicode/Is/SylWU.pl
35040            ! MANIFEST lib/unicode/Is/Cn.pl lib/unicode/Is/Graph.pl
35041            ! lib/unicode/Is/LbrkAI.pl lib/unicode/Is/LbrkAL.pl
35042            ! lib/unicode/Is/LbrkB2.pl lib/unicode/Is/LbrkBA.pl
35043            ! lib/unicode/Is/LbrkBB.pl lib/unicode/Is/LbrkBK.pl
35044            ! lib/unicode/Is/LbrkCB.pl lib/unicode/Is/LbrkCL.pl
35045            ! lib/unicode/Is/LbrkCM.pl lib/unicode/Is/LbrkCR.pl
35046            ! lib/unicode/Is/LbrkEX.pl lib/unicode/Is/LbrkGL.pl
35047            ! lib/unicode/Is/LbrkHY.pl lib/unicode/Is/LbrkID.pl
35048            ! lib/unicode/Is/LbrkIN.pl lib/unicode/Is/LbrkIS.pl
35049            ! lib/unicode/Is/LbrkLF.pl lib/unicode/Is/LbrkNS.pl
35050            ! lib/unicode/Is/LbrkNU.pl lib/unicode/Is/LbrkOP.pl
35051            ! lib/unicode/Is/LbrkPO.pl lib/unicode/Is/LbrkPR.pl
35052            ! lib/unicode/Is/LbrkQU.pl lib/unicode/Is/LbrkSA.pl
35053            ! lib/unicode/Is/LbrkSG.pl lib/unicode/Is/LbrkSP.pl
35054            ! lib/unicode/Is/LbrkSY.pl lib/unicode/Is/LbrkXX.pl
35055            ! lib/unicode/Is/LbrkZW.pl lib/unicode/Is/Punct.pl
35056            ! lib/unicode/Is/Space.pl lib/unicode/Is/SylA.pl
35057            ! lib/unicode/Is/SylC.pl lib/unicode/Is/SylE.pl
35058            ! lib/unicode/Is/SylI.pl lib/unicode/Is/SylO.pl
35059            ! lib/unicode/Is/SylU.pl lib/unicode/Is/SylV.pl
35060            ! lib/unicode/Is/SylWA.pl lib/unicode/Is/SylWC.pl
35061            ! lib/unicode/Is/SylWE.pl lib/unicode/Is/SylWI.pl
35062            ! lib/unicode/Is/SylWV.pl lib/unicode/Is/Upper.pl
35063            ! lib/unicode/Makefile lib/unicode/mktables.PL
35064 ____________________________________________________________________________
35065 [  6138] By: gsar                                  on 2000/05/28  08:50:32
35066         Log: add note about the handling of negative indices to tied arrays
35067              (from Michael G Schwern <schwern@pobox.com>)
35068      Branch: perl
35069            ! pod/perltie.pod
35070 ____________________________________________________________________________
35071 [  6137] By: gsar                                  on 2000/05/28  08:46:10
35072         Log: fix bogus redeclaration warning for "our" variables in different
35073              scopes
35074      Branch: perl
35075            ! op.c t/pragma/strict-vars
35076 ____________________________________________________________________________
35077 [  6136] By: gsar                                  on 2000/05/28  08:31:20
35078         Log: random pod typos (from Peter Scott <Peter@PSDT.com>)
35079      Branch: perl
35080            ! ext/Devel/Peek/Peek.pm pod/perldebguts.pod
35081 ____________________________________________________________________________
35082 [  6135] By: gsar                                  on 2000/05/28  08:17:50
35083         Log: enable Test::Harness to dynamically determine column width etc.
35084              (from Rob Napier <rnapier@employees.org>)
35085      Branch: perl
35086            ! lib/Test/Harness.pm
35087 ____________________________________________________________________________
35088 [  6134] By: gsar                                  on 2000/05/28  08:13:39
35089         Log: make Test::Harness use wait.h/WCOREDUMP if available
35090              (from Ben Tilly <ben_tilly@hotmail.com>)
35091      Branch: perl
35092            ! lib/Test/Harness.pm
35093 ____________________________________________________________________________
35094 [  6133] By: gsar                                  on 2000/05/28  08:08:05
35095         Log: elide bogus test in change#6132
35096      Branch: perl
35097            ! t/pragma/warn/9enabled
35098 ____________________________________________________________________________
35099 [  6132] By: gsar                                  on 2000/05/28  08:03:14
35100         Log: warnings::enabled() doesn't fall back to looking at $^W if
35101              caller isn't using lexical warnings (from Paul Marquess)
35102      Branch: perl
35103            ! pp_ctl.c t/pragma/warn/9enabled
35104 ____________________________________________________________________________
35105 [  6131] By: gsar                                  on 2000/05/28  07:57:47
35106         Log: avoid warnings in POSIX.pm (from Barrie Slaymaker)
35107      Branch: perl
35108            ! ext/POSIX/POSIX.pm
35109 ____________________________________________________________________________
35110 [  6130] By: gsar                                  on 2000/05/28  07:29:12
35111         Log: fix places that mean C<"word" character> but say C<alphanumeric
35112              character>
35113      Branch: perl
35114            ! pod/perlfunc.pod pod/perlre.pod pod/perlretut.pod
35115 ____________________________________________________________________________
35116 [  6129] By: gsar                                  on 2000/05/28  07:18:41
35117         Log: VMS test harness tweak (from Jesper Naur <jesper.naur@post.tele.dk>)
35118      Branch: perl
35119            ! vms/test.com
35120 ____________________________________________________________________________
35121 [  6128] By: gsar                                  on 2000/05/28  07:12:55
35122         Log: new perlxstut example for passing/returning refs to arrays
35123              (from David Lowe <dlowe@pootpoot.com>)
35124      Branch: perl
35125            ! pod/perlxstut.pod
35126 ____________________________________________________________________________
35127 [  6127] By: gsar                                  on 2000/05/28  07:02:50
35128         Log: call_method(...,G_EVAL) can longjmp() out if the method probing
35129              failed (from Gisle Aas)
35130      Branch: perl
35131            ! cop.h perl.c
35132 ____________________________________________________________________________
35133 [  6126] By: gsar                                  on 2000/05/28  06:39:53
35134         Log: change#2879 broke rvalue autovivification of magicals such as ${$num}
35135              (reworked variant of patch suggested by Simon Cozens)
35136      Branch: perl
35137            ! embed.h embed.pl gv.c pod/perlapi.pod pod/perlintern.pod pp.c
35138            ! pp_hot.c proto.h t/op/gv.t
35139 ____________________________________________________________________________
35140 [  6125] By: gsar                                  on 2000/05/28  05:14:55
35141         Log: enable propagating exception objects via Perl_croak() in XS code
35142              (from Gisle Aas)
35143      Branch: perl
35144            ! util.c
35145 ____________________________________________________________________________
35146 [  6124] By: gsar                                  on 2000/05/28  05:07:28
35147         Log: integrate vmsperl contents into mainline
35148      Branch: perl
35149           !> lib/ExtUtils/MM_VMS.pm lib/File/Spec/VMS.pm t/op/lex_assign.t
35150           !> vms/ext/vmsish.pm vms/ext/vmsish.t vms/test.com vms/vms.c
35151           !> vms/vmsish.h
35152 ____________________________________________________________________________
35153 [  6123] By: gsar                                  on 2000/05/28  05:03:53
35154         Log: clarify gotcha with #line directives (from Rocco Caputo
35155              <troc@netrus.net>)
35156      Branch: perl
35157            ! pod/perldebug.pod pod/perlsyn.pod
35158 ____________________________________________________________________________
35159 [  6122] By: gsar                                  on 2000/05/28  04:58:29
35160         Log: downgrade fatal error on C<"foo@nosucharray.com"> to optional warning
35161              (from Mark-Jason Dominus)
35162      Branch: perl
35163            ! lib/ExtUtils/typemap pod/perl56delta.pod pod/perlsub.pod
35164            ! pod/perltrap.pod t/base/lex.t t/pragma/strict-vars
35165            ! t/pragma/strict.t t/pragma/warn/toke t/pragma/warnings.t
35166            ! toke.c
35167 ____________________________________________________________________________
35168 [  6121] By: bailey                                on 2000/05/25  04:46:54
35169         Log: Allow eliminate_macros() and fixpath() to handle space-delimited
35170              lists (based on fixes by Craig Berry)
35171      Branch: vmsperl
35172            ! lib/File/Spec/VMS.pm
35173 ____________________________________________________________________________
35174 [  6120] By: bailey                                on 2000/05/25  04:25:38
35175         Log: Add missing escape (Charles Lane)
35176      Branch: vmsperl
35177            ! t/op/lex_assign.t
35178 ____________________________________________________________________________
35179 [  6119] By: bailey                                on 2000/05/25  04:21:25
35180         Log: Quiet error messages in vmsish.t (Charles Lane)
35181      Branch: vmsperl
35182            ! vms/ext/vmsish.t
35183 ____________________________________________________________________________
35184 [  6118] By: bailey                                on 2000/05/25  04:17:57
35185         Log: Regularize distinction between RMS$_DNF and RMS$_DIR (Craig Berry)
35186              Flatten case labels in switch statements uniformly (Charles Bailey)
35187      Branch: vmsperl
35188            ! vms/vms.c
35189 ____________________________________________________________________________
35190 [  6117] By: bailey                                on 2000/05/25  03:58:09
35191         Log: Treat sockets as special in sys(read|write) (Charles Lane et al.)
35192      Branch: vmsperl
35193            ! vms/vmsish.h
35194 ____________________________________________________________________________
35195 [  6116] By: bailey                                on 2000/05/25  03:11:15
35196         Log: Miscellaneous cosmetic fixes (Charles Lane)
35197      Branch: vmsperl
35198            ! lib/ExtUtils/MM_VMS.pm
35199 ____________________________________________________________________________
35200 [  6115] By: bailey                                on 2000/05/25  03:10:36
35201         Log: Add bounds checking for several strings (Charles Lane)
35202      Branch: vmsperl
35203            ! vms/vms.c
35204 ____________________________________________________________________________
35205 [  6114] By: bailey                                on 2000/05/25  02:25:34
35206         Log: Urk -- undo previous removal of vmsish 'exit' change
35207      Branch: vmsperl
35208            ! vms/ext/vmsish.pm vms/vmsish.h
35209 ____________________________________________________________________________
35210 [  6113] By: bailey                                on 2000/05/24  02:24:40
35211         Log: Ugly workaround for version-specific RTL error
35212      Branch: vmsperl
35213            ! vms/vms.c
35214 ____________________________________________________________________________
35215 [  6112] By: bailey                                on 2000/05/24  02:19:55
35216         Log: Check for existence of file before trying to delete
35217      Branch: vmsperl
35218            ! vms/test.com
35219 ____________________________________________________________________________
35220 [  6111] By: bailey                                on 2000/05/23  23:35:13
35221         Log: Resync with mainline prior to post-5.6.0 updates
35222      Branch: vmsperl
35223           +> (branch 49 files)
35224            - t/lib/thread.t t/op/64bit.t t/op/nothread.t
35225            ! vms/ext/vmsish.pm
35226           !> (integrate 334 files)
35227 ____________________________________________________________________________
35228 [  6110] By: jhi                                   on 2000/05/23  19:28:32
35229         Log: todo tweak
35230      Branch: cfgperl
35231            ! Todo-5.6
35232 ____________________________________________________________________________
35233 [  6109] By: jhi                                   on 2000/05/18  17:38:54
35234         Log: Integrate with Sarathy.
35235      Branch: cfgperl
35236           !> mg.c perl.h win32/perlhost.h
35237 ____________________________________________________________________________
35238 [  6108] By: gsar                                  on 2000/05/17  02:24:56
35239         Log: reenable fake signal handling on Windows, bugs and all
35240      Branch: perl
35241            ! mg.c perl.h win32/perlhost.h
35242 ____________________________________________________________________________
35243 [  6107] By: jhi                                   on 2000/05/15  18:01:41
35244         Log: Tweak the todo list.
35245      Branch: cfgperl
35246            ! Todo-5.6
35247 ____________________________________________________________________________
35248 [  6106] By: jhi                                   on 2000/05/15  13:41:48
35249         Log: The (Configure) script refuses to go on, after asking for
35250              'You may also choose to try maximal 64-bitness....'.
35251              If answer is yes the script can't find the 'workshoplibpth.cbu' file.
35252              -- Patrick Zima
35253              p5p Message-Id: <200005151108.NAA19733@pc026991.otn.lm.dasa.de> 
35254      Branch: cfgperl
35255            ! hints/solaris_2.sh
35256 ____________________________________________________________________________
35257 [  6105] By: jhi                                   on 2000/05/11  14:37:43
35258         Log: Integrate with Sarathy.
35259      Branch: cfgperl
35260           !> embed.h embed.pl global.sym makedef.pl objXSUB.h perl.c
35261           !> perlapi.c pod/perlapi.pod proto.h win32/win32.c
35262 ____________________________________________________________________________
35263 [  6104] By: gsar                                  on 2000/05/11  03:39:07
35264         Log: PL_sys_intern was being initialized too late on windows
35265      Branch: perl
35266            ! embed.h embed.pl global.sym makedef.pl objXSUB.h perl.c
35267            ! perlapi.c pod/perlapi.pod proto.h win32/win32.c
35268 ____________________________________________________________________________
35269 [  6103] By: jhi                                   on 2000/05/09  19:42:20
35270         Log: Test tweaking for Unicos continues.
35271      Branch: cfgperl
35272            ! t/op/64bitint.t
35273 ____________________________________________________________________________
35274 [  6102] By: jhi                                   on 2000/05/09  16:47:27
35275         Log: The test suite tweak in #6101 wasn't quite right.
35276      Branch: cfgperl
35277            ! t/lib/complex.t
35278 ____________________________________________________________________________
35279 [  6101] By: jhi                                   on 2000/05/09  15:35:34
35280         Log: Hints and test tweaks for Unicos.
35281      Branch: cfgperl
35282            ! hints/unicos.sh t/lib/b.t t/lib/complex.t t/op/64bitint.t
35283 ____________________________________________________________________________
35284 [  6100] By: jhi                                   on 2000/05/08  21:15:06
35285         Log: More compilation tweakery from Allen Smith.
35286      Branch: cfgperl
35287            ! hints/irix_6.sh
35288 ____________________________________________________________________________
35289 [  6099] By: jhi                                   on 2000/05/08  19:21:18
35290         Log: Tweaks for the cc bugs from Allen Smith.
35291      Branch: cfgperl
35292            ! hints/irix_6.sh
35293 ____________________________________________________________________________
35294 [  6098] By: jhi                                   on 2000/05/08  19:13:37
35295         Log: Add a note about other, yet unsupported, shadow password APIs.
35296      Branch: cfgperl
35297            ! pp_sys.c
35298 ____________________________________________________________________________
35299 [  6097] By: jhi                                   on 2000/05/08  18:46:34
35300         Log: Add a note about possible compilation problems from Allen Smith.
35301      Branch: cfgperl
35302            ! hints/irix_6.sh
35303 ____________________________________________________________________________
35304 [  6096] By: jhi                                   on 2000/05/08  17:33:10
35305         Log: Integrate with Sarathy.
35306      Branch: cfgperl
35307           !> README.cygwin cygwin/Makefile.SHs cygwin/cygwin.c
35308           !> hints/cygwin.sh pp_sys.c sv.c win32/perlhost.h
35309 ____________________________________________________________________________
35310 [  6095] By: jhi                                   on 2000/05/08  16:21:33
35311         Log: Introduce NV_PRESERVED_BITS.  Not yet used anywhere but
35312              might be useful in future.
35313      Branch: cfgperl
35314            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
35315            ! config_h.SH
35316      Branch: metaconfig
35317            ! U/installdirs/inc_version_list.U
35318      Branch: metaconfig/U/perl
35319            ! perlxv.U
35320 ____________________________________________________________________________
35321 [  6094] By: gsar                                  on 2000/05/08  14:22:22
35322         Log: cygwin update (from Eric Fifer <efifer@sanwaint.com>)
35323      Branch: perl
35324            ! README.cygwin cygwin/Makefile.SHs cygwin/cygwin.c
35325            ! hints/cygwin.sh pp_sys.c
35326 ____________________________________________________________________________
35327 [  6093] By: gsar                                  on 2000/05/08  12:52:28
35328         Log: fork() failure to create pseudo process sets errno=EAGAIN and returns
35329              undef on windows (from Clinton Pierce <clintp@geeksalad.org>)
35330      Branch: perl
35331            ! pp_sys.c sv.c win32/perlhost.h
35332 ____________________________________________________________________________
35333 [  6092] By: jhi                                   on 2000/05/07  22:40:34
35334         Log: Regen perltoc with the fixed buildtoc.
35335      Branch: cfgperl
35336            ! pod/perltoc.pod
35337 ____________________________________________________________________________
35338 [  6091] By: jhi                                   on 2000/05/07  22:24:16
35339         Log: Integrate with Sarathy.
35340      Branch: cfgperl
35341           !> perl.c pod/buildtoc pp.c pp_hot.c sv.c t/op/quotemeta.t
35342           !> t/op/substr.t toke.c
35343 ____________________________________________________________________________
35344 [  6090] By: gsar                                  on 2000/05/07  19:47:07
35345         Log: concat doesn't preserve utf8-ness, and doesn't invalidate
35346              [NI]OK; added tests for both
35347      Branch: perl
35348            ! perl.c pp_hot.c sv.c t/op/substr.t
35349 ____________________________________________________________________________
35350 [  6089] By: gsar                                  on 2000/05/07  18:18:38
35351         Log: buildtoc tweak to fix newline lossage
35352      Branch: perl
35353            ! pod/buildtoc
35354 ____________________________________________________________________________
35355 [  6088] By: jhi                                   on 2000/05/07  16:35:36
35356         Log: Remove HAS_SETSPENT, HAS_GETSPENT, HAS_ENDSPENT,
35357              because we do not use those.  The HAS_GETSPNAM remains,
35358              though, because we still do use that.
35359      Branch: cfgperl
35360            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
35361            ! config_h.SH epoc/config.sh hints/machten.sh pod/perltoc.pod
35362            ! pp_sys.c vms/subconfigure.com vos/config.def vos/config.h
35363            ! vos/config_h.SH_orig win32/config.bc win32/config.gc
35364            ! win32/config.vc win32/config_H.bc win32/config_H.gc
35365            ! win32/config_H.vc win32/config_h.PL win32/config_sh.PL
35366 ____________________________________________________________________________
35367 [  6087] By: gsar                                  on 2000/05/07  16:05:16
35368         Log: reverse() and quotemeta() weren't preserving utf8-ness; add tests
35369      Branch: perl
35370            ! pp.c sv.c t/op/quotemeta.t t/op/substr.t toke.c
35371 ____________________________________________________________________________
35372 [  6086] By: jhi                                   on 2000/05/07  15:27:07
35373         Log: Integrate with Sarathy.
35374      Branch: cfgperl
35375           +> lib/File/Temp.pm t/lib/ftmp-mktemp.t t/lib/ftmp-posix.t
35376           +> t/lib/ftmp-security.t t/lib/ftmp-tempfile.t
35377           !> AUTHORS MAINTAIN MANIFEST iperlsys.h lib/Carp/Heavy.pm
35378           !> lib/diagnostics.pm pod/perlfunc.pod pod/perlrun.pod
35379           !> pod/perltie.pod pp.c t/lib/peek.t t/op/substr.t
35380           !> utils/perlbug.PL vms/vms.c vms/vmsish.h
35381 ____________________________________________________________________________
35382 [  6085] By: gsar                                  on 2000/05/07  05:52:02
35383         Log: repeat operator (x) doesn't preserve utf8-ness
35384      Branch: perl
35385            ! pp.c t/op/substr.t
35386 ____________________________________________________________________________
35387 [  6084] By: gsar                                  on 2000/05/07  05:39:55
35388         Log: substr() does not preserve utf8-ness (from Stefan Eissing
35389              <Eissing@medicaldataservice.de>); added tests
35390      Branch: perl
35391            ! pp.c t/op/substr.t
35392 ____________________________________________________________________________
35393 [  6083] By: gsar                                  on 2000/05/07  05:24:46
35394         Log: note about undocumented caller() return value (from M.J.T. Guy);
35395              yet another peek.t tweak
35396      Branch: perl
35397            ! pod/perlfunc.pod t/lib/peek.t
35398 ____________________________________________________________________________
35399 [  6082] By: gsar                                  on 2000/05/07  05:08:40
35400         Log: peek.t non-portable to ithreads
35401      Branch: perl
35402            ! t/lib/peek.t
35403 ____________________________________________________________________________
35404 [  6081] By: gsar                                  on 2000/05/07  04:17:04
35405         Log: better default perlbug categories for ok reports (from Richard Foley)
35406      Branch: perl
35407            ! utils/perlbug.PL
35408 ____________________________________________________________________________
35409 [  6080] By: gsar                                  on 2000/05/07  04:08:07
35410         Log: add File::Temp v0.08 from CPAN, with small tweaks to testsuite
35411              (from Tim Jenness <t.jenness@jach.hawaii.edu>)
35412      Branch: perl
35413            + lib/File/Temp.pm t/lib/ftmp-mktemp.t t/lib/ftmp-posix.t
35414            + t/lib/ftmp-security.t t/lib/ftmp-tempfile.t
35415            ! AUTHORS MAINTAIN MANIFEST
35416 ____________________________________________________________________________
35417 [  6079] By: gsar                                  on 2000/05/07  04:01:38
35418         Log: remove outdated kludge in Carp (NULLs are permitted in diagnostics now)
35419      Branch: perl
35420            ! lib/Carp/Heavy.pm
35421 ____________________________________________________________________________
35422 [  6078] By: gsar                                  on 2000/05/07  01:24:19
35423         Log: workaround for CRT bug in chdir() (from Charles Lane, via
35424              Peter Prymmer)
35425      Branch: perl
35426            ! iperlsys.h vms/vms.c vms/vmsish.h
35427 ____________________________________________________________________________
35428 [  6077] By: gsar                                  on 2000/05/07  01:22:23
35429         Log: avoid warnings in diagnostics.pm; pod tweaks (from Peter Prymmer
35430              and Tom Phoenix)
35431      Branch: perl
35432            ! lib/diagnostics.pm pod/perlrun.pod pod/perltie.pod
35433 ____________________________________________________________________________
35434 [  6076] By: gsar                                  on 2000/05/06  17:36:29
35435         Log: integrate cfgperl contents into mainline
35436      Branch: perl
35437           +> t/lib/peek.t
35438           !> Configure MANIFEST Porting/Glossary Porting/config.sh
35439           !> Porting/config_H config_h.SH ext/POSIX/POSIX.xs
35440           !> hints/unicos.sh lib/Math/Complex.pm pp_sys.c sv.c
35441           !> t/lib/complex.t t/op/grent.t t/op/pwent.t toke.c util.c
35442 ____________________________________________________________________________
35443 [  6075] By: jhi                                   on 2000/05/05  18:56:10
35444         Log: Make the test more portable.
35445      Branch: cfgperl
35446            ! t/lib/peek.t
35447 ____________________________________________________________________________
35448 [  6074] By: jhi                                   on 2000/05/05  18:49:20
35449         Log: Introduce t/lib/peek.t.
35450      Branch: cfgperl
35451            + t/lib/peek.t
35452            ! MANIFEST
35453 ____________________________________________________________________________
35454 [  6073] By: jhi                                   on 2000/05/05  14:30:45
35455         Log: Complex tweaks.
35456      Branch: cfgperl
35457            ! lib/Math/Complex.pm t/lib/complex.t
35458 ____________________________________________________________________________
35459 [  6072] By: jhi                                   on 2000/05/05  12:27:13
35460         Log: Integrate with Sarathy.
35461      Branch: cfgperl
35462           !> lib/ExtUtils/MM_Unix.pm lib/ExtUtils/MM_Win32.pm
35463           !> lib/File/Spec.pm lib/File/Spec/Mac.pm lib/File/Spec/Unix.pm
35464           !> lib/File/Spec/VMS.pm lib/File/Spec/Win32.pm perl.c
35465           !> pod/perlfunc.pod t/lib/anydbm.t win32/win32.c
35466 ____________________________________________________________________________
35467 [  6071] By: gsar                                  on 2000/05/05  02:24:46
35468         Log: misformatted perllocal.pod (from Tim Jenness
35469              <t.jenness@jach.hawaii.edu>)
35470      Branch: perl
35471            ! lib/ExtUtils/MM_Unix.pm lib/ExtUtils/MM_Win32.pm
35472 ____________________________________________________________________________
35473 [  6070] By: gsar                                  on 2000/05/05  02:16:52
35474         Log: remove misleading comment (from M.J.T. Guy)
35475      Branch: perl
35476            ! t/lib/anydbm.t
35477 ____________________________________________________________________________
35478 [  6069] By: gsar                                  on 2000/05/05  02:15:13
35479         Log: File::Spec compatibility update (from Barrie Slaymaker
35480              <barries@slaysys.com>)
35481      Branch: perl
35482            ! lib/File/Spec.pm lib/File/Spec/Mac.pm lib/File/Spec/Unix.pm
35483            ! lib/File/Spec/VMS.pm lib/File/Spec/Win32.pm
35484 ____________________________________________________________________________
35485 [  6068] By: gsar                                  on 2000/05/05  02:01:50
35486         Log: note about values()
35487      Branch: perl
35488            ! pod/perlfunc.pod
35489 ____________________________________________________________________________
35490 [  6067] By: gsar                                  on 2000/05/05  01:33:09
35491         Log: replace direct call to sighandler() with (*PL_sighandlerp)()
35492      Branch: perl
35493            ! win32/win32.c
35494 ____________________________________________________________________________
35495 [  6066] By: gsar                                  on 2000/05/05  01:23:43
35496         Log: s/END/CHECK/
35497      Branch: perl
35498            ! perl.c
35499 ____________________________________________________________________________
35500 [  6065] By: jhi                                   on 2000/05/04  17:30:22
35501         Log: Integrate with Sarathy.
35502      Branch: cfgperl
35503           !> pp_sys.c sv.c t/pragma/utf8.t toke.c
35504 ____________________________________________________________________________
35505 [  6064] By: gsar                                  on 2000/05/04  17:26:14
35506         Log: change#5905 wasn't quite right--it's intent only applies when arguments
35507              to sv_vcatpvfn() are SVs instead of C types; back out change#5907 as well
35508      Branch: perl
35509            ! pp_sys.c sv.c
35510 ____________________________________________________________________________
35511 [  6063] By: gsar                                  on 2000/05/04  16:52:29
35512         Log: tokeq() could read unallocated field in argument
35513      Branch: perl
35514            ! toke.c
35515 ____________________________________________________________________________
35516 [  6062] By: gsar                                  on 2000/05/04  16:34:51
35517         Log: additional tests for utf8.t
35518      Branch: perl
35519            ! t/pragma/utf8.t
35520 ____________________________________________________________________________
35521 [  6061] By: gsar                                  on 2000/05/04  16:09:28
35522         Log: change#5921 neglected to make eq honor "use bytes"
35523      Branch: perl
35524            ! sv.c
35525 ____________________________________________________________________________
35526 [  6060] By: jhi                                   on 2000/05/04  15:30:16
35527         Log: Integrate with Sarathy.
35528      Branch: cfgperl
35529           !> perl.c regcomp.c t/pragma/utf8.t
35530 ____________________________________________________________________________
35531 [  6059] By: jhi                                   on 2000/05/04  15:26:37
35532         Log: The logic of choosing strtol/strtoul/strtoll/strtoull was wrong
35533              in natively 64-bit platforms where a long is a quad (no need
35534              for long longs).  Also added bias for IVs.
35535      Branch: cfgperl
35536            ! toke.c
35537 ____________________________________________________________________________
35538 [  6058] By: gsar                                  on 2000/05/04  00:19:14
35539         Log: printf(...) should be PerlIO_printf(PerlIO_stdout(), ...)
35540              (spotted by Donald Kinzer <dkinzer@premia.com>)
35541      Branch: perl
35542            ! perl.c
35543 ____________________________________________________________________________
35544 [  6057] By: gsar                                  on 2000/05/03  18:34:01
35545         Log: fix broken parsing of /\x{ab}/
35546      Branch: perl
35547            ! regcomp.c t/pragma/utf8.t
35548 ____________________________________________________________________________
35549 [  6056] By: jhi                                   on 2000/05/03  17:57:16
35550         Log: The search of infinity continues, this time simplified.
35551      Branch: cfgperl
35552            ! lib/Math/Complex.pm
35553 ____________________________________________________________________________
35554 [  6055] By: jhi                                   on 2000/05/03  17:45:30
35555         Log: Detypo.
35556      Branch: cfgperl
35557            ! hints/unicos.sh
35558 ____________________________________________________________________________
35559 [  6054] By: jhi                                   on 2000/05/02  22:28:27
35560         Log: Be more forgiving in POSIX about HUGE_VALL.
35561      Branch: cfgperl
35562            ! ext/POSIX/POSIX.xs
35563 ____________________________________________________________________________
35564 [  6053] By: jhi                                   on 2000/05/02  22:25:05
35565         Log: Integrate with Sarathy.
35566      Branch: cfgperl
35567           !> hints/irix_6.sh pod/perlop.pod
35568 ____________________________________________________________________________
35569 [  6052] By: jhi                                   on 2000/05/02  22:24:31
35570         Log: Unicos hint tweak.
35571      Branch: cfgperl
35572            ! hints/unicos.sh
35573 ____________________________________________________________________________
35574 [  6051] By: jhi                                   on 2000/05/02  22:21:26
35575         Log: Complex tweakery.
35576      Branch: cfgperl
35577            ! lib/Math/Complex.pm t/lib/complex.t
35578 ____________________________________________________________________________
35579 [  6050] By: jhi                                   on 2000/05/02  19:26:22
35580         Log: Use setxxent()/endxxent().
35581      Branch: cfgperl
35582            ! t/op/grent.t t/op/pwent.t
35583 ____________________________________________________________________________
35584 [  6049] By: jhi                                   on 2000/05/02  19:06:02
35585         Log: Test both the scalar and list contexts.
35586      Branch: cfgperl
35587            ! t/op/grent.t t/op/pwent.t
35588 ____________________________________________________________________________
35589 [  6048] By: gsar                                  on 2000/05/02  18:29:10
35590         Log: add note about how $( doesn't interpolate in REs (from
35591              Philip Newton <newton@ficus.frogspace.net>)
35592      Branch: perl
35593            ! pod/perlop.pod
35594 ____________________________________________________________________________
35595 [  6047] By: jhi                                   on 2000/05/02  17:41:24
35596         Log: Call getspnam() only iff needd.
35597      Branch: cfgperl
35598            ! pp_sys.c
35599 ____________________________________________________________________________
35600 [  6046] By: gsar                                  on 2000/05/02  17:07:25
35601         Log: libscheck has insufficient checks for n32 libs (from
35602              Albert Chin-A-Young <china@thewrittenword.com>)
35603      Branch: perl
35604            ! hints/irix_6.sh
35605 ____________________________________________________________________________
35606 [  6045] By: jhi                                   on 2000/05/02  13:57:17
35607         Log: Integrate with Sarathy.
35608      Branch: cfgperl
35609           !> MANIFEST Porting/makerel perl.c pod/perlretut.pod
35610           !> pod/perltrap.pod pp.c regcomp.c t/op/oct.t toke.c util.c
35611 ____________________________________________________________________________
35612 [  6044] By: gsar                                  on 2000/05/02  06:48:19
35613         Log: change#3798 broke the meaning of "\0_7_7", tr/\0_// etc.; fix it
35614              such that underscores are only ignored in literal numbers,
35615              "\x{...}", and hex/oct argument
35616      Branch: perl
35617            ! perl.c pp.c regcomp.c t/op/oct.t toke.c util.c
35618 ____________________________________________________________________________
35619 [  6043] By: gsar                                  on 2000/05/02  02:22:29
35620         Log: perlretut revisions (from Mark Kvale <kvale@phy.ucsf.edu>)
35621      Branch: perl
35622            ! pod/perlretut.pod
35623 ____________________________________________________________________________
35624 [  6042] By: gsar                                  on 2000/05/02  02:17:51
35625         Log: remove outdated perltrap entry (from Peter Scott <Peter@PSDT.com>)
35626      Branch: perl
35627            ! pod/perltrap.pod
35628 ____________________________________________________________________________
35629 [  6041] By: gsar                                  on 2000/05/02  01:53:51
35630         Log: cpio 2.4.2 on Linux creates directories in 0700 mode, adjust makerel
35631              to compensate
35632      Branch: perl
35633            ! Porting/makerel
35634 ____________________________________________________________________________
35635 [  6040] By: gsar                                  on 2000/05/02  01:51:57
35636         Log: missing files in MANIFEST
35637      Branch: perl
35638            ! MANIFEST
35639 ____________________________________________________________________________
35640 [  6039] By: jhi                                   on 2000/05/02  00:36:46
35641         Log: Infinite problems.
35642      Branch: cfgperl
35643            ! lib/Math/Complex.pm
35644 ____________________________________________________________________________
35645 [  6038] By: jhi                                   on 2000/05/02  00:06:38
35646         Log: pwent/spent #ifdef imbalance.
35647      Branch: cfgperl
35648            ! pp_sys.c
35649 ____________________________________________________________________________
35650 [  6037] By: jhi                                   on 2000/05/01  22:50:11
35651         Log: Use HUGE_VALL if applicable.
35652      Branch: cfgperl
35653            ! ext/POSIX/POSIX.xs util.c
35654 ____________________________________________________________________________
35655 [  6036] By: jhi                                   on 2000/05/01  22:20:53
35656         Log: Correct Freudian slip.
35657      Branch: cfgperl
35658            ! pp_sys.c
35659 ____________________________________________________________________________
35660 [  6035] By: jhi                                   on 2000/05/01  21:07:38
35661         Log: Continue on the pwent/spent case.
35662      Branch: cfgperl
35663            ! pp_sys.c
35664 ____________________________________________________________________________
35665 [  6034] By: jhi                                   on 2000/05/01  17:45:14
35666         Log: Integrate with Sarathy; unfortunately Sarathy's whitespace
35667              adjustments in 6032 conflicted badly with this, will have
35668              to revisit them later.
35669      Branch: cfgperl
35670           +> lib/CGI/Util.pm t/lib/cgi-pretty.t
35671           !> MANIFEST lib/CGI.pm lib/CGI/Carp.pm lib/CGI/Cookie.pm
35672           !> lib/CGI/Pretty.pm lib/CGI/Push.pm lib/English.pm
35673           !> lib/Pod/Man.pm lib/Pod/Text.pm lib/diagnostics.pm
35674           !> pod/perldiag.pod pod/perlvar.pod pp_sys.c t/lib/cgi-function.t
35675           !> t/lib/cgi-html.t t/lib/cgi-request.t
35676 ____________________________________________________________________________
35677 [  6033] By: jhi                                   on 2000/05/01  17:40:49
35678         Log: Rewrite the pwent/spent logic to be a little bit more clearer.
35679      Branch: cfgperl
35680            ! pp_sys.c
35681 ____________________________________________________________________________
35682 [  6032] By: gsar                                  on 2000/05/01  15:56:32
35683         Log: whitespace adjustments
35684      Branch: perl
35685            ! pp_sys.c
35686 ____________________________________________________________________________
35687 [  6031] By: gsar                                  on 2000/05/01  15:19:41
35688         Log: small nits in diagnostics.pm (from Robin Barker)
35689      Branch: perl
35690            ! lib/diagnostics.pm pod/perldiag.pod
35691 ____________________________________________________________________________
35692 [  6030] By: gsar                                  on 2000/05/01  08:39:18
35693         Log: introduce @LAST_MATCH_START and @LAST_MATCH_END, English aliases
35694              for @- and @+ (from Johan Vromans)
35695      Branch: perl
35696            ! lib/English.pm pod/perlvar.pod
35697 ____________________________________________________________________________
35698 [  6029] By: gsar                                  on 2000/05/01  08:16:10
35699         Log: add CGI.pm v2.66 (from Lincoln Stein)
35700      Branch: perl
35701            + lib/CGI/Util.pm t/lib/cgi-pretty.t
35702            ! MANIFEST lib/CGI.pm lib/CGI/Carp.pm lib/CGI/Cookie.pm
35703            ! lib/CGI/Pretty.pm lib/CGI/Push.pm t/lib/cgi-function.t
35704            ! t/lib/cgi-html.t t/lib/cgi-request.t
35705 ____________________________________________________________________________
35706 [  6028] By: gsar                                  on 2000/05/01  06:34:41
35707         Log: Pod::Man generates groff-incompatible macro definition (from
35708              Tom Christiansen)
35709      Branch: perl
35710            ! lib/Pod/Man.pm
35711 ____________________________________________________________________________
35712 [  6027] By: gsar                                  on 2000/05/01  06:31:36
35713         Log: podlators-1.02 update (from Russ Allbery)
35714      Branch: perl
35715            ! lib/Pod/Man.pm lib/Pod/Text.pm
35716 ____________________________________________________________________________
35717 [  6026] By: jhi                                   on 2000/04/30  23:24:23
35718         Log: Integrate with Sarathy.
35719      Branch: cfgperl
35720           !> README.win32 ext/File/Glob/Glob.pm ext/Sys/Syslog/Syslog.pm
35721           !> ext/Sys/Syslog/Syslog.xs lib/perl5db.pl
35722           !> lib/unicode/Is/Alnum.pl lib/unicode/Is/Alpha.pl
35723           !> lib/unicode/Is/Word.pl lib/unicode/mktables.PL
35724           !> pod/perl56delta.pod sv.c t/lib/b.t t/lib/open3.t
35725           !> t/lib/syslog.t toke.c win32/win32.h
35726 ____________________________________________________________________________
35727 [  6025] By: gsar                                  on 2000/04/30  18:17:47
35728         Log: Is{Alnum,Alpha,Word} don't match titlecase
35729              
35730              TODO: IsSpace is defined recursively!
35731              
35732              (both spotted by Larry)
35733      Branch: perl
35734            ! lib/unicode/Is/Alnum.pl lib/unicode/Is/Alpha.pl
35735            ! lib/unicode/Is/Word.pl lib/unicode/mktables.PL
35736 ____________________________________________________________________________
35737 [  6024] By: gsar                                  on 2000/04/30  17:50:19
35738         Log: extend "Unrecognized escape" warning to \8, \9, and \_ as well
35739              (from Hugo van der Sanden)
35740      Branch: perl
35741            ! toke.c
35742 ____________________________________________________________________________
35743 [  6023] By: gsar                                  on 2000/04/30  17:14:43
35744         Log: debugger stomps on $. (from M.J.T. Guy)
35745      Branch: perl
35746            ! lib/perl5db.pl
35747 ____________________________________________________________________________
35748 [  6022] By: gsar                                  on 2000/04/30  16:59:22
35749         Log: unbalanced LEAVE after perl_clone(...,0) (from Doug MacEachern)
35750      Branch: perl
35751            ! sv.c
35752 ____________________________________________________________________________
35753 [  6021] By: gsar                                  on 2000/04/29  21:00:08
35754         Log: remove Win2K issue in pod (fixed by change#6020)
35755      Branch: perl
35756            ! README.win32 pod/perl56delta.pod
35757 ____________________________________________________________________________
35758 [  6020] By: gsar                                  on 2000/04/29  20:51:49
35759         Log: test tweak
35760      Branch: perl
35761            ! t/lib/open3.t
35762 ____________________________________________________________________________
35763 [  6019] By: gsar                                  on 2000/04/29  20:34:27
35764         Log: windows portability tweaks
35765      Branch: perl
35766            ! t/lib/b.t win32/win32.h
35767 ____________________________________________________________________________
35768 [  6018] By: gsar                                  on 2000/04/29  19:55:24
35769         Log: make lib/syslog.t portable to systems that don't have _PATH_LOG,
35770              make _PATH_LOG() return "" if unavailable
35771      Branch: perl
35772            ! ext/File/Glob/Glob.pm ext/Sys/Syslog/Syslog.pm
35773            ! ext/Sys/Syslog/Syslog.xs t/lib/syslog.t
35774 ____________________________________________________________________________
35775 [  6017] By: jhi                                   on 2000/04/28  22:49:46
35776         Log: Integrate with Sarathy.
35777      Branch: cfgperl
35778           !> op.c perl.c pod/perldiag.pod t/lib/b.t
35779 ____________________________________________________________________________
35780 [  6016] By: jhi                                   on 2000/04/28  22:46:14
35781         Log: Do not warn that an infinity does not look like a number.
35782      Branch: cfgperl
35783            ! sv.c
35784 ____________________________________________________________________________
35785 [  6015] By: gsar                                  on 2000/04/28  22:35:49
35786         Log: tweak test for portability
35787      Branch: perl
35788            ! t/lib/b.t
35789 ____________________________________________________________________________
35790 [  6014] By: gsar                                  on 2000/04/28  22:05:31
35791         Log: glob() loading File::Glob behind the scenes may cause syntax errors
35792      Branch: perl
35793            ! op.c
35794 ____________________________________________________________________________
35795 [  6013] By: gsar                                  on 2000/04/28  21:25:22
35796         Log: tweak change#5945 to display correct switch name in diagnostic
35797      Branch: perl
35798            ! perl.c pod/perldiag.pod
35799 ____________________________________________________________________________
35800 [  6012] By: jhi                                   on 2000/04/28  21:08:12
35801         Log: Integrate with Sarathy.
35802      Branch: cfgperl
35803           !> Changes ext/IO/lib/IO/Poll.pm installperl pod/perl56delta.pod
35804           !> pod/perldelta.pod pod/perlfunc.pod pod/perlmod.pod
35805           !> t/lib/io_poll.t utils/perldoc.PL vms/subconfigure.com
35806 ____________________________________________________________________________
35807 [  6011] By: jhi                                   on 2000/04/28  21:04:46
35808         Log: &HUGE_VAL is not defined, it exists.
35809      Branch: cfgperl
35810            ! lib/Math/Complex.pm
35811 ____________________________________________________________________________
35812 [  6010] By: gsar                                  on 2000/04/28  21:02:58
35813         Log: clarify note about shadow password support (from
35814              gellyfish@gellyfish.com)
35815      Branch: perl
35816            ! pod/perlfunc.pod
35817 ____________________________________________________________________________
35818 [  6009] By: gsar                                  on 2000/04/28  21:00:00
35819         Log: IO::Poll bugs fixed (from Lincoln Stein <lstein@cshl.org>)
35820      Branch: perl
35821            ! ext/IO/lib/IO/Poll.pm t/lib/io_poll.t
35822 ____________________________________________________________________________
35823 [  6008] By: gsar                                  on 2000/04/28  20:56:33
35824         Log: VMS config tweak (from Craig A. Berry <craig.berry@metamorgs.com>)
35825      Branch: perl
35826            ! installperl vms/subconfigure.com
35827 ____________________________________________________________________________
35828 [  6007] By: gsar                                  on 2000/04/28  20:51:21
35829         Log: note about compile failures and END blocks (from M.J.T. Guy)
35830      Branch: perl
35831            ! pod/perl56delta.pod pod/perlmod.pod
35832 ____________________________________________________________________________
35833 [  6006] By: jhi                                   on 2000/04/28  20:42:14
35834         Log: Regen Configure.
35835      Branch: cfgperl
35836            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
35837            ! config_h.SH
35838 ____________________________________________________________________________
35839 [  6005] By: gsar                                  on 2000/04/28  20:41:16
35840         Log: perldoc might fail via "use blib" (from Hugo van der Sanden)
35841      Branch: perl
35842            ! utils/perldoc.PL
35843 ____________________________________________________________________________
35844 [  6004] By: jhi                                   on 2000/04/28  20:28:21
35845         Log: Integrate with Sarathy.
35846      Branch: cfgperl
35847           !> Configure INSTALL Porting/Glossary Porting/config.sh
35848           !> Porting/config_H config_h.SH epoc/config.sh perl.c sv.c
35849           !> t/pragma/warn/toke toke.c vms/subconfigure.com vos/config.def
35850           !> vos/config_h.SH_orig win32/config.bc win32/config.gc
35851           !> win32/config.vc win32/win32.c
35852 ____________________________________________________________________________
35853 [  6003] By: gsar                                  on 2000/04/28  20:11:20
35854         Log: allow REG_EXPAND_SZ keys in Windows registry (from
35855              John Clayton <John.Clayton@barclayscapital.com>)
35856      Branch: perl
35857            ! win32/win32.c
35858 ____________________________________________________________________________
35859 [  6002] By: gsar                                  on 2000/04/28  19:34:16
35860         Log: destructive sv_setsv() can lose UV-ness from source, causing
35861              numeric promotions/comparisons to fail to do the right thing
35862      Branch: perl
35863            ! sv.c
35864 ____________________________________________________________________________
35865 [  6001] By: gsar                                  on 2000/04/28  18:44:15
35866         Log: support additional library locations via $Config{otherlibdirs}
35867              (from Andy Dougherty)
35868      Branch: perl
35869            ! Configure INSTALL Porting/Glossary Porting/config.sh
35870            ! Porting/config_H config_h.SH epoc/config.sh perl.c
35871            ! vms/subconfigure.com vos/config.def vos/config_h.SH_orig
35872            ! win32/config.bc win32/config.gc win32/config.vc
35873 ____________________________________________________________________________
35874 [  6000] By: gsar                                  on 2000/04/28  18:26:58
35875         Log: reworked otherlibdirs.U (from Andy Dougherty)
35876      Branch: metaconfig
35877            ! U/installdirs/otherlibdirs.U
35878 ____________________________________________________________________________
35879 [  5999] By: gsar                                  on 2000/04/28  18:17:07
35880         Log: fix line renumbering bug in C<eval qq[#line 10 "X"\nwarn]>
35881      Branch: perl
35882            ! t/pragma/warn/toke toke.c
35883 ____________________________________________________________________________
35884 [  5998] By: jhi                                   on 2000/04/28  13:32:17
35885         Log: Try to get "Inf" by using &POSIX::HUGE_VAL in sprintf.
35886      Branch: cfgperl
35887            ! lib/Math/Complex.pm
35888 ____________________________________________________________________________
35889 [  5997] By: jhi                                   on 2000/04/28  13:14:04
35890         Log: Preserve $!.
35891      Branch: cfgperl
35892            ! lib/Math/Complex.pm
35893 ____________________________________________________________________________
35894 [  5996] By: jhi                                   on 2000/04/28  12:59:23
35895         Log: Integrate with Sarathy.
35896      Branch: cfgperl
35897           +> pod/perlrequick.pod pod/perlretut.pod
35898           !> (integrate 51 files)
35899 ____________________________________________________________________________
35900 [  5995] By: gsar                                  on 2000/04/28  09:37:36
35901         Log: fixes for bugs in C<use warnings qw(FATAL all)> (from Paul Marquess)
35902      Branch: perl
35903            ! mg.c t/pragma/warn/7fatal warnings.h warnings.pl
35904 ____________________________________________________________________________
35905 [  5994] By: gsar                                  on 2000/04/28  09:33:26
35906         Log: fix for missed accounting for null byte in pack("Z",...) (from
35907              M.J.T. Guy)
35908      Branch: perl
35909            ! pp.c t/op/pack.t
35910 ____________________________________________________________________________
35911 [  5993] By: gsar                                  on 2000/04/28  09:30:05
35912         Log: various minor tweaks seen on p5p
35913      Branch: perl
35914            ! lib/perl5db.pl pod/perlipc.pod pod/perlvar.pod
35915 ____________________________________________________________________________
35916 [  5992] By: gsar                                  on 2000/04/28  09:08:19
35917         Log: pod nit (from Simon Cozens)
35918      Branch: perl
35919            ! pod/perlop.pod
35920 ____________________________________________________________________________
35921 [  5991] By: gsar                                  on 2000/04/28  09:06:36
35922         Log: posix-bc patches (from Dorner Thomas <Thomas.Dorner@start.de>)
35923      Branch: perl
35924            ! README.posix-bc hints/posix-bc.sh
35925 ____________________________________________________________________________
35926 [  5990] By: gsar                                  on 2000/04/28  08:54:52
35927         Log: use $ENV{LIB} to search for libs under Visual C compiler
35928              on Windows (from Jochen Wiedmann <joe@ispsoft.de>)
35929      Branch: perl
35930            ! lib/ExtUtils/Liblist.pm
35931 ____________________________________________________________________________
35932 [  5989] By: gsar                                  on 2000/04/28  08:27:12
35933         Log: qw(a\\b) must be parsed like 'a\\b', i.e., backslash escapes
35934              itself and no other (from Tom Hughes)
35935      Branch: perl
35936            ! t/op/array.t toke.c
35937 ____________________________________________________________________________
35938 [  5988] By: gsar                                  on 2000/04/28  08:01:38
35939         Log: s/HTMLSCRIPTPOD/HTMLSCRIPTPODS/ (from Paul Sharpe
35940              <paul@miraclefish.com>)
35941      Branch: perl
35942            ! lib/ExtUtils/MakeMaker.pm
35943 ____________________________________________________________________________
35944 [  5987] By: gsar                                  on 2000/04/28  07:53:09
35945         Log: B::Bytecode tweaks (from Simon Cozens <simon@brecon.co.uk>)
35946      Branch: perl
35947            ! ext/B/B/Bytecode.pm ext/B/B/Disassembler.pm
35948 ____________________________________________________________________________
35949 [  5986] By: gsar                                  on 2000/04/28  07:44:17
35950         Log: add regular expressions tutorial and quick-start guide (from
35951              Mark Kvale <kvale@phy.ucsf.edu>)
35952      Branch: perl
35953            + pod/perlrequick.pod pod/perlretut.pod
35954            ! AUTHORS MAINTAIN MANIFEST
35955 ____________________________________________________________________________
35956 [  5985] By: gsar                                  on 2000/04/28  07:30:28
35957         Log: forked child may not exit correctly if it failed to open
35958              /dev/console (from Graham Barr)
35959      Branch: perl
35960            ! ext/Sys/Syslog/Syslog.pm
35961 ____________________________________________________________________________
35962 [  5984] By: gsar                                  on 2000/04/28  07:27:20
35963         Log: attributes::reftype() doesn't work on tied argument
35964      Branch: perl
35965            ! xsutils.c
35966 ____________________________________________________________________________
35967 [  5983] By: gsar                                  on 2000/04/28  07:15:04
35968         Log: numeric conversion of non-number in change#3378 tramples on
35969              OOK offset, causing segfaults
35970      Branch: perl
35971            ! sv.c
35972 ____________________________________________________________________________
35973 [  5982] By: gsar                                  on 2000/04/28  04:48:25
35974         Log: avoid error in IO::Socket::INET when given an unknown service name
35975              with a port number (from Brian Raven <brianr@ssprdmh01.liffe.com>)
35976      Branch: perl
35977            ! ext/IO/lib/IO/Socket/INET.pm
35978 ____________________________________________________________________________
35979 [  5981] By: gsar                                  on 2000/04/28  04:31:31
35980         Log: rename File::Glob::glob() to File::Glob::bsd_glob() to avoid
35981              prototype mismatch with CORE::glob(); update pod and tests to
35982              suit (File::Glob::glob() is still available for backward
35983              compatibility, but should be considered deprecated)
35984      Branch: perl
35985            ! ext/File/Glob/Glob.pm t/lib/glob-basic.t t/lib/glob-case.t
35986            ! t/lib/glob-taint.t
35987 ____________________________________________________________________________
35988 [  5980] By: gsar                                  on 2000/04/28  03:47:29
35989         Log: allow Configure -S to run non-interactively (spotted by Greg Hudson
35990              <ghudson@mit.edu>)
35991      Branch: metaconfig
35992            ! U/modified/Options.U
35993      Branch: perl
35994            ! Configure
35995 ____________________________________________________________________________
35996 [  5979] By: gsar                                  on 2000/04/28  03:07:54
35997         Log: under useithreads, constant pad entries could inadvertantly be
35998              shared across threads (from Eric Blood <eblood@xmission.com>);
35999              added Eric's test case to testsuite
36000      Branch: perl
36001            ! op.c t/op/misc.t
36002 ____________________________________________________________________________
36003 [  5978] By: gsar                                  on 2000/04/27  21:13:00
36004         Log: sync version numbers in File::Spec with the ones on CPAN
36005              (from Barrie Slaymaker)
36006      Branch: perl
36007            ! lib/File/Spec/Functions.pm lib/File/Spec/Mac.pm
36008            ! lib/File/Spec/OS2.pm lib/File/Spec/Unix.pm
36009            ! lib/File/Spec/VMS.pm lib/File/Spec/Win32.pm
36010 ____________________________________________________________________________
36011 [  5977] By: gsar                                  on 2000/04/27  21:07:29
36012         Log: autoquote barewords followed by newline and arrow properly
36013              (variant of fix suggested by Rick Delaney and M.J.T. Guy)
36014      Branch: perl
36015            ! t/pragma/warn/toke toke.c
36016 ____________________________________________________________________________
36017 [  5976] By: gsar                                  on 2000/04/27  20:41:20
36018         Log: DB_File v1.73 update (from Paul Marquess)
36019      Branch: perl
36020            ! ext/DB_File/Changes ext/DB_File/DB_File.pm
36021            ! ext/DB_File/DB_File.xs ext/DB_File/version.c
36022 ____________________________________________________________________________
36023 [  5975] By: gsar                                  on 2000/04/27  20:34:24
36024         Log: allow sort() reentrancy (variant of patch suggested by
36025              Hugo van der Sanden)
36026      Branch: perl
36027            ! pp_ctl.c t/op/sort.t
36028 ____________________________________________________________________________
36029 [  5974] By: gsar                                  on 2000/04/27  19:46:57
36030         Log: change#4197 somehow missed initializing PL_errors, meaning
36031              sytax error queueing wasn't working outside eval"" at all;
36032              also fixed eval"" to localize PL_error_count, so that compile-time
36033              eval's don't clobber the error state of the outer context
36034      Branch: perl
36035            ! lib/Math/Complex.pm perl.c pp_ctl.c t/pragma/warn/op
36036            ! t/pragma/warn/toke
36037 ____________________________________________________________________________
36038 [  5973] By: gsar                                  on 2000/04/27  18:29:05
36039         Log: fix for failure to match $foo =~ /(?i)/ (from Ilya Zakharevich)
36040      Branch: perl
36041            ! regcomp.c regexec.c t/op/re_tests
36042 ____________________________________________________________________________
36043 [  5972] By: jhi                                   on 2000/04/27  18:22:41
36044         Log: Integrate with Sarathy.
36045      Branch: cfgperl
36046           +> t/lib/b.t t/lib/syslog.t
36047           !> (integrate 31 files)
36048 ____________________________________________________________________________
36049 [  5971] By: jhi                                   on 2000/04/27  18:18:46
36050         Log: Unicos tweaks from Mark P. Lutz.
36051      Branch: cfgperl
36052            ! hints/unicos.sh lib/Math/Complex.pm
36053 ____________________________________________________________________________
36054 [  5970] By: gsar                                  on 2000/04/27  18:05:11
36055         Log: Data::Dumper fumbles negative numbers on 32-bit platforms where
36056              IV is >32bits
36057      Branch: perl
36058            ! ext/Data/Dumper/Dumper.xs t/lib/dumper.t
36059 ____________________________________________________________________________
36060 [  5969] By: gsar                                  on 2000/04/27  17:50:56
36061         Log: fix Sys::Syslog breakage on domain sockets (from Tom Hughes)
36062      Branch: perl
36063            + t/lib/syslog.t
36064            ! MANIFEST ext/Sys/Syslog/Syslog.pm
36065 ____________________________________________________________________________
36066 [  5968] By: gsar                                  on 2000/04/27  17:44:49
36067         Log: tolerate spaces in group names in test on solaris (from David Boyce
36068              <dsb@boyski.com>)
36069      Branch: perl
36070            ! t/op/groups.t
36071 ____________________________________________________________________________
36072 [  5967] By: gsar                                  on 2000/04/27  17:41:22
36073         Log: improved docs on the warn_uninit diagnostic (from David Glasser
36074              and Simon Cozens)
36075      Branch: perl
36076            ! pod/perldiag.pod
36077 ____________________________________________________________________________
36078 [  5966] By: gsar                                  on 2000/04/27  16:54:58
36079         Log: add testsuite for B backends, fix bug in B::Deparse (from
36080              Simon Cozens <simon@brecon.co.uk>)
36081      Branch: perl
36082            + t/lib/b.t
36083            ! MANIFEST ext/B/B/Deparse.pm ext/B/B/Stash.pm
36084 ____________________________________________________________________________
36085 [  5965] By: gsar                                  on 2000/04/27  16:10:37
36086         Log: avoid "will not stay shared" warnings for our variables (from
36087              Robin Barker)
36088      Branch: perl
36089            ! op.c t/pragma/warn/op
36090 ____________________________________________________________________________
36091 [  5964] By: gsar                                  on 2000/04/27  07:05:05
36092         Log: reformat to 72 columns (again)
36093      Branch: perl
36094            ! pod/perldiag.pod
36095 ____________________________________________________________________________
36096 [  5963] By: gsar                                  on 2000/04/27  06:28:31
36097         Log: patch from Larry to make (\&) prototype work; added tests for
36098              the same
36099      Branch: perl
36100            ! op.c t/comp/proto.t
36101 ____________________________________________________________________________
36102 [  5962] By: gsar                                  on 2000/04/27  06:15:47
36103         Log: updated README.hpux (from Jeff Okamoto)
36104      Branch: perl
36105            ! README.hpux
36106 ____________________________________________________________________________
36107 [  5961] By: gsar                                  on 2000/04/27  05:55:03
36108         Log: recognize our, CHECK and INIT in cperl-mode (from Doug MacEachern)
36109      Branch: perl
36110            ! emacs/cperl-mode.el
36111 ____________________________________________________________________________
36112 [  5960] By: gsar                                  on 2000/04/27  05:49:26
36113         Log: better INSTALL notes on Solaris issues (from Dominic Dunlop)
36114      Branch: perl
36115            ! INSTALL
36116 ____________________________________________________________________________
36117 [  5959] By: gsar                                  on 2000/04/27  05:33:41
36118         Log: doubled words in pods (from Simon Cozens
36119              <simon.p.cozens@jp.pwcglobal.com>)
36120      Branch: perl
36121            ! pod/perl56delta.pod pod/perldebguts.pod pod/perlfaq5.pod
36122            ! pod/perlfork.pod pod/perlfunc.pod pod/perlipc.pod
36123            ! pod/perllexwarn.pod pod/perllocale.pod pod/perlmodlib.pod
36124            ! pod/perlnumber.pod pod/perlopentut.pod pod/perltodo.pod
36125            ! pod/perltootc.pod
36126 ____________________________________________________________________________
36127 [  5958] By: gsar                                  on 2000/04/27  05:11:39
36128         Log: change#3569 deleted some essential code, revert; avoid use of
36129              atexit() to make DynaLoader work properly on AIX under mod_perl
36130              (from Jens-Uwe Mager <jum@helios.de>)
36131      Branch: perl
36132            ! ext/DynaLoader/dl_aix.xs
36133 ____________________________________________________________________________
36134 [  5957] By: gsar                                  on 2000/04/27  04:54:51
36135         Log: pod nits (from A. C. Yardley <yardley@tanet.net>)
36136      Branch: perl
36137            ! pod/perlmod.pod
36138 ____________________________________________________________________________
36139 [  5956] By: gsar                                  on 2000/04/27  04:51:47
36140         Log: better diagnostics on failed tests (from Ilya Zakharevich)
36141      Branch: perl
36142            ! t/op/lex_assign.t
36143 ____________________________________________________________________________
36144 [  5955] By: gsar                                  on 2000/04/27  04:26:44
36145         Log: longstanding bug exposed by change#3307: sort arguments weren't
36146              compiled with the right wantarray context (ensuing runtime lookup
36147              via block_gimme() was getting the incidental context of the
36148              sort() itself)
36149      Branch: perl
36150            ! op.c t/op/sort.t
36151 ____________________________________________________________________________
36152 [  5954] By: gsar                                  on 2000/04/26  23:42:12
36153         Log: integrate cfgperl contents into mainline
36154      Branch: perl
36155           !> (integrate 30 files)
36156 ____________________________________________________________________________
36157 [  5953] By: jhi                                   on 2000/04/26  23:06:42
36158         Log: Integrate with Sarathy.
36159      Branch: cfgperl
36160           !> README.win32 ext/B/B/Deparse.pm
36161           !> ext/DynaLoader/DynaLoader_pm.PL ext/DynaLoader/XSLoader_pm.PL
36162           !> lib/vars.pm perl.c pod/perldiag.pod pod/perlsub.pod
36163           !> pod/perlsyn.pod pod/perlthrtut.pod pod/perltoc.pod
36164           !> pod/perltodo.pod pod/perlxs.pod pod/perlxstut.pod
36165           !> utils/perldoc.PL vms/perlvms.pod
36166 ____________________________________________________________________________
36167 [  5952] By: jhi                                   on 2000/04/26  23:03:46
36168         Log: Undo "use integer" addition from 64bitint as it seems
36169              to break most of the subtests in Digital UNIX;
36170              Unicos needs to find another way.
36171      Branch: cfgperl
36172            ! t/op/64bitint.t
36173 ____________________________________________________________________________
36174 [  5951] By: jhi                                   on 2000/04/26  22:57:53
36175         Log: Be more robust on "extreme" (large absolute value)
36176              arguments.  Originally reported by Daniel Connelly
36177              as a problem with asinh() on large negative arguments,
36178              asinh() used to bail out because an argument to log()
36179              ended up being zero.  Ilya Zakharevich proposed using
36180              Taylor's series in such cases, which for such large
36181              arguments is a very good approximation.
36182      Branch: cfgperl
36183            ! lib/Math/Complex.pm t/lib/complex.t
36184 ____________________________________________________________________________
36185 [  5950] By: gsar                                  on 2000/04/25  19:13:12
36186         Log: reformat perldiag to avoid long lines
36187      Branch: perl
36188            ! pod/perldiag.pod
36189 ____________________________________________________________________________
36190 [  5949] By: gsar                                  on 2000/04/25  18:41:11
36191         Log: make perldoc use the pod2man from the same version (from
36192              M.J.T. Guy)
36193      Branch: perl
36194            ! utils/perldoc.PL
36195 ____________________________________________________________________________
36196 [  5948] By: gsar                                  on 2000/04/25  18:21:57
36197         Log: typo in vars.pm that leads to cryptic message (from Piotr Piatkowski
36198              <kompas@kompas.usr.onet.pl>)
36199      Branch: perl
36200            ! lib/vars.pm
36201 ____________________________________________________________________________
36202 [  5947] By: gsar                                  on 2000/04/25  18:11:53
36203         Log: use &dl_error rather than &dl_load_file as the guard for calling
36204              boot_DynaLoader() (meant to fix dl_error() redefined warnings in
36205              statically built perl)
36206      Branch: perl
36207            ! ext/DynaLoader/DynaLoader_pm.PL ext/DynaLoader/XSLoader_pm.PL
36208 ____________________________________________________________________________
36209 [  5946] By: jhi                                   on 2000/04/25  17:37:54
36210         Log: Document that tr() is not tr(1).
36211      Branch: cfgperl
36212            ! pod/perlop.pod
36213 ____________________________________________________________________________
36214 [  5945] By: gsar                                  on 2000/04/25  16:34:33
36215         Log: make module name mandatory after -M switch; reorder perldiag
36216              alphabetically (from Mark-Jason Dominus)
36217      Branch: perl
36218            ! perl.c pod/perldiag.pod
36219 ____________________________________________________________________________
36220 [  5944] By: jhi                                   on 2000/04/25  01:15:18
36221         Log: On second thoughts frexp() does have two arguments.
36222      Branch: cfgperl
36223            ! perl.h
36224 ____________________________________________________________________________
36225 [  5943] By: jhi                                   on 2000/04/24  22:56:32
36226         Log: Add HAS_FREXPL, HAS_ISNAN, HAS_ISNANL, and HAS_MODFL.
36227              Now pp_ncmp() returns undef is either operand is a NaN.
36228      Branch: cfgperl
36229            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
36230            ! Todo-5.6 config_h.SH epoc/config.sh perl.h pp.c pp_sys.c
36231            ! vms/subconfigure.com vos/config.def vos/config.h
36232            ! vos/config_h.SH_orig win32/config.bc win32/config.gc
36233            ! win32/config.vc win32/config_H.bc win32/config_H.gc
36234            ! win32/config_H.vc
36235      Branch: metaconfig/U/perl
36236            + d_modfl.U
36237 ____________________________________________________________________________
36238 [  5942] By: jhi                                   on 2000/04/24  19:45:17
36239         Log: Regen Configure to match #5937.
36240      Branch: cfgperl
36241            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
36242            ! config_h.SH
36243      Branch: metaconfig
36244            ! U/installdirs/inc_version_list.U U/modified/cpp_stuff.U
36245 ____________________________________________________________________________
36246 [  5941] By: jhi                                   on 2000/04/24  19:24:11
36247         Log: Further Unicos fixes for Mark Lutz.
36248      Branch: cfgperl
36249            ! hints/unicos.sh pp_ctl.c
36250 ____________________________________________________________________________
36251 [  5940] By: jhi                                   on 2000/04/24  19:09:06
36252         Log: Various Unicos 10.0.0.6 fixes.
36253              
36254              Subject: [ID 20000414.007] Test suite failures in perl 5.6 on Cray T90
36255              From: Mark P Lutz <tecmpl1@triton.ca.boeing.com> 
36256              Reply-To: tecmpl1@triton.ca.boeing.com 
36257              To: perl5-porters@perl.org 
36258              Date: Fri, 14 Apr 2000 20:21:00 GMT 
36259              Message-Id: <200004142021.UAA36232@triton.ca.boeing.com> 
36260      Branch: cfgperl
36261            ! hints/unicos.sh pp.c pp_ctl.c t/op/64bitint.t
36262 ____________________________________________________________________________
36263 [  5939] By: gsar                                  on 2000/04/24  19:01:24
36264         Log: more pod nits (from Larry Virden)
36265      Branch: perl
36266            ! README.win32 pod/perlsub.pod pod/perlsyn.pod
36267            ! pod/perlthrtut.pod pod/perltoc.pod pod/perltodo.pod
36268            ! pod/perlxs.pod pod/perlxstut.pod vms/perlvms.pod
36269 ____________________________________________________________________________
36270 [  5938] By: gsar                                  on 2000/04/24  18:54:01
36271         Log: Consolidated B::Deparse fixes (from Stephen McCamant)
36272      Branch: perl
36273            ! ext/B/B/Deparse.pm
36274 ____________________________________________________________________________
36275 [  5937] By: jhi                                   on 2000/04/24  17:39:00
36276         Log: Integrate with Sarathy.
36277      Branch: cfgperl
36278           +> (branch 31 files)
36279           !> (integrate 73 files)
36280 ____________________________________________________________________________
36281 [  5936] By: gsar                                  on 2000/04/24  17:30:06
36282         Log: additional tests for change#5934 (from Paul Marquess, who also
36283              sent in the same fix)
36284      Branch: perl
36285            ! t/pragma/warn/2use t/pragma/warn/3both t/pragma/warn/4lint
36286            ! t/pragma/warn/5nolint t/pragma/warn/6default
36287 ____________________________________________________________________________
36288 [  5935] By: jhi                                   on 2000/04/24  17:26:05
36289         Log: Do not assume sign propagation.
36290              Subject:  [PATCH] Re: [ID 20000410.010] Unicoss 10.0.0.6 and perl 5.6.0
36291              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk> 
36292              To: payner@ncifcrf.gov, perl5-porters@perl.org 
36293              Date: Tue, 18 Apr 2000 18:24:49 +0100 
36294              Message-Id: <E12hbk1-0006Ws-00@ursa.cus.cam.ac.uk> 
36295      Branch: cfgperl
36296            ! t/op/bop.t t/op/misc.t
36297 ____________________________________________________________________________
36298 [  5934] By: gsar                                  on 2000/04/24  17:16:54
36299         Log: propagate lexical warnings from surrounding scope correctly
36300              within string eval()
36301      Branch: perl
36302            ! pp_ctl.c t/pragma/warn/pp_ctl
36303 ____________________________________________________________________________
36304 [  5933] By: jhi                                   on 2000/04/24  17:01:07
36305         Log: Flatten the cpp jungle doing the nosuid checking.
36306      Branch: cfgperl
36307            ! perl.c
36308 ____________________________________________________________________________
36309 [  5932] By: gsar                                  on 2000/04/24  09:08:14
36310         Log: add rsignal(), whichsig() and do_join() to public API list
36311              (mod_perl uses them to good advantage)
36312      Branch: perl
36313            ! embed.pl global.sym objXSUB.h perlapi.c proto.h
36314 ____________________________________________________________________________
36315 [  5931] By: gsar                                  on 2000/04/24  09:01:40
36316         Log: fix RE brokenness on refs/overloaded things (from Ilya Zakharevich)
36317      Branch: perl
36318            ! pp_hot.c regexec.c t/op/pat.t
36319 ____________________________________________________________________________
36320 [  5930] By: gsar                                  on 2000/04/24  08:58:33
36321         Log: small os390 tweaks (from Peter Prymmer)
36322      Branch: perl
36323            ! config_h.SH makedepend.SH
36324 ____________________________________________________________________________
36325 [  5929] By: gsar                                  on 2000/04/24  08:55:25
36326         Log: pod nits
36327      Branch: perl
36328            ! pod/perlguts.pod
36329 ____________________________________________________________________________
36330 [  5928] By: gsar                                  on 2000/04/24  08:50:13
36331         Log: revert change#5923 ("breaks" t/lib/io_poll.t)
36332      Branch: perl
36333            ! ext/IO/lib/IO/Poll.pm
36334 ____________________________________________________________________________
36335 [  5927] By: gsar                                  on 2000/04/24  08:43:24
36336         Log: arrange for next() to resume at the unstack op rather than the
36337              loop conditional, so that scope cleanup happens correctly
36338              (from Stephen McCamant)
36339      Branch: perl
36340            ! op.c pp_ctl.c t/op/misc.t
36341 ____________________________________________________________________________
36342 [  5926] By: gsar                                  on 2000/04/24  08:18:40
36343         Log: on windows, reserve 16M of stack rather than 128M (allows more
36344              threads to run concurrently)
36345      Branch: perl
36346            ! win32/Makefile win32/makefile.mk
36347 ____________________________________________________________________________
36348 [  5925] By: gsar                                  on 2000/04/24  08:13:52
36349         Log: POSIX-BC tweak (from Ignasi Roca <ignasi.roca@fujitsu.siemens.es>)
36350      Branch: perl
36351            ! toke.c
36352 ____________________________________________________________________________
36353 [  5924] By: gsar                                  on 2000/04/24  08:08:59
36354         Log: avoid using uninitialized memory in require version check
36355      Branch: perl
36356            ! pp_ctl.c universal.c
36357 ____________________________________________________________________________
36358 [  5923] By: gsar                                  on 2000/04/24  07:20:14
36359         Log: various bugs in IO::Poll (from Lincoln D. Stein <lstein@cshl.org>)
36360      Branch: perl
36361            ! ext/IO/lib/IO/Poll.pm
36362 ____________________________________________________________________________
36363 [  5922] By: gsar                                  on 2000/04/24  07:08:42
36364         Log: commentary about IoTYPE() (from Nathan Torkington)
36365      Branch: perl
36366            ! sv.h
36367 ____________________________________________________________________________
36368 [  5921] By: gsar                                  on 2000/04/24  06:58:26
36369         Log: make eq unicode-aware (from Gisle Aas); fix bogus tests revealed
36370              by fix
36371      Branch: perl
36372            ! sv.c t/lib/charnames.t t/pragma/utf8.t
36373 ____________________________________________________________________________
36374 [  5920] By: gsar                                  on 2000/04/24  06:37:59
36375         Log: Larry's fix for buggy propagation of utf8-ness in join(); add test
36376      Branch: perl
36377            ! doop.c t/op/ver.t
36378 ____________________________________________________________________________
36379 [  5919] By: gsar                                  on 2000/04/24  06:21:58
36380         Log: Configure might miss old directories when prefix must be
36381              expanded (from Robin Barker)
36382      Branch: metaconfig
36383            ! U/installdirs/inc_version_list.U
36384      Branch: perl
36385            ! Configure
36386 ____________________________________________________________________________
36387 [  5918] By: gsar                                  on 2000/04/24  06:16:11
36388         Log: VMS nits in glob() test (from Charles Lane)
36389      Branch: perl
36390            ! t/lib/glob-basic.t
36391 ____________________________________________________________________________
36392 [  5917] By: gsar                                  on 2000/04/24  06:11:56
36393         Log: various pod nits (from Larry Virden and others)
36394      Branch: perl
36395            ! README.amiga README.hpux README.machten README.os2
36396            ! README.os390 README.win32 embed.pl handy.h lib/IPC/Open3.pm
36397            ! pod/Win32.pod pod/perl56delta.pod pod/perlapi.pod
36398            ! pod/perlbook.pod pod/perlcompile.pod pod/perldebguts.pod
36399            ! pod/perldiag.pod pod/perlfork.pod pod/perlfunc.pod
36400            ! pod/perlguts.pod pod/perlintern.pod pod/perlipc.pod
36401            ! pod/perlmod.pod pod/perlmodinstall.pod pod/perlnumber.pod
36402            ! pod/perlop.pod pod/perlport.pod pod/perlre.pod
36403            ! pod/perltrap.pod pod/perlunicode.pod pod/perlvar.pod pp.h
36404 ____________________________________________________________________________
36405 [  5916] By: gsar                                  on 2000/04/24  05:52:43
36406         Log: ignore dotfiles (.cvsignore etc) in test (from Warren Jones
36407              <wjones@tc.fluke.com>)
36408      Branch: perl
36409            ! t/lib/glob-basic.t
36410 ____________________________________________________________________________
36411 [  5915] By: gsar                                  on 2000/04/24  05:07:01
36412         Log: supported platforms mixed up
36413      Branch: perl
36414            ! pod/perl56delta.pod pod/perlport.pod
36415 ____________________________________________________________________________
36416 [  5914] By: gsar                                  on 2000/04/24  04:56:08
36417         Log: caller() wasn't returning the right number of elements for
36418              eval {...}
36419      Branch: perl
36420            ! pp_ctl.c t/pragma/warn/9enabled
36421 ____________________________________________________________________________
36422 [  5913] By: gsar                                  on 2000/04/24  04:35:41
36423         Log: pod nit: $yday range for localtime/gmtime is 0..364 not 1..365 (from
36424              Mark-Jason Dominus)
36425      Branch: perl
36426            ! pod/perlfunc.pod
36427 ____________________________________________________________________________
36428 [  5912] By: gsar                                  on 2000/04/24  04:17:15
36429         Log: fix totally broken caching in UNIVERSAL::isa() (from
36430              Nick Ing-Simmons)
36431      Branch: perl
36432            ! t/op/universal.t universal.c
36433 ____________________________________________________________________________
36434 [  5911] By: gsar                                  on 2000/04/24  03:39:47
36435         Log: add linebreak properties from unicode/LineBrk.txt (from
36436              Dave Hartnoll <Dave_Hartnoll@3b2.com>)
36437      Branch: perl
36438            + lib/unicode/Is/LbrkAI.pl lib/unicode/Is/LbrkAL.pl
36439            + lib/unicode/Is/LbrkB2.pl lib/unicode/Is/LbrkBA.pl
36440            + lib/unicode/Is/LbrkBB.pl lib/unicode/Is/LbrkBK.pl
36441            + lib/unicode/Is/LbrkCB.pl lib/unicode/Is/LbrkCL.pl
36442            + lib/unicode/Is/LbrkCM.pl lib/unicode/Is/LbrkCR.pl
36443            + lib/unicode/Is/LbrkEX.pl lib/unicode/Is/LbrkGL.pl
36444            + lib/unicode/Is/LbrkHY.pl lib/unicode/Is/LbrkID.pl
36445            + lib/unicode/Is/LbrkIN.pl lib/unicode/Is/LbrkIS.pl
36446            + lib/unicode/Is/LbrkLF.pl lib/unicode/Is/LbrkNS.pl
36447            + lib/unicode/Is/LbrkNU.pl lib/unicode/Is/LbrkOP.pl
36448            + lib/unicode/Is/LbrkPO.pl lib/unicode/Is/LbrkPR.pl
36449            + lib/unicode/Is/LbrkQU.pl lib/unicode/Is/LbrkSA.pl
36450            + lib/unicode/Is/LbrkSG.pl lib/unicode/Is/LbrkSP.pl
36451            + lib/unicode/Is/LbrkSY.pl lib/unicode/Is/LbrkXX.pl
36452            + lib/unicode/Is/LbrkZW.pl
36453            ! lib/unicode/mktables.PL
36454 ____________________________________________________________________________
36455 [  5910] By: gsar                                  on 2000/04/24  03:23:10
36456         Log: typo in pod
36457      Branch: perl
36458            ! ext/Thread/Thread.pm
36459 ____________________________________________________________________________
36460 [  5909] By: gsar                                  on 2000/04/24  03:22:03
36461         Log: mode argument to do_binmode() should be file mode, not boolean
36462      Branch: perl
36463            ! pp_sys.c
36464 ____________________________________________________________________________
36465 [  5908] By: gsar                                  on 2000/04/16  16:51:08
36466         Log: introduce illegal symbols into null package so that gv_fetchpv(...,TRUE)
36467              always returns a valid GV even when the symbol is trapped by strictures
36468              (avoids coredumps)
36469              
36470              TODO: the C<package;> hack needs similar treatment
36471      Branch: perl
36472            ! embedvar.h gv.c intrpvar.h perl.c perlapi.h
36473            ! t/pragma/strict-vars
36474 ____________________________________________________________________________
36475 [  5907] By: jhi                                   on 2000/03/31  23:42:56
36476         Log: pp_gmtime() assumed that newSVpvf %d would take C ints,
36477              an assumption which #5905 demolished.
36478      Branch: cfgperl
36479            ! pp_sys.c
36480 ____________________________________________________________________________
36481 [  5906] By: jhi                                   on 2000/03/31  18:54:37
36482         Log: Typo in #5905.
36483      Branch: cfgperl
36484            ! t/op/64bitint.t
36485 ____________________________________________________________________________
36486 [  5905] By: jhi                                   on 2000/03/31  18:50:54
36487         Log: Fix for "[ID 20000329.080] quad printing does not work as documented",
36488              reported by Joseph N. Hall.  The bug was that even with use64bitint
36489              one had to use the prefixes q, L, or ll with printf/sprintf,
36490              contrary to the documentation and common sense.
36491      Branch: cfgperl
36492            ! sv.c t/op/64bitint.t
36493 ____________________________________________________________________________
36494 [  5904] By: gsar                                  on 2000/03/28  02:31:32
36495         Log: add Changes, perldelta.pod
36496      Branch: perl
36497            + Changes pod/perldelta.pod
36498 ____________________________________________________________________________
36499 [  5903] By: gsar                                  on 2000/03/28  02:03:55
36500         Log: rename Changes and perldelta.pod
36501      Branch: perl
36502           +> Changes5.6 pod/perl56delta.pod
36503            - Changes pod/perldelta.pod
36504            ! MANIFEST
36505 ____________________________________________________________________________
36506 [  5902] By: gsar                                  on 2000/03/28  01:59:14
36507         Log: create maint-5.6 branch
36508      Branch: maint-5.6/perl
36509           +> (branch 1611 files)
36510 ____________________________________________________________________________
36511 [  5901] By: jhi                                   on 2000/03/23  05:48:43
36512         Log: Integrate with Sarathy.
36513      Branch: cfgperl
36514           !> Changes patchlevel.h pod/perlhist.pod pod/perltoc.pod
36515 ____________________________________________________________________________
36516 [  5900] By: gsar                                  on 2000/03/23  05:42:43
36517         Log: three guesses on what this is :-)
36518      Branch: perl
36519            ! Changes