MAking Solaris malloc() the default
[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 ____________________________________________________________________________
35 [  8584] By: jhi                                   on 2001/01/28  19:30:02
36         Log: Integrate perlio.
37      Branch: perl
38           +> pod/perliol.pod
39           !> MANIFEST pod/perlapio.pod
40 ____________________________________________________________________________
41 [  8583] By: jhi                                   on 2001/01/28  19:28:40
42         Log: Patch from Inaba Hiroto:
43              - canonical UTF-8 hash keys: if a key string for a hash is
44              UTF8-on, try downgrade the string and use it if
45              unicode::distinct is not in effect.
46              For the task, I added a function bytes_from_utf8() to utf8.c.
47              It might resemble utf8_to_bytes() but it is not convenient
48              to the task.
49              Made a test for it and added to t/op/each.t
50              - Changed do_print in doio.c to apply sv_utf8_(downgrade|upgrade) to
51              the mortal copy of the argument SV.
52              And changed t/io/utf8.t test 18 which expects print() to
53              upgrade its argument.
54              - re-implement sv_eq with bytes_from_utf8()
55              - some bug fixes
56              - tr/// does not handle UTF8 range (\x{}-\x{})
57              - \ before raw UTF8 character produced
58              "Malformed UTF-8 character" warning.
59              - "\x{100}\N{CENT SIGN}" is Malformed.
60              Added tests for these 3.
61              - and one silly bug (by me) with qu operator.
62      Branch: perl
63            ! doio.c embed.h embed.pl global.sym hv.c objXSUB.h perlapi.c
64            ! pod/perlapi.pod proto.h sv.c t/io/utf8.t t/lib/charnames.t
65            ! t/op/each.t t/op/tr.t t/pragma/utf8.t toke.c utf8.c
66 ____________________________________________________________________________
67 [  8582] By: nick                                  on 2001/01/28  19:25:04
68         Log: Add pod/perliol.pod to MANIFEST :-(
69      Branch: perlio
70            ! MANIFEST
71 ____________________________________________________________________________
72 [  8581] By: nick                                  on 2001/01/28  19:22:40
73         Log: PerlIO documentation. Proofing and sub-editing requested.
74      Branch: perlio
75            + pod/perliol.pod
76            ! pod/perlapio.pod
77 ____________________________________________________________________________
78 [  8580] By: jhi                                   on 2001/01/28  05:16:25
79         Log: Revert the change to sv_2pv() done by #8054: Someone who
80              did SvNV_set() on a scalar that also happened to be POK,
81              followed by sv_2pv() won't get the right coercion anymore.
82              [Sarathy]
83      Branch: maint-5.6/perl
84            ! sv.c
85 ____________________________________________________________________________
86 [  8579] By: jhi                                   on 2001/01/28  05:15:04
87         Log: Remove the #8084 effect: do not allow -Q to be interpreted
88              as -&Q(), this is too much wiggle room.
89      Branch: maint-5.6/perl
90            ! toke.c
91 ____________________________________________________________________________
92 [  8578] By: jhi                                   on 2001/01/28  05:12:45
93         Log: Needed bits of #8439 (should have been in #8576),
94              mainly for lval substr().
95      Branch: maint-5.6/perl
96            ! mg.c pp.c pp_hot.c
97 ____________________________________________________________________________
98 [  8577] By: jhi                                   on 2001/01/28  05:02:46
99         Log: A missing check-in.
100      Branch: maint-5.6/perl
101            ! utf8.c
102 ____________________________________________________________________________
103 [  8576] By: jhi                                   on 2001/01/28  04:26:18
104         Log: Integrate changes #8425,8436,8439,8517 from mainline.
105              The 8439 was not truly integrated because it had too many
106              dependencies on the development branch and because it introduced
107              concepts too bold for a maintenance branch (such as the qu operator).
108              
109              Subject: [PATCH perl@8342] -Wformat
110              
111              Tighten some of the UTF-8 tests a bit.
112              
113              More UTF-8 patches from Inaba Hiroto. (8439, but only partly)
114              - The substr lval was still not okay.
115              - Now pp_stringify and sv_setsv copies source's UTF8 flag
116              even if IN_BYTE.  pp_stringify is called from fold_constants
117              at optimization phase and "\x{100}" was made SvUTF8_off under
118              use bytes (the bytes pragma is for "byte semantics" and not
119              for "do not produce UTF8 data")
120      Branch: maint-5.6/perl
121            ! t/lib/charnames.t t/op/substr.t toke.c
122           !> sv.c t/pragma/utf8.t
123 ____________________________________________________________________________
124 [  8575] By: jhi                                   on 2001/01/28  04:01:51
125         Log: Integrate changes #8378,8379,8385,8386,8405 from mainline.
126              
127              Subject: One more patch for UTF8  (UTF-8 fixes for 'x' and tr////)
128              
129              Subject: [ID 20001230.003] UTF-8 tr still hurts
130              
131              Test cases for #8385 (from Simon's "torture.pl")
132              
133              Start fixing UTF-8 lval substr() (8405)
134      Branch: maint-5.6/perl
135           !> doop.c embed.h embed.pl mg.c op.c pod/perlapi.pod pp.c proto.h
136           !> regcomp.c regexec.c t/op/substr.t t/op/tr.t toke.c utf8.c
137 ____________________________________________________________________________
138 [  8574] By: jhi                                   on 2001/01/28  03:09:06
139         Log: Integrate changes #8328,8329,8330,8331,8332,8341,8343,8377
140              from mainline.
141              
142              UTF-8 cleanup.
143              
144              Subject: [PATCH perl@8327] strings with \x{..} in the middle are corrupted 
145              
146              "\x{FF}\xFF" was broken.
147              
148              Tests for #8329 and #8330.
149              
150              Add a note about EBCDIC versus UTF-8 to a potential problem spot.
151              
152              IRIX compiler noticed that the bof initialization might be
153              bypassed by control flow.
154              
155              Make explicit our assumption that (for now) "\x{80}" produces UTF-8.
156      Branch: maint-5.6/perl
157           !> doop.c op.c pp.c pp_ctl.c pp_hot.c pp_sys.c regcomp.c
158           !> regexec.c sv.c t/op/bop.t toke.c utf8.c
159 ____________________________________________________________________________
160 [  8573] By: jhi                                   on 2001/01/28  02:06:12
161         Log: Retract #8552.
162      Branch: perl
163            ! lib/Text/Wrap.pm t/lib/textwrap.t
164 ____________________________________________________________________________
165 [  8572] By: jhi                                   on 2001/01/28  02:04:49
166         Log: Integrate changes #8267,8272[perlio],8274,8298,8300,8303,
167              8305,8323,8324 from mainline.  The 8267,8272, and 8298 were
168              not really integrated but instead salvaged by hand
169              (they had too many dependencies on the development release
170              to be cleanly integratable).
171              
172              Subject: more UTF8 test suites and an UTF8 patch
173              
174              Tweak for MULTIPLICITY/USE_PERLIO
175              
176              Signedness nit.
177              
178              Turn SvUTF8 off if not required in pp_chr and pp_stringify.
179              
180              Use the UTF8_XXX macros in is_utf8_char().
181              
182              Rewrite pp_concat() in terms of sv_catsv().  The . operator
183              should now be UTF-8-proof.
184              
185              Subject: [PATCH perl@8269] scanning two hex-constants
186              fails on EBCDIC environment (script length.t)
187              
188              Add some Unicode chop() tests.
189      Branch: maint-5.6/perl
190            ! doop.c mg.c pp.c pp_hot.c toke.c utf8.c
191           !> sv.c t/op/chop.t utf8.h
192 ____________________________________________________________________________
193 [  8571] By: jhi                                   on 2001/01/28  00:35:59
194         Log: Integrate changes #8090,8093[perlio,only the sv.c tweak],
195              8245,8247,8248,8249,8250,8251,8260,8263,8264,8265 from mainline.
196              
197              Subject: [PATCH] Re: Breadperl & Tk (sv_utf8_upgrade fixes)
198              
199              The maxiters upper limit sanity check (guarding against
200              non-progress) assumed bytes instead of characters in s///
201              and split().
202              
203              Signedness nit.
204              
205              sv_catsv() rewrite (8248,8249,8251,8260,8263,8264,8265)
206              join() should now be UTF-8-proof.
207              
208              More split // UTF-8 tests. (8250)
209      Branch: maint-5.6/perl
210           !> doop.c hv.c pp.c pp_hot.c sv.c t/op/join.t utf8.c utf8.h
211           !> util.c
212 ____________________________________________________________________________
213 [  8570] By: jhi                                   on 2001/01/27  22:15:46
214         Log: Integrate changes #7941,7943,7944,7958,7967,7995,7996,7998,
215              8004,8005,8023,8024,8028,8030,8031,8033,8039,8042,8052[perlio],
216              8053[perlio],8054[perlio,+sv.c(-PerlIO_isutf8),+require.t],
217              8084,8204,8244,8333 from mainline.
218              
219              For -Q where Q might be a one-letter sub name one does no more
220              get a warning about an unknown filetest (7941,7943,7944,8084).
221              
222              Subject: Re: [ID 20001130.011] expression parsing bug ?
223              
224              Make uv_to_utf8() to zero-terminate its output buffer.
225              
226              Split off t/op/length.t (7995)
227              
228              Split off t/op/utf8decode.t (7996)
229              
230              Remove an unnecessary 'use utf8' from the utf8.t (7998)
231              
232              Split off t/op/concat.t (8004)
233              
234              Split off t/op/ver.t (8005)
235              
236              Document utf8_length(), utf8_distance(), and utf8_hop().
237              
238              Document utf8_to_uv() better.
239              
240              Introduce macros for UTF8 decoding (8028,8033).
241              
242              Add test for reverse() (8030,8031).
243              
244              Subject: [PATCH] Re: ebcdic <-> ascii tables interjected in uv <-> utf8 considered harmful (8039,8333)
245              
246              Do not return the Unicode replacement character    on UTF-8
247              decoding failure.
248              
249              Typo/thinko in S_scan_const() - seeing high bit sets has_utf8
250              not this_utf8 i.e. the output string has one, but don't mess
251              with source assumption. (8052,8053)
252              
253              Tweak t/comp/require.t to add a 'use bytes' to permit its dubious
254              writing of BOM to a non-utf8 stream.  Fix SvPVutf8() - sv_2pv()
255              was not expecting to be called with something that was already
256              SvPOK() - (we just fossiked with SvUTF8 bit). Fix that and also
257              just use the SvPV macro in sv_2pvutf8() to avoid the issue/overhead.
258              (8054)
259              
260              Recode the naughty binary bytes in utf8decode.t using the \xHH.
261              
262              Make some panic messages a bit more logical.
263      Branch: maint-5.6/perl
264           +> t/op/concat.t t/op/length.t t/op/reverse.t t/op/utf8decode.t
265           !> MANIFEST doop.c embed.pl lib/ExtUtils/Liblist.pm op.c
266           !> pod/perlapi.pod pod/perldiag.pod pp.c pp_hot.c regcomp.c
267           !> regexec.c sv.c t/comp/require.t t/op/misc.t t/op/ver.t
268           !> t/pragma/utf8.t t/pragma/warn/toke t/pragma/warn/utf8 toke.c
269           !> utf8.c utf8.h
270 ____________________________________________________________________________
271 [  8569] By: jhi                                   on 2001/01/27  19:16:43
272         Log: Integrate changes #7750 from perlio and #8566 from mainline.
273      Branch: maint-5.6/perl
274           !> regexec.c sv.c
275 ____________________________________________________________________________
276 [  8568] By: jhi                                   on 2001/01/27  18:06:51
277         Log: Integrate changes #7355[-doio.c],7691,7744,7753[perlio],
278              7783,7790[perlio],7869,7871,7872,7911,7916,7932,
279              7935[-perlio.c],7936,7959,7965 from mainline.
280              
281              Change the "big byte" error message to "Wide character".
282              (7355, the croak-if-wide-chars-in-print part ignored)
283              
284              Use UINT64_C().
285              
286              Introduce Perl_utf8_length().
287              
288              diff -se shows these as different (7753, forgotten check-ins)
289              
290              Subject: [PATCH] doop.c - UTF8 tr///
291              
292              If we use (aTHX_ ...) then put Perl_ on the front.
293              
294              Make utf8_length() and utf8_distance() to be less forgiving
295              about bad UTF-8.
296              
297              Test line numbers are different with utf8.
298              
299              No need to scan till infinity, 13 is enough. (7872,7911)
300              
301              Subject: [PATCH] Tokeniser debugging
302              
303              Subject: Re: question about retlen in utf8.c:Perl_utf8_to_uv()
304              
305              Subject: [PATCH perl@7930] toke.c perlio.c -Wformat nits (only toke.c)
306              
307              Be more careful in Perl_sv_utf8_downgrade().
308              
309              Use DO_UTF8().
310              
311              Raw zero bytes in text files confuse at least GNU patch 2.1.
312      Branch: maint-5.6/perl
313           !> doop.c embed.h embed.pl global.sym handy.h objXSUB.h op.c
314           !> perl.c perl.h perlapi.c pod/perlapi.pod pod/perldiag.pod
315           !> pod/perlrun.pod proto.h scope.h sv.c t/op/re_tests
316           !> t/pragma/utf8.t toke.c utf8.c utf8.h
317 ____________________________________________________________________________
318 [  8567] By: nick                                  on 2001/01/27  11:10:38
319         Log: Integrate mainline
320      Branch: perlio
321           !> Changes README.os390 embed.h embed.pl op.c patchlevel.h pp.c
322           !> proto.h regexec.c sv.c t/lib/1_compile.t t/lib/b.t
323           !> t/lib/st-06compat.t t/pragma/overload.t t/pragma/sub_lval.t
324           !> toke.c
325 ____________________________________________________________________________
326 [  8566] By: jhi                                   on 2001/01/27  06:22:48
327         Log: More documentation for the regexp context stack.
328      Branch: perl
329            ! regexec.c
330 ____________________________________________________________________________
331 [  8565] By: jhi                                   on 2001/01/27  05:21:57
332         Log: Update Changes.
333      Branch: perl
334            ! Changes patchlevel.h
335 ____________________________________________________________________________
336 [  8564] By: jhi                                   on 2001/01/27  04:44:04
337         Log: Threadedness patch for #8562 from Doug MacEachern.
338      Branch: perl
339            ! toke.c
340 ____________________________________________________________________________
341 [  8563] By: jhi                                   on 2001/01/27  04:26:24
342         Log: Subject: [PATCH @8545] [ID 20000808.005] OP_REFGEN as an lvalue
343              From: Stephen McCamant <smcc@CSUA.Berkeley.EDU>
344              Date: Thu, 25 Jan 2001 01:17:21 -0800 (PST)
345              Message-ID: <14959.59703.507462.978833@soda.csua.berkeley.edu>
346      Branch: perl
347            ! op.c
348 ____________________________________________________________________________
349 [  8562] By: jhi                                   on 2001/01/27  04:20:30
350         Log: Subject: Re: Announce : Tokener reporting patch
351              From: Simon Cozens <simon@cozens.net>
352              Date: Mon, 22 Jan 2001 02:17:22 +0000
353              Message-ID: <20010122021722.A9334@pembro26.pmb.ox.ac.uk>
354      Branch: perl
355            ! embed.h embed.pl proto.h toke.c
356 ____________________________________________________________________________
357 [  8561] By: jhi                                   on 2001/01/27  04:17:24
358         Log: Forgot from #8545.  Oops.
359      Branch: perl
360            ! pp.c t/pragma/overload.t
361 ____________________________________________________________________________
362 [  8560] By: jhi                                   on 2001/01/27  03:01:47
363         Log: A better module compilation test, use MANIFEST as suggested
364              by Spider.
365      Branch: perl
366            ! t/lib/1_compile.t
367 ____________________________________________________________________________
368 [  8559] By: jhi                                   on 2001/01/27  02:50:48
369         Log: Subject: [PATCH: perl@8531] EBCDIC cleanup for B test
370              From: Peter Prymmer <pvhp@forte.com>
371              Date: Fri, 26 Jan 2001 16:38:08 -0800 (PST)
372              Message-ID: <Pine.OSF.4.10.10101261635400.14820-100000@aspara.forte.com>
373      Branch: perl
374            ! t/lib/b.t
375 ____________________________________________________________________________
376 [  8558] By: jhi                                   on 2001/01/27  02:27:05
377         Log: Subject: [PATCH: perl@8531] EBCDIC branch for pragma/sub-lval.t
378              From: Peter Prymmer <pvhp@forte.com>
379              Date: Fri, 26 Jan 2001 16:05:11 -0800 (PST)
380              Message-ID: <Pine.OSF.4.10.10101261603460.14820-100000@aspara.forte.com>
381      Branch: perl
382            ! t/pragma/sub_lval.t
383 ____________________________________________________________________________
384 [  8557] By: jhi                                   on 2001/01/27  02:26:03
385         Log: Subject: [PATCH: perl@8531] a peek at uuencoded EBCDIC (st-06compat.t)
386              From: Peter Prymmer <pvhp@forte.com>
387              Date: Fri, 26 Jan 2001 14:47:46 -0800 (PST)
388              Message-ID: <Pine.OSF.4.10.10101261443561.14820-100000@aspara.forte.com>
389      Branch: perl
390            ! t/lib/st-06compat.t
391 ____________________________________________________________________________
392 [  8556] By: jhi                                   on 2001/01/27  02:24:33
393         Log: Subject: [PATCH: perl@8531] minor update to README.os390
394              From: Peter Prymmer <pvhp@forte.com>
395              Date: Fri, 26 Jan 2001 14:33:27 -0800 (PST)
396              Message-ID: <Pine.OSF.4.10.10101261425560.14820-100000@aspara.forte.com>
397      Branch: perl
398            ! README.os390
399 ____________________________________________________________________________
400 [  8555] By: jhi                                   on 2001/01/27  00:35:47
401         Log: No point in checking the length before we know whether the pointer
402              is bogus or not, fixes Abigail's odbm failures in Linux.
403      Branch: perl
404            ! sv.c
405 ____________________________________________________________________________
406 [  8554] By: nick                                  on 2001/01/26  19:01:31
407         Log: Integrate mainline
408      Branch: perlio
409           !> lib/Text/Wrap.pm t/lib/textwrap.t
410 ____________________________________________________________________________
411 [  8553] By: jhi                                   on 2001/01/26  15:19:39
412         Log: Integrate change #7792 from perlio (multiplicity fix),
413              fix the AV leak in regex DEBUGGING (tiny part of the
414              polymorphic regexp patch #8143).
415      Branch: maint-5.6/perl
416            ! regcomp.c
417           !> scope.h
418 ____________________________________________________________________________
419 [  8552] By: jhi                                   on 2001/01/26  15:03:23
420         Log: Subject: [PATCH Text::Wrap 2000.06292219] Spurious leading whitespace
421              From: Michael G Schwern <schwern@pobox.com>
422              Date: Fri, 26 Jan 2001 09:28:31 -0500
423              Message-ID: <20010126092831.A15328@blackrider.aocn.com>
424      Branch: perl
425            ! lib/Text/Wrap.pm t/lib/textwrap.t
426 ____________________________________________________________________________
427 [  8551] By: jhi                                   on 2001/01/26  02:33:19
428         Log: Integrate changes #7760,7815,7870,7873,7874,7877,7878,7879,7881,
429              7937,7938,7939,7940,7968,7969,8403,8414,8510 from mainline.
430              
431              Subject: [PATCH 5.7.0] The first step in removing recursion from the REx engine
432              
433              Subject: [PATCH 5.7.0] Overeager visited-positions optimizations
434              
435              Message nit.
436              
437              BOUND regex opcodes (\b, \B) could try to scan zero length UTF-8.
438              
439              Debug dump of ANYOFUTF8 was garbage (data from ANYOF).
440              
441              (the cleanup of unused submatches in regtry() and regcppop())
442              
443              Fix for 20001130.008 and 20001130.010, the PL_regnpar wasn't
444              stored and restored, and thusly was trounced by the utf8 swash
445              routines.
446              
447              use utf8 not required to use \x{}.
448              
449              Removed two more tests that make no sense in UTF-8 since the test
450              data is not in UTF-8.
451              
452              Get the three different space character classes right under utf8.
453              
454              Implement ANYOFUTF8 regprop() dumping.
455              
456              Subject: Re: [ID 20001029.005] Regex error: "cd. (A. Tw)" !~ /\((\w\. \w+)\)/
457              
458              Document the regex context pushing/popping a bit better.
459      Branch: maint-5.6/perl
460           +> lib/unicode/Is/Blank.pl lib/unicode/Is/SpacePerl.pl
461           !> MANIFEST lib/unicode/mktables.PL pod/perlre.pod regcomp.c
462           !> regexec.c scope.h t/op/pat.t t/op/re_tests t/op/regexp.t
463           !> t/op/regmesg.t utf8.c
464 ____________________________________________________________________________
465 [  8550] By: nick                                  on 2001/01/25  19:42:30
466         Log: Integrate mainline
467      Branch: perlio
468           !> Makefile.SH README.os390 gv.c hints/os390.sh installperl
469           !> lib/Math/BigFloat.pm lib/Math/BigInt.pm lib/overload.pm perl.h
470           !> pod/perlguts.pod t/lib/bigfloat.t t/lib/bigfltpm.t
471           !> t/lib/bigint.t t/lib/bigintpm.t
472 ____________________________________________________________________________
473 [  8549] By: jhi                                   on 2001/01/25  15:22:28
474         Log: Undo 6475: { use utf8; chr(128..255) } is better off producing bytes.
475      Branch: maint-5.6/perl
476            ! pod/perlfunc.pod pp.c t/pragma/utf8.t
477 ____________________________________________________________________________
478 [  8548] By: jhi                                   on 2001/01/25  15:02:55
479         Log: Integrate changes #7997,8063,8492,8547 from mainline.
480              
481              Subject: Re: STRLEN - what?
482              
483              Subject: [PATCH] perlguts.pod
484              
485              Memory management calls documentation.
486              
487              Layout using tabulator is not a good idea in a pod.
488      Branch: maint-5.6/perl
489           !> pod/perlguts.pod
490 ____________________________________________________________________________
491 [  8547] By: jhi                                   on 2001/01/25  14:49:05
492         Log: Layout using tabulator is not a good idea in a pod.
493      Branch: perl
494            ! pod/perlguts.pod
495 ____________________________________________________________________________
496 [  8546] By: jhi                                   on 2001/01/25  14:31:12
497         Log: Integrate changes #8188,8189,8208,8209,8210,8212,8374,8388
498              from mainline.
499              
500              Subject: [DOC PATCH: perl@7953] update list of lang. sensitive editors/IDES
501              
502              Subject: [DOC PATCH: perl@8150, 5.6.1-TRIAL1] update list of lang. sensitive editors/IDES
503              
504              More Win32 editor/IDE/shell hints.
505              
506              More Win32 Perling.
507              
508              Yet another editor edit.
509              
510              Edit edit edit.
511              
512              IDE/editor section tweaking.
513              
514              Few more IDE/editor nits from p5p.
515      Branch: maint-5.6/perl
516           !> pod/perlfaq3.pod
517 ____________________________________________________________________________
518 [  8545] By: jhi                                   on 2001/01/25  04:16:32
519         Log: Subject: [PATCH 5.7.0] overload int()
520              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
521              Date: Wed, 24 Jan 2001 19:06:57 -0500
522              Message-ID: <20010124190657.A8512@math.ohio-state.edu>
523      Branch: perl
524            ! gv.c lib/Math/BigFloat.pm lib/Math/BigInt.pm lib/overload.pm
525            ! perl.h t/lib/bigfloat.t t/lib/bigfltpm.t t/lib/bigint.t
526            ! t/lib/bigintpm.t
527 ____________________________________________________________________________
528 [  8544] By: jhi                                   on 2001/01/25  04:15:11
529         Log: Subject: [PATCH: perl@8506]completion and docs for dynamic loading on OS/390
530              From: Peter Prymmer <pvhp@forte.com>
531              Date: Wed, 24 Jan 2001 17:17:14 -0800 (PST)
532              Message-ID: <Pine.OSF.4.10.10101241706120.411912-100000@aspara.forte.com>
533      Branch: perl
534            ! Makefile.SH README.os390 hints/os390.sh installperl
535 ____________________________________________________________________________
536 [  8543] By: jhi                                   on 2001/01/25  03:52:08
537         Log: Integrate change #8462,8469 from mainline.
538              
539              In VMS Perl subversion (perl -V) is undef.
540      Branch: maint-5.6/perl
541           !> configure.com
542 ____________________________________________________________________________
543 [  8542] By: jhi                                   on 2001/01/25  03:44:55
544         Log: Integrate changes #7835,7850,8315,8316 from mainline.
545              
546              Solaris hints.
547      Branch: maint-5.6/perl
548           !> hints/solaris_2.sh
549 ____________________________________________________________________________
550 [  8541] By: jhi                                   on 2001/01/25  03:39:28
551         Log: Integrate #8336 from mainline.
552      Branch: maint-5.6/perl
553           !> hv.c
554 ____________________________________________________________________________
555 [  8540] By: jhi                                   on 2001/01/25  03:23:50
556         Log: Retract #8539.
557      Branch: maint-5.6/perl
558            ! pod/perlfaq3.pod
559 ____________________________________________________________________________
560 [  8539] By: jhi                                   on 2001/01/25  03:21:55
561         Log: (Retracted by #5940.)
562      Branch: maint-5.6/perl
563            ! pod/perlfaq3.pod
564 ____________________________________________________________________________
565 [  8538] By: jhi                                   on 2001/01/25  03:14:07
566         Log: Subject: [re-patch: 5.6.1-TRIAL1] was Re: [PATCH 5.6.1-TRIAL1]VMS buildpatches
567              From: Peter Prymmer <pvhp@forte.com>
568              Date: Mon, 18 Dec 2000 13:10:35 -0800 (PST)
569              Message-ID: <Pine.OSF.4.10.10012181249310.410192-100000@aspara.forte.com>
570              
571              The VMS bits.
572      Branch: maint-5.6/perl
573            ! configure.com vms/descrip_mms.template
574 ____________________________________________________________________________
575 [  8537] By: jhi                                   on 2001/01/25  03:06:09
576         Log: Integrate #7710,7824,7973 from mainline.
577      Branch: maint-5.6/perl
578           !> Configure Porting/Glossary Porting/config.sh Porting/config_H
579           !> config_h.SH configure.com epoc/config.sh hints/aix.sh malloc.c
580           !> regcomp.c sv.c vos/config.alpha.def vos/config.alpha.h
581           !> vos/config.ga.def vos/config.ga.h win32/config.bc
582           !> win32/config.gc win32/config.vc
583 ____________________________________________________________________________
584 [  8536] By: jhi                                   on 2001/01/24  13:50:20
585         Log: Revert the edits made by me so far to the 5.6 branch since
586              the TRIAL1 since I did edits when I should have been using
587              integrates.  Bad programmer.   (Will integrate them properly later.)
588              Undoes #8347, #8349, #8350, #8351, #8353, #8355, #8376, #8463, #8470.
589              The #8353 will not be reapplied at least for now since
590              the UTF-8 hash keys need more thinking.
591              (The patches #8347, #8354, #8454, #8473 were okay since they
592              were original edits made specifically for the 5.6.1-TRIAL1.)
593      Branch: maint-5.6/perl
594            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
595            ! config_h.SH configure.com embed.pl epoc/config.sh hints/aix.sh
596            ! hints/solaris_2.sh hv.c hv.h malloc.c perlapi.c
597            ! pod/perlapi.pod pod/perlfaq3.pod proto.h regcomp.c sv.c
598            ! t/op/each.t vms/descrip_mms.template vos/config.alpha.def
599            ! vos/config.alpha.h vos/config.ga.def vos/config.ga.h
600            ! win32/config.bc win32/config.gc win32/config.vc
601 ____________________________________________________________________________
602 [  8535] By: bailey                                on 2001/01/24  06:37:02
603         Log: SYN SYN
604      Branch: vmsperl
605           +> (branch 26 files)
606           !> (integrate 130 files)
607 ____________________________________________________________________________
608 [  8534] By: nick                                  on 2001/01/23  19:30:57
609         Log: Integrate mainline.
610      Branch: perlio
611           !> Changes Configure Porting/Glossary Porting/config.sh
612           !> Porting/config_H embed.h embed.pl ext/Encode/compile
613           !> ext/Opcode/Opcode.xs ext/Opcode/Safe.pm installperl objXSUB.h
614           !> patchlevel.h perlapi.c perly.y pod/perlfunc.pod
615           !> pod/perlvar.pod proto.h t/lib/1_compile.t
616 ____________________________________________________________________________
617 [  8533] By: jhi                                   on 2001/01/23  16:15:46
618         Log: Forgotten from #8501.
619      Branch: perl
620            ! Porting/Glossary Porting/config.sh Porting/config_H
621 ____________________________________________________________________________
622 [  8532] By: jhi                                   on 2001/01/23  16:13:27
623         Log: Subject: RE: [PATCH perl@8269] Corrections for Perl_yylex_r (used by a reentrant parser as Bison) 
624              From: "Roca, Ignasi" <ignasi.roca@fujitsu.siemens.es>
625              Date: Mon, 22 Jan 2001 17:51:58 +0100
626              Message-ID: <5930DC161690D21196670090271575470397E915@madt009a.siemens.es>
627      Branch: perl
628            ! embed.h embed.pl objXSUB.h perlapi.c perly.y proto.h
629 ____________________________________________________________________________
630 [  8531] By: jhi                                   on 2001/01/23  15:46:01
631         Log: Update Changes.
632      Branch: perl
633            ! Changes patchlevel.h
634 ____________________________________________________________________________
635 [  8530] By: jhi                                   on 2001/01/23  15:38:39
636         Log: De-cut-and-pasto.
637      Branch: perl
638            ! t/lib/1_compile.t
639 ____________________________________________________________________________
640 [  8529] By: jhi                                   on 2001/01/23  15:11:04
641         Log: Document the mkdir trailing slashes case.
642      Branch: perl
643            ! pod/perlfunc.pod
644 ____________________________________________________________________________
645 [  8528] By: jhi                                   on 2001/01/23  15:08:28
646         Log: lib/lib.pm is arch dependent, and lib/lib_pm.PL shouldn't
647              get installed:
648              
649              Subject: lib/lib.pm
650              From: <abigail@foad.org>
651              Date: Mon, 28 Aug 2000 20:35:08 -0400
652              Message-ID: <20000829003508.21281.qmail@foad.org>
653      Branch: perl
654            ! installperl
655 ____________________________________________________________________________
656 [  8527] By: jhi                                   on 2001/01/23  14:44:04
657         Log: Metaconfig unit change for #8526.
658      Branch: metaconfig
659            ! U/threads/archname.U
660 ____________________________________________________________________________
661 [  8526] By: jhi                                   on 2001/01/23  14:43:19
662         Log: Attach -perlio to the archname if so selected.
663      Branch: perl
664            ! Configure
665 ____________________________________________________________________________
666 [  8525] By: jhi                                   on 2001/01/23  14:24:01
667         Log: Subject: [PATCH] pod/perlvar.pod
668              From: abigail@foad.org
669              Date: Tue, 23 Jan 2001 01:41:10 +0100
670              Message-ID: <20010123004110.22259.qmail@foad.org>
671      Branch: perl
672            ! pod/perlvar.pod
673 ____________________________________________________________________________
674 [  8524] By: jhi                                   on 2001/01/23  14:22:32
675         Log: A bug introduced in #8217 (the undefined variable in the
676              lib/safe1_t #3) fixed, by Charles Lane:
677              
678              The earlier patch made it so that stuff running in Safe
679              compartments could do a "caller" and see "main".  That
680              little change in name is done right before the code in
681              the compartment is run, and apparantly the parser
682              was picking up the stash name before it got changed.
683              
684              (why it was threaded vs. unthreaded Perl that was sensitive to this
685              I still don't know...and it probably doesn't matter).
686              
687              I tryed removing the stash name-change and saw that threaded Perl
688              did indeed pass the lib/safe1.t tests.
689              
690              So here's a patch; a routine (_safe_pkg_prep) is added to Opcode to
691              do the name change (and to connect _ in the compartment to the global
692              _) which is removed from _safe_call_sv.   Then Safe.pm is modified
693              to call _safe_pkg_prep when creating a new compartment.
694              
695              Passes all tests with threaded perl on linux; passes all tests
696              with unthreaded perl on VMS.
697              
698              At some point I'll probably want to revisit Safe and Opcode to
699              provide more sensible handling of global variables...and to get
700              formats working in Safe compartments, which they don't do currently.
701      Branch: perl
702            ! ext/Opcode/Opcode.xs ext/Opcode/Safe.pm
703 ____________________________________________________________________________
704 [  8523] By: jhi                                   on 2001/01/23  14:11:58
705         Log: Also the lib/Thread.pm itself needs to be ignored if
706              the Thread extension hasn't been built.
707      Branch: perl
708            ! t/lib/1_compile.t
709 ____________________________________________________________________________
710 [  8522] By: jhi                                   on 2001/01/23  13:51:28
711         Log: print() instead of warn() so that stderr doesn't get
712              unncessarily polluted.
713      Branch: perl
714            ! ext/Encode/compile
715 ____________________________________________________________________________
716 [  8521] By: jhi                                   on 2001/01/23  13:49:48
717         Log: Integrate perlio.
718      Branch: perl
719           !> ext/Encode/Encode.xs ext/Encode/Makefile.PL ext/Encode/compile
720           !> ext/Encode/encode.h
721 ____________________________________________________________________________
722 [  8520] By: nick                                  on 2001/01/22  21:44:00
723         Log: More messing with Encode:
724              Extra fields in header to allow multiple names and to record
725              other things "compile" knows.
726              Re-organise compile to factor out common output routines.
727      Branch: perlio
728            ! ext/Encode/Encode.xs ext/Encode/compile ext/Encode/encode.h
729 ____________________________________________________________________________
730 [  8519] By: nick                                  on 2001/01/22  20:33:50
731         Log: Change file-of-files command line from -F to -f to avoid case issues on VMS.
732      Branch: perlio
733            ! ext/Encode/Makefile.PL ext/Encode/compile
734 ____________________________________________________________________________
735 [  8518] By: nick                                  on 2001/01/22  20:28:13
736         Log: Integrate mainline
737      Branch: perlio
738           !> MANIFEST configure.com epoc/config.sh pp_sys.c regexec.c sv.c
739           !> vos/config.alpha.def vos/config.alpha.h
740 ____________________________________________________________________________
741 [  8517] By: jhi                                   on 2001/01/22  15:37:17
742         Log: Add sv_force_normal() to sv_utf8_downgrade() as suggested
743              by Inaba Hiroto.
744      Branch: perl
745            ! sv.c
746 ____________________________________________________________________________
747 [  8516] By: jhi                                   on 2001/01/22  14:55:15
748         Log: More SIG_SIZE fixes.
749      Branch: perl
750            ! epoc/config.sh vos/config.alpha.def vos/config.alpha.h
751 ____________________________________________________________________________
752 [  8515] By: jhi                                   on 2001/01/22  14:50:27
753         Log: Subject: [PATCH perl@8506] typo in last week's configure.com frenzy
754              From: "Craig A. Berry" <craigberry@mac.com>
755              Date: Mon, 22 Jan 2001 00:42:24 -0600
756              Message-Id: <p04330103b6917f35375b@[172.16.52.1]>
757      Branch: perl
758            ! configure.com
759 ____________________________________________________________________________
760 [  8514] By: jhi                                   on 2001/01/22  14:31:17
761         Log: Subject: [PATCH perl@8506] VMS catches up with change #8501
762              From: "Craig A. Berry" <craigberry@mac.com>
763              Date: Sun, 21 Jan 2001 23:03:25 -0600
764              Message-Id: <p04330101b691596f577f@[172.16.52.1]>
765      Branch: perl
766            ! configure.com
767 ____________________________________________________________________________
768 [  8513] By: jhi                                   on 2001/01/22  14:14:00
769         Log: Add the .ucm encoding tables to the MANIFEST.
770      Branch: perl
771            ! MANIFEST
772 ____________________________________________________________________________
773 [  8512] By: jhi                                   on 2001/01/22  13:43:33
774         Log: Integrate perlio.
775      Branch: perl
776           +> ext/Encode/Encode/ascii.ucm ext/Encode/Encode/cp1047.ucm
777           +> ext/Encode/Encode/cp1250.ucm ext/Encode/Encode/cp37.ucm
778           +> ext/Encode/Encode/dingbats.ucm ext/Encode/Encode/iso8859-1.ucm
779           +> ext/Encode/Encode/iso8859-10.ucm
780           +> ext/Encode/Encode/iso8859-13.ucm
781           +> ext/Encode/Encode/iso8859-14.ucm
782           +> ext/Encode/Encode/iso8859-15.ucm
783           +> ext/Encode/Encode/iso8859-16.ucm
784           +> ext/Encode/Encode/iso8859-2.ucm
785           +> ext/Encode/Encode/iso8859-3.ucm
786           +> ext/Encode/Encode/iso8859-4.ucm
787           +> ext/Encode/Encode/iso8859-5.ucm
788           +> ext/Encode/Encode/iso8859-6.ucm
789           +> ext/Encode/Encode/iso8859-7.ucm
790           +> ext/Encode/Encode/iso8859-8.ucm
791           +> ext/Encode/Encode/iso8859-9.ucm ext/Encode/Encode/posix-bc.ucm
792           +> ext/Encode/Encode/symbol.ucm
793           !> ext/Encode/Makefile.PL ext/Encode/compile lib/open.pm perlio.c
794           !> perliol.h
795 ____________________________________________________________________________
796 [  8511] By: nick                                  on 2001/01/21  23:44:47
797         Log: Make "real" layers of ":utf8" and ":raw".
798              So now PERLIO=utf8 perl ...
799              does what Andreas wanted.
800              Fix arg passing in open.pm (still have a Carp issue).
801      Branch: perlio
802            ! lib/open.pm perlio.c perliol.h
803 ____________________________________________________________________________
804 [  8510] By: jhi                                   on 2001/01/21  22:56:53
805         Log: Document the regex context pushing/popping a bit better.
806      Branch: perl
807            ! regexec.c
808 ____________________________________________________________________________
809 [  8509] By: jhi                                   on 2001/01/21  22:55:44
810         Log: Tweak the mkdir trailing slash code some more.
811              
812              TO DO: the same handling should probably be done for
813              all the other filesystem functions that can have directories
814              as their arguments.
815      Branch: perl
816            ! pp_sys.c
817 ____________________________________________________________________________
818 [  8508] By: nick                                  on 2001/01/21  21:37:43
819         Log: Switch "compiled in" encodings to .ucm format.
820              (Leave others as .enc till we can run-time load .ucm,
821              or find some other way to load them.)
822      Branch: perlio
823            + ext/Encode/Encode/ascii.ucm ext/Encode/Encode/cp1047.ucm
824            + ext/Encode/Encode/cp1250.ucm ext/Encode/Encode/cp37.ucm
825            + ext/Encode/Encode/dingbats.ucm ext/Encode/Encode/iso8859-1.ucm
826            + ext/Encode/Encode/iso8859-10.ucm
827            + ext/Encode/Encode/iso8859-13.ucm
828            + ext/Encode/Encode/iso8859-14.ucm
829            + ext/Encode/Encode/iso8859-15.ucm
830            + ext/Encode/Encode/iso8859-16.ucm
831            + ext/Encode/Encode/iso8859-2.ucm
832            + ext/Encode/Encode/iso8859-3.ucm
833            + ext/Encode/Encode/iso8859-4.ucm
834            + ext/Encode/Encode/iso8859-5.ucm
835            + ext/Encode/Encode/iso8859-6.ucm
836            + ext/Encode/Encode/iso8859-7.ucm
837            + ext/Encode/Encode/iso8859-8.ucm
838            + ext/Encode/Encode/iso8859-9.ucm ext/Encode/Encode/posix-bc.ucm
839            + ext/Encode/Encode/symbol.ucm
840            ! ext/Encode/Makefile.PL ext/Encode/compile
841 ____________________________________________________________________________
842 [  8507] By: nick                                  on 2001/01/21  21:02:03
843         Log: Integrate (partial) mainline.
844      Branch: perlio
845           !> Changes Configure config_h.SH patchlevel.h pod/perlfaq2.pod
846           !> sv.c uconfig.h uconfig.sh vos/config.alpha.h vos/config.ga.h
847           !> win32/config_H.bc win32/config_H.gc win32/config_H.vc
848 ____________________________________________________________________________
849 [  8506] By: jhi                                   on 2001/01/21  20:09:30
850         Log: Update Changes.
851      Branch: perl
852            ! Changes patchlevel.h
853 ____________________________________________________________________________
854 [  8505] By: jhi                                   on 2001/01/21  19:39:59
855         Log: Subject: Minor typos in perlfaq2.pod
856              From: "Stephen P. Potter" <spp@spotter.yi.org>
857              Message-Id: <200101192101.QAA11911@spotter.yi.org>
858              Date: Fri, 19 Jan 2001 16:01:13 -0500
859              
860              with a nit from Philip Netwon.
861      Branch: perl
862            ! pod/perlfaq2.pod
863 ____________________________________________________________________________
864 [  8504] By: jhi                                   on 2001/01/21  19:33:05
865         Log: Metaconfig change for #8503.
866      Branch: metaconfig
867            ! U/threads/usethreads.U
868 ____________________________________________________________________________
869 [  8503] By: jhi                                   on 2001/01/21  19:32:21
870         Log: Sanity check for conflicting thread flavours.
871      Branch: perl
872            ! Configure config_h.SH
873 ____________________________________________________________________________
874 [  8502] By: jhi                                   on 2001/01/21  19:23:00
875         Log: Metaconfig change for #8501.
876      Branch: metaconfig
877            ! U/modified/sig_name.U
878 ____________________________________________________________________________
879 [  8501] By: jhi                                   on 2001/01/21  19:22:26
880         Log: The SIG_SIZE is the number of the elements *excluding*
881              the terminating NULL.
882      Branch: perl
883            ! Configure config_h.SH uconfig.h uconfig.sh vos/config.alpha.h
884            ! vos/config.ga.h win32/config_H.bc win32/config_H.gc
885            ! win32/config_H.vc
886 ____________________________________________________________________________
887 [  8500] By: jhi                                   on 2001/01/21  18:31:31
888         Log: Integrate perlio.
889      Branch: perl
890           !> doio.c embed.h embed.pl ext/Encode/Encode.xs
891           !> ext/Encode/Makefile.PL ext/Encode/compile global.sym objXSUB.h
892           !> opcode.h opcode.pl opnames.h perlapi.c pp.sym pp_proto.h
893           !> pp_sys.c proto.h sv.c
894 ____________________________________________________________________________
895 [  8499] By: jhi                                   on 2001/01/21  17:43:57
896         Log: Subject: Re: 8482 busted for $^V sprintf()s on OS/390 
897              From: Hugo <hv@crypt.compulink.co.uk>
898              Date: Sun, 21 Jan 2001 13:34:05 +0000
899              Message-Id: <200101211334.NAA18121@crypt.compulink.co.uk>
900              
901              In sprintf UTF8ize only if necessary.
902      Branch: perl
903            ! sv.c
904 ____________________________________________________________________________
905 [  8498] By: nick                                  on 2001/01/21  16:25:32
906         Log: Encode cleanup.
907              Add command line control over "compile" so that Makefile.PL
908              needs can be combined with other uses.
909              Use command line options in Makefile.PL.
910              Fix multi-byte parsing in .ucm files.
911      Branch: perlio
912            ! ext/Encode/Makefile.PL ext/Encode/compile
913 ____________________________________________________________________________
914 [  8497] By: nick                                  on 2001/01/21  12:56:27
915         Log: Warn and set errno when open(...,":encoding(xxxxx)",...) cannot find xxxxx.
916      Branch: perlio
917            ! ext/Encode/Encode.xs
918 ____________________________________________________________________________
919 [  8496] By: nick                                  on 2001/01/21  12:18:45
920         Log: Fixup after integrate:
921              missed the .sym files that are changed by regen_headers
922              sv.c and proto.h disagreed about pTHX_ ness of EXPECT_NUMBER.
923      Branch: perlio
924            ! global.sym pp.sym sv.c
925 ____________________________________________________________________________
926 [  8495] By: nick                                  on 2001/01/21  11:51:07
927         Log: Integrate mainline.
928      Branch: perlio
929           +> ext/DynaLoader/dl_dllload.xs t/op/qu.t
930           !> MANIFEST Makefile.SH README.os390 README.posix-bc README.vms
931           !> embed.h embed.pl ext/DynaLoader/dl_aix.xs
932           !> ext/DynaLoader/dl_dlopen.xs hints/os390.sh pod/perlfunc.pod
933           !> pod/perlguts.pod pod/perlop.pod pod/perlre.pod
934           !> pod/perlretut.pod pod/perlunicode.pod proto.h sv.c
935           !> win32/Makefile win32/makefile.mk
936 ____________________________________________________________________________
937 [  8494] By: jhi                                   on 2001/01/20  23:12:11
938         Log: Forgot the expect_number() prototype.
939      Branch: perl
940            ! embed.h embed.pl proto.h
941 ____________________________________________________________________________
942 [  8493] By: jhi                                   on 2001/01/20  22:56:39
943         Log: Subject: [PATCH: perl@8482] README.vms URL updates
944              From: Peter Prymmer <pvhp@forte.com>
945              Date: Fri, 19 Jan 2001 18:59:02 -0800 (PST)
946              Message-ID: <Pine.OSF.4.10.10101191856510.61572-100000@aspara.forte.com>
947              
948              Plus Craig A. Berry's suggestion to use compaq.com instead
949              of digital.com.
950      Branch: perl
951            ! README.vms
952 ____________________________________________________________________________
953 [  8492] By: jhi                                   on 2001/01/20  22:50:05
954         Log: Memory management calls documentation.
955      Branch: perl
956            ! pod/perlguts.pod
957 ____________________________________________________________________________
958 [  8491] By: jhi                                   on 2001/01/20  22:38:33
959         Log: Signedness nit plus few memcpy/Copy nits.
960      Branch: perl
961            ! sv.c
962 ____________________________________________________________________________
963 [  8490] By: jhi                                   on 2001/01/20  22:25:53
964         Log: Subject: [PATCH: perl@8482] minor typos in some dl_$foo.xs files
965              From: Peter Prymmer <pvhp@forte.com>
966              Date: Fri, 19 Jan 2001 18:43:14 -0800 (PST)
967              Message-ID: <Pine.OSF.4.10.10101191841080.61505-100000@aspara.forte.com>
968      Branch: perl
969            ! ext/DynaLoader/dl_aix.xs ext/DynaLoader/dl_dlopen.xs
970 ____________________________________________________________________________
971 [  8489] By: jhi                                   on 2001/01/20  22:24:41
972         Log: Subject: [PATCH: perl@8482] win32 Makefile(s) handle podified READMEs
973              From: Peter Prymmer <pvhp@forte.com>
974              Date: Fri, 19 Jan 2001 18:33:43 -0800 (PST)
975              Message-ID: <Pine.OSF.4.10.10101191828050.61158-100000@aspara.forte.com>
976      Branch: perl
977            ! win32/Makefile win32/makefile.mk
978 ____________________________________________________________________________
979 [  8488] By: jhi                                   on 2001/01/20  22:22:27
980         Log: Subject: [PATCH: perl@8482] remove redundant dependencies that are unneeded
981              From: Peter Prymmer <pvhp@forte.com>
982              Date: Fri, 19 Jan 2001 18:25:38 -0800 (PST)
983              Message-ID: <Pine.OSF.4.10.10101191816550.61158-100000@aspara.forte.com>
984      Branch: perl
985            ! Makefile.SH
986 ____________________________________________________________________________
987 [  8487] By: jhi                                   on 2001/01/20  22:21:18
988         Log: Subject: [PATCH: perl@8482] partial support for dynaloading on OS/390
989              From: Peter Prymmer <pvhp@forte.com>
990              Date: Fri, 19 Jan 2001 18:12:05 -0800 (PST)
991              Message-ID: <Pine.OSF.4.10.10101191646420.61158-100000@aspara.forte.com>
992      Branch: perl
993            + ext/DynaLoader/dl_dllload.xs
994            ! MANIFEST Makefile.SH hints/os390.sh
995 ____________________________________________________________________________
996 [  8486] By: jhi                                   on 2001/01/20  22:17:53
997         Log: Subject: [PATCH: perl@8482] floating point mangling warnings for README.os390 and README.posix-bc
998              From: Peter Prymmer <pvhp@forte.com>
999              Date: Fri, 19 Jan 2001 13:48:15 -0800 (PST)
1000              Message-ID: <Pine.OSF.4.10.10101191347140.59299-100000@aspara.forte.com>
1001      Branch: perl
1002            ! README.os390 README.posix-bc
1003 ____________________________________________________________________________
1004 [  8485] By: jhi                                   on 2001/01/20  20:15:30
1005         Log: Document and test the new qu operator.
1006      Branch: perl
1007            + t/op/qu.t
1008            ! MANIFEST pod/perlfunc.pod pod/perlop.pod pod/perlre.pod
1009            ! pod/perlretut.pod pod/perlunicode.pod
1010 ____________________________________________________________________________
1011 [  8484] By: nick                                  on 2001/01/20  19:42:30
1012         Log: Infrastructure to allow:
1013              open($fh,"|-",@array);
1014              to be implemented
1015              i.e. mark pp_open as needing a stack mark, and make pp_open
1016              process its args in that style (and pass them _all_ to tied handles OPEN).
1017              Invent do_openn() which takes SV ** at allow it to see multiple args.
1018              Note this does not _do_ anything yet.
1019      Branch: perlio
1020            ! doio.c embed.h embed.pl objXSUB.h opcode.h opcode.pl opnames.h
1021            ! perlapi.c pp_proto.h pp_sys.c proto.h
1022 ____________________________________________________________________________
1023 [  8483] By: nick                                  on 2001/01/20  17:23:14
1024         Log: Integrate mainline.
1025      Branch: perlio
1026           !> Changes configure.com patchlevel.h sv.c t/lib/1_compile.t
1027           !> t/op/sprintf.t t/op/ver.t t/pragma/locale.t
1028 ____________________________________________________________________________
1029 [  8482] By: jhi                                   on 2001/01/19  15:37:49
1030         Log: Update Changes.
1031      Branch: perl
1032            ! Changes patchlevel.h
1033 ____________________________________________________________________________
1034 [  8481] By: jhi                                   on 2001/01/19  14:41:24
1035         Log: Subject: Re: new feature: s?printf parameter reordering 
1036              From: Hugo <hv@crypt.compulink.co.uk>
1037              Date: Thu, 11 Jan 2001 17:09:03 +0000
1038              Message-Id: <200101111709.RAA23756@crypt.compulink.co.uk>
1039              
1040              - support reordering for all parameters: %, *v, *, .*
1041              - lay down that the reordering specification must immediately
1042              follow that parameter: %3$, *v3$, *3$, .*3$
1043              - fix vectorisation of a zero-length string
1044              - factor out the code choosing the argument to format
1045              
1046              Possibly unwanted side-effects:
1047              - the special format specifiers ' +-0' must now precede any
1048              vectorisation specifier. Tests in op/sprintf and op/ver
1049              have been changed to reflect this.
1050              - sprintf.t test #214 changed its expectations because in many
1051              cases, the next parameter has already been consumed when an
1052              invalid type letter is detected.
1053              
1054              Probably wanted side-effects:
1055              - attempts to format a non-existent parameter will warn as if C<undef>
1056              - attempt to write to non-existent parameter with '%n' will complain
1057              of "attempt to modify read-only value" instead of being silent
1058      Branch: perl
1059            ! sv.c t/op/sprintf.t t/op/ver.t
1060 ____________________________________________________________________________
1061 [  8480] By: jhi                                   on 2001/01/19  14:08:37
1062         Log: Subject: PATCH pragma/locale.t
1063              From: andreas.koenig@anima.de (Andreas J. Koenig)
1064              Date: 18 Jan 2001 09:45:37 +0100
1065              Message-ID: <m3lms98czy.fsf@ak-71.mind.de>
1066      Branch: perl
1067            ! t/pragma/locale.t
1068 ____________________________________________________________________________
1069 [  8479] By: jhi                                   on 2001/01/19  13:19:58
1070         Log: Add tracing for debugging extensions builds in VMS, from Charles Lane.
1071      Branch: perl
1072            ! configure.com
1073 ____________________________________________________________________________
1074 [  8478] By: jhi                                   on 2001/01/19  02:12:35
1075         Log: Automate 1_compile.t.
1076      Branch: perl
1077            ! t/lib/1_compile.t
1078 ____________________________________________________________________________
1079 [  8477] By: jhi                                   on 2001/01/19  01:49:56
1080         Log: Integrate perlio.
1081      Branch: perl
1082           !> sv.c win32/config.bc win32/config.gc win32/config.vc
1083           !> win32/config_H.bc win32/config_H.gc win32/config_H.vc
1084 ____________________________________________________________________________
1085 [  8476] By: nick                                  on 2001/01/18  21:51:52
1086         Log: Integrate mainline
1087      Branch: perlio
1088           +> t/lib/1_compile.t t/lib/compmod.pl
1089           !> MANIFEST configure.com lib/unicode/distinct.pm
1090 ____________________________________________________________________________
1091 [  8475] By: nick                                  on 2001/01/18  21:48:02
1092         Log: Win32 "safe signals" co-existance fix.
1093              Fix SIG_SIZE value.
1094              Clear PL_sig_pending when cloning (fork).
1095      Branch: perlio
1096            ! sv.c win32/config.bc win32/config.gc win32/config.vc
1097            ! win32/config_H.bc win32/config_H.gc win32/config_H.vc
1098 ____________________________________________________________________________
1099 [  8474] By: jhi                                   on 2001/01/18  14:40:57
1100         Log: It's Pod::Text::Overstrike, not Pod::Overstrike.
1101      Branch: perl
1102            ! t/lib/1_compile.t
1103 ____________________________________________________________________________
1104 [  8473] By: gsar                                  on 2001/01/18  11:42:31
1105         Log: unsubmitted trial1 change
1106      Branch: maint-5.6/perl
1107            ! Changes
1108 ____________________________________________________________________________
1109 [  8472] By: jhi                                   on 2001/01/18  04:30:24
1110         Log: The first bug found by 1_compile.t.
1111      Branch: perl
1112            ! lib/unicode/distinct.pm
1113 ____________________________________________________________________________
1114 [  8471] By: jhi                                   on 2001/01/18  04:29:42
1115         Log: Add Schwern's 1_compile test.  The compile_module script renamed
1116              to be a bit shorter for the 8.3 people.
1117      Branch: perl
1118            + t/lib/1_compile.t t/lib/compmod.pl
1119            ! MANIFEST
1120 ____________________________________________________________________________
1121 [  8470] By: jhi                                   on 2001/01/18  04:16:00
1122         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)
1123              From: Peter Prymmer <pvhp@forte.com>
1124              Date: Wed, 17 Jan 2001 13:07:11 -0800 (PST)
1125              Message-ID: <Pine.OSF.4.10.10101171255380.289071-100000@aspara.forte.com>
1126              Replace #8463.
1127      Branch: maint-5.6/perl
1128            ! configure.com
1129 ____________________________________________________________________________
1130 [  8469] By: jhi                                   on 2001/01/18  04:13:02
1131         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)
1132              From: Peter Prymmer <pvhp@forte.com>
1133              Date: Wed, 17 Jan 2001 13:07:11 -0800 (PST)
1134              Message-ID: <Pine.OSF.4.10.10101171255380.289071-100000@aspara.forte.com>
1135              Replace #8462.
1136      Branch: perl
1137            ! configure.com
1138 ____________________________________________________________________________
1139 [  8468] By: jhi                                   on 2001/01/18  03:42:08
1140         Log: Integrate perlio.
1141      Branch: perl
1142           !> gv.c mg.c perlio.c util.c
1143 ____________________________________________________________________________
1144 [  8467] By: nick                                  on 2001/01/17  22:41:10
1145         Log: "Safe" signals - trial implementation.
1146              gv.c tweaked to zero PL_sig_pend array
1147              perlio.c tweaked to PERL_ASYNC_CHECK() on EINTR
1148              util.c tweaked to not set SA_RESTART to give perlio.c a chance.
1149              Odd thing is that it "works" with PERLIO=stdio as well (linux).
1150      Branch: perlio
1151            ! gv.c mg.c perlio.c util.c
1152 ____________________________________________________________________________
1153 [  8466] By: nick                                  on 2001/01/17  20:40:20
1154         Log: Integrate mainline.
1155      Branch: perlio
1156           !> Configure Porting/Glossary Porting/config.sh Porting/config_H
1157           !> config_h.SH configure.com epoc/config.sh gv.c pod/perltoc.pod
1158           !> pp.c pp_sys.c sv.c t/op/int.t uconfig.h uconfig.sh
1159           !> vos/config.alpha.def vos/config.alpha.h vos/config.ga.def
1160           !> vos/config.ga.h win32/config.bc win32/config.gc
1161           !> win32/config.vc
1162 ____________________________________________________________________________
1163 [  8465] By: jhi                                   on 2001/01/17  18:37:13
1164         Log: Subject: [PATCH] Re: [PATCH: perl@8429]  lib/tie-substrhash.t FAILED at test 11
1165              From: Nicholas Clark <nick@ccl4.org>
1166              Date: Wed, 17 Jan 2001 17:31:33 +0000
1167              Message-ID: <20010117173133.I2633@plum.flirble.org>
1168      Branch: perl
1169            ! t/op/int.t
1170 ____________________________________________________________________________
1171 [  8464] By: jhi                                   on 2001/01/17  14:43:17
1172         Log: Subject: [PATCH: perl@8429]  lib/tie-substrhash.t FAILED at test 11
1173              From: "Roca, Ignasi" <ignasi.roca@fujitsu.siemens.es>
1174              Date: Wed, 17 Jan 2001 15:16:43 +0100
1175              Message-ID: <5930DC161690D2119667009027157547038C8A85@madt009a.siemens.es> 
1176              
1177              pp_int() was dropping an NV to the floor,
1178              int(279964589018079/59) either returned not an integer
1179              4745162525730.15, or one got "Attempt to free unreferenced scalar."
1180      Branch: perl
1181            ! pp.c
1182 ____________________________________________________________________________
1183 [  8463] By: jhi                                   on 2001/01/17  06:12:42
1184         Log: (Replaced by #8470)
1185              
1186              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)
1187              From: "Craig A. Berry" <craigberry@mac.com>
1188              Date: Tue, 16 Jan 2001 23:38:46 -0600
1189              Message-Id: <p04330103b68ad8cfcbfd@[172.16.52.1]>
1190      Branch: maint-5.6/perl
1191            ! configure.com
1192 ____________________________________________________________________________
1193 [  8462] By: jhi                                   on 2001/01/17  06:11:31
1194         Log: (Replaced by #8469)
1195              
1196              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)
1197              From: "Craig A. Berry" <craigberry@mac.com>
1198              Date: Tue, 16 Jan 2001 23:38:46 -0600
1199              Message-Id: <p04330103b68ad8cfcbfd@[172.16.52.1]>
1200      Branch: perl
1201            ! configure.com
1202 ____________________________________________________________________________
1203 [  8461] By: jhi                                   on 2001/01/17  05:56:12
1204         Log: Allow for one trailing slash in the directory of mkdir().
1205      Branch: perl
1206            ! pp_sys.c
1207 ____________________________________________________________________________
1208 [  8460] By: jhi                                   on 2001/01/17  03:26:01
1209         Log: Metaconfig unit changes for #8459.
1210      Branch: metaconfig
1211            ! U/modified/Loc.U U/modified/sig_name.U
1212 ____________________________________________________________________________
1213 [  8459] By: jhi                                   on 2001/01/17  03:24:48
1214         Log: Define SIG_SIZE, the number of elements in the sig_name and
1215              sig_num arrays, including the final NULL entry.
1216      Branch: perl
1217            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
1218            ! config_h.SH configure.com epoc/config.sh gv.c pod/perltoc.pod
1219            ! sv.c uconfig.h uconfig.sh vos/config.alpha.def
1220            ! vos/config.alpha.h vos/config.ga.def vos/config.ga.h
1221            ! win32/config.bc win32/config.gc win32/config.vc
1222 ____________________________________________________________________________
1223 [  8458] By: jhi                                   on 2001/01/17  01:41:33
1224         Log: Integrate perlio.
1225      Branch: perl
1226           !> embed.h embed.pl embedvar.h gv.c intrpvar.h mg.c perl.c perl.h
1227           !> perlapi.h proto.h sv.c
1228 ____________________________________________________________________________
1229 [  8457] By: nick                                  on 2001/01/16  22:07:26
1230         Log: Provide infrastructure for PERL_ASYNC_CHECK() style safe signals.
1231              Provides all the "cost" but no benefit yet - it is to allow cost
1232              to be measured, and implementation experiments (just in mg.c?).
1233      Branch: perlio
1234            ! embed.h embed.pl embedvar.h gv.c intrpvar.h mg.c perl.c perl.h
1235            ! perlapi.h proto.h sv.c
1236 ____________________________________________________________________________
1237 [  8456] By: nick                                  on 2001/01/16  21:07:07
1238         Log: Integrate mainline.
1239      Branch: perlio
1240           !> (integrate 51 files)
1241 ____________________________________________________________________________
1242 [  8455] By: jhi                                   on 2001/01/16  18:13:43
1243         Log: Subject: [PATCH] regcomp.c old feature removal
1244              From: mjd@plover.com
1245              Date: 16 Jan 2001 14:43:18 -0000 
1246              Message-ID: <20010116144318.7140.qmail@plover.com> 
1247      Branch: perl
1248            ! regcomp.c
1249 ____________________________________________________________________________
1250 [  8454] By: jhi                                   on 2001/01/16  16:12:39
1251         Log: Subject: [PATCH: perl-5.6.1-TRIAL1] Win32 Makefile fixes - v2
1252              From: "Indy Singh" <indy@nusphere.com>
1253              Date: Wed, 10 Jan 2001 20:17:49 -0500
1254              Message-ID: <003001c07b6c$524630b0$00957018@roadhog>
1255      Branch: maint-5.6/perl
1256            ! win32/Makefile
1257 ____________________________________________________________________________
1258 [  8453] By: jhi                                   on 2001/01/16  16:09:33
1259         Log: Update Changes.
1260      Branch: perl
1261            ! Changes patchlevel.h
1262 ____________________________________________________________________________
1263 [  8452] By: jhi                                   on 2001/01/16  15:42:04
1264         Log: Subject: Re: API Cleanup
1265              To: perl5-porters@perl.org
1266              Date: Tue, 16 Jan 2001 13:42:30 +0000
1267              Message-ID: <20010116134230.A13420@pembro26.pmb.ox.ac.uk>
1268              
1269              Subject: [PATCH] utf8.c documentation
1270              From: Simon Cozens <simon@cozens.net>
1271              Date: Tue, 16 Jan 2001 13:52:48 +0000
1272              Message-ID: <20010116135248.A13496@pembro26.pmb.ox.ac.uk>
1273              
1274              Subject: Re: API Cleanup
1275              From: Simon Cozens <simon@cozens.net>
1276              Date: Tue, 16 Jan 2001 14:58:55 +0000
1277              Message-ID: <20010116145855.A13794@pembro26.pmb.ox.ac.uk>
1278              
1279              UTF-8 doc patches.
1280      Branch: perl
1281            ! embed.pl pod/perlapi.pod utf8.c
1282 ____________________________________________________________________________
1283 [  8451] By: jhi                                   on 2001/01/16  14:41:39
1284         Log: podlators 1.07, from Russ Allbery.
1285      Branch: perl
1286            ! lib/Pod/Man.pm
1287 ____________________________________________________________________________
1288 [  8450] By: jhi                                   on 2001/01/16  14:24:19
1289         Log: Subject: [PATCH: perl@8429] Win32 Makefile fixes
1290              From: "Indy Singh" <indy@nusphere.com>
1291              Date: Mon, 15 Jan 2001 20:59:40 -0500
1292              Message-ID: <07be01c07f5f$fdadf270$d24b7018@cr637287a>
1293      Branch: perl
1294            ! win32/Makefile
1295 ____________________________________________________________________________
1296 [  8449] By: jhi                                   on 2001/01/16  03:42:55
1297         Log: Under 5.005 threads and debugging crashed in Debian 2.2 Linux/x86
1298              at the setting of the ofs_sv in new_struct_thread() as the
1299              thr->Tofs_sv (PL_ofs_sv) was still 0xabab...., SvREFCNT_inc()ing
1300              that invited a core dump.
1301      Branch: perl
1302            ! util.c
1303 ____________________________________________________________________________
1304 [  8448] By: jhi                                   on 2001/01/16  01:49:07
1305         Log: Subject: [PATCH #3 @8436] Re: Eliminate op_children
1306              From: Stephen McCamant <smcc@CSUA.Berkeley.EDU>
1307              Date: Mon, 15 Jan 2001 17:14:37 -0800 (PST)
1308              Message-ID: <14947.40656.841280.551785@soda.csua.berkeley.edu>
1309              
1310              Replace #8444 and #8445.
1311      Branch: perl
1312            ! ext/B/B.xs ext/B/B/Debug.pm
1313 ____________________________________________________________________________
1314 [  8447] By: jhi                                   on 2001/01/15  21:05:35
1315         Log: Subject: [PATCH] API Variable documentation   
1316              From: Simon Cozens <simon@cozens.net>
1317              Date: Mon, 15 Jan 2001 19:35:54 +0000
1318              Message-ID: <20010115193554.A9919@pembro26.pmb.ox.ac.uk> 
1319      Branch: perl
1320            ! pod/perlapi.pod thrdvar.h
1321 ____________________________________________________________________________
1322 [  8446] By: jhi                                   on 2001/01/15  20:49:20
1323         Log: Signedness nit.
1324      Branch: perl
1325            ! pp_ctl.c
1326 ____________________________________________________________________________
1327 [  8445] By: jhi                                   on 2001/01/15  20:28:48
1328         Log: (Replaced by #8448)  More op_children traces (cleanup of #8442).
1329      Branch: perl
1330            ! ext/B/B/Debug.pm
1331 ____________________________________________________________________________
1332 [  8444] By: jhi                                   on 2001/01/15  13:09:10
1333         Log: (Replaced by #8448)  Traces of op_children (cleanup of #8442)
1334      Branch: perl
1335            ! ext/B/B.xs
1336 ____________________________________________________________________________
1337 [  8443] By: jhi                                   on 2001/01/15  13:06:26
1338         Log: Missing from #8439.
1339      Branch: perl
1340            ! keywords.h mg.c
1341 ____________________________________________________________________________
1342 [  8442] By: jhi                                   on 2001/01/15  13:02:38
1343         Log: Subject: [PATCH @8436] Eliminate op_children
1344              From: Stephen McCamant <smcc@CSUA.Berkeley.EDU>
1345              Date: Sun, 14 Jan 2001 03:00:13 -0800 (PST)
1346              Message-ID: <14945.32919.44271.685122@soda.csua.berkeley.edu>
1347              
1348              Subject: [PATCH @8436] Re: Eliminate op_children
1349              From: Stephen McCamant <smcc@CSUA.Berkeley.EDU>
1350              Date: Sun, 14 Jan 2001 03:23:56 -0800 (PST)
1351              Message-ID: <14945.35680.571387.810763@soda.csua.berkeley.edu>
1352      Branch: perl
1353            ! bytecode.pl ext/B/B/Asmdata.pm ext/B/B/Bytecode.pm
1354            ! ext/B/B/C.pm ext/ByteLoader/byterun.c ext/ByteLoader/byterun.h
1355            ! op.c op.h
1356 ____________________________________________________________________________
1357 [  8441] By: jhi                                   on 2001/01/15  12:57:08
1358         Log: Use the /^Perl_/-less form of is_lvalue_sub().
1359      Branch: perl
1360            ! pp.h
1361 ____________________________________________________________________________
1362 [  8440] By: jhi                                   on 2001/01/15  05:13:09
1363         Log: Revert #8437 and #8438, the Linux large files story is more complex.
1364      Branch: metaconfig/U/perl
1365            ! d_fpos64_t.U d_off64_t.U
1366      Branch: perl
1367            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
1368            ! config_h.SH configure.com epoc/config.sh perl.h
1369            ! pod/perltoc.pod uconfig.h uconfig.sh vos/config.alpha.def
1370            ! vos/config.alpha.h vos/config.ga.def vos/config.ga.h
1371            ! win32/config.bc win32/config.gc win32/config.vc
1372 ____________________________________________________________________________
1373 [  8439] By: jhi                                   on 2001/01/15  05:02:24
1374         Log: More UTF-8 patches from Inaba Hiroto.
1375              - The substr lval was still not okay.
1376              - Now pp_stringify and sv_setsv copies source's UTF8 flag
1377              even if IN_BYTE.  pp_stringify is called from fold_constants
1378              at optimization phase and "\x{100}" was made SvUTF8_off under
1379              use bytes (the bytes pragma is for "byte semantics" and not
1380              for "do not produce UTF8 data")
1381              - New `qu' operator to generate UTF8 string explicitly.
1382              Though I agree with the policy "0x00-0xff always produce bytes",
1383              sometimes want to such a string to be coded in UTF8.
1384              I can use pack"U0a*" but it requires more typing and has
1385              runtime overhead.
1386              - Fix pp_regcomp bug uncovered by "0x00-0xff always produce bytes"
1387              change, the bug apears if a pm has PMdf_UTF8 flag but interpolated
1388              string is not UTF8_on and has char 0x80-0xff.
1389              
1390              TODO: document and test qu.
1391      Branch: perl
1392            ! keywords.h keywords.pl mg.c pp.c pp_ctl.c pp_hot.c sv.c
1393            ! t/lib/charnames.t t/op/length.t t/op/substr.t t/pragma/utf8.t
1394            ! toke.c
1395 ____________________________________________________________________________
1396 [  8438] By: jhi                                   on 2001/01/14  05:10:23
1397         Log: Metaconfig unit changes for #8437.
1398      Branch: metaconfig/U/perl
1399            ! d_fpos64_t.U d_off64_t.U
1400 ____________________________________________________________________________
1401 [  8437] By: jhi                                   on 2001/01/14  04:55:34
1402         Log: Add <features.h> probing, seems to be needed for (some?)
1403              Linux largefileness.
1404      Branch: perl
1405            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
1406            ! config_h.SH configure.com epoc/config.sh perl.h
1407            ! pod/perltoc.pod uconfig.h uconfig.sh vos/config.alpha.def
1408            ! vos/config.alpha.h vos/config.ga.def vos/config.ga.h
1409            ! win32/config.bc win32/config.gc win32/config.vc
1410 ____________________________________________________________________________
1411 [  8436] By: jhi                                   on 2001/01/13  17:47:21
1412         Log: Tighten some of the tests a bit.
1413      Branch: perl
1414            ! t/pragma/utf8.t
1415 ____________________________________________________________________________
1416 [  8435] By: jhi                                   on 2001/01/13  17:31:54
1417         Log: Integrate perlio.
1418      Branch: perl
1419           !> ext/Encode/Makefile.PL ext/Encode/compile win32/config_H.bc
1420           !> win32/config_H.gc win32/config_H.vc
1421 ____________________________________________________________________________
1422 [  8434] By: nick                                  on 2001/01/13  11:36:53
1423         Log: Run dmake regen_config_h for Win32
1424      Branch: perlio
1425            ! win32/config_H.bc win32/config_H.gc win32/config_H.vc
1426 ____________________________________________________________________________
1427 [  8433] By: nick                                  on 2001/01/13  11:31:55
1428         Log: VMS friendly patch to Encode compile process
1429      Branch: perlio
1430            ! ext/Encode/Makefile.PL ext/Encode/compile
1431 ____________________________________________________________________________
1432 [  8432] By: nick                                  on 2001/01/13  11:06:44
1433         Log: Integrate mainline
1434      Branch: perlio
1435           +> ext/B/B/Concise.pm
1436           !> (integrate 52 files)
1437 ____________________________________________________________________________
1438 [  8431] By: jhi                                   on 2001/01/13  05:55:55
1439         Log: Subject: [PATCH @8429] Re: B::Concise -- an improved replacement for B::Terse
1440              From: Stephen McCamant <smcc@CSUA.Berkeley.EDU>
1441              Date: Fri, 12 Jan 2001 21:45:17 -0800 (PST)
1442              Message-ID: <14943.59712.993695.180189@soda.csua.berkeley.edu>
1443      Branch: perl
1444            ! ext/B/B/Concise.pm
1445 ____________________________________________________________________________
1446 [  8430] By: jhi                                   on 2001/01/13  04:24:18
1447         Log: The LVRET macro needed an aTHX.
1448      Branch: perl
1449            ! pp.h
1450 ____________________________________________________________________________
1451 [  8429] By: jhi                                   on 2001/01/13  02:12:42
1452         Log: Update Changes.
1453      Branch: perl
1454            ! Changes patchlevel.h
1455 ____________________________________________________________________________
1456 [  8428] By: jhi                                   on 2001/01/13  02:08:50
1457         Log: Subject: Re: [PATCH: perl@8342]  lib/bigfloat.t FAILED at test 351
1458              From: Peter Prymmer <pvhp@forte.com>
1459              Date: Fri, 12 Jan 2001 16:27:36 -0800 (PST)
1460              Message-ID: <Pine.OSF.4.10.10101121623130.478096-100000@aspara.forte.com>
1461              
1462              Add a BEGIN guard for sloppy floating point division.
1463      Branch: perl
1464            ! lib/Math/BigInt.pm lib/bigint.pl
1465 ____________________________________________________________________________
1466 [  8427] By: jhi                                   on 2001/01/13  01:47:16
1467         Log: The B::Terse drop-in replacement wasn't quite drop-in.
1468      Branch: perl
1469            ! ext/B/B/Terse.pm
1470 ____________________________________________________________________________
1471 [  8426] By: jhi                                   on 2001/01/12  21:20:43
1472         Log: Use UVXf.
1473      Branch: perl
1474            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
1475            ! config_h.SH configure.com epoc/config.sh sv.c uconfig.h
1476            ! uconfig.sh vos/config.alpha.def vos/config.alpha.h
1477            ! vos/config.ga.def vos/config.ga.h win32/config.bc
1478            ! win32/config.gc win32/config.vc
1479 ____________________________________________________________________________
1480 [  8425] By: jhi                                   on 2001/01/12  20:20:14
1481         Log: Subject: [PATCH perl@8342] -Wformat
1482              From: Robin Barker <rmb1@cise.npl.co.uk>
1483              Date: Fri, 12 Jan 2001 20:03:14 GMT
1484              Message-Id: <200101122003.UAA29599@tempest.npl.co.uk>
1485      Branch: perl
1486            ! ext/Encode/Encode.xs mg.c sv.c toke.c
1487 ____________________________________________________________________________
1488 [  8424] By: jhi                                   on 2001/01/12  20:01:48
1489         Log: Subject: B::Concise -- an improved replacement for B::Terse 
1490              From: Stephen McCamant <smcc@CSUA.Berkeley.EDU>
1491              Date: Sat,  6 Jan 2001 20:18:05 -0800 (PST)
1492              Message-ID: <14935.43597.962940.803717@soda.csua.berkeley.edu>
1493      Branch: perl
1494            + ext/B/B/Concise.pm
1495            ! MANIFEST ext/B/B/Terse.pm
1496 ____________________________________________________________________________
1497 [  8423] By: jhi                                   on 2001/01/12  19:24:02
1498         Log: The new metaconfig unit from the #8421.
1499      Branch: metaconfig/U/perl
1500            + d_sigprocmask.U
1501 ____________________________________________________________________________
1502 [  8422] By: jhi                                   on 2001/01/12  19:23:43
1503         Log: Forgot the microperl config from the #8421.
1504      Branch: perl
1505            ! uconfig.h uconfig.sh
1506 ____________________________________________________________________________
1507 [  8421] By: jhi                                   on 2001/01/12  19:05:27
1508         Log: Add sigprocmask() probe, regen Configure, regen toc.
1509      Branch: perl
1510            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
1511            ! config_h.SH configure.com epoc/config.sh mg.c pod/perltoc.pod
1512            ! vos/config.alpha.def vos/config.alpha.h vos/config.ga.def
1513            ! vos/config.ga.h win32/config.bc win32/config.gc
1514            ! win32/config.vc
1515 ____________________________________________________________________________
1516 [  8420] By: jhi                                   on 2001/01/12  18:34:31
1517         Log: Add sockatmark() to the todo list.
1518      Branch: perl
1519            ! Todo-5.6
1520 ____________________________________________________________________________
1521 [  8419] By: jhi                                   on 2001/01/12  18:09:46
1522         Log: Rename RETVAL_MAX to RETURN_UNLIMITED_NUMBER.
1523      Branch: perl
1524            ! op.c
1525 ____________________________________________________________________________
1526 [  8418] By: jhi                                   on 2001/01/12  18:05:30
1527         Log: Subject: Re: [PATCH] [ID 20001223.002] lvalues in list context
1528              From: Radu Greab <radu@netsoft.ro>
1529              Message-ID: <14943.15321.515713.119805@ix.netsoft.ro>
1530              Date: Fri, 12 Jan 2001 19:16:09 +0200 (EET)
1531      Branch: perl
1532            ! op.c t/pragma/sub_lval.t
1533 ____________________________________________________________________________
1534 [  8417] By: jhi                                   on 2001/01/12  16:09:09
1535         Log: Subject: [PATCH @8404] Consolidated lvalue sub changes
1536              From: Stephen McCamant <smcc@CSUA.Berkeley.EDU> 
1537              Date: Wed, 10 Jan 2001 21:36:51 -0800 (PST)
1538              Message-ID: <14941.16925.736415.785818@soda.csua.berkeley.edu>
1539      Branch: perl
1540            ! doop.c embed.h embed.pl op.c op.h opcode.h opcode.pl
1541            ! pod/perldiag.pod pod/perlintern.pod pod/perlsub.pod pp.c pp.h
1542            ! pp.sym pp_ctl.c pp_hot.c pp_proto.h proto.h t/lib/b.t
1543            ! t/pragma/sub_lval.t toke.c
1544 ____________________________________________________________________________
1545 [  8416] By: jhi                                   on 2001/01/12  15:42:06
1546         Log: Subject: RE: [PATCH] [ID 20001223.002] lvalues in list context
1547              From: "Richard Soderberg" <rs@crystalflame.net>
1548              Date: Fri, 12 Jan 2001 04:49:35 -0800
1549              Message-ID: <NAEKLNAAHLMBPMPNBMLEAELDCKAA.rs@crystalflame.net>
1550              
1551              Replace 10000 with RETVAL_MAX, and compute RETVAL_MAX
1552              according to the platform.
1553      Branch: perl
1554            ! op.c
1555 ____________________________________________________________________________
1556 [  8415] By: jhi                                   on 2001/01/12  15:33:41
1557         Log: One more UTF-8 fix from Inaba Hiroto.
1558      Branch: perl
1559            ! pp.c regexec.c t/pragma/utf8.t
1560 ____________________________________________________________________________
1561 [  8414] By: jhi                                   on 2001/01/12  15:30:18
1562         Log: Mea culpa: I botched up Hugo's "Tw" bug fix when applying it.
1563      Branch: perl
1564            ! regexec.c
1565 ____________________________________________________________________________
1566 [  8413] By: jhi                                   on 2001/01/12  15:22:10
1567         Log: Subject: [Patch perl@8375] pragma/subs.t ......FAILED tests 1-2 using Bison's parser
1568              From: "Roca, Ignasi" <ignasi.roca@fujitsu.siemens.es>
1569              Date: Thu, 11 Jan 2001 12:53:36 +0100
1570              Message-ID: <5930DC161690D2119667009027157547038123E1@madt009a.siemens.es>
1571      Branch: perl
1572            ! toke.c
1573 ____________________________________________________________________________
1574 [  8412] By: jhi                                   on 2001/01/12  15:20:25
1575         Log: Subject: [PATCH: perl@8342] updates to posix-bc hints file
1576              From: "Roca, Ignasi" <ignasi.roca@fujitsu.siemens.es>
1577              Date: Fri, 12 Jan 2001 14:37:55 +0100
1578              Message-ID: <5930DC161690D21196670090271575470384E3FC@madt009a.siemens.es>
1579      Branch: perl
1580            ! hints/posix-bc.sh
1581 ____________________________________________________________________________
1582 [  8411] By: jhi                                   on 2001/01/12  15:14:14
1583         Log: Subject: [PATCH: perl@8342]  op/regmesg FAILED at test 33 on EBCDIC machines
1584              From: "Roca, Ignasi" <ignasi.roca@fujitsu.siemens.es>
1585              Date: Fri, 12 Jan 2001 10:42:21 +0100
1586              Message-ID: <5930DC161690D211966700902715754703812F33@madt009a.siemens.es>
1587      Branch: perl
1588            ! t/op/regmesg.t
1589 ____________________________________________________________________________
1590 [  8410] By: jhi                                   on 2001/01/12  05:48:55
1591         Log: Subject: Re: [ID 20010101.004] Not OK: perl v5.7.0 +DEVEL8268 on i586-linux-64int-ld 2.2.17-21mdk (UNINSTALLED)
1592              From: Nicholas Clark <nick@ccl4.org> 
1593              Date: Sun, 7 Jan 2001 19:47:14 +0000
1594              Message-ID: <20010107194714.B1048@plum.flirble.org>
1595      Branch: perl
1596            ! t/op/numconvert.t
1597 ____________________________________________________________________________
1598 [  8409] By: jhi                                   on 2001/01/12  05:41:28
1599         Log: Integrate perlio.
1600      Branch: perl
1601           !> mg.c scope.h
1602 ____________________________________________________________________________
1603 [  8408] By: nick                                  on 2001/01/11  22:43:28
1604         Log: Remove variables that were used in experiments.
1605      Branch: perlio
1606            ! mg.c
1607 ____________________________________________________________________________
1608 [  8407] By: nick                                  on 2001/01/11  20:57:44
1609         Log: Catch die in %SIG handler and unblock the signal before re-dying.
1610              This make Linux work _without_ sigsetjmp().
1611              Turn off sigsetjmp() to see what else it does.
1612              May need Configure probe for sigprocmask() if anything has sigaction()
1613              but not sigprocmask().
1614      Branch: perlio
1615            ! mg.c scope.h
1616 ____________________________________________________________________________
1617 [  8406] By: nick                                  on 2001/01/11  19:32:07
1618         Log: Integrate mainline
1619      Branch: perlio
1620           !> Changes ext/IO/lib/IO/Socket/INET.pm ext/Socket/Socket.pm mg.c
1621           !> patchlevel.h perl.h regexec.c t/op/re_tests t/op/split.t
1622           !> t/op/substr.t
1623 ____________________________________________________________________________
1624 [  8405] By: jhi                                   on 2001/01/11  17:11:01
1625         Log: Fix UTF-8 lval substr().
1626      Branch: perl
1627            ! mg.c t/op/substr.t
1628 ____________________________________________________________________________
1629 [  8404] By: jhi                                   on 2001/01/11  05:13:58
1630         Log: Update Changes.
1631      Branch: perl
1632            ! Changes patchlevel.h
1633 ____________________________________________________________________________
1634 [  8403] By: jhi                                   on 2001/01/11  04:38:24
1635         Log: Subject: Re: [ID 20001029.005] Regex error: "cd. (A. Tw)" !~ /\((\w\. \w+)\)/
1636              From: Hugo <hv@crypt.compulink.co.uk>
1637              Date: Mon, 30 Oct 2000 01:33:26 +0000
1638              Message-Id: <200010300133.BAA10390@crypt.compulink.co.uk>
1639      Branch: perl
1640            ! regexec.c t/op/re_tests
1641 ____________________________________________________________________________
1642 [  8402] By: jhi                                   on 2001/01/11  04:26:12
1643         Log: Integrate perlio.
1644      Branch: perl
1645           !> scope.h util.c
1646 ____________________________________________________________________________
1647 [  8401] By: nick                                  on 2001/01/10  22:52:55
1648         Log: Allow control of 2nd arg to segsetjmp() via -DSCOPE_SAVES_SIGNAL_MASK.
1649              (So Alan and Ilya can try setting via hints.)
1650              Verified Linux "works" with it true and fails to re-enable SIGINT if false.
1651              Restoring sigmask in Perl_sighandler() if handler dies is not equivalent;
1652              doing the save everywhere seems to restart read() correctly, but just
1653              doing it once "round" the handler does not.
1654      Branch: perlio
1655            ! scope.h
1656 ____________________________________________________________________________
1657 [  8400] By: jhi                                   on 2001/01/10  21:57:54
1658         Log: Not defining PERL_PRESERVE_IVUV fixes only the op/inc problem
1659              of IRIX, HP-UX is unaffected.
1660      Branch: perl
1661            ! perl.h
1662 ____________________________________________________________________________
1663 [  8399] By: nick                                  on 2001/01/10  21:29:19
1664         Log: Safe fix for Simon's pclose() doing SvIVX of undef -> core bug.
1665      Branch: perlio
1666            ! util.c
1667 ____________________________________________________________________________
1668 [  8398] By: jhi                                   on 2001/01/10  20:55:31
1669         Log: Add ReuseAddr as a (preferred) alias for Reuse as we know
1670              also have ReusePort.
1671      Branch: perl
1672            ! ext/IO/lib/IO/Socket/INET.pm
1673 ____________________________________________________________________________
1674 [  8397] By: jhi                                   on 2001/01/10  20:50:57
1675         Log: Subject: [PATCH] add ReusePort option to IO::Socket::INET for better multicast support (resend)
1676              From: "Jeremy D. Zawodny" <jzawodn@yahoo-inc.com>
1677              Date: Wed, 10 Jan 2001 01:38:13 -0800
1678              Message-ID: <20010110013813.B41744@yahoo-inc.com>
1679      Branch: perl
1680            ! ext/IO/lib/IO/Socket/INET.pm
1681 ____________________________________________________________________________
1682 [  8396] By: jhi                                   on 2001/01/10  20:49:30
1683         Log: Subject: [PATCH] add SO_REUSEPORT to export list in Socket.pm for better multicast support (resend)
1684              From: "Jeremy D. Zawodny" <jzawodn@yahoo-inc.com>
1685              Date: Wed, 10 Jan 2001 01:37:32 -0800
1686              Message-ID: <20010110013732.A41744@yahoo-inc.com>
1687      Branch: perl
1688            ! ext/Socket/Socket.pm
1689 ____________________________________________________________________________
1690 [  8395] By: jhi                                   on 2001/01/10  20:41:37
1691         Log: Test for bug id 20010105.016 (fixed by #8378).
1692      Branch: perl
1693            ! t/op/split.t
1694 ____________________________________________________________________________
1695 [  8394] By: jhi                                   on 2001/01/10  20:26:32
1696         Log: Integrate perlio.
1697      Branch: perl
1698            ! util.c
1699 ____________________________________________________________________________
1700 [  8393] By: nick                                  on 2001/01/10  19:34:30
1701         Log: Back out Simon's pid hackery for now.
1702      Branch: perlio
1703            ! util.c
1704 ____________________________________________________________________________
1705 [  8392] By: nick                                  on 2001/01/10  19:23:13
1706         Log: Integrate mainline. (Builds but does not work - something broke pipes...)
1707      Branch: perlio
1708           !> (integrate 29 files)
1709 ____________________________________________________________________________
1710 [  8391] By: jhi                                   on 2001/01/10  18:43:15
1711         Log: Subject: [PATCH] Fix my_pclose segfault
1712              From: Simon Cozens <simon@cozens.net>
1713              Date: Wed, 10 Jan 2001 18:39:35 +0000
1714              Message-ID: <20010110183934.A25640@pembro26.pmb.ox.ac.uk>
1715      Branch: perl
1716            ! util.c
1717 ____________________________________________________________________________
1718 [  8390] By: jhi                                   on 2001/01/10  18:42:08
1719         Log: Subject:  [PATCH perl@8269] Opcode.XS, fix memory leak
1720              From: lane@DUPHY4.Physics.Drexel.Edu (Charles Lane)
1721              Date:     Wed, 10 Jan 2001 13:23:02 EST
1722              Message-Id: <010110132245.8129a@DUPHY4.Physics.Drexel.Edu>
1723      Branch: perl
1724            ! ext/Opcode/Opcode.xs
1725 ____________________________________________________________________________
1726 [  8389] By: jhi                                   on 2001/01/10  15:16:07
1727         Log: Turn off the integer preservation for now.
1728      Branch: perl
1729            ! perl.h
1730 ____________________________________________________________________________
1731 [  8388] By: jhi                                   on 2001/01/10  15:01:25
1732         Log: Few more IDE/editor nits from p5p.
1733      Branch: perl
1734            ! pod/perlfaq3.pod
1735 ____________________________________________________________________________
1736 [  8387] By: jhi                                   on 2001/01/10  06:53:16
1737         Log: Subject: Re: [ID 20010109.003] Patch 8138 broke a test in libwww
1738              To: "Andreas J. Koenig" <andreas.koenig@anima.de>
1739              Date: Tue, 9 Jan 2001 23:16:02 +0000
1740              Message-ID: <20010109231602.A81101@plum.flirble.org>
1741      Branch: perl
1742            ! sv.c
1743 ____________________________________________________________________________
1744 [  8386] By: jhi                                   on 2001/01/10  03:17:54
1745         Log: Test cases for #8385 (from Simon's "torture.pl")
1746      Branch: perl
1747            ! t/op/tr.t
1748 ____________________________________________________________________________
1749 [  8385] By: jhi                                   on 2001/01/10  03:17:11
1750         Log: Subject: Re: more UTF8 test suites and an UTF8 patch
1751              From: Inaba Hiroto <inaba@sdd.tokyo-sc.toshiba.co.jp>
1752              Date: Wed, 10 Jan 2001 11:39:39 +0900
1753              Message-Id: <10101100239.AA10002@tux0017.sdd.tokyo-sc.toshiba.co.jp>
1754              
1755              Some more UTF-8 tr cases fixed.
1756      Branch: perl
1757            ! doop.c
1758 ____________________________________________________________________________
1759 [  8384] By: jhi                                   on 2001/01/09  22:45:40
1760         Log: Allow the locale test needing POSIX and the taint test
1761              needing IPC::SysV to run under 'minitest' (basically,
1762              bail out if loading the extension fails)
1763      Branch: perl
1764            ! t/op/misc.t t/op/taint.t
1765 ____________________________________________________________________________
1766 [  8383] By: jhi                                   on 2001/01/09  21:36:04
1767         Log: Subject: [PATCH @8382] Remove FileHandle/IO dependence in t/io/openpid.t
1768              From: Stephen McCamant <smcc@CSUA.Berkeley.EDU>
1769              Date: Tue,  9 Jan 2001 13:33:22 -0800 (PST)
1770              Message-ID: <14939.33475.474459.147429@soda.csua.berkeley.edu>
1771      Branch: perl
1772            ! t/io/openpid.t
1773 ____________________________________________________________________________
1774 [  8382] By: jhi                                   on 2001/01/09  21:06:08
1775         Log: save_delete(), err, SAVEDELETE() fixes from Charles Lane.
1776              Should finish up the bug id 20001205.022.
1777      Branch: perl
1778            ! pp.c pp_hot.c scope.c
1779 ____________________________________________________________________________
1780 [  8381] By: jhi                                   on 2001/01/09  18:27:43
1781         Log: Subject: Re: [PATCH: perl@8342] comp/proto..........FAILED tests 112-123
1782              From: Andy Dougherty <doughera@lafayette.edu>
1783              Date: Tue, 9 Jan 2001 12:11:16 -0500 (EST)
1784              Message-ID: <Pine.SOL.4.10.10101091144440.13124-100000@maxwell.phys.lafayette.edu>
1785              
1786              More robust yacc/bison error detection.
1787      Branch: perl
1788            ! t/comp/proto.t
1789 ____________________________________________________________________________
1790 [  8380] By: jhi                                   on 2001/01/09  15:21:38
1791         Log: Subject:  [PATCH] make t/op/misc.t work on VMS
1792              From: lane@DUPHY4.Physics.Drexel.Edu (Charles Lane)
1793              Date:     Tue, 9 Jan 2001 07:53:55 EST
1794              Message-Id: <010109075323.91c8f@DUPHY4.Physics.Drexel.Edu> 
1795      Branch: perl
1796            ! t/op/misc.t vms/test.com
1797 ____________________________________________________________________________
1798 [  8379] By: jhi                                   on 2001/01/09  15:20:38
1799         Log: Subject: [ID 20001230.003] UTF-8 tr still hurts
1800              From: jhi@cc.hut.fi
1801              Date: Sat, 30 Dec 2000 22:57:32 +0200 (EET)
1802              Message-Id: <200012302057.WAA31168@alpha.hut.fi>
1803              
1804              The #8378 fixed this.
1805      Branch: perl
1806            ! t/op/tr.t
1807 ____________________________________________________________________________
1808 [  8378] By: jhi                                   on 2001/01/09  15:05:32
1809         Log: Subject: One more patch for UTF8 
1810              From: Inaba Hiroto <inaba@st.rim.or.jp>
1811              Date: Tue, 09 Jan 2001 01:04:32 +0900
1812              Message-ID: <3A59E510.52BAB5B9@st.rim.or.jp>
1813              
1814              UTF-8 fixes for 'x' and tr///.
1815      Branch: perl
1816            ! doop.c embed.h embed.pl op.c pod/perlapi.pod pp.c proto.h
1817            ! regcomp.c regexec.c toke.c utf8.c
1818 ____________________________________________________________________________
1819 [  8377] By: jhi                                   on 2001/01/09  14:32:17
1820         Log: Make explicit our assumption that (for now) "\x{80}" produces UTF-8.
1821      Branch: perl
1822            ! t/op/length.t
1823 ____________________________________________________________________________
1824 [  8376] By: jhi                                   on 2001/01/09  04:32:32
1825         Log: integrate changes #7775, #8316, #8316 from mainline
1826      Branch: maint-5.6/perl
1827            ! hints/solaris_2.sh
1828 ____________________________________________________________________________
1829 [  8375] By: jhi                                   on 2001/01/09  04:26:43
1830         Log: Update Changes.
1831      Branch: perl
1832            ! Changes patchlevel.h
1833 ____________________________________________________________________________
1834 [  8374] By: jhi                                   on 2001/01/09  04:14:32
1835         Log: IDE/editor section tweaking.
1836      Branch: perl
1837            ! pod/perlfaq3.pod
1838 ____________________________________________________________________________
1839 [  8373] By: jhi                                   on 2001/01/09  02:38:26
1840         Log: Subject: [PATCH: perl@8342] updates to OS/390 hints file
1841              From: Peter Prymmer <pvhp@forte.com>
1842              Date: Mon, 8 Jan 2001 18:06:51 -0800 (PST)
1843              Message-ID: <Pine.OSF.4.10.10101081805530.239173-100000@aspara.forte.com>
1844              
1845              In preparation os OS/390 dynamic loading.
1846      Branch: perl
1847            ! README.os390 hints/os390.sh
1848 ____________________________________________________________________________
1849 [  8372] By: jhi                                   on 2001/01/09  00:24:30
1850         Log: Integrate with perlio.
1851      Branch: perl
1852           !> embed.h embed.pl gv.c mg.c perl.h proto.h sv.c
1853 ____________________________________________________________________________
1854 [  8371] By: nick                                  on 2001/01/08  23:54:33
1855         Log: Fix "scalars leaked" bugs caused by overload magic
1856              (Highlighted by Ilya's DESTROY optimization.)
1857      Branch: perlio
1858            ! embed.h embed.pl gv.c mg.c perl.h proto.h sv.c
1859 ____________________________________________________________________________
1860 [  8370] By: nick                                  on 2001/01/08  20:19:41
1861         Log: Integrate mainline
1862      Branch: perlio
1863           !> README.epoc dump.c ext/GDBM_File/GDBM_File.xs gv.c
1864           !> lib/Getopt/Long.pm mg.c op.c scope.c sv.c t/io/pipe.t
1865           !> t/op/64bitint.t
1866 ____________________________________________________________________________
1867 [  8369] By: jhi                                   on 2001/01/08  17:30:52
1868         Log: save_delete() Safefree() doesn't (anymore?) work with shared
1869              strings, one test failure in op/misc and almost all of lib/b.
1870              (Outcomments #8369.)
1871      Branch: perl
1872            ! scope.c
1873 ____________________________________________________________________________
1874 [  8368] By: jhi                                   on 2001/01/08  14:47:10
1875         Log: (Outcommented by #8369.)
1876              
1877              Subject: Re: Perl BugID 20001205.022 ---- save_delete
1878              From: Simon Cozens <simon@cozens.net>
1879              Date: Sat, 6 Jan 2001 11:48:40 +0000
1880              Message-ID: <20010106114840.A13227@deep-dark-truthful-mirror.perlhacker.org>
1881              
1882              The save_delete() does need the Safefree.
1883      Branch: perl
1884            ! scope.c
1885 ____________________________________________________________________________
1886 [  8367] By: bailey                                on 2001/01/08  08:53:52
1887         Log: Once again syncing after too long an absence
1888      Branch: vmsperl
1889           +> (branch 55 files)
1890            - MAINTAIN fix_pl vos/config.def vos/config.h
1891            - vos/config_h.SH_orig
1892           !> (integrate 498 files)
1893 ____________________________________________________________________________
1894 [  8366] By: jhi                                   on 2001/01/08  02:42:59
1895         Log: Subject: [ID 20010107.012] [PATCH] 18446744073709551616e0 was treated as UV=18446744073709551615
1896              From: nick@ccl4.org
1897              Date: Sun, 7 Jan 2001 21:07:18 +0000
1898              Message-Id: <20010107210717.D1048@plum.flirble.org>
1899      Branch: perl
1900            ! sv.c t/op/64bitint.t
1901 ____________________________________________________________________________
1902 [  8365] By: jhi                                   on 2001/01/08  02:35:16
1903         Log: Subject: [PATCH] environ nit
1904              From: Simon Cozens <simon@cozens.net>
1905              Date: Sun, 7 Jan 2001 17:57:07 +0000
1906              Message-ID: <20010107175707.A2013@pembro26.pmb.ox.ac.uk>
1907              
1908              Use environ only if we have it.
1909      Branch: perl
1910            ! mg.c
1911 ____________________________________________________________________________
1912 [  8364] By: jhi                                   on 2001/01/08  02:24:51
1913         Log: Replace #6721, GDBM, system malloc, and LEAKTEST.
1914      Branch: perl
1915            ! ext/GDBM_File/GDBM_File.xs
1916 ____________________________________________________________________________
1917 [  8363] By: jhi                                   on 2001/01/08  02:19:24
1918         Log: Subject: [PATCH @8344] Fix spurious GVSV OPpOUR_INTRO
1919              From: Stephen McCamant <smcc@CSUA.Berkeley.EDU>
1920              Date: Sat,  6 Jan 2001 15:25:02 -0800 (PST)
1921              Message-ID: <14935.41722.239364.55174@soda.csua.berkeley.edu>
1922      Branch: perl
1923            ! dump.c op.c
1924 ____________________________________________________________________________
1925 [  8362] By: jhi                                   on 2001/01/08  02:17:43
1926         Log: Subject: [patch] xsub AUTOLOAD fix/optimization
1927              From: Doug MacEachern <dougm@covalent.net>
1928              Date: Sat, 6 Jan 2001 09:30:05 -0800 (PST)
1929              Message-ID: <Pine.LNX.4.10.10101060924280.24460-100000@mojo.covalent.net>
1930              
1931              Allow AUTOLOAD to be an xsub and allow such xsubs
1932              to avoid use of $AUTOLOAD.
1933      Branch: perl
1934            ! gv.c
1935 ____________________________________________________________________________
1936 [  8361] By: jhi                                   on 2001/01/08  02:16:07
1937         Log: Subject: Re: [PATCH] Re: [ID 20010105.002] close() on process filehandle leaves defunct process
1938              From: Radu Greab <radu@netsoft.ro>
1939              Date: Sun, 7 Jan 2001 03:16:55 +0200 (EET)
1940              Message-ID: <14935.50055.838449.408835@ix.netsoft.ro>
1941              
1942              No need for the potentially unportable $SIG{CHLD}.
1943      Branch: perl
1944            ! t/io/pipe.t
1945 ____________________________________________________________________________
1946 [  8360] By: jhi                                   on 2001/01/08  01:58:23
1947         Log: Update to Getopt::Long 2.24_02, from Johan Vromans.
1948      Branch: perl
1949            ! lib/Getopt/Long.pm
1950 ____________________________________________________________________________
1951 [  8359] By: jhi                                   on 2001/01/08  01:55:44
1952         Log: Integrate perlio.
1953      Branch: perl
1954           !> ext/Encode/Encode.xs lib/ExtUtils/typemap perl.c perlio.c
1955           !> perlio.h pp.c pp_hot.c pp_sys.c sv.c t/lib/tie-refhash.t
1956           !> utf8.c win32/Makefile
1957 ____________________________________________________________________________
1958 [  8358] By: jhi                                   on 2001/01/07  21:16:50
1959         Log: Update the EPOC cross SDK URL.
1960      Branch: perl
1961            ! README.epoc
1962 ____________________________________________________________________________
1963 [  8357] By: jhi                                   on 2001/01/07  21:16:09
1964         Log: Update the EPOC cross SDK URL.
1965      Branch: maint-5.6/perl
1966            ! README.epoc
1967 ____________________________________________________________________________
1968 [  8356] By: nick                                  on 2001/01/06  21:47:52
1969         Log: FILE * in XS code for PerlIO world:
1970              - make PERLIO_NOT_STDIO 0 (co-existance) default for non PERL_CORE case.
1971              - Add FILE * T_STDIO typemap.
1972              - Finish PerlIO_findFILE() and PerlIO_extprtFILE()
1973      Branch: perlio
1974            ! lib/ExtUtils/typemap perlio.c perlio.h
1975 ____________________________________________________________________________
1976 [  8355] By: jhi                                   on 2001/01/06  20:27:15
1977         Log: integrate change #8336 from mainline
1978              
1979              Scoping of %^H still broken in both perl@8269 and perl-5.6.1-TRIAL1
1980      Branch: maint-5.6/perl
1981            ! hv.c
1982 ____________________________________________________________________________
1983 [  8354] By: jhi                                   on 2001/01/06  20:24:29
1984         Log: Subject: [PATCH 5.6.1-TRIAL1 and @8223]; was Re: Perlbug 20000322.006 status update
1985              From: Robin Barker <rmb1@cise.npl.co.uk>
1986              Date: Fri, 22 Dec 2000 12:17:38 GMT
1987              Message-Id: <200012221217.MAA21332@tempest.npl.co.uk>
1988              
1989              The patch reformats some long =item lines so they give
1990              correct output via pod2man | nroff -man
1991              
1992              Subject: [PATCH 5.[67].1]; as Re: [PATCH 5.6.1-TRIAL1 and @8223]; was Re: Perlbug 20000322.006 status update
1993              From: Robin Barker <rmb1@cise.npl.co.uk>
1994              Date: Tue, 2 Jan 2001 15:35:03 GMT
1995              Message-Id: <200101021535.PAA15161@tempest.npl.co.uk>
1996              
1997              Here is a _further_ patch which corrects a few more errors:
1998              * an empty C<=item> in CPAN.pm
1999              * patching the wrong file (pod/perlamiga.pod not README.amiga)
2000              * leaving empty C<=item>s which formatted incorrectly
2001              * over long C<=item>s revealed by latest patch to Pod::Man
2002      Branch: maint-5.6/perl
2003            ! README.amiga lib/CGI.pm lib/CPAN.pm lib/Pod/Select.pm
2004            ! lib/Text/ParseWords.pm lib/Win32.pod pod/perl.pod
2005            ! pod/perl5004delta.pod pod/perl5005delta.pod pod/perlapi.pod
2006            ! pod/perldelta.pod pod/perldiag.pod pod/perlembed.pod
2007            ! pod/perlfaq4.pod pod/perllocale.pod pod/perlmodlib.pod
2008            ! pod/perlrequick.pod pod/perlretut.pod pod/perlsub.pod
2009 ____________________________________________________________________________
2010 [  8353] By: jhi                                   on 2001/01/06  20:21:10
2011         Log: integrate changes #7980, 7990, 8056, 8057 from mainline
2012              
2013              UTF-8 hash keys.
2014      Branch: maint-5.6/perl
2015            ! embed.h embed.pl hv.c hv.h perlapi.c proto.h t/op/each.t
2016 ____________________________________________________________________________
2017 [  8352] By: jhi                                   on 2001/01/06  20:18:44
2018         Log: Forgotten from #8438.
2019      Branch: maint-5.6/perl
2020            ! epoc/epocish.h
2021 ____________________________________________________________________________
2022 [  8351] By: jhi                                   on 2001/01/06  20:18:12
2023         Log: Forgotten from #8347.
2024      Branch: maint-5.6/perl
2025            ! config_h.SH
2026 ____________________________________________________________________________
2027 [  8350] By: jhi                                   on 2001/01/06  20:00:19
2028         Log: Thinko in #8347.
2029      Branch: maint-5.6/perl
2030            ! regcomp.c
2031 ____________________________________________________________________________
2032 [  8349] By: jhi                                   on 2001/01/06  18:05:30
2033         Log: Copy the FAQ3 IDE section from the development branch,
2034              changes originally by Peter Prymmer.
2035      Branch: maint-5.6/perl
2036            ! pod/perlfaq3.pod
2037 ____________________________________________________________________________
2038 [  8348] By: jhi                                   on 2001/01/06  18:03:02
2039         Log: EPOC updates for TRIAL1.
2040              
2041              Subject: [5.6.1 trial1] EPOC update
2042              From: Olaf Flebbe <O.Flebbe@science-computing.de>
2043              Date: Sun, 31 Dec 2000 16:04:52 +0100 (CET)
2044              Message-ID: <Pine.LNX.4.02.10012311603040.14097-100000@milkyway.science-computing.de> 
2045              
2046              Subject: epoc patch2 for perl-5.6.1-trial1
2047              From: Olaf Flebbe <O.Flebbe@science-computing.de>
2048              Date: Sat, 6 Jan 2001 13:55:53 +0100 (CET)
2049              Message-ID: <Pine.LNX.4.02.10101061355220.26469-100000@milkyway.science-computing.de> 
2050      Branch: maint-5.6/perl
2051            ! README.epoc epoc/config.sh epoc/createpkg.pl epoc/epoc.c
2052            ! epoc/epocish.c
2053 ____________________________________________________________________________
2054 [  8347] By: jhi                                   on 2001/01/06  17:29:10
2055         Log: integrate changes #7710,7824,7973 from mainline,
2056              plus VMS nits from Peter Prymmer and Dan Sugalski.
2057              
2058              AIX 4.2 (using latest patchlevels on 20001130) has a broken bind
2059              library (getprotobyname and getprotobynumber are outversioned by
2060              the same calls in libc, at least for xlc version 3.
2061              
2062              Add HAS_SBRK_PROTO.
2063              
2064              Fixes for signedness warnings noticed by VMSperlers.
2065      Branch: maint-5.6/perl
2066            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
2067            ! configure.com epoc/config.sh hints/aix.sh malloc.c regcomp.c
2068            ! sv.c vms/descrip_mms.template vos/config.alpha.def
2069            ! vos/config.alpha.h vos/config.ga.def vos/config.ga.h
2070            ! win32/config.bc win32/config.gc win32/config.vc
2071 ____________________________________________________________________________
2072 [  8346] By: nick                                  on 2001/01/06  14:36:01
2073         Log: Fixup accumulated integrate muddles (perlio == devperl again)
2074      Branch: perlio
2075            ! ext/Encode/Encode.xs perl.c pp_sys.c t/lib/tie-refhash.t
2076 ____________________________________________________________________________
2077 [  8345] By: nick                                  on 2001/01/06  14:24:58
2078         Log: Integrate mainline
2079      Branch: perlio
2080           !> (integrate 55 files)
2081 ____________________________________________________________________________
2082 [  8344] By: jhi                                   on 2001/01/06  02:24:02
2083         Log: Subject: [patch] PerlIO_cleanup() prototype
2084              From: Doug MacEachern <dougm@covalent.net>
2085              Date: Fri, 5 Jan 2001 18:15:31 -0800 (PST)
2086              Message-ID: <Pine.LNX.4.10.10101051813220.340-100000@mojo.covalent.net>
2087      Branch: perl
2088            ! perlio.h
2089 ____________________________________________________________________________
2090 [  8343] By: jhi                                   on 2001/01/06  01:04:09
2091         Log: IRIX compiler noticed that the bof initialization might be
2092              bypassed by control flow.
2093      Branch: perl
2094            ! toke.c
2095 ____________________________________________________________________________
2096 [  8342] By: jhi                                   on 2001/01/06  00:10:48
2097         Log: Update Changes.
2098      Branch: perl
2099            ! Changes patchlevel.h
2100 ____________________________________________________________________________
2101 [  8341] By: jhi                                   on 2001/01/05  23:52:33
2102         Log: Add a note about EBCDIC versus UTF-8 to a potential problem spot.
2103      Branch: perl
2104            ! toke.c
2105 ____________________________________________________________________________
2106 [  8340] By: jhi                                   on 2001/01/05  22:44:08
2107         Log: Subject: [PATCH] Re: [ID 20010105.002] close() on process filehandle leaves defunct process
2108              From: Radu Greab <radu@netsoft.ro>
2109              Date: Fri, 5 Jan 2001 21:04:33 +0200 (EET)
2110              Message-ID: <14934.6849.742435.23178@ix.netsoft.ro>
2111      Branch: perl
2112            ! t/io/pipe.t util.c
2113 ____________________________________________________________________________
2114 [  8339] By: jhi                                   on 2001/01/05  22:35:17
2115         Log: Subject: [PATCH] format and rewording in perlfaq.pod
2116              From: Robin Barker <rmb1@cise.npl.co.uk>
2117              Date: Fri, 5 Jan 2001 18:51:20 GMT
2118              Message-Id: <200101051851.SAA03310@tempest.npl.co.uk>
2119      Branch: perl
2120            ! pod/perlfaq.pod
2121 ____________________________________________________________________________
2122 [  8338] By: jhi                                   on 2001/01/05  22:31:17
2123         Log: Subject: [patch: perl@8327] have perlbug's Save to File respect -F flag
2124              From: Peter Prymmer <pvhp@forte.com>
2125              Date: Fri, 5 Jan 2001 14:02:13 -0800 (PST)
2126              Message-ID: <Pine.OSF.4.10.10101051357400.28294-100000@aspara.forte.com>
2127      Branch: perl
2128            ! utils/perlbug.PL
2129 ____________________________________________________________________________
2130 [  8337] By: jhi                                   on 2001/01/05  18:15:11
2131         Log: Subject: [PATCH 5.7.1/Configure] failure to set src='.'
2132              From: Robin Barker <rmb1@cise.npl.co.uk>
2133              Date: Tue, 2 Jan 2001 15:24:07 GMT
2134              Message-Id: <200101021524.PAA15145@tempest.npl.co.uk>
2135              
2136              If you call configure as C<./Configure> or C<sh ./Configure>,
2137              $src is set to the absolute path name, not '.'.
2138              
2139              This, in turn, means -Dmksymlink tries to do its stuff because
2140              it does not think it is in the src directory.
2141              
2142              (plus a metaconfig nitfix)
2143      Branch: metaconfig
2144            ! U/compline/ccflags.U U/modified/src.U
2145      Branch: perl
2146            ! Configure config_h.SH
2147 ____________________________________________________________________________
2148 [  8336] By: jhi                                   on 2001/01/05  17:48:32
2149         Log: Subject: Re: [Fwd: Scoping of %^H still broken in both perl@8269 and perl-5.6.1-TRIAL1]
2150              From: Alan Burlison <Alan.Burlison@uk.sun.com>
2151              Message-ID: <3A5606C4.473D2226@uk.sun.com>
2152              Date: Fri, 05 Jan 2001 17:39:16 +0000
2153      Branch: perl
2154            ! hv.c
2155 ____________________________________________________________________________
2156 [  8335] By: jhi                                   on 2001/01/05  16:05:44
2157         Log: Upgrade to Getopt::Long 2.24_01, from Johan Vromans.
2158      Branch: perl
2159            ! lib/Getopt/Long.pm
2160 ____________________________________________________________________________
2161 [  8334] By: jhi                                   on 2001/01/05  16:00:51
2162         Log: Subject: PATCH 5.6.1 & blead 8327 -- workaround for t/io/fs.t
2163              From: Raphael Manfredi <Raphael_Manfredi@pobox.com>
2164              Date: Fri, 05 Jan 2001 13:46:51 +0100
2165              Message-ID: <13693.978698811@nice.ram.loc>
2166              
2167              Apparently, the glibc2.2 + linux 2.4.0 + NFS combination prevent
2168              accurate reading of the "atime".  
2169      Branch: perl
2170            ! t/io/fs.t
2171 ____________________________________________________________________________
2172 [  8333] By: jhi                                   on 2001/01/05  15:57:37
2173         Log: Subject: [PATCH] Re: ebcdic <-> ascii tables interjected in uv <-> utf8 considered harmful 
2174              From: Simon Cozens <simon@cozens.net>
2175              Date: Fri, 8 Dec 2000 13:33:31 +0000
2176              Message-ID: <20001208133331.A11535@deep-dark-truthful-mirror.perlhacker.org> 
2177              
2178              A lost patch fragment.
2179      Branch: perl
2180            ! doop.c
2181 ____________________________________________________________________________
2182 [  8332] By: jhi                                   on 2001/01/05  15:40:42
2183         Log: Do away with strncpy() and a fixed length buffer.
2184      Branch: perl
2185            ! utf8.c
2186 ____________________________________________________________________________
2187 [  8331] By: jhi                                   on 2001/01/05  15:03:07
2188         Log: Tests for #8329 and #8330.
2189      Branch: perl
2190            ! t/op/bop.t
2191 ____________________________________________________________________________
2192 [  8330] By: jhi                                   on 2001/01/05  15:02:38
2193         Log: "\x{FF}\xFF" was broken, the \xFF was appended in its
2194              raw 8-bit form to the UTF-8 string.
2195      Branch: perl
2196            ! toke.c
2197 ____________________________________________________________________________
2198 [  8329] By: jhi                                   on 2001/01/05  14:55:13
2199         Log: Subject: [PATCH perl@8327] strings with \x{..} in the middle are corrupted 
2200              From: "Roca, Ignasi" <ignasi.roca@fujitsu.siemens.es>
2201              Date: Fri, 5 Jan 2001 12:28:52 +0100
2202              Message-ID: <5930DC161690D211966700902715754703738F96@madt009a.siemens.es>
2203              
2204              UTF-8 parsing fix that seems to be needed for EBCDIC, in ASCII
2205              no effect.  (changed the strncpy() to Copy())
2206      Branch: perl
2207            ! toke.c
2208 ____________________________________________________________________________
2209 [  8328] By: jhi                                   on 2001/01/05  06:44:27
2210         Log: UTF-8 cleanup.
2211      Branch: perl
2212            ! doop.c op.c pp.c pp_ctl.c pp_hot.c pp_sys.c regcomp.c
2213            ! regexec.c sv.c toke.c
2214 ____________________________________________________________________________
2215 [  8327] By: jhi                                   on 2001/01/05  01:11:29
2216         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')
2217              From: Radu Greab <radu@netsoft.ro>
2218              Message-ID: <14933.5458.672637.641215@ix.netsoft.ro>
2219              Date: Fri, 5 Jan 2001 02:29:06 +0200 (EET)
2220              
2221              Cleans up Harness to not use FileHandle, which uses IO.
2222      Branch: perl
2223            ! lib/Test/Harness.pm t/lib/ftmp-mktemp.t t/lib/ftmp-posix.t
2224 ____________________________________________________________________________
2225 [  8326] By: jhi                                   on 2001/01/05  00:56:37
2226         Log: Update Changes.
2227      Branch: perl
2228            ! Changes patchlevel.h
2229 ____________________________________________________________________________
2230 [  8325] By: jhi                                   on 2001/01/05  00:53:18
2231         Log: Subject: Re: [patch bug 20010103.019] Re: perl@8269: failure to build on NT 4.0.1381 with MSVC (fwd)
2232              From: Peter Prymmer <pvhp@forte.com>
2233              Date: Thu, 4 Jan 2001 14:20:15 -0800 (PST)
2234              Message-ID: <Pine.OSF.4.10.10101041406420.492782-100000@aspara.forte.com>
2235              
2236              plus a couple more tailing whitespace removals.
2237      Branch: perl
2238            ! win32/Makefile
2239 ____________________________________________________________________________
2240 [  8324] By: jhi                                   on 2001/01/05  00:47:39
2241         Log: Add some Unicode chop() tests.
2242      Branch: perl
2243            ! t/op/chop.t
2244 ____________________________________________________________________________
2245 [  8323] By: jhi                                   on 2001/01/05  00:47:23
2246         Log: Unify UTF-8 malformedness handling.
2247      Branch: perl
2248            ! doop.c pp.c sv.c toke.c utf8.c utf8.h
2249 ____________________________________________________________________________
2250 [  8322] By: jhi                                   on 2001/01/04  22:21:54
2251         Log: The new $issymlink was unknown to Mksymlinks.
2252      Branch: metaconfig/U/perl
2253            ! Mksymlinks.U issymlink.U
2254      Branch: perl
2255            ! Configure config_h.SH
2256 ____________________________________________________________________________
2257 [  8321] By: jhi                                   on 2001/01/04  21:51:05
2258         Log: The test didn't work under the core test framework.
2259      Branch: perl
2260            ! t/lib/st-lock.t
2261 ____________________________________________________________________________
2262 [  8320] By: jhi                                   on 2001/01/04  21:14:22
2263         Log: DB3 NDBM/ODBM emulation tweaks from Stanislav Brabec <utx@penguin.cz>.
2264      Branch: perl
2265            ! INSTALL ext/NDBM_File/NDBM_File.xs ext/ODBM_File/ODBM_File.xs
2266 ____________________________________________________________________________
2267 [  8319] By: jhi                                   on 2001/01/04  20:46:17
2268         Log: Typo in #8312 when manually appying a problematic patch fragment.
2269      Branch: perl
2270            ! ext/Storable/Storable.xs
2271 ____________________________________________________________________________
2272 [  8318] By: jhi                                   on 2001/01/04  20:43:01
2273         Log: The $sh_c didn't fly.
2274      Branch: metaconfig
2275            ! U/compline/ccflags.U U/compline/d_keepsig.U U/modified/Head.U
2276            ! U/modified/Loc.U U/modified/myhostname.U
2277            ! U/modified/spitshell.U
2278      Branch: metaconfig/U/perl
2279            ! issymlink.U
2280      Branch: perl
2281            ! Configure config_h.SH
2282 ____________________________________________________________________________
2283 [  8317] By: jhi                                   on 2001/01/04  19:58:01
2284         Log: AIX builtin test -h is broken, changes based on
2285              
2286              Subject: [PATCH] 8297. Symlink stuff breaks on AIX 4 bsh
2287              Date: Tue, 02 Jan 2001 11:24:39 +0100
2288              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
2289              Message-Id: <20010102093747.A6F7.H.M.BRAND@hccnet.nl>
2290      Branch: metaconfig
2291            + U/modified/spitshell.U
2292            ! U/compline/ccflags.U U/compline/d_keepsig.U U/modified/Head.U
2293            ! U/modified/Loc.U U/modified/myhostname.U
2294      Branch: metaconfig/U/perl
2295            ! Mksymlinks.U issymlink.U
2296      Branch: perl
2297            ! Configure
2298 ____________________________________________________________________________
2299 [  8316] By: jhi                                   on 2001/01/04  19:02:22
2300         Log: Subject: [PATCH] Re: New attempt on hints/solaris_2.sh
2301              From: Andy Dougherty <doughera@lafayette.edu>
2302              Message-ID: <Pine.SOL.4.10.10101031518320.28840-100000@maxwell.phys.lafayette.edu>
2303              Date: Wed, 3 Jan 2001 15:36:06 -0500 (EST)
2304              
2305              Beware of GNU ld.
2306      Branch: perl
2307            ! hints/solaris_2.sh
2308 ____________________________________________________________________________
2309 [  8315] By: jhi                                   on 2001/01/04  18:56:48
2310         Log: From: Lupe Christoph <lupe@lupe-christoph.de>
2311              Subject: Re: [PATCH 5.7.1/Configure] failure to set src='.'
2312              Date: Wed, 3 Jan 2001 07:58:51 +0100
2313              Message-ID: <20010103075851.P4594@alanya.lupe-christoph.de>
2314      Branch: perl
2315            ! hints/solaris_2.sh
2316 ____________________________________________________________________________
2317 [  8314] By: jhi                                   on 2001/01/04  18:54:07
2318         Log: Subject: Re: [PATCH @8269] Continue blocks and B::Deparse
2319              From: Stephen McCamant <smcc@CSUA.Berkeley.EDU>
2320              Date: Wed,  3 Jan 2001 13:48:04 -0800 (PST)
2321              Message-ID: <14931.40265.379608.910008@soda.csua.berkeley.edu>
2322              
2323              Doc tweak on #8313.
2324      Branch: perl
2325            ! ext/B/B/Deparse.pm
2326 ____________________________________________________________________________
2327 [  8313] By: jhi                                   on 2001/01/04  18:52:27
2328         Log: Subject: [PATCH @8269] Continue blocks and B::Deparse
2329              Date: Wed,  3 Jan 2001 13:31:53 -0800 (PST)
2330              From: Stephen McCamant <smcc@CSUA.Berkeley.EDU>
2331              Message-ID: <14931.37732.62835.279605@soda.csua.berkeley.edu>
2332              
2333              Make the peephole optimizer to bypass more null ops and
2334              and rewrite the deparse handling of continue blocks.
2335      Branch: perl
2336            ! ext/B/B/Deparse.pm op.c op.h t/lib/b.t
2337 ____________________________________________________________________________
2338 [  8312] By: jhi                                   on 2001/01/04  18:47:39
2339         Log: Upgrade to Storable 1.0.7, from Raphael Manfredi.
2340      Branch: perl
2341            ! ext/Storable/ChangeLog ext/Storable/Makefile.PL
2342            ! ext/Storable/Storable.pm ext/Storable/Storable.xs
2343            ! t/lib/st-lock.t
2344 ____________________________________________________________________________
2345 [  8311] By: jhi                                   on 2001/01/04  18:36:08
2346         Log: Add a new MakeMaker variable PM_FILTER that defines a Unix
2347              filter to be run on each .pm during the pm_to_blib() phase,
2348              a fixed version of
2349              
2350              Subject: PATCH (blead 8269) ExtUtils::MakeMaker
2351              From: Raphael Manfredi <Raphael_Manfredi@pobox.com>
2352              Date: Wed, 03 Jan 2001 22:01:30 +0100
2353              Message-ID: <5296.978555690@nice.ram.loc>
2354      Branch: perl
2355            ! lib/ExtUtils/Install.pm lib/ExtUtils/MM_Unix.pm
2356            ! lib/ExtUtils/MM_VMS.pm lib/ExtUtils/MM_Win32.pm
2357            ! lib/ExtUtils/MakeMaker.pm
2358 ____________________________________________________________________________
2359 [  8310] By: jhi                                   on 2001/01/04  18:32:54
2360         Log: Subject: [PATCH 5.[67].1]; as Re: [PATCH 5.6.1-TRIAL1 and @8223]; was Re: Perlbug 20000322.006 status update
2361              From: Robin Barker <rmb1@cise.npl.co.uk>
2362              Date: Tue, 2 Jan 2001 15:35:03 GMT
2363              Message-Id: <200101021535.PAA15161@tempest.npl.co.uk>
2364      Branch: perl
2365            ! README.amiga lib/CPAN.pm lib/Win32.pod pod/perl56delta.pod
2366            ! pod/perlrequick.pod
2367 ____________________________________________________________________________
2368 [  8309] By: jhi                                   on 2001/01/04  18:29:07
2369         Log: Subject: Re: [patch] static-ize XS()
2370              From: Doug MacEachern <dougm@covalent.net>
2371              Date: Mon, 1 Jan 2001 15:26:01 -0800 (PST)
2372              Message-ID: <Pine.LNX.4.10.10101011523560.3379-100000@mojo.covalent.net>
2373              
2374              Provide prototypes for the XS functions.
2375      Branch: perl
2376            ! lib/ExtUtils/xsubpp
2377 ____________________________________________________________________________
2378 [  8308] By: jhi                                   on 2001/01/04  18:27:44
2379         Log: Subject: [patch] typemap =~ s/croak/Perl_croak/
2380              From: Doug MacEachern <dougm@covalent.net>
2381              Date: Mon, 1 Jan 2001 11:41:57 -0800 (PST)
2382              Message-ID: <Pine.LNX.4.10.10101011139570.3379-100000@mojo.covalent.net>
2383      Branch: perl
2384            ! lib/ExtUtils/typemap
2385 ____________________________________________________________________________
2386 [  8307] By: jhi                                   on 2001/01/04  18:25:25
2387         Log: Subject: Re: [patch] MM_Unix cpprun shortcut
2388              From: Doug MacEachern <dougm@covalent.net>
2389              Date: Wed, 3 Jan 2001 20:09:57 -0800 (PST)
2390              Message-ID: <Pine.LNX.4.10.10101032009330.280-100000@mojo.covalent.net>
2391              
2392              Add a .c.i: MakeMaker make rule to create cpreprocessed outputs.
2393      Branch: perl
2394            ! lib/ExtUtils/MM_Unix.pm
2395 ____________________________________________________________________________
2396 [  8306] By: jhi                                   on 2001/01/04  18:23:00
2397         Log: Subject: [PATCH perl@8269] Corrections for Perl_yylex_r (used by a reentrant parser as Bison)
2398              From: "Roca, Ignasi" <ignasi.roca@fujitsu.siemens.es>
2399              Date: Thu, 4 Jan 2001 12:47:10 +0100 
2400              Message-ID: <5930DC161690D21196670090271575470370111A@madt009a.siemens.es>
2401              
2402              The toke.c part only, patching embed.h and proto.h is futile.
2403      Branch: perl
2404            ! toke.c
2405 ____________________________________________________________________________
2406 [  8305] By: jhi                                   on 2001/01/04  18:05:51
2407         Log: Subject: [PATCH perl@8269] scanning two hex-constants fails on EBCDIC environment (script length.t)
2408              From: "Roca, Ignasi" <ignasi.roca@fujitsu.siemens.es>
2409              Date: Thu, 4 Jan 2001 17:50:12 +0100 
2410              Message-ID: <5930DC161690D211966700902715754703738AA6@madt009a.siemens.es>
2411      Branch: perl
2412            ! toke.c
2413 ____________________________________________________________________________
2414 [  8304] By: jhi                                   on 2001/01/04  18:03:26
2415         Log: Subject: [PATCH perl@8269]
2416              From: "Roca, Ignasi" <ignasi.roca@fujitsu.siemens.es>
2417              Date: Thu, 4 Jan 2001 12:53:39 +0100 
2418              Message-ID: <5930DC161690D211966700902715754703701130@madt009a.siemens.es>
2419              
2420              If running byacc write-enable also perly.h.
2421      Branch: perl
2422            ! Makefile.SH
2423 ____________________________________________________________________________
2424 [  8303] By: jhi                                   on 2001/01/04  15:40:49
2425         Log: Rewrite pp_concat() in terms of sv_catsv().
2426      Branch: perl
2427            ! pp_hot.c
2428 ____________________________________________________________________________
2429 [  8302] By: nick                                  on 2001/01/03  22:43:22
2430         Log: Integrate mainline.
2431      Branch: perlio
2432           !> ext/Encode/Encode.xs sv.c utf8.c
2433 ____________________________________________________________________________
2434 [  8301] By: jhi                                   on 2001/01/02  23:40:26
2435         Log: Variable naming tweak.
2436      Branch: perl
2437            ! sv.c
2438 ____________________________________________________________________________
2439 [  8300] By: jhi                                   on 2001/01/02  23:40:02
2440         Log: Use the UTF8_XXX macros in is_utf8_char(), a performance nit
2441              in is_utf8_string().
2442      Branch: perl
2443            ! utf8.c
2444 ____________________________________________________________________________
2445 [  8299] By: jhi                                   on 2001/01/02  22:14:40
2446         Log: Integrate perlio.
2447      Branch: perl
2448           !> pp.c pp_hot.c win32/Makefile
2449 ____________________________________________________________________________
2450 [  8298] By: nick                                  on 2001/01/02  22:03:06
2451         Log: Turn SvUTF8 off if not required in pp_chr and pp_stringify.
2452      Branch: perlio
2453            ! pp.c pp_hot.c
2454 ____________________________________________________________________________
2455 [  8297] By: jhi                                   on 2001/01/02  04:26:28
2456         Log: Signedness nit.
2457      Branch: perl
2458            ! ext/Encode/Encode.xs
2459 ____________________________________________________________________________
2460 [  8296] By: nick                                  on 2001/01/01  23:49:36
2461         Log: Add Encode and correct Filter/Util/Call in nmake Makefile
2462      Branch: perlio
2463            ! win32/Makefile
2464 ____________________________________________________________________________
2465 [  8295] By: jhi                                   on 2001/01/01  23:05:48
2466         Log: Integrate perlio.
2467      Branch: perl
2468           !> ext/Encode/Encode.pm ext/Encode/Encode.xs pp_hot.c
2469           !> t/lib/encode.t
2470 ____________________________________________________________________________
2471 [  8294] By: nick                                  on 2001/01/01  22:48:34
2472         Log: Integrate mainline
2473      Branch: perlio
2474            ! pp_hot.c t/lib/encode.t
2475           !> (integrate 65 files)
2476 ____________________________________________________________________________
2477 [  8293] By: nick                                  on 2001/01/01  21:58:50
2478         Log: More rigor in UTF-8-ness of Encode's toUnicode
2479              XS export some of the utf8 internal functions.
2480              Test some of the functions.
2481              Fix pp_concat() bug shown by said tests.
2482      Branch: perlio
2483            ! ext/Encode/Encode.pm ext/Encode/Encode.xs pp_hot.c
2484            ! t/lib/encode.t
2485 ____________________________________________________________________________
2486 [  8292] By: jhi                                   on 2001/01/01  18:11:44
2487         Log: Integrate perlio.
2488      Branch: perl
2489           !> ext/Encode/Encode.pm ext/Encode/Encode.xs ext/Encode/compile
2490           !> ext/Encode/encengine.c ext/Encode/encode.h
2491 ____________________________________________________________________________
2492 [  8291] By: jhi                                   on 2001/01/01  18:10:58
2493         Log: Podify README.mpeix (a new version from the web),
2494              add a dummy NAME to Carp::Heavy, regen toc.
2495      Branch: perl
2496            ! README.mpeix lib/Carp/Heavy.pm pod/buildtoc.PL pod/perl.pod
2497            ! pod/perltoc.pod
2498 ____________________________________________________________________________
2499 [  8290] By: nick                                  on 2001/01/01  17:43:47
2500         Log: Loose the "Loading..." warning.
2501              Another bug in fallback support
2502      Branch: perlio
2503            ! ext/Encode/Encode.pm ext/Encode/encengine.c
2504 ____________________________________________________________________________
2505 [  8289] By: jhi                                   on 2001/01/01  00:01:57
2506         Log: Bump up Larry's copyright.
2507      Branch: perl
2508            ! EXTERN.h INTERN.h README av.c av.h cop.h cv.h deb.c doio.c
2509            ! doop.c dump.c ext/DynaLoader/dl_dld.xs form.h gv.c gv.h
2510            ! handy.h hv.c hv.h mg.c mg.h op.c op.h perl.c perl.h perly.y
2511            ! pp.c pp.h pp_ctl.c pp_hot.c pp_sys.c regcomp.c regexec.c run.c
2512            ! scope.c sv.c sv.h toke.c utf8.c utf8.h util.c util.h
2513            ! x2p/EXTERN.h x2p/INTERN.h x2p/a2p.c x2p/a2p.h x2p/a2p.y
2514            ! x2p/a2py.c x2p/hash.c x2p/hash.h x2p/proto.h x2p/str.c
2515            ! x2p/str.h x2p/util.c x2p/util.h x2p/walk.c
2516 ____________________________________________________________________________
2517 [  8288] By: nick                                  on 2000/12/31  21:27:53
2518         Log: Fix .ucm reading - forgot a chr()
2519              Start of .ucm write (for .enc to .ucm)
2520      Branch: perlio
2521            ! ext/Encode/compile
2522 ____________________________________________________________________________
2523 [  8287] By: jhi                                   on 2000/12/31  18:15:56
2524         Log: Comment away a diagnostic message as noted by Craig A. Berry
2525              (the unexpected message was confusing testing)
2526      Branch: perl
2527            ! ext/Encode/Encode.pm
2528 ____________________________________________________________________________
2529 [  8286] By: jhi                                   on 2000/12/31  18:14:51
2530         Log: Subject: [PATCH perl@8269] ext/Encode/Makefile.PL line shortening
2531              Date: Sun, 31 Dec 2000 11:17:37 -0600
2532              From: "Craig A. Berry" <craigberry@mac.com>
2533              Message-Id: <5.0.2.1.0.20001230195844.025636c0@exchi01>
2534      Branch: perl
2535            ! ext/Encode/Makefile.PL
2536 ____________________________________________________________________________
2537 [  8285] By: nick                                  on 2000/12/31  18:11:54
2538         Log: Start of support of ICU-style .ucm files:
2539              - teach compile how to read a .ucm file
2540              - first guess at how to represent fallbacks in "tries".
2541              - use fallbacks if check == 0
2542              - new return code to indicate we used one.
2543      Branch: perlio
2544            ! ext/Encode/Encode.pm ext/Encode/Encode.xs ext/Encode/compile
2545            ! ext/Encode/encengine.c ext/Encode/encode.h
2546 ____________________________________________________________________________
2547 [  8284] By: jhi                                   on 2000/12/31  18:04:41
2548         Log: Pacify picky VMS compiler.
2549              
2550              Subject: perl@8269, whiny Compaq C compiler, unsigned expressions
2551              From: "Craig A. Berry" <craig.berry@psinetcs.com>
2552              Date: Sat, 30 Dec 2000 18:10:02 -0600
2553              Message-Id: <200012310010.CAA09719@tiku.hut.fi>
2554      Branch: perl
2555            ! sv.c
2556 ____________________________________________________________________________
2557 [  8283] By: jhi                                   on 2000/12/31  16:11:47
2558         Log: Wrong alarm: cygwin's getpwuid() is just fine (from Gerrit P. Haase)
2559      Branch: perl
2560            ! t/lib/glob-basic.t
2561 ____________________________________________________________________________
2562 [  8282] By: jhi                                   on 2000/12/31  15:26:11
2563         Log: Integrate perlio.
2564      Branch: perl
2565           !> makedef.pl opcode.pl os2/os2.c perlio.c
2566 ____________________________________________________________________________
2567 [  8281] By: nick                                  on 2000/12/31  10:06:15
2568         Log: Tweak perlio.c so that makedef.pl-exported perlsio_binmode()
2569              is available to be exported
2570      Branch: perlio
2571            ! makedef.pl perlio.c
2572 ____________________________________________________________________________
2573 [  8280] By: nick                                  on 2000/12/31  09:41:26
2574         Log: Ilya's OS2 patch (testing for damage on Win32)
2575      Branch: perlio
2576            ! makedef.pl opcode.pl os2/os2.c
2577 ____________________________________________________________________________
2578 [  8279] By: jhi                                   on 2000/12/30  21:52:07
2579         Log: Test nits.
2580      Branch: perl
2581            ! t/lib/syslfs.t t/op/lfs.t
2582 ____________________________________________________________________________
2583 [  8278] By: jhi                                   on 2000/12/30  21:47:49
2584         Log: Subject: Re: [ID 20001229.001] Not OK: perl v5.7.0 +DEVEL8221 on i686-linux 2.4.0-test13pre4-ac2 -2 (UNINSTALLED)
2585              From: andreas.koenig@anima.de (Andreas J. Koenig)
2586              Date: 30 Dec 2000 22:35:37 +0100
2587              Message-ID: <m3vgs1a8ye.fsf@ak-71.mind.de>
2588              
2589              The 32-bit wraparound test wasn't quite right.
2590      Branch: perl
2591            ! t/lib/syslfs.t t/op/lfs.t
2592 ____________________________________________________________________________
2593 [  8277] By: jhi                                   on 2000/12/30  21:33:44
2594         Log: Subject: [PATCH] open() example in perlfunc.pod 
2595              From: Karsten Sperling <s_sperli@ira.uka.de>
2596              Date: Sat, 30 Dec 2000 22:27:09 +0100
2597              Message-ID: <"iraun1.ira.0090801:001230.213049"@ira.uka.de>
2598      Branch: perl
2599            ! pod/perlfunc.pod
2600 ____________________________________________________________________________
2601 [  8276] By: jhi                                   on 2000/12/30  20:32:40
2602         Log: Not quite that many tests yet.
2603      Branch: perl
2604            ! t/op/pat.t
2605 ____________________________________________________________________________
2606 [  8275] By: jhi                                   on 2000/12/30  20:26:58
2607         Log: Integrate perlio.
2608      Branch: perl
2609           !> toke.c
2610 ____________________________________________________________________________
2611 [  8274] By: jhi                                   on 2000/12/30  20:24:56
2612         Log: Signedness nit.
2613      Branch: perl
2614            ! utf8.c
2615 ____________________________________________________________________________
2616 [  8273] By: jhi                                   on 2000/12/30  20:15:46
2617         Log: Add a test case for 20000731.001 which was fixed by the #8267.
2618      Branch: perl
2619            ! t/op/pat.t
2620 ____________________________________________________________________________
2621 [  8272] By: nick                                  on 2000/12/30  19:47:51
2622         Log: Tweak for MULTIPLICITY/USE_PERLIO
2623      Branch: perlio
2624            ! toke.c
2625 ____________________________________________________________________________
2626 [  8271] By: nick                                  on 2000/12/30  19:46:45
2627         Log: Integrate mainline
2628      Branch: perlio
2629           +> lib/unicode/distinct.pm
2630           !> Changes MANIFEST doop.c embed.h embed.pl mg.c op.c op.h
2631           !> patchlevel.h perl.h pod/perlapi.pod pp.c pp_ctl.c pp_hot.c
2632           !> proto.h regcomp.c regcomp.h regexec.c sv.c t/op/split.t utf8.c
2633 ____________________________________________________________________________
2634 [  8270] By: jhi                                   on 2000/12/30  19:39:50
2635         Log: Subject: RE: perl@8269
2636              From: "Richard Soderberg" <rs@crystalflame.net>
2637              Date: Sat, 30 Dec 2000 11:36:27 -0800
2638              Message-ID: <NAEKLNAAHLMBPMPNBMLEIEAKCKAA.rs@crystalflame.net>
2639              
2640              A missing aTHX_.
2641      Branch: perl
2642            ! toke.c
2643 ____________________________________________________________________________
2644 [  8269] By: jhi                                   on 2000/12/30  18:55:48
2645         Log: Update Changes.
2646      Branch: perl
2647            ! Changes patchlevel.h
2648 ____________________________________________________________________________
2649 [  8268] By: jhi                                   on 2000/12/30  17:18:40
2650         Log: Add a test for Unicode split //.  The #8267 was the cure.
2651      Branch: perl
2652            ! t/op/split.t
2653 ____________________________________________________________________________
2654 [  8267] By: jhi                                   on 2000/12/30  17:14:19
2655         Log: Subject: more UTF8 test suites and an UTF8 patch
2656              From: Inaba Hiroto <inaba@st.rim.or.jp>
2657              Date: Sat, 30 Dec 2000 14:27:10 +0900
2658              Message-ID: <3A4D722D.243AFD88@st.rim.or.jp> 
2659              
2660              Just the patch part for now, and the pragma renamed
2661              as unicode::distinct.
2662      Branch: perl
2663            + lib/unicode/distinct.pm
2664            ! MANIFEST doop.c embed.h embed.pl mg.c op.c op.h perl.h
2665            ! pod/perlapi.pod pp.c pp_ctl.c pp_hot.c proto.h regcomp.c
2666            ! regcomp.h regexec.c sv.c toke.c utf8.c
2667 ____________________________________________________________________________
2668 [  8266] By: nick                                  on 2000/12/30  16:40:49
2669         Log: Integrate mainline
2670      Branch: perlio
2671           +> lib/Pod/Text/Overstrike.pm
2672           !> MANIFEST doio.c hints/dec_osf.sh hv.c lib/Pod/Man.pm
2673           !> lib/Pod/Text/Color.pm lib/Pod/Text/Termcap.pm op.c
2674           !> pod/pod2text.PL sv.c t/lib/syslfs.t t/op/join.t t/op/lfs.t
2675           !> t/pragma/constant.t t/pragma/sub_lval.t t/pragma/utf8.t util.c
2676           !> vms/vms.c vms/vmsish.h vms/vmspipe.com
2677 ____________________________________________________________________________
2678 [  8265] By: jhi                                   on 2000/12/30  07:28:55
2679         Log: The sv_catsv() fix, take two.
2680      Branch: perl
2681            ! sv.c t/op/join.t
2682 ____________________________________________________________________________
2683 [  8264] By: jhi                                   on 2000/12/30  06:19:18
2684         Log: Undo all the join-related changes since #8248: relevant
2685              portions of 8248, 8249, 8250, 8251, 8260, 8263 must go.
2686              The new sv_catsv() doesn't fly so it must go back to
2687              the drawing board.
2688      Branch: perl
2689            ! sv.c t/op/join.t t/pragma/utf8.t
2690 ____________________________________________________________________________
2691 [  8263] By: jhi                                   on 2000/12/30  01:08:32
2692         Log: (Retracted by #8264)  Tweak sv_catsv() some more.
2693      Branch: perl
2694            ! sv.c
2695 ____________________________________________________________________________
2696 [  8262] By: jhi                                   on 2000/12/30  00:45:14
2697         Log: Retract #8261.
2698      Branch: perl
2699            ! hv.c util.c
2700 ____________________________________________________________________________
2701 [  8261] By: jhi                                   on 2000/12/30  00:38:32
2702         Log: (Retracted by #8261). (Unsuccessful memory access tweaks.)
2703      Branch: perl
2704            ! hv.c util.c
2705 ____________________________________________________________________________
2706 [  8260] By: jhi                                   on 2000/12/29  22:51:33
2707         Log: (Retracted by #8264)  More fixing for #8251.
2708      Branch: perl
2709            ! sv.c
2710 ____________________________________________________________________________
2711 [  8259] By: jhi                                   on 2000/12/29  18:27:30
2712         Log: Subject: podlators 1.06 released
2713              From: Russ Allbery <rra@stanford.edu>
2714              Date: 25 Dec 2000 05:09:30 -0800
2715              Message-ID: <ylwvcosl4l.fsf@windlord.stanford.edu>
2716      Branch: perl
2717            + lib/Pod/Text/Overstrike.pm
2718            ! MANIFEST lib/Pod/Man.pm lib/Pod/Text/Color.pm
2719            ! lib/Pod/Text/Termcap.pm pod/pod2text.PL
2720 ____________________________________________________________________________
2721 [  8258] By: jhi                                   on 2000/12/29  18:20:45
2722         Log: Make the large file tests more robust/talkative as suggested by
2723              
2724              Subject: Re: [ID 20001229.001] Not OK: perl v5.7.0 +DEVEL8221 on i686-linux 2.4.0-test13pre4-ac2 -2 (UNINSTALLED)
2725              From: andreas.koenig@anima.de (Andreas J. Koenig)
2726              Date: 29 Dec 2000 14:23:01 +0100
2727              Message-ID: <m3snn7uzt6.fsf@ak-71.mind.de>
2728      Branch: perl
2729            ! t/lib/syslfs.t t/op/lfs.t
2730 ____________________________________________________________________________
2731 [  8257] By: jhi                                   on 2000/12/29  17:48:04
2732         Log: Further VMS piping fixes from Charles Lane:
2733              
2734              In summary, error messages produced when a subprocess terminated
2735              abnormally were being sent not just to the parent process, but to
2736              grandparents, because of default values for error output that were
2737              not completely overridden when the subprocess was started.
2738              
2739              This patch fixes this behavior by defining user-mode (i.e., temporary
2740              for the duration of the program) logical names for SYS$OUTPUT and
2741              SYS$ERROR when they are (re)opened inside Perl.  And a bunch of other
2742              changes to make it so that the user-mode logicals are the ones that
2743              control where Perl's error messages go if it terminates abnormally.
2744              
2745              I also added some gratuitous fixes to the indentation of braces in
2746              the piping code.  It just looked ugly, before.
2747      Branch: perl
2748            ! doio.c vms/vms.c vms/vmsish.h vms/vmspipe.com
2749 ____________________________________________________________________________
2750 [  8256] By: jhi                                   on 2000/12/29  17:45:12
2751         Log: Subject: [PATCH] Idea: Declare multiple constants at once (fwd)
2752              From: "Casey R. Tweten" <crt@kiski.net>
2753              Date: Fri, 29 Dec 2000 12:03:00 -0500 (EST)
2754              Message-ID: <Pine.OSF.4.21.0012291201150.17186-100000@home.kiski.net>
2755              
2756              Tests for for #8240.
2757      Branch: perl
2758            ! t/pragma/constant.t
2759 ____________________________________________________________________________
2760 [  8255] By: jhi                                   on 2000/12/29  17:43:07
2761         Log: Subject: Re: [PATCH] Interesting syntax idea
2762              From: Simon Cozens <simon@cozens.net>
2763              Date: Fri, 29 Dec 2000 14:34:04 +0000
2764              Message-ID: <20001229143404.A7762@deep-dark-truthful-mirror.perlhacker.org>
2765              
2766              Tests for #8254.
2767      Branch: perl
2768            ! t/pragma/sub_lval.t
2769 ____________________________________________________________________________
2770 [  8254] By: jhi                                   on 2000/12/29  17:42:11
2771         Log: Subject: [PATCH] Interesting syntax idea
2772              From: Simon Cozens <simon@cozens.net>
2773              Date: Wed, 27 Dec 2000 05:08:57 +0000
2774              Message-ID: <20001227050857.A11296@deep-dark-truthful-mirror.perlhacker.org>
2775              
2776              Make opens + bareword assigns do typeglob assigns.
2777      Branch: perl
2778            ! op.c
2779 ____________________________________________________________________________
2780 [  8253] By: jhi                                   on 2000/12/29  17:36:45
2781         Log: Output the (apparent) version of gcc, as suggested by
2782              
2783              Subject: [ID 20001226.001] dec_osf.sh mis-parses gcc version 2.95.2 as less than 2.95, causing installation-failure
2784              From: jhbrown@ai.mit.edu (Jeremy H. Brown)
2785              Date: 26 Dec 2000 04:29:17 -0500
2786              Message-Id: <uv6puify1hu.fsf@suspiria.ai.mit.edu>
2787              
2788              (The patch as such didn't any more apply as the misparsing had
2789              already been addressed in #6474.)  Also change the wording about
2790              gcc 2.95.2, for Jeremy it didn't break sdbm, for me it did.
2791      Branch: perl
2792            ! hints/dec_osf.sh
2793 ____________________________________________________________________________
2794 [  8252] By: nick                                  on 2000/12/29  12:14:31
2795         Log: Integrate mainline
2796      Branch: perlio
2797           !> (integrate 27 files)
2798 ____________________________________________________________________________
2799 [  8251] By: jhi                                   on 2000/12/29  08:45:46
2800         Log: (Retracted by #8264)
2801              
2802              (Fixed by #8260.)
2803              
2804              sv_catsv() needs one more byte space than seems reasonable.
2805              (for join() and PERL_DESTRUCT_LEVEL=2, built with debugging).
2806              Curiouser and curiouser.
2807      Branch: perl
2808            ! sv.c
2809 ____________________________________________________________________________
2810 [  8250] By: jhi                                   on 2000/12/29  07:57:52
2811         Log: More split // UTF-8 tests.
2812      Branch: perl
2813            ! t/pragma/utf8.t
2814 ____________________________________________________________________________
2815 [  8249] By: jhi                                   on 2000/12/29  07:54:51
2816         Log: (Retracted by #8264)  More join() testing which was good because
2817              it revealed a bug in #8248 (the UTF8_EIGHT_BIT_LO() was wrong).
2818      Branch: perl
2819            ! pp.c t/op/join.t utf8.c utf8.h
2820 ____________________________________________________________________________
2821 [  8248] By: jhi                                   on 2000/12/29  07:08:32
2822         Log: (Retracted by #8264)  Externally: join() was still quite UTF-8-unaware.
2823              Internally: sv_catsv() wasn't quite okay on UTF-8, it assumed
2824              that the only cases to care about are byte+byte and byte+character.
2825              
2826              TODO: See how well pp_concat() could be implemented in terms
2827              of sv_catsv().
2828      Branch: perl
2829            ! doop.c sv.c t/op/join.t utf8.h
2830 ____________________________________________________________________________
2831 [  8247] By: jhi                                   on 2000/12/29  06:35:23
2832         Log: Signedness nit.
2833      Branch: perl
2834            ! pp_hot.c
2835 ____________________________________________________________________________
2836 [  8246] By: jhi                                   on 2000/12/29  01:23:31
2837         Log: Subject: Re: [ID 20001226.002] Not OK: perl v5.7.0 +DEVEL8221 on i86pc-solaris 2.8 (UNINSTALLED)
2838              From: Lupe Christoph <lupe@lupe-christoph.de>
2839              Date: Thu, 28 Dec 2000 23:00:00 +0100
2840              Message-ID: <20001228230000.F2574@alanya.lupe-christoph.de>
2841              
2842              Suggest rsync --delete --dry-run.
2843      Branch: perl
2844            ! pod/perlhack.pod
2845 ____________________________________________________________________________
2846 [  8245] By: jhi                                   on 2000/12/28  23:57:05
2847         Log: The maxiters upper limit sanity check (guarding against
2848              non-progress) assumed bytes instead of characters in s///
2849              and split().
2850      Branch: perl
2851            ! pp.c pp_hot.c
2852 ____________________________________________________________________________
2853 [  8244] By: jhi                                   on 2000/12/28  23:34:08
2854         Log: Make some panic messages a bit more logical.
2855      Branch: perl
2856            ! doop.c pod/perldiag.pod pp.c pp_hot.c
2857 ____________________________________________________________________________
2858 [  8243] By: jhi                                   on 2000/12/28  22:59:16
2859         Log: Subject: [PATCH] lvalue AUTOLOAD. No, really.
2860              From: Simon Cozens <simon@cozens.net>
2861              Date: Wed, 27 Dec 2000 02:30:03 +0000
2862              Message-ID: <20001227023003.A7677@deep-dark-truthful-mirror.perlhacker.org>
2863      Branch: perl
2864            ! pp.c t/pragma/sub_lval.t
2865 ____________________________________________________________________________
2866 [  8242] By: jhi                                   on 2000/12/28  22:56:53
2867         Log: Subject: [PATCH blead] Fix B::Terse indentation
2868              From: Daniel Chetlin <daniel@chetlin.com>
2869              Date: Wed, 27 Dec 2000 06:43:30 -0800
2870              Message-ID: <20001227064329.B9573@darkstar>
2871      Branch: perl
2872            ! ext/B/B.pm ext/B/B/Terse.pm t/lib/b.t
2873 ____________________________________________________________________________
2874 [  8241] By: jhi                                   on 2000/12/28  22:48:59
2875         Log: The latter patch from the
2876              
2877              Subject: [PATCH: perl@8211] directory depth typo in one win32 Makefile
2878              From: Peter Prymmer <pvhp@forte.com> 
2879              Date: Fri, 22 Dec 2000 14:52:12 -0800 (PST)
2880              Message-ID: <Pine.OSF.4.10.10012221433140.195493-100000@aspara.forte.com>
2881              
2882              (the former patch from the above should have been
2883              taken care of by Nick I-S)
2884      Branch: perl
2885            ! win32/Makefile
2886 ____________________________________________________________________________
2887 [  8240] By: jhi                                   on 2000/12/28  22:45:22
2888         Log: Subject: Re: [PATCH] Idea: Declare multiple constants at once
2889              From: "Casey R. Tweten" <crt@kiski.net>
2890              Date: Fri, 22 Dec 2000 10:35:53 -0500 (EST)
2891              Message-ID: <Pine.OSF.4.21.0012221032030.28992-100000@home.kiski.net>
2892      Branch: perl
2893            ! lib/constant.pm
2894 ____________________________________________________________________________
2895 [  8239] By: jhi                                   on 2000/12/28  22:37:45
2896         Log: Subject: [PATCH] Re: [ID 19991001.003] sort(sub(arg)) misparsed as sort sub args
2897              From: Simon Cozens <simon@cozens.net>
2898              Date: Wed, 27 Dec 2000 14:12:44 +0000
2899              Message-ID: <20001227141244.A13344@deep-dark-truthful-mirror.perlhacker.org>
2900      Branch: perl
2901            ! t/op/method.t t/op/sort.t toke.c
2902 ____________________________________________________________________________
2903 [  8238] By: jhi                                   on 2000/12/28  22:30:32
2904         Log: Subject: [PATCH perl@8229] Call.pm
2905              From: "Paul Marquess" <Paul.Marquess@btinternet.com>
2906              Date: Mon, 25 Dec 2000 10:47:15 -0000
2907              Message-ID: <000201c06e60$0b967760$a20a140a@bfs.phone.com>
2908      Branch: perl
2909            ! ext/Filter/Util/Call/Call.pm
2910 ____________________________________________________________________________
2911 [  8237] By: jhi                                   on 2000/12/28  22:19:21
2912         Log: Subject: [PATCH blead] Fix problem with `&' prototype
2913              From: Daniel Chetlin <daniel@chetlin.com>
2914              Date: Wed, 27 Dec 2000 15:55:32 -0800
2915              Message-ID: <20001227155532.D9573@darkstar>
2916      Branch: perl
2917            ! op.c t/comp/proto.t
2918 ____________________________________________________________________________
2919 [  8236] By: jhi                                   on 2000/12/28  22:09:25
2920         Log: Subject: Re: [PATCH blead] Fix segfault in gv_handler/mg_find
2921              From: Daniel Chetlin <daniel@chetlin.com>
2922              Date: Sun, 24 Dec 2000 04:09:49 -0800
2923              Message-ID: <20001224040949.B3090@darkstar>
2924      Branch: perl
2925            ! gv.c mg.c t/op/attrs.t
2926 ____________________________________________________________________________
2927 [  8235] By: jhi                                   on 2000/12/28  22:07:11
2928         Log: Subject: [PATCH] Win32::Spawn() didn't inherit cwd and env correctly
2929              From: Jan Dubois <jand@ActiveState.com>
2930              Date: Tue, 26 Dec 2000 20:57:31 -0800
2931              Message-ID: <reti4ts0php3anruv0qcjru3tl850g3sfd@4ax.com>
2932      Branch: perl
2933            ! win32/win32.c
2934 ____________________________________________________________________________
2935 [  8234] By: jhi                                   on 2000/12/28  21:52:42
2936         Log: Subject: Re: [PATCH] Warn on use of reference as array elem
2937              From: Simon Cozens <simon@cozens.net>
2938              Date: Thu, 28 Dec 2000 20:33:13 +0000
2939              Message-ID: <20001228203313.A2607@deep-dark-truthful-mirror.perlhacker.org>
2940      Branch: perl
2941            ! pod/perldiag.pod pp_hot.c t/pragma/warn/pp_hot
2942 ____________________________________________________________________________
2943 [  8233] By: jhi                                   on 2000/12/28  19:40:49
2944         Log: Integrate perlio.
2945      Branch: perl
2946           !> ext/Encode/Makefile.PL ext/Encode/compile
2947 ____________________________________________________________________________
2948 [  8232] By: nick                                  on 2000/12/23  16:06:00
2949         Log: Encode's Makefile.PL fix not good for dmake $(MAKEFILE) is set to -f Makefile
2950              and fails to make '-f'. (Also handle case where xxxx.c files have not been deleted.)
2951      Branch: perlio
2952            ! ext/Encode/Makefile.PL
2953 ____________________________________________________________________________
2954 [  8231] By: nick                                  on 2000/12/23  14:30:34
2955         Log: "Compiled" encode build cleanup
2956              - Makefile uses catfile $(MAKEFILE) etc. for platform issues.
2957              - .c files do not export sub-tables
2958      Branch: perlio
2959            ! ext/Encode/Makefile.PL ext/Encode/compile
2960 ____________________________________________________________________________
2961 [  8230] By: nick                                  on 2000/12/23  12:50:37
2962         Log: Integrate mainline
2963      Branch: perlio
2964           !> INSTALL lib/CGI.pm lib/CPAN.pm lib/Pod/Select.pm
2965           !> lib/Text/ParseWords.pm lib/Win32.pod pod/perl.pod
2966           !> pod/perl5004delta.pod pod/perl5005delta.pod
2967           !> pod/perl56delta.pod pod/perldelta.pod pod/perldiag.pod
2968           !> pod/perlembed.pod pod/perlfaq4.pod pod/perllocale.pod
2969           !> pod/perlmodlib.pod pod/perlrequick.pod pod/perlretut.pod
2970           !> pod/perlsub.pod
2971 ____________________________________________________________________________
2972 [  8229] By: jhi                                   on 2000/12/22  15:32:12
2973         Log: Integrate perlio.
2974      Branch: perl
2975           +> win32/distclean.bat
2976           !> MANIFEST t/io/utf8.t
2977 ____________________________________________________________________________
2978 [  8228] By: jhi                                   on 2000/12/22  15:29:40
2979         Log: Subject: [PATCH 5.6.1-TRIAL1 and @8223]; was Re: Perlbug 20000322.006 status +update
2980              From: Robin Barker <rmb1@cise.npl.co.uk>
2981              Date: Fri, 22 Dec 2000 12:17:38 GMT
2982              Message-Id: <200012221217.MAA21332@tempest.npl.co.uk>
2983      Branch: perl
2984            ! lib/CGI.pm lib/CPAN.pm lib/Pod/Select.pm
2985            ! lib/Text/ParseWords.pm lib/Win32.pod pod/perl.pod
2986            ! pod/perl5004delta.pod pod/perl5005delta.pod
2987            ! pod/perl56delta.pod pod/perldelta.pod pod/perldiag.pod
2988            ! pod/perlembed.pod pod/perlfaq4.pod pod/perllocale.pod
2989            ! pod/perlmodlib.pod pod/perlrequick.pod pod/perlretut.pod
2990            ! pod/perlsub.pod
2991 ____________________________________________________________________________
2992 [  8227] By: jhi                                   on 2000/12/22  15:24:28
2993         Log: Subject: Re: A Configure option like 'otherlibdirs' but for *pre*pending?
2994              From: "John L. Allen" <allen@grumman.com>
2995              Date: Thu, 21 Dec 2000 14:39:58 -0500 (EST)
2996              Message-ID: <Pine.SOL.3.91.1001221133227.23511A-100000@gateway.grumman.com>
2997              
2998              Document APPLLIB_EXP.
2999      Branch: perl
3000            ! INSTALL
3001 ____________________________________________________________________________
3002 [  8226] By: nick                                  on 2000/12/21  22:11:50
3003         Log: Handy script for when one forgets to "dmake clean" 
3004      Branch: perlio
3005            + win32/distclean.bat
3006            ! MANIFEST
3007 ____________________________________________________________________________
3008 [  8225] By: nick                                  on 2000/12/21  21:54:04
3009         Log: CRLF platform issue with io/utf8 fix.
3010      Branch: perlio
3011            ! t/io/utf8.t
3012 ____________________________________________________________________________
3013 [  8224] By: nick                                  on 2000/12/21  21:02:20
3014         Log: Integrate mainline
3015      Branch: perlio
3016           !> Changes Configure Makefile.SH Porting/Glossary
3017           !> Porting/config.sh Porting/config_H configure.com
3018           !> epoc/config.sh ext/Thread/Thread.xs patchlevel.h
3019           !> pod/perlfaq3.pod pod/perlfunc.pod pod/perltoc.pod pp_sys.c
3020           !> sv.c t/io/fs.t t/op/misc.t t/op/utf8decode.t t/pragma/utf8.t
3021           !> win32/config.bc win32/config.gc win32/config.vc
3022 ____________________________________________________________________________
3023 [  8223] By: jhi                                   on 2000/12/21  17:09:16
3024         Log: Update Changes.
3025      Branch: perl
3026            ! Changes patchlevel.h
3027 ____________________________________________________________________________
3028 [  8222] By: jhi                                   on 2000/12/21  16:24:01
3029         Log: Metaconfig unit changes for #8221.
3030      Branch: metaconfig/U/perl
3031           +> issymlink.U
3032            - testsyml.U
3033            ! Mksymlinks.U
3034 ____________________________________________________________________________
3035 [  8221] By: jhi                                   on 2000/12/21  16:23:48
3036         Log: Rename testsyml to issymlink.
3037      Branch: perl
3038            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
3039            ! epoc/config.sh pod/perltoc.pod win32/config.bc win32/config.gc
3040            ! win32/config.vc
3041 ____________________________________________________________________________
3042 [  8220] By: jhi                                   on 2000/12/21  15:47:26
3043         Log: Robustness support for #8218 (symlink forest) since the GNU
3044              tools seem to be overly picky about symlinkage depths.
3045      Branch: perl
3046            ! Makefile.SH t/io/fs.t
3047 ____________________________________________________________________________
3048 [  8219] By: jhi                                   on 2000/12/21  15:38:27
3049         Log: Metaconfig changes for #8218.
3050      Branch: metaconfig
3051            ! U/modified/Oldconfig.U
3052      Branch: metaconfig/U/perl
3053            + Mksymlinks.U
3054            ! testsyml.U
3055 ____________________________________________________________________________
3056 [  8218] By: jhi                                   on 2000/12/21  15:37:57
3057         Log: Add Configure option -Dmksymlinks which will create a symlink
3058              forest if the current/build differs from the source directory.
3059              TODO: mkdir -p is not portable.
3060      Branch: perl
3061            ! Configure
3062 ____________________________________________________________________________
3063 [  8217] By: jhi                                   on 2000/12/21  14:39:12
3064         Log: Subject: [PATCH] Re: Latest tarball doesn't build with threads
3065              From: Nick Ing-Simmons <nik@tiuk.ti.com> 
3066              Date: Thu, 21 Dec 2000 09:38:18 GMT
3067              Message-Id: <200012210938.JAA29043@mikado.tiuk.ti.com>
3068              
3069              The ofs became an SV.
3070      Branch: perl
3071            ! ext/Thread/Thread.xs
3072 ____________________________________________________________________________
3073 [  8216] By: jhi                                   on 2000/12/21  05:40:21
3074         Log: The polymorphism seems to have fixed 20000517.001.
3075      Branch: perl
3076            ! t/pragma/utf8.t
3077 ____________________________________________________________________________
3078 [  8215] By: jhi                                   on 2000/12/21  04:44:52
3079         Log: read() documentation tweak for 20001121.004.
3080      Branch: perl
3081            ! pod/perlfunc.pod
3082 ____________________________________________________________________________
3083 [  8214] By: jhi                                   on 2000/12/21  03:54:11
3084         Log: Fix for 20001210.003, "write(FH) on closed FH causes segv".
3085      Branch: perl
3086            ! pp_sys.c t/op/misc.t
3087 ____________________________________________________________________________
3088 [  8213] By: jhi                                   on 2000/12/21  00:28:10
3089         Log: Subject: [patch: perl@8211]VMS: add -Duseperlio capacity to configure.com
3090              From: Peter Prymmer <pvhp@forte.com>
3091              Date: Wed, 20 Dec 2000 16:13:32 -0800 (PST)
3092              Message-ID: <Pine.OSF.4.10.10012201609140.11967-100000@aspara.forte.com>
3093      Branch: perl
3094            ! configure.com
3095 ____________________________________________________________________________
3096 [  8212] By: jhi                                   on 2000/12/21  00:26:21
3097         Log: Edit edit edit.
3098      Branch: perl
3099            ! pod/perlfaq3.pod
3100 ____________________________________________________________________________
3101 [  8211] By: jhi                                   on 2000/12/20  18:52:46
3102         Log: Update Changes.
3103      Branch: perl
3104            ! Changes patchlevel.h
3105 ____________________________________________________________________________
3106 [  8210] By: jhi                                   on 2000/12/20  18:34:47
3107         Log: Yet another editor edit.
3108      Branch: perl
3109            ! pod/perlfaq3.pod
3110 ____________________________________________________________________________
3111 [  8209] By: jhi                                   on 2000/12/20  15:33:28
3112         Log: More Win32 Perling.
3113      Branch: perl
3114            ! pod/perlfaq3.pod
3115 ____________________________________________________________________________
3116 [  8208] By: jhi                                   on 2000/12/20  15:07:46
3117         Log: More Win32 editor/IDE/shell hints.
3118      Branch: perl
3119            ! pod/perlfaq3.pod
3120 ____________________________________________________________________________
3121 [  8207] By: jhi                                   on 2000/12/20  03:54:08
3122         Log: Subject: [PATCH] obscure timing knowledge
3123              From: Nicholas Clark <nick@ccl4.org>
3124              Date: Tue, 19 Dec 2000 19:22:31 +0000
3125              Message-ID: <20001219192231.F2827@plum.flirble.org>
3126      Branch: perl
3127            ! sv.c
3128 ____________________________________________________________________________
3129 [  8206] By: jhi                                   on 2000/12/20  03:45:57
3130         Log: Subject: [ID 20001219.011] Not OK: perl v5.7.1 +DEVEL8205 on alpha-dec_osf-perlio-multi 4.0f (UNINSTALLED)
3131              From: Spider Boardman <spider@leggy.zk3.dec.com>
3132              Date: Tue, 19 Dec 2000 21:30:16 -0500
3133              Message-Id: <200012200230.VAA17619@leggy.zk3.dec.com>
3134      Branch: perl
3135            ! sv.c
3136 ____________________________________________________________________________
3137 [  8205] By: jhi                                   on 2000/12/19  23:02:01
3138         Log: Update Changes.
3139      Branch: perl
3140            ! Changes patchlevel.h
3141 ____________________________________________________________________________
3142 [  8204] By: jhi                                   on 2000/12/19  22:58:18
3143         Log: Recode the naughty binary bytes ([\x00-\x08\x0b-\x1f\x7f-\xff])
3144              using the \xHH notation.  No more inlined UTF-8, sigh, but easier
3145              on editors and diffing/patching.
3146      Branch: perl
3147            ! t/op/utf8decode.t
3148 ____________________________________________________________________________
3149 [  8203] By: nick                                  on 2000/12/19  21:36:16
3150         Log: Integrate mainline (forgot my own change...)
3151      Branch: perlio
3152           !> ext/Encode/compile
3153 ____________________________________________________________________________
3154 [  8202] By: nick                                  on 2000/12/19  21:34:42
3155         Log: Integrate mainline.
3156      Branch: perlio
3157           !> (integrate 61 files)
3158 ____________________________________________________________________________
3159 [  8201] By: nick                                  on 2000/12/19  21:34:06
3160         Log: Avoid looking for File::Glob when we don't need it.
3161      Branch: perl
3162            ! ext/Encode/compile
3163 ____________________________________________________________________________
3164 [  8200] By: jhi                                   on 2000/12/19  18:35:49
3165         Log: Update Changes.
3166      Branch: perl
3167            ! Changes patchlevel.h
3168 ____________________________________________________________________________
3169 [  8199] By: jhi                                   on 2000/12/19  18:35:07
3170         Log: Microperl tweaks.
3171      Branch: perl
3172            ! sv.c uconfig.h uconfig.sh
3173 ____________________________________________________________________________
3174 [  8198] By: jhi                                   on 2000/12/19  18:29:59
3175         Log: Regen Configure, nitfix uconfig.sh (d_vendorarch is needed).
3176      Branch: perl
3177            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
3178            ! config_h.SH pod/perltoc.pod uconfig.h uconfig.sh
3179 ____________________________________________________________________________
3180 [  8197] By: jhi                                   on 2000/12/19  17:55:29
3181         Log: In VMS embedded perls couldn't access the statically built Socket,
3182              from Charles Lane.
3183      Branch: perl
3184            ! configure.com
3185 ____________________________________________________________________________
3186 [  8196] By: jhi                                   on 2000/12/19  17:49:50
3187         Log: Subject: [PATCH perl@8143] DB_File-1.75 (was RE: [8104] DB_File)
3188              From: "Paul Marquess" <Paul_Marquess@yahoo.co.uk> 
3189              Date: Sun, 17 Dec 2000 19:11:44 -0000
3190              Message-ID: <000801c0685d$3224e5a0$a20a140a@bfs.phone.com> 
3191      Branch: perl
3192            ! ext/DB_File/Changes ext/DB_File/DB_File.pm
3193            ! ext/DB_File/DB_File.xs ext/DB_File/dbinfo
3194 ____________________________________________________________________________
3195 [  8195] By: jhi                                   on 2000/12/19  17:47:53
3196         Log: Subject: [patch perl@8150] h2xs SYNOPSIS
3197              From: Jonathan Stowe <gellyfish@gellyfish.com>
3198              Date: Mon, 18 Dec 2000 10:24:38 +0000 (GMT)
3199              Message-ID: <Pine.LNX.4.10.10012181021180.20731-100000@orpheus.gellyfish.com>
3200      Branch: perl
3201            ! utils/h2xs.PL
3202 ____________________________________________________________________________
3203 [  8194] By: jhi                                   on 2000/12/19  17:46:28
3204         Log: Subject: Re: useless use of void context work-around
3205              From: andreas.koenig@anima.de (Andreas J. Koenig)
3206              Date: 16 Dec 2000 15:13:36 +0100
3207              Message-ID: <m3g0jofo8f.fsf@ak-71.mind.de>
3208              
3209              Document (comment) the q(di ds ig) trick in the code.
3210      Branch: perl
3211            ! op.c
3212 ____________________________________________________________________________
3213 [  8193] By: jhi                                   on 2000/12/19  17:10:57
3214         Log: Subject: [ID 20001215.004] Sys::Syslog::xlate doesn't handle LOG_EMERG
3215              From: "Mark J. Reed" <mreed@strange.turner.com>
3216              Date: Fri, 15 Dec 2000 21:22:29 -0500 (EST)
3217              Message-Id: <200012160222.VAA13986@strange.turner.com>
3218      Branch: perl
3219            ! ext/Sys/Syslog/Syslog.pm
3220 ____________________________________________________________________________
3221 [  8192] By: jhi                                   on 2000/12/19  17:07:45
3222         Log: Subject: [PATCH] Re: [PATCH] strtoq, strtou(q|ll|l) testing
3223              From: Nicholas Clark <nick@ccl4.org>
3224              Date: Sat, 16 Dec 2000 19:03:13 +0000
3225              Message-ID: <20001216190313.D68304@plum.flirble.org>
3226      Branch: perl
3227            ! t/op/64bitint.t
3228 ____________________________________________________________________________
3229 [  8191] By: jhi                                   on 2000/12/19  17:06:13
3230         Log: Subject: [ID 20001218.005] Not OK: perl v5.7.0 +DEVEL8148 on powerpc-machten 4.1.4
3231              From: Dominic Dunlop <domo@computer.org>
3232              Date: Mon, 18 Dec 2000 12:00:15 +0100
3233              Message-Id: <p04320404b6639e7aa043@[192.168.1.4]>
3234              
3235              This patchlet is needed in order that perl can be statically linked.  
3236      Branch: perl
3237            ! regexec.c
3238 ____________________________________________________________________________
3239 [  8190] By: jhi                                   on 2000/12/19  17:03:08
3240         Log: Subject: [PATCH perl@8133] finding PerlIO symbols for VMS
3241              From: "Craig A. Berry" <craig.berry@psinetcs.com>
3242              Date: Sun, 17 Dec 2000 00:18:35 -0600
3243              Message-Id: <p04330102b661bc01daba@[172.16.52.1]>
3244      Branch: perl
3245            ! perlio.h vms/gen_shrfls.pl
3246 ____________________________________________________________________________
3247 [  8189] By: jhi                                   on 2000/12/19  16:20:28
3248         Log: Subject: [DOC PATCH: perl@8150, 5.6.1-TRIAL1] update list of lang. sensitive editors/IDES
3249              From: Prymmer/Kahn <pvhp@best.com>
3250              Date: Tue, 19 Dec 2000 08:08:31 -0800 (PST)
3251              Message-ID: <Pine.BSF.4.21.0012190804040.14656-100000@shell8.ba.best.com>
3252              
3253              A better version of #8188.
3254      Branch: perl
3255            ! pod/perlfaq3.pod
3256 ____________________________________________________________________________
3257 [  8188] By: jhi                                   on 2000/12/19  15:57:06
3258         Log: (Replaced by #8189)
3259              
3260              Subject: [DOC PATCH: perl@7953] update list of lang. sensitive editors/IDES
3261              Date: Mon, 18 Dec 2000 08:03:34 -0800 (PST)
3262              From: Prymmer/Kahn <pvhp@best.com>
3263              Message-ID: <Pine.BSF.4.21.0012180802090.27110-100000@shell8.ba.best.com>
3264              Subject: Re: [DOC PATCH: perl@7953] update list of lang. sensitive editors/IDES
3265              From: Ronald J Kimball <rjk@linguist.Thayer.Dartmouth.EDU>
3266              Date: Mon, 18 Dec 2000 11:10:45 -0500
3267              Message-ID: <20001218111044.B180222@linguist.thayer.dartmouth.edu>
3268      Branch: perl
3269            ! pod/perlfaq3.pod
3270 ____________________________________________________________________________
3271 [  8187] By: jhi                                   on 2000/12/19  15:54:19
3272         Log: Email address fix for Anton Berezin.
3273      Branch: perl
3274            ! AUTHORS
3275 ____________________________________________________________________________
3276 [  8186] By: jhi                                   on 2000/12/19  15:38:54
3277         Log: Subject: [PATCH perl@8102] cygwin port
3278              From: "Eric Fifer" <efifer@dircon.co.uk> 
3279              Date: Thu, 14 Dec 2000 13:41:29 -0000
3280              Message-Id: <200012141340.NAA54236@mailhost1.dircon.co.uk>
3281              
3282              When compiling modules the data item that is being imported
3283              from libperl.dll needs to be tagged as imported/shared data:
3284              extern __declspec(dllimport) PerlIO_funcs PerlIO_pending;
3285      Branch: perl
3286            ! perliol.h
3287 ____________________________________________________________________________
3288 [  8185] By: jhi                                   on 2000/12/19  14:53:24
3289         Log: Regen uconfig.h and uconfig.sh.
3290      Branch: perl
3291            ! uconfig.h uconfig.sh
3292 ____________________________________________________________________________
3293 [  8184] By: jhi                                   on 2000/12/18  20:43:49
3294         Log: Comments work so much better when they are closed.
3295      Branch: perl
3296            ! regcomp.c
3297 ____________________________________________________________________________
3298 [  8183] By: jhi                                   on 2000/12/18  18:04:02
3299         Log: Some compilers (e.g. HP-UX) can't switch on 64-bit integers.
3300              Fixes the bug 20001218.016.
3301      Branch: perl
3302            ! regcomp.c
3303 ____________________________________________________________________________
3304 [  8182] By: gsar                                  on 2000/12/18  09:53:47
3305         Log: delete spurious files
3306      Branch: maint-5.6/perl
3307            - lib/CGI/eg/make_links.pl lib/CGI/eg/wilogo.gif vos/config.def
3308            - vos/config.h vos/config_h.SH_orig
3309 ____________________________________________________________________________
3310 [  8181] By: gsar                                  on 2000/12/18  09:46:08
3311         Log: regen perltoc
3312      Branch: maint-5.6/perl
3313            ! pod/buildtoc.PL pod/perl.pod pod/perlapi.pod pod/perltoc.pod
3314 ____________________________________________________________________________
3315 [  8180] By: gsar                                  on 2000/12/18  09:20:27
3316         Log: integrate changes#7924..7926,7946,7952 from mainline
3317      Branch: maint-5.6/perl
3318           !> lib/CPAN.pm lib/CPAN/FirstTime.pm lib/ExtUtils/MM_Unix.pm
3319           !> lib/File/stat.pm t/lib/class-struct.t
3320 ____________________________________________________________________________
3321 [  8179] By: gsar                                  on 2000/12/18  08:55:54
3322         Log: integrate changes#7889,7890,7900,7903,7904,7907,7910,7917,
3323              7918,7919,7988,8907 from mainline (various)
3324      Branch: maint-5.6/perl
3325           +> t/lib/class-struct.t
3326           !> MANIFEST README.amiga ext/Sys/Syslog/Syslog.pm gv.c
3327           !> lib/Class/Struct.pm pod/perlipc.pod pod/perltie.pod
3328           !> t/lib/syslfs.t t/op/lfs.t utils/perlcc.PL
3329 ____________________________________________________________________________
3330 [  8178] By: gsar                                  on 2000/12/18  08:16:30
3331         Log: avoid redefinition warnings on windows due to sys/socket.h getting
3332              #included before win32.h
3333      Branch: maint-5.6/perl
3334            ! win32/include/sys/socket.h
3335 ____________________________________________________________________________
3336 [  8177] By: gsar                                  on 2000/12/18  05:24:04
3337         Log: make regen_headers; fix POSIX.xs problems; remove outdated
3338              code from sys/socket.h that makes build fail now
3339      Branch: maint-5.6/perl
3340            ! ext/POSIX/POSIX.xs global.sym objXSUB.h perlapi.c
3341            ! pod/perlapi.pod
3342           !> win32/include/sys/socket.h
3343 ____________________________________________________________________________
3344 [  8176] By: gsar                                  on 2000/12/18  05:20:17
3345         Log: update Changes
3346      Branch: maint-5.6/perl
3347            ! Changes patchlevel.h
3348 ____________________________________________________________________________
3349 [  8175] By: gsar                                  on 2000/12/18  04:57:48
3350         Log: integrate changes#7643,7646..7649,7651..7654,7658,7659,
3351              7661..7665,7667..7669,7671,7673,7676,7677,7681..7683,
3352              7689..7697,7699..7701,7703,7705,7714,7715,7718..7723,
3353              7725,7726,7729..7732,7737,7748,7749,7758,7759,7761,7773,
3354              7775,7776,7782,7785..7787,7804,7807,7808,7810,7811,7816,
3355              7823,7825,7838
3356      Branch: maint-5.6/perl
3357           +> lib/File/Spec/Epoc.pm
3358           !> (integrate 88 files)
3359 ____________________________________________________________________________
3360 [  8174] By: gsar                                  on 2000/12/18  03:53:09
3361         Log: integrate changes#7602,7604..7611,7614,7616..7619,7621..7623,
3362              7625..7629,7631..7634,7637,7639,7642 from mainline
3363      Branch: maint-5.6/perl
3364           +> README.solaris
3365           !> (integrate 26 files)
3366 ____________________________________________________________________________
3367 [  8173] By: gsar                                  on 2000/12/18  03:37:02
3368         Log: integrate changes#7472,7474..7479,7481,7485,7489,7493,7494,7496,
3369              7497,7499..7503,7505..7507,7509..7513,7515..7523,7526..7534,
3370              7536,7540,7542,7544..7546,7549,7553,7556,7557,7559,7561..7563,
3371              7565,7568..7572,7576,7578..7589,9592..7594,7596..7601 from mainline
3372      Branch: maint-5.6/perl
3373           +> t/lib/tie-refhash.t t/lib/tie-substrhash.t
3374            - MAINTAIN
3375           !> (integrate 111 files)
3376 ____________________________________________________________________________
3377 [  8172] By: jhi                                   on 2000/12/18  02:49:27
3378         Log: Regen pods.
3379      Branch: perl
3380            ! pod/perlmodlib.pod pod/perltoc.pod
3381 ____________________________________________________________________________
3382 [  8171] By: gsar                                  on 2000/12/18  02:49:24
3383         Log: integrate changes#7447,7448,7450,7454,7456,7457,7460,7462,
3384              7465..7471 from mainline
3385              
3386              Remains of the old UTF-8 API, utf8_to_uv_chk(): didn't link
3387              in platforms that strictly require all the symbols being present
3388              at link time.
3389              
3390              Subject: [PATCH: perl@7446] restore missing d_stdio_cnt_lval to VMS
3391              
3392              Subject: [ID 20001025.011] [PATCH] t/io/open.t perl@7369[  7350] breaks VMS perl
3393              
3394              Subject: [ID 20001026.006] C<use integer; $x += 1> gives uninitialized warning
3395              
3396              Subject: [PATCH] todo
3397              
3398              Subject: [ID 20001027.002] Patch 7380 followup - Perl_modfl *must* be defined
3399              
3400              Use $sort, $uniq (and $tr) consistently as wondered
3401              by Nicholas Clark.
3402              
3403              Too enthusiastic editing in #7460.
3404              
3405              The reëntrant version shouldn't be needed unless USE_PURE_BISON.
3406              
3407              Upgrade to CPAN 1.58_55.
3408              Subject: CPAN.pm status
3409              
3410              Subject: [ID 20001027.005] Nit in perlos2.pod - space needs deleted on line 118
3411              
3412              Make target reordering to avoid pointless re-makes.
3413              Subject: Re: Total re-make of 'make okfile' after 7451 ?
3414              
3415              Subject: [ID 20001027.010] [PATCH] Add info on building CPAN modules to README.dos
3416              
3417              Subject: DOC PATCH 5.6.0
3418              
3419              Add the repository doc by Malcolm, Sarathy, and by Simon,
3420              name as suggested by Michael Bletzinger <mbletzin@ncsa.uiuc.edu>.
3421      Branch: maint-5.6/perl
3422           +> Porting/repository.pod
3423           !> Configure MANIFEST Makefile.SH README.dos README.os2
3424           !> config_h.SH configure.com embed.h embed.pl handy.h lib/CPAN.pm
3425           !> lib/CPAN/FirstTime.pm perl.h pod/perlfunc.pod pod/perltodo.pod
3426           !> pp.c proto.h t/io/open.t t/op/assignwarn.t toke.c
3427 ____________________________________________________________________________
3428 [  8169] By: gsar                                  on 2000/12/18  02:33:34
3429         Log: integrate changes#7416,7417,7420..7422,7424,7426..7429,7431..7433,
3430              7435..7441,7445 from mainline
3431              
3432              Make the UTF-8 decoding stricter and more verbose when
3433              malformation happens.  This involved adding an argument
3434              to utf8_to_uv_chk(), which involved changing its prototype,
3435              and prefer STRLEN over I32 for the UTF-8 length, which as
3436              a domino effect necessitated changing the prototypes of
3437              scan_bin(), scan_oct(), scan_hex(), and reg_uni().
3438              The stricter UTF-8 decoding checking uses Markus Kuhn's
3439              UTF-8 Decode Stress Tester from
3440              http://www.cl.cam.ac.uk/~mgk25/ucs/examples/UTF-8-test.txt
3441              
3442              Run vms/vms_yfix.pl, should have done that after changing
3443              perly.c in #7382.
3444              
3445              Subject: [PATCH 5.7.0] static linking with uninstalled perl
3446              
3447              (Replaced by #7440.)
3448              Subject: Re: [ID 20001022.001] Not OK: perl v5.7.0 +DEVEL7368 on i686-linux 2.2.16
3449              
3450              Fix the bug ID 20001024.005, the bug introduced by #7416.
3451              
3452              Subject: Re: [ID 20001023.003] PATCH perlfaq5 [perl-current]
3453              
3454              Fix the bug reported in
3455              From: andreas.koenig@anima.de (Andreas J. Koenig)
3456              Also make is_utf8_char() stricter.
3457              
3458              Missed the header file changes from #7425.
3459              
3460              Check if stdio supports tweaking lval and cnt simultaneously.
3461              Subject: PATCH (Re: PerlIO - Configure tweak for Linux/glibc?)
3462              
3463              Stratus VOS updates from Paul Green.
3464              
3465              Podify README.epoc and README.vos.
3466              
3467              Add targets to Makefile.SH, most importantly
3468              'regen_all' which also remembers to update vms/perly*.
3469              
3470              Subject: Minor update to find2perl, for portability
3471              
3472              Subject: patch 7416 breaks sv.c on AIX and HP-UX (patch included)
3473              
3474              Subject: [ID 20001024.007] [PATCH] "Dump local *FH" causes SEGV
3475              
3476              Rename UTF8LEN() to be UNISKIP(), too confusing to have
3477              UTF8LEN() and UTF8SKIP(). 
3478              
3479              Allow poking holes at the UTF-8 decoding strictness.
3480              
3481              Continue the internal UTF-8 API tweaking.
3482              Rename utf8_to_uv_chk() back to utf8_to_uv() because it's
3483              used much more than the simpler API, now called utf8_to_uv_simple().
3484              Still not quite happy with API, too much partial duplication
3485              of functionality.
3486              
3487              A new version of making the syslog test more robust.
3488              (Replaces #7421.)
3489              Subject: Re: [ID 20001022.001] Not OK: perl v5.7.0 +DEVEL7368 on i686-linux 2.2.16
3490              
3491              buildtoc target tweaks.
3492              
3493              Integrate with vmsperl #7430 by Charles Bailey:
3494              
3495              Cleanup from prior patch (Charles Lane?):
3496              - improve handling of MFDs in Basename and Path
3497              - default to no xsubpp line # munging when building debug images
3498      Branch: maint-5.6/perl
3499           +> vos/config.alpha.def vos/config.alpha.h vos/config.ga.def
3500           +> vos/config.ga.h vos/configure_perl.cm vos/install_perl.cm
3501           !> (integrate 67 files)
3502 ____________________________________________________________________________
3503 [  8168] By: gsar                                  on 2000/12/18  02:05:49
3504         Log: integrate changes#7512,7733 from mainline (regex bugfixes)
3505              
3506              Subject: [ID 20001031.004] Uninitialized auto variable in regcomp.c
3507              From: Martin Husemann <martin@duskware.de>
3508              
3509              Subject: [PATCH 5.7.0] restore match data on backtracing
3510              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
3511      Branch: maint-5.6/perl
3512           !> regcomp.c regexec.c t/op/re_tests
3513 ____________________________________________________________________________
3514 [  8167] By: gsar                                  on 2000/12/18  01:55:22
3515         Log: integrate changes#7858,7986 from mainline
3516              
3517              C<foreach my $x ...> in pseudo-fork()ed process may diddle
3518              parent's memory; fix it by keeping track of the actual pad
3519              offset rather than a raw pointer (this change is probably also
3520              relevant to non-ithreads case to avoid fallout from reallocs of
3521              the pad array, but is currently only enabled for the ithreads
3522              case in the interests of minimal disruption to existing "well
3523              tested" code)
3524              
3525              fix open(FOO, ">&MYSOCK") failure under Windows 9x (problem is
3526              due to the notorious GetFileType() bug in Windows 9x, which fstat()
3527              tickles)
3528      Branch: maint-5.6/perl
3529           !> embed.h embed.pl global.sym objXSUB.h perlapi.c pp_ctl.c
3530           !> proto.h scope.c scope.h sv.c t/op/fork.t win32/perlhost.h
3531           !> win32/win32.c win32/win32.h win32/win32sck.c
3532 ____________________________________________________________________________
3533 [  8166] By: gsar                                  on 2000/12/18  01:52:59
3534         Log: integrate changes#7626,7632,7717,7738,7814,7817,7902,7912,7915
3535              from mainline (xsubpp and ExtUtils::LibList fixups, various
3536              other small items)
3537      Branch: maint-5.6/perl
3538           !> emacs/cperl-mode.el emacs/ptags lib/ExtUtils/Liblist.pm
3539           !> lib/ExtUtils/MM_VMS.pm lib/ExtUtils/MakeMaker.pm
3540           !> lib/ExtUtils/xsubpp lib/unicode/syllables.txt minimod.pl
3541           !> pod/perlfunc.pod pod/perlxs.pod pod/perlxstut.pod t/op/split.t
3542           !> win32/bin/search.pl
3543 ____________________________________________________________________________
3544 [  8165] By: gsar                                  on 2000/12/18  01:28:45
3545         Log: integrate changes#7533,7563,7611,7623 from mainline (various
3546              malloc.c embellishments)
3547      Branch: maint-5.6/perl
3548           !> malloc.c pod/perldiag.pod
3549 ____________________________________________________________________________
3550 [  8164] By: gsar                                  on 2000/12/18  01:23:33
3551         Log: integrate changes#7419,7806,8129 from mainline (various h2xs
3552              fixups)
3553      Branch: maint-5.6/perl
3554           !> utils/h2xs.PL
3555 ____________________________________________________________________________
3556 [  8163] By: gsar                                  on 2000/12/18  01:17:50
3557         Log: integrate changes#7493,7599,7803 from mainline (various perlbug
3558              fixups)
3559      Branch: maint-5.6/perl
3560           !> Makefile.SH utils/perlbug.PL
3561 ____________________________________________________________________________
3562 [  8162] By: gsar                                  on 2000/12/18  00:25:43
3563         Log: always export Perl_deb() (it is required by re.xs whether
3564              Perl is built with or without -DDEBUGGING)
3565      Branch: maint-5.6/perl
3566            ! makedef.pl
3567 ____________________________________________________________________________
3568 [  8161] By: gsar                                  on 2000/12/18  00:23:38
3569         Log: integrate change#7414 from mainline
3570              
3571              Undo the basename() part of #7412 since the lib/basename
3572              tests would need upgrading too.
3573              
3574              squelch two tests in tr.t that rely on tr/// paranoia change
3575              that's not in 5.6.x
3576      Branch: maint-5.6/perl
3577            ! t/op/tr.t
3578           !> lib/File/Basename.pm
3579 ____________________________________________________________________________
3580 [  8160] By: gsar                                  on 2000/12/18  00:05:30
3581         Log: missing change in previous integrate
3582      Branch: maint-5.6/perl
3583           !> README.aix
3584 ____________________________________________________________________________
3585 [  8159] By: gsar                                  on 2000/12/18  00:03:38
3586         Log: integrate changes#7205..7210,7212,7214..7219,7222,7223,7225,7226,
3587              7228,7230..7241,7243,7346,7347,7350..7354,7356,7358..7360,7362,
3588              7363,7365..7368,7370..7374,7376..7386,7391,7393..7399,7304..7408,
3589              7410..7413 from mainline
3590      Branch: maint-5.6/perl
3591           +> README.aix hints/nonstopux.sh lib/unicode/Is/DCmedial.pl
3592           +> t/lib/tie-splice.t
3593            - lib/unicode/Is/DCinital.pl
3594           !> (integrate 112 files)
3595 ____________________________________________________________________________
3596 [  8158] By: jhi                                   on 2000/12/17  23:04:24
3597         Log: Subject: [PATCHES] RE: perl@8150 
3598              From: "Gerrit P. Haase" <gerrit.haase@t-online.de>
3599              Date: Sun, 17 Dec 2000 21:46:39 +0100
3600              Message-ID: <3A3D343F.13566.1ACA7D93@localhost>
3601              
3602              Neither cygwin has a getpwuid() one can trust on.
3603      Branch: perl
3604            ! t/lib/glob-basic.t
3605 ____________________________________________________________________________
3606 [  8157] By: jhi                                   on 2000/12/17  23:01:54
3607         Log: More MAN.PODS => {} fixes.
3608      Branch: perl
3609            ! os2/OS2/ExtAttr/Makefile.PL os2/OS2/PrfDB/Makefile.PL
3610            ! os2/OS2/Process/Makefile.PL os2/OS2/REXX/DLL/Makefile.PL
3611            ! os2/OS2/REXX/Makefile.PL
3612 ____________________________________________________________________________
3613 [  8156] By: gsar                                  on 2000/12/17  22:49:13
3614         Log: integrate changes#7069..7077,7079,7081..7087,7090,7092,7093,
3615              7096..7104,7109..7117,7119..7124,7126,7128,7129,7133,7134,
3616              7136..7139,7141..7146,7148,7149,7151,7153..7155,7157,7158,
3617              7160,7161,7164,7165,7169..7178,7180..7191,7193..7197,7199,
3618              7201,7204 from mainline
3619      Branch: maint-5.6/perl
3620           !> (integrate 121 files)
3621 ____________________________________________________________________________
3622 [  8155] By: jhi                                   on 2000/12/17  22:30:58
3623         Log: Subject: [PATCH perl@8133] fix-up for VMS extensions
3624              From: "Craig A. Berry" <craigberry@mac.com>
3625              Date: Sun, 17 Dec 2000 13:09:28 -0600
3626              Message-Id: <p04330103b6628cabe114@[172.16.52.1]>
3627              
3628              MAN.PODS => ' ' is naughty.
3629      Branch: perl
3630            ! vms/ext/DCLsym/Makefile.PL vms/ext/Stdio/Makefile.PL
3631 ____________________________________________________________________________
3632 [  8154] By: nick                                  on 2000/12/17  22:07:13
3633         Log: MULTIPLICITY nit.
3634      Branch: perl
3635            ! mg.c
3636 ____________________________________________________________________________
3637 [  8153] By: gsar                                  on 2000/12/17  21:23:05
3638         Log: integrate changes#7017..7019,7021..7025,7027..7036,7038,7039,
3639              7041..7044,7046..7048,7050..7061,7063,7066..7067,7069..7074
3640              from mainline
3641              
3642              Document the SvIOK_.*UV().
3643              
3644              Update Unicode todo list.
3645              
3646              Guard against bad string->int conversion for quads.
3647              
3648              Subject: small apidoc fix
3649              
3650              Subject: [PATCH] Tie::StdHandle did not know about 3-arg open
3651              
3652              Subject: [PATCH] Tied filehandle documentation
3653              
3654              Subject: [PATCH] Modernize Opcode.pm documentation
3655              
3656              Make Data::Dumper (non-XS) to work with changed semantics of ref().
3657              Subject: Re: Undocumented(?) change to "ref" semantics in 5.7.0
3658              [applied even though said semantics didn't change in 5.6.x]
3659              
3660              Subject: [PATCH@7014] \G in non-/g is well-defined now ... right?
3661              
3662              Subject: Re: [ID 20000905.001] Assertion failed: file "toke.c", line 202 
3663              
3664              Fix the URL, but the server is still missing in action.
3665              Subject: [ID 20000905.002] perlfaq1.pod URL error
3666              
3667              Subject: [ID 20000903.001] \w in utf8-strings
3668              
3669              Fix the ccversion detection for 5.1 and beyond.
3670              Subject: [ID 20000907.007] Not OK: perl v5.7.0 +devel-7030 on alpha-dec_osf 4.0f
3671              
3672              Subject: [PATCH 5.7.0] perl5db.pl [Was: Re: Debugger question]
3673              
3674              Subject: [ID 20000904.008] Tiny fix for perldiag
3675              
3676              Subject: Re: [ID 20000906.004] segfault with bad perl statement
3677              
3678              Subject: Re: [ID 20000907.007] Not OK: perl v5.7.0 +devel-7030 on alpha-dec_osf 4.0f
3679              
3680              Subject: [ID 20000908.002] perlipc documentation bug.
3681              
3682              Subject: [PATCH lib/Benchmark.pm]
3683              
3684              Re-allow vec() for characters > 255.
3685              Subject: [PATCH] Re: [ID 20000907.005] Not OK: perl v5.7.0 +devel-7030 on alpha-dec_osf-perlio 4.0f (UNINSTALLED) 
3686              
3687              Do away with memory models cruft.  Sorry, PDP users.
3688              
3689              Continue #7041.
3690              
3691              Subject: [PATCH (or RFC): 5.7.0] make the ran_tests intermediate file 8.3 friendly
3692              
3693              Subject: [PATCH: 5.7.0] proper setting for isnan for DECC 5.3
3694              
3695              Upgrade to CPAN 1.57_65, from Andreas König.
3696              
3697              Upgrade to podlators-1.03 (Pod::Man 1.07 and Pod::Text 2.05),
3698              by Russ Allbery.
3699              
3700              Silence t/pod/*.t about alternate quote-mappings now implemented
3701              by Pod::Text, from Brad Appleton.
3702              
3703              Modern Borland C now seems to have anon unions for info.wProcessorArchitecture
3704              Subject: borland C++ win32.c tweak
3705              
3706              C<@a = @b = split(...)> optimization coredumps under ithreads
3707              (missed a spot when fixing up op_pmreplroot hack for ithreads)
3708              
3709              Document the SvUTF8*().
3710              
3711              Subject:  [PATCH] Perl 5.6.0, 5.7.0 ... vms/test.com to eliminate spurious NL's in test output
3712              
3713              Subject: RE: [Patch 5.7.0] Removing -ldb from the core build
3714              
3715              Do in VMS as the #7054 does.
3716              
3717              Subject: [patch] perlfunc.pod -- POSIX::sigpause should be POSIX::pause
3718              
3719              Subject: [ID 20000911.008] Not OK: perl v5.7.0 +DEVEL7048 on os2-64int-ld 2.30 (UNINSTALLED)
3720              
3721              Subject: [patch: perl@7045] vms updates
3722              
3723              Test for the #7049.
3724              Subject: Re: [PATCH] Re: [ID 20000910.001] Not OK: perl v5.7.0 +DEVEL7044 on    i686-linux 2.2.16-raid (UNINSTALLED)
3725              
3726              Break up the myconfig lines a bit.
3727              Subject: perlbug/perl -V output format
3728              
3729              Subject: [ID 20000911.011] misplaced typemap in perlxs.pod
3730              
3731              The #7054 truncated Configure badly.
3732              
3733              change#6327 didn't quite go all the way to enable USE_SOCKETS_AS_HANDLES
3734              initialization in all the threads on Windows
3735              
3736              Allow for whitespace between "#" and "line" in cpp output.
3737              Subject: [PATCH] Re: Problems compiling bleadperl on Unicos 9
3738              
3739              Remove vestiges of tr//CU.
3740              Subject: [ID 20000912.009] perlunicode.pod still mentions tr///CU
3741              
3742              The return value of setlocale must be copied away.
3743              Subject: [ID 20000913.001] Heap corruption in Perl_init_i18nl10n
3744              
3745              Allow chop() and chomp() to be overridden.
3746              Subject: [PATCH] Re: [ID 20000911.006] I can override glob but not chop?
3747              
3748              Hints optimization.
3749              Subject: Minor nit
3750              
3751              Subject: [PATCH] de-wall t/README
3752              
3753              Subject: Re: Two advertising clauses need to be removed
3754      Branch: maint-5.6/perl
3755           !> (integrate 75 files)
3756 ____________________________________________________________________________
3757 [  8152] By: gsar                                  on 2000/12/17  20:30:11
3758         Log: integrate changes#6945,6947,6949..6954,6956,6958,6959,6961,
3759              6964..6972,6977..6981..6984,6987,6988,6991,6994,6997,
3760              6999..7001,7003..7005,7007,7009,7011,7012 from mainline
3761              
3762              Don't attach -ld to the archname if pointless.
3763              
3764              Document UNTIE in a very minimalistic way.
3765              
3766              POSIX doesn't report long double values under -Duselongdouble
3767              when the long doubles are "real" (bigger than doubles).
3768              
3769              More author updates.
3770              
3771              Try to deduce NV_MAX.  Really should be Configure fodder.
3772              
3773              :: not allowed in pathnames, change to .
3774              Subject: [PATCH perl@6938] cygwin port
3775              
3776              Forget about NV_MAX (#6951).  Various floating point tweaks,
3777              ideas from Eric Fifer, Yitzchak, Alan, and Spider.
3778              
3779              Move the Solaris 7 scan to use64bitall, make the
3780              failure to find 64-bot sparc libc to mention the
3781              possibility of being in an intel, from Lupe and Alan.
3782              
3783              Regen perltoc.
3784              
3785              AUTHORS tweaks, from Peter Prymmer.
3786              
3787              More address tweaking.
3788              
3789              Small tweaks all over.
3790              
3791              File::Temp patches from Andreas König,
3792              
3793              Subject: [PATCH perl@6962] 2 more vms.c fix-ups and status
3794              
3795              Subject: CPAN.pm beta 1.57_57 for the core
3796              
3797              Part of the solution.
3798              Subject: Re: [ID 20000807.004] [PATCH] conditional breakpoints leak memory
3799              
3800              Subject: [PATCH@6961] Fix misleading example in perlretut.pod
3801              
3802              Subject: [PATCH lib/overload.pm] Sanaty checking of arguments to overload::constant
3803              
3804              Add the overload warnings to perldiag.
3805              
3806              Drop unused argument.
3807              Subject: Re: [ID 20000831.034] overload::constant and number of arguments. 
3808              
3809              Subject: Nit in Configure (bleadperl@6961)
3810              
3811              Update to PodParser 1.18, from Brad Appleton.
3812              
3813              Subject: [ID 20000901.017] [PATCH] Basic test failure in an untidy world       
3814              
3815              Subject: [PATCH: 6948] add SCNfldbl to configure.com
3816              
3817              Document UNTIE. Also tweak implementation to suppress the 'inner references'
3818              warning when UNTIE exists and instead pass the cound of extra references to
3819              the UNTIE method.
3820              
3821              Rename the PRIElfbl, PRIX64, etc, to be PRIEUfldbl, PRIXU64,
3822              so that case-ignoring systems like DCL can tell them from
3823              PRIefldbl and PRIx64.  Apply Merijn's ccversion patches.
3824              
3825              Subject: Re: [PATCH lib/overload.pm] Sanaty checking of arguments to overload::constant
3826              
3827              Feature ordering tweak.
3828              
3829              Regen perltoc.
3830              
3831              Subject: [PATCH] Fix vec() / utf8   (was Re: bitvec ops still broken with utf8 -- or not?)
3832              
3833              Subject: Re: [PATCH perl@6962] 2 more vms.c fix-ups and status
3834              
3835              Subject: http:// in L<>
3836              
3837              Detypo.
3838              
3839              change#6791 accidentally clobbered change#6710, put it back
3840              
3841              Only the first line, thank you very much.
3842              
3843              Subject: [PATCH: 6996] minimal removal of 8 bit chrs from perlebcdic.pod
3844              plus rework the http: spots as suggested by Tom Christiansen,
3845              plus regen perltoc.
3846              
3847              Undo part of change 6489 which looks like a bulk edit which
3848              changed _all_ gv_efullname3() calls to gv_efullname4() calls.
3849              The supressing of main:: on return from select() is undesirable.
3850              
3851              Apparently avoiding the swapping is too costly.
3852              
3853              Various Configure nits by Philip Newton,
3854              plus the ebcdic one by me.
3855              
3856              Make certain cc is set before trying to run it.
3857              
3858              If overloaded %{} etc. return the object do not loop.
3859              Thus  sub deref { $_[0] } functions if object is wanted type.
3860              
3861              Update perlhist.
3862              
3863              More %{} and other deref special casing - do not pass to 'nomethod'.
3864      Branch: maint-5.6/perl
3865           !> (integrate 59 files)
3866 ____________________________________________________________________________
3867 [  8151] By: gsar                                  on 2000/12/17  19:14:38
3868         Log: integrate changes#6903,6905..6907,6909,6911..6913,6915,6917,6918,
3869              6920..6926,6928..6930,6934..6937,6939,6940,6942..6944 from mainline
3870              
3871              Subject: [PATCH perl@6889] Chuck Lane's OpenVMS piping improvements
3872              
3873              Make the epsilon to be relative, not absolute.
3874              
3875              Put back the flags dump as reasoned in
3876              Subject: Re: [PATCH] Glob dumping
3877              
3878              Introduce ccname to keep track of what compiler kind of we have.
3879              
3880              Subject: Re: [ID 20000829.020] perl -e 'package; print __PACKAGE__' core dumps 
3881              
3882              Put back the slice accidentally removed by #6907.
3883              
3884              Reset archname and archname64 always, forcing them be
3885              recomputed at each Configure run, make Configure and
3886              the hints files agree on the naming of largefiles variables.
3887              
3888              Don't say "Perl 5.0 source kit".
3889              
3890              Subject: [PATCH] fix misc cast warnings
3891              
3892              Subject: typos in pods
3893              
3894              NVs not necessarily doubles, as pointed out by Yitzchak.
3895              
3896              Subject: [PATCH 6889] add a few ldbl formats to configure.com
3897              
3898              Subject: [ID 20000830.036] [DOC] chom?p %hash not documented
3899              
3900              Better options for rsync.
3901              
3902              Subject: [PATCH perl@6889] fix Storable on VMS by fixing my_fwrite()
3903              
3904              Subject: Re: not OK, 6919 on Alpha VMS V 7.1 w/ DECC 6.0-001
3905              
3906              Subject: [PATCH] Re: UNTIE method 
3907              
3908              A better fix for the Socket building problem from Craig Berry.
3909              
3910              Retract the dummy test, skip the security tests (instead of failing),
3911              explain what the warnings mean.
3912              
3913              Heap decorruption.
3914              Subject: [PATCH] Fix for miniperl coredump on Solaris with -Duselongdouble
3915              
3916              Update to Unicode 3.0.1.
3917              
3918              Missed one Unicode file.
3919              
3920              Subject: Re: typos in pods
3921              
3922              The #6929 was too skimpy.
3923              
3924              sscanf() may be the only way to read long doubles from strings.
3925              
3926              Reveal Borland's isnan.
3927              Subject: build with BC++ tweak
3928              
3929              Issue useful diagnostic on unknown pod commands.
3930              Subject: [PATCH lib/Pod/Man.pm] Re: [ID 20000830.048]
3931              
3932              Subject: [PATCH] Re: [ID 20000830.048] Not OK: perl v5.7.0 +DEVEL6938 on i686-linux 2.2.13
3933              
3934              Clarify the third case of ftmp-security warnings.
3935              
3936              Make -Dusemorebits find long doubles in Solaris.
3937              
3938              Wrap the test in eval.
3939      Branch: maint-5.6/perl
3940           +> lib/unicode/BidiMirr.txt lib/unicode/CaseFold.txt
3941           +> lib/unicode/PropList.txt lib/unicode/README.perl
3942           +> lib/unicode/UCD301.html lib/unicode/UCDFF301.html
3943           +> lib/unicode/Unicode.301 vms/vmspipe.com
3944            - lib/unicode/Props.txt lib/unicode/UCD300.html
3945            - lib/unicode/Unicode.300 lib/unicode/Unicode3.html
3946           !> (integrate 305 files)
3947 ____________________________________________________________________________
3948 [  8150] By: jhi                                   on 2000/12/17  18:47:57
3949         Log: Uncheckedin generated files.
3950      Branch: perl
3951            ! global.sym perlapi.c pod/perlapi.pod
3952 ____________________________________________________________________________
3953 [  8149] By: jhi                                   on 2000/12/17  18:41:22
3954         Log: Update Changes.
3955      Branch: perl
3956            ! Changes patchlevel.h
3957 ____________________________________________________________________________
3958 [  8148] By: jhi                                   on 2000/12/17  18:39:16
3959         Log: Subject: [PATCH] Fcntl constants speedup
3960              From: Nicholas Clark <nick@ccl4.org>
3961              Date: Sun, 17 Dec 2000 16:29:24 +0000
3962              Message-ID: <20001217162924.E97668@plum.flirble.org>
3963              
3964              Use IVs for the Fcntl constants instead of NVs.
3965      Branch: perl
3966            ! ext/Fcntl/Fcntl.pm ext/Fcntl/Fcntl.xs t/op/goto_xs.t
3967 ____________________________________________________________________________
3968 [  8147] By: jhi                                   on 2000/12/17  18:33:41
3969         Log: Add test for #8145 (binmode() warning), add warning for
3970              ioctl() and sockpair(), document them. (fileno() cannot
3971              be tripwired with the same kind of warning because
3972              'defined fileno($foo)' seems to be an idiom.)
3973      Branch: perl
3974            ! pod/perldiag.pod pp_sys.c t/pragma/warn/pp_sys
3975 ____________________________________________________________________________
3976 [  8146] By: gsar                                  on 2000/12/17  18:09:08
3977         Log: update Changes
3978      Branch: maint-5.6/perl
3979            ! Changes
3980 ____________________________________________________________________________
3981 [  8145] By: jhi                                   on 2000/12/17  17:39:35
3982         Log: Subject: [PATCH] Re: The long awaited feature ...
3983              From: Simon Cozens <simon@cozens.net>
3984              Date: Sun, 17 Dec 2000 12:31:56 +0000
3985              Message-ID: <20001217123156.A3891@deep-dark-truthful-mirror.perlhacker.org>
3986              
3987              Add a warning to binmode() about using bad filehandles
3988              (can happen e.g. if someone forgets the filehandle argument)
3989      Branch: perl
3990            ! pp_sys.c
3991 ____________________________________________________________________________
3992 [  8144] By: jhi                                   on 2000/12/17  17:33:48
3993         Log: Subject: [patch perl@8133] Typo in my Net::Ping doc patch :(
3994              From: Jonathan Stowe <gellyfish@gellyfish.com>
3995              Date: Sun, 17 Dec 2000 17:08:10 +0000 (GMT)
3996              Message-ID: <Pine.LNX.4.10.10012171700010.3834-100000@orpheus.gellyfish.com>
3997      Branch: perl
3998            ! lib/Net/Ping.pm
3999 ____________________________________________________________________________
4000 [  8143] By: jhi                                   on 2000/12/17  05:31:37
4001         Log: Polymorphic regexps.
4002              
4003              Fixes at least the bugs 20001028.003 (both of them...) and
4004              20001108.001.  The bugs 20001114.001 and 20001205.014 seem
4005              also to be fixed by now, probably already before this patch.
4006      Branch: perl
4007            ! embed.h embed.pl mg.c objXSUB.h pp_ctl.c pp_hot.c proto.h
4008            ! regcomp.c regcomp.h regcomp.sym regexec.c regnodes.h sv.c
4009            ! t/op/utf8decode.t t/pragma/utf8.t
4010 ____________________________________________________________________________
4011 [  8142] By: jhi                                   on 2000/12/16  17:16:05
4012         Log: Subject: [patch perl@8102] dos/djgpp update
4013              From: Laszlo Molnar <ml1050@freemail.hu>
4014              Date: Sat, 16 Dec 2000 01:40:52 +0100
4015              Message-ID: <20001216014052.A335@freemail.hu>
4016      Branch: perl
4017            ! djgpp/config.over t/base/commonsense.t
4018 ____________________________________________________________________________
4019 [  8141] By: jhi                                   on 2000/12/16  17:09:27
4020         Log: Few uncheckedin files.
4021      Branch: perl
4022            ! global.sym perlapi.c pod/perlapi.pod pod/perlintern.pod
4023 ____________________________________________________________________________
4024 [  8140] By: nick                                  on 2000/12/15  22:14:31
4025         Log: Integrate mainline
4026      Branch: perlio
4027           !> (integrate 53 files)
4028 ____________________________________________________________________________
4029 [  8139] By: jhi                                   on 2000/12/15  19:49:49
4030         Log: One more IVUV tweak from Nicholas Clark.
4031      Branch: perl
4032            ! sv.c
4033 ____________________________________________________________________________
4034 [  8138] By: jhi                                   on 2000/12/15  19:17:06
4035         Log: Return of the IVUV-preservation, now seems to be happy even
4036              in Digital UNIX (the broken strtoul brokenness detection
4037              seems to have been the fly in the ointment).
4038      Branch: perl
4039            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
4040            ! config_h.SH configure.com embed.h embed.pl epoc/config.sh
4041            ! objXSUB.h op.c perl.h pp.c pp_hot.c proto.h sv.c sv.h
4042            ! t/lib/peek.t t/op/cmp.t t/op/numconvert.t uconfig.h
4043            ! vos/config.alpha.def vos/config.alpha.h vos/config.ga.def
4044            ! vos/config.ga.h win32/config.bc win32/config.gc
4045            ! win32/config.vc
4046 ____________________________________________________________________________
4047 [  8137] By: jhi                                   on 2000/12/15  18:12:14
4048         Log: Metaconfig unit change for #8136.
4049      Branch: metaconfig
4050            ! U/modified/d_strtoul.U
4051      Branch: metaconfig/U/perl
4052            ! d_strtoull.U d_strtouq.U
4053 ____________________________________________________________________________
4054 [  8136] By: jhi                                   on 2000/12/15  18:11:35
4055         Log: I don't think it's sensible or portable to test the strtou*
4056              on /^-/ strings.
4057      Branch: perl
4058            ! Configure
4059 ____________________________________________________________________________
4060 [  8135] By: jhi                                   on 2000/12/15  17:18:49
4061         Log: Metaconfig unit change for #8134.
4062      Branch: metaconfig
4063            ! U/modified/d_strtoul.U
4064 ____________________________________________________________________________
4065 [  8134] By: jhi                                   on 2000/12/15  17:14:13
4066         Log: If longsize is 8 we don't need a LL suffix for integer constants.
4067      Branch: perl
4068            ! Configure config_h.SH
4069 ____________________________________________________________________________
4070 [  8133] By: jhi                                   on 2000/12/15  16:00:23
4071         Log: Update Changes.
4072      Branch: perl
4073            ! Changes patchlevel.h
4074 ____________________________________________________________________________
4075 [  8132] By: jhi                                   on 2000/12/15  15:44:16
4076         Log: Some compilers get huffy if you do not cast a const pointer
4077              to a non-const when assigning.
4078      Branch: perl
4079            ! gv.c
4080 ____________________________________________________________________________
4081 [  8131] By: jhi                                   on 2000/12/15  15:38:30
4082         Log: Subject: [PATCH 5.7.0] speeding up object creation/destruction 4x times
4083              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
4084              Date: Fri, 15 Dec 2000 05:26:57 -0500
4085              Message-ID: <20001215052657.A8319@math.mps.ohio-state.edu>
4086      Branch: perl
4087            ! embed.h embed.pl gv.c objXSUB.h perl.h proto.h sv.c
4088            ! t/pragma/overload.t
4089 ____________________________________________________________________________
4090 [  8130] By: jhi                                   on 2000/12/15  15:36:08
4091         Log: Subject: [PATCH 5.7.0] cosmetic change to overloading
4092              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
4093              Date: Thu, 14 Dec 2000 22:02:43 -0500
4094              Message-ID: <20001214220243.A18437@monk.mps.ohio-state.edu>
4095      Branch: perl
4096            ! gv.c perl.h
4097 ____________________________________________________________________________
4098 [  8129] By: jhi                                   on 2000/12/15  15:34:16
4099         Log: Subject: PATCH: h2xs nit
4100              From: Tim Jenness <t.jenness@jach.hawaii.edu>
4101              Date: Thu, 14 Dec 2000 18:25:46 -1000 (HST)
4102              Message-ID: <Pine.LNX.4.30.0012141820340.2533-100000@lapaki.jach.hawaii.edu>
4103              
4104              Add a template README.
4105      Branch: perl
4106            ! utils/h2xs.PL
4107 ____________________________________________________________________________
4108 [  8128] By: jhi                                   on 2000/12/15  15:32:22
4109         Log: Still buggy findgteprime, fix from Eric Joanis <joanis@cs.toronto.edu>.
4110      Branch: perl
4111            ! lib/Tie/SubstrHash.pm t/lib/tie-substrhash.t
4112 ____________________________________________________________________________
4113 [  8127] By: jhi                                   on 2000/12/15  15:19:34
4114         Log: Subject:  [PATCH Opcode.XS, Perl 5.6+] stuff for caller and _ in Safe::
4115              From: lane@DUPHY4.Physics.Drexel.Edu (Charles Lane)
4116              Date:     Thu, 14 Dec 2000 20:04:42 EST
4117              Message-Id: <001214200310.49929@DUPHY4.Physics.Drexel.Edu>
4118      Branch: perl
4119            ! ext/Opcode/Opcode.xs
4120 ____________________________________________________________________________
4121 [  8126] By: jhi                                   on 2000/12/15  15:17:49
4122         Log: Subject: [PATCH: perl@8102] s/use vars qw\(/our(/ for OS/390 extension builds
4123              From: Peter Prymmer <pvhp@forte.com>
4124              Date: Thu, 14 Dec 2000 15:50:20 -0800 (PST)
4125              Message-ID: <Pine.OSF.4.10.10012141548200.57557-100000@aspara.forte.com>
4126      Branch: perl
4127            ! ext/Errno/Errno_pm.PL lib/ExtUtils/MM_Unix.pm
4128            ! lib/ExtUtils/Manifest.pm lib/File/Spec.pm
4129            ! lib/File/Spec/Functions.pm lib/File/Spec/Unix.pm
4130 ____________________________________________________________________________
4131 [  8125] By: jhi                                   on 2000/12/15  15:11:05
4132         Log: This seems to be a stage sane and stable enough to checkin.
4133              (it basically is 8102..8118+8122 but no 8120, 8121, 8123, 8124)
4134      Branch: perl
4135            ! MANIFEST embed.h embed.pl objXSUB.h op.c perl.h perlapi.c
4136            ! pod/perlapi.pod pp.c pp_hot.c proto.h sv.c sv.h t/lib/peek.t
4137            ! t/op/cmp.t t/op/numconvert.t
4138 ____________________________________________________________________________
4139 [  8124] By: jhi                                   on 2000/12/15  04:20:26
4140         Log: Something is really wonky.
4141      Branch: perl
4142            ! sv.c
4143 ____________________________________________________________________________
4144 [  8123] By: jhi                                   on 2000/12/15  04:00:50
4145         Log: Fixes for the IV UV patches to compile in Digital UNIX.
4146      Branch: perl
4147            ! sv.c
4148 ____________________________________________________________________________
4149 [  8122] By: jhi                                   on 2000/12/15  02:53:40
4150         Log: Subject: Re: [ID 20001214.011] Unreachable value in a search list logical name
4151              From: "Craig A. Berry" <craigberry@mac.com>
4152              Date: Thu, 14 Dec 2000 19:10:49 -0600
4153              Message-Id: <p04330100b65efbe32f30@[172.16.52.1]>
4154      Branch: perl
4155            ! vms/vms.c
4156 ____________________________________________________________________________
4157 [  8121] By: jhi                                   on 2000/12/15  02:50:00
4158         Log: Metaconfig changes for #8120.
4159      Branch: metaconfig
4160            + U/modified/d_strtoul.U
4161      Branch: metaconfig/U/perl
4162            ! d_strtoull.U d_strtouq.U
4163 ____________________________________________________________________________
4164 [  8120] By: jhi                                   on 2000/12/15  02:49:42
4165         Log: From: Nicholas Clark <nick@ccl4.org> 
4166              Subject: [PATCH] strtoq, strtou(q|ll|l) testing (was [PATCH] faster and 64 bit  preserving arithmetic)
4167              Date: Thu, 14 Dec 2000 18:38:57 +0000
4168              Message-ID: <20001214183857.B97909@plum.flirble.org>
4169      Branch: perl
4170            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
4171            ! config_h.SH configure.com epoc/config.sh perl.h sv.c uconfig.h
4172            ! uconfig.sh vos/config.alpha.def vos/config.alpha.h
4173            ! vos/config.ga.def vos/config.ga.h win32/config.bc
4174            ! win32/config.gc win32/config.vc
4175 ____________________________________________________________________________
4176 [  8119] By: jhi                                   on 2000/12/14  23:40:58
4177         Log: Subject: [PATCH] faster and 64 bit preserving arithmetic
4178              From: Nicholas Clark <nick@ccl4.org>
4179              Date: Wed, 13 Dec 2000 20:08:50 +0000
4180              Message-ID: <20001213200849.B71166@plum.flirble.org>
4181      Branch: perl
4182            ! embed.h embed.pl objXSUB.h op.c perl.h pp.c pp_hot.c proto.h
4183            ! sv.c sv.h t/lib/peek.t t/op/cmp.t t/op/numconvert.t
4184 ____________________________________________________________________________
4185 [  8118] By: jhi                                   on 2000/12/14  22:46:26
4186         Log: Integrate perlio.
4187      Branch: perl
4188           !> MANIFEST ext/Encode/compile makedef.pl
4189 ____________________________________________________________________________
4190 [  8117] By: nick                                  on 2000/12/14  22:38:53
4191         Log: Win32 tweaks to get Encode to build
4192              - temp hack to makedef.pl till PerlIO is properly "exported".
4193              - MSVC dislikes  
4194              static encpage_t foo[];
4195              so make 'em extern for now.
4196      Branch: perlio
4197            ! ext/Encode/compile makedef.pl
4198 ____________________________________________________________________________
4199 [  8116] By: nick                                  on 2000/12/14  22:00:53
4200         Log: Document the new files
4201      Branch: perlio
4202            ! MANIFEST
4203 ____________________________________________________________________________
4204 [  8115] By: jhi                                   on 2000/12/14  21:58:01
4205         Log: MANIFEST new files of #8114.
4206      Branch: perl
4207            ! MANIFEST
4208 ____________________________________________________________________________
4209 [  8114] By: jhi                                   on 2000/12/14  21:50:49
4210         Log: Integrate perlio.
4211      Branch: perl
4212           +> ext/Encode/compile ext/Encode/encengine.c ext/Encode/encode.h
4213           !> ext/Encode/Encode.pm ext/Encode/Encode.xs
4214           !> ext/Encode/Encode/ascii.enc ext/Encode/Encode/cp1047.enc
4215           !> ext/Encode/Encode/cp37.enc ext/Encode/Encode/posix-bc.enc
4216           !> ext/Encode/Makefile.PL
4217 ____________________________________________________________________________
4218 [  8113] By: jhi                                   on 2000/12/14  21:48:49
4219         Log: The documentation part of the
4220              
4221              Subject: [ID 20001214.002] Net::Ping patch
4222              From: Jonathan Stowe <gellyfish@gellyfish.com>
4223              Date: Thu, 14 Dec 2000 08:28:14 +0000 (GMT)
4224              Message-Id: <Pine.LNX.4.10.10012140805480.19767-200000@orpheus.gellyfish.com>
4225              since the #7529 had already addressed the same problem.
4226      Branch: perl
4227            ! lib/Net/Ping.pm
4228 ____________________________________________________________________________
4229 [  8112] By: jhi                                   on 2000/12/14  21:42:57
4230         Log: Subject: [PATCH] Re: [ID 20001013.006] XS subs are not define()ed
4231              From: Dominic Dunlop <domo@computer.org>
4232              Date: Tue, 12 Dec 2000 10:47:10 +0100
4233              Message-Id: <p04320402b65ba33a92b2@[192.168.1.4]>
4234              
4235              Document how elusive subroutines can be.
4236      Branch: perl
4237            ! pod/perlfunc.pod
4238 ____________________________________________________________________________
4239 [  8111] By: jhi                                   on 2000/12/14  21:38:05
4240         Log: Subject: [ID 20001214.003] [PATCH bleadperl] POSIX::tmpnam() is dangerous
4241              From: Dominic Dunlop <domo@computer.org>
4242              Date: Thu, 14 Dec 2000 10:13:51 +0100
4243              Message-Id: <p04320407b65e3f4853aa@[192.168.1.4]>
4244      Branch: perl
4245            ! ext/POSIX/POSIX.pod
4246 ____________________________________________________________________________
4247 [  8110] By: jhi                                   on 2000/12/14  21:36:32
4248         Log: Subject: [patch] perlfaq7
4249              From: "Gerrit P. Haase" <gerrit.haase@t-online.de>
4250              Date: Thu, 14 Dec 2000 15:31:07 +0100
4251              Message-ID: <3A38E7BB.13178.11C40A8@localhost>
4252      Branch: perl
4253            ! pod/perlfaq7.pod
4254 ____________________________________________________________________________
4255 [  8109] By: jhi                                   on 2000/12/14  21:29:20
4256         Log: Subject: [8104] Encode
4257              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
4258              Date: Thu, 14 Dec 2000 14:49:34 +0100
4259              Message-Id: <20001214142101.B338.H.M.BRAND@hccnet.nl>
4260              
4261              Type casting for nervous compilers.
4262      Branch: perl
4263            ! ext/Encode/Encode.xs
4264 ____________________________________________________________________________
4265 [  8108] By: jhi                                   on 2000/12/14  21:26:17
4266         Log: Subject: [8104] DB_File
4267              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
4268              Date: Thu, 14 Dec 2000 14:49:35 +0100
4269              Message-Id: <20001214144439.B33A.H.M.BRAND@hccnet.nl>
4270              
4271              Type definition incorrect for DB 2.7.7.  Not known when it
4272              changed, so only changed it for a known revision.
4273      Branch: perl
4274            ! ext/DB_File/DB_File.xs
4275 ____________________________________________________________________________
4276 [  8107] By: jhi                                   on 2000/12/14  21:23:41
4277         Log: Subject: [PATCH: perl@8102] Re: Encode/cp1047.enc etc.
4278              From: Peter Prymmer <pvhp@forte.com>
4279              Date: Thu, 14 Dec 2000 11:11:50 -0800 (PST)
4280              Message-ID: <Pine.OSF.4.10.10012141057330.57557-100000@aspara.forte.com>
4281              
4282              Use '?' (0x6F in EBCDIC) for the illegal codepoint.
4283      Branch: perl
4284            ! ext/Encode/Encode/cp1047.enc ext/Encode/Encode/cp37.enc
4285            ! ext/Encode/Encode/posix-bc.enc
4286 ____________________________________________________________________________
4287 [  8106] By: nick                                  on 2000/12/14  20:36:13
4288         Log: "Cold" build correction to Encode's Makefile.PL
4289      Branch: perlio
4290            ! ext/Encode/Makefile.PL
4291 ____________________________________________________________________________
4292 [  8105] By: nick                                  on 2000/12/14  20:09:37
4293         Log: "Compiled" encodings.
4294              Correct replacement character in EBCDIC .enc files
4295              Add 0x7F to ASCII repertoire.
4296      Branch: perlio
4297            ! ext/Encode/Encode.pm ext/Encode/Encode.xs
4298            ! ext/Encode/Encode/ascii.enc ext/Encode/Encode/cp1047.enc
4299            ! ext/Encode/Encode/cp37.enc ext/Encode/Encode/posix-bc.enc
4300            ! ext/Encode/Makefile.PL ext/Encode/compile
4301            ! ext/Encode/encengine.c ext/Encode/encode.h
4302 ____________________________________________________________________________
4303 [  8104] By: nick                                  on 2000/12/14  00:38:20
4304         Log: Integrate mainline
4305      Branch: perlio
4306           !> Changes Configure doio.c embed.h embed.pl ext/DB_File/Changes
4307           !> ext/DB_File/DB_File.pm ext/DB_File/DB_File.xs
4308           !> ext/DB_File/dbinfo ext/DB_File/typemap ext/DB_File/version.c
4309           !> hints/hpux.sh lib/Cwd.pm objXSUB.h patchlevel.h perlapi.c
4310           !> pod/perlapi.pod pp_hot.c proto.h t/lib/db-btree.t
4311           !> t/lib/db-hash.t t/lib/db-recno.t
4312 ____________________________________________________________________________
4313 [  8103] By: nick                                  on 2000/12/13  23:16:13
4314         Log: Beginings of compiled encodings - checked in as a snapshot of thoughts
4315              so far and so it does not get lost.
4316      Branch: perlio
4317            + ext/Encode/compile ext/Encode/encengine.c ext/Encode/encode.h
4318 ____________________________________________________________________________
4319 [  8102] By: jhi                                   on 2000/12/13  17:14:22
4320         Log: Update Changes.
4321      Branch: perl
4322            ! Changes patchlevel.h
4323 ____________________________________________________________________________
4324 [  8101] By: jhi                                   on 2000/12/13  16:53:41
4325         Log: Move the proto of start_glob() to a better place; regen api files.
4326      Branch: perl
4327            ! embed.h embed.pl objXSUB.h perlapi.c pod/perlapi.pod proto.h
4328 ____________________________________________________________________________
4329 [  8100] By: jhi                                   on 2000/12/13  16:47:11
4330         Log: Metaconfig change for #8099.
4331      Branch: metaconfig
4332            ! U/modified/Head.U
4333 ____________________________________________________________________________
4334 [  8099] By: jhi                                   on 2000/12/13  16:46:48
4335         Log: Subject: Re: [ID 20000328.039] [PATCH] Eliminate Configure use of /tmp
4336              From: Andy Dougherty <doughera@lafayette.edu>
4337              Date: Wed, 13 Dec 2000 10:36:09 -0500 (EST)
4338              Message-ID: <Pine.SOL.4.10.10012131031230.2017-100000@maxwell.phys.lafayette.edu>
4339      Branch: perl
4340            ! Configure
4341 ____________________________________________________________________________
4342 [  8098] By: jhi                                   on 2000/12/13  16:39:02
4343         Log: Subject: [20000615.005] [PATCH] Cwd::fastgetcwd broken (or mis-named?) on Unix  
4344              From: rspier@pobox.com (Robert Spier)
4345              Date: Tue, 12 Dec 2000 21:12:39 -0500
4346              Message-ID: <14902.56087.678086.725773@rls.cx>
4347              
4348              fastgetcwd is defined using a glob alias on a $^O dependent basis -
4349              and there was no default assignment or perl subroutine.
4350      Branch: perl
4351            ! lib/Cwd.pm
4352 ____________________________________________________________________________
4353 [  8097] By: jhi                                   on 2000/12/13  16:16:01
4354         Log: Subject: [PATCH] move startglob out of pp_hot.c
4355              From: Nicholas Clark <nick@ccl4.org>
4356              Date: Mon, 11 Dec 2000 23:16:39 +0000
4357              Message-ID: <20001211231638.A55550@plum.flirble.org>
4358      Branch: perl
4359            ! doio.c embed.h embed.pl objXSUB.h pp_hot.c proto.h
4360 ____________________________________________________________________________
4361 [  8096] By: jhi                                   on 2000/12/13  15:26:23
4362         Log: Subject: [8095] HP-UX 11.00 / cc / 64bitint & 64bitall / perlio 
4363              From: "H.Merijn Brand" <h.m.brand@hccnet.nl> 
4364              Date: Wed, 13 Dec 2000 14:01:37 +0100
4365              Message-Id: <20001213135318.621A.H.M.BRAND@hccnet.nl>
4366              
4367              perl/64/HP-UX wants libdb-3.0 to be shared ELF 64 bit which
4368              in turn requires libpthread in libswanted.
4369      Branch: perl
4370            ! hints/hpux.sh
4371 ____________________________________________________________________________
4372 [  8095] By: jhi                                   on 2000/12/12  19:51:05
4373         Log: The integration wars continue.
4374      Branch: perl
4375           !> sv.c
4376 ____________________________________________________________________________
4377 [  8094] By: jhi                                   on 2000/12/12  19:48:26
4378         Log: Subject: [PATCH perl@8070] DB_File-1.74  
4379              From: "Paul Marquess" <paul_marquess@yahoo.co.uk> 
4380              Date: Mon, 11 Dec 2000 23:07:17 -0000
4381              Message-ID: <000001c063c7$1b9d28a0$a20a140a@bfs.phone.com> 
4382      Branch: perl
4383            ! ext/DB_File/Changes ext/DB_File/DB_File.pm
4384            ! ext/DB_File/DB_File.xs ext/DB_File/dbinfo ext/DB_File/typemap
4385            ! ext/DB_File/version.c t/lib/db-btree.t t/lib/db-hash.t
4386            ! t/lib/db-recno.t
4387 ____________________________________________________________________________
4388 [  8093] By: nick                                  on 2000/12/12  19:42:13
4389         Log: Integrate/merge mainline with further efficiency tweak to sv.c's utf8 stuff.
4390      Branch: perlio
4391            ! sv.c
4392           !> lib/File/DosGlob.pm
4393 ____________________________________________________________________________
4394 [  8092] By: jhi                                   on 2000/12/12  19:28:11
4395         Log: Integrate perlio.
4396      Branch: perl
4397           !> sv.c
4398 ____________________________________________________________________________
4399 [  8091] By: nick                                  on 2000/12/12  18:49:45
4400         Log: Fix for Tk, and upgrading shared SVs.
4401      Branch: perlio
4402            ! sv.c
4403 ____________________________________________________________________________
4404 [  8090] By: jhi                                   on 2000/12/12  16:48:59
4405         Log: Subject: [PATCH] Re: Breadperl & Tk
4406              From: Nick Ing-Simmons <nik@tiuk.ti.com>
4407              Date: Tue, 12 Dec 2000 14:48:27 GMT
4408              Message-Id: <200012121448.OAA11516@mikado.tiuk.ti.com> 
4409      Branch: perl
4410            ! sv.c
4411 ____________________________________________________________________________
4412 [  8089] By: jhi                                   on 2000/12/12  03:37:19
4413         Log: Subject: DosGlob.pm diff for bash style brace expansion.
4414              From: "Mestnik, Mike" <MMestnik@rustconsulting.com>
4415              Date: Fri, 8 Dec 2000 10:45:30 -0600
4416              Message-ID: <B50C47897E98D3118130009027D3971920F278@EXCHANGE_M1>
4417      Branch: perl
4418            ! lib/File/DosGlob.pm
4419 ____________________________________________________________________________
4420 [  8088] By: nick                                  on 2000/12/11  23:59:59
4421         Log: Integrate mainline
4422      Branch: perlio
4423           !> ext/B/B.pm ext/B/B/Deparse.pm installperl lib/CGI.pm
4424           !> lib/ExtUtils/Liblist.pm lib/ExtUtils/MM_Unix.pm
4425           !> lib/ExtUtils/MakeMaker.pm lib/File/DosGlob.pm pod/perldiag.pod
4426           !> pod/perlop.pod pp.c pp_hot.c scope.c t/io/utf8.t t/lib/b.t
4427           !> t/op/local.t t/pragma/warn/toke toke.c
4428 ____________________________________________________________________________
4429 [  8087] By: jhi                                   on 2000/12/11  23:20:23
4430         Log: Integrate perlio.
4431      Branch: perl
4432           !> ext/Encode/Encode.xs perlio.c perlio.h perliol.h
4433 ____________________________________________________________________________
4434 [  8086] By: jhi                                   on 2000/12/11  22:50:59
4435         Log: Tune further the OS detection of CGI.
4436      Branch: perl
4437            ! lib/CGI.pm
4438 ____________________________________________________________________________
4439 [  8085] By: nick                                  on 2000/12/11  22:50:46
4440         Log: Finish 1st pass of "encoding" layer e.g. :
4441              open($fh,"<encoding(iso8859-7)",$greek) || die;
4442      Branch: perlio
4443            ! ext/Encode/Encode.xs perlio.c perliol.h
4444 ____________________________________________________________________________
4445 [  8084] By: jhi                                   on 2000/12/11  22:32:06
4446         Log: Revert the -f ambiguousity patch, seems to cause
4447              too much hassle (the interpret -Q as a function
4448              where Q is not a known filetest part is left in).
4449      Branch: perl
4450            ! lib/ExtUtils/Liblist.pm pod/perldiag.pod t/pragma/warn/toke
4451            ! toke.c
4452 ____________________________________________________________________________
4453 [  8083] By: jhi                                   on 2000/12/11  22:27:23
4454         Log: (accidentally empty check-in)
4455      Branch: perl
4456            ! lib/File/DosGlob.pm
4457 ____________________________________________________________________________
4458 [  8082] By: nick                                  on 2000/12/11  19:09:51
4459         Log: Restore mmap function (broken by tweaks to shared buffer
4460              layer for encode(xxxx)).
4461      Branch: perlio
4462            ! perlio.c
4463 ____________________________________________________________________________
4464 [  8081] By: jhi                                   on 2000/12/11  18:29:13
4465         Log: Subject: Re: The long awaited feature ...
4466              From: Simon Cozens <simon@cozens.net>
4467              Date: Mon, 11 Dec 2000 15:54:24 +0000
4468              Message-ID: <20001211155424.A17680@deep-dark-truthful-mirror.perlhacker.org>
4469              
4470              More io/utf8 tests.
4471      Branch: perl
4472            ! t/io/utf8.t
4473 ____________________________________________________________________________
4474 [  8080] By: jhi                                   on 2000/12/11  18:19:36
4475         Log: Subject: PATCH MakeMaker manpage clarification
4476              From: andreas.koenig@anima.de (Andreas J. Koenig)
4477              Date: 10 Dec 2000 20:46:13 +0100
4478              Message-ID: <m3aea4kqka.fsf@ak-71.mind.de>
4479      Branch: perl
4480            ! lib/ExtUtils/MakeMaker.pm
4481 ____________________________________________________________________________
4482 [  8079] By: jhi                                   on 2000/12/11  15:35:07
4483         Log: Subject: Re: [ID 20001204.007] -MO=Deparse -we '{234;}' failing
4484              From: Simon Cozens <simon@cozens.net>
4485              Date: Sun, 10 Dec 2000 19:06:19 +0000
4486              Message-ID: <20001210190619.B21402@deep-dark-truthful-mirror.perlhacker.org>
4487      Branch: perl
4488            ! ext/B/B/Deparse.pm t/lib/b.t
4489 ____________________________________________________________________________
4490 [  8078] By: jhi                                   on 2000/12/11  15:09:11
4491         Log: Subject: [PATCH] docs on NaN
4492              From: Nicholas Clark <nick@ccl4.org>
4493              Date: Mon, 11 Dec 2000 01:48:38 +0000
4494              Message-ID: <20001211014838.B99205@plum.flirble.org>
4495      Branch: perl
4496            ! pod/perlop.pod
4497 ____________________________________________________________________________
4498 [  8077] By: jhi                                   on 2000/12/11  15:02:21
4499         Log: Subject: [PATCH] Re: [Fwd: BUG 20001205.022] Local on Hash elements
4500              From: Simon Cozens <simon@cozens.net>
4501              Date: Mon, 11 Dec 2000 01:21:45 +0000
4502              Message-ID: <20001211012144.A23467@deep-dark-truthful-mirror.perlhacker.org>
4503      Branch: perl
4504            ! pp.c pp_hot.c scope.c t/op/local.t
4505 ____________________________________________________________________________
4506 [  8076] By: nick                                  on 2000/12/10  20:43:32
4507         Log: Not merge worthy...
4508              Allow arg to layers e.g. open($fh,"<:encode(iso8859-15)",$name)
4509              syntax is modelled on attributes.
4510              Untested fix for io/utf8 on Win32 etc.
4511              Very clumsy start to the encode layer.
4512      Branch: perlio
4513            ! ext/Encode/Encode.xs perlio.c perlio.h perliol.h
4514 ____________________________________________________________________________
4515 [  8075] By: jhi                                   on 2000/12/10  18:39:33
4516         Log: Darwin is not Windows.
4517      Branch: perl
4518            ! lib/CGI.pm
4519 ____________________________________________________________________________
4520 [  8074] By: jhi                                   on 2000/12/10  18:31:27
4521         Log: Subject: Ambiguous -%c() resolved as a file test
4522              From: "Paul Marquess" <Paul.Marquess@openwave.com>
4523              Date: Sun, 10 Dec 2000 15:35:07 -0000
4524              Message-ID: <002601c062be$c5f749c0$a20a140a@bfs.phone.com>
4525      Branch: perl
4526            ! lib/ExtUtils/Liblist.pm lib/ExtUtils/MM_Unix.pm
4527 ____________________________________________________________________________
4528 [  8073] By: jhi                                   on 2000/12/10  18:16:29
4529         Log: Subject: PATCH installperl misinformed 
4530              From: andreas.koenig@anima.de (Andreas J. Koenig)
4531              Date: 10 Dec 2000 13:01:32 +0100 
4532              Message-ID: <m3r93glc2r.fsf@ak-71.mind.de>
4533      Branch: perl
4534            ! installperl
4535 ____________________________________________________________________________
4536 [  8072] By: jhi                                   on 2000/12/10  18:07:55
4537         Log: The walkoptree confusion rages; walkoptree() seems to be coming
4538              from B.xs, while walkoptree_slow() comes from B.pm.
4539      Branch: perl
4540            ! ext/B/B.pm
4541 ____________________________________________________________________________
4542 [  8071] By: nick                                  on 2000/12/10  11:45:47
4543         Log: Integrate mainline
4544      Branch: perlio
4545           +> t/base/commonsense.t
4546           !> (integrate 37 files)
4547 ____________________________________________________________________________
4548 [  8070] By: jhi                                   on 2000/12/10  04:46:21
4549         Log: Update Changes.
4550      Branch: perl
4551            ! Changes patchlevel.h
4552 ____________________________________________________________________________
4553 [  8069] By: jhi                                   on 2000/12/10  04:39:19
4554         Log: Subject: Re: PATCH: Let Test::Harness bail out early (Was: Testing module dependencies)
4555              From: andreas.koenig@anima.de (Andreas J. Koenig)
4556              Date: 09 Dec 2000 17:14:25 +0100
4557              Message-ID: <m3wvd9o9lq.fsf@ak-71.mind.de>
4558      Branch: perl
4559            + t/base/commonsense.t
4560            ! MANIFEST lib/Test/Harness.pm t/TEST t/UTEST
4561 ____________________________________________________________________________
4562 [  8068] By: jhi                                   on 2000/12/10  04:17:36
4563         Log: Subject: [PATCH 5.7.0@8047] RE: [ID 20001013.009] DB_File issues warning when setting element to    undef
4564              From: "Paul Marquess" <paul_marquess@yahoo.co.uk>
4565              Date: Sat, 9 Dec 2000 16:47:22 -0000
4566              Message-ID: <002001c061ff$b3aba820$a20a140a@bfs.phone.com>
4567      Branch: perl
4568            ! ext/DB_File/typemap ext/GDBM_File/GDBM_File.pm
4569            ! ext/GDBM_File/typemap ext/NDBM_File/NDBM_File.pm
4570            ! ext/NDBM_File/typemap ext/ODBM_File/ODBM_File.pm
4571            ! ext/ODBM_File/typemap ext/SDBM_File/SDBM_File.pm
4572            ! ext/SDBM_File/typemap t/lib/db-btree.t t/lib/db-hash.t
4573            ! t/lib/db-recno.t t/lib/gdbm.t t/lib/ndbm.t t/lib/odbm.t
4574            ! t/lib/sdbm.t
4575 ____________________________________________________________________________
4576 [  8067] By: jhi                                   on 2000/12/10  03:52:02
4577         Log: Test case for #8066.
4578      Branch: perl
4579            ! t/op/misc.t
4580 ____________________________________________________________________________
4581 [  8066] By: jhi                                   on 2000/12/10  03:50:30
4582         Log: Subject: [PATCH] Re: [ID 20001202.002] [BUG all] 'die qr{pattern}' does not check termination
4583              From: Simon Cozens <simon@cozens.net>
4584              Date: Sun, 10 Dec 2000 00:55:37 +0000
4585              Message-ID: <20001210005537.B16221@deep-dark-truthful-mirror.perlhacker.org>
4586      Branch: perl
4587            ! pp_sys.c
4588 ____________________________________________________________________________
4589 [  8065] By: jhi                                   on 2000/12/10  03:44:52
4590         Log: Test case for #8064.
4591      Branch: perl
4592            ! t/comp/proto.t
4593 ____________________________________________________________________________
4594 [  8064] By: jhi                                   on 2000/12/10  03:42:32
4595         Log: Subject: Re: prototype of substr
4596              From: Simon Cozens <simon@cozens.net>
4597              Date: Sun, 10 Dec 2000 00:13:33 +0000
4598              Message-ID: <20001210001333.A16221@deep-dark-truthful-mirror.perlhacker.org>
4599              
4600              Make CORE::substr to be '$$;$$' instead of '$$;$;$'.
4601      Branch: perl
4602            ! pp.c
4603 ____________________________________________________________________________
4604 [  8063] By: jhi                                   on 2000/12/10  03:39:42
4605         Log: Subject: [PATCH] perlguts.pod
4606              From: Simon Cozens <simon@cozens.net>
4607              Date: Sun, 10 Dec 2000 00:06:47 +0000
4608              Message-ID: <20001210000647.A16203@deep-dark-truthful-mirror.perlhacker.org>
4609              
4610              Documentation of the different types of ops,
4611              plus the functions in dump.c
4612      Branch: perl
4613            ! pod/perlguts.pod
4614 ____________________________________________________________________________
4615 [  8062] By: jhi                                   on 2000/12/10  03:30:04
4616         Log: Subject: [ID 20001209.006] Not OK: perl v5.7.0 +DEVEL7978 on armv4l-linux-64int 2.2.17-rmk1 (UNINSTALLED)
4617              From: Nicholas Clark <nick@talking.bollo.cx>
4618              Date: Sat, 09 Dec 2000 18:57:25 +0000
4619              Message-Id: <E144pBV-0002Nv-00@Bagpuss.unfortu.net>
4620              
4621              Be more robust in weird hostname setups.
4622      Branch: perl
4623            ! t/lib/net-hostent.t
4624 ____________________________________________________________________________
4625 [  8061] By: jhi                                   on 2000/12/10  03:28:21
4626         Log: Pacify fussy compiler. 
4627      Branch: perl
4628            ! pp_sys.c
4629 ____________________________________________________________________________
4630 [  8060] By: jhi                                   on 2000/12/10  02:52:46
4631         Log: Integrate perlio.
4632      Branch: perl
4633           !> pp_sys.c t/io/utf8.t
4634 ____________________________________________________________________________
4635 [  8059] By: nick                                  on 2000/12/09  23:40:14
4636         Log: read/sysread/recv should now be utf8 aware.
4637              Basic test for utf8 read.
4638      Branch: perlio
4639            ! pp_sys.c t/io/utf8.t
4640 ____________________________________________________________________________
4641 [  8058] By: jhi                                   on 2000/12/09  21:56:02
4642         Log: Integrate perlio.
4643      Branch: perl
4644           +> t/io/utf8.t
4645           !> MANIFEST doio.c perlio.c pp_sys.c sv.c t/comp/require.t toke.c
4646 ____________________________________________________________________________
4647 [  8057] By: jhi                                   on 2000/12/09  21:53:35
4648         Log: Subject: Re: Additional patch for UTF8-keys (Re: perl@8016)
4649              From: Inaba Hiroto <inaba@st.rim.or.jp>
4650              Date: Sun, 10 Dec 2000 05:53:21 +0900
4651              Message-ID: <3A329BC0.15E8BFF9@st.rim.or.jp>
4652              
4653              Tests for #8056.
4654      Branch: perl
4655            ! t/op/each.t
4656 ____________________________________________________________________________
4657 [  8056] By: jhi                                   on 2000/12/09  21:51:16
4658         Log: Subject: Additional patch for UTF8-keys (Re: perl@8016)
4659              From: Inaba Hiroto <inaba@st.rim.or.jp>
4660              Date: Sat, 09 Dec 2000 18:02:00 +0900
4661              Message-ID: <3A31F508.34F4BB23@st.rim.or.jp>
4662              
4663              exists() didn't work for UTF-8 keys, and neither did shared hash keys.
4664      Branch: perl
4665            ! embed.h embed.pl hv.c objXSUB.h op.c proto.h sv.c
4666 ____________________________________________________________________________
4667 [  8055] By: nick                                  on 2000/12/09  20:11:48
4668         Log: Make write() (i.e. formats) utf8-aware by calling do_print() rather
4669              than raw PerlIO_write() - does not seem to break any tests.
4670      Branch: perlio
4671            ! pp_sys.c
4672 ____________________________________________________________________________
4673 [  8054] By: nick                                  on 2000/12/09  19:47:30
4674         Log: Make print, syswrite, send, readline, getc honour utf8-ness of PerlIO.
4675              (sysread, recv and write i.e. formats still to do...)
4676              Allow :utf8 or :bytes in PerlIO_apply_layers() so that
4677              open($fh,">:utf8","name")
4678              etc. work. - "applying" those just sets/clears the UTF8 bit of the top layer,
4679              so no extra overhead is involved.
4680              Tweak t/comp/require.t to add a 'use bytes' to permit its dubious writing of BOM
4681              to a non-utf8 stream.
4682              Add initial io/utf8.t
4683              Fix SvPVutf8() - sv_2pv() was not expecting to be called with something
4684              that was already SvPOK() - (we just fossiked with SvUTF8 bit). Fix that
4685              and also just use the SvPV macro in sv_2pvutf8() to avoid the issue/overhead.
4686      Branch: perlio
4687            + t/io/utf8.t
4688            ! MANIFEST doio.c perlio.c pp_sys.c sv.c t/comp/require.t
4689 ____________________________________________________________________________
4690 [  8053] By: nick                                  on 2000/12/09  19:26:37
4691         Log: Did not get that has_utf8/this_utf8 fix right last time, another spot
4692              was only testing this_utf8.
4693      Branch: perlio
4694            ! toke.c
4695 ____________________________________________________________________________
4696 [  8052] By: nick                                  on 2000/12/09  19:09:41
4697         Log: Typo/thinko in S_scan_const() - seeing high bit sets has_utf8 not this_utf8
4698              i.e. the output string has one, but don't mess with source assumption.
4699      Branch: perlio
4700            ! toke.c
4701 ____________________________________________________________________________
4702 [  8051] By: jhi                                   on 2000/12/09  16:55:17
4703         Log: Integrate perlio.
4704      Branch: perl
4705           !> MANIFEST embedvar.h intrpvar.h mg.c perl.c perlapi.h pp_hot.c
4706           !> sv.c thrdvar.h util.c
4707 ____________________________________________________________________________
4708 [  8050] By: jhi                                   on 2000/12/09  16:48:07
4709         Log: Nits noticed by Peter Prymmer.
4710      Branch: perl
4711            ! lib/ExtUtils/MM_VMS.pm
4712 ____________________________________________________________________________
4713 [  8049] By: nick                                  on 2000/12/09  13:49:40
4714         Log: UTF8 output prework.
4715              - Store $\ and $, as SVs so they can have SvUTF8 flag
4716              - use do_print() rather than raw PerlIO_write() to print them.
4717      Branch: perlio
4718            ! embedvar.h intrpvar.h mg.c perl.c perlapi.h pp_hot.c sv.c
4719            ! thrdvar.h util.c
4720 ____________________________________________________________________________
4721 [  8048] By: nick                                  on 2000/12/09  12:30:43
4722         Log: Integrate mainline.
4723      Branch: perlio
4724           +> ext/Encode/Encode/iso8859-16.enc ext/POSIX/hints/svr4.pl
4725           +> t/op/reverse.t
4726           !> Changes MANIFEST doop.c ext/POSIX/Makefile.PL hints/svr4.sh
4727           !> lib/ExtUtils/MM_OS2.pm lib/ExtUtils/MM_Unix.pm
4728           !> lib/ExtUtils/MM_VMS.pm lib/ExtUtils/Manifest.pm patchlevel.h
4729           !> pod/perlapi.pod pod/perlfunc.pod pod/perlintern.pod pp.h
4730           !> pp_hot.c t/README t/base/term.t t/lib/bigfltpm.t
4731           !> t/op/utf8decode.t t/pragma/warn/utf8 utf8.c utf8.h
4732 ____________________________________________________________________________
4733 [  8047] By: jhi                                   on 2000/12/09  00:23:27
4734         Log: Subject: Re: [pvhp@forte.com: [ID 20001208.004] Not OK: perl v5.7.0 +DEVEL8042 on VMS_AXP V7.1 (UNINSTALLED)]
4735              From: Michael G Schwern <schwern@pobox.com>
4736              Date: Fri, 8 Dec 2000 14:43:04 -0600
4737      Branch: perl
4738            ! lib/ExtUtils/MM_VMS.pm
4739 ____________________________________________________________________________
4740 [  8046] By: jhi                                   on 2000/12/08  23:10:27
4741         Log: A missed check-in.
4742      Branch: perl
4743            ! lib/ExtUtils/Manifest.pm
4744 ____________________________________________________________________________
4745 [  8045] By: jhi                                   on 2000/12/08  21:57:12
4746         Log: (null check-in)
4747      Branch: perl
4748            ! lib/ExtUtils/MM_Unix.pm pod/perlintern.pod
4749 ____________________________________________________________________________
4750 [  8044] By: jhi                                   on 2000/12/08  21:11:06
4751         Log: Add ISO 8859-16 encoding.  Not a standard yet but seems to be
4752              at the final draft stage.
4753      Branch: perl
4754            + ext/Encode/Encode/iso8859-16.enc
4755            ! MANIFEST
4756 ____________________________________________________________________________
4757 [  8043] By: jhi                                   on 2000/12/08  16:39:04
4758         Log: Update Changes.
4759      Branch: perl
4760            ! Changes patchlevel.h
4761 ____________________________________________________________________________
4762 [  8042] By: jhi                                   on 2000/12/08  16:33:39
4763         Log: Do not return the Unicode replacement character if UTF-8
4764              decoding goes awry, it should be up to the caller to decide.
4765      Branch: perl
4766            ! pod/perlapi.pod utf8.c
4767 ____________________________________________________________________________
4768 [  8041] By: jhi                                   on 2000/12/08  16:22:28
4769         Log: metaconfig maintenance.
4770      Branch: metaconfig
4771            ! U/modified/stdchar.U
4772      Branch: metaconfig/U/perl
4773            + testsyml.U
4774 ____________________________________________________________________________
4775 [  8040] By: jhi                                   on 2000/12/08  16:03:08
4776         Log: Subject: [ID 20001207.009] Not OK: perl v5.7.0 +DEVEL8030 on os2-64int-ld 2.30
4777              From: sthoenna@efn.org
4778              Date: Thu, 7 Dec 2000 21:32:43 -0800 (PST)
4779              Message-Id: <200012080532.eB85Wh729109@garcia.efn.org>
4780      Branch: perl
4781            ! Changes lib/ExtUtils/MM_OS2.pm
4782 ____________________________________________________________________________
4783 [  8039] By: jhi                                   on 2000/12/08  15:57:11
4784         Log: Subject: [PATCH] Re: ebcdic <-> ascii tables interjected in uv <-> utf8 considered harmful
4785              From: Simon Cozens <simon@cozens.net>
4786              Date: Fri, 8 Dec 2000 13:33:31 +0000
4787              Message-ID: <20001208133331.A11535@deep-dark-truthful-mirror.perlhacker.org>
4788              
4789              (The pp_hot part needed a rewrite.)
4790      Branch: perl
4791            ! doop.c pp_hot.c utf8.c
4792 ____________________________________________________________________________
4793 [  8038] By: jhi                                   on 2000/12/08  15:25:08
4794         Log: Subject: djSP
4795              From: Michael Stevens <michael@etla.org>
4796              Date: Wed, 6 Dec 2000 23:24:01 +0000
4797              Message-ID: <20001206232400.A21381@firedrake.org>
4798              
4799              Plus a note from Nick Ing-Simmons.
4800      Branch: perl
4801            ! pp.h
4802 ____________________________________________________________________________
4803 [  8037] By: jhi                                   on 2000/12/08  15:18:35
4804         Log: Filetype is text.
4805      Branch: perl
4806            ! t/op/utf8decode.t
4807 ____________________________________________________________________________
4808 [  8036] By: jhi                                   on 2000/12/08  03:31:27
4809         Log: Subject: [ID 20001207.004] [PATCH 5.6.0 and 5.7.x] add NCR MP-RAS support
4810              From: Andy Dougherty <doughera@lafayette.edu>
4811              Date: Thu, 7 Dec 2000 12:36:45 -0500 (EST)
4812              Message-Id: <Pine.SOL.4.10.10012071235400.13162-100000@maxwell.phys.lafayette.edu>
4813              
4814              Subject: Re: [ID 20001207.004] [PATCH 5.6.0 and 5.7.x] add NCR MP-RAS support
4815              From: Andy Dougherty <doughera@lafayette.edu>
4816              Date: Thu, 7 Dec 2000 13:56:10 -0500 (EST)
4817              Message-ID: <Pine.SOL.4.10.10012071354420.6665-100000@maxwell.phys.lafayette.edu>
4818      Branch: perl
4819            + ext/POSIX/hints/svr4.pl
4820            ! MANIFEST ext/POSIX/Makefile.PL hints/svr4.sh t/lib/bigfltpm.t
4821 ____________________________________________________________________________
4822 [  8035] By: jhi                                   on 2000/12/08  03:26:01
4823         Log: Subject: [ID 20001207.003] [PATCH] t/base/term.t causes abort if Config.pm not built
4824              From: Andy Dougherty <doughera@lafayette.edu>
4825              Date: Thu, 7 Dec 2000 10:50:47 -0500 (EST)
4826              Message-Id: <Pine.SOL.4.10.10012071049400.7566-100000@maxwell.phys.lafayette.edu>
4827      Branch: perl
4828            ! t/README t/base/term.t
4829 ____________________________________________________________________________
4830 [  8034] By: jhi                                   on 2000/12/08  03:21:59
4831         Log: Subject: DOC PATCH 5.6.0: -s return value incompletely documented
4832              From: mjd@plover.com  
4833              Date: 7 Dec 2000 21:04:20 -0000
4834              Message-ID: <20001207210420.22282.qmail@plover.com>
4835              
4836              Plus -z doc.
4837      Branch: perl
4838            ! pod/perlfunc.pod
4839 ____________________________________________________________________________
4840 [  8033] By: jhi                                   on 2000/12/08  03:19:03
4841         Log: Use the UTF8 macros a bit.  They can't be used with abandon
4842              everywhere because we do generate illegal UTF-8 in some situations.
4843              This is of course naughty.
4844      Branch: perl
4845            ! pod/perlapi.pod utf8.c utf8.h
4846 ____________________________________________________________________________
4847 [  8032] By: jhi                                   on 2000/12/08  03:00:09
4848         Log: Out of sync?
4849      Branch: perl
4850            ! t/pragma/warn/utf8
4851 ____________________________________________________________________________
4852 [  8031] By: jhi                                   on 2000/12/08  02:22:39
4853         Log: Cnt spl.
4854      Branch: perl
4855            ! MANIFEST
4856 ____________________________________________________________________________
4857 [  8030] By: jhi                                   on 2000/12/08  01:23:54
4858         Log: Add test for reverse().
4859      Branch: perl
4860            + t/op/reverse.t
4861            ! MANIFEST
4862 ____________________________________________________________________________
4863 [  8029] By: jhi                                   on 2000/12/08  01:21:47
4864         Log: Integrate perlio.
4865      Branch: perl
4866           !> ext/IO/IO.xs fakesdio.h global.sym lib/warnings.pm perlapi.c
4867           !> perlio.c perlio.h perlsdio.h warnings.pl
4868 ____________________________________________________________________________
4869 [  8028] By: jhi                                   on 2000/12/08  01:19:08
4870         Log: Introduce macros for UTF8 decoding.
4871      Branch: perl
4872            ! t/op/utf8decode.t t/pragma/warn/utf8 utf8.c utf8.h
4873 ____________________________________________________________________________
4874 [  8027] By: nick                                  on 2000/12/07  22:18:19
4875         Log: Integrate mainline
4876      Branch: perlio
4877           !> embed.pl pod/perlapi.pod utf8.c
4878 ____________________________________________________________________________
4879 [  8026] By: nick                                  on 2000/12/07  21:45:08
4880         Log: Various oddities p4 diff -se showed up
4881              Remove 'our' from warnings.pl
4882      Branch: perlio
4883            ! global.sym lib/warnings.pm pod/perlapi.pod warnings.pl
4884 ____________________________________________________________________________
4885 [  8025] By: nick                                  on 2000/12/07  21:43:32
4886         Log: Change PerlIO_(get|set)pos to take SV *
4887              Should fix, OS/2, VMS, (sfio??)
4888      Branch: perlio
4889            ! ext/IO/IO.xs fakesdio.h perlapi.c perlio.c perlio.h perlsdio.h
4890 ____________________________________________________________________________
4891 [  8024] By: jhi                                   on 2000/12/07  19:05:32
4892         Log: Document utf8_to_uv() better.
4893      Branch: perl
4894            ! pod/perlapi.pod utf8.c
4895 ____________________________________________________________________________
4896 [  8023] By: jhi                                   on 2000/12/07  18:23:47
4897         Log: Document utf8_length(), utf8_distance(), and utf8_hop().
4898      Branch: perl
4899            ! embed.pl pod/perlapi.pod utf8.c
4900 ____________________________________________________________________________
4901 [  8022] By: jhi                                   on 2000/12/07  04:13:51
4902         Log: Integrate perlio.
4903      Branch: perl
4904           !> perlio.c t/io/dup.t win32/config.vc win32/config_H.bc
4905           !> win32/config_H.gc win32/config_H.vc win32/config_h.PL
4906           !> win32/makefile.mk
4907 ____________________________________________________________________________
4908 [  8021] By: nick                                  on 2000/12/07  00:28:14
4909         Log: Various attempts at MSVC debug - not sure what has
4910              changed but works now. 
4911              Seems atexit() _may_ work for DLLs built with MSVC so don't
4912              call cleanup that way.
4913      Branch: perlio
4914            ! perlio.c win32/makefile.mk
4915 ____________________________________________________________________________
4916 [  8020] By: nick                                  on 2000/12/06  19:57:20
4917         Log: Integrate mainline
4918      Branch: perlio
4919           +> lib/ExtUtils/MANIFEST.SKIP t/op/concat.t
4920           !> (integrate 75 files)
4921 ____________________________________________________________________________
4922 [  8019] By: nick                                  on 2000/12/06  19:28:21
4923         Log: Add useperlio to config.vc
4924              Turn off binmode in config_H.PL
4925              Regen all the config_H.xx
4926              Attempt to get debugging build with MSVC.
4927      Branch: perlio
4928            ! win32/config.vc win32/config_H.bc win32/config_H.gc
4929            ! win32/config_H.vc win32/config_h.PL win32/makefile.mk
4930 ____________________________________________________________________________
4931 [  8018] By: nick                                  on 2000/12/06  19:21:57
4932         Log: Test various dup/external program options on all platforms.
4933      Branch: perlio
4934            ! t/io/dup.t
4935 ____________________________________________________________________________
4936 [  8017] By: nick                                  on 2000/12/06  19:20:47
4937         Log: Fix harness to be less picky
4938      Branch: perlio
4939            ! lib/Test/Harness.pm
4940 ____________________________________________________________________________
4941 [  8016] By: jhi                                   on 2000/12/06  16:45:12
4942         Log: Update Changes.
4943      Branch: perl
4944            ! Changes patchlevel.h
4945 ____________________________________________________________________________
4946 [  8015] By: jhi                                   on 2000/12/06  16:41:03
4947         Log: Test \x{...} with ord().
4948      Branch: perl
4949            ! t/op/ord.t
4950 ____________________________________________________________________________
4951 [  8014] By: jhi                                   on 2000/12/06  16:20:33
4952         Log: Test tweak because of #8013.
4953      Branch: perl
4954            ! t/lib/b.t
4955 ____________________________________________________________________________
4956 [  8013] By: jhi                                   on 2000/12/06  16:09:09
4957         Log: Subject: [PATCH] $VERSION crusade, strict, tests, etc... all over lib/
4958              From: Michael G Schwern <schwern@pobox.com>
4959              Date: Tue, 5 Dec 2000 21:23:28 -0500
4960              Message-ID: <20001205212328.C6473@blackrider.aocn.com>
4961              
4962              Carp::Heavy parts not very applicable because of recent changes.
4963      Branch: perl
4964            ! ext/Opcode/Opcode.pm lib/AnyDBM_File.pm lib/CGI/Apache.pm
4965            ! lib/CGI/Switch.pm lib/Carp.pm lib/Carp/Heavy.pm
4966            ! lib/DirHandle.pm lib/Dumpvalue.pm lib/English.pm lib/Env.pm
4967            ! lib/Exporter.pm lib/Exporter/Heavy.pm
4968            ! lib/ExtUtils/MM_Cygwin.pm lib/ExtUtils/MM_OS2.pm
4969            ! lib/ExtUtils/MM_Unix.pm lib/ExtUtils/MM_VMS.pm
4970            ! lib/ExtUtils/MM_Win32.pm lib/File/CheckTree.pm
4971            ! lib/File/DosGlob.pm lib/File/Find.pm lib/File/stat.pm
4972            ! lib/FileCache.pm lib/I18N/Collate.pm lib/Net/hostent.pm
4973            ! lib/Net/netent.pm lib/Net/protoent.pm lib/Net/servent.pm
4974            ! lib/Pod/Functions.pm lib/Pod/Html.pm lib/Search/Dict.pm
4975            ! lib/SelectSaver.pm lib/Term/Cap.pm lib/Term/Complete.pm
4976            ! lib/Term/ReadLine.pm lib/Text/Abbrev.pm lib/Tie/Hash.pm
4977            ! lib/Tie/RefHash.pm lib/Tie/Scalar.pm lib/Tie/SubstrHash.pm
4978            ! lib/Time/Local.pm lib/Time/tm.pm lib/UNIVERSAL.pm
4979            ! lib/User/grent.pm lib/User/pwent.pm lib/bytes.pm
4980            ! lib/charnames.pm lib/diagnostics.pm lib/filetest.pm
4981            ! lib/integer.pm lib/less.pm lib/locale.pm lib/open.pm
4982            ! lib/overload.pm lib/subs.pm lib/utf8.pm lib/vars.pm
4983            ! lib/warnings/register.pm t/lib/attrs.t t/lib/syslog.t
4984            ! warnings.pl
4985 ____________________________________________________________________________
4986 [  8012] By: jhi                                   on 2000/12/06  15:22:38
4987         Log: Subject: [PATCH] Re: New harness is failing things
4988              From: Nick Ing-Simmons <nik@tiuk.ti.com>
4989              Date: Wed, 6 Dec 2000 13:00:30 GMT
4990              Message-Id: <200012061300.NAA10567@mikado.tiuk.ti.com>
4991      Branch: perl
4992            ! lib/Test/Harness.pm
4993 ____________________________________________________________________________
4994 [  8011] By: jhi                                   on 2000/12/06  15:12:08
4995         Log: Subject: installhtml changes
4996              From: Michael Stevens <michael@etla.org>
4997              Date: Wed, 6 Dec 2000 13:15:53 +0000
4998              Message-ID: <20001206131553.A27317@firedrake.org>
4999      Branch: perl
5000            ! installhtml
5001 ____________________________________________________________________________
5002 [  8010] By: jhi                                   on 2000/12/06  15:06:05
5003         Log: Subject: the dTHR hits
5004              From: Michael Stevens <michael@etla.org>
5005              Date: Wed, 6 Dec 2000 12:06:03 +0000
5006              Message-ID: <20001206120603.A24581@firedrake.org>
5007              
5008              More, errrm, less dTHRs.
5009      Branch: perl
5010            ! bytecode.pl ext/B/B/C.pm
5011 ____________________________________________________________________________
5012 [  8009] By: jhi                                   on 2000/12/06  15:04:25
5013         Log: Subject: MakeMaker mailing list gone?
5014              From: Michael G Schwern <schwern@pobox.com>
5015              Date: Tue, 5 Dec 2000 19:29:59 -0500
5016              Message-ID: <20001205192959.B6473@blackrider.aocn.com>
5017              
5018              The MakeMaker mailing list is dead, perlbug is the right
5019              address to report bugs.
5020      Branch: perl
5021            ! lib/ExtUtils/MakeMaker.pm
5022 ____________________________________________________________________________
5023 [  8008] By: jhi                                   on 2000/12/06  15:00:32
5024         Log: Subject: [PATCH ExtUtils::Manifest 1.1] Default MANIFEST.SKIP]
5025              From: Michael G Schwern <schwern@pobox.com>
5026              Date: Tue, 5 Dec 2000 19:21:21 -0500
5027              Message-ID: <20001205192121.A6473@blackrider.aocn.com>
5028              
5029              Add a default MANIFEST skip that ignores things like
5030              version control files, editor temporary files, and the Makefile.
5031      Branch: perl
5032            + lib/ExtUtils/MANIFEST.SKIP
5033            ! MANIFEST lib/ExtUtils/Manifest.pm
5034 ____________________________________________________________________________
5035 [  8007] By: jhi                                   on 2000/12/06  14:57:20
5036         Log: In Amiga more manual hackery of the scripts seems to be needed,
5037              from Jan-Erik Karlsson.  Why Configure does not get this right
5038              is unknown, may be shell-induced.
5039      Branch: perl
5040            ! README.amiga
5041 ____________________________________________________________________________
5042 [  8006] By: jhi                                   on 2000/12/05  23:53:12
5043         Log: Add TOPm1s to peek at the second topmost stack item.
5044      Branch: perl
5045            ! pp.h
5046 ____________________________________________________________________________
5047 [  8005] By: jhi                                   on 2000/12/05  23:13:55
5048         Log: Avaunt, you foul UTF-8 tests.
5049      Branch: perl
5050            ! t/op/ver.t t/pragma/utf8.t
5051 ____________________________________________________________________________
5052 [  8004] By: jhi                                   on 2000/12/05  23:09:54
5053         Log: Continue utf8 dispersal. 
5054      Branch: perl
5055            + t/op/concat.t
5056            ! MANIFEST t/pragma/utf8.t
5057 ____________________________________________________________________________
5058 [  8003] By: nick                                  on 2000/12/05  23:02:39
5059         Log: Integrate mainline.
5060      Branch: perlio
5061           +> t/op/length.t t/op/utf8decode.t
5062           !> (integrate 69 files)
5063 ____________________________________________________________________________
5064 [  8002] By: jhi                                   on 2000/12/05  22:59:28
5065         Log: Integrate perlio.
5066      Branch: perl
5067           !> iperlsys.h perl.c perlio.c win32/perllib.c
5068 ____________________________________________________________________________
5069 [  8001] By: nick                                  on 2000/12/05  22:07:52
5070         Log: Win32 PERL_IMPLICIT_SYS passes all tests with USE_PERLIO
5071              - calloc/free suffer from damage on TerminateThread()
5072              - use PerlMemShared (as originally planned) now fixed
5073              - avoid doing anything important on DLL "detach".
5074      Branch: perlio
5075            ! perl.c perlio.c win32/perllib.c
5076 ____________________________________________________________________________
5077 [  8000] By: nick                                  on 2000/12/05  21:05:09
5078         Log: Fix gross PerlMemShared issue.
5079      Branch: perlio
5080            ! iperlsys.h
5081 ____________________________________________________________________________
5082 [  7999] By: jhi                                   on 2000/12/05  20:46:58
5083         Log: Test for Unicode (UTF-8) hash keys.
5084      Branch: perl
5085            ! t/op/each.t
5086 ____________________________________________________________________________
5087 [  7998] By: jhi                                   on 2000/12/05  20:30:35
5088         Log: Remove an unnecessary 'use utf8' (unnecessary because \x{...}
5089              is now always UTF-8), empty line cosmetics.
5090      Branch: perl
5091            ! t/pragma/utf8.t
5092 ____________________________________________________________________________
5093 [  7997] By: jhi                                   on 2000/12/05  20:15:40
5094         Log: Subject: Re: STRLEN - what?
5095              From: Andy Dougherty <doughera@lafayette.edu>
5096              Date: Tue, 5 Dec 2000 11:58:46 -0500 (EST)
5097              Message-ID: <Pine.SOL.4.10.10012051152100.3586-100000@maxwell.phys.lafayette.edu>
5098              
5099              Explain STRLEN.
5100      Branch: perl
5101            ! pod/perlguts.pod
5102 ____________________________________________________________________________
5103 [  7996] By: jhi                                   on 2000/12/05  20:13:34
5104         Log: Split off the UTF-8 decoder tests, make them to check also
5105              the error message.
5106      Branch: perl
5107            + t/op/utf8decode.t
5108            ! MANIFEST t/pragma/utf8.t utf8.c
5109 ____________________________________________________________________________
5110 [  7995] By: jhi                                   on 2000/12/05  16:39:47
5111         Log: Start migrating bits of pragma/utf8 to elsewhere
5112              (since the long term plan is to obsolete 'use utf8').
5113      Branch: perl
5114            + t/op/length.t
5115            ! MANIFEST t/pragma/utf8.t
5116 ____________________________________________________________________________
5117 [  7994] By: jhi                                   on 2000/12/05  16:30:21
5118         Log: Fix a manual edit typo from #7993, fix the message formatting
5119              for Unicode, add few our declarations.
5120      Branch: perl
5121            ! lib/Carp/Heavy.pm
5122 ____________________________________________________________________________
5123 [  7993] By: jhi                                   on 2000/12/05  16:09:15
5124         Log: Subject: Need help with warnings :-(
5125              From: "Ben Tilly" <ben_tilly@hotmail.com>
5126              Date: Tue, 05 Dec 2000 01:35:54 -0500
5127              Message-ID: <LAW2-F2380n7J95K7aI00001bb9@hotmail.com>
5128              
5129              Subject: UPDATE: Carp/Heavy now passes all tests
5130              From: "Ben Tilly" <ben_tilly@hotmail.com>
5131              Date: Tue, 05 Dec 2000 07:59:41 -0500
5132              Message-ID: <LAW2-F58V1qdiixjnzi00005523@hotmail.com>
5133              
5134              The Brave New Carp.
5135      Branch: perl
5136            ! lib/Carp.pm lib/Carp/Heavy.pm
5137 ____________________________________________________________________________
5138 [  7992] By: jhi                                   on 2000/12/05  15:55:08
5139         Log: Subject: [PATCH perl@7979] cygwin port
5140              From: "Eric Fifer" <efifer@dircon.co.uk>
5141              Date: Tue, 5 Dec 2000 14:04:09 -0000
5142              Message-Id: <200012051402.OAA60286@mailhost2.dircon.co.uk>
5143      Branch: perl
5144            ! t/lib/net-hostent.t
5145 ____________________________________________________________________________
5146 [  7991] By: jhi                                   on 2000/12/05  15:52:34
5147         Log: Subject: Re: [PATCH] The largest hoax of all times?
5148              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
5149              Date: Tue, 5 Dec 2000 00:40:25 -0500
5150              Message-ID: <20001205004025.A4050@monk.mps.ohio-state.edu>
5151              
5152              Subject: Re: [PATCH] The largest hoax of all times?
5153              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
5154              Date: Mon, 4 Dec 2000 23:55:53 -0500
5155              Message-ID: <20001204235553.A1140@monk.mps.ohio-state.edu>
5156              
5157              Subject: Re: [PATCH] The largest hoax of all times?
5158              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
5159              Date: Tue, 5 Dec 2000 01:28:45 -0500
5160              Message-ID: <20001205012844.A4227@monk.mps.ohio-state.edu>
5161              
5162              Fix the unpredictable order of DESTROYs.
5163      Branch: perl
5164            ! embed.h embed.pl objXSUB.h pod/perlapi.pod proto.h scope.c
5165            ! sv.c sv.h t/op/ref.t
5166 ____________________________________________________________________________
5167 [  7990] By: jhi                                   on 2000/12/05  14:38:53
5168         Log: Subject: [PATCH] shrink pp_hot fractionally
5169              From: Nicholas Clark <nick@ccl4.org>
5170              Date: Tue, 5 Dec 2000 12:44:31 +0000
5171              Message-ID: <20001205124431.E74518@plum.flirble.org>
5172              
5173              Use report_evil_fh().
5174      Branch: perl
5175            ! opcode.pl opnames.h pp_hot.c util.c
5176 ____________________________________________________________________________
5177 [  7989] By: jhi                                   on 2000/12/05  14:21:27
5178         Log: Subject: [PATCH] [ID 20001203.001] Not OK: perl v5.7.0 +DEVEL7965 on os2-64int-ld 2.30 (UNINSTALLED)
5179              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
5180              Date: Mon, 04 Dec 2000 22:21:59 -0800
5181              Message-ID: <HmIL6gzkgepS092yn@efn.org>
5182              
5183              Harness shouldn't ignore responses like "ok 3\r\r\n".
5184      Branch: perl
5185            ! lib/Test/Harness.pm
5186 ____________________________________________________________________________
5187 [  7988] By: jhi                                   on 2000/12/05  13:51:28
5188         Log: Integrate the "skip" messages to explain().
5189      Branch: perl
5190            ! t/lib/syslfs.t t/op/lfs.t
5191 ____________________________________________________________________________
5192 [  7987] By: jhi                                   on 2000/12/05  12:34:54
5193         Log: The one that got away in #7984.
5194              
5195              Subject: Re: dTHR - what and why?
5196              From: Michael Stevens <michael@etla.org> 
5197              Date: Tue, 5 Dec 2000 11:15:52 +0000
5198              Message-ID: <20001205111552.A4647@firedrake.org>
5199      Branch: perl
5200            ! sv.h
5201 ____________________________________________________________________________
5202 [  7986] By: gsar                                  on 2000/12/05  09:14:44
5203         Log: fix open(FOO, ">&MYSOCK") failure under Windows 9x (problem is
5204              due to the notorious GetFileType() bug in Windows 9x, which fstat()
5205              tickles)
5206      Branch: perl
5207            ! win32/perlhost.h win32/win32.c win32/win32.h win32/win32sck.c
5208 ____________________________________________________________________________
5209 [  7985] By: jhi                                   on 2000/12/05  05:49:03
5210         Log: Integrate perlio.
5211      Branch: perl
5212           !> iperlsys.h perl.c perlio.c perlio.h perliol.h sv.c t/op/fork.t
5213           !> win32/perlhost.h win32/perllib.c
5214 ____________________________________________________________________________
5215 [  7984] By: jhi                                   on 2000/12/05  05:48:16
5216         Log: dTHR is a nop in 5.6.0 onwards.  Ergo, it can go.
5217      Branch: perl
5218            ! av.c cygwin/cygwin.c deb.c djgpp/djgpp.c doio.c doop.c dump.c
5219            ! epoc/epoc.c ext/ByteLoader/ByteLoader.xs
5220            ! ext/ByteLoader/byterun.c ext/Devel/DProf/DProf.xs
5221            ! ext/Thread/Thread.xs ext/re/re.xs gv.c hv.c mg.c op.c
5222            ! os2/OS2/REXX/REXX.xs os2/os2.c os2/os2ish.h perl.c perl.h
5223            ! perlapi.c pp.c pp.h pp_ctl.c pp_hot.c pp_sys.c regcomp.c
5224            ! regexec.c run.c scope.c sv.c taint.c thread.h toke.c
5225            ! universal.c utf8.c util.c vmesa/vmesa.c vms/ext/Stdio/Stdio.xs
5226            ! win32/win32.c
5227 ____________________________________________________________________________
5228 [  7983] By: nick                                  on 2000/12/04  23:27:43
5229         Log: PERL_IMPLICIT_SYS (almost) works - something odd with "signal"
5230      Branch: perlio
5231            ! iperlsys.h perl.c perlio.c perlio.h perliol.h sv.c t/op/fork.t
5232            ! win32/perlhost.h win32/perllib.c
5233 ____________________________________________________________________________
5234 [  7982] By: jhi                                   on 2000/12/04  19:44:09
5235         Log: Yet Another Copying-Without-Paying-Attention-To-SvUTF8(sv) Bug
5236              uncovered by #7980.
5237      Branch: perl
5238            ! op.c
5239 ____________________________________________________________________________
5240 [  7981] By: jhi                                   on 2000/12/04  19:42:07
5241         Log: Subject: [PATCH] Trivial dump.c feature
5242              From: Simon Cozens <simon@cozens.net>
5243              Date: Mon, 4 Dec 2000 18:08:38 +0000
5244              Message-ID: <20001204180838.A5541@pembro33.pmb.ox.ac.uk>
5245              
5246              Show whether a constant is UTF-8.
5247      Branch: perl
5248            ! dump.c
5249 ____________________________________________________________________________
5250 [  7980] By: jhi                                   on 2000/12/04  19:36:51
5251         Log: UTF-8 hash keys, patch from Inaba Hiroto.
5252      Branch: perl
5253            ! embed.h embed.pl hv.c hv.h pod/perlapi.pod proto.h
5254 ____________________________________________________________________________
5255 [  7979] By: jhi                                   on 2000/12/04  17:36:28
5256         Log: Update Changes.
5257      Branch: perl
5258            ! Changes patchlevel.h
5259 ____________________________________________________________________________
5260 [  7978] By: jhi                                   on 2000/12/04  16:42:17
5261         Log: Retract #7977, still too volatile (the euphemism of the day
5262              for unfinished and buggy :-)
5263      Branch: perl
5264            ! doop.c hv.c pp.c sv.h
5265 ____________________________________________________________________________
5266 [  7977] By: jhi                                   on 2000/12/04  16:25:15
5267         Log: (Retracted by #7978, too shaky yet.)
5268              
5269              Subject: Re: utf8 in hash keys, implementor missing
5270              From: Simon Cozens <simon@cozens.net>
5271              Date: Sat, 2 Dec 2000 19:49:35 +0000
5272              Message-ID: <20001202194935.A25673@pembro33.pmb.ox.ac.uk>
5273              
5274              The first step at UTF-8 hash keys.
5275      Branch: perl
5276            ! doop.c hv.c pp.c sv.h
5277 ____________________________________________________________________________
5278 [  7976] By: jhi                                   on 2000/12/04  16:13:53
5279         Log: Subject: [ID 20001203.001] Not OK: perl v5.7.0 +DEVEL7965 on os2-64int-ld 2.30 (UNINSTALLED)
5280              From: sthoenna@efn.org
5281              Date: Sun, 3 Dec 2000 19:06:53 -0800 (PST)
5282              Message-Id: <200012040306.eB436rE18922@garcia.efn.org>
5283      Branch: perl
5284            ! os2/os2.c perlio.c
5285 ____________________________________________________________________________
5286 [  7975] By: jhi                                   on 2000/12/04  16:05:25
5287         Log: Subject: Re: [ID 20001129.009] Not OK: perl v5.7.0 +DEVEL7928 on os2-64int-ld 2.30 (UNINSTALLED)
5288              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
5289              Date: Thu, 30 Nov 2000 20:50:37 -0800
5290              Message-ID: <d4yJ6gzkgGsJ092yn@efn.org>
5291      Branch: perl
5292            ! os2/os2.c
5293 ____________________________________________________________________________
5294 [  7974] By: jhi                                   on 2000/12/04  16:03:57
5295         Log: Subject: [PATCH] ++ 20% faster
5296              From: Nicholas Clark <nick@ccl4.org>
5297              Date: Mon, 4 Dec 2000 12:17:27 +0000
5298              Message-ID: <20001204121726.B52976@plum.flirble.org>
5299              
5300              Make '$i = ""; $i++' to produce true IVs without a hint of NVs.
5301      Branch: perl
5302            ! sv.c
5303 ____________________________________________________________________________
5304 [  7973] By: jhi                                   on 2000/12/04  16:00:48
5305         Log: 
5306              Subject: Re: Not OK: perl v5.7.0 +DEVEL7825 on aix 4.2.1.0 (UNINSTALLED)
5307              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
5308              Date: Mon, 04 Dec 2000 12:30:45 +0100
5309              Message-Id: <20001204122118.E85D.H.M.BRAND@hccnet.nl>
5310              
5311              AIX 4.2 (using latest patchlevels on 20001130) has a broken bind
5312              library (getprotobyname and getprotobynumber are outversioned by
5313              the same calls in libc, at least for xlc version 3.
5314      Branch: perl
5315            ! hints/aix.sh
5316 ____________________________________________________________________________
5317 [  7972] By: jhi                                   on 2000/12/04  02:58:31
5318         Log: Integrate perlio.
5319      Branch: perl
5320           !> doio.c iperlsys.h perl.c perl.h perlio.c perlio.h toke.c
5321           !> win32/makefile.mk win32/perlhost.h win32/perllib.c
5322           !> win32/win32.h win32/win32iop.h win32/win32thread.h
5323 ____________________________________________________________________________
5324 [  7971] By: nick                                  on 2000/12/04  00:24:33
5325         Log: Quieten some noise in Win32 builds:
5326              - win32.h is included after <sys/socket.h>, so need to 
5327              set Win32SCK_IS_STDSCK earlier to avoid re-defined noise in XSUB.h
5328              - GCC (& MSVC?) have execv(...,const char *const *) so need a cast from char **.
5329      Branch: perlio
5330            ! doio.c perl.h toke.c win32/win32.h
5331 ____________________________________________________________________________
5332 [  7970] By: nick                                  on 2000/12/03  22:57:46
5333         Log: PERL_IMPLICIT_SYS compiles but does not work.
5334      Branch: perlio
5335            ! iperlsys.h perl.c perlio.c perlio.h win32/makefile.mk
5336            ! win32/perlhost.h win32/perllib.c win32/win32.h
5337            ! win32/win32iop.h win32/win32thread.h
5338 ____________________________________________________________________________
5339 [  7969] By: jhi                                   on 2000/12/03  22:12:58
5340         Log: On DEBUGGING make ANYOFUTF8 nodes store away also the SV
5341              used to swash_init(), makes regprop() dumps more informative
5342              (+utf8::IsAlpha, -utf8::IsDigit, for example).
5343      Branch: perl
5344            ! regcomp.c regexec.c
5345 ____________________________________________________________________________
5346 [  7968] By: jhi                                   on 2000/12/03  21:39:56
5347         Log: Implement ANYOFUTF8 regprop() dumping.
5348      Branch: perl
5349            ! regcomp.c
5350 ____________________________________________________________________________
5351 [  7967] By: jhi                                   on 2000/12/03  20:57:19
5352         Log: Make uv_to_utf8() to zero-terminate its output buffer,
5353              always use (at least) UTF8_MAXLEN + 1 U8s deep buffer.
5354      Branch: perl
5355            ! op.c pp.c regcomp.c regexec.c sv.c toke.c utf8.c
5356 ____________________________________________________________________________
5357 [  7966] By: nick                                  on 2000/12/03  18:41:21
5358         Log: Integrate mainline (STDCHAR)
5359      Branch: perlio
5360           !> Configure t/pragma/utf8.t
5361 ____________________________________________________________________________
5362 [  7965] By: jhi                                   on 2000/12/03  17:58:20
5363         Log: Raw zero bytes in text files confuse at least GNU patch 2.1.
5364      Branch: perl
5365            ! t/pragma/utf8.t
5366 ____________________________________________________________________________
5367 [  7964] By: jhi                                   on 2000/12/03  17:35:56
5368         Log: Integrate perlio.
5369      Branch: perl
5370           !> iperlsys.h perlio.c
5371 ____________________________________________________________________________
5372 [  7963] By: jhi                                   on 2000/12/03  17:33:55
5373         Log: Metaconfig unit change for #7962.
5374      Branch: metaconfig
5375            ! U/modified/stdchar.U
5376 ____________________________________________________________________________
5377 [  7962] By: jhi                                   on 2000/12/03  17:33:27
5378         Log: Untangle the <stdio.h> #include nest for the stdchar test,
5379              from Andy Dougherty.
5380      Branch: perl
5381            ! Configure
5382 ____________________________________________________________________________
5383 [  7961] By: nick                                  on 2000/12/03  16:53:00
5384         Log: Make iperlsys.h vector stdio not PerlIO.
5385      Branch: perlio
5386            ! iperlsys.h perlio.c
5387 ____________________________________________________________________________
5388 [  7960] By: nick                                  on 2000/12/03  14:43:01
5389         Log: Integrate mainline
5390      Branch: perlio
5391           !> Changes Configure config_h.SH lib/ExtUtils/MM_Unix.pm op.c
5392           !> patchlevel.h pod/perldiag.pod t/lib/net-hostent.t toke.c
5393 ____________________________________________________________________________
5394 [  7959] By: jhi                                   on 2000/12/03  08:16:36
5395         Log: Use DO_UTF8().
5396      Branch: perl
5397            ! op.c
5398 ____________________________________________________________________________
5399 [  7958] By: jhi                                   on 2000/12/02  18:33:05
5400         Log: Subject: Re: [ID 20001130.011] expression parsing bug ?
5401              From: Mike Guy <mjtg@cam.ac.uk>         
5402              Date: Sat, 02 Dec 2000 17:27:13 +0000
5403              Message-Id: <E142GRN-0003go-00@libra.cus.cam.ac.uk>
5404              
5405              An extraneous argument.
5406      Branch: perl
5407            ! toke.c
5408 ____________________________________________________________________________
5409 [  7957] By: jhi                                   on 2000/12/02  18:22:32
5410         Log: A missing hunk.
5411      Branch: perl
5412            ! t/lib/net-hostent.t
5413 ____________________________________________________________________________
5414 [  7956] By: jhi                                   on 2000/12/02  18:06:20
5415         Log: Subject: [PATCH] Re: [ID 20001202.001] (Net::hostent)
5416              From: Nicholas Clark <nick@ccl4.org>
5417              Date: Sat, 2 Dec 2000 14:28:27 +0000
5418              Message-ID: <20001202142827.A12308@plum.flirble.org>
5419              
5420              Test robustness.
5421      Branch: perl
5422            ! t/lib/net-hostent.t
5423 ____________________________________________________________________________
5424 [  7955] By: jhi                                   on 2000/12/02  17:58:06
5425         Log: Metaconfig unit change for #7954.
5426      Branch: metaconfig
5427            ! U/modified/stdchar.U
5428 ____________________________________________________________________________
5429 [  7954] By: jhi                                   on 2000/12/02  17:54:32
5430         Log: An inconvenient hang would happen if the stdio _ptr wasn't
5431              found in <stdio.h> and <stdio_impl.h> didn't exist.  (grep
5432              would be grepping stdin for all eternity for the _ptr.)
5433      Branch: perl
5434            ! Configure
5435 ____________________________________________________________________________
5436 [  7953] By: jhi                                   on 2000/12/02  00:07:15
5437         Log: Update Changes.
5438      Branch: perl
5439            ! Changes patchlevel.h
5440 ____________________________________________________________________________
5441 [  7952] By: jhi                                   on 2000/12/01  23:54:47
5442         Log: Subject: Re: long shell lines
5443              From: Andy Dougherty <doughera@lafayette.edu>
5444              Date: Thu, 30 Nov 2000 12:45:37 -0500 (EST)
5445              Message-ID: <Pine.SOL.4.10.10011301044590.26388-100000@maxwell.phys.lafayette.edu>
5446              
5447              Split overly long shell command lines.
5448      Branch: perl
5449            ! lib/ExtUtils/MM_Unix.pm
5450 ____________________________________________________________________________
5451 [  7951] By: jhi                                   on 2000/12/01  23:48:02
5452         Log: The metaconfig unit change for #7950.
5453      Branch: metaconfig
5454            + U/modified/stdchar.U
5455 ____________________________________________________________________________
5456 [  7950] By: jhi                                   on 2000/12/01  23:47:39
5457         Log: Try to find stdchar also from <stdio_impl.h>.
5458      Branch: perl
5459            ! Configure config_h.SH
5460 ____________________________________________________________________________
5461 [  7949] By: jhi                                   on 2000/12/01  23:46:45
5462         Log: Subject: Re: [ID 20001130.011] expression parsing bug ?
5463              From: Ronald J Kimball <rjk@linguist.dartmouth.edu>
5464              Date: Fri, 1 Dec 2000 16:26:08 -0500
5465              Message-ID: <20001201162608.B1436@linguist.dartmouth.edu>
5466              
5467              Reword the diagnostic message.
5468      Branch: perl
5469            ! pod/perldiag.pod
5470 ____________________________________________________________________________
5471 [  7948] By: nick                                  on 2000/12/01  22:49:43
5472         Log: Integrate mainline (for s/y/m as sub names stuff).
5473      Branch: perlio
5474           !> lib/CPAN.pm lib/CPAN/FirstTime.pm pod/perldiag.pod t/op/misc.t
5475           !> t/pragma/warn/toke toke.c
5476 ____________________________________________________________________________
5477 [  7947] By: jhi                                   on 2000/12/01  20:55:41
5478         Log: Integrate perlio.
5479      Branch: perl
5480           !> perlio.c perliol.h t/io/pipe.t
5481 ____________________________________________________________________________
5482 [  7946] By: jhi                                   on 2000/12/01  20:36:51
5483         Log: Upgrade to CPAN 1.59_51, from Andreas König.
5484      Branch: perl
5485            ! lib/CPAN.pm lib/CPAN/FirstTime.pm
5486 ____________________________________________________________________________
5487 [  7945] By: nick                                  on 2000/12/01  20:31:32
5488         Log: Integrate mainline
5489      Branch: perlio
5490           +> ext/Encode/Encode/EncodeFormat.pod lib/unicode/Is/Blank.pl
5491           +> lib/unicode/Is/SpacePerl.pl t/lib/class-struct.t
5492           +> t/lib/net-hostent.t
5493           !> (integrate 35 files)
5494 ____________________________________________________________________________
5495 [  7944] By: jhi                                   on 2000/12/01  20:23:29
5496         Log: Some help for 20001130.011.  Now one gets warnings like
5497              "Ambiguous -f() resolved as a file test ..."
5498      Branch: perl
5499            ! pod/perldiag.pod t/pragma/warn/toke toke.c
5500 ____________________________________________________________________________
5501 [  7943] By: jhi                                   on 2000/12/01  19:44:44
5502         Log: Retract #7941.  Forbidding subs m/s/etc is too cruel because
5503              that also breaks using them as methods. 
5504      Branch: perl
5505            ! pod/perldiag.pod t/op/misc.t toke.c
5506 ____________________________________________________________________________
5507 [  7942] By: nick                                  on 2000/12/01  17:56:46
5508         Log: Fix 'mmap' lib/filehand.t (ungetc) test fail.
5509              Make 'unix' pass most tests
5510              - do unread by temporary push of layer ("pending") holding unread chars
5511              - fast_gets is now based on per-handle flag
5512              - relax one of io/pipe.t tests to allow print to fail and close to
5513              succeed so that it passes on unbuffered "unix" layer.
5514              Remaining fail is sporadic and a genuine race condition between
5515              parent/child in fork test.
5516      Branch: perlio
5517            ! perlio.c perliol.h t/io/pipe.t
5518 ____________________________________________________________________________
5519 [  7941] By: jhi                                   on 2000/12/01  15:28:58
5520         Log: (Retracted by #7943.)
5521              
5522              Reserve the short named string operator names.
5523      Branch: perl
5524            ! pod/perldiag.pod t/op/misc.t toke.c
5525 ____________________________________________________________________________
5526 [  7940] By: jhi                                   on 2000/12/01  06:45:53
5527         Log: Get the three different space character classes right under utf8.
5528      Branch: perl
5529            + lib/unicode/Is/Blank.pl lib/unicode/Is/SpacePerl.pl
5530            ! MANIFEST lib/unicode/mktables.PL pod/perlre.pod regcomp.c
5531            ! regexec.c t/op/pat.t utf8.c
5532 ____________________________________________________________________________
5533 [  7939] By: jhi                                   on 2000/12/01  03:26:26
5534         Log: Two more tests that make no sense in UTF-8 since the test
5535              data is not in UTF-8.
5536      Branch: perl
5537            ! t/op/regexp.t
5538 ____________________________________________________________________________
5539 [  7938] By: jhi                                   on 2000/12/01  03:20:39
5540         Log: \x{} doesn't any more require 'use utf8' outside regexen so why
5541              should it be required inside regexen?
5542      Branch: perl
5543            ! regcomp.c t/op/regmesg.t
5544 ____________________________________________________________________________
5545 [  7937] By: jhi                                   on 2000/12/01  02:58:53
5546         Log: Fix for 20001130.008 and 20001130.010, the PL_regnpar wasn't
5547              stored and restored, and thusly was trounced by the utf8 swash
5548              routines.
5549      Branch: perl
5550            ! regcomp.c
5551 ____________________________________________________________________________
5552 [  7936] By: jhi                                   on 2000/11/30  20:41:39
5553         Log: Fix for 20001128.006, be more careful in Perl_sv_utf8_downgrade().
5554              Why the different platforms behave so differently (core dump vs
5555              no core dump) on this bug is a but of a mystery, but if I had to
5556              guess I would mumble something like 'alignment'.
5557      Branch: perl
5558            ! sv.c
5559 ____________________________________________________________________________
5560 [  7935] By: jhi                                   on 2000/11/30  16:17:02
5561         Log: Subject: [PATCH perl@7930] toke.c perlio.c -Wformat nits
5562              From: Robin Barker <rmb1@cise.npl.co.uk>
5563              Message-Id: <200011301427.OAA00030@tempest.npl.co.uk>
5564              Date: Thu, 30 Nov 2000 14:27:12 GMT
5565      Branch: perl
5566            ! perlio.c toke.c
5567 ____________________________________________________________________________
5568 [  7934] By: jhi                                   on 2000/11/30  16:04:49
5569         Log: In OS/390 'localhost' can be 'localhost.FOO.BAR'.
5570      Branch: perl
5571            ! t/lib/net-hostent.t
5572 ____________________________________________________________________________
5573 [  7933] By: jhi                                   on 2000/11/30  06:07:26
5574         Log: Subject: [ID 20001129.007] Not OK: perl v5.7.0 +DEVEL7928 on VMS_AXP V7.1 (UNINSTALLED)
5575              From: Peter Prymmer <pvhp@forte.com>
5576              Date: Wed, 29 Nov 2000 15:16:45 -0800 (PST)
5577              Message-Id: <Pine.OSF.4.10.10011291515570.328738-100000@aspara.forte.com>
5578              
5579              In VMS the localhost may be LOCALHOST.
5580      Branch: perl
5581            ! t/lib/net-hostent.t
5582 ____________________________________________________________________________
5583 [  7932] By: jhi                                   on 2000/11/30  01:11:11
5584         Log: Subject: Re: question about retlen in utf8.c:Perl_utf8_to_uv()
5585              From: Peter Prymmer <pvhp@forte.com>
5586              Date: Wed, 29 Nov 2000 12:36:40 -0800 (PST)
5587              Message-ID: <Pine.OSF.4.10.10011291233120.328738-100000@aspara.forte.com>
5588              
5589              plus regen perlapi.pod.
5590      Branch: perl
5591            ! pod/perlapi.pod utf8.c
5592 ____________________________________________________________________________
5593 [  7931] By: jhi                                   on 2000/11/30  01:06:19
5594         Log: Subject:  [PATCH perl@7930] get t/lib/filter-util.t to work on VMS 
5595              From: lane@DUPHY4.Physics.Drexel.Edu (Charles Lane)
5596              Date:     Wed, 29 Nov 2000 17:15:11 EST
5597              Message-Id: <001129171439.6099b@DUPHY4.Physics.Drexel.Edu>
5598      Branch: perl
5599            ! t/lib/filter-util.pl t/lib/filter-util.t
5600 ____________________________________________________________________________
5601 [  7930] By: jhi                                   on 2000/11/29  18:51:55
5602         Log: Update Changes.
5603      Branch: perl
5604            ! Changes patchlevel.h
5605 ____________________________________________________________________________
5606 [  7929] By: jhi                                   on 2000/11/29  18:50:55
5607         Log: Update the va_copy() metaconfig unit.
5608      Branch: metaconfig/U/perl
5609            ! need_va_copy.U
5610 ____________________________________________________________________________
5611 [  7928] By: jhi                                   on 2000/11/29  17:50:43
5612         Log: Subject: [ID 20001128.003] Not OK: perl v5.7.0 +DEVEL7891 on ppc-linux 2.2.17  
5613              From: Dominic Dunlop <domo@computer.org>
5614              Date: Tue, 28 Nov 2000 16:41:57 +0100
5615              Message-Id: <p04320400b649771b9797@[192.168.1.4]>
5616              
5617              Patch to catch a core dump in the Configure va_copy test.
5618      Branch: perl
5619            ! Configure config_h.SH
5620 ____________________________________________________________________________
5621 [  7927] By: jhi                                   on 2000/11/29  17:31:59
5622         Log: Retract #7921, the patch shouldn't be needed.
5623      Branch: perl
5624            ! sv.c
5625 ____________________________________________________________________________
5626 [  7926] By: jhi                                   on 2000/11/29  17:01:41
5627         Log: Make the Class::Struct import() wiser.
5628      Branch: perl
5629            ! lib/Class/Struct.pm t/lib/class-struct.t
5630 ____________________________________________________________________________
5631 [  7925] By: jhi                                   on 2000/11/29  16:36:33
5632         Log: All the core library users of Class::Struct seem to be
5633              using "use Class::Struct 'struct';" instead of the bare
5634              "use Class::Struct;", which isn't documented in Class::Struct.
5635              This can't be right.
5636      Branch: perl
5637            ! lib/File/stat.pm
5638 ____________________________________________________________________________
5639 [  7924] By: jhi                                   on 2000/11/29  16:32:15
5640         Log: A test works better if it has the right 1..$n output.
5641      Branch: perl
5642            ! t/lib/class-struct.t
5643 ____________________________________________________________________________
5644 [  7923] By: jhi                                   on 2000/11/29  16:29:11
5645         Log: Forgot to MANIFEST the new Net::hostent test.
5646      Branch: perl
5647            ! MANIFEST
5648 ____________________________________________________________________________
5649 [  7922] By: jhi                                   on 2000/11/29  16:27:49
5650         Log: Integrate perlio.
5651      Branch: perl
5652           !> iperlsys.h perlio.c
5653 ____________________________________________________________________________
5654 [  7921] By: jhi                                   on 2000/11/29  16:27:10
5655         Log: (Retracted by #7927.)
5656              
5657              Subject: [PATCH] Is infinity a number?
5658              From: Simon Cozens <simon@cozens.net>
5659              Date: Wed, 29 Nov 2000 14:48:20 +0000
5660              Message-ID: <20001129144820.A31339@pembro33.pmb.ox.ac.uk>
5661      Branch: perl
5662            ! sv.c
5663 ____________________________________________________________________________
5664 [  7920] By: jhi                                   on 2000/11/29  16:23:02
5665         Log: Subject: net_hostent.t (was Re: [ID 20001128.002] what's the point of example code if it is buggy?)
5666              From: rspier@pobox.com (Robert Spier)
5667              Date: Wed, 29 Nov 2000 02:17:49 -0500
5668              Message-ID: <14884.44445.760322.278647@localhost.localdomain>
5669              
5670              Add a test for Net::hostent.
5671      Branch: perl
5672            + t/lib/net-hostent.t
5673 ____________________________________________________________________________
5674 [  7919] By: jhi                                   on 2000/11/29  16:21:31
5675         Log: Make "use Class::Struct 'struct';" work again (broken by #7617);
5676              add a test for Class::Struct.
5677      Branch: perl
5678            + t/lib/class-struct.t
5679            ! MANIFEST lib/Class/Struct.pm
5680 ____________________________________________________________________________
5681 [  7918] By: jhi                                   on 2000/11/29  15:48:40
5682         Log: Subject: Re: Minor suggestion for Sys::Syslog  [PATCH]
5683              From: rspier@pobox.com (Robert Spier)
5684              Date: Wed, 29 Nov 2000 02:25:39 -0500
5685              Message-ID: <14884.44915.86028.422238@localhost.localdomain>
5686              
5687              More checking in case someone has broken their services or
5688              protocol databases.
5689      Branch: perl
5690            ! ext/Sys/Syslog/Syslog.pm
5691 ____________________________________________________________________________
5692 [  7917] By: jhi                                   on 2000/11/29  15:46:25
5693         Log: Subject: [PATCH] $^O  win32 -> MSWin32
5694              From: rspier@pobox.com (Robert Spier)
5695              Date: Wed, 29 Nov 2000 02:17:38 -0500
5696              Message-ID: <14884.44434.340627.126145@localhost.localdomain>
5697              
5698              plus similar nits for vms, err, VMS, and UNICOS.
5699      Branch: perl
5700            ! t/lib/syslfs.t t/op/lfs.t
5701 ____________________________________________________________________________
5702 [  7916] By: jhi                                   on 2000/11/29  15:42:51
5703         Log: Subject: [PATCH] Tokeniser debugging
5704              From: Simon Cozens <simon@cozens.net>
5705              Date: Wed, 29 Nov 2000 14:15:45 +0000
5706              Message-ID: <20001129141545.A30864@pembro33.pmb.ox.ac.uk>
5707      Branch: perl
5708            ! perl.c perl.h pod/perlrun.pod toke.c
5709 ____________________________________________________________________________
5710 [  7915] By: jhi                                   on 2000/11/29  15:41:36
5711         Log: Subject: Re: [PATCH 5.7.0] OUT keyword for xsubpp
5712              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
5713              Date: Wed, 29 Nov 2000 02:13:14 -0500
5714              Message-ID: <20001129021314.A2532@monk.mps.ohio-state.edu>
5715              
5716              OUT keyword nits.
5717              
5718              Subject: Re: [PATCH 5.7.0] OUT keyword for xsubpp
5719              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
5720              Date: Wed, 29 Nov 2000 03:09:04 -0500
5721              Message-ID: <20001129030904.A2754@monk.mps.ohio-state.edu>
5722              
5723              OUT and IN_OUT documentation.
5724      Branch: perl
5725            ! lib/ExtUtils/xsubpp pod/perlxs.pod
5726 ____________________________________________________________________________
5727 [  7914] By: jhi                                   on 2000/11/29  03:35:01
5728         Log: Subject: Re: [ID 20001127.002] const subs hurt under debugger
5729              From: John Tobey <jtobey@john-edwin-tobey.org>
5730              Date: Tue, 28 Nov 2000 01:13:41 -0500 (EST)
5731              Message-Id: <m140e1N-000FOoC@feynman.localnet>
5732              
5733              plus a performance speedup noticed by Sarathy.
5734      Branch: perl
5735            ! op.c
5736 ____________________________________________________________________________
5737 [  7913] By: jhi                                   on 2000/11/29  03:16:59
5738         Log: Use "1 while unlink" so that VMS gets clean, too.
5739      Branch: perl
5740            ! t/lib/filter-util.t
5741 ____________________________________________________________________________
5742 [  7912] By: jhi                                   on 2000/11/29  03:09:08
5743         Log: Subject: [PATCH 5.7.0] OUT keyword for xsubpp
5744              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
5745              Date: Tue, 28 Nov 2000 03:27:09 -0500
5746              Message-ID: <20001128032709.A23401@monk.mps.ohio-state.edu>
5747      Branch: perl
5748            ! lib/ExtUtils/xsubpp
5749 ____________________________________________________________________________
5750 [  7911] By: jhi                                   on 2000/11/29  03:06:30
5751         Log: This should have been part of #7872: no need to scan UTF-8
5752              until eternity.
5753      Branch: perl
5754            ! utf8.c
5755 ____________________________________________________________________________
5756 [  7910] By: jhi                                   on 2000/11/29  02:50:04
5757         Log: One more perltie.pod nit from Casey R. Tweten.
5758      Branch: perl
5759            ! pod/perltie.pod
5760 ____________________________________________________________________________
5761 [  7909] By: jhi                                   on 2000/11/29  02:44:23
5762         Log: Document the known sprintf test failures, exact standard
5763              reference from Dominic Dunlop, NonStop-UX testing from Tom Bates.
5764      Branch: perl
5765            ! pod/perldelta.pod t/op/sprintf.t
5766 ____________________________________________________________________________
5767 [  7908] By: jhi                                   on 2000/11/29  02:36:23
5768         Log: Add the Encoding table format documentation.
5769      Branch: perl
5770            + ext/Encode/Encode/EncodeFormat.pod
5771            ! MANIFEST
5772 ____________________________________________________________________________
5773 [  7907] By: jhi                                   on 2000/11/29  02:07:24
5774         Log: Subject: Re: [PATCH] Updating perltie.pod for arrays
5775              From: "Casey R. Tweten" <crt@kiski.net>
5776              Date: Tue, 28 Nov 2000 12:11:41 -0500 (EST)
5777              Message-ID: <Pine.OSF.4.21.0011281209050.25178-100000@home.kiski.net>
5778              
5779              Subject: Re: [PATCH] Updating perltie.pod for arrays
5780              From: "Casey R. Tweten" <crt@kiski.net>
5781              Date: Tue, 28 Nov 2000 15:03:50 -0500 (EST)
5782              Message-ID: <Pine.OSF.4.21.0011281458500.10331-100000@home.kiski.net>
5783      Branch: perl
5784            ! pod/perltie.pod
5785 ____________________________________________________________________________
5786 [  7906] By: nick                                  on 2000/11/28  22:40:59
5787         Log: Initial tidy of setmode() muddle (UNIX does not have, nor need it).
5788      Branch: perlio
5789            ! iperlsys.h perlio.c
5790 ____________________________________________________________________________
5791 [  7905] By: nick                                  on 2000/11/28  22:04:34
5792         Log: Integrate mainline
5793      Branch: perlio
5794           !> (integrate 39 files)
5795 ____________________________________________________________________________
5796 [  7904] By: jhi                                   on 2000/11/28  16:44:43
5797         Log: Subject: [ID 20001128.002] what's the point of example code if it is buggy?
5798              From: Nicholas Clark <nick@babyhippo.co.uk>
5799              Date: Tue, 28 Nov 2000 11:16:57 +0000
5800              Message-Id: <E140ikr-00076N-00@fruitbat.babyhippo.co.uk>
5801      Branch: perl
5802            ! pod/perlipc.pod
5803 ____________________________________________________________________________
5804 [  7903] By: jhi                                   on 2000/11/28  16:40:31
5805         Log: Subject: [PATCH] Updating perltie.pod for arrays
5806              From: "Casey R. Tweten" <crt@kiski.net>
5807              Date: Mon, 27 Nov 2000 17:47:20 -0500 (EST)
5808              Message-ID: <Pine.OSF.4.21.0011271746360.11659-100000@home.kiski.net>
5809      Branch: perl
5810            ! pod/perltie.pod
5811 ____________________________________________________________________________
5812 [  7902] By: jhi                                   on 2000/11/28  16:39:37
5813         Log: Subject: [PATCH] Re: 5.6 bug: split /^/ implies /m modifier (from CLPM)
5814              From: Robin Barker <rmb1@cise.npl.co.uk>
5815              Date: Mon, 27 Nov 2000 17:56:44 GMT
5816              Message-Id: <200011271756.RAA22706@tempest.npl.co.uk>
5817      Branch: perl
5818            ! pod/perlfunc.pod t/op/split.t
5819 ____________________________________________________________________________
5820 [  7901] By: jhi                                   on 2000/11/28  16:28:04
5821         Log: setmode() is a DOSish-only thing.
5822      Branch: perl
5823            ! perlio.c
5824 ____________________________________________________________________________
5825 [  7900] By: jhi                                   on 2000/11/28  16:21:46
5826         Log: Subject: [PATCH] perlcc.PL cleanups
5827              From: Simon Cozens <simon@cozens.net>
5828              Date: Tue, 28 Nov 2000 12:44:35 +0000
5829              Message-ID: <20001128124435.A5500@pembro33.pmb.ox.ac.uk>
5830      Branch: perl
5831            ! utils/perlcc.PL
5832 ____________________________________________________________________________
5833 [  7899] By: gsar                                  on 2000/11/28  06:32:55
5834         Log: reintegrate files missed by change#7895
5835      Branch: maint-5.6/perl
5836           +> ext/ByteLoader/bytecode.h utils/Makefile
5837            - utils/perlbc.PL
5838 ____________________________________________________________________________
5839 [  7897] By: gsar                                  on 2000/11/27  18:22:47
5840         Log: can't integrate these two files, for some reason
5841      Branch: maint-5.6/perl
5842            - ext/ByteLoader/bytecode.h utils/Makefile
5843 ____________________________________________________________________________
5844 [  7895] By: gsar                                  on 2000/11/27  18:11:21
5845         Log: integrate changes#6763..6766,6770,6773,6775..6776,6778,6780,
5846              6782..6791,6793..6814,6816,6818..6822,6824..6830,6838..6849,
5847              6757..6890,6892..6901 from mainline
5848              
5849              Bytecompiler patches from Benjamin Stuhl.
5850              
5851              More bytecompiler.
5852              
5853              Subject: [PATCH blead] B:: missing dependency
5854              
5855              Subject: [PATCH: 6757] configure.com updates and syslog build
5856              
5857              Long double Gconvert fixes from Yitzchak Scott-Thoennes
5858              and Spider Boardman.
5859              
5860              Subject: [PATCH blead] nextchar() abuse misses an optimisation
5861              
5862              Long double fixes from Spider Boardman.
5863              
5864              Make the selection of NVff et al stricter.
5865              
5866              cSVOPo_*v things index into the current PL_curpad
5867              under ithreads, which is different from the curpad
5868              used by the XSUB.  (In other words, the code as-is
5869              before this patch wouldn't work under ithreads.)
5870              
5871              Be portable.
5872              
5873              VMS MMS (make) wants null action.
5874              
5875              Mac and other portability updates from Chris Nandor.
5876              
5877              Storable support, v-version fixes.
5878              Subject: CPAN.pm beta for testing available
5879              
5880              Portability fix from Hugo van der Sanden.
5881              
5882              Bad makefile.
5883              
5884              Subject: [ID 20000823.004] [PATCH 5.6.0+] Pod::Html is too self-contained
5885              
5886              Subject: [PATCH] (Mac OS X): Don't #define environ unless PERL_CORE
5887              
5888              Subject: [PATCH] Re: [ID 20000821.008] Negitive numbers with vec dumps core
5889              
5890              Replace #6705 with a minimal doc patch.
5891              Subject: [PATCH 5.6.0] replace change #6705
5892              
5893              Drop the separate perlbc, perlcc -b should be enough.
5894              
5895              installperl couldn't tell whether it had run tests or not.
5896              Subject: [PATCH] Re: installperl and t/TEST
5897              
5898              Add silencer flags to installperl.
5899              Subject: [PATCH] Making installperl silent.
5900              
5901              Make "make install" by default silent.  A new "install-verbose"
5902              target is verbose.
5903              
5904              More liberal parsing of version numbers.
5905              Subject: Re: CPAN.pm beta for testing available
5906              
5907              Create directories in silence.
5908              Subject: [PATCH] Another silencer for MakeMaker
5909              
5910              DOS patches and portability/porting notes, from Tim Jenness.
5911              
5912              Make installman to recognize the silence flag -S.
5913              
5914              Actually do something with the silencer option.
5915              
5916              Continue silencing.
5917              
5918              Show the doc file, not the temp file.
5919              
5920              Regen perltoc.
5921              
5922              Subject: [PATCH] More silencing of installman.
5923              
5924              Better wording for the vec lvalue diagnostic.
5925              Subject: Re: [PATCH] Re: [ID 20000821.008] Negitive numbers with vec dumps core
5926              
5927              Subject: [PATCH: 6805] several more tweaks to configure.com
5928              
5929              Subject: [PATCH perl@6805, 5.6.0, 5.005_03] prevent rare Perl hang on VMS
5930              
5931              Missing parts of 
5932              Subject: [PATCH: 6789] some endl fixes for VMS wackiness
5933              
5934              Subject: [ID 20000824.029] MakeMaker manifypods fails on DJGPP systems
5935              (applied slightly modified)
5936              
5937              installperl --verbose and --silent.
5938              Subject: Re: [PATCH] More silencing of installman.
5939              
5940              Add install-silent target.
5941              
5942              AIX 4.3.3 has SOCKS in libc with a differently named init routine,
5943              the problem reported in
5944              Subject: [ID 20000825.007] Building stable 5.6.0 on AIX 4.3.3 using SOCKS
5945              
5946              Tweak the sfio/useperlio logic, hopefully as wished in
5947              Subject: [ID 20000825.004] Not OK: perl v5.7.0 +SUIDMAIL +DEVEL6804 on i586-linux 2.2.12 (UNINSTALLED)
5948              
5949              One forgotten file from #6816.
5950              
5951              Subject: [PATCH @6820] installman under -w and strict (was Re: [PATCH] More silencing of installman.)
5952              
5953              Remove duplicately applied patch shards.
5954              Subject: [ID 20000825.012] [PATCH@6822] t/lib/cgi-html.t produces ugly cruft during 'make test'
5955              
5956              Support preserving extremely big/small angles.
5957              
5958              Subject: Re: [ID 20000825.019] Not OK: perl v5.7.0 +SUIDMAIL +DEVEL6820 on alpha-dec_osf 5.1 (UNINSTALLED) 
5959              
5960              Subject: [PATCH] installation not quite silent yet.
5961              
5962              Update the test count.
5963              
5964              Use UVxf, PTR2UV, NVff.
5965              
5966              Document PTR2XX and INT2PTR.
5967              
5968              no-install target a la make -n.
5969              Subject: [PATCH] make no-install (was Re: [PATCH] installation not quite silent yet.)
5970              
5971              grep -e isn't portable.
5972              Subject: [ID 20000825.027] let me (perlbug@perl.com) know how I blew it
5973              
5974              Can't get the test to reliably work thanks to the
5975              inaccurateness of floating point.  "Resolves" bug ids
5976              20000826.003, 20000826.009, 20000826.010,
5977              
5978              Subject: installman buglet
5979              
5980              DJGPP update from Laszlo Molnar.
5981              
5982              Subject: MM_Unix.pm LD_RUN_PATH niggles on Solaris
5983              
5984              Passing -R in ldflags makes now it to appear in the default
5985              for lddlflags, just like with -L.
5986              Subject: Re: MM_Unix.pm LD_RUN_PATH niggles on Solaris
5987              
5988              Test nit.
5989              
5990              Use the actual thread type, not the pointer-to-struct.
5991              
5992              Provice virtual $Config{ccflags_nolargefiles} etc. 
5993              
5994              display_format used as a class method without arguments was broken,
5995              reported in
5996              Subject: Math::Complex->display_format() sets style to 'Math::Complex'
5997              
5998              Subject: [ID 20000828.006] dir name "0" not safe with Cwd.pm
5999              
6000              Subject: [ID 20000828.009] Not OK: perl v5.7.0 +SUIDMAIL +DEVEL6855 on i586-linux 2.2.12 (UNINSTALLED)
6001              
6002              Subject: [PATCH@6855] _Minor_ change to overload.pm pod
6003              
6004              opmini.o may be left around if a build is interrupted.
6005              
6006              Typo in #6858.
6007              
6008              Fix for ID 20000828.001, long doubles were not formatted
6009              correctly (showed up in $], which stopped installing perl).
6010              
6011              An attempt to fix the problem reported in
6012              Subject: Building perl@6856 using gcc/AIX 4.3.3 
6013              I can't test this properly since the gcc installation I have
6014              access to seems to be botched (gcc is calling the AIX cpp,
6015              a losing proposition...)
6016              
6017              Add -ld to archname on long tr...double platforms.
6018              
6019              Subject: hv.h Doc Patch
6020              
6021              Potential cruft.
6022              
6023              Subject: [PATCH bleedperl@6856] warnings fixes
6024              
6025              -S is the silent flag, -s is the strip flag.
6026              Subject: [PATCH] Re: [PATCH] make no-install          
6027              
6028              Take out the SUIDMAIL thing, that will not be
6029              a problem in 5.7.*.
6030              
6031              Subject: [PATCH bleedperl@6866] spellings
6032              
6033              Subject: [PATCH] Re: files not cleaned even by veryclean
6034              
6035              Use minimal @INC in tests, most of the time just '../lib',
6036              so that we simply can't pick up stuff from other Perls than
6037              the one we are testing.  Pointed out by
6038              Subject: Re: [PATCH: 6757] make new Storable tests forgiving of places where not built   
6039              
6040              Update to Getopt::Long 2.24, from Johan Vromans.
6041              
6042              Fix for thinko in #6848.
6043              Subject: Compiler error in ext/Thread/Thread.c (bleadperl@6866)
6044              
6045              Patches all over for people and the files they (hopefully) care about.
6046              
6047              Subject: Net::protoent does not export 'getproto'
6048              
6049              Missed a change in #6869.
6050              
6051              Subject: [PATCH] Warnings in B::Deparse
6052              
6053              Subject: [PATCH] Glob dumping
6054              
6055              Disable one of the tests for now.
6056              
6057              Disabling the one test is a bit tricky.
6058              
6059              Don't forget to tidy up.
6060              
6061              The #6881 removed one dump line.
6062              
6063              Subject: Re: [ID 20000525.003] perldoc fails when Makefile.PL is in cwd
6064              
6065              Under usethreads the dumped variable is IN_PAD.
6066              Subject: Re: [PATCH] Glob dumping
6067              
6068              Subject: [ID 20000829.026] [PATCH 6868] File::Temp
6069              
6070              Subject: [ID 20000829.022] [PATCH 6868] Minor nit in installhtml
6071              
6072              Subject: [ID 20000829.023] [PATCH 6868] perlbug@perl.com --> perlbug@perl.org
6073              
6074              Regen Configure for #6894.
6075              
6076              Subject: [PATCH: 6889] updates to perlebcdic.pod
6077              
6078              Undo namespace pollution of #6878.
6079              Subject: Re: Net::protoent does not export 'getproto'
6080              
6081              Admit that we are leaking scalars.
6082              
6083              Subject: [PATCH 5.6.0] [ID 20000608.006] panic: magic_killbackrefs with blessed global weakrefs
6084      Branch: maint-5.6/perl
6085           !> (integrate 271 files)
6086 ____________________________________________________________________________
6087 [  7894] By: gsar                                  on 2000/11/27  16:00:34
6088         Log: a couple of nits
6089      Branch: maint-5.6/perl
6090            ! MANIFEST pp_sys.c
6091 ____________________________________________________________________________
6092 [  7893] By: gsar                                  on 2000/11/27  15:10:56
6093         Log: integrate changes#6666..6678,6680..6682,6684..6691,6699..6733,
6094              6740..6745,6747..6757,6760
6095              
6096              Subject: Re: [ID 20000816.006] [PATCH @6655] Shell.pm, bug fix, strict and OO Interface
6097              
6098              Subject: [PATCH(2) @6655] Re: perldebut.pod - spelling
6099              
6100              Doc nits spotted by Richard Soderberg.
6101              
6102              move WNOHANG definition to where other such things are
6103              
6104              Make $Config{byteorder} more magical so that it is
6105              dynamically computed: nice for 'fat binaries'.
6106              Subject: [PATCH]: default byteorder
6107              
6108              Subject: [PATCH] Cwd.pm now uses strict
6109              
6110              Subject: Re: [PATCH]Re: Questions about Math::BigFloat
6111              
6112              Get -DLEAKTEST to compile (not necessarily to work, mind)
6113              Subject: [ID 20000724.006] -DLEAKTEST problem
6114              
6115              perldebtut 1.10 from Richard Foley, plus Celsius and Fahrenheit.
6116              
6117              Add perlebcdic from Peter Prymmer, regen toc.
6118              
6119              Don't propose using modules built for 5.005 if no binary
6120              compatibility with 5.005 is attempted.
6121              
6122              Do not use prototyping here.
6123              Subject: [ID 20000817.016] [PATCH] Peek.xs
6124              
6125              Document what the backtick returns if the command fails.
6126              
6127              Add byteorder to the myconfig output.
6128              
6129              Introduce NVef, NVff, and NVgf, use the middle one.
6130              (helps for lib/peek + Linux + long doubles)  Reported in
6131              Subject: [ID 20000814.005] Not OK: perl v5.6.0 on i686-linux-64int 2.2.13       
6132              Use NVs in POSIX math, not doubles.
6133              Subject: [ID 20000817.014] POSIX & modfl
6134              
6135              Subject: [PATCH 5.6.0+] newSVrv() memory leak
6136              
6137              The byteorder code in #6671 was wrong.
6138              
6139              Fix the lib/complex failure of
6140              Subject: [ID 20000814.005] Not OK: perl v5.6.0 on i686-linux-64int 2.2.13       
6141              Linux long double accuracy issue: something that
6142              when printed with %g looks like "2" but int() of it is 1.
6143              
6144              Propagate new Configure vars.
6145              
6146              Unbuffer the output.
6147              
6148              Subject: [PATCH] perltrap.pod spring cleaning
6149              
6150              Subject: [PATCH] perlfunc.pod -- clarifying sprintf array argument issues
6151              Subject: [ID 20000817.018] behaviour change 5.5.3 -> 5.6.0 re "Modification of a read-only value"
6152              
6153              Tiny Getopt::Long patch from Johan Vromans.
6154              
6155              Document code point which makes if (defined %stash::) to work
6156              (noted by Spider Boardman).
6157              
6158              Subject: [PATCH perl@6698] cygwin port
6159              
6160              Document the NDBM_File and ODBM_File as SDBM_File
6161              was documented in #6417.
6162              
6163              The new tests were missing from #6415.
6164              
6165              Add [[:blank:]] as suggested in
6166              Subject: [ID 20000716.024] [=cc=] / [:blank:]
6167              (the [=cc=] has already been taken care of by #6439
6168              so the whole bug report can be closed)
6169              and make [[:space:]] to be equivalent to isspace(3)
6170              (as opposed to \s, which is isSPACE()).  The difference
6171              is that now [[:space:]] matches the mythical vertical tab,
6172              while \s doesn't.
6173              
6174              Don't eat leading os from index entries.
6175              Subject: Re: [ID 20000810.006] Pod::Man Ate My 'O'!
6176              
6177              Subject: [PATCH 5.6.0+] fix for Win32::DomainName
6178              
6179              Typo in pp_complement().
6180              Subject: [PATCH perl-current] Deparse
6181              
6182              Add warnif(), check warnings further up the stack,
6183              all the warnings functions now can take an optional object reference.
6184              Subject: [PATCH bleedperl@6691] warnings pragma update
6185              
6186              Fix a core dump in lib/selfloader under -DDEBUGGING.
6187              Subject: PATCH @6698 for [ID 20000817.007] Not OK: perl v5.7.0 +SUIDMAIL +DEVEL6676 on alpha-dec_osf 4.0f (UNINSTALLED) 
6188              
6189              Subject: [PATCH 5.6.0+] fix for Win32::GetFullPathName and Win32::GetShortPathName
6190              
6191              Subject: [PATCH: 6698] tidy up the temp files left by peek tests on VMS
6192              
6193              Subject: [PATCH: 6698] was Re: [PATCH: 6640] VMS Makefile.SH update (fwd)
6194              Put back the long double avoidance code to POSIX.xs
6195              because VMS seems to need it still.
6196              
6197              Introduce a 'veryclean' target that is like 'distclean'
6198              but also removes *~ and *.orig.
6199              
6200              Subject: [ID 20000817.023] endianness description in perlfunc.pod
6201              
6202              Subject: [PATCH perl@6698] File::Temp fix-ups for OpenVMS
6203              
6204              Let's try #6717 again.
6205              
6206              UTF8 concat fixes.
6207              Subject: [PATCH @6713] Re: [ID 20000815.006] latest patched perl core dumps
6208              
6209              pp_open() could pass an uninitialized filename down to do_open9().
6210              
6211              Subject: Re: [ID 20000819.002] Not OK: perl v5.7.0 +SUIDMAIL +DEVEL6707 on i686-linux 2.2.5-16 (UNINSTALLED)
6212              
6213              Update to CGI 2.72, from Lincoln Stein.
6214              
6215              Subject: [PATCH] Silence MakeMaker (Was: installman)
6216              
6217              Use temporary directory instead of current directory.
6218              Subject: Re: [ID 20000816.011] Test failure in lib/ftmp-security.t
6219              
6220              Document odd vs even subreleases and -Dusedevel.
6221              
6222              The veryclean target needs to clobber.
6223              
6224              Use File::Spec->tmpdir().
6225              
6226              Document the number of exponent digits.
6227              
6228              Mention perlebcdic and perlposix-bc.
6229              
6230              s/this one/the 5.6.0 release/
6231              
6232              The #6724 is here.
6233              
6234              The correct cleaning order is an art.
6235              
6236              small tweaks for change#6705: avoid C++ style comments in C code;
6237              use Perl's malloc API rather than the low level system one
6238              
6239              Array context keeps slithering in.
6240              
6241              Subject: Re: 5.7.0 getting really close, new snapshot: perldelta, Storable
6242              
6243              Subject: [PATCH] os2.c fix for use64bitint
6244              
6245              Update to Pod::LaTeX 0.53.
6246              Subject: [PATCH] lib/Pod/LaTeX.pm updates
6247              
6248              Document the endianness of Alpha more precisely.
6249              
6250              Subject: RE: [PATCH perl@6736] t/pragma/warn/9enabled assumes stdout buffered
6251              
6252              Rename the macro argument because some preprocessors
6253              can't tell the difference and expand arguments also inside
6254              double quoted strings.
6255              
6256              free TLS slot properly on Windows
6257              
6258              use Cwd 'chdir' didn't set $ENV{PWD} correctly on Windows
6259              
6260              Unicos/mk requires elaborate paranoia.
6261              
6262              Tweak the floating point output routine preferences.
6263              
6264              Also under djgpp the timestamps are funky.
6265              
6266              Apply some PodParser 1.18 patches; the Pod/Find.pm
6267              patches cannot be applied since #6712 conflicts.
6268              
6269              Use PodParser 1.18 new test.
6270              
6271              A pod nit.
6272              Subject: [PATCH] pod/perlre.pod (was Re: [ID 20000821.007] $&, $1, etc. disappear when sub returns)
6273              
6274              Be verydeepclean.
6275      Branch: maint-5.6/perl
6276           +> pod/perlebcdic.pod
6277           !> (integrate 106 files)
6278 ____________________________________________________________________________
6279 [  7892] By: jhi                                   on 2000/11/27  15:02:32
6280         Log: Update Changes.
6281      Branch: perl
6282            ! Changes patchlevel.h
6283 ____________________________________________________________________________
6284 [  7891] By: jhi                                   on 2000/11/27  14:57:23
6285         Log: Subject: Re: perlfaq style changes
6286              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
6287              Date: Sat, 25 Nov 2000 23:32:26 -0800
6288              Message-ID: <KyLI6gzkgiRK092yn@efn.org>
6289              
6290              plus a note from Ronald Kimball.
6291      Branch: perl
6292            ! pod/perlfaq.pod pod/perlfaq1.pod pod/perlfaq6.pod
6293 ____________________________________________________________________________
6294 [  7890] By: jhi                                   on 2000/11/27  14:53:14
6295         Log: Subject: [PATCH perl@7825] Re: [ID 20001122.006] weird behaviour of $|
6296              From: Benjamin Holzman <bah@ecnvantage.com>
6297              Date: Sun, 26 Nov 2000 16:27:33 -0500
6298              Message-ID: <20001126162733.J25040@ecnvantage.com>
6299      Branch: perl
6300            ! gv.c
6301 ____________________________________________________________________________
6302 [  7889] By: jhi                                   on 2000/11/27  14:43:11
6303         Log: Subject: [ID 20001127.004] White space problem in perlamiga.pod
6304              From: lvirden@cas.org
6305              Date: Mon, 27 Nov 2000 09:32:06 -0500 (EST)
6306              Message-Id: <200011271432.JAA09550@lwv26awu.cas.org>     
6307      Branch: perl
6308            ! README.amiga
6309 ____________________________________________________________________________
6310 [  7888] By: jhi                                   on 2000/11/27  14:32:34
6311         Log: Restore also the locale test to no-sprintf-taint state.
6312              Fixes the bug 20001127.003.
6313      Branch: perl
6314            ! sv.c t/pragma/locale.t
6315 ____________________________________________________________________________
6316 [  7887] By: gsar                                  on 2000/11/27  14:13:05
6317         Log: integrate changes#6613..6616,6620..6665 from mainline
6318              
6319              VMS configure.com update continues.
6320              
6321              Subject: Test fails / warnings with perl-current #6612
6322              
6323              Subject: [PATCH] @+, @- readonly (was Re: @<punct> interpolating in "")
6324              
6325              Subject: Re: [ID 20000807.003] [PATCH] Debugger treatment of condition "0"
6326              
6327              For now remove the mail code.
6328              
6329              Subject: Re: [PATCH] @+, @- readonly
6330              
6331              Subject: warning: storage class after type is obsolescent
6332              
6333              Subject: sfio2000
6334              
6335              Subject: Re: File::Temp problems on VMS in bleedperl
6336              
6337              README.os2 update.
6338              Subject: Re: [PATCH perl-current] Make op/sprintf.t more comprehensive,
6339              
6340              Make the user to give up his firstborn, err, to knowingly
6341              verify installing an unstable developer release.  Also bump
6342              the release to 5.7.0, but leave a patch tag in the local
6343              patches saying that this is not yet the real thing.
6344              
6345              Update (kinda) to Test 1.14, from Joshua Pritikin.
6346              
6347              make ok etc also for win32.
6348              
6349              Subject: [ID 20000815.005] [PATCH] perldoc not looking in the right place for script pod
6350              
6351              Don't blow limited stacks, a lower number is enough to
6352              tickle the lookbehind limit.
6353              
6354              Use -Dusedevel; regen Configure and the respective Porting stuff.
6355              
6356              Subject: [PATCH] debugger exit code should reflect user exit code
6357              
6358              Subject: [PATCH perl@6620] cygwin port
6359              
6360              Missed a file from #6638.
6361              
6362              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)
6363              
6364              magic callbacks all need to have same type signature
6365              
6366              Subject: [ID 20000815.014] [PATCH] INSTALL doesn't mention 64 bit support.
6367              
6368              Fix a dependency problem.
6369              Subject: [PATCH: 6640] VMS Makefile.SH update
6370              
6371              The numeric locale was reset to "C" by s?printf and never restored.
6372              Subject: [ID 20000809.003] setlocale(LC_NUMERIC...) produces different results in 5.005 and 5.6
6373              No test since adding the failing example to locale.t
6374              does not fail -- probably because the locale settings are so
6375              thoroughly tweaked by that time.  Running the example standalone
6376              does fail, though.  UPDATE: test case added at change #7540.
6377              
6378              Subject: [ID 20000324.040] minor fix to perlhpux.pod
6379              
6380              Update to CPAN 1.57.
6381              
6382              Subject: [PATCH] Cwd::_backtick_pwd does not check return value
6383              
6384              Change the perlbug address to perl.org since it's more forgiving.
6385              
6386              Change the regx compilation error markers to use = instead of <
6387              since pod makes using the latter quite messy.  Reported in
6388              ID 20000814.006 by Abigail and in
6389              Subject: Unknown escape E<> ?
6390              
6391              Update to perldebtut 1.9, from Richard Foley.
6392              
6393              check that the number pseudo children doesn't exceed
6394              MAXIMUM_WAIT_OBJECTS, which is currently 64 (avoids overflowing
6395              the WaitForMultipleObjects() limit that would cause wait()
6396              to crash)
6397              wait() and waitpid() could potentially be rewritten to use
6398              more than one thread to do the waiting to eliminate this
6399              limitation
6400              
6401              change#6328 could make close(SOCKET) return false on windows
6402              when it shouldn't
6403              
6404              pod nit seen in passing
6405              
6406              on windows, the return values from wait() and waitpid() don't
6407              match those of pseudo-pids
6408              
6409              waitpid() now handles externally spawned pids correctly;
6410              fixes for backtick/wait/waitpid failures on Windows 9x
6411              these changes make the pid returned by process functions on
6412              Windows 9x always positive by clearing the high bit (which
6413              is always set on Win9x); pseudo-process PIDs are likewise
6414              always negative now on Win9x (just as on NT/2000)
6415              
6416              trailing new %ENV entries weren't being pushed into the real
6417              environment of subprocesses on Windows
6418              
6419              Tweak the regex compilation errors once more.
6420              
6421              avoid warnings from dense compiler
6422              
6423              add "ok" targets from change#6632 in makefile.mk
6424      Branch: maint-5.6/perl
6425            - lib/Pod/PlainText.pm vms/configure.com
6426           !> (integrate 66 files)
6427 ____________________________________________________________________________
6428 [  7886] By: jhi                                   on 2000/11/27  13:54:18
6429         Log: __FUNCTION__ isn't portable and trying to emulate it leads
6430              into practically spelling out the name of the function.
6431              Takes care of the bug 20001127.001.
6432      Branch: perl
6433            ! perlio.c
6434 ____________________________________________________________________________
6435 [  7885] By: gsar                                  on 2000/11/27  13:53:18
6436         Log: integrate changes#6540..6541,6546..6549,6552..6554,6557..6606,
6437              6610..6611 from mainline
6438              
6439              Make regular expression parse error messages easier to understand.
6440              Subject: Re: enhanced(?) regex error messages
6441              
6442              Tiny tidying on report_evil_fh().
6443              
6444              Subject: Re: enhanced(?) regex error messages 
6445              plus Capitalize the error messages, plus perldiag them.
6446              
6447              Subject: Patch against 5.6.0 to allow "-d:Module=arg,arg,arg"
6448              
6449              Document here-doc better.
6450              
6451              Subject: [ID 20000807.003] [PATCH] Debugger treatment of condition "0"
6452              
6453              Subject: [PATCH] Re: [ID 20000807.008] Double reads considered evil? (deja vu)
6454              Do away with array context, from Daniel Chetlin <daniel@chetlin.com>
6455              (either perlbug or p5p ate the original), plus regen
6456              perlapi and perltoc. 
6457              
6458              Regen global.sym.
6459              
6460              Double check that we have a dirhandle.
6461              
6462              Subject: Re: enhanced(?) regex error messages
6463              (plus two small patches sent privately)
6464              (this still seems to leave few test failures)
6465              
6466              warn is a macro, avoid using at a variable to avoid warnings
6467              in some configurations; readdir.t is too conservative in
6468              estimating number of *.t's
6469              
6470              Get back into sync with Jeffrey on the enhanced regex warnings.
6471              
6472              Subject: [PATCH 5.6.0] cygwin port
6473              
6474              Zero entries were skipped, fix from Adrian Goalby
6475              <argoalby@yahoo.co.uk>
6476              
6477              Subject: Remove dead entry in perldiag
6478              
6479              Amend the description of Perl6.
6480              Subject: [PATCH Perl-5.6.0] perlfaq1.pod
6481              
6482              detypo
6483              
6484              It's the 2ndO'ROSSC.
6485              
6486              Revert the sv.c part of #6559, a better fix is needed.
6487              
6488              Iterating perl6 description.
6489              
6490              Update to Term::ANSIColor 1.03, from Russ Allbery.
6491              
6492              Update to Getopt::Long 2.23_05, from Johan Vromans.
6493              
6494              Small AUTHORS and MAINTAIN updates.  Could do with big updates.
6495              
6496              Update to Pod::Parser 1.17, from Brad Appleton.
6497              
6498              Update to CPAN 1.56, from Andreas König.
6499              
6500              Update to CGI 2.70, from Lincoln Stein.
6501              
6502              Put back the std @INC thing.
6503              
6504              Fixes to looking-like-number to keep behaviour as it was in 5.005_03.
6505              Subject: Re: [ID 20000810.002] $a["1foo"] same as $a[0]
6506              
6507              Document the IO::Select timeout.
6508              
6509              sleep(1) does not necessarily return 1.
6510              Subject: [PATCH bleadperl] op/lex_assign.t  
6511              
6512              Subject: debugger "d" command doesnt check line number
6513              
6514              B::Deparse didn't do sub attributes.
6515              Subject: B::Deparse was Re: [ID 20000808.005] refs to returned lvalues are lvalues??
6516              
6517              Preprocessing and postprocessing for File::Find.
6518              Subject: Patch to Find::File.pm to allow alphabetical results
6519              
6520              Subject: Re: [ID 20000809.005] trouble with long string and /m modifier - uninitialized value 
6521              
6522              Subject: Re: [ID 20000809.006] Debugger lost the ability to see $1 et al
6523              
6524              Subject: Re: [ID 20000730.003] utf8::length() bad
6525              
6526              Subject: Getting perlio and threads to compile
6527              (the Solaris version changes in Configure skipped)
6528              
6529              Tests for #6589.
6530              Subject: Re: B::Deparse was Re: [ID 20000808.005] refs to returned lvalues are lvalues??
6531              
6532              Add Perl debugging tutorial, regen toc. 
6533              Subject: perldebtut.pod
6534              
6535              Add a few missing files, update MANIFEST.
6536              
6537              Rewrite of vms/subconfigure.com as configure.com,
6538              from Peter Prymmer and the vmsperl crew.
6539              
6540              Should have deleted this in #6603.
6541              
6542              Fix the test for 5005threads.
6543              
6544              Fix-n-skip the tests under 5005threads.
6545              
6546              Subject: [PATCH] t/op/regmesg.t fails if REG_INFTY set
6547              
6548              Upgrade to CGI 2.71, from Lincoln Stein.
6549      Branch: maint-5.6/perl
6550           +> lib/CGI/eg/make_links.pl lib/CGI/eg/wilogo.gif
6551           +> lib/Pod/PlainText.pm pod/perldebtut.pod t/lib/gol-oo.t
6552           +> t/op/regmesg.t t/pod/find.t vms/configure.com
6553            - vms/subconfigure.com
6554            ! lib/lib.pm
6555           !> (integrate 115 files)
6556 ____________________________________________________________________________
6557 [  7884] By: jhi                                   on 2000/11/27  13:44:33
6558         Log: Subject:  [PATCH perl@7795 (and earlier)] VMS test cleanup
6559              From: lane@DUPHY4.Physics.Drexel.Edu (Charles Lane)
6560              Date:     Mon, 27 Nov 2000 08:23:54 EST
6561              Message-Id: <001127082318.6381c@DUPHY4.Physics.Drexel.Edu>
6562      Branch: perl
6563            ! vms/descrip_mms.template vms/test.com
6564 ____________________________________________________________________________
6565 [  7883] By: gsar                                  on 2000/11/27  11:50:46
6566         Log: integrate changes#6469..6484,6486..6501,6504..6505,6507..6509,
6567              6511..6513,6515..6523,6525..6536
6568              
6569              The swallow_bom() saga continues.  The #23 of require.t
6570              (UTF16-LE) still fails (silently, no output) but the #22
6571              (UTF16-BE) seems to be working now.  The root of the
6572              failure may be in sv_gets(): is it UTF-16LE-aware,
6573              especially when it comes to line endings? 
6574              
6575              Document the problem with -P in HP-UX and its workaround.
6576              
6577              Subject: [PATCH] allow non-variable as lhs of non-updating tr///
6578              (aka ID 20000730.002)
6579              
6580              Subject: fix and question re: waitpid() under win32
6581              
6582              Make the safety catch for buggy gccs work with triple version
6583              numbers like 2.95.2.  Reported in
6584              Subject: [ID 20000731.005] Perl 5.6.0 "Configure" fails to recognize gcc 2.95.2
6585              
6586              In Digital UNIX warn if gcc explicitly chosen because even
6587              2.95.2 is known to cause problems.
6588              
6589              Make chr() for values >127 to create utf8 when under utf8.
6590              
6591              various syntax errors and such (not fixed: comp/require.t#22 coredump
6592              on Windows)
6593              
6594              Stash away the largefiles flags and libswanted.
6595              
6596              BOM patching from Simon Cozens.
6597              
6598              If gccosandvers is equal to osname, clear gccosandvers.
6599              
6600              Make p4desc to skip non-mainperl branches by default.
6601              
6602              Subject: [Proposed PATCH] Let Perl define QUAD_MIN and _MAX itself
6603              
6604              The test from this
6605              Subject: Re: [ID 20000411.002] qw() gives different results in 5.6 to previous versions
6606              
6607              In new BSDs changes to argv[] do not show up in ps(1) output,
6608              instead one must use setproctitle().  This was already addressed
6609              by change #6457, but the below has a new variant for FreeBSD 4.0
6610              or later, and the matter is also documented more.
6611              
6612              FreeBSD 3.* updates from
6613              Subject: [ID 20000801.007] setting $0 on FreeBSD 4.x does not get reflected in /bin/ps
6614              
6615              regen_headers, regen perltoc.
6616              
6617              Document in one place the memory abstractions used in Perl core.
6618              
6619              memcpy has n o in it, as pinted ut by Sarathy.
6620              
6621              Remove the extraneous "main::" prefix from all the
6622              "opened only for", "on closed", and "never opened" warnings.
6623              
6624              The name of a filehandle does not have <these>.
6625              
6626              The tr utf8 patching continues.
6627              
6628              The new setproctitle() feature is available only in 
6629              bleeding edge FreeBSD.  From Paul Saab.
6630              
6631              Subject: [PATCH bleadperl] [ID 20000731.010] regex error 
6632              
6633              Dump UVs as UVs in Data::Dumper.
6634              
6635              detypo #6494
6636              
6637              Document the IVdf UVuf UVof UVxf.
6638              
6639              require.t needs binmode() to work on windows
6640              
6641              Generate OP_IS_SOCKET() and OP_IS_FILETEST() macros
6642              that are hopefully soon put into use.
6643              
6644              Allow "no Module;" even if there is no 'unimport'.
6645              
6646              Better skip message for the test; one of the two problems in
6647              Subject: [ID 20000224.003] Not OK: perl v5.5.660 on i86pc-solaris 2.7
6648              
6649              The subtest 4 may fail also on VOBS, as pointed out
6650              by Nick Ing-Simmons in November 1999, bug id 19991124.003
6651              (but the failure in that bug report isn't the subtest 4).
6652              
6653              Be more informative on what is skipped and why,
6654              also repeat the list at the end.
6655              
6656              Add a URL for FSF.
6657              
6658              Subject: [PATCH] sv.h documentation - SvLEN
6659              
6660              Subject: [PATCH bleadperl] [ID 20000803.001] further regexp counting problems
6661              
6662              Subject: [PATCH perl-current] Comings and goings in op/sprintf.t
6663              
6664              Subject: [PATCH] bad cppsymbols on os2 + Configure question
6665              
6666              Subject: [ID 20000802.002] [PATCH] memory pseudo-leak in sv_dump
6667              
6668              Subject: [ID 20000802.004] Tests op/grent.t and op/pwent.t fail unnecessarily
6669              mention the idea of @( and @)
6670              
6671              This is 6512.  Really.
6672              
6673              Subject: [ID 19990721.004] Documentation bug in perlfunc
6674              
6675              Subject: Minor tweak to perlvar.pod
6676              
6677              In the warnings call filehandles consistently so;
6678              add "unopened" warning for stat().
6679              
6680              After the #6519 a warning about stat() is just that,
6681              not about a filetest, which now have their own warning.
6682              
6683              Subject: [ID 20000804.002] configure.gnu and arguments with whitespace characters
6684              
6685              Subject: Re: Array vs. List context
6686              
6687              Subject: New perlcc, take 2
6688              
6689              Weed buglets pointed out by
6690              Subject: Re: [ID 20000803.005] miniperl aborts during Perl make
6691              
6692              gcc versions might have (parentheses) in them.
6693              
6694              Subject: [ID 20000724.004] Perl interpreter segfault when using built-in flock
6695              
6696              Essential prototype changes were missing from #6527.
6697              Also make report_evil_fh() more bomb-proof.
6698              
6699              Zap lib/Sys directory when cleaning up.
6700              
6701              Change the Policy policy: now -Dprefix= with an existing
6702              Policy.sh and prefix == siteprefix == vendorprefix, then all
6703              of them follow along the new prefix.
6704              Subject: Re: [ID 20000508.002] -Dprefix completely broken [PATCH]
6705              
6706              Continue fixing the io warnings.  This also
6707              sort of fixes bug ID 20000802.003: the core dump
6708              is no more.  Whether the current behaviour is correct
6709              (giving a warning: "Not a format reference"), is another matter.
6710              
6711              Have symbols for the IoTYPEs.
6712              
6713              Subject: [PATCH] perlfunc.pod use documentation (5.6.0)
6714              
6715              Document a bit that UDP is not what you might think.
6716              Subject: Re: IO::Socket::INET bug sending large UDP packets/fragmentation
6717              tr memory corruption fix from Simon Cozens.
6718              
6719              Plug the security hole described in the Aug 05 2000 bugtraq message
6720              "sperl 5.00503 (and newer ;) exploit" by Michal Zalewski.
6721              The security hole exists only in suidperls, which isn't
6722              installed or even built by default.
6723      Branch: maint-5.6/perl
6724           !> (integrate 71 files)
6725 ____________________________________________________________________________
6726 [  7882] By: gsar                                  on 2000/11/27  10:25:36
6727         Log: integrate changes#6439..6444,6446..6453,6455..6457,6460..6465,6467..6468
6728              from mainline
6729              
6730              Make the unimplemented POSIX regex features [[.cc.]] and [[=c=]]
6731              to be fatal errors (instead of by default ignoring them, and
6732              ignoring with a bug: even though -w gave an error, the opening [
6733              was left in)  Reported in:
6734              
6735              Subject: [PATCH: perl@6409] bug fix for munchconfig (turned up by CXX)
6736              
6737              Subject: [PATCH] split /^/
6738              
6739              MacOS nits from Matthias Neeracher.
6740              
6741              More split() doc and test patches from Mike Guy.
6742              
6743              Allow "sub AUTOLOAD;" to stop AUTOLOAD inheritance,
6744              from Graham Barr in the module list.
6745              
6746              docfix from Peter Scott <Peter@PSDT.com>.
6747              
6748              File::Temp patches for VMS and OS/2 from Tim Jenness.
6749              
6750              open() wariness in perlbug.
6751              
6752              Subject: [PATCH] minor doc change - perlguts
6753              
6754              Subject: Minor doc patch: handy.h
6755              
6756              Be wary of close()s, too.
6757              
6758              Further File::Temp patches from Yitzchak Scott-Thoennes
6759              and Craig A. Berry.
6760              
6761              Subject: [PATCH] fixes bug 20000508.004
6762              
6763              Subject: [ID 19990709.002] [DOCUMENTATION PATCH] perldiag
6764              
6765              Allow "no AutoLoader;", based on change #6444,
6766              suggested by Graham Barr.
6767              
6768              Use setproctitle() if available to modify $0.
6769              
6770              Warn if the version of the operating system used to compile gcc
6771              differs from the current version of the operating system.
6772              Also display the gcc compilation os and version in myconfig.
6773              Inspiration from
6774              
6775              Tiny fixes for #6460.
6776              
6777              The problem described in this
6778              Subject: [ID 20000322.018] named chars aren't magical enough
6779              has been fixed in perl 5.6.0 but just in case added a test
6780              to keep it away.  (The report from Joseph Hall.)
6781              
6782              Tune the comments and hopefully stop a memory leak.
6783              
6784              Subject: UTF8 concat
6785              (with a memory leak fixed, plus a few casts added)
6786              This also seems to help for
6787              Subject: [ID 20000716.015] join UTF8 weirdness
6788              
6789              Do not upgrade SVs into utf8 just because they participate
6790              in eq or cmp.  Reported and fix suggested in
6791              Subject: [ID 20000720.009] sv_eq UTF8 bug
6792              
6793              Fix the HALF_UPGRADE() macro introduced in #6263.
6794              
6795              Find green threads before native threads.
6796              Subject: Re: Patch to jpl/JNI/Makefile.PL
6797      Branch: maint-5.6/perl
6798           !> (integrate 30 files)
6799 ____________________________________________________________________________
6800 [  7881] By: jhi                                   on 2000/11/27  05:48:41
6801         Log: It seems that *both* the unused submatch loop cleanup
6802              codes are needed.
6803      Branch: perl
6804            ! regexec.c
6805 ____________________________________________________________________________
6806 [  7880] By: jhi                                   on 2000/11/27  04:50:07
6807         Log: Clean .exists deeper.
6808      Branch: perl
6809            ! Makefile.SH
6810 ____________________________________________________________________________
6811 [  7879] By: jhi                                   on 2000/11/27  02:31:35
6812         Log: The code in regcppop() (see #7878) contains the correct lower
6813              limit for the unused submatch 'cleanup' loop so that under
6814              "use utf8" the following code wouldn't dump core:
6815              "," =~ /([^,]*,)*/  With the the wrong lower limit (>=1)
6816              the cleanup loop in regtry() stomped beyond allocated area
6817              in the startp[] array.  Therefore, copied the correct lower
6818              loop limit (*PL_reglastparen) to regtry().  Note: something
6819              may still not be quite right: why was the _higher_ loop limit
6820              (prog->nparens) different in the utf8 case?
6821              
6822              After this patch "./perl -Ilib -Mutf8 t/op/regexp.t" works
6823              without core dumps, there were about 17 of them before
6824              the patch (with us since Perl 5.7.0).  Two failures, still:
6825              496 and 505 (though these may not be severe).
6826              
6827              Patch #7881 is also needed since both the cleanup loops
6828              seem to be needed.
6829              
6830              Also, the t/op/pat#44 seems to core dump under utf8.
6831              Plus a couple of failures.  UGH-8.
6832      Branch: perl
6833            ! regexec.c
6834 ____________________________________________________________________________
6835 [  7878] By: jhi                                   on 2000/11/27  02:21:17
6836         Log: The unused submatch cleanup code in regtry() seems to be more crucial,
6837              the code in regcppop() seems to be redundant for the test suite --
6838              but it contains a germ of truth, and it needed for the build
6839              process itself: see #7879 and #7881.
6840      Branch: perl
6841            ! regexec.c
6842 ____________________________________________________________________________
6843 [  7877] By: jhi                                   on 2000/11/27  01:53:09
6844         Log: Comment on comment.
6845      Branch: perl
6846            ! regexec.c
6847 ____________________________________________________________________________
6848 [  7876] By: jhi                                   on 2000/11/27  00:49:59
6849         Log: Adjust the docs to agree with #7875.
6850      Branch: perl
6851            ! pod/perllocale.pod
6852 ____________________________________________________________________________
6853 [  7875] By: jhi                                   on 2000/11/27  00:49:27
6854         Log: Retract #7863.  It makes more sense not to taint formatted output,
6855              not even by sprintf().
6856      Branch: perl
6857            ! sv.c
6858 ____________________________________________________________________________
6859 [  7874] By: jhi                                   on 2000/11/26  23:36:02
6860         Log: Debug dump of ANYOFUTF8 was garbage (data from ANYOF).
6861              Not really fixed (should really dump the UTF-8 charclass),
6862              but stopped displaying the garbage.
6863              
6864              Also add a note on the (missing) Unicode PSXSPC and BLANK.
6865      Branch: perl
6866            ! regcomp.c
6867 ____________________________________________________________________________
6868 [  7873] By: jhi                                   on 2000/11/26  21:31:13
6869         Log: BOUND regex opcodes (\b, \B) could try to scan zero length UTF-8.
6870      Branch: perl
6871            ! regexec.c
6872 ____________________________________________________________________________
6873 [  7872] By: jhi                                   on 2000/11/26  21:06:04
6874         Log: No need to scan till infinity, 13 is enough.
6875      Branch: perl
6876            ! handy.h utf8.c
6877 ____________________________________________________________________________
6878 [  7871] By: jhi                                   on 2000/11/26  20:20:32
6879         Log: Test line numbers are different with utf8.
6880      Branch: perl
6881            ! t/op/re_tests
6882 ____________________________________________________________________________
6883 [  7870] By: jhi                                   on 2000/11/26  20:10:12
6884         Log: Message nit.
6885      Branch: perl
6886            ! regcomp.c
6887 ____________________________________________________________________________
6888 [  7869] By: jhi                                   on 2000/11/26  19:01:05
6889         Log: Make utf8_length() and utf8_distance() (the latter of which
6890              is unused at the moment) to be less forgiving about bad UTF-8.
6891      Branch: perl
6892            ! embed.h embed.pl objXSUB.h proto.h utf8.c
6893 ____________________________________________________________________________
6894 [  7868] By: jhi                                   on 2000/11/26  18:45:56
6895         Log: Subject: Re: [ID 20001125.004] OK: perl v5.7.0 +DEVEL7825 on i686-linux 2.2.17 (UNINSTALLED)
6896              From: Benjamin Holzman <bah@ecnvantage.com>
6897              Date: Sat, 25 Nov 2000 20:40:20 -0500       
6898              Message-ID: <20001125204020.A25040@ecnvantage.com>              
6899              
6900              Debian allows installing /usr/bin/locale without installing
6901              any locales, an error message will ensue.
6902      Branch: perl
6903            ! t/pragma/locale.t
6904 ____________________________________________________________________________
6905 [  7867] By: jhi                                   on 2000/11/26  18:31:12
6906         Log: Subject: Re: [PATCH: perl@7825] SvTEMP-ness on rhs of aassign can wreak havoc
6907              From: Benjamin Holzman <bah@ecnvantage.com>
6908              Date: Sun, 26 Nov 2000 02:42:34 -0500
6909              Message-ID: <20001126024234.G25040@ecnvantage.com>
6910              
6911              Patch for the bug 20000212.002.
6912      Branch: perl
6913            ! sv.c t/op/array.t
6914 ____________________________________________________________________________
6915 [  7866] By: jhi                                   on 2000/11/26  18:28:09
6916         Log: Subject: PATCH: File::Temp fix on WindowsNT/VMS
6917              From: Tim Jenness <t.jenness@jach.hawaii.edu>
6918              Date: Fri, 24 Nov 2000 18:38:34 -1000 (HST)
6919              Message-ID: <Pine.LNX.4.21.0011241833230.18423-100000@lapaki.jach.hawaii.edu>
6920              
6921              File::Temp 0.11.
6922      Branch: perl
6923            ! lib/File/Temp.pm t/lib/ftmp-tempfile.t
6924 ____________________________________________________________________________
6925 [  7865] By: jhi                                   on 2000/11/26  18:24:22
6926         Log: The metaconfig unit change for #7864.
6927      Branch: metaconfig/U/perl
6928            ! need_va_copy.U
6929 ____________________________________________________________________________
6930 [  7864] By: jhi                                   on 2000/11/26  18:23:41
6931         Log: Make the va_copy() test not to be so talkative.
6932      Branch: perl
6933            ! Configure config_h.SH
6934 ____________________________________________________________________________
6935 [  7863] By: jhi                                   on 2000/11/26  18:11:02
6936         Log: Fix locale inconsistencies unearthed by Hugo's work.
6937              Now the floating point sprintf really does taint the result
6938              string as perllocale promises (has promised for a long time)
6939              if "use locale" is in the lexical scope.
6940      Branch: perl
6941            ! sv.c t/pragma/locale.t
6942 ____________________________________________________________________________
6943 [  7862] By: jhi                                   on 2000/11/26  00:35:15
6944         Log: Subject: [PATCH] Re: pp_add -> pp_i_add efficiency hack?
6945              From: Nicholas Clark <nick@ccl4.org>
6946              Date: Sun, 26 Nov 2000 00:07:50 +0000
6947              Message-ID: <20001126000750.A22446@plum.flirble.org>
6948              
6949              Infinit.
6950      Branch: perl
6951            ! sv.c
6952 ____________________________________________________________________________
6953 [  7861] By: jhi                                   on 2000/11/26  00:01:26
6954         Log: Integrate perlio.
6955      Branch: perl
6956           !> doio.c perlio.c perliol.h pp_sys.c win32/makefile.mk
6957 ____________________________________________________________________________
6958 [  7860] By: nick                                  on 2000/11/25  22:04:17
6959         Log: Correct relative path from new ext\Filter\Util\Call location
6960              back to miniperl.
6961      Branch: perlio
6962            ! win32/makefile.mk
6963 ____________________________________________________________________________
6964 [  7859] By: nick                                  on 2000/11/25  21:26:54
6965         Log: Integrate mainline.
6966      Branch: perlio
6967           +> ext/Filter/Util/Call/Call.pm ext/Filter/Util/Call/Call.xs
6968           +> ext/Filter/Util/Call/Makefile.PL t/lib/filter-util.pl
6969           +> t/lib/filter-util.t
6970            - ext/Filter/Util/Call.pm ext/Filter/Util/Call.xs
6971            - ext/Filter/Util/Makefile.PL t/lib/filt-util.pl
6972            - t/lib/filt-util.t
6973           !> AUTHORS Configure MANIFEST README.amiga configure.com doio.c
6974           !> embed.h embed.pl ext/B/B.pm ext/B/B/Lint.pm ext/B/B/Terse.pm
6975           !> hints/solaris_2.sh hints/uwin.sh hints/vmesa.sh
6976           !> lib/ExtUtils/MM_Unix.pm makedef.pl perl.h perlio.c perlio.h
6977           !> perlsdio.h proto.h t/lib/io_sock.t win32/Makefile
6978           !> win32/makefile.mk
6979 ____________________________________________________________________________
6980 [  7858] By: gsar                                  on 2000/11/25  20:52:17
6981         Log: C<foreach my $x ...> in pseudo-fork()ed process may diddle
6982              parent's memory; fix it by keeping track of the actual pad
6983              offset rather than a raw pointer (this change is probably also
6984              relevant to non-ithreads case to avoid fallout from reallocs of
6985              the pad array, but is currently only enabled for the ithreads
6986              case in the interests of minimal disruption to existing "well
6987              tested" code)
6988      Branch: perl
6989            ! embed.h embed.pl global.sym objXSUB.h perlapi.c pp_ctl.c
6990            ! proto.h scope.c scope.h sv.c t/op/fork.t
6991 ____________________________________________________________________________
6992 [  7857] By: nick                                  on 2000/11/25  20:01:28
6993         Log: All tests pass on Win32/gcc/USE_PERLIO.
6994              - when crlf layer is pushed make unix-level binary.
6995              - remove :crlf injection in pp_backtick in pp_sys.c
6996              - (Change dependacy of extension .dll's to perldll.def rather than perl.exe)
6997      Branch: perlio
6998            ! doio.c perlio.c pp_sys.c win32/makefile.mk
6999 ____________________________________________________________________________
7000 [  7856] By: jhi                                   on 2000/11/25  18:38:30
7001         Log: Update the metaconfig units for #7855.
7002      Branch: metaconfig/U/perl
7003            ! useperlio.U usesocks.U
7004 ____________________________________________________________________________
7005 [  7855] By: jhi                                   on 2000/11/25  18:37:54
7006         Log: Undo the SOCKS workarounds, instead start using PerlIO
7007              if SOCKS is selected.
7008              
7009              Subject: perl@7847, [ID 20001030.005], close-patch, perlio - The big cleanup
7010              From: Jens Hamisch <jens@Strawberry.COM>
7011              Date: Fri, 24 Nov 2000 18:31:30 +0100
7012              Message-ID: <20001124183130.E28337@Strawberry.COM>
7013              
7014              Subject: Re: perl@7847, [ID 20001030.005], close-patch, perlio - Patch the patch ...
7015              From: Jens Hamisch <jens@Strawberry.COM>
7016              Date: Fri, 24 Nov 2000 19:11:51 +0100
7017              Message-ID: <20001124191151.A28753@Strawberry.COM>
7018      Branch: perl
7019            ! Configure doio.c embed.h embed.pl makedef.pl perl.h perlio.c
7020            ! perlio.h perlsdio.h proto.h t/lib/io_sock.t
7021 ____________________________________________________________________________
7022 [  7854] By: jhi                                   on 2000/11/25  17:39:08
7023         Log: Undo #7848.  Some of the code seems to use walkoptree(),
7024              some walkoptree_slow().  An unfinished renaming?
7025              Now the sub is walkoptree() (which is @EXPORT_OK),
7026              the walkoptree_slow() is a typeglob alias to walkoptree.
7027              This makes the tests to pass, at least.
7028      Branch: perl
7029            ! ext/B/B.pm ext/B/B/Lint.pm ext/B/B/Terse.pm
7030 ____________________________________________________________________________
7031 [  7853] By: nick                                  on 2000/11/24  22:24:33
7032         Log: Re-arrange crlf vs binary for platforms that care.
7033              crlf layer is now "the" buffer layer and can turn its behaviour on/off.
7034              Lip-service to making stdio layer work on such platfroms (untested).
7035              Now fails 3 tests rather than one, checkin to see if I can debug 
7036              the issue under linux. (Do not merge.)
7037      Branch: perlio
7038            ! doio.c perlio.c perliol.h
7039 ____________________________________________________________________________
7040 [  7852] By: jhi                                   on 2000/11/24  18:57:39
7041         Log: AUTHORS edits.
7042      Branch: perl
7043            ! AUTHORS
7044 ____________________________________________________________________________
7045 [  7851] By: jhi                                   on 2000/11/24  17:34:56
7046         Log: Add Jan-Erik Karlsson.
7047      Branch: perl
7048            ! AUTHORS
7049 ____________________________________________________________________________
7050 [  7850] By: jhi                                   on 2000/11/24  17:27:56
7051         Log: Configure should find stdchar on its own.
7052      Branch: perl
7053            ! hints/solaris_2.sh
7054 ____________________________________________________________________________
7055 [  7849] By: jhi                                   on 2000/11/24  17:24:55
7056         Log: Subject: PATCH over 7848: Filter test flawed
7057              From: andreas.koenig@anima.de (Andreas J. Koenig)
7058              Date: 24 Nov 2000 10:28:29 +0100
7059              Message-ID: <m3k89tbtxe.fsf@ak-71.mind.de>
7060      Branch: perl
7061            ! t/lib/filter-util.t
7062 ____________________________________________________________________________
7063 [  7848] By: jhi                                   on 2000/11/24  17:22:15
7064         Log: Subject: [ID 20001124.001] B exports "walkoptree" but does not define it
7065              From: Simon Cozens <simon@pembro4.pmb.ox.ac.uk>
7066              Date: Fri, 24 Nov 2000 16:12:58 +0000
7067              Message-Id: <E13zLT8-0005FN-00@pembro4.pmb.ox.ac.uk>
7068      Branch: perl
7069            ! ext/B/B.pm
7070 ____________________________________________________________________________
7071 [  7847] By: jhi                                   on 2000/11/24  03:07:01
7072         Log: Integrate perlio.
7073      Branch: perl
7074           !> doio.c perlio.c perlio.h pp_sys.c t/lib/io_tell.t
7075           !> win32/makefile.mk
7076 ____________________________________________________________________________
7077 [  7846] By: gsar                                  on 2000/11/24  00:55:57
7078         Log: integrate changes#6415..6418,6420..6438 from mainline
7079              
7080              Fix the bitvector ops for utf8 (tricky since past 7 bits
7081              the utf8 'characters' can be more than one octet).
7082              
7083              MPE/ix updates for perl 5.6.0 from Mark Bixby.
7084              
7085              Subject: SDBM_File documentation
7086              
7087              Detypo.
7088              
7089              Decutandpasto.
7090              
7091              Send all installperl messages to STDERR and be -w clean.
7092              
7093              Out-of-date note removed.
7094              
7095              Protect against "wild next"s, that is, callbacks doing "next"
7096              instead of "return".
7097              
7098              Use STDOUT consistently.
7099              
7100              The output might have been produced in the wrong order.
7101              
7102              A missing 'break' after the [[:space:]] switch case.
7103              
7104              Add tests for
7105              [ID 19991110.003] another matching finding by pcre author
7106              which has already been fixed by some patch, as verified in
7107              
7108              Documentation to explain the behaviour of map().
7109              
7110              Add an optimization for map-maps-a-list-element-to-more-list-elements
7111              case, but add also notes explaining the relationship of this
7112              patch and the earlier notes by Sarathy.
7113              
7114              Subject: [ID 20000716.023] syslog test fails without sockets
7115              
7116              Subject: Re: [PATCH] [ID 20000716.011] strangeness with split($_ =~ m/.../)
7117              Test cases for #6431.
7118              
7119              File::Spec::VMS fixup for tmpdir from Craig Berry.
7120              
7121              Make the "uninit variable" warning to say "concat or string"
7122              or "join or string" when in concat or join .
7123              
7124              Get UTF16 BOMs working.  Patch from
7125              Subject: Re: [ID 20000719.001] Problem with bleadperl of 7/18/00
7126              
7127              Subject: [PATCH] Make large file tests deal with SIGXFSZ
7128              
7129              Subject: [ID 20000724.003] Documentation changes for perllocale.pod
7130              
7131              Subject: [PATCH] av.c apidoc
7132      Branch: maint-5.6/perl
7133           !> (integrate 43 files)
7134 ____________________________________________________________________________
7135 [  7845] By: gsar                                  on 2000/11/24  00:20:45
7136         Log: integrate changes#6406..6414 from mainline
7137              
7138              Merge perlhacktut into perlhack, update perlguts.
7139              
7140              Fix AutoSplit to use File::Spec the right way in VMS,
7141              from Peter Prymmer.
7142              
7143              The bug report
7144              [ID 19991110.002] minimal matching discrepancy found by pcre author
7145              seems to have been fixed (though differently from what was suggested
7146              in the report) in 5.6.0.  Add tests to keep the bug from reappearing.
7147              
7148              thinko fix in vms/descrip_mms.template, the win32.pod in lib,
7149              not in pod, from Peter Prymmer
7150              
7151              Subject: [docpatch] Re: [ID 19991002.011] perldoc -f shift
7152              From: Hugo <hv@crypt.compulink.co.uk>
7153              Date: Fri, 14 Jul 2000 23:05:20 +0100
7154              Message-Id: <200007142205.XAA17882@crypt.compulink.co.uk>
7155              
7156              Didn't anymore apply, but that point still could use another fix.
7157              
7158              lib/b test fixes from Peter Prymmer.
7159              
7160              More docs for sv functions.
7161              
7162              perlvms.pod whitespace cleanup to keep pod utils happy.
7163              
7164              another VMS build tweak from Peter Prymmer
7165      Branch: maint-5.6/perl
7166           !> embed.pl lib/AutoSplit.pm pod/perlapi.pod pod/perlfunc.pod
7167           !> pod/perlguts.pod pod/perlhack.pod sv.c t/lib/b.t t/op/re_tests
7168           !> vms/descrip_mms.template vms/perlvms.pod
7169 ____________________________________________________________________________
7170 [  7844] By: nick                                  on 2000/11/23  23:42:45
7171         Log: Win32/perlio Now just fails one io/argv.t test - lack 
7172              of default :crlf on standard streams.
7173      Branch: perlio
7174            ! doio.c perlio.c
7175 ____________________________________________________________________________
7176 [  7843] By: nick                                  on 2000/11/23  23:04:05
7177         Log: Win32 passes all but t/lib/peek.t with perlio and home-grown crlf.
7178              peek fail is showing a real problem (multiple crlf layers
7179              are getting pushed.)
7180      Branch: perlio
7181            ! doio.c perlio.c win32/makefile.mk
7182 ____________________________________________________________________________
7183 [  7842] By: nick                                  on 2000/11/23  19:46:23
7184         Log: Implement PerlIO_binmode()
7185              Fix PerlIOCrlf_unread() (*--ptr rather than *ptr-- ...)
7186              Test on UNIX with PERLIO="perlio crlf" to mimic Win32,
7187              make binmode in t/lib/io_tell.t unconditional so that works.
7188              Checkin just so Win32 machine can see these changes.
7189      Branch: perlio
7190            ! doio.c perlio.c perlio.h pp_sys.c t/lib/io_tell.t
7191 ____________________________________________________________________________
7192 [  7841] By: jhi                                   on 2000/11/23  19:30:00
7193         Log: README.amiga changes from Jan-Erik Karlsson <trg@privat.utfors.se>.
7194      Branch: perl
7195            ! README.amiga
7196 ____________________________________________________________________________
7197 [  7840] By: jhi                                   on 2000/11/23  17:18:02
7198         Log: SOCKS wrestling continues, patches from Jens Hamisch.
7199      Branch: perl
7200            ! doio.c embed.h embed.pl perlsdio.h proto.h
7201 ____________________________________________________________________________
7202 [  7839] By: jhi                                   on 2000/11/23  16:54:14
7203         Log: Push Filter::Util::Call one level deeper.
7204      Branch: perl
7205            + t/lib/filter-util.t
7206           +> ext/Filter/Util/Call/Call.pm ext/Filter/Util/Call/Call.xs
7207           +> ext/Filter/Util/Call/Makefile.PL t/lib/filter-util.pl
7208            - ext/Filter/Util/Call.pm ext/Filter/Util/Call.xs
7209            - ext/Filter/Util/Makefile.PL t/lib/filt-util.pl
7210            - t/lib/filt-util.t
7211            ! MANIFEST configure.com hints/uwin.sh hints/vmesa.sh
7212            ! win32/Makefile win32/makefile.mk
7213 ____________________________________________________________________________
7214 [  7838] By: jhi                                   on 2000/11/23  16:52:40
7215         Log: Reach back one higher up when searching for PERL_SRC.
7216      Branch: perl
7217            ! lib/ExtUtils/MM_Unix.pm
7218 ____________________________________________________________________________
7219 [  7837] By: jhi                                   on 2000/11/23  16:05:41
7220         Log: Subject: Re: perl@7826
7221              Date: Thu, 23 Nov 2000 02:20:25 -0600
7222              From: "Craig A. Berry" <craigberry@mac.com>
7223              Message-Id: <p04330102b6424b6cd4c9@[172.16.52.1]>
7224              
7225              Make VMS to like Filter::Util::Call. 
7226      Branch: perl
7227            ! configure.com ext/Filter/Util/Makefile.PL
7228 ____________________________________________________________________________
7229 [  7836] By: nick                                  on 2000/11/23  16:04:08
7230         Log: Implement crlf layer - not ready for merge.
7231      Branch: perlio
7232            ! perlio.c win32/makefile.mk
7233 ____________________________________________________________________________
7234 [  7835] By: jhi                                   on 2000/11/23  15:56:52
7235         Log: STDCHAR is different in Sparc v9 vs x86.
7236      Branch: perl
7237            ! hints/solaris_2.sh
7238 ____________________________________________________________________________
7239 [  7834] By: jhi                                   on 2000/11/23  15:50:47
7240         Log: The type needs to be visible to protos.
7241      Branch: perl
7242            ! perl.h
7243 ____________________________________________________________________________
7244 [  7833] By: jhi                                   on 2000/11/23  15:40:46
7245         Log: Finish unfinished SOCKS workaround changes.
7246      Branch: perl
7247            ! doio.c
7248 ____________________________________________________________________________
7249 [  7832] By: jhi                                   on 2000/11/23  15:33:30
7250         Log: Integrate perlio.
7251      Branch: perl
7252           !> win32/config_H.bc win32/config_H.gc win32/config_H.vc
7253           !> win32/makefile.mk
7254 ____________________________________________________________________________
7255 [  7831] By: nick                                  on 2000/11/23  10:31:07
7256         Log: Correct makefile.mk dependancies for ext/Filter/Util
7257              Build ext/Encode
7258              Run dmake regen_config_h
7259      Branch: perlio
7260            ! win32/config_H.bc win32/config_H.gc win32/config_H.vc
7261            ! win32/makefile.mk
7262 ____________________________________________________________________________
7263 [  7830] By: nick                                  on 2000/11/23  08:05:07
7264         Log: Integrate mainline
7265      Branch: perlio
7266           +> ext/Filter/Util/Call.pm ext/Filter/Util/Call.xs
7267           +> ext/Filter/Util/Makefile.PL lib/Filter/Simple.pm
7268           +> t/lib/filt-util.pl t/lib/filt-util.t
7269           !> (integrate 41 files)
7270 ____________________________________________________________________________
7271 [  7829] By: gsar                                  on 2000/11/23  03:07:11
7272         Log: build the Filter extension on windows
7273      Branch: perl
7274            ! win32/Makefile win32/makefile.mk
7275 ____________________________________________________________________________
7276 [  7828] By: gsar                                  on 2000/11/23  02:46:35
7277         Log: regenerate win32/config* and fix some inconsistencies in the
7278              makefiles; always export Perl_deb() because it is needed
7279              by ext/re/* (whether perl itself is built with -DDEBUGGING
7280              or not)
7281      Branch: perl
7282            ! makedef.pl win32/Makefile win32/config_H.bc win32/config_H.gc
7283            ! win32/config_H.vc win32/makefile.mk
7284 ____________________________________________________________________________
7285 [  7827] By: gsar                                  on 2000/11/23  02:18:38
7286         Log: get sources building on windows+MSVC again (untested with other
7287              compilers)
7288      Branch: perl
7289            ! win32/include/sys/socket.h win32/perllib.c
7290 ____________________________________________________________________________
7291 [  7826] By: jhi                                   on 2000/11/23  01:18:26
7292         Log: Update Changes.
7293      Branch: perl
7294            ! Changes patchlevel.h
7295 ____________________________________________________________________________
7296 [  7825] By: jhi                                   on 2000/11/23  00:20:41
7297         Log: Subject: Re: av.c patch (having slight problems)
7298              From: "Ben Tilly" <ben_tilly@hotmail.com>
7299              Date: Tue, 21 Nov 2000 23:29:31 -0500
7300              Message-ID: <LAW2-F113pL32ctFfj800000d81@hotmail.com>
7301              
7302              unshift() speedup.
7303      Branch: perl
7304            ! av.c
7305 ____________________________________________________________________________
7306 [  7824] By: jhi                                   on 2000/11/22  23:59:15
7307         Log: Fixes for signedness warnings noticed by VMSperlers.
7308      Branch: perl
7309            ! ext/Storable/Storable.xs regcomp.c sv.c
7310 ____________________________________________________________________________
7311 [  7823] By: jhi                                   on 2000/11/22  23:19:31
7312         Log: Subject: [PATCH perl@7795] small cleanup task for test suite
7313              From: Peter Prymmer <pvhp@forte.com>
7314              Date: Wed, 22 Nov 2000 15:04:13 -0800 (PST)
7315              Message-ID: <Pine.OSF.4.10.10011221457530.519633-100000@aspara.forte.com>
7316      Branch: perl
7317            ! t/pragma/warn/pp_hot
7318 ____________________________________________________________________________
7319 [  7822] By: jhi                                   on 2000/11/22  22:52:20
7320         Log: Be clean.
7321      Branch: perl
7322            ! Makefile.SH
7323 ____________________________________________________________________________
7324 [  7821] By: jhi                                   on 2000/11/22  22:46:39
7325         Log: Add the simple frontend to Filter::Util:Call, Filter::Simple 0.01
7326              by Damian Conway, as suggested by Paul Marquess.
7327      Branch: perl
7328            + lib/Filter/Simple.pm
7329 ____________________________________________________________________________
7330 [  7820] By: jhi                                   on 2000/11/22  22:45:51
7331         Log: Add the Filter::Util::Call 1.04 by Paul Marquess from Filter-1.19.
7332      Branch: perl
7333            + ext/Filter/Util/Call.pm ext/Filter/Util/Call.xs
7334            + ext/Filter/Util/Makefile.PL t/lib/filt-util.pl
7335            + t/lib/filt-util.t
7336            ! MANIFEST
7337 ____________________________________________________________________________
7338 [  7819] By: jhi                                   on 2000/11/22  22:03:27
7339         Log: Integrate perlio.
7340      Branch: perl
7341           !> README.win32 perlio.c t/pragma/warnings.t win32/config_H.gc
7342           !> win32/makefile.mk
7343 ____________________________________________________________________________
7344 [  7818] By: jhi                                   on 2000/11/22  21:56:02
7345         Log: More SOCKS versus 64-bit patches from Jens Hamisch.
7346      Branch: perl
7347            ! doio.c embed.h embed.pl makedef.pl perl.h pp_sys.c proto.h
7348            ! t/lib/io_sock.t
7349 ____________________________________________________________________________
7350 [  7817] By: jhi                                   on 2000/11/22  21:39:49
7351         Log: Subject: [PATCH 5.7.0] Liblist returns found libraries
7352              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
7353              Date: Wed, 22 Nov 2000 16:08:12 -0500
7354              Message-ID: <20001122160812.A24269@monk.mps.ohio-state.edu>
7355      Branch: perl
7356            ! lib/ExtUtils/Liblist.pm
7357 ____________________________________________________________________________
7358 [  7816] By: jhi                                   on 2000/11/22  21:38:25
7359         Log: Go ahead and #include <unistd.h> in perl.h.
7360      Branch: perl
7361            ! doio.c malloc.c mg.c perl.h pp.c pp_hot.c pp_sys.c toke.c
7362            ! util.c
7363 ____________________________________________________________________________
7364 [  7815] By: jhi                                   on 2000/11/22  21:22:52
7365         Log: Subject: [PATCH 5.7.0] Overeager visited-positions optimizations
7366              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
7367              Date: Mon, 20 Nov 2000 18:30:52 -0500
7368              Message-ID: <20001120183051.A15228@monk.mps.ohio-state.edu>
7369      Branch: perl
7370            ! pod/perlre.pod regcomp.c t/op/re_tests
7371 ____________________________________________________________________________
7372 [  7814] By: jhi                                   on 2000/11/22  21:21:46
7373         Log: Subject: [PATCH 5.7.0] Liblist finally works
7374              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
7375              Date: Tue, 21 Nov 2000 22:02:17 -0500
7376              Message-ID: <20001121220217.A24174@monk.mps.ohio-state.edu>
7377      Branch: perl
7378            ! lib/ExtUtils/Liblist.pm lib/ExtUtils/MM_VMS.pm
7379            ! lib/ExtUtils/MakeMaker.pm
7380 ____________________________________________________________________________
7381 [  7813] By: jhi                                   on 2000/11/22  21:20:23
7382         Log: Subject: Re: [PATCH bleadperl] Re: Not OK: perl5.7.0 +DEVEL7706    +Duseperlio on AIX4.[23]
7383              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
7384              Date: Wed, 22 Nov 2000 17:53:15 +0100
7385              Message-Id: <20001122174544.49A2.H.M.BRAND@hccnet.nl>
7386              
7387              AIX dynaloader and perlio patch.
7388      Branch: perl
7389            ! ext/DynaLoader/dl_aix.xs
7390 ____________________________________________________________________________
7391 [  7812] By: jhi                                   on 2000/11/22  21:17:52
7392         Log: (Accidentally empty patch.)
7393      Branch: perl
7394            ! av.c
7395 ____________________________________________________________________________
7396 [  7811] By: jhi                                   on 2000/11/22  21:16:31
7397         Log: Subject: [PATCH: perl@7777] make VMS' test.com tail compatible w/ unix
7398              From: Peter Prymmer <pvhp@forte.com>
7399              Date: Mon, 20 Nov 2000 16:53:54 -0800 (PST)
7400              Message-ID: <Pine.OSF.4.10.10011201651050.373336-100000@aspara.forte.com>
7401      Branch: perl
7402            ! vms/test.com
7403 ____________________________________________________________________________
7404 [  7810] By: jhi                                   on 2000/11/22  21:15:36
7405         Log: Subject: Re: perl@7777 
7406              From: "John P. Linderman" <jpl@research.att.com>
7407              Date: Wed, 22 Nov 2000 13:11:11 -0500
7408              Message-Id: <200011221811.NAA90072@raptor.research.att.com>
7409              
7410              Detypoing.
7411      Branch: perl
7412            ! lib/CPAN.pm
7413 ____________________________________________________________________________
7414 [  7809] By: jhi                                   on 2000/11/22  21:14:19
7415         Log: Subject:  [PATCH perl@7795] Perlio_tell fix
7416              From: lane@DUPHY4.Physics.Drexel.Edu (Charles Lane)
7417              Date:     Wed, 22 Nov 2000 13:51:37 EST
7418              Message-Id: <001122135058.56e24@DUPHY4.Physics.Drexel.Edu>
7419      Branch: perl
7420            ! perlsdio.h
7421 ____________________________________________________________________________
7422 [  7808] By: jhi                                   on 2000/11/22  21:13:27
7423         Log: Subject: [ID 20001120.003] [PATCH] io_udp.t fails without 'localhost'
7424              From: Casey Tweten <crt@kiski.net>
7425              Date: Mon, 20 Nov 2000 11:53:03 -0500 (EST)
7426              Message-Id: <200011201653.LAA10194@home.kiski.net>
7427      Branch: perl
7428            ! t/lib/io_udp.t
7429 ____________________________________________________________________________
7430 [  7807] By: jhi                                   on 2000/11/22  21:12:35
7431         Log: Subject: [ID 20001120.002] [PATCH] io_sock.t fails without 'localhost'
7432              From: Casey Tweten <crt@kiski.net>
7433              Date: Mon, 20 Nov 2000 11:36:11 -0500 (EST)
7434              Message-Id: <200011201636.LAA07227@home.kiski.net>
7435      Branch: perl
7436            ! t/lib/io_sock.t
7437 ____________________________________________________________________________
7438 [  7806] By: jhi                                   on 2000/11/22  21:10:59
7439         Log: Subject: Re: [PATCH] Evolution of h2xs [WAS: Re: PATCH subs.pm]
7440              From: "Casey R. Tweten" <crt@kiski.net>
7441              Date: Wed, 22 Nov 2000 09:05:07 -0500 (EST)
7442              Message-ID: <Pine.OSF.4.21.0011220903580.1811-100000@home.kiski.net>
7443      Branch: perl
7444            ! utils/h2xs.PL
7445 ____________________________________________________________________________
7446 [  7805] By: nick                                  on 2000/11/22  21:05:06
7447         Log: Integrate mainline
7448      Branch: perlio
7449           !> Changes Porting/genlog ext/DB_File/DB_File.xs
7450           !> ext/DB_File/version.c lib/Test.pm patchlevel.h
7451           !> utils/perlbug.PL
7452 ____________________________________________________________________________
7453 [  7804] By: jhi                                   on 2000/11/22  21:01:12
7454         Log: Subject: [PATCH] Test.pm POD peculiarity
7455              From: "Casey R. Tweten" <crt@kiski.net>
7456              Date: Tue, 21 Nov 2000 15:01:25 -0500 (EST)
7457              Message-ID: <Pine.OSF.4.21.0011211458020.20114-100000@home.kiski.net>
7458      Branch: perl
7459            ! lib/Test.pm
7460 ____________________________________________________________________________
7461 [  7803] By: jhi                                   on 2000/11/22  20:59:59
7462         Log: Subject: [ID 20001122.002] [PATCH 5.7.0@7795] two small patches to perlbug
7463              From: "Philip Newton" <pnewton@gmx.de>
7464              Date: Wed, 22 Nov 2000 14:25:53 +0100
7465              Message-Id: <3A1BD771.25462.1939FAD@localhost>
7466              
7467              Be case-understanding also on 's', and use the -oi of sendmail
7468              not to terminate the transmission on a lone '.'.
7469      Branch: perl
7470            ! utils/perlbug.PL
7471 ____________________________________________________________________________
7472 [  7802] By: nick                                  on 2000/11/22  20:51:42
7473         Log: Win32 PerlIO intermediate state now working as expected.
7474              - In current state we are still using C runtime in text/binary
7475              mode and "crlf" layer is just a dummy (clone of perlio buffer layer).
7476              - PERLIO=stdio and PERLIO=unix pass all expected tests.
7477              - PERLIO=perlio fails t/lib/dprof.t because Dprof.xs calls PerlIO_tell()
7478              and PerlIO_seek() and the dummy crlf layer is not making adjustments
7479              for CRLF translation happening in C runtime. All other tests pass.
7480              
7481              Added note to README.win32 to point out the snags of doing a perl build
7482              with Norton AntiVirus turned on.
7483              
7484              Tweaked t/pragma/warnings.t so that when run stand-alone you can tell
7485              which file a fail comes from.
7486              
7487              Updated "canned" config.h to match the one generated.
7488      Branch: perlio
7489            ! README.win32 perlio.c t/pragma/warnings.t win32/config_H.gc
7490            ! win32/makefile.mk
7491 ____________________________________________________________________________
7492 [  7801] By: jhi                                   on 2000/11/22  06:50:20
7493         Log: Nickety nits.
7494      Branch: perl
7495            ! ext/DB_File/DB_File.xs ext/DB_File/version.c
7496 ____________________________________________________________________________
7497 [  7800] By: jhi                                   on 2000/11/22  01:29:55
7498         Log: Changes had accidentally gone too silent on non-main branches.
7499      Branch: perl
7500            ! Changes Porting/genlog patchlevel.h
7501 ____________________________________________________________________________
7502 [  7799] By: gsar                                  on 2000/11/22  01:02:56
7503         Log: some lib_pm.PL changes snuck in via change#7772
7504      Branch: maint-5.6/perl
7505            ! Makefile.SH
7506 ____________________________________________________________________________
7507 [  7798] By: nick                                  on 2000/11/21  21:59:40
7508         Log: Integrate mainline
7509      Branch: perlio
7510           !> (integrate 28 files)
7511 ____________________________________________________________________________
7512 [  7797] By: jhi                                   on 2000/11/21  21:01:45
7513         Log: Integrate perlio.
7514      Branch: perl
7515           !> doio.c perlio.c perlio.h win32/perllib.c win32/win32.c
7516 ____________________________________________________________________________
7517 [  7796] By: nick                                  on 2000/11/21  20:36:22
7518         Log: Win32 builds and runs (mostly) with USE_PERLIO.
7519              PERLIO=perlio passes all tests. 
7520              PERLIO=stdio (sadly the default) hangs in t.pragma/warnings.t #319
7521      Branch: perlio
7522            ! perlio.c win32/perllib.c win32/win32.c
7523 ____________________________________________________________________________
7524 [  7795] By: jhi                                   on 2000/11/21  19:03:44
7525         Log: Update Changes.
7526      Branch: perl
7527            ! Changes patchlevel.h
7528 ____________________________________________________________________________
7529 [  7794] By: jhi                                   on 2000/11/21  18:56:34
7530         Log: Subject: PerlIO_apply_layers prototype (was Re: [PATCH: perl@7777] add system locale testing for VMS)
7531              From: "Craig A. Berry" <craigberry@mac.com>
7532              Date: Mon, 20 Nov 2000 20:27:06 -0600
7533              Message-Id: <p04330101b63f8baf25a2@[172.16.52.1]>
7534              
7535              A cut-and-pasto.
7536      Branch: perl
7537            ! perlio.h
7538 ____________________________________________________________________________
7539 [  7793] By: jhi                                   on 2000/11/21  18:54:41
7540         Log: Subject: [PATCH bleadperl] Re: Not OK: perl5.7.0 +DEVEL7706 +Duseperlio on AIX4.[23]
7541              From: Dominic Dunlop <domo@computer.org> 
7542              Date: Mon, 20 Nov 2000 18:55:29 +0100
7543              Message-Id: <p04320403b63b2c750dce@[192.168.1.4]> 
7544              
7545              va_copy() and the need of it.
7546              See <http://wwwold.dkuug.dk/JTC1/SC22/WG14/www/docs/n907.ps>.
7547      Branch: metaconfig/U/perl
7548            + need_va_copy.U
7549      Branch: perl
7550            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
7551            ! config_h.SH configure.com epoc/config.sh handy.h perlio.c
7552            ! pod/perltoc.pod uconfig.h uconfig.sh vos/config.alpha.def
7553            ! vos/config.alpha.h vos/config.ga.def vos/config.ga.h
7554            ! win32/config.bc win32/config.gc win32/config.vc
7555 ____________________________________________________________________________
7556 [  7792] By: jhi                                   on 2000/11/21  17:04:10
7557         Log: Integrate scope.h@7790 from perlio, works better with multiplicity.
7558      Branch: perl
7559           !> scope.h
7560 ____________________________________________________________________________
7561 [  7791] By: jhi                                   on 2000/11/21  17:01:16
7562         Log: Export the SOCKS workaround symbols only if necessary.
7563      Branch: perl
7564            ! doio.c embed.h embed.pl makedef.pl perlsdio.h proto.h
7565 ____________________________________________________________________________
7566 [  7790] By: nick                                  on 2000/11/20  23:57:11
7567         Log: If we use (aTHX_ ...) then put Perl_ on the front. (Or drop the aTHX_).
7568      Branch: perlio
7569            ! scope.h
7570 ____________________________________________________________________________
7571 [  7789] By: nick                                  on 2000/11/20  23:38:33
7572         Log: Integrate mainline
7573      Branch: perlio
7574           +> lib/File/Spec/Epoc.pm
7575           !> (integrate 34 files)
7576 ____________________________________________________________________________
7577 [  7788] By: nick                                  on 2000/11/20  23:20:18
7578         Log: Make extra buffer layer work (dummy crlf layer)
7579      Branch: perlio
7580            ! doio.c perlio.c perlio.h
7581 ____________________________________________________________________________
7582 [  7787] By: jhi                                   on 2000/11/20  22:44:04
7583         Log: Subject: [PATCH: perl@7777] add system locale testing for VMS
7584              From: Peter Prymmer <pvhp@forte.com>
7585              Date: Mon, 20 Nov 2000 12:56:52 -0800 (PST)
7586              Message-ID: <Pine.OSF.4.10.10011201244390.376086-100000@aspara.forte.com>
7587      Branch: perl
7588            ! t/pragma/locale.t
7589 ____________________________________________________________________________
7590 [  7786] By: jhi                                   on 2000/11/20  22:29:10
7591         Log: Subject: DOC PATCH 5.6.0 perlreftut
7592              From: mjd@plover.com
7593              Date: 20 Nov 2000 19:45:06 -0000
7594              Message-ID: <20001120194506.9505.qmail@plover.com>
7595      Branch: perl
7596            ! pod/perlreftut.pod
7597 ____________________________________________________________________________
7598 [  7785] By: jhi                                   on 2000/11/20  22:27:44
7599         Log: Subject: [ID 20001120.010] typo in lib/Cwd.pm broke Cwd::chdir
7600              From: David Dyck <dcd@tc.fluke.com>
7601              Date: Mon, 20 Nov 2000 11:43:40 -0800
7602              Message-Id: <200011201943.LAA08451@dd.tc.fluke.com>
7603      Branch: perl
7604            ! lib/Cwd.pm
7605 ____________________________________________________________________________
7606 [  7784] By: jhi                                   on 2000/11/20  22:23:21
7607         Log: Subject: [PATCH 5.7.0] lexicals not recognized in a run-time (?{})
7608              Date: Mon, 20 Nov 2000 17:06:10 -0500
7609              To: Mailing list Perl5 <perl5-porters@perl.org>
7610              Message-ID: <20001120170609.A11780@monk.mps.ohio-state.edu>
7611      Branch: perl
7612            ! pp_ctl.c t/op/pat.t
7613 ____________________________________________________________________________
7614 [  7783] By: jhi                                   on 2000/11/20  22:11:18
7615         Log: Subject: [PATCH] doop.c - UTF8 tr///               
7616              From: Simon Cozens <simon@cozens.net>
7617              Date: Sat, 18 Nov 2000 18:49:30 +0000
7618              Message-ID: <20001118184930.A31687@pembro4.pmb.ox.ac.uk>
7619              
7620              Subject: Re: [PATCH] doop.c - UTF8 tr///           
7621              From: Simon Cozens <simon@cozens.net>
7622              Date: Mon, 20 Nov 2000 20:45:22 +0000
7623              Message-ID: <20001120204522.A26042@pembro4.pmb.ox.ac.uk>
7624              
7625              Make tr on UTF-8 better but still not correct.
7626      Branch: perl
7627            ! doop.c
7628 ____________________________________________________________________________
7629 [  7782] By: jhi                                   on 2000/11/20  22:02:16
7630         Log: Remove the shared object before attempting to create
7631              (by linking) a new one.  E.g. in AIX not removing
7632              becomes quite painful if one tries to do more than one
7633              build in the same tree (an interrupted build, for example),
7634              since the AIX' shared dynaloader seemingly keeps the shared
7635              objects open and therefore 'busy' for quite a while, even when
7636              nobody is using the objects, leading into link failures.
7637      Branch: perl
7638            ! lib/ExtUtils/MM_Unix.pm
7639 ____________________________________________________________________________
7640 [  7781] By: gsar                                  on 2000/11/20  19:02:55
7641         Log: type mismatch due to faulty integration
7642      Branch: maint-5.6/perl
7643            ! toke.c win32/Makefile
7644 ____________________________________________________________________________
7645 [  7780] By: gsar                                  on 2000/11/20  17:31:55
7646         Log: integrate changes#6392,6394..6399,6401..6404
7647              
7648              The {multiplier} of a fixed substring was overlooked which
7649              caused a wrong initial search offset for that substring.
7650              
7651              Subject: [PATCH 5.6.0] Re: [ID 20000613.001] Regex works in v5.005_03 but fails in v5.06
7652              From: Hugo <hv@crypt.compulink.co.uk>
7653              Message-Id: <200007131827.TAA14487@crypt.compulink.co.uk>
7654              Date: Thu, 13 Jul 2000 19:27:13 +0100
7655              
7656              Fix the BOM bug: not a byteorder bug, a signedness bug.
7657              
7658              Replace change #6337 with a better one.
7659              
7660              Subject: Re: [PATCH] [ID 20000701.002] Regular Expressions Not Unsetting $1 Vars When Backtracking
7661              From: Hugo <hv@crypt.compulink.co.uk>
7662              Date: Fri, 14 Jul 2000 04:16:20 +0100
7663              Message-Id: <200007140316.EAA15857@crypt.compulink.co.uk>
7664              
7665              MakeMaker should not remove editor backups (*~) on `make clean`
7666              by default (completes change#6383)
7667              
7668              move new variables to the end of the interpreter structure (for
7669              bincompat in code that doesn't #include XSUB.h)
7670              
7671              rename totally bletcherous SvLOCK() thingy (doesn't do what the
7672              name suggests anyway)
7673              
7674              various cleanups (typos, misformatted code, and small bugs)
7675              
7676              typecasts needed for change#6394
7677              
7678              typos in change#6399, regen headers
7679              
7680              inconsistent types needs casts
7681              
7682              PERL_OBJECT build tweaks
7683      Branch: maint-5.6/perl
7684           !> MANIFEST doop.c embed.h embed.pl embedvar.h
7685           !> ext/IPC/SysV/Makefile.PL global.sym intrpvar.h
7686           !> lib/ExtUtils/MM_Unix.pm mg.c op.c perlapi.h pod/perlapi.pod
7687           !> pp.c proto.h regcomp.c regexec.c sv.h t/op/re_tests thread.h
7688           !> toke.c util.c
7689 ____________________________________________________________________________
7690 [  7779] By: gsar                                  on 2000/11/20  17:06:29
7691         Log: integrate changes#6376..6378,6380,6383,6385..6388,6391
7692              
7693              Cosmetics and perldelta.
7694              
7695              Fix nits noticed by Boston.pm.
7696              
7697              Do the cc sanity check both before the hints and
7698              after the cc selction.
7699              
7700              get sprintf.t to adjust properly for 3-digit exponents
7701              
7702              don't clobber *.orig files on *clean targets
7703              
7704              fix bugs in processing %v-*d and similar format specs (from
7705              Avi Finkel <avi@finkel.org>)
7706              
7707              sprintf test tweaks (from Dominic Dunlop)
7708              
7709              new selfloader.t in change#6183 doesn't close DATA handles,
7710              and thus fails to clean up tmp files on dosish platforms
7711              
7712              typos (spotted by Peter Prymmer)
7713              
7714              typo fix from Craig Berry
7715      Branch: maint-5.6/perl
7716           !> Configure Makefile.SH config_h.SH ext/IPC/SysV/Makefile.PL
7717           !> pod/perldelta.pod pod/perlre.pod sv.c t/lib/english.t
7718           !> t/lib/selfloader.t t/op/sprintf.t vms/subconfigure.com
7719           !> x2p/Makefile.SH
7720 ____________________________________________________________________________
7721 [  7778] By: gsar                                  on 2000/11/20  16:46:51
7722         Log: integrate changes#6340..6342,6348,6354,6356,6357,6371,6372,6375
7723              
7724              Subject: Re: format bug report  [Patch]
7725              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
7726              Date: Wed, 05 Jul 2000 13:12:52 +0200
7727              Message-Id: <20000705130745.67BF.H.M.BRAND@hccnet.nl>
7728              
7729              Subject: Re: format bug report  [Patch]
7730              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
7731              Date: Wed, 05 Jul 2000 14:10:01 +0200
7732              Message-Id: <20000705140837.73C2.H.M.BRAND@hccnet.nl>
7733              
7734              Subject: Re: [ID 20000704.002] [PATCH] memory leak with debug / anon subs
7735              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
7736              Message-Id: <E13AbRE-00009T-00@libra.cus.cam.ac.uk>
7737              Date: Fri, 07 Jul 2000 17:57:16 +0100
7738              
7739              Subject: [ID 20000710.002] fatal error or memory loss when deleting symbols in evaled code with syntax errors
7740              To: perl5-porters@perl.org
7741              From: Karsten Sperling <spiff@phreax.net>
7742              Date: Mon, 10 Jul 2000 15:12:52 +0200
7743              Message-Id: <200007101315.e6ADFrg21041@chthon.perl.com>
7744              
7745              README.posix-bc podified from Thomas Dorner.
7746              
7747              Subject: [PATCH perl-current] Make op/sprintf.t more comprehensive, take2
7748              From: Dominic Dunlop <domo@computer.org>
7749              Date: Tue, 11 Jul 2000 12:27:33 +0200
7750              Message-Id: <p04320405b590a14d4650@[192.168.1.4]>
7751              
7752              Typo in #6341.
7753              
7754              Fix for
7755              Subject: [ID 20000711.005] spurious uninit warning with msgrcv()
7756              From: Roderick Schertler <roderick@argon.org>
7757              Date: Tue, 11 Jul 2000 13:55:05 -0400
7758              Message-Id: <200007111755.NAA05077@jones.argon.org>
7759              
7760              Minor cleanups on the booklist.
7761              
7762              Reintroduce perlbook (updated for Mk III), introduce perlposix-bc,
7763              regen perltoc.
7764              
7765              windows build tweaks (op/sprintf.t still fails tests 120-121, 149)
7766      Branch: maint-5.6/perl
7767           +> pod/perlbook.pod
7768           !> MANIFEST README.posix-bc doio.c lib/Symbol.pm pod/Makefile.SH
7769           !> pod/buildtoc.PL pod/perl.pod pod/perlfaq2.pod pod/perltoc.pod
7770           !> pp_hot.c t/op/sprintf.t t/op/write.t toke.c win32/win32sck.c
7771 ____________________________________________________________________________
7772 [  7777] By: jhi                                   on 2000/11/20  16:08:49
7773         Log: Update Changes.
7774      Branch: perl
7775            ! Changes patchlevel.h
7776 ____________________________________________________________________________
7777 [  7776] By: jhi                                   on 2000/11/20  15:27:56
7778         Log: Assume SOCKS is broken in all 64bitall platforms, not just Solaris.
7779              This may be overly harsh but until proven otherwise, we think this
7780              way, or until we have a simple test for Configure (having to start
7781              up servers is does not count as simple) to check for the problems.
7782      Branch: perl
7783            ! perl.h
7784 ____________________________________________________________________________
7785 [  7775] By: jhi                                   on 2000/11/20  15:22:17
7786         Log: Solaris hints tweaks.
7787      Branch: perl
7788            ! hints/solaris_2.sh
7789 ____________________________________________________________________________
7790 [  7774] By: jhi                                   on 2000/11/20  15:01:20
7791         Log: Add a workaround to SOCKS 64-bit problems.
7792      Branch: perl
7793            ! doio.c embed.h embed.pl perlsdio.h proto.h
7794 ____________________________________________________________________________
7795 [  7773] By: jhi                                   on 2000/11/20  14:51:47
7796         Log: sysseek() instead of seek().
7797      Branch: perl
7798            ! t/lib/syslfs.t
7799 ____________________________________________________________________________
7800 [  7772] By: gsar                                  on 2000/11/20  13:06:23
7801         Log: integrate changes#6315..6319,6321..6331,6333..6338
7802              
7803              Integrate with Sarathy, preliminary fix for unicos
7804              alignment problems in [ID 20000612.002] Perl problem on Cray system.
7805              
7806              some debugger output does not go to the socket when RemotePort is set
7807              
7808              winsock cleanup never done on Windows (leads to handle leaks)
7809              
7810              fix UNC path handling on Windows under ithreads, and chdir()
7811              return value when given a non-existent directory
7812              
7813              Autogenerate pod/Makefile and pod/buildtoc.
7814              buildtoc also checks whether the existin pods are
7815              mentioned in MANIFEST and perl.pod, and vice versa.
7816              (None of the thusly found discrepancies fixed yet.)
7817              roffitall also needs to be autogenerated similarly but it
7818              seems so badly out of date that I didn't touch it yet.
7819              
7820              Config is being used.
7821              
7822              Add =head1 NAMEs so that buildtoc is happy.
7823              (The CGI::Util nit reported to Lincoln.)
7824              
7825              Fix complaints of buildtoc.
7826              
7827              Fix the alignment problem in Crays ([ID 20000612.002]).
7828              
7829              Remove perlbook, update perlfaq book listing,
7830              rearrange perl.pod, regenerate perltoc.
7831              
7832              Fix a nit spotted by 64bit IRIX compilation: a (64-bit) pointer
7833              was cast to an unsigned (32-bit) integer with wild abandon.
7834              
7835              winsock options weren't being set in all threads under ithreads
7836              (caused send()s from second and subsequent threads to fail)
7837              
7838              accept() leaks memory on windows due to incorrect ordering of
7839              closesocket() and fclose() calls
7840              
7841              Reorder perl.pod once more.
7842              
7843              More POSIX.pod tweaks.
7844              
7845              Sprinkle ldlibpath.
7846              
7847              Precedence goof, fix based on
7848              Subject: [PATCH 5.6.0] op/taint.t continues on failed shmget()
7849              From: Hugo <hv@crypt.compulink.co.uk>
7850              Date: Tue, 11 Jul 2000 12:52:38 +0100
7851              Message-Id: <200007111152.MAA05488@crypt.compulink.co.uk>
7852              
7853              Subject: PATCH perlguts.pod: Document D and d magic types
7854              From: mjd@plover.com
7855              Date: 5 Jul 2000 18:01:51 -0000
7856              Message-ID: <20000705180151.29413.qmail@plover.com>
7857              
7858              Subject: [ID 20000705.002] problem with perl 5.6.0 on NetBSD/sparc
7859              From: Hubert Feyrer <feyrer@rfhs8012.fh-regensburg.de>
7860              Date: Wed, 5 Jul 2000 14:56:43 +0200 (MET DST)
7861              Message-Id: <Pine.GSO.4.10.10007051452330.29215-100000@rfhpc8320.fh-regensburg.de>
7862              
7863              Subject: [PATCH cfgperl] $& segfaults if you trick it
7864              From: simon@brecon.co.uk (Simon Cozens)
7865              Date: 7 Jul 2000 11:26:09 GMT
7866              Message-ID: <slrn8mbfif.ead.simon@justanother.perlhacker.org>
7867              
7868              Subject: [PATCH] [ID 20000701.002] Regular Expressions Not Unsetting $1 Vars When Backtracking
7869              From: Hugo <hv@crypt.compulink.co.uk>
7870              Date: Tue, 11 Jul 2000 12:44:50 +0100
7871              Message-Id: <200007111144.MAA04446@crypt.compulink.co.uk>
7872              
7873              Subject: [PATCH] Re: "%#p" format specifier: document and test or not?
7874              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
7875              Date: Tue, 11 Jul 2000 13:50:51 +0100
7876              Message-Id: <E13BzUx-00033c-00@libra.cus.cam.ac.uk>
7877      Branch: maint-5.6/perl
7878           +> ext/DynaLoader/hints/netbsd.pl lib/Win32.pod pod/Makefile.SH
7879           +> pod/buildtoc.PL
7880            - pod/Makefile pod/Win32.pod pod/buildtoc pod/perlbook.pod
7881           !> (integrate 26 files)
7882 ____________________________________________________________________________
7883 [  7771] By: gsar                                  on 2000/11/20  12:31:42
7884         Log: integrate changes#6283..6285,6291,6294..6300,6302..6304,6306..6307,
7885              6310,6311,6314
7886              
7887              Subject: [PATCH bleedperl] File::Spec 0.82 beta
7888              From: Barrie Slaymaker <barries@jester.slaysys.com>
7889              Date: Wed, 28 Jun 2000 11:35:29 -0400
7890              Message-Id: <200006281535.LAA21095@jester.slaysys.com>
7891              
7892              tweak perlembed for multiplicity/usethreads sanity; correct notes
7893              about Windows
7894              
7895              localize %INC in a Safe compartment so that use/require work
7896              (many other magic globals probably need similar treatment)
7897              
7898              dounwind() may cause POPSUB() to diddle the wrong PL_curpad
7899              when @_ is modified, causing coredumps
7900              
7901              slurp mode fix in change#4736 still not quite right
7902              
7903              Point to perlipc for more SysV IPC examples.
7904              
7905              Elaborate POSIX.pod.  Still needs work.
7906              
7907              fix ~320 byte memory leak (psig_{ptr,name} tables were never freed)
7908              
7909              fix large memory leak that has been around for ever, masked by
7910              -DPURIFY (most of the arenas were never freed!)
7911              
7912              fix memory leak on Windows (PL_sys_intern contents were never
7913              freed)
7914              
7915              PERL_OBJECT build tweak
7916              
7917              adjust change#6299
7918              
7919              remove rel2abs prototypes (from Barrie Slaymaker)
7920              
7921              missing perldiag entry for unpack("w",...) diagnostic (from
7922              Andreas Koenig)
7923              
7924              better diagnostic on Frob->stuff() when Frob:: doesn't exist
7925              (from Richard Soderberg <rs@oregonnet.com>)
7926              
7927              Win32 patches for cfgperl from Sarathy.
7928              
7929              b.t fails under OS/2 (from Yitzchak Scott-Thoennes)
7930              
7931              More POSIX.pod embellishment.
7932              
7933              tyop in change#6306
7934      Branch: maint-5.6/perl
7935           !> (integrate 44 files)
7936 ____________________________________________________________________________
7937 [  7770] By: gsar                                  on 2000/11/20  11:51:00
7938         Log: integrate changes#6268..6282 from cfgperl branch
7939              
7940              Subject: [PATCH perl-current] Make op/sprintf.t more comprehensive
7941              From: Dominic Dunlop <domo@computer.org>
7942              Date: Thu, 29 Jun 2000 12:32:39 +0200
7943              Message-Id: <p04320403b580cc1338db@[192.168.1.4]>
7944              
7945              Regen headers for #6261 (and update embed.pl for this) and #6267,
7946              silence few compiler warnings.
7947              
7948              Subject: PATCH (Re: [ID 20000612.004] Should regression tests fail if user doesn't build XS extensions?)
7949              From: Nicholas Clark <nick@talking.bollo.cx>
7950              Date: Fri, 23 Jun 2000 16:21:15 +0100
7951              Message-ID: <20000623162115.A19894@Bagpuss.unfortu.net>
7952              
7953              Subject: PATCH pod/perltie.pod
7954              From: Ian Phillipps <Ian.Phillipps@iname.com>
7955              Date: Fri, 16 Jun 2000 00:17:19 +0100
7956              Message-ID: <20000616001719.A17108@homer.diplex.co.uk>
7957              (only the first hunk, the second hunk had already been done
7958              by some other patch)
7959              
7960              Subject: [ID 20000614.005] [patch] Tweak to Net::Ping docs
7961              From: Tom Phoenix <rootbeer@redcat.com>
7962              Received: (qmail 6398 invoked by uid 508); 15 Jun 2000 00:30:54 -0000
7963              Date: Wed, 14 Jun 2000 17:30:37 -0700 (PDT)
7964              
7965              Subject: [PATCH] xsub attributes
7966              From: Doug MacEachern <dougm@covalent.net>
7967              Date: Wed, 14 Jun 2000 15:09:22 -0700 (PDT)
7968              Message-ID: <Pine.LNX.4.10.10006141456050.340-100000@mojo.covalent.net>
7969              
7970              Subject: [ID 20000614.003] 5.6.0 File/Glob.pm incompatibility
7971              From: Andy Dougherty <doughera@lafayette.edu>
7972              Date: Wed, 14 Jun 2000 13:33:32 -0400 (EDT)
7973              Message-Id: <Pine.SOL.4.10.10006141332220.3643-100000@maxwell.phys.lafayette.edu>
7974              
7975              Subject: [PATCH] 5.6.0 lib/Pod/{Html,Man,Text}.pm
7976              From: "Daniel S. Lewart" <d-lewart@uiuc.edu>
7977              Date: Tue, 13 Jun 2000 02:43:48 -0500
7978              Message-ID: <20000613024347.A28388@staff2.cso.uiuc.edu>
7979              
7980              Subject: [PATCH] Re: eval documentation: context
7981              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
7982              Date: Mon, 12 Jun 2000 15:07:29 +0100
7983              Message-Id: <E131UsD-0002ke-00@ursa.cus.cam.ac.uk>
7984              
7985              Subject: [PATCH] Re: [ID 20000612.001] map {chop; $_} (Literals problem)
7986              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
7987              Date: Mon, 12 Jun 2000 14:55:59 +0100
7988              Message-Id: <E131Uh5-0002cj-00@ursa.cus.cam.ac.uk>
7989              
7990              Subject: [ID 20000609.002] Text::Wrap::wrap does not handle multiline strings properly
7991              From: "Milton L. Hankins" <mlh@swl.msd.ray.com>
7992              Date: Fri, 09 Jun 2000 12:39:27 -0400
7993              Message-Id: <39411DBF.A04BB1A@swl.msd.ray.com>
7994              (plus update the version "number" of Text::Wrap)
7995              
7996              Subject: [ID 20000602.002] [PATCH] perlsub.pod: ambiguous usage of "closure"
7997              From: Tim Ayers <tayers@bridge.com>
7998              Date: Thu, 08 Jun 2000 08:11:06 +0200
7999              Message-id: <393F38FA.9B5F4C7D@m.dasa.de>
8000              [resent by Richard Foley, Message-Id probably wrong]
8001              
8002              Subject: Re: backwards compatibility in h2xs and makemaker  [PATCH]
8003              From: rspier@pobox.com (Robert Spier)
8004              Date: Wed, 7 Jun 2000 12:47:37 -0400 (EDT)
8005              Message-ID: <14654.31913.845602.610277@rls.cx>
8006              
8007              Subject: [PATCH 5.6.0] utils/h2xs.PL
8008              From: "Daniel S. Lewart" <d-lewart@uiuc.edu>
8009              Date: Wed, 7 Jun 2000 04:02:04 -0500
8010              Message-ID: <20000607040201.A22568@staff1.cso.uiuc.edu>
8011              
8012              Subject: [PATCH 5.6.0]ITHREADs for VMS
8013              From: Dan Sugalski <dan@sidhe.org>
8014              Date: Tue, 06 Jun 2000 11:59:50 -0400
8015              Message-Id: <4.3.2.7.0.20000606115752.01c82220@24.8.96.48>
8016      Branch: maint-5.6/perl
8017           !> (integrate 31 files)
8018 ____________________________________________________________________________
8019 [  7769] By: gsar                                  on 2000/11/20  11:29:06
8020         Log: integrate changes#6261..6266 from cfgperl
8021              
8022              Subject: Re: [PATCH cfgperl] BOMs away!
8023              From: simon@brecon.co.uk (Simon Cozens)
8024              Date: 17 Jun 2000 11:49:57 GMT
8025              Message-ID: <slrn8kmpf5.8pl.simon@justanother.perlhacker.org>
8026              
8027              Subject: 5.6.0 Patch for EPOC
8028              From: Olaf Flebbe <o.flebbe@gmx.de>
8029              Date: Tue, 13 Jun 2000 22:59:29 +0200 (MEST)
8030              Message-ID: <23449.960929969@www11.gmx.net>
8031              
8032              tr fixes from Simon Cozens
8033              
8034              Subject: [ID 20000628.004] Re: Problem compiling perl? [BSDI-Support-Request #71232]
8035              From: Marty Lucich <marty@netcom.com>
8036              Date: Wed, 28 Jun 2000 14:16:05 -0700 (PDT)
8037              Message-Id: <200006282116.OAA11148@netcom.com>
8038              ccdlflags update (the BSD/OS 4.1 part had already been taken
8039              care of by #6141).
8040              
8041              Subject: Re: [ID 20000628.006] POSIX::STRERR_FILENO typo
8042              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
8043              Date: Wed, 28 Jun 2000 17:50:12 -0700
8044              Message-ID: <E1pW5gzkg2kV092yn@efn.org>
8045              
8046              Subject: [PATCH 5.6.0] cygwin port
8047              Message-ID: <779F20BCCE5AD31186A50008C75D997917173C@silldn_mail1.sanwaint.com>
8048              From: "Fifer, Eric" <EFifer@sanwaint.com>
8049              Date: Thu, 29 Jun 2000 12:58:29 +0100
8050      Branch: maint-5.6/perl
8051           !> README.epoc cygwin/Makefile.SHs doop.c epoc/config.sh
8052           !> epoc/createpkg.pl epoc/epocish.c epoc/epocish.h
8053           !> ext/POSIX/POSIX.pm ext/POSIX/POSIX.pod ext/POSIX/POSIX.xs
8054           !> hints/bsdos.sh pod/perldiag.pod t/comp/require.t toke.c
8055 ____________________________________________________________________________
8056 [  7768] By: gsar                                  on 2000/11/20  11:13:44
8057         Log: integrate changes#6252..6256,6259..6260
8058              
8059              Paranoia tweak on #6249.
8060              Subject: Re: [PATCH 5.6.0 IPC/Open3.pm] Allow the use of numeric fd's
8061              From: Ronald J Kimball <rjk@linguist.dartmouth.edu>
8062              Date: Sun, 25 Jun 2000 23:43:12 -0400
8063              Message-ID: <20000625234312.B74147@linguist.dartmouth.edu>
8064              
8065              Subject: tr///, help wanted.
8066              From: simon@brecon.co.uk (Simon Cozens)
8067              Date: 28 Jun 2000 11:29:04 GMT
8068              Message-ID: <slrn8ljoc0.fbd.simon@justanother.perlhacker.org>
8069              
8070              small thinko tweaks
8071              
8072              tweaks from Simon Conzes to further fix tr/// under utf8
8073              
8074              perlnewmod was missing from MANIFEST.
8075              
8076              Subject: Re: [PATCH] pack('U',$foo) doesn't UTF8
8077              From: simon@brecon.co.uk (Simon Cozens)
8078              Date: 17 Jun 2000 11:56:44 GMT
8079              Message-ID: <slrn8kmprs.8pl.simon@justanother.perlhacker.org>
8080              pack U0, pack C0
8081      Branch: maint-5.6/perl
8082           !> MANIFEST doop.c embed.h embed.pl embedvar.h global.sym
8083           !> lib/Exporter.pm lib/IPC/Open3.pm objXSUB.h op.c
8084           !> pod/perlfunc.pod pp.c pp_proto.h proto.h sv.c t/op/my_stash.t
8085           !> t/op/pack.t t/op/tr.t t/pragma/constant.t t/pragma/warn/op
8086 ____________________________________________________________________________
8087 [  7767] By: gsar                                  on 2000/11/20  10:51:38
8088         Log: integrate change#6250 from cfgperl
8089              
8090              Subject: Re: [PATCH] support 'my __PACKAGE__ $obj = ...'
8091              From: Doug MacEachern <dougm@covalent.net>
8092              Date: Tue, 27 Jun 2000 14:17:28 -0700 (PDT)
8093              Message-ID: <Pine.LNX.4.10.10006271412340.7587-100000@mojo.covalent.net>
8094      Branch: maint-5.6/perl
8095           +> t/op/my_stash.t
8096           !> MANIFEST embed.pl global.sym proto.h toke.c
8097 ____________________________________________________________________________
8098 [  7766] By: gsar                                  on 2000/11/20  10:48:34
8099         Log: integrate changes#6240,6242..6246,6248,6249 from cfgperl
8100              
8101              Subject: [ID 20000626.007] h2xs man page contains trailing garbage
8102              From: Nicholas Clark <nick@Bagpuss.unfortu.net>
8103              Date: Mon, 26 Jun 2000 18:40:14 +0100
8104              Message-Id: <200006261740.SAA02740@Bagpuss.unfortu.net>
8105              
8106              Subject: [PATCH] bytes<->utf8 fixes
8107              From: simon@brecon.co.uk (Simon Cozens)
8108              Date: 26 Jun 2000 04:55:45 GMT
8109              Message-ID: <slrn8ldoih.fbd.simon@justanother.perlhacker.org>
8110              
8111              Subject: [PATCH] is_utf8_string
8112              From: simon@brecon.co.uk (Simon Cozens)
8113              Date: 26 Jun 2000 02:25:59 GMT
8114              Message-ID: <slrn8ldfpn.h5k.simon@justanother.perlhacker.org>
8115              
8116              Subject: [PATCH] avoid mg_ptr in '*' magic
8117              From: Doug MacEachern <dougm@covalent.net>
8118              Date: Sun, 25 Jun 2000 11:16:08 -0700 (PDT)
8119              Message-ID: <Pine.LNX.4.10.10006251045190.461-100000@mojo.covalent.net>
8120              
8121              Subject: [ID 20000624.001] PERL_DL_DEBUG=1 DynaLoader message appears to be wrong
8122              From: Nicholas Clark <nick@Bagpuss.unfortu.net>
8123              Date: Sat, 24 Jun 2000 13:06:20 +0100
8124              Message-Id: <200006241206.NAA03771@Bagpuss.unfortu.net>
8125              
8126              Allow for standalone testing.
8127              
8128              Subject: DOC PATCH 5.6.0: perlfunc/sprintf does not contain an example
8129              From: Mark-Jason Dominus <mjd@plover.com>
8130              Date: Tue, 27 Jun 2000 22:36:42 -0400
8131              Message-ID: <20000628023642.12166.qmail@plover.com>
8132              
8133              Subject: Re: [PATCH 5.6.0 IPC/Open3.pm] Allow the use of numeric fd's
8134              From: Frank Tobin <ftobin@uiuc.edu>
8135              Date: Sun, 25 Jun 2000 19:00:58 -0500 (CDT)
8136              Message-ID: <Pine.BSF.4.21.0006251855340.20487-100000@srh0902.urh.uiuc.edu>
8137      Branch: maint-5.6/perl
8138           !> embed.h embed.pl embedvar.h ext/DynaLoader/DynaLoader_pm.PL
8139           !> global.sym gv.c lib/IPC/Open3.pm objXSUB.h perlapi.c perlapi.h
8140           !> pod/perlapi.pod pod/perlfunc.pod pod/perlintern.pod pp_proto.h
8141           !> proto.h sv.c t/lib/filefunc.t t/lib/filespec.t t/lib/peek.t
8142           !> utf8.c utils/h2xs.PL
8143 ____________________________________________________________________________
8144 [  7765] By: gsar                                  on 2000/11/20  10:29:13
8145         Log: integrate change#6239 from cfgperl
8146              
8147              Configure maintenance.  Sever some dependency cycles,
8148              separate gccversion from the cc unit,
8149              address [ID 20000623.006] Configure script patch for using gcc on AIX
8150              (but solve it a little bit differently),
8151              unduplex some accidentally duplicated units,
8152              suggest using gcc if no cc available
8153              (p5p thread: "Solaris configure: counterproposal", 1999-09)
8154      Branch: maint-5.6/perl
8155           !> Configure Todo-5.6 config_h.SH
8156 ____________________________________________________________________________
8157 [  7764] By: gsar                                  on 2000/11/20  10:25:55
8158         Log: integrate changes#6233..6238 from cfgperl
8159              
8160              Subject: PATCH 5.6.0: Document OPf_SPECIAL flag in regcomp op nodes
8161              From: Mark-Jason Dominus <mjd@plover.com>
8162              Date: Fri, 16 Jun 2000 20:53:04 -0400
8163              Message-ID: <20000617005304.8008.qmail@plover.com>
8164              
8165              Prefer C:/temp in Win32 as File::Spec->tmpdir to /tmp
8166              because when run as services (Win32ese for daemons)
8167              no environment variables are set and tmpdir ends up as /tmp,
8168              which is ambiguous.
8169              Subject:[ID 20000616.002] File::Spec->tmpdir broken when running as service
8170              From: matt@sergeant.org
8171              Date: 16 Jun 2000 16:30:43 -0000
8172              Message-Id: <20000616163043.26398.qmail@mail.sergeant.org>
8173              
8174              The thread begun by
8175              Subject: [ID 20000616.001] Typo on line 390 of .../hints/solaris_2.sh
8176              From: Kevin.Ruscoe@ubsw.com
8177              Date: Fri, 16 Jun 2000 16:38:51 +0100
8178              Message-Id: <H000019b03c300d6@MHS>
8179              
8180              Tweak embed.pl, regen headers.
8181              
8182              Subject: [PATCH 5.6.0] XS module loading fixup for VMS
8183              From: Dan Sugalski <dan@sidhe.org>
8184              Date: Fri, 23 Jun 2000 17:00:00 -0400
8185              Message-Id: <4.3.2.7.0.20000623165934.00c93d10@24.8.96.48>
8186      Branch: maint-5.6/perl
8187           !> (integrate 27 files)
8188 ____________________________________________________________________________
8189 [  7763] By: gsar                                  on 2000/11/20  10:08:08
8190         Log: s/perl56delta/perldelta/g
8191      Branch: maint-5.6/perl
8192            ! pod/Makefile
8193 ____________________________________________________________________________
8194 [  7762] By: gsar                                  on 2000/11/20  10:04:00
8195         Log: integrate changes#6225,6229,6231,6232 from cfgperl
8196              
8197              Add source code filenames to apidoc.
8198              From: simon@brecon.co.uk (Simon Cozens)
8199              Subject: [PATCH embed.pl] Source X-ref
8200              Date: 22 Jun 2000 02:18:49 GMT
8201              Message-ID: <slrn8l2ts8.h5k.simon@justanother.perlhacker.org>
8202              
8203              Subject: README.hpux version 0.6.1
8204              Date: Tue, 20 Jun 2000 15:25:51 -0700 (PDT)
8205              From: Jeff Okamoto <okamoto@xfiles.intercon.hp.com>
8206              Message-Id: <200006202225.PAA26205@xfiles.intercon.hp.com>
8207              
8208              Subject: [PATCH 5.6.0] cygwin port
8209              From: "Fifer, Eric" <EFifer@sanwaint.com>
8210              Date: Tue, 20 Jun 2000 14:30:58 +0100
8211              Message-ID: <779F20BCCE5AD31186A50008C75D9979171734@silldn_mail1.sanwaint.com>
8212              
8213              Subject: PATCH: pod/perlutil.pod - utilities packaged with the Perl distribution
8214              From: simon@brecon.co.uk (Simon Cozens)
8215              Date: 19 Jun 2000 15:18:27 GMT
8216              Message-ID: <slrn8ksee3.cp9.simon@justanother.perlhacker.org>
8217              
8218              plus update pod/Makefile and regenerate perltoc
8219      Branch: maint-5.6/perl
8220           +> pod/perlutil.pod
8221           !> MANIFEST README.cygwin README.hpux Todo-5.6 embed.pl
8222           !> lib/File/Find.pm pod/Makefile pod/perltoc.pod pod/roffitall
8223 ____________________________________________________________________________
8224 [  7761] By: jhi                                   on 2000/11/20  04:09:55
8225         Log: Miraculous typo.
8226      Branch: perl
8227            ! t/op/pat.t
8228 ____________________________________________________________________________
8229 [  7760] By: jhi                                   on 2000/11/20  04:06:08
8230         Log: Subject: [PATCH 5.7.0] The first step in removing recursion from the REx engine
8231              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
8232              Date: Sun, 19 Nov 2000 22:30:26 -0500
8233              Message-ID: <20001119223026.A5165@monk.mps.ohio-state.edu>
8234      Branch: perl
8235            ! regexec.c scope.h t/op/pat.t
8236 ____________________________________________________________________________
8237 [  7759] By: jhi                                   on 2000/11/20  02:05:22
8238         Log: Make certain MacOS Classic has NO_ENVIRON_ARRAY.
8239      Branch: perl
8240            ! perl.h
8241 ____________________________________________________________________________
8242 [  7758] By: jhi                                   on 2000/11/20  01:58:11
8243         Log: Subject: [perl 7711: EPOC] updates
8244              From: Olaf Flebbe <o.flebbe@gmx.de>
8245              Date: Sun, 19 Nov 2000 19:33:30 +0100 (MET)
8246              Message-ID: <25575.974658810@www23.gmx.net>               
8247      Branch: perl
8248            + lib/File/Spec/Epoc.pm
8249            ! MANIFEST epoc/epocish.c lib/CGI.pm lib/Cwd.pm
8250            ! lib/File/Basename.pm lib/File/Find.pm lib/File/Path.pm
8251            ! lib/File/Spec.pm perl.c sv.c
8252 ____________________________________________________________________________
8253 [  7757] By: jhi                                   on 2000/11/20  01:53:11
8254         Log: ext/re/hints/MSWin32.pl seems to be missing from perlio.
8255      Branch: perl
8256            ! MANIFEST
8257 ____________________________________________________________________________
8258 [  7756] By: jhi                                   on 2000/11/20  01:47:22
8259         Log: Integrate perlio.
8260      Branch: perl
8261            - ext/re/hints/MSWin32.pl
8262           !> global.sym perlio.c perlio.h perliol.h pod/perlapi.pod sv.c
8263           !> win32/config.gc win32/config_H.gc win32/win32sck.c
8264 ____________________________________________________________________________
8265 [  7755] By: nick                                  on 2000/11/19  20:57:17
8266         Log: Add dummy crlf layer (just as buffer)
8267              Correct 1st bug - one layer of indirection.
8268      Branch: perlio
8269            ! perlio.c perlio.h perliol.h
8270 ____________________________________________________________________________
8271 [  7754] By: nick                                  on 2000/11/19  20:56:12
8272         Log: Work-round to Perl_deb_nocontext is no longer required
8273      Branch: perlio
8274            - ext/re/hints/MSWin32.pl
8275 ____________________________________________________________________________
8276 [  7753] By: nick                                  on 2000/11/19  20:01:16
8277         Log: diff -se shows these as different
8278      Branch: perlio
8279            ! global.sym pod/perlapi.pod
8280 ____________________________________________________________________________
8281 [  7752] By: nick                                  on 2000/11/19  18:57:30
8282         Log: Configure GCC/Win32 build -Duseperlio
8283              Fix a couple of gross issues
8284              - double-include of ../deb.o in re.dll
8285              - win32sck.c needs PerlIO and FILE 
8286      Branch: perlio
8287            ! ext/re/hints/MSWin32.pl win32/config.gc win32/config_H.gc
8288            ! win32/win32sck.c
8289 ____________________________________________________________________________
8290 [  7751] By: nick                                  on 2000/11/19  17:05:36
8291         Log: Special case :crlf and :raw in dummy PerlIO_apply_layers
8292      Branch: perlio
8293            ! perlio.c
8294 ____________________________________________________________________________
8295 [  7750] By: nick                                  on 2000/11/19  16:57:14
8296         Log: Missing aTHX_
8297      Branch: perlio
8298            ! sv.c
8299 ____________________________________________________________________________
8300 [  7749] By: jhi                                   on 2000/11/19  16:28:40
8301         Log: Subject: [ID 20001118.006] [PATCH] perl@7707 djgpp/config.over, hints/dos_djgpp.sh and Storable.pm
8302              From: "Peter J. Farley III" <pjfarley@banet.net>
8303              Date: Sun, 19 Nov 2000 01:42:58 -0500
8304              Message-Id: <5.0.1.4.0.20001119011855.00a55ec0@pop5.banet.net>
8305      Branch: perl
8306            ! djgpp/config.over ext/Storable/Storable.pm hints/dos_djgpp.sh
8307 ____________________________________________________________________________
8308 [  7748] By: jhi                                   on 2000/11/19  16:08:10
8309         Log: Subject: podlators 1.05 available        
8310              From: Russ Allbery <rra@stanford.edu>   
8311              Date: 18 Nov 2000 22:04:28 -0800
8312              Message-ID: <ylitpkijkj.fsf@windlord.stanford.edu>
8313      Branch: perl
8314            ! lib/Pod/Man.pm lib/Pod/Text.pm pod/pod2man.PL
8315 ____________________________________________________________________________
8316 [  7747] By: nick                                  on 2000/11/19  11:19:39
8317         Log: Integrate mainline
8318      Branch: perlio
8319           !> embed.h embed.pl objXSUB.h perlapi.c proto.h sv.c utf8.c
8320           !> util.c
8321 ____________________________________________________________________________
8322 [  7746] By: jhi                                   on 2000/11/19  06:42:22
8323         Log: Make hex scanning warn on "\x{x}" and "\xx".
8324              "\x" and and hex("x") are still valid.
8325      Branch: perl
8326            ! util.c
8327 ____________________________________________________________________________
8328 [  7745] By: nick                                  on 2000/11/18  22:52:28
8329         Log: Integrate mainline
8330      Branch: perlio
8331           !> emacs/ptags embed.h embed.pl lib/CPAN.pm lib/CPAN/FirstTime.pm
8332           !> perl.h perlio.c proto.h regcomp.c regcomp.h
8333 ____________________________________________________________________________
8334 [  7744] By: jhi                                   on 2000/11/18  22:50:28
8335         Log: Introduce Perl_utf8_length().  Use it.
8336      Branch: perl
8337            ! embed.h embed.pl objXSUB.h perlapi.c proto.h sv.c utf8.c
8338 ____________________________________________________________________________
8339 [  7743] By: jhi                                   on 2000/11/18  22:38:51
8340         Log: Compiler denit.
8341      Branch: perl
8342            ! perlio.c
8343 ____________________________________________________________________________
8344 [  7742] By: jhi                                   on 2000/11/18  20:33:05
8345         Log: Integrate perlio.
8346      Branch: perl
8347           !> cop.h doio.c gv.c lib/open.pm mg.c op.c perl.c perlio.c
8348           !> perlio.h pp_ctl.c pp_sys.c sv.c
8349 ____________________________________________________________________________
8350 [  7741] By: jhi                                   on 2000/11/18  20:31:27
8351         Log: Subject: [PATCH 5.7.0] make regcomp reenterable
8352              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
8353              Date: Fri, 17 Nov 2000 20:35:11 -0500
8354              Message-ID: <20001117203511.A13121@monk.mps.ohio-state.edu>
8355              
8356              Subject: Re: [PATCH 5.7.0] make regcomp reenterable
8357              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
8358              Date: Fri, 17 Nov 2000 21:03:47 -0500
8359              Message-ID: <20001117210347.A16570@monk.mps.ohio-state.edu>
8360              
8361              Plus a little bit of tweaking in pregcomp().
8362      Branch: perl
8363            ! embed.h embed.pl perl.h proto.h regcomp.c regcomp.h
8364 ____________________________________________________________________________
8365 [  7740] By: nick                                  on 2000/11/18  20:17:22
8366         Log: Lexical use open ... support:
8367              add ->cop_io to COP structure in cop.h.
8368              Make mg.c and gv.c associate it with ${^OPEN}.
8369              Make lib/open.pm set it.
8370              Have sv.c, perl.c, pp_ctl.c, op.c manipulate it in a manner
8371              manner similar to ->cop_warnings.
8372              Have doio.c's do_open9 and pp_sys.c's pp_backticks use it as default and
8373              call new PerlIO_apply_layers().
8374              Declare latter in perlio.h and define in perlio.c
8375      Branch: perlio
8376            ! cop.h doio.c gv.c lib/open.pm mg.c op.c perl.c perlio.c
8377            ! perlio.h pp_ctl.c pp_sys.c sv.c
8378 ____________________________________________________________________________
8379 [  7739] By: jhi                                   on 2000/11/18  19:54:00
8380         Log: Integrate perlio.
8381      Branch: perl
8382           !> doio.c perlio.c pp.c
8383 ____________________________________________________________________________
8384 [  7738] By: jhi                                   on 2000/11/18  17:16:13
8385         Log: Subject: [PATCH 5.7.0] etags broken again
8386              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
8387              Date: Sat, 18 Nov 2000 02:41:36 -0500
8388              Message-ID: <20001118024136.A19097@monk.mps.ohio-state.edu>
8389      Branch: perl
8390            ! emacs/ptags
8391 ____________________________________________________________________________
8392 [  7737] By: jhi                                   on 2000/11/18  17:12:18
8393         Log: Upgrade to CPAN.pm 1.58_93 (the RC1 for 1.59), from Andreas König.
8394      Branch: perl
8395            ! lib/CPAN.pm lib/CPAN/FirstTime.pm
8396 ____________________________________________________________________________
8397 [  7736] By: nick                                  on 2000/11/18  14:06:20
8398         Log: Basic tweaks to do_open() type parsing to allow layer/discipline
8399              part to be isolated.
8400      Branch: perlio
8401            ! doio.c perlio.c
8402 ____________________________________________________________________________
8403 [  7735] By: nick                                  on 2000/11/18  11:03:32
8404         Log: Integrate mainline
8405      Branch: perlio
8406           !> Changes README.amiga README.win32 patchlevel.h
8407           !> pod/perlfunc.pod pp.c regcomp.c regexec.c t/op/re_tests
8408 ____________________________________________________________________________
8409 [  7734] By: jhi                                   on 2000/11/18  01:18:56
8410         Log: Update Changes.
8411      Branch: perl
8412            ! Changes patchlevel.h
8413 ____________________________________________________________________________
8414 [  7733] By: jhi                                   on 2000/11/18  00:32:54
8415         Log: Subject: [PATCH 5.7.0] restore match data on backtracing
8416              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
8417              Date: Fri, 17 Nov 2000 17:28:02 -0500
8418              Message-ID: <20001117172802.A1032@monk.mps.ohio-state.edu>
8419      Branch: perl
8420            ! regcomp.c regexec.c t/op/re_tests
8421 ____________________________________________________________________________
8422 [  7732] By: jhi                                   on 2000/11/18  00:28:56
8423         Log: Sparc 64-bit pack() fix from Jens Hamisch.
8424      Branch: perl
8425            ! pp.c
8426 ____________________________________________________________________________
8427 [  7731] By: jhi                                   on 2000/11/18  00:18:39
8428         Log: Explain in more detail the {} syntax ambiguousity.
8429              
8430              Subject: [PATCH] Re: [ID 20001117.003] map { "$_", 1} @array is syntax error
8431              From: Nicholas Clark <nick@ccl4.org>
8432              Date: Fri, 17 Nov 2000 22:10:28 +0000
8433              Message-ID: <20001117221028.A88930@plum.flirble.org>
8434      Branch: perl
8435            ! pod/perlfunc.pod
8436 ____________________________________________________________________________
8437 [  7730] By: jhi                                   on 2000/11/18  00:12:18
8438         Log: Subject: Fix for README.amiga (20000323.033)
8439              From: "Stephen P. Potter" <spp@spotter.yi.org>
8440              Date: Fri, 17 Nov 2000 12:25:51 -0500
8441              Message-Id: <200011171725.MAA05768@spotter.yi.org>
8442      Branch: perl
8443            ! README.amiga
8444 ____________________________________________________________________________
8445 [  7729] By: jhi                                   on 2000/11/18  00:08:34
8446         Log: Subject: [PATCH 5.6.0 README.win32] very minor typos
8447              From: "A. C. Yardley" <yardley@tanet.net>
8448              Date: Mon, 3 Apr 2000 11:35:33 -0700
8449              Message-ID: <3483.000403@tanet.net>
8450      Branch: perl
8451            ! README.win32
8452 ____________________________________________________________________________
8453 [  7728] By: nick                                  on 2000/11/17  21:59:47
8454         Log: Integrate mainline
8455      Branch: perlio
8456           !> configure.com hints/solaris_2.sh lib/Carp/Heavy.pm
8457           !> lib/ExtUtils/xsubpp lib/Pod/Checker.pm pod/perlfaq9.pod
8458           !> pod/perlhack.pod pod/perllocale.pod pod/perlmodlib.PL
8459           !> pod/perlpod.pod pod/perlxs.pod pod/perlxstut.pod t/lib/b.t
8460 ____________________________________________________________________________
8461 [  7727] By: nick                                  on 2000/11/17  21:56:31
8462         Log: Experiment on use of attributes.pm interface.
8463              Valid generic fix to auto-vivify code in rv2gv - only "upgrade" to
8464              SVt_PVRV if not already something better (else vivify of say magic gets
8465              core dump).
8466      Branch: perlio
8467            ! perlio.c pp.c
8468 ____________________________________________________________________________
8469 [  7726] By: jhi                                   on 2000/11/17  14:15:49
8470         Log: Subject: Fix for 20000815.006
8471              From: "Stephen P. Potter" <spp@spotter.yi.org>
8472              Date: Fri, 17 Nov 2000 08:57:45 -0500
8473              Message-Id: <200011171357.IAA05122@spotter.yi.org>
8474              
8475              It's really 20000518.006.
8476      Branch: perl
8477            ! pod/perlmodlib.PL
8478 ____________________________________________________________________________
8479 [  7725] By: jhi                                   on 2000/11/17  14:12:31
8480         Log: Subject: Fix for 20000409.001
8481              From: "Stephen P. Potter" <spp@spotter.yi.org>
8482              Date: Fri, 17 Nov 2000 08:55:45 -0500
8483              Message-Id: <200011171355.IAA05104@spotter.yi.org>
8484      Branch: perl
8485            ! pod/perlfaq9.pod
8486 ____________________________________________________________________________
8487 [  7724] By: jhi                                   on 2000/11/17  14:08:58
8488         Log: Undo #7627 now that we have =head3.
8489      Branch: perl
8490            ! pod/perlhack.pod
8491 ____________________________________________________________________________
8492 [  7723] By: jhi                                   on 2000/11/17  14:04:09
8493         Log: As surmised the #7719 wasn't a good move.
8494      Branch: perl
8495            ! hints/solaris_2.sh
8496 ____________________________________________________________________________
8497 [  7722] By: jhi                                   on 2000/11/17  13:59:04
8498         Log: Also the 64bitall hints can be either here or there.
8499      Branch: perl
8500            ! hints/solaris_2.sh
8501 ____________________________________________________________________________
8502 [  7721] By: jhi                                   on 2000/11/17  02:26:23
8503         Log: Test tweak for the open pragma.
8504      Branch: perl
8505            ! t/lib/b.t
8506 ____________________________________________________________________________
8507 [  7720] By: jhi                                   on 2000/11/17  00:23:22
8508         Log: The long double hints can be here or there.
8509      Branch: perl
8510            ! hints/solaris_2.sh
8511 ____________________________________________________________________________
8512 [  7719] By: jhi                                   on 2000/11/17  00:14:06
8513         Log: For Solaris use64bitall the stdchar needs a little bit of help.
8514      Branch: perl
8515            ! hints/solaris_2.sh
8516 ____________________________________________________________________________
8517 [  7718] By: jhi                                   on 2000/11/16  23:27:34
8518         Log: Subject: Re: Bug in Carp::Heavy/5.6.0?
8519              From: Wolfgang Laun <Wolfgang.Laun@alcatel.at>
8520              Date: Wed, 15 Nov 2000 08:56:32 +0100
8521              Message-ID: <3A1241B0.64477E00@alcatel.at>
8522      Branch: perl
8523            ! lib/Carp/Heavy.pm
8524 ____________________________________________________________________________
8525 [  7717] By: jhi                                   on 2000/11/16  23:23:29
8526         Log: Subject: [PATCH] Re: 20001101.003 PDL
8527              From: Nicholas Clark <nick@ccl4.org>
8528              Date: Thu, 16 Nov 2000 16:48:25 +0000
8529              Message-ID: <20001116164825.B93487@plum.flirble.org>
8530      Branch: perl
8531            ! lib/ExtUtils/xsubpp pod/perlxs.pod pod/perlxstut.pod
8532 ____________________________________________________________________________
8533 [  7716] By: jhi                                   on 2000/11/16  23:21:31
8534         Log: Subject: [PATCH] Re: [p5p] [PATCH perlpod.pod] Digging into the =head
8535              From: "Casey R. Tweten" <crt@kiski.net>
8536              Date: Thu, 16 Nov 2000 12:02:47 -0500 (EST)
8537              Message-ID: <Pine.OSF.4.21.0011161200410.700-100000@home.kiski.net>
8538      Branch: perl
8539            ! lib/Pod/Checker.pm pod/perlpod.pod
8540 ____________________________________________________________________________
8541 [  7715] By: jhi                                   on 2000/11/16  23:19:40
8542         Log: Avoid an infinite loop in VMS when utils scripts are run
8543              with no arguments, from Charles Lane.
8544      Branch: perl
8545            ! configure.com
8546 ____________________________________________________________________________
8547 [  7714] By: jhi                                   on 2000/11/16  23:17:08
8548         Log: Subject: perllocale.pod changes
8549              From: "Konovalov, Vadim" <vkonovalov@lucent.com>
8550              Date: Mon, 13 Nov 2000 10:09:22 +0300
8551              Message-ID: <402099F49BEED211999700805FC7359F825416@ru0028exch01.spb.lucent.com>
8552      Branch: perl
8553            ! pod/perllocale.pod
8554 ____________________________________________________________________________
8555 [  7713] By: jhi                                   on 2000/11/16  23:14:06
8556         Log: Integrate perlio.
8557      Branch: perl
8558           !> doio.c perlio.c perlio.h util.c
8559 ____________________________________________________________________________
8560 [  7712] By: nick                                  on 2000/11/16  21:10:58
8561         Log: Integrate mainline
8562      Branch: perlio
8563           !> Configure Porting/Glossary Porting/config.sh Porting/config_H
8564           !> config_h.SH configure.com epoc/config.sh malloc.c uconfig.h
8565           !> uconfig.sh vos/config.alpha.def vos/config.alpha.h
8566           !> vos/config.ga.def vos/config.ga.h win32/config.bc
8567           !> win32/config.gc win32/config.vc
8568 ____________________________________________________________________________
8569 [  7711] By: nick                                  on 2000/11/16  19:56:41
8570         Log: Minor tweaks:
8571              consistent way of getting 'rb', 'wb' etc. for binary opens
8572              move *perlio::layers to *open::layers
8573              a #define to show layers available
8574              DOSISH popen/PerlIO had export/import sense inverted.
8575      Branch: perlio
8576            ! doio.c perlio.c perlio.h util.c
8577 ____________________________________________________________________________
8578 [  7710] By: jhi                                   on 2000/11/16  15:46:05
8579         Log: Add HAS_SBRK_PROTO.
8580      Branch: metaconfig/U/perl
8581            + d_sbrkproto.U
8582      Branch: perl
8583            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
8584            ! config_h.SH configure.com epoc/config.sh malloc.c uconfig.h
8585            ! uconfig.sh vos/config.alpha.def vos/config.alpha.h
8586            ! vos/config.ga.def vos/config.ga.h win32/config.bc
8587            ! win32/config.gc win32/config.vc
8588 ____________________________________________________________________________
8589 [  7709] By: nick                                  on 2000/11/16  07:31:49
8590         Log: Integrate mainline
8591      Branch: perlio
8592           !> (integrate 35 files)
8593 ____________________________________________________________________________
8594 [  7708] By: jhi                                   on 2000/11/16  05:33:03
8595         Log: These files are text, not binary.
8596      Branch: perl
8597            ! ext/Encode/Encode/iso8859-10.enc
8598            ! ext/Encode/Encode/iso8859-13.enc
8599            ! ext/Encode/Encode/iso8859-14.enc
8600            ! ext/Encode/Encode/iso8859-15.enc
8601 ____________________________________________________________________________
8602 [  7707] By: jhi                                   on 2000/11/16  01:53:37
8603         Log: Update Changes.
8604      Branch: perl
8605            ! Changes patchlevel.h
8606 ____________________________________________________________________________
8607 [  7706] By: jhi                                   on 2000/11/16  01:35:59
8608         Log: More #undefing of stdio.
8609      Branch: perl
8610            ! fakesdio.h nostdio.h
8611 ____________________________________________________________________________
8612 [  7705] By: jhi                                   on 2000/11/16  01:34:18
8613         Log: Add fwalk() probe to the configuration files and regen perltoc.
8614      Branch: perl
8615            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
8616            ! config_h.SH configure.com epoc/config.sh pod/perltoc.pod
8617            ! uconfig.h uconfig.sh util.c vos/config.alpha.def
8618            ! vos/config.alpha.h vos/config.ga.def vos/config.ga.h
8619            ! win32/config.bc win32/config.gc win32/config.vc
8620 ____________________________________________________________________________
8621 [  7704] By: jhi                                   on 2000/11/16  01:33:07
8622         Log: Add the _fwalk() unit.  (The probe says 'fwalk()'.  Time for
8623              an optional third argument to Inlibc?)
8624      Branch: metaconfig/U/perl
8625            + d__fwalk.U
8626 ____________________________________________________________________________
8627 [  7703] By: jhi                                   on 2000/11/16  01:09:22
8628         Log: The type of the hash_cb() size argument is tricky.
8629      Branch: perl
8630            ! ext/DB_File/DB_File.xs
8631 ____________________________________________________________________________
8632 [  7702] By: jhi                                   on 2000/11/15  23:01:16
8633         Log: Quick temporary fix for 20001114.008 as suggested by Nick Ing-Simmons.
8634      Branch: perl
8635            ! nostdio.h
8636 ____________________________________________________________________________
8637 [  7701] By: jhi                                   on 2000/11/15  22:52:32
8638         Log: Detypo.
8639      Branch: perl
8640            ! t/lib/bigfltpm.t
8641 ____________________________________________________________________________
8642 [  7700] By: jhi                                   on 2000/11/15  22:51:56
8643         Log: UINT64_C() work continues.
8644      Branch: perl
8645            ! handy.h perl.h utf8.h
8646 ____________________________________________________________________________
8647 [  7699] By: jhi                                   on 2000/11/15  14:13:04
8648         Log: SOCKS has its own USE_THREADS, based on
8649              
8650              Subject: [ID 20001114.002] et. al. bugfix followup
8651              From: Jens Hamisch <jens@Strawberry.COM> 
8652              Date: Wed, 15 Nov 2000 14:23:11 +0100
8653              Message-ID: <20001115142311.A21164@Strawberry.COM>
8654      Branch: perl
8655            ! perl.h
8656 ____________________________________________________________________________
8657 [  7698] By: jhi                                   on 2000/11/15  03:50:56
8658         Log: Add few missing #undefs and sort them.
8659      Branch: perl
8660            ! fakesdio.h
8661 ____________________________________________________________________________
8662 [  7697] By: jhi                                   on 2000/11/15  03:39:14
8663         Log: Linenumber fix.
8664      Branch: perl
8665            ! t/pragma/warn/utf8
8666 ____________________________________________________________________________
8667 [  7696] By: jhi                                   on 2000/11/15  02:55:26
8668         Log: EBCDIC tweaks.
8669              
8670              Subject: [PATCH: perl@7674 ++] fixes for warnings and regmesg (reprise)
8671              From: Peter Prymmer <pvhp@forte.com>
8672              Date: Tue, 14 Nov 2000 17:05:11 -0800 (PST)
8673              Message-ID: <Pine.OSF.4.10.10011141653510.106218-100000@aspara.forte.com>
8674      Branch: perl
8675            ! t/op/regmesg.t t/pragma/warn/utf8
8676 ____________________________________________________________________________
8677 [  7695] By: jhi                                   on 2000/11/15  02:53:58
8678         Log: Subject: [PATCH: perl@7674 + Scott-Thoennes] hush warnings about malformed EBCDIC text
8679              From: Peter Prymmer <pvhp@forte.com>
8680              Date: Tue, 14 Nov 2000 15:09:41 -0800 (PST)
8681              Message-ID: <Pine.OSF.4.10.10011141500260.106218-100000@aspara.forte.com>
8682      Branch: perl
8683            ! utf8.c
8684 ____________________________________________________________________________
8685 [  7694] By: jhi                                   on 2000/11/15  02:50:55
8686         Log: Subject: [PATCH: perl@7674] updates to README.os390
8687              From: Prymmer/Kahn <pvhp@best.com>
8688              Date: Tue, 14 Nov 2000 09:20:20 -0800 (PST)
8689              Message-ID: <Pine.BSF.4.21.0011140913370.15162-100000@shell8.ba.best.com>
8690      Branch: perl
8691            ! README.os390
8692 ____________________________________________________________________________
8693 [  7693] By: jhi                                   on 2000/11/15  02:48:37
8694         Log: Quit utf8_to_uv() instantly if curlen == 0.
8695      Branch: perl
8696            ! utf8.c
8697 ____________________________________________________________________________
8698 [  7692] By: jhi                                   on 2000/11/15  02:24:29
8699         Log: Use u_int32_t for the size of hash_cb(), not size_t.
8700              
8701              Subject: [ID 20001114.003] Solaris 8, 64 Bit DB_file patch
8702              From: Jens Hamisch <jens@Strawberry.COM>     
8703              Date: Tue, 14 Nov 2000 19:03:55 +0100
8704              Message-Id: <20001114190355.A20559@Strawberry.COM>
8705      Branch: perl
8706            ! ext/DB_File/DB_File.xs
8707 ____________________________________________________________________________
8708 [  7691] By: jhi                                   on 2000/11/15  02:20:12
8709         Log: Use UINT64_C().
8710              
8711              Subject: [ID 20001114.006] 5.7.0-7680 Solaris 8, 64 bit, utf8 patch
8712              From: Jens Hamisch <jens@Strawberry.COM>
8713              Date: Tue, 14 Nov 2000 19:16:23 +0100
8714              Message-Id: <20001114191623.G20559@Strawberry.COM>
8715      Branch: perl
8716            ! utf8.c utf8.h
8717 ____________________________________________________________________________
8718 [  7690] By: jhi                                   on 2000/11/15  02:17:06
8719         Log: Defined INT64_C() and UINT64_C() unless defined by <inttypes.h>
8720              (a macro to define signed and unsigned integer constants).
8721      Branch: perl
8722            ! handy.h
8723 ____________________________________________________________________________
8724 [  7689] By: jhi                                   on 2000/11/15  01:56:51
8725         Log: Regen Configure.
8726      Branch: perl
8727            ! Configure
8728 ____________________________________________________________________________
8729 [  7688] By: jhi                                   on 2000/11/15  01:56:32
8730         Log: Make the unit know about SOCKS.
8731      Branch: metaconfig
8732            ! U/protos/socksizetype.U
8733 ____________________________________________________________________________
8734 [  7687] By: jhi                                   on 2000/11/15  01:54:47
8735         Log: Remove unused dependencies.
8736      Branch: metaconfig
8737            ! U/compline/d_getpagsz.U
8738 ____________________________________________________________________________
8739 [  7686] By: nick                                  on 2000/11/14  21:25:13
8740         Log: Integrate mainline.
8741      Branch: perlio
8742           +> ext/re/hints/MSWin32.pl win32/bin/mdelete.bat
8743           !> MANIFEST doio.c doop.c ext/IO/lib/IO/Handle.pm
8744           !> ext/IO/lib/IO/Seekable.pm ext/SDBM_File/Makefile.PL
8745           !> lib/ExtUtils/MM_Unix.pm lib/perl5db.pl makedef.pl perl.h
8746           !> perlio.c pp.c pp_sys.c toke.c utf8.c utf8.h win32/Makefile
8747           !> win32/config.bc win32/config.gc win32/config.vc
8748           !> win32/makefile.mk win32/win32.c win32/win32.h win32/win32sck.c
8749 ____________________________________________________________________________
8750 [  7685] By: jhi                                   on 2000/11/14  17:54:56
8751         Log: Integrate perlio.
8752      Branch: perl
8753           +> fakesdio.h perliol.h
8754           !> MANIFEST iperlsys.h nostdio.h perl.c perlio.c perlio.h
8755           !> perlsdio.h perlsfio.h pod/perlfunc.pod
8756 ____________________________________________________________________________
8757 [  7684] By: nick                                  on 2000/11/14  17:43:04
8758         Log: PerlIO #include and #ifdef re-work.
8759      Branch: perlio
8760            + fakesdio.h perliol.h
8761            ! MANIFEST iperlsys.h nostdio.h perl.c perlio.c perlio.h
8762            ! perlsdio.h perlsfio.h
8763 ____________________________________________________________________________
8764 [  7683] By: jhi                                   on 2000/11/14  15:42:40
8765         Log: Hoist the duplicated socket/netdb include logic to perl.h;
8766              undef SETERRNO in case SOCKS has defined it.  Based on:
8767              
8768              Subject: [ID 20001114.002] Code-Cleanups concerning SOCKS5 and Solaris   
8769              From: Jens Hamisch <jens@Strawberry.COM> 
8770              Date: Tue, 14 Nov 2000 11:34:40 +0100
8771              Message-Id: <20001114113440.A20005@Strawberry.COM>
8772      Branch: perl
8773            ! doio.c perl.h pp_sys.c
8774 ____________________________________________________________________________
8775 [  7682] By: jhi                                   on 2000/11/14  14:07:28
8776         Log: Subject: some additions for makefiles for win32 (for perl@7674)
8777              From: "Konovalov, Vadim" <vkonovalov@lucent.com>
8778              Date: Tue, 14 Nov 2000 09:31:13 +0300
8779              Message-ID: <402099F49BEED211999700805FC7359F8254FC@ru0028exch01.spb.lucent.com>
8780      Branch: perl
8781            ! win32/Makefile win32/config.bc win32/config.gc win32/config.vc
8782            ! win32/makefile.mk
8783 ____________________________________________________________________________
8784 [  7681] By: jhi                                   on 2000/11/14  14:01:41
8785         Log: Subject: tiny typo in perl5db.pl
8786              From: "Konovalov, Vadim" <vkonovalov@lucent.com>
8787              Date: Tue, 14 Nov 2000 09:29:28 +0300
8788              Message-ID: <402099F49BEED211999700805FC7359F8254F7@ru0028exch01.spb.lucent.com>
8789      Branch: perl
8790            ! lib/perl5db.pl
8791 ____________________________________________________________________________
8792 [  7680] By: jhi                                   on 2000/11/14  04:13:50
8793         Log: Redo #7679 with LFs instead of CRLFs.
8794      Branch: perl
8795            ! ext/SDBM_File/Makefile.PL lib/ExtUtils/MM_Unix.pm makedef.pl
8796            ! perlio.c win32/Makefile win32/bin/mdelete.bat win32/config.gc
8797            ! win32/config.vc win32/win32.c win32/win32.h win32/win32sck.c
8798 ____________________________________________________________________________
8799 [  7679] By: jhi                                   on 2000/11/14  01:21:09
8800         Log: Subject: [PATCH perl@7638] Get PerlIO building on Win32
8801              From: Benjamin Stuhl <tiriath@yahoo.com> 
8802              Date: Mon, 13 Nov 2000 15:08:08 -0800 (PST)
8803              Message-ID: <20001113230808.18659.qmail@web6305.mail.yahoo.com>
8804      Branch: perl
8805            + win32/bin/mdelete.bat
8806            ! MANIFEST ext/SDBM_File/Makefile.PL lib/ExtUtils/MM_Unix.pm
8807            ! makedef.pl perlio.c win32/Makefile win32/config.gc
8808            ! win32/config.vc win32/win32.c win32/win32.h win32/win32sck.c
8809 ____________________________________________________________________________
8810 [  7678] By: jhi                                   on 2000/11/14  01:19:20
8811         Log: Fix the re extension building for Win32.
8812              
8813              Subject: [PATCH perl@7638] Get PerlIO building on Win32
8814              From: Benjamin Stuhl <tiriath@yahoo.com> 
8815              Date: Mon, 13 Nov 2000 15:08:08 -0800 (PST)
8816              Message-ID: <20001113230808.18659.qmail@web6305.mail.yahoo.com>
8817      Branch: perl
8818            + ext/re/hints/MSWin32.pl
8819            ! MANIFEST
8820 ____________________________________________________________________________
8821 [  7677] By: jhi                                   on 2000/11/14  01:13:54
8822         Log: Subject: [ID 20001113.003] utf8_to_uv on malformed utf returns wrong values
8823              From: sthoenna@efn.org
8824              Date: Mon, 13 Nov 2000 14:49:40 -0800 (PST)
8825              Message-Id: <200011132249.eADMnek09679@garcia.efn.org>
8826      Branch: perl
8827            ! doop.c pp.c toke.c utf8.c utf8.h
8828 ____________________________________________________________________________
8829 [  7676] By: jhi                                   on 2000/11/13  20:23:15
8830         Log: Subject: Re: [ID 20001112.008] perlio.c's PerlIO_getpos ingores error return
8831              From: Nicholas Clark <nick@ccl4.org>
8832              Date: Mon, 13 Nov 2000 18:55:04 +0000
8833              Message-ID: <20001113185504.J29183@plum.flirble.org>
8834      Branch: perl
8835            ! ext/IO/lib/IO/Handle.pm ext/IO/lib/IO/Seekable.pm
8836 ____________________________________________________________________________
8837 [  7675] By: nick                                  on 2000/11/13  20:21:57
8838         Log: Integrate mainline ...
8839      Branch: perlio
8840           !> Changes MANIFEST doop.c ext/IO/IO.xs ext/IO/lib/IO/Handle.pm
8841           !> ext/IO/lib/IO/Seekable.pm patchlevel.h perl.h perlio.c
8842           !> perlsfio.h pod/perlfunc.pod pod/perlunicode.pod pp.c regexp.h
8843           !> t/io/tell.t t/lib/io_xs.t t/op/bop.t utf8.c
8844 ____________________________________________________________________________
8845 [  7674] By: jhi                                   on 2000/11/13  15:07:56
8846         Log: Update Changes.
8847      Branch: perl
8848            ! Changes patchlevel.h
8849 ____________________________________________________________________________
8850 [  7673] By: jhi                                   on 2000/11/13  14:42:42
8851         Log: Remove the new two tests of lib/io_xs for now, they seem to
8852              fail under perlio on some platforms.
8853      Branch: perl
8854            ! t/lib/io_xs.t
8855 ____________________________________________________________________________
8856 [  7672] By: jhi                                   on 2000/11/13  13:57:53
8857         Log: Make PerlIO_getpos() to behave like fgetpos() on return.
8858      Branch: perl
8859            ! perlio.c
8860 ____________________________________________________________________________
8861 [  7671] By: jhi                                   on 2000/11/13  05:30:48
8862         Log: Placate nervous compilers that see longer than ints switch()ing.
8863      Branch: perl
8864            ! utf8.c
8865 ____________________________________________________________________________
8866 [  7670] By: jhi                                   on 2000/11/13  05:14:21
8867         Log: fputs() does return EOF on error but here we don't care.
8868      Branch: perl
8869            ! perlio.c
8870 ____________________________________________________________________________
8871 [  7669] By: jhi                                   on 2000/11/13  05:02:45
8872         Log: Declare reg_data like reg_substr_data.
8873      Branch: perl
8874            ! regexp.h
8875 ____________________________________________________________________________
8876 [  7668] By: jhi                                   on 2000/11/13  04:54:34
8877         Log: Typos in #7667.
8878      Branch: perl
8879            ! perl.h
8880 ____________________________________________________________________________
8881 [  7667] By: jhi                                   on 2000/11/13  04:49:49
8882         Log: Cleanup messy #ifdef.
8883      Branch: perl
8884            ! perl.h
8885 ____________________________________________________________________________
8886 [  7666] By: jhi                                   on 2000/11/13  04:17:34
8887         Log: Subject: [ID 20001112.008] perlio.c's PerlIO_getpos ingores error return
8888              From: Nicholas Clark <nick@talking.bollo.cx>
8889              Date: Sun, 12 Nov 2000 21:14:11 +0000
8890              Message-Id: <E13v4S3-0000iY-00@Bagpuss.unfortu.net>
8891              
8892              Note: only one breakage of the two reported is fixed by this patch.
8893      Branch: perl
8894            ! perlio.c
8895 ____________________________________________________________________________
8896 [  7665] By: jhi                                   on 2000/11/13  04:05:07
8897         Log: Tweak the definition of the bit complement on UTF-8 data:
8898              if none of the characters in the string are > 0xff,
8899              the result is a complemented byte string, not a (UTF-8)
8900              char string.  Based on the summary in
8901              
8902              Subject: Re: [ID 20000918.005] ~ on wide chars
8903              From: sthoenna@efn.org (Yitzchak Scott-Thoennes) 
8904              Date: Fri, 10 Nov 2000 09:47:15 -0800
8905              Message-ID: <jSDD6gzkgi/T092yn@efn.org>
8906              
8907              This should give us the maximum backward (pre-char string)
8908              compatibility and utf8 compatibility.  The other alternative
8909              would be to limit the bit complement to be always byte only,
8910              taking the least significant byte of the chars.
8911      Branch: perl
8912            ! doop.c pod/perlunicode.pod pp.c t/op/bop.t
8913 ____________________________________________________________________________
8914 [  7664] By: jhi                                   on 2000/11/13  00:23:44
8915         Log: Couple of tests from #7660 salvaged.
8916      Branch: perl
8917            - t/op/tell.t
8918            ! MANIFEST t/io/tell.t
8919 ____________________________________________________________________________
8920 [  7663] By: jhi                                   on 2000/11/13  00:02:48
8921         Log: Subject: [ID 20001112.007] sfio's sftell isn't ftell
8922              From: Nicholas Clark <nick@talking.bollo.cx>
8923              Date: Sun, 12 Nov 2000 21:23:43 +0000
8924              Message-Id: <E13v4bH-0000lN-00@Bagpuss.unfortu.net>
8925      Branch: perl
8926            ! perlsfio.h
8927 ____________________________________________________________________________
8928 [  7662] By: jhi                                   on 2000/11/13  00:01:39
8929         Log: Subject: [ID 20001112.006] IO::Seekable::getpos doesn't check for fgetpos() failure
8930              From: Nicholas Clark <nick@talking.bollo.cx>
8931              Date: Sun, 12 Nov 2000 21:30:04 +0000
8932              Message-Id: <E13v4hQ-0000mn-00@Bagpuss.unfortu.net>
8933      Branch: perl
8934            ! ext/IO/IO.xs ext/IO/lib/IO/Seekable.pm t/lib/io_xs.t
8935 ____________________________________________________________________________
8936 [  7661] By: jhi                                   on 2000/11/12  23:57:29
8937         Log: Document tell() on special streams.
8938      Branch: perl
8939            ! pod/perlfunc.pod
8940 ____________________________________________________________________________
8941 [  7660] By: jhi                                   on 2000/11/12  23:54:22
8942         Log: (Subsumed by #7664)
8943      Branch: perl
8944            + t/op/tell.t
8945            ! MANIFEST
8946 ____________________________________________________________________________
8947 [  7659] By: jhi                                   on 2000/11/12  22:55:25
8948         Log: Many subdocumented return values of the IO extension now documented.
8949              ungetc and write still left subdocumented.
8950              
8951              Subject: [PATCH] (was Re: IO::Handle::ungetc)
8952              From: Nicholas Clark <nick@talking.bollo.cx>
8953              Date: Sun, 12 Nov 2000 21:35:53 +0000
8954              Message-ID: <20001112213552.A3034@Bagpuss.unfortu.net>
8955      Branch: perl
8956            ! ext/IO/lib/IO/Handle.pm
8957 ____________________________________________________________________________
8958 [  7658] By: jhi                                   on 2000/11/12  21:37:06
8959         Log: Subject: [ID 20001112.004] man perlfunc omits tell()'s error return
8960              From: Nicholas Clark <nick@talking.bollo.cx>
8961              Date: Sun, 12 Nov 2000 20:03:22 +0000
8962              Message-Id: <E13v3LV-0008Pd-00@Bagpuss.unfortu.net>
8963      Branch: perl
8964            ! pod/perlfunc.pod
8965 ____________________________________________________________________________
8966 [  7657] By: jhi                                   on 2000/11/12  20:34:55
8967         Log: Integrate perlio.
8968      Branch: perl
8969           !> perlio.c
8970 ____________________________________________________________________________
8971 [  7656] By: nick                                  on 2000/11/12  19:25:06
8972         Log: Add aTHX_ to Perl_croak's (MULTIPLICITY et. al.)
8973      Branch: perlio
8974            ! perlio.c
8975 ____________________________________________________________________________
8976 [  7655] By: nick                                  on 2000/11/12  19:09:41
8977         Log: Integrate mainline
8978      Branch: perlio
8979           +> README.solaris ext/Encode/Encode/cp1006.enc
8980           +> ext/Encode/Encode/cp424.enc ext/Encode/Encode/cp856.enc
8981           +> ext/Encode/Encode/gsm0338.enc ext/Encode/Encode/iso8859-10.enc
8982           +> ext/Encode/Encode/iso8859-13.enc
8983           +> ext/Encode/Encode/iso8859-14.enc
8984           +> ext/Encode/Encode/iso8859-15.enc
8985           !> (integrate 34 files)
8986 ____________________________________________________________________________
8987 [  7654] By: jhi                                   on 2000/11/12  19:00:22
8988         Log: Add a metaconfig unit for fsync.
8989      Branch: metaconfig/U/perl
8990            + d_fsync.U
8991 ____________________________________________________________________________
8992 [  7653] By: jhi                                   on 2000/11/12  19:00:01
8993         Log: Add HAS_FSYNC, lack noticed by Nicholas Clark.
8994      Branch: perl
8995            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
8996            ! config_h.SH configure.com epoc/config.sh uconfig.h uconfig.sh
8997            ! vos/config.alpha.def vos/config.alpha.h vos/config.ga.def
8998            ! vos/config.ga.h win32/config.bc win32/config.gc
8999            ! win32/config.vc
9000 ____________________________________________________________________________
9001 [  7652] By: jhi                                   on 2000/11/11  21:12:01
9002         Log: Copy the s// information of README.hpux also to the perlrun.
9003      Branch: perl
9004            ! README.hpux pod/perlrun.pod
9005 ____________________________________________________________________________
9006 [  7651] By: jhi                                   on 2000/11/11  21:03:13
9007         Log: More README.solaris updates from Andy Dougherty.
9008      Branch: perl
9009            ! README.solaris
9010 ____________________________________________________________________________
9011 [  7650] By: jhi                                   on 2000/11/11  18:38:57
9012         Log: More descriptive error for unknown perlio layers.
9013              
9014              Subject: [PATCHES Bleadperl] Re: PerlIO - what all of you can all do.   
9015              From: Dominic Dunlop <domo@computer.org> 
9016              Date: Sat, 11 Nov 2000 18:20:32 +0100             
9017              Message-Id: <p04320401b632c4c3335b@[192.168.1.4]>
9018      Branch: perl
9019            ! perlio.c pod/perldiag.pod
9020 ____________________________________________________________________________
9021 [  7649] By: jhi                                   on 2000/11/11  18:37:52
9022         Log: MachTen doesn't really do mmap() and munmap().
9023              
9024              Subject: [PATCHES Bleadperl] Re: PerlIO - what all of you can all do.   
9025              From: Dominic Dunlop <domo@computer.org> 
9026              Date: Sat, 11 Nov 2000 18:20:32 +0100             
9027              Message-Id: <p04320401b632c4c3335b@[192.168.1.4]>
9028      Branch: perl
9029            ! hints/machten.sh
9030 ____________________________________________________________________________
9031 [  7648] By: jhi                                   on 2000/11/11  18:36:46
9032         Log: Subject: [PATCH] fwd: Re: [ID 20001105.011] Perl 5.6.0 documentation glitch
9033              From: rspier@pobox.com (Robert Spier)
9034              Date: Sat, 11 Nov 2000 12:22:15 -0500 (EST)
9035              Message-ID: <14861.32839.491271.985797@rls.cx>
9036      Branch: perl
9037            ! Porting/Contract pod/perltoot.pod
9038 ____________________________________________________________________________
9039 [  7647] By: jhi                                   on 2000/11/11  18:35:30
9040         Log: Simplify the getpagesize() unit by dropping the
9041              pagesize probe since it's nowadays slightly more
9042              complicated because of sysconf(). (Note: if some
9043              platform really needs the -lPW for getpagesize,
9044              I just broke it.)
9045              
9046              TODO: a new pagesize unit.
9047      Branch: metaconfig
9048            ! U/compline/d_getpagsz.U
9049 ____________________________________________________________________________
9050 [  7646] By: jhi                                   on 2000/11/11  18:33:23
9051         Log: Add getpagesize() probing, on non-UNIX guess 'undef'.
9052      Branch: perl
9053            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
9054            ! config_h.SH configure.com epoc/config.sh uconfig.h uconfig.sh
9055            ! vos/config.alpha.def vos/config.alpha.h vos/config.ga.def
9056            ! vos/config.ga.h win32/config.bc win32/config.gc
9057            ! win32/config.vc
9058 ____________________________________________________________________________
9059 [  7645] By: jhi                                   on 2000/11/11  16:45:15
9060         Log: Use sysconf() or getpagesize() to find out the pagesize.
9061      Branch: perl
9062            ! perlio.c
9063 ____________________________________________________________________________
9064 [  7644] By: jhi                                   on 2000/11/11  15:46:08
9065         Log: Integrate perlio.
9066      Branch: perl
9067           !> perlio.c
9068 ____________________________________________________________________________
9069 [  7643] By: jhi                                   on 2000/11/11  15:33:36
9070         Log: Subject: Re: [PATCH] README.solaris
9071              From: Lupe Christoph <lupe@lupe-christoph.de>
9072              Date: Sat, 11 Nov 2000 14:08:10 +0100
9073              Message-ID: <20001111140810.C10394@alanya.lupe-christoph.de>
9074      Branch: perl
9075            ! README.solaris
9076 ____________________________________________________________________________
9077 [  7642] By: jhi                                   on 2000/11/11  15:22:12
9078         Log: Subject: [PATCH perl@7638] cygwin port
9079              From: "Eric Fifer" <egf7@columbia.edu>            
9080              Date: Fri, 10 Nov 2000 19:30:30 -0000
9081              Message-ID: <000001c04b4c$b96b7980$243670c2@fifer>
9082      Branch: perl
9083            ! README.cygwin lib/ExtUtils/MM_Cygwin.pm
9084 ____________________________________________________________________________
9085 [  7641] By: nick                                  on 2000/11/11  14:50:36
9086         Log: Fixup mmap layer by doing mmap() calls on pagesize boundaries.
9087              Also call "Buf" layer directly when unread'ing non-read chars.
9088      Branch: perlio
9089            ! perlio.c
9090 ____________________________________________________________________________
9091 [  7640] By: jhi                                   on 2000/11/11  02:05:02
9092         Log: Add more encoding tables.
9093      Branch: perl
9094            + ext/Encode/Encode/cp1006.enc ext/Encode/Encode/cp424.enc
9095            + ext/Encode/Encode/cp856.enc ext/Encode/Encode/gsm0338.enc
9096            + ext/Encode/Encode/iso8859-10.enc
9097            + ext/Encode/Encode/iso8859-13.enc
9098            + ext/Encode/Encode/iso8859-14.enc
9099            + ext/Encode/Encode/iso8859-15.enc
9100            ! MANIFEST
9101 ____________________________________________________________________________
9102 [  7639] By: jhi                                   on 2000/11/10  18:49:25
9103         Log: Subject: [PATCH] README.solaris
9104              From: Andy Dougherty <doughera@lafayette.edu>
9105              Date: Fri, 10 Nov 2000 12:18:00 -0500 (EST)
9106              Message-ID: <Pine.SOL.4.10.10011101217100.28341-100000@maxwell.phys.lafayette.edu>
9107      Branch: perl
9108            + README.solaris
9109            ! INSTALL MANIFEST hints/solaris_2.sh pod/buildtoc.PL
9110            ! pod/perl.pod pod/perltoc.pod
9111 ____________________________________________________________________________
9112 [  7638] By: jhi                                   on 2000/11/10  15:04:15
9113         Log: Update Changes.
9114      Branch: perl
9115            ! Changes patchlevel.h
9116 ____________________________________________________________________________
9117 [  7637] By: jhi                                   on 2000/11/10  14:14:28
9118         Log: Explain better why certain regex tests are skipped.
9119              
9120              Subject: Re: tests skipped: unknown reason
9121              From: Lupe Christoph <lupe@lupe-christoph.de>
9122              Date: Fri, 10 Nov 2000 09:08:56 +0100
9123              Message-ID: <20001110090856.J785@alanya.lupe-christoph.de>
9124      Branch: perl
9125            ! t/op/regexp.t
9126 ____________________________________________________________________________
9127 [  7636] By: nick                                  on 2000/11/10  13:40:00
9128         Log: Integrate mainline.
9129      Branch: perlio
9130           !> emacs/cperl-mode.el ext/IO/lib/IO/Handle.pm hints/linux.sh
9131           !> hints/uts.sh lib/unicode/syllables.txt perlio.c
9132           !> win32/bin/search.pl
9133 ____________________________________________________________________________
9134 [  7635] By: nick                                  on 2000/11/10  13:25:52
9135         Log: Re-instate stdio large file support via perlio.
9136      Branch: perl
9137            ! perlio.c
9138 ____________________________________________________________________________
9139 [  7634] By: jhi                                   on 2000/11/10  04:49:55
9140         Log: Amdahl UTS hints updates.
9141              
9142              Subject: [ID 20001109.016] Trouble going from 5.4 to 5.6
9143              From: hom00@utsglobal.com (Harold O Morris)
9144              Date: Thu, 9 Nov 2000 20:02 PST
9145              Message-Id: <m13u5OV-000045C@juno.uts.utsglobal.com>
9146      Branch: perl
9147            ! hints/uts.sh
9148 ____________________________________________________________________________
9149 [  7633] By: jhi                                   on 2000/11/09  23:33:28
9150         Log: Subject: [PATCH] IO::Seekable pod
9151              From: Nicholas Clark <nick@talking.bollo.cx>
9152              Date: Thu, 9 Nov 2000 20:29:45 +0000
9153              Message-ID: <20001109202945.A10451@Bagpuss.unfortu.net>
9154      Branch: perl
9155            ! ext/IO/lib/IO/Handle.pm
9156 ____________________________________________________________________________
9157 [  7632] By: jhi                                   on 2000/11/09  21:55:41
9158         Log: Various doc oddball characters.
9159              
9160              Subject: [ID 20001106.004] Perl 5.6.0 bugs  
9161              From: Michael Somos <somos@grail.cba.csuohio.edu>
9162              Date: Mon, 6 Nov 2000 17:44:20 -0500
9163              Message-Id: <200011062244.RAA28632@grail.cba.csuohio.edu>
9164      Branch: perl
9165            ! emacs/cperl-mode.el lib/unicode/syllables.txt
9166            ! win32/bin/search.pl
9167 ____________________________________________________________________________
9168 [  7631] By: jhi                                   on 2000/11/09  21:12:29
9169         Log: Subject: Re: bash -c exit and linux hints 
9170              From: "John P. Linderman" <jpl@research.att.com>
9171              Date: Thu, 02 Nov 2000 09:37:25 -0500
9172              Message-Id: <200011021437.JAA63199@raptor.research.att.com>
9173      Branch: perl
9174            ! hints/linux.sh
9175 ____________________________________________________________________________
9176 [  7630] By: nick                                  on 2000/11/09  20:34:11
9177         Log: Integrate mainline.
9178      Branch: perlio
9179           !> (integrate 91 files)
9180 ____________________________________________________________________________
9181 [  7629] By: jhi                                   on 2000/11/09  19:46:31
9182         Log: Missing dTHXs.
9183              
9184              Subject: RE: perl@7595 builds not on cygwin
9185              From: "Eric Fifer" <egf7@columbia.edu>
9186              Date: Thu, 9 Nov 2000 19:26:50 -0000
9187              Message-ID: <000201c04a83$05ef1660$933570c2@fifer>
9188      Branch: perl
9189            ! ext/Devel/Peek/Peek.xs
9190 ____________________________________________________________________________
9191 [  7628] By: jhi                                   on 2000/11/09  14:48:27
9192         Log: Disable only the tests 99 and 166 for UTF-8 locales.
9193      Branch: perl
9194            ! t/pragma/locale.t
9195 ____________________________________________________________________________
9196 [  7627] By: jhi                                   on 2000/11/09  14:40:27
9197         Log: There's no =head3.
9198      Branch: perl
9199            ! pod/perlhack.pod
9200 ____________________________________________________________________________
9201 [  7626] By: jhi                                   on 2000/11/09  13:54:26
9202         Log: The generated boot_* headers are wrong.  Pickier compiler,
9203              such as KAI C++ will refuse to compile the resulting perlmain.
9204              
9205              Subject: [ID 20001109.005] Bug in minimod.pl, perl 5.6.0
9206              From: Harri Pasanen <harri.pasanen@trema.com>
9207              Date: Thu, 09 Nov 2000 14:23:28 +0100
9208              Message-Id: <3A0AA550.26D548A3@trema.com>
9209      Branch: perl
9210            ! minimod.pl
9211 ____________________________________________________________________________
9212 [  7625] By: jhi                                   on 2000/11/09  13:50:44
9213         Log: Subject: [PATCH: perl@7613] updates to Porting/pumpkin.pod
9214              From: Prymmer/Kahn <pvhp@best.com>
9215              Date: Wed, 8 Nov 2000 22:13:26 -0800 (PST)
9216              Message-ID: <Pine.BSF.4.21.0011082208390.5584-100000@shell8.ba.best.com>
9217              
9218              All except the "cow orker" change.
9219      Branch: perl
9220            ! Porting/pumpkin.pod
9221 ____________________________________________________________________________
9222 [  7624] By: jhi                                   on 2000/11/09  13:45:33
9223         Log: Fix for
9224              
9225              Subject: [ID 20001109.003] Not OK: perl v5.7.0 +DEVEL7620 on PA-RISC2.0 11.00 (UNINSTALLED)
9226              From: "H.Merijn Brand" <h.m.brand@hccnet.nl> 
9227              Date: Thu, 09 Nov 2000 11:05:52 +0100
9228              Message-Id: <20001109110452.66CF.H.M.BRAND@hccnet.nl>
9229      Branch: perl
9230            ! pod/perldiag.pod t/pragma/warn/pp_sys
9231 ____________________________________________________________________________
9232 [  7623] By: jhi                                   on 2000/11/09  13:37:16
9233         Log: Typo in an ifndef.
9234              
9235              Subject: Re: [PATCH 5.7.0] better messages from malloc()
9236              From: Joe Smith <jms@inwap.com>         
9237              Date: Thu, 09 Nov 2000 01:33:14 -0800
9238              Message-Id: <3A0A6F5A.1E3969BB@inwap.com>
9239      Branch: perl
9240            ! malloc.c
9241 ____________________________________________________________________________
9242 [  7622] By: jhi                                   on 2000/11/09  13:31:18
9243         Log: Remove unused extra arguments.
9244      Branch: metaconfig/U/perl
9245            ! perlxv.U
9246      Branch: perl
9247            ! Configure config_h.SH
9248 ____________________________________________________________________________
9249 [  7621] By: jhi                                   on 2000/11/09  13:16:36
9250         Log: More VMS moves on environment handling, from Charles Lane.
9251      Branch: perl
9252            ! t/pragma/locale.t
9253 ____________________________________________________________________________
9254 [  7620] By: jhi                                   on 2000/11/09  04:42:38
9255         Log: Subject: patch to detect stat followed by lstat(_): [ID 20001106.006] find2perl generated scripts issue new lstat()    on filehandle _ warning
9256              From: David Dyck <dcd@tc.fluke.com>
9257              Date: Wed, 8 Nov 2000 18:36:26 -0800 (PST)
9258              Message-ID: <Pine.LNX.4.30.0011081817490.177-100000@dd.tc.fluke.com>
9259      Branch: perl
9260            ! pp_sys.c
9261 ____________________________________________________________________________
9262 [  7619] By: jhi                                   on 2000/11/09  04:36:21
9263         Log: Forgot from #7618.
9264      Branch: perl
9265            ! lib/File/stat.pm
9266 ____________________________________________________________________________
9267 [  7618] By: jhi                                   on 2000/11/09  04:28:44
9268         Log: Make deleting for %ENV work for (newer versions of) VMS,
9269              from Craig A. Berry.
9270      Branch: perl
9271            ! vms/vms.c
9272 ____________________________________________________________________________
9273 [  7617] By: jhi                                   on 2000/11/09  04:25:05
9274         Log: Subject: [PATCH] Class::Struct at compile time
9275              From: "Casey R. Tweten" <crt@kiski.net>
9276              Date: Wed, 8 Nov 2000 20:46:41 -0500 (EST)
9277              Message-ID: <Pine.OSF.4.21.0011082041360.8238-100000@home.kiski.net>
9278      Branch: perl
9279            ! lib/Class/Struct.pm
9280 ____________________________________________________________________________
9281 [  7616] By: jhi                                   on 2000/11/09  04:15:17
9282         Log: Subject: [ID 20001108.013] spelling
9283              From: "Todd T. Fries" <todd@fries.int.mrleng.com>
9284              Date: Wed, 8 Nov 2000 18:36:42 -0600 (CST)
9285              Message-Id: <200011090036.eA90agN05921@fries.int.mrleng.com>
9286      Branch: perl
9287            ! lib/ftp.pl
9288 ____________________________________________________________________________
9289 [  7615] By: jhi                                   on 2000/11/09  04:12:42
9290         Log: Subject: [PATCH: perl@7613] add Encode to VMS build and tests
9291              From: Peter Prymmer <pvhp@forte.com>
9292              Date: Wed, 8 Nov 2000 15:29:06 -0800 (PST)
9293              Message-ID: <Pine.OSF.4.10.10011081524450.248546-100000@aspara.forte.com>
9294      Branch: perl
9295            ! configure.com
9296 ____________________________________________________________________________
9297 [  7614] By: jhi                                   on 2000/11/08  22:42:55
9298         Log: A missing aTHX_.
9299      Branch: perl
9300            ! ext/IPC/SysV/SysV.xs
9301 ____________________________________________________________________________
9302 [  7613] By: jhi                                   on 2000/11/08  19:30:21
9303         Log: Update Changes.
9304      Branch: perl
9305            ! Changes patchlevel.h
9306 ____________________________________________________________________________
9307 [  7612] By: jhi                                   on 2000/11/08  18:35:25
9308         Log: Subject: is this the appropriate patch to fix: [ID 20001106.006] find2perl generated scripts issue new lstat()    on filehandle _ warning
9309              From: David Dyck <dcd@tc.fluke.com>
9310              Date: Wed, 8 Nov 2000 10:05:44 -0800 (PST)
9311              Message-ID: <Pine.LNX.4.30.0011080957440.2572-100000@dd.tc.fluke.com>
9312      Branch: perl
9313            ! pp_sys.c
9314 ____________________________________________________________________________
9315 [  7611] By: jhi                                   on 2000/11/08  18:30:26
9316         Log: Subject: [PATCH bleadperl] Re: Patch 7533 prevents malloc.c from compiling on MachTen
9317              From: Dominic Dunlop <domo@computer.org>
9318              Date: Tue, 7 Nov 2000 12:05:25 +0100
9319              Message-Id: <p04320403b62d8e0870cf@[192.168.1.4]>
9320      Branch: perl
9321            ! malloc.c
9322 ____________________________________________________________________________
9323 [  7610] By: jhi                                   on 2000/11/08  18:25:14
9324         Log: Do not test UTF-8 locales since that the tests would require
9325              polymorphic regexen.
9326      Branch: perl
9327            ! t/pragma/locale.t
9328 ____________________________________________________________________________
9329 [  7609] By: jhi                                   on 2000/11/08  17:12:51
9330         Log: Locale buglets.
9331              
9332              Subject: RE: Locales support (setlocale) fixes
9333              From: "Konovalov, Vadim" <vkonovalov@lucent.com>
9334              Date: Wed, 8 Nov 2000 20:01:39 +0300
9335              Message-ID: <402099F49BEED211999700805FC7359F825283@ru0028exch01.spb.lucent.com>
9336      Branch: perl
9337            ! t/pragma/locale.t util.c
9338 ____________________________________________________________________________
9339 [  7608] By: jhi                                   on 2000/11/08  17:00:16
9340         Log: Deleting $ENV{PATH} in VMS is not recommendable.
9341      Branch: perl
9342            ! t/pragma/locale.t
9343 ____________________________________________________________________________
9344 [  7607] By: jhi                                   on 2000/11/08  16:58:26
9345         Log: Subject: PATCH std stdio for (Free)BSD
9346              From: Nicholas Clark <nick@ccl4.org>
9347              Date: Wed, 8 Nov 2000 15:36:29 +0000
9348              Message-ID: <20001108153629.D98736@plum.flirble.org>
9349      Branch: metaconfig
9350            ! U/compline/d_stdstdio.U
9351      Branch: perl
9352            ! Configure config_h.SH
9353 ____________________________________________________________________________
9354 [  7606] By: jhi                                   on 2000/11/08  16:43:31
9355         Log: Forgot to bump the line numbers in #7601.
9356      Branch: perl
9357            ! t/pragma/warn/pp_sys
9358 ____________________________________________________________________________
9359 [  7605] By: jhi                                   on 2000/11/08  16:39:12
9360         Log: More careful detection of how well NVs and UVs mix.
9361              
9362              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))
9363              From: Nicholas Clark <nick@ccl4.org>
9364              Date: Wed, 8 Nov 2000 15:14:12 +0000
9365              Message-ID: <20001108151412.B98736@plum.flirble.org>
9366              
9367              Added some SIGFPE paranoia.
9368      Branch: metaconfig/U/perl
9369            ! perlxv.U
9370      Branch: perl
9371            ! Configure config_h.SH
9372 ____________________________________________________________________________
9373 [  7604] By: jhi                                   on 2000/11/08  14:39:10
9374         Log: Subject: [patch perl@7595] VMS configure.com tweak
9375              From: "Craig A. Berry" <craigberry@mac.com>
9376              Date: Wed, 8 Nov 2000 00:24:12 -0600
9377              Message-Id: <p04330103b62e879ceeff@[192.168.56.177]>
9378      Branch: perl
9379            ! configure.com
9380 ____________________________________________________________________________
9381 [  7603] By: jhi                                   on 2000/11/08  14:27:11
9382         Log: Subject: [PATCH @7595] int/ptr casts in perlio.c
9383              From: Robin Barker <rmb1@cise.npl.co.uk>
9384              Date: Wed, 8 Nov 2000 11:11:39 GMT
9385              Message-Id: <200011081111.LAA07377@tempest.npl.co.uk>
9386      Branch: perl
9387            ! perlio.c
9388 ____________________________________________________________________________
9389 [  7602] By: jhi                                   on 2000/11/08  14:25:03
9390         Log: Fix for the tie-refhash string table leaks.
9391              
9392              From: Nick Ing-Simmons <nik@tiuk.ti.com> 
9393              Date: Wed, 8 Nov 2000 13:03:04 GMT
9394              Message-Id: <200011081303.NAA07042@mikado.tiuk.ti.com>
9395      Branch: perl
9396            ! t/lib/tie-refhash.t
9397 ____________________________________________________________________________
9398 [  7601] By: jhi                                   on 2000/11/08  14:21:08
9399         Log: Try to avoid flockless and emulationless places.
9400      Branch: perl
9401            ! t/pragma/warn/pp_sys
9402 ____________________________________________________________________________
9403 [  7600] By: jhi                                   on 2000/11/08  02:28:54
9404         Log: Overrideable keys, each, pop, push, shift, splice, unshift.
9405              
9406              Subject: [PATCH] prototyped functions that should be overrideable
9407              From: "Casey R. Tweten" <crt@kiski.net>
9408              Date: Fri, 3 Nov 2000 11:09:12 -0500 (EST)
9409              Message-ID: <Pine.OSF.4.21.0011031100470.17471-100000@home.kiski.net>
9410      Branch: perl
9411            ! toke.c
9412 ____________________________________________________________________________
9413 [  7599] By: jhi                                   on 2000/11/08  01:12:05
9414         Log: Make perlbug not insist on dumping to a file when stdout isn't a tty.
9415              
9416              Subject: [PATCH] perlbug.PL
9417              From: "Kurt D. Starsinic" <kstar@chapin.edu>
9418              Date: Mon, 6 Nov 2000 21:39:01 -0500
9419              Message-ID: <20001106213901.B20955@O2.chapin.edu>
9420      Branch: perl
9421            ! utils/perlbug.PL
9422 ____________________________________________________________________________
9423 [  7598] By: jhi                                   on 2000/11/07  23:42:00
9424         Log: Bad thinko in #7581 (I used the test program with the expanded
9425              values as-is).
9426      Branch: metaconfig
9427            ! U/compline/d_stdstdio.U
9428      Branch: perl
9429            ! Configure
9430 ____________________________________________________________________________
9431 [  7597] By: jhi                                   on 2000/11/07  21:43:29
9432         Log: Subject: [PATCH perl@7573] cygwin port
9433              From: "Fifer, Eric" <EFifer@sanwaint.com>
9434              Date: Tue, 7 Nov 2000 18:08:51 -0000 
9435              Message-ID: <779F20BCCE5AD31186A50008C75D99791717BB@silldn_mail1.sanwaint.com>
9436              
9437              Synchronize with Cygwin 1.1.5.
9438      Branch: perl
9439            ! AUTHORS README.cygwin cygwin/cygwin.c hints/cygwin.sh mg.c
9440            ! pod/perlport.pod unixish.h util.c
9441 ____________________________________________________________________________
9442 [  7596] By: jhi                                   on 2000/11/07  21:39:25
9443         Log: perlhack updates from H.Merijn Brand.
9444      Branch: perl
9445            ! pod/perlhack.pod
9446 ____________________________________________________________________________
9447 [  7595] By: jhi                                   on 2000/11/07  20:21:41
9448         Log: Update Changes.
9449      Branch: perl
9450            ! Changes patchlevel.h
9451 ____________________________________________________________________________
9452 [  7594] By: jhi                                   on 2000/11/07  19:18:58
9453         Log: Be more robust in Dynaloader.pm.
9454      Branch: perl
9455            ! ext/DynaLoader/DynaLoader_pm.PL
9456 ____________________________________________________________________________
9457 [  7593] By: jhi                                   on 2000/11/07  16:49:31
9458         Log: AUTHORS update.
9459      Branch: perl
9460            ! AUTHORS
9461 ____________________________________________________________________________
9462 [  7592] By: gsar                                  on 2000/11/07  16:39:51
9463         Log: normalize relative paths in virtualized current directory on windows,
9464              under ithreads (avoids ".." etc showing up in what Cwd::cwd()
9465              returns)
9466      Branch: perl
9467            ! win32/vdir.h
9468 ____________________________________________________________________________
9469 [  7591] By: jhi                                   on 2000/11/07  16:04:26
9470         Log: Too profiler-happy: with optimization the #7590 actually makes
9471              the test to run 0.5% _slower_.  Requires much more instrumentation.
9472              Retract #7590.
9473      Branch: perl
9474            ! regcomp.c regcomp.h
9475 ____________________________________________________________________________
9476 [  7590] By: jhi                                   on 2000/11/07  15:51:13
9477         Log: Shave off about 5% (Digital UNIX, -g, pixie) of the op/regexp
9478              execution time in regcomp.c S_cl_any() and S_cl_is_anything()
9479              by using memset() and testing bytewise (as opposed to bitwise).
9480      Branch: perl
9481            ! regcomp.c regcomp.h
9482 ____________________________________________________________________________
9483 [  7589] By: jhi                                   on 2000/11/07  12:56:39
9484         Log: Subject: [PATCH perl@7573] configure.com and st-lock.t changes for   
9485              From: "Craig A. Berry" <craig.berry@psinetcs.com>
9486              Date: Mon, 06 Nov 2000 23:45:30 -0500
9487              Message-Id: <0011079735.AA973576259@univpress.com>
9488      Branch: perl
9489            ! configure.com t/lib/st-lock.t
9490 ____________________________________________________________________________
9491 [  7588] By: jhi                                   on 2000/11/07  01:03:28
9492         Log: Tweak #7587.
9493      Branch: perl
9494            ! pod/perldiag.pod
9495 ____________________________________________________________________________
9496 [  7587] By: jhi                                   on 2000/11/07  01:00:27
9497         Log: A doc addition for bug id 20001105.019, beware \p.
9498      Branch: perl
9499            ! pod/perldiag.pod
9500 ____________________________________________________________________________
9501 [  7586] By: jhi                                   on 2000/11/07  00:32:22
9502         Log: Fake support of holey files in win/dosish platforms.
9503              
9504              Subject: SDBM_File under MS-Windows95/98 does not work correctly. (APR#1302)
9505              From: kipp@shonanblue.ne.jp
9506              Date: Mon, 6 Nov 2000 13:30:55 -0800
9507              Message-Id: <200011062130.eA6LUpZ17387@smtp3.ActiveState.com>
9508      Branch: perl
9509            ! ext/SDBM_File/sdbm/sdbm.c
9510 ____________________________________________________________________________
9511 [  7585] By: jhi                                   on 2000/11/07  00:12:54
9512         Log: Subject: Pod updates
9513              From: "Stephen P. Potter" <spp@spotter.yi.org>
9514              Date: Mon, 06 Nov 2000 18:56:43 -0500
9515              Message-Id: <200011062357.SAA18173@spotter.yi.org>
9516      Branch: perl
9517            ! README.dos README.os2 README.win32 pod/buildtoc.PL
9518            ! pod/perl.pod pod/perl5004delta.pod pod/perl5005delta.pod
9519            ! pod/perl56delta.pod pod/perldebguts.pod pod/perldebtut.pod
9520            ! pod/perldebug.pod pod/perldelta.pod pod/perldiag.pod
9521            ! pod/perlembed.pod pod/perlfaq.pod pod/perlfaq1.pod
9522            ! pod/perlfaq2.pod pod/perlfaq5.pod pod/perlfaq7.pod
9523            ! pod/perlfaq8.pod pod/perlfilter.pod pod/perlfunc.pod
9524            ! pod/perlguts.pod pod/perlhack.pod pod/perlhist.pod
9525            ! pod/perlipc.pod pod/perllexwarn.pod pod/perllocale.pod
9526            ! pod/perlmodlib.pod pod/perlnumber.pod pod/perlop.pod
9527            ! pod/perlopentut.pod pod/perlport.pod pod/perlre.pod
9528            ! pod/perlsub.pod pod/perltie.pod pod/perltoot.pod
9529            ! pod/perltootc.pod pod/perlunicode.pod
9530 ____________________________________________________________________________
9531 [  7584] By: jhi                                   on 2000/11/07  00:04:17
9532         Log: Varargs don't always work too well if one puts an unsigned
9533              char on the stack and pop an unsigned quad off the stack.
9534              
9535              Subject: Re: [ID 20001103.002] Not OK: perl v5.7.0 +DEVEL7523 on os2-64int-ld-2.30 (UNINSTALLED)
9536              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)         
9537              Date: Mon, 06 Nov 2000 15:19:05 -0800
9538              Message-ID: <pxzB6gzkgKXY092yn@efn.org>  
9539      Branch: perl
9540            ! utf8.c
9541 ____________________________________________________________________________
9542 [  7583] By: jhi                                   on 2000/11/06  23:58:48
9543         Log: %ENV note tweaks from Dan Sugalski.
9544      Branch: perl
9545            ! pod/perlport.pod vms/perlvms.pod
9546 ____________________________________________________________________________
9547 [  7582] By: jhi                                   on 2000/11/06  23:05:49
9548         Log: glibc5 detection by __GNU_LIBRARY__.
9549      Branch: perl
9550            ! toke.c
9551 ____________________________________________________________________________
9552 [  7581] By: jhi                                   on 2000/11/06  22:51:29
9553         Log: Make the stdio test program of 7427 less noisy while being 
9554              compiled so that Digital UNIX wouldn't get both
9555              d_stdio_ptr_lval_nochange_cnt and d_stdio_ptr_lval_sets_cnt
9556              undefined.  This makes perlio happy.
9557      Branch: metaconfig
9558            ! U/compline/d_stdstdio.U
9559      Branch: perl
9560            ! Configure config_h.SH
9561 ____________________________________________________________________________
9562 [  7580] By: jhi                                   on 2000/11/06  22:41:41
9563         Log: Document %ENV = () portability issues.
9564      Branch: perl
9565            ! pod/perlport.pod vms/perlvms.pod
9566 ____________________________________________________________________________
9567 [  7579] By: jhi                                   on 2000/11/06  21:29:24
9568         Log: VOS updates from Paul Green.
9569      Branch: perl
9570            ! vos/config.alpha.h vos/config.ga.def vos/config.ga.h
9571 ____________________________________________________________________________
9572 [  7578] By: jhi                                   on 2000/11/06  21:00:40
9573         Log: Sanitize the environment further.
9574      Branch: perl
9575            ! t/pragma/locale.t
9576 ____________________________________________________________________________
9577 [  7577] By: jhi                                   on 2000/11/06  20:53:51
9578         Log: Re-introduce 7552 lost in integration.
9579      Branch: perl
9580            ! perlio.c
9581 ____________________________________________________________________________
9582 [  7576] By: jhi                                   on 2000/11/06  20:33:46
9583         Log: Admit that the test leaks scalars.
9584      Branch: perl
9585            ! t/comp/proto.t
9586 ____________________________________________________________________________
9587 [  7575] By: jhi                                   on 2000/11/06  20:17:08
9588         Log: Integrate perlio.
9589      Branch: perl
9590           !> perlio.c
9591 ____________________________________________________________________________
9592 [  7574] By: nick                                  on 2000/11/06  20:07:28
9593         Log: Remove debug. Try (Mmap_t) on madvise() call.
9594      Branch: perlio
9595            ! perlio.c
9596 ____________________________________________________________________________
9597 [  7573] By: jhi                                   on 2000/11/06  13:56:05
9598         Log: Update Changes.
9599      Branch: perl
9600            ! Changes patchlevel.h
9601 ____________________________________________________________________________
9602 [  7572] By: jhi                                   on 2000/11/06  13:48:41
9603         Log: Subject: Re: rsync'ed patches vs. rsync'ed source
9604              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
9605              Date: Mon, 06 Nov 2000 10:11:42 +0100
9606              Message-Id: <20001106100920.9BAD.H.M.BRAND@hccnet.nl>
9607      Branch: perl
9608            ! pod/perlhack.pod
9609 ____________________________________________________________________________
9610 [  7571] By: jhi                                   on 2000/11/06  01:45:51
9611         Log: AUTHORS updates.
9612      Branch: perl
9613            ! AUTHORS
9614 ____________________________________________________________________________
9615 [  7570] By: jhi                                   on 2000/11/06  00:18:00
9616         Log: Fix for
9617              
9618              Subject: [ID 20000728.005] perl -P broken
9619              From: David Dyck <dcd@tc.fluke.com>
9620              Date: Fri, 28 Jul 2000 17:19:16 -0700
9621              Message-Id: <200007290019.RAA08484@dd.tc.fluke.com>
9622              
9623              (hopefully).  The fix is also not complete, it seems to break
9624              BOM swallowing for libc5 systems, but until someone figures
9625              out a way to do this without ftell(), this will do.
9626      Branch: perl
9627            ! toke.c
9628 ____________________________________________________________________________
9629 [  7569] By: jhi                                   on 2000/11/06  00:05:30
9630         Log: Document that the evaled syntax errors cause scalar leaks.
9631      Branch: perl
9632            ! t/comp/proto.t
9633 ____________________________________________________________________________
9634 [  7568] By: jhi                                   on 2000/11/05  23:14:47
9635         Log: opmini.o can linger from Configures past.
9636      Branch: perl
9637            ! Makefile.SH
9638 ____________________________________________________________________________
9639 [  7567] By: jhi                                   on 2000/11/05  21:28:39
9640         Log: Fake __FUNCTION__ for non-gcc builds, cast madvise()
9641              first argument correctly.
9642      Branch: perl
9643            ! perlio.c
9644 ____________________________________________________________________________
9645 [  7566] By: jhi                                   on 2000/11/05  21:15:56
9646         Log: Integrate perlio.
9647      Branch: perl
9648           !> perlio.c
9649 ____________________________________________________________________________
9650 [  7565] By: jhi                                   on 2000/11/05  21:15:13
9651         Log: Use -dM for gcc (the suggested patch did it only for Linux,
9652              but I think it can be generalized).
9653              
9654              Subject: Re: connect and $!{EINPROGRESS} pb (was [ID 20001030.010] [PATCH] io_multihomed.t failing)
9655              From: Pixel <pixel@mandrakesoft.com>
9656              Date: 05 Nov 2000 21:49:34 +0100 
9657              Message-ID: <ly8zqygn4x.fsf@leia.mandrakesoft.com>
9658      Branch: perl
9659            ! ext/Errno/Errno_pm.PL
9660 ____________________________________________________________________________
9661 [  7564] By: nick                                  on 2000/11/05  21:09:18
9662         Log: Added a mmap layer as a "subclass" of perlio.
9663              PERLIO=mmap ./perl harness passes
9664      Branch: perlio
9665            ! perlio.c
9666 ____________________________________________________________________________
9667 [  7563] By: jhi                                   on 2000/11/05  19:48:55
9668         Log: Add a note for future generations about bug id 20000229.006.
9669      Branch: perl
9670            ! malloc.c
9671 ____________________________________________________________________________
9672 [  7562] By: jhi                                   on 2000/11/05  19:38:24
9673         Log: Fix for bug id 19990615.008, pos() unset during s///ge.
9674      Branch: perl
9675            ! pp_ctl.c t/op/pos.t
9676 ____________________________________________________________________________
9677 [  7561] By: jhi                                   on 2000/11/05  18:21:46
9678         Log: Add =pod to be tidy.
9679      Branch: perl
9680            ! lib/Math/Complex.pm
9681 ____________________________________________________________________________
9682 [  7560] By: jhi                                   on 2000/11/05  17:38:46
9683         Log: Upgrade to Storable 1.0.6, from Raphael Manfredi.
9684      Branch: perl
9685            ! ext/Storable/ChangeLog ext/Storable/Storable.pm
9686            ! ext/Storable/Storable.xs t/lib/st-recurse.t
9687 ____________________________________________________________________________
9688 [  7559] By: jhi                                   on 2000/11/05  17:32:59
9689         Log: Subject: [Corrected/tested PATCH] Re: [ID 20001102.008] Not OK: perl v5.7.0 +DEVEL7503 on i686-linux 2.2.16
9690              From: "Peter J. Farley III" <pjfarley@banet.net>
9691              Date: Sun, 05 Nov 2000 11:55:59 -0500
9692              Message-Id: <4.3.1.0.20001105115341.00b35160@pop5.banet.net> 
9693      Branch: perl
9694            ! t/lib/syslog.t
9695 ____________________________________________________________________________
9696 [  7558] By: jhi                                   on 2000/11/05  17:29:19
9697         Log: Integrate perlio.
9698      Branch: perl
9699           !> perlio.c
9700 ____________________________________________________________________________
9701 [  7557] By: jhi                                   on 2000/11/05  17:22:01
9702         Log: A fix of sorts for 20000329.026, a better error message
9703              for a missing "use charnames" when using the \N{...}. 
9704      Branch: perl
9705            ! pod/perldiag.pod toke.c
9706 ____________________________________________________________________________
9707 [  7556] By: jhi                                   on 2000/11/05  16:33:50
9708         Log: Test tweak: show also the failed locales.
9709              
9710              Subject: [ID 20001105.001] Not OK: perl v5.7.0 +DEVEL7523 on i86pc-solaris 2.8  
9711              From: Lupe Christoph <lupe@lupe-christoph.de>         
9712              Date: Sun, 5 Nov 2000 12:39:27 +0100 (MET)
9713              Message-Id: <200011051139.MAA12442@lupe-christoph.de>
9714      Branch: perl
9715            ! t/pragma/locale.t
9716 ____________________________________________________________________________
9717 [  7555] By: nick                                  on 2000/11/05  11:09:34
9718         Log: Fix read from STDERR on raw unix layer for Solaris where fd 2 is
9719              open RDWR so does not fail. (pragma/warnings 303 again...)
9720      Branch: perlio
9721            ! perlio.c
9722 ____________________________________________________________________________
9723 [  7554] By: nick                                  on 2000/11/05  10:10:13
9724         Log: Fix case where ungetc(f,EOF) was allowed.
9725              Move PerlIO_ungetc() near PerlIO_putc()/PerlIO_getc() in the file
9726              so we can see similarities.
9727              Use types more carefully and a STDCHAR array in hope that this will
9728              fix Jarrko's 64bit machine.
9729      Branch: perlio
9730            ! perlio.c
9731 ____________________________________________________________________________
9732 [  7553] By: jhi                                   on 2000/11/05  01:12:16
9733         Log: Fix for
9734              
9735              Subject: [ID 20001004.007] taint propogation is inconsistent
9736              From: pimlott@idiomtech.com (Andrew Pimlott) 
9737              Date: Wed, 4 Oct 2000 23:17:44 -0400 (EDT)
9738              Message-Id: <m13h1XU-000SEmC@nolfolan.idiomtech.com>
9739              
9740              The culprit was sv_setsv() which was rather blindly
9741              propagating taint, which lead to behaviour where if
9742              a tainted anon hash value was seen all the hash values
9743              from then on at that level became tainted, or at any
9744              upper levels in the case of nested anon hashes.
9745      Branch: perl
9746            ! sv.c t/op/taint.t
9747 ____________________________________________________________________________
9748 [  7552] By: jhi                                   on 2000/11/04  23:44:18
9749         Log: Some cpps don't like splitting conditionals across several lines.
9750      Branch: perl
9751            ! perlio.c
9752 ____________________________________________________________________________
9753 [  7551] By: nick                                  on 2000/11/04  23:40:44
9754         Log: Integrate mainline
9755      Branch: perlio
9756           !> pp_hot.c t/op/taint.t
9757 ____________________________________________________________________________
9758 [  7550] By: nick                                  on 2000/11/04  23:39:05
9759         Log: Integrate mainline again
9760      Branch: perlio
9761           !> Configure config_h.SH embed.h embed.pl perl.h proto.h
9762           !> t/lib/b.t t/op/misc.t util.c
9763 ____________________________________________________________________________
9764 [  7549] By: jhi                                   on 2000/11/04  23:14:01
9765         Log: Fix for
9766              
9767              Subject: [ID 20001004.006] undef is never tainted
9768              From: pimlott@idiomtech.com (Andrew Pimlott)
9769              Date: Wed, 4 Oct 2000 21:57:43 -0400 (EDT)
9770              Message-Id: <m13h0I3-000SEmC@nolfolan.idiomtech.com>
9771              
9772              An undef read from a slurped file was not tainted.
9773      Branch: perl
9774            ! pp_hot.c t/op/taint.t
9775 ____________________________________________________________________________
9776 [  7548] By: jhi                                   on 2000/11/04  22:56:21
9777         Log: Test tweak ($Config{useperlio} is by default undef) .
9778      Branch: perl
9779            ! t/lib/b.t
9780 ____________________________________________________________________________
9781 [  7547] By: jhi                                   on 2000/11/04  22:43:56
9782         Log: Integrate perlio.
9783      Branch: perl
9784           +> lib/perlio.pm
9785           !> MANIFEST iperlsys.h objXSUB.h perlapi.c perlio.c
9786           !> pod/perlapi.pod t/lib/b.t
9787 ____________________________________________________________________________
9788 [  7546] By: jhi                                   on 2000/11/04  22:40:59
9789         Log: Configure would use a bad $myuname from an old config.sh.
9790              
9791              Subject: [PATCH 5.6.1-to-be and 5.7.x] Very old Configure myuname bug
9792              From: Andy Dougherty <doughera@lafayette.edu>
9793              Date: Sat, 4 Nov 2000 14:15:29 -0500 (EST)
9794              Message-ID: <Pine.SOL.4.10.10011041410120.982-100000@maxwell.phys.lafayette.edu>
9795      Branch: metaconfig
9796            ! U/modified/Oldconfig.U
9797      Branch: perl
9798            ! Configure config_h.SH
9799 ____________________________________________________________________________
9800 [  7545] By: jhi                                   on 2000/11/04  22:36:54
9801         Log: Subject: Locales support (setlocale) fixes
9802              From: "Konovalov, Vadim" <vkonovalov@lucent.com>
9803              Date: Sat, 4 Nov 2000 10:15:48 +0300 
9804              Message-ID: <402099F49BEED211999700805FC7359F82511F@ru0028exch01.spb.lucent.com>
9805              
9806              Modified quite a bit to be more portable.
9807      Branch: perl
9808            ! embed.h embed.pl perl.h proto.h util.c
9809 ____________________________________________________________________________
9810 [  7544] By: jhi                                   on 2000/11/04  22:32:47
9811         Log: Dying is too strict here, better just skip.
9812      Branch: perl
9813            ! t/op/misc.t
9814 ____________________________________________________________________________
9815 [  7543] By: nick                                  on 2000/11/04  21:55:13
9816         Log: Merge mainline
9817      Branch: perlio
9818           +> ext/Encode/Encode/cp1047.enc ext/Encode/Encode/cp37.enc
9819           +> ext/Encode/Encode/posix-bc.enc ext/re/hints/aix.pl
9820           +> t/lib/tie-refhash.t t/lib/tie-substrhash.t
9821           !> (integrate 64 files)
9822 ____________________________________________________________________________
9823 [  7542] By: jhi                                   on 2000/11/04  21:09:28
9824         Log: More Changes tweakery.
9825      Branch: perl
9826            ! Changes Porting/genlog
9827 ____________________________________________________________________________
9828 [  7541] By: jhi                                   on 2000/11/04  20:58:18
9829         Log: Changes fixups.
9830      Branch: perl
9831            ! Changes
9832 ____________________________________________________________________________
9833 [  7540] By: jhi                                   on 2000/11/04  20:42:38
9834         Log: Locale tweakery.  Add test case for bug id 20000809.003 to op/misc,
9835              create a "fast path" for locale name probing using "locale -a"
9836              if available, squash finally hopefully the s?printf resetting
9837              the numeric locale (since, IIUC perllocale, it never shouldn't). 
9838      Branch: perl
9839            ! sv.c t/op/misc.t t/pragma/locale.t
9840 ____________________________________________________________________________
9841 [  7539] By: nick                                  on 2000/11/04  19:56:10
9842         Log: PerlIO infrastructure complete.
9843      Branch: perlio
9844            + lib/perlio.pm
9845            ! MANIFEST iperlsys.h perlio.c t/lib/b.t
9846 ____________________________________________________________________________
9847 [  7538] By: nick                                  on 2000/11/04  14:31:32
9848         Log: Type tweaks + less contorted allocation scheme
9849      Branch: perlio
9850            ! perlio.c
9851 ____________________________________________________________________________
9852 [  7537] By: nick                                  on 2000/11/04  12:40:42
9853         Log: Fix for stdio as default "discipline" - PerlIO_init() was fdopen(2,"w")'ing
9854              a fresh FILE * rather than re-using stderr. Which meant PerlIO_stderr() was
9855              fully buffered rather than unbuffered (on Solaris, Linux seemed to do something
9856              sensible) which lead to some interesting fails.
9857      Branch: perlio
9858            ! perlio.c
9859 ____________________________________________________________________________
9860 [  7536] By: jhi                                   on 2000/11/04  00:20:02
9861         Log: Add FCNTL_CAN_LOCK.
9862              
9863              Subject: Re: [ID 20001030.011] Not OK: perl v5.7.0 +DEVEL7481 on VMS_AXP V7.1 (UNINSTALLED)
9864              From: Andy Dougherty <doughera@lafayette.edu>
9865              Date: Fri, 3 Nov 2000 15:32:14 -0500 (EST)
9866              Message-ID: <Pine.SOL.4.10.10011031528090.29-100000@maxwell.phys.lafayette.edu>
9867              
9868              Subject: Re: [ID 20001030.011] Not OK: perl v5.7.0 +DEVEL7481 on VMS_AXP V7.1 (UNINSTALLED)
9869              From: Andy Dougherty <doughera@lafayette.edu>
9870              In-Reply-To: <4.3.1.0.20001031222203.00b24b20@pop5.banet.net>
9871              Message-ID: <Pine.SOL.4.10.10011031532170.29-100000@maxwell.phys.lafayette.edu>
9872      Branch: metaconfig/U/perl
9873            + d_fcntl_can_lock.U
9874            ! startperl.U
9875      Branch: perl
9876            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
9877            ! config_h.SH epoc/config.sh pp_sys.c uconfig.h uconfig.sh
9878            ! vos/config.alpha.def vos/config.alpha.h vos/config.ga.def
9879            ! vos/config.ga.h win32/config.bc win32/config.gc
9880            ! win32/config.vc
9881 ____________________________________________________________________________
9882 [  7535] By: nick                                  on 2000/11/03  22:19:10
9883         Log: Implement stack of layers - (perlio.c _is_ derived from the old file honest...)
9884              - Works on Linux with
9885              perlio + unix
9886              stdio
9887              - Works on Solaris with
9888              perlio + unix
9889              - Fails ONE test (print to STDIN should fail) on Solaris with stdio.
9890              - Fails (hangs in openpid) if you try and stack
9891              perlio + stdio - Linux stdio's read() logic is hanging.
9892      Branch: perlio
9893            ! iperlsys.h perlio.c
9894 ____________________________________________________________________________
9895 [  7534] By: jhi                                   on 2000/11/03  15:16:02
9896         Log: Subject: Re: README.aix
9897              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
9898              Date: Fri, 03 Nov 2000 16:03:15 +0100
9899              Message-Id: <20001103151040.95C6.H.M.BRAND@hccnet.nl>
9900      Branch: perl
9901            ! README.aix
9902 ____________________________________________________________________________
9903 [  7533] By: jhi                                   on 2000/11/03  03:59:02
9904         Log: Subject: [PATCH 5.7.0] better messages from malloc()
9905              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
9906              Date: Wed, 1 Nov 2000 23:39:56 -0500
9907              Message-ID: <20001101233956.A520@monk.mps.ohio-state.edu>
9908      Branch: perl
9909            ! malloc.c pod/perldiag.pod
9910 ____________________________________________________________________________
9911 [  7532] By: jhi                                   on 2000/11/03  00:11:56
9912         Log: The #7521 touched things it shouldn't have.
9913      Branch: perl
9914            ! ext/POSIX/POSIX.xs ext/POSIX/typemap
9915 ____________________________________________________________________________
9916 [  7531] By: jhi                                   on 2000/11/02  22:32:33
9917         Log: Subject:  [PATCH] Perl@7504, vms/gen_shrfls.pl
9918              From: lane@DUPHY4.Physics.Drexel.Edu (Charles Lane)
9919              Date:     Thu, 2 Nov 2000 16:58:36 EST
9920              Message-Id: <001102165758.31020@DUPHY4.Physics.Drexel.Edu>
9921      Branch: perl
9922            ! vms/gen_shrfls.pl
9923 ____________________________________________________________________________
9924 [  7530] By: jhi                                   on 2000/11/02  22:08:49
9925         Log: Fix the problem discussed in
9926              
9927              Subject: [ID 20001015.004] Fwd: Tie::SubstrHash -- bug & fix (all Perl versions)
9928              Date: Mon, 16 Oct 2000 04:48:59 +0300 (EET DST) 
9929              Message-Id: <200010160148.EAA14523@alpha.hut.fi> 
9930              
9931              originally from Linc Madison.  Also Andreas König's comments
9932              taken into account.  Some other problems with Tie::SubstrHash
9933              fixed: didn't croak when the table exceeded the requested number
9934              of entries (as documented) but instead when the number of entries
9935              exceeded the size of the table, a croak() had an unnecessary \n,
9936              didn't have a CLEAR method, documented that there is no exists().
9937              Didn't fix to be strict-proof because the module uses &foo; and
9938              dynamic scope.  Added a test script exercizing both first tamely 
9939              the basic functionality, and then the failure cases reported by
9940              Linc Madison.
9941      Branch: perl
9942            + t/lib/tie-substrhash.t
9943            ! MANIFEST lib/Tie/SubstrHash.pm
9944 ____________________________________________________________________________
9945 [  7529] By: jhi                                   on 2000/11/02  17:58:08
9946         Log: recv() can fail and return undef.
9947              
9948              Subject: [ID 20001102.003] Net::Ping patch: "Bad arg lenght" error appears if host is unreachable    
9949              From: "Alexey V. Barantsev" <barancev@kazbek.ispras.ru>
9950              Date: Thu, 2 Nov 2000 20:12:20 +0300
9951              Message-Id: <200011021712.UAA07919@dallas.kazbek.ispras.ru>
9952      Branch: perl
9953            ! lib/Net/Ping.pm
9954 ____________________________________________________________________________
9955 [  7528] By: jhi                                   on 2000/11/02  17:49:09
9956         Log: Detpyo.
9957      Branch: perl
9958            ! pod/perlop.pod
9959 ____________________________________________________________________________
9960 [  7527] By: jhi                                   on 2000/11/02  15:48:37
9961         Log: Add Tie::RefHash::Nestable (lives in Tie/RefHash.pm),
9962              fix a autovivification bug in Tie::RefHash, add tests for both.
9963              
9964              Subject: Re: Tie::RefHash: use hash refs as keys in nested hashes
9965              From: Edward Avis <epa98@doc.ic.ac.uk>
9966              Date: Thu, 2 Nov 2000 15:24:30 +0000 (GMT)
9967              Message-ID: <Pine.LNX.4.21.0011021516010.8344-100000@texel03.doc.ic.ac.uk>
9968      Branch: perl
9969            + t/lib/tie-refhash.t
9970            ! MANIFEST lib/Tie/RefHash.pm
9971 ____________________________________________________________________________
9972 [  7526] By: jhi                                   on 2000/11/02  13:56:26
9973         Log: Test::Harness revealed buglets in the new DynaLoader.
9974              
9975              Subject: [ID 20001102.001] Not OK: perl v5.7.0 +DEVEL7523 on i686-linux 2.2.16a (UNINSTALLED)
9976              From: andreas.koenig@anima.de (Andreas J. Koenig)
9977              Date: 02 Nov 2000 11:26:48 +0100 
9978              Message-Id: <m3vgu6k6tz.fsf@ak-71.mind.de>
9979      Branch: perl
9980            ! ext/DynaLoader/DynaLoader_pm.PL
9981 ____________________________________________________________________________
9982 [  7525] By: jhi                                   on 2000/11/01  23:52:08
9983         Log: The entry for #7503 was missing.
9984      Branch: perl
9985            ! Changes
9986 ____________________________________________________________________________
9987 [  7524] By: jhi                                   on 2000/11/01  23:40:52
9988         Log: Update Changes.
9989      Branch: perl
9990            ! Changes patchlevel.h
9991 ____________________________________________________________________________
9992 [  7523] By: jhi                                   on 2000/11/01  22:57:09
9993         Log: More tweaking on the #7522 theme.
9994      Branch: perl
9995            ! ext/DynaLoader/DynaLoader_pm.PL
9996 ____________________________________________________________________________
9997 [  7522] By: jhi                                   on 2000/11/01  22:06:15
9998         Log: Expand %Config variables and %ENV variables only if
9999              so requested during build time using the
10000              PERL_BUILD_EXPAND_CONFIG_VARS and PERL_BUILD_EXPAND_ENV_VARS.
10001              Not expanding makes relocating distributions easier.
10002      Branch: perl
10003            ! ext/DynaLoader/DynaLoader_pm.PL
10004 ____________________________________________________________________________
10005 [  7521] By: jhi                                   on 2000/11/01  20:56:34
10006         Log: Make the POSIX::setuid and POSIX::setgid to really call setuid()
10007              and setgid() because they were just changing $< and $( which means
10008              only changing the real uid/gid, as opposed to changing both
10009              real and effective ids.  (The alternative way could have been
10010              in POSIX.pm to change $> and $), too, but making a direct call
10011              to the C API feels cleaner.)  Fixes the bug
10012              
10013              Subject: [ID 20000904.005] POSIX::setuid() Doesn't Call setuid()
10014              From: "Garry T. Williams" <garry@zvolve.com>
10015              Date: Mon, 4 Sep 2000 12:09:44 -0400 (EDT)
10016              Message-Id: <200009041609.e84G9iN12155@ifr.inside.zvolve.net>
10017      Branch: perl
10018            ! ext/POSIX/POSIX.pm ext/POSIX/POSIX.pod ext/POSIX/POSIX.xs
10019            ! ext/POSIX/typemap pod/perlvar.pod
10020 ____________________________________________________________________________
10021 [  7520] By: jhi                                   on 2000/11/01  20:08:33
10022         Log: Subject: [ID 20000904.004] perlsec Manual Page Incorrect Doing "Safe Backticks"
10023              From: "Garry T. Williams" <garry@zvolve.com>
10024              Date: Mon, 4 Sep 2000 11:32:38 -0400 (EDT)
10025              Message-Id: <200009041532.e84FWcl12106@ifr.inside.zvolve.net>
10026      Branch: perl
10027            ! pod/perlsec.pod
10028 ____________________________________________________________________________
10029 [  7519] By: jhi                                   on 2000/11/01  20:01:22
10030         Log: Locale warning explanation tweak.
10031      Branch: perl
10032            ! pod/perldiag.pod
10033 ____________________________________________________________________________
10034 [  7518] By: jhi                                   on 2000/11/01  18:57:13
10035         Log: C.pm part of
10036              
10037              Subject: [ID 20001010.001] [Daniel.Stutz@astaro.de: perlcc and C.pm in perl-5.7.0]
10038              From: Jarkko Hietaniemi <jhi@iki.fi>
10039              Date: Tue, 10 Oct 2000 08:22:28 -0500
10040              Message-Id: <20001010082228.B17030@chaos.wustl.edu>
10041      Branch: perl
10042            ! ext/B/B/C.pm
10043 ____________________________________________________________________________
10044 [  7517] By: jhi                                   on 2000/11/01  18:41:59
10045         Log: Subject: [ID 20001005.006] Documentation -- description of qr//
10046              From: Martien Verbruggen <mgjv@comdyn.com.au>
10047              Date: Fri, 6 Oct 2000 14:09:10 +1100
10048              Message-Id: <200010060309.OAA03457@verbruggen.comdyn.com.au>
10049      Branch: perl
10050            ! pod/perlop.pod
10051 ____________________________________________________________________________
10052 [  7516] By: jhi                                   on 2000/11/01  18:34:55
10053         Log: Generalize the Camel wording.
10054              
10055              Subject: Re: perlfaq style changes
10056              From: John Borwick <jhborwic@unity.ncsu.edu>
10057              Date: Wed, 1 Nov 2000 13:19:21 -0500 (EST)
10058              Message-ID: <Pine.GSO.4.21.0011011318270.7428-100000@eos00du.eos.ncsu.edu>
10059      Branch: perl
10060            ! pod/perlfaq3.pod pod/perlfaq8.pod pod/perlfaq9.pod
10061 ____________________________________________________________________________
10062 [  7515] By: jhi                                   on 2000/11/01  16:52:31
10063         Log: Subject: [ID 20001005.004] doc bug: perlsec misleading re file output
10064              From: pimlott@idiomtech.com (Andrew Pimlott)
10065              Date: Thu, 5 Oct 2000 13:20:58 -0400 (EDT)
10066              Message-Id: <m13hEhW-000SEmC@nolfolan.idiomtech.com>
10067      Branch: perl
10068            ! pod/perlsec.pod
10069 ____________________________________________________________________________
10070 [  7514] By: jhi                                   on 2000/11/01  15:03:40
10071         Log: More AIX lore.
10072      Branch: perl
10073            ! ext/re/hints/aix.pl
10074 ____________________________________________________________________________
10075 [  7513] By: jhi                                   on 2000/11/01  14:48:30
10076         Log: Subject: [ID 20001101.001] Net::Ping icmp odd $bytes
10077              From: root <root@chronos.fi.muni.cz>
10078              Date: Wed, 1 Nov 2000 12:31:32 +0100
10079              Message-Id: <200011011131.MAA03310@chronos.fi.muni.cz>
10080      Branch: perl
10081            ! lib/Net/Ping.pm
10082 ____________________________________________________________________________
10083 [  7512] By: jhi                                   on 2000/11/01  14:46:47
10084         Log: Subject: [ID 20001031.004] Uninitialized auto variable in regcomp.c
10085              From: Martin Husemann <martin@duskware.de>
10086              Date: Tue, 31 Oct 2000 23:39:35 +0100 (MET)
10087              Message-Id: <200010312239.e9VMdZR01580@night-porter.duskware.de>
10088      Branch: perl
10089            ! regcomp.c
10090 ____________________________________________________________________________
10091 [  7511] By: jhi                                   on 2000/11/01  14:39:50
10092         Log: AUTHORS updates.
10093      Branch: perl
10094            ! AUTHORS
10095 ____________________________________________________________________________
10096 [  7510] By: jhi                                   on 2000/11/01  14:29:50
10097         Log: Subject: [PATCH] startperl to respect versiononly
10098              From: Robin Barker <rmb1@cise.npl.co.uk> 
10099              Date: Tue, 31 Oct 2000 16:29:36 GMT
10100              Message-Id: <200010311629.QAA01771@tempest.npl.co.uk>
10101      Branch: metaconfig/U/perl
10102            ! startperl.U
10103      Branch: perl
10104            ! Configure config_h.SH
10105 ____________________________________________________________________________
10106 [  7509] By: jhi                                   on 2000/11/01  14:19:53
10107         Log: printf UVs the correct way, noticed by Robin Barker.
10108      Branch: perl
10109            ! utf8.c
10110 ____________________________________________________________________________
10111 [  7508] By: jhi                                   on 2000/11/01  14:10:03
10112         Log: Do not cleanup *% because the % has special meanings in some
10113              shell environments.
10114      Branch: perl
10115            ! ext/Storable/Makefile.PL
10116 ____________________________________________________________________________
10117 [  7507] By: jhi                                   on 2000/11/01  14:06:00
10118         Log: The NonStop-UX libraries have a novel way to say NaN.
10119      Branch: perl
10120            ! t/lib/bigfltpm.t
10121 ____________________________________________________________________________
10122 [  7506] By: jhi                                   on 2000/11/01  14:03:35
10123         Log: The osname has been lowercased by now, from Tom Bates.
10124      Branch: metaconfig
10125            ! U/modified/Oldconfig.U
10126      Branch: perl
10127            ! Configure config_h.SH
10128 ____________________________________________________________________________
10129 [  7505] By: jhi                                   on 2000/10/31  19:18:39
10130         Log: The compiler is either gcc or cc, from Tom Bates.
10131      Branch: perl
10132            ! hints/nonstopux.sh
10133 ____________________________________________________________________________
10134 [  7504] By: jhi                                   on 2000/10/31  14:53:42
10135         Log: Update Changes.
10136      Branch: perl
10137            ! Changes patchlevel.h
10138 ____________________________________________________________________________
10139 [  7503] By: jhi                                   on 2000/10/31  14:30:50
10140         Log: Whitespace style tweak.  Was originally going to see to
10141              
10142              Subject: PATCH (Re: PerlIO - Configure tweak for Linux/glibc?)
10143              From: Joe Smith <jms@inwap.com>
10144              Date: Mon, 30 Oct 2000 18:47:57 -0800
10145              Message-Id: <39FE32DD.24AAC4D@inwap.com>
10146              
10147              but that had already been taken care of.
10148      Branch: metaconfig
10149            ! U/compline/d_stdstdio.U
10150      Branch: perl
10151            ! Configure config_h.SH
10152 ____________________________________________________________________________
10153 [  7502] By: jhi                                   on 2000/10/31  14:25:02
10154         Log: AUTHORS tweaks.
10155      Branch: perl
10156            ! AUTHORS
10157 ____________________________________________________________________________
10158 [  7501] By: jhi                                   on 2000/10/31  14:23:59
10159         Log: Subject: perlfaq style changes
10160              From: John Borwick <jhborwic@unity.ncsu.edu>
10161              Date: Tue, 31 Oct 2000 03:15:11 -0500 (EST)
10162              Message-ID: <Pine.GSO.4.21.0010310307500.5819-100000@eos00du.eos.ncsu.edu>
10163      Branch: perl
10164            ! pod/perlfaq.pod pod/perlfaq1.pod pod/perlfaq2.pod
10165            ! pod/perlfaq3.pod pod/perlfaq4.pod pod/perlfaq5.pod
10166            ! pod/perlfaq6.pod pod/perlfaq7.pod pod/perlfaq8.pod
10167            ! pod/perlfaq9.pod
10168 ____________________________________________________________________________
10169 [  7500] By: jhi                                   on 2000/10/31  14:22:15
10170         Log: Be more lenient on bad UTF-8 when doing bit arithmetics.
10171              
10172              Subject: Re: [ID 20000918.005] ~ on wide chars
10173              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
10174              Date: Mon, 30 Oct 2000 21:09:55 -0800
10175              Message-ID: <jQl/5gzkgWYL092yn@efn.org>
10176              
10177              (The ord() part of the patch skipped.)
10178      Branch: perl
10179            ! doop.c
10180 ____________________________________________________________________________
10181 [  7499] By: jhi                                   on 2000/10/31  14:20:08
10182         Log: Subject: [ID 20001030.001] 5.7.0-7489: Null-Pointer reference in mg.c
10183              From: Jens Hamisch <jens@Strawberry.COM>
10184              Date: Mon, 30 Oct 2000 15:17:07 +0100
10185              Message-Id: <20001030151707.A9597@Strawberry.COM>
10186      Branch: perl
10187            ! av.c
10188 ____________________________________________________________________________
10189 [  7498] By: jhi                                   on 2000/10/31  14:16:29
10190         Log: Subject: [PATCH: perl@7483] add three new EBCDIC Encode-ings && many tests
10191              From: Peter Prymmer <pvhp@forte.com>
10192              Date: Mon, 30 Oct 2000 16:59:11 -0800 (PST)
10193              Message-ID: <Pine.OSF.4.10.10010301643590.67363-100000@aspara.forte.com>
10194      Branch: perl
10195            + ext/Encode/Encode/cp1047.enc ext/Encode/Encode/cp37.enc
10196            + ext/Encode/Encode/posix-bc.enc
10197            ! MANIFEST t/lib/encode.t
10198 ____________________________________________________________________________
10199 [  7497] By: jhi                                   on 2000/10/31  14:13:22
10200         Log: Subject: [PATCH: perl@7483] fix coded control chars in cgi-html.t
10201              From: Peter Prymmer <pvhp@forte.com>
10202              Date: Mon, 30 Oct 2000 17:48:11 -0800 (PST)
10203              Message-ID: <Pine.OSF.4.10.10010301746350.69159-100000@aspara.forte.com>
10204      Branch: perl
10205            ! t/lib/cgi-html.t
10206 ____________________________________________________________________________
10207 [  7496] By: jhi                                   on 2000/10/31  14:12:05
10208         Log: Subject: [PATCH: perl@7483] CRLF fix for cgi-function.t tests
10209              From: Peter Prymmer <pvhp@forte.com>
10210              Date: Mon, 30 Oct 2000 17:46:33 -0800 (PST)
10211              Message-ID: <Pine.OSF.4.10.10010301745120.69159-100000@aspara.forte.com>
10212      Branch: perl
10213            ! t/lib/cgi-function.t
10214 ____________________________________________________________________________
10215 [  7495] By: jhi                                   on 2000/10/31  14:11:08
10216         Log: Subject: [PATCH: perl@7483] generalize AIX ccversion hack for re extension
10217              From: Peter Prymmer <pvhp@forte.com>
10218              Date: Mon, 30 Oct 2000 16:41:21 -0800 (PST)
10219              Message-ID: <Pine.OSF.4.10.10010301634500.67363-100000@aspara.forte.com>
10220      Branch: perl
10221            + ext/re/hints/aix.pl
10222            ! MANIFEST ext/re/Makefile.PL
10223 ____________________________________________________________________________
10224 [  7494] By: jhi                                   on 2000/10/31  14:08:32
10225         Log: Use Errno magic.
10226              
10227              Subject: [ID 20001030.009] [PATCH] ftmp-mktemp failing
10228              From: Casey Tweten <perl@ctweten.amsite.com>
10229              Date: Mon, 30 Oct 2000 15:51:17 -0500
10230              Message-Id: <200010302051.e9UKpHd02194@ctweten.amsite.com>
10231      Branch: perl
10232            ! lib/File/Temp.pm
10233 ____________________________________________________________________________
10234 [  7493] By: jhi                                   on 2000/10/31  14:05:07
10235         Log: Add a perlbug flag, -A, to avoid acknowledgement messages.
10236              
10237              Subject: PATCH (Re: [ID 20001030.008] OK: perl v5.7.0 +DEVEL7445 on i586-linux 2.2.16 (UNINSTALLED))
10238              From: Nicholas Clark <nick@ccl4.org>
10239              Date: Mon, 30 Oct 2000 17:38:45 +0000
10240              Message-ID: <20001030173845.O60355@plum.flirble.org>
10241      Branch: perl
10242            ! Makefile.SH utils/perlbug.PL
10243 ____________________________________________________________________________
10244 [  7492] By: nick                                  on 2000/10/30  19:37:23
10245         Log: Change files which are mysteriously different to mainline to be
10246              copies of mainline.
10247      Branch: perlio
10248            ! objXSUB.h perlapi.c pod/perlapi.pod
10249 ____________________________________________________________________________
10250 [  7491] By: nick                                  on 2000/10/30  18:05:54
10251         Log: Perlio fixes discovered on big-endian & very traditional Solaris:
10252              - typo in endian code in putc.
10253              - Don't allow read of write-only files and vice-versa
10254              - and off-by-one in flush-all loop.
10255              Remove debug calls as they were using GCC specific features.
10256      Branch: perlio
10257            ! perlio.c
10258 ____________________________________________________________________________
10259 [  7490] By: nick                                  on 2000/10/29  21:45:45
10260         Log: Integrate mainline to perlio
10261      Branch: perlio
10262           !> lib/ExtUtils/Manifest.pm op.c t/comp/proto.t t/pragma/utf8.t
10263           !> toke.c
10264 ____________________________________________________________________________
10265 [  7489] By: jhi                                   on 2000/10/29  21:11:08
10266         Log: Subject: [Chris Winters <cwinters@intes.net>] patch to ExtUtils::Manifest
10267              From: andreas.koenig@anima.de (Andreas J. Koenig)
10268              Date: 29 Oct 2000 22:05:59 +0100
10269              Message-ID: <m3snpfqrwo.fsf@ak-71.mind.de>
10270      Branch: perl
10271            ! lib/ExtUtils/Manifest.pm
10272 ____________________________________________________________________________
10273 [  7488] By: jhi                                   on 2000/10/29  21:07:47
10274         Log: Tests for #7487.
10275              
10276              Subject: Re: [ID 20001029.002] Not OK: perl v5.7.0 +DEVEL7462 on i686-linux 2.2.16a (UNINSTALLED)
10277              From: andreas.koenig@anima.de (Andreas J. Koenig)
10278              Date: 29 Oct 2000 19:37:09 +0100
10279              Message-ID: <m34s1vsdd6.fsf@ak-71.mind.de>
10280      Branch: perl
10281            ! t/comp/proto.t
10282 ____________________________________________________________________________
10283 [  7487] By: jhi                                   on 2000/10/29  21:06:27
10284         Log: constsub spillage.
10285              
10286              Subject: Re: [ID 20001029.002] Not OK: perl v5.7.0 +DEVEL7462 on i686-linux 2.2.16a (UNINSTALLED)
10287              From: John Tobey <jtobey@john-edwin-tobey.org>
10288              Date: Sun, 29 Oct 2000 11:37:45 -0500 (EST)
10289              Message-Id: <m13pvSr-000FObC@feynman.localnet>
10290      Branch: perl
10291            ! op.c
10292 ____________________________________________________________________________
10293 [  7486] By: nick                                  on 2000/10/29  21:05:04
10294         Log: Integrate mainline to perlio branch
10295      Branch: perlio
10296           +> Porting/repository.pod lib/unicode/Is/DCmedial.pl
10297           +> t/lib/tie-splice.t vos/config.alpha.def vos/config.alpha.h
10298           +> vos/config.ga.def vos/config.ga.h vos/configure_perl.cm
10299           +> vos/install_perl.cm
10300            - MAINTAIN fix_pl lib/unicode/Is/DCinital.pl vos/config.def
10301            - vos/config.h vos/config_h.SH_orig
10302           !> (integrate 141 files)
10303 ____________________________________________________________________________
10304 [  7485] By: jhi                                   on 2000/10/29  21:00:47
10305         Log: Make \x{...} consistently produce UTF-8.
10306              
10307              Subject: Re: \x{...} is confused 
10308              From: Simon Cozens <simon@cozens.net>
10309              Date: Sun, 29 Oct 2000 19:36:48 +0000
10310              Message-ID: <20001029193648.A6287@pembro4.pmb.ox.ac.uk>
10311      Branch: perl
10312            ! t/pragma/utf8.t toke.c
10313 ____________________________________________________________________________
10314 [  7484] By: nick                                  on 2000/10/29  20:05:29
10315         Log: PerlIO passes all tests.
10316      Branch: perlio
10317            ! perlio.c
10318 ____________________________________________________________________________
10319 [  7483] By: jhi                                   on 2000/10/29  18:06:55
10320         Log: Update Changes.
10321      Branch: perl
10322            ! Changes patchlevel.h
10323 ____________________________________________________________________________
10324 [  7482] By: nick                                  on 2000/10/29  17:43:28
10325         Log: Include <unistd.h> to get correct lseek() prototype etc.
10326              (I thought perl.h did that) - down to two fails
10327              - comp/require.t (last test)
10328              - lib/io_xs.t - possibly import/export of FILE * ?
10329      Branch: perlio
10330            ! perlio.c
10331 ____________________________________________________________________________
10332 [  7481] By: jhi                                   on 2000/10/29  17:02:37
10333         Log: UTF-8 decoder tweak.
10334      Branch: perl
10335            ! utf8.c
10336 ____________________________________________________________________________
10337 [  7480] By: nick                                  on 2000/10/29  16:26:11
10338         Log: Fixed two bugs:
10339              - error code not being set on close (of broken pipe)
10340              - append mode was truncating.
10341              At least one seek/tell bug remains.
10342      Branch: perlio
10343            ! perlio.c
10344 ____________________________________________________________________________
10345 [  7479] By: nick                                  on 2000/10/29  11:18:16
10346         Log: Prototype (stdio-like) PerlIO passing basic tests. Checked in
10347              in case of accidents. Still several worrying fails, no line disciplines yet.
10348      Branch: perlio
10349            ! iperlsys.h perlio.c
10350 ____________________________________________________________________________
10351 [  7478] By: jhi                                   on 2000/10/29  02:04:01
10352         Log: Add also emailless people.
10353      Branch: perl
10354            ! AUTHORS
10355 ____________________________________________________________________________
10356 [  7477] By: jhi                                   on 2000/10/29  01:36:00
10357         Log: The #7476 needs a MANIFEST change, too.
10358      Branch: perl
10359            ! MANIFEST
10360 ____________________________________________________________________________
10361 [  7476] By: jhi                                   on 2000/10/29  01:35:21
10362         Log: Have only one master list of AUTHORS, drop unmaintained MAINTAIN.
10363      Branch: perl
10364            - MAINTAIN
10365            ! AUTHORS Changes
10366 ____________________________________________________________________________
10367 [  7475] By: jhi                                   on 2000/10/28  23:57:25
10368         Log: De-quoted-unreadable to ISO Latin 1.
10369              (There's one ISO-2022-JP name in Changes5.004.)
10370      Branch: perl
10371            ! Changes Changes5.6
10372 ____________________________________________________________________________
10373 [  7474] By: jhi                                   on 2000/10/28  19:13:06
10374         Log: Subject: [ID 20001027.007] uniq array in perlfaq
10375              From: Hans Ginzel <hans@kolej.mff.cuni.cz>     
10376              Date: Fri, 27 Oct 2000 19:28:30 +0200
10377              Message-Id: <20001027192830.A1564@kolej.mff.cuni.cz> 
10378      Branch: perl
10379            ! pod/perlfaq4.pod
10380 ____________________________________________________________________________
10381 [  7473] By: jhi                                   on 2000/10/28  18:02:05
10382         Log: Locking null mutexes is not recommendable.
10383              
10384              Subject: Re: [ID 20001027.008] Not OK: perl v5.7.0 +DEVEL7462 on i386-freebsd-thread-64all 4.1-stable (UNINSTALLED) 
10385              From: Hugo <hv@crypt.compulink.co.uk>
10386              Date: Sat, 28 Oct 2000 18:41:12 +0100
10387              Message-Id: <200010281741.SAA31327@crypt.compulink.co.uk>
10388      Branch: perl
10389            ! op.c
10390 ____________________________________________________________________________
10391 [  7472] By: jhi                                   on 2000/10/28  17:52:58
10392         Log: Better create a true mailing list for the repository keepers.
10393      Branch: perl
10394            ! Porting/repository.pod
10395 ____________________________________________________________________________
10396 [  7471] By: jhi                                   on 2000/10/28  17:28:24
10397         Log: Add the repository doc by Malcolm, Sarathy, and by Simon,
10398              name as suggested by Michael Bletzinger <mbletzin@ncsa.uiuc.edu>.
10399      Branch: perl
10400            + Porting/repository.pod
10401            ! MANIFEST
10402 ____________________________________________________________________________
10403 [  7470] By: jhi                                   on 2000/10/28  17:20:54
10404         Log: Subject: DOC PATCH 5.6.0
10405              From: mjd@plover.com
10406              Date: 27 Oct 2000 17:32:44 -0000
10407              Message-ID: <20001027173244.23754.qmail@plover.com>
10408      Branch: perl
10409            ! pod/perlfunc.pod
10410 ____________________________________________________________________________
10411 [  7469] By: jhi                                   on 2000/10/28  17:16:45
10412         Log: Subject: [ID 20001027.010] [PATCH] Add info on building CPAN modules to README.dos
10413              From: "Peter J. Farley III" <pjfarley@banet.net>
10414              Date: Fri, 27 Oct 2000 20:32:56 -0400
10415              Message-Id: <4.3.1.0.20001027202303.00ad8900@pop5.banet.net>
10416      Branch: perl
10417            ! README.dos
10418 ____________________________________________________________________________
10419 [  7468] By: jhi                                   on 2000/10/28  17:07:18
10420         Log: Make target reordering to avoid pointless re-makes.
10421              
10422              Subject: Re: Total re-make of 'make okfile' after 7451 ?
10423              From: Nicholas Clark <nick@ccl4.org>
10424              Date: Sat, 28 Oct 2000 00:31:02 +0100
10425              Message-ID: <20001028003101.A54517@plum.flirble.org>
10426      Branch: perl
10427            ! Makefile.SH
10428 ____________________________________________________________________________
10429 [  7467] By: jhi                                   on 2000/10/28  17:05:31
10430         Log: Subject: [ID 20001027.005] Nit in perlos2.pod - space needs deleted on line 118
10431              From: lvirden@cas.org
10432              Date: Fri, 27 Oct 2000 13:14:41 -0400 (EDT)
10433              Message-Id: <200010271714.NAA22015@lwv26awu.cas.org>
10434      Branch: perl
10435            ! README.os2
10436 ____________________________________________________________________________
10437 [  7466] By: jhi                                   on 2000/10/28  16:09:16
10438         Log: Upgrade to CPAN 1.58_55.
10439              
10440              Subject: CPAN.pm status
10441              From: andreas.koenig@anima.de (Andreas J. Koenig) 
10442              Date: 28 Oct 2000 08:18:00 +0200 
10443              Message-ID: <m3n1fpa3qf.fsf@ak-71.mind.de>
10444      Branch: perl
10445            ! lib/CPAN.pm lib/CPAN/FirstTime.pm
10446 ____________________________________________________________________________
10447 [  7465] By: jhi                                   on 2000/10/28  16:02:47
10448         Log: The reëntrant version shouldn't be needed unless USE_PURE_BISON.
10449      Branch: perl
10450            ! embed.h embed.pl perl.h proto.h toke.c
10451 ____________________________________________________________________________
10452 [  7464] By: nick                                  on 2000/10/28  10:43:44
10453         Log: Fix for sv_2iv() on "shared" value from keys %hash.
10454      Branch: perl
10455            ! sv.c
10456 ____________________________________________________________________________
10457 [  7463] By: jhi                                   on 2000/10/27  16:18:29
10458         Log: Update Changes.
10459      Branch: perl
10460            ! Changes patchlevel.h
10461 ____________________________________________________________________________
10462 [  7462] By: jhi                                   on 2000/10/27  16:17:44
10463         Log: Too enthusiastic editing in #7460.
10464      Branch: metaconfig
10465            ! U/modified/Oldsym.U
10466      Branch: perl
10467            ! Configure config_h.SH
10468 ____________________________________________________________________________
10469 [  7461] By: jhi                                   on 2000/10/27  15:37:38
10470         Log: Retract #7459, the script needs more work.
10471      Branch: perl
10472            - mkreef
10473            ! MANIFEST
10474 ____________________________________________________________________________
10475 [  7460] By: jhi                                   on 2000/10/27  15:23:14
10476         Log: Use $sort, $uniq (and $tr) consistently as wondered
10477              by Nicholas Clark.
10478      Branch: metaconfig
10479            ! U/modified/Cppsym.U U/modified/Getfile.U U/modified/Guess.U
10480            ! U/modified/Myread.U U/modified/Oldsym.U U/modified/Signal.U
10481            ! U/modified/libc.U
10482      Branch: perl
10483            ! Configure config_h.SH
10484 ____________________________________________________________________________
10485 [  7459] By: jhi                                   on 2000/10/27  15:02:07
10486         Log: (Retracted by #7461)
10487              
10488              Add a shell script for creating/removing symbolic link farms,
10489              useful for keeping the source code read-only and doing the
10490              builds somewhere else.
10491      Branch: perl
10492            + mkreef
10493            ! MANIFEST
10494 ____________________________________________________________________________
10495 [  7458] By: jhi                                   on 2000/10/27  14:42:20
10496         Log: Do away with the fix_pl.
10497      Branch: perl
10498            - fix_pl
10499            ! MANIFEST Makefile.SH
10500 ____________________________________________________________________________
10501 [  7457] By: jhi                                   on 2000/10/27  12:43:13
10502         Log: Subject: [ID 20001027.002] Patch 7380 followup - Perl_modfl *must* be defined
10503              From: Jens Hamisch <jens@Strawberry.COM>
10504              Date: Fri, 27 Oct 2000 14:38:21 +0200
10505              Message-Id: <20001027143821.B3366@Strawberry.COM>
10506      Branch: perl
10507            ! perl.h
10508 ____________________________________________________________________________
10509 [  7456] By: jhi                                   on 2000/10/27  12:33:42
10510         Log: Subject: [PATCH] todo
10511              From: Nicholas Clark <nick@ccl4.org>
10512              Date: Thu, 26 Oct 2000 22:32:29 +0100
10513              Message-ID: <20001026223229.A44540@plum.flirble.org>
10514      Branch: perl
10515            ! pod/perltodo.pod
10516 ____________________________________________________________________________
10517 [  7455] By: jhi                                   on 2000/10/27  12:02:21
10518         Log: Subject: Re: [PATCH bleadperl] ripples from constsub patch
10519              From: John Tobey <jtobey@john-edwin-tobey.org>
10520              Date: Thu, 26 Oct 2000 22:29:53 -0400 (EDT)
10521              Message-Id: <m13ozHF-000FObC@feynman.localnet>
10522      Branch: perl
10523            ! op.c t/pragma/sub_lval.t
10524 ____________________________________________________________________________
10525 [  7454] By: jhi                                   on 2000/10/27  11:59:42
10526         Log: Subject: [ID 20001026.006] C<use integer; $x += 1> gives uninitialized warning
10527              From: sthoenna@efn.org
10528              Date: Thu, 26 Oct 2000 14:00:03 -0700 (PDT)
10529              Message-Id: <200010262100.e9QL03U06386@garcia.efn.org>
10530      Branch: perl
10531            ! pp.c t/op/assignwarn.t
10532 ____________________________________________________________________________
10533 [  7453] By: jhi                                   on 2000/10/27  00:15:08
10534         Log: Upgrade to Storable 1.0.5, from Raphael Manfredi.
10535      Branch: perl
10536            ! ext/Storable/ChangeLog ext/Storable/Storable.pm
10537            ! ext/Storable/Storable.xs t/lib/st-lock.t
10538 ____________________________________________________________________________
10539 [  7452] By: jhi                                   on 2000/10/26  13:05:52
10540         Log: Undo #7451, this seems to be a deficiency in Perforce,
10541              there is no per-file line-terminator type, only per-client.
10542      Branch: perl
10543            ! README.dos README.win32 djgpp/configure.bat win32/Makefile
10544            ! win32/makefile.mk
10545 ____________________________________________________________________________
10546 [  7451] By: jhi                                   on 2000/10/26  04:56:03
10547         Log: Experimenting in DOS arcana.
10548      Branch: perl
10549            ! README.dos README.win32 djgpp/configure.bat win32/Makefile
10550            ! win32/makefile.mk
10551 ____________________________________________________________________________
10552 [  7450] By: jhi                                   on 2000/10/26  04:50:52
10553         Log: Subject: [ID 20001025.011] [PATCH] t/io/open.t perl@7369[  7350] breaks VMS perl
10554              From: "Peter J. Farley III" <pjfarley@banet.net>            
10555              Date: Wed, 25 Oct 2000 23:10:18 -0400
10556              Message-Id: <4.3.1.0.20001025230222.00accba0@pop5.banet.net>
10557      Branch: perl
10558            ! t/io/open.t
10559 ____________________________________________________________________________
10560 [  7449] By: jhi                                   on 2000/10/26  04:49:16
10561         Log: Subject: Re: [PATCH 5.6.0]Add non-blocking thread doneness checking
10562              From: Hugo <hv@crypt.compulink.co.uk>
10563              Date: Thu, 26 Oct 2000 01:55:17 +0100
10564              Message-Id: <200010260055.BAA27869@crypt.compulink.co.uk>
10565              
10566              minus one unneeded mutex lock/unlock pointed out by Dan Sugalski.
10567      Branch: perl
10568            ! ext/Thread/Thread.pm ext/Thread/Thread.xs t/lib/thr5005.t
10569 ____________________________________________________________________________
10570 [  7448] By: jhi                                   on 2000/10/26  04:38:36
10571         Log: Subject: [PATCH: perl@7446] restore missing d_stdio_cnt_lval to VMS
10572              From: Peter Prymmer <pvhp@forte.com>
10573              Date: Wed, 25 Oct 2000 18:23:56 -0700 (PDT)                          
10574              Message-ID: <Pine.OSF.4.10.10010251816200.247618-100000@aspara.forte.com>
10575      Branch: perl
10576            ! configure.com
10577 ____________________________________________________________________________
10578 [  7447] By: jhi                                   on 2000/10/25  23:20:02
10579         Log: Remains of the old UTF-8 API, utf8_to_uv_chk(): didn't link
10580              in platforms that strictly require all the symbols being present
10581              at link time.
10582      Branch: perl
10583            ! handy.h
10584 ____________________________________________________________________________
10585 [  7446] By: jhi                                   on 2000/10/25  21:55:57
10586         Log: Update Changes.
10587      Branch: perl
10588            ! Changes patchlevel.h
10589 ____________________________________________________________________________
10590 [  7445] By: jhi                                   on 2000/10/25  21:27:08
10591         Log: Integrate with vmsperl #7430 by Charles Bailey:
10592              
10593              Cleanup from prior patch (Charles Lane?):
10594              - improve handling of MFDs in Basename and Path
10595              - default to no xsubpp line # munging when building debug images
10596      Branch: perl
10597           !> lib/ExtUtils/MM_VMS.pm lib/File/Basename.pm lib/File/Path.pm
10598 ____________________________________________________________________________
10599 [  7444] By: jhi                                   on 2000/10/25  21:03:50
10600         Log: Subject: [PATCH] Zero-padded Numerics in Perl Format
10601              From: John Peacock <JPeacock@UnivPress.com>
10602              Date: Thu, 18 May 2000 11:55:27 -0400
10603              Message-ID: <3924126F.A58BE57A@UnivPress.com>
10604      Branch: perl
10605            ! form.h pod/perldelta.pod pod/perlform.pod pp_ctl.c
10606            ! t/op/write.t
10607 ____________________________________________________________________________
10608 [  7443] By: jhi                                   on 2000/10/25  20:43:10
10609         Log: Temporary stopgap for the self-tying issue: for now only
10610              array and hash self-ties are verboten.  The real fix, of
10611              course, would be to comprehensively test (and implement?)
10612              and debug (and document) self-ties.
10613      Branch: perl
10614            ! pod/perldiag.pod pp_sys.c t/op/tie.t
10615 ____________________________________________________________________________
10616 [  7442] By: jhi                                   on 2000/10/25  20:14:30
10617         Log: Subject: [PATCH 5.6.0]Add non-blocking thread doneness checking
10618              From: Dan Sugalski <dan@sidhe.org>
10619              Date: Wed, 25 Oct 2000 13:36:35 -0400
10620              Message-Id: <5.0.0.25.0.20001025133504.01ef1e20@24.8.96.48>
10621              
10622              plus regen global.sym.
10623      Branch: perl
10624            ! ext/Thread/Thread.pm ext/Thread/Thread.xs global.sym perl.c
10625            ! thrdvar.h util.c
10626 ____________________________________________________________________________
10627 [  7441] By: jhi                                   on 2000/10/25  20:12:20
10628         Log: buildtoc target tweaks.
10629      Branch: perl
10630            ! pod/Makefile.SH
10631 ____________________________________________________________________________
10632 [  7440] By: jhi                                   on 2000/10/25  20:03:53
10633         Log: A new version of making the syslog test more robust.
10634              (Replaces #7421.)
10635              
10636              Subject: Re: [ID 20001022.001] Not OK: perl v5.7.0 +DEVEL7368 on i686-linux 2.2.16
10637              From: "Kurt D. Starsinic" <kstar@chapin.edu>
10638              Date: Wed, 25 Oct 2000 12:13:54 -0400
10639              Message-ID: <20001025121354.B2264@O2.chapin.edu>
10640      Branch: perl
10641            ! t/lib/syslog.t
10642 ____________________________________________________________________________
10643 [  7439] By: jhi                                   on 2000/10/25  20:00:48
10644         Log: Continue the internal UTF-8 API tweaking.
10645              Rename utf8_to_uv_chk() back to utf8_to_uv() because it's
10646              used much more than the simpler API, now called utf8_to_uv_simple().
10647              Still not quite happy with API, too much partial duplication
10648              of functionality.
10649      Branch: perl
10650            ! doop.c embed.h embed.pl handy.h objXSUB.h op.c perlapi.c
10651            ! pod/perlapi.pod pod/perlunicode.pod pp.c pp_ctl.c proto.h
10652            ! regcomp.c regexec.c sv.c toke.c utf8.c
10653 ____________________________________________________________________________
10654 [  7438] By: jhi                                   on 2000/10/25  18:52:30
10655         Log: Allow poking holes at the UTF-8 decoding strictness.
10656      Branch: perl
10657            ! embed.pl pp.c proto.h sv.c t/pragma/utf8.t toke.c utf8.c
10658            ! utf8.h
10659 ____________________________________________________________________________
10660 [  7437] By: jhi                                   on 2000/10/25  13:53:05
10661         Log: Rename UTF8LEN() to be UNISKIP(), too confusing to have
10662              UTF8LEN() and UTF8SKIP(). 
10663      Branch: perl
10664            ! pp.c utf8.c utf8.h
10665 ____________________________________________________________________________
10666 [  7436] By: jhi                                   on 2000/10/25  13:51:37
10667         Log: Subject: [PATCH] Re: PerlIO - Configure tweak for Linux/glibc?
10668              From: Nicholas Clark <nick@ccl4.org>
10669              Date: Wed, 25 Oct 2000 14:44:05 +0100
10670              Message-ID: <20001025144404.D27253@plum.flirble.org>
10671      Branch: perl
10672            ! pod/perlrun.pod
10673 ____________________________________________________________________________
10674 [  7435] By: jhi                                   on 2000/10/25  13:49:32
10675         Log: Subject: [ID 20001024.007] [PATCH] "Dump local *FH" causes SEGV
10676              From: Mike Guy <mjtg@cam.ac.uk>
10677              Date: Tue, 24 Oct 2000 14:59:40 +0100
10678              Message-Id: <E13o4c8-00076u-00@libra.cus.cam.ac.uk>
10679      Branch: perl
10680            ! scope.c
10681 ____________________________________________________________________________
10682 [  7434] By: jhi                                   on 2000/10/25  13:48:41
10683         Log: AIX is picky about its symbol exports.  Solution for now
10684              is to include the deb.o explicitly to the re extension build.
10685              
10686              Subject: Re: introduce missing .Perl_deb symbol to aix build (Questions)
10687              From: Peter Prymmer <pvhp@forte.com>
10688              Date: Tue, 24 Oct 2000 12:57:22 -0700 (PDT)
10689              Message-ID: <Pine.OSF.4.10.10010241252180.127055-100000@aspara.forte.com>
10690      Branch: perl
10691            ! ext/re/Makefile.PL hints/aix.sh
10692 ____________________________________________________________________________
10693 [  7433] By: jhi                                   on 2000/10/25  13:46:49
10694         Log: Subject: patch 7416 breaks sv.c on AIX and HP-UX (patch included)
10695              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
10696              Date: Wed, 25 Oct 2000 12:02:20 +0200
10697              Message-Id: <20001025114712.C9F9.H.M.BRAND@hccnet.nl>
10698      Branch: perl
10699            ! perlsdio.h
10700 ____________________________________________________________________________
10701 [  7432] By: jhi                                   on 2000/10/25  13:44:28
10702         Log: Subject: Minor update to find2perl, for portability
10703              From: "Moore, Paul" <Paul.Moore@uk.origin-it.com>
10704              Date: Wed, 25 Oct 2000 12:05:47 +0100
10705              Message-ID: <714DFA46B9BBD0119CD000805FC1F53B012A8355@UKRUX002.rundc.uk.origin-it.com>
10706      Branch: perl
10707            ! x2p/find2perl.PL
10708 ____________________________________________________________________________
10709 [  7431] By: jhi                                   on 2000/10/25  13:40:39
10710         Log: Add targets to Makefile.SH, most importantly
10711              'regen_all' which also remembers to update vms/perly*.
10712      Branch: perl
10713            ! Makefile.SH
10714 ____________________________________________________________________________
10715 [  7430] By: bailey                                on 2000/10/25  03:13:53
10716         Log: Cleanup from prior patch (Charles Lane?):
10717              - improve handling of MFDs in Basename and Path
10718              - default to no xsubpp line # munging when building debug images
10719      Branch: vmsperl
10720            ! lib/ExtUtils/MM_VMS.pm lib/File/Basename.pm lib/File/Path.pm
10721 ____________________________________________________________________________
10722 [  7429] By: jhi                                   on 2000/10/24  20:03:40
10723         Log: Podify README.epoc and README.vos.
10724      Branch: perl
10725            ! README.epoc README.vos pod/buildtoc.PL pod/perl.pod
10726            ! pod/perlport.pod pod/perltoc.pod
10727 ____________________________________________________________________________
10728 [  7428] By: jhi                                   on 2000/10/24  19:10:33
10729         Log: Stratus VOS updates from Paul Green.
10730      Branch: perl
10731            + vos/config.alpha.def vos/config.alpha.h vos/config.ga.def
10732            + vos/config.ga.h vos/configure_perl.cm vos/install_perl.cm
10733            - vos/config.def vos/config.h vos/config_h.SH_orig
10734            ! MANIFEST README.vos pod/perlport.pod vos/Changes vos/build.cm
10735            ! vos/compile_perl.cm vos/config.pl vos/perl.bind vos/vosish.h
10736 ____________________________________________________________________________
10737 [  7427] By: jhi                                   on 2000/10/24  18:59:48
10738         Log: Check if stdio supports tweaking lval and cnt simultaneously.
10739              
10740              Subject: PATCH (Re: PerlIO - Configure tweak for Linux/glibc?)
10741              From: Nicholas Clark <nick@ccl4.org>
10742              Date: Mon, 23 Oct 2000 15:39:32 +0100
10743              Message-ID: <20001023153932.A10786@plum.flirble.org>
10744      Branch: metaconfig
10745            ! U/compline/d_stdstdio.U
10746      Branch: perl
10747            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
10748            ! config_h.SH configure.com epoc/config.sh iperlsys.h perlio.c
10749            ! perlsdio.h perlsfio.h pod/Makefile.SH pod/perltoc.pod
10750            ! uconfig.h uconfig.sh vms/genconfig.pl vos/config.def
10751            ! vos/config.h vos/config_h.SH_orig win32/config.bc
10752            ! win32/config.gc win32/config.vc
10753 ____________________________________________________________________________
10754 [  7426] By: jhi                                   on 2000/10/24  17:57:44
10755         Log: Missed the header file changes from #7425.
10756      Branch: perl
10757            ! embed.h embed.pl objXSUB.h proto.h
10758 ____________________________________________________________________________
10759 [  7425] By: jhi                                   on 2000/10/24  17:55:17
10760         Log: Fix the bug reported in
10761              
10762              From: andreas.koenig@anima.de (Andreas J. Koenig)
10763              Subject: Encode bug?
10764              Date: 24 Oct 2000 14:01:26 +0200 
10765              Message-ID: <m3lmveqwh5.fsf@ak-71.mind.de>
10766              
10767              Also make is_utf8_char() stricter.
10768      Branch: perl
10769            ! ext/Encode/Encode.xs utf8.c
10770 ____________________________________________________________________________
10771 [  7424] By: jhi                                   on 2000/10/24  15:15:39
10772         Log: Subject: Re: [ID 20001023.003] PATCH perlfaq5 [perl-current]
10773              From: Peter Scott <Peter@PSDT.com>
10774              Date: Mon, 23 Oct 2000 19:46:01 -0700
10775              Message-Id: <4.3.2.7.2.20001023194324.00ab7220@psdt.com>
10776      Branch: perl
10777            ! pod/perlfaq5.pod
10778 ____________________________________________________________________________
10779 [  7423] By: jhi                                   on 2000/10/24  14:25:30
10780         Log: Test tweak to avoid pulling in the whole Config.
10781      Branch: perl
10782            ! t/lib/st-lock.t
10783 ____________________________________________________________________________
10784 [  7422] By: jhi                                   on 2000/10/24  14:03:16
10785         Log: Fix the bug ID 20001024.005, the bug introduced by #7416.
10786      Branch: perl
10787            ! pp.c
10788 ____________________________________________________________________________
10789 [  7421] By: jhi                                   on 2000/10/24  13:32:09
10790         Log: (Replaced by #7440.)
10791              
10792              Subject: Re: [ID 20001022.001] Not OK: perl v5.7.0 +DEVEL7368 on i686-linux 2.2.16
10793              From: "Kurt D. Starsinic" <kstar@chapin.edu>
10794              Date: Mon, 23 Oct 2000 16:40:54 -0400
10795              Message-ID: <20001023164054.B14491@O2.chapin.edu>
10796      Branch: perl
10797            ! t/lib/syslog.t
10798 ____________________________________________________________________________
10799 [  7420] By: jhi                                   on 2000/10/24  13:30:53
10800         Log: Subject: [PATCH 5.7.0] static linking with uninstalled perl
10801              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
10802              Date: Mon, 23 Oct 2000 17:29:03 -0400
10803              Message-ID: <20001023172903.A18749@monk.mps.ohio-state.edu>
10804      Branch: perl
10805            ! lib/ExtUtils/MM_Unix.pm
10806 ____________________________________________________________________________
10807 [  7419] By: jhi                                   on 2000/10/24  13:29:57
10808         Log: Subject: Re: [PATCH 5.7.0] h2xs not documenting the created module
10809              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
10810              Date: Mon, 23 Oct 2000 19:01:32 -0400
10811              Message-ID: <20001023190132.A19791@monk.mps.ohio-state.edu>
10812      Branch: perl
10813            ! utils/h2xs.PL
10814 ____________________________________________________________________________
10815 [  7418] By: jhi                                   on 2000/10/24  13:26:04
10816         Log: Replace #7409 with
10817              
10818              Subject: Re: [PATCH] Re: [ID 20001020.009] Not OK: perl v5.7.0 +DEVEL7368 on dos-djgpp djgp
10819              From: Raphael Manfredi <Raphael_Manfredi@pobox.com>
10820              Date: Mon, 23 Oct 2000 20:08:56 +0200
10821              Message-ID: <20001023200855.A14850@nice.ram.loc>
10822      Branch: perl
10823            ! ext/Storable/Storable.pm t/lib/st-lock.t
10824 ____________________________________________________________________________
10825 [  7417] By: jhi                                   on 2000/10/24  13:17:52
10826         Log: Run vms/vms_yfix.pl, should have done that after changing
10827              perly.c in #7382.
10828      Branch: perl
10829            ! vms/perly_c.vms vms/perly_h.vms
10830 ____________________________________________________________________________
10831 [  7416] By: jhi                                   on 2000/10/24  02:55:33
10832         Log: Make the UTF-8 decoding stricter and more verbose when
10833              malformation happens.  This involved adding an argument
10834              to utf8_to_uv_chk(), which involved changing its prototype,
10835              and prefer STRLEN over I32 for the UTF-8 length, which as
10836              a domino effect necessitated changing the prototypes of
10837              scan_bin(), scan_oct(), scan_hex(), and reg_uni().
10838              The stricter UTF-8 decoding checking uses Markus Kuhn's
10839              UTF-8 Decode Stress Tester from
10840              http://www.cl.cam.ac.uk/~mgk25/ucs/examples/UTF-8-test.txt
10841      Branch: perl
10842            ! doop.c embed.h embed.pl handy.h objXSUB.h op.c perl.c
10843            ! perlapi.c pod/perlapi.pod pod/perldiag.pod pod/perlunicode.pod
10844            ! pp.c pp_ctl.c proto.h regcomp.c regexec.c sv.c t/pragma/utf8.t
10845            ! t/pragma/warn/utf8 toke.c utf8.c utf8.h util.c
10846 ____________________________________________________________________________
10847 [  7415] By: jhi                                   on 2000/10/23  14:06:06
10848         Log: Update Changes.
10849      Branch: perl
10850            ! Changes patchlevel.h
10851 ____________________________________________________________________________
10852 [  7414] By: jhi                                   on 2000/10/23  12:39:52
10853         Log: Undo the basename() part of #7412 since the lib/basename
10854              tests would need upgrading too.
10855      Branch: perl
10856            ! lib/File/Basename.pm
10857 ____________________________________________________________________________
10858 [  7413] By: jhi                                   on 2000/10/23  12:19:27
10859         Log: Document PERL_INSTALL_ROOT of #7210.
10860      Branch: perl
10861            ! lib/ExtUtils/Install.pm
10862 ____________________________________________________________________________
10863 [  7412] By: jhi                                   on 2000/10/23  12:16:47
10864         Log: Miscellaneous MacOS Classic library updates from Matthias Neeracher.
10865      Branch: perl
10866            ! lib/ExtUtils/Mksymlists.pm lib/File/Basename.pm
10867            ! lib/File/Path.pm lib/Term/ReadLine.pm lib/perl5db.pl
10868 ____________________________________________________________________________
10869 [  7411] By: jhi                                   on 2000/10/23  12:07:41
10870         Log: Subject: [PATCH: perl@7386] miscellaneous typos in 3 pods
10871              From: Prymmer/Kahn <pvhp@best.com>
10872              Date: Sun, 22 Oct 2000 22:18:40 -0700 (PDT)
10873              Message-ID: <Pine.BSF.4.21.0010222214150.11774-100000@shell8.ba.best.com>
10874      Branch: perl
10875            ! README.aix pod/perlebcdic.pod vms/ext/Stdio/Stdio.pm
10876 ____________________________________________________________________________
10877 [  7410] By: jhi                                   on 2000/10/23  04:10:11
10878         Log: The change #7187 was not so good on VMS.
10879              
10880              Subject: [PATCH perl@7369] VMS perldoc.PL fix for double quoted temp filename
10881              From: "Craig A. Berry" <craig.berry@psinetcs.com>
10882              Date: Sun, 22 Oct 2000 23:03:08 -0500
10883              Message-Id: <p04330102b617d093470b@[172.16.52.1]>
10884      Branch: perl
10885            ! utils/perldoc.PL
10886 ____________________________________________________________________________
10887 [  7409] By: jhi                                   on 2000/10/23  03:57:36
10888         Log: Avoid Storable locking on DJGPP for now.
10889              
10890              Subject: [PATCH] Re: [ID 20001020.009] Not OK: perl v5.7.0 +DEVEL7368 on dos-djgpp djgpp
10891              From: "Peter J. Farley III" <pjfarley@banet.net>
10892              Date: Sun, 22 Oct 2000 20:00:00 -0400
10893              Message-Id: <4.3.1.0.20001022194247.00acfee0@pop5.banet.net>
10894      Branch: perl
10895            ! ext/Storable/Storable.pm t/lib/st-lock.t
10896 ____________________________________________________________________________
10897 [  7408] By: jhi                                   on 2000/10/23  03:50:24
10898         Log: Subject: Re: [20000731.007] potential syntax error not detected [PATCH]
10899              From: Ronald J Kimball <rjk@linguist.dartmouth.edu>
10900              Date: Sun, 22 Oct 2000 21:12:22 -0400
10901              Message-ID: <20001022211222.A1062496@linguist.dartmouth.edu>
10902      Branch: perl
10903            ! lib/vars.pm
10904 ____________________________________________________________________________
10905 [  7407] By: jhi                                   on 2000/10/23  03:43:12
10906         Log: Subject: Re: [ID 20001021.005] SEGV with regex match 
10907              From: Hugo <hv@crypt.compulink.co.uk>
10908              Date: Mon, 23 Oct 2000 00:47:22 +0100
10909              Message-Id: <200010222347.AAA09697@crypt.compulink.co.uk>
10910      Branch: perl
10911            ! regexec.c t/op/pat.t
10912 ____________________________________________________________________________
10913 [  7406] By: jhi                                   on 2000/10/23  03:40:29
10914         Log: Retract #7404 with a patch from Robin Barker, via Andy Dougherty.
10915      Branch: perl
10916            ! lib/ExtUtils/MakeMaker.pm
10917 ____________________________________________________________________________
10918 [  7405] By: jhi                                   on 2000/10/22  21:32:00
10919         Log: Doc patch.
10920              
10921              Subject: [ID 19991128.002] \&{'foo'} not caught by strict refs
10922              From: rspier@pobox.com (Robert Spier)
10923              Date: Sun, 22 Oct 2000 15:24:32 -0400 (EDT)
10924              Message-ID: <14835.16112.13457.447971@rls.cx>
10925      Branch: perl
10926            ! lib/strict.pm
10927 ____________________________________________________________________________
10928 [  7404] By: jhi                                   on 2000/10/22  21:30:51
10929         Log: Subject: [PATCH] Re: [ID 20000121.007] XXX documentation in man ExtUtils::MakeMaker
10930              From: rspier@pobox.com (Robert Spier)
10931              Date: Sun, 22 Oct 2000 15:43:03 -0400 (EDT)
10932              Message-ID: <14835.17223.72448.705566@rls.cx>
10933      Branch: perl
10934            ! lib/ExtUtils/MakeMaker.pm
10935 ____________________________________________________________________________
10936 [  7403] By: jhi                                   on 2000/10/22  21:24:11
10937         Log: Subject: [PATCH bleadperl] ripples from constsub patch
10938              From: John Tobey <jtobey@john-edwin-tobey.org>
10939              Date: Sun, 22 Oct 2000 17:10:43 -0400 (EDT)
10940              Message-Id: <m13nSOB-000FObC@feynman.localnet>
10941      Branch: perl
10942            ! dump.c ext/B/B.pm ext/B/B.xs ext/B/B/Deparse.pm t/lib/b.t
10943 ____________________________________________________________________________
10944 [  7402] By: jhi                                   on 2000/10/22  20:59:35
10945         Log: Support s?printf parameter reordering.
10946      Branch: perl
10947            ! pod/perldelta.pod pod/perlfunc.pod sv.c t/op/sprintf.t
10948 ____________________________________________________________________________
10949 [  7401] By: jhi                                   on 2000/10/22  19:19:14
10950         Log: Expand %Config variables only if explicitly so requested
10951              during build time by PERL_BUILD_EXPAND_CONFIG_VARS.
10952              
10953              Subject: Re: PATCH $Config::Config{ldlibpthname} in ext/DynaLoader/DynaLoader_pm.PL
10954              From: Gurusamy Sarathy <gsar@ActiveState.com>
10955              Date: Sun, 22 Oct 2000 11:47:32 -0700
10956              Message-Id: <200010221847.LAA02167@smtp3.ActiveState.com>            
10957      Branch: perl
10958            ! Makefile.SH lib/lib_pm.PL
10959 ____________________________________________________________________________
10960 [  7400] By: jhi                                   on 2000/10/22  18:24:10
10961         Log: Move the #7390 test from warn/op to comp/redef.
10962              
10963              Subject: Re: Creating const subs for constants.
10964              From: John Tobey <jtobey@john-edwin-tobey.org>
10965              Date: Sun, 22 Oct 2000 04:04:12 -0400 (EDT)
10966              Message-Id: <m13nG72-000FObC@feynman.localnet>               
10967      Branch: perl
10968            ! t/comp/redef.t t/pragma/warn/op
10969 ____________________________________________________________________________
10970 [  7399] By: jhi                                   on 2000/10/22  17:49:59
10971         Log: Subject: PATCH $Config::Config{ldlibpthname} in ext/DynaLoader/DynaLoader_pm.PL
10972              From: Nicholas Clark <nick@ccl4.org>
10973              Date: Sat, 21 Oct 2000 22:23:19 +0100
10974              Message-ID: <20001021222319.B45586@plum.flirble.org>
10975      Branch: perl
10976            ! ext/DynaLoader/DynaLoader_pm.PL
10977 ____________________________________________________________________________
10978 [  7398] By: jhi                                   on 2000/10/22  17:47:35
10979         Log: Subject: [PATCH bleadperl] -MO=C falls over on package <none>
10980              From: Hugo <hv@crypt.compulink.co.uk>
10981              Date: Sat, 21 Oct 2000 18:19:59 +0100
10982              Message-Id: <200010211719.SAA02087@crypt.compulink.co.uk>
10983      Branch: perl
10984            ! ext/B/B.pm ext/B/B/C.pm
10985 ____________________________________________________________________________
10986 [  7397] By: jhi                                   on 2000/10/22  17:35:18
10987         Log: Subject: [ID 20001021.003] updated hints/openbsd.sh
10988              From: "Todd C. Miller" <Todd.Miller@courtesan.com>
10989              Date: Sat, 21 Oct 2000 13:55:50 -0600 (MDT)
10990              Message-Id: <200010211955.e9LJton24170@xerxes.courtesan.com>
10991      Branch: perl
10992            ! hints/openbsd.sh
10993 ____________________________________________________________________________
10994 [  7396] By: jhi                                   on 2000/10/22  17:19:46
10995         Log: Subject: installman go-faster stripes
10996              From: Nicholas Clark <nick@talking.bollo.cx>
10997              Date: Sat, 21 Oct 2000 17:24:53 +0100
10998              Message-ID: <20001021172452.A20371@Bagpuss.unfortu.net>
10999              
11000              Subject: Re: installman go-faster stripes
11001              From: Russ Allbery <rra@stanford.edu>
11002              Date: 21 Oct 2000 11:04:13 -0700
11003              Message-ID: <ylbswe5aw2.fsf@windlord.stanford.edu>
11004      Branch: perl
11005            ! installman pod/pod2man.PL
11006 ____________________________________________________________________________
11007 [  7395] By: jhi                                   on 2000/10/22  17:17:35
11008         Log: Hints tweak from Anton Berezin.
11009      Branch: perl
11010            ! hints/freebsd.sh
11011 ____________________________________________________________________________
11012 [  7394] By: jhi                                   on 2000/10/22  04:50:04
11013         Log: Tweak the Is* definitions of Unicode character classes
11014              to better match the official categorizations; embrace
11015              the official categorizations; add the combining marks
11016              as alpha (and -numeric); fix DCinital (a typo and edito)
11017              to be DCmedial.
11018      Branch: perl
11019            + lib/unicode/Is/DCmedial.pl
11020            - lib/unicode/Is/DCinital.pl
11021            ! MANIFEST lib/unicode/Is/Alnum.pl lib/unicode/Is/Alpha.pl
11022            ! lib/unicode/Is/Graph.pl lib/unicode/Is/Print.pl
11023            ! lib/unicode/Is/Punct.pl lib/unicode/Is/Space.pl
11024            ! lib/unicode/Is/Word.pl lib/unicode/mktables.PL
11025 ____________________________________________________________________________
11026 [  7393] By: jhi                                   on 2000/10/21  18:06:05
11027         Log: Subject: [PATCH@blead Tie/Array.pm] Re: [ID 20001020.002] Tie::Array SPLICE method is buggy
11028              From: Daniel Chetlin <daniel@chetlin.com>
11029              Date: Sat, 21 Oct 2000 02:57:03 -0700
11030              Message-ID: <20001021025703.A2115@darkstar.chetlin.org>
11031      Branch: perl
11032            + t/lib/tie-splice.t
11033            ! MANIFEST lib/Tie/Array.pm
11034 ____________________________________________________________________________
11035 [  7392] By: gsar                                  on 2000/10/21  18:05:15
11036         Log: resync utfperl branch with mainline
11037      Branch: utfperl
11038           !> (integrate 1760 files)
11039 ____________________________________________________________________________
11040 [  7391] By: jhi                                   on 2000/10/21  14:37:49
11041         Log: Testcases for a #7383,#7385 related bug.
11042              
11043              Subject: PATCH Re: [ID 20001020.006] "$2$utf8" == modification of read-only-variable
11044              From: Nicholas Clark <nick@ccl4.org>
11045              Date: Sat, 21 Oct 2000 15:04:51 +0100
11046              Message-ID: <20001021150451.A51566@plum.flirble.org>
11047      Branch: perl
11048            ! t/pragma/utf8.t
11049 ____________________________________________________________________________
11050 [  7390] By: jhi                                   on 2000/10/21  14:35:57
11051         Log: Add a testcase for #7389.
11052      Branch: perl
11053            ! t/pragma/warn/op
11054 ____________________________________________________________________________
11055 [  7389] By: jhi                                   on 2000/10/21  14:26:45
11056         Log: Subject: Re: Creating const subs for constants.
11057              From: John Tobey <jtobey@john-edwin-tobey.org>
11058              Date: Fri, 20 Oct 2000 22:03:27 -0400 (EDT)
11059              Message-Id: <m13mo0N-000FObC@feynman.localnet>
11060      Branch: perl
11061            ! cv.h embed.h embed.pl objXSUB.h op.c perlapi.c pod/perlapi.pod
11062            ! proto.h sv.c
11063 ____________________________________________________________________________
11064 [  7388] By: nick                                  on 2000/10/21  11:44:23
11065         Log: Populate perlio branch
11066      Branch: perlio
11067           +> (branch 1760 files)
11068 ____________________________________________________________________________
11069 [  7387] By: nick                                  on 2000/10/21  10:52:05
11070         Log: Get branch back as replica of mainline via :
11071              p4 integrate -b utfperl
11072              p4 resolve -at ./...
11073      Branch: utfperl
11074           +> (branch 269 files)
11075            - Todo-5.005 eg/ADB eg/README eg/cgi/RunMeFirst
11076            - eg/cgi/caution.xbm eg/cgi/clickable_image.cgi
11077            - eg/cgi/cookie.cgi eg/cgi/crash.cgi eg/cgi/customize.cgi
11078            - eg/cgi/diff_upload.cgi eg/cgi/dna_small_gif.uu
11079            - eg/cgi/file_upload.cgi eg/cgi/frameset.cgi eg/cgi/index.html
11080            - eg/cgi/internal_links.cgi eg/cgi/javascript.cgi
11081            - eg/cgi/monty.cgi eg/cgi/multiple_forms.cgi
11082            - eg/cgi/nph-clock.cgi eg/cgi/nph-multipart.cgi eg/cgi/popup.cgi
11083            - eg/cgi/save_state.cgi eg/cgi/tryit.cgi eg/cgi/wilogo_gif.uu
11084            - eg/changes eg/client eg/down eg/dus eg/findcp eg/findtar
11085            - eg/g/gcp eg/g/gcp.man eg/g/ged eg/g/ghosts eg/g/gsh
11086            - eg/g/gsh.man eg/muck eg/muck.man eg/myrup eg/nih eg/relink
11087            - eg/rename eg/rmfrom eg/scan/scan_df eg/scan/scan_last
11088            - eg/scan/scan_messages eg/scan/scan_passwd eg/scan/scan_ps
11089            - eg/scan/scan_sudo eg/scan/scan_suid eg/scan/scanner eg/server
11090            - eg/shmkill eg/sysvipc/README eg/sysvipc/ipcmsg
11091            - eg/sysvipc/ipcsem eg/sysvipc/ipcshm eg/travesty eg/unuc
11092            - eg/uudecode eg/van/empty eg/van/unvanish eg/van/vanexp
11093            - eg/van/vanish eg/who eg/wrapsuid epoc/Config.pm
11094            - epoc/autosplit.pl epoc/config.h epoc/perl.mmp epoc/perl.pkg
11095            - ext/DynaLoader/dl_rhapsody.xs lib/Sys/Hostname.pm
11096            - lib/Sys/Syslog.pm lib/byte.pm lib/byte_heavy.pl lib/caller.pm
11097            - lib/chat2.pl lib/lib.pm lib/unicode/Eq/Latin1.pl
11098            - lib/unicode/Eq/Unicode.pl lib/unicode/Props.txt
11099            - lib/unicode/UCD300.html lib/unicode/Unicode.300
11100            - lib/unicode/Unicode3.html os2/POSIX.mkfifo pod/Makefile
11101            - pod/Win32.pod pod/buildtoc t/lib/thread.t t/op/64bit.t
11102            - t/op/nothread.t utils/perlbc.PL vms/subconfigure.com
11103            - win32/PerlCRT.def win32/gstartup.c win32/oldnames.def
11104           !> (integrate 965 files)
11105 ____________________________________________________________________________
11106 [  7386] By: jhi                                   on 2000/10/21  01:31:12
11107         Log: Update Changes.
11108      Branch: perl
11109            ! Changes patchlevel.h
11110 ____________________________________________________________________________
11111 [  7385] By: jhi                                   on 2000/10/21  01:28:42
11112         Log: The #7383 was right only in the context of the original bug report,
11113              not in more general case.
11114      Branch: perl
11115            ! pp_hot.c
11116 ____________________________________________________________________________
11117 [  7384] By: jhi                                   on 2000/10/21  01:08:23
11118         Log: Fix for ID 20000915.011, IO::Select warning for an undefined fd.
11119      Branch: perl
11120            ! ext/IO/lib/IO/Select.pm
11121 ____________________________________________________________________________
11122 [  7383] By: jhi                                   on 2000/10/21  00:44:18
11123         Log: Fix for ID 20001020.006, concatenating an unset submatch
11124              with utf8 resulted in "Modification of a read-only value".
11125      Branch: perl
11126            ! pp_hot.c t/pragma/utf8.t
11127 ____________________________________________________________________________
11128 [  7382] By: jhi                                   on 2000/10/20  20:44:31
11129         Log: Make scan_num() reëntrant, as suggested in
11130              
11131              Subject: [PATCH perl@7229] Rentrant parser and yylex()
11132              From: "Roca, Ignasi" <ignasi.roca@fujitsu.siemens.es>
11133              Date: Fri, 20 Oct 2000 14:17:27 +0100
11134              Message-ID: <5930DC161690D211966700902715754702DA09CD@madt009a.siemens.es>
11135      Branch: perl
11136            ! embed.h embed.pl objXSUB.h perlapi.c perly.c perly.y proto.h
11137            ! toke.c
11138 ____________________________________________________________________________
11139 [  7381] By: jhi                                   on 2000/10/20  20:07:29
11140         Log: Reëntrancy fix.
11141              
11142              Subject: [PATCH perl@7229] Rentrant parser and yylex()
11143              From: "Roca, Ignasi" <ignasi.roca@fujitsu.siemens.es>
11144              Date: Fri, 20 Oct 2000 14:17:27 +0100
11145              Message-ID: <5930DC161690D211966700902715754702DA09CD@madt009a.siemens.es>
11146      Branch: perl
11147            ! embed.h embed.pl perl.h proto.h toke.c
11148 ____________________________________________________________________________
11149 [  7380] By: jhi                                   on 2000/10/20  19:15:54
11150         Log: Don't write double values through long double pointers,
11151              based on a part of
11152              
11153              Subject: [ID 20001016.017] [jens: 5.7.0 Solaris 8, 64 Bit, Workshop 6.0 Compiler]
11154              From: Jens Hamisch <jens@Strawberry.COM>
11155              Date: Tue, 17 Oct 2000 08:39:36 +0200
11156              Message-Id: <20001017083936.A11104@Strawberry.COM>
11157      Branch: perl
11158            ! perl.h pp.c
11159 ____________________________________________________________________________
11160 [  7379] By: jhi                                   on 2000/10/20  18:43:37
11161         Log: Portability tweak on #7377.
11162              
11163              Subject:  Re: [nick@cow.org.uk: [ID 20001020.004] Not OK: perl v5.7.0 +DEVEL7368 on i386-freebsd-64all 4.1-stable (UNINSTALLED)]
11164              From: lane@DUPHY4.Physics.Drexel.Edu (Charles Lane)
11165              Date:     Fri, 20 Oct 2000 13:13:41 EDT
11166              Message-Id: <001020131216.3b141@DUPHY4.Physics.Drexel.Edu>
11167      Branch: perl
11168            ! t/lib/dprof.t
11169 ____________________________________________________________________________
11170 [  7378] By: jhi                                   on 2000/10/20  12:57:19
11171         Log: SOCKS function redefinitions need prototypes, too, otherwise
11172              for example 32 bit versus 64 bit differences cause a lot of
11173              problems.  Part of
11174              
11175              Subject: [ID 20001016.017] [jens: 5.7.0 Solaris 8, 64 Bit, Workshop 6.0 Compiler]
11176              From: Jens Hamisch <jens@Strawberry.COM>
11177              Date: Tue, 17 Oct 2000 08:39:36 +0200
11178              Message-Id: <20001017083936.A11104@Strawberry.COM>
11179      Branch: perl
11180            ! doio.c pp_sys.c
11181 ____________________________________________________________________________
11182 [  7377] By: jhi                                   on 2000/10/20  12:37:12
11183         Log: Subject:  [PATCH] Perl 5.6.0/5.7.0 enable DProf test for VMS
11184              From: lane@DUPHY4.Physics.Drexel.Edu (Charles Lane)
11185              Date:     Fri, 20 Oct 2000 08:26:04 EDT
11186              Message-Id: <001020074851.3751a@DUPHY4.Physics.Drexel.Edu>
11187      Branch: perl
11188            ! configure.com t/lib/dprof.t t/lib/dprof/V.pm vms/test.com
11189 ____________________________________________________________________________
11190 [  7376] By: jhi                                   on 2000/10/20  12:35:31
11191         Log: Subject:  [PATCH] Perl 5.6.0/5.7.0, vms/gen_shrfls.pl update
11192              From: lane@DUPHY4.Physics.Drexel.Edu (Charles Lane)
11193              Date:     Fri, 20 Oct 2000 07:48:15 EDT
11194              Message-Id: <001020074423.39b82@DUPHY4.Physics.Drexel.Edu>
11195      Branch: perl
11196            ! configure.com vms/gen_shrfls.pl
11197 ____________________________________________________________________________
11198 [  7375] By: bailey                                on 2000/10/20  04:44:37
11199         Log: SYN SYN
11200      Branch: vmsperl
11201           +> (branch 134 files)
11202            - eg/ADB eg/README eg/cgi/RunMeFirst eg/cgi/caution.xbm
11203            - eg/cgi/clickable_image.cgi eg/cgi/cookie.cgi eg/cgi/crash.cgi
11204            - eg/cgi/customize.cgi eg/cgi/diff_upload.cgi
11205            - eg/cgi/dna_small_gif.uu eg/cgi/file_upload.cgi
11206            - eg/cgi/frameset.cgi eg/cgi/index.html
11207            - eg/cgi/internal_links.cgi eg/cgi/javascript.cgi
11208            - eg/cgi/monty.cgi eg/cgi/multiple_forms.cgi
11209            - eg/cgi/nph-clock.cgi eg/cgi/nph-multipart.cgi eg/cgi/popup.cgi
11210            - eg/cgi/save_state.cgi eg/cgi/tryit.cgi eg/cgi/wilogo_gif.uu
11211            - eg/changes eg/client eg/down eg/dus eg/findcp eg/findtar
11212            - eg/g/gcp eg/g/gcp.man eg/g/ged eg/g/ghosts eg/g/gsh
11213            - eg/g/gsh.man eg/muck eg/muck.man eg/myrup eg/nih eg/relink
11214            - eg/rename eg/rmfrom eg/scan/scan_df eg/scan/scan_last
11215            - eg/scan/scan_messages eg/scan/scan_passwd eg/scan/scan_ps
11216            - eg/scan/scan_sudo eg/scan/scan_suid eg/scan/scanner eg/server
11217            - eg/shmkill eg/sysvipc/README eg/sysvipc/ipcmsg
11218            - eg/sysvipc/ipcsem eg/sysvipc/ipcshm eg/travesty eg/unuc
11219            - eg/uudecode eg/van/empty eg/van/unvanish eg/van/vanexp
11220            - eg/van/vanish eg/who eg/wrapsuid lib/chat2.pl
11221            - lib/unicode/Props.txt lib/unicode/UCD300.html
11222            - lib/unicode/Unicode.300 lib/unicode/Unicode3.html
11223            - utils/perlbc.PL vms/subconfigure.com
11224           !> (integrate 785 files)
11225 ____________________________________________________________________________
11226 [  7374] By: jhi                                   on 2000/10/20  00:59:48
11227         Log: In the latest compiler builds cccdlflags must not become -fpic,
11228              from Wilfredo Sánchez.
11229      Branch: perl
11230            ! hints/darwin.sh
11231 ____________________________________________________________________________
11232 [  7373] By: jhi                                   on 2000/10/20  00:56:35
11233         Log: Subject: PATCH CR+LF should be "\cM\cJ" in perlop
11234              From: Tony Cook <tony@develop-help.com>
11235              Date: Fri, 20 Oct 2000 07:29:15 +1100 (EST)
11236              Message-ID: <Pine.LNX.4.10.10010200725530.12682-100000@develop-help.com>
11237      Branch: perl
11238            ! pod/perlop.pod
11239 ____________________________________________________________________________
11240 [  7372] By: jhi                                   on 2000/10/19  19:34:40
11241         Log: Typo noted by Mark Lutz.
11242      Branch: perl
11243            ! t/op/64bitint.t
11244 ____________________________________________________________________________
11245 [  7371] By: jhi                                   on 2000/10/19  19:33:13
11246         Log: NonStop-UX patches from Tom Bates <tom.bates@compaq.com>
11247      Branch: metaconfig
11248            ! U/modified/Cppsym.U U/modified/Oldconfig.U
11249      Branch: metaconfig/U/perl
11250            ! End.U dlsrc.U libperl.U
11251      Branch: perl
11252            + hints/nonstopux.sh
11253            ! Configure MANIFEST config_h.SH
11254 ____________________________________________________________________________
11255 [  7370] By: jhi                                   on 2000/10/19  17:18:08
11256         Log: Subject: PATCH do_print has 2 PerlIO_error()s
11257              From: nick@ccl4.org
11258              Date: Thu, 19 Oct 2000 18:09:20 +0100
11259              Message-ID: <20001019180920.A8440@babyhippo.co.uk>
11260      Branch: perl
11261            ! doio.c
11262 ____________________________________________________________________________
11263 [  7369] By: jhi                                   on 2000/10/19  14:01:49
11264         Log: Update Changes.
11265      Branch: perl
11266            ! Changes patchlevel.h
11267 ____________________________________________________________________________
11268 [  7368] By: jhi                                   on 2000/10/19  13:04:29
11269         Log: Subject: Re: [ID 20001013.008] perl 5.6.0 on AIX w/GCC
11270              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
11271              Date: Wed, 18 Oct 2000 13:12:01 +0200
11272              Message-Id: <20001018131021.F844.H.M.BRAND@hccnet.nl>
11273      Branch: perl
11274            ! hints/aix.sh
11275 ____________________________________________________________________________
11276 [  7367] By: jhi                                   on 2000/10/19  02:22:40
11277         Log: Fix of sorts for bug id 20000901.092.  There seems to be no trace
11278              of a 'pmshort' anywhere in the B, so the offending line was simply
11279              removed.
11280      Branch: perl
11281            ! ext/B/B/Debug.pm
11282 ____________________________________________________________________________
11283 [  7366] By: jhi                                   on 2000/10/19  02:12:37
11284         Log: Add the test case for the bug id 20000730.004 which seems
11285              to have been fixed by now.
11286      Branch: perl
11287            ! t/pragma/utf8.t
11288 ____________________________________________________________________________
11289 [  7365] By: jhi                                   on 2000/10/18  23:36:24
11290         Log: Subject: [PATCH 5.7.0] Re: [ID 20001018.008] flip-flop bug when there's no <FH> 
11291              From: Hugo <hv@crypt.compulink.co.uk>
11292              Date: Wed, 18 Oct 2000 23:25:58 +0100
11293              Message-Id: <200010182225.XAA20330@crypt.compulink.co.uk>
11294      Branch: perl
11295            ! pp_ctl.c pp_hot.c t/op/flip.t t/pragma/warn/pp_hot
11296 ____________________________________________________________________________
11297 [  7364] By: jhi                                   on 2000/10/18  21:12:53
11298         Log: (retracted)
11299      Branch: perl
11300            ! pp.c
11301 ____________________________________________________________________________
11302 [  7363] By: jhi                                   on 2000/10/18  20:55:38
11303         Log: Missing change from #7362.
11304      Branch: perl
11305            ! win32/perlhost.h
11306 ____________________________________________________________________________
11307 [  7362] By: jhi                                   on 2000/10/18  20:52:01
11308         Log: Borland C fstat() never saw the fd as writable.
11309              
11310              Subject: fix for Borland's weak "stat" (perl@7211)
11311              From: "Konovalov, Vadim" <vkonovalov@lucent.com>
11312              Date: Mon, 16 Oct 2000 09:55:03 +0400
11313              Message-ID: <402099F49BEED211999700805FC7359F7C0E40@ru0028exch01.spb.lucent.com>
11314      Branch: perl
11315            ! win32/win32.c
11316 ____________________________________________________________________________
11317 [  7361] By: jhi                                   on 2000/10/18  17:43:50
11318         Log: Regen toc.
11319      Branch: perl
11320            ! pod/buildtoc.PL pod/perl.pod pod/perlport.pod pod/perltoc.pod
11321 ____________________________________________________________________________
11322 [  7360] By: jhi                                   on 2000/10/18  17:07:44
11323         Log: From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
11324              Subject: Re: [ID 20001013.008] perl 5.6.0 on AIX 4.3.2 w/GCC 2.95.2
11325              Message-Id: <20001016151837.9977.H.M.BRAND@hccnet.nl>
11326              Date: Mon, 16 Oct 2000 15:19:49 +0200
11327      Branch: perl
11328            + README.aix
11329            ! MANIFEST
11330 ____________________________________________________________________________
11331 [  7359] By: jhi                                   on 2000/10/18  17:04:49
11332         Log: Subject: Pod patch for Devel::Peek
11333              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
11334              Message-Id: <20001016121252.996B.H.M.BRAND@hccnet.nl>
11335              Date: Mon, 16 Oct 2000 12:26:34 +0200
11336      Branch: perl
11337            ! ext/Devel/Peek/Peek.pm
11338 ____________________________________________________________________________
11339 [  7358] By: jhi                                   on 2000/10/18  17:03:15
11340         Log: Make Cwd more bulletproof in chrooted environments.
11341              
11342              Subject: [ID 20001018.001] Fix for Cwd.pm (chroot)
11343              From: "Eric E. Coe" <Eric.Coe@oracle.com>
11344              Date: Wed, 18 Oct 2000 04:03:54 -0400
11345              Message-Id: <39ED596A.70E599FE@oracle.com>
11346      Branch: perl
11347            ! lib/Cwd.pm
11348 ____________________________________________________________________________
11349 [  7357] By: jhi                                   on 2000/10/18  16:37:26
11350         Log: Disable the UTF8 downgrade croakage for now to avoid
11351              too many not okay messages.
11352      Branch: perl
11353            ! doio.c
11354 ____________________________________________________________________________
11355 [  7356] By: jhi                                   on 2000/10/17  23:29:41
11356         Log: Show the failed remote port, instead of the failing line number.
11357              
11358              Subject: [PATCH 5.6.1 Debugger] More diagnostics
11359              From: David Sparks <daves@ActiveState.com>
11360              Date: Tue, 17 Oct 2000 15:00:24 -0700
11361              Message-Id: <5.0.0.25.0.20001017144037.02551e10@pop3>
11362      Branch: perl
11363            ! lib/perl5db.pl
11364 ____________________________________________________________________________
11365 [  7355] By: jhi                                   on 2000/10/17  14:11:31
11366         Log: On output try to downgrade to bytes, croak if impossible,
11367              from Simon Cozens.  This means that outputting >255 UTF8
11368              is impossible.  Consider this as a strong incentive to get
11369              the I/O disciplines implemented.
11370      Branch: perl
11371            ! doio.c pod/perldiag.pod sv.c
11372 ____________________________________________________________________________
11373 [  7354] By: jhi                                   on 2000/10/17  13:42:23
11374         Log: Clarify documentation on 'use bytes'.
11375              
11376              Subject: Re: What does 'use bytes' "mean" ?
11377              From: Simon Cozens <simon@cozens.net>
11378              Date: Mon, 18 Sep 2000 18:24:25 +0100
11379              Message-ID: <20000918182425.A26765@deep-dark-truthful-mirror.perlhacker.org>
11380      Branch: perl
11381            ! lib/bytes.pm
11382 ____________________________________________________________________________
11383 [  7353] By: jhi                                   on 2000/10/17  13:28:12
11384         Log: Workaround for a sfio bug where the stream error indicator
11385              is not cleared as documented.
11386              
11387              Subject: PATCH (was Re: [ID 20001016.007] Not OK: perl v5.7.0 +DEVEL7228 on i586-linux 2.2.16 (UNINSTALLED))
11388              From: Nicholas Clark <nick@ccl4.org>
11389              Date: Mon, 16 Oct 2000 18:28:23 +0100
11390              Message-ID: <20001016182823.J19700@plum.flirble.org>
11391      Branch: perl
11392            ! doio.c
11393 ____________________________________________________________________________
11394 [  7352] By: jhi                                   on 2000/10/17  13:06:19
11395         Log: More IoTYPE sprinkling.
11396      Branch: perl
11397            ! doio.c pp_hot.c
11398 ____________________________________________________________________________
11399 [  7351] By: jhi                                   on 2000/10/16  22:47:07
11400         Log: Detect early whether the std streams have gone bad.
11401              
11402              Subject: PATCH (was Re: [ID 20001016.007] Not OK: perl v5.7.0 +DEVEL7228 on i586-linux 2.2.16 (UNINSTALLED))
11403              Date: Mon, 16 Oct 2000 23:28:42 +0100
11404              From: Nicholas Clark <nick@ccl4.org>
11405              Message-ID: <20001016232842.A37942@plum.flirble.org>
11406      Branch: perl
11407            ! t/op/misc.t
11408 ____________________________________________________________________________
11409 [  7350] By: jhi                                   on 2000/10/16  22:45:16
11410         Log: Subject: [ID 20001016.012] [PATCHes Included]OK: perl v5.7.0 on dos-djgpp djgpp
11411              From: "Peter J. Farley III" <pjfarley@banet.net>
11412              Date: Mon, 16 Oct 2000 18:15:59 -0400
11413              Message-Id: <4.3.1.0.20001016180235.00ac65a0@pop5.banet.net>
11414      Branch: perl
11415            ! djgpp/djgpp.c dosish.h t/io/open.t
11416 ____________________________________________________________________________
11417 [  7349] By: jhi                                   on 2000/10/16  22:36:45
11418         Log: perldelta tweak.
11419      Branch: perl
11420            ! pod/perldelta.pod
11421 ____________________________________________________________________________
11422 [  7348] By: jhi                                   on 2000/10/16  15:17:53
11423         Log: Update Changes.
11424      Branch: perl
11425            ! Changes patchlevel.h
11426 ____________________________________________________________________________
11427 [  7347] By: jhi                                   on 2000/10/16  13:55:27
11428         Log: Add the capability to include/exclude branches.
11429      Branch: perl
11430            ! Porting/genlog
11431 ____________________________________________________________________________
11432 [  7346] By: jhi                                   on 2000/10/16  13:18:04
11433         Log: Add Charles Lane.
11434      Branch: perl
11435            ! AUTHORS Changes
11436 ____________________________________________________________________________
11437 [  7345] By: jhi                                   on 2000/10/16  13:13:21
11438         Log: Add a perldelta note about the change #6024, pointed out by Sarathy.
11439      Branch: perl
11440            ! pod/perldelta.pod
11441 ____________________________________________________________________________
11442 [  7344] By: gsar                                  on 2000/10/16  09:30:21
11443         Log: integrate change#6220 from cfgperl
11444              
11445              Win32 patches from Benjamin Stuhl.
11446      Branch: maint-5.6/perl
11447           !> makedef.pl win32/win32.h
11448 ____________________________________________________________________________
11449 [  7343] By: gsar                                  on 2000/10/16  08:32:19
11450         Log: integrate changes#6221,6222 from cfgperl
11451              
11452              Remove tr///CU (the feature is to be obsoleted by better interfaces).
11453              From: simon@brecon.co.uk (Simon Cozens)
11454              Subject: [PATCH] Eliminate tr///[CU][CU]
11455              Date: 23 Jun 2000 11:05:40 GMT
11456              Message-ID: <slrn8l6h44.h5k.simon@justanother.perlhacker.org>
11457              
11458              doc typo fix
11459              Subject: [PATCH] documentation typo in lib/Pod/Usage.pm
11460              From: Ian Phillipps <Ian.Phillipps@iname.com>
11461              Date: Fri, 23 Jun 2000 10:40:58 +0100
11462              Message-ID: <20000623104058.A22791@homer.diplex.co.uk>
11463      Branch: maint-5.6/perl
11464           !> doop.c embed.pl lib/Pod/Usage.pm pod/perlop.pod toke.c utf8.c
11465 ____________________________________________________________________________
11466 [  7342] By: gsar                                  on 2000/10/16  08:28:08
11467         Log: integrate change#6217 from cfgperl (in part)
11468              
11469              Rename the fdpid locking and integrate with Sarathy.
11470      Branch: maint-5.6/perl
11471           !> Configure config_h.SH doio.c embed.h embed.pl embedvar.h
11472           !> global.sym gv.c intrpvar.h objXSUB.h perl.c perlapi.h pp.c
11473           !> pp_ctl.c proto.h sv.h util.c util.h vmesa/vmesa.c
11474           !> win32/win32.c
11475 ____________________________________________________________________________
11476 [  7341] By: gsar                                  on 2000/10/16  08:23:39
11477         Log: integrate changes#6214..6216 from mainline
11478              
11479              @_ can't have junk in it even in the non-USE_ITHREADS case because
11480              caller() wants to populate @DB::args with it (causes a coredump
11481              in Carp::confess())
11482              
11483              tweak comment about @DB::args
11484              
11485              be more optimal about clearing @_
11486      Branch: maint-5.6/perl
11487           !> av.h cop.h pp_ctl.c t/op/runlevel.t
11488 ____________________________________________________________________________
11489 [  7340] By: gsar                                  on 2000/10/16  08:20:37
11490         Log: integrate changes#6207..6210 from cfgperl
11491              
11492              Subject: [PATCH 5.6.0] Threadsafe patches
11493              From: Dan Sugalski <dan@sidhe.org>
11494              To: perl5-porters@perl.org
11495              Date: Mon, 08 May 2000 18:08:13 -0400
11496              Message-Id: <4.3.1.0.20000508180729.02182de0@24.8.96.48>
11497              
11498              Regen headers for #6207.
11499              
11500              Lock PL_fdpid against race conditions, based on:
11501              Subject: [PATCH 5.6.0]subprocess fixup for threads
11502              From: Dan Sugalski <dan@sidhe.org>
11503              To: perl5-porters@perl.org
11504              Date: Tue, 11 Apr 2000 17:02:32 -0400
11505              Message-Id: <4.3.0.20000411170218.01d2f580@24.8.96.48>
11506              
11507              Mopup for #6207 and #6209.
11508      Branch: maint-5.6/perl
11509           !> doio.c embed.h embed.pl global.sym gv.c intrpvar.h objXSUB.h
11510           !> perl.c pp.c pp_ctl.c proto.h sv.h util.c vmesa/vmesa.c
11511           !> win32/win32.c
11512 ____________________________________________________________________________
11513 [  7339] By: gsar                                  on 2000/10/16  08:14:34
11514         Log: integrate change#6203 from cfgperl
11515              
11516              perldiag should refer to perlos2.pod not README.os2
11517      Branch: maint-5.6/perl
11518           !> pod/perldiag.pod
11519 ____________________________________________________________________________
11520 [  7338] By: gsar                                  on 2000/10/16  08:11:42
11521         Log: integrate change#6201 from mainline
11522              
11523              Perl_eval_pv() leaks 4 bytes every time it is called because it
11524              does a PUSHMARK that's never ever POPMARKed; in general, only
11525              Perl_call_[sp]v() need a PUSHMARK for incoming arguments;
11526              Perl_eval_[sp]v() don't because they don't take any incoming
11527              arguments (this leak has been around since the original version
11528              of perl_eval_pv() in 5.003_97e)
11529      Branch: maint-5.6/perl
11530           !> perl.c
11531 ____________________________________________________________________________
11532 [  7337] By: gsar                                  on 2000/10/16  08:08:47
11533         Log: integrate changes#6197..6200 from cfgperl
11534              
11535              Subject: [ID 20000602.005] [PATCH]5.6.0 (DOC) tiny change to perlsyn.pod
11536              From: John Borwick <jhborwic@unity.ncsu.edu>
11537              Date: Fri, 2 Jun 2000 14:35:03 -0400 (EDT)
11538              Message-Id: <Pine.GSO.4.21.0006021420290.11432-100000@eos00du.eos.ncsu.edu>
11539              
11540              Subject: [PATCH 5.6.0]VMS fixups so we can build with MULTIPLICITY
11541              From: Dan Sugalski <dan@sidhe.org>
11542              To: vmsperl@perl.org, perl5-porters@perl.org
11543              Date: Fri, 02 Jun 2000 16:00:41 -0400
11544              Message-Id: <4.3.2.7.0.20000602155951.01f02b20@24.8.96.48>
11545              Message-Id: <4.3.2.7.0.20000602164011.01ec8c30@24.8.96.48>
11546              
11547              Subject: [PATCH 5.6.0]Make perl's malloc work on VMS
11548              From: Dan Sugalski <dan@sidhe.org>
11549              To: perl5-porters@perl.org, vmsperl@perl.org
11550              Date: Fri, 02 Jun 2000 17:30:51 -0400
11551              Message-Id: <4.3.2.7.0.20000602173021.01f03570@24.8.96.48>
11552              
11553              Update to cperl-mode.el 4.31 from
11554              ftp://ftp.math.ohio-state.edu/pub/users/ilya/cperl-mode.el
11555              Subject: A couple of notes
11556              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
11557              To: Mailing list Perl5 <perl5-porters@perl.org>
11558              Date: Sat, 3 Jun 2000 23:33:32 -0400
11559              Message-ID: <20000603233332.A6790@monk.mps.ohio-state.edu>
11560      Branch: maint-5.6/perl
11561           !> emacs/cperl-mode.el embed.h embed.pl embedvar.h
11562           !> ext/POSIX/POSIX.xs global.sym objXSUB.h perlapi.c perlapi.h
11563           !> pod/perlapi.pod pod/perlintern.pod pod/perlsyn.pod proto.h
11564           !> vms/descrip_mms.template vms/gen_shrfls.pl vms/vms.c
11565           !> vms/vmsish.h
11566 ____________________________________________________________________________
11567 [  7336] By: gsar                                  on 2000/10/16  08:03:46
11568         Log: integrate changes#6194,6195 from mainline
11569              
11570              fix small eval"" memory leaks under USE_ITHREADS
11571              
11572              fix yet another eval"" leak under USE_ITHREADS
11573      Branch: maint-5.6/perl
11574           !> cop.h embed.h embed.pl objXSUB.h op.c perl.c perlapi.c perly.c
11575           !> perly_c.diff pp_ctl.c proto.h scope.c scope.h sv.c toke.c
11576           !> vms/perly_c.vms
11577 ____________________________________________________________________________
11578 [  7335] By: gsar                                  on 2000/10/16  08:02:15
11579         Log: integrate changes#6190,6191 from mainline
11580              
11581              submit missing embed.pl change
11582              
11583              vec() loses numericalness (modified version of patch suggested
11584              by Robin Barker)
11585      Branch: maint-5.6/perl
11586           !> doop.c embed.pl t/op/vec.t
11587 ____________________________________________________________________________
11588 [  7334] By: gsar                                  on 2000/10/16  08:01:03
11589         Log: integrate change#6189 from mainline
11590              
11591              counting tr/// corrupts later operation (from M.J.T Guy)
11592      Branch: maint-5.6/perl
11593           !> doop.c t/op/tr.t
11594 ____________________________________________________________________________
11595 [  7333] By: gsar                                  on 2000/10/16  07:59:07
11596         Log: integrate changes#6183..6188 from mainline
11597              
11598              SelfLoader can lose $@ in AUTOLOAD() (from Nicholas Clark
11599              <nick@ccl4.org>)
11600              
11601              tweak for change#6127
11602              
11603              remove incorrect documentation about implicit split to @_ in
11604              list context, which never really worked in perl 5 (from
11605              M.J.T. Guy)
11606              
11607              further qualify references to "alphanumeric" (from Wolfgang Laun
11608              <wolfgang.laun@alcatel.at>)
11609              
11610              replace pod2latex with the one in Pod-LaTeX v0.52 from CPAN
11611              (from Tim Jenness <t.jenness@jach.hawaii.edu>)
11612              
11613              h2xs tweaks
11614      Branch: maint-5.6/perl
11615           +> lib/Pod/LaTeX.pm t/lib/selfloader.t
11616           !> AUTHORS MAINTAIN MANIFEST ext/Devel/Peek/Peek.pm handy.h
11617           !> lib/SelfLoader.pm perl.c pod/perlapi.pod pod/perldata.pod
11618           !> pod/perlfaq6.pod pod/perlfaq9.pod pod/perlfunc.pod
11619           !> pod/perllocale.pod pod/perlre.pod pod/perltrap.pod
11620           !> pod/pod2latex.PL utils/h2xs.PL
11621 ____________________________________________________________________________
11622 [  7332] By: gsar                                  on 2000/10/16  07:53:52
11623         Log: integrate change#6179 from mainline
11624              
11625              buggy modulus on UVs introduced by change#3378 (resulted in
11626              4063328477 % 65535 amounting to 27406, instead of 27407)
11627      Branch: maint-5.6/perl
11628           !> pp.c t/op/arith.t
11629 ____________________________________________________________________________
11630 [  7331] By: gsar                                  on 2000/10/16  07:52:49
11631         Log: integrate changes#6176,6177,6178,6182 from cfgperl
11632              
11633              Single-quoted utf8 patch from Simon Cozens.
11634              
11635              Substitution utf8 patch from Simon Cozens.
11636              
11637              Be cleaner.
11638              
11639              Be Cleaner Part Deux.
11640      Branch: maint-5.6/perl
11641           !> Makefile.SH pp_hot.c toke.c
11642 ____________________________________________________________________________
11643 [  7330] By: gsar                                  on 2000/10/16  07:41:36
11644         Log: integrate change#6172 from mainline
11645              
11646              fix buggy multiline matching of C<"a\nxb\n" =~ /(?!\A)x/m>
11647              (from Ilya Zakharevich)
11648      Branch: maint-5.6/perl
11649           !> regexec.c t/op/re_tests
11650 ____________________________________________________________________________
11651 [  7329] By: gsar                                  on 2000/10/16  07:40:25
11652         Log: integrate change#6171 from mainline
11653              
11654              scalar() doesn't force scalar context when used in void context
11655              (from Simon Cozens)
11656      Branch: maint-5.6/perl
11657           !> op.c t/op/wantarray.t
11658 ____________________________________________________________________________
11659 [  7328] By: gsar                                  on 2000/10/16  07:39:33
11660         Log: integrate change#6170 from mainline
11661              
11662              change#6142 needs tweaks to tests to work where there's no
11663              symlink() (from Helmut Jarausch <jarausch@igpm.rwth-aachen.de>)
11664      Branch: maint-5.6/perl
11665           !> t/lib/filefind.t
11666 ____________________________________________________________________________
11667 [  7327] By: gsar                                  on 2000/10/16  07:35:34
11668         Log: integrate changes#6166..6168 from cfgperl
11669              
11670              Introduce HAS_GETESPWNAM, HAS_GETPRPWNAM, and I_PROT
11671              in case somebody wants to write an extension for more
11672              shadow database interfaces.
11673              
11674              tweak todo
11675              
11676              Tweak NV_PRESERVES_UV*, vms/subconfigure.com left untouched.
11677      Branch: maint-5.6/perl
11678           !> Configure Porting/Glossary Porting/config.sh Porting/config_H
11679           !> Todo-5.6 config_h.SH epoc/config.sh perl.h pp_sys.c toke.c
11680           !> vms/subconfigure.com vos/config.def vos/config.h vos/config.pl
11681           !> vos/config_h.SH_orig win32/config.bc win32/config.gc
11682           !> win32/config.vc win32/config_H.bc win32/config_H.gc
11683           !> win32/config_H.vc win32/config_h.PL win32/config_sh.PL
11684 ____________________________________________________________________________
11685 [  7326] By: gsar                                  on 2000/10/16  07:29:05
11686         Log: integrate changes#6157,6159..6161,6164 from cfgperl
11687              
11688              Regen Configure to jive with #6149.
11689              
11690              Upgrade to File::Temp 0.08 from Tim Jenness via CPAN.
11691              
11692              Changes for the File::Temp 0.08 (change #6159) test suite
11693              to fit better into the Perl distribution test framework.
11694              
11695              Add autogeneration of perlmodlib.pod and the new perlnewmod.pod,
11696              both from Simon Cozens.
11697              
11698              detypo
11699      Branch: maint-5.6/perl
11700           +> pod/perlmodlib.PL pod/perlnewmod.pod
11701           !> AUTHORS Configure MAINTAIN MANIFEST config_h.SH
11702           !> lib/File/Temp.pm pod/Makefile pod/perl.pod pod/perlmodlib.pod
11703           !> pod/perltoc.pod t/lib/ftmp-mktemp.t t/lib/ftmp-posix.t
11704           !> t/lib/ftmp-security.t t/lib/ftmp-tempfile.t
11705 ____________________________________________________________________________
11706 [  7325] By: gsar                                  on 2000/10/16  07:25:13
11707         Log: integrate change#6158 from vmsperl
11708              
11709              Add fallback to tmpfile for use in cases where user's relying on
11710              ACLs on SYS$SCRATCH to permit file creation. (based on Charles
11711              Lane's patch)
11712      Branch: maint-5.6/perl
11713           !> vms/vms.c vms/vmsish.h
11714 ____________________________________________________________________________
11715 [  7324] By: gsar                                  on 2000/10/16  07:20:50
11716         Log: integrate changes#6153..6155 from mainline
11717              
11718              prettier Test::Harness output on failed tests (from Nicholas Clark
11719              <nick@Bagpuss.uk.boo.com>)
11720              
11721              avoid type mismatch warning
11722              
11723              small bug in change#6144; remove random \xA0 character that snuck
11724              in via change#6145
11725      Branch: maint-5.6/perl
11726           !> lib/AutoSplit.pm lib/ExtUtils/xsubpp lib/Test/Harness.pm
11727           !> perl.c
11728 ____________________________________________________________________________
11729 [  7323] By: gsar                                  on 2000/10/16  07:18:47
11730         Log: integrate changes#6151,6152 from mainline
11731              
11732              fix accidental pessimization in RE optimizer (from Ilya Zakharevich)
11733              
11734              cosmetic fixups of RE debug output (from Ilya Zakharevich)
11735      Branch: maint-5.6/perl
11736           !> regexec.c
11737 ____________________________________________________________________________
11738 [  7322] By: gsar                                  on 2000/10/16  07:17:25
11739         Log: integrate changes#6146..6150 from mainline
11740              
11741              doc typo
11742              
11743              add a make entry to Config.pm so "perl -V:make" works on VMS
11744              (from Peter Prymmer)
11745              
11746              close open file before chmod() (from Rocco Caputo <troc@netrus.net>)
11747              
11748              OS/2 tweaks for usethreads build (from Rocco Caputo
11749              <troc@netrus.net>)
11750              
11751              perlrequick.pod updates (from Mark Kvale <kvale@phy.ucsf.edu>)
11752      Branch: maint-5.6/perl
11753           !> Configure hints/os2.sh lib/ExtUtils/MM_Unix.pm lib/warnings.pm
11754           !> makedef.pl os2/Makefile.SHs os2/OS2/REXX/t/rx_dllld.t
11755           !> os2/OS2/REXX/t/rx_objcall.t os2/OS2/REXX/t/rx_tievar.t
11756           !> os2/OS2/REXX/t/rx_tieydb.t os2/os2.c os2/os2ish.h perl.c
11757           !> pod/perlrequick.pod util.c vms/subconfigure.com warnings.h
11758           !> warnings.pl x2p/a2p.h
11759 ____________________________________________________________________________
11760 [  7321] By: gsar                                  on 2000/10/16  07:14:02
11761         Log: integrate changes#6143..6145 from mainline
11762              
11763              MacOS support, part 1 (from Matthias Neeracher
11764              <neeri@iis.ee.ethz.ch>)
11765              
11766              MacOS support, part 2: make AutoSplit use File::Spec instead
11767              of assuming Unixisms; *UNTESTED on Unix* (from Matthias Neeracher
11768              <neeri@iis.ee.ethz.ch>)
11769              
11770              make xsubpp skip embedded pod (from Matthias Neeracher
11771              <neeri@iis.ee.ethz.ch>)
11772      Branch: maint-5.6/perl
11773           +> ext/DynaLoader/dl_mac.xs
11774           !> MANIFEST ext/DB_File/Makefile.PL ext/NDBM_File/Makefile.PL
11775           !> ext/POSIX/POSIX.xs lib/AutoSplit.pm lib/ExtUtils/MakeMaker.pm
11776           !> lib/ExtUtils/xsubpp mg.c perl.c perlsfio.h pod/perlfaq4.pod
11777           !> pp_ctl.c proto.h toke.c util.c util.h
11778 ____________________________________________________________________________
11779 [  7320] By: gsar                                  on 2000/10/16  07:12:13
11780         Log: integrate changes#6141,6142 from mainline
11781              
11782              BSD/OS (bsdi) hints update by Timur I. Bakeyev and Todd C. Miller,
11783              forwarded by Peter Seebach from the bsdi-users mailing list.
11784              p5p Message-Id: <200005280543.AAA24519@guild.plethora.net>
11785              
11786              File::Find fails to chdir when chasing symlinks (from
11787              Helmut Jarausch <jarausch@igpm.rwth-aachen.de>)
11788      Branch: maint-5.6/perl
11789           !> hints/bsdos.sh lib/File/Find.pm t/lib/filefind.t
11790 ____________________________________________________________________________
11791 [  7319] By: gsar                                  on 2000/10/16  07:04:30
11792         Log: integrate change#6139 from mainline
11793              
11794              revise mktables.PL for bugs and newness in Unicode 3.0
11795              (from James Bence <jbence@amgen.com>)
11796      Branch: maint-5.6/perl
11797           +> (branch 30 files)
11798           !> (integrate 49 files)
11799 ____________________________________________________________________________
11800 [  7318] By: gsar                                  on 2000/10/16  07:01:01
11801         Log: integrate changes#6137,6138 from mainline
11802              
11803              fix bogus redeclaration warning for "our" variables in different
11804              scopes
11805              
11806              add note about the handling of negative indices to tied arrays
11807              (from Michael G Schwern <schwern@pobox.com>)
11808      Branch: maint-5.6/perl
11809           !> op.c pod/perltie.pod t/pragma/strict-vars
11810 ____________________________________________________________________________
11811 [  7317] By: gsar                                  on 2000/10/16  06:58:46
11812         Log: integrate changes#6127..6136 from mainline
11813              
11814              call_method(...,G_EVAL) can longjmp() out if the method probing
11815              failed (from Gisle Aas)
11816              
11817              new perlxstut example for passing/returning refs to arrays
11818              (from David Lowe <dlowe@pootpoot.com>)
11819              
11820              VMS test harness tweak (from Jesper Naur <jesper.naur@post.tele.dk>)
11821              
11822              fix places that mean C<"word" character> but say C<alphanumeric
11823              character>
11824              
11825              avoid warnings in POSIX.pm (from Barrie Slaymaker)
11826              
11827              warnings::enabled() doesn't fall back to looking at $^W if
11828              caller isn't using lexical warnings (from Paul Marquess)
11829              
11830              elide bogus test in change#6132
11831              
11832              make Test::Harness use wait.h/WCOREDUMP if available
11833              (from Ben Tilly <ben_tilly@hotmail.com>)
11834              
11835              enable Test::Harness to dynamically determine column width etc.
11836              (from Rob Napier <rnapier@employees.org>)
11837              
11838              random pod typos (from Peter Scott <Peter@PSDT.com>)
11839      Branch: maint-5.6/perl
11840           !> cop.h ext/Devel/Peek/Peek.pm ext/POSIX/POSIX.pm
11841           !> lib/Test/Harness.pm perl.c pod/perldebguts.pod
11842           !> pod/perlfunc.pod pod/perlre.pod pod/perlretut.pod
11843           !> pod/perlxstut.pod pp_ctl.c t/pragma/warn/9enabled vms/test.com
11844 ____________________________________________________________________________
11845 [  7316] By: gsar                                  on 2000/10/16  06:53:23
11846         Log: integrate change#6126 from mainline
11847              
11848              change#2879 broke rvalue autovivification of magicals such as
11849              ${$num} (reworked variant of patch suggested by Simon Cozens)
11850      Branch: maint-5.6/perl
11851           !> embed.h embed.pl gv.c pod/perlapi.pod pod/perlintern.pod pp.c
11852           !> pp_hot.c proto.h t/op/gv.t
11853 ____________________________________________________________________________
11854 [  7315] By: gsar                                  on 2000/10/16  06:51:38
11855         Log: integrate changes#6123,6125 from mainline
11856              
11857              clarify gotcha with #line directives (from Rocco Caputo
11858              <troc@netrus.net>)
11859              
11860              enable propagating exception objects via Perl_croak() in XS code
11861              (from Gisle Aas)
11862      Branch: maint-5.6/perl
11863           !> pod/perldebug.pod pod/perlsyn.pod util.c
11864 ____________________________________________________________________________
11865 [  7314] By: gsar                                  on 2000/10/16  06:49:28
11866         Log: integrate change#6122 from mainline
11867              
11868              downgrade fatal error on C<"foo@nosucharray.com"> to optional
11869              warning (from Mark-Jason Dominus)
11870      Branch: maint-5.6/perl
11871           !> lib/ExtUtils/typemap pod/perldelta.pod pod/perlsub.pod
11872           !> pod/perltrap.pod t/base/lex.t t/pragma/strict-vars
11873           !> t/pragma/strict.t t/pragma/warn/toke t/pragma/warnings.t
11874           !> toke.c
11875 ____________________________________________________________________________
11876 [  7313] By: gsar                                  on 2000/10/16  06:46:54
11877         Log: integrate changes#6112..6121 from vmsperl
11878              
11879              Check for existence of file before trying to delete
11880              
11881              Ugly workaround for version-specific RTL error
11882              
11883              Urk -- undo previous removal of vmsish 'exit' change
11884              
11885              Add bounds checking for several strings (Charles Lane)
11886              
11887              Miscellaneous cosmetic fixes (Charles Lane)
11888              
11889              Treat sockets as special in sys(read|write) (Charles Lane et al.)
11890              
11891              Regularize distinction between RMS$_DNF and RMS$_DIR (Craig Berry)
11892              Flatten case labels in switch statements uniformly (Charles Bailey)
11893              
11894              Quiet error messages in vmsish.t (Charles Lane)
11895              
11896              Add missing escape (Charles Lane)
11897              
11898              Allow eliminate_macros() and fixpath() to handle space-delimited
11899              lists (based on fixes by Craig Berry)
11900      Branch: maint-5.6/perl
11901           !> lib/ExtUtils/MM_VMS.pm lib/File/Spec/VMS.pm t/op/lex_assign.t
11902           !> vms/ext/vmsish.pm vms/ext/vmsish.t vms/test.com vms/vms.c
11903           !> vms/vmsish.h
11904 ____________________________________________________________________________
11905 [  7312] By: gsar                                  on 2000/10/16  06:41:18
11906         Log: integrate changes#6107,6110 from cfgperl
11907              
11908              Tweak the todo list.
11909              
11910              todo tweak
11911      Branch: maint-5.6/perl
11912           !> Todo-5.6
11913 ____________________________________________________________________________
11914 [  7311] By: gsar                                  on 2000/10/16  06:38:38
11915         Log: integrate changes#6104,6108 from mainline
11916              
11917              PL_sys_intern was being initialized too late on windows
11918              
11919              reenable fake signal handling on Windows, bugs and all
11920      Branch: maint-5.6/perl
11921           !> embed.h embed.pl global.sym makedef.pl mg.c objXSUB.h perl.c
11922           !> perl.h perlapi.c pod/perlapi.pod proto.h win32/perlhost.h
11923           !> win32/win32.c
11924 ____________________________________________________________________________
11925 [  7310] By: gsar                                  on 2000/10/16  06:36:03
11926         Log: integrate changes#6095,6097..6103 from cfgperl
11927              
11928              Introduce NV_PRESERVED_BITS.  Not yet used anywhere but
11929              might be useful in future.
11930              
11931              Add a note about possible compilation problems from Allen Smith.
11932              
11933              Add a note about other, yet unsupported, shadow password APIs.
11934              
11935              Tweaks for the cc bugs from Allen Smith.
11936              
11937              More compilation tweakery from Allen Smith.
11938              
11939              Hints and test tweaks for Unicos.
11940              
11941              The test suite tweak in #6101 wasn't quite right.
11942              
11943              Test tweaking for Unicos continues.
11944      Branch: maint-5.6/perl
11945           !> Configure Porting/Glossary Porting/config.sh Porting/config_H
11946           !> config_h.SH hints/irix_6.sh hints/unicos.sh pp_sys.c t/lib/b.t
11947           !> t/lib/complex.t t/op/64bitint.t
11948 ____________________________________________________________________________
11949 [  7309] By: gsar                                  on 2000/10/16  06:29:41
11950         Log: integrate changes#6093,6094 from mainline
11951              
11952              fork() failure to create pseudo process sets errno=EAGAIN and returns
11953              undef on windows (from Clinton Pierce <clintp@geeksalad.org>)
11954              
11955              cygwin update (from Eric Fifer <efifer@sanwaint.com>)
11956      Branch: maint-5.6/perl
11957           !> README.cygwin cygwin/Makefile.SHs cygwin/cygwin.c
11958           !> hints/cygwin.sh pp_sys.c sv.c win32/perlhost.h
11959 ____________________________________________________________________________
11960 [  7308] By: gsar                                  on 2000/10/16  06:27:29
11961         Log: integrate change#6092 from cfgperl
11962              
11963              Regen perltoc with the fixed buildtoc.
11964      Branch: maint-5.6/perl
11965           !> pod/perltoc.pod
11966 ____________________________________________________________________________
11967 [  7307] By: gsar                                  on 2000/10/16  06:26:40
11968         Log: integrate changes#6089,6090 from mainline
11969              
11970              buildtoc tweak to fix newline lossage
11971              
11972              concat doesn't preserve utf8-ness, and doesn't invalidate
11973              [NI]OK; added tests for both
11974      Branch: maint-5.6/perl
11975           !> perl.c pod/buildtoc pp_hot.c sv.c t/op/substr.t
11976 ____________________________________________________________________________
11977 [  7306] By: gsar                                  on 2000/10/16  06:24:05
11978         Log: integrate change#6088 from cfgperl
11979              
11980              Remove HAS_SETSPENT, HAS_GETSPENT, HAS_ENDSPENT,
11981              because we do not use those.  The HAS_GETSPNAM remains,
11982              though, because we still do use that.
11983      Branch: maint-5.6/perl
11984           !> Configure Porting/Glossary Porting/config.sh Porting/config_H
11985           !> config_h.SH epoc/config.sh hints/machten.sh pod/perltoc.pod
11986           !> pp_sys.c vms/subconfigure.com vos/config.def vos/config.h
11987           !> vos/config_h.SH_orig win32/config.bc win32/config.gc
11988           !> win32/config.vc win32/config_H.bc win32/config_H.gc
11989           !> win32/config_H.vc win32/config_h.PL win32/config_sh.PL
11990 ____________________________________________________________________________
11991 [  7305] By: gsar                                  on 2000/10/16  06:15:52
11992         Log: integrate changes#6084,6085,6087 from mainline
11993              
11994              substr() does not preserve utf8-ness (from Stefan Eissing
11995              <Eissing@medicaldataservice.de>); added tests
11996              
11997              repeat operator (x) doesn't preserve utf8-ness
11998              
11999              reverse() and quotemeta() weren't preserving utf8-ness; add tests
12000      Branch: maint-5.6/perl
12001           !> pp.c sv.c t/op/quotemeta.t t/op/substr.t toke.c
12002 ____________________________________________________________________________
12003 [  7304] By: gsar                                  on 2000/10/16  06:13:10
12004         Log: integrate changes#6077..6083 from mainline
12005              
12006              avoid warnings in diagnostics.pm; pod tweaks (from Peter Prymmer
12007              and Tom Phoenix)
12008              
12009              workaround for CRT bug in chdir() (from Charles Lane, via
12010              Peter Prymmer)
12011              
12012              remove outdated kludge in Carp (NULLs are permitted in diagnostics
12013              now)
12014              
12015              add File::Temp v0.08 from CPAN, with small tweaks to testsuite
12016              (from Tim Jenness <t.jenness@jach.hawaii.edu>)
12017              
12018              better default perlbug categories for ok reports (from Richard Foley)
12019              
12020              peek.t non-portable to ithreads
12021              
12022              note about undocumented caller() return value (from M.J.T. Guy);
12023              yet another peek.t tweak
12024      Branch: maint-5.6/perl
12025           +> lib/File/Temp.pm t/lib/ftmp-mktemp.t t/lib/ftmp-posix.t
12026           +> t/lib/ftmp-security.t t/lib/ftmp-tempfile.t
12027           !> AUTHORS MAINTAIN MANIFEST iperlsys.h lib/Carp/Heavy.pm
12028           !> lib/diagnostics.pm pod/perlfunc.pod pod/perlrun.pod
12029           !> pod/perltie.pod t/lib/peek.t utils/perlbug.PL vms/vms.c
12030           !> vms/vmsish.h
12031 ____________________________________________________________________________
12032 [  7303] By: gsar                                  on 2000/10/16  06:03:18
12033         Log: integrate changes#6011,6016,6033,6035..6039,6047..6052,6054..6059,
12034              6073..6075 from cfgperl (pp_sys.c manually merged due to conflicts)
12035              
12036              &HUGE_VAL is not defined, it exists.
12037              
12038              Do not warn that an infinity does not look like a number.
12039              
12040              Rewrite the pwent/spent logic to be a little bit more clearer.
12041              
12042              Continue on the pwent/spent case.
12043              
12044              Correct Freudian slip.
12045              
12046              Use HUGE_VALL if applicable.
12047              
12048              pwent/spent #ifdef imbalance.
12049              
12050              Infinite problems.
12051              
12052              Call getspnam() only iff needd.
12053              
12054              Test both the scalar and list contexts.
12055              
12056              Use setxxent()/endxxent().
12057              
12058              Complex tweakery.
12059              
12060              Unicos hint tweak.
12061              
12062              Be more forgiving in POSIX about HUGE_VALL.
12063              
12064              Detypo.
12065              
12066              The search of infinity continues, this time simplified.
12067              
12068              The logic of choosing strtol/strtoul/strtoll/strtoull was wrong
12069              in natively 64-bit platforms where a long is a quad (no need
12070              for long longs).  Also added bias for IVs.
12071              
12072              Complex tweaks.
12073              
12074              Introduce t/lib/peek.t.
12075              
12076              Make the test more portable.
12077      Branch: maint-5.6/perl
12078           +> t/lib/peek.t
12079            ! pp_sys.c
12080           !> MANIFEST ext/POSIX/POSIX.xs hints/unicos.sh
12081           !> lib/Math/Complex.pm sv.c t/lib/complex.t t/op/grent.t
12082           !> t/op/pwent.t toke.c util.c
12083 ____________________________________________________________________________
12084 [  7302] By: gsar                                  on 2000/10/16  05:03:37
12085         Log: integrate changes#6066..6071 from mainline
12086              
12087              s/END/CHECK/
12088              
12089              replace direct call to sighandler() with (*PL_sighandlerp)()
12090              
12091              note about values()
12092              
12093              File::Spec compatibility update (from Barrie Slaymaker
12094              <barries@slaysys.com>)
12095              
12096              remove misleading comment (from M.J.T. Guy)
12097              
12098              misformatted perllocal.pod (from Tim Jenness
12099              <t.jenness@jach.hawaii.edu>)
12100      Branch: maint-5.6/perl
12101           !> lib/ExtUtils/MM_Unix.pm lib/ExtUtils/MM_Win32.pm
12102           !> lib/File/Spec.pm lib/File/Spec/Mac.pm lib/File/Spec/Unix.pm
12103           !> lib/File/Spec/VMS.pm lib/File/Spec/Win32.pm perl.c
12104           !> pod/perlfunc.pod t/lib/anydbm.t win32/win32.c
12105 ____________________________________________________________________________
12106 [  7301] By: gsar                                  on 2000/10/16  05:00:08
12107         Log: integrate changes#6061..6063 from mainline
12108              
12109              change#5921 neglected to make eq honor "use bytes"
12110              
12111              additional tests for utf8.t
12112              
12113              tokeq() could read unallocated field in argument
12114      Branch: maint-5.6/perl
12115           !> sv.c t/pragma/utf8.t toke.c
12116 ____________________________________________________________________________
12117 [  7300] By: gsar                                  on 2000/10/16  04:56:54
12118         Log: integrate changes#6046,6048,6057,6058 from mainline
12119              
12120              libscheck has insufficient checks for n32 libs (from
12121              Albert Chin-A-Young <china@thewrittenword.com>)
12122              
12123              add note about how $( doesn't interpolate in REs (from
12124              Philip Newton <newton@ficus.frogspace.net>)
12125              
12126              fix broken parsing of /\x{ab}/
12127              
12128              printf(...) should be PerlIO_printf(PerlIO_stdout(), ...)
12129              (spotted by Donald Kinzer <dkinzer@premia.com>)
12130      Branch: maint-5.6/perl
12131           !> hints/irix_6.sh perl.c pod/perlop.pod regcomp.c
12132           !> t/pragma/utf8.t
12133 ____________________________________________________________________________
12134 [  7299] By: gsar                                  on 2000/10/16  04:52:50
12135         Log: integrate change#6044 from mainline
12136              
12137              change#3798 broke the meaning of "\0_7_7", tr/\0_// etc.; fix it
12138              such that underscores are only ignored in literal numbers,
12139              "\x{...}", and hex/oct argument
12140      Branch: maint-5.6/perl
12141           !> perl.c pp.c regcomp.c t/op/oct.t toke.c util.c
12142 ____________________________________________________________________________
12143 [  7298] By: gsar                                  on 2000/10/16  04:50:53
12144         Log: integrate changes#6027..6043 from mainline
12145              
12146              podlators-1.02 update (from Russ Allbery)
12147              
12148              Pod::Man generates groff-incompatible macro definition (from
12149              Tom Christiansen)
12150              
12151              add CGI.pm v2.66 (from Lincoln Stein)
12152              
12153              introduce @LAST_MATCH_START and @LAST_MATCH_END, English aliases
12154              for @- and @+ (from Johan Vromans)
12155              
12156              small nits in diagnostics.pm (from Robin Barker)
12157              
12158              whitespace adjustments
12159              
12160              missing files in MANIFEST
12161              
12162              cpio 2.4.2 on Linux creates directories in 0700 mode, adjust makerel
12163              to compensate
12164              
12165              remove outdated perltrap entry (from Peter Scott <Peter@PSDT.com>)
12166              
12167              perlretut revisions (from Mark Kvale <kvale@phy.ucsf.edu>)
12168      Branch: maint-5.6/perl
12169           +> lib/CGI/Util.pm t/lib/cgi-pretty.t
12170           !> MANIFEST Porting/makerel lib/CGI.pm lib/CGI/Carp.pm
12171           !> lib/CGI/Cookie.pm lib/CGI/Pretty.pm lib/CGI/Push.pm
12172           !> lib/English.pm lib/Pod/Man.pm lib/Pod/Text.pm
12173           !> lib/diagnostics.pm pod/perldiag.pod pod/perlretut.pod
12174           !> pod/perltrap.pod pod/perlvar.pod pp_sys.c t/lib/cgi-function.t
12175           !> t/lib/cgi-html.t t/lib/cgi-request.t
12176 ____________________________________________________________________________
12177 [  7297] By: gsar                                  on 2000/10/16  04:44:30
12178         Log: integrate change#6025 from mainline
12179              
12180              Is{Alnum,Alpha,Word} don't match titlecase
12181              TODO: IsSpace is defined recursively!
12182              (both spotted by Larry)
12183      Branch: maint-5.6/perl
12184           !> lib/unicode/Is/Alnum.pl lib/unicode/Is/Alpha.pl
12185           !> lib/unicode/Is/Word.pl lib/unicode/mktables.PL
12186 ____________________________________________________________________________
12187 [  7296] By: gsar                                  on 2000/10/16  04:39:30
12188         Log: integrate change#6023 from mainline
12189              
12190              debugger stomps on $. (from M.J.T. Guy)
12191      Branch: maint-5.6/perl
12192           !> lib/perl5db.pl
12193 ____________________________________________________________________________
12194 [  7295] By: gsar                                  on 2000/10/16  04:38:02
12195         Log: integrate change#6022 from mainline
12196              
12197              unbalanced LEAVE after perl_clone(...,0) (from Doug MacEachern)
12198      Branch: maint-5.6/perl
12199           !> sv.c
12200 ____________________________________________________________________________
12201 [  7294] By: gsar                                  on 2000/10/16  04:37:05
12202         Log: integrate changes#6018..6021 from mainline
12203              
12204              make lib/syslog.t portable to systems that don't have _PATH_LOG,
12205              make _PATH_LOG() return "" if unavailable
12206              
12207              windows portability tweaks
12208              
12209              test tweak
12210              
12211              remove Win2K issue in pod (fixed by change#6020)
12212      Branch: maint-5.6/perl
12213           !> README.win32 ext/File/Glob/Glob.pm ext/Sys/Syslog/Syslog.pm
12214           !> ext/Sys/Syslog/Syslog.xs pod/perldelta.pod t/lib/b.t
12215           !> t/lib/open3.t t/lib/syslog.t win32/win32.h
12216 ____________________________________________________________________________
12217 [  7293] By: gsar                                  on 2000/10/16  04:20:00
12218         Log: integrate changes#6013..6015 from mainline
12219              
12220              tweak change#5945 to display correct switch name in diagnostic
12221              
12222              glob() loading File::Glob behind the scenes may cause syntax errors
12223              
12224              tweak test for portability
12225      Branch: maint-5.6/perl
12226           !> op.c perl.c pod/perldiag.pod t/lib/b.t
12227 ____________________________________________________________________________
12228 [  7292] By: gsar                                  on 2000/10/16  04:18:11
12229         Log: integrate changes#6005..6010 from mainline, cfgperl
12230              
12231              perldoc might fail via "use blib" (from Hugo van der Sanden)
12232              
12233              Regen Configure.
12234              
12235              note about compile failures and END blocks (from M.J.T. Guy)
12236              
12237              VMS config tweak (from Craig A. Berry <craig.berry@metamorgs.com>)
12238              
12239              (change#6009 integrated earlier in change#7255)
12240              
12241              clarify note about shadow password support (from
12242              gellyfish@gellyfish.com)
12243      Branch: maint-5.6/perl
12244           !> Configure Porting/Glossary Porting/config.sh Porting/config_H
12245           !> config_h.SH installperl pod/perldelta.pod pod/perlfunc.pod
12246           !> pod/perlmod.pod utils/perldoc.PL vms/subconfigure.com
12247 ____________________________________________________________________________
12248 [  7291] By: gsar                                  on 2000/10/16  04:12:03
12249         Log: integrate changes#6002,6003 from mainline
12250              
12251              destructive sv_setsv() can lose UV-ness from source, causing
12252              numeric promotions/comparisons to fail to do the right thing
12253              
12254              allow REG_EXPAND_SZ keys in Windows registry (from
12255              John Clayton <John.Clayton@barclayscapital.com>)
12256      Branch: maint-5.6/perl
12257           !> sv.c win32/win32.c
12258 ____________________________________________________________________________
12259 [  7290] By: gsar                                  on 2000/10/16  04:10:19
12260         Log: integrate change#6001 from mainline
12261              
12262              support additional library locations via $Config{otherlibdirs}
12263              (from Andy Dougherty)
12264      Branch: maint-5.6/perl
12265           !> Configure INSTALL Porting/Glossary Porting/config.sh
12266           !> Porting/config_H config_h.SH epoc/config.sh perl.c
12267           !> vms/subconfigure.com vos/config.def vos/config_h.SH_orig
12268           !> win32/config.bc win32/config.gc win32/config.vc
12269 ____________________________________________________________________________
12270 [  7289] By: gsar                                  on 2000/10/16  04:08:28
12271         Log: integrate change#5999 from mainline
12272              
12273              fix line renumbering bug in C<eval qq[#line 10 "X"\nwarn]>
12274      Branch: maint-5.6/perl
12275           !> t/pragma/warn/toke toke.c
12276 ____________________________________________________________________________
12277 [  7288] By: gsar                                  on 2000/10/16  04:07:01
12278         Log: integrate changes#5997,5998 from cfgperl
12279              
12280              Preserve $!.
12281              
12282              Try to get "Inf" by using &POSIX::HUGE_VAL in sprintf.
12283      Branch: maint-5.6/perl
12284           !> lib/Math/Complex.pm
12285 ____________________________________________________________________________
12286 [  7287] By: gsar                                  on 2000/10/16  04:04:37
12287         Log: integrate change#5995 from mainline
12288              
12289              fixes for bugs in C<use warnings qw(FATAL all)> (from Paul Marquess)
12290      Branch: maint-5.6/perl
12291           !> mg.c t/pragma/warn/7fatal warnings.h warnings.pl
12292 ____________________________________________________________________________
12293 [  7286] By: gsar                                  on 2000/10/16  04:03:21
12294         Log: integrate change#5994 from mainline
12295              
12296              fix for missed accounting for null byte in pack("Z",...) (from
12297              M.J.T. Guy)
12298      Branch: maint-5.6/perl
12299           !> pp.c t/op/pack.t
12300 ____________________________________________________________________________
12301 [  7285] By: gsar                                  on 2000/10/16  04:02:11
12302         Log: integrate changes#5989..5993 from mainline
12303              
12304              qw(a\\b) must be parsed like 'a\\b', i.e., backslash escapes
12305              itself and no other (from Tom Hughes)
12306              
12307              use $ENV{LIB} to search for libs under Visual C compiler
12308              on Windows (from Jochen Wiedmann <joe@ispsoft.de>)
12309              
12310              posix-bc patches (from Dorner Thomas <Thomas.Dorner@start.de>)
12311              
12312              pod nit (from Simon Cozens)
12313              
12314              various minor tweaks seen on p5p
12315      Branch: maint-5.6/perl
12316           !> README.posix-bc hints/posix-bc.sh lib/ExtUtils/Liblist.pm
12317           !> lib/perl5db.pl pod/perlipc.pod pod/perlop.pod pod/perlvar.pod
12318           !> t/op/array.t toke.c
12319 ____________________________________________________________________________
12320 [  7284] By: gsar                                  on 2000/10/16  03:59:00
12321         Log: integrate changes#5978..5988 from mainline
12322              
12323              sync version numbers in File::Spec with the ones on CPAN
12324              (from Barrie Slaymaker)
12325              
12326              under useithreads, constant pad entries could inadvertantly be
12327              shared across threads (from Eric Blood <eblood@xmission.com>);
12328              added Eric's test case to testsuite
12329              
12330              allow Configure -S to run non-interactively (spotted by Greg Hudson
12331              <ghudson@mit.edu>)
12332              
12333              rename File::Glob::glob() to File::Glob::bsd_glob() to avoid
12334              prototype mismatch with CORE::glob(); update pod and tests to
12335              suit (File::Glob::glob() is still available for backward
12336              compatibility, but should be considered deprecated)
12337              
12338              avoid error in IO::Socket::INET when given an unknown service name
12339              with a port number (from Brian Raven <brianr@ssprdmh01.liffe.com>)
12340              
12341              numeric conversion of non-number in change#3378 tramples on
12342              OOK offset, causing segfaults
12343              
12344              attributes::reftype() doesn't work on tied argument
12345              
12346              forked child may not exit correctly if it failed to open
12347              /dev/console (from Graham Barr)
12348              
12349              add regular expressions tutorial and quick-start guide (from
12350              Mark Kvale <kvale@phy.ucsf.edu>)
12351              
12352              B::Bytecode tweaks (from Simon Cozens <simon@brecon.co.uk>)
12353              
12354              s/HTMLSCRIPTPOD/HTMLSCRIPTPODS/ (from Paul Sharpe
12355              <paul@miraclefish.com>)
12356      Branch: maint-5.6/perl
12357           +> pod/perlrequick.pod pod/perlretut.pod
12358           !> AUTHORS Configure MAINTAIN MANIFEST ext/B/B/Bytecode.pm
12359           !> ext/B/B/Disassembler.pm ext/File/Glob/Glob.pm
12360           !> ext/IO/lib/IO/Socket/INET.pm ext/Sys/Syslog/Syslog.pm
12361           !> lib/ExtUtils/MakeMaker.pm lib/File/Spec/Functions.pm
12362           !> lib/File/Spec/Mac.pm lib/File/Spec/OS2.pm
12363           !> lib/File/Spec/Unix.pm lib/File/Spec/VMS.pm
12364           !> lib/File/Spec/Win32.pm op.c sv.c t/lib/glob-basic.t
12365           !> t/lib/glob-case.t t/lib/glob-taint.t t/op/misc.t xsutils.c
12366 ____________________________________________________________________________
12367 [  7283] By: gsar                                  on 2000/10/16  03:52:14
12368         Log: integrate change#5977 from mainline
12369              
12370              autoquote barewords followed by newline and arrow properly
12371              (variant of fix suggested by Rick Delaney and M.J.T. Guy)
12372      Branch: maint-5.6/perl
12373           !> t/pragma/warn/toke toke.c
12374 ____________________________________________________________________________
12375 [  7282] By: gsar                                  on 2000/10/16  03:50:48
12376         Log: integrate change#5976 from mainline
12377              
12378              DB_File v1.73 update (from Paul Marquess)
12379      Branch: maint-5.6/perl
12380           !> ext/DB_File/Changes ext/DB_File/DB_File.pm
12381           !> ext/DB_File/DB_File.xs ext/DB_File/version.c
12382 ____________________________________________________________________________
12383 [  7281] By: gsar                                  on 2000/10/16  03:49:14
12384         Log: integrate change#5975 from mainline
12385              
12386              allow sort() reentrancy (variant of patch suggested by
12387              Hugo van der Sanden)
12388      Branch: maint-5.6/perl
12389           !> pp_ctl.c t/op/sort.t
12390 ____________________________________________________________________________
12391 [  7280] By: gsar                                  on 2000/10/16  03:48:22
12392         Log: integrate change#5974 from mainline
12393              
12394              change#4197 somehow missed initializing PL_errors, meaning
12395              syntax error queueing wasn't working outside eval"" at all;
12396              also fixed eval"" to localize PL_error_count, so that compile-time
12397              eval's don't clobber the error state of the outer context
12398      Branch: maint-5.6/perl
12399           !> lib/Math/Complex.pm perl.c pp_ctl.c t/pragma/warn/op
12400           !> t/pragma/warn/toke
12401 ____________________________________________________________________________
12402 [  7279] By: gsar                                  on 2000/10/16  03:46:21
12403         Log: integrate change#5973 from mainline
12404              
12405              fix for failure to match $foo =~ /(?i)/ (from Ilya Zakharevich)
12406      Branch: maint-5.6/perl
12407           !> regcomp.c regexec.c t/op/re_tests
12408 ____________________________________________________________________________
12409 [  7278] By: gsar                                  on 2000/10/16  03:44:54
12410         Log: integrate change#5971 from cfgperl
12411              
12412              Unicos tweaks from Mark P. Lutz.
12413      Branch: maint-5.6/perl
12414           !> hints/unicos.sh lib/Math/Complex.pm
12415 ____________________________________________________________________________
12416 [  7277] By: gsar                                  on 2000/10/16  03:42:59
12417         Log: integrate changes#5966..5970 from mainline
12418              
12419              add testsuite for B backends, fix bug in B::Deparse (from
12420              Simon Cozens <simon@brecon.co.uk>)
12421              
12422              improved docs on the warn_uninit diagnostic (from David Glasser
12423              and Simon Cozens)
12424              
12425              tolerate spaces in group names in test on solaris (from David Boyce
12426              <dsb@boyski.com>)
12427              
12428              fix Sys::Syslog breakage on domain sockets (from Tom Hughes)
12429              
12430              Data::Dumper fumbles negative numbers on 32-bit platforms where
12431              IV is >32bits
12432      Branch: maint-5.6/perl
12433           +> t/lib/b.t t/lib/syslog.t
12434           !> MANIFEST ext/B/B/Deparse.pm ext/B/B/Stash.pm
12435           !> ext/Data/Dumper/Dumper.xs ext/Sys/Syslog/Syslog.pm
12436           !> pod/perldiag.pod t/lib/dumper.t t/op/groups.t
12437 ____________________________________________________________________________
12438 [  7276] By: gsar                                  on 2000/10/16  03:39:30
12439         Log: integrate change#5965 from mainline
12440              
12441              avoid "will not stay shared" warnings for our variables (from
12442              Robin Barker)
12443      Branch: maint-5.6/perl
12444           !> op.c t/pragma/warn/op
12445 ____________________________________________________________________________
12446 [  7275] By: gsar                                  on 2000/10/16  03:38:18
12447         Log: integrate change#5964 from mainline
12448              
12449              reformat to 72 columns (again)
12450      Branch: maint-5.6/perl
12451           !> pod/perldiag.pod
12452 ____________________________________________________________________________
12453 [  7274] By: gsar                                  on 2000/10/16  03:36:58
12454         Log: integrate change#5963 from mainline
12455              
12456              patch from Larry to make (\&) prototype work; added tests for
12457              the same
12458      Branch: maint-5.6/perl
12459           !> op.c t/comp/proto.t
12460 ____________________________________________________________________________
12461 [  7273] By: gsar                                  on 2000/10/16  03:35:51
12462         Log: integrate changes#5956..5962 from mainline
12463              
12464              better diagnostics on failed tests (from Ilya Zakharevich)
12465              
12466              pod nits (from A. C. Yardley <yardley@tanet.net>)
12467              
12468              change#3569 deleted some essential code, revert; avoid use of
12469              atexit() to make DynaLoader work properly on AIX under mod_perl
12470              (from Jens-Uwe Mager <jum@helios.de>)
12471              
12472              doubled words in pods (from Simon Cozens
12473              <simon.p.cozens@jp.pwcglobal.com>)
12474              
12475              better INSTALL notes on Solaris issues (from Dominic Dunlop)
12476              
12477              recognize our, CHECK and INIT in cperl-mode (from Doug MacEachern)
12478              
12479              updated README.hpux (from Jeff Okamoto)
12480      Branch: maint-5.6/perl
12481           !> INSTALL README.hpux emacs/cperl-mode.el
12482           !> ext/DynaLoader/dl_aix.xs pod/perldebguts.pod pod/perldelta.pod
12483           !> pod/perlfaq5.pod pod/perlfork.pod pod/perlfunc.pod
12484           !> pod/perlipc.pod pod/perllexwarn.pod pod/perllocale.pod
12485           !> pod/perlmod.pod pod/perlmodlib.pod pod/perlnumber.pod
12486           !> pod/perlopentut.pod pod/perltodo.pod pod/perltootc.pod
12487           !> t/op/lex_assign.t
12488 ____________________________________________________________________________
12489 [  7272] By: gsar                                  on 2000/10/16  03:31:22
12490         Log: integrate change#5955 from mainline
12491              
12492              longstanding bug exposed by change#3307: sort arguments weren't
12493              compiled with the right wantarray context (ensuing runtime lookup
12494              via block_gimme() was getting the incidental context of the
12495              sort() itself)
12496      Branch: maint-5.6/perl
12497           !> op.c t/op/sort.t
12498 ____________________________________________________________________________
12499 [  7271] By: gsar                                  on 2000/10/16  03:29:11
12500         Log: integrate changes#5933,5935,5940..5944,5946,5951,5952 from cfgperl
12501              branch
12502              
12503              Flatten the cpp jungle doing the nosuid checking.
12504              
12505              Do not assume sign propagation. (from M.J.T. Guy)
12506              
12507              Various Unicos 10.0.0.6 fixes. (from Mark Lutz)
12508              
12509              Add HAS_FREXPL, HAS_ISNAN, HAS_ISNANL, and HAS_MODFL.
12510              Now pp_ncmp() returns undef is either operand is a NaN.
12511              
12512              On second thoughts frexp() does have two arguments.
12513              
12514              Document that tr() is not tr(1).
12515              
12516              Be more robust on "extreme" (large absolute value)
12517              arguments.  Originally reported by Daniel Connelly
12518              as a problem with asinh() on large negative arguments,
12519              asinh() used to bail out because an argument to log()
12520              ended up being zero.  Ilya Zakharevich proposed using
12521              Taylor's series in such cases, which for such large
12522              arguments is a very good approximation.
12523              
12524              Undo "use integer" addition from 64bitint as it seems
12525              to break most of the subtests in Digital UNIX;
12526              Unicos needs to find another way.
12527      Branch: maint-5.6/perl
12528           !> (integrate 29 files)
12529 ____________________________________________________________________________
12530 [  7270] By: gsar                                  on 2000/10/16  03:09:44
12531         Log: integrate changes#5948,5949,5950 from mainline
12532              
12533              typo in vars.pm that leads to cryptic message (from Piotr
12534              Piatkowski <kompas@kompas.usr.onet.pl>)
12535              
12536              make perldoc use the pod2man from the same version (from
12537              M.J.T. Guy)
12538              
12539              reformat perldiag to avoid long lines
12540      Branch: maint-5.6/perl
12541           !> lib/vars.pm pod/perldiag.pod utils/perldoc.PL
12542 ____________________________________________________________________________
12543 [  7269] By: gsar                                  on 2000/10/16  03:05:54
12544         Log: integrate change#5947 from mainline
12545              
12546              use &dl_error rather than &dl_load_file as the guard for calling
12547              boot_DynaLoader() (meant to fix dl_error() redefined warnings in
12548              statically built perl)
12549      Branch: maint-5.6/perl
12550           !> ext/DynaLoader/DynaLoader_pm.PL ext/DynaLoader/XSLoader_pm.PL
12551 ____________________________________________________________________________
12552 [  7268] By: gsar                                  on 2000/10/16  03:04:48
12553         Log: integrate change#5945 from mainline
12554              
12555              make module name mandatory after -M switch; reorder perldiag
12556              alphabetically (from Mark-Jason Dominus)
12557      Branch: maint-5.6/perl
12558           !> perl.c pod/perldiag.pod
12559 ____________________________________________________________________________
12560 [  7267] By: gsar                                  on 2000/10/16  03:03:01
12561         Log: integrate change#5939 from mainline
12562              
12563              more pod nits (from Larry Virden)
12564      Branch: maint-5.6/perl
12565           !> README.win32 pod/perlsub.pod pod/perlsyn.pod
12566           !> pod/perlthrtut.pod pod/perltoc.pod pod/perltodo.pod
12567           !> pod/perlxs.pod pod/perlxstut.pod vms/perlvms.pod
12568 ____________________________________________________________________________
12569 [  7266] By: gsar                                  on 2000/10/16  03:01:39
12570         Log: integrate change#5938 from mainline
12571              
12572              Consolidated B::Deparse fixes (from Stephen McCamant)
12573      Branch: maint-5.6/perl
12574           !> ext/B/B/Deparse.pm
12575 ____________________________________________________________________________
12576 [  7265] By: gsar                                  on 2000/10/16  03:00:43
12577         Log: integrate change#5936 from mainline
12578              
12579              additional tests for change#7263 (from Paul Marquess)
12580      Branch: maint-5.6/perl
12581           !> t/pragma/warn/2use t/pragma/warn/3both t/pragma/warn/4lint
12582           !> t/pragma/warn/5nolint t/pragma/warn/6default
12583 ____________________________________________________________________________
12584 [  7264] By: gsar                                  on 2000/10/16  02:58:34
12585         Log: integrate change#5934 from mainline
12586              
12587              propagate lexical warnings from surrounding scope correctly
12588              within string eval() (from Paul Marquess)
12589      Branch: maint-5.6/perl
12590           !> pp_ctl.c t/pragma/warn/pp_ctl
12591 ____________________________________________________________________________
12592 [  7263] By: gsar                                  on 2000/10/16  02:56:53
12593         Log: integrate change#5932 from mainline
12594              
12595              add rsignal(), whichsig() and do_join() to public API list
12596              (mod_perl uses them to good advantage)
12597      Branch: maint-5.6/perl
12598           !> embed.pl global.sym objXSUB.h perlapi.c proto.h
12599 ____________________________________________________________________________
12600 [  7262] By: gsar                                  on 2000/10/16  02:55:53
12601         Log: integrate change#5931 from mainline
12602              
12603              fix RE brokenness on refs/overloaded things (from Ilya Zakharevich)
12604      Branch: maint-5.6/perl
12605           !> pp_hot.c regexec.c t/op/pat.t
12606 ____________________________________________________________________________
12607 [  7261] By: gsar                                  on 2000/10/16  02:55:01
12608         Log: integrate change#5930 from mainline
12609              
12610              small os390 tweaks (from Peter Prymmer)
12611      Branch: maint-5.6/perl
12612           !> config_h.SH makedepend.SH
12613 ____________________________________________________________________________
12614 [  7260] By: gsar                                  on 2000/10/16  02:54:10
12615         Log: integrate change#5929 from mainline
12616              
12617              pod nits
12618      Branch: maint-5.6/perl
12619           !> pod/perlguts.pod
12620 ____________________________________________________________________________
12621 [  7259] By: gsar                                  on 2000/10/16  02:52:55
12622         Log: integrate change#5927 from mainline
12623              
12624              arrange for next() to resume at the unstack op rather than the
12625              loop conditional, so that scope cleanup happens correctly
12626              (from Stephen McCamant)
12627      Branch: maint-5.6/perl
12628           !> op.c pp_ctl.c t/op/misc.t
12629 ____________________________________________________________________________
12630 [  7258] By: gsar                                  on 2000/10/16  02:51:38
12631         Log: integrate change#5926 from mainline
12632              
12633              on windows, reserve 16M of stack rather than 128M (allows more
12634              threads to run concurrently)
12635      Branch: maint-5.6/perl
12636           !> win32/Makefile win32/makefile.mk
12637 ____________________________________________________________________________
12638 [  7257] By: gsar                                  on 2000/10/16  02:50:37
12639         Log: integrate change#5925 from mainline
12640              
12641              POSIX-BC tweak (from Ignasi Roca <ignasi.roca@fujitsu.siemens.es>)
12642      Branch: maint-5.6/perl
12643           !> toke.c
12644 ____________________________________________________________________________
12645 [  7256] By: gsar                                  on 2000/10/16  02:49:36
12646         Log: integrate change#5924 from mainline
12647              
12648              avoid using uninitialized memory in require version check
12649      Branch: maint-5.6/perl
12650           !> pp_ctl.c universal.c
12651 ____________________________________________________________________________
12652 [  7255] By: gsar                                  on 2000/10/16  02:48:03
12653         Log: integrate changes#5923,5928,6009 from mainline
12654              
12655              IO::Poll bugs fixed (from Lincoln Stein <lstein@cshl.org>)
12656      Branch: maint-5.6/perl
12657           !> ext/IO/lib/IO/Poll.pm t/lib/io_poll.t
12658 ____________________________________________________________________________
12659 [  7254] By: gsar                                  on 2000/10/16  02:44:46
12660         Log: integrate change#5922 from mainline
12661              
12662              commentary about IoTYPE() (from Nathan Torkington)
12663      Branch: maint-5.6/perl
12664           !> sv.h
12665 ____________________________________________________________________________
12666 [  7253] By: gsar                                  on 2000/10/16  02:43:49
12667         Log: integrate change#5921 from mainline
12668              
12669              make eq unicode-aware (from Gisle Aas); fix bogus tests revealed
12670      Branch: maint-5.6/perl
12671           !> sv.c t/lib/charnames.t t/pragma/utf8.t
12672 ____________________________________________________________________________
12673 [  7252] By: gsar                                  on 2000/10/16  02:42:31
12674         Log: integrate change#5920 from mainline
12675              
12676              Larry's fix for buggy propagation of utf8-ness in join(); add test
12677      Branch: maint-5.6/perl
12678           !> doop.c t/op/ver.t
12679 ____________________________________________________________________________
12680 [  7251] By: gsar                                  on 2000/10/16  02:41:14
12681         Log: integrate changes#5915..5919 from mainline
12682              
12683              various (pod tweaks &c)
12684      Branch: maint-5.6/perl
12685           !> (integrate 33 files)
12686 ____________________________________________________________________________
12687 [  7250] By: gsar                                  on 2000/10/16  02:38:16
12688         Log: integrate change#5914 from mainline
12689              
12690              caller() wasn't returning the right number of elements for
12691              eval {...}
12692      Branch: maint-5.6/perl
12693           !> pp_ctl.c t/pragma/warn/9enabled
12694 ____________________________________________________________________________
12695 [  7249] By: gsar                                  on 2000/10/16  02:37:02
12696         Log: integrate change#5913 from mainline
12697              
12698              pod nit: $yday range for localtime/gmtime is 0..364 not 1..365
12699              (from Mark-Jason Dominus)
12700      Branch: maint-5.6/perl
12701           !> pod/perlfunc.pod
12702 ____________________________________________________________________________
12703 [  7248] By: gsar                                  on 2000/10/16  02:35:58
12704         Log: integrate change#5912 from mainline
12705              
12706              fix totally broken caching in UNIVERSAL::isa() (from
12707              Nick Ing-Simmons)
12708      Branch: maint-5.6/perl
12709           !> t/op/universal.t universal.c
12710 ____________________________________________________________________________
12711 [  7247] By: gsar                                  on 2000/10/16  02:34:27
12712         Log: integrate changes#5910,5911 from mainline
12713              
12714              typo in pod
12715              
12716              add linebreak properties from unicode/LineBrk.txt (from
12717              Dave Hartnoll <Dave_Hartnoll@3b2.com>)
12718      Branch: maint-5.6/perl
12719           +> (branch 29 files)
12720           !> ext/Thread/Thread.pm lib/unicode/mktables.PL
12721 ____________________________________________________________________________
12722 [  7246] By: gsar                                  on 2000/10/16  02:33:29
12723         Log: integrate change#5909 from mainline
12724              
12725              mode argument to do_binmode() should be file mode, not boolean
12726      Branch: maint-5.6/perl
12727           !> pp_sys.c
12728 ____________________________________________________________________________
12729 [  7245] By: gsar                                  on 2000/10/16  02:31:04
12730         Log: integrate change#5908 from mainline
12731              
12732              introduce illegal symbols into null package so that
12733              gv_fetchpv(...,TRUE) always returns a valid GV even when the
12734              symbol is trapped by strictures (avoids coredumps)
12735      Branch: maint-5.6/perl
12736           !> embedvar.h gv.c intrpvar.h perl.c perlapi.h
12737           !> t/pragma/strict-vars
12738 ____________________________________________________________________________
12739 [  7244] By: jhi                                   on 2000/10/16  02:29:54
12740         Log: Subject: $Carp::ExportLevel confusion in Exporter
12741              From: "Ben Tilly" <ben_tilly@hotmail.com>
12742              Date: Sat, 14 Oct 2000 16:44:34 EDT
12743              Message-ID: <LAW2-F258sQwY6YHkid00003788@hotmail.com>
12744      Branch: perl
12745            ! lib/Exporter/Heavy.pm
12746 ____________________________________________________________________________
12747 [  7243] By: jhi                                   on 2000/10/16  02:28:33
12748         Log: Subject: [PATCH perlguts.pod] Document offset hack
12749              From: Simon Cozens <simon@cozens.net>
12750              Message-ID: <20001014193225.A6568@pembro4.pmb.ox.ac.uk>
12751              Date: Sat, 14 Oct 2000 19:32:25 +0100
12752      Branch: perl
12753            ! pod/perlguts.pod
12754 ____________________________________________________________________________
12755 [  7242] By: gsar                                  on 2000/10/16  02:26:51
12756         Log: integrate changes#5905,5906,5907,6064 from mainline
12757              
12758              printf/sprintf didn't get quad types right under use64bitint
12759      Branch: maint-5.6/perl
12760           !> pp_sys.c sv.c t/op/64bitint.t
12761 ____________________________________________________________________________
12762 [  7241] By: jhi                                   on 2000/10/16  02:22:44
12763         Log: Subject: small pod patch
12764              From: Dan Boorstein <dan_boo@bellsouth.net>
12765              Date: Sat, 14 Oct 2000 14:29:24 -0400
12766              Message-ID: <39E8A604.B501DB4F@bellsouth.net>
12767      Branch: perl
12768            ! pod/perlfaq7.pod pod/perlmod.pod
12769 ____________________________________________________________________________
12770 [  7240] By: jhi                                   on 2000/10/16  02:13:46
12771         Log: -w cleanup.
12772              
12773              Subject: Re: Problems with bleadperl 
12774              From: "Stephen P. Potter" <spp@ds.net>
12775              Date: Fri, 13 Oct 2000 13:32:49 -0400
12776              Message-Id: <200010131732.NAA19391@spp.users.ds.net>
12777      Branch: perl
12778            ! t/pragma/overload.t
12779 ____________________________________________________________________________
12780 [  7239] By: jhi                                   on 2000/10/16  01:41:18
12781         Log: One more ~utf8 tweak.
12782      Branch: perl
12783            ! t/op/bop.t
12784 ____________________________________________________________________________
12785 [  7238] By: jhi                                   on 2000/10/16  01:34:14
12786         Log: Tweak the test of #7235.
12787      Branch: perl
12788            ! t/op/bop.t
12789 ____________________________________________________________________________
12790 [  7237] By: jhi                                   on 2000/10/16  01:25:04
12791         Log: Fix a couple of compiler-noted nits in #7235.
12792      Branch: perl
12793            ! pp.c
12794 ____________________________________________________________________________
12795 [  7236] By: jhi                                   on 2000/10/16  01:22:46
12796         Log: Fix few quad issues, which for example broke chr(~chr(~0)) for UTF8.
12797      Branch: perl
12798            ! pp.c pp_hot.c
12799 ____________________________________________________________________________
12800 [  7235] By: jhi                                   on 2000/10/15  16:24:44
12801         Log: Make ~(chr(a).chr(b)) eq chr(~a).chr(~b) on utf8.
12802              
12803              From: Simon Cozens <simon@cozens.net>
12804              Subject: [PATCH] Re: [ID 20000918.005] ~ on wide chars
12805              Date: Sat, 14 Oct 2000 20:52:13 +0100
12806              Message-ID: <20001014205213.A9645@pembro4.pmb.ox.ac.uk>
12807      Branch: perl
12808            ! pp.c t/op/bop.t utf8.h
12809 ____________________________________________________________________________
12810 [  7234] By: jhi                                   on 2000/10/15  15:19:29
12811         Log: split() utf8 fixes.  Should fix both 20001014.001 and 20000426.003.
12812              The problem was that rx->minlen was in chars while pp_split()
12813              thought it would be in bytes. 
12814      Branch: perl
12815            ! pp.c t/pragma/utf8.t
12816 ____________________________________________________________________________
12817 [  7233] By: jhi                                   on 2000/10/14  20:24:24
12818         Log: Document FNCASE=y as discussed in the bug 20000902.009.
12819      Branch: perl
12820            ! README.dos
12821 ____________________________________________________________________________
12822 [  7232] By: jhi                                   on 2000/10/14  18:52:21
12823         Log: Add test for bug id 20000427.003 (which seems to have
12824              been fixed) (also duplicate as 20000427.004, though
12825              with a higher severity).  Move one utf8 from op/append
12826              to pragma/utf8, tag the tests with bug ids.
12827      Branch: perl
12828            ! t/op/append.t t/pragma/utf8.t
12829 ____________________________________________________________________________
12830 [  7231] By: jhi                                   on 2000/10/14  17:28:37
12831         Log: Test cases for bug id 20000323.056 (the bug seems to be fixed).
12832      Branch: perl
12833            ! t/pragma/utf8.t
12834 ____________________________________________________________________________
12835 [  7230] By: jhi                                   on 2000/10/14  14:24:50
12836         Log: Needs to be conditional on SunOS 4.
12837              
12838              Subject: [Pach 5.7.0@7229] Removing -ldb from the core build
12839              From: "Paul Marquess" <paul_marquess@yahoo.co.uk>
12840              Date: Sat, 14 Oct 2000 13:37:49 +0100
12841              Message-ID: <000101c035db$8ffb60a0$2614140a@bfs.phone.com>
12842      Branch: metaconfig/U/perl
12843            ! End.U
12844      Branch: perl
12845            ! Configure myconfig.SH pod/perldelta.pod
12846 ____________________________________________________________________________
12847 [  7229] By: jhi                                   on 2000/10/14  00:49:22
12848         Log: Update Changes.
12849      Branch: perl
12850            ! Changes patchlevel.h
12851 ____________________________________________________________________________
12852 [  7228] By: jhi                                   on 2000/10/14  00:46:10
12853         Log: Subject: RFC: a (temporary?) way around utf8.pm for EBCDIC
12854              From: Peter Prymmer <pvhp@forte.com>
12855              Date: Fri, 13 Oct 2000 15:59:56 -0700 (PDT)
12856              Message-ID: <Pine.OSF.4.10.10010131548260.133963-100000@aspara.forte.com>
12857      Branch: perl
12858            ! lib/utf8.pm
12859 ____________________________________________________________________________
12860 [  7227] By: jhi                                   on 2000/10/13  23:20:30
12861         Log: Make the test acknowledge that self-ties are disabled as #7213 said.
12862      Branch: perl
12863            ! t/op/tie.t
12864 ____________________________________________________________________________
12865 [  7226] By: jhi                                   on 2000/10/13  22:14:32
12866         Log: Tweak #7225.
12867              
12868              Subject: Re: [ID 20001006.014] Not OK: perl v5.7.0 +DEVEL7158 on os390 05.00 (UNINSTALLED) [PATCH bleadperl]
12869              From: Peter Prymmer <pvhp@forte.com>
12870              Date: Fri, 13 Oct 2000 14:44:49 -0700 (PDT)
12871              Message-ID: <Pine.OSF.4.10.10010131414410.133963-100000@aspara.forte.com>
12872      Branch: perl
12873            ! t/op/sprintf.t
12874 ____________________________________________________________________________
12875 [  7225] By: jhi                                   on 2000/10/13  22:11:31
12876         Log: op/sprintf.t patch for OS/390 (and any other host with limited
12877              floating-point exponent length)
12878              
12879              Subject: Re: [ID 20001006.014] Not OK: perl v5.7.0 +DEVEL7158 on os390 05.00  (UNINSTALLED) [PATCH bleadperl]
12880              From: Dominic Dunlop <domo@computer.org>
12881              Date: Fri, 13 Oct 2000 19:17:57 +0200
12882              Message-Id: <p04320400b60cf2a6a05c@[192.168.1.4]>
12883      Branch: perl
12884            ! t/op/sprintf.t
12885 ____________________________________________________________________________
12886 [  7224] By: jhi                                   on 2000/10/13  18:40:48
12887         Log: Allow @+ and @- to be doublequoted, from Simon Cozens. 
12888      Branch: perl
12889            ! toke.c
12890 ____________________________________________________________________________
12891 [  7223] By: jhi                                   on 2000/10/13  18:37:13
12892         Log: Thinko in #7222.
12893      Branch: perl
12894            ! utf8.c
12895 ____________________________________________________________________________
12896 [  7222] By: jhi                                   on 2000/10/13  18:05:23
12897         Log: Use UTF8SKIP(), from Simon Cozens.
12898      Branch: perl
12899            ! utf8.c
12900 ____________________________________________________________________________
12901 [  7221] By: jhi                                   on 2000/10/13  15:43:19
12902         Log: (accidentally empty check-in)
12903      Branch: perl
12904            ! utf8.c
12905 ____________________________________________________________________________
12906 [  7220] By: jhi                                   on 2000/10/13  15:23:51
12907         Log: Add (optimistically) Storable to static extensions.
12908      Branch: perl
12909            ! hints/uwin.sh hints/vmesa.sh
12910 ____________________________________________________________________________
12911 [  7219] By: jhi                                   on 2000/10/13  15:20:05
12912         Log: Amdahl UTS doesn't seem to do dynaloading.
12913      Branch: perl
12914            ! hints/uts.sh
12915 ____________________________________________________________________________
12916 [  7218] By: jhi                                   on 2000/10/13  15:15:20
12917         Log: Slight tweak of the code to appease Amdahl UTS cc.
12918      Branch: perl
12919            ! pp.c
12920 ____________________________________________________________________________
12921 [  7217] By: jhi                                   on 2000/10/13  14:50:42
12922         Log: In Amdahl UTS "struct sv" is defined by a system header,
12923              <ksync.h>.
12924      Branch: perl
12925            ! perl.h sv.h
12926 ____________________________________________________________________________
12927 [  7216] By: jhi                                   on 2000/10/13  11:58:25
12928         Log: Ilya implemented the memory profiling API.
12929      Branch: perl
12930            ! Todo
12931 ____________________________________________________________________________
12932 [  7215] By: jhi                                   on 2000/10/13  02:56:38
12933         Log: Subject: [PATCH 5.7.0] Perl API for mstats
12934              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
12935              Date: Thu, 12 Oct 2000 22:52:40 -0400
12936              Message-ID: <20001012225240.A7113@monk.mps.ohio-state.edu>
12937      Branch: perl
12938            ! ext/Devel/Peek/Peek.pm ext/Devel/Peek/Peek.xs
12939 ____________________________________________________________________________
12940 [  7214] By: jhi                                   on 2000/10/13  02:55:38
12941         Log: Subject: [PATCH 5.7.0] IVs in mtats
12942              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
12943              Date: Thu, 12 Oct 2000 22:51:04 -0400
12944              Message-ID: <20001012225104.A7103@monk.mps.ohio-state.edu>
12945      Branch: perl
12946            ! malloc.c perl.h
12947 ____________________________________________________________________________
12948 [  7213] By: jhi                                   on 2000/10/13  02:31:47
12949         Log: Self-ties are unsupported currently, stopgap patch from Alan Burlison.
12950      Branch: perl
12951            ! pod/perldiag.pod pp_sys.c
12952 ____________________________________________________________________________
12953 [  7212] By: jhi                                   on 2000/10/13  01:27:38
12954         Log: Subject: [PATCH: perl@7181] was: Re: off to a bad start on fixing regression tests
12955              From: Peter Prymmer <pvhp@forte.com>
12956              Date: Tue, 10 Oct 2000 10:26:07 -0700 (PDT)
12957              Message-ID: <Pine.OSF.4.10.10010101020180.441897-100000@aspara.forte.com>
12958      Branch: perl
12959            ! t/op/oct.t
12960 ____________________________________________________________________________
12961 [  7211] By: jhi                                   on 2000/10/13  00:35:09
12962         Log: Update Changes.
12963      Branch: perl
12964            ! Changes patchlevel.h
12965 ____________________________________________________________________________
12966 [  7210] By: jhi                                   on 2000/10/12  23:59:40
12967         Log: The Install.pm third of
12968              
12969              Subject: Proposed patches, Install.pm getopts.pl termcap.pl
12970              From: Bill Campbell <bill@celestial.com>
12971              Message-ID: <20001005180451.A22029@kstarr.celestial.com>
12972              Date: Thu, 5 Oct 2000 18:04:51 -0700
12973      Branch: perl
12974            ! lib/ExtUtils/Install.pm
12975 ____________________________________________________________________________
12976 [  7209] By: jhi                                   on 2000/10/12  23:58:43
12977         Log: Two thirds of
12978              
12979              Subject: Proposed patches, Install.pm getopts.pl termcap.pl
12980              Date: Thu, 5 Oct 2000 18:04:51 -0700
12981              From: Bill Campbell <bill@celestial.com>
12982              Message-ID: <20001005180451.A22029@kstarr.celestial.com>
12983              
12984              The Install.pm changes will be submitted separately because
12985              they need some work and discussion still.
12986      Branch: perl
12987            ! lib/getopts.pl lib/termcap.pl
12988 ____________________________________________________________________________
12989 [  7208] By: jhi                                   on 2000/10/12  23:41:19
12990         Log: Subject:  [PATCH] 5.6.0 & 5.7.1,  VMS fixes
12991              From: lane@DUPHY4.Physics.Drexel.Edu (Charles Lane)
12992              Date:     Thu, 12 Oct 2000 07:30:02 EDT
12993              Message-Id: <001012072828.2eabc@DUPHY4.Physics.Drexel.Edu>
12994      Branch: perl
12995            ! lib/File/Temp.pm t/lib/st-lock.t t/pod/find.t
12996            ! t/pod/testp2pt.pl vms/gen_shrfls.pl
12997 ____________________________________________________________________________
12998 [  7207] By: jhi                                   on 2000/10/12  23:39:01
12999         Log: An updated EBCDIC tr patch.
13000              
13001              Subject: Re: [PATCH: perl@7181] op/tr tests on OS/390
13002              From: Peter Prymmer <pvhp@forte.com>
13003              Date: Wed, 11 Oct 2000 17:16:30 -0700 (PDT)
13004              Message-ID: <Pine.OSF.4.10.10010111707430.516446-100000@aspara.forte.com>
13005      Branch: perl
13006            ! t/op/tr.t
13007 ____________________________________________________________________________
13008 [  7206] By: jhi                                   on 2000/10/12  23:34:55
13009         Log: Upgrade to CPAN 1.58, from Andreas König.
13010      Branch: perl
13011            ! lib/CPAN.pm lib/CPAN/FirstTime.pm
13012 ____________________________________________________________________________
13013 [  7205] By: jhi                                   on 2000/10/12  23:29:08
13014         Log: Introduce the man[24-8] variables, from Andy Dougherty.
13015      Branch: metaconfig/U/perl
13016            + mandirs.U mandirstyle.U
13017      Branch: perl
13018            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
13019            ! config_h.SH epoc/config.sh uconfig.h uconfig.sh vos/config.def
13020            ! vos/config.h vos/config.pl vos/config_h.SH_orig
13021            ! win32/config.bc win32/config.gc win32/config.vc
13022 ____________________________________________________________________________
13023 [  7204] By: gsar                                  on 2000/10/12  18:11:24
13024         Log: restore change#7202
13025      Branch: perl
13026            ! mg.c
13027 ____________________________________________________________________________
13028 [  7203] By: gsar                                  on 2000/10/12  18:09:40
13029         Log: another test of the Emergency Broadcast System--back out 
13030              change#7202
13031      Branch: perl
13032            ! mg.c
13033 ____________________________________________________________________________
13034 [  7202] By: gsar                                  on 2000/10/12  16:40:47
13035         Log: (submitted on behalf of Jarkko)
13036              Fix the lib/encode.t subtest 6 failure as reported by Andreas
13037              Koenig, gmagical substr() wasn't propagating UTF8ness.  The bug
13038              was unearthed by change 7182, as was a bug in HTML::Entities.
13039      Branch: perl
13040            ! mg.c
13041 ____________________________________________________________________________
13042 [  7201] By: jhi                                   on 2000/10/11  03:16:05
13043         Log: SvPV() (via mg_get() of sv_2pv()) can update the UTF8ness of the SVs.
13044      Branch: perl
13045            ! pp_hot.c t/pragma/utf8.t
13046 ____________________________________________________________________________
13047 [  7200] By: jhi                                   on 2000/10/11  00:40:30
13048         Log: The #7198 was a false alarm.
13049      Branch: perl
13050            ! pp_hot.c
13051 ____________________________________________________________________________
13052 [  7199] By: jhi                                   on 2000/10/11  00:26:04
13053         Log: Remove duplicated code.
13054      Branch: perl
13055            ! t/lib/cgi-html.t
13056 ____________________________________________________________________________
13057 [  7198] By: jhi                                   on 2000/10/10  23:30:46
13058         Log: (Retracted by #7200.)
13059      Branch: perl
13060            ! pp_hot.c
13061 ____________________________________________________________________________
13062 [  7197] By: jhi                                   on 2000/10/10  21:49:30
13063         Log: Add the test case for #7190, from the original bug report
13064              by Andreas König.
13065      Branch: perl
13066            ! t/pragma/utf8.t
13067 ____________________________________________________________________________
13068 [  7196] By: jhi                                   on 2000/10/10  21:40:49
13069         Log: Reapply Andy's patch and regen Configure.
13070      Branch: perl
13071            ! Configure INSTALL Makefile.SH Porting/Glossary
13072            ! Porting/config.sh config_h.SH epoc/config.sh installperl
13073            ! uconfig.sh vos/config.def win32/config.bc win32/config.gc
13074            ! win32/config.vc
13075 ____________________________________________________________________________
13076 [  7195] By: jhi                                   on 2000/10/10  21:09:30
13077         Log: Use the versiononly instead of the installscripts,
13078              retract the changes 7146 and 7147.
13079      Branch: perl
13080            ! Configure INSTALL Makefile.SH Porting/Glossary
13081            ! Porting/config.sh Porting/config_H config_h.SH epoc/config.sh
13082            ! installperl uconfig.sh vos/config.def win32/config.bc
13083            ! win32/config.gc win32/config.vc
13084 ____________________________________________________________________________
13085 [  7194] By: jhi                                   on 2000/10/10  21:06:15
13086         Log: Subject: [PATCH: perl@7181] ver.t v string tests for os/390
13087              From: Peter Prymmer <pvhp@forte.com>
13088              Date: Tue, 10 Oct 2000 13:24:18 -0700 (PDT)
13089              Message-ID: <Pine.OSF.4.10.10010101322510.441897-100000@aspara.forte.com>
13090      Branch: perl
13091            ! t/op/ver.t
13092 ____________________________________________________________________________
13093 [  7193] By: jhi                                   on 2000/10/10  21:05:12
13094         Log: Subject: [PATCH: perl@7181] op/tr tests on OS/390
13095              From: Peter Prymmer <pvhp@forte.com>
13096              Date: Tue, 10 Oct 2000 13:56:35 -0700 (PDT)
13097              Message-ID: <Pine.OSF.4.10.10010101355140.441897-100000@aspara.forte.com>
13098      Branch: perl
13099            ! t/op/tr.t
13100 ____________________________________________________________________________
13101 [  7192] By: jhi                                   on 2000/10/10  20:57:30
13102         Log: Add versiononly, delete installscripts, from Andy Dougherty.
13103      Branch: metaconfig
13104            - U/installdirs/installscripts.U
13105      Branch: metaconfig/U/perl
13106            + versiononly.U
13107 ____________________________________________________________________________
13108 [  7191] By: jhi                                   on 2000/10/10  19:41:21
13109         Log: Subject: [PATCH: perl@7181] perlebcdic.pod updates and corrections
13110              From: Peter Prymmer <pvhp@forte.com>
13111              Date: Tue, 10 Oct 2000 12:35:57 -0700 (PDT)
13112              Message-ID: <Pine.OSF.4.10.10010101231390.441897-100000@aspara.forte.com>
13113      Branch: perl
13114            ! pod/perlebcdic.pod
13115 ____________________________________________________________________________
13116 [  7190] By: jhi                                   on 2000/10/10  19:26:14
13117         Log: Subject: Re: utf8 concat, mg_get
13118              From: Simon Cozens <simon@cozens.net>
13119              Date: Tue, 10 Oct 2000 17:40:17 +0100
13120              Message-ID: <20001010174017.A13130@pembro4.pmb.ox.ac.uk>
13121      Branch: perl
13122            ! pp_hot.c
13123 ____________________________________________________________________________
13124 [  7189] By: jhi                                   on 2000/10/10  19:23:03
13125         Log: Subject: [ID 20000720.004] ExtUtils::MakeMaker finds wrong version of perl
13126              From: jdb@dfwnet.sbms.sbc.com (J. David Blackstone)
13127              Date: Thu, 20 Jul 2000 13:31:22 -0500 (CDT)
13128              Message-Id: <200007201831.NAA05776@dfwnet1.dfwnet.sbms.sbc.com>
13129      Branch: perl
13130            ! lib/ExtUtils/MM_Unix.pm
13131 ____________________________________________________________________________
13132 [  7188] By: jhi                                   on 2000/10/10  15:31:24
13133         Log: Subject: RE: [ID 19990803.001] README.win32 suggestions 
13134              From: "Moore, Paul" <Paul.Moore@uk.origin-it.com>
13135              Date: Fri, 14 Jul 2000 10:47:36 +0100
13136              Message-ID: <714DFA46B9BBD0119CD000805FC1F53B012A8224@UKRUX002.rundc.uk.origin-it.com>
13137      Branch: perl
13138            ! README.win32
13139 ____________________________________________________________________________
13140 [  7187] By: jhi                                   on 2000/10/10  13:30:10
13141         Log: Quote the temp file name, needed in Win32 because the
13142              default name unfortunately contains spaces, shouldn't
13143              hurt elsewhere.
13144              
13145              Subject: FW: perldoc fails if $TEMP contains spaces
13146              From: "Moore, Paul" <Paul.Moore@uk.origin-it.com>
13147              Date: Thu, 14 Sep 2000 08:58:45 +0100
13148              Message-ID: <714DFA46B9BBD0119CD000805FC1F53B012A82AA@UKRUX002.rundc.uk.origin-it.com>
13149      Branch: perl
13150            ! utils/perldoc.PL
13151 ____________________________________________________________________________
13152 [  7186] By: jhi                                   on 2000/10/10  13:16:27
13153         Log: Subject: [PATCH 5.6.0] Re: [ID 20001009.004] SEGV from sprintf in a thread 
13154              From: hv@hugo.hybyte.com
13155              Date: Tue, 10 Oct 2000 14:10:20 +0100
13156              Message-Id: <200010101310.OAA00953@hugo.hybyte.com>
13157      Branch: perl
13158            ! t/lib/thr5005.t util.c
13159 ____________________________________________________________________________
13160 [  7185] By: jhi                                   on 2000/10/10  12:06:22
13161         Log: Upgrade to podlators 1.04, from Russ Allbery.
13162      Branch: perl
13163            ! lib/Pod/Man.pm lib/Pod/Text.pm
13164 ____________________________________________________________________________
13165 [  7184] By: jhi                                   on 2000/10/10  12:01:32
13166         Log: Upgrade to CGI.pm 2.74, from Lincoln Stein.
13167      Branch: perl
13168            ! lib/CGI.pm t/lib/cgi-form.t t/lib/cgi-html.t
13169 ____________________________________________________________________________
13170 [  7183] By: jhi                                   on 2000/10/09  23:47:15
13171         Log: Subject: [PATCH: perl@7159] various VMS cleanup issues + CXX configure
13172              From: Peter Prymmer <pvhp@forte.com>
13173              Message-ID: <Pine.OSF.4.10.10010091625290.260786-100000@aspara.forte.com>
13174              Date: Mon, 9 Oct 2000 16:30:44 -0700 (PDT)
13175      Branch: perl
13176            ! configure.com vms/descrip_mms.template vms/vms.c vms/vmsish.h
13177 ____________________________________________________________________________
13178 [  7182] By: jhi                                   on 2000/10/09  23:43:16
13179         Log: Make eq work again with utf8 (disabling the upgrading
13180              should no more be necessary since the copies of the
13181              scalars are upgraded, not the scalars themselves).
13182              Takes care of ID 20001009.001.  (The claimed length()
13183              bug in 20001009.001 seems bogus to me.)
13184      Branch: perl
13185            ! sv.c t/pragma/utf8.t
13186 ____________________________________________________________________________
13187 [  7181] By: gsar                                  on 2000/10/09  19:41:54
13188         Log: tweak for change#7173
13189      Branch: perl
13190            ! win32/win32sck.c
13191 ____________________________________________________________________________
13192 [  7180] By: gsar                                  on 2000/10/09  19:26:56
13193         Log: on Windows, clean targets might not work under some flavors of the shell
13194      Branch: perl
13195            ! win32/Makefile win32/makefile.mk
13196 ____________________________________________________________________________
13197 [  7179] By: jhi                                   on 2000/10/09  19:21:02
13198         Log: Update Changes.
13199      Branch: perl
13200            ! Changes patchlevel.h
13201 ____________________________________________________________________________
13202 [  7178] By: jhi                                   on 2000/10/09  19:18:23
13203         Log: Warn about unknown scripts.
13204              
13205              Subject: Re: ideas? patches? [PATCH bleadperl]
13206              From: Dominic Dunlop <domo@computer.org>
13207              Date: Mon, 9 Oct 2000 14:57:17 +0200
13208              Message-Id: <p04320400b6076a75b15f@[192.168.1.4]>
13209      Branch: perl
13210            ! lib/charnames.pm
13211 ____________________________________________________________________________
13212 [  7177] By: jhi                                   on 2000/10/09  19:13:27
13213         Log: Change #7160 had a nasty typo.
13214      Branch: metaconfig
13215            ! U/compline/Compile.U
13216      Branch: perl
13217            ! Configure config_h.SH
13218 ____________________________________________________________________________
13219 [  7176] By: gsar                                  on 2000/10/09  18:59:33
13220         Log: pod nit
13221      Branch: perl
13222            ! pod/perlport.pod
13223 ____________________________________________________________________________
13224 [  7175] By: gsar                                  on 2000/10/09  18:54:28
13225         Log: Windows9x doesn't support link(), despite what Config.pm
13226              might think
13227      Branch: perl
13228            ! lib/ExtUtils/Manifest.pm
13229 ____________________________________________________________________________
13230 [  7174] By: gsar                                  on 2000/10/09  18:50:03
13231         Log: avoid nonportable example code
13232      Branch: perl
13233            ! lib/File/Copy.pm
13234 ____________________________________________________________________________
13235 [  7173] By: gsar                                  on 2000/10/09  18:46:54
13236         Log: on Windows, avoid potential exception (could happen if MSVCRT isn't
13237              being used) when closing a socket handle
13238      Branch: perl
13239            ! win32/win32.c win32/win32.h win32/win32sck.c
13240 ____________________________________________________________________________
13241 [  7172] By: gsar                                  on 2000/10/09  18:41:40
13242         Log: on Windows, cwd strings in the environment should be of the
13243              form =X:=X:\foo instead of =X=X:\foo\
13244      Branch: perl
13245            ! win32/vdir.h
13246 ____________________________________________________________________________
13247 [  7171] By: gsar                                  on 2000/10/09  18:30:09
13248         Log: on Windows, LoadLibrary() could load an extension DLL multiple
13249              times if forward slashes are used in the path
13250      Branch: perl
13251            ! win32/win32.c
13252 ____________________________________________________________________________
13253 [  7170] By: jhi                                   on 2000/10/09  17:53:59
13254         Log: Add a todo note about overloadable assertions.
13255      Branch: perl
13256            ! Todo-5.6
13257 ____________________________________________________________________________
13258 [  7169] By: jhi                                   on 2000/10/09  13:43:45
13259         Log: Subject: PATCH 5.6 perldebguts grammar cleanup
13260              From: mjd@plover.com
13261              Date: 9 Oct 2000 00:24:44 -0000
13262              Message-ID: <20001009002444.10616.qmail@plover.com>
13263      Branch: perl
13264            ! pod/perldebguts.pod
13265 ____________________________________________________________________________
13266 [  7168] By: nick                                  on 2000/10/08  13:16:33
13267         Log: Tables assume network byte order for 16 bit forms, so 'S' packing
13268              is not right thing to do on (e.g. x86). Network order is also "right" for
13269              X fonts.
13270      Branch: perl
13271            ! ext/Encode/Encode.pm
13272 ____________________________________________________________________________
13273 [  7167] By: nick                                  on 2000/10/08  12:54:42
13274         Log: Make "encodings" work post-install when Encode/*.enc files may not
13275              be in same directory as Encode.pm
13276      Branch: perl
13277            ! ext/Encode/Encode.pm
13278 ____________________________________________________________________________
13279 [  7166] By: nick                                  on 2000/10/08  11:51:26
13280         Log: Work round the fact that $hash->{$key} does not take into account
13281              UTF8'ness of $key yet.  Thus fromUnicode needs to do $hash->{chr(ord($ch))}
13282              so that key is always in the "expected" encoding - i.e. same way we put
13283              it in the hash.
13284      Branch: perl
13285            ! ext/Encode/Encode.pm
13286 ____________________________________________________________________________
13287 [  7165] By: gsar                                  on 2000/10/08  04:15:29
13288         Log: save_re_context() could reset PL_curcop to freed memory, causing core
13289              dumps in code such as C<use CGI::Carp; use something_that_calls_die;>
13290      Branch: perl
13291            ! pp_ctl.c
13292 ____________________________________________________________________________
13293 [  7164] By: jhi                                   on 2000/10/06  20:51:48
13294         Log: UTF8ize split() so that the cloned substrings get the UTF8
13295              flag of the original scalar.  Problem reported by Simon Cozens.
13296      Branch: perl
13297            ! pp.c t/pragma/utf8.t
13298 ____________________________________________________________________________
13299 [  7163] By: nick                                  on 2000/10/06  20:48:34
13300         Log: Fix in change 7162 was too-late for case where we "upgraded" to PVIV and
13301              got a false +ve and so did not reach code which would have un-FAKEd the SV.
13302      Branch: perl
13303            ! sv.c
13304 ____________________________________________________________________________
13305 [  7162] By: nick                                  on 2000/10/06  20:25:37
13306         Log: Make sv_upgrade() undo READONLY|FAKE shared string hackery.
13307              To fix  (sort {$a <=> $b} keys %hash) in particular but
13308              should cover a number of other as-yet-unknown cases as well.
13309      Branch: perl
13310            ! sv.c
13311 ____________________________________________________________________________
13312 [  7161] By: jhi                                   on 2000/10/06  19:56:18
13313         Log: Change the version number of Tie::Handle in the core to 4.0,
13314              the (unrelated) Tie::Handle in CPAN will remain at 3.0.
13315              
13316              Subject: Note on Tie::Handle
13317              From: andreas.koenig@anima.de (Andreas J. Koenig)
13318              Date:      06 Oct 2000 21:48:58 +0200
13319              Message-ID: <m3ya01kaxh.fsf@ak-71.mind.de>
13320      Branch: perl
13321            ! lib/Tie/Handle.pm
13322 ____________________________________________________________________________
13323 [  7160] By: jhi                                   on 2000/10/06  18:20:35
13324         Log: Fix bug in #7157 (s/cflags/ccflags); moved the -o foo
13325              as the first option of cc/ld because of ultrapicky compilers
13326              (e.g. OS/390 R2.5)
13327      Branch: metaconfig
13328            + U/modified/d_getpgrp.U U/modified/d_setpgrp.U
13329            ! U/compline/Compile.U U/compline/Csym.U U/compline/ccflags.U
13330            ! U/compline/orderlib.U U/modified/Cppsym.U
13331            ! U/modified/d_access.U
13332      Branch: metaconfig/U/perl
13333            ! Checkcc.U d_dlsymun.U gccvers.U
13334      Branch: perl
13335            ! Configure config_h.SH
13336 ____________________________________________________________________________
13337 [  7159] By: jhi                                   on 2000/10/06  13:56:39
13338         Log: Update Changes.
13339      Branch: perl
13340            ! Changes patchlevel.h
13341 ____________________________________________________________________________
13342 [  7158] By: jhi                                   on 2000/10/06  12:48:40
13343         Log: Eliminate $Is_VMS code from the test.
13344              
13345              Subject:  Re: [ID 20001004.005] Not OK: perl v5.7.0 +DEVEL7129 on VMS_AXP V7.1
13346              From: lane@DUPHY4.Physics.Drexel.Edu (Charles Lane)
13347              Message-Id: <001005074528.21621@DUPHY4.Physics.Drexel.Edu>
13348              Date:     Thu, 5 Oct 2000 07:46:33 EDT
13349      Branch: perl
13350            ! t/lib/b.t
13351 ____________________________________________________________________________
13352 [  7157] By: jhi                                   on 2000/10/06  12:47:13
13353         Log: Also the $ccflags is needed for the C compiler check.
13354              
13355              Subject: Configure (check for C-compiler)
13356              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
13357              Date: Fri, 06 Oct 2000 08:47:15 +0200
13358              Message-Id: <20001006084120.C52B.H.M.BRAND@hccnet.nl>
13359      Branch: metaconfig/U/perl
13360            ! Checkcc.U
13361      Branch: perl
13362            ! Configure config_h.SH
13363 ____________________________________________________________________________
13364 [  7156] By: jhi                                   on 2000/10/06  11:45:15
13365         Log: The HINT_BYTE patch is apparently unnecessary, retracted.
13366      Branch: perl
13367            ! perl.c pp_ctl.c sv.h utf8.c
13368 ____________________________________________________________________________
13369 [  7155] By: jhi                                   on 2000/10/06  11:40:41
13370         Log: IO::Handle->syswrite() did not handle length omission
13371              like CORE::syswrite() does.
13372              
13373              Subject: [Fwd] IO::Handle, syswrite and arguments
13374              From: Graham Barr <gbarr@pobox.com>
13375              Date: Fri, 6 Oct 2000 10:22:05 +0100
13376              Message-ID: <20001006102205.U6312@pobox.com>
13377              
13378              The original patch from andrew@ugh.net.au.
13379      Branch: perl
13380            ! ext/IO/lib/IO/Handle.pm
13381 ____________________________________________________________________________
13382 [  7154] By: jhi                                   on 2000/10/06  01:42:15
13383         Log: Tweak #7153.
13384      Branch: perl
13385            ! utf8.h
13386 ____________________________________________________________________________
13387 [  7153] By: jhi                                   on 2000/10/06  00:39:55
13388         Log: Patch from Simon Cozens to avoid using utf8 routines in EBCDIC.
13389      Branch: perl
13390            ! utf8.h
13391 ____________________________________________________________________________
13392 [  7152] By: jhi                                   on 2000/10/06  00:38:11
13393         Log: Patch from Peter Prymmer to disable utf8 in EBCDIC platforms.
13394      Branch: perl
13395            ! perl.c pp_ctl.c sv.h utf8.c
13396 ____________________________________________________________________________
13397 [  7151] By: jhi                                   on 2000/10/06  00:36:38
13398         Log: Subject: Re: Questions about Tie::Array and perl modules
13399              From: Nick Ing-Simmons <nik@tiuk.ti.com>
13400              Date: Thu, 5 Oct 2000 09:37:11 +0100 (BST)
13401              Message-Id: <200010050837.JAA00564@mikado.tiuk.ti.com>
13402              
13403              Bug reported and fix suggested by Philip D Crow <pcrow@hertz.com>.
13404      Branch: perl
13405            ! lib/Tie/Array.pm t/op/array.t
13406 ____________________________________________________________________________
13407 [  7150] By: jhi                                   on 2000/10/05  00:20:45
13408         Log: Regen Changes.
13409      Branch: perl
13410            ! Changes patchlevel.h
13411 ____________________________________________________________________________
13412 [  7149] By: jhi                                   on 2000/10/05  00:20:01
13413         Log: Regen toc.
13414      Branch: perl
13415            ! pod/perltoc.pod
13416 ____________________________________________________________________________
13417 [  7148] By: jhi                                   on 2000/10/04  23:35:08
13418         Log: Code around the stat-on-a-pipe-returns-a-mode-of-zero bug
13419              reported several times by Dominic Dunlop, for example in
13420              ID 20000315.008.  Patch from Dominic.  Patch affects at
13421              least MachTen, and possibly other oldish BSDs. Should not
13422              break non-broken platforms (tested on LinuxPPC). 
13423      Branch: perl
13424            ! doio.c
13425 ____________________________________________________________________________
13426 [  7147] By: jhi                                   on 2000/10/04  23:26:34
13427         Log: The one that got away from 7146.
13428      Branch: metaconfig
13429            + U/installdirs/installscripts.U
13430 ____________________________________________________________________________
13431 [  7146] By: jhi                                   on 2000/10/04  23:25:04
13432         Log: Enable disabling scripts installation by Configure -Uinstallscripts,
13433              suggested by H. Merijn Brand.
13434      Branch: perl
13435            ! Configure INSTALL Makefile.SH Porting/Glossary
13436            ! Porting/config.sh Porting/config_H epoc/config.sh installperl
13437            ! uconfig.sh vos/config.def win32/config.bc win32/config.gc
13438            ! win32/config.vc
13439 ____________________________________________________________________________
13440 [  7145] By: jhi                                   on 2000/10/04  22:08:21
13441         Log: Subject: Re: [PATCH 5.7.0] h2xs not documenting the created module
13442              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
13443              Date: Wed, 4 Oct 2000 17:37:46 -0400
13444              Message-ID: <20001004173746.A26697@monk.mps.ohio-state.edu>
13445      Branch: perl
13446            ! utils/h2xs.PL
13447 ____________________________________________________________________________
13448 [  7144] By: jhi                                   on 2000/10/04  18:11:41
13449         Log: Subject: [PATCH perlrun.pod] Re: [ID 20000930.002] perlrun nor perldelta mention -s modification
13450              From: Jeff Pinyan <jeffp@crusoe.net>
13451              Date: Tue, 3 Oct 2000 16:35:42 -0400 (EDT)
13452              Message-ID: <Pine.GSO.4.21.0010031634530.14163-100000@crusoe.crusoe.net>
13453      Branch: perl
13454            ! pod/perlrun.pod
13455 ____________________________________________________________________________
13456 [  7143] By: jhi                                   on 2000/10/04  18:09:58
13457         Log: Subject: perlhack.pod Patch for Externals Tools
13458              From: Fisher Mark <fisherm@tce.com>
13459              Date: Tue, 3 Oct 2000 15:43:27 -0500 
13460              Message-ID: <B9B6874277EED211B1890008C707AF530505B180@indyexch3.indy.tce.com>
13461      Branch: perl
13462            ! pod/perlhack.pod
13463 ____________________________________________________________________________
13464 [  7142] By: jhi                                   on 2000/10/04  18:08:41
13465         Log: Subject:  [PATCH] 5.6.0 & 5.7.0  VMS TZ fix for VMS6.2 and earlier
13466              From: lane@DUPHY4.Physics.Drexel.Edu (Charles Lane)
13467              Date:     Wed, 4 Oct 2000 12:11:11 EDT
13468              Message-Id: <001004120530.25cb5@DUPHY4.Physics.Drexel.Edu>
13469      Branch: perl
13470            ! vms/vms.c
13471 ____________________________________________________________________________
13472 [  7141] By: jhi                                   on 2000/10/04  12:20:16
13473         Log: Subject: [PATCH 5.7.0] h2xs not working
13474              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
13475              Message-ID: <20001003214301.A22851@monk.mps.ohio-state.edu>
13476              Date: Tue, 3 Oct 2000 21:43:01 -0400
13477              
13478              Subject: [PATCH 5.7.0] h2xs not documenting the created module
13479              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
13480              Date: Tue, 3 Oct 2000 22:55:19 -0400
13481              Message-ID: <20001003225519.A23360@monk.mps.ohio-state.edu>
13482      Branch: perl
13483            ! utils/h2xs.PL
13484 ____________________________________________________________________________
13485 [  7140] By: jhi                                   on 2000/10/04  11:53:44
13486         Log: Subject: [ID 20001004.003] installman "Ambiguous call resolved as CORE::"
13487              From: nick@babyhippo.com
13488              Date: Wed, 4 Oct 2000 12:06:45 +0100
13489              Message-Id: <20001004120645.A7356@babyhippo.com>
13490              
13491              Retract 7118 and 7135.
13492      Branch: perl
13493            ! installman installperl op.c t/pragma/subs.t
13494 ____________________________________________________________________________
13495 [  7139] By: jhi                                   on 2000/10/03  22:09:41
13496         Log: It is possible to have no hosts database at all.  Pointed out in
13497              
13498              Subject: [PATCH: 7131] PWPASSWD problem for passwd less pwd's
13499              From: Peter Prymmer <pvhp@forte.com>
13500              Date: Tue, 3 Oct 2000 12:05:59 -0700 (PDT)
13501              Message-ID: <Pine.OSF.4.10.10010031203470.388222-100000@aspara.forte.com>
13502      Branch: metaconfig
13503            ! U/modified/myhostname.U
13504      Branch: perl
13505            ! Configure config_h.SH
13506 ____________________________________________________________________________
13507 [  7138] By: jhi                                   on 2000/10/03  21:49:49
13508         Log: Subject: [PATCH: 7131] PWPASSWD problem for passwd less pwd's
13509              From: Peter Prymmer <pvhp@forte.com>
13510              Date: Tue, 3 Oct 2000 12:05:59 -0700 (PDT)
13511              Message-ID: <Pine.OSF.4.10.10010031203470.388222-100000@aspara.forte.com>
13512      Branch: perl
13513            ! pp_sys.c
13514 ____________________________________________________________________________
13515 [  7137] By: jhi                                   on 2000/10/03  20:10:05
13516         Log: One remaining nit less at the VMS mailbox sizing.
13517      Branch: perl
13518            ! vms/vms.c
13519 ____________________________________________________________________________
13520 [  7136] By: jhi                                   on 2000/10/03  20:08:47
13521         Log: Test harness update to sync with the new perlcc,
13522              from Simon Cozens.
13523      Branch: perl
13524            ! t/TEST t/UTEST
13525 ____________________________________________________________________________
13526 [  7135] By: jhi                                   on 2000/10/03  15:15:42
13527         Log: Subject: Re: PATCH for 20001003.004
13528              Date: Tue, 3 Oct 2000 11:03:04 -0400 (EDT)
13529              From: "AARON B. DOSSETT" <aaron@iglou.com>
13530              Message-Id: <E13gTay-0006od-00@iglou.com>
13531      Branch: perl
13532            ! installman installperl
13533 ____________________________________________________________________________
13534 [  7134] By: jhi                                   on 2000/10/03  15:00:34
13535         Log: Subject: [ID 20001003.006] B::Debug not -w clean
13536              From: Nicholas Clark <nick@babyhippo.co.uk>
13537              Date: Tue, 03 Oct 2000 15:46:32 +0100
13538              Message-Id: <E13gTKy-0002R2-00@fruitbat.babyhippo.co.uk>
13539      Branch: perl
13540            ! ext/B/B/Debug.pm
13541 ____________________________________________________________________________
13542 [  7133] By: jhi                                   on 2000/10/03  14:58:39
13543         Log: Scale down the VMS message boxes, by Charles Lane.
13544              Fix for ID 20000903.009, workaround at
13545              http://www.xray.mpe.mpg.de/mailing-lists/vmsperl/2000-09/msg00039.html
13546      Branch: perl
13547            ! vms/vms.c
13548 ____________________________________________________________________________
13549 [  7132] By: jhi                                   on 2000/10/03  11:20:37
13550         Log: Upgrade to Storable 1.0.3, from Raphael Manfredi.
13551      Branch: perl
13552            + t/lib/st-lock.t t/lib/st-utf8.t
13553            ! MANIFEST ext/Storable/ChangeLog ext/Storable/Storable.pm
13554            ! ext/Storable/Storable.xs t/lib/st-recurse.t
13555 ____________________________________________________________________________
13556 [  7131] By: jhi                                   on 2000/10/03  03:38:23
13557         Log: Encode nits.
13558      Branch: perl
13559            ! MANIFEST Makefile.SH
13560 ____________________________________________________________________________
13561 [  7130] By: jhi                                   on 2000/10/03  03:31:05
13562         Log: Update Changes.
13563      Branch: perl
13564            ! Changes patchlevel.h
13565 ____________________________________________________________________________
13566 [  7129] By: jhi                                   on 2000/10/03  02:24:02
13567         Log: Misplaced else.
13568      Branch: metaconfig/U/perl
13569            ! d_strtoll.U
13570      Branch: perl
13571            ! Configure config_h.SH
13572 ____________________________________________________________________________
13573 [  7128] By: jhi                                   on 2000/10/03  02:08:29
13574         Log: Subject: [ID 20000915.007] Not OK: perl v5.7.0 +DEVEL7092 on os2-64int-ld 2.30 '(UNINSTALLED)'
13575              From: sthoenna@efn.org
13576              Date: Fri, 15 Sep 2000 07:19:57 -0700 (PDT)
13577              Message-Id: <200009151419.e8FEJvE19796@garcia.efn.org>
13578      Branch: metaconfig/U/perl
13579            ! d_strtoll.U
13580      Branch: perl
13581            ! Configure config_h.SH hints/os2.sh os2/os2ish.h
13582 ____________________________________________________________________________
13583 [  7127] By: jhi                                   on 2000/10/03  01:13:14
13584         Log: Update Changes.
13585      Branch: perl
13586            ! Changes patchlevel.h
13587 ____________________________________________________________________________
13588 [  7126] By: jhi                                   on 2000/10/03  00:57:08
13589         Log: Introduce NO_ENVIRON_ARRAY (and USE_ENVIRON_ARRAY) defines
13590              as suggested by Olaf Flebbe and Nick Clark.
13591      Branch: perl
13592            ! epoc/epocish.h perl.h sv.c unixish.h util.c vms/vmsish.h
13593 ____________________________________________________________________________
13594 [  7125] By: jhi                                   on 2000/10/03  00:50:56
13595         Log: Subject: [ID 20001002.001] Not OK: perl v5.7.0 +DEVEL7093 +...001 on i586-linux 2.2.16 (UNINSTALLED)
13596              From: Nick Clark <nick@plum.flirble.org>
13597              Date: Mon, 2 Oct 2000 11:03:24 +0100
13598              Message-Id: <20001002110324.D20073@plum.flirble.org>
13599              
13600              Also fixes bug ID 20001002.005.
13601      Branch: perl
13602            ! t/lib/encode.t
13603 ____________________________________________________________________________
13604 [  7124] By: jhi                                   on 2000/10/03  00:34:59
13605         Log: Subject: [PATCH 5.7.0] Epoc update
13606              From: Olaf Flebbe <o.flebbe@gmx.de>
13607              Date: Wed, 20 Sep 2000 23:16:26 +0200 (MEST)
13608              Message-ID: <26423.969484586@www10.gmx.net>
13609      Branch: perl
13610            ! README.epoc epoc/config.sh epoc/createpkg.pl epoc/epoc.c
13611            ! epoc/epoc_stubs.c epoc/epocish.h epoc/link.pl
13612            ! lib/AutoLoader.pm lib/Cwd.pm mg.c perl.c perl.h pp_sys.c sv.c
13613            ! util.c util.h
13614 ____________________________________________________________________________
13615 [  7123] By: jhi                                   on 2000/10/03  00:30:07
13616         Log: Regen headers.
13617      Branch: perl
13618            ! embed.h opcode.h pod/perlapi.pod pp.sym pp_proto.h
13619 ____________________________________________________________________________
13620 [  7122] By: jhi                                   on 2000/10/03  00:10:48
13621         Log: OpenBSD flags tweak from Todd C. Miller, tweaked some more by Abigail.
13622      Branch: perl
13623            ! hints/openbsd.sh
13624 ____________________________________________________________________________
13625 [  7121] By: jhi                                   on 2000/10/03  00:05:06
13626         Log: Subject: [PATCH pod/perlop.pod]  Documentation glitch in magic autoincrement.
13627              From: <abigail@foad.org>
13628              Date: Tue, 26 Sep 2000 13:36:14 -0400
13629              Message-ID: <20000926173614.4356.qmail@foad.org>
13630      Branch: perl
13631            ! pod/perlop.pod
13632 ____________________________________________________________________________
13633 [  7120] By: jhi                                   on 2000/10/03  00:04:00
13634         Log: Inside require() $^S was always left undefined.
13635              
13636              Subject: Re: Tiny 2-byte change to fix debugger's eval bug
13637              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
13638              Date: Wed, 27 Sep 2000 18:54:49 -0400
13639              Message-ID: <20000927185449.A24927@monk.mps.ohio-state.edu>
13640      Branch: perl
13641            ! cop.h mg.c pp_ctl.c util.c
13642 ____________________________________________________________________________
13643 [  7119] By: jhi                                   on 2000/10/03  00:00:16
13644         Log: Subject: [PATCH] DLL not restartabke with threaded perl
13645              From: "Dave Hartnoll" <Dave_Hartnoll@3b2.com>
13646              Date: Thu, 28 Sep 2000 09:20:46 +0100
13647              Message-ID: <002101c02925$00aa8d80$7e0aa8c0@3b2.com>
13648      Branch: perl
13649            ! perl.c
13650 ____________________________________________________________________________
13651 [  7118] By: jhi                                   on 2000/10/02  23:59:20
13652         Log: Subject: Re: [ID 20000828.017] bytecode fails with use subs;
13653              From: Nicholas Clark <nick@ccl4.org>
13654              Date: Thu, 28 Sep 2000 11:52:24 +0100
13655              Message-ID: <20000928115224.D7924@plum.flirble.org>
13656      Branch: perl
13657            ! op.c
13658 ____________________________________________________________________________
13659 [  7117] By: jhi                                   on 2000/10/02  23:57:51
13660         Log: Subject: [ID 20000928.002] perlcc & ByteCode.pm option mismatch
13661              From: Nicholas Clark <nick@babyhippo.co.uk>
13662              Date: Thu, 28 Sep 2000 12:18:10 +0100
13663              Message-Id: <E13ebha-0004IV-00@fruitbat.babyhippo.co.uk>
13664              
13665              Did not apply cleanly, manual intervention was needed.
13666      Branch: perl
13667            ! ext/B/B/Bytecode.pm utils/perlcc.PL
13668 ____________________________________________________________________________
13669 [  7116] By: jhi                                   on 2000/10/02  23:50:40
13670         Log: Document the issue (is not a syntax error, kind of)
13671              
13672              Subject: Re: [ID 20000901.011] the list (1,,3) ought to be a syntax error
13673              From: Nicholas Clark <nick@ccl4.org>
13674              Date: Thu, 28 Sep 2000 17:12:42 +0100
13675              Message-ID: <20000928171242.K7924@plum.flirble.org>
13676      Branch: perl
13677            ! pod/perldata.pod
13678 ____________________________________________________________________________
13679 [  7115] By: jhi                                   on 2000/10/02  23:48:58
13680         Log: Subject: [PATCH 5.7.0] Minor optimization in re_intuit_start
13681              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
13682              Date: Thu, 28 Sep 2000 21:55:31 -0400
13683              Message-ID: <20000928215531.A4315@monk.mps.ohio-state.edu>
13684      Branch: perl
13685            ! regexec.c
13686 ____________________________________________________________________________
13687 [  7114] By: jhi                                   on 2000/10/02  23:47:57
13688         Log: Subject: DOC PATCH 5.6.0
13689              From: mjd@plover.com
13690              Date: 30 Sep 2000 06:02:34 -0000
13691              Message-ID: <20000930060234.4559.qmail@plover.com>
13692      Branch: perl
13693            ! pod/perldebguts.pod
13694 ____________________________________________________________________________
13695 [  7113] By: jhi                                   on 2000/10/02  23:46:43
13696         Log: SOCK_DGRAM and listen() do not mix as reported in
13697              
13698              Subject: [ID 20000930.001] Bug in perl 5.00503 IO::Socket
13699              From: Petter Reinholdtsen <pere@hungry.com>
13700              Date: Sun, 1 Oct 2000 10:57:20 +0800
13701              Message-Id: <200010010257.KAA05735@localhost.localdomain>
13702              
13703              The patch for 5.7.0+ had to be reengineered, though.
13704      Branch: perl
13705            ! ext/IO/lib/IO/Socket/UNIX.pm
13706 ____________________________________________________________________________
13707 [  7112] By: jhi                                   on 2000/10/02  23:36:57
13708         Log: Subject: Re: [PATCH 5.005_64 missed]
13709              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
13710              Date: Sun, 1 Oct 2000 18:50:10 -0400
13711              Message-ID: <20001001185010.A14152@monk.mps.ohio-state.edu>
13712      Branch: perl
13713            ! pod/perlxs.pod
13714 ____________________________________________________________________________
13715 [  7111] By: jhi                                   on 2000/10/02  23:35:40
13716         Log: Subject: Re: [ID 20000912.008] substr replacement of tainted data (bug) 
13717              From: Radu Greab <radu@netsoft.ro>
13718              Date: Mon, 2 Oct 2000 22:03:44 +0300 (EEST)
13719              Message-ID: <14808.56336.594486.626712@busy.netsoft.ro>
13720      Branch: perl
13721            ! op.c opcode.pl t/op/substr.t
13722 ____________________________________________________________________________
13723 [  7110] By: jhi                                   on 2000/10/02  23:32:38
13724         Log: Subject: [PATCH] Fix aliasing of tied filehandles
13725              From: Daniel Chetlin <daniel@chetlin.com>
13726              Date: Mon, 2 Oct 2000 14:53:27 -0700
13727              Message-ID: <20001002145327.C1617@ilmd>
13728      Branch: perl
13729            ! perl.h pp_hot.c t/op/tiehandle.t
13730 ____________________________________________________________________________
13731 [  7109] By: jhi                                   on 2000/10/02  23:31:30
13732         Log: s/Robin Parker/Robin Barker/
13733      Branch: perl
13734            ! Changes5.6
13735 ____________________________________________________________________________
13736 [  7108] By: jhi                                   on 2000/10/02  23:15:46
13737         Log: Retract #7091 as suggested in
13738              
13739              From: Robin Barker <rmb1@cise.npl.co.uk> 
13740              Subject: [PATCH-R]  was Re: SuSE's gcc-2.95.2 and //depot/perl
13741              Date: Fri, 29 Sep 2000 13:10:22 +0100 (BST)
13742              Message-Id: <200009291210.NAA17098@tempest.npl.co.uk>
13743      Branch: perl
13744            ! embed.pl proto.h
13745 ____________________________________________________________________________
13746 [  7107] By: nick                                  on 2000/10/02  18:23:14
13747         Log: A few tweaks to get Tk803 to work with Encode scheme.
13748      Branch: perl
13749            ! ext/Encode/Encode.pm ext/Encode/Encode.xs t/lib/encode.t
13750 ____________________________________________________________________________
13751 [  7106] By: nick                                  on 2000/10/01  21:34:14
13752         Log: Add checking cases to Encode's toUnicode and fromUnicode.
13753      Branch: perl
13754            ! ext/Encode/Encode.pm
13755 ____________________________________________________________________________
13756 [  7105] By: nick                                  on 2000/10/01  17:18:01
13757         Log: Add encoding tables from tcl8.3.2 and perl code in Encode.pm
13758              To read and use them.
13759              Add a lib/encode.t which checks a few things.
13760      Branch: perl
13761            + ext/Encode/Encode/ascii.enc ext/Encode/Encode/big5.enc
13762            + ext/Encode/Encode/cp1250.enc ext/Encode/Encode/cp1251.enc
13763            + ext/Encode/Encode/cp1252.enc ext/Encode/Encode/cp1253.enc
13764            + ext/Encode/Encode/cp1254.enc ext/Encode/Encode/cp1255.enc
13765            + ext/Encode/Encode/cp1256.enc ext/Encode/Encode/cp1257.enc
13766            + ext/Encode/Encode/cp1258.enc ext/Encode/Encode/cp437.enc
13767            + ext/Encode/Encode/cp737.enc ext/Encode/Encode/cp775.enc
13768            + ext/Encode/Encode/cp850.enc ext/Encode/Encode/cp852.enc
13769            + ext/Encode/Encode/cp855.enc ext/Encode/Encode/cp857.enc
13770            + ext/Encode/Encode/cp860.enc ext/Encode/Encode/cp861.enc
13771            + ext/Encode/Encode/cp862.enc ext/Encode/Encode/cp863.enc
13772            + ext/Encode/Encode/cp864.enc ext/Encode/Encode/cp865.enc
13773            + ext/Encode/Encode/cp866.enc ext/Encode/Encode/cp869.enc
13774            + ext/Encode/Encode/cp874.enc ext/Encode/Encode/cp932.enc
13775            + ext/Encode/Encode/cp936.enc ext/Encode/Encode/cp949.enc
13776            + ext/Encode/Encode/cp950.enc ext/Encode/Encode/dingbats.enc
13777            + ext/Encode/Encode/euc-cn.enc ext/Encode/Encode/euc-jp.enc
13778            + ext/Encode/Encode/euc-kr.enc ext/Encode/Encode/gb12345.enc
13779            + ext/Encode/Encode/gb1988.enc ext/Encode/Encode/gb2312.enc
13780            + ext/Encode/Encode/iso2022-jp.enc
13781            + ext/Encode/Encode/iso2022-kr.enc ext/Encode/Encode/iso2022.enc
13782            + ext/Encode/Encode/iso8859-1.enc
13783            + ext/Encode/Encode/iso8859-2.enc
13784            + ext/Encode/Encode/iso8859-3.enc
13785            + ext/Encode/Encode/iso8859-4.enc
13786            + ext/Encode/Encode/iso8859-5.enc
13787            + ext/Encode/Encode/iso8859-6.enc
13788            + ext/Encode/Encode/iso8859-7.enc
13789            + ext/Encode/Encode/iso8859-8.enc
13790            + ext/Encode/Encode/iso8859-9.enc ext/Encode/Encode/jis0201.enc
13791            + ext/Encode/Encode/jis0208.enc ext/Encode/Encode/jis0212.enc
13792            + ext/Encode/Encode/koi8-r.enc ext/Encode/Encode/ksc5601.enc
13793            + ext/Encode/Encode/macCentEuro.enc
13794            + ext/Encode/Encode/macCroatian.enc
13795            + ext/Encode/Encode/macCyrillic.enc
13796            + ext/Encode/Encode/macDingbats.enc
13797            + ext/Encode/Encode/macGreek.enc
13798            + ext/Encode/Encode/macIceland.enc
13799            + ext/Encode/Encode/macJapan.enc ext/Encode/Encode/macRoman.enc
13800            + ext/Encode/Encode/macRomania.enc ext/Encode/Encode/macThai.enc
13801            + ext/Encode/Encode/macTurkish.enc
13802            + ext/Encode/Encode/macUkraine.enc
13803            + ext/Encode/Encode/shiftjis.enc ext/Encode/Encode/symbol.enc
13804            + t/lib/encode.t
13805            ! MANIFEST ext/Encode/Encode.pm
13806 ____________________________________________________________________________
13807 [  7104] By: nick                                  on 2000/09/30  13:04:30
13808         Log: Subject: [PATCH@blead] Fix some recursion in overload.pm
13809              From: Daniel Chetlin <daniel@chetlin.com>
13810              Date: Mon, 18 Sep 2000 05:05:40 -0700
13811              Message-Id: <20000918050540.C652@ilmd>
13812      Branch: perl
13813            ! lib/overload.pm sv.c t/pragma/overload.t
13814 ____________________________________________________________________________
13815 [  7103] By: nick                                  on 2000/09/30  12:53:36
13816         Log: Subject: [ID 20000917.002] 5.7.0 and blead@7095 make html makes man
13817              From: Johan Vromans <jvromans@squirrel.nl>
13818              Date: Sun, 17 Sep 2000 19:46:05 +0200 (CEST)
13819              Message-Id: <14789.861.376723.870640@phoenix.squirrel.nl>
13820      Branch: perl
13821            ! pod/Makefile.SH
13822 ____________________________________________________________________________
13823 [  7102] By: nick                                  on 2000/09/30  12:52:31
13824         Log: Subject: [PATCH] Re: [ID 20000915.010] Infinite loop with -MO=Deparse
13825              From: Spider Boardman <spider@Orb.Nashua.NH.US>
13826              Date: Sat, 16 Sep 2000 16:36:45 -0400
13827              Message-Id: <200009162036.QAA11694@Orb.Nashua.NH.US>
13828      Branch: perl
13829            ! ext/B/B/Deparse.pm
13830 ____________________________________________________________________________
13831 [  7101] By: nick                                  on 2000/09/30  12:51:41
13832         Log: Subject: [PATCH perl@7065] another VMS my_fwrite() fix for Storable
13833              From: Craig A. Berry <craig.berry@psinetcs.com>
13834              Date: Sat, 16 Sep 2000 10:11:10 -0500
13835              Message-Id: <4.3.2.7.2.20000916010548.01ce1b60@exchi01>
13836      Branch: perl
13837            ! vms/vms.c
13838 ____________________________________________________________________________
13839 [  7100] By: nick                                  on 2000/09/30  12:50:33
13840         Log: Subject: Re: unicode support and perl [ID 20000901.097]
13841              From: Spider Boardman <spider@Orb.Nashua.NH.US>
13842              Date: Fri, 15 Sep 2000 16:37:58 -0400
13843              Message-Id: <200009152037.QAA19056@Orb.Nashua.NH.US>
13844      Branch: perl
13845            ! t/op/append.t
13846 ____________________________________________________________________________
13847 [  7099] By: nick                                  on 2000/09/30  12:49:35
13848         Log: Subject: Re: unicode support and perl [ID 20000901.097]
13849              From: Spider Boardman <spider@Orb.Nashua.NH.US>
13850              Date: Fri, 15 Sep 2000 16:25:30 -0400
13851              Message-Id: <200009152025.QAA18540@Orb.Nashua.NH.US>
13852      Branch: perl
13853            ! pp_hot.c
13854 ____________________________________________________________________________
13855 [  7098] By: nick                                  on 2000/09/30  12:48:00
13856         Log: Subject: Re: Trapping by opmask sets strange parser state [PATCH]
13857              From: Gisle Aas <gisle@ActiveState.com>
13858              Date: 15 Sep 2000 16:23:41 +0200
13859              Message-Id: <m3aed9ybrm.fsf@eik.g.aas.no>
13860      Branch: perl
13861            ! toke.c
13862 ____________________________________________________________________________
13863 [  7097] By: nick                                  on 2000/09/30  12:45:16
13864         Log: Subject: [PATCH] Nits in perlmod.pod
13865              From: Daniel Chetlin <daniel@chetlin.com>
13866              Date: Fri, 15 Sep 2000 02:04:09 -0700
13867              Message-Id: <20000915020409.A2104@ilmd>
13868      Branch: perl
13869            ! pod/perlmod.pod
13870 ____________________________________________________________________________
13871 [  7096] By: nick                                  on 2000/09/30  12:18:00
13872         Log: Re-instate Perl_utf8_to_uv without checking parameter - added in change 7075.
13873              i.e. rename Simon's function to Perl_utf8_to_uv_chk, change all calls to it
13874              to use new name and add Perl_utf8_to_uv() as a wrapper which calls it passing
13875              0 to checking to get the warning.
13876      Branch: perl
13877            ! doop.c embed.h embed.pl global.sym handy.h objXSUB.h op.c
13878            ! perlapi.c pod/perlapi.pod pp.c pp_ctl.c proto.h regcomp.c
13879            ! regexec.c sv.c toke.c utf8.c
13880 ____________________________________________________________________________
13881 [  7095] By: nick                                  on 2000/09/15  16:55:59
13882         Log: Mutliplicity & ithreads fix for sv.c/Encode.xs
13883              
13884              Subject: [ID 20000915.004] Not OK: perl v5.7.1 +devel-7094 on alpha-dec_osf-thread-multi 4.0f (UNINSTALLED)
13885              From: Spider Boardman <spider@Orb.Nashua.NH.US>
13886              Message-Id: <200009151037.GAA07447@Orb.Nashua.NH.US>
13887              Date: Fri, 15 Sep 2000 06:37:30 -0400
13888      Branch: perl
13889            ! ext/Encode/Encode.xs sv.c
13890 ____________________________________________________________________________
13891 [  7094] By: jhi                                   on 2000/09/15  03:23:32
13892         Log: Update Changes.
13893      Branch: perl
13894            ! Changes patchlevel.h
13895 ____________________________________________________________________________
13896 [  7093] By: jhi                                   on 2000/09/15  03:11:44
13897         Log: Fix for the charnames.t failures from Spider Boardman.
13898      Branch: perl
13899            ! toke.c
13900 ____________________________________________________________________________
13901 [  7092] By: jhi                                   on 2000/09/15  00:15:48
13902         Log: Botched the #7090 check-in.
13903      Branch: perl
13904            ! sv.c
13905 ____________________________________________________________________________
13906 [  7091] By: jhi                                   on 2000/09/14  23:33:24
13907         Log: Part of #7081 didn't come through.
13908      Branch: perl
13909            ! embed.pl proto.h
13910 ____________________________________________________________________________
13911 [  7090] By: jhi                                   on 2000/09/14  23:17:39
13912         Log: Subject: Re: perl@7078 
13913              From: Spider Boardman <spider@web.zk3.dec.com>
13914              Date: Thu, 14 Sep 2000 19:06:36 -0400
13915              Message-Id: <200009142306.TAA20082@leggy.zk3.dec.com>
13916      Branch: perl
13917            ! sv.c toke.c
13918 ____________________________________________________________________________
13919 [  7089] By: jhi                                   on 2000/09/14  23:11:21
13920         Log: Small portability tweaks.
13921      Branch: perl
13922            ! ext/Encode/Encode.xs
13923 ____________________________________________________________________________
13924 [  7088] By: jhi                                   on 2000/09/14  22:57:23
13925         Log: Fake return to pacify picky compilers.
13926      Branch: perl
13927            ! ext/Encode/Encode.xs
13928 ____________________________________________________________________________
13929 [  7087] By: jhi                                   on 2000/09/14  22:53:37
13930         Log: Subject: [PATCH] utf8.c apidoc
13931              From: Simon Cozens <simon@cozens.net>
13932              Date: Thu, 14 Sep 2000 23:46:57 +0100
13933              Message-ID: <20000914234657.A13953@deep-dark-truthful-mirror.perlhacker.org>
13934      Branch: perl
13935            ! perlapi.c pod/perlapi.pod utf8.c
13936 ____________________________________________________________________________
13937 [  7086] By: jhi                                   on 2000/09/14  22:40:38
13938         Log: We don't need to count the high bit bytes, a boolean is enough. 
13939      Branch: perl
13940            ! sv.c
13941 ____________________________________________________________________________
13942 [  7085] By: jhi                                   on 2000/09/14  21:20:09
13943         Log: Replace #7084 with
13944              
13945              Subject: Re: perl@7078 
13946              From: Spider Boardman <spider@web.zk3.dec.com>
13947              Date: Thu, 14 Sep 2000 17:09:36 -0400
13948              Message-Id: <200009142109.RAA03425@leggy.zk3.dec.com>
13949      Branch: perl
13950            ! sv.c utf8.c
13951 ____________________________________________________________________________
13952 [  7084] By: jhi                                   on 2000/09/14  20:03:34
13953         Log: UTF8-encoded version of 256 is 0xc4 0x80; test that a char is
13954              convertable to bytes by checking it doesn't go above 0xc3
13955              
13956              Subject: Re: perl@7078
13957              From: Simon Cozens <simon@cozens.net>
13958              Date: Thu, 14 Sep 2000 20:59:19 +0100
13959              Message-ID: <20000914205919.A11098@deep-dark-truthful-mirror.perlhacker.org>
13960      Branch: perl
13961            ! utf8.c
13962 ____________________________________________________________________________
13963 [  7083] By: jhi                                   on 2000/09/14  19:38:47
13964         Log: Subject: Re: perl@7078
13965              From: Simon Cozens <simon@cozens.net>
13966              Date: Thu, 14 Sep 2000 20:13:09 +0100
13967              Message-ID: <20000914201309.A10640@deep-dark-truthful-mirror.perlhacker.org>
13968      Branch: perl
13969            ! t/op/bop.t
13970 ____________________________________________________________________________
13971 [  7082] By: jhi                                   on 2000/09/14  17:50:44
13972         Log: The one that got away.
13973      Branch: perl
13974            ! lib/File/Find.pm
13975 ____________________________________________________________________________
13976 [  7081] By: jhi                                   on 2000/09/14  17:45:35
13977         Log: Subject: [PATCH perl-5.7.0] continued -Wformat support
13978              From: Robin Barker <rmb1@cise.npl.co.uk>
13979              Message-Id: <200009141707.SAA13276@tempest.npl.co.uk>
13980              Date: Thu, 14 Sep 2000 18:07:38 +0100 (BST)
13981      Branch: perl
13982            ! Porting/pumpkin.pod embed.pl ext/ByteLoader/bytecode.h
13983            ! ext/Devel/Peek/Peek.xs ext/DynaLoader/dl_dlopen.xs
13984            ! ext/Storable/Storable.xs malloc.c perl.c perl.h pp.c proto.h
13985            ! regcomp.c toke.c universal.c
13986 ____________________________________________________________________________
13987 [  7080] By: jhi                                   on 2000/09/14  17:40:35
13988         Log: Problems picked up by AIX cc.
13989              
13990              Subject: Re: perl@7078 (patch included)
13991              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
13992              Date: Thu, 14 Sep 2000 18:53:30 +0200
13993              Message-Id: <20000914182304.7017.H.M.BRAND@hccnet.nl>
13994      Branch: perl
13995            ! ext/Encode/Encode.xs
13996 ____________________________________________________________________________
13997 [  7079] By: jhi                                   on 2000/09/14  17:38:27
13998         Log: Subject: File::Find 5.7.0 POD nits
13999              From: Rich Morin <rdm@cfcl.com>
14000              Date: Wed, 13 Sep 2000 22:03:58 -0700
14001              Message-Id: <v042208a0b5e60b3149be@w205.z205158144.scl-ca.dsl.cnc.net>
14002      Branch: perl
14003            ! lib/File/Find.pm
14004 ____________________________________________________________________________
14005 [  7078] By: jhi                                   on 2000/09/14  14:58:20
14006         Log: Update Changes.
14007      Branch: perl
14008            ! Changes patchlevel.h
14009 ____________________________________________________________________________
14010 [  7077] By: jhi                                   on 2000/09/14  14:55:54
14011         Log: Compilation warnings and an error.
14012      Branch: perl
14013            ! sv.c
14014 ____________________________________________________________________________
14015 [  7076] By: jhi                                   on 2000/09/14  14:42:56
14016         Log: Fix for a parsing bug, not for the original bug.
14017              
14018              Subject: Re: [ID 20000910.005] Another segfault with regexes. 
14019              From: Spider Boardman <spider@web.zk3.dec.com>
14020              Date: Wed, 13 Sep 2000 17:52:20 -0400
14021              Message-Id: <200009132152.RAA24029@leggy.zk3.dec.com>
14022      Branch: perl
14023            ! regcomp.c
14024 ____________________________________________________________________________
14025 [  7075] By: jhi                                   on 2000/09/14  14:40:40
14026         Log: Batch of UTF-8 patches from Simon Cozens.
14027      Branch: perl
14028            ! doop.c embed.h embed.pl ext/Encode/Encode.xs handy.h op.c
14029            ! pod/perlapi.pod pp.c pp_ctl.c proto.h regcomp.c regexec.c sv.c
14030            ! toke.c utf8.c
14031 ____________________________________________________________________________
14032 [  7074] By: jhi                                   on 2000/09/14  14:29:58
14033         Log: Subject: Re: Two advertising clauses need to be removed
14034              From: Russ Allbery <rra@stanford.edu>
14035              Date: 13 Sep 2000 18:50:26 -0700
14036              Message-ID: <ylwvgfvj19.fsf@windlord.stanford.edu>
14037      Branch: perl
14038            ! ext/SDBM_File/sdbm/dbm.c ext/SDBM_File/sdbm/dbm.h
14039 ____________________________________________________________________________
14040 [  7073] By: jhi                                   on 2000/09/14  14:28:20
14041         Log: Subject: [PATCH] de-wall t/README
14042              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
14043              Date: Wed, 13 Sep 2000 17:46:55 -0700
14044              Message-ID: <//Bw5gzkge/e092yn@efn.org>
14045      Branch: perl
14046            ! t/README
14047 ____________________________________________________________________________
14048 [  7072] By: jhi                                   on 2000/09/14  14:25:10
14049         Log: Hints optimization.
14050              
14051              Subject: Minor nit
14052              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
14053              Date: Wed, 13 Sep 2000 21:42:07 +0200
14054              Message-Id: <20000913214116.1D38.H.M.BRAND@hccnet.nl>
14055      Branch: perl
14056            ! hints/hpux.sh
14057 ____________________________________________________________________________
14058 [  7071] By: jhi                                   on 2000/09/14  14:23:30
14059         Log: Allow chop() and chomp() to be overridden.
14060              
14061              Subject: [PATCH] Re: [ID 20000911.006] I can override glob but not chop?
14062              From: "Casey R. Tweten" <crt@kiski.net>
14063              Date: Wed, 13 Sep 2000 12:41:31 -0400 (EDT)
14064              Message-ID: <Pine.OSF.4.21.0009131154120.6661-100000@home.kiski.net>
14065      Branch: perl
14066            ! toke.c
14067 ____________________________________________________________________________
14068 [  7070] By: jhi                                   on 2000/09/14  14:20:36
14069         Log: The return value of setlocale must be copied away.
14070              
14071              Subject: [ID 20000913.001] Heap corruption in Perl_init_i18nl10n
14072              From: Alan Burlison <Alan.Burlison@uk.sun.com>
14073              Date: Wed, 13 Sep 2000 16:27:37 +0100 
14074              Message-Id: <39BF9CE9.3D7FBBDD@uk.sun.com>
14075      Branch: perl
14076            ! util.c
14077 ____________________________________________________________________________
14078 [  7069] By: jhi                                   on 2000/09/14  14:16:27
14079         Log: Remove vestiges of tr//CU.
14080              
14081              Subject: [ID 20000912.009] perlunicode.pod still mentions tr///CU
14082              From: Nick Clark <nick@plum.flirble.org>
14083              Date: Tue, 12 Sep 2000 22:50:14 +0100
14084              Message-Id: <E13YxwU-000DDQ-00@plum.flirble.org>
14085              
14086              Subject: Re: [ID 20000912.009] perlunicode.pod still mentions tr///CU
14087              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
14088              Date: Tue, 12 Sep 2000 21:38:48 -0700
14089              Message-ID: <YTwv5gzkgmfL092yn@efn.org>
14090      Branch: perl
14091            ! op.h pod/perlunicode.pod
14092 ____________________________________________________________________________
14093 [  7068] By: jhi                                   on 2000/09/13  14:18:39
14094         Log: Add the Encode extension.  The code is still largely just skeleton.
14095      Branch: perl
14096            + ext/Encode/Encode.pm ext/Encode/Encode.xs
14097            + ext/Encode/Makefile.PL ext/Encode/Todo
14098            ! MANIFEST Todo-5.6
14099 ____________________________________________________________________________
14100 [  7067] By: jhi                                   on 2000/09/12  17:43:33
14101         Log: Allow for whitespace between "#" and "line" in cpp output.
14102              
14103              Subject: [PATCH] Re: Problems compiling bleadperl on Unicos 9
14104              From: Calle Dybedahl <calle@lysator.liu.se>
14105              Date: 12 Sep 2000 19:38:02 +0200 
14106              Message-ID: <867l8hy0hx.fsf_-_@tezcatlipoca.algonet.se>
14107      Branch: perl
14108            ! ext/Errno/ChangeLog ext/Errno/Errno_pm.PL
14109 ____________________________________________________________________________
14110 [  7066] By: gsar                                  on 2000/09/12  17:24:29
14111         Log: change#6327 didn't quite go all the way to enable USE_SOCKETS_AS_HANDLES
14112              initialization in all the threads on Windows
14113      Branch: perl
14114            ! win32/win32.c
14115 ____________________________________________________________________________
14116 [  7065] By: jhi                                   on 2000/09/12  15:11:31
14117         Log: Update Changes.
14118      Branch: perl
14119            ! Changes patchlevel.h
14120 ____________________________________________________________________________
14121 [  7064] By: jhi                                   on 2000/09/12  14:54:54
14122         Log: Retract #7062, the pod tests are not ready.
14123      Branch: perl
14124            ! t/TEST t/harness
14125 ____________________________________________________________________________
14126 [  7063] By: jhi                                   on 2000/09/12  14:25:41
14127         Log: The #7054 truncated Configure badly.
14128      Branch: metaconfig/U/perl
14129            ! End.U
14130      Branch: perl
14131            ! Configure config_h.SH
14132 ____________________________________________________________________________
14133 [  7062] By: jhi                                   on 2000/09/12  14:08:32
14134         Log: Subject: [ID 20000911.009] t/pod/*.t tests not run by harness or make test
14135              From: sthoenna@efn.org
14136              Date: Mon, 11 Sep 2000 17:56:47 -0700 (PDT)
14137              Message-Id: <200009120056.e8C0ulZ21635@garcia.efn.org>
14138      Branch: perl
14139            ! t/TEST t/harness
14140 ____________________________________________________________________________
14141 [  7061] By: jhi                                   on 2000/09/12  14:07:18
14142         Log: Subject: [ID 20000911.011] misplaced typemap in perlxs.pod
14143              From: sthoenna@efn.org
14144              Date: Mon, 11 Sep 2000 22:07:21 -0700 (PDT)
14145              Message-Id: <200009120507.e8C57LA02461@garcia.efn.org>
14146      Branch: perl
14147            ! pod/perlxs.pod
14148 ____________________________________________________________________________
14149 [  7060] By: jhi                                   on 2000/09/12  14:06:08
14150         Log: Break up the myconfig lines a bit.
14151              
14152              Subject: perlbug/perl -V output format
14153              From: sthoenna@efn.org
14154              Date: Tue, 12 Sep 2000 00:04:11 -0700 (PDT)
14155              Message-Id: <200009120704.e8C74BX10562@garcia.efn.org>
14156      Branch: perl
14157            ! myconfig.SH
14158 ____________________________________________________________________________
14159 [  7059] By: jhi                                   on 2000/09/12  14:05:04
14160         Log: Test for the #7049.
14161              
14162              Subject: Re: [PATCH] Re: [ID 20000910.001] Not OK: perl v5.7.0 +DEVEL7044 on    i686-linux 2.2.16-raid (UNINSTALLED)
14163              From: andreas.koenig@anima.de (Andreas J. Koenig)
14164              Date: 12 Sep 2000 06:42:01 +0200
14165              Message-ID: <m3k8cigr1i.fsf@ak-71.mind.de>
14166      Branch: perl
14167            ! t/op/my.t
14168 ____________________________________________________________________________
14169 [  7058] By: jhi                                   on 2000/09/12  14:03:05
14170         Log: Subject: [patch: perl@7045] vms updates
14171              From: Peter Prymmer <pvhp@forte.com>
14172              Date: Mon, 11 Sep 2000 18:41:48 -0700 (PDT)
14173              Message-ID: <Pine.OSF.4.10.10009111840030.339348-100000@aspara.forte.com>
14174      Branch: perl
14175            ! configure.com lib/ExtUtils/MM_VMS.pm vms/descrip_mms.template
14176 ____________________________________________________________________________
14177 [  7057] By: jhi                                   on 2000/09/12  14:00:51
14178         Log: Subject: [ID 20000911.008] Not OK: perl v5.7.0 +DEVEL7048 on os2-64int-ld 2.30 (UNINSTALLED)
14179              From: sthoenna@efn.org
14180              Date: Mon, 11 Sep 2000 16:28:13 -0700 (PDT)
14181              Message-Id: <200009112328.e8BNSD616812@garcia.efn.org>
14182      Branch: perl
14183            ! t/op/64bitint.t
14184 ____________________________________________________________________________
14185 [  7056] By: jhi                                   on 2000/09/12  13:58:14
14186         Log: Subject: [patch] perlfunc.pod -- POSIX::sigpause should be POSIX::pause
14187              From: Jeff Pinyan <jeffp@crusoe.net>
14188              Date: Sun, 10 Sep 2000 12:01:21 -0400 (EDT)
14189              Message-ID: <Pine.GSO.4.21.0009101200190.12441-100000@crusoe.crusoe.net>
14190      Branch: perl
14191            ! pod/perlfunc.pod
14192 ____________________________________________________________________________
14193 [  7055] By: jhi                                   on 2000/09/12  13:56:32
14194         Log: Do in VMS as the #7054 does.
14195      Branch: perl
14196            ! configure.com
14197 ____________________________________________________________________________
14198 [  7054] By: jhi                                   on 2000/09/12  13:50:31
14199         Log: Subject: RE: [Patch 5.7.0] Removing -ldb from the core build
14200              From: "Paul Marquess" <paul_marquess@yahoo.co.uk>
14201              Date: Mon, 11 Sep 2000 08:33:09 +0100
14202              Message-ID: <000e01c01bc2$88b2d2c0$0e14140a@bfs.phone.com>
14203      Branch: metaconfig/U/perl
14204            ! End.U
14205      Branch: perl
14206            ! Configure Makefile.SH config_h.SH lib/ExtUtils/Embed.pm
14207            ! lib/ExtUtils/Liblist.pm lib/ExtUtils/MM_Unix.pm
14208 ____________________________________________________________________________
14209 [  7053] By: jhi                                   on 2000/09/12  13:29:19
14210         Log: Subject:  [PATCH] Perl 5.6.0, 5.7.0 ... vms/test.com to eliminate spurious NL's in test output
14211              From: lane@DUPHY4.Physics.Drexel.Edu (Charles Lane)
14212              Date:     Tue, 12 Sep 2000 08:35:59 EDT
14213              Message-Id: <000912081130.13ca9@DUPHY4.Physics.Drexel.Edu>
14214      Branch: perl
14215            ! vms/test.com
14216 ____________________________________________________________________________
14217 [  7052] By: jhi                                   on 2000/09/11  23:01:50
14218         Log: Document the SvUTF8*().
14219      Branch: perl
14220            ! pod/perlapi.pod sv.h
14221 ____________________________________________________________________________
14222 [  7051] By: gsar                                  on 2000/09/11  14:46:30
14223         Log: C<@a = @b = split(...)> optimization coredumps under ithreads
14224              (missed a spot when fixing up op_pmreplroot hack for ithreads)
14225      Branch: perl
14226            ! op.c t/op/split.t
14227 ____________________________________________________________________________
14228 [  7050] By: nick                                  on 2000/09/11  10:03:51
14229         Log: Modern Borland C now seems to have anon unions for info.wProcessorArchitecture
14230              
14231              Subject: borland C++ win32.c tweak
14232              From: Vadim Konovalov <vkonovalov@lucent.com>
14233              Message-ID: <402099F49BEED211999700805FC7359F6FB379@ru0028exch01.spb.lucent.com>
14234              Date: Mon, 11 Sep 2000 11:22:33 +0400
14235      Branch: perl
14236            ! win32/win32.c
14237 ____________________________________________________________________________
14238 [  7049] By: nick                                  on 2000/09/11  09:57:33
14239         Log: Point fix for s/// on foreach (keys %xxx).
14240      Branch: perl
14241            ! pp_hot.c
14242 ____________________________________________________________________________
14243 [  7048] By: jhi                                   on 2000/09/10  23:37:09
14244         Log: Silence t/pod/*.t about alternate quote-mappings now implemented
14245              by Pod::Text, from Brad Appleton.
14246      Branch: perl
14247            ! t/pod/testp2pt.pl
14248 ____________________________________________________________________________
14249 [  7047] By: jhi                                   on 2000/09/10  14:32:53
14250         Log: Upgrade to podlators-1.03 (Pod::Man 1.07 and Pod::Text 2.05),
14251              by Russ Allbery.
14252      Branch: perl
14253            ! lib/Pod/Man.pm lib/Pod/Text.pm pod/pod2man.PL pod/pod2text.PL
14254 ____________________________________________________________________________
14255 [  7046] By: jhi                                   on 2000/09/10  14:15:08
14256         Log: Upgrade to CPAN 1.57_65, from Andreas König.
14257      Branch: perl
14258            ! lib/CPAN.pm lib/CPAN/FirstTime.pm
14259 ____________________________________________________________________________
14260 [  7045] By: jhi                                   on 2000/09/08  21:36:32
14261         Log: Update Changes.
14262      Branch: perl
14263            ! Changes patchlevel.h
14264 ____________________________________________________________________________
14265 [  7044] By: jhi                                   on 2000/09/08  21:29:56
14266         Log: Subject: [PATCH: 5.7.0] proper setting for isnan for DECC 5.3
14267              From: Peter Prymmer <pvhp@forte.com>
14268              Date: Fri, 8 Sep 2000 13:33:27 -0700 (PDT)
14269              Message-ID: <Pine.OSF.4.10.10009081331420.132461-100000@aspara.forte.com>
14270      Branch: perl
14271            ! configure.com
14272 ____________________________________________________________________________
14273 [  7043] By: jhi                                   on 2000/09/08  21:27:50
14274         Log: Subject: [PATCH (or RFC): 5.7.0] make the ran_tests intermediate file 8.3 friendly
14275              From: Peter Prymmer <pvhp@forte.com>
14276              Date: Fri, 8 Sep 2000 11:02:19 -0700 (PDT)
14277              Message-ID: <Pine.OSF.4.10.10009081054340.132461-100000@aspara.forte.com>
14278      Branch: perl
14279            ! Makefile.SH installperl
14280 ____________________________________________________________________________
14281 [  7042] By: jhi                                   on 2000/09/08  21:23:21
14282         Log: Continue #7041.
14283      Branch: perl
14284            ! cygwin/Makefile.SHs os2/Makefile.SHs
14285 ____________________________________________________________________________
14286 [  7041] By: jhi                                   on 2000/09/08  21:18:10
14287         Log: Do away with memory models cruft.  Sorry, PDP users.
14288      Branch: metaconfig
14289            ! U/modified/cc.U U/modified/libpth.U
14290      Branch: perl
14291            ! Configure Makefile.SH Porting/Glossary Porting/config.sh
14292            ! Porting/config_H cflags.SH config_h.SH configure.com
14293            ! epoc/config.sh hints/mint.sh hints/titanos.sh hints/vmesa.sh
14294            ! lib/ExtUtils/MM_Unix.pm win32/config.bc win32/config.gc
14295            ! win32/config.vc x2p/Makefile.SH x2p/cflags.SH
14296 ____________________________________________________________________________
14297 [  7040] By: jhi                                   on 2000/09/08  14:34:18
14298         Log: Major rewrite of s2p.  And I mean really major, it is
14299              an implementation of sed in perl.  If called as s2p it
14300              will function as s2p.  Note: needs non-UNIXifying.
14301              
14302              Subject: s2p
14303              From: Wolfgang Laun <Wolfgang.Laun@alcatel.at>
14304              Date: Mon, 28 Aug 2000 14:05:12 +0200
14305              Message-ID: <39AA5578.2102E2AA@alcatel.at>
14306      Branch: perl
14307            ! x2p/s2p.PL
14308 ____________________________________________________________________________
14309 [  7039] By: jhi                                   on 2000/09/08  14:19:49
14310         Log: Re-allow vec() for characters > 255.
14311              
14312              Subject: [PATCH] Re: [ID 20000907.005] Not OK: perl v5.7.0 +devel-7030 on alpha-dec_osf-perlio 4.0f (UNINSTALLED) 
14313              From: Spider Boardman <spider@web.zk3.dec.com>
14314              Date: Fri, 08 Sep 2000 02:21:02 -0400
14315              Message-Id: <200009080621.CAA03409@leggy.zk3.dec.com>
14316      Branch: perl
14317            ! doop.c pod/perldelta.pod pod/perldiag.pod pod/perlfunc.pod
14318            ! t/op/vec.t
14319 ____________________________________________________________________________
14320 [  7038] By: jhi                                   on 2000/09/08  14:14:18
14321         Log: Subject: [PATCH lib/Benchmark.pm]
14322              From: <abigail@foad.org>
14323              Date: Thu, 7 Sep 2000 15:03:20 -0400
14324              Message-ID: <20000907190320.888.qmail@foad.org>
14325      Branch: perl
14326            ! lib/Benchmark.pm
14327 ____________________________________________________________________________
14328 [  7037] By: jhi                                   on 2000/09/08  14:11:06
14329         Log: Optimizing hash keys into shared strings doesn't work with ithreads.
14330              
14331              Subject: Re: [ID 20000907.008] Not OK: v5.7.0 on alpha-dec_osf-thread-multi    
14332              From: Spider Boardman <spider@web.zk3.dec.com>
14333              Date: Fri, 08 Sep 2000 01:30:27 -0400
14334              Message-Id: <200009080530.BAA10498@leggy.zk3.dec.com>
14335      Branch: perl
14336            ! op.c
14337 ____________________________________________________________________________
14338 [  7036] By: jhi                                   on 2000/09/08  14:08:58
14339         Log: Subject: [ID 20000908.002] perlipc documentation bug.
14340              From: Major Sébastien <sebastien.major@crdp.ac-caen.fr>
14341              Date: Fri, 08 Sep 2000 12:38:32 +0200
14342              Message-Id: <39B8C1A8.3DC36E6D@crdp.ac-caen.fr>
14343      Branch: perl
14344            ! pod/perlipc.pod
14345 ____________________________________________________________________________
14346 [  7035] By: jhi                                   on 2000/09/08  14:03:12
14347         Log: Subject: Re: [ID 20000907.007] Not OK: perl v5.7.0 +devel-7030 on alpha-dec_osf 4.0f
14348              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
14349              Date: Fri, 08 Sep 2000 11:47:34 +0200
14350              Message-Id: <20000908111426.FBDB.H.M.BRAND@hccnet.nl>
14351      Branch: perl
14352            ! hints/dec_osf.sh
14353 ____________________________________________________________________________
14354 [  7034] By: jhi                                   on 2000/09/08  13:59:35
14355         Log: Subject: Re: [ID 20000906.004] segfault with bad perl statement
14356              From: Simon Cozens <simon@cozens.net>
14357              Date: Thu, 7 Sep 2000 20:40:38 +0100
14358              Message-ID: <20000907204038.A15650@deep-dark-truthful-mirror.perlhacker.org>
14359      Branch: perl
14360            ! pp_hot.c
14361 ____________________________________________________________________________
14362 [  7033] By: jhi                                   on 2000/09/08  04:03:03
14363         Log: Subject: [ID 20000904.008] Tiny fix for perldiag
14364              From: "Larry W. Virden" <lvirden@cas.org>
14365              Date: Mon, 4 Sep 2000 18:45:44 -0400 (EDT)
14366              Message-Id: <200009042245.SAA22916@lwv26awu.cas.org>
14367      Branch: perl
14368            ! pod/perldiag.pod
14369 ____________________________________________________________________________
14370 [  7032] By: jhi                                   on 2000/09/07  22:18:30
14371         Log: Subject: [PATCH 5.7.0] perl5db.pl [Was: Re: Debugger question]
14372              From: Peter Scott <Peter.J.Scott@jpl.nasa.gov>
14373              Date: Mon, 04 Sep 2000 13:16:38 -0700
14374              Message-Id: <4.3.2.7.2.20000904130939.00adae90@mail2a.jpl.nasa.gov>
14375      Branch: perl
14376            ! lib/perl5db.pl
14377 ____________________________________________________________________________
14378 [  7031] By: jhi                                   on 2000/09/07  22:02:29
14379         Log: Fix the ccversion detection for 5.1 and beyond.
14380              
14381              Subject: [ID 20000907.007] Not OK: perl v5.7.0 +devel-7030 on alpha-dec_osf 4.0f
14382              From: Spider Boardman <spider@leggy.zk3.dec.com>
14383              Date: Thu, 7 Sep 2000 17:54:27 -0400
14384              Message-Id: <200009072154.RAA14747@leggy.zk3.dec.com>
14385      Branch: perl
14386            ! hints/dec_osf.sh
14387 ____________________________________________________________________________
14388 [  7030] By: jhi                                   on 2000/09/07  19:12:28
14389         Log: Fix for
14390              
14391              Subject: [ID 20000903.001] \w in utf8-strings
14392              From: Marc Lehmann <pcg@goof.com>
14393              Date: Sun, 03 Sep 2000 09:44:29 +0200
14394              Message-Id: <E13VUS5-0000cv-00.pgcc-forever-2000-09-03-09-44-29@fuji>
14395              
14396              and various related nits.
14397      Branch: perl
14398            ! lib/unicode/mktables.PL regcomp.h regexec.c utf8.c
14399 ____________________________________________________________________________
14400 [  7029] By: jhi                                   on 2000/09/07  18:49:09
14401         Log: Fix the URL, but the server is still missing in action.
14402              
14403              Subject: [ID 20000905.002] perlfaq1.pod URL error
14404              From: "Larry W. Virden" <lvirden@cas.org>
14405              Date: Tue, 5 Sep 2000 08:24:40 -0400 (EDT)
14406              Message-Id: <200009051224.IAA11226@lwv26awu.cas.org>
14407      Branch: perl
14408            ! pod/perlfaq1.pod
14409 ____________________________________________________________________________
14410 [  7028] By: jhi                                   on 2000/09/07  18:47:13
14411         Log: Subject: Re: [ID 20000905.001] Assertion failed: file "toke.c", line 202 
14412              From: Hugo <hv@crypt.compulink.co.uk>
14413              Date: Tue, 05 Sep 2000 14:13:37 +0100
14414              Message-Id: <200009051313.OAA24507@crypt.compulink.co.uk>
14415      Branch: perl
14416            ! toke.c
14417 ____________________________________________________________________________
14418 [  7027] By: jhi                                   on 2000/09/07  18:45:35
14419         Log: Subject: [PATCH@7014] \G in non-/g is well-defined now ... right?
14420              From: Daniel Chetlin <daniel@chetlin.com>
14421              Date: Tue, 5 Sep 2000 04:57:07 -0700
14422              Message-ID: <20000905045707.A8620@ilmd.chetlin.org>
14423      Branch: perl
14424            ! pod/perlfaq6.pod pod/perlop.pod
14425 ____________________________________________________________________________
14426 [  7026] By: jhi                                   on 2000/09/07  18:44:01
14427         Log: Document the new ref() semantics.
14428              
14429              Subject: Re: Undocumented(?) change to "ref" semantics in 5.7.0
14430              From: Gisle Aas <gisle@ActiveState.com>
14431              Date: 05 Sep 2000 08:10:30 +0200
14432              Message-ID: <m3vgwb8j3d.fsf@eik.g.aas.no>
14433      Branch: perl
14434            ! pod/perldelta.pod
14435 ____________________________________________________________________________
14436 [  7025] By: jhi                                   on 2000/09/07  18:42:27
14437         Log: Make Data::Dumper (non-XS) to work with changed semantics of ref().
14438              
14439              Subject: Re: Undocumented(?) change to "ref" semantics in 5.7.0
14440              From: Gisle Aas <gisle@ActiveState.com>
14441              Date: 05 Sep 2000 08:11:40 +0200
14442              Message-ID: <m3snrf8j1f.fsf@eik.g.aas.no>
14443      Branch: perl
14444            ! ext/Data/Dumper/Dumper.pm t/lib/dumper.t
14445 ____________________________________________________________________________
14446 [  7024] By: jhi                                   on 2000/09/07  18:39:32
14447         Log: Subject: [PATCH] Modernize Opcode.pm documentation
14448              From: Gisle Aas <gisle@ActiveState.com>
14449              Date: 4 Sep 2000 00:18:55 -0000
14450              Message-ID: <20000904001855.26128.qmail@eik.g.aas.no>
14451      Branch: perl
14452            ! ext/Opcode/Opcode.pm
14453 ____________________________________________________________________________
14454 [  7023] By: jhi                                   on 2000/09/07  18:37:42
14455         Log: Subject: [PATCH] Tied filehandle documentation
14456              From: Gisle Aas <gisle@ActiveState.com>
14457              Date: 4 Sep 2000 00:14:40 -0000
14458              Message-ID: <20000904001440.26084.qmail@eik.g.aas.no>
14459      Branch: perl
14460            ! pod/perlfunc.pod pod/perltie.pod
14461 ____________________________________________________________________________
14462 [  7022] By: jhi                                   on 2000/09/07  18:35:37
14463         Log: Subject: [PATCH] Tie::StdHandle did not know about 3-arg open
14464              From: Gisle Aas <gisle@ActiveState.com>
14465              Date: 4 Sep 2000 00:04:22 -0000
14466              Message-ID: <20000904000422.26002.qmail@eik.g.aas.no>
14467      Branch: perl
14468            ! lib/Tie/Handle.pm t/lib/tie-stdhandle.t
14469 ____________________________________________________________________________
14470 [  7021] By: jhi                                   on 2000/09/07  18:33:22
14471         Log: Subject: small apidoc fix
14472              From: Marc Lehmann <pcg@goof.com>
14473              Date: Sun, 3 Sep 2000 05:12:06 +0200
14474              Message-ID: <20000903051206.A5909@cerebro.laendle>
14475      Branch: perl
14476            ! pod/perlapi.pod utf8.c
14477 ____________________________________________________________________________
14478 [  7020] By: jhi                                   on 2000/09/07  16:14:57
14479         Log: Tiny perldelta nits.
14480      Branch: perl
14481            ! pod/perldelta.pod
14482 ____________________________________________________________________________
14483 [  7019] By: jhi                                   on 2000/09/07  16:04:20
14484         Log: Guard against bad string->int conversion for quads.
14485      Branch: perl
14486            ! t/op/64bitint.t
14487 ____________________________________________________________________________
14488 [  7018] By: jhi                                   on 2000/09/06  17:07:03
14489         Log: Update Unicode todo list.
14490      Branch: perl
14491            ! Todo-5.6
14492 ____________________________________________________________________________
14493 [  7017] By: jhi                                   on 2000/09/05  21:16:01
14494         Log: Document the SvIOK_.*UV().
14495      Branch: perl
14496            ! pod/perlapi.pod sv.h
14497 ____________________________________________________________________________
14498 [  7016] By: nick                                  on 2000/09/03  21:54:46
14499         Log: Hash lookup of constant strings optimization:
14500              Introduce SvREADONLY && SvFAKE to flag an SV which has SvPVX pointing
14501              to string table (as per sharepvn). Add newSV_pvn_share to create such
14502              a thing. Make hv.c compare addresses of strings and skip string compare
14503              if equal. Make method_named and helem ops use these shared-string SVs
14504              when arg is constant. Make keys op return shared-string SVs (less clearly
14505              a win).
14506      Branch: perl
14507            ! embed.h embed.pl embedvar.h global.sym hv.c objXSUB.h op.c
14508            ! opcode.h opnames.h perlapi.c perlapi.h pod/perlapi.pod
14509            ! pod/perlintern.pod pp_hot.c proto.h sv.c
14510 ____________________________________________________________________________
14511 [  7015] By: jhi                                   on 2000/09/02  17:48:59
14512         Log: This is 5.7.0.
14513      Branch: perl
14514            ! Changes
14515 ____________________________________________________________________________
14516 [  7014] By: jhi                                   on 2000/09/02  17:35:45
14517         Log: Changes and patchlevel tweaks.
14518      Branch: perl
14519            ! Changes patchlevel.h
14520 ____________________________________________________________________________
14521 [  7013] By: jhi                                   on 2000/09/02  17:30:50
14522         Log: Update Changes.
14523      Branch: perl
14524            ! Changes patchlevel.h
14525 ____________________________________________________________________________
14526 [  7012] By: nick                                  on 2000/09/02  17:25:20
14527         Log: More %{} and other deref special casing - do not pass to 'nomethod'.
14528      Branch: perl
14529            ! gv.c lib/overload.pm
14530 ____________________________________________________________________________
14531 [  7011] By: jhi                                   on 2000/09/02  17:16:25
14532         Log: Update perlhist.
14533      Branch: perl
14534            ! pod/perlhist.pod
14535 ____________________________________________________________________________
14536 [  7010] By: jhi                                   on 2000/09/02  17:01:35
14537         Log: perldelta nits.
14538      Branch: perl
14539            ! pod/perldelta.pod
14540 ____________________________________________________________________________
14541 [  7009] By: nick                                  on 2000/09/02  16:48:35
14542         Log: If overloaded %{} etc. return the object do not loop.
14543              Thus  sub deref { $_[0] } functions if object is wanted type.
14544      Branch: perl
14545            ! pp.h
14546 ____________________________________________________________________________
14547 [  7008] By: jhi                                   on 2000/09/02  16:26:11
14548         Log: Retab MANIFEST.
14549      Branch: perl
14550            ! ext/Storable/MANIFEST
14551 ____________________________________________________________________________
14552 [  7007] By: jhi                                   on 2000/09/02  16:23:02
14553         Log: Make certain cc is set before trying to run it.
14554      Branch: perl
14555            ! hints/hpux.sh hints/irix_6.sh hints/solaris_2.sh
14556 ____________________________________________________________________________
14557 [  7006] By: jhi                                   on 2000/09/02  15:45:41
14558         Log: Unicode notes.
14559      Branch: perl
14560            ! pod/perldelta.pod
14561 ____________________________________________________________________________
14562 [  7005] By: jhi                                   on 2000/09/02  15:42:11
14563         Log: Various Configure nits by Philip Newton,
14564              plus the ebcdic one by me.
14565      Branch: metaconfig
14566            + U/modified/pager.U
14567            ! U/ebcdic/ebcdic.U U/modified/Finish.U U/modified/Guess.U
14568      Branch: metaconfig/U/perl
14569            ! Devel.U quadfio.U
14570      Branch: perl
14571            ! Configure config_h.SH
14572 ____________________________________________________________________________
14573 [  7004] By: jhi                                   on 2000/09/02  15:06:14
14574         Log: Apparently avoiding the swapping is too costly.
14575              
14576              From: "Ben Tilly" <ben_tilly@hotmail.com>
14577              Subject: Re: the door is closed.
14578              Date: Fri, 01 Sep 2000 20:23:16 EDT
14579              Message-ID: <LAW2-F2963JkUwWpSWe00000904@hotmail.com>
14580      Branch: perl
14581            ! pod/perlfaq4.pod
14582 ____________________________________________________________________________
14583 [  7003] By: nick                                  on 2000/09/02  12:26:04
14584         Log: Undo part of change 6489 which looks like a bulk edit which
14585              changed _all_ gv_efullname3() calls to gv_efullname4() calls.
14586              The supressing of main:: on return from select() is undesirable.
14587      Branch: perl
14588            ! pp_sys.c
14589 ____________________________________________________________________________
14590 [  7002] By: jhi                                   on 2000/09/01  23:08:54
14591         Log: Update Changes.
14592      Branch: perl
14593            ! Changes patchlevel.h
14594 ____________________________________________________________________________
14595 [  7001] By: jhi                                   on 2000/09/01  23:00:13
14596         Log: Subject: [PATCH: 6996] minimal removal of 8 bit chrs from perlebcdic.pod
14597              From: Peter Prymmer <pvhp@forte.com>
14598              Date: Fri, 1 Sep 2000 15:50:57 -0700 (PDT)
14599              Message-ID: <Pine.OSF.4.10.10009011542550.147696-100000@aspara.forte.com>
14600              
14601              plus rework the http: spots as suggested by Tom Christiansen,
14602              plus regen perltoc.
14603      Branch: perl
14604            ! README.os2 pod/perl56delta.pod pod/perlebcdic.pod
14605            ! pod/perlguts.pod pod/perltoc.pod pod/perlxs.pod
14606 ____________________________________________________________________________
14607 [  7000] By: jhi                                   on 2000/09/01  22:36:01
14608         Log: Only the first line, thank you very much.
14609      Branch: perl
14610            ! hints/solaris_2.sh
14611 ____________________________________________________________________________
14612 [  6999] By: gsar                                  on 2000/09/01  22:16:40
14613         Log: change#6791 accidentally clobbered change#6710, put it back
14614      Branch: perl
14615            ! win32/win32.c
14616 ____________________________________________________________________________
14617 [  6998] By: jhi                                   on 2000/09/01  22:14:16
14618         Log: Mention the HP-UX LP64 freak failure.
14619      Branch: perl
14620            ! pod/perldelta.pod
14621 ____________________________________________________________________________
14622 [  6997] By: jhi                                   on 2000/09/01  21:48:32
14623         Log: Detypo.
14624      Branch: perl
14625            ! hints/hpux.sh
14626 ____________________________________________________________________________
14627 [  6996] By: jhi                                   on 2000/09/01  21:27:10
14628         Log: Update Changes.
14629      Branch: perl
14630            ! Changes patchlevel.h
14631 ____________________________________________________________________________
14632 [  6995] By: jhi                                   on 2000/09/01  21:14:24
14633         Log: Mi splgn s gnin.g
14634      Branch: perl
14635            ! pp_ctl.c
14636 ____________________________________________________________________________
14637 [  6994] By: jhi                                   on 2000/09/01  21:09:54
14638         Log: Subject: http:// in L<>
14639              From: Nicholas Clark <nick@ccl4.org>
14640              Date: Fri, 1 Sep 2000 22:03:21 +0100
14641              Message-ID: <20000901220321.B72074@plum.flirble.org>
14642      Branch: perl
14643            ! README.os2 pod/perl56delta.pod pod/perlxs.pod
14644 ____________________________________________________________________________
14645 [  6993] By: jhi                                   on 2000/09/01  21:06:54
14646         Log: Update to Storable 1.0, from Raphael Manfredi.
14647      Branch: perl
14648            ! ext/Storable/ChangeLog ext/Storable/MANIFEST
14649            ! ext/Storable/Makefile.PL ext/Storable/README
14650            ! ext/Storable/Storable.pm ext/Storable/Storable.xs
14651            ! t/lib/st-06compat.t t/lib/st-blessed.t t/lib/st-canonical.t
14652            ! t/lib/st-dclone.t t/lib/st-dump.pl t/lib/st-forgive.t
14653            ! t/lib/st-freeze.t t/lib/st-overload.t t/lib/st-recurse.t
14654            ! t/lib/st-retrieve.t t/lib/st-store.t t/lib/st-tied.t
14655            ! t/lib/st-tiedhook.t t/lib/st-tieditems.t
14656 ____________________________________________________________________________
14657 [  6992] By: jhi                                   on 2000/09/01  20:43:05
14658         Log: Mention known sfio+linux buglet.
14659      Branch: perl
14660            ! pod/perldelta.pod
14661 ____________________________________________________________________________
14662 [  6991] By: jhi                                   on 2000/09/01  20:40:11
14663         Log: Subject: Re: [PATCH perl@6962] 2 more vms.c fix-ups and status
14664              From: Peter Prymmer <pvhp@forte.com>
14665              Date: Fri, 1 Sep 2000 12:03:38 -0700 (PDT)
14666              Message-ID: <Pine.OSF.4.10.10009011140240.147696-100000@aspara.forte.com>
14667      Branch: perl
14668            ! vms/vms.c
14669 ____________________________________________________________________________
14670 [  6990] By: jhi                                   on 2000/09/01  20:25:26
14671         Log: Retract #6986.
14672      Branch: perl
14673            ! hints/solaris_2.sh
14674 ____________________________________________________________________________
14675 [  6989] By: jhi                                   on 2000/09/01  20:23:00
14676         Log: Mergesort is back.
14677      Branch: perl
14678            ! pod/perldelta.pod pod/perltoc.pod pp_ctl.c
14679 ____________________________________________________________________________
14680 [  6988] By: jhi                                   on 2000/09/01  19:37:40
14681         Log: Subject: [PATCH] Fix vec() / utf8   (was Re: bitvec ops still broken with utf8 -- or not?)
14682              From: Mike Guy <mjtg@cam.ac.uk>
14683              Date: Fri, 01 Sep 2000 17:43:33 +0100
14684              Message-Id: <E13Utuf-0004Bw-00@draco.cus.cam.ac.uk>
14685      Branch: perl
14686            ! doop.c embed.pl perlapi.c pod/perlapi.pod pod/perldiag.pod
14687            ! pod/perlfunc.pod proto.h t/op/vec.t utf8.c
14688 ____________________________________________________________________________
14689 [  6987] By: jhi                                   on 2000/09/01  19:17:10
14690         Log: Regen perltoc.
14691      Branch: perl
14692            ! pod/perltoc.pod
14693 ____________________________________________________________________________
14694 [  6986] By: jhi                                   on 2000/09/01  18:51:10
14695         Log: Subject: Re: Solaris x86 has no SPARC libraries!
14696              From: Lupe Christoph <lupe@lupe-christoph.de>
14697              Date: Fri, 1 Sep 2000 20:41:20 +0200
14698              Message-ID: <20000901204120.P13547@alanya.lupe-christoph.de>
14699      Branch: perl
14700            ! hints/solaris_2.sh
14701 ____________________________________________________________________________
14702 [  6985] By: jhi                                   on 2000/09/01  18:28:10
14703         Log: Update Changes.
14704      Branch: perl
14705            ! Changes patchlevel.h
14706 ____________________________________________________________________________
14707 [  6984] By: jhi                                   on 2000/09/01  18:26:53
14708         Log: Feature ordering tweak.
14709      Branch: perl
14710            ! myconfig.SH
14711 ____________________________________________________________________________
14712 [  6983] By: jhi                                   on 2000/09/01  18:19:50
14713         Log: Subject: Re: [PATCH lib/overload.pm] Sanaty checking of arguments to overload::constant
14714              From: <abigail@foad.org>
14715              Date: Fri, 1 Sep 2000 13:07:32 -0400
14716              Message-ID: <20000901170732.18249.qmail@foad.org>
14717      Branch: perl
14718            ! t/pragma/overload.t
14719 ____________________________________________________________________________
14720 [  6982] By: jhi                                   on 2000/09/01  18:17:54
14721         Log: Rename the PRIElfbl, PRIX64, etc, to be PRIEUfldbl, PRIXU64,
14722              so that case-ignoring systems like DCL can tell them from
14723              PRIefldbl and PRIx64.  Apply Merijn's ccversion patches.
14724      Branch: metaconfig/U/perl
14725            ! Checkcc.U gccvers.U longdblfio.U perlxvf.U quadfio.U
14726      Branch: perl
14727            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
14728            ! config_h.SH configure.com epoc/config.sh hints/aix.sh
14729            ! hints/dec_osf.sh hints/hpux.sh hints/irix_6.sh
14730            ! hints/solaris_2.sh myconfig.SH uconfig.h uconfig.sh
14731            ! vos/config.def vos/config.h vos/config_h.SH_orig
14732            ! win32/config.bc win32/config.gc win32/config.vc
14733 ____________________________________________________________________________
14734 [  6981] By: nick                                  on 2000/09/01  17:21:57
14735         Log: Document UNTIE. Also tweak implementation to suppress the 'inner references'
14736              warning when UNTIE exists and instead pass the cound of extra references to
14737              the UNTIE method.
14738      Branch: perl
14739            ! pod/perltie.pod pp_sys.c
14740 ____________________________________________________________________________
14741 [  6980] By: jhi                                   on 2000/09/01  16:54:44
14742         Log: Subject: [PATCH: 6948] add SCNfldbl to configure.com
14743              From: Peter Prymmer <pvhp@forte.com>
14744              Date: Thu, 31 Aug 2000 18:47:18 -0700 (PDT)
14745              Message-ID: <Pine.OSF.4.10.10008311811060.91659-100000@aspara.forte.com>
14746      Branch: perl
14747            ! configure.com
14748 ____________________________________________________________________________
14749 [  6979] By: jhi                                   on 2000/09/01  16:06:20
14750         Log: Subject: [ID 20000901.017] [PATCH] Basic test failure in an untidy world       
14751              From: Mike Guy <mjtg@cam.ac.uk> 
14752              Date: Fri, 01 Sep 2000 16:49:27 +0100
14753              Message-Id: <E13Ut4J-0002sd-00@draco.cus.cam.ac.uk>  
14754      Branch: perl
14755            ! t/base/rs.t
14756 ____________________________________________________________________________
14757 [  6978] By: jhi                                   on 2000/09/01  16:00:42
14758         Log: Update to PodParser 1.18, from Brad Appleton.
14759      Branch: perl
14760            ! lib/Pod/Checker.pm t/pod/find.t
14761 ____________________________________________________________________________
14762 [  6977] By: jhi                                   on 2000/09/01  14:48:58
14763         Log: Subject: Nit in Configure (bleadperl@6961)
14764              From: Lupe Christoph <lupe@lupe-christoph.de>
14765              Date: Fri, 1 Sep 2000 16:34:29 +0200
14766              Message-ID: <20000901163429.K13547@alanya.lupe-christoph.de>
14767      Branch: metaconfig
14768            ! U/compline/ccflags.U
14769      Branch: perl
14770            ! Configure config_h.SH
14771 ____________________________________________________________________________
14772 [  6976] By: jhi                                   on 2000/09/01  14:39:52
14773         Log: Update Changes.
14774      Branch: perl
14775            ! Changes patchlevel.h
14776 ____________________________________________________________________________
14777 [  6975] By: jhi                                   on 2000/09/01  14:37:36
14778         Log: microperl config update.
14779      Branch: perl
14780            ! uconfig.h uconfig.sh
14781 ____________________________________________________________________________
14782 [  6974] By: jhi                                   on 2000/09/01  14:36:53
14783         Log: Document known deficiencies.
14784      Branch: perl
14785            ! pod/perldelta.pod
14786 ____________________________________________________________________________
14787 [  6973] By: jhi                                   on 2000/09/01  14:10:20
14788         Log: Mention warnings fixes and updates.
14789      Branch: perl
14790            ! pod/perldelta.pod
14791 ____________________________________________________________________________
14792 [  6972] By: jhi                                   on 2000/09/01  14:01:52
14793         Log: Drop unused argument.
14794              
14795              Subject: Re: [ID 20000831.034] overload::constant and number of arguments. 
14796              From: Spider Boardman <spider@web.zk3.dec.com>
14797              Date: Thu, 31 Aug 2000 16:10:15 -0400
14798              Message-Id: <200008312010.QAA20392@leggy.zk3.dec.com>
14799      Branch: perl
14800            ! toke.c
14801 ____________________________________________________________________________
14802 [  6971] By: jhi                                   on 2000/09/01  13:59:24
14803         Log: Add the overload warnings to perldiag.
14804      Branch: perl
14805            ! lib/overload.pm pod/perldiag.pod
14806 ____________________________________________________________________________
14807 [  6970] By: jhi                                   on 2000/09/01  13:55:10
14808         Log: Subject: RE: [PATCH lib/overload.pm] Sanaty checking of arguments to overload::constant
14809              From: "Paul Marquess" <paul_marquess@yahoo.co.uk>
14810              Date: Fri, 1 Sep 2000 13:43:15 +0100 
14811              Message-ID: <001001c01412$32c7dde0$a20a140a@bfs.phone.com>                
14812      Branch: perl
14813            ! lib/overload.pm t/pragma/overload.t
14814 ____________________________________________________________________________
14815 [  6969] By: jhi                                   on 2000/09/01  13:52:27
14816         Log: Subject: [PATCH lib/overload.pm] Sanaty checking of arguments to overload::constant
14817              From: <abigail@foad.org>
14818              Date: Fri, 1 Sep 2000 05:46:54 -0400
14819              Message-ID: <20000901094654.6476.qmail@foad.org>
14820      Branch: perl
14821            ! lib/overload.pm
14822 ____________________________________________________________________________
14823 [  6968] By: jhi                                   on 2000/09/01  13:50:05
14824         Log: Subject: [PATCH@6961] Fix misleading example in perlretut.pod
14825              From: Daniel Chetlin <daniel@chetlin.com>
14826              Date: Fri, 1 Sep 2000 02:10:55 -0700
14827              Message-ID: <20000901021055.C3400@ilmd.chetlin.org>
14828      Branch: perl
14829            ! pod/perlretut.pod
14830 ____________________________________________________________________________
14831 [  6967] By: jhi                                   on 2000/09/01  13:47:54
14832         Log: Part of the solution.
14833              
14834              Subject: Re: [ID 20000807.004] [PATCH] conditional breakpoints leak memory
14835              From: Mike Guy <mjtg@cam.ac.uk>
14836              Date: Fri, 01 Sep 2000 14:16:01 +0100
14837              Message-Id: <E13Uqfp-0006dN-00@draco.cus.cam.ac.uk>
14838      Branch: perl
14839            ! gv.c mg.c
14840 ____________________________________________________________________________
14841 [  6966] By: jhi                                   on 2000/09/01  13:46:17
14842         Log: Subject: CPAN.pm beta 1.57_57 for the core
14843              From: andreas.koenig@anima.de (Andreas J. Koenig)
14844              Date: 01 Sep 2000 15:16:31 +0200
14845              Message-ID: <m3r974z1zk.fsf@ak-71.mind.de>
14846      Branch: perl
14847            ! lib/CPAN.pm lib/CPAN/FirstTime.pm
14848 ____________________________________________________________________________
14849 [  6965] By: jhi                                   on 2000/09/01  13:43:18
14850         Log: Subject: [PATCH perl@6962] 2 more vms.c fix-ups and status
14851              From: "Craig A. Berry" <craig.berry@psinetcs.com>
14852              Date: Fri, 01 Sep 2000 01:47:22 -0500
14853              Message-Id: <4.3.2.7.2.20000901011206.01ca2e88@exchi01>
14854      Branch: perl
14855            ! pod/perldelta.pod vms/vms.c
14856 ____________________________________________________________________________
14857 [  6964] By: jhi                                   on 2000/09/01  13:35:35
14858         Log: File::Temp patches from Andreas König,
14859              
14860              Subject: Re: [ID 20000831.046] OK: perl v5.7.0 +DEVEL6961 on sun4-solaris 2.8  (UNINSTALLED)
14861              From: andreas.koenig@anima.de (Andreas J. Koenig)
14862              Date: 01 Sep 2000 10:07:20 +0200
14863              Message-ID: <m3lmxc1qo7.fsf@ak-71.mind.de>
14864              
14865              Subject: Re: Almost OK: perl v5.7.0 +DEVEL6937 on PA-RISC2.0 11.00 (INSTALLED)
14866              From: andreas.koenig@anima.de (Andreas J. Koenig)
14867              Date: 31 Aug 2000 23:26:08 +0200
14868              Message-ID: <m3bsy92kcv.fsf@ak-71.mind.de>
14869      Branch: perl
14870            ! lib/File/Temp.pm t/lib/ftmp-security.t
14871 ____________________________________________________________________________
14872 [  6963] By: jhi                                   on 2000/09/01  02:22:24
14873         Log: Retract the mergesort code, way too incompatible licensing
14874              and copyrights.
14875      Branch: perl
14876            ! pod/perldelta.pod pp_ctl.c
14877 ____________________________________________________________________________
14878 [  6962] By: jhi                                   on 2000/08/31  23:27:32
14879         Log: Update Changes.
14880      Branch: perl
14881            ! Changes patchlevel.h
14882 ____________________________________________________________________________
14883 [  6961] By: jhi                                   on 2000/08/31  23:20:04
14884         Log: Small tweaks all over.
14885      Branch: metaconfig
14886            ! U/compline/d_gconvert.U
14887      Branch: perl
14888            ! AUTHORS Configure config_h.SH pp_ctl.c
14889 ____________________________________________________________________________
14890 [  6960] By: jhi                                   on 2000/08/31  22:39:36
14891         Log: Further rewording.
14892      Branch: perl
14893            ! pp_ctl.c
14894 ____________________________________________________________________________
14895 [  6959] By: jhi                                   on 2000/08/31  21:26:44
14896         Log: More address tweaking.
14897      Branch: perl
14898            ! AUTHORS Changes
14899 ____________________________________________________________________________
14900 [  6958] By: jhi                                   on 2000/08/31  20:47:25
14901         Log: AUTHORS tweaks, from Peter Prymmer.
14902              
14903              Subject: [PATCH: 6948] mvs doesn't exist (not any more)
14904              From: Peter Prymmer <pvhp@forte.com>
14905              Date: Thu, 31 Aug 2000 12:56:32 -0700 (PDT) 
14906              Message-ID: <Pine.OSF.4.10.10008311248410.91659-100000@aspara.forte.com>
14907      Branch: perl
14908            ! AUTHORS MAINTAIN
14909 ____________________________________________________________________________
14910 [  6957] By: jhi                                   on 2000/08/31  20:34:43
14911         Log: perldelta tweaks.
14912      Branch: perl
14913            ! pod/perldelta.pod
14914 ____________________________________________________________________________
14915 [  6956] By: jhi                                   on 2000/08/31  19:11:06
14916         Log: Regen perltoc.
14917      Branch: perl
14918            ! pod/perltoc.pod
14919 ____________________________________________________________________________
14920 [  6955] By: jhi                                   on 2000/08/31  19:06:30
14921         Log: Clarify the mergesort situation.
14922      Branch: perl
14923            ! pp_ctl.c
14924 ____________________________________________________________________________
14925 [  6954] By: jhi                                   on 2000/08/31  18:24:17
14926         Log: Move the Solaris 7 scan to use64bitall, make the
14927              failure to find 64-bot sparc libc to mention the
14928              possibility of being in an intel, from Lupe and Alan.
14929      Branch: perl
14930            ! hints/solaris_2.sh
14931 ____________________________________________________________________________
14932 [  6953] By: jhi                                   on 2000/08/31  18:09:20
14933         Log: Forget about NV_MAX (#6951).  Various floating point tweaks,
14934              ideas from Eric Fifer, Yitzchak, Alan, and Spider.
14935      Branch: metaconfig
14936            ! U/compline/d_gconvert.U U/threads/archname.U
14937      Branch: metaconfig/U/perl
14938            ! perlxv.U
14939      Branch: perl
14940            ! Configure config_h.SH sv.c
14941 ____________________________________________________________________________
14942 [  6952] By: jhi                                   on 2000/08/31  17:42:24
14943         Log: :: not allowed in pathnames, change to .
14944              
14945              Subject: [PATCH perl@6938] cygwin port
14946              From: "Fifer, Eric" <EFifer@sanwaint.com>
14947              Date: Thu, 31 Aug 2000 16:32:59 +0100
14948              Message-ID: <779F20BCCE5AD31186A50008C75D997917179A@silldn_mail1.sanwaint.com>
14949      Branch: metaconfig/U/perl
14950            ! perlxv.U
14951 ____________________________________________________________________________
14952 [  6951] By: jhi                                   on 2000/08/31  17:02:05
14953         Log: Try to deduce NV_MAX.  Really should be Configure fodder.
14954      Branch: perl
14955            ! perl.h
14956 ____________________________________________________________________________
14957 [  6950] By: jhi                                   on 2000/08/31  16:26:08
14958         Log: More author updates.
14959              
14960              Subject: Re: [PATCH] Mark-Jason Dominus Does Exist
14961              From: Simon Cozens <simon@cozens.net>
14962              Date: Thu, 31 Aug 2000 17:13:32 +0100
14963              Message-ID: <20000831171332.A22498@deep-dark-truthful-mirror.perlhacker.org>
14964      Branch: perl
14965            ! AUTHORS
14966 ____________________________________________________________________________
14967 [  6949] By: jhi                                   on 2000/08/31  16:04:49
14968         Log: POSIX doesn't report long double values under -Duselongdouble
14969              when the long doubles are "real" (bigger than doubles).
14970              
14971              Subject: [ID 20000831.014] Not OK: perl v5.7.0 +DEVEL6919 on alpha-dec_osf-ld 5.1
14972              From: Spider Boardman <spider@peano.zk3.dec.com>
14973              Date: Thu, 31 Aug 2000 11:48:48 -0400 (EDT)
14974              Message-Id: <200008311548.LAA0000161952@peano.zk3.dec.com>
14975      Branch: perl
14976            ! ext/POSIX/POSIX.xs
14977 ____________________________________________________________________________
14978 [  6948] By: jhi                                   on 2000/08/31  15:25:10
14979         Log: Update Changes.
14980      Branch: perl
14981            ! Changes patchlevel.h
14982 ____________________________________________________________________________
14983 [  6947] By: jhi                                   on 2000/08/31  15:22:29
14984         Log: Document UNTIE in a very minimalistic way.
14985      Branch: perl
14986            ! pod/perlfunc.pod pod/perltie.pod
14987 ____________________________________________________________________________
14988 [  6946] By: jhi                                   on 2000/08/31  15:15:23
14989         Log: Document known failures.
14990      Branch: perl
14991            ! pod/perldelta.pod
14992 ____________________________________________________________________________
14993 [  6945] By: jhi                                   on 2000/08/31  15:07:00
14994         Log: Don't attach -ld to the archname if pointless.
14995      Branch: metaconfig
14996            ! U/threads/archname.U
14997      Branch: perl
14998            ! Configure config_h.SH
14999 ____________________________________________________________________________
15000 [  6944] By: jhi                                   on 2000/08/31  14:37:42
15001         Log: Wrap the test in eval.
15002              
15003              Subject: Re: [ID 20000831.009] Not OK: perl v5.7.0 +DEVEL6932 on sun4-solaris2.8 (UNINSTALLED)
15004              From: Tim Jenness <timj@jach.hawaii.edu>
15005              Date: Thu, 31 Aug 2000 03:39:33 -1000 (HST)
15006              Message-ID: <Pine.LNX.4.21.0008310311190.7444-100000@lapaki.jach.hawaii.edu>
15007      Branch: perl
15008            ! t/lib/ftmp-security.t
15009 ____________________________________________________________________________
15010 [  6943] By: jhi                                   on 2000/08/31  14:30:57
15011         Log: Make -Dusemorebits find long doubles in Solaris.
15012      Branch: perl
15013            ! hints/solaris_2.sh
15014 ____________________________________________________________________________
15015 [  6942] By: jhi                                   on 2000/08/31  13:48:45
15016         Log: Clarify the third case of ftmp-security warnings.
15017      Branch: perl
15018            ! INSTALL
15019 ____________________________________________________________________________
15020 [  6941] By: jhi                                   on 2000/08/31  13:40:31
15021         Log: Subject: [PATCH] Re: [ID 20000830.048] Not OK: perl v5.7.0 +DEVEL6938 on i686-linux 2.2.13
15022              From: <abigail@foad.org>
15023              Date: Thu, 31 Aug 2000 01:35:05 -0400
15024              Message-ID: <20000831053505.32120.qmail@foad.org>
15025      Branch: perl
15026            ! pod/perldelta.pod
15027 ____________________________________________________________________________
15028 [  6940] By: jhi                                   on 2000/08/31  13:38:48
15029         Log: Issue useful diagnostic on unknown pod commands.
15030              
15031              Subject: [PATCH lib/Pod/Man.pm] Re: [ID 20000830.048]
15032              From: <abigail@foad.org>
15033              Date: Thu, 31 Aug 2000 03:41:18 -0400
15034              Message-ID: <20000831074118.24880.qmail@foad.org>
15035      Branch: perl
15036            ! lib/Pod/Man.pm
15037 ____________________________________________________________________________
15038 [  6939] By: jhi                                   on 2000/08/31  13:34:33
15039         Log: Reveal Borland's isnan.
15040              
15041              Subject: build with BC++ tweak
15042              From: "Konovalov, Vadim" <vkonovalov@lucent.com>
15043              Date: Thu, 31 Aug 2000 13:09:37 +0400
15044              Message-ID: <402099F49BEED211999700805FC7359F6FACA6@ru0028exch01.spb.lucent.com>
15045      Branch: perl
15046            ! win32/win32.h
15047 ____________________________________________________________________________
15048 [  6938] By: jhi                                   on 2000/08/31  05:01:20
15049         Log: Update Changes.
15050      Branch: perl
15051            ! Changes patchlevel.h
15052 ____________________________________________________________________________
15053 [  6937] By: jhi                                   on 2000/08/31  04:26:23
15054         Log: sscanf() may be the only way to read long doubles from strings.
15055      Branch: metaconfig/U/perl
15056            ! longdblfio.U
15057      Branch: perl
15058            ! Configure config_h.SH perl.h util.c
15059 ____________________________________________________________________________
15060 [  6936] By: jhi                                   on 2000/08/31  04:18:19
15061         Log: The #6929 was too skimpy.
15062      Branch: perl
15063            ! sv.c
15064 ____________________________________________________________________________
15065 [  6935] By: jhi                                   on 2000/08/31  02:47:07
15066         Log: Subject: Re: typos in pods
15067              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
15068              Date: Wed, 30 Aug 2000 19:25:34 -0700
15069              Message-ID: <eIcr5gzkg25X092yn@efn.org>
15070      Branch: perl
15071            ! lib/CPAN.pm lib/Pod/Checker.pm pod/perlmodlib.PL
15072 ____________________________________________________________________________
15073 [  6934] By: jhi                                   on 2000/08/31  02:42:55
15074         Log: Missed one Unicode file.
15075      Branch: perl
15076            + lib/unicode/UCDFF301.html
15077 ____________________________________________________________________________
15078 [  6933] By: jhi                                   on 2000/08/30  23:42:27
15079         Log: Update Changes.
15080      Branch: perl
15081            ! Changes patchlevel.h
15082 ____________________________________________________________________________
15083 [  6932] By: jhi                                   on 2000/08/30  23:40:07
15084         Log: Mention UNTIE in perldelta.  Still needs documenting
15085              in perltie et alia.
15086      Branch: perl
15087            ! pod/perldelta.pod
15088 ____________________________________________________________________________
15089 [  6931] By: jhi                                   on 2000/08/30  23:36:02
15090         Log: Subject: [PATCH] Don't use big-Oh when talking about lower bounds.
15091              From: <abigail@foad.org>
15092              Date: Wed, 30 Aug 2000 19:28:07 -0400
15093              Message-ID: <20000830232807.305.qmail@foad.org>
15094      Branch: perl
15095            ! pod/perldelta.pod
15096 ____________________________________________________________________________
15097 [  6930] By: jhi                                   on 2000/08/30  23:32:40
15098         Log: Update to Unicode 3.0.1.
15099      Branch: perl
15100            + lib/unicode/BidiMirr.txt lib/unicode/CaseFold.txt
15101            + lib/unicode/PropList.txt lib/unicode/README.perl
15102            + lib/unicode/UCD301.html lib/unicode/Unicode.301
15103            - lib/unicode/Props.txt lib/unicode/UCD300.html
15104            - lib/unicode/Unicode.300 lib/unicode/Unicode3.html
15105            ! (edit 257 files)
15106 ____________________________________________________________________________
15107 [  6929] By: jhi                                   on 2000/08/30  22:38:18
15108         Log: Heap decorruption.
15109              
15110              Subject: [PATCH] Fix for miniperl coredump on Solaris with -Duselongdouble
15111              From: Alan Burlison <Alan.Burlison@uk.sun.com>
15112              Date: Wed, 30 Aug 2000 22:39:52 +0100
15113              Message-ID: <39AD7F28.A06533CF@uk.sun.com>
15114      Branch: perl
15115            ! sv.c
15116 ____________________________________________________________________________
15117 [  6928] By: jhi                                   on 2000/08/30  22:29:34
15118         Log: Retract the dummy test, skip the security tests (instead of failing),
15119              explain what the warnings mean.
15120      Branch: perl
15121            ! INSTALL lib/File/Temp.pm t/lib/ftmp-security.t
15122 ____________________________________________________________________________
15123 [  6927] By: jhi                                   on 2000/08/30  22:14:13
15124         Log: Change the internal implementation of sort() to be mergesort
15125              instead of quicksort, from John Linderman <jpl@research.att.com>.
15126              Gives us better worst case, better average case, and stability.
15127              What's there not to like?  (Small fixes for threaded builds
15128              were required).
15129      Branch: perl
15130            ! pod/perldelta.pod pp_ctl.c t/op/runlevel.t
15131 ____________________________________________________________________________
15132 [  6926] By: jhi                                   on 2000/08/30  20:55:20
15133         Log: A better fix for the Socket building problem from Craig Berry.
15134      Branch: perl
15135            ! vms/vms.c
15136 ____________________________________________________________________________
15137 [  6925] By: jhi                                   on 2000/08/30  20:20:25
15138         Log: Subject: [PATCH] Re: UNTIE method 
15139              From: Nick Ing-Simmons <nik@tiuk.ti.com>
15140              Date: Wed, 30 Aug 2000 18:26:55 +0100 (BST)
15141              Message-Id: <200008301726.SAA01114@mikado.tiuk.ti.com>
15142      Branch: perl
15143            ! pp_sys.c t/op/tie.t
15144 ____________________________________________________________________________
15145 [  6924] By: jhi                                   on 2000/08/30  20:17:11
15146         Log: Subject: Re: not OK, 6919 on Alpha VMS V 7.1 w/ DECC 6.0-001
15147              From: "Craig A. Berry" <craig.berry@psinetcs.com>
15148              Date: Wed, 30 Aug 2000 15:03:14 -0500
15149              Message-Id: <4.3.2.7.2.20000830144622.028fe7a8@exchi01>
15150      Branch: perl
15151            ! vms/vms.c
15152 ____________________________________________________________________________
15153 [  6923] By: jhi                                   on 2000/08/30  20:15:18
15154         Log: Subject: [PATCH perl@6889] fix Storable on VMS by fixing my_fwrite()
15155              From: "Craig A. Berry" <craig.berry@psinetcs.com>
15156              Date: Wed, 30 Aug 2000 13:30:36 -0500
15157              Message-Id: <4.3.2.7.2.20000830130617.02b8b968@exchi01>
15158      Branch: perl
15159            ! vms/vms.c
15160 ____________________________________________________________________________
15161 [  6922] By: jhi                                   on 2000/08/30  19:54:43
15162         Log: Better options for rsync.
15163      Branch: perl
15164            ! pod/perlhack.pod
15165 ____________________________________________________________________________
15166 [  6921] By: jhi                                   on 2000/08/30  19:40:16
15167         Log: Subject: [ID 20000830.036] [DOC] chom?p %hash not documented
15168              From: Rick Delaney <rick@consumercontact.com>
15169              Date: Wed, 30 Aug 2000 15:36:55 -0400 (EDT)
15170              Message-Id: <Pine.UW2.4.10.10008301535210.1949-100000@consumer>
15171      Branch: perl
15172            ! pod/perlfunc.pod
15173 ____________________________________________________________________________
15174 [  6920] By: jhi                                   on 2000/08/30  19:36:40
15175         Log: Subject: [PATCH 6889] add a few ldbl formats to configure.com
15176              From: Peter Prymmer <pvhp@forte.com>
15177              Date: Tue, 29 Aug 2000 17:36:00 -0700 (PDT)
15178              Message-ID: <Pine.OSF.4.10.10008291720260.502507-100000@aspara.forte.com>
15179      Branch: perl
15180            ! configure.com
15181 ____________________________________________________________________________
15182 [  6919] By: jhi                                   on 2000/08/30  14:52:02
15183         Log: Update Changes.
15184      Branch: perl
15185            ! Changes patchlevel.h
15186 ____________________________________________________________________________
15187 [  6918] By: jhi                                   on 2000/08/30  14:48:34
15188         Log: NVs not necessarily doubles, as pointed out by Yitzchak.
15189      Branch: perl
15190            ! lib/ExtUtils/typemap
15191 ____________________________________________________________________________
15192 [  6917] By: jhi                                   on 2000/08/30  14:46:34
15193         Log: Subject: typos in pods
15194              From: Nicholas Clark <nick@ccl4.org>
15195              Date: Wed, 30 Aug 2000 01:12:50 +0100
15196              Message-ID: <20000830011249.A61388@plum.flirble.org>
15197      Branch: perl
15198            ! pod/perldbmfilter.pod pod/perldebtut.pod pod/perldebug.pod
15199            ! pod/perldiag.pod pod/perlebcdic.pod pod/perlfunc.pod
15200            ! pod/perlguts.pod pod/perlhack.pod pod/perlmodlib.pod
15201            ! pod/perlnewmod.pod pod/perlport.pod pod/perltoc.pod
15202 ____________________________________________________________________________
15203 [  6916] By: jhi                                   on 2000/08/30  14:19:09
15204         Log: Document Storable problems on Crays.  (Will have
15205              to document all the other Storable problems, too.)
15206      Branch: perl
15207            ! pod/perldelta.pod
15208 ____________________________________________________________________________
15209 [  6915] By: jhi                                   on 2000/08/30  14:06:02
15210         Log: Subject: [PATCH] fix misc cast warnings
15211              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
15212              Date: Tue, 29 Aug 2000 23:16:14 -0700
15213              Message-ID: <uaKr5gzkgGwQ092yn@efn.org>
15214      Branch: perl
15215            ! lib/ExtUtils/typemap os2/OS2/ExtAttr/ExtAttr.xs
15216            ! os2/OS2/ExtAttr/typemap os2/OS2/REXX/REXX.xs os2/os2.c
15217            ! os2/os2ish.h
15218 ____________________________________________________________________________
15219 [  6914] By: jhi                                   on 2000/08/30  14:03:45
15220         Log: Timestamp mismatch again.  Need to fix this dependence on
15221              config_h.SH timestamp, since it's the contents of config_h.SH
15222              that matter.
15223      Branch: perl
15224            ! uconfig.h uconfig.sh
15225 ____________________________________________________________________________
15226 [  6913] By: jhi                                   on 2000/08/30  13:54:06
15227         Log: Don't say "Perl 5.0 source kit".
15228      Branch: perl
15229            ! perl.c
15230 ____________________________________________________________________________
15231 [  6912] By: jhi                                   on 2000/08/30  13:51:24
15232         Log: Reset archname and archname64 always, forcing them be
15233              recomputed at each Configure run, make Configure and
15234              the hints files agree on the naming of largefiles variables.
15235      Branch: metaconfig
15236            ! U/threads/archname.U
15237      Branch: metaconfig/U/perl
15238            ! use64bits.U
15239      Branch: perl
15240            ! Configure config_h.SH configpm hints/aix.sh hints/hpux.sh
15241            ! hints/linux.sh hints/solaris_2.sh
15242 ____________________________________________________________________________
15243 [  6911] By: jhi                                   on 2000/08/30  13:30:13
15244         Log: Put back the slice accidentally removed by #6907.
15245      Branch: perl
15246            ! hints/solaris_2.sh
15247 ____________________________________________________________________________
15248 [  6910] By: jhi                                   on 2000/08/30  01:24:26
15249         Log: Be consistent: other Net::get* do export theirs.
15250              
15251              Subject: Re: Net::protoent does not export 'getproto'
15252              From: Yasushi Nakajima <sey@jkc.co.jp>
15253              Date: Wed, 30 Aug 2000 09:53:14 +0900
15254              Message-Id: <200008300051.DAA24700@taku.hut.fi>
15255      Branch: perl
15256            ! lib/Net/protoent.pm
15257 ____________________________________________________________________________
15258 [  6909] By: jhi                                   on 2000/08/30  01:17:25
15259         Log: Subject: Re: [ID 20000829.020] perl -e 'package; print __PACKAGE__' core dumps 
15260              From: Gurusamy Sarathy <gsar@ActiveState.com>
15261              Date: Tue, 29 Aug 2000 17:17:07 -0700
15262              Message-Id: <200008300017.RAA25382@smtp3.ActiveState.com>
15263      Branch: perl
15264            ! cop.h
15265 ____________________________________________________________________________
15266 [  6908] By: jhi                                   on 2000/08/30  00:58:05
15267         Log: Update Changes.
15268      Branch: perl
15269            ! Changes patchlevel.h
15270 ____________________________________________________________________________
15271 [  6907] By: jhi                                   on 2000/08/30  00:57:22
15272         Log: Introduce ccname to keep track of what compiler kind of we have.
15273      Branch: metaconfig/U/perl
15274            ! Checkcc.U gccvers.U
15275      Branch: perl
15276            ! Configure config_h.SH hints/solaris_2.sh
15277 ____________________________________________________________________________
15278 [  6906] By: jhi                                   on 2000/08/30  00:25:47
15279         Log: Put back the flags dump as reasoned in
15280              
15281              Subject: Re: [PATCH] Glob dumping
15282              From: Mike Guy <mjtg@cam.ac.uk> 
15283              Date: Tue, 29 Aug 2000 21:41:32 +0100
15284              Message-Id: <E13TsCK-0007iL-00@draco.cus.cam.ac.uk>
15285      Branch: perl
15286            ! dump.c t/lib/peek.t
15287 ____________________________________________________________________________
15288 [  6905] By: jhi                                   on 2000/08/30  00:16:17
15289         Log: Make the epsilon to be relative, not absolute.
15290              
15291              Subject: Re: [ID 20000829.039] Not OK: perl v5.7.0 +DEVEL6899 +[ID on alpha-dec_osf-ld 5.1 (UNINSTALLED)
15292              From: Spider Boardman <spider-perl@orb.nashua.nh.us>
15293              Date: Tue, 29 Aug 2000 19:58:56 -0400
15294              Message-Id: <200008292358.TAA31114@leggy.zk3.dec.com>
15295      Branch: perl
15296            ! t/lib/trig.t
15297 ____________________________________________________________________________
15298 [  6904] By: jhi                                   on 2000/08/30  00:13:09
15299         Log: From now on, Gisle is on my list of usual suspects :-)
15300              Retract #6902.
15301      Branch: perl
15302            ! ext/Opcode/Safe.pm
15303 ____________________________________________________________________________
15304 [  6903] By: jhi                                   on 2000/08/29  23:51:20
15305         Log: Subject: [PATCH perl@6889] Chuck Lane's OpenVMS piping improvements
15306              From: "Craig A. Berry" <craig.berry@psinetcs.com>
15307              Date: Tue, 29 Aug 2000 18:43:26 -0500
15308              Message-Id: <4.3.2.7.2.20000829180705.01b005b8@exchi01>
15309      Branch: perl
15310            + vms/vmspipe.com
15311            ! MANIFEST t/io/openpid.t vms/descrip_mms.template vms/test.com
15312            ! vms/vms.c
15313 ____________________________________________________________________________
15314 [  6902] By: jhi                                   on 2000/08/29  23:44:14
15315         Log: Retry what #6882 attempted.
15316              
15317              Subject: Re: [ID 20000829.004] Sharing leak root name into safe compartment
15318              From: Gisle Aas <gisle@ActiveState.com>
15319              Date: 30 Aug 2000 00:33:09 +0200
15320              Message-ID: <m3pumry9y2.fsf@eik.g.aas.no>
15321      Branch: perl
15322            ! ext/Opcode/Safe.pm
15323 ____________________________________________________________________________
15324 [  6901] By: jhi                                   on 2000/08/29  22:59:32
15325         Log: Subject: [PATCH 5.6.0] [ID 20000608.006] panic: magic_killbackrefs with blessed global weakrefs
15326              From: Hugo <hv@crypt.compulink.co.uk>
15327              Date: Mon, 12 Jun 2000 19:36:08 +0100
15328              Message-Id: <200006121836.TAA16977@crypt.compulink.co.uk>
15329      Branch: perl
15330            ! sv.c
15331 ____________________________________________________________________________
15332 [  6900] By: jhi                                   on 2000/08/29  22:58:35
15333         Log: Admit that we are leaking scalars.
15334              
15335              Subject: [ID 20000829.037] Not OK: perl v5.7.0 +DEVEL6899 on alpha-dec_osf 4.0f (UNINSTALLED)
15336              From: Spider Boardman <spider@leggy.zk3.dec.com>
15337              Date: Tue, 29 Aug 2000 18:48:29 -0400
15338              Message-Id: <200008292248.SAA31507@leggy.zk3.dec.com>
15339      Branch: perl
15340            ! t/pragma/warnings.t
15341 ____________________________________________________________________________
15342 [  6899] By: jhi                                   on 2000/08/29  20:53:13
15343         Log: Update Changes.
15344      Branch: perl
15345            ! Changes patchlevel.h
15346 ____________________________________________________________________________
15347 [  6898] By: jhi                                   on 2000/08/29  20:46:21
15348         Log: Undo namespace pollution of #6878.
15349              
15350              Subject: Re: Net::protoent does not export 'getproto'
15351              From: Mike Guy <mjtg@cam.ac.uk>
15352              Date: Tue, 29 Aug 2000 21:32:37 +0100
15353              Message-Id: <E13Ts3h-0007eN-00@draco.cus.cam.ac.uk>
15354      Branch: perl
15355            ! lib/Net/protoent.pm
15356 ____________________________________________________________________________
15357 [  6897] By: jhi                                   on 2000/08/29  20:44:29
15358         Log: Subject: [PATCH: 6889] updates to perlebcdic.pod
15359              From: Peter Prymmer <pvhp@forte.com>
15360              Date: Tue, 29 Aug 2000 13:32:41 -0700 (PDT)
15361              Message-ID: <Pine.OSF.4.10.10008291327500.502507-100000@aspara.forte.com>
15362      Branch: perl
15363            ! pod/perlebcdic.pod
15364 ____________________________________________________________________________
15365 [  6896] By: jhi                                   on 2000/08/29  20:40:57
15366         Log: There's no point repeating the 'revision' (5) of perl5.
15367      Branch: metaconfig/U/perl
15368            ! Devel.U patchlevel.U
15369      Branch: perl
15370            ! Configure config_h.SH
15371 ____________________________________________________________________________
15372 [  6895] By: jhi                                   on 2000/08/29  20:16:58
15373         Log: Regen Configure for #6894.
15374      Branch: metaconfig/U/perl
15375            ! perladmin.U
15376      Branch: perl
15377            ! Configure config_h.SH
15378 ____________________________________________________________________________
15379 [  6894] By: jhi                                   on 2000/08/29  19:59:52
15380         Log: Subject: [ID 20000829.023] [PATCH 6868] perlbug@perl.com --> perlbug@perl.org
15381              From: "Philip Newton" <Philip.Newton@gmx.net>
15382              Date: Tue, 29 Aug 2000 21:39:14 +0200
15383              Message-Id: <200008291938.VAA98259@smtp1.nikoma.de>
15384      Branch: perl
15385            ! Configure INSTALL README hints/README.hints hints/bsdos.sh
15386            ! hints/freebsd.sh pod/perl.pod pod/perl56delta.pod
15387            ! pod/perlfaq2.pod pod/perllocale.pod pod/perlxs.pod
15388            ! utils/perlbug.PL
15389 ____________________________________________________________________________
15390 [  6893] By: jhi                                   on 2000/08/29  19:55:30
15391         Log: Subject: [ID 20000829.022] [PATCH 6868] Minor nit in installhtml
15392              From: "Philip Newton" <Philip.Newton@gmx.net>
15393              Date: Tue, 29 Aug 2000 21:39:14 +0200
15394              Message-Id: <200008291938.VAA98255@smtp1.nikoma.de>
15395      Branch: perl
15396            ! installhtml
15397 ____________________________________________________________________________
15398 [  6892] By: jhi                                   on 2000/08/29  19:53:59
15399         Log: Subject: [ID 20000829.026] [PATCH 6868] File::Temp
15400              From: "Philip Newton" <Philip.Newton@gmx.net>
15401              Date: Tue, 29 Aug 2000 21:48:18 +0200
15402              Message-Id: <200008291947.VAA13628@smtp2.nikoma.de>
15403      Branch: perl
15404            ! lib/File/Temp.pm
15405 ____________________________________________________________________________
15406 [  6891] By: jhi                                   on 2000/08/29  18:30:03
15407         Log: Nail the ID 20000828.023.
15408      Branch: perl
15409            ! ext/Storable/Storable.xs
15410 ____________________________________________________________________________
15411 [  6890] By: jhi                                   on 2000/08/29  16:50:17
15412         Log: Under usethreads the dumped variable is IN_PAD.
15413              
15414              Subject: Re: [PATCH] Glob dumping
15415              From: Gisle Aas <gisle@ActiveState.com>
15416              Date: 29 Aug 2000 18:45:05 +0200
15417              Message-ID: <m37l9010fi.fsf@eik.g.aas.no>
15418      Branch: perl
15419            ! t/lib/peek.t
15420 ____________________________________________________________________________
15421 [  6889] By: jhi                                   on 2000/08/29  15:17:37
15422         Log: Update Changes.
15423      Branch: perl
15424            ! Changes patchlevel.h
15425 ____________________________________________________________________________
15426 [  6888] By: jhi                                   on 2000/08/29  14:49:59
15427         Log: Retract #6882, broke the safe tests.
15428      Branch: perl
15429            ! ext/Opcode/Safe.pm
15430 ____________________________________________________________________________
15431 [  6887] By: jhi                                   on 2000/08/29  14:47:06
15432         Log: Subject: Re: [ID 20000525.003] perldoc fails when Makefile.PL is in cwd
15433              From: Gisle Aas <gisle@ActiveState.com> 
15434              Date: 09 Jun 2000 20:00:11 +0200
15435              Message-ID: <m3n1kud9as.fsf@eik.g.aas.no>
15436      Branch: perl
15437            ! utils/perldoc.PL
15438 ____________________________________________________________________________
15439 [  6886] By: jhi                                   on 2000/08/29  14:42:45
15440         Log: The #6881 removed one dump line.
15441      Branch: perl
15442            ! t/lib/peek.t
15443 ____________________________________________________________________________
15444 [  6885] By: jhi                                   on 2000/08/29  14:30:47
15445         Log: Don't forget to tidy up.
15446      Branch: perl
15447            ! t/lib/ftmp-security.t
15448 ____________________________________________________________________________
15449 [  6884] By: jhi                                   on 2000/08/29  14:25:17
15450         Log: Disabling the one test is a bit tricky.
15451      Branch: perl
15452            ! t/lib/ftmp-security.t
15453 ____________________________________________________________________________
15454 [  6883] By: jhi                                   on 2000/08/29  14:16:25
15455         Log: Disable one of the tests for now.
15456      Branch: perl
15457            ! t/lib/ftmp-security.t
15458 ____________________________________________________________________________
15459 [  6882] By: jhi                                   on 2000/08/29  14:05:50
15460         Log: Subject: [ID 20000829.004] Sharing leak root name into safe compartment
15461              From: gisle@aas.no
15462              Date: 29 Aug 2000 10:35:06 -0000
15463              Message-Id: <20000829103506.21538.qmail@eik.g.aas.no>
15464      Branch: perl
15465            ! ext/Opcode/Safe.pm
15466 ____________________________________________________________________________
15467 [  6881] By: jhi                                   on 2000/08/29  14:03:51
15468         Log: Subject: [PATCH] Glob dumping
15469              From: Gisle Aas <gisle@ActiveState.com>
15470              Date: 29 Aug 2000 07:59:42 -0000
15471              Message-ID: <20000829075942.20923.qmail@eik.g.aas.no>
15472      Branch: perl
15473            ! dump.c
15474 ____________________________________________________________________________
15475 [  6880] By: jhi                                   on 2000/08/29  14:02:01
15476         Log: Subject: [PATCH] Warnings in B::Deparse
15477              From: <abigail@foad.org>
15478              Date: Tue, 29 Aug 2000 00:00:01 -0400
15479              Message-ID: <20000829040001.2999.qmail@foad.org>
15480      Branch: perl
15481            ! ext/B/B/Deparse.pm
15482 ____________________________________________________________________________
15483 [  6879] By: jhi                                   on 2000/08/29  13:57:26
15484         Log: Missed a change in #6869.
15485      Branch: perl
15486            ! mg.c
15487 ____________________________________________________________________________
15488 [  6878] By: jhi                                   on 2000/08/29  13:45:04
15489         Log: Subject: Net::protoent does not export 'getproto'
15490              From: Yasushi Nakajima <sey@jkc.co.jp>
15491              Date: Tue, 29 Aug 2000 17:28:57 +0900                 
15492      Branch: perl
15493            ! lib/Net/protoent.pm
15494 ____________________________________________________________________________
15495 [  6877] By: jhi                                   on 2000/08/29  13:39:19
15496         Log: Patches all over for people and the files they (hopefully) care about.
15497      Branch: perl
15498            ! AUTHORS Changes MAINTAIN
15499 ____________________________________________________________________________
15500 [  6876] By: jhi                                   on 2000/08/29  12:53:54
15501         Log: Fix for thinko in #6848.
15502              
15503              Subject: Compiler error in ext/Thread/Thread.c (bleadperl@6866)
15504              From: Lupe Christoph <lupe@lupe-christoph.de>
15505              Date: Tue, 29 Aug 2000 09:04:08 +0200
15506              Message-ID: <20000829090408.V4437@alanya.lupe-christoph.de>
15507      Branch: perl
15508            ! ext/Thread/Thread.xs
15509 ____________________________________________________________________________
15510 [  6875] By: jhi                                   on 2000/08/29  12:50:14
15511         Log: Update to Getopt::Long 2.24, from Johan Vromans.
15512      Branch: perl
15513            ! lib/Getopt/Long.pm t/lib/gol-basic.t t/lib/gol-oo.t
15514 ____________________________________________________________________________
15515 [  6874] By: jhi                                   on 2000/08/29  02:09:53
15516         Log: Use minimal @INC in tests, most of the time just '../lib',
15517              so that we simply can't pick up stuff from other Perls than
15518              the one we are testing.  Pointed out by
15519              
15520              From: Mike Guy <mjtg@cam.ac.uk>
15521              Subject: Re: [PATCH: 6757] make new Storable tests forgiving of places where not built   
15522              Date: Fri, 25 Aug 2000 15:15:59 +0100
15523              Message-Id: <E13SKH1-00031D-00@virgo.cus.cam.ac.uk>
15524      Branch: perl
15525            ! (edit 185 files)
15526 ____________________________________________________________________________
15527 [  6873] By: jhi                                   on 2000/08/29  01:07:11
15528         Log: Subject: [PATCH] Re: files not cleaned even by veryclean
15529              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
15530              Date: Mon, 28 Aug 2000 17:45:52 -0700
15531              Message-ID: <Afwq5gzkg2UB092yn@efn.org>
15532      Branch: perl
15533            ! Makefile.SH hints/os2.sh
15534 ____________________________________________________________________________
15535 [  6872] By: jhi                                   on 2000/08/28  23:33:39
15536         Log: Subject: [PATCH bleedperl@6866] spellings
15537              From: marcel@codewerk.com (Marcel Grunauer)
15538              Date: Tue, 29 Aug 2000 01:19:59 +0200
15539              Message-Id: <200008282319.BAA29862@gandalf.local>
15540      Branch: perl
15541            ! README.os390 pod/perl5004delta.pod pod/perldebtut.pod
15542            ! pod/perlebcdic.pod pod/perlfunc.pod pod/perlguts.pod
15543            ! pod/perlipc.pod pod/perlthrtut.pod pod/perlutil.pod
15544 ____________________________________________________________________________
15545 [  6871] By: jhi                                   on 2000/08/28  23:22:09
15546         Log: Take out the SUIDMAIL thing, that will not be
15547              a problem in 5.7.*.
15548      Branch: perl
15549            ! patchlevel.h
15550 ____________________________________________________________________________
15551 [  6870] By: jhi                                   on 2000/08/28  23:19:30
15552         Log: -S is the silent flag, -s is the strip flag.
15553              
15554              Subject: [PATCH] Re: [PATCH] make no-install          
15555              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
15556              Date: Mon, 28 Aug 2000 15:12:55 -0700
15557              Message-ID: <nPuq5gzkg2FO092yn@efn.org> 
15558      Branch: perl
15559            ! Makefile.SH
15560 ____________________________________________________________________________
15561 [  6869] By: jhi                                   on 2000/08/28  23:12:05
15562         Log: Subject: [PATCH bleedperl@6856] warnings fixes
15563              From: "Paul Marquess" <paul_marquess@yahoo.co.uk>
15564              Date: Mon, 28 Aug 2000 23:55:06 +0100
15565              Message-ID: <000501c01143$0230af80$2014140a@bfs.phone.com>
15566      Branch: perl
15567            ! lib/warnings.pm pod/perllexwarn.pod t/pragma/warn/7fatal
15568            ! warnings.h warnings.pl
15569 ____________________________________________________________________________
15570 [  6868] By: jhi                                   on 2000/08/28  21:38:22
15571         Log: Potential cruft.
15572      Branch: perl
15573            ! Makefile.SH
15574 ____________________________________________________________________________
15575 [  6867] By: jhi                                   on 2000/08/28  21:35:36
15576         Log: Update Changes.
15577      Branch: perl
15578            ! Changes patchlevel.h
15579 ____________________________________________________________________________
15580 [  6866] By: jhi                                   on 2000/08/28  21:33:49
15581         Log: Subject: hv.h Doc Patch
15582              From: Fisher Mark <fisherm@tce.com>
15583              Date: Mon, 28 Aug 2000 16:24:59 -0500
15584              Message-ID: <B9B6874277EED211B1890008C707AF5302881C77@indyexch3.indy.tce.com>
15585      Branch: perl
15586            ! hv.h
15587 ____________________________________________________________________________
15588 [  6865] By: jhi                                   on 2000/08/28  21:02:15
15589         Log: Add -ld to archname on long tr...double platforms.
15590      Branch: metaconfig
15591            ! U/threads/archname.U
15592      Branch: perl
15593            ! Configure config_h.SH
15594 ____________________________________________________________________________
15595 [  6864] By: jhi                                   on 2000/08/28  20:38:59
15596         Log: An attempt to fix the problem reported in
15597              
15598              Subject: Building perl@6856 using gcc/AIX 4.3.3 
15599              From: Daniel Muino <dmuino@afip.gov.ar> 
15600              Date: Mon, 28 Aug 2000 15:50:01 -0300   
15601              Message-ID: <20000828155001.A14403@con2-dgi>
15602              
15603              I can't test this properly since the gcc installation I have
15604              access to seems to be botched (gcc is calling the AIX cpp,
15605              a losing proposition...)
15606      Branch: perl
15607            ! hints/aix.sh
15608 ____________________________________________________________________________
15609 [  6863] By: jhi                                   on 2000/08/28  18:57:52
15610         Log: Fix for ID 20000828.001, long doubles were not formatted
15611              correctly (showed up in $], which stopped installing perl).
15612      Branch: perl
15613            ! sv.c
15614 ____________________________________________________________________________
15615 [  6862] By: jhi                                   on 2000/08/28  18:07:15
15616         Log: Typo in #6858.
15617      Branch: perl
15618            ! lib/Cwd.pm
15619 ____________________________________________________________________________
15620 [  6861] By: jhi                                   on 2000/08/28  17:57:27
15621         Log: opmini.o may be left around if a build is interrupted.
15622      Branch: perl
15623            ! Makefile.SH
15624 ____________________________________________________________________________
15625 [  6860] By: jhi                                   on 2000/08/28  16:52:50
15626         Log: Subject: [PATCH@6855] _Minor_ change to overload.pm pod
15627              From: Daniel Chetlin <daniel@chetlin.com>
15628              Date: Mon, 28 Aug 2000 01:14:18 -0700
15629              Message-ID: <20000828011418.J769@ilmd.chetlin.org>
15630      Branch: perl
15631            ! lib/overload.pm
15632 ____________________________________________________________________________
15633 [  6859] By: jhi                                   on 2000/08/28  16:08:46
15634         Log: Subject: [ID 20000828.009] Not OK: perl v5.7.0 +SUIDMAIL +DEVEL6855 on i586-linux 2.2.12 (UNINSTALLED)
15635              From: Nicholas Clark <nick@ccl4.org>
15636              Date: Mon, 28 Aug 2000 16:03:27 +0100
15637              Message-Id: <20000828160327.C49785@plum.flirble.org>
15638      Branch: perl
15639            ! ext/ByteLoader/bytecode.h
15640 ____________________________________________________________________________
15641 [  6858] By: jhi                                   on 2000/08/28  16:02:10
15642         Log: Subject: [ID 20000828.006] dir name "0" not safe with Cwd.pm
15643              From: Wolfgang Laun <wolfgang.laun@alcatel.at>
15644              Date: Mon, 28 Aug 2000 13:08:30 +0200
15645              Message-Id: <200008281108.NAA00782@localhost.aut.alcatel.at>
15646      Branch: perl
15647            ! lib/Cwd.pm
15648 ____________________________________________________________________________
15649 [  6857] By: jhi                                   on 2000/08/28  15:42:47
15650         Log: display_format used as a class method without arguments was broken,
15651              reported in
15652              
15653              Subject: Math::Complex->display_format() sets style to 'Math::Complex'
15654              From: Yasushi Nakajima <sey@san.p.kyoto.jkc.co.jp>
15655              Date: Mon, 28 Aug 2000 16:38:08 +0900 (JST)
15656              Message-Id: <200008280738.QAA00215@san.p.kyoto.jkc.co.jp>
15657      Branch: perl
15658            ! lib/Math/Complex.pm t/lib/complex.t
15659 ____________________________________________________________________________
15660 [  6856] By: jhi                                   on 2000/08/27  22:09:48
15661         Log: Update Changes.
15662      Branch: perl
15663            ! Changes patchlevel.h
15664 ____________________________________________________________________________
15665 [  6855] By: jhi                                   on 2000/08/27  21:59:21
15666         Log: Retract #6853 (false alarm).
15667      Branch: perl
15668            ! lib/ExtUtils/xsubpp
15669 ____________________________________________________________________________
15670 [  6854] By: jhi                                   on 2000/08/27  21:37:44
15671         Log: Update Changes.
15672      Branch: perl
15673            ! Changes patchlevel.h
15674 ____________________________________________________________________________
15675 [  6853] By: jhi                                   on 2000/08/27  21:37:16
15676         Log: Subject: [PATCH perl@6850] workaround for xsubpp
15677              From: Hugo <hv@crypt.compulink.co.uk>
15678              Date: Sun, 27 Aug 2000 22:30:25 +0100
15679              Message-Id: <200008272130.WAA10083@crypt.compulink.co.uk>
15680      Branch: perl
15681            ! lib/ExtUtils/xsubpp
15682 ____________________________________________________________________________
15683 [  6852] By: jhi                                   on 2000/08/27  21:33:58
15684         Log: Big-endian 64-bit patch from Raphael Manfredi.
15685      Branch: perl
15686            ! ext/Storable/Storable.xs
15687 ____________________________________________________________________________
15688 [  6851] By: jhi                                   on 2000/08/27  21:22:21
15689         Log: More ruthless editing from Hugo van der Sanden.
15690      Branch: perl
15691            ! pod/perldelta.pod
15692 ____________________________________________________________________________
15693 [  6850] By: jhi                                   on 2000/08/27  16:11:46
15694         Log: Update Changes.
15695      Branch: perl
15696            ! Changes patchlevel.h
15697 ____________________________________________________________________________
15698 [  6849] By: jhi                                   on 2000/08/27  16:11:05
15699         Log: Provice virtual $Config{ccflags_nolargefiles} etc. 
15700      Branch: perl
15701            ! configpm pod/perldelta.pod
15702 ____________________________________________________________________________
15703 [  6848] By: jhi                                   on 2000/08/27  15:35:08
15704         Log: Use the actual thread type, not the pointer-to-struct.
15705      Branch: perl
15706            ! ext/Thread/Thread.xs
15707 ____________________________________________________________________________
15708 [  6847] By: jhi                                   on 2000/08/27  15:30:49
15709         Log: Test nit.
15710      Branch: perl
15711            ! t/pragma/warn/pp_sys
15712 ____________________________________________________________________________
15713 [  6846] By: jhi                                   on 2000/08/27  15:19:02
15714         Log: Passing -R in ldflags makes now it to appear in the default
15715              for lddlflags, just like with -L.
15716              
15717              Subject: Re: MM_Unix.pm LD_RUN_PATH niggles on Solaris
15718              From: Lupe Christoph <lupe@lupe-christoph.de>
15719              Date: Sun, 27 Aug 2000 10:28:21 +0200
15720              Message-ID: <20000827102821.B4437@alanya.lupe-christoph.de>
15721      Branch: metaconfig/U/perl
15722            ! dlsrc.U
15723      Branch: perl
15724            ! Configure
15725 ____________________________________________________________________________
15726 [  6845] By: jhi                                   on 2000/08/27  15:08:54
15727         Log: Subject: MM_Unix.pm LD_RUN_PATH niggles on Solaris
15728              From: Alan Burlison <Alan.Burlison@uk.sun.com>
15729              Date: Sat, 26 Aug 2000 22:23:27 +0100
15730              Message-ID: <39A8354F.E1E832C9@uk.sun.com>
15731      Branch: perl
15732            ! lib/ExtUtils/MM_Unix.pm
15733 ____________________________________________________________________________
15734 [  6844] By: jhi                                   on 2000/08/27  15:02:37
15735         Log: DJGPP update from Laszlo Molnar.
15736              
15737              Subject: [ID 20000826.014] Not OK: perl v5.7.0 +SUIDMAIL +DEVEL6788 on dos-djgpp djgpp (UNINSTALLED) [PATCH]
15738              From: ml1050 <ml1050@freemail.hu>
15739              Date: Sat, 26 Aug 2000 23:24:40 +0200
15740              Message-Id: <20000826232440.A439@freemail.hu>
15741      Branch: perl
15742            ! djgpp/config.over lib/File/Temp.pm pod/buildtoc.PL
15743            ! t/lib/ftmp-security.t t/lib/posix.t t/pragma/warn/pp_sys
15744 ____________________________________________________________________________
15745 [  6843] By: jhi                                   on 2000/08/27  14:53:58
15746         Log: Subject: installman buglet
15747              From: Lupe Christoph <lupe@lupe-christoph.de>
15748              Date: Sun, 27 Aug 2000 14:38:59 +0200
15749              Message-ID: <20000827143859.E4437@alanya.lupe-christoph.de>
15750      Branch: perl
15751            ! installman
15752 ____________________________________________________________________________
15753 [  6842] By: jhi                                   on 2000/08/27  14:52:08
15754         Log: Can't get the test to reliably work thanks to the
15755              inaccurateness of floating point.  "Resolves" bug ids
15756              20000826.003, 20000826.009, 20000826.010,
15757      Branch: perl
15758            ! t/lib/trig.t
15759 ____________________________________________________________________________
15760 [  6841] By: jhi                                   on 2000/08/26  15:53:58
15761         Log: Update Changes.
15762      Branch: perl
15763            ! Changes patchlevel.h
15764 ____________________________________________________________________________
15765 [  6840] By: jhi                                   on 2000/08/26  14:23:03
15766         Log: grep -e isn't portable.
15767              
15768              Subject: [ID 20000825.027] let me (perlbug@perl.com) know how I blew it
15769              From: chris@broadband.att.com
15770              Date: Sat, 26 Aug 2000 00:17:27 -0600 (MDT)
15771              Message-Id: <200008260617.AAA10219@lazlo.tci.com>
15772      Branch: perl
15773            ! hints/solaris_2.sh
15774 ____________________________________________________________________________
15775 [  6839] By: jhi                                   on 2000/08/26  14:12:23
15776         Log: no-install target a la make -n.
15777              
15778              Subject: [PATCH] make no-install (was Re: [PATCH] installation not quite silent yet.)
15779              From: <abigail@foad.org>
15780              Date: Sat, 26 Aug 2000 03:57:34 -0400
15781              Message-ID: <20000826075735.18912.qmail@foad.org>
15782      Branch: perl
15783            ! Makefile.SH installman installperl
15784 ____________________________________________________________________________
15785 [  6838] By: jhi                                   on 2000/08/26  14:06:33
15786         Log: Retract #6826 as the #6828 should be do the same
15787              in a More Correct Way.
15788      Branch: perl
15789            ! installperl
15790 ____________________________________________________________________________
15791 [  6837] By: jhi                                   on 2000/08/26  05:24:00
15792         Log: More casting.
15793      Branch: perl
15794            ! ext/Storable/Storable.xs
15795 ____________________________________________________________________________
15796 [  6836] By: jhi                                   on 2000/08/26  05:05:46
15797         Log: Nicer in decimal.
15798      Branch: perl
15799            ! ext/Storable/Storable.xs
15800 ____________________________________________________________________________
15801 [  6835] By: jhi                                   on 2000/08/26  05:03:50
15802         Log: There be no UVdf.
15803      Branch: perl
15804            ! ext/Storable/Storable.xs
15805 ____________________________________________________________________________
15806 [  6834] By: jhi                                   on 2000/08/26  05:00:18
15807         Log: Continue IVdfing and UVxfing.
15808      Branch: perl
15809            ! ext/Storable/Storable.xs
15810 ____________________________________________________________________________
15811 [  6833] By: jhi                                   on 2000/08/26  04:53:14
15812         Log: Use IVdf.
15813      Branch: perl
15814            ! ext/Storable/Storable.xs
15815 ____________________________________________________________________________
15816 [  6832] By: jhi                                   on 2000/08/26  04:40:41
15817         Log: Document PTR2XX and INT2PTR.
15818      Branch: perl
15819            ! pod/perlguts.pod
15820 ____________________________________________________________________________
15821 [  6831] By: jhi                                   on 2000/08/26  04:33:18
15822         Log: Use UVxf, PTR2UV, NVff.
15823      Branch: perl
15824            ! ext/Storable/Storable.xs
15825 ____________________________________________________________________________
15826 [  6830] By: jhi                                   on 2000/08/26  04:31:32
15827         Log: Update the test count.
15828      Branch: perl
15829            ! t/lib/trig.t
15830 ____________________________________________________________________________
15831 [  6829] By: jhi                                   on 2000/08/26  03:05:50
15832         Log: Subject: [PATCH] installation not quite silent yet.
15833              From: <abigail@foad.org>
15834              Date: Fri, 25 Aug 2000 20:07:53 -0400
15835              Message-ID: <20000826000753.7822.qmail@foad.org>
15836      Branch: perl
15837            ! installman installperl
15838 ____________________________________________________________________________
15839 [  6828] By: jhi                                   on 2000/08/26  03:05:14
15840         Log: Subject: Re: [ID 20000825.019] Not OK: perl v5.7.0 +SUIDMAIL +DEVEL6820 on alpha-dec_osf 5.1 (UNINSTALLED) 
15841              From: Spider Boardman <spider@web.zk3.dec.com>
15842              Date: Fri, 25 Aug 2000 19:12:40 -0400
15843              Message-Id: <200008252312.TAA17828@leggy.zk3.dec.com>
15844      Branch: perl
15845            ! gv.c
15846 ____________________________________________________________________________
15847 [  6827] By: jhi                                   on 2000/08/25  23:54:34
15848         Log: Support preserving extremely big/small angles.
15849      Branch: perl
15850            ! lib/Math/Trig.pm pod/perldelta.pod t/lib/trig.t
15851 ____________________________________________________________________________
15852 [  6826] By: jhi                                   on 2000/08/25  23:01:20
15853         Log: Patch installperl to be long double-aware.
15854              
15855              Subject: Re: [PATCH] [ID 20000825.019] Not OK: perl v5.7.0 +SUIDMAIL +DEVEL6820 on alpha-dec_osf 5.1 (UNINSTALLED) 
15856              From: Spider Boardman <spider@web.zk3.dec.com>
15857              Date: Fri, 25 Aug 2000 18:15:23 -0400
15858              Message-Id: <200008252215.SAA28740@leggy.zk3.dec.com>
15859      Branch: perl
15860            ! installperl
15861 ____________________________________________________________________________
15862 [  6825] By: jhi                                   on 2000/08/25  22:58:25
15863         Log: Remove duplicately applied patch shards.
15864              
15865              Subject: [ID 20000825.012] [PATCH@6822] t/lib/cgi-html.t produces ugly cruft during 'make test'
15866              From: Spider Boardman <spider@leggy.zk3.dec.com>
15867              Date: Fri, 25 Aug 2000 16:45:03 -0400
15868              Message-Id: <200008252045.QAA23518@leggy.zk3.dec.com>
15869      Branch: perl
15870            ! t/lib/cgi-html.t
15871 ____________________________________________________________________________
15872 [  6824] By: jhi                                   on 2000/08/25  22:57:00
15873         Log: Subject: [PATCH @6820] installman under -w and strict (was Re: [PATCH] More silencing of installman.)
15874              From: Daniel Chetlin <daniel@chetlin.com>
15875              Date: Fri, 25 Aug 2000 12:23:16 -0700
15876              Message-ID: <20000825122316.A10250@ilmd.chetlin.org>
15877              
15878              Subject: Re: [PATCH @6820] installman under -w and strict (was Re: [PATCH] More silencing of installman.)
15879              From: Daniel Chetlin <daniel@chetlin.com>
15880              Date: Fri, 25 Aug 2000 14:47:19 -0700
15881              Message-ID: <20000825144719.A20587@ilmd.chetlin.org>
15882      Branch: perl
15883            ! installman
15884 ____________________________________________________________________________
15885 [  6823] By: jhi                                   on 2000/08/25  22:44:17
15886         Log: Timestamp problem?
15887      Branch: perl
15888            ! uconfig.h uconfig.sh
15889 ____________________________________________________________________________
15890 [  6822] By: jhi                                   on 2000/08/25  19:01:06
15891         Log: One forgotten file from #6816.
15892      Branch: perl
15893            ! vos/config.h
15894 ____________________________________________________________________________
15895 [  6821] By: jhi                                   on 2000/08/25  18:56:39
15896         Log: Regen Changes.
15897      Branch: perl
15898            ! Changes patchlevel.h
15899 ____________________________________________________________________________
15900 [  6820] By: jhi                                   on 2000/08/25  18:52:35
15901         Log: Fix Changes ordering.
15902      Branch: perl
15903            ! Changes
15904 ____________________________________________________________________________
15905 [  6819] By: jhi                                   on 2000/08/25  18:50:25
15906         Log: Update Changes.
15907      Branch: perl
15908            ! Changes patchlevel.h
15909 ____________________________________________________________________________
15910 [  6818] By: jhi                                   on 2000/08/25  18:47:45
15911         Log: Tweak the sfio/useperlio logic, hopefully as wished in
15912              
15913              Subject: [ID 20000825.004] Not OK: perl v5.7.0 +SUIDMAIL +DEVEL6804 on i586-linux 2.2.12 (UNINSTALLED)
15914              From: Nicholas Clark <nick@babyhippo.co.uk>
15915              Date: Fri, 25 Aug 2000 12:01:45 +0100
15916              Message-Id: <E13SHF3-0005I9-00@fruitbat.babyhippo.co.uk>
15917      Branch: metaconfig/U/perl
15918            ! d_sfio.U
15919      Branch: perl
15920            ! Configure
15921 ____________________________________________________________________________
15922 [  6817] By: jhi                                   on 2000/08/25  18:32:51
15923         Log: Allow microperl to assume <math.h>, without it the math
15924              functions like floor() are assumed to return int, which makes
15925              for core dumps in machines where integer and floating register
15926              don't mix.
15927      Branch: perl
15928            ! uconfig.h uconfig.sh
15929 ____________________________________________________________________________
15930 [  6816] By: jhi                                   on 2000/08/25  18:27:17
15931         Log: AIX 4.3.3 has SOCKS in libc with a differently named init routine,
15932              the problem reported in
15933              
15934              Subject: [ID 20000825.007] Building stable 5.6.0 on AIX 4.3.3 using SOCKS
15935              From: danhale@us.ibm.com
15936              Date: Fri, 25 Aug 2000 10:58:06 -0400
15937              Message-Id: <85256946.005238A3.00@d54mta02.raleigh.ibm.com>
15938      Branch: metaconfig/U/perl
15939            + d_socks5_init.U
15940      Branch: perl
15941            ! Configure INSTALL config_h.SH configure.com epoc/config.sh
15942            ! perl.c uconfig.h uconfig.sh vos/config.def vos/config.h
15943            ! vos/config.pl vos/config_h.SH_orig win32/config.bc
15944            ! win32/config.gc win32/config.vc
15945 ____________________________________________________________________________
15946 [  6815] By: jhi                                   on 2000/08/25  17:43:31
15947         Log: A solution for the retrieve_fd autosplit warning,
15948              idea suggested by Mike Guy.
15949      Branch: perl
15950            ! ext/Storable/Storable.pm
15951 ____________________________________________________________________________
15952 [  6814] By: jhi                                   on 2000/08/25  17:16:03
15953         Log: Add install-silent target.
15954      Branch: perl
15955            ! Makefile.SH
15956 ____________________________________________________________________________
15957 [  6813] By: jhi                                   on 2000/08/25  17:14:23
15958         Log: Subject: Re: [PATCH] More silencing of installman.
15959              From: <abigail@foad.org>
15960              Date: Thu, 24 Aug 2000 19:27:03 -0400
15961              Message-ID: <20000824232703.7001.qmail@foad.org>
15962              
15963              Subject: Re: [PATCH] More silencing of installman.
15964              From: <abigail@foad.org>
15965              Date: Fri, 25 Aug 2000 03:00:58 -0400
15966              Message-ID: <20000825070058.10697.qmail@foad.org>
15967      Branch: perl
15968            ! installman
15969 ____________________________________________________________________________
15970 [  6812] By: jhi                                   on 2000/08/25  17:11:28
15971         Log: installperl --verbose and --silent.
15972              
15973              Subject: Re: [PATCH] More silencing of installman.
15974              From: <abigail@foad.org>
15975              Message-ID: <20000825064430.9719.qmail@foad.org>
15976              Date: Fri, 25 Aug 2000 02:44:30 -0400
15977      Branch: perl
15978            ! installperl
15979 ____________________________________________________________________________
15980 [  6811] By: jhi                                   on 2000/08/25  17:05:43
15981         Log: Subject: [ID 20000824.029] MakeMaker manifypods fails on DJGPP systems
15982              From: "Peter J. Farley III" <pjfarley@banet.net>
15983              Date: Thu, 24 Aug 2000 21:58:03 -0400
15984              Message-Id: <4.3.1.0.20000824215500.00ac3df0@pop5.banet.net>
15985              
15986              (applied slightly modified)
15987      Branch: perl
15988            ! lib/ExtUtils/MM_Unix.pm
15989 ____________________________________________________________________________
15990 [  6810] By: jhi                                   on 2000/08/25  17:01:18
15991         Log: Missing parts of 
15992              
15993              Subject: [PATCH: 6789] some endl fixes for VMS wackiness
15994              From: Peter Prymmer <pvhp@forte.com>
15995              Date: Wed, 23 Aug 2000 13:58:31 -0700 (PDT)
15996              Message-ID: <Pine.OSF.4.10.10008231351000.126820-100000@aspara.forte.com>
15997      Branch: perl
15998            ! t/lib/cgi-html.t
15999 ____________________________________________________________________________
16000 [  6809] By: jhi                                   on 2000/08/25  16:46:32
16001         Log: Subject: [PATCH perl@6805, 5.6.0, 5.005_03] prevent rare Perl hang on VMS
16002              From: "Craig A. Berry" <craig.berry@psinetcs.com>
16003              Date: Thu, 24 Aug 2000 19:13:11 -0500
16004              Message-Id: <4.3.2.7.2.20000824174417.02479ef8@exchi01>
16005      Branch: perl
16006            ! vms/vms.c
16007 ____________________________________________________________________________
16008 [  6808] By: jhi                                   on 2000/08/25  16:39:22
16009         Log: Subject: [PATCH: 6805] several more tweaks to configure.com
16010              From: Peter Prymmer <pvhp@forte.com>
16011              Date: Thu, 24 Aug 2000 16:25:48 -0700 (PDT)
16012              Message-ID: <Pine.OSF.4.10.10008241623420.181493-100000@aspara.forte.com>
16013      Branch: perl
16014            ! configure.com
16015 ____________________________________________________________________________
16016 [  6807] By: jhi                                   on 2000/08/25  16:36:37
16017         Log: Better wording for the vec lvalue diagnostic.
16018              
16019              Subject: Re: [PATCH] Re: [ID 20000821.008] Negitive numbers with vec dumps core
16020              From: Ronald J Kimball <rjk@linguist.dartmouth.edu>
16021              Date: Wed, 23 Aug 2000 14:12:16 -0400
16022              Message-ID: <20000823141215.A173200@linguist.dartmouth.edu>
16023      Branch: perl
16024            ! pod/perldiag.pod
16025 ____________________________________________________________________________
16026 [  6806] By: jhi                                   on 2000/08/24  18:17:22
16027         Log: Subject: [PATCH] More silencing of installman.
16028              From: <abigail@foad.org>
16029              Date: Thu, 24 Aug 2000 14:01:44 -0400
16030              Message-ID: <20000824180144.20062.qmail@foad.org>
16031      Branch: perl
16032            ! installman
16033 ____________________________________________________________________________
16034 [  6805] By: jhi                                   on 2000/08/24  15:00:31
16035         Log: Update Changes.
16036      Branch: perl
16037            ! Changes patchlevel.h
16038 ____________________________________________________________________________
16039 [  6804] By: jhi                                   on 2000/08/24  14:59:07
16040         Log: Regen perltoc.
16041      Branch: perl
16042            ! pod/perltoc.pod
16043 ____________________________________________________________________________
16044 [  6803] By: jhi                                   on 2000/08/24  14:44:39
16045         Log: Show the doc file, not the temp file.
16046      Branch: perl
16047            ! installman
16048 ____________________________________________________________________________
16049 [  6802] By: jhi                                   on 2000/08/24  14:41:53
16050         Log: Continue silencing.
16051      Branch: perl
16052            ! installman
16053 ____________________________________________________________________________
16054 [  6801] By: jhi                                   on 2000/08/24  14:34:40
16055         Log: Actually do something with the silencer option.
16056      Branch: perl
16057            ! installman
16058 ____________________________________________________________________________
16059 [  6800] By: jhi                                   on 2000/08/24  14:26:22
16060         Log: Make installman to recognize the silence flag -S.
16061      Branch: perl
16062            ! installman
16063 ____________________________________________________________________________
16064 [  6799] By: jhi                                   on 2000/08/24  13:49:38
16065         Log: DOS patches and portability/porting notes, from Tim Jenness.
16066      Branch: perl
16067            ! lib/File/Temp.pm
16068 ____________________________________________________________________________
16069 [  6798] By: jhi                                   on 2000/08/24  13:48:27
16070         Log: Create directories in silence.
16071              
16072              Subject: [PATCH] Another silencer for MakeMaker
16073              From: andreas.koenig@anima.de (Andreas J. Koenig)
16074              Date: 24 Aug 2000 14:18:52 +0200
16075              Message-ID: <m3zom297ir.fsf@ak-71.mind.de>
16076      Branch: perl
16077            ! lib/ExtUtils/Command.pm
16078 ____________________________________________________________________________
16079 [  6797] By: jhi                                   on 2000/08/24  13:46:42
16080         Log: More liberal parsing of version numbers.
16081              
16082              Subject: Re: CPAN.pm beta for testing available
16083              From: andreas.koenig@anima.de (Andreas J. Koenig)
16084              Date: 24 Aug 2000 13:51:57 +0200
16085              Message-ID: <m34s4aanc2.fsf@ak-71.mind.de>
16086      Branch: perl
16087            ! lib/CPAN.pm
16088 ____________________________________________________________________________
16089 [  6796] By: jhi                                   on 2000/08/24  13:44:36
16090         Log: Make "make install" by default silent.  A new "install-verbose"
16091              target is verbose.
16092      Branch: perl
16093            ! Makefile.SH
16094 ____________________________________________________________________________
16095 [  6795] By: jhi                                   on 2000/08/24  13:39:14
16096         Log: Add silencer flags to installperl.
16097              
16098              Subject: [PATCH] Making installperl silent.
16099              From: <abigail@foad.org>
16100              Date: Thu, 24 Aug 2000 05:01:45 -0400
16101              Message-ID: <20000824090145.13141.qmail@foad.org>
16102      Branch: perl
16103            ! installperl
16104 ____________________________________________________________________________
16105 [  6794] By: jhi                                   on 2000/08/24  13:35:50
16106         Log: installperl couldn't tell whether it had run tests or not.
16107              
16108              Subject: [PATCH] Re: installperl and t/TEST
16109              From: <abigail@foad.org>
16110              Date: Thu, 24 Aug 2000 04:00:53 -0400
16111              Message-ID: <20000824080053.2494.qmail@foad.org>
16112      Branch: perl
16113            ! Makefile.SH installperl
16114 ____________________________________________________________________________
16115 [  6793] By: jhi                                   on 2000/08/24  13:27:50
16116         Log: Drop the separate perlbc, perlcc -b should be enough.
16117      Branch: perl
16118            - utils/perlbc.PL
16119            ! MANIFEST pod/perldelta.pod pod/perlutil.pod utils/Makefile
16120 ____________________________________________________________________________
16121 [  6792] By: jhi                                   on 2000/08/24  04:41:30
16122         Log: Upgrade to Storable 0.7.4, from Raphael Manfredi,
16123              plus the typo fix from Peter Prymmer.
16124      Branch: perl
16125            ! ext/Storable/ChangeLog ext/Storable/Makefile.PL
16126            ! ext/Storable/Storable.pm ext/Storable/Storable.xs
16127 ____________________________________________________________________________
16128 [  6791] By: jhi                                   on 2000/08/24  02:10:43
16129         Log: Replace #6705 with a minimal doc patch.
16130              
16131              Subject: [PATCH 5.6.0] replace change #6705
16132              From: Jan Dubois <jand@ActiveState.com>
16133              Date: Wed, 23 Aug 2000 18:31:51 -0700
16134              Message-ID: <dau8qsolaurdcbom4810gfuhbjegemtr58@4ax.com>
16135      Branch: perl
16136            ! lib/Win32.pod win32/win32.c
16137 ____________________________________________________________________________
16138 [  6790] By: jhi                                   on 2000/08/23  17:52:00
16139         Log: Subject: [PATCH] Re: [ID 20000821.008] Negitive numbers with vec dumps core
16140              From: Mike Guy <mjtg@cam.ac.uk>
16141              Date: Wed, 23 Aug 2000 18:38:46 +0100
16142              Message-Id: <E13ReUA-0000vC-00@virgo.cus.cam.ac.uk>
16143      Branch: perl
16144            ! doop.c pod/perldiag.pod pod/perlfunc.pod t/op/vec.t
16145 ____________________________________________________________________________
16146 [  6789] By: jhi                                   on 2000/08/23  15:34:21
16147         Log: Update Changes.
16148      Branch: perl
16149            ! Changes patchlevel.h
16150 ____________________________________________________________________________
16151 [  6788] By: jhi                                   on 2000/08/23  15:33:40
16152         Log: Subject: [PATCH] (Mac OS X): Don't #define environ unless PERL_CORE
16153              From: Wilfredo Sánchez <wsanchez@apple.com>
16154              Date: Tue, 22 Aug 2000 19:31:27 -0700
16155              Message-Id: <200008230231.TAA00461@ns1.abstrata.com>
16156      Branch: perl
16157            ! perl.h
16158 ____________________________________________________________________________
16159 [  6787] By: jhi                                   on 2000/08/23  15:29:31
16160         Log: Subject: [ID 20000823.004] [PATCH 5.6.0+] Pod::Html is too self-contained
16161              From: Spider Boardman <spider@leggy.zk3.dec.com>
16162              Date: Wed, 23 Aug 2000 10:33:23 -0400
16163              Message-Id: <200008231433.KAA28122@leggy.zk3.dec.com>
16164      Branch: perl
16165            ! lib/Pod/Html.pm
16166 ____________________________________________________________________________
16167 [  6786] By: jhi                                   on 2000/08/23  15:28:11
16168         Log: Bad makefile.
16169      Branch: perl
16170            ! ext/B/Makefile.PL
16171 ____________________________________________________________________________
16172 [  6785] By: jhi                                   on 2000/08/23  14:37:04
16173         Log: Update Changes.
16174      Branch: perl
16175            ! Changes patchlevel.h
16176 ____________________________________________________________________________
16177 [  6784] By: jhi                                   on 2000/08/23  13:58:41
16178         Log: Portability fix from Hugo van der Sanden.
16179      Branch: perl
16180            ! ext/re/Makefile.PL
16181 ____________________________________________________________________________
16182 [  6783] By: jhi                                   on 2000/08/23  13:53:53
16183         Log: Storable support, v-version fixes.
16184              
16185              Subject: CPAN.pm beta for testing available
16186              From: andreas.koenig@anima.de (Andreas J. Koenig)
16187              Date: 22 Aug 2000 23:31:33 +0200
16188              Message-ID: <m3hf8dc79m.fsf@ak-71.mind.de>
16189      Branch: perl
16190            ! lib/CPAN.pm lib/CPAN/FirstTime.pm
16191 ____________________________________________________________________________
16192 [  6782] By: jhi                                   on 2000/08/23  13:51:26
16193         Log: Mac and other portability updates from Chris Nandor.
16194      Branch: perl
16195            ! pod/perlmodinstall.pod
16196 ____________________________________________________________________________
16197 [  6781] By: jhi                                   on 2000/08/23  13:47:33
16198         Log: Subject: [PATCH: 6778] fix a small typo in Storable.xs
16199              From: Peter Prymmer <pvhp@forte.com>
16200              Date: Tue, 22 Aug 2000 16:20:41 -0700 (PDT)
16201              Message-ID: <Pine.OSF.4.10.10008221616430.68568-100000@aspara.forte.com>
16202      Branch: perl
16203            ! ext/Storable/Storable.xs
16204 ____________________________________________________________________________
16205 [  6780] By: jhi                                   on 2000/08/23  13:33:34
16206         Log: VMS MMS (make) wants null action.
16207      Branch: perl
16208            ! ext/B/Makefile.PL
16209 ____________________________________________________________________________
16210 [  6779] By: jhi                                   on 2000/08/22  19:44:47
16211         Log: Forgot portability nit.
16212      Branch: perl
16213            ! t/lib/st-forgive.t
16214 ____________________________________________________________________________
16215 [  6778] By: jhi                                   on 2000/08/22  19:35:25
16216         Log: Be portable.
16217      Branch: perl
16218            ! ext/B/Makefile.PL t/lib/st-forgive.t t/lib/st-retrieve.t
16219            ! t/lib/st-store.t
16220 ____________________________________________________________________________
16221 [  6777] By: jhi                                   on 2000/08/22  18:50:53
16222         Log: Update Changes.
16223      Branch: perl
16224            ! Changes patchlevel.h
16225 ____________________________________________________________________________
16226 [  6776] By: jhi                                   on 2000/08/22  18:44:46
16227         Log: cSVOPo_*v things index into the current PL_curpad
16228              under ithreads, which is different from the curpad
16229              used by the XSUB.  (In other words, the code as-is
16230              before this patch wouldn't work under ithreads.)
16231              From Sarathy.
16232      Branch: perl
16233            ! ext/B/B.xs
16234 ____________________________________________________________________________
16235 [  6775] By: jhi                                   on 2000/08/22  18:18:37
16236         Log: Make the selection of NVff et al stricter.
16237      Branch: metaconfig/U/perl
16238            ! perlxvf.U
16239      Branch: perl
16240            ! Configure config_h.SH
16241 ____________________________________________________________________________
16242 [  6774] By: jhi                                   on 2000/08/22  17:19:42
16243         Log: perldelta nits.
16244      Branch: perl
16245            ! pod/perldelta.pod
16246 ____________________________________________________________________________
16247 [  6773] By: jhi                                   on 2000/08/22  17:06:26
16248         Log: Long double fixes from Spider Boardman.
16249              
16250              Subject: [ID 20000821.014] Not OK: perl v5.7.0 +SUIDMAIL +DEVEL6756 on alpha-dec_osf 5.1 (UNINSTALLED)
16251              From: system PRIVILEGED account <root@peano.zk3.dec.com>
16252              Date: Mon, 21 Aug 2000 18:41:15 -0400 (EDT)
16253              Message-Id: <200008212241.SAA0000014255@peano.zk3.dec.com>
16254      Branch: perl
16255            ! t/lib/bigfltpm.t t/lib/st-06compat.t
16256 ____________________________________________________________________________
16257 [  6772] By: jhi                                   on 2000/08/22  15:04:53
16258         Log: Update Changes.
16259      Branch: perl
16260            ! Changes patchlevel.h
16261 ____________________________________________________________________________
16262 [  6771] By: jhi                                   on 2000/08/22  15:01:44
16263         Log: perldelta fixes from Hugo van der Sanden.
16264      Branch: perl
16265            ! pod/perldelta.pod
16266 ____________________________________________________________________________
16267 [  6770] By: jhi                                   on 2000/08/22  14:34:49
16268         Log: Subject: [PATCH blead] nextchar() abuse misses an optimisation
16269              From: Hugo <hv@crypt.compulink.co.uk>
16270              Date: Tue, 22 Aug 2000 11:21:53 +0100
16271              Message-Id: <200008221021.LAA03332@crypt.compulink.co.uk>
16272      Branch: perl
16273            ! regcomp.c
16274 ____________________________________________________________________________
16275 [  6769] By: jhi                                   on 2000/08/22  14:30:02
16276         Log: Add Yitzchak, reformat.
16277      Branch: perl
16278            ! Changes config_h.SH
16279 ____________________________________________________________________________
16280 [  6768] By: jhi                                   on 2000/08/22  14:21:35
16281         Log: Long double Gconvert fixes from Yitzchak Scott-Thoennes
16282              and Spider Boardman.
16283      Branch: metaconfig
16284            ! U/compline/d_gconvert.U
16285      Branch: perl
16286            ! Configure
16287 ____________________________________________________________________________
16288 [  6767] By: jhi                                   on 2000/08/22  14:11:24
16289         Log: Subject: Re: [PATCH] [ID 20000820.012] Not OK: perl v5.7.0 +SUIDMAIL +DEVEL6735 on
16290              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
16291              Date: Mon, 21 Aug 2000 19:08:31 -0700
16292              Message-ID: <fCeo5gzkgmhY092yn@efn.org>
16293      Branch: perl
16294            - ext/Storable/patchlevel.h
16295            ! MANIFEST ext/Storable/MANIFEST
16296 ____________________________________________________________________________
16297 [  6766] By: jhi                                   on 2000/08/22  13:49:29
16298         Log: Subject: [PATCH: 6757] configure.com updates and syslog build
16299              From: Peter Prymmer <pvhp@forte.com>
16300              Date: Mon, 21 Aug 2000 17:15:35 -0700 (PDT)
16301              Message-ID: <Pine.OSF.4.10.10008211653270.17516-100000@aspara.forte.com>
16302      Branch: perl
16303            ! configure.com ext/Storable/Makefile.PL
16304 ____________________________________________________________________________
16305 [  6765] By: jhi                                   on 2000/08/22  13:44:59
16306         Log: Subject: [PATCH blead] B:: missing dependency
16307              From: Hugo <hv@crypt.compulink.co.uk>
16308              Date: Tue, 22 Aug 2000 06:44:33 +0100
16309              Message-Id: <200008220544.GAA31051@crypt.compulink.co.uk>
16310      Branch: perl
16311            ! ext/B/Makefile.PL
16312 ____________________________________________________________________________
16313 [  6764] By: jhi                                   on 2000/08/22  13:38:12
16314         Log: More bytecompiler.
16315      Branch: perl
16316            ! pod/perlutil.pod utils/Makefile utils/perlbc.PL
16317 ____________________________________________________________________________
16318 [  6763] By: jhi                                   on 2000/08/22  13:36:44
16319         Log: Bytecompiler patches from Benjamin Stuhl.
16320      Branch: perl
16321            ! bytecode.pl embedvar.h ext/B/B.pm ext/B/B.xs
16322            ! ext/B/B/Asmdata.pm ext/B/B/Assembler.pm ext/B/B/Bytecode.pm
16323            ! ext/B/O.pm ext/B/defsubs_h.PL ext/ByteLoader/ByteLoader.pm
16324            ! ext/ByteLoader/ByteLoader.xs ext/ByteLoader/bytecode.h
16325            ! ext/ByteLoader/byterun.c ext/ByteLoader/byterun.h intrpvar.h
16326            ! perl.c perlapi.h pod/perldelta.pod
16327 ____________________________________________________________________________
16328 [  6762] By: jhi                                   on 2000/08/21  23:43:40
16329         Log: An obsoleted diagnostic.
16330      Branch: perl
16331            ! pod/perldelta.pod
16332 ____________________________________________________________________________
16333 [  6761] By: jhi                                   on 2000/08/21  23:01:45
16334         Log: The #6759 wasn't quite right.
16335      Branch: perl
16336            ! t/lib/st-06compat.t t/lib/st-blessed.t t/lib/st-canonical.t
16337            ! t/lib/st-dclone.t t/lib/st-forgive.t t/lib/st-freeze.t
16338            ! t/lib/st-overload.t t/lib/st-recurse.t t/lib/st-retrieve.t
16339            ! t/lib/st-store.t t/lib/st-tied.t t/lib/st-tiedhook.t
16340            ! t/lib/st-tieditems.t
16341 ____________________________________________________________________________
16342 [  6760] By: jhi                                   on 2000/08/21  22:35:49
16343         Log: Be verydeepclean.
16344      Branch: perl
16345            ! Makefile.SH
16346 ____________________________________________________________________________
16347 [  6759] By: jhi                                   on 2000/08/21  22:25:40
16348         Log: Subject: [PATCH: 6757] make new Storable tests forgiving of places where not built
16349              From: Peter Prymmer <pvhp@forte.com>
16350              Date: Mon, 21 Aug 2000 14:58:16 -0700 (PDT)
16351              Message-ID: <Pine.OSF.4.10.10008211456250.17516-100000@aspara.forte.com>
16352      Branch: perl
16353            ! t/lib/st-06compat.t t/lib/st-blessed.t t/lib/st-canonical.t
16354            ! t/lib/st-dclone.t t/lib/st-forgive.t t/lib/st-freeze.t
16355            ! t/lib/st-overload.t t/lib/st-recurse.t t/lib/st-retrieve.t
16356            ! t/lib/st-store.t t/lib/st-tied.t t/lib/st-tiedhook.t
16357            ! t/lib/st-tieditems.t
16358 ____________________________________________________________________________
16359 [  6758] By: jhi                                   on 2000/08/21  22:22:32
16360         Log: Few more casts, need reported in
16361              
16362              Subject: Re: [ID 20000821.010] OK: perl v5.7.0 +SUIDMAIL +DEVEL6756 on i586-linux-64all 2.2.16-9mdk (UNINSTALLED)
16363              From: Mike Stok <mike@stok.co.uk>
16364              Date: Mon, 21 Aug 2000 15:59:29 -0500 (CDT)
16365              Message-ID: <Pine.LNX.4.21.0008211558480.19081-100000@ratdog.stok.co.uk>
16366              
16367              and
16368              
16369              Subject: [ID 20000821.013] Not OK: perl v5.7.0 +SUIDMAIL +DEVEL6756 on i686-linux-64int 2.2.13
16370              From: abigail@foad.org
16371              Date: 21 Aug 2000 21:31:34 -0000
16372              Message-Id: <20000821213134.30170.qmail@foad.org>
16373      Branch: perl
16374            ! ext/Storable/Storable.xs
16375 ____________________________________________________________________________
16376 [  6757] By: jhi                                   on 2000/08/21  18:37:07
16377         Log: Update Changes.
16378      Branch: perl
16379            ! Changes patchlevel.h
16380 ____________________________________________________________________________
16381 [  6756] By: jhi                                   on 2000/08/21  18:34:02
16382         Log: A pod nit.
16383              
16384              Subject: [PATCH] pod/perlre.pod (was Re: [ID 20000821.007] $&, $1, etc. disappear when sub returns)
16385              From: <abigail@foad.org>
16386              Date: Mon, 21 Aug 2000 14:00:16 -0400
16387              Message-ID: <20000821180016.28627.qmail@foad.org>
16388      Branch: perl
16389            ! pod/perlre.pod
16390 ____________________________________________________________________________
16391 [  6755] By: jhi                                   on 2000/08/21  18:30:56
16392         Log: Use PodParser 1.18 new test.
16393      Branch: perl
16394            ! t/pod/special_seqs.t t/pod/special_seqs.xr
16395 ____________________________________________________________________________
16396 [  6754] By: jhi                                   on 2000/08/21  18:28:35
16397         Log: Apply some PodParser 1.18 patches; the Pod/Find.pm
16398              patches cannot be applied since #6712 conflicts.
16399      Branch: perl
16400            ! lib/Pod/InputObjects.pm lib/Pod/Parser.pm lib/Pod/Usage.pm
16401 ____________________________________________________________________________
16402 [  6753] By: jhi                                   on 2000/08/21  18:15:11
16403         Log: Weed out some smaller changes.
16404      Branch: perl
16405            ! pod/perldelta.pod
16406 ____________________________________________________________________________
16407 [  6752] By: jhi                                   on 2000/08/21  18:02:30
16408         Log: Also under djgpp the timestamps are funky.
16409      Branch: perl
16410            ! t/op/stat.t
16411 ____________________________________________________________________________
16412 [  6751] By: jhi                                   on 2000/08/21  17:55:56
16413         Log: Tweak the floating point output routine preferences.
16414      Branch: metaconfig
16415            ! U/compline/d_gconvert.U
16416      Branch: perl
16417            ! Configure
16418 ____________________________________________________________________________
16419 [  6750] By: jhi                                   on 2000/08/21  17:51:29
16420         Log: Unicos/mk requires elaborate paranoia.
16421      Branch: perl
16422            ! lib/Math/Complex.pm
16423 ____________________________________________________________________________
16424 [  6749] By: gsar                                  on 2000/08/21  16:53:31
16425         Log: use Cwd 'chdir' didn't set $ENV{PWD} correctly on Windows
16426      Branch: perl
16427            ! lib/Cwd.pm
16428 ____________________________________________________________________________
16429 [  6748] By: gsar                                  on 2000/08/21  16:22:19
16430         Log: free TLS slot properly on Windows
16431      Branch: perl
16432            ! thread.h win32/perllib.c win32/win32thread.h
16433 ____________________________________________________________________________
16434 [  6747] By: jhi                                   on 2000/08/21  16:20:58
16435         Log: Rename the macro argument because some preprocessors
16436              can't tell the difference and expand arguments also inside
16437              double quoted strings.
16438      Branch: perl
16439            ! regcomp.c
16440 ____________________________________________________________________________
16441 [  6746] By: jhi                                   on 2000/08/21  16:09:41
16442         Log: Support long doubles in Storable.
16443              
16444              Subject: Re: Not OK: perl v5.7.0 +SUIDMAIL +DEVEL6735 on i686-linux-thread-multi-64int 2.2.14-5.0 (UNINSTALLED)
16445              From: Radu Greab <radu@netsoft.ro>
16446              Date: Mon, 21 Aug 2000 18:05:59 +0300 (EET DST)
16447              Message-ID: <Pine.GSO.4.05.10008211804210.10137-100000@localhost>
16448      Branch: perl
16449            ! ext/Storable/Storable.xs
16450 ____________________________________________________________________________
16451 [  6745] By: jhi                                   on 2000/08/21  15:51:40
16452         Log: Subject: RE: [PATCH perl@6736] t/pragma/warn/9enabled assumes stdout buffered
16453              From: "Fifer, Eric" <EFifer@sanwaint.com>
16454              Date: Mon, 21 Aug 2000 15:34:49 +0100
16455              Message-ID: <779F20BCCE5AD31186A50008C75D9979171786@silldn_mail1.sanwaint.com>
16456      Branch: perl
16457            ! t/pragma/warn/9enabled
16458 ____________________________________________________________________________
16459 [  6744] By: jhi                                   on 2000/08/21  15:39:35
16460         Log: Document the endianness of Alpha more precisely.
16461      Branch: perl
16462            ! hints/unicos.sh pod/perldelta.pod pod/perlfunc.pod
16463            ! pod/perlport.pod
16464 ____________________________________________________________________________
16465 [  6743] By: jhi                                   on 2000/08/21  14:47:05
16466         Log: perldelta fixes from the p5p crowd.
16467      Branch: perl
16468            ! pod/perldelta.pod pod/perlop.pod
16469 ____________________________________________________________________________
16470 [  6742] By: jhi                                   on 2000/08/21  13:34:51
16471         Log: Update to Pod::LaTeX 0.53.
16472              
16473              Subject: [PATCH] lib/Pod/LaTeX.pm updates
16474              From: Tim Jenness <timj@jach.hawaii.edu>
16475              Date: Sun, 20 Aug 2000 23:09:48 -1000 (HST)
16476              Message-ID: <Pine.LNX.4.21.0008202308040.12047-100000@lapaki.jach.hawaii.edu>
16477      Branch: perl
16478            ! lib/Pod/LaTeX.pm
16479 ____________________________________________________________________________
16480 [  6741] By: jhi                                   on 2000/08/21  13:33:01
16481         Log: Subject: [PATCH] os2.c fix for use64bitint
16482              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
16483              Date: Mon, 21 Aug 2000 01:32:25 -0700
16484              Message-ID: <ZkOo5gzkgWEb092yn@efn.org>
16485      Branch: perl
16486            ! os2/os2.c
16487 ____________________________________________________________________________
16488 [  6740] By: jhi                                   on 2000/08/21  13:28:52
16489         Log: Array context keeps slithering in.
16490              
16491              Subject: Re: 5.7.0 getting really close, new snapshot: perldelta, Storable
16492              From: Daniel Chetlin <daniel@chetlin.com>
16493              Date: Sun, 20 Aug 2000 21:40:25 -0700
16494              Message-ID: <20000820214025.C29387@ilmd.chetlin.org>
16495      Branch: perl
16496            ! ext/Storable/Storable.xs lib/Pod/InputObjects.pm
16497            ! pod/perldebtut.pod
16498 ____________________________________________________________________________
16499 [  6739] By: jhi                                   on 2000/08/21  13:23:55
16500         Log: Big-endian quad fixes for Storable from Radu Greab,
16501              plus few explicit null casts for picky compilers.
16502      Branch: perl
16503            ! ext/Storable/Storable.xs
16504 ____________________________________________________________________________
16505 [  6738] By: gsar                                  on 2000/08/21  05:56:13
16506         Log: small tweaks for change#6705: avoid C++ style comments in C code;
16507              use Perl's malloc API rather than the low level system one
16508      Branch: perl
16509            ! win32/win32.c
16510 ____________________________________________________________________________
16511 [  6737] By: gsar                                  on 2000/08/21  05:35:41
16512         Log: add Storable to list of extensions on Windows
16513      Branch: perl
16514            ! win32/Makefile win32/makefile.mk
16515 ____________________________________________________________________________
16516 [  6736] By: jhi                                   on 2000/08/21  02:57:53
16517         Log: Update Changes.
16518      Branch: perl
16519            ! Changes patchlevel.h
16520 ____________________________________________________________________________
16521 [  6735] By: jhi                                   on 2000/08/21  02:57:20
16522         Log: Draft 0.
16523      Branch: perl
16524            ! pod/perldelta.pod
16525 ____________________________________________________________________________
16526 [  6734] By: jhi                                   on 2000/08/21  02:57:03
16527         Log: Add Storable 0.7.2 from Raphael Manfredi,
16528              plus the patch from
16529              
16530              Subject: Re: someone with too much time and a 64-bit box and interest in Storable?
16531              From: Radu Greab <radu@netsoft.ro>
16532              Date: Mon, 21 Aug 2000 03:10:05 +0300 (EEST)
16533              Message-ID: <Pine.LNX.4.10.10008210258160.1292-100000@busy.netsoft.ro>
16534              
16535              plus changes to get Storable to compile with
16536              picky ANSI compilers.
16537      Branch: perl
16538            + ext/Storable/ChangeLog ext/Storable/MANIFEST
16539            + ext/Storable/Makefile.PL ext/Storable/README
16540            + ext/Storable/Storable.pm ext/Storable/Storable.xs
16541            + ext/Storable/patchlevel.h t/lib/st-06compat.t
16542            + t/lib/st-blessed.t t/lib/st-canonical.t t/lib/st-dclone.t
16543            + t/lib/st-dump.pl t/lib/st-forgive.t t/lib/st-freeze.t
16544            + t/lib/st-overload.t t/lib/st-recurse.t t/lib/st-retrieve.t
16545            + t/lib/st-store.t t/lib/st-tied.t t/lib/st-tiedhook.t
16546            + t/lib/st-tieditems.t
16547            ! MANIFEST
16548 ____________________________________________________________________________
16549 [  6733] By: jhi                                   on 2000/08/21  02:29:09
16550         Log: The correct cleaning order is an art.
16551      Branch: perl
16552            ! Makefile.SH
16553 ____________________________________________________________________________
16554 [  6732] By: jhi                                   on 2000/08/21  01:23:39
16555         Log: The #6724 is here.
16556      Branch: perl
16557            ! t/lib/ftmp-security.t
16558 ____________________________________________________________________________
16559 [  6731] By: jhi                                   on 2000/08/20  23:17:03
16560         Log: s/this one/the 5.6.0 release/
16561      Branch: perl
16562            ! pod/perl56delta.pod
16563 ____________________________________________________________________________
16564 [  6730] By: jhi                                   on 2000/08/20  23:07:34
16565         Log: Mention perlebcdic and perlposix-bc.
16566      Branch: perl
16567            ! pod/perlport.pod
16568 ____________________________________________________________________________
16569 [  6729] By: jhi                                   on 2000/08/20  21:32:59
16570         Log: Document the number of exponent digits.
16571      Branch: perl
16572            ! pod/perlfunc.pod
16573 ____________________________________________________________________________
16574 [  6728] By: jhi                                   on 2000/08/20  21:16:47
16575         Log: Use File::Spec->tmpdir().
16576              
16577              Subject: Re: [ID 20000820.001] not OK - Perl 5.7.0 (uninstalled)
16578              From: Tim Jenness <timj@jach.hawaii.edu>
16579              Message-ID: <Pine.LNX.4.21.0008201057080.20544-100000@lapaki.jach.hawaii.edu>
16580              MIME-Version: 1.0
16581              Date: Sun, 20 Aug 2000 11:01:25 -1000 (HST)
16582      Branch: perl
16583            ! utils/perlbug.PL
16584 ____________________________________________________________________________
16585 [  6727] By: jhi                                   on 2000/08/20  20:43:32
16586         Log: Update Changes.
16587      Branch: perl
16588            ! Changes patchlevel.h
16589 ____________________________________________________________________________
16590 [  6726] By: jhi                                   on 2000/08/20  20:41:44
16591         Log: The veryclean target needs to clobber.
16592      Branch: perl
16593            ! Makefile.SH
16594 ____________________________________________________________________________
16595 [  6725] By: jhi                                   on 2000/08/20  20:37:38
16596         Log: Document odd vs even subreleases and -Dusedevel.
16597      Branch: perl
16598            ! INSTALL
16599 ____________________________________________________________________________
16600 [  6724] By: jhi                                   on 2000/08/20  19:58:05
16601         Log: Use temporary directory instead of current directory.
16602              
16603              Subject: Re: [ID 20000816.011] Test failure in lib/ftmp-security.t
16604              From: Tim Jenness <timj@jach.hawaii.edu>
16605              Date: Sat, 19 Aug 2000 10:26:07 -1000 (HST)
16606              Message-ID: <Pine.LNX.4.21.0008191015090.13727-100000@lapaki.jach.hawaii.edu>
16607      Branch: perl
16608            ! t/lib/ftmp-security.t
16609 ____________________________________________________________________________
16610 [  6723] By: jhi                                   on 2000/08/20  19:55:55
16611         Log: Subject: [PATCH] Silence MakeMaker (Was: installman)
16612              From: andreas.koenig@anima.de (Andreas J. Koenig)
16613              Date: 20 Aug 2000 15:52:03 +0200
16614              Message-ID: <m3em3khwfw.fsf_-_@ak-71.mind.de>
16615      Branch: perl
16616            ! lib/ExtUtils/MM_Unix.pm
16617 ____________________________________________________________________________
16618 [  6722] By: jhi                                   on 2000/08/20  19:46:01
16619         Log: Update to CGI 2.72, from Lincoln Stein.
16620      Branch: perl
16621            ! lib/CGI.pm
16622 ____________________________________________________________________________
16623 [  6721] By: jhi                                   on 2000/08/20  19:43:54
16624         Log: Subject: Re: [ID 20000819.002] Not OK: perl v5.7.0 +SUIDMAIL +DEVEL6707 on i686-linux 2.2.5-16 (UNINSTALLED)
16625              From: Radu Greab <radu@netsoft.ro>
16626              Date: Sun, 20 Aug 2000 18:03:26 +0300 (EEST)
16627              Message-ID: <Pine.LNX.4.10.10008201753260.1292-100000@busy.netsoft.ro>
16628      Branch: perl
16629            ! ext/GDBM_File/GDBM_File.xs
16630 ____________________________________________________________________________
16631 [  6720] By: jhi                                   on 2000/08/20  19:42:01
16632         Log: pp_open() could pass an uninitialized filename down to do_open9().
16633      Branch: perl
16634            ! pp_sys.c
16635 ____________________________________________________________________________
16636 [  6719] By: jhi                                   on 2000/08/20  14:06:41
16637         Log: UTF8 concat fixes.
16638              
16639              Subject: [PATCH @6713] Re: [ID 20000815.006] latest patched perl core dumps
16640              From: Hugo <hv@crypt.compulink.co.uk>
16641              Date: Sun, 20 Aug 2000 07:30:46 +0100
16642              Message-Id: <200008200630.HAA18053@crypt.compulink.co.uk>
16643      Branch: perl
16644            ! pp_hot.c t/op/append.t
16645 ____________________________________________________________________________
16646 [  6718] By: jhi                                   on 2000/08/20  02:09:37
16647         Log: Let's try #6717 again.
16648      Branch: perl
16649            ! lib/File/Temp.pm
16650 ____________________________________________________________________________
16651 [  6717] By: jhi                                   on 2000/08/20  01:56:55
16652         Log: Subject: [PATCH perl@6698] File::Temp fix-ups for OpenVMS
16653              From: "Craig A. Berry" <craig.berry@metamorgs.com>
16654              Date: Sat, 19 Aug 2000 18:15:39 -0500
16655              Message-Id: <p04320402b5c4c10bc280@[192.168.56.169]>
16656      Branch: perl
16657            ! lib/File/Temp.pm
16658 ____________________________________________________________________________
16659 [  6716] By: jhi                                   on 2000/08/19  15:50:11
16660         Log: Update Changes.
16661      Branch: perl
16662            ! Changes patchlevel.h
16663 ____________________________________________________________________________
16664 [  6715] By: jhi                                   on 2000/08/19  15:39:09
16665         Log: Subject: [ID 20000817.023] endianness description in perlfunc.pod
16666              From: Jonathan D Johnston <jdjohnston2@juno.com>
16667              Date: Thu, 17 Aug 2000 23:13:01 -0400       
16668              Message-Id: <20000817.231304.-743351.1.jdjohnston2@juno.com>
16669      Branch: perl
16670            ! pod/perlfunc.pod
16671 ____________________________________________________________________________
16672 [  6714] By: jhi                                   on 2000/08/19  15:34:04
16673         Log: Introduce a 'veryclean' target that is like 'distclean'
16674              but also removes *~ and *.orig.
16675      Branch: perl
16676            ! Makefile.SH lib/ExtUtils/MM_Unix.pm pod/Makefile.SH
16677            ! utils/Makefile x2p/Makefile.SH
16678 ____________________________________________________________________________
16679 [  6713] By: jhi                                   on 2000/08/19  14:15:45
16680         Log: Put back the long double avoidance code to POSIX.xs
16681              because VMS seems to need it still.
16682      Branch: perl
16683            ! ext/POSIX/POSIX.xs
16684 ____________________________________________________________________________
16685 [  6712] By: jhi                                   on 2000/08/19  14:10:41
16686         Log: Subject: [PATCH: 6698] was Re: [PATCH: 6640] VMS Makefile.SH update (fwd)
16687              From: Peter Prymmer <pvhp@forte.com>
16688              Date: Fri, 18 Aug 2000 18:18:31 -0700 (PDT)
16689              Message-ID: <Pine.OSF.4.10.10008181818100.322420-100000@aspara.forte.com>
16690      Branch: perl
16691            ! lib/Pod/Find.pm t/pod/find.t
16692 ____________________________________________________________________________
16693 [  6711] By: jhi                                   on 2000/08/19  14:09:19
16694         Log: Subject: [PATCH: 6698] tidy up the temp files left by peek tests on VMS
16695              From: Peter Prymmer <pvhp@forte.com>
16696              Date: Fri, 18 Aug 2000 17:54:10 -0700 (PDT)
16697              Message-ID: <Pine.OSF.4.10.10008181751350.322420-100000@aspara.forte.com>
16698              cc: vmsperl@perl.org
16699      Branch: perl
16700            ! t/lib/peek.t
16701 ____________________________________________________________________________
16702 [  6710] By: jhi                                   on 2000/08/19  14:08:01
16703         Log: Subject: [PATCH 5.6.0+] fix for Win32::GetFullPathName and Win32::GetShortPathName
16704              From: Jan Dubois <jand@ActiveState.com>
16705              Date: Fri, 18 Aug 2000 16:31:48 -0700
16706              Message-ID: <2ihrps00u6qkpjtfq6f2b1d1ndkrs7l04u@4ax.com>
16707      Branch: perl
16708            ! win32/win32.c
16709 ____________________________________________________________________________
16710 [  6709] By: jhi                                   on 2000/08/19  14:06:57
16711         Log: Fix a core dump in lib/selfloader under -DDEBUGGING.
16712              
16713              Subject: PATCH @6698 for [ID 20000817.007] Not OK: perl v5.7.0 +SUIDMAIL +DEVEL6676 on alpha-dec_osf 4.0f (UNINSTALLED) 
16714              From: Spider.Boardman@Orb.Nashua.NH.US
16715              Date: Fri, 18 Aug 2000 18:41:14 -0400
16716              Message-Id: <200008182241.SAA29667@Orb.Nashua.NH.US>
16717      Branch: perl
16718            ! regcomp.c
16719 ____________________________________________________________________________
16720 [  6708] By: jhi                                   on 2000/08/18  22:04:49
16721         Log: Update Changes.
16722      Branch: perl
16723            ! Changes patchlevel.h
16724 ____________________________________________________________________________
16725 [  6707] By: jhi                                   on 2000/08/18  21:55:14
16726         Log: Add warnif(), check warnings further up the stack,
16727              all the warnings functions now can take an optional object reference.
16728              
16729              Subject: [PATCH bleedperl@6691] warnings pragma update
16730              From: "Paul Marquess" <Paul.Marquess@btinternet.com>
16731              Date: Fri, 18 Aug 2000 22:42:06 +0100
16732              Message-ID: <000c01c0095d$278e0040$ca01073e@bfs.phone.com>
16733      Branch: perl
16734            ! lib/Class/Struct.pm lib/Tie/Handle.pm lib/Tie/Hash.pm
16735            ! lib/Tie/Scalar.pm lib/fields.pm lib/syslog.pl lib/warnings.pm
16736            ! pod/perllexwarn.pod t/pragma/warn/9enabled warnings.pl
16737 ____________________________________________________________________________
16738 [  6706] By: jhi                                   on 2000/08/18  21:41:45
16739         Log: Typo in pp_complement().
16740              
16741              Subject: [PATCH perl-current] Deparse
16742              From: Peter Scott <Peter@PSDT.com>
16743              Date: Fri, 18 Aug 2000 12:44:37 -0700
16744              Message-Id: <4.3.2.7.2.20000818124024.00ba2be0@psdt.com>
16745      Branch: perl
16746            ! ext/B/B/Deparse.pm
16747 ____________________________________________________________________________
16748 [  6705] By: jhi                                   on 2000/08/18  21:25:59
16749         Log: Subject: [PATCH 5.6.0+] fix for Win32::DomainName
16750              From: Jan Dubois <jand@ActiveState.com>
16751              Date: Fri, 18 Aug 2000 14:22:51 -0700
16752              Message-ID: <0o9rps458r29eb97h5csuq81b1eip4no33@4ax.com>
16753      Branch: perl
16754            ! lib/Win32.pod win32/win32.c
16755 ____________________________________________________________________________
16756 [  6704] By: jhi                                   on 2000/08/18  21:16:14
16757         Log: Don't eat leading os from index entries.
16758              
16759              Subject: Re: [ID 20000810.006] Pod::Man Ate My 'O'!
16760              From: Russ Allbery <rra@stanford.edu>
16761              Date: 10 Aug 2000 20:49:25 -0700
16762              Message-ID: <ylu2cs78ze.fsf@windlord.stanford.edu>
16763      Branch: perl
16764            ! lib/Pod/Man.pm
16765 ____________________________________________________________________________
16766 [  6703] By: jhi                                   on 2000/08/18  21:07:06
16767         Log: Add [[:blank:]] as suggested in
16768              
16769              Subject: [ID 20000716.024] [=cc=] / [:blank:]
16770              From: Jeffrey Friedl <jfriedl@fummy.dsl.yahoo.com>
16771              Date: Sun, 16 Jul 2000 17:55:29 -0700
16772              Message-Id: <200007170055.RAA23528@fummy.dsl.yahoo.com>
16773              
16774              (the [=cc=] has already been taken care of by #6439
16775              so the whole bug report can be closed)
16776              
16777              and make [[:space:]] to be equivalent to isspace(3)
16778              (as opposed to \s, which is isSPACE()).  The difference
16779              is that now [[:space:]] matches the mythical vertical tab,
16780              while \s doesn't.
16781      Branch: perl
16782            ! handy.h pod/perlre.pod pod/perlretut.pod regcomp.c regcomp.h
16783            ! regexec.c t/op/pat.t
16784 ____________________________________________________________________________
16785 [  6702] By: jhi                                   on 2000/08/18  18:47:47
16786         Log: The new tests were missing from #6415.
16787      Branch: perl
16788            ! t/op/bop.t
16789 ____________________________________________________________________________
16790 [  6701] By: jhi                                   on 2000/08/18  18:20:40
16791         Log: Document the NDBM_File and ODBM_File as SDBM_File
16792              was documented in #6417.
16793      Branch: perl
16794            ! ext/NDBM_File/NDBM_File.pm ext/ODBM_File/ODBM_File.pm
16795            ! ext/SDBM_File/SDBM_File.pm
16796 ____________________________________________________________________________
16797 [  6700] By: jhi                                   on 2000/08/18  18:10:39
16798         Log: Subject: [PATCH perl@6698] cygwin port
16799              From: "Fifer, Eric" <EFifer@sanwaint.com>
16800              Date: Fri, 18 Aug 2000 17:30:05 +0100
16801              Message-ID: <779F20BCCE5AD31186A50008C75D9979171784@silldn_mail1.sanwaint.com>
16802      Branch: perl
16803            ! lib/File/Temp.pm
16804 ____________________________________________________________________________
16805 [  6699] By: jhi                                   on 2000/08/18  16:21:49
16806         Log: Document code point which makes if (defined %stash::) to work
16807              (noted by Spider Boardman).
16808      Branch: perl
16809            ! op.c
16810 ____________________________________________________________________________
16811 [  6698] By: jhi                                   on 2000/08/18  13:43:27
16812         Log: Update Changes.
16813      Branch: perl
16814            ! Changes patchlevel.h
16815 ____________________________________________________________________________
16816 [  6697] By: jhi                                   on 2000/08/18  13:35:57
16817         Log: Tiny Getopt::Long patch from Johan Vromans.
16818      Branch: perl
16819            ! lib/Getopt/Long.pm t/lib/gol-basic.t t/lib/gol-oo.t
16820 ____________________________________________________________________________
16821 [  6696] By: jhi                                   on 2000/08/18  13:26:14
16822         Log: Subject: [ID 20000817.018] behaviour change 5.5.3 -> 5.6.0 re "Modification of a read-only value"
16823              From: Paul David Fardy <pdf@morgan.ucs.mun.ca>
16824              Date: Thu, 17 Aug 2000 17:23:40 -0230 (NDT)
16825              Message-Id: <200008171953.RAA17673@porthos.ucs.mun.ca>
16826      Branch: perl
16827            ! pod/perldiag.pod pod/perlsyn.pod
16828 ____________________________________________________________________________
16829 [  6695] By: jhi                                   on 2000/08/18  13:13:26
16830         Log: Subject: [PATCH] perlfunc.pod -- clarifying sprintf array argument issues
16831              From: Daniel Chetlin <daniel@chetlin.com>
16832              Date: Fri, 18 Aug 2000 03:13:36 -0700
16833              Message-ID: <20000818031336.B14165@ilmd.chetlin.org>
16834      Branch: perl
16835            ! pod/perlfunc.pod
16836 ____________________________________________________________________________
16837 [  6694] By: jhi                                   on 2000/08/18  13:08:05
16838         Log: Subject: [PATCH] perltrap.pod spring cleaning
16839              From: Daniel Chetlin <daniel@chetlin.com>
16840              Date: Fri, 18 Aug 2000 03:06:54 -0700
16841              Message-ID: <20000818030654.A14165@ilmd.chetlin.org>
16842              
16843              plus Mike Guy's nitfix.
16844      Branch: perl
16845            ! pod/perltrap.pod
16846 ____________________________________________________________________________
16847 [  6693] By: jhi                                   on 2000/08/18  13:00:26
16848         Log: Unbuffer the output.
16849              
16850              Subject: Re: [ID 20000817.017] Not OK: perl v5.7.0 +SUIDMAIL +DEVEL6680 on
16851              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
16852              Date: Thu, 17 Aug 2000 18:39:29 -0700
16853              Message-ID: <RPJn5gzkgydf092yn@efn.org>
16854      Branch: perl
16855            ! t/op/fork.t
16856 ____________________________________________________________________________
16857 [  6692] By: jhi                                   on 2000/08/18  05:19:17
16858         Log: Delete the image, too, not just its MANIFEStation.
16859      Branch: perl
16860            - lib/CGI/eg/wilogo.gif
16861 ____________________________________________________________________________
16862 [  6691] By: jhi                                   on 2000/08/18  05:10:26
16863         Log: Propagate new Configure vars.
16864      Branch: perl
16865            ! configure.com epoc/config.sh uconfig.h uconfig.sh
16866            ! vos/config.def vos/config.h vos/config_h.SH_orig
16867            ! win32/config.bc win32/config.gc win32/config.vc
16868            ! win32/config_H.bc win32/config_H.gc win32/config_H.vc
16869 ____________________________________________________________________________
16870 [  6690] By: jhi                                   on 2000/08/18  04:30:56
16871         Log: Update Changes.
16872      Branch: perl
16873            ! Changes patchlevel.h
16874 ____________________________________________________________________________
16875 [  6689] By: jhi                                   on 2000/08/18  04:12:30
16876         Log: Fix the lib/complex failure of
16877              
16878              From: abigail@foad.org
16879              Subject: [ID 20000814.005] Not OK: perl v5.6.0 on i686-linux-64int 2.2.13       
16880              Date: 15 Aug 2000 04:06:38 -0000
16881              Message-Id: <20000815040638.8524.qmail@foad.org> 
16882              
16883              Linux long double accuracy issue: something that
16884              when printed with %g looks like "2" but int() of it is 1.
16885      Branch: perl
16886            ! lib/Math/Complex.pm
16887 ____________________________________________________________________________
16888 [  6688] By: jhi                                   on 2000/08/18  03:15:35
16889         Log: The byteorder code in #6671 was wrong.
16890      Branch: perl
16891            ! configpm
16892 ____________________________________________________________________________
16893 [  6687] By: jhi                                   on 2000/08/18  02:08:42
16894         Log: Subject: [PATCH 5.6.0+] newSVrv() memory leak
16895              From: Jan Dubois <jand@ActiveState.com>
16896              Date: Thu, 17 Aug 2000 18:31:55 -0700
16897              Message-ID: <l64ppsggaiuc4t6msm45iqohmhpjblb4qf@4ax.com>
16898      Branch: perl
16899            ! sv.c
16900 ____________________________________________________________________________
16901 [  6686] By: jhi                                   on 2000/08/18  02:04:15
16902         Log: Use NVs in POSIX math, not doubles.
16903              
16904              From: abigail@foad.org
16905              Subject: [ID 20000817.014] POSIX & modfl
16906              Date: 17 Aug 2000 20:49:18 -0000
16907              Message-Id: <20000817204918.23123.qmail@foad.org>
16908      Branch: perl
16909            ! ext/POSIX/POSIX.xs ext/POSIX/typemap
16910 ____________________________________________________________________________
16911 [  6685] By: jhi                                   on 2000/08/18  02:02:12
16912         Log: Introduce NVef, NVff, and NVgf, use the middle one.
16913              (helps for lib/peek + Linux + long doubles)  Reported in
16914              
16915              From: abigail@foad.org
16916              Subject: [ID 20000814.005] Not OK: perl v5.6.0 on i686-linux-64int 2.2.13       
16917              Date: 15 Aug 2000 04:06:38 -0000
16918              Message-Id: <20000815040638.8524.qmail@foad.org> 
16919              
16920              (note: the lib/complex failure has not yet been addressed)
16921      Branch: metaconfig/U/perl
16922            ! perlxvf.U
16923      Branch: perl
16924            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
16925            ! config_h.SH dump.c perl.h pod/perlguts.pod
16926 ____________________________________________________________________________
16927 [  6684] By: jhi                                   on 2000/08/17  23:22:19
16928         Log: Add byteorder to the myconfig output.
16929      Branch: perl
16930            ! myconfig.SH
16931 ____________________________________________________________________________
16932 [  6683] By: jhi                                   on 2000/08/17  23:20:19
16933         Log: The image doth not exist, spotted by Johan Vromans.
16934      Branch: perl
16935            ! MANIFEST
16936 ____________________________________________________________________________
16937 [  6682] By: jhi                                   on 2000/08/17  22:38:16
16938         Log: Document what the backtick returns if the command fails.
16939      Branch: perl
16940            ! pod/perlop.pod
16941 ____________________________________________________________________________
16942 [  6681] By: jhi                                   on 2000/08/17  22:33:12
16943         Log: Do not use prototyping here.
16944              
16945              Subject: [ID 20000817.016] [PATCH] Peek.xs
16946              From: abigail@foad.org
16947              Date: 17 Aug 2000 20:55:56 -0000
16948              Message-Id: <20000817205556.24270.qmail@foad.org>
16949      Branch: perl
16950            ! ext/Devel/Peek/Makefile.PL
16951 ____________________________________________________________________________
16952 [  6680] By: jhi                                   on 2000/08/17  19:46:43
16953         Log: Don't propose using modules built for 5.005 if no binary
16954              compatibility with 5.005 is attempted.
16955              
16956              From: Jeff Okamoto <okamoto@xfiles.intercon.hp.com>
16957              Subject: Minor nit with 5.7.0 (6655)
16958              Date: Wed, 16 Aug 2000 15:56:14 -0700 (PDT)
16959              Message-Id: <200008162256.PAA06964@xfiles.intercon.hp.com>
16960      Branch: metaconfig
16961            ! U/installdirs/inc_version_list.U
16962      Branch: perl
16963            ! Configure config_h.SH
16964 ____________________________________________________________________________
16965 [  6679] By: jhi                                   on 2000/08/17  19:16:39
16966         Log: Microperl config update.
16967      Branch: perl
16968            ! uconfig.h uconfig.sh
16969 ____________________________________________________________________________
16970 [  6678] By: jhi                                   on 2000/08/17  19:16:13
16971         Log: The #6648 wasn't protective enough for limited platforms
16972              (like microperl).
16973      Branch: perl
16974            ! dump.c sv.c
16975 ____________________________________________________________________________
16976 [  6677] By: jhi                                   on 2000/08/17  14:46:35
16977         Log: Update Changes.
16978      Branch: perl
16979            ! Changes patchlevel.h
16980 ____________________________________________________________________________
16981 [  6676] By: jhi                                   on 2000/08/17  14:44:02
16982         Log: Add perlebcdic from Peter Prymmer, regen toc.
16983      Branch: perl
16984            + pod/perlebcdic.pod
16985            ! MANIFEST pod/buildtoc.PL pod/perl.pod pod/perltoc.pod
16986 ____________________________________________________________________________
16987 [  6675] By: jhi                                   on 2000/08/17  14:41:52
16988         Log: perldebtut 1.10 from Richard Foley, plus Celsius and Fahrenheit.
16989      Branch: perl
16990            ! pod/perldebtut.pod
16991 ____________________________________________________________________________
16992 [  6674] By: jhi                                   on 2000/08/17  14:29:43
16993         Log: Get -DLEAKTEST to compile (not necessarily to work, mind)
16994              
16995              Subject: [ID 20000724.006] -DLEAKTEST problem
16996              From: Gregory Martin Pfeil <pfeilgm@technomadic.org>
16997              Date: Tue, 25 Jul 2000 00:36:32 -0500
16998              Message-Id: <20000725003632.A26186@www.llamacom.com>
16999              
17000              Reminder sent
17001              
17002              Subject: [PATCH bleadperl@6647] -DLEAKTEST compile error      
17003              From: Hugo <hv@crypt.compulink.co.uk>
17004              Date: Thu, 17 Aug 2000 15:23:42 +0100
17005              Message-Id: <200008171423.PAA06749@crypt.compulink.co.uk>
17006      Branch: perl
17007            ! util.c
17008 ____________________________________________________________________________
17009 [  6673] By: jhi                                   on 2000/08/17  04:07:10
17010         Log: Subject: Re: [PATCH]Re: Questions about Math::BigFloat
17011              From: John Peacock <JPeacock@UnivPress.com>
17012              Date: Tue, 01 Aug 2000 09:38:12 -0400
17013              Message-ID: <3986D2C4.54B78FE4@UnivPress.com>
17014      Branch: perl
17015            ! lib/Math/BigFloat.pm lib/Math/BigInt.pm t/lib/bigfltpm.t
17016 ____________________________________________________________________________
17017 [  6672] By: jhi                                   on 2000/08/17  03:04:35
17018         Log: Subject: [PATCH] Cwd.pm now uses strict
17019              From: Tim Jenness <timj@jach.hawaii.edu>
17020              Date: Wed, 16 Aug 2000 16:42:35 -1000 (HST)
17021              Message-ID: <Pine.LNX.4.21.0008161639510.1135-100000@lapaki.jach.hawaii.edu>
17022      Branch: perl
17023            ! lib/Cwd.pm
17024 ____________________________________________________________________________
17025 [  6671] By: jhi                                   on 2000/08/17  02:16:35
17026         Log: Make $Config{byteorder} more magical so that it is
17027              dynamically computed: nice for 'fat binaries'.
17028              
17029              Subject: [PATCH]: default byteorder
17030              From: Wilfredo Sánchez <wsanchez@apple.com>
17031              Date: Mon, 31 Jul 2000 19:45:31 -0700
17032              Message-Id: <200008010245.TAA04459@ns1.abstrata.com>
17033      Branch: perl
17034            ! configpm
17035 ____________________________________________________________________________
17036 [  6670] By: gsar                                  on 2000/08/17  01:22:21
17037         Log: move WNOHANG definition to where other such things are
17038      Branch: perl
17039            ! win32/win32.h
17040 ____________________________________________________________________________
17041 [  6669] By: jhi                                   on 2000/08/17  01:19:17
17042         Log: Update Changes.
17043      Branch: perl
17044            ! Changes patchlevel.h
17045 ____________________________________________________________________________
17046 [  6668] By: jhi                                   on 2000/08/17  01:16:29
17047         Log: Doc nits spotted by Richard Soderberg.
17048      Branch: perl
17049            ! README.posix-bc README.vmesa
17050 ____________________________________________________________________________
17051 [  6667] By: jhi                                   on 2000/08/17  01:12:11
17052         Log: Subject: [PATCH(2) @6655] Re: perldebut.pod - spelling
17053              From: "Casey R. Tweten" <crt@kiski.net>
17054              Date: Wed, 16 Aug 2000 12:39:08 -0400 (EDT)
17055              Message-ID: <Pine.OSF.4.21.0008161238250.32058-100000@home.kiski.net>
17056      Branch: perl
17057            ! pod/perldebtut.pod
17058 ____________________________________________________________________________
17059 [  6666] By: jhi                                   on 2000/08/17  01:09:31
17060         Log: Subject: Re: [ID 20000816.006] [PATCH @6655] Shell.pm, bug fix, strict and OO Interface
17061              From: "Casey R. Tweten" <crt@kiski.net>
17062              Date: Wed, 16 Aug 2000 11:35:09 -0400 (EDT)
17063              Message-ID: <Pine.OSF.4.21.0008161132270.10885-100000@home.kiski.net>
17064      Branch: perl
17065            ! lib/Shell.pm
17066 ____________________________________________________________________________
17067 [  6665] By: gsar                                  on 2000/08/17  01:03:52
17068         Log: add "ok" targets from change#6632 in makefile.mk
17069      Branch: perl
17070            ! pod/perlport.pod win32/Makefile win32/makefile.mk
17071 ____________________________________________________________________________
17072 [  6664] By: gsar                                  on 2000/08/17  00:56:11
17073         Log: avoid warnings from dense compiler
17074      Branch: perl
17075            ! win32/win32.c
17076 ____________________________________________________________________________
17077 [  6663] By: jhi                                   on 2000/08/17  00:51:49
17078         Log: Tweak the regex compilation errors once more.
17079      Branch: perl
17080            ! pod/perldiag.pod regcomp.c t/op/misc.t t/op/re_tests
17081            ! t/op/regmesg.t t/pragma/warn/regcomp
17082 ____________________________________________________________________________
17083 [  6662] By: gsar                                  on 2000/08/17  00:28:19
17084         Log: trailing new %ENV entries weren't being pushed into the real
17085              environment of subprocesses on Windows
17086      Branch: perl
17087            ! t/op/magic.t win32/perlhost.h
17088 ____________________________________________________________________________
17089 [  6661] By: gsar                                  on 2000/08/17  00:19:20
17090         Log: waitpid() now handles externally spawned pids correctly;
17091              fixes for backtick/wait/waitpid failures on Windows 9x
17092              
17093              these changes make the pid returned by process functions on
17094              Windows 9x always positive by clearing the high bit (which
17095              is always set on Win9x); pseudo-process PIDs are likewise
17096              always negative now on Win9x (just as on NT/2000)
17097      Branch: perl
17098            ! pp_sys.c win32/perlhost.h win32/win32.c
17099 ____________________________________________________________________________
17100 [  6660] By: jhi                                   on 2000/08/17  00:04:32
17101         Log: Retract #6645.
17102      Branch: perl
17103            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
17104            ! config_h.SH pod/perldelta.pod pod/perlfunc.pod sv.c
17105            ! t/op/sprintf.t
17106 ____________________________________________________________________________
17107 [  6659] By: gsar                                  on 2000/08/16  23:59:28
17108         Log: on windows, the return values from wait() and waitpid() don't
17109              match those of pseudo-pids
17110      Branch: perl
17111            ! pp_sys.c t/op/fork.t util.c win32/win32.c
17112 ____________________________________________________________________________
17113 [  6658] By: gsar                                  on 2000/08/16  23:56:14
17114         Log: pod nit seen in passing
17115      Branch: perl
17116            ! pod/perlfunc.pod
17117 ____________________________________________________________________________
17118 [  6657] By: gsar                                  on 2000/08/16  23:53:42
17119         Log: change#6328 could make close(SOCKET) return false on windows
17120              when it shouldn't
17121      Branch: perl
17122            ! win32/win32sck.c
17123 ____________________________________________________________________________
17124 [  6656] By: gsar                                  on 2000/08/16  23:46:57
17125         Log: check that the number pseudo children doesn't exceed
17126              MAXIMUM_WAIT_OBJECTS, which is currently 64 (avoids overflowing
17127              the WaitForMultipleObjects() limit that would cause wait()
17128              to crash)
17129              
17130              wait() and waitpid() could potentially be rewritten to use
17131              more than one thread to do the waiting to eliminate this
17132              limitation
17133      Branch: perl
17134            ! win32/perlhost.h
17135 ____________________________________________________________________________
17136 [  6655] By: jhi                                   on 2000/08/16  14:11:05
17137         Log: Update Changes.
17138      Branch: perl
17139            ! Changes patchlevel.h
17140 ____________________________________________________________________________
17141 [  6654] By: jhi                                   on 2000/08/16  14:10:12
17142         Log: Update to perldebtut 1.9, from Richard Foley.
17143      Branch: perl
17144            ! pod/perldebtut.pod
17145 ____________________________________________________________________________
17146 [  6653] By: jhi                                   on 2000/08/16  14:08:17
17147         Log: Change the regx compilation error markers to use = instead of <
17148              since pod makes using the latter quite messy.  Reported in
17149              ID 20000814.006 by Abigail and in
17150              Subject: Unknown escape E<> ?
17151              From: Lupe Christoph <lupe@lupe-christoph.de>
17152              Date: Fri, 11 Aug 2000 00:30:27 +0200
17153              Message-ID: <20000811003027.F17420@alanya.lupe-christoph.de>
17154      Branch: perl
17155            ! pod/perldiag.pod regcomp.c t/op/misc.t t/op/re_tests
17156            ! t/op/regmesg.t t/pragma/warn/regcomp
17157 ____________________________________________________________________________
17158 [  6652] By: jhi                                   on 2000/08/16  13:25:31
17159         Log: Change the perlbug address to perl.org since it's more forgiving.
17160              
17161              Subject: [ID 20000814.007] [PATCH] Email address in perlbug.
17162              From: abigail@foad.org
17163              Date: 15 Aug 2000 04:15:40 -0000
17164              Message-Id: <20000815041540.8633.qmail@foad.org>
17165      Branch: perl
17166            ! utils/perlbug.PL
17167 ____________________________________________________________________________
17168 [  6651] By: jhi                                   on 2000/08/16  13:22:35
17169         Log: Subject: [PATCH] Cwd::_backtick_pwd does not check return value
17170              From: Tim Jenness <timj@jach.hawaii.edu>
17171              Date: Tue, 15 Aug 2000 15:51:59 -1000 (HST)
17172              Message-ID: <Pine.LNX.4.21.0008151547560.1223-100000@lapaki.jach.hawaii.edu>
17173      Branch: perl
17174            ! lib/Cwd.pm
17175 ____________________________________________________________________________
17176 [  6650] By: jhi                                   on 2000/08/16  13:18:13
17177         Log: Update to CPAN 1.57.
17178              
17179              Subject: Re: [PATCH] Cwd::_backtick_pwd does not check return value
17180              From: andreas.koenig@anima.de (Andreas J. Koenig)
17181              Date: 16 Aug 2000 15:09:46 +0200
17182              Message-ID: <m3k8dh5p45.fsf@ak-71.mind.de>
17183      Branch: perl
17184            ! lib/CPAN.pm
17185 ____________________________________________________________________________
17186 [  6649] By: jhi                                   on 2000/08/16  13:12:31
17187         Log: Subject: [ID 20000324.040] minor fix to perlhpux.pod
17188              From: "Larry W. Virden" <lvirden@cas.org>
17189              Date: Fri, 24 Mar 2000 14:25:37 -0500 (EST)
17190              Message-Id: <200003241925.OAA27985@lwv26awu.cas.org>
17191      Branch: perl
17192            ! README.hpux
17193 ____________________________________________________________________________
17194 [  6648] By: jhi                                   on 2000/08/16  13:03:53
17195         Log: The numeric locale was reset to "C" by s?printf and never restored.
17196              
17197              Subject: [ID 20000809.003] setlocale(LC_NUMERIC...) produces different results in 5.005 and 5.6
17198              From: Christian Kirsch <ck@held.mind.de>
17199              Date: Wed, 9 Aug 2000 17:05:17 +0200
17200              Message-Id: <20000809170517.A25389@held>
17201              
17202              No test since adding the failing example to locale.t
17203              does not fail -- probably because the locale settings are so
17204              thoroughly tweaked by that time.  Running the example standalone
17205              does fail, though.  UPDATE: test case added at change #7540.
17206      Branch: perl
17207            ! dump.c perl.h pp.c pp_ctl.c sv.c
17208 ____________________________________________________________________________
17209 [  6647] By: jhi                                   on 2000/08/16  00:07:54
17210         Log: Update Changes and test semi-automatic patchlevel updating.
17211      Branch: perl
17212            ! Changes patchlevel.h
17213 ____________________________________________________________________________
17214 [  6646] By: jhi                                   on 2000/08/15  23:35:07
17215         Log: Fix a dependency problem.
17216              
17217              Subject: [PATCH: 6640] VMS Makefile.SH update
17218              From: Peter Prymmer <pvhp@forte.com>
17219              Date: Tue, 15 Aug 2000 16:31:34 -0700 (PDT)
17220              Message-ID: <Pine.OSF.4.10.10008151613140.141017-100000@aspara.forte.com>
17221      Branch: perl
17222            ! vms/descrip_mms.template
17223 ____________________________________________________________________________
17224 [  6645] By: jhi                                   on 2000/08/15  23:33:23
17225         Log: (Retracted by #6660)
17226              
17227              Subject: [PATCH perl-current] make s?printf() produce two exponent digits where possible
17228              From: Dominic Dunlop <domo@computer.org>
17229              Date: Tue, 15 Aug 2000 22:20:52 +0200
17230              Message-Id: <p04320403b5bf4c32d381@[192.168.1.4]>
17231      Branch: metaconfig/U/perl
17232            + d_printfed.U
17233      Branch: perl
17234            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
17235            ! config_h.SH pod/perldelta.pod pod/perlfunc.pod sv.c
17236            ! t/op/sprintf.t
17237 ____________________________________________________________________________
17238 [  6644] By: jhi                                   on 2000/08/15  21:17:20
17239         Log: Subject: [ID 20000815.014] [PATCH] INSTALL doesn't mention 64 bit support.
17240              From: abigail@foad.org
17241              Date: 15 Aug 2000 20:12:41 -0000
17242              Message-Id: <20000815201241.25556.qmail@foad.org>
17243      Branch: perl
17244            ! INSTALL
17245 ____________________________________________________________________________
17246 [  6643] By: jhi                                   on 2000/08/15  21:15:28
17247         Log: (an already applied patch)
17248      Branch: perl
17249            ! lib/CGI.pm
17250 ____________________________________________________________________________
17251 [  6642] By: gsar                                  on 2000/08/15  19:54:05
17252         Log: magic callbacks all need to have same type signature
17253      Branch: perl
17254            ! embed.pl mg.c proto.h
17255 ____________________________________________________________________________
17256 [  6641] By: jhi                                   on 2000/08/15  17:56:27
17257         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)
17258              From: Mike Guy <mjtg@cam.ac.uk>
17259              Message-Id: <E13OkU9-0006rb-00@libra.cus.cam.ac.uk>
17260              Date: Tue, 15 Aug 2000 18:26:45 +0100
17261              
17262              Only the peek.t part applied, not the hash quality part.
17263      Branch: perl
17264            ! t/lib/peek.t
17265 ____________________________________________________________________________
17266 [  6640] By: jhi                                   on 2000/08/15  16:37:37
17267         Log: Update Changes.
17268      Branch: perl
17269            ! Changes
17270 ____________________________________________________________________________
17271 [  6639] By: jhi                                   on 2000/08/15  16:34:55
17272         Log: Missed a file from #6638.
17273      Branch: perl
17274            ! lib/File/Temp.pm
17275 ____________________________________________________________________________
17276 [  6638] By: jhi                                   on 2000/08/15  16:33:19
17277         Log: Subject: [PATCH perl@6620] cygwin port
17278              From: "Fifer, Eric" <EFifer@sanwaint.com>
17279              Date: Tue, 15 Aug 2000 17:00:49 +0100
17280              Message-ID: <779F20BCCE5AD31186A50008C75D9979171779@silldn_mail1.sanwaint.com>
17281      Branch: perl
17282            ! README.cygwin hints/cygwin.sh pod/perlport.pod t/lib/b.t
17283 ____________________________________________________________________________
17284 [  6637] By: jhi                                   on 2000/08/15  16:29:22
17285         Log: Subject: [PATCH] debugger exit code should reflect user exit code
17286              From: Mike Guy <mjtg@cam.ac.uk>
17287              Date: Tue, 15 Aug 2000 16:55:59 +0100
17288              Message-Id: <E13Oj4J-0005FS-00@libra.cus.cam.ac.uk>
17289      Branch: perl
17290            ! lib/perl5db.pl
17291 ____________________________________________________________________________
17292 [  6636] By: jhi                                   on 2000/08/15  15:30:58
17293         Log: Update Changes.
17294      Branch: perl
17295            ! Changes
17296 ____________________________________________________________________________
17297 [  6635] By: jhi                                   on 2000/08/15  15:27:21
17298         Log: Use -Dusedevel; regen Configure and the respective Porting stuff.
17299      Branch: metaconfig
17300            ! U/mkglossary U/mksample
17301      Branch: metaconfig/U/perl
17302            ! Devel.U
17303      Branch: perl
17304            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
17305 ____________________________________________________________________________
17306 [  6634] By: jhi                                   on 2000/08/15  14:11:55
17307         Log: Don't blow limited stacks, a lower number is enough to
17308              tickle the lookbehind limit.
17309              
17310              Subject: [ID 20000815.007] Not OK: perl@6627 +SUIDMAIL on powerpc-machten 4.1.4 (UNINSTALLED) [PATCH]
17311              From: Dominic Dunlop <domo@computer.org>
17312              Date: Tue, 15 Aug 2000 13:51:24 +0200
17313              Message-Id: <p04320400b5bedcedaf22@[192.168.1.4]>
17314      Branch: perl
17315            ! t/op/regmesg.t
17316 ____________________________________________________________________________
17317 [  6633] By: jhi                                   on 2000/08/15  14:01:46
17318         Log: Subject: [ID 20000815.005] [PATCH] perldoc not looking in the right place for script pod
17319              From: Mike Guy <mjtg@cam.ac.uk>
17320              Date: Tue, 15 Aug 2000 12:10:50 +0100
17321              Message-Id: <E13OecM-0006nF-00@libra.cus.cam.ac.uk>
17322      Branch: perl
17323            ! utils/perldoc.PL
17324 ____________________________________________________________________________
17325 [  6632] By: jhi                                   on 2000/08/15  13:58:48
17326         Log: make ok etc also for win32.
17327              
17328              Subject: [ID 20000814.008] Not OK: perl v5.6.0 (6620) on MSWin32-x86 4.0 (UNINSTALLED)
17329              From: Prymmer/Kahn <pvhp@best.com>
17330              Date: Mon, 14 Aug 2000 22:42:06 -0700 (PDT)
17331              Message-Id: <Pine.BSF.4.21.0008142240280.3888-100000@shell8.ba.best.com>
17332      Branch: perl
17333            ! win32/Makefile
17334 ____________________________________________________________________________
17335 [  6631] By: jhi                                   on 2000/08/15  13:45:03
17336         Log: Update (kinda) to Test 1.14, from Joshua Pritikin.
17337      Branch: perl
17338            ! lib/Test.pm
17339 ____________________________________________________________________________
17340 [  6630] By: jhi                                   on 2000/08/15  03:25:09
17341         Log: Update Changes.
17342      Branch: perl
17343            ! Changes
17344 ____________________________________________________________________________
17345 [  6629] By: jhi                                   on 2000/08/15  03:23:53
17346         Log: magic_regdatum_set() is void, not int.
17347      Branch: perl
17348            ! embed.pl mg.c proto.h
17349 ____________________________________________________________________________
17350 [  6628] By: jhi                                   on 2000/08/15  03:08:02
17351         Log: Make the user to give up his firstborn, err, to knowingly
17352              verify installing an unstable developer release.  Also bump
17353              the release to 5.7.0, but leave a patch tag in the local
17354              patches saying that this is not yet the real thing.
17355      Branch: metaconfig
17356            ! U/modified/Instruct.U
17357      Branch: metaconfig/U/perl
17358            + Devel.U
17359      Branch: perl
17360            ! Configure patchlevel.h
17361 ____________________________________________________________________________
17362 [  6627] By: jhi                                   on 2000/08/14  22:32:52
17363         Log: README.os2 update.
17364              
17365              Subject: Re: [PATCH perl-current] Make op/sprintf.t more comprehensive,
17366              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
17367              Date: Wed, 02 Aug 2000 21:55:09 -0700
17368              Message-ID: <tsPi5gzkgegX092yn@efn.org>
17369      Branch: perl
17370            ! README.os2
17371 ____________________________________________________________________________
17372 [  6626] By: jhi                                   on 2000/08/14  21:00:02
17373         Log: Subject: Re: File::Temp problems on VMS in bleedperl
17374              From: Tim Jenness <timj@jach.hawaii.edu>
17375              cc: vmsperl@perl.org
17376              Date: Mon, 14 Aug 2000 09:44:33 -1000 (HST)
17377              Message-ID: <Pine.LNX.4.21.0008140941300.6753-100000@lapaki.jach.hawaii.edu>
17378      Branch: perl
17379            ! lib/File/Temp.pm t/lib/ftmp-tempfile.t
17380 ____________________________________________________________________________
17381 [  6625] By: jhi                                   on 2000/08/14  20:52:16
17382         Log: Add SUIDMAIL as was done for the CERT alert.
17383      Branch: perl
17384            ! patchlevel.h
17385 ____________________________________________________________________________
17386 [  6624] By: jhi                                   on 2000/08/14  20:48:50
17387         Log: Subject: sfio2000
17388              From: Daniel Muino <dmuino@afip.gov.ar>
17389              Date: Mon, 14 Aug 2000 16:58:11 -0300
17390              Message-ID: <20000814165811.B16368@con2-dgi>
17391      Branch: perl
17392            ! perlsdio.h perlsfio.h
17393 ____________________________________________________________________________
17394 [  6623] By: jhi                                   on 2000/08/14  20:47:36
17395         Log: Subject: warning: storage class after type is obsolescent
17396              From: Daniel Muino <dmuino@afip.gov.ar>
17397              Date: Mon, 14 Aug 2000 16:42:47 -0300
17398              Message-ID: <20000814164247.A16368@con2-dgi>
17399      Branch: perl
17400            ! regcomp.pl regnodes.h
17401 ____________________________________________________________________________
17402 [  6622] By: jhi                                   on 2000/08/14  20:43:05
17403         Log: Subject: [ID 20000814.002] [Patch] Email address in Changes.
17404              From: abigail@foad.org
17405              Date: 14 Aug 2000 20:00:10 -0000
17406              Message-Id: <20000814200010.27271.qmail@foad.org>
17407      Branch: perl
17408            ! Changes
17409 ____________________________________________________________________________
17410 [  6621] By: jhi                                   on 2000/08/14  15:23:05
17411         Log: Update Changes.
17412      Branch: perl
17413            ! Changes
17414 ____________________________________________________________________________
17415 [  6620] By: jhi                                   on 2000/08/14  15:22:14
17416         Log: Subject: Re: [PATCH] @+, @- readonly
17417              From: Mike Guy <mjtg@cam.ac.uk>
17418              Date: Mon, 14 Aug 2000 15:26:55 +0100
17419              Message-Id: <E13OLCZ-00020N-00@libra.cus.cam.ac.uk>
17420      Branch: perl
17421            ! XSUB.h embed.h embed.pl globvar.sym gv.c mg.c perl.h proto.h
17422            ! sv.c t/op/pat.t
17423 ____________________________________________________________________________
17424 [  6619] By: jhi                                   on 2000/08/14  14:12:08
17425         Log: Update Changes.
17426      Branch: perl
17427            ! Changes
17428 ____________________________________________________________________________
17429 [  6618] By: jhi                                   on 2000/08/14  14:09:34
17430         Log: For now remove the mail code.
17431      Branch: perl
17432            ! perl.c
17433 ____________________________________________________________________________
17434 [  6617] By: jhi                                   on 2000/08/14  14:08:28
17435         Log: Drop the eg/ mentions and also mention the recent suidperl thing.
17436      Branch: perl
17437            ! jpl/README lib/ExtUtils/Embed.pm pod/perlcompile.pod
17438            ! pod/perlfaq8.pod pod/perlsec.pod
17439 ____________________________________________________________________________
17440 [  6616] By: jhi                                   on 2000/08/14  14:00:11
17441         Log: Subject: Re: [ID 20000807.003] [PATCH] Debugger treatment of condition "0"
17442              From: Mike Guy <mjtg@cam.ac.uk>
17443              Date: Mon, 14 Aug 2000 08:26:02 +0100
17444              Message-Id: <E13OEdG-0007LT-00@libra.cus.cam.ac.uk>
17445      Branch: perl
17446            ! lib/perl5db.pl
17447 ____________________________________________________________________________
17448 [  6615] By: jhi                                   on 2000/08/14  13:58:45
17449         Log: Subject: [PATCH] @+, @- readonly (was Re: @<punct> interpolating in "")
17450              From: Mike Guy <mjtg@cam.ac.uk>
17451              Date: Mon, 14 Aug 2000 08:04:22 +0100
17452              Message-Id: <E13OEII-0007B2-00@libra.cus.cam.ac.uk>
17453      Branch: perl
17454            ! gv.c mg.c t/op/pat.t
17455 ____________________________________________________________________________
17456 [  6614] By: jhi                                   on 2000/08/14  13:56:45
17457         Log: Subject: Test fails / warnings with perl-current #6612
17458              From: Mike Guy <mjtg@cam.ac.uk>
17459              Date: Mon, 14 Aug 2000 07:57:23 +0100
17460              Message-Id: <E13OEBX-000776-00@libra.cus.cam.ac.uk>
17461      Branch: perl
17462            ! t/lib/b.t t/lib/peek.t
17463 ____________________________________________________________________________
17464 [  6613] By: jhi                                   on 2000/08/14  13:45:33
17465         Log: VMS configure.com update continues.
17466      Branch: perl
17467            - vms/configure.com
17468            ! MANIFEST configure.com
17469 ____________________________________________________________________________
17470 [  6612] By: jhi                                   on 2000/08/13  22:13:35
17471         Log: Update Changes.
17472      Branch: perl
17473            ! Changes
17474 ____________________________________________________________________________
17475 [  6611] By: jhi                                   on 2000/08/13  16:21:45
17476         Log: Upgrade to CGI 2.71, from Lincoln Stein.
17477      Branch: perl
17478            ! lib/CGI.pm lib/CGI/Cookie.pm t/lib/cgi-function.t
17479 ____________________________________________________________________________
17480 [  6610] By: jhi                                   on 2000/08/13  15:09:16
17481         Log: Subject: [PATCH] t/op/regmesg.t fails if REG_INFTY set
17482              From: Mike Guy <mjtg@cam.ac.uk>
17483              Date: Sun, 13 Aug 2000 13:45:51 +0100
17484              Message-Id: <E13Nx9D-00027M-00@libra.cus.cam.ac.uk>
17485      Branch: perl
17486            ! t/op/regmesg.t
17487 ____________________________________________________________________________
17488 [  6609] By: jhi                                   on 2000/08/13  14:31:26
17489         Log: Andreas says that 1.56 is fine, so reverting back to it.
17490      Branch: perl
17491            ! lib/CPAN.pm
17492 ____________________________________________________________________________
17493 [  6608] By: jhi                                   on 2000/08/13  05:34:20
17494         Log: Update Changes.
17495      Branch: perl
17496            ! Changes
17497 ____________________________________________________________________________
17498 [  6607] By: jhi                                   on 2000/08/13  05:32:01
17499         Log: Put back the \z changes of #5406 to CPAN.pm.
17500      Branch: perl
17501            ! lib/CPAN.pm
17502 ____________________________________________________________________________
17503 [  6606] By: jhi                                   on 2000/08/13  05:20:16
17504         Log: Fix-n-skip the tests under 5005threads.
17505      Branch: perl
17506            ! t/lib/b.t
17507 ____________________________________________________________________________
17508 [  6605] By: jhi                                   on 2000/08/13  05:07:48
17509         Log: Fix the test for 5005threads.
17510      Branch: perl
17511            ! t/lib/peek.t
17512 ____________________________________________________________________________
17513 [  6604] By: jhi                                   on 2000/08/13  03:35:37
17514         Log: Should have deleted this in #6603.
17515      Branch: perl
17516            - vms/subconfigure.com
17517 ____________________________________________________________________________
17518 [  6603] By: jhi                                   on 2000/08/12  18:29:32
17519         Log: Rewrite of vms/subconfigure.com as configure.com,
17520              from Peter Prymmer and the vmsperl crew.
17521      Branch: perl
17522            + vms/configure.com
17523            ! MANIFEST
17524 ____________________________________________________________________________
17525 [  6602] By: jhi                                   on 2000/08/11  13:00:01
17526         Log: PlainText.pm is dead.
17527      Branch: perl
17528            - lib/Pod/PlainText.pm
17529            ! MANIFEST
17530 ____________________________________________________________________________
17531 [  6601] By: jhi                                   on 2000/08/11  04:06:45
17532         Log: Update Changes.
17533      Branch: perl
17534            ! Changes
17535 ____________________________________________________________________________
17536 [  6600] By: jhi                                   on 2000/08/11  04:06:10
17537         Log: Add a few missing files, update MANIFEST.
17538      Branch: perl
17539            + lib/CGI/eg/make_links.pl lib/CGI/eg/wilogo.gif
17540            + lib/Pod/PlainText.pm t/pod/find.t
17541            ! MANIFEST t/op/regmesg.t
17542 ____________________________________________________________________________
17543 [  6599] By: jhi                                   on 2000/08/11  03:31:10
17544         Log: Add Perl debugging tutorial, regen toc. 
17545              
17546              Subject: perldebtut.pod
17547              From: Richard Foley <Richard.Foley@m.dasa.de>
17548              Date: Wed, 09 Aug 2000 10:17:15 +0200
17549              Message-id: <3991138B.262247B8@m.dasa.de>
17550      Branch: perl
17551            + pod/perldebtut.pod
17552            ! MANIFEST pod/buildtoc.PL pod/perl.pod pod/perltoc.pod
17553 ____________________________________________________________________________
17554 [  6598] By: jhi                                   on 2000/08/11  02:48:56
17555         Log: tiny Changes edit
17556      Branch: perl
17557            ! Changes
17558 ____________________________________________________________________________
17559 [  6597] By: jhi                                   on 2000/08/11  02:39:04
17560         Log: Tests for #6589.
17561              
17562              Subject: Re: B::Deparse was Re: [ID 20000808.005] refs to returned lvalues are lvalues??
17563              From: simon@brecon.co.uk (Simon Cozens)
17564              Date: 11 Aug 2000 02:24:52 GMT
17565              Message-ID: <slrn8p6ovk.5sh.simon@justanother.perlhacker.org>
17566      Branch: perl
17567            ! t/lib/b.t
17568 ____________________________________________________________________________
17569 [  6596] By: jhi                                   on 2000/08/11  01:50:07
17570         Log: Update Changes.
17571      Branch: perl
17572            ! Changes
17573 ____________________________________________________________________________
17574 [  6595] By: jhi                                   on 2000/08/11  01:47:16
17575         Log: nitfix
17576      Branch: perl
17577            ! Changes
17578 ____________________________________________________________________________
17579 [  6594] By: jhi                                   on 2000/08/11  01:36:16
17580         Log: Subject: Getting perlio and threads to compile
17581              From: Lupe Christoph <lupe@lupe-christoph.de>
17582              Date: Wed, 9 Aug 2000 11:35:54 +0200
17583              Message-ID: <20000809113554.G23160@alanya.lupe-christoph.de>
17584              
17585              (the Solaris version changes in Configure skipped)
17586      Branch: perl
17587            ! hints/solaris_2.sh thread.h
17588 ____________________________________________________________________________
17589 [  6593] By: jhi                                   on 2000/08/11  01:30:16
17590         Log: Subject: Re: [ID 20000730.003] utf8::length() bad
17591              From: simon@brecon.co.uk (Simon Cozens)
17592              Date: 1 Aug 2000 06:55:19 GMT
17593              Message-ID: <slrn8oct2n.19l.simon@justanother.perlhacker.org>
17594      Branch: perl
17595            ! lib/utf8.pm
17596 ____________________________________________________________________________
17597 [  6592] By: jhi                                   on 2000/08/11  01:26:39
17598         Log: Subject: Re: [ID 20000809.006] Debugger lost the ability to see $1 et al
17599              From: Peter Scott <Peter@PeterScott.com>
17600              Date: Thu, 10 Aug 2000 08:23:27 -0700
17601              Message-Id: <4.3.2.7.2.20000810081749.00aa92c0@peterscott.com>
17602      Branch: perl
17603            ! lib/perl5db.pl
17604 ____________________________________________________________________________
17605 [  6591] By: jhi                                   on 2000/08/11  01:22:02
17606         Log: Subject: Re: [ID 20000809.005] trouble with long string and /m modifier - uninitialized value 
17607              From: Hugo <hv@crypt.compulink.co.uk>
17608              Date: Thu, 10 Aug 2000 19:23:04 +0100
17609              Message-Id: <200008101823.TAA23580@crypt.compulink.co.uk>
17610      Branch: perl
17611            ! regexec.c t/op/pat.t
17612 ____________________________________________________________________________
17613 [  6590] By: jhi                                   on 2000/08/11  01:19:19
17614         Log: Preprocessing and postprocessing for File::Find.
17615              
17616              Subject: Patch to Find::File.pm to allow alphabetical results
17617              From: Joe Smith <jsmith@inwap.com>
17618              Date: Wed, 9 Aug 2000 02:44:54 -0700
17619              Message-Id: <20000809024453.A21193@tardis.Tymnet.COM>
17620      Branch: perl
17621            ! lib/File/Find.pm
17622 ____________________________________________________________________________
17623 [  6589] By: jhi                                   on 2000/08/11  01:12:39
17624         Log: B::Deparse didn't do sub attributes.
17625              
17626              Subject: B::Deparse was Re: [ID 20000808.005] refs to returned lvalues are lvalues??
17627              From: simon@brecon.co.uk (Simon Cozens)
17628              Date: 9 Aug 2000 04:49:20 GMT
17629              Message-ID: <slrn8p1omg.beq.simon@justanother.perlhacker.org>
17630      Branch: perl
17631            ! ext/B/B.xs ext/B/B/Deparse.pm ext/B/defsubs_h.PL
17632 ____________________________________________________________________________
17633 [  6588] By: jhi                                   on 2000/08/11  01:06:40
17634         Log: Subject: debugger "d" command doesnt check line number
17635              From: Mike Guy <mjtg@cam.ac.uk>
17636              Date: Tue, 08 Aug 2000 21:54:29 +0100
17637              Message-Id: <E13MGOL-000053-00@libra.cus.cam.ac.uk>
17638      Branch: perl
17639            ! lib/perl5db.pl mg.c pod/perldiag.pod
17640 ____________________________________________________________________________
17641 [  6587] By: jhi                                   on 2000/08/11  00:45:03
17642         Log: sleep(1) does not necessarily return 1.
17643              
17644              Subject: [PATCH bleadperl] op/lex_assign.t  
17645              From: Hugo <hv@crypt.compulink.co.uk>
17646              Date: Thu, 03 Aug 2000 14:34:22 +0100        
17647              Message-Id: <200008031334.OAA03379@crypt.compulink.co.uk>
17648      Branch: perl
17649            ! t/op/lex_assign.t
17650 ____________________________________________________________________________
17651 [  6586] By: jhi                                   on 2000/08/11  00:31:50
17652         Log: Document the IO::Select timeout.
17653      Branch: perl
17654            ! ext/IO/lib/IO/Select.pm
17655 ____________________________________________________________________________
17656 [  6585] By: jhi                                   on 2000/08/11  00:13:54
17657         Log: Forgot contributor.
17658      Branch: perl
17659            ! Changes
17660 ____________________________________________________________________________
17661 [  6584] By: jhi                                   on 2000/08/11  00:09:19
17662         Log: detypo
17663      Branch: perl
17664            ! Changes
17665 ____________________________________________________________________________
17666 [  6583] By: jhi                                   on 2000/08/11  00:07:53
17667         Log: Fixes to looking-like-number to keep behaviour as it was in 5.005_03.
17668              
17669              Subject: Re: [ID 20000810.002] $a["1foo"] same as $a[0]
17670              From: Mike Guy <mjtg@cam.ac.uk> 
17671              Date: Thu, 10 Aug 2000 15:50:54 +0100
17672              Message-Id: <E13Mtfa-0005Ge-00@libra.cus.cam.ac.uk>
17673      Branch: perl
17674            ! sv.c t/op/int.t
17675 ____________________________________________________________________________
17676 [  6582] By: jhi                                   on 2000/08/10  23:29:32
17677         Log: Update Changes.
17678      Branch: perl
17679            ! Changes
17680 ____________________________________________________________________________
17681 [  6581] By: jhi                                   on 2000/08/10  23:26:16
17682         Log: Put back the std @INC thing.
17683      Branch: perl
17684            ! t/lib/ansicolor.t t/lib/cgi-form.t t/lib/cgi-function.t
17685            ! t/lib/cgi-html.t t/lib/cgi-pretty.t t/lib/cgi-request.t
17686            ! t/lib/gol-basic.t t/lib/gol-compat.t t/lib/gol-linkage.t
17687            ! t/lib/gol-oo.t
17688 ____________________________________________________________________________
17689 [  6580] By: jhi                                   on 2000/08/10  23:03:34
17690         Log: Update to CGI 2.70, from Lincoln Stein.
17691      Branch: perl
17692            ! lib/CGI.pm lib/CGI/Carp.pm lib/CGI/Cookie.pm lib/CGI/Pretty.pm
17693            ! lib/CGI/Push.pm lib/CGI/Util.pm t/lib/cgi-form.t
17694            ! t/lib/cgi-function.t t/lib/cgi-html.t t/lib/cgi-pretty.t
17695            ! t/lib/cgi-request.t
17696 ____________________________________________________________________________
17697 [  6579] By: jhi                                   on 2000/08/10  22:41:50
17698         Log: Update to CPAN 1.56, from Andreas König.
17699      Branch: perl
17700            ! lib/CPAN.pm lib/CPAN/FirstTime.pm
17701 ____________________________________________________________________________
17702 [  6578] By: jhi                                   on 2000/08/10  22:38:13
17703         Log: Update to Pod::Parser 1.17, from Brad Appleton.
17704      Branch: perl
17705            ! lib/Pod/Checker.pm lib/Pod/Find.pm lib/Pod/InputObjects.pm
17706            ! lib/Pod/ParseUtils.pm lib/Pod/Parser.pm lib/Pod/Select.pm
17707            ! lib/Pod/Usage.pm pod/pod2usage.PL pod/podchecker.PL
17708            ! pod/podselect.PL t/pod/emptycmd.t t/pod/for.t t/pod/headings.t
17709            ! t/pod/include.t t/pod/included.t t/pod/lref.t
17710            ! t/pod/multiline_items.t t/pod/nested_items.t
17711            ! t/pod/nested_seqs.t t/pod/oneline_cmds.t t/pod/pod2usage.t
17712            ! t/pod/poderrs.t t/pod/poderrs.xr t/pod/podselect.t
17713            ! t/pod/special_seqs.t
17714 ____________________________________________________________________________
17715 [  6577] By: jhi                                   on 2000/08/10  22:35:41
17716         Log: Small AUTHORS and MAINTAIN updates.  Could do with big updates.
17717      Branch: perl
17718            ! AUTHORS MAINTAIN
17719 ____________________________________________________________________________
17720 [  6576] By: jhi                                   on 2000/08/10  22:24:54
17721         Log: Update to Getopt::Long 2.23_05, from Johan Vromans.
17722      Branch: perl
17723            + t/lib/gol-oo.t
17724            ! MANIFEST lib/Getopt/Long.pm lib/newgetopt.pl t/lib/gol-basic.t
17725            ! t/lib/gol-compat.t t/lib/gol-linkage.t
17726 ____________________________________________________________________________
17727 [  6575] By: jhi                                   on 2000/08/10  22:02:07
17728         Log: Update to Term::ANSIColor 1.03, from Russ Allbery.
17729      Branch: perl
17730            ! lib/Term/ANSIColor.pm t/lib/ansicolor.t
17731 ____________________________________________________________________________
17732 [  6574] By: jhi                                   on 2000/08/10  21:55:03
17733         Log: Iterating perl6 description.
17734      Branch: perl
17735            ! pod/perlfaq1.pod
17736 ____________________________________________________________________________
17737 [  6573] By: jhi                                   on 2000/08/10  21:48:26
17738         Log: Revert the sv.c part of #6559, a better fix is needed.
17739      Branch: perl
17740            ! sv.c
17741 ____________________________________________________________________________
17742 [  6572] By: jhi                                   on 2000/08/10  20:33:43
17743         Log: It's the 2ndO'ROSSC.
17744      Branch: perl
17745            ! pod/perlfaq1.pod
17746 ____________________________________________________________________________
17747 [  6571] By: jhi                                   on 2000/08/10  15:55:48
17748         Log: detypo
17749      Branch: perl
17750            ! pod/perlfaq1.pod
17751 ____________________________________________________________________________
17752 [  6570] By: jhi                                   on 2000/08/10  14:11:17
17753         Log: An exceptionally sticky typo.
17754      Branch: perl
17755            ! Changes
17756 ____________________________________________________________________________
17757 [  6569] By: jhi                                   on 2000/08/10  14:09:33
17758         Log: detypo (and test Changes updating script)
17759      Branch: perl
17760            ! Changes
17761 ____________________________________________________________________________
17762 [  6568] By: jhi                                   on 2000/08/10  14:07:07
17763         Log: Update Changes.
17764      Branch: perl
17765            ! Changes
17766 ____________________________________________________________________________
17767 [  6567] By: jhi                                   on 2000/08/10  14:06:19
17768         Log: Amend the description of Perl6.
17769              Subject: [PATCH Perl-5.6.0] perlfaq1.pod
17770              From: Elaine -HFB- Ashton <elaine@chaos.wustl.edu>
17771              Date: Wed, 9 Aug 2000 22:11:06 -0500
17772              Message-ID: <20000809221106.A12246@chaos.wustl.edu>
17773      Branch: perl
17774            ! pod/perlfaq1.pod
17775 ____________________________________________________________________________
17776 [  6566] By: jhi                                   on 2000/08/10  13:58:57
17777         Log: Subject: Remove dead entry in perldiag
17778              From: Mike Guy <mjtg@cam.ac.uk>
17779              Date: Thu, 10 Aug 2000 14:19:19 +0100
17780              Message-Id: <E13MsEx-00033G-00@libra.cus.cam.ac.uk>
17781      Branch: perl
17782            ! pod/perldiag.pod
17783 ____________________________________________________________________________
17784 [  6565] By: jhi                                   on 2000/08/10  13:51:48
17785         Log: Zero entries were skipped, fix from Adrian Goalby
17786              <argoalby@yahoo.co.uk>
17787      Branch: perl
17788            ! lib/unicode/Number.pl lib/unicode/mktables.PL
17789 ____________________________________________________________________________
17790 [  6564] By: jhi                                   on 2000/08/10  13:00:12
17791         Log: Subject: [PATCH 5.6.0] cygwin port
17792              From: "Fifer, Eric" <EFifer@sanwaint.com>
17793              Date: Thu, 10 Aug 2000 13:15:36 +0100
17794              Message-ID: <779F20BCCE5AD31186A50008C75D997917176A@silldn_mail1.sanwaint.com>
17795      Branch: perl
17796            ! README.cygwin hints/cygwin.sh
17797 ____________________________________________________________________________
17798 [  6563] By: jhi                                   on 2000/08/10  12:55:16
17799         Log: Get back into sync with Jeffrey on the enhanced regex warnings.
17800      Branch: perl
17801            ! pod/perldiag.pod regcomp.c t/op/re_tests t/op/readdir.t
17802 ____________________________________________________________________________
17803 [  6562] By: gsar                                  on 2000/08/10  08:38:39
17804         Log: warn is a macro, avoid using at a variable to avoid warnings
17805              in some configurations; readdir.t is too conservative in
17806              estimating number of *.t's
17807      Branch: perl
17808            ! t/op/readdir.t util.c
17809 ____________________________________________________________________________
17810 [  6561] By: jhi                                   on 2000/08/09  23:35:42
17811         Log: Update Changes.
17812      Branch: perl
17813            ! Changes
17814 ____________________________________________________________________________
17815 [  6560] By: jhi                                   on 2000/08/09  23:05:47
17816         Log: Subject: Re: enhanced(?) regex error messages
17817              From: Jeffrey Friedl <jfriedl@yahoo-inc.com>
17818              Date: Wed, 9 Aug 2000 00:59:43 -0700 (PDT)
17819              Message-Id: <200008090759.AAA07144@ventrue.yahoo.com>
17820              
17821              (plus two small patches sent privately)
17822              (this still seems to leave few test failures)
17823      Branch: perl
17824            + t/op/regmesg.t
17825            ! MANIFEST pod/perldiag.pod regcomp.c regcomp.h t/op/misc.t
17826            ! t/pragma/warn/regcomp
17827 ____________________________________________________________________________
17828 [  6559] By: jhi                                   on 2000/08/09  20:41:18
17829         Log: (The fix did work but was not right, retracted in #6573)
17830              
17831              Subject: [ID 20000809.003] setlocale(LC_NUMERIC...) produces different results in 5.005 and 5.6
17832              From: Christian Kirsch <ck@held.mind.de>
17833              Date: Wed, 9 Aug 2000 17:05:17 +0200
17834              Message-Id: <20000809170517.A25389@held>
17835      Branch: perl
17836            ! sv.c t/pragma/locale.t
17837 ____________________________________________________________________________
17838 [  6558] By: jhi                                   on 2000/08/08  22:34:08
17839         Log: Tiny updates on the contributors list.
17840      Branch: perl
17841            ! Changes
17842 ____________________________________________________________________________
17843 [  6557] By: jhi                                   on 2000/08/08  19:34:28
17844         Log: Double check that we have a dirhandle.
17845      Branch: perl
17846            ! util.c
17847 ____________________________________________________________________________
17848 [  6556] By: jhi                                   on 2000/08/08  19:01:51
17849         Log: Delete eg as agreed at TPC3 (yes, 3).  Dusty, obsolete, non-w-clean.
17850              May be repopulated with fresh maintained examples.
17851      Branch: perl
17852            + lib/CGI/eg/RunMeFirst lib/CGI/eg/caution.xbm
17853            + lib/CGI/eg/clickable_image.cgi lib/CGI/eg/cookie.cgi
17854            + lib/CGI/eg/crash.cgi lib/CGI/eg/customize.cgi
17855            + lib/CGI/eg/diff_upload.cgi lib/CGI/eg/dna_small_gif.uu
17856            + lib/CGI/eg/file_upload.cgi lib/CGI/eg/frameset.cgi
17857            + lib/CGI/eg/index.html lib/CGI/eg/internal_links.cgi
17858            + lib/CGI/eg/javascript.cgi lib/CGI/eg/monty.cgi
17859            + lib/CGI/eg/multiple_forms.cgi lib/CGI/eg/nph-clock.cgi
17860            + lib/CGI/eg/nph-multipart.cgi lib/CGI/eg/popup.cgi
17861            + lib/CGI/eg/save_state.cgi lib/CGI/eg/tryit.cgi
17862            + lib/CGI/eg/wilogo_gif.uu
17863            - eg/ADB eg/README eg/cgi/RunMeFirst eg/cgi/caution.xbm
17864            - eg/cgi/clickable_image.cgi eg/cgi/cookie.cgi eg/cgi/crash.cgi
17865            - eg/cgi/customize.cgi eg/cgi/diff_upload.cgi
17866            - eg/cgi/dna_small_gif.uu eg/cgi/file_upload.cgi
17867            - eg/cgi/frameset.cgi eg/cgi/index.html
17868            - eg/cgi/internal_links.cgi eg/cgi/javascript.cgi
17869            - eg/cgi/monty.cgi eg/cgi/multiple_forms.cgi
17870            - eg/cgi/nph-clock.cgi eg/cgi/nph-multipart.cgi eg/cgi/popup.cgi
17871            - eg/cgi/save_state.cgi eg/cgi/tryit.cgi eg/cgi/wilogo_gif.uu
17872            - eg/changes eg/client eg/down eg/dus eg/findcp eg/findtar
17873            - eg/g/gcp eg/g/gcp.man eg/g/ged eg/g/ghosts eg/g/gsh
17874            - eg/g/gsh.man eg/muck eg/muck.man eg/myrup eg/nih eg/relink
17875            - eg/rename eg/rmfrom eg/scan/scan_df eg/scan/scan_last
17876            - eg/scan/scan_messages eg/scan/scan_passwd eg/scan/scan_ps
17877            - eg/scan/scan_sudo eg/scan/scan_suid eg/scan/scanner eg/server
17878            - eg/shmkill eg/sysvipc/README eg/sysvipc/ipcmsg
17879            - eg/sysvipc/ipcsem eg/sysvipc/ipcshm eg/travesty eg/unuc
17880            - eg/uudecode eg/van/empty eg/van/unvanish eg/van/vanexp
17881            - eg/van/vanish eg/who eg/wrapsuid
17882            ! MANIFEST
17883 ____________________________________________________________________________
17884 [  6555] By: jhi                                   on 2000/08/08  18:51:08
17885         Log: Delete chat2 as requested by Randal.
17886              
17887              Subject: Re: perlfaq8 coyness
17888              From: merlyn@stonehenge.com (Randal L. Schwartz) 
17889              Date: 15 May 2000 18:52:42 -0700 
17890              Message-ID: <m166sfl0r9.fsf@halfdome.holdit.com> 
17891      Branch: perl
17892            - lib/chat2.pl
17893            ! MANIFEST
17894 ____________________________________________________________________________
17895 [  6554] By: jhi                                   on 2000/08/08  18:31:35
17896         Log: Regen global.sym.
17897      Branch: perl
17898            ! global.sym
17899 ____________________________________________________________________________
17900 [  6553] By: jhi                                   on 2000/08/08  18:28:13
17901         Log: Do away with array context, from Daniel Chetlin <daniel@chetlin.com>
17902              (either perlbug or p5p ate the original), plus regen
17903              perlapi and perltoc. 
17904      Branch: perl
17905            ! Changes Changes5.004 README.Y2K cop.h emacs/cperl-mode.el
17906            ! ext/B/ramblings/flip-flop ext/Data/Dumper/Dumper.pm
17907            ! ext/IO/lib/IO/Handle.pm ext/IO/lib/IO/Socket.pm
17908            ! ext/Socket/Socket.pm lib/CGI.pm lib/CGI/Cookie.pm
17909            ! lib/File/Temp.pm lib/FileHandle.pm lib/Pod/Functions.pm
17910            ! lib/Pod/InputObjects.pm lib/Pod/LaTeX.pm lib/Text/Soundex.pm
17911            ! lib/perl5db.pl op.h opcode.pl perlapi.c perlapi.h
17912            ! pod/perlapi.pod pod/perltoc.pod t/lib/dosglob.t
17913            ! t/lib/ftmp-posix.t t/lib/glob-global.t t/op/grent.t
17914            ! t/op/pwent.t vms/ext/DCLsym/DCLsym.pm
17915 ____________________________________________________________________________
17916 [  6552] By: jhi                                   on 2000/08/08  18:06:29
17917         Log: Subject: [PATCH] Re: [ID 20000807.008] Double reads considered evil? (deja vu)
17918              From: Mike Guy <mjtg@cam.ac.uk>
17919              Message-Id: <E13MAj1-00038W-00@libra.cus.cam.ac.uk>
17920              Date: Tue, 08 Aug 2000 15:51:27 +0100
17921      Branch: perl
17922            ! doop.c sv.h t/op/join.t t/pragma/overload.t
17923 ____________________________________________________________________________
17924 [  6551] By: jhi                                   on 2000/08/08  18:01:11
17925         Log: Re-apply #6549.
17926      Branch: perl
17927            ! lib/perl5db.pl
17928 ____________________________________________________________________________
17929 [  6550] By: jhi                                   on 2000/08/08  17:43:08
17930         Log: Accidental retraction of #6549.
17931      Branch: perl
17932            ! lib/perl5db.pl
17933 ____________________________________________________________________________
17934 [  6549] By: jhi                                   on 2000/08/08  17:40:04
17935         Log: Subject: [ID 20000807.003] [PATCH] Debugger treatment of condition "0"
17936              From: Mike Guy <mjtg@cam.ac.uk>
17937              Date: Mon, 07 Aug 2000 21:49:58 +0100
17938              Message-Id: <E13LtqQ-0006Jc-00@libra.cus.cam.ac.uk>
17939      Branch: perl
17940            ! lib/perl5db.pl
17941 ____________________________________________________________________________
17942 [  6548] By: jhi                                   on 2000/08/08  17:37:57
17943         Log: Document here-doc better.
17944              
17945              Subject: Re: [ID 20000804.003] heredoc in s///e replacement
17946              From: Mike Guy <mjtg@cam.ac.uk>
17947              Date: Mon, 07 Aug 2000 14:02:09 +0100
17948              Message-Id: <E13LmXh-0006rM-00@libra.cus.cam.ac.uk>
17949      Branch: perl
17950            ! pod/perldata.pod
17951 ____________________________________________________________________________
17952 [  6547] By: jhi                                   on 2000/08/08  17:33:34
17953         Log: Subject: Patch against 5.6.0 to allow "-d:Module=arg,arg,arg"
17954              From: "Randy J. Ray" <rjray@redhat.com>
17955              Date: Mon, 07 Aug 2000 19:12:25 -0700
17956              Message-Id: <200008080212.TAA12784@tzimisce.soma.redhat.com>
17957      Branch: perl
17958            ! perl.c pod/perlrun.pod
17959 ____________________________________________________________________________
17960 [  6546] By: jhi                                   on 2000/08/08  17:29:26
17961         Log: Subject: Re: enhanced(?) regex error messages 
17962              From: Hugo <hv@crypt.compulink.co.uk>
17963              Date: Tue, 08 Aug 2000 03:25:51 +0100
17964              Message-Id: <200008080225.DAA10998@crypt.compulink.co.uk>
17965              
17966              plus Capitalize the error messages, plus perldiag them.
17967      Branch: perl
17968            ! pod/perldiag.pod regcomp.c t/op/pat.t t/op/re_tests
17969 ____________________________________________________________________________
17970 [  6545] By: jhi                                   on 2000/08/08  13:59:28
17971         Log: Augment #6539 a bit: don't croak if there's magic in the air.
17972              
17973              Subject: Re: [PATCH bleadperl-6530] bless, REF, and bless(REF, REF) 
17974              From: Hugo <hv@crypt.compulink.co.uk>
17975              Date: Tue, 08 Aug 2000 03:02:03 +0100
17976              Message-Id: <200008080202.DAA09147@crypt.compulink.co.uk>
17977      Branch: perl
17978            ! pp.c t/op/bless.t
17979 ____________________________________________________________________________
17980 [  6544] By: jhi                                   on 2000/08/07  21:11:52
17981         Log: Make the test -w clean.
17982      Branch: perl
17983            ! t/op/bless.t
17984 ____________________________________________________________________________
17985 [  6543] By: jhi                                   on 2000/08/07  19:49:53
17986         Log: use warnings instead of $^W.
17987      Branch: perl
17988            ! t/op/bless.t
17989 ____________________________________________________________________________
17990 [  6542] By: jhi                                   on 2000/08/07  17:41:41
17991         Log: Disable a portability warning Because We Know What We Are Doing.
17992      Branch: perl
17993            ! t/op/bless.t
17994 ____________________________________________________________________________
17995 [  6541] By: jhi                                   on 2000/08/07  17:29:51
17996         Log: Tiny tidying on report_evil_fh().
17997      Branch: perl
17998            ! util.c
17999 ____________________________________________________________________________
18000 [  6540] By: jhi                                   on 2000/08/07  16:37:38
18001         Log: Make regular expression parse error messages easier to understand.
18002              
18003              Subject: Re: enhanced(?) regex error messages
18004              From: Jeffrey Friedl <jfriedl@yahoo-inc.com>
18005              Date: Fri, 4 Aug 2000 23:34:07 -0700 (PDT)
18006              Message-Id: <200008050634.XAA20360@ventrue.yahoo.com>
18007      Branch: perl
18008            ! regcomp.c
18009 ____________________________________________________________________________
18010 [  6539] By: jhi                                   on 2000/08/07  16:12:27
18011         Log: Make bless(REF, REF) a fatal error, add bless tests.
18012              
18013              Subject: [PATCH bleadperl-6530] bless, REF, and bless(REF, REF)
18014              From: Hugo <hv@crypt.compulink.co.uk>
18015              Date: Mon, 07 Aug 2000 16:59:38 +0100
18016              Message-Id: <200008071559.QAA29541@crypt.compulink.co.uk>
18017      Branch: perl
18018            + t/op/bless.t
18019            ! MANIFEST pod/perldiag.pod pp.c sv.c
18020 ____________________________________________________________________________
18021 [  6538] By: jhi                                   on 2000/08/07  15:59:43
18022         Log: Subject: [ID 20000803.006] 'use lib ...' doesn't behave as documented
18023              From: Tim Conrow <tim@spindrift.srl.caltech.edu>
18024              Date: Thu, 3 Aug 2000 14:29:21 -0700
18025              Message-Id: <200008032129.OAA27898@spindrift.caltech.edu>
18026      Branch: perl
18027            ! lib/lib_pm.PL
18028 ____________________________________________________________________________
18029 [  6537] By: jhi                                   on 2000/08/07  15:47:18
18030         Log: Retract #6419 for now since it breaks in AFS and MachTen.
18031      Branch: perl
18032            ! lib/Cwd.pm
18033 ____________________________________________________________________________
18034 [  6536] By: jhi                                   on 2000/08/07  15:05:29
18035         Log: Plug the security hole described in the Aug 05 2000 bugtraq message
18036              "sperl 5.00503 (and newer ;) exploit" by Michal Zalewski.
18037              The security hole exists only in suidperls, which isn't
18038              installed or even built by default.
18039      Branch: perl
18040            ! perl.c
18041 ____________________________________________________________________________
18042 [  6535] By: jhi                                   on 2000/08/07  14:45:14
18043         Log: tr memory corruption fix from Simon Cozens.
18044      Branch: perl
18045            ! doop.c
18046 ____________________________________________________________________________
18047 [  6534] By: jhi                                   on 2000/08/06  11:38:16
18048         Log: Document a bit that UDP is not what you might think.
18049              
18050              Subject: Re: IO::Socket::INET bug sending large UDP packets/fragmentation
18051              From: Lupe Christoph <lupe@lupe-christoph.de>
18052              Message-ID: <20000724085915.B13172@alanya.lupe-christoph.de>
18053              Date: Mon, 24 Jul 2000 08:59:15 +0200
18054      Branch: perl
18055            ! pod/perlipc.pod
18056 ____________________________________________________________________________
18057 [  6533] By: jhi                                   on 2000/08/06  11:35:01
18058         Log: Subject: [PATCH] perlfunc.pod use documentation (5.6.0)
18059              From: Jeff Pinyan <jeffp@hut.crusoe.net>
18060              Date: Sat, 5 Aug 2000 00:22:01 -0400 (EDT)
18061              Message-ID: <Pine.BSF.3.96.1000805002052.23260A-100000@hut.crusoe.net>
18062      Branch: perl
18063            ! pod/perlfunc.pod
18064 ____________________________________________________________________________
18065 [  6532] By: jhi                                   on 2000/08/06  03:45:41
18066         Log: Have symbols for the IoTYPEs.
18067      Branch: perl
18068            ! doio.c pp_ctl.c pp_sys.c sv.h toke.c util.c
18069 ____________________________________________________________________________
18070 [  6531] By: jhi                                   on 2000/08/06  01:33:55
18071         Log: Continue fixing the io warnings.  This also
18072              sort of fixes bug ID 20000802.003: the core dump
18073              is no more.  Whether the current behaviour is correct
18074              (giving a warning: "Not a format reference"), is another matter.
18075      Branch: perl
18076            ! doio.c pod/perldiag.pod pp_hot.c pp_sys.c t/pragma/warn/doio
18077            ! t/pragma/warn/pp_hot t/pragma/warn/pp_sys util.c
18078 ____________________________________________________________________________
18079 [  6530] By: jhi                                   on 2000/08/05  21:33:12
18080         Log: Change the Policy policy: now -Dprefix= with an existing
18081              Policy.sh and prefix == siteprefix == vendorprefix, then all
18082              of them follow along the new prefix.
18083              
18084              Subject: Re: [ID 20000508.002] -Dprefix completely broken [PATCH]
18085              From: Andy Dougherty <doughera@lafayette.edu>
18086              Date: Fri, 4 Aug 2000 14:53:50 -0400 (EDT)
18087              Message-ID: <Pine.SOL.4.10.10008041440560.17981-100000@maxwell.phys.lafayette.edu>
18088      Branch: perl
18089            ! Policy_sh.SH
18090 ____________________________________________________________________________
18091 [  6529] By: jhi                                   on 2000/08/05  18:57:28
18092         Log: Zap lib/Sys directory when cleaning up.
18093      Branch: perl
18094            ! Makefile.SH
18095 ____________________________________________________________________________
18096 [  6528] By: jhi                                   on 2000/08/05  18:40:44
18097         Log: Essential prototype changes were missing from #6527.
18098              Also make report_evil_fh() more bomb-proof.
18099      Branch: perl
18100            ! embed.h util.c
18101 ____________________________________________________________________________
18102 [  6527] By: jhi                                   on 2000/08/05  03:22:05
18103         Log: Subject: [ID 20000724.004] Perl interpreter segfault when using built-in flock
18104              From: "Ronald F. Guilmette" <rfg@monkeys.com>
18105              Date: Mon, 24 Jul 2000 15:47:00 -0700 (PDT)
18106              Message-Id: <200007242247.PAA52177@monkeys.com>
18107      Branch: perl
18108            ! embed.pl pp_hot.c pp_sys.c proto.h t/pragma/warn/pp_sys util.c
18109 ____________________________________________________________________________
18110 [  6526] By: jhi                                   on 2000/08/04  21:23:27
18111         Log: gcc versions might have (parentheses) in them.
18112      Branch: metaconfig/U/perl
18113            ! gccvers.U
18114      Branch: perl
18115            ! Configure config_h.SH
18116 ____________________________________________________________________________
18117 [  6525] By: jhi                                   on 2000/08/04  20:23:12
18118         Log: Weed buglets pointed out by
18119              
18120              From: Lupe Christoph <lupe@lupe-christoph.de>
18121              Subject: Re: [ID 20000803.005] miniperl aborts during Perl make
18122              Date: Fri, 4 Aug 2000 17:34:39 +0200
18123              Message-ID: <20000804173439.L8087@alanya.lupe-christoph.de>
18124      Branch: metaconfig/U/perl
18125            ! gccvers.U uselfs.U
18126      Branch: perl
18127            ! Configure config_h.SH
18128 ____________________________________________________________________________
18129 [  6524] By: jhi                                   on 2000/08/04  19:02:08
18130         Log: Warn under -w if lstat(FH) is attempted.
18131              
18132              Subject: [ID 20000421.003] perlfunc says you can lstat a file handle but you cannot
18133              From: "Todd C. Miller" <Todd.Miller@courtesan.com> 
18134              Date: Fri, 21 Apr 2000 10:43:46 -0600 (MDT) 
18135              Message-Id: <200004211643.e3LGhkX24720@xerxes.courtesan.com> 
18136      Branch: perl
18137            ! pod/perldiag.pod pod/perlfunc.pod pp_sys.c
18138            ! t/pragma/warn/pp_sys
18139 ____________________________________________________________________________
18140 [  6523] By: jhi                                   on 2000/08/04  12:31:11
18141         Log: Subject: New perlcc, take 2
18142              From: simon@brecon.co.uk (Simon Cozens)
18143              Date: 4 Aug 2000 06:21:04 GMT
18144              Message-ID: <slrn8oko6g.da2.simon@justanother.perlhacker.org>
18145      Branch: perl
18146            ! utils/perlcc.PL
18147 ____________________________________________________________________________
18148 [  6522] By: jhi                                   on 2000/08/04  12:26:33
18149         Log: Subject: Re: Array vs. List context
18150              From: Daniel Chetlin <daniel@chetlin.com>
18151              Date: Fri, 4 Aug 2000 00:22:44 -0700
18152              Message-ID: <20000804002244.A5924@ilmd.chetlin.org>
18153      Branch: perl
18154            ! pod/perlapi.pod pod/perlcall.pod pod/perlembed.pod
18155            ! pod/perlfaq4.pod
18156 ____________________________________________________________________________
18157 [  6521] By: jhi                                   on 2000/08/04  12:22:38
18158         Log: Subject: [ID 20000804.002] configure.gnu and arguments with whitespace characters
18159              From: Raymund Will <ray@caldera.de>
18160              Date: Fri, 4 Aug 2000 12:07:09 +0200
18161              Message-Id: <20000804120709.A14982@caldera.de>
18162      Branch: perl
18163            ! configure.gnu
18164 ____________________________________________________________________________
18165 [  6520] By: jhi                                   on 2000/08/04  04:09:06
18166         Log: After the #6519 a warning about stat() is just that,
18167              not about a filetest, which now have their own warning.
18168      Branch: perl
18169            ! pod/perldiag.pod
18170 ____________________________________________________________________________
18171 [  6519] By: jhi                                   on 2000/08/04  04:06:30
18172         Log: In the warnings call filehandles consistently so;
18173              add "unopened" warning for stat().
18174      Branch: perl
18175            ! doio.c pod/perldiag.pod pp_sys.c t/pragma/warn/doio
18176            ! t/pragma/warn/pp_sys
18177 ____________________________________________________________________________
18178 [  6518] By: jhi                                   on 2000/08/04  02:55:35
18179         Log: Subject: Minor tweak to perlvar.pod
18180              From: "Stephen P. Potter" <spp@ds.net>
18181              Date: Tue, 18 Apr 2000 09:26:03 -0400
18182              Message-Id: <200004181326.JAA01560@spp.users.ds.net>
18183      Branch: perl
18184            ! pod/perlvar.pod
18185 ____________________________________________________________________________
18186 [  6517] By: jhi                                   on 2000/08/04  02:50:08
18187         Log: Subject: [ID 19990721.004] Documentation bug in perlfunc
18188              From: "Clinton Pierce" <cpierce1@ford.com>
18189              Date: Wed, 21 Jul 1999 16:45:31 -0400
18190              Message-Id: <199907212049.QAA12875@mailfw3.ford.com>
18191              
18192              Fix by Stephen Potter (visible in the bug db but not in p5p?)
18193      Branch: perl
18194            ! pod/perlfunc.pod pod/perlop.pod
18195 ____________________________________________________________________________
18196 [  6516] By: jhi                                   on 2000/08/04  02:09:25
18197         Log: This is 6512.  Really.
18198      Branch: perl
18199            ! dump.c
18200 ____________________________________________________________________________
18201 [  6515] By: jhi                                   on 2000/08/04  01:25:50
18202         Log: mention the idea of @( and @)
18203      Branch: perl
18204            ! Todo-5.6
18205 ____________________________________________________________________________
18206 [  6514] By: bailey                                on 2000/08/04  01:18:46
18207         Log: YA resync with mainstem, including VMS patches from others
18208      Branch: vmsperl
18209           +> (branch 48 files)
18210            - lib/lib.pm pod/Makefile pod/Win32.pod pod/buildtoc
18211           !> (integrate 354 files)
18212 ____________________________________________________________________________
18213 [  6513] By: jhi                                   on 2000/08/04  01:18:18
18214         Log: Subject: [ID 20000802.004] Tests op/grent.t and op/pwent.t fail unnecessarily
18215              From: Mark Dickinson <dickins3@fas.harvard.edu>
18216              Date: Wed, 2 Aug 2000 13:25:07 -0400 (EDT)
18217              Message-Id: <Pine.OSF.4.10.10008021321380.32190-200000@is07.fas.harvard.edu>
18218      Branch: perl
18219            ! t/op/grent.t t/op/pwent.t
18220 ____________________________________________________________________________
18221 [  6512] By: jhi                                   on 2000/08/04  01:14:06
18222         Log: Subject: [ID 20000802.002] [PATCH] memory pseudo-leak in sv_dump
18223              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
18224              Date: Wed, 02 Aug 2000 10:51:01 +0100
18225              Message-Id: <E13JvAz-0005B5-00@libra.cus.cam.ac.uk>
18226      Branch: perl
18227            ! sv.c
18228 ____________________________________________________________________________
18229 [  6511] By: jhi                                   on 2000/08/04  00:57:00
18230         Log: Subject: [PATCH] bad cppsymbols on os2 + Configure question                
18231              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
18232              Date: Thu, 03 Aug 2000 17:20:04 -0700
18233              Message-ID: <0wgi5gzkgqLb092yn@efn.org> 
18234      Branch: metaconfig
18235            ! U/modified/Cppsym.U
18236      Branch: perl
18237            ! Configure config_h.SH
18238 ____________________________________________________________________________
18239 [  6510] By: jhi                                   on 2000/08/04  00:25:28
18240         Log: detypo
18241      Branch: perl
18242            ! Makefile.SH
18243 ____________________________________________________________________________
18244 [  6509] By: jhi                                   on 2000/08/03  23:43:18
18245         Log: Subject: [PATCH perl-current] Comings and goings in op/sprintf.t
18246              From: Dominic Dunlop <domo@computer.org>
18247              Date: Thu, 3 Aug 2000 22:16:46 +0200
18248              Message-Id: <p04320411b5af8091f6fe@[194.235.193.148]>
18249      Branch: perl
18250            ! t/op/sprintf.t
18251 ____________________________________________________________________________
18252 [  6508] By: jhi                                   on 2000/08/03  23:40:37
18253         Log: Subject: [PATCH bleadperl] [ID 20000803.001] further regexp counting problems
18254              From: Hugo <hv@crypt.compulink.co.uk>
18255              Date: Thu, 03 Aug 2000 18:25:30 +0100
18256              Message-Id: <200008031725.SAA10580@crypt.compulink.co.uk>
18257      Branch: perl
18258            ! regcomp.c t/op/re_tests
18259 ____________________________________________________________________________
18260 [  6507] By: jhi                                   on 2000/08/03  23:38:28
18261         Log: Subject: [PATCH] sv.h documentation - SvLEN
18262              From: Mike Guy <mjtg@cam.ac.uk>
18263              Date: Thu, 03 Aug 2000 14:43:09 +0100
18264              Message-Id: <E13KLHB-0004UK-00@libra.cus.cam.ac.uk>
18265      Branch: perl
18266            ! sv.h
18267 ____________________________________________________________________________
18268 [  6506] By: jhi                                   on 2000/08/03  15:49:14
18269         Log: Disable the fix_pl hack for now.
18270      Branch: perl
18271            ! Makefile.SH
18272 ____________________________________________________________________________
18273 [  6505] By: jhi                                   on 2000/08/03  13:49:04
18274         Log: Add a URL for FSF.
18275              
18276              Subject: Patch for README
18277              From: Elaine -HFB- Ashton <elaine@chaos.wustl.edu>
18278              Date: Wed, 2 Aug 2000 13:25:09 -0500
18279              Message-ID: <20000802132509.I10379@chaos.wustl.edu>
18280      Branch: perl
18281            ! README
18282 ____________________________________________________________________________
18283 [  6504] By: jhi                                   on 2000/08/03  13:29:19
18284         Log: Be more informative on what is skipped and why,
18285              also repeat the list at the end.
18286      Branch: perl
18287            ! Porting/p4desc
18288 ____________________________________________________________________________
18289 [  6503] By: jhi                                   on 2000/08/03  13:07:05
18290         Log: Circumvent the removal of .patch by fix_pl.
18291              
18292              Subject: Re: [ID 20000802.011] unable to 'make test'          
18293              From: simon@brecon.co.uk (Simon Cozens) 
18294              Date: 3 Aug 2000 04:17:00 GMT
18295              Message-ID: <slrn8ohshs.81o.simon@justanother.perlhacker.org> 
18296      Branch: perl
18297            ! Makefile.SH
18298 ____________________________________________________________________________
18299 [  6502] By: jhi                                   on 2000/08/03  00:14:34
18300         Log: Add the missing setproctitle unit.
18301      Branch: metaconfig/U/perl
18302            + d_setproctitle.U
18303 ____________________________________________________________________________
18304 [  6501] By: jhi                                   on 2000/08/03  00:00:26
18305         Log: The subtest 4 may fail also on VOBS, as pointed out
18306              by Nick Ing-Simmons in November 1999, bug id 19991124.003
18307              (but the failure in that bug report isn't the subtest 4).
18308      Branch: perl
18309            ! t/op/stat.t
18310 ____________________________________________________________________________
18311 [  6500] By: jhi                                   on 2000/08/02  23:49:30
18312         Log: Better skip message for the test; one of the two problems in
18313              
18314              Subject: [ID 20000224.003] Not OK: perl v5.5.660 on i86pc-solaris 2.7
18315              From: Lupe Christoph <lupe@lupe-christoph.de>
18316              Date: Thu, 24 Feb 2000 11:54:50 +0100 (MET)
18317              Message-Id: <200002241054.LAA06808@lupe-christoph.de>
18318      Branch: perl
18319            ! t/op/numconvert.t
18320 ____________________________________________________________________________
18321 [  6499] By: jhi                                   on 2000/08/02  22:49:16
18322         Log: Allow "no Module;" even if there is no 'unimport'.
18323              
18324              Subject: [ID 20000324.029] `unimport' is not special the way `import' is
18325              From: mjd@plover.com
18326              Date: 24 Mar 2000 15:24:34 -0000
18327              Message-Id: <20000324152434.15160.qmail@plover.com>
18328      Branch: perl
18329            ! gv.c
18330 ____________________________________________________________________________
18331 [  6498] By: jhi                                   on 2000/08/02  22:42:58
18332         Log: Generate OP_IS_SOCKET() and OP_IS_FILETEST() macros
18333              that are hopefully soon put into use.
18334      Branch: perl
18335            ! opcode.h opcode.pl opnames.h
18336 ____________________________________________________________________________
18337 [  6497] By: gsar                                  on 2000/08/02  22:28:59
18338         Log: require.t needs binmode() to work on windows
18339      Branch: perl
18340            ! t/comp/require.t
18341 ____________________________________________________________________________
18342 [  6496] By: jhi                                   on 2000/08/02  22:08:51
18343         Log: Document the IVdf UVuf UVof UVxf.
18344      Branch: perl
18345            ! pod/perlguts.pod
18346 ____________________________________________________________________________
18347 [  6495] By: jhi                                   on 2000/08/02  21:54:26
18348         Log: detypo #6494
18349      Branch: perl
18350            ! ext/Data/Dumper/Dumper.xs
18351 ____________________________________________________________________________
18352 [  6494] By: jhi                                   on 2000/08/02  21:49:17
18353         Log: Dump UVs as UVs in Data::Dumper.
18354              
18355              Subject: Re: [ID 20000405.018] Data::Dumper and negative numbers
18356              From: Gurusamy Sarathy <gsar@ActiveState.com>
18357              Date: Thu, 27 Apr 2000 12:26:25 -0700
18358              Message-Id: <200004271926.MAA04331@molotok.activestate.com>
18359      Branch: perl
18360            ! ext/Data/Dumper/Dumper.xs
18361 ____________________________________________________________________________
18362 [  6493] By: jhi                                   on 2000/08/02  17:01:58
18363         Log: Subject: [PATCH bleadperl] [ID 20000731.010] regex error 
18364              From: Hugo <hv@crypt.compulink.co.uk>
18365              Date: Wed, 02 Aug 2000 14:53:56 +0100
18366              Message-Id: <200008021353.OAA24761@crypt.compulink.co.uk>
18367      Branch: perl
18368            ! regexec.c t/op/re_tests
18369 ____________________________________________________________________________
18370 [  6492] By: jhi                                   on 2000/08/02  15:02:46
18371         Log: The new setproctitle() feature is available only in 
18372              bleeding edge FreeBSD.  From Paul Saab.
18373      Branch: perl
18374            ! mg.c
18375 ____________________________________________________________________________
18376 [  6491] By: jhi                                   on 2000/08/02  13:34:36
18377         Log: The tr utf8 patching continues.
18378              
18379              Subject: Re: #6469, too many tests claimed in require.t
18380              From: simon@brecon.co.uk (Simon Cozens)
18381              Date: 2 Aug 2000 02:37:17 GMT
18382              Message-ID: <slrn8of2at.81o.simon@justanother.perlhacker.org>
18383              
18384              (the logic of the test was the wrong way round in the patch)
18385      Branch: perl
18386            ! doop.c
18387 ____________________________________________________________________________
18388 [  6490] By: jhi                                   on 2000/08/02  13:27:38
18389         Log: The name of a filehandle does not have <these>.
18390      Branch: perl
18391            ! doio.c pod/perldiag.pod pp_sys.c t/pragma/warn/doio
18392            ! t/pragma/warn/pp_sys util.c
18393 ____________________________________________________________________________
18394 [  6489] By: jhi                                   on 2000/08/02  04:26:46
18395         Log: Remove the extraneous "main::" prefix from all the
18396              "opened only for", "on closed", and "never opened" warnings.
18397              
18398              Subject: Re: inappropriate warning
18399              From: Gurusamy Sarathy <gsar@ActiveState.com>
18400              Date: Mon, 20 Mar 2000 11:28:02 -0800
18401              Message-Id: <200003201928.LAA32224@maul.ActiveState.com>
18402      Branch: perl
18403            ! doio.c embed.h embed.pl gv.c objXSUB.h pp_hot.c pp_sys.c
18404            ! proto.h t/pragma/warn/4lint t/pragma/warn/doio
18405            ! t/pragma/warn/pp_hot t/pragma/warn/pp_sys util.c
18406 ____________________________________________________________________________
18407 [  6488] By: jhi                                   on 2000/08/02  03:02:57
18408         Log: memcpy has n o in it, as pinted ut by Sarathy.
18409      Branch: perl
18410            ! pod/perlguts.pod
18411 ____________________________________________________________________________
18412 [  6487] By: jhi                                   on 2000/08/02  02:44:51
18413         Log: Document in one place the memory abstractions used in Perl core.
18414              
18415              Subject: Re: Memory abstraction
18416              From: simon@brecon.co.uk (Simon Cozens)
18417              Date: 2 Aug 2000 02:20:23 GMT
18418              Organization: Earth.li Origins
18419      Branch: perl
18420            ! pod/perlguts.pod
18421 ____________________________________________________________________________
18422 [  6486] By: jhi                                   on 2000/08/02  02:41:57
18423         Log: regen_headers, regen perltoc.
18424      Branch: perl
18425            ! perlapi.c pod/perltoc.pod
18426 ____________________________________________________________________________
18427 [  6485] By: jhi                                   on 2000/08/02  01:43:33
18428         Log: "This little thing tests for a file .patch, and if it contains
18429              a number, pops into patchlevel.h" (making it easier to track
18430              which development version people are reporting bugs against)
18431              
18432              Subject: Patchlevel autogeneration for repository perls
18433              From: simon@brecon.co.uk (Simon Cozens)
18434              Date: 14 Jul 2000 07:12:15 GMT
18435              Message-ID: <slrn8mtfaf.1qo.simon@justanother.perlhacker.org>
18436      Branch: perl
18437            + fix_pl
18438            ! MANIFEST Makefile.SH
18439 ____________________________________________________________________________
18440 [  6484] By: jhi                                   on 2000/08/02  01:32:54
18441         Log: FreeBSD 3.* updates from
18442              
18443              From: Paul Saab <ps@yahoo-inc.com>
18444              Subject: [ID 20000801.007] setting $0 on FreeBSD 4.x does not get reflected in /bin/ps
18445              Date: Tue, 1 Aug 2000 15:41:39 -0700
18446              Message-Id: <20000801154139.A53740@yahoo-inc.com>
18447      Branch: perl
18448            ! hints/freebsd.sh
18449 ____________________________________________________________________________
18450 [  6483] By: jhi                                   on 2000/08/02  01:27:44
18451         Log: In new BSDs changes to argv[] do not show up in ps(1) output,
18452              instead one must use setproctitle().  This was already addressed
18453              by change #6457, but the below has a new variant for FreeBSD 4.0
18454              or later, and the matter is also documented more.
18455              
18456              From: Paul Saab <ps@yahoo-inc.com>
18457              Subject: [ID 20000801.007] setting $0 on FreeBSD 4.x does not get reflected in /bin/ps
18458              Date: Tue, 1 Aug 2000 15:41:39 -0700
18459              Message-Id: <20000801154139.A53740@yahoo-inc.com>
18460      Branch: metaconfig/U/perl
18461            + i_libutil.U
18462      Branch: perl
18463            ! Configure config_h.SH mg.c perl.h pod/perlvar.pod
18464 ____________________________________________________________________________
18465 [  6482] By: jhi                                   on 2000/08/01  22:17:32
18466         Log: The test from this
18467              
18468              Subject: Re: [ID 20000411.002] qw() gives different results in 5.6 to previous versions
18469              Date: Sat, 15 Apr 2000 17:03:44 +0100
18470              From: Tom Hughes <tom@compton.nu>
18471              Message-ID: <d1c9b2af49.tom@compton.compton.nu>
18472              
18473              was missing, the code change went in as #5989
18474              (which had a different test?)
18475      Branch: perl
18476            ! t/op/misc.t
18477 ____________________________________________________________________________
18478 [  6481] By: jhi                                   on 2000/08/01  21:48:38
18479         Log: Subject: [Proposed PATCH] Let Perl define QUAD_MIN and _MAX itself
18480              From: Jeff Okamoto <okamoto@xfiles.intercon.hp.com>
18481              Date: Thu, 27 Jul 2000 13:51:41 -0700 (PDT)
18482              Message-Id: <200007272051.NAA02178@xfiles.intercon.hp.com>
18483      Branch: perl
18484            ! perl.h
18485 ____________________________________________________________________________
18486 [  6480] By: jhi                                   on 2000/08/01  18:05:28
18487         Log: Make p4desc to skip non-mainperl branches by default.
18488      Branch: perl
18489            ! Porting/p4desc
18490 ____________________________________________________________________________
18491 [  6479] By: jhi                                   on 2000/08/01  17:29:19
18492         Log: If gccosandvers is equal to osname, clear gccosandvers.
18493      Branch: metaconfig/U/perl
18494            ! gccvers.U
18495      Branch: perl
18496            ! Configure config_h.SH
18497 ____________________________________________________________________________
18498 [  6478] By: jhi                                   on 2000/08/01  15:54:08
18499         Log: BOM patching from Simon Cozens.
18500      Branch: perl
18501            ! toke.c
18502 ____________________________________________________________________________
18503 [  6477] By: jhi                                   on 2000/08/01  04:50:33
18504         Log: Stash away the largefiles flags and libswanted.
18505      Branch: perl
18506            ! hints/aix.sh hints/hpux.sh hints/linux.sh hints/solaris_2.sh
18507 ____________________________________________________________________________
18508 [  6476] By: gsar                                  on 2000/08/01  04:24:24
18509         Log: various syntax errors and such (not fixed: comp/require.t#22 coredump
18510              on Windows)
18511      Branch: perl
18512            ! t/pragma/utf8.t utf8.c win32/win32.c
18513 ____________________________________________________________________________
18514 [  6475] By: jhi                                   on 2000/08/01  03:35:24
18515         Log: Make chr() for values >127 to create utf8 when under utf8.
18516              
18517              Subject: Re: uft8/chr()
18518              From: simon@brecon.co.uk (Simon Cozens)
18519              Date: 1 Aug 2000 02:37:02 GMT
18520              Message-ID: <slrn8ocdud.19l.simon@justanother.perlhacker.org>
18521      Branch: perl
18522            ! pod/perlfunc.pod pp.c t/pragma/utf8.t
18523 ____________________________________________________________________________
18524 [  6474] By: jhi                                   on 2000/08/01  02:36:18
18525         Log: In Digital UNIX warn if gcc explicitly chosen because even
18526              2.95.2 is known to cause problems.
18527      Branch: perl
18528            ! hints/dec_osf.sh
18529 ____________________________________________________________________________
18530 [  6473] By: jhi                                   on 2000/08/01  02:00:56
18531         Log: Make the safety catch for buggy gccs work with triple version
18532              numbers like 2.95.2.  Reported in
18533              
18534              Subject: [ID 20000731.005] Perl 5.6.0 "Configure" fails to recognize gcc 2.95.2
18535              From: Maurizio Loreti <maurizio.loreti@pd.infn.it>
18536              Date: Mon, 31 Jul 2000 14:55:06 +0200
18537              Message-Id: <200007311255.AA25586@axcdf4.pd.infn.it>
18538      Branch: perl
18539            ! hints/dec_osf.sh
18540 ____________________________________________________________________________
18541 [  6472] By: jhi                                   on 2000/08/01  01:13:33
18542         Log: Subject: fix and question re: waitpid() under win32
18543              From: Brian Clarke <clarke@appliedmeta.com>
18544              Date: Fri, 28 Jul 2000 15:18:29 -0400
18545              Message-ID: <3981DC85.290314EB@appliedmeta.com>
18546              
18547              Slightly reformatted and WNOHANG # define moved to win32.h
18548              so that also POSIX.xs sees it, as suggsted by Sarathy.
18549      Branch: perl
18550            ! win32/win32.c win32/win32.h
18551 ____________________________________________________________________________
18552 [  6471] By: jhi                                   on 2000/08/01  00:55:05
18553         Log: Subject: [PATCH] allow non-variable as lhs of non-updating tr///
18554              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
18555              Message-Id: <E13JEgd-0003fy-00@libra.cus.cam.ac.uk>
18556              Date: Mon, 31 Jul 2000 13:28:51 +0100
18557              
18558              (aka ID 20000730.002)
18559      Branch: perl
18560            ! op.c t/op/tr.t
18561 ____________________________________________________________________________
18562 [  6470] By: jhi                                   on 2000/07/31  23:34:42
18563         Log: Document the problem with -P in HP-UX and its workaround.
18564              
18565              Subject: [ID 20000628.002] HPUX 11: -Ae compiler flag breaks perl -P
18566              From: Milton Hankins {64892} <webtools@uewrhp03.msd.ray.com>
18567              Date: Wed, 28 Jun 2000 13:58:21 -0400 (EDT)
18568              Message-Id: <200006281758.NAA10339@uewrhp03.msd.ray.com>
18569      Branch: perl
18570            ! README.hpux
18571 ____________________________________________________________________________
18572 [  6469] By: jhi                                   on 2000/07/31  04:15:02
18573         Log: The swallow_bom() saga continues.  The #23 of require.t
18574              (UTF16-LE) still fails (silently, no output) but the #22
18575              (UTF16-BE) seems to be working now.  The root of the
18576              failure may be in sv_gets(): is it UTF-16LE-aware,
18577              especially when it comes to line endings? 
18578      Branch: perl
18579            ! embed.h embed.pl objXSUB.h pod/perldiag.pod proto.h
18580            ! t/comp/require.t toke.c utf8.c
18581 ____________________________________________________________________________
18582 [  6468] By: jhi                                   on 2000/07/30  19:05:48
18583         Log: Find green threads before native threads.
18584              
18585              Subject: Re: Patch to jpl/JNI/Makefile.PL
18586              From: Jens Thomsen <jens@fiend.cis.com>
18587              Date: Fri, 28 Jul 2000 15:54:49 -0600 (MDT)
18588              Message-ID: <Pine.LNX.4.21.0007281553470.687-200000@fiend.cis.com>
18589      Branch: perl
18590            ! jpl/JNI/Makefile.PL
18591 ____________________________________________________________________________
18592 [  6467] By: jhi                                   on 2000/07/30  18:36:22
18593         Log: Fix the HALF_UPGRADE() macro introduced in #6263.
18594      Branch: perl
18595            ! doop.c
18596 ____________________________________________________________________________
18597 [  6466] By: jhi                                   on 2000/07/30  04:37:29
18598         Log: A new version of the "remove UPPERACSE string comparison"
18599              operators.  The problem with the previous one (change #6454)
18600              was that it was for Perl 5.6.0.  From Paul Marquess.
18601      Branch: perl
18602            ! t/op/do.t t/pragma/warn/2use t/pragma/warn/3both
18603            ! t/pragma/warn/4lint t/pragma/warn/5nolint t/pragma/warn/7fatal
18604            ! t/pragma/warn/8signal t/pragma/warn/toke toke.c
18605 ____________________________________________________________________________
18606 [  6465] By: jhi                                   on 2000/07/29  22:39:56
18607         Log: Do not upgrade SVs into utf8 just because they participate
18608              in eq or cmp.  Reported and fix suggested in
18609              
18610              Subject: [ID 20000720.009] sv_eq UTF8 bug
18611              From: "Simon Cozens" <simon@othersideofthe.earth.li>
18612              Date: 21 Jul 2000 04:37:29 -0000
18613              Message-Id: <20000721043729.30081.qmail@othersideofthe.earth.li>
18614              
18615              Exercise for the kind reader: should we or should we not
18616              cache the utf8 conversion alonside the SV? (as magic,
18617              as thestrxfrm()ed version is cached under use locale)
18618              Argue both for and against.
18619      Branch: perl
18620            ! sv.c
18621 ____________________________________________________________________________
18622 [  6464] By: jhi                                   on 2000/07/29  22:36:22
18623         Log: Subject: UTF8 concat
18624              From: simon@brecon.co.uk (Simon Cozens) 
18625              Date: 30 Jun 2000 06:13:25 GMT
18626              Message-ID: <slrn8loek5.9ai.simon@justanother.perlhacker.org> 
18627              
18628              (with a memory leak fixed, plus a few casts added)
18629              
18630              This also seems to help for
18631              
18632              Subject: [ID 20000716.015] join UTF8 weirdness
18633              From: root <root@ak-71.mind.de> 
18634              Date: Sat, 15 Jul 2000 15:29:54 +0200
18635              Message-Id: <200007151329.PAA13970@ak-71.mind.de>
18636              
18637              (from Andreas König)
18638      Branch: perl
18639            ! pp_hot.c
18640 ____________________________________________________________________________
18641 [  6463] By: jhi                                   on 2000/07/29  00:55:39
18642         Log: Tune the comments and hopefully stop a memory leak.
18643      Branch: perl
18644            ! toke.c utf8.c
18645 ____________________________________________________________________________
18646 [  6462] By: jhi                                   on 2000/07/29  00:16:53
18647         Log: The problem described in this
18648              
18649              Subject: [ID 20000322.018] named chars aren't magical enough
18650              From: root <root@dixie.cscaper.com>     
18651              Date: Wed, 22 Mar 2000 18:37:42 -0700
18652              Message-Id: <200003230137.SAA29532@dixie.cscaper.com>
18653              
18654              has been fixed in perl 5.6.0 but just in case added a test
18655              to keep it away.  (The report from Joseph Hall.)
18656      Branch: perl
18657            ! t/lib/charnames.t
18658 ____________________________________________________________________________
18659 [  6461] By: jhi                                   on 2000/07/28  23:56:36
18660         Log: Tiny fixes for #6460.
18661      Branch: metaconfig/U/perl
18662            ! gccvers.U
18663      Branch: perl
18664            ! Configure config_h.SH
18665 ____________________________________________________________________________
18666 [  6460] By: jhi                                   on 2000/07/28  23:24:41
18667         Log: Warn if the version of the operating system used to compile gcc
18668              differs from the current version of the operating system.
18669              Also display the gcc compilation os and version in myconfig.
18670              Inspiration from
18671              
18672              Subject: Re: [ID 20000710.003] ERRORS!!         
18673              From: "Kurt D. Starsinic" <kstar@chapin.edu>
18674              Date: Mon, 10 Jul 2000 15:54:16 -0400
18675              Message-ID: <20000710155416.A1384@O2.chapin.edu>
18676      Branch: metaconfig/U/perl
18677            ! gccvers.U
18678      Branch: perl
18679            ! Configure config_h.SH myconfig.SH
18680 ____________________________________________________________________________
18681 [  6459] By: jhi                                   on 2000/07/28  22:00:32
18682         Log: In DEC OSF aka Digital UNIX aka Tru64 add the version
18683              letter to $Config{osvers}.
18684      Branch: metaconfig
18685            ! U/modified/Oldconfig.U
18686      Branch: perl
18687            ! Configure config_h.SH
18688 ____________________________________________________________________________
18689 [  6458] By: jhi                                   on 2000/07/28  04:15:39
18690         Log: Back out #6454, doesn't seem to work.
18691              (Reason: that patch was for perl 5.6.0, not perl-current)
18692              (A version of the patch for perl-current came in later as #6466)
18693      Branch: perl
18694            ! regcomp.c t/op/do.t t/pragma/warn/2use t/pragma/warn/4lint
18695            ! t/pragma/warn/5nolint t/pragma/warn/7fatal
18696            ! t/pragma/warn/8signal t/pragma/warn/toke toke.c
18697 ____________________________________________________________________________
18698 [  6457] By: jhi                                   on 2000/07/27  23:31:49
18699         Log: Use setproctitle() if available to modify $0.
18700              
18701              Subject: setting $* on BSD4 broken
18702              From: Jeffrey Friedl <jfriedl@yahoo-inc.com>
18703              Date: Sun, 23 Jul 2000 01:31:34 -0700 (PDT)
18704              Message-Id: <200007230831.BAA08379@ventrue.yahoo.com>
18705      Branch: metaconfig
18706            ! U/modified/Myinit.U
18707      Branch: perl
18708            ! Configure config_h.SH mg.c
18709 ____________________________________________________________________________
18710 [  6456] By: jhi                                   on 2000/07/27  14:50:47
18711         Log: Allow "no AutoLoader;", based on change #6444,
18712              suggested by Graham Barr.
18713      Branch: perl
18714            ! lib/AutoLoader.pm
18715 ____________________________________________________________________________
18716 [  6455] By: jhi                                   on 2000/07/27  14:19:10
18717         Log: Subject: [ID 19990709.002] [DOCUMENTATION PATCH] perldiag
18718              From: rspier@pobox.com (Robert Spier)
18719              Date: Thu, 27 Jul 2000 09:49:35 -0400 (EDT)
18720              Message-ID: <14720.15855.787664.424783@rls.cx>
18721      Branch: perl
18722            ! pod/perldiag.pod
18723 ____________________________________________________________________________
18724 [  6454] By: jhi                                   on 2000/07/27  14:03:02
18725         Log: Remove EQ, NE, GT, LT, GE, LE (they have been deprecated
18726              for a long time).
18727              
18728              Reported in
18729              
18730              Subject: [ID 20000717.004] Unexpected complaint of NE deprecation
18731              From: Ryan Herbert <rherbert@sycamorehq.com>
18732              Date: Mon, 17 Jul 2000 11:40:42 -0400
18733              Message-Id: <200007171540.LAA20480@beorn.hq.sai>
18734              
18735              Patched in
18736              
18737              Subject: RE: [ID 20000717.004] Unexpected complaint of NE deprecation
18738              From: "Paul Marquess" <Paul.Marquess@btinternet.com>
18739              Date: Wed, 26 Jul 2000 23:40:18 +0100
18740              Message-ID: <000001bff752$79511880$0a17073e@tiny>
18741              
18742              based on an earlier patch from Stephen P. Potter.
18743              
18744              (Removed later by change #6458 because this patch was for
18745              perl 5.6.0, not perl-current)
18746      Branch: perl
18747            ! t/op/do.t t/pragma/warn/2use t/pragma/warn/4lint
18748            ! t/pragma/warn/5nolint t/pragma/warn/7fatal
18749            ! t/pragma/warn/8signal t/pragma/warn/toke toke.c
18750 ____________________________________________________________________________
18751 [  6453] By: jhi                                   on 2000/07/27  13:48:02
18752         Log: Subject: [PATCH] fixes bug 20000508.004
18753              From: Michael Stevens <mstevens@globnix.org>
18754              Date: Thu, 27 Jul 2000 13:49:04 +0100
18755              Message-ID: <20000727134903.A9351@athenaeum.globnix.org>
18756      Branch: perl
18757            ! pod/perldata.pod
18758 ____________________________________________________________________________
18759 [  6452] By: jhi                                   on 2000/07/26  23:51:26
18760         Log: Further File::Temp patches from Yitzchak Scott-Thoennes
18761              and Craig A. Berry.
18762      Branch: perl
18763            ! lib/File/Temp.pm pod/perlport.pod
18764 ____________________________________________________________________________
18765 [  6451] By: jhi                                   on 2000/07/26  19:43:30
18766         Log: Be wary of close()s, too.
18767              
18768              Subject: Re: [PATCH] perlbug cleanup
18769              From: Tim Jenness <t.jenness@jach.hawaii.edu>
18770              Date: Wed, 26 Jul 2000 09:32:43 -1000 (HST)
18771              Message-ID: <Pine.LNX.4.10.10007260931540.27658-100000@lapaki.jach.hawaii.edu>
18772      Branch: perl
18773            ! utils/perlbug.PL
18774 ____________________________________________________________________________
18775 [  6450] By: jhi                                   on 2000/07/26  18:41:40
18776         Log: Subject: Minor doc patch: handy.h
18777              From: Daniel =?iso-8859-1?Q?Mui=F1o?= <dmuino@afip.gov.ar>
18778              Date: Wed, 26 Jul 2000 15:34:25 -0300
18779              Message-ID: <397F2F31.F3F9F4F3@afip.gov.ar>
18780      Branch: perl
18781            ! handy.h pod/perlapi.pod
18782 ____________________________________________________________________________
18783 [  6449] By: jhi                                   on 2000/07/26  18:23:55
18784         Log: Subject: [PATCH] minor doc change - perlguts
18785              From: Michael Stevens <mstevens@globnix.org>
18786              Date: Thu, 13 Jul 2000 12:39:18 +0100
18787              Message-ID: <20000713123918.A26561@athenaeum.globnix.org>
18788      Branch: perl
18789            ! pod/perlguts.pod
18790 ____________________________________________________________________________
18791 [  6448] By: jhi                                   on 2000/07/26  18:20:30
18792         Log: open() wariness in perlbug.
18793              
18794              Subject: [PATCH] perlbug cleanup
18795              From: Michael Stevens <mstevens@globnix.org>
18796              Message-ID: <20000713155222.A11380@athenaeum.globnix.org>
18797              Date: Thu, 13 Jul 2000 15:52:23 +0100
18798      Branch: perl
18799            ! utils/perlbug.PL
18800 ____________________________________________________________________________
18801 [  6447] By: jhi                                   on 2000/07/26  18:13:04
18802         Log: File::Temp patches for VMS and OS/2 from Tim Jenness.
18803      Branch: perl
18804            ! lib/File/Temp.pm t/lib/ftmp-security.t
18805 ____________________________________________________________________________
18806 [  6446] By: jhi                                   on 2000/07/26  18:06:32
18807         Log: docfix from Peter Scott <Peter@PSDT.com>.
18808      Branch: perl
18809            ! pod/perlfunc.pod
18810 ____________________________________________________________________________
18811 [  6445] By: jhi                                   on 2000/07/26  17:53:31
18812         Log: Fix *foo{FORMAT}.
18813              
18814              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
18815              Subject: Re: Looking for a starting point (Mark-Jason?, Chip?, Jarkko?)
18816              Date: Wed, 26 Jul 2000 19:51:02 +0200
18817              Message-Id: <20000726194952.41DD.H.M.BRAND@hccnet.nl>
18818              
18819              From: Graham Barr <gbarr@pobox.com>
18820              Subject: Re: Looking for a starting point (Mark-Jason?, Chip?, Jarkko?)
18821              Date: Wed, 26 Jul 2000 17:38:36 +0100
18822              Message-ID: <20000726173836.L472@pobox.com>
18823      Branch: perl
18824            ! pp.c sv.c t/op/gv.t
18825 ____________________________________________________________________________
18826 [  6444] By: jhi                                   on 2000/07/26  17:49:14
18827         Log: Allow "sub AUTOLOAD;" to stop AUTOLOAD inheritance,
18828              from Graham Barr in the module list.
18829      Branch: perl
18830            ! gv.c pod/perlobj.pod
18831 ____________________________________________________________________________
18832 [  6443] By: jhi                                   on 2000/07/26  16:06:56
18833         Log: More split() doc and test patches from Mike Guy.
18834      Branch: perl
18835            ! pod/perlfunc.pod t/op/split.t
18836 ____________________________________________________________________________
18837 [  6442] By: jhi                                   on 2000/07/26  16:05:30
18838         Log: MacOS nits from Matthias Neeracher.
18839      Branch: perl
18840            ! perl.c pp_ctl.c
18841 ____________________________________________________________________________
18842 [  6441] By: jhi                                   on 2000/07/26  04:39:57
18843         Log: Subject: [PATCH] split /^/
18844              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
18845              Date: Tue, 25 Jul 2000 14:18:57 +0100
18846              Message-Id: <E13H4bp-00062h-00@libra.cus.cam.ac.uk>
18847              
18848              (with notes from tchrist and gbarr)
18849      Branch: perl
18850            ! pod/perlfunc.pod t/op/split.t
18851 ____________________________________________________________________________
18852 [  6440] By: jhi                                   on 2000/07/26  04:32:32
18853         Log: Subject: [PATCH: perl@6409] bug fix for munchconfig (turned up by CXX)
18854              From: Peter Prymmer <pvhp@forte.com>
18855              Date: Tue, 25 Jul 2000 18:59:16 -0700 (PDT)
18856              Message-ID: <Pine.OSF.4.10.10007251805350.294719-100000@aspara.forte.com>
18857      Branch: perl
18858            ! vms/munchconfig.c
18859 ____________________________________________________________________________
18860 [  6439] By: jhi                                   on 2000/07/26  04:31:01
18861         Log: Make the unimplemented POSIX regex features [[.cc.]] and [[=c=]]
18862              to be fatal errors (instead of by default ignoring them, and
18863              ignoring with a bug: even though -w gave an error, the opening [
18864              was left in)  Reported in:
18865              
18866              Subject: [ID 20000716.024] [=cc=] / [:blank:]
18867              From: Jeffrey Friedl <jfriedl@fummy.dsl.yahoo.com>
18868              Date: Sun, 16 Jul 2000 17:55:29 -0700
18869              Message-Id: <200007170055.RAA23528@fummy.dsl.yahoo.com>
18870      Branch: perl
18871            ! pod/perldiag.pod regcomp.c t/pragma/warn/regcomp
18872 ____________________________________________________________________________
18873 [  6438] By: jhi                                   on 2000/07/25  15:41:15
18874         Log: Subject: [PATCH] av.c apidoc
18875              From: simon@brecon.co.uk (Simon Cozens)
18876              Date: 24 Jul 2000 06:40:52 GMT
18877              Message-ID: <slrn8nnp7k.cgv.simon@justanother.perlhacker.org>
18878      Branch: perl
18879            ! av.c embed.h embed.pl embedvar.h global.sym objXSUB.h
18880            ! perlapi.c perlapi.h pod/perlapi.pod proto.h
18881 ____________________________________________________________________________
18882 [  6437] By: jhi                                   on 2000/07/25  14:05:36
18883         Log: Subject: [ID 20000724.003] Documentation changes for perllocale.pod
18884              From: "Stephen P. Potter" <spp@ds.net>
18885              Date: Mon, 24 Jul 2000 14:22:23 -0400
18886              Message-Id: <200007241822.OAA06827@spp.users.ds.net>
18887      Branch: perl
18888            ! pod/perllocale.pod
18889 ____________________________________________________________________________
18890 [  6436] By: jhi                                   on 2000/07/25  14:02:03
18891         Log: Subject: [PATCH] Make large file tests deal with SIGXFSZ
18892              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
18893              Date: Mon, 24 Jul 2000 18:04:28 +0100
18894              Message-Id: <E13GleW-0000fr-00@libra.cus.cam.ac.uk>
18895      Branch: perl
18896            ! t/lib/syslfs.t t/op/lfs.t
18897 ____________________________________________________________________________
18898 [  6435] By: jhi                                   on 2000/07/25  13:59:28
18899         Log: Get UTF16 BOMs working.  Patch from
18900              
18901              Subject: Re: [ID 20000719.001] Problem with bleadperl of 7/18/00
18902              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
18903              Date: Tue, 25 Jul 2000 12:52:45 +0100
18904              Message-Id: <E13H3GP-0004MR-00@libra.cus.cam.ac.uk>
18905              
18906              and notes from
18907              
18908              Subject: Re: [ID 20000719.001] Problem with bleadperl of 7/18/00
18909              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
18910              Date: Tue, 25 Jul 2000 11:43:25 +0100
18911              Message-Id: <E13H2BJ-0002nG-00@libra.cus.cam.ac.uk>
18912      Branch: perl
18913            ! t/comp/require.t toke.c utf8.c
18914 ____________________________________________________________________________
18915 [  6434] By: jhi                                   on 2000/07/25  02:39:54
18916         Log: Make the "uninit variable" warning to say "concat or string"
18917              or "join or string" when in concat or join .
18918              
18919              Subject: Re: [ID 20000403.009] uninitialised concatenation???
18920              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
18921              Date: Tue, 04 Apr 2000 18:22:58 +0100
18922              Message-Id: <E12cX2Y-000364-00@taurus.cus.cam.ac.uk>
18923              
18924              Subject: [ID 20000330.052] Use of uninitialized value in concatenation (.)
18925              From: William R Ward <hermit@BayView.COM>
18926              Date: Thu, 30 Mar 2000 19:50:03 -0800
18927              Message-Id: <200003310350.TAA13319@komodo.bayview.com>
18928      Branch: perl
18929            ! opcode.h opcode.pl opnames.h pp.sym pp_proto.h
18930            ! t/pragma/warn/op t/pragma/warn/sv
18931 ____________________________________________________________________________
18932 [  6433] By: jhi                                   on 2000/07/24  17:52:56
18933         Log: File::Spec::VMS fixup for tmpdir from Craig Berry.
18934      Branch: perl
18935            ! lib/File/Spec/VMS.pm
18936 ____________________________________________________________________________
18937 [  6432] By: jhi                                   on 2000/07/24  17:44:44
18938         Log: Test cases for #6431.
18939              
18940              Subject: Re: [PATCH] [ID 20000716.011] strangeness with split($_ =~ m/.../)
18941              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
18942              Date: Mon, 24 Jul 2000 15:32:29 +0100
18943              Message-Id: <E13GjHR-00058t-00@libra.cus.cam.ac.uk>
18944      Branch: perl
18945            ! t/op/pat.t t/op/split.t
18946 ____________________________________________________________________________
18947 [  6431] By: jhi                                   on 2000/07/24  17:43:17
18948         Log: Bind op fix.
18949              
18950              Subject: Re: [PATCH] [ID 20000716.011] strangeness with split($_ =~ m/.../)
18951              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
18952              Date: Mon, 17 Jul 2000 20:04:56 +0100
18953              Message-Id: <E13EGCG-0006oO-00@libra.cus.cam.ac.uk>
18954      Branch: perl
18955            ! op.c
18956 ____________________________________________________________________________
18957 [  6430] By: jhi                                   on 2000/07/24  03:42:42
18958         Log: Subject: [ID 20000716.023] syslog test fails without sockets
18959              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
18960              Date: Sun, 16 Jul 2000 12:07:42 -0700 (PDT)
18961              Message-Id: <200007161907.e6GJ7g115736@garcia.efn.org>
18962      Branch: metaconfig/U/perl
18963            ! Extensions.U
18964      Branch: perl
18965            ! Configure config_h.SH
18966 ____________________________________________________________________________
18967 [  6429] By: jhi                                   on 2000/07/24  03:11:52
18968         Log: Add an optimization for map-maps-a-list-element-to-more-list-elements
18969              case, but add also notes explaining the relationship of this
18970              patch and the earlier notes by Sarathy.
18971              
18972              Subject: Map is still slow
18973              From: "Ben Tilly" <ben_tilly@hotmail.com>
18974              Date: Sat, 15 Jul 2000 17:23:27 EDT
18975              Message-ID: <20000715212327.21656.qmail@hotmail.com>
18976      Branch: perl
18977            ! pp_ctl.c
18978 ____________________________________________________________________________
18979 [  6428] By: jhi                                   on 2000/07/24  02:58:52
18980         Log: Documentation to explain the behaviour of map().
18981              
18982              Subject: Re: Map is still slow 
18983              From: Gurusamy Sarathy <gsar@ActiveState.com>
18984              Date: Sat, 15 Jul 2000 16:05:09 -0700
18985              Message-Id: <200007152305.QAA26887@molotok.activestate.com>
18986      Branch: perl
18987            ! pp_ctl.c
18988 ____________________________________________________________________________
18989 [  6427] By: jhi                                   on 2000/07/24  02:50:03
18990         Log: Add tests for
18991              [ID 19991110.003] another matching finding by pcre author
18992              which has already been fixed by some patch, as verified in
18993              
18994              Subject: Re: two regex bugs from the mists of time (well, last November)
18995              From: Hugo <hv@crypt.compulink.co.uk>
18996              Date: Sat, 22 Jul 2000 18:12:58 +0100
18997              Message-Id: <200007221712.SAA26770@crypt.compulink.co.uk>
18998      Branch: perl
18999            ! t/op/re_tests
19000 ____________________________________________________________________________
19001 [  6426] By: jhi                                   on 2000/07/24  02:11:20
19002         Log: A missing 'break' after the [[:space:]] switch case.
19003              
19004              Subject: [ID 20000718.006] Missing 'break' in regcomp.c
19005              From: "Stephen P. Potter" <spp@ds.net>
19006              Date: Tue, 18 Jul 2000 16:25:17 -0400
19007              Message-Id: <200007182025.QAA28383@spp.users.ds.net>
19008      Branch: perl
19009            ! regcomp.c
19010 ____________________________________________________________________________
19011 [  6425] By: jhi                                   on 2000/07/24  02:06:12
19012         Log: The output might have been produced in the wrong order.
19013              
19014              Subject: [ID 20000720.003] [PATCH] t/op/write.t
19015              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
19016              Date: Thu, 20 Jul 2000 18:49:18 +0100
19017              Message-Id: <E13FKRi-0004rF-00@libra.cus.cam.ac.uk>
19018      Branch: perl
19019            ! t/op/write.t
19020 ____________________________________________________________________________
19021 [  6424] By: jhi                                   on 2000/07/24  02:00:07
19022         Log: Use STDOUT consistently.
19023              
19024              Subject: [ID 20000720.002] [PATCH] Consistency of Test::Harness output
19025              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
19026              Date: Thu, 20 Jul 2000 18:04:01 +0100
19027              Message-Id: <E13FJjt-0004Jh-00@libra.cus.cam.ac.uk>
19028      Branch: perl
19029            ! lib/Test/Harness.pm
19030 ____________________________________________________________________________
19031 [  6423] By: jhi                                   on 2000/07/24  01:54:54
19032         Log: Protect against "wild next"s, that is, callbacks doing "next"
19033              instead of "return".
19034              
19035              Subject: [PATCH] Re: [ID 20000717.003] Core dump in 5.6.0
19036              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
19037              Date: Tue, 18 Jul 2000 11:30:16 +0100
19038              Message-Id: <E13EUdk-0006ha-00@libra.cus.cam.ac.uk>
19039      Branch: perl
19040            ! lib/File/Find.pm
19041 ____________________________________________________________________________
19042 [  6422] By: jhi                                   on 2000/07/24  01:35:47
19043         Log: Out-of-date note removed.
19044              
19045              Subject: [PATCH] documentation perlipc
19046              From: rspier@pobox.com (Robert Spier)
19047              Date: Thu, 20 Jul 2000 19:21:14 -0400 (EDT)
19048              Message-ID: <14711.35178.572612.502654@rls.cx>
19049      Branch: perl
19050            ! pod/perlipc.pod
19051 ____________________________________________________________________________
19052 [  6421] By: jhi                                   on 2000/07/24  00:09:18
19053         Log: Send all installperl messages to STDERR and be -w clean.
19054              
19055              Subject: [PATCH] Re: [ID 20000721.003] installperl stderr/stdout problem
19056              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
19057              Date: Sat, 22 Jul 2000 14:02:11 +0100
19058              Message-Id: <E13Fyux-0003Q2-00@libra.cus.cam.ac.uk>
19059      Branch: perl
19060            ! installperl
19061 ____________________________________________________________________________
19062 [  6420] By: jhi                                   on 2000/07/24  00:04:19
19063         Log: Decutandpasto.
19064              
19065              Subject: [PATCH perl-current] 19990607.008 - perlipc.pod
19066              From: "Richard Soderberg" <rs@crystalflame.net>
19067              Date: Sun, 23 Jul 2000 01:37:23 -0700
19068              Message-ID: <NAEKLNAAHLMBPMPNBMLECEIKCBAA.rs@crystalflame.net>
19069      Branch: perl
19070            ! pod/perlipc.pod
19071 ____________________________________________________________________________
19072 [  6419] By: jhi                                   on 2000/07/24  00:01:12
19073         Log: A cleaner abs_path().
19074              Subject: Re: unix alternative to Cwd.pm
19075              From: Jeff Pinyan <jeffp@crusoe.net>
19076              Date: Sun, 23 Jul 2000 17:43:02 -0400 (EDT)
19077              Message-ID: <Pine.GSO.4.21.0007231739120.4304-100000@crusoe.crusoe.net>
19078      Branch: perl
19079            ! lib/Cwd.pm
19080 ____________________________________________________________________________
19081 [  6418] By: jhi                                   on 2000/07/23  23:48:56
19082         Log: Detypo.
19083              
19084              Subject: [PATCH perl-current] Typo in hints/powerux.sh
19085              From: "Richard Soderberg" <rs@crystalflame.net>
19086              Date: Sun, 23 Jul 2000 01:27:33 -0700
19087              Message-ID: <NAEKLNAAHLMBPMPNBMLEOEIJCBAA.rs@crystalflame.net>
19088      Branch: perl
19089            ! hints/powerux.sh
19090 ____________________________________________________________________________
19091 [  6417] By: jhi                                   on 2000/07/17  22:13:31
19092         Log: Subject: SDBM_File documentation
19093              From: mjd@plover.com
19094              Date: 16 Jul 2000 17:41:17 -0000
19095              Message-ID: <20000716174117.18515.qmail@plover.com>
19096      Branch: perl
19097            ! ext/SDBM_File/SDBM_File.pm
19098 ____________________________________________________________________________
19099 [  6416] By: jhi                                   on 2000/07/17  19:13:26
19100         Log: MPE/ix updates for perl 5.6.0 from Mark Bixby.
19101      Branch: perl
19102            ! hints/mpeix.sh mpeix/relink
19103 ____________________________________________________________________________
19104 [  6415] By: jhi                                   on 2000/07/15  14:11:02
19105         Log: Fix the bitvector ops for utf8 (tricky since past 7 bits
19106              the utf8 'characters' can be more than one octet).
19107              
19108              Date: Sat, 15 Jul 2000 00:21:56 +0100
19109              From: Tom Hughes <tom@compton.nu>
19110              Subject: Re: [ID 20000714.002]
19111              Message-ID: <db2334de49.tom@compton.compton.nu>
19112              
19113              Reported in
19114              
19115              Subject: [ID 20000714.002]
19116              From: "Simon Cozens" <simon@othersideofthe.earth.li>
19117              Date: 14 Jul 2000 15:13:09 -0000
19118              Message-Id: <20000714151309.7170.qmail@othersideofthe.earth.li>
19119      Branch: perl
19120            ! doop.c
19121 ____________________________________________________________________________
19122 [  6414] By: jhi                                   on 2000/07/15  03:13:41
19123         Log: another VMS build tweak from Peter Prymmer
19124      Branch: perl
19125            ! vms/descrip_mms.template
19126 ____________________________________________________________________________
19127 [  6413] By: jhi                                   on 2000/07/15  03:10:40
19128         Log: perlvms.pod whitespace cleanup to keep pod utils happy.
19129      Branch: perl
19130            ! vms/perlvms.pod
19131 ____________________________________________________________________________
19132 [  6412] By: jhi                                   on 2000/07/15  00:31:05
19133         Log: More docs for sv functions.
19134              
19135              Subject: [PATCH cfgperl] sv.c apidoc
19136              From: simon@brecon.co.uk (Simon Cozens)
19137              Date: 13 Jul 2000 09:00:20 GMT
19138              Message-ID: <slrn8mr194.2em.simon@justanother.perlhacker.org>
19139              
19140              Subject: Re: [PATCH cfgperl] sv.c apidoc
19141              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
19142              Date: Thu, 13 Jul 2000 12:27:41 +0100
19143              Message-Id: <E13Ch9Z-0006QL-00@libra.cus.cam.ac.uk>
19144              
19145              Subject: Re: [PATCH cfgperl] sv.c apidoc
19146              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
19147              Date: Thu, 13 Jul 2000 13:23:09 +0100
19148              Message-Id: <E13Ci1F-0007WR-00@libra.cus.cam.ac.uk>
19149              
19150              Subject: Re: [PATCH cfgperl] sv.c apidoc
19151              From: simon@brecon.co.uk (Simon Cozens)
19152              Date: 14 Jul 2000 06:51:02 GMT
19153              Message-ID: <slrn8mte2m.1qo.simon@justanother.perlhacker.org>
19154      Branch: perl
19155            ! embed.pl pod/perlapi.pod sv.c
19156 ____________________________________________________________________________
19157 [  6411] By: jhi                                   on 2000/07/15  00:10:41
19158         Log: lib/b test fixes from Peter Prymmer.
19159      Branch: perl
19160            ! t/lib/b.t
19161 ____________________________________________________________________________
19162 [  6410] By: jhi                                   on 2000/07/15  00:02:09
19163         Log: Subject: [docpatch] Re: [ID 19991002.011] perldoc -f shift
19164              From: Hugo <hv@crypt.compulink.co.uk>
19165              Date: Fri, 14 Jul 2000 23:05:20 +0100
19166              Message-Id: <200007142205.XAA17882@crypt.compulink.co.uk>
19167              
19168              Didn't anymore apply, but that point still could use another fix.
19169      Branch: perl
19170            ! pod/perlfunc.pod
19171 ____________________________________________________________________________
19172 [  6409] By: jhi                                   on 2000/07/14  23:15:15
19173         Log: thinko fix in vms/descrip_mms.template, the win32.pod in lib,
19174              not in pod, from Peter Prymmer
19175      Branch: perl
19176            ! vms/descrip_mms.template
19177 ____________________________________________________________________________
19178 [  6408] By: jhi                                   on 2000/07/14  20:35:05
19179         Log: The bug report
19180              [ID 19991110.002] minimal matching discrepancy found by pcre author
19181              seems to have been fixed (though differently from what was suggested
19182              in the report) in 5.6.0.  Add tests to keep the bug from reappearing.
19183      Branch: perl
19184            ! t/op/re_tests
19185 ____________________________________________________________________________
19186 [  6407] By: jhi                                   on 2000/07/14  17:38:08
19187         Log: Fix AutoSplit to use File::Spec the right way in VMS,
19188              from Peter Prymmer.
19189      Branch: perl
19190            ! lib/AutoSplit.pm
19191 ____________________________________________________________________________
19192 [  6406] By: jhi                                   on 2000/07/14  14:13:22
19193         Log: Merge perlhacktut into perlhack, update perlguts.
19194              
19195              Subject: Re: Perlhacktut
19196              From: simon@brecon.co.uk (Simon Cozens)
19197              Date: 14 Jul 2000 06:49:21 GMT
19198              Message-ID: <slrn8mtdvh.1qo.simon@justanother.perlhacker.org>
19199              
19200              Subject: Re: Perlhacktut
19201              From: simon@brecon.co.uk (Simon Cozens)
19202              Date: 14 Jul 2000 07:09:45 GMT
19203              Message-ID: <slrn8mtf5p.1qo.simon@justanother.perlhacker.org>
19204      Branch: perl
19205            ! pod/perlguts.pod pod/perlhack.pod
19206 ____________________________________________________________________________
19207 [  6405] By: jhi                                   on 2000/07/14  14:02:31
19208         Log: Integrate with Sarathy.
19209      Branch: cfgperl
19210           !> doop.c embed.h embed.pl embedvar.h ext/IPC/SysV/Makefile.PL
19211           !> intrpvar.h lib/ExtUtils/MM_Unix.pm mg.c op.c perlapi.h
19212           !> pod/perlapi.pod pp.c proto.h sv.h thread.h toke.c util.c
19213 ____________________________________________________________________________
19214 [  6404] By: gsar                                  on 2000/07/14  12:15:02
19215         Log: PERL_OBJECT build tweaks
19216      Branch: perl
19217            ! toke.c
19218 ____________________________________________________________________________
19219 [  6403] By: gsar                                  on 2000/07/14  11:23:41
19220         Log: inconsistent types needs casts
19221      Branch: perl
19222            ! toke.c
19223 ____________________________________________________________________________
19224 [  6402] By: gsar                                  on 2000/07/14  11:12:04
19225         Log: typos in change#6399, regen headers
19226      Branch: perl
19227            ! doop.c embed.h embedvar.h perlapi.h pod/perlapi.pod proto.h
19228 ____________________________________________________________________________
19229 [  6401] By: gsar                                  on 2000/07/14  10:59:12
19230         Log: typecasts needed for change#6394
19231      Branch: perl
19232            ! toke.c
19233 ____________________________________________________________________________
19234 [  6400] By: gsar                                  on 2000/07/14  10:49:37
19235         Log: integrate cfgperl contents into mainline
19236      Branch: perl
19237           !> Configure MANIFEST config_h.SH embed.pl global.sym proto.h
19238           !> regcomp.c regexec.c t/op/re_tests toke.c vms/subconfigure.com
19239 ____________________________________________________________________________
19240 [  6399] By: gsar                                  on 2000/07/14  10:38:35
19241         Log: enable UTF-16 filter by default if relevant BOM is seen; various
19242              cleanups (typos, misformatted code, and small bugs)
19243      Branch: perl
19244            ! doop.c embed.pl mg.c op.c pp.c toke.c
19245 ____________________________________________________________________________
19246 [  6398] By: gsar                                  on 2000/07/14  08:55:38
19247         Log: rename totally bletcherous SvLOCK() thingy (doesn't do what the
19248              name suggests anyway)
19249      Branch: perl
19250            ! ext/IPC/SysV/Makefile.PL sv.h thread.h util.c
19251 ____________________________________________________________________________
19252 [  6397] By: gsar                                  on 2000/07/14  08:44:33
19253         Log: move new variables to the end of the interpreter structure (for
19254              bincompat in code that doesn't #include XSUB.h)
19255      Branch: perl
19256            ! intrpvar.h
19257 ____________________________________________________________________________
19258 [  6396] By: gsar                                  on 2000/07/14  08:13:58
19259         Log: MakeMaker should not remove editor backups (*~) on `make clean`
19260              by default (completes change#6383)
19261      Branch: perl
19262            ! lib/ExtUtils/MM_Unix.pm
19263 ____________________________________________________________________________
19264 [  6395] By: jhi                                   on 2000/07/14  05:20:33
19265         Log: Replace change #6337 with a better one.
19266              
19267              Subject: Re: [PATCH] [ID 20000701.002] Regular Expressions Not Unsetting $1 Vars When Backtracking 
19268              From: Hugo <hv@crypt.compulink.co.uk>
19269              Date: Fri, 14 Jul 2000 04:16:20 +0100
19270              Message-Id: <200007140316.EAA15857@crypt.compulink.co.uk>
19271      Branch: cfgperl
19272            ! regexec.c t/op/re_tests
19273 ____________________________________________________________________________
19274 [  6394] By: jhi                                   on 2000/07/14  01:33:59
19275         Log: Fix the BOM bug: not a byteorder bug, a signedness bug.
19276      Branch: cfgperl
19277            ! embed.pl global.sym proto.h toke.c
19278 ____________________________________________________________________________
19279 [  6393] By: jhi                                   on 2000/07/13  23:41:23
19280         Log: remove discarded test
19281      Branch: cfgperl
19282            ! MANIFEST
19283 ____________________________________________________________________________
19284 [  6392] By: jhi                                   on 2000/07/13  23:32:25
19285         Log: The {multiplier} of a fixed substring was overlooked which
19286              caused a wrong initial search offset for that substring.
19287              
19288              Subject: [PATCH 5.6.0] Re: [ID 20000613.001] Regex works in v5.005_03 but fails in v5.06
19289              From: Hugo <hv@crypt.compulink.co.uk>
19290              Message-Id: <200007131827.TAA14487@crypt.compulink.co.uk>
19291              Date: Thu, 13 Jul 2000 19:27:13 +0100
19292      Branch: cfgperl
19293            ! regcomp.c t/op/re_tests
19294 ____________________________________________________________________________
19295 [  6391] By: jhi                                   on 2000/07/13  16:37:42
19296         Log: typo fix from Craig Berry
19297      Branch: cfgperl
19298            ! vms/subconfigure.com
19299 ____________________________________________________________________________
19300 [  6390] By: jhi                                   on 2000/07/13  13:20:12
19301         Log: Integrate with Sarathy.
19302      Branch: cfgperl
19303            - t/op/method2entersub.t
19304           !> Changes Configure Makefile.SH ext/IPC/SysV/Makefile.PL
19305           !> pod/perldelta.pod sv.c t/lib/english.t t/lib/selfloader.t
19306           !> t/op/sprintf.t toke.c win32/Makefile win32/config_h.PL
19307           !> win32/makefile.mk win32/win32sck.c x2p/Makefile.SH
19308 ____________________________________________________________________________
19309 [  6389] By: jhi                                   on 2000/07/13  13:18:48
19310         Log: Detypo from Peter Prymmer, part of #6388.
19311      Branch: cfgperl
19312            ! Configure config_h.SH
19313      Branch: metaconfig
19314            ! U/modified/d_longlong.U
19315 ____________________________________________________________________________
19316 [  6388] By: gsar                                  on 2000/07/13  06:33:40
19317         Log: typos (spotted by Peter Prymmer)
19318      Branch: perl
19319            ! Configure t/lib/english.t
19320 ____________________________________________________________________________
19321 [  6387] By: gsar                                  on 2000/07/13  05:35:28
19322         Log: new selfloader.t in change#6183 doesn't close DATA handles,
19323              and thus fails to clean up tmp files on dosish platforms
19324      Branch: perl
19325            ! t/lib/selfloader.t
19326 ____________________________________________________________________________
19327 [  6386] By: gsar                                  on 2000/07/12  21:42:39
19328         Log: sprintf test tweaks (from Dominic Dunlop)
19329      Branch: perl
19330            ! t/op/sprintf.t
19331 ____________________________________________________________________________
19332 [  6385] By: gsar                                  on 2000/07/12  21:33:46
19333         Log: fix bugs in processing %v-*d and similar format specs (from
19334              Avi Finkel <avi@finkel.org>)
19335      Branch: perl
19336            ! sv.c t/op/sprintf.t
19337 ____________________________________________________________________________
19338 [  6384] By: gsar                                  on 2000/07/12  16:04:19
19339         Log: readd missing perldelta.pod changes from changes#6339,6376
19340      Branch: perl
19341            ! pod/perldelta.pod
19342 ____________________________________________________________________________
19343 [  6383] By: gsar                                  on 2000/07/12  16:00:51
19344         Log: don't clobber *.orig files on *clean targets
19345      Branch: perl
19346            ! Makefile.SH ext/IPC/SysV/Makefile.PL x2p/Makefile.SH
19347 ____________________________________________________________________________
19348 [  6382] By: gsar                                  on 2000/07/12  07:59:12
19349         Log: fix broken integrations in cfgperl
19350      Branch: cfgperl
19351           !> Changes pod/perldelta.pod
19352 ____________________________________________________________________________
19353 [  6381] By: gsar                                  on 2000/07/12  07:42:17
19354         Log: integrate cfgperl changes into mainline
19355      Branch: perl
19356            ! Changes
19357           !> Configure config_h.SH pod/perlbook.pod pod/perldelta.pod
19358           !> pod/perlre.pod
19359 ____________________________________________________________________________
19360 [  6380] By: gsar                                  on 2000/07/12  07:31:00
19361         Log: get sprintf.t to adjust properly for 3-digit exponents
19362      Branch: perl
19363            ! t/op/sprintf.t
19364 ____________________________________________________________________________
19365 [  6379] By: gsar                                  on 2000/07/12  06:40:04
19366         Log: change#6174 needs corresponding change in win32/config_h.PL,
19367              which grovels through config_h.SH to find the config.h name
19368      Branch: perl
19369            ! win32/config_h.PL
19370 ____________________________________________________________________________
19371 [  6378] By: jhi                                   on 2000/07/12  05:03:59
19372         Log: Do the cc sanity check both before the hints and
19373              after the cc selction.
19374      Branch: cfgperl
19375            ! Configure config_h.SH
19376      Branch: metaconfig
19377            ! U/modified/Oldconfig.U U/modified/cc.U
19378      Branch: metaconfig/U/perl
19379            + Checkcc.U
19380 ____________________________________________________________________________
19381 [  6377] By: jhi                                   on 2000/07/12  02:49:22
19382         Log: Fix nits noticed by Boston.pm.
19383      Branch: cfgperl
19384            ! pod/perlre.pod
19385 ____________________________________________________________________________
19386 [  6376] By: jhi                                   on 2000/07/11  21:22:13
19387         Log: Configure cosmetics and perldelta.
19388      Branch: cfgperl
19389            ! Configure config_h.SH pod/perldelta.pod
19390      Branch: metaconfig
19391            ! U/modified/cc.U
19392 ____________________________________________________________________________
19393 [  6375] By: gsar                                  on 2000/07/11  21:17:35
19394         Log: windows build tweaks (op/sprintf.t still fails tests 120-121, 149)
19395      Branch: perl
19396            ! t/op/sprintf.t win32/Makefile win32/makefile.mk
19397            ! win32/win32sck.c
19398 ____________________________________________________________________________
19399 [  6374] By: gsar                                  on 2000/07/11  20:48:50
19400         Log: tweak for build failure under multiplicity
19401      Branch: perl
19402            ! toke.c
19403 ____________________________________________________________________________
19404 [  6373] By: gsar                                  on 2000/07/11  20:37:23
19405         Log: integrate cfgperl changes#6325..6373 into mainline
19406              (NOTE: today's batch of integrations still untested)
19407      Branch: perl
19408           +> ext/DynaLoader/hints/netbsd.pl
19409            ! Changes
19410           !> (integrate 26 files)
19411 ____________________________________________________________________________
19412 [  6372] By: jhi                                   on 2000/07/11  20:30:36
19413         Log: Reintroduce perlbook (updated for Mk III), introduce perlposix-bc,
19414              regen perltoc.
19415      Branch: cfgperl
19416            + pod/perlbook.pod
19417            ! MANIFEST pod/Makefile.SH pod/buildtoc.PL pod/perl.pod
19418            ! pod/perltoc.pod
19419 ____________________________________________________________________________
19420 [  6371] By: jhi                                   on 2000/07/11  20:08:56
19421         Log: Minor cleanups on the booklist.
19422      Branch: cfgperl
19423            ! pod/perlfaq2.pod
19424 ____________________________________________________________________________
19425 [  6370] By: jhi                                   on 2000/07/11  19:31:13
19426         Log: mjd's tr patches "broke" tr/z-Z/z-Z/
19427      Branch: cfgperl
19428            ! t/pragma/overload.t
19429 ____________________________________________________________________________
19430 [  6369] By: gsar                                  on 2000/07/11  19:27:48
19431         Log: integrate cfgperl changes#6293..6324 into mainline
19432      Branch: perl
19433           +> lib/Win32.pod lib/lib_pm.PL pod/Makefile.SH pod/buildtoc.PL
19434            - lib/lib.pm.PL pod/Makefile pod/Win32.pod pod/buildtoc
19435           !> (integrate 30 files)
19436 ____________________________________________________________________________
19437 [  6368] By: gsar                                  on 2000/07/11  19:18:57
19438         Log: skip integrate of problematic change#6292 from cfgperl into mainline
19439      Branch: perl
19440           !> pp_hot.c
19441 ____________________________________________________________________________
19442 [  6367] By: gsar                                  on 2000/07/11  19:17:21
19443         Log: integrate cfgperl changes#6288..6290 into mainline
19444      Branch: perl
19445           !> lib/File/Spec/Functions.pm lib/File/Spec/OS2.pm
19446 ____________________________________________________________________________
19447 [  6366] By: gsar                                  on 2000/07/11  19:11:18
19448         Log: integrate cfgperl changes#6268..6282 into mainline
19449      Branch: perl
19450           !> (integrate 30 files)
19451 ____________________________________________________________________________
19452 [  6365] By: gsar                                  on 2000/07/11  18:57:00
19453         Log: delete new accidentally branched file
19454      Branch: perl
19455            - t/op/method2entersub.t
19456 ____________________________________________________________________________
19457 [  6364] By: gsar                                  on 2000/07/11  18:55:13
19458         Log: skip integrate of change#6267 from cfgperl into mainline (the
19459              method call optimization is flawed without additional hints
19460              from user about immutableness of @ISA and no runtime method
19461              definitions)
19462      Branch: perl
19463           +> t/op/method2entersub.t
19464           !> MANIFEST embed.pl lib/ExtUtils/Install.pm lib/base.pm op.c
19465           !> perl.h t/op/sprintf.t xsutils.c
19466 ____________________________________________________________________________
19467 [  6363] By: gsar                                  on 2000/07/11  18:49:43
19468         Log: integrate cfgperl changes#6261..6266 into mainline
19469      Branch: perl
19470           !> README.epoc cygwin/Makefile.SHs doop.c epoc/config.sh
19471           !> epoc/createpkg.pl epoc/epocish.c epoc/epocish.h
19472           !> ext/POSIX/POSIX.pm ext/POSIX/POSIX.pod ext/POSIX/POSIX.xs
19473           !> hints/bsdos.sh pod/perldiag.pod t/comp/require.t toke.c
19474 ____________________________________________________________________________
19475 [  6362] By: gsar                                  on 2000/07/11  18:43:26
19476         Log: integrate cfgperl changes#6252..6260 into mainline
19477      Branch: perl
19478           !> MANIFEST doop.c embed.h embed.pl embedvar.h lib/Exporter.pm
19479           !> lib/IPC/Open3.pm objXSUB.h op.c pod/perlfunc.pod pp.c
19480           !> pp_proto.h proto.h sv.c t/op/my_stash.t t/op/pack.t t/op/tr.t
19481           !> t/pragma/constant.t t/pragma/warn/op t/pragma/warn/regcomp
19482 ____________________________________________________________________________
19483 [  6361] By: gsar                                  on 2000/07/11  18:37:12
19484         Log: skip integrate of problematic change#6251 from cfgperl into mainline
19485      Branch: perl
19486           !> lib/Exporter.pm
19487 ____________________________________________________________________________
19488 [  6360] By: gsar                                  on 2000/07/11  18:34:56
19489         Log: integrate cfgperl change#6250 into mainline
19490      Branch: perl
19491           +> t/op/my_stash.t
19492           !> MANIFEST embed.pl proto.h toke.c
19493 ____________________________________________________________________________
19494 [  6359] By: gsar                                  on 2000/07/11  18:21:19
19495         Log: integrate cfgperl changes#6242..6249 into mainline
19496      Branch: perl
19497           !> embed.h embed.pl embedvar.h ext/DynaLoader/DynaLoader_pm.PL
19498           !> gv.c lib/File/Spec.pm lib/IPC/Open3.pm objXSUB.h perlapi.c
19499           !> perlapi.h pod/perlapi.pod pod/perlfunc.pod pod/perlintern.pod
19500           !> pp_proto.h proto.h sv.c t/lib/filefunc.t t/lib/filespec.t
19501           !> t/lib/peek.t utf8.c
19502 ____________________________________________________________________________
19503 [  6358] By: gsar                                  on 2000/07/11  18:15:45
19504         Log: skip integrate of problematic change#6241 from cfgperl into mainline
19505      Branch: perl
19506           !> regcomp.c t/pragma/warn/regcomp t/pragma/warn/toke toke.c
19507 ____________________________________________________________________________
19508 [  6357] By: jhi                                   on 2000/07/11  18:15:16
19509         Log: Fix for
19510              Subject: [ID 20000711.005] spurious uninit warning with msgrcv()
19511              From: Roderick Schertler <roderick@argon.org> 
19512              Date: Tue, 11 Jul 2000 13:55:05 -0400 
19513              Message-Id: <200007111755.NAA05077@jones.argon.org> 
19514      Branch: cfgperl
19515            ! doio.c
19516 ____________________________________________________________________________
19517 [  6356] By: jhi                                   on 2000/07/11  18:12:51
19518         Log: Typo in #6341.
19519      Branch: cfgperl
19520            ! pp_hot.c
19521 ____________________________________________________________________________
19522 [  6355] By: gsar                                  on 2000/07/11  18:12:10
19523         Log: integrate cfgperl changes#6231..6240 into mainline
19524      Branch: perl
19525           +> pod/perlutil.pod
19526           !> (integrate 35 files)
19527 ____________________________________________________________________________
19528 [  6354] By: jhi                                   on 2000/07/11  18:04:34
19529         Log: Subject: [PATCH perl-current] Make op/sprintf.t more comprehensive, take 2
19530              From: Dominic Dunlop <domo@computer.org> 
19531              Date: Tue, 11 Jul 2000 12:27:33 +0200 
19532              Message-Id: <p04320405b590a14d4650@[192.168.1.4]> 
19533              
19534              Replaces change #6268.
19535      Branch: cfgperl
19536            ! t/op/sprintf.t
19537 ____________________________________________________________________________
19538 [  6353] By: gsar                                  on 2000/07/11  17:59:51
19539         Log: skip integrate of problematic change#6230 from cfgperl into mainline
19540              (a later version of File::Spec is already in mainline)
19541      Branch: perl
19542           !> lib/File/Spec.pm lib/File/Spec/Functions.pm
19543           !> lib/File/Spec/OS2.pm t/lib/filefunc.t t/lib/filespec.t
19544 ____________________________________________________________________________
19545 [  6352] By: gsar                                  on 2000/07/11  17:57:48
19546         Log: integrate cfgperl changes#6224..6229 into mainline
19547      Branch: perl
19548           +> lib/lib.pm.PL
19549            - lib/lib.pm
19550           !> MANIFEST Makefile.SH README.hpux embed.pl ext/Socket/Socket.pm
19551           !> lib/English.pm op.c t/lib/english.t
19552 ____________________________________________________________________________
19553 [  6351] By: gsar                                  on 2000/07/11  17:50:10
19554         Log: skip integrate of problematic change#6223 from cfgperl into mainline
19555      Branch: perl
19556           !> doio.c
19557 ____________________________________________________________________________
19558 [  6350] By: gsar                                  on 2000/07/11  17:48:28
19559         Log: integrate cfgperl changes#6220..6222 into mainline
19560      Branch: perl
19561           !> doop.c embed.pl lib/Pod/Usage.pm makedef.pl pod/perlop.pod
19562           !> toke.c utf8.c win32/win32.h
19563 ____________________________________________________________________________
19564 [  6349] By: gsar                                  on 2000/07/11  17:46:13
19565         Log: skip integrate of problematic changes#6218..6219 from cfgperl into
19566              mainline
19567      Branch: perl
19568           !> bytecode.pl ext/B/B/Assembler.pm ext/B/B/Bytecode.pm
19569           !> ext/B/O.pm ext/B/defsubs_h.PL ext/ByteLoader/ByteLoader.pm
19570           !> ext/ByteLoader/ByteLoader.xs ext/ByteLoader/bytecode.h
19571 ____________________________________________________________________________
19572 [  6348] By: jhi                                   on 2000/07/11  17:45:49
19573         Log: README.posix-bc podified from Thomas Dorner.
19574      Branch: cfgperl
19575            ! README.posix-bc
19576 ____________________________________________________________________________
19577 [  6347] By: gsar                                  on 2000/07/11  17:42:04
19578         Log: integrate cfgperl change#6217 into mainline
19579      Branch: perl
19580           !> Configure config_h.SH doio.c embed.h embed.pl embedvar.h gv.c
19581           !> intrpvar.h objXSUB.h perl.c perlapi.h pp.c pp_ctl.c proto.h
19582           !> sv.h util.c util.h vmesa/vmesa.c win32/win32.c
19583 ____________________________________________________________________________
19584 [  6346] By: gsar                                  on 2000/07/11  17:39:37
19585         Log: skip integrate of problematic changes#6211..6212 from cfgperl into
19586              mainline
19587      Branch: perl
19588           !> embedvar.h ext/B/B.xs ext/B/B/Asmdata.pm ext/B/defsubs_h.PL
19589           !> ext/ByteLoader/ByteLoader.xs ext/ByteLoader/bytecode.h
19590           !> ext/ByteLoader/byterun.c ext/ByteLoader/byterun.h perlapi.c
19591           !> perlapi.h pod/perlapi.pod
19592 ____________________________________________________________________________
19593 [  6345] By: gsar                                  on 2000/07/11  17:36:42
19594         Log: integrate cfgperl changes#6207..6210 into mainline
19595      Branch: perl
19596           !> doio.c embed.h embed.pl gv.c intrpvar.h objXSUB.h perl.c pp.c
19597           !> pp_ctl.c proto.h sv.h util.c vmesa/vmesa.c win32/win32.c
19598 ____________________________________________________________________________
19599 [  6344] By: gsar                                  on 2000/07/11  17:31:20
19600         Log: skip integrate of problematic changes#6204..6206 from cfgperl into
19601              mainline
19602      Branch: perl
19603           !> (integrate 40 files)
19604 ____________________________________________________________________________
19605 [  6343] By: gsar                                  on 2000/07/11  17:19:08
19606         Log: integrate cfgperl changes#6174..6203 into mainline (first of several)
19607      Branch: perl
19608           +> Makefile.micro README.micro Todo.micro uconfig.h uconfig.sh
19609            ! Changes
19610           !> (integrate 34 files)
19611 ____________________________________________________________________________
19612 [  6342] By: jhi                                   on 2000/07/11  16:05:48
19613         Log: Subject: [ID 20000710.002] fatal error or memory loss when deleting symbols in evaled code with syntax errors
19614              To: perl5-porters@perl.org
19615              From: Karsten Sperling <spiff@phreax.net>
19616              Date: Mon, 10 Jul 2000 15:12:52 +0200
19617              Message-Id: <200007101315.e6ADFrg21041@chthon.perl.com>
19618      Branch: cfgperl
19619            ! lib/Symbol.pm
19620 ____________________________________________________________________________
19621 [  6341] By: jhi                                   on 2000/07/11  15:59:23
19622         Log: Subject: Re: [ID 20000704.002] [PATCH] memory leak with debug / anon subs
19623              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
19624              Message-Id: <E13AbRE-00009T-00@libra.cus.cam.ac.uk>
19625              Date: Fri, 07 Jul 2000 17:57:16 +0100
19626      Branch: cfgperl
19627            ! pp_hot.c
19628 ____________________________________________________________________________
19629 [  6340] By: jhi                                   on 2000/07/11  15:55:47
19630         Log: Subject: Re: format bug report  [Patch]
19631              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
19632              Date: Wed, 05 Jul 2000 13:12:52 +0200
19633              Message-Id: <20000705130745.67BF.H.M.BRAND@hccnet.nl>
19634              
19635              Subject: Re: format bug report  [Patch]
19636              From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
19637              Date: Wed, 05 Jul 2000 14:10:01 +0200
19638              Message-Id: <20000705140837.73C2.H.M.BRAND@hccnet.nl>
19639      Branch: cfgperl
19640            ! t/op/write.t toke.c
19641 ____________________________________________________________________________
19642 [  6339] By: jhi                                   on 2000/07/11  13:54:09
19643         Log: Be less forgiving about ambiguous and illegal tr ranges.
19644              Subject: Re: [ID 20000703.001] tr/// operator understands multiple hyphens in a bizarre way 
19645              From: Mark-Jason Dominus <mjd@plover.com>
19646              Date: Tue, 04 Jul 2000 10:00:12 -0400
19647              Message-ID: <20000704140012.17772.qmail@plover.com>
19648              
19649              Subject: Re: [ID 20000703.001] tr/// operator understands multiple hyphens in a bizarre way 
19650              From: Mark-Jason Dominus <mjd@plover.com>
19651              Date: Wed, 05 Jul 2000 09:37:36 -0400
19652              Message-ID: <20000705133736.27293.qmail@plover.com>
19653      Branch: cfgperl
19654            ! pod/perldelta.pod pod/perldiag.pod t/op/tr.t toke.c
19655 ____________________________________________________________________________
19656 [  6338] By: jhi                                   on 2000/07/11  13:31:24
19657         Log: Subject: [PATCH] Re: "%#p" format specifier: document and test or not?
19658              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
19659              Date: Tue, 11 Jul 2000 13:50:51 +0100
19660              Message-Id: <E13BzUx-00033c-00@libra.cus.cam.ac.uk>
19661      Branch: cfgperl
19662            ! sv.c
19663 ____________________________________________________________________________
19664 [  6337] By: jhi                                   on 2000/07/11  13:29:14
19665         Log: Subject: [PATCH] [ID 20000701.002] Regular Expressions Not Unsetting $1 Vars When Backtracking 
19666              From: Hugo <hv@crypt.compulink.co.uk>
19667              Date: Tue, 11 Jul 2000 12:44:50 +0100
19668              Message-Id: <200007111144.MAA04446@crypt.compulink.co.uk>
19669      Branch: cfgperl
19670            ! regexec.c t/op/re_tests
19671 ____________________________________________________________________________
19672 [  6336] By: jhi                                   on 2000/07/11  13:26:47
19673         Log: Subject: [PATCH cfgperl] $& segfaults if you trick it
19674              From: simon@brecon.co.uk (Simon Cozens)
19675              Date: 7 Jul 2000 11:26:09 GMT
19676              Message-ID: <slrn8mbfif.ead.simon@justanother.perlhacker.org>
19677      Branch: cfgperl
19678            ! mg.c
19679 ____________________________________________________________________________
19680 [  6335] By: jhi                                   on 2000/07/11  13:23:37
19681         Log: Subject: [ID 20000705.002] problem with perl 5.6.0 on NetBSD/sparc
19682              From: Hubert Feyrer <feyrer@rfhs8012.fh-regensburg.de>
19683              Date: Wed, 5 Jul 2000 14:56:43 +0200 (MET DST)
19684              Message-Id: <Pine.GSO.4.10.10007051452330.29215-100000@rfhpc8320.fh-regensburg.de>
19685      Branch: cfgperl
19686            + ext/DynaLoader/hints/netbsd.pl
19687            ! MANIFEST ext/DynaLoader/hints/openbsd.pl
19688 ____________________________________________________________________________
19689 [  6334] By: jhi                                   on 2000/07/11  13:20:38
19690         Log: Subject: PATCH perlguts.pod: Document D and d magic types
19691              From: mjd@plover.com
19692              Date: 5 Jul 2000 18:01:51 -0000
19693              Message-ID: <20000705180151.29413.qmail@plover.com>
19694      Branch: cfgperl
19695            ! pod/perlguts.pod
19696 ____________________________________________________________________________
19697 [  6333] By: jhi                                   on 2000/07/11  13:15:51
19698         Log: Precedence goof, fix based on
19699              Subject: [PATCH 5.6.0] op/taint.t continues on failed shmget()
19700              From: Hugo <hv@crypt.compulink.co.uk>
19701              Date: Tue, 11 Jul 2000 12:52:38 +0100
19702              Message-Id: <200007111152.MAA05488@crypt.compulink.co.uk>
19703      Branch: cfgperl
19704            ! t/op/taint.t
19705 ____________________________________________________________________________
19706 [  6332] By: jhi                                   on 2000/07/11  12:40:17
19707         Log: Integrate with Sarathy.
19708      Branch: cfgperl
19709           !> win32/win32sck.c
19710 ____________________________________________________________________________
19711 [  6331] By: jhi                                   on 2000/07/10  20:14:16
19712         Log: Sprinkle ldlibpath.
19713      Branch: cfgperl
19714            ! pod/Makefile.SH
19715 ____________________________________________________________________________
19716 [  6330] By: jhi                                   on 2000/07/10  17:54:49
19717         Log: More POSIX.pod tweaks.
19718      Branch: cfgperl
19719            ! ext/POSIX/POSIX.pod
19720 ____________________________________________________________________________
19721 [  6329] By: jhi                                   on 2000/07/10  14:02:12
19722         Log: Reorder perl.pod once more.
19723      Branch: cfgperl
19724            ! pod/buildtoc.PL pod/perl.pod pod/perltoc.pod
19725 ____________________________________________________________________________
19726 [  6328] By: gsar                                  on 2000/07/10  07:06:00
19727         Log: accept() leaks memory on windows due to incorrect ordering of
19728              closesocket() and fclose() calls
19729      Branch: perl
19730            ! win32/win32sck.c
19731 ____________________________________________________________________________
19732 [  6327] By: gsar                                  on 2000/07/10  06:49:17
19733         Log: winsock options weren't being set in all threads under ithreads
19734              (caused send()s from second and subsequent threads to fail)
19735      Branch: perl
19736            ! win32/win32sck.c
19737 ____________________________________________________________________________
19738 [  6326] By: jhi                                   on 2000/07/08  02:45:40
19739         Log: Fix a nit spotted by 64bit IRIX compilation: a (64-bit) pointer
19740              was cast to an unsigned (32-bit) integer with wild abandon.
19741      Branch: cfgperl
19742            ! ext/Devel/DProf/DProf.xs
19743 ____________________________________________________________________________
19744 [  6325] By: jhi                                   on 2000/07/07  18:50:33
19745         Log: Remove perlbook, update perlfaq book listing,
19746              rearrange perl.pod, regenerate perltoc.
19747      Branch: cfgperl
19748            - pod/perlbook.pod
19749            ! MANIFEST pod/buildtoc.PL pod/perl.pod pod/perldiag.pod
19750            ! pod/perlfaq2.pod pod/perltoc.pod
19751 ____________________________________________________________________________
19752 [  6324] By: jhi                                   on 2000/07/07  14:03:40
19753         Log: Fix the alignment problem in Crays ([ID 20000612.002]).
19754      Branch: cfgperl
19755            ! sv.h toke.c
19756 ____________________________________________________________________________
19757 [  6323] By: jhi                                   on 2000/07/06  16:03:55
19758         Log: Fix complaints of buildtoc.
19759      Branch: cfgperl
19760            + lib/Win32.pod
19761            - pod/Win32.pod
19762            ! MANIFEST pod/buildtoc.PL pod/perl.pod pod/perltoc.pod
19763 ____________________________________________________________________________
19764 [  6322] By: jhi                                   on 2000/07/06  15:15:52
19765         Log: Add =head1 NAMEs so that buildtoc is happy.
19766              (The CGI::Util nit reported to Lincoln.)
19767      Branch: cfgperl
19768            ! ext/B/B/Stash.pm lib/CGI/Util.pm lib/warnings/register.pm
19769            ! pod/perltoc.pod
19770 ____________________________________________________________________________
19771 [  6321] By: jhi                                   on 2000/07/06  03:16:04
19772         Log: Config is being used.
19773      Branch: cfgperl
19774            ! t/op/method.t
19775 ____________________________________________________________________________
19776 [  6320] By: jhi                                   on 2000/07/06  03:13:13
19777         Log: Integrate with Sarathy.
19778      Branch: cfgperl
19779           !> lib/perl5db.pl win32/perllib.c win32/vdir.h win32/win32sck.c
19780 ____________________________________________________________________________
19781 [  6319] By: jhi                                   on 2000/07/06  03:11:46
19782         Log: Autogenerate pod/Makefile and pod/buildtoc.
19783              buildtoc also checks whether the existin pods are
19784              mentioned in MANIFEST and perl.pod, and vice versa.
19785              (None of the thusly found discrepancies fixed yet.)
19786              roffitall also needs to be autogenerated similarly but it
19787              seems so badly out of date that I didn't touch it yet.
19788      Branch: cfgperl
19789            + pod/Makefile.SH pod/buildtoc.PL
19790            - pod/Makefile pod/buildtoc
19791            ! MANIFEST Makefile.SH pod/perl.pod pod/perltoc.pod
19792 ____________________________________________________________________________
19793 [  6318] By: gsar                                  on 2000/07/05  22:10:54
19794         Log: fix UNC path handling on Windows under ithreads, and chdir()
19795              return value when given a non-existent directory
19796      Branch: perl
19797            ! win32/vdir.h
19798 ____________________________________________________________________________
19799 [  6317] By: gsar                                  on 2000/07/05  22:08:19
19800         Log: winsock cleanup never done on Windows (leads to handle leaks)
19801      Branch: perl
19802            ! win32/perllib.c win32/win32sck.c
19803 ____________________________________________________________________________
19804 [  6316] By: gsar                                  on 2000/07/05  22:06:19
19805         Log: some debugger output does not go to the socket when RemotePort is set
19806      Branch: perl
19807            ! lib/perl5db.pl
19808 ____________________________________________________________________________
19809 [  6315] By: jhi                                   on 2000/07/05  00:25:21
19810         Log: Integrate with Sarathy, preliminary fix for unicos
19811              alignment problems in [ID 20000612.002] Perl problem on Cray system.
19812      Branch: cfgperl
19813            ! sv.h
19814           !> pp_hot.c
19815 ____________________________________________________________________________
19816 [  6314] By: gsar                                  on 2000/07/04  23:34:02
19817         Log: tyop in change#6306
19818      Branch: perl
19819            ! pp_hot.c
19820 ____________________________________________________________________________
19821 [  6313] By: jhi                                   on 2000/07/04  22:14:38
19822         Log: Multiline string literals ENONPORTABLE.
19823      Branch: cfgperl
19824            ! pp_hot.c
19825 ____________________________________________________________________________
19826 [  6312] By: jhi                                   on 2000/07/04  20:34:44
19827         Log: Integrate with Sarathy.
19828      Branch: cfgperl
19829           !> pod/perldelta.pod pod/perldiag.pod pp_hot.c t/lib/b.t
19830           !> t/op/method.t
19831 ____________________________________________________________________________
19832 [  6311] By: jhi                                   on 2000/07/04  20:30:56
19833         Log: More POSIX.pod embellishment.
19834      Branch: cfgperl
19835            ! ext/POSIX/POSIX.pod
19836 ____________________________________________________________________________
19837 [  6310] By: gsar                                  on 2000/07/04  17:28:48
19838         Log: b.t fails under OS/2 (from Yitzchak Scott-Thoennes)
19839      Branch: perl
19840            ! t/lib/b.t
19841 ____________________________________________________________________________
19842 [  6309] By: jhi                                   on 2000/07/04  17:22:18
19843         Log: The #6308 required a little bit more.
19844      Branch: cfgperl
19845            ! Makefile.SH win32/Makefile
19846 ____________________________________________________________________________
19847 [  6308] By: jhi                                   on 2000/07/04  16:35:24
19848         Log: Rename lib.pm.PL to lib_pm.PL to keep the 8.3 people happy.
19849      Branch: cfgperl
19850            + lib/lib_pm.PL
19851            - lib/lib.pm.PL
19852            ! MANIFEST Makefile.SH
19853 ____________________________________________________________________________
19854 [  6307] By: jhi                                   on 2000/07/04  16:28:58
19855         Log: Win32 patches for cfgperl from Sarathy.
19856      Branch: cfgperl
19857            ! doio.c doop.c embed.h embed.pl global.sym gv.c makedef.pl
19858            ! objXSUB.h op.c perlapi.c pp.c pp_ctl.c pp_hot.c proto.h
19859            ! thread.h toke.c util.c win32/Makefile win32/win32.c
19860 ____________________________________________________________________________
19861 [  6306] By: gsar                                  on 2000/07/04  16:28:40
19862         Log: better diagnostic on Frob->stuff() when Frob:: doesn't exist
19863              (from Richard Soderberg <rs@oregonnet.com>)
19864      Branch: perl
19865            ! pod/perldelta.pod pod/perldiag.pod pp_hot.c t/op/method.t
19866 ____________________________________________________________________________
19867 [  6305] By: jhi                                   on 2000/07/04  16:24:24
19868         Log: Integrate with Sarathy.
19869      Branch: cfgperl
19870           !> embed.h embed.pl global.sym lib/File/Spec/Mac.pm
19871           !> lib/File/Spec/Unix.pm lib/File/Spec/VMS.pm
19872           !> lib/File/Spec/Win32.pm objXSUB.h perlapi.c pod/perldiag.pod
19873           !> proto.h win32/win32.c
19874 ____________________________________________________________________________
19875 [  6304] By: gsar                                  on 2000/07/04  16:17:24
19876         Log: missing perldiag entry for unpack("w",...) diagnostic (from
19877              Andreas Koenig)
19878      Branch: perl
19879            ! pod/perldiag.pod
19880 ____________________________________________________________________________
19881 [  6303] By: gsar                                  on 2000/07/04  16:14:44
19882         Log: remove rel2abs prototypes (from Barrie Slaymaker)
19883      Branch: perl
19884            ! lib/File/Spec/Mac.pm lib/File/Spec/Unix.pm
19885            ! lib/File/Spec/VMS.pm lib/File/Spec/Win32.pm
19886 ____________________________________________________________________________
19887 [  6302] By: gsar                                  on 2000/07/04  04:59:35
19888         Log: adjust change#6299
19889      Branch: perl
19890            ! embed.h embed.pl global.sym objXSUB.h perlapi.c proto.h
19891            ! win32/win32.c
19892 ____________________________________________________________________________
19893 [  6301] By: jhi                                   on 2000/07/04  04:50:07
19894         Log: Integrate with Sarathy.
19895      Branch: cfgperl
19896           !> embed.h embed.pl embedvar.h global.sym hv.c intrpvar.h
19897           !> makedef.pl objXSUB.h perl.c perl.h perlapi.c perlapi.h
19898           !> pp_hot.c proto.h sv.c t/io/argv.t win32/win32.c
19899 ____________________________________________________________________________
19900 [  6300] By: gsar                                  on 2000/07/04  04:42:09
19901         Log: PERL_OBJECT build tweak
19902      Branch: perl
19903            ! perl.h
19904 ____________________________________________________________________________
19905 [  6299] By: gsar                                  on 2000/07/04  04:37:00
19906         Log: fix memory leak on Windows (PL_sys_intern contents were never
19907              freed)
19908      Branch: perl
19909            ! embed.h embed.pl global.sym makedef.pl objXSUB.h perl.c
19910            ! perlapi.c proto.h win32/win32.c
19911 ____________________________________________________________________________
19912 [  6298] By: gsar                                  on 2000/07/04  04:15:59
19913         Log: fix large memory leak that has been around for ever, masked by
19914              -DPURIFY (most of the arenas were never freed!)
19915      Branch: perl
19916            ! embedvar.h global.sym hv.c intrpvar.h perl.c perlapi.h sv.c
19917 ____________________________________________________________________________
19918 [  6297] By: gsar                                  on 2000/07/04  04:07:46
19919         Log: fix ~320 byte memory leak (psig_{ptr,name} tables were never freed)
19920      Branch: perl
19921            ! perl.c
19922 ____________________________________________________________________________
19923 [  6296] By: jhi                                   on 2000/06/30  18:28:37
19924         Log: Elaborate POSIX.pod.  Still needs work.
19925      Branch: cfgperl
19926            ! ext/POSIX/POSIX.pod
19927 ____________________________________________________________________________
19928 [  6295] By: jhi                                   on 2000/06/30  14:58:18
19929         Log: Point to perlipc for more SysV IPC examples.
19930      Branch: cfgperl
19931            ! pod/perlfunc.pod
19932 ____________________________________________________________________________
19933 [  6294] By: gsar                                  on 2000/06/30  14:47:45
19934         Log: slurp mode fix in change#4736 still not quite right
19935      Branch: perl
19936            ! pp_hot.c t/io/argv.t
19937 ____________________________________________________________________________
19938 [  6293] By: jhi                                   on 2000/06/30  12:02:55
19939         Log: Integrate with Sarathy.
19940      Branch: cfgperl
19941           !> cop.h pp_ctl.c pp_hot.c t/op/args.t
19942 ____________________________________________________________________________
19943 [  6292] By: jhi                                   on 2000/06/30  12:01:11
19944         Log: From: simon@brecon.co.uk (Simon Cozens)
19945              Subject: UTF8 concat
19946              Date: 30 Jun 2000 06:13:25 GMT
19947              Message-ID: <slrn8loek5.9ai.simon@justanother.perlhacker.org>
19948      Branch: cfgperl
19949            ! pp_hot.c
19950 ____________________________________________________________________________
19951 [  6291] By: gsar                                  on 2000/06/30  04:37:33
19952         Log: dounwind() may cause POPSUB() to diddle the wrong PL_curpad
19953              when @_ is modified, causing coredumps
19954      Branch: perl
19955            ! cop.h pp_ctl.c pp_hot.c t/op/args.t
19956 ____________________________________________________________________________
19957 [  6290] By: jhi                                   on 2000/06/30  02:21:44
19958         Log: Integrate with Sarathy.
19959      Branch: cfgperl
19960           !> vms/vms.c vms/vmsish.h
19961 ____________________________________________________________________________
19962 [  6289] By: jhi                                   on 2000/06/30  02:21:02
19963         Log: Check VERSIONs.
19964      Branch: cfgperl
19965            ! lib/File/Spec/Functions.pm lib/File/Spec/Mac.pm
19966            ! lib/File/Spec/OS2.pm lib/File/Spec/Unix.pm
19967            ! lib/File/Spec/VMS.pm lib/File/Spec/Win32.pm
19968 ____________________________________________________________________________
19969 [  6288] By: jhi                                   on 2000/06/30  02:18:52
19970         Log: Integrate with Sarathy.
19971      Branch: cfgperl
19972           !> ext/Opcode/Opcode.xs lib/File/Spec.pm
19973           !> lib/File/Spec/Functions.pm lib/File/Spec/Mac.pm
19974           !> lib/File/Spec/OS2.pm lib/File/Spec/Unix.pm
19975           !> lib/File/Spec/VMS.pm lib/File/Spec/Win32.pm pod/perlembed.pod
19976 ____________________________________________________________________________
19977 [  6287] By: gsar                                  on 2000/06/30  02:17:08
19978         Log: integrate vmsperl changes into mainline
19979      Branch: perl
19980           !> vms/vms.c vms/vmsish.h
19981 ____________________________________________________________________________
19982 [  6285] By: gsar                                  on 2000/06/30  02:05:28
19983         Log: localize %INC in a Safe compartment so that use/require work
19984              (many other magic globals probably need similar treatment)
19985      Branch: perl
19986            ! ext/Opcode/Opcode.xs
19987 ____________________________________________________________________________
19988 [  6284] By: gsar                                  on 2000/06/30  01:54:54
19989         Log: tweak perlembed for multiplicity/usethreads sanity; correct notes
19990              about Windows
19991      Branch: perl
19992            ! pod/perlembed.pod
19993 ____________________________________________________________________________
19994 [  6283] By: jhi                                   on 2000/06/30  01:50:10
19995         Log: Subject: [PATCH bleedperl] File::Spec 0.82 beta
19996              From: Barrie Slaymaker <barries@jester.slaysys.com>
19997              Date: Wed, 28 Jun 2000 11:35:29 -0400
19998              Message-Id: <200006281535.LAA21095@jester.slaysys.com>
19999      Branch: perl
20000            ! lib/File/Spec.pm lib/File/Spec/Functions.pm
20001            ! lib/File/Spec/Mac.pm lib/File/Spec/OS2.pm
20002            ! lib/File/Spec/Unix.pm lib/File/Spec/VMS.pm
20003            ! lib/File/Spec/Win32.pm
20004 ____________________________________________________________________________
20005 [  6282] By: jhi                                   on 2000/06/29  22:57:22
20006         Log: Subject: [PATCH 5.6.0]ITHREADs for VMS
20007              From: Dan Sugalski <dan@sidhe.org>
20008              Date: Tue, 06 Jun 2000 11:59:50 -0400
20009              Message-Id: <4.3.2.7.0.20000606115752.01c82220@24.8.96.48>
20010      Branch: cfgperl
20011            ! vms/vms.c
20012 ____________________________________________________________________________
20013 [  6281] By: jhi                                   on 2000/06/29  22:52:50
20014         Log: Subject: [PATCH 5.6.0] utils/h2xs.PL
20015              From: "Daniel S. Lewart" <d-lewart@uiuc.edu>
20016              Date: Wed, 7 Jun 2000 04:02:04 -0500
20017              Message-ID: <20000607040201.A22568@staff1.cso.uiuc.edu>
20018      Branch: cfgperl
20019            ! utils/h2xs.PL
20020 ____________________________________________________________________________
20021 [  6280] By: jhi                                   on 2000/06/29  22:45:47
20022         Log: Subject: Re: backwards compatibility in h2xs and makemaker  [PATCH]
20023              From: rspier@pobox.com (Robert Spier)
20024              Date: Wed, 7 Jun 2000 12:47:37 -0400 (EDT)
20025              Message-ID: <14654.31913.845602.610277@rls.cx>
20026      Branch: cfgperl
20027            ! utils/h2xs.PL
20028 ____________________________________________________________________________
20029 [  6279] By: jhi                                   on 2000/06/29  22:38:16
20030         Log: Subject: [ID 20000602.002] [PATCH] perlsub.pod: ambiguous usage of "closure"
20031              From: Tim Ayers <tayers@bridge.com>
20032              Date: Thu, 08 Jun 2000 08:11:06 +0200
20033              Message-id: <393F38FA.9B5F4C7D@m.dasa.de>
20034              [resent by Richard Foley, Message-Id probably wrong]
20035      Branch: cfgperl
20036            ! pod/perlsub.pod
20037 ____________________________________________________________________________
20038 [  6278] By: jhi                                   on 2000/06/29  22:21:45
20039         Log: Subject: [ID 20000609.002] Text::Wrap::wrap does not handle multiline strings properly
20040              From: "Milton L. Hankins" <mlh@swl.msd.ray.com>
20041              Date: Fri, 09 Jun 2000 12:39:27 -0400
20042              Message-Id: <39411DBF.A04BB1A@swl.msd.ray.com>
20043              (plus update the version "number" of Text::Wrap)
20044      Branch: cfgperl
20045            ! lib/Text/Wrap.pm
20046 ____________________________________________________________________________
20047 [  6277] By: jhi                                   on 2000/06/29  22:13:10
20048         Log: Subject: [PATCH] Re: [ID 20000612.001] map {chop; $_} (Literals problem)
20049              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
20050              Date: Mon, 12 Jun 2000 14:55:59 +0100
20051              Message-Id: <E131Uh5-0002cj-00@ursa.cus.cam.ac.uk>
20052      Branch: cfgperl
20053            ! pod/perlfunc.pod
20054 ____________________________________________________________________________
20055 [  6276] By: jhi                                   on 2000/06/29  22:11:06
20056         Log: Subject: [PATCH] Re: eval documentation: context
20057              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
20058              Date: Mon, 12 Jun 2000 15:07:29 +0100
20059              Message-Id: <E131UsD-0002ke-00@ursa.cus.cam.ac.uk>
20060      Branch: cfgperl
20061            ! pod/perlfunc.pod
20062 ____________________________________________________________________________
20063 [  6275] By: jhi                                   on 2000/06/29  21:59:46
20064         Log: Subject: [PATCH] 5.6.0 lib/Pod/{Html,Man,Text}.pm
20065              From: "Daniel S. Lewart" <d-lewart@uiuc.edu>
20066              Date: Tue, 13 Jun 2000 02:43:48 -0500
20067              Message-ID: <20000613024347.A28388@staff2.cso.uiuc.edu>
20068      Branch: cfgperl
20069            ! lib/Pod/Html.pm lib/Pod/Man.pm lib/Pod/Text.pm
20070 ____________________________________________________________________________
20071 [  6274] By: jhi                                   on 2000/06/29  21:56:14
20072         Log: Subject: [ID 20000614.003] 5.6.0 File/Glob.pm incompatibility
20073              From: Andy Dougherty <doughera@lafayette.edu>
20074              Date: Wed, 14 Jun 2000 13:33:32 -0400 (EDT)
20075              Message-Id: <Pine.SOL.4.10.10006141332220.3643-100000@maxwell.phys.lafayette.edu>
20076      Branch: cfgperl
20077            ! ext/File/Glob/Glob.pm
20078 ____________________________________________________________________________
20079 [  6273] By: jhi                                   on 2000/06/29  21:49:09
20080         Log: Subject: [PATCH] xsub attributes
20081              From: Doug MacEachern <dougm@covalent.net>
20082              Date: Wed, 14 Jun 2000 15:09:22 -0700 (PDT)
20083              Message-ID: <Pine.LNX.4.10.10006141456050.340-100000@mojo.covalent.net>
20084      Branch: cfgperl
20085            ! embed.h embed.pl embedvar.h global.sym lib/ExtUtils/xsubpp
20086            ! objXSUB.h op.c perlapi.c perlapi.h proto.h
20087 ____________________________________________________________________________
20088 [  6272] By: jhi                                   on 2000/06/29  21:41:28
20089         Log: Subject: [ID 20000614.005] [patch] Tweak to Net::Ping docs
20090              From: Tom Phoenix <rootbeer@redcat.com>
20091              Received: (qmail 6398 invoked by uid 508); 15 Jun 2000 00:30:54 -0000
20092              Date: Wed, 14 Jun 2000 17:30:37 -0700 (PDT)
20093      Branch: cfgperl
20094            ! lib/Net/Ping.pm
20095 ____________________________________________________________________________
20096 [  6271] By: jhi                                   on 2000/06/29  21:36:55
20097         Log: Subject: PATCH pod/perltie.pod
20098              From: Ian Phillipps <Ian.Phillipps@iname.com>
20099              Date: Fri, 16 Jun 2000 00:17:19 +0100
20100              Message-ID: <20000616001719.A17108@homer.diplex.co.uk>
20101              (only the first hunk, the second hunk had already been done
20102              by some other patch)
20103      Branch: cfgperl
20104            ! pod/perltie.pod
20105 ____________________________________________________________________________
20106 [  6270] By: jhi                                   on 2000/06/29  21:24:51
20107         Log: Subject: PATCH (Re: [ID 20000612.004] Should regression tests fail if user doesn't build XS extensions?)
20108              From: Nicholas Clark <nick@talking.bollo.cx>
20109              Date: Fri, 23 Jun 2000 16:21:15 +0100
20110              Message-ID: <20000623162115.A19894@Bagpuss.unfortu.net>
20111      Branch: cfgperl
20112            ! t/lib/anydbm.t t/lib/dprof.t t/lib/dumper-ovl.t t/lib/dumper.t
20113            ! t/lib/hostname.t t/lib/ipc_sysv.t t/op/taint.t
20114 ____________________________________________________________________________
20115 [  6269] By: jhi                                   on 2000/06/29  19:38:15
20116         Log: Regen headers for #6261 (and update embed.pl for this) and #6267,
20117              silence few compiler warnings.
20118      Branch: cfgperl
20119            ! doop.c embed.pl global.sym objXSUB.h op.c proto.h toke.c
20120 ____________________________________________________________________________
20121 [  6268] By: jhi                                   on 2000/06/29  18:21:50
20122         Log: Subject: [PATCH perl-current] Make op/sprintf.t more comprehensive
20123              From: Dominic Dunlop <domo@computer.org> 
20124              Date: Thu, 29 Jun 2000 12:32:39 +0200 
20125              Message-Id: <p04320403b580cc1338db@[192.168.1.4]> 
20126      Branch: cfgperl
20127            ! t/op/sprintf.t
20128 ____________________________________________________________________________
20129 [  6267] By: jhi                                   on 2000/06/29  18:16:07
20130         Log: Subject: Re: [PATCH] Re: Speeding up method lookups 
20131              From: Doug MacEachern <dougm@covalent.net>
20132              Date: Sun, 18 Jun 2000 13:24:55 -0700 (PDT)
20133              Message-ID: <Pine.LNX.4.10.10006181306031.397-100000@mojo.covalent.net>
20134      Branch: cfgperl
20135            + t/op/method2entersub.t
20136            ! MANIFEST embed.pl lib/ExtUtils/Install.pm lib/File/Spec/Mac.pm
20137            ! lib/File/Spec/Unix.pm lib/File/Spec/VMS.pm
20138            ! lib/File/Spec/Win32.pm lib/base.pm op.c perl.h t/op/sprintf.t
20139            ! xsutils.c
20140 ____________________________________________________________________________
20141 [  6266] By: jhi                                   on 2000/06/29  15:11:15
20142         Log: Subject: [PATCH 5.6.0] cygwin port
20143              Message-ID: <779F20BCCE5AD31186A50008C75D997917173C@silldn_mail1.sanwaint.com>
20144              From: "Fifer, Eric" <EFifer@sanwaint.com>
20145              Date: Thu, 29 Jun 2000 12:58:29 +0100
20146      Branch: cfgperl
20147            ! cygwin/Makefile.SHs
20148 ____________________________________________________________________________
20149 [  6265] By: jhi                                   on 2000/06/29  15:04:05
20150         Log: Subject: Re: [ID 20000628.006] POSIX::STRERR_FILENO typo
20151              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
20152              Date: Wed, 28 Jun 2000 17:50:12 -0700
20153              Message-ID: <E1pW5gzkg2kV092yn@efn.org>
20154      Branch: cfgperl
20155            ! ext/POSIX/POSIX.pm ext/POSIX/POSIX.pod ext/POSIX/POSIX.xs
20156 ____________________________________________________________________________
20157 [  6264] By: jhi                                   on 2000/06/29  15:00:57
20158         Log: Subject: [ID 20000628.004] Re: Problem compiling perl? [BSDI-Support-Request #71232]
20159              From: Marty Lucich <marty@netcom.com>
20160              Date: Wed, 28 Jun 2000 14:16:05 -0700 (PDT)
20161              Message-Id: <200006282116.OAA11148@netcom.com>
20162              ccdlflags update (the BSD/OS 4.1 part had already been taken
20163              care of by #6141).
20164      Branch: cfgperl
20165            ! hints/bsdos.sh
20166 ____________________________________________________________________________
20167 [  6263] By: jhi                                   on 2000/06/29  13:47:44
20168         Log: tr fixes from Simon Cozens
20169      Branch: cfgperl
20170            ! doop.c
20171 ____________________________________________________________________________
20172 [  6262] By: jhi                                   on 2000/06/28  18:46:01
20173         Log: Subject: 5.6.0 Patch for EPOC
20174              From: Olaf Flebbe <o.flebbe@gmx.de>
20175              Date: Tue, 13 Jun 2000 22:59:29 +0200 (MEST)
20176              Message-ID: <23449.960929969@www11.gmx.net>
20177      Branch: cfgperl
20178            ! README.epoc epoc/config.sh epoc/createpkg.pl epoc/epocish.c
20179            ! epoc/epocish.h
20180 ____________________________________________________________________________
20181 [  6261] By: jhi                                   on 2000/06/28  18:29:07
20182         Log: Subject: Re: [PATCH cfgperl] BOMs away!
20183              From: simon@brecon.co.uk (Simon Cozens)
20184              Date: 17 Jun 2000 11:49:57 GMT
20185              Message-ID: <slrn8kmpf5.8pl.simon@justanother.perlhacker.org>
20186      Branch: cfgperl
20187            ! pod/perldiag.pod t/comp/require.t toke.c
20188 ____________________________________________________________________________
20189 [  6260] By: jhi                                   on 2000/06/28  17:47:16
20190         Log: Subject: Re: [PATCH] pack('U',$foo) doesn't UTF8
20191              From: simon@brecon.co.uk (Simon Cozens) 
20192              Date: 17 Jun 2000 11:56:44 GMT 
20193              Message-ID: <slrn8kmprs.8pl.simon@justanother.perlhacker.org> 
20194              pack U0, pack C0
20195      Branch: cfgperl
20196            ! pod/perlfunc.pod pp.c t/op/pack.t
20197 ____________________________________________________________________________
20198 [  6259] By: jhi                                   on 2000/06/28  16:43:17
20199         Log: perlnewmod was missing from MANIFEST.
20200      Branch: cfgperl
20201            ! MANIFEST
20202 ____________________________________________________________________________
20203 [  6258] By: jhi                                   on 2000/06/28  15:54:30
20204         Log: linenumber tweak
20205      Branch: cfgperl
20206            ! t/pragma/warn/regcomp
20207 ____________________________________________________________________________
20208 [  6257] By: jhi                                   on 2000/06/28  15:50:44
20209         Log: Subject: Re: [PATCH] "Constant subroutine redefined" mandatory warning
20210              From: Doug MacEachern <dougm@covalent.net>
20211              Date: Sun, 25 Jun 2000 12:11:28 -0700 (PDT)
20212              Message-ID: <Pine.LNX.4.10.10006251209191.461-100000@mojo.covalent.net>
20213              (one part of the patch had been applied earlier)
20214      Branch: cfgperl
20215            ! op.c sv.c t/pragma/constant.t t/pragma/warn/op
20216 ____________________________________________________________________________
20217 [  6256] By: jhi                                   on 2000/06/28  15:40:22
20218         Log: tweaks from Simon Cozens to further fix tr/// under utf8
20219      Branch: cfgperl
20220            ! doop.c
20221 ____________________________________________________________________________
20222 [  6255] By: jhi                                   on 2000/06/28  15:33:45
20223         Log: small thinko tweaks
20224      Branch: cfgperl
20225            ! lib/IPC/Open3.pm t/op/my_stash.t
20226 ____________________________________________________________________________
20227 [  6254] By: jhi                                   on 2000/06/28  15:33:25
20228         Log: Subject: tr///, help wanted.
20229              From: simon@brecon.co.uk (Simon Cozens)
20230              Date: 28 Jun 2000 11:29:04 GMT
20231              Message-ID: <slrn8ljoc0.fbd.simon@justanother.perlhacker.org>
20232      Branch: cfgperl
20233            ! doop.c embed.h embed.pl embedvar.h global.sym objXSUB.h
20234            ! pp_proto.h proto.h t/op/tr.t
20235 ____________________________________________________________________________
20236 [  6253] By: jhi                                   on 2000/06/28  15:09:17
20237         Log: Paranoia tweak on #6249.
20238              Subject: Re: [PATCH 5.6.0 IPC/Open3.pm] Allow the use of numeric fd's
20239              From: Ronald J Kimball <rjk@linguist.dartmouth.edu>
20240              Date: Sun, 25 Jun 2000 23:43:12 -0400
20241              Message-ID: <20000625234312.B74147@linguist.dartmouth.edu>
20242      Branch: cfgperl
20243            ! lib/IPC/Open3.pm
20244 ____________________________________________________________________________
20245 [  6252] By: jhi                                   on 2000/06/28  15:01:38
20246         Log: Document #6249 and #6251.
20247      Branch: cfgperl
20248            ! lib/Exporter.pm lib/IPC/Open3.pm
20249 ____________________________________________________________________________
20250 [  6251] By: jhi                                   on 2000/06/28  14:50:43
20251         Log: Subject: [PATCH] inline AUTOLOADed constants via Exporter.pm
20252              From: Doug MacEachern <dougm@covalent.net>
20253              Date: Fri, 23 Jun 2000 00:16:39 -0700 (PDT)
20254              Message-ID: <Pine.LNX.4.10.10006230009400.322-100000@mojo.covalent.net>
20255      Branch: cfgperl
20256            ! lib/Exporter.pm
20257 ____________________________________________________________________________
20258 [  6250] By: jhi                                   on 2000/06/28  14:45:23
20259         Log: Subject: Re: [PATCH] support 'my __PACKAGE__ $obj = ...'
20260              From: Doug MacEachern <dougm@covalent.net>
20261              Date: Tue, 27 Jun 2000 14:17:28 -0700 (PDT)
20262              Message-ID: <Pine.LNX.4.10.10006271412340.7587-100000@mojo.covalent.net>
20263      Branch: cfgperl
20264            + t/op/my_stash.t
20265            ! MANIFEST embed.pl global.sym proto.h toke.c
20266 ____________________________________________________________________________
20267 [  6249] By: jhi                                   on 2000/06/28  14:36:34
20268         Log: Subject: Re: [PATCH 5.6.0 IPC/Open3.pm] Allow the use of numeric fd's 
20269              From: Frank Tobin <ftobin@uiuc.edu>
20270              Date: Sun, 25 Jun 2000 19:00:58 -0500 (CDT)
20271              Message-ID: <Pine.BSF.4.21.0006251855340.20487-100000@srh0902.urh.uiuc.edu>
20272      Branch: cfgperl
20273            ! lib/IPC/Open3.pm
20274 ____________________________________________________________________________
20275 [  6248] By: jhi                                   on 2000/06/28  14:11:25
20276         Log: Subject: DOC PATCH 5.6.0: perlfunc/sprintf does not contain an example
20277              From: Mark-Jason Dominus <mjd@plover.com>
20278              Date: Tue, 27 Jun 2000 22:36:42 -0400
20279              Message-ID: <20000628023642.12166.qmail@plover.com>
20280      Branch: cfgperl
20281            ! pod/perlfunc.pod
20282 ____________________________________________________________________________
20283 [  6247] By: jhi                                   on 2000/06/27  12:46:37
20284         Log: Tweak $VERSION, patch from Doug MacEachern.
20285      Branch: cfgperl
20286            ! lib/File/Spec.pm
20287 ____________________________________________________________________________
20288 [  6246] By: jhi                                   on 2000/06/27  03:34:46
20289         Log: Allow for standalone testing.
20290      Branch: cfgperl
20291            ! t/lib/filefunc.t t/lib/filespec.t
20292 ____________________________________________________________________________
20293 [  6245] By: jhi                                   on 2000/06/27  02:50:02
20294         Log: Subject: [ID 20000624.001] PERL_DL_DEBUG=1 DynaLoader message appears to be wrong
20295              From: Nicholas Clark <nick@Bagpuss.unfortu.net>
20296              Date: Sat, 24 Jun 2000 13:06:20 +0100
20297              Message-Id: <200006241206.NAA03771@Bagpuss.unfortu.net>
20298      Branch: cfgperl
20299            ! ext/DynaLoader/DynaLoader_pm.PL
20300 ____________________________________________________________________________
20301 [  6244] By: jhi                                   on 2000/06/27  02:46:10
20302         Log: Subject: [PATCH] avoid mg_ptr in '*' magic
20303              From: Doug MacEachern <dougm@covalent.net>
20304              Date: Sun, 25 Jun 2000 11:16:08 -0700 (PDT)
20305              Message-ID: <Pine.LNX.4.10.10006251045190.461-100000@mojo.covalent.net>
20306      Branch: cfgperl
20307            ! gv.c sv.c t/lib/peek.t
20308 ____________________________________________________________________________
20309 [  6243] By: jhi                                   on 2000/06/27  02:38:07
20310         Log: Subject: [PATCH] is_utf8_string
20311              From: simon@brecon.co.uk (Simon Cozens)
20312              Date: 26 Jun 2000 02:25:59 GMT
20313              Message-ID: <slrn8ldfpn.h5k.simon@justanother.perlhacker.org>
20314      Branch: cfgperl
20315            ! embed.h embed.pl embedvar.h global.sym objXSUB.h perlapi.c
20316            ! perlapi.h pod/perlapi.pod pod/perlintern.pod pp_proto.h
20317            ! proto.h utf8.c
20318 ____________________________________________________________________________
20319 [  6242] By: jhi                                   on 2000/06/27  02:24:00
20320         Log: Subject: [PATCH] bytes<->utf8 fixes
20321              From: simon@brecon.co.uk (Simon Cozens)
20322              Date: 26 Jun 2000 04:55:45 GMT
20323              Message-ID: <slrn8ldoih.fbd.simon@justanother.perlhacker.org>
20324      Branch: cfgperl
20325            ! embed.pl perlapi.c pod/perlapi.pod proto.h utf8.c
20326 ____________________________________________________________________________
20327 [  6241] By: jhi                                   on 2000/06/27  02:12:42
20328         Log: Do no -warn on \_, only on \alpha.
20329              Subject: New Unrecognized escape warning for /\_/ from activestate perl-current5.6.0
20330              From: David Dyck <dcd@tc.fluke.com>
20331              Date: Mon, 26 Jun 2000 09:32:02 -0700 (PDT)
20332              Message-ID: <Pine.LNX.4.05.10006260830280.3054-100000@dd.tc.fluke.com>
20333      Branch: cfgperl
20334            ! regcomp.c t/pragma/warn/regcomp t/pragma/warn/toke toke.c
20335 ____________________________________________________________________________
20336 [  6240] By: jhi                                   on 2000/06/27  02:00:01
20337         Log: Subject: [ID 20000626.007] h2xs man page contains trailing garbage
20338              From: Nicholas Clark <nick@Bagpuss.unfortu.net>
20339              Date: Mon, 26 Jun 2000 18:40:14 +0100
20340              Message-Id: <200006261740.SAA02740@Bagpuss.unfortu.net>
20341      Branch: cfgperl
20342            ! utils/h2xs.PL
20343 ____________________________________________________________________________
20344 [  6239] By: jhi                                   on 2000/06/27  01:53:40
20345         Log: Configure maintenance.  Sever some dependency cycles,
20346              separate gccversion from the cc unit,
20347              address [ID 20000623.006] Configure script patch for using gcc on AIX
20348              (but solve it a little bit differently),
20349              unduplex some accidentally duplicated units,
20350              suggest using gcc if no cc available
20351              (p5p thread: "Solaris configure: counterproposal", 1999-09)
20352      Branch: cfgperl
20353            ! Configure Todo-5.6 config_h.SH
20354      Branch: metaconfig
20355            ! U/modified/Config_h.U U/modified/cc.U U/modified/cpp_stuff.U
20356            ! U/modified/libs.U U/modified/models.U U/modified/usrinc.U
20357      Branch: metaconfig/U/perl
20358            + gccvers.U
20359            ! d_getespwnam.U d_getprpwnam.U i_prot.U
20360 ____________________________________________________________________________
20361 [  6238] By: jhi                                   on 2000/06/25  18:04:56
20362         Log: Subject: [PATCH 5.6.0] XS module loading fixup for VMS
20363              From: Dan Sugalski <dan@sidhe.org>
20364              Date: Fri, 23 Jun 2000 17:00:00 -0400
20365              Message-Id: <4.3.2.7.0.20000623165934.00c93d10@24.8.96.48>
20366      Branch: cfgperl
20367            ! lib/ExtUtils/MM_VMS.pm vms/vms.c
20368 ____________________________________________________________________________
20369 [  6237] By: jhi                                   on 2000/06/25  16:36:45
20370         Log: Tweak embed.pl, regen headers.
20371      Branch: cfgperl
20372            ! embed.h embed.pl embedvar.h ext/B/B/Asmdata.pm
20373            ! ext/ByteLoader/byterun.c ext/ByteLoader/byterun.h global.sym
20374            ! keywords.h lib/warnings.pm objXSUB.h opcode.h opnames.h
20375            ! perlapi.c perlapi.h pod/perlapi.pod pod/perlintern.pod pp.sym
20376            ! pp_proto.h proto.h regnodes.h utf8.c warnings.h
20377 ____________________________________________________________________________
20378 [  6236] By: jhi                                   on 2000/06/25  15:26:42
20379         Log: Regen headers.
20380      Branch: cfgperl
20381            ! embed.h embedvar.h ext/B/B/Asmdata.pm ext/ByteLoader/byterun.c
20382            ! ext/ByteLoader/byterun.h global.sym keywords.h lib/warnings.pm
20383            ! objXSUB.h opcode.h opnames.h perlapi.c perlapi.h
20384            ! pod/perlapi.pod pod/perlintern.pod pp.sym pp_proto.h proto.h
20385            ! regnodes.h warnings.h
20386 ____________________________________________________________________________
20387 [  6235] By: jhi                                   on 2000/06/23  19:39:35
20388         Log: The thread begun by
20389              Subject: [ID 20000616.001] Typo on line 390 of .../hints/solaris_2.sh
20390              From: Kevin.Ruscoe@ubsw.com
20391              Date: Fri, 16 Jun 2000 16:38:51 +0100
20392              Message-Id: <H000019b03c300d6@MHS>
20393      Branch: cfgperl
20394            ! hints/solaris_2.sh
20395 ____________________________________________________________________________
20396 [  6234] By: jhi                                   on 2000/06/23  19:23:36
20397         Log: Prefer C:/temp in Win32 as File::Spec->tmpdir to /tmp
20398              because when run as services (Win32ese for daemons)
20399              no environment variables are set and tmpdir ends up as /tmp,
20400              which is ambiguous.
20401              
20402              Subject:[ID 20000616.002] File::Spec->tmpdir broken when running as service
20403              From: matt@sergeant.org
20404              Date: 16 Jun 2000 16:30:43 -0000
20405              Message-Id: <20000616163043.26398.qmail@mail.sergeant.org>
20406      Branch: cfgperl
20407            ! lib/File/Spec/Win32.pm
20408 ____________________________________________________________________________
20409 [  6233] By: jhi                                   on 2000/06/23  19:18:58
20410         Log: Subject: PATCH 5.6.0: Document OPf_SPECIAL flag in regcomp op nodes
20411              From: Mark-Jason Dominus <mjd@plover.com>
20412              Date: Fri, 16 Jun 2000 20:53:04 -0400
20413              Message-ID: <20000617005304.8008.qmail@plover.com>
20414      Branch: cfgperl
20415            ! op.h
20416 ____________________________________________________________________________
20417 [  6232] By: jhi                                   on 2000/06/23  16:10:02
20418         Log: Subject: PATCH: pod/perlutil.pod - utilities packaged with the Perl distribution
20419              From: simon@brecon.co.uk (Simon Cozens)
20420              Date: 19 Jun 2000 15:18:27 GMT
20421              Message-ID: <slrn8ksee3.cp9.simon@justanother.perlhacker.org>
20422              
20423              plus update pod/Makefile and regenerate perltoc
20424      Branch: cfgperl
20425            + pod/perlutil.pod
20426            ! MANIFEST Todo-5.6 pod/Makefile pod/perltoc.pod pod/roffitall
20427 ____________________________________________________________________________
20428 [  6231] By: jhi                                   on 2000/06/23  15:19:18
20429         Log: Subject: [PATCH 5.6.0] cygwin port
20430              From: "Fifer, Eric" <EFifer@sanwaint.com>
20431              Date: Tue, 20 Jun 2000 14:30:58 +0100
20432              Message-ID: <779F20BCCE5AD31186A50008C75D9979171734@silldn_mail1.sanwaint.com>
20433      Branch: cfgperl
20434            ! README.cygwin lib/File/Find.pm
20435 ____________________________________________________________________________
20436 [  6230] By: jhi                                   on 2000/06/23  14:25:21
20437         Log: Upgrade to File::Spec 0.810_01 from CPAN by Barrie Slaymaker.
20438      Branch: cfgperl
20439            ! lib/File/Spec.pm lib/File/Spec/Functions.pm
20440            ! lib/File/Spec/Mac.pm lib/File/Spec/OS2.pm
20441            ! lib/File/Spec/Unix.pm lib/File/Spec/VMS.pm
20442            ! lib/File/Spec/Win32.pm t/lib/filefunc.t t/lib/filespec.t
20443 ____________________________________________________________________________
20444 [  6229] By: jhi                                   on 2000/06/23  14:13:34
20445         Log: Subject: README.hpux version 0.6.1
20446              Date: Tue, 20 Jun 2000 15:25:51 -0700 (PDT)
20447              From: Jeff Okamoto <okamoto@xfiles.intercon.hp.com>
20448              Message-Id: <200006202225.PAA26205@xfiles.intercon.hp.com>
20449      Branch: cfgperl
20450            ! README.hpux
20451 ____________________________________________________________________________
20452 [  6228] By: jhi                                   on 2000/06/23  14:07:20
20453         Log: Subject: [PATCH] "Constant subroutine redefined" mandatory warning
20454              From: Doug MacEachern <dougm@covalent.net>
20455              Date: Tue, 20 Jun 2000 21:23:56 -0700 (PDT)
20456              Message-ID: <Pine.LNX.4.10.10006202116340.321-100000@mojo.covalent.net>
20457      Branch: cfgperl
20458            ! op.c
20459 ____________________________________________________________________________
20460 [  6227] By: jhi                                   on 2000/06/23  14:01:06
20461         Log: Subject: [PATCH] lib.pm -> lib.pm.PL
20462              From: Doug MacEachern <dougm@covalent.net>
20463              Date: Tue, 20 Jun 2000 22:14:41 -0700 (PDT)
20464              Message-ID: <Pine.LNX.4.10.10006202208210.321-100000@mojo.covalent.net>
20465      Branch: cfgperl
20466            + lib/lib.pm.PL
20467            - lib/lib.pm
20468            ! MANIFEST Makefile.SH
20469 ____________________________________________________________________________
20470 [  6226] By: jhi                                   on 2000/06/23  13:53:07
20471         Log: Subject: [PATCH] remove forward declarations in Socket.pm
20472              From: Doug MacEachern <dougm@covalent.net>
20473              Date: Tue, 20 Jun 2000 21:54:12 -0700 (PDT)
20474              Message-ID: <Pine.LNX.4.10.10006202149190.321-100000@mojo.covalent.net>
20475              
20476              From: Doug MacEachern <dougm@covalent.net>
20477              Subject: Re: [PATCH] remove forward declarations in Socket.pm
20478              Date: Fri, 23 Jun 2000 00:09:29 -0700 (PDT)
20479              Message-ID: <Pine.LNX.4.10.10006222349440.322-100000@mojo.covalent.net>
20480      Branch: cfgperl
20481            ! ext/Socket/Socket.pm op.c
20482 ____________________________________________________________________________
20483 [  6225] By: jhi                                   on 2000/06/23  13:41:52
20484         Log: Add source code filenames to apidoc.
20485              From: simon@brecon.co.uk (Simon Cozens)
20486              Subject: [PATCH embed.pl] Source X-ref
20487              Date: 22 Jun 2000 02:18:49 GMT
20488              Message-ID: <slrn8l2ts8.h5k.simon@justanother.perlhacker.org>
20489      Branch: cfgperl
20490            ! embed.pl
20491 ____________________________________________________________________________
20492 [  6224] By: jhi                                   on 2000/06/23  13:32:33
20493         Log: A way to avoid English.pm performance hit.
20494              From: root <root@jester.slaysys.com>
20495              Subject: [YAPATCH English.pm] My turn to putt again
20496              Date: Thu, 22 Jun 2000 20:33:58 -0400
20497              Message-Id: <200006230033.UAA05960@jester.slaysys.com>
20498      Branch: cfgperl
20499            ! lib/English.pm t/lib/english.t
20500 ____________________________________________________________________________
20501 [  6223] By: jhi                                   on 2000/06/23  13:27:06
20502         Log: Avoid double close().
20503              Subject: [PATCH] avoid double close()
20504              From: Doug MacEachern <dougm@covalent.net>
20505              Date: Thu, 22 Jun 2000 23:08:06 -0700 (PDT)
20506              Message-ID: <Pine.LNX.4.10.10006222251260.322-100000@mojo.covalent.net>
20507      Branch: cfgperl
20508            ! doio.c
20509 ____________________________________________________________________________
20510 [  6222] By: jhi                                   on 2000/06/23  13:25:54
20511         Log: doc typo fix
20512              Subject: [PATCH] documentation typo in lib/Pod/Usage.pm
20513              From: Ian Phillipps <Ian.Phillipps@iname.com>
20514              Date: Fri, 23 Jun 2000 10:40:58 +0100
20515              Message-ID: <20000623104058.A22791@homer.diplex.co.uk>
20516      Branch: cfgperl
20517            ! lib/Pod/Usage.pm
20518 ____________________________________________________________________________
20519 [  6221] By: jhi                                   on 2000/06/23  13:24:15
20520         Log: Remove tr///CU (the feature is to be obsoleted by better interfaces).
20521              From: simon@brecon.co.uk (Simon Cozens)
20522              Subject: [PATCH] Eliminate tr///[CU][CU]
20523              Date: 23 Jun 2000 11:05:40 GMT
20524              Message-ID: <slrn8l6h44.h5k.simon@justanother.perlhacker.org>
20525      Branch: cfgperl
20526            ! doop.c embed.pl pod/perlop.pod toke.c utf8.c
20527 ____________________________________________________________________________
20528 [  6220] By: jhi                                   on 2000/06/22  16:07:51
20529         Log: Win32 patches from Benjamin Stuhl.
20530      Branch: cfgperl
20531            ! makedef.pl win32/win32.h
20532 ____________________________________________________________________________
20533 [  6219] By: jhi                                   on 2000/06/22  16:06:34
20534         Log: Bytecode patches from Benjamin Stuhl.
20535      Branch: cfgperl
20536            ! bytecode.pl ext/B/B/Assembler.pm ext/B/B/Bytecode.pm
20537            ! ext/B/O.pm ext/B/defsubs_h.PL ext/ByteLoader/ByteLoader.pm
20538            ! ext/ByteLoader/ByteLoader.xs ext/ByteLoader/bytecode.h
20539 ____________________________________________________________________________
20540 [  6218] By: jhi                                   on 2000/06/15  23:54:16
20541         Log: Bytecode patches from Benjamin Stuhl.
20542      Branch: cfgperl
20543            ! ext/B/B/Assembler.pm ext/B/B/Bytecode.pm
20544 ____________________________________________________________________________
20545 [  6217] By: jhi                                   on 2000/06/09  13:38:29
20546         Log: Rename the fdpid locking and integrate with Sarathy.
20547      Branch: cfgperl
20548            ! Configure config_h.SH doio.c embed.h embed.pl embedvar.h
20549            ! global.sym gv.c intrpvar.h objXSUB.h perl.c perlapi.h pp.c
20550            ! pp_ctl.c proto.h sv.h util.c util.h vmesa/vmesa.c
20551            ! win32/win32.c
20552           !> av.h cop.h hints/solaris_2.sh t/op/runlevel.t
20553 ____________________________________________________________________________
20554 [  6216] By: gsar                                  on 2000/06/08  14:54:21
20555         Log: be more optimal about clearing @_
20556      Branch: perl
20557            ! cop.h
20558 ____________________________________________________________________________
20559 [  6215] By: gsar                                  on 2000/06/08  14:33:04
20560         Log: tweak comment about @DB::args
20561      Branch: perl
20562            ! av.h pp_ctl.c
20563 ____________________________________________________________________________
20564 [  6214] By: gsar                                  on 2000/06/08  13:57:54
20565         Log: @_ can't have junk in it even in the non-USE_ITHREADS case because
20566              caller() wants to populate @DB::args with it (causes a coredump
20567              in Carp::confess())
20568      Branch: perl
20569            ! cop.h t/op/runlevel.t
20570 ____________________________________________________________________________
20571 [  6213] By: gsar                                  on 2000/06/08  07:06:35
20572         Log: back out change#6106 (seems problematic)
20573      Branch: perl
20574            ! hints/solaris_2.sh
20575 ____________________________________________________________________________
20576 [  6212] By: jhi                                   on 2000/06/07  03:10:36
20577         Log: Continuing mopup for #6204.
20578      Branch: cfgperl
20579            ! ext/B/defsubs_h.PL
20580 ____________________________________________________________________________
20581 [  6211] By: jhi                                   on 2000/06/07  02:41:50
20582         Log: Mopup for #6204.
20583              Under the 5005 threads the t/lib/b.t for B::Deparse fails:
20584              Can't locate object method "PV" via package "B::RV" at ../lib/B/Deparse.pm line 2360.
20585              This is comes from const() where POK isn't on when expected.
20586      Branch: cfgperl
20587            ! embedvar.h ext/B/B.xs ext/B/B/Asmdata.pm
20588            ! ext/ByteLoader/ByteLoader.xs ext/ByteLoader/bytecode.h
20589            ! ext/ByteLoader/byterun.c ext/ByteLoader/byterun.h perlapi.c
20590            ! perlapi.h pod/perlapi.pod
20591 ____________________________________________________________________________
20592 [  6210] By: jhi                                   on 2000/06/07  01:56:29
20593         Log: Mopup for #6207 and #6209.
20594      Branch: cfgperl
20595            ! doio.c gv.c sv.h util.c vmesa/vmesa.c win32/win32.c
20596 ____________________________________________________________________________
20597 [  6209] By: jhi                                   on 2000/06/07  01:33:12
20598         Log: Lock PL_fdpid against race conditions, based on:
20599              Subject: [PATCH 5.6.0]subprocess fixup for threads
20600              From: Dan Sugalski <dan@sidhe.org>
20601              To: perl5-porters@perl.org
20602              Date: Tue, 11 Apr 2000 17:02:32 -0400
20603              Message-Id: <4.3.0.20000411170218.01d2f580@24.8.96.48>
20604      Branch: cfgperl
20605            ! doio.c intrpvar.h perl.c sv.h util.c vmesa/vmesa.c
20606            ! win32/win32.c
20607 ____________________________________________________________________________
20608 [  6208] By: jhi                                   on 2000/06/07  01:05:23
20609         Log: Regen headers for #6207.
20610      Branch: cfgperl
20611            ! embed.h global.sym objXSUB.h proto.h
20612 ____________________________________________________________________________
20613 [  6207] By: jhi                                   on 2000/06/06  23:43:13
20614         Log: Subject: [PATCH 5.6.0] Threadsafe patches
20615              From: Dan Sugalski <dan@sidhe.org>
20616              To: perl5-porters@perl.org
20617              Date: Mon, 08 May 2000 18:08:13 -0400
20618              Message-Id: <4.3.1.0.20000508180729.02182de0@24.8.96.48>
20619      Branch: cfgperl
20620            ! embed.pl global.sym gv.c intrpvar.h perl.c pp.c pp_ctl.c
20621            ! proto.h sv.h util.c
20622 ____________________________________________________________________________
20623 [  6206] By: jhi                                   on 2000/06/06  23:21:23
20624         Log: Subject: [PATCH] Eliminate $a/$b in pod
20625              From: David Glasser <me@davidglasser.net>
20626              To: perl5-porters@perl.org
20627              Date: Mon, 29 May 2000 21:15:59 -0400
20628              Message-Id: <l03130302b558bb2640ce@[209.195.241.121]>
20629      Branch: cfgperl
20630            ! pod/perl5004delta.pod pod/perl56delta.pod pod/perlboot.pod
20631            ! pod/perlbot.pod pod/perlcall.pod pod/perldata.pod
20632            ! pod/perldbmfilter.pod pod/perldiag.pod pod/perldsc.pod
20633            ! pod/perlembed.pod pod/perlfaq4.pod pod/perlfaq6.pod
20634            ! pod/perlfaq7.pod pod/perlfilter.pod pod/perlfunc.pod
20635            ! pod/perlguts.pod pod/perllexwarn.pod pod/perllocale.pod
20636            ! pod/perlobj.pod pod/perlop.pod pod/perlref.pod pod/perlsub.pod
20637            ! pod/perlsyn.pod pod/perltie.pod pod/perltrap.pod
20638            ! pod/perlvar.pod pod/perlxs.pod
20639 ____________________________________________________________________________
20640 [  6205] By: jhi                                   on 2000/06/06  23:12:14
20641         Log: Subject: [PATCH] Win32 improvements
20642              From: "Benjamin Stuhl" <sho_pi@hotmail.com>
20643              To: gsar@activestate.com, perl5-porters@perl.org
20644              Date: Mon, 29 May 2000 17:22:24 PDT
20645              Message-ID: <20000530002224.91142.qmail@hotmail.com>
20646              (MUA had mangled many lines by wordwrapping)
20647      Branch: cfgperl
20648            ! utils/c2ph.PL win32/makefile.mk win32/win32.c win32/win32sck.c
20649 ____________________________________________________________________________
20650 [  6204] By: jhi                                   on 2000/06/06  23:01:50
20651         Log: Subject: [PATCH] B::Bytecode patches
20652              From: "Benjamin Stuhl" <sho_pi@hotmail.com>
20653              To: gsar@activestate.com, jhi@iki.fi
20654              Cc: perl5-porters@perl.org
20655              Message-ID: <20000602202526.48694.qmail@hotmail.com>
20656              (MUA had mangled many lines by wordwrapping)
20657      Branch: cfgperl
20658            ! bytecode.pl ext/B/B.pm ext/B/B.xs ext/B/B/Assembler.pm
20659            ! ext/B/B/Bytecode.pm ext/B/O.pm ext/B/defsubs_h.PL
20660            ! ext/ByteLoader/ByteLoader.xs ext/ByteLoader/bytecode.h
20661            ! intrpvar.h perl.c
20662 ____________________________________________________________________________
20663 [  6203] By: jhi                                   on 2000/06/06  22:32:43
20664         Log: Subject: [PATCH] perldiag should refer to perlos2.pod not README.os2
20665              From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
20666              Date: Tue, 06 Jun 2000 13:07:45 -0700
20667              Message-ID: <RoVP5gzkgmTL092yn@efn.org>
20668      Branch: cfgperl
20669            ! pod/perldiag.pod
20670 ____________________________________________________________________________
20671 [  6202] By: jhi                                   on 2000/06/06  19:38:35
20672         Log: Integrate with Sarathy.
20673      Branch: cfgperl
20674           !> perl.c
20675 ____________________________________________________________________________
20676 [  6201] By: gsar                                  on 2000/06/06  00:42:59
20677         Log: Perl_eval_pv() leaks 4 bytes every time it is called because it
20678              does a PUSHMARK that's never ever POPMARKed; in general, only
20679              Perl_call_[sp]v() need a PUSHMARK for incoming arguments;
20680              Perl_eval_[sp]v() don't because they don't take any incoming
20681              arguments (this leak has been around since the original version
20682              of perl_eval_pv() in 5.003_97e)
20683      Branch: perl
20684            ! perl.c
20685 ____________________________________________________________________________
20686 [  6200] By: jhi                                   on 2000/06/04  03:44:52
20687         Log: Update to cperl-mode.el 4.31 from
20688              ftp://ftp.math.ohio-state.edu/pub/users/ilya/cperl-mode.el
20689              Subject: A couple of notes
20690              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
20691              To: Mailing list Perl5 <perl5-porters@perl.org>
20692              Date: Sat, 3 Jun 2000 23:33:32 -0400
20693              Message-ID: <20000603233332.A6790@monk.mps.ohio-state.edu>
20694      Branch: cfgperl
20695            ! emacs/cperl-mode.el
20696 ____________________________________________________________________________
20697 [  6199] By: jhi                                   on 2000/06/03  15:11:05
20698         Log: Subject: [PATCH 5.6.0]Make perl's malloc work on VMS
20699              From: Dan Sugalski <dan@sidhe.org>
20700              To: perl5-porters@perl.org, vmsperl@perl.org
20701              Date: Fri, 02 Jun 2000 17:30:51 -0400
20702              Message-Id: <4.3.2.7.0.20000602173021.01f03570@24.8.96.48>
20703      Branch: cfgperl
20704            ! vms/descrip_mms.template vms/gen_shrfls.pl
20705 ____________________________________________________________________________
20706 [  6198] By: jhi                                   on 2000/06/03  14:59:15
20707         Log: Subject: [PATCH 5.6.0]VMS fixups so we can build with MULTIPLICITY
20708              From: Dan Sugalski <dan@sidhe.org>
20709              To: vmsperl@perl.org, perl5-porters@perl.org
20710              Date: Fri, 02 Jun 2000 16:00:41 -0400
20711              Message-Id: <4.3.2.7.0.20000602155951.01f02b20@24.8.96.48>
20712              Message-Id: <4.3.2.7.0.20000602164011.01ec8c30@24.8.96.48>
20713      Branch: cfgperl
20714            ! embed.h embed.pl embedvar.h ext/POSIX/POSIX.xs global.sym
20715            ! objXSUB.h perlapi.c perlapi.h pod/perlapi.pod
20716            ! pod/perlintern.pod proto.h vms/vms.c vms/vmsish.h
20717 ____________________________________________________________________________
20718 [  6197] By: jhi                                   on 2000/06/03  14:41:30
20719         Log: Subject: [ID 20000602.005] [PATCH]5.6.0 (DOC) tiny change to perlsyn.pod
20720              From: John Borwick <jhborwic@unity.ncsu.edu>
20721              Date: Fri, 2 Jun 2000 14:35:03 -0400 (EDT)
20722              Message-Id: <Pine.GSO.4.21.0006021420290.11432-100000@eos00du.eos.ncsu.edu>
20723      Branch: cfgperl
20724            ! pod/perlsyn.pod
20725 ____________________________________________________________________________
20726 [  6196] By: jhi                                   on 2000/06/03  14:38:09
20727         Log: Integrate with Sarathy.
20728      Branch: cfgperl
20729           !> cop.h embed.h embed.pl objXSUB.h op.c perl.c perlapi.c perly.c
20730           !> perly_c.diff pp_ctl.c proto.h scope.c scope.h sv.c toke.c
20731           !> vms/perly_c.vms
20732 ____________________________________________________________________________
20733 [  6195] By: gsar                                  on 2000/06/02  22:43:13
20734         Log: fix yet another eval"" leak under USE_ITHREADS
20735      Branch: perl
20736            ! op.c
20737 ____________________________________________________________________________
20738 [  6194] By: gsar                                  on 2000/06/02  18:22:06
20739         Log: fix small eval"" memory leaks under USE_ITHREADS
20740      Branch: perl
20741            ! cop.h embed.h embed.pl objXSUB.h op.c perl.c perlapi.c perly.c
20742            ! perly_c.diff pp_ctl.c proto.h scope.c scope.h sv.c toke.c
20743            ! vms/perly_c.vms
20744 ____________________________________________________________________________
20745 [  6193] By: jhi                                   on 2000/06/01  13:03:56
20746         Log: Signals-be-gone for microperl.
20747      Branch: cfgperl
20748            ! Todo.micro doop.c mg.c perl.c perl.h pp_sys.c util.c
20749 ____________________________________________________________________________
20750 [  6192] By: jhi                                   on 2000/06/01  12:52:02
20751         Log: Integrate with Sarathy.
20752      Branch: cfgperl
20753           +> lib/Pod/LaTeX.pm t/lib/selfloader.t
20754           !> AUTHORS MAINTAIN MANIFEST doop.c embed.pl
20755           !> ext/Devel/Peek/Peek.pm handy.h lib/SelfLoader.pm perl.c
20756           !> pod/perlapi.pod pod/perldata.pod pod/perlfaq6.pod
20757           !> pod/perlfaq9.pod pod/perlfunc.pod pod/perllocale.pod
20758           !> pod/perlre.pod pod/perltrap.pod pod/pod2latex.PL t/op/tr.t
20759           !> t/op/vec.t utils/h2xs.PL
20760 ____________________________________________________________________________
20761 [  6191] By: gsar                                  on 2000/06/01  09:38:21
20762         Log: vec() loses numericalness (modified version of patch suggested
20763              by Robin Barker)
20764      Branch: perl
20765            ! doop.c t/op/vec.t
20766 ____________________________________________________________________________
20767 [  6190] By: gsar                                  on 2000/06/01  09:26:15
20768         Log: submit missing embed.pl change
20769      Branch: perl
20770            ! embed.pl
20771 ____________________________________________________________________________
20772 [  6189] By: gsar                                  on 2000/06/01  09:05:34
20773         Log: counting tr/// corrupts later operation (from M.J.T Guy)
20774      Branch: perl
20775            ! doop.c t/op/tr.t
20776 ____________________________________________________________________________
20777 [  6188] By: gsar                                  on 2000/06/01  08:58:39
20778         Log: h2xs tweaks
20779      Branch: perl
20780            ! utils/h2xs.PL
20781 ____________________________________________________________________________
20782 [  6187] By: gsar                                  on 2000/06/01  08:50:07
20783         Log: replace pod2latex with the one in Pod-LaTeX v0.52 from CPAN
20784              (from Tim Jenness <t.jenness@jach.hawaii.edu>)
20785      Branch: perl
20786            + lib/Pod/LaTeX.pm
20787            ! AUTHORS MAINTAIN MANIFEST ext/Devel/Peek/Peek.pm
20788            ! pod/pod2latex.PL
20789 ____________________________________________________________________________
20790 [  6186] By: gsar                                  on 2000/06/01  08:24:40
20791         Log: further qualify references to "alphanumeric" (from Wolfgang Laun
20792              <wolfgang.laun@alcatel.at>)
20793      Branch: perl
20794            ! handy.h pod/perlapi.pod pod/perldata.pod pod/perlfaq6.pod
20795            ! pod/perlfaq9.pod pod/perllocale.pod pod/perlre.pod
20796 ____________________________________________________________________________
20797 [  6185] By: gsar                                  on 2000/06/01  08:12:00
20798         Log: remove incorrect documentation about implicit split to @_ in
20799              list context, which never really worked in perl 5 (from
20800              M.J.T. Guy)
20801      Branch: perl
20802            ! pod/perlfunc.pod pod/perltrap.pod
20803 ____________________________________________________________________________
20804 [  6184] By: gsar                                  on 2000/06/01  07:52:27
20805         Log: tweak for change#6127
20806      Branch: perl
20807            ! perl.c
20808 ____________________________________________________________________________
20809 [  6183] By: gsar                                  on 2000/06/01  07:41:02
20810         Log: SelfLoader can lose $@ in AUTOLOAD() (from Nicholas Clark
20811              <nick@ccl4.org>)
20812      Branch: perl
20813            + t/lib/selfloader.t
20814            ! MANIFEST lib/SelfLoader.pm
20815 ____________________________________________________________________________
20816 [  6182] By: jhi                                   on 2000/06/01  00:34:42
20817         Log: Be Cleaner Part Deux.
20818      Branch: cfgperl
20819            ! Makefile.SH
20820 ____________________________________________________________________________
20821 [  6181] By: jhi                                   on 2000/06/01  00:32:09
20822         Log: Integrate with Sarathy.
20823      Branch: cfgperl
20824           !> pp.c t/op/arith.t
20825 ____________________________________________________________________________
20826 [  6180] By: jhi                                   on 2000/06/01  00:31:13
20827         Log: microperl nits from Simon Cozens.
20828      Branch: cfgperl
20829            + uconfig.h
20830            ! MAINTAIN MANIFEST Makefile.SH Todo.micro perl.h uconfig.sh
20831            ! unixish.h
20832 ____________________________________________________________________________
20833 [  6179] By: gsar                                  on 2000/05/31  22:37:51
20834         Log: buggy modulus on UVs introduced by change#3378 (resulted in
20835              4063328477 % 65535 amounting to 27406, instead of 27407)
20836      Branch: perl
20837            ! pp.c t/op/arith.t
20838 ____________________________________________________________________________
20839 [  6178] By: jhi                                   on 2000/05/31  21:52:41
20840         Log: Be cleaner.
20841      Branch: cfgperl
20842            ! Makefile.SH
20843 ____________________________________________________________________________
20844 [  6177] By: jhi                                   on 2000/05/31  21:47:33
20845         Log: Substitution utf8 patch from Simon Cozens.
20846      Branch: cfgperl
20847            ! pp_hot.c
20848 ____________________________________________________________________________
20849 [  6176] By: jhi                                   on 2000/05/31  21:45:34
20850         Log: Single-quoted utf8 patch from Simon Cozens.
20851      Branch: cfgperl
20852            ! toke.c
20853 ____________________________________________________________________________
20854 [  6175] By: jhi                                   on 2000/05/31  21:40:18
20855         Log: Integrate with Sarathy.
20856      Branch: cfgperl
20857           !> op.c regexec.c t/lib/filefind.t t/op/re_tests t/op/wantarray.t
20858 ____________________________________________________________________________
20859 [  6174] By: jhi                                   on 2000/05/31  21:37:31
20860         Log: microperl changes from Simon Cozens; Makefile for microperl
20861              written from scratch; few casts added as microperl compilation
20862              doesn't have all prototypes available.
20863      Branch: cfgperl
20864            + Makefile.micro README.micro Todo.micro uconfig.sh
20865            ! Configure MAINTAIN MANIFEST config_h.SH doop.c mg.c op.c
20866            ! perl.c perl.h perlio.c unixish.h utf8.c util.c
20867      Branch: metaconfig
20868            + U/modified/Config_h.U
20869 ____________________________________________________________________________
20870 [  6173] By: jhi                                   on 2000/05/31  20:00:24
20871         Log: metaconfig maintenance.
20872      Branch: metaconfig
20873            + U/modified/Inhdr.U U/typedefs/inotype.U
20874      Branch: metaconfig/U/perl
20875            + d_finitel.U d_getcwd.U d_llseek.U i_fp_class.U i_iconv.U
20876            + i_ieeefp.U i_syslog.U i_sysrusage.U i_ulimit.U
20877 ____________________________________________________________________________
20878 [  6172] By: gsar                                  on 2000/05/31  05:05:42
20879         Log: fix buggy multiline matching of C<"a\nxb\n" =~ /(?!\A)x/m>
20880              (from Ilya Zakharevich)
20881      Branch: perl
20882            ! regexec.c t/op/re_tests
20883 ____________________________________________________________________________
20884 [  6171] By: gsar                                  on 2000/05/31  05:01:47
20885         Log: scalar() doesn't force scalar context when used in void context
20886              (from Simon Cozens)
20887      Branch: perl
20888            ! op.c t/op/wantarray.t
20889 ____________________________________________________________________________
20890 [  6170] By: gsar                                  on 2000/05/31  04:41:33
20891         Log: change#6142 needs tweaks to tests to work where there's no symlink()
20892              (from Helmut Jarausch <jarausch@igpm.rwth-aachen.de>)
20893      Branch: perl
20894            ! t/lib/filefind.t
20895 ____________________________________________________________________________
20896 [  6169] By: gsar                                  on 2000/05/31  04:29:49
20897         Log: integrate cfgperl contents into mainline
20898      Branch: perl
20899           +> pod/perlmodlib.PL pod/perlnewmod.pod
20900           !> (integrate 42 files)
20901 ____________________________________________________________________________
20902 [  6168] By: jhi                                   on 2000/05/30  22:53:37
20903         Log: Tweak NV_PRESERVES_UV*, vms/subconfigure.com left untouched.
20904      Branch: cfgperl
20905            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
20906            ! config_h.SH epoc/config.sh perl.h toke.c vms/subconfigure.com
20907            ! vos/config.def vos/config.h vos/config.pl vos/config_h.SH_orig
20908            ! win32/config.bc win32/config.gc win32/config.vc
20909            ! win32/config_H.bc win32/config_H.gc win32/config_H.vc
20910            ! win32/config_h.PL win32/config_sh.PL
20911      Branch: metaconfig/U/perl
20912            ! perlxv.U
20913 ____________________________________________________________________________
20914 [  6167] By: jhi                                   on 2000/05/30  22:20:21
20915         Log: tweak todo 
20916      Branch: cfgperl
20917            ! Todo-5.6
20918 ____________________________________________________________________________
20919 [  6166] By: jhi                                   on 2000/05/30  22:11:51
20920         Log: Introduce HAS_GETESPWNAM, HAS_GETPRPWNAM, and I_PROT
20921              in case somebody wants to write an extension for more
20922              shadow database interfaces.
20923      Branch: cfgperl
20924            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
20925            ! config_h.SH epoc/config.sh pp_sys.c vms/subconfigure.com
20926            ! vos/config.def vos/config.h vos/config_h.SH_orig
20927            ! win32/config.bc win32/config.gc win32/config.vc
20928            ! win32/config_H.bc win32/config_H.gc win32/config_H.vc
20929      Branch: metaconfig
20930            ! U/modified/Myinit.U
20931      Branch: metaconfig/U/perl
20932            + d_getespwnam.U d_getprpwnam.U i_prot.U
20933 ____________________________________________________________________________
20934 [  6165] By: jhi                                   on 2000/05/30  18:35:34
20935         Log: Integrate with Sarathy.
20936      Branch: cfgperl
20937           !> op.c
20938 ____________________________________________________________________________
20939 [  6164] By: jhi                                   on 2000/05/30  18:30:16
20940         Log: detypo
20941      Branch: cfgperl
20942            ! Configure config_h.SH
20943      Branch: metaconfig/U/perl
20944            ! perlxv.U
20945 ____________________________________________________________________________
20946 [  6163] By: gsar                                  on 2000/05/30  03:24:03
20947         Log: fix memory leak in C<eval "BEGIN {}"> (bug in change#4579)
20948      Branch: perl
20949            ! op.c
20950 ____________________________________________________________________________
20951 [  6162] By: gsar                                  on 2000/05/30  03:09:38
20952         Log: fix memory leak in method call optimization (change#3768);
20953              made C<eval "$x->foo()"> leak
20954      Branch: perl
20955            ! op.c
20956 ____________________________________________________________________________
20957 [  6161] By: jhi                                   on 2000/05/29  17:56:26
20958         Log: Add autogeneration of perlmodlib.pod and the new perlnewmod.pod,
20959              both from Simon Cozens.
20960      Branch: cfgperl
20961            + pod/perlmodlib.PL pod/perlnewmod.pod
20962            ! AUTHORS MAINTAIN MANIFEST pod/Makefile pod/perl.pod
20963            ! pod/perlmodlib.pod pod/perltoc.pod
20964 ____________________________________________________________________________
20965 [  6160] By: jhi                                   on 2000/05/29  17:23:55
20966         Log: Changes for the File::Temp 0.08 (change #6159) test suite
20967              to fit better into the Perl distribution test framework.
20968      Branch: cfgperl
20969            ! t/lib/ftmp-mktemp.t t/lib/ftmp-posix.t t/lib/ftmp-security.t
20970            ! t/lib/ftmp-tempfile.t
20971 ____________________________________________________________________________
20972 [  6159] By: jhi                                   on 2000/05/29  16:55:36
20973         Log: Upgrade to File::Temp 0.08 from Tim Jenness via CPAN.
20974      Branch: cfgperl
20975            ! lib/File/Temp.pm t/lib/ftmp-mktemp.t t/lib/ftmp-posix.t
20976            ! t/lib/ftmp-security.t t/lib/ftmp-tempfile.t
20977 ____________________________________________________________________________
20978 [  6158] By: bailey                                on 2000/05/29  16:22:08
20979         Log: Add fallback to tmpfile for use in cases where user's relying on
20980              ACLs on SYS$SCRATCH to permit file creation. (based on Charles
20981              Lane's patch)
20982      Branch: vmsperl
20983            ! vms/vms.c vms/vmsish.h
20984 ____________________________________________________________________________
20985 [  6157] By: jhi                                   on 2000/05/29  03:10:36
20986         Log: Regen Configure to jive with #6149.
20987      Branch: cfgperl
20988            ! Configure
20989      Branch: metaconfig
20990            ! U/modified/Getfile.U
20991 ____________________________________________________________________________
20992 [  6156] By: jhi                                   on 2000/05/29  03:01:38
20993         Log: Integrate with Sarathy.
20994      Branch: cfgperl
20995           +> ext/DynaLoader/dl_mac.xs
20996           !> (integrate 38 files)
20997 ____________________________________________________________________________
20998 [  6155] By: gsar                                  on 2000/05/28  21:15:58
20999         Log: small bug in change#6144; remove random \xA0 character that snuck
21000              in via change#6145
21001      Branch: perl
21002            ! lib/AutoSplit.pm lib/ExtUtils/xsubpp
21003 ____________________________________________________________________________
21004 [  6154] By: gsar                                  on 2000/05/28  21:04:19
21005         Log: avoid type mismatch warning
21006      Branch: perl
21007            ! perl.c
21008 ____________________________________________________________________________
21009 [  6153] By: gsar                                  on 2000/05/28  20:58:31
21010         Log: prettier Test::Harness output on failed tests (from Nicholas Clark
21011              <nick@Bagpuss.uk.boo.com>)
21012      Branch: perl
21013            ! lib/Test/Harness.pm
21014 ____________________________________________________________________________
21015 [  6152] By: gsar                                  on 2000/05/28  20:53:42
21016         Log: cosmetic fixups of RE debug output (from Ilya Zakharevich)
21017      Branch: perl
21018            ! regexec.c
21019 ____________________________________________________________________________
21020 [  6151] By: gsar                                  on 2000/05/28  20:50:28
21021         Log: fix accidental pessimization in RE optimizer (from Ilya Zakharevich)
21022      Branch: perl
21023            ! regexec.c
21024 ____________________________________________________________________________
21025 [  6150] By: gsar                                  on 2000/05/28  20:39:58
21026         Log: perlrequick.pod updates (from Mark Kvale <kvale@phy.ucsf.edu>)
21027      Branch: perl
21028            ! pod/perlrequick.pod
21029 ____________________________________________________________________________
21030 [  6149] By: gsar                                  on 2000/05/28  20:35:16
21031         Log: OS/2 tweaks for usethreads build (from Rocco Caputo
21032              <troc@netrus.net>)
21033      Branch: perl
21034            ! Configure hints/os2.sh makedef.pl os2/Makefile.SHs
21035            ! os2/OS2/REXX/t/rx_dllld.t os2/OS2/REXX/t/rx_objcall.t
21036            ! os2/OS2/REXX/t/rx_tievar.t os2/OS2/REXX/t/rx_tieydb.t
21037            ! os2/os2.c os2/os2ish.h perl.c util.c x2p/a2p.h
21038 ____________________________________________________________________________
21039 [  6148] By: gsar                                  on 2000/05/28  20:21:07
21040         Log: close open file before chmod() (from Rocco Caputo <troc@netrus.net>)
21041      Branch: perl
21042            ! lib/ExtUtils/MM_Unix.pm
21043 ____________________________________________________________________________
21044 [  6147] By: gsar                                  on 2000/05/28  20:12:41
21045         Log: add a make entry to Config.pm so "perl -V:make" works on VMS
21046              (from Peter Prymmer)
21047      Branch: perl
21048            ! vms/subconfigure.com
21049 ____________________________________________________________________________
21050 [  6146] By: gsar                                  on 2000/05/28  20:06:15
21051         Log: doc typo
21052      Branch: perl
21053            ! lib/warnings.pm warnings.h warnings.pl
21054 ____________________________________________________________________________
21055 [  6145] By: gsar                                  on 2000/05/28  18:44:33
21056         Log: make xsubpp skip embedded pod (from Matthias Neeracher
21057              <neeri@iis.ee.ethz.ch>)
21058      Branch: perl
21059            ! lib/ExtUtils/xsubpp
21060 ____________________________________________________________________________
21061 [  6144] By: gsar                                  on 2000/05/28  18:42:49
21062         Log: MacOS support, part 2: make AutoSplit use File::Spec instead
21063              of assuming Unixisms; *UNTESTED on Unix* (from Matthias Neeracher
21064              <neeri@iis.ee.ethz.ch>)
21065      Branch: perl
21066            ! lib/AutoSplit.pm
21067 ____________________________________________________________________________
21068 [  6143] By: gsar                                  on 2000/05/28  18:41:12
21069         Log: MacOS support, part 1 (from Matthias Neeracher
21070              <neeri@iis.ee.ethz.ch>)
21071      Branch: perl
21072            + ext/DynaLoader/dl_mac.xs
21073            ! MANIFEST ext/DB_File/Makefile.PL ext/NDBM_File/Makefile.PL
21074            ! ext/POSIX/POSIX.xs lib/ExtUtils/MakeMaker.pm mg.c perl.c
21075            ! perlsfio.h pod/perlfaq4.pod pp_ctl.c proto.h toke.c util.c
21076            ! util.h
21077 ____________________________________________________________________________
21078 [  6142] By: gsar                                  on 2000/05/28  18:21:51
21079         Log: File::Find fails to chdir when chasing symlinks (from
21080              Helmut Jarausch <jarausch@igpm.rwth-aachen.de>)
21081      Branch: perl
21082            ! lib/File/Find.pm t/lib/filefind.t
21083 ____________________________________________________________________________
21084 [  6141] By: jhi                                   on 2000/05/28  14:25:15
21085         Log: BSD/OS (bsdi) hints update by Timur I. Bakeyev and Todd C. Miller,
21086              forwarded by Peter Seebach from the bsdi-users mailing list.
21087              p5p Message-Id: <200005280543.AAA24519@guild.plethora.net>
21088      Branch: perl
21089            ! hints/bsdos.sh
21090 ____________________________________________________________________________
21091 [  6140] By: jhi                                   on 2000/05/28  14:11:57
21092         Log: Integrate with Sarathy.
21093      Branch: cfgperl
21094           +> (branch 30 files)
21095           !> (integrate 93 files)
21096 ____________________________________________________________________________
21097 [  6139] By: gsar                                  on 2000/05/28  10:01:48
21098         Log: revise mktables.PL for bugs and newness in Unicode 3.0
21099              (from James Bence <jbence@amgen.com>)
21100      Branch: perl
21101            + lib/unicode/Is/BidiAL.pl lib/unicode/Is/BidiBN.pl
21102            + lib/unicode/Is/BidiLRE.pl lib/unicode/Is/BidiLRO.pl
21103            + lib/unicode/Is/BidiNSM.pl lib/unicode/Is/BidiPDF.pl
21104            + lib/unicode/Is/BidiRLE.pl lib/unicode/Is/BidiRLO.pl
21105            + lib/unicode/Is/Cf.pl lib/unicode/Is/Cs.pl
21106            + lib/unicode/Is/DCfraction.pl lib/unicode/Is/Me.pl
21107            + lib/unicode/Is/Nl.pl lib/unicode/Is/Pc.pl lib/unicode/Is/Pf.pl
21108            + lib/unicode/Is/Pi.pl lib/unicode/Is/Sk.pl
21109            + lib/unicode/Is/SylAA.pl lib/unicode/Is/SylAAI.pl
21110            + lib/unicode/Is/SylAI.pl lib/unicode/Is/SylEE.pl
21111            + lib/unicode/Is/SylII.pl lib/unicode/Is/SylN.pl
21112            + lib/unicode/Is/SylOO.pl lib/unicode/Is/SylWAA.pl
21113            + lib/unicode/Is/SylWEE.pl lib/unicode/Is/SylWII.pl
21114            + lib/unicode/Is/SylWO.pl lib/unicode/Is/SylWOO.pl
21115            + lib/unicode/Is/SylWU.pl
21116            ! MANIFEST lib/unicode/Is/Cn.pl lib/unicode/Is/Graph.pl
21117            ! lib/unicode/Is/LbrkAI.pl lib/unicode/Is/LbrkAL.pl
21118            ! lib/unicode/Is/LbrkB2.pl lib/unicode/Is/LbrkBA.pl
21119            ! lib/unicode/Is/LbrkBB.pl lib/unicode/Is/LbrkBK.pl
21120            ! lib/unicode/Is/LbrkCB.pl lib/unicode/Is/LbrkCL.pl
21121            ! lib/unicode/Is/LbrkCM.pl lib/unicode/Is/LbrkCR.pl
21122            ! lib/unicode/Is/LbrkEX.pl lib/unicode/Is/LbrkGL.pl
21123            ! lib/unicode/Is/LbrkHY.pl lib/unicode/Is/LbrkID.pl
21124            ! lib/unicode/Is/LbrkIN.pl lib/unicode/Is/LbrkIS.pl
21125            ! lib/unicode/Is/LbrkLF.pl lib/unicode/Is/LbrkNS.pl
21126            ! lib/unicode/Is/LbrkNU.pl lib/unicode/Is/LbrkOP.pl
21127            ! lib/unicode/Is/LbrkPO.pl lib/unicode/Is/LbrkPR.pl
21128            ! lib/unicode/Is/LbrkQU.pl lib/unicode/Is/LbrkSA.pl
21129            ! lib/unicode/Is/LbrkSG.pl lib/unicode/Is/LbrkSP.pl
21130            ! lib/unicode/Is/LbrkSY.pl lib/unicode/Is/LbrkXX.pl
21131            ! lib/unicode/Is/LbrkZW.pl lib/unicode/Is/Punct.pl
21132            ! lib/unicode/Is/Space.pl lib/unicode/Is/SylA.pl
21133            ! lib/unicode/Is/SylC.pl lib/unicode/Is/SylE.pl
21134            ! lib/unicode/Is/SylI.pl lib/unicode/Is/SylO.pl
21135            ! lib/unicode/Is/SylU.pl lib/unicode/Is/SylV.pl
21136            ! lib/unicode/Is/SylWA.pl lib/unicode/Is/SylWC.pl
21137            ! lib/unicode/Is/SylWE.pl lib/unicode/Is/SylWI.pl
21138            ! lib/unicode/Is/SylWV.pl lib/unicode/Is/Upper.pl
21139            ! lib/unicode/Makefile lib/unicode/mktables.PL
21140 ____________________________________________________________________________
21141 [  6138] By: gsar                                  on 2000/05/28  08:50:32
21142         Log: add note about the handling of negative indices to tied arrays
21143              (from Michael G Schwern <schwern@pobox.com>)
21144      Branch: perl
21145            ! pod/perltie.pod
21146 ____________________________________________________________________________
21147 [  6137] By: gsar                                  on 2000/05/28  08:46:10
21148         Log: fix bogus redeclaration warning for "our" variables in different
21149              scopes
21150      Branch: perl
21151            ! op.c t/pragma/strict-vars
21152 ____________________________________________________________________________
21153 [  6136] By: gsar                                  on 2000/05/28  08:31:20
21154         Log: random pod typos (from Peter Scott <Peter@PSDT.com>)
21155      Branch: perl
21156            ! ext/Devel/Peek/Peek.pm pod/perldebguts.pod
21157 ____________________________________________________________________________
21158 [  6135] By: gsar                                  on 2000/05/28  08:17:50
21159         Log: enable Test::Harness to dynamically determine column width etc.
21160              (from Rob Napier <rnapier@employees.org>)
21161      Branch: perl
21162            ! lib/Test/Harness.pm
21163 ____________________________________________________________________________
21164 [  6134] By: gsar                                  on 2000/05/28  08:13:39
21165         Log: make Test::Harness use wait.h/WCOREDUMP if available
21166              (from Ben Tilly <ben_tilly@hotmail.com>)
21167      Branch: perl
21168            ! lib/Test/Harness.pm
21169 ____________________________________________________________________________
21170 [  6133] By: gsar                                  on 2000/05/28  08:08:05
21171         Log: elide bogus test in change#6132
21172      Branch: perl
21173            ! t/pragma/warn/9enabled
21174 ____________________________________________________________________________
21175 [  6132] By: gsar                                  on 2000/05/28  08:03:14
21176         Log: warnings::enabled() doesn't fall back to looking at $^W if
21177              caller isn't using lexical warnings (from Paul Marquess)
21178      Branch: perl
21179            ! pp_ctl.c t/pragma/warn/9enabled
21180 ____________________________________________________________________________
21181 [  6131] By: gsar                                  on 2000/05/28  07:57:47
21182         Log: avoid warnings in POSIX.pm (from Barrie Slaymaker)
21183      Branch: perl
21184            ! ext/POSIX/POSIX.pm
21185 ____________________________________________________________________________
21186 [  6130] By: gsar                                  on 2000/05/28  07:29:12
21187         Log: fix places that mean C<"word" character> but say C<alphanumeric
21188              character>
21189      Branch: perl
21190            ! pod/perlfunc.pod pod/perlre.pod pod/perlretut.pod
21191 ____________________________________________________________________________
21192 [  6129] By: gsar                                  on 2000/05/28  07:18:41
21193         Log: VMS test harness tweak (from Jesper Naur <jesper.naur@post.tele.dk>)
21194      Branch: perl
21195            ! vms/test.com
21196 ____________________________________________________________________________
21197 [  6128] By: gsar                                  on 2000/05/28  07:12:55
21198         Log: new perlxstut example for passing/returning refs to arrays
21199              (from David Lowe <dlowe@pootpoot.com>)
21200      Branch: perl
21201            ! pod/perlxstut.pod
21202 ____________________________________________________________________________
21203 [  6127] By: gsar                                  on 2000/05/28  07:02:50
21204         Log: call_method(...,G_EVAL) can longjmp() out if the method probing
21205              failed (from Gisle Aas)
21206      Branch: perl
21207            ! cop.h perl.c
21208 ____________________________________________________________________________
21209 [  6126] By: gsar                                  on 2000/05/28  06:39:53
21210         Log: change#2879 broke rvalue autovivification of magicals such as ${$num}
21211              (reworked variant of patch suggested by Simon Cozens)
21212      Branch: perl
21213            ! embed.h embed.pl gv.c pod/perlapi.pod pod/perlintern.pod pp.c
21214            ! pp_hot.c proto.h t/op/gv.t
21215 ____________________________________________________________________________
21216 [  6125] By: gsar                                  on 2000/05/28  05:14:55
21217         Log: enable propagating exception objects via Perl_croak() in XS code
21218              (from Gisle Aas)
21219      Branch: perl
21220            ! util.c
21221 ____________________________________________________________________________
21222 [  6124] By: gsar                                  on 2000/05/28  05:07:28
21223         Log: integrate vmsperl contents into mainline
21224      Branch: perl
21225           !> lib/ExtUtils/MM_VMS.pm lib/File/Spec/VMS.pm t/op/lex_assign.t
21226           !> vms/ext/vmsish.pm vms/ext/vmsish.t vms/test.com vms/vms.c
21227           !> vms/vmsish.h
21228 ____________________________________________________________________________
21229 [  6123] By: gsar                                  on 2000/05/28  05:03:53
21230         Log: clarify gotcha with #line directives (from Rocco Caputo
21231              <troc@netrus.net>)
21232      Branch: perl
21233            ! pod/perldebug.pod pod/perlsyn.pod
21234 ____________________________________________________________________________
21235 [  6122] By: gsar                                  on 2000/05/28  04:58:29
21236         Log: downgrade fatal error on C<"foo@nosucharray.com"> to optional warning
21237              (from Mark-Jason Dominus)
21238      Branch: perl
21239            ! lib/ExtUtils/typemap pod/perl56delta.pod pod/perlsub.pod
21240            ! pod/perltrap.pod t/base/lex.t t/pragma/strict-vars
21241            ! t/pragma/strict.t t/pragma/warn/toke t/pragma/warnings.t
21242            ! toke.c
21243 ____________________________________________________________________________
21244 [  6121] By: bailey                                on 2000/05/25  04:46:54
21245         Log: Allow eliminate_macros() and fixpath() to handle space-delimited
21246              lists (based on fixes by Craig Berry)
21247      Branch: vmsperl
21248            ! lib/File/Spec/VMS.pm
21249 ____________________________________________________________________________
21250 [  6120] By: bailey                                on 2000/05/25  04:25:38
21251         Log: Add missing escape (Charles Lane)
21252      Branch: vmsperl
21253            ! t/op/lex_assign.t
21254 ____________________________________________________________________________
21255 [  6119] By: bailey                                on 2000/05/25  04:21:25
21256         Log: Quiet error messages in vmsish.t (Charles Lane)
21257      Branch: vmsperl
21258            ! vms/ext/vmsish.t
21259 ____________________________________________________________________________
21260 [  6118] By: bailey                                on 2000/05/25  04:17:57
21261         Log: Regularize distinction between RMS$_DNF and RMS$_DIR (Craig Berry)
21262              Flatten case labels in switch statements uniformly (Charles Bailey)
21263      Branch: vmsperl
21264            ! vms/vms.c
21265 ____________________________________________________________________________
21266 [  6117] By: bailey                                on 2000/05/25  03:58:09
21267         Log: Treat sockets as special in sys(read|write) (Charles Lane et al.)
21268      Branch: vmsperl
21269            ! vms/vmsish.h
21270 ____________________________________________________________________________
21271 [  6116] By: bailey                                on 2000/05/25  03:11:15
21272         Log: Miscellaneous cosmetic fixes (Charles Lane)
21273      Branch: vmsperl
21274            ! lib/ExtUtils/MM_VMS.pm
21275 ____________________________________________________________________________
21276 [  6115] By: bailey                                on 2000/05/25  03:10:36
21277         Log: Add bounds checking for several strings (Charles Lane)
21278      Branch: vmsperl
21279            ! vms/vms.c
21280 ____________________________________________________________________________
21281 [  6114] By: bailey                                on 2000/05/25  02:25:34
21282         Log: Urk -- undo previous removal of vmsish 'exit' change
21283      Branch: vmsperl
21284            ! vms/ext/vmsish.pm vms/vmsish.h
21285 ____________________________________________________________________________
21286 [  6113] By: bailey                                on 2000/05/24  02:24:40
21287         Log: Ugly workaround for version-specific RTL error
21288      Branch: vmsperl
21289            ! vms/vms.c
21290 ____________________________________________________________________________
21291 [  6112] By: bailey                                on 2000/05/24  02:19:55
21292         Log: Check for existence of file before trying to delete
21293      Branch: vmsperl
21294            ! vms/test.com
21295 ____________________________________________________________________________
21296 [  6111] By: bailey                                on 2000/05/23  23:35:13
21297         Log: Resync with mainline prior to post-5.6.0 updates
21298      Branch: vmsperl
21299           +> (branch 49 files)
21300            - t/lib/thread.t t/op/64bit.t t/op/nothread.t
21301            ! vms/ext/vmsish.pm
21302           !> (integrate 334 files)
21303 ____________________________________________________________________________
21304 [  6110] By: jhi                                   on 2000/05/23  19:28:32
21305         Log: todo tweak
21306      Branch: cfgperl
21307            ! Todo-5.6
21308 ____________________________________________________________________________
21309 [  6109] By: jhi                                   on 2000/05/18  17:38:54
21310         Log: Integrate with Sarathy.
21311      Branch: cfgperl
21312           !> mg.c perl.h win32/perlhost.h
21313 ____________________________________________________________________________
21314 [  6108] By: gsar                                  on 2000/05/17  02:24:56
21315         Log: reenable fake signal handling on Windows, bugs and all
21316      Branch: perl
21317            ! mg.c perl.h win32/perlhost.h
21318 ____________________________________________________________________________
21319 [  6107] By: jhi                                   on 2000/05/15  18:01:41
21320         Log: Tweak the todo list.
21321      Branch: cfgperl
21322            ! Todo-5.6
21323 ____________________________________________________________________________
21324 [  6106] By: jhi                                   on 2000/05/15  13:41:48
21325         Log: The (Configure) script refuses to go on, after asking for
21326              'You may also choose to try maximal 64-bitness....'.
21327              If answer is yes the script can't find the 'workshoplibpth.cbu' file.
21328              -- Patrick Zima
21329              p5p Message-Id: <200005151108.NAA19733@pc026991.otn.lm.dasa.de> 
21330      Branch: cfgperl
21331            ! hints/solaris_2.sh
21332 ____________________________________________________________________________
21333 [  6105] By: jhi                                   on 2000/05/11  14:37:43
21334         Log: Integrate with Sarathy.
21335      Branch: cfgperl
21336           !> embed.h embed.pl global.sym makedef.pl objXSUB.h perl.c
21337           !> perlapi.c pod/perlapi.pod proto.h win32/win32.c
21338 ____________________________________________________________________________
21339 [  6104] By: gsar                                  on 2000/05/11  03:39:07
21340         Log: PL_sys_intern was being initialized too late on windows
21341      Branch: perl
21342            ! embed.h embed.pl global.sym makedef.pl objXSUB.h perl.c
21343            ! perlapi.c pod/perlapi.pod proto.h win32/win32.c
21344 ____________________________________________________________________________
21345 [  6103] By: jhi                                   on 2000/05/09  19:42:20
21346         Log: Test tweaking for Unicos continues.
21347      Branch: cfgperl
21348            ! t/op/64bitint.t
21349 ____________________________________________________________________________
21350 [  6102] By: jhi                                   on 2000/05/09  16:47:27
21351         Log: The test suite tweak in #6101 wasn't quite right.
21352      Branch: cfgperl
21353            ! t/lib/complex.t
21354 ____________________________________________________________________________
21355 [  6101] By: jhi                                   on 2000/05/09  15:35:34
21356         Log: Hints and test tweaks for Unicos.
21357      Branch: cfgperl
21358            ! hints/unicos.sh t/lib/b.t t/lib/complex.t t/op/64bitint.t
21359 ____________________________________________________________________________
21360 [  6100] By: jhi                                   on 2000/05/08  21:15:06
21361         Log: More compilation tweakery from Allen Smith.
21362      Branch: cfgperl
21363            ! hints/irix_6.sh
21364 ____________________________________________________________________________
21365 [  6099] By: jhi                                   on 2000/05/08  19:21:18
21366         Log: Tweaks for the cc bugs from Allen Smith.
21367      Branch: cfgperl
21368            ! hints/irix_6.sh
21369 ____________________________________________________________________________
21370 [  6098] By: jhi                                   on 2000/05/08  19:13:37
21371         Log: Add a note about other, yet unsupported, shadow password APIs.
21372      Branch: cfgperl
21373            ! pp_sys.c
21374 ____________________________________________________________________________
21375 [  6097] By: jhi                                   on 2000/05/08  18:46:34
21376         Log: Add a note about possible compilation problems from Allen Smith.
21377      Branch: cfgperl
21378            ! hints/irix_6.sh
21379 ____________________________________________________________________________
21380 [  6096] By: jhi                                   on 2000/05/08  17:33:10
21381         Log: Integrate with Sarathy.
21382      Branch: cfgperl
21383           !> README.cygwin cygwin/Makefile.SHs cygwin/cygwin.c
21384           !> hints/cygwin.sh pp_sys.c sv.c win32/perlhost.h
21385 ____________________________________________________________________________
21386 [  6095] By: jhi                                   on 2000/05/08  16:21:33
21387         Log: Introduce NV_PRESERVED_BITS.  Not yet used anywhere but
21388              might be useful in future.
21389      Branch: cfgperl
21390            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
21391            ! config_h.SH
21392      Branch: metaconfig
21393            ! U/installdirs/inc_version_list.U
21394      Branch: metaconfig/U/perl
21395            ! perlxv.U
21396 ____________________________________________________________________________
21397 [  6094] By: gsar                                  on 2000/05/08  14:22:22
21398         Log: cygwin update (from Eric Fifer <efifer@sanwaint.com>)
21399      Branch: perl
21400            ! README.cygwin cygwin/Makefile.SHs cygwin/cygwin.c
21401            ! hints/cygwin.sh pp_sys.c
21402 ____________________________________________________________________________
21403 [  6093] By: gsar                                  on 2000/05/08  12:52:28
21404         Log: fork() failure to create pseudo process sets errno=EAGAIN and returns
21405              undef on windows (from Clinton Pierce <clintp@geeksalad.org>)
21406      Branch: perl
21407            ! pp_sys.c sv.c win32/perlhost.h
21408 ____________________________________________________________________________
21409 [  6092] By: jhi                                   on 2000/05/07  22:40:34
21410         Log: Regen perltoc with the fixed buildtoc.
21411      Branch: cfgperl
21412            ! pod/perltoc.pod
21413 ____________________________________________________________________________
21414 [  6091] By: jhi                                   on 2000/05/07  22:24:16
21415         Log: Integrate with Sarathy.
21416      Branch: cfgperl
21417           !> perl.c pod/buildtoc pp.c pp_hot.c sv.c t/op/quotemeta.t
21418           !> t/op/substr.t toke.c
21419 ____________________________________________________________________________
21420 [  6090] By: gsar                                  on 2000/05/07  19:47:07
21421         Log: concat doesn't preserve utf8-ness, and doesn't invalidate
21422              [NI]OK; added tests for both
21423      Branch: perl
21424            ! perl.c pp_hot.c sv.c t/op/substr.t
21425 ____________________________________________________________________________
21426 [  6089] By: gsar                                  on 2000/05/07  18:18:38
21427         Log: buildtoc tweak to fix newline lossage
21428      Branch: perl
21429            ! pod/buildtoc
21430 ____________________________________________________________________________
21431 [  6088] By: jhi                                   on 2000/05/07  16:35:36
21432         Log: Remove HAS_SETSPENT, HAS_GETSPENT, HAS_ENDSPENT,
21433              because we do not use those.  The HAS_GETSPNAM remains,
21434              though, because we still do use that.
21435      Branch: cfgperl
21436            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
21437            ! config_h.SH epoc/config.sh hints/machten.sh pod/perltoc.pod
21438            ! pp_sys.c vms/subconfigure.com vos/config.def vos/config.h
21439            ! vos/config_h.SH_orig win32/config.bc win32/config.gc
21440            ! win32/config.vc win32/config_H.bc win32/config_H.gc
21441            ! win32/config_H.vc win32/config_h.PL win32/config_sh.PL
21442 ____________________________________________________________________________
21443 [  6087] By: gsar                                  on 2000/05/07  16:05:16
21444         Log: reverse() and quotemeta() weren't preserving utf8-ness; add tests
21445      Branch: perl
21446            ! pp.c sv.c t/op/quotemeta.t t/op/substr.t toke.c
21447 ____________________________________________________________________________
21448 [  6086] By: jhi                                   on 2000/05/07  15:27:07
21449         Log: Integrate with Sarathy.
21450      Branch: cfgperl
21451           +> lib/File/Temp.pm t/lib/ftmp-mktemp.t t/lib/ftmp-posix.t
21452           +> t/lib/ftmp-security.t t/lib/ftmp-tempfile.t
21453           !> AUTHORS MAINTAIN MANIFEST iperlsys.h lib/Carp/Heavy.pm
21454           !> lib/diagnostics.pm pod/perlfunc.pod pod/perlrun.pod
21455           !> pod/perltie.pod pp.c t/lib/peek.t t/op/substr.t
21456           !> utils/perlbug.PL vms/vms.c vms/vmsish.h
21457 ____________________________________________________________________________
21458 [  6085] By: gsar                                  on 2000/05/07  05:52:02
21459         Log: repeat operator (x) doesn't preserve utf8-ness
21460      Branch: perl
21461            ! pp.c t/op/substr.t
21462 ____________________________________________________________________________
21463 [  6084] By: gsar                                  on 2000/05/07  05:39:55
21464         Log: substr() does not preserve utf8-ness (from Stefan Eissing
21465              <Eissing@medicaldataservice.de>); added tests
21466      Branch: perl
21467            ! pp.c t/op/substr.t
21468 ____________________________________________________________________________
21469 [  6083] By: gsar                                  on 2000/05/07  05:24:46
21470         Log: note about undocumented caller() return value (from M.J.T. Guy);
21471              yet another peek.t tweak
21472      Branch: perl
21473            ! pod/perlfunc.pod t/lib/peek.t
21474 ____________________________________________________________________________
21475 [  6082] By: gsar                                  on 2000/05/07  05:08:40
21476         Log: peek.t non-portable to ithreads
21477      Branch: perl
21478            ! t/lib/peek.t
21479 ____________________________________________________________________________
21480 [  6081] By: gsar                                  on 2000/05/07  04:17:04
21481         Log: better default perlbug categories for ok reports (from Richard Foley)
21482      Branch: perl
21483            ! utils/perlbug.PL
21484 ____________________________________________________________________________
21485 [  6080] By: gsar                                  on 2000/05/07  04:08:07
21486         Log: add File::Temp v0.08 from CPAN, with small tweaks to testsuite
21487              (from Tim Jenness <t.jenness@jach.hawaii.edu>)
21488      Branch: perl
21489            + lib/File/Temp.pm t/lib/ftmp-mktemp.t t/lib/ftmp-posix.t
21490            + t/lib/ftmp-security.t t/lib/ftmp-tempfile.t
21491            ! AUTHORS MAINTAIN MANIFEST
21492 ____________________________________________________________________________
21493 [  6079] By: gsar                                  on 2000/05/07  04:01:38
21494         Log: remove outdated kludge in Carp (NULLs are permitted in diagnostics now)
21495      Branch: perl
21496            ! lib/Carp/Heavy.pm
21497 ____________________________________________________________________________
21498 [  6078] By: gsar                                  on 2000/05/07  01:24:19
21499         Log: workaround for CRT bug in chdir() (from Charles Lane, via
21500              Peter Prymmer)
21501      Branch: perl
21502            ! iperlsys.h vms/vms.c vms/vmsish.h
21503 ____________________________________________________________________________
21504 [  6077] By: gsar                                  on 2000/05/07  01:22:23
21505         Log: avoid warnings in diagnostics.pm; pod tweaks (from Peter Prymmer
21506              and Tom Phoenix)
21507      Branch: perl
21508            ! lib/diagnostics.pm pod/perlrun.pod pod/perltie.pod
21509 ____________________________________________________________________________
21510 [  6076] By: gsar                                  on 2000/05/06  17:36:29
21511         Log: integrate cfgperl contents into mainline
21512      Branch: perl
21513           +> t/lib/peek.t
21514           !> Configure MANIFEST Porting/Glossary Porting/config.sh
21515           !> Porting/config_H config_h.SH ext/POSIX/POSIX.xs
21516           !> hints/unicos.sh lib/Math/Complex.pm pp_sys.c sv.c
21517           !> t/lib/complex.t t/op/grent.t t/op/pwent.t toke.c util.c
21518 ____________________________________________________________________________
21519 [  6075] By: jhi                                   on 2000/05/05  18:56:10
21520         Log: Make the test more portable.
21521      Branch: cfgperl
21522            ! t/lib/peek.t
21523 ____________________________________________________________________________
21524 [  6074] By: jhi                                   on 2000/05/05  18:49:20
21525         Log: Introduce t/lib/peek.t.
21526      Branch: cfgperl
21527            + t/lib/peek.t
21528            ! MANIFEST
21529 ____________________________________________________________________________
21530 [  6073] By: jhi                                   on 2000/05/05  14:30:45
21531         Log: Complex tweaks.
21532      Branch: cfgperl
21533            ! lib/Math/Complex.pm t/lib/complex.t
21534 ____________________________________________________________________________
21535 [  6072] By: jhi                                   on 2000/05/05  12:27:13
21536         Log: Integrate with Sarathy.
21537      Branch: cfgperl
21538           !> lib/ExtUtils/MM_Unix.pm lib/ExtUtils/MM_Win32.pm
21539           !> lib/File/Spec.pm lib/File/Spec/Mac.pm lib/File/Spec/Unix.pm
21540           !> lib/File/Spec/VMS.pm lib/File/Spec/Win32.pm perl.c
21541           !> pod/perlfunc.pod t/lib/anydbm.t win32/win32.c
21542 ____________________________________________________________________________
21543 [  6071] By: gsar                                  on 2000/05/05  02:24:46
21544         Log: misformatted perllocal.pod (from Tim Jenness
21545              <t.jenness@jach.hawaii.edu>)
21546      Branch: perl
21547            ! lib/ExtUtils/MM_Unix.pm lib/ExtUtils/MM_Win32.pm
21548 ____________________________________________________________________________
21549 [  6070] By: gsar                                  on 2000/05/05  02:16:52
21550         Log: remove misleading comment (from M.J.T. Guy)
21551      Branch: perl
21552            ! t/lib/anydbm.t
21553 ____________________________________________________________________________
21554 [  6069] By: gsar                                  on 2000/05/05  02:15:13
21555         Log: File::Spec compatibility update (from Barrie Slaymaker
21556              <barries@slaysys.com>)
21557      Branch: perl
21558            ! lib/File/Spec.pm lib/File/Spec/Mac.pm lib/File/Spec/Unix.pm
21559            ! lib/File/Spec/VMS.pm lib/File/Spec/Win32.pm
21560 ____________________________________________________________________________
21561 [  6068] By: gsar                                  on 2000/05/05  02:01:50
21562         Log: note about values()
21563      Branch: perl
21564            ! pod/perlfunc.pod
21565 ____________________________________________________________________________
21566 [  6067] By: gsar                                  on 2000/05/05  01:33:09
21567         Log: replace direct call to sighandler() with (*PL_sighandlerp)()
21568      Branch: perl
21569            ! win32/win32.c
21570 ____________________________________________________________________________
21571 [  6066] By: gsar                                  on 2000/05/05  01:23:43
21572         Log: s/END/CHECK/
21573      Branch: perl
21574            ! perl.c
21575 ____________________________________________________________________________
21576 [  6065] By: jhi                                   on 2000/05/04  17:30:22
21577         Log: Integrate with Sarathy.
21578      Branch: cfgperl
21579           !> pp_sys.c sv.c t/pragma/utf8.t toke.c
21580 ____________________________________________________________________________
21581 [  6064] By: gsar                                  on 2000/05/04  17:26:14
21582         Log: change#5905 wasn't quite right--it's intent only applies when arguments
21583              to sv_vcatpvfn() are SVs instead of C types; back out change#5907 as well
21584      Branch: perl
21585            ! pp_sys.c sv.c
21586 ____________________________________________________________________________
21587 [  6063] By: gsar                                  on 2000/05/04  16:52:29
21588         Log: tokeq() could read unallocated field in argument
21589      Branch: perl
21590            ! toke.c
21591 ____________________________________________________________________________
21592 [  6062] By: gsar                                  on 2000/05/04  16:34:51
21593         Log: additional tests for utf8.t
21594      Branch: perl
21595            ! t/pragma/utf8.t
21596 ____________________________________________________________________________
21597 [  6061] By: gsar                                  on 2000/05/04  16:09:28
21598         Log: change#5921 neglected to make eq honor "use bytes"
21599      Branch: perl
21600            ! sv.c
21601 ____________________________________________________________________________
21602 [  6060] By: jhi                                   on 2000/05/04  15:30:16
21603         Log: Integrate with Sarathy.
21604      Branch: cfgperl
21605           !> perl.c regcomp.c t/pragma/utf8.t
21606 ____________________________________________________________________________
21607 [  6059] By: jhi                                   on 2000/05/04  15:26:37
21608         Log: The logic of choosing strtol/strtoul/strtoll/strtoull was wrong
21609              in natively 64-bit platforms where a long is a quad (no need
21610              for long longs).  Also added bias for IVs.
21611      Branch: cfgperl
21612            ! toke.c
21613 ____________________________________________________________________________
21614 [  6058] By: gsar                                  on 2000/05/04  00:19:14
21615         Log: printf(...) should be PerlIO_printf(PerlIO_stdout(), ...)
21616              (spotted by Donald Kinzer <dkinzer@premia.com>)
21617      Branch: perl
21618            ! perl.c
21619 ____________________________________________________________________________
21620 [  6057] By: gsar                                  on 2000/05/03  18:34:01
21621         Log: fix broken parsing of /\x{ab}/
21622      Branch: perl
21623            ! regcomp.c t/pragma/utf8.t
21624 ____________________________________________________________________________
21625 [  6056] By: jhi                                   on 2000/05/03  17:57:16
21626         Log: The search of infinity continues, this time simplified.
21627      Branch: cfgperl
21628            ! lib/Math/Complex.pm
21629 ____________________________________________________________________________
21630 [  6055] By: jhi                                   on 2000/05/03  17:45:30
21631         Log: Detypo.
21632      Branch: cfgperl
21633            ! hints/unicos.sh
21634 ____________________________________________________________________________
21635 [  6054] By: jhi                                   on 2000/05/02  22:28:27
21636         Log: Be more forgiving in POSIX about HUGE_VALL.
21637      Branch: cfgperl
21638            ! ext/POSIX/POSIX.xs
21639 ____________________________________________________________________________
21640 [  6053] By: jhi                                   on 2000/05/02  22:25:05
21641         Log: Integrate with Sarathy.
21642      Branch: cfgperl
21643           !> hints/irix_6.sh pod/perlop.pod
21644 ____________________________________________________________________________
21645 [  6052] By: jhi                                   on 2000/05/02  22:24:31
21646         Log: Unicos hint tweak.
21647      Branch: cfgperl
21648            ! hints/unicos.sh
21649 ____________________________________________________________________________
21650 [  6051] By: jhi                                   on 2000/05/02  22:21:26
21651         Log: Complex tweakery.
21652      Branch: cfgperl
21653            ! lib/Math/Complex.pm t/lib/complex.t
21654 ____________________________________________________________________________
21655 [  6050] By: jhi                                   on 2000/05/02  19:26:22
21656         Log: Use setxxent()/endxxent().
21657      Branch: cfgperl
21658            ! t/op/grent.t t/op/pwent.t
21659 ____________________________________________________________________________
21660 [  6049] By: jhi                                   on 2000/05/02  19:06:02
21661         Log: Test both the scalar and list contexts.
21662      Branch: cfgperl
21663            ! t/op/grent.t t/op/pwent.t
21664 ____________________________________________________________________________
21665 [  6048] By: gsar                                  on 2000/05/02  18:29:10
21666         Log: add note about how $( doesn't interpolate in REs (from
21667              Philip Newton <newton@ficus.frogspace.net>)
21668      Branch: perl
21669            ! pod/perlop.pod
21670 ____________________________________________________________________________
21671 [  6047] By: jhi                                   on 2000/05/02  17:41:24
21672         Log: Call getspnam() only iff needd.
21673      Branch: cfgperl
21674            ! pp_sys.c
21675 ____________________________________________________________________________
21676 [  6046] By: gsar                                  on 2000/05/02  17:07:25
21677         Log: libscheck has insufficient checks for n32 libs (from
21678              Albert Chin-A-Young <china@thewrittenword.com>)
21679      Branch: perl
21680            ! hints/irix_6.sh
21681 ____________________________________________________________________________
21682 [  6045] By: jhi                                   on 2000/05/02  13:57:17
21683         Log: Integrate with Sarathy.
21684      Branch: cfgperl
21685           !> MANIFEST Porting/makerel perl.c pod/perlretut.pod
21686           !> pod/perltrap.pod pp.c regcomp.c t/op/oct.t toke.c util.c
21687 ____________________________________________________________________________
21688 [  6044] By: gsar                                  on 2000/05/02  06:48:19
21689         Log: change#3798 broke the meaning of "\0_7_7", tr/\0_// etc.; fix it
21690              such that underscores are only ignored in literal numbers,
21691              "\x{...}", and hex/oct argument
21692      Branch: perl
21693            ! perl.c pp.c regcomp.c t/op/oct.t toke.c util.c
21694 ____________________________________________________________________________
21695 [  6043] By: gsar                                  on 2000/05/02  02:22:29
21696         Log: perlretut revisions (from Mark Kvale <kvale@phy.ucsf.edu>)
21697      Branch: perl
21698            ! pod/perlretut.pod
21699 ____________________________________________________________________________
21700 [  6042] By: gsar                                  on 2000/05/02  02:17:51
21701         Log: remove outdated perltrap entry (from Peter Scott <Peter@PSDT.com>)
21702      Branch: perl
21703            ! pod/perltrap.pod
21704 ____________________________________________________________________________
21705 [  6041] By: gsar                                  on 2000/05/02  01:53:51
21706         Log: cpio 2.4.2 on Linux creates directories in 0700 mode, adjust makerel
21707              to compensate
21708      Branch: perl
21709            ! Porting/makerel
21710 ____________________________________________________________________________
21711 [  6040] By: gsar                                  on 2000/05/02  01:51:57
21712         Log: missing files in MANIFEST
21713      Branch: perl
21714            ! MANIFEST
21715 ____________________________________________________________________________
21716 [  6039] By: jhi                                   on 2000/05/02  00:36:46
21717         Log: Infinite problems.
21718      Branch: cfgperl
21719            ! lib/Math/Complex.pm
21720 ____________________________________________________________________________
21721 [  6038] By: jhi                                   on 2000/05/02  00:06:38
21722         Log: pwent/spent #ifdef imbalance.
21723      Branch: cfgperl
21724            ! pp_sys.c
21725 ____________________________________________________________________________
21726 [  6037] By: jhi                                   on 2000/05/01  22:50:11
21727         Log: Use HUGE_VALL if applicable.
21728      Branch: cfgperl
21729            ! ext/POSIX/POSIX.xs util.c
21730 ____________________________________________________________________________
21731 [  6036] By: jhi                                   on 2000/05/01  22:20:53
21732         Log: Correct Freudian slip.
21733      Branch: cfgperl
21734            ! pp_sys.c
21735 ____________________________________________________________________________
21736 [  6035] By: jhi                                   on 2000/05/01  21:07:38
21737         Log: Continue on the pwent/spent case.
21738      Branch: cfgperl
21739            ! pp_sys.c
21740 ____________________________________________________________________________
21741 [  6034] By: jhi                                   on 2000/05/01  17:45:14
21742         Log: Integrate with Sarathy; unfortunately Sarathy's whitespace
21743              adjustments in 6032 conflicted badly with this, will have
21744              to revisit them later.
21745      Branch: cfgperl
21746           +> lib/CGI/Util.pm t/lib/cgi-pretty.t
21747           !> MANIFEST lib/CGI.pm lib/CGI/Carp.pm lib/CGI/Cookie.pm
21748           !> lib/CGI/Pretty.pm lib/CGI/Push.pm lib/English.pm
21749           !> lib/Pod/Man.pm lib/Pod/Text.pm lib/diagnostics.pm
21750           !> pod/perldiag.pod pod/perlvar.pod pp_sys.c t/lib/cgi-function.t
21751           !> t/lib/cgi-html.t t/lib/cgi-request.t
21752 ____________________________________________________________________________
21753 [  6033] By: jhi                                   on 2000/05/01  17:40:49
21754         Log: Rewrite the pwent/spent logic to be a little bit more clearer.
21755      Branch: cfgperl
21756            ! pp_sys.c
21757 ____________________________________________________________________________
21758 [  6032] By: gsar                                  on 2000/05/01  15:56:32
21759         Log: whitespace adjustments
21760      Branch: perl
21761            ! pp_sys.c
21762 ____________________________________________________________________________
21763 [  6031] By: gsar                                  on 2000/05/01  15:19:41
21764         Log: small nits in diagnostics.pm (from Robin Barker)
21765      Branch: perl
21766            ! lib/diagnostics.pm pod/perldiag.pod
21767 ____________________________________________________________________________
21768 [  6030] By: gsar                                  on 2000/05/01  08:39:18
21769         Log: introduce @LAST_MATCH_START and @LAST_MATCH_END, English aliases
21770              for @- and @+ (from Johan Vromans)
21771      Branch: perl
21772            ! lib/English.pm pod/perlvar.pod
21773 ____________________________________________________________________________
21774 [  6029] By: gsar                                  on 2000/05/01  08:16:10
21775         Log: add CGI.pm v2.66 (from Lincoln Stein)
21776      Branch: perl
21777            + lib/CGI/Util.pm t/lib/cgi-pretty.t
21778            ! MANIFEST lib/CGI.pm lib/CGI/Carp.pm lib/CGI/Cookie.pm
21779            ! lib/CGI/Pretty.pm lib/CGI/Push.pm t/lib/cgi-function.t
21780            ! t/lib/cgi-html.t t/lib/cgi-request.t
21781 ____________________________________________________________________________
21782 [  6028] By: gsar                                  on 2000/05/01  06:34:41
21783         Log: Pod::Man generates groff-incompatible macro definition (from
21784              Tom Christiansen)
21785      Branch: perl
21786            ! lib/Pod/Man.pm
21787 ____________________________________________________________________________
21788 [  6027] By: gsar                                  on 2000/05/01  06:31:36
21789         Log: podlators-1.02 update (from Russ Allbery)
21790      Branch: perl
21791            ! lib/Pod/Man.pm lib/Pod/Text.pm
21792 ____________________________________________________________________________
21793 [  6026] By: jhi                                   on 2000/04/30  23:24:23
21794         Log: Integrate with Sarathy.
21795      Branch: cfgperl
21796           !> README.win32 ext/File/Glob/Glob.pm ext/Sys/Syslog/Syslog.pm
21797           !> ext/Sys/Syslog/Syslog.xs lib/perl5db.pl
21798           !> lib/unicode/Is/Alnum.pl lib/unicode/Is/Alpha.pl
21799           !> lib/unicode/Is/Word.pl lib/unicode/mktables.PL
21800           !> pod/perl56delta.pod sv.c t/lib/b.t t/lib/open3.t
21801           !> t/lib/syslog.t toke.c win32/win32.h
21802 ____________________________________________________________________________
21803 [  6025] By: gsar                                  on 2000/04/30  18:17:47
21804         Log: Is{Alnum,Alpha,Word} don't match titlecase
21805              
21806              TODO: IsSpace is defined recursively!
21807              
21808              (both spotted by Larry)
21809      Branch: perl
21810            ! lib/unicode/Is/Alnum.pl lib/unicode/Is/Alpha.pl
21811            ! lib/unicode/Is/Word.pl lib/unicode/mktables.PL
21812 ____________________________________________________________________________
21813 [  6024] By: gsar                                  on 2000/04/30  17:50:19
21814         Log: extend "Unrecognized escape" warning to \8, \9, and \_ as well
21815              (from Hugo van der Sanden)
21816      Branch: perl
21817            ! toke.c
21818 ____________________________________________________________________________
21819 [  6023] By: gsar                                  on 2000/04/30  17:14:43
21820         Log: debugger stomps on $. (from M.J.T. Guy)
21821      Branch: perl
21822            ! lib/perl5db.pl
21823 ____________________________________________________________________________
21824 [  6022] By: gsar                                  on 2000/04/30  16:59:22
21825         Log: unbalanced LEAVE after perl_clone(...,0) (from Doug MacEachern)
21826      Branch: perl
21827            ! sv.c
21828 ____________________________________________________________________________
21829 [  6021] By: gsar                                  on 2000/04/29  21:00:08
21830         Log: remove Win2K issue in pod (fixed by change#6020)
21831      Branch: perl
21832            ! README.win32 pod/perl56delta.pod
21833 ____________________________________________________________________________
21834 [  6020] By: gsar                                  on 2000/04/29  20:51:49
21835         Log: test tweak
21836      Branch: perl
21837            ! t/lib/open3.t
21838 ____________________________________________________________________________
21839 [  6019] By: gsar                                  on 2000/04/29  20:34:27
21840         Log: windows portability tweaks
21841      Branch: perl
21842            ! t/lib/b.t win32/win32.h
21843 ____________________________________________________________________________
21844 [  6018] By: gsar                                  on 2000/04/29  19:55:24
21845         Log: make lib/syslog.t portable to systems that don't have _PATH_LOG,
21846              make _PATH_LOG() return "" if unavailable
21847      Branch: perl
21848            ! ext/File/Glob/Glob.pm ext/Sys/Syslog/Syslog.pm
21849            ! ext/Sys/Syslog/Syslog.xs t/lib/syslog.t
21850 ____________________________________________________________________________
21851 [  6017] By: jhi                                   on 2000/04/28  22:49:46
21852         Log: Integrate with Sarathy.
21853      Branch: cfgperl
21854           !> op.c perl.c pod/perldiag.pod t/lib/b.t
21855 ____________________________________________________________________________
21856 [  6016] By: jhi                                   on 2000/04/28  22:46:14
21857         Log: Do not warn that an infinity does not look like a number.
21858      Branch: cfgperl
21859            ! sv.c
21860 ____________________________________________________________________________
21861 [  6015] By: gsar                                  on 2000/04/28  22:35:49
21862         Log: tweak test for portability
21863      Branch: perl
21864            ! t/lib/b.t
21865 ____________________________________________________________________________
21866 [  6014] By: gsar                                  on 2000/04/28  22:05:31
21867         Log: glob() loading File::Glob behind the scenes may cause syntax errors
21868      Branch: perl
21869            ! op.c
21870 ____________________________________________________________________________
21871 [  6013] By: gsar                                  on 2000/04/28  21:25:22
21872         Log: tweak change#5945 to display correct switch name in diagnostic
21873      Branch: perl
21874            ! perl.c pod/perldiag.pod
21875 ____________________________________________________________________________
21876 [  6012] By: jhi                                   on 2000/04/28  21:08:12
21877         Log: Integrate with Sarathy.
21878      Branch: cfgperl
21879           !> Changes ext/IO/lib/IO/Poll.pm installperl pod/perl56delta.pod
21880           !> pod/perldelta.pod pod/perlfunc.pod pod/perlmod.pod
21881           !> t/lib/io_poll.t utils/perldoc.PL vms/subconfigure.com
21882 ____________________________________________________________________________
21883 [  6011] By: jhi                                   on 2000/04/28  21:04:46
21884         Log: &HUGE_VAL is not defined, it exists.
21885      Branch: cfgperl
21886            ! lib/Math/Complex.pm
21887 ____________________________________________________________________________
21888 [  6010] By: gsar                                  on 2000/04/28  21:02:58
21889         Log: clarify note about shadow password support (from
21890              gellyfish@gellyfish.com)
21891      Branch: perl
21892            ! pod/perlfunc.pod
21893 ____________________________________________________________________________
21894 [  6009] By: gsar                                  on 2000/04/28  21:00:00
21895         Log: IO::Poll bugs fixed (from Lincoln Stein <lstein@cshl.org>)
21896      Branch: perl
21897            ! ext/IO/lib/IO/Poll.pm t/lib/io_poll.t
21898 ____________________________________________________________________________
21899 [  6008] By: gsar                                  on 2000/04/28  20:56:33
21900         Log: VMS config tweak (from Craig A. Berry <craig.berry@metamorgs.com>)
21901      Branch: perl
21902            ! installperl vms/subconfigure.com
21903 ____________________________________________________________________________
21904 [  6007] By: gsar                                  on 2000/04/28  20:51:21
21905         Log: note about compile failures and END blocks (from M.J.T. Guy)
21906      Branch: perl
21907            ! pod/perl56delta.pod pod/perlmod.pod
21908 ____________________________________________________________________________
21909 [  6006] By: jhi                                   on 2000/04/28  20:42:14
21910         Log: Regen Configure.
21911      Branch: cfgperl
21912            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
21913            ! config_h.SH
21914 ____________________________________________________________________________
21915 [  6005] By: gsar                                  on 2000/04/28  20:41:16
21916         Log: perldoc might fail via "use blib" (from Hugo van der Sanden)
21917      Branch: perl
21918            ! utils/perldoc.PL
21919 ____________________________________________________________________________
21920 [  6004] By: jhi                                   on 2000/04/28  20:28:21
21921         Log: Integrate with Sarathy.
21922      Branch: cfgperl
21923           !> Configure INSTALL Porting/Glossary Porting/config.sh
21924           !> Porting/config_H config_h.SH epoc/config.sh perl.c sv.c
21925           !> t/pragma/warn/toke toke.c vms/subconfigure.com vos/config.def
21926           !> vos/config_h.SH_orig win32/config.bc win32/config.gc
21927           !> win32/config.vc win32/win32.c
21928 ____________________________________________________________________________
21929 [  6003] By: gsar                                  on 2000/04/28  20:11:20
21930         Log: allow REG_EXPAND_SZ keys in Windows registry (from
21931              John Clayton <John.Clayton@barclayscapital.com>)
21932      Branch: perl
21933            ! win32/win32.c
21934 ____________________________________________________________________________
21935 [  6002] By: gsar                                  on 2000/04/28  19:34:16
21936         Log: destructive sv_setsv() can lose UV-ness from source, causing
21937              numeric promotions/comparisons to fail to do the right thing
21938      Branch: perl
21939            ! sv.c
21940 ____________________________________________________________________________
21941 [  6001] By: gsar                                  on 2000/04/28  18:44:15
21942         Log: support additional library locations via $Config{otherlibdirs}
21943              (from Andy Dougherty)
21944      Branch: perl
21945            ! Configure INSTALL Porting/Glossary Porting/config.sh
21946            ! Porting/config_H config_h.SH epoc/config.sh perl.c
21947            ! vms/subconfigure.com vos/config.def vos/config_h.SH_orig
21948            ! win32/config.bc win32/config.gc win32/config.vc
21949 ____________________________________________________________________________
21950 [  6000] By: gsar                                  on 2000/04/28  18:26:58
21951         Log: reworked otherlibdirs.U (from Andy Dougherty)
21952      Branch: metaconfig
21953            ! U/installdirs/otherlibdirs.U
21954 ____________________________________________________________________________
21955 [  5999] By: gsar                                  on 2000/04/28  18:17:07
21956         Log: fix line renumbering bug in C<eval qq[#line 10 "X"\nwarn]>
21957      Branch: perl
21958            ! t/pragma/warn/toke toke.c
21959 ____________________________________________________________________________
21960 [  5998] By: jhi                                   on 2000/04/28  13:32:17
21961         Log: Try to get "Inf" by using &POSIX::HUGE_VAL in sprintf.
21962      Branch: cfgperl
21963            ! lib/Math/Complex.pm
21964 ____________________________________________________________________________
21965 [  5997] By: jhi                                   on 2000/04/28  13:14:04
21966         Log: Preserve $!.
21967      Branch: cfgperl
21968            ! lib/Math/Complex.pm
21969 ____________________________________________________________________________
21970 [  5996] By: jhi                                   on 2000/04/28  12:59:23
21971         Log: Integrate with Sarathy.
21972      Branch: cfgperl
21973           +> pod/perlrequick.pod pod/perlretut.pod
21974           !> (integrate 51 files)
21975 ____________________________________________________________________________
21976 [  5995] By: gsar                                  on 2000/04/28  09:37:36
21977         Log: fixes for bugs in C<use warnings qw(FATAL all)> (from Paul Marquess)
21978      Branch: perl
21979            ! mg.c t/pragma/warn/7fatal warnings.h warnings.pl
21980 ____________________________________________________________________________
21981 [  5994] By: gsar                                  on 2000/04/28  09:33:26
21982         Log: fix for missed accounting for null byte in pack("Z",...) (from
21983              M.J.T. Guy)
21984      Branch: perl
21985            ! pp.c t/op/pack.t
21986 ____________________________________________________________________________
21987 [  5993] By: gsar                                  on 2000/04/28  09:30:05
21988         Log: various minor tweaks seen on p5p
21989      Branch: perl
21990            ! lib/perl5db.pl pod/perlipc.pod pod/perlvar.pod
21991 ____________________________________________________________________________
21992 [  5992] By: gsar                                  on 2000/04/28  09:08:19
21993         Log: pod nit (from Simon Cozens)
21994      Branch: perl
21995            ! pod/perlop.pod
21996 ____________________________________________________________________________
21997 [  5991] By: gsar                                  on 2000/04/28  09:06:36
21998         Log: posix-bc patches (from Dorner Thomas <Thomas.Dorner@start.de>)
21999      Branch: perl
22000            ! README.posix-bc hints/posix-bc.sh
22001 ____________________________________________________________________________
22002 [  5990] By: gsar                                  on 2000/04/28  08:54:52
22003         Log: use $ENV{LIB} to search for libs under Visual C compiler
22004              on Windows (from Jochen Wiedmann <joe@ispsoft.de>)
22005      Branch: perl
22006            ! lib/ExtUtils/Liblist.pm
22007 ____________________________________________________________________________
22008 [  5989] By: gsar                                  on 2000/04/28  08:27:12
22009         Log: qw(a\\b) must be parsed like 'a\\b', i.e., backslash escapes
22010              itself and no other (from Tom Hughes)
22011      Branch: perl
22012            ! t/op/array.t toke.c
22013 ____________________________________________________________________________
22014 [  5988] By: gsar                                  on 2000/04/28  08:01:38
22015         Log: s/HTMLSCRIPTPOD/HTMLSCRIPTPODS/ (from Paul Sharpe
22016              <paul@miraclefish.com>)
22017      Branch: perl
22018            ! lib/ExtUtils/MakeMaker.pm
22019 ____________________________________________________________________________
22020 [  5987] By: gsar                                  on 2000/04/28  07:53:09
22021         Log: B::Bytecode tweaks (from Simon Cozens <simon@brecon.co.uk>)
22022      Branch: perl
22023            ! ext/B/B/Bytecode.pm ext/B/B/Disassembler.pm
22024 ____________________________________________________________________________
22025 [  5986] By: gsar                                  on 2000/04/28  07:44:17
22026         Log: add regular expressions tutorial and quick-start guide (from
22027              Mark Kvale <kvale@phy.ucsf.edu>)
22028      Branch: perl
22029            + pod/perlrequick.pod pod/perlretut.pod
22030            ! AUTHORS MAINTAIN MANIFEST
22031 ____________________________________________________________________________
22032 [  5985] By: gsar                                  on 2000/04/28  07:30:28
22033         Log: forked child may not exit correctly if it failed to open
22034              /dev/console (from Graham Barr)
22035      Branch: perl
22036            ! ext/Sys/Syslog/Syslog.pm
22037 ____________________________________________________________________________
22038 [  5984] By: gsar                                  on 2000/04/28  07:27:20
22039         Log: attributes::reftype() doesn't work on tied argument
22040      Branch: perl
22041            ! xsutils.c
22042 ____________________________________________________________________________
22043 [  5983] By: gsar                                  on 2000/04/28  07:15:04
22044         Log: numeric conversion of non-number in change#3378 tramples on
22045              OOK offset, causing segfaults
22046      Branch: perl
22047            ! sv.c
22048 ____________________________________________________________________________
22049 [  5982] By: gsar                                  on 2000/04/28  04:48:25
22050         Log: avoid error in IO::Socket::INET when given an unknown service name
22051              with a port number (from Brian Raven <brianr@ssprdmh01.liffe.com>)
22052      Branch: perl
22053            ! ext/IO/lib/IO/Socket/INET.pm
22054 ____________________________________________________________________________
22055 [  5981] By: gsar                                  on 2000/04/28  04:31:31
22056         Log: rename File::Glob::glob() to File::Glob::bsd_glob() to avoid
22057              prototype mismatch with CORE::glob(); update pod and tests to
22058              suit (File::Glob::glob() is still available for backward
22059              compatibility, but should be considered deprecated)
22060      Branch: perl
22061            ! ext/File/Glob/Glob.pm t/lib/glob-basic.t t/lib/glob-case.t
22062            ! t/lib/glob-taint.t
22063 ____________________________________________________________________________
22064 [  5980] By: gsar                                  on 2000/04/28  03:47:29
22065         Log: allow Configure -S to run non-interactively (spotted by Greg Hudson
22066              <ghudson@mit.edu>)
22067      Branch: metaconfig
22068            ! U/modified/Options.U
22069      Branch: perl
22070            ! Configure
22071 ____________________________________________________________________________
22072 [  5979] By: gsar                                  on 2000/04/28  03:07:54
22073         Log: under useithreads, constant pad entries could inadvertantly be
22074              shared across threads (from Eric Blood <eblood@xmission.com>);
22075              added Eric's test case to testsuite
22076      Branch: perl
22077            ! op.c t/op/misc.t
22078 ____________________________________________________________________________
22079 [  5978] By: gsar                                  on 2000/04/27  21:13:00
22080         Log: sync version numbers in File::Spec with the ones on CPAN
22081              (from Barrie Slaymaker)
22082      Branch: perl
22083            ! lib/File/Spec/Functions.pm lib/File/Spec/Mac.pm
22084            ! lib/File/Spec/OS2.pm lib/File/Spec/Unix.pm
22085            ! lib/File/Spec/VMS.pm lib/File/Spec/Win32.pm
22086 ____________________________________________________________________________
22087 [  5977] By: gsar                                  on 2000/04/27  21:07:29
22088         Log: autoquote barewords followed by newline and arrow properly
22089              (variant of fix suggested by Rick Delaney and M.J.T. Guy)
22090      Branch: perl
22091            ! t/pragma/warn/toke toke.c
22092 ____________________________________________________________________________
22093 [  5976] By: gsar                                  on 2000/04/27  20:41:20
22094         Log: DB_File v1.73 update (from Paul Marquess)
22095      Branch: perl
22096            ! ext/DB_File/Changes ext/DB_File/DB_File.pm
22097            ! ext/DB_File/DB_File.xs ext/DB_File/version.c
22098 ____________________________________________________________________________
22099 [  5975] By: gsar                                  on 2000/04/27  20:34:24
22100         Log: allow sort() reentrancy (variant of patch suggested by
22101              Hugo van der Sanden)
22102      Branch: perl
22103            ! pp_ctl.c t/op/sort.t
22104 ____________________________________________________________________________
22105 [  5974] By: gsar                                  on 2000/04/27  19:46:57
22106         Log: change#4197 somehow missed initializing PL_errors, meaning
22107              sytax error queueing wasn't working outside eval"" at all;
22108              also fixed eval"" to localize PL_error_count, so that compile-time
22109              eval's don't clobber the error state of the outer context
22110      Branch: perl
22111            ! lib/Math/Complex.pm perl.c pp_ctl.c t/pragma/warn/op
22112            ! t/pragma/warn/toke
22113 ____________________________________________________________________________
22114 [  5973] By: gsar                                  on 2000/04/27  18:29:05
22115         Log: fix for failure to match $foo =~ /(?i)/ (from Ilya Zakharevich)
22116      Branch: perl
22117            ! regcomp.c regexec.c t/op/re_tests
22118 ____________________________________________________________________________
22119 [  5972] By: jhi                                   on 2000/04/27  18:22:41
22120         Log: Integrate with Sarathy.
22121      Branch: cfgperl
22122           +> t/lib/b.t t/lib/syslog.t
22123           !> (integrate 31 files)
22124 ____________________________________________________________________________
22125 [  5971] By: jhi                                   on 2000/04/27  18:18:46
22126         Log: Unicos tweaks from Mark P. Lutz.
22127      Branch: cfgperl
22128            ! hints/unicos.sh lib/Math/Complex.pm
22129 ____________________________________________________________________________
22130 [  5970] By: gsar                                  on 2000/04/27  18:05:11
22131         Log: Data::Dumper fumbles negative numbers on 32-bit platforms where
22132              IV is >32bits
22133      Branch: perl
22134            ! ext/Data/Dumper/Dumper.xs t/lib/dumper.t
22135 ____________________________________________________________________________
22136 [  5969] By: gsar                                  on 2000/04/27  17:50:56
22137         Log: fix Sys::Syslog breakage on domain sockets (from Tom Hughes)
22138      Branch: perl
22139            + t/lib/syslog.t
22140            ! MANIFEST ext/Sys/Syslog/Syslog.pm
22141 ____________________________________________________________________________
22142 [  5968] By: gsar                                  on 2000/04/27  17:44:49
22143         Log: tolerate spaces in group names in test on solaris (from David Boyce
22144              <dsb@boyski.com>)
22145      Branch: perl
22146            ! t/op/groups.t
22147 ____________________________________________________________________________
22148 [  5967] By: gsar                                  on 2000/04/27  17:41:22
22149         Log: improved docs on the warn_uninit diagnostic (from David Glasser
22150              and Simon Cozens)
22151      Branch: perl
22152            ! pod/perldiag.pod
22153 ____________________________________________________________________________
22154 [  5966] By: gsar                                  on 2000/04/27  16:54:58
22155         Log: add testsuite for B backends, fix bug in B::Deparse (from
22156              Simon Cozens <simon@brecon.co.uk>)
22157      Branch: perl
22158            + t/lib/b.t
22159            ! MANIFEST ext/B/B/Deparse.pm ext/B/B/Stash.pm
22160 ____________________________________________________________________________
22161 [  5965] By: gsar                                  on 2000/04/27  16:10:37
22162         Log: avoid "will not stay shared" warnings for our variables (from
22163              Robin Barker)
22164      Branch: perl
22165            ! op.c t/pragma/warn/op
22166 ____________________________________________________________________________
22167 [  5964] By: gsar                                  on 2000/04/27  07:05:05
22168         Log: reformat to 72 columns (again)
22169      Branch: perl
22170            ! pod/perldiag.pod
22171 ____________________________________________________________________________
22172 [  5963] By: gsar                                  on 2000/04/27  06:28:31
22173         Log: patch from Larry to make (\&) prototype work; added tests for
22174              the same
22175      Branch: perl
22176            ! op.c t/comp/proto.t
22177 ____________________________________________________________________________
22178 [  5962] By: gsar                                  on 2000/04/27  06:15:47
22179         Log: updated README.hpux (from Jeff Okamoto)
22180      Branch: perl
22181            ! README.hpux
22182 ____________________________________________________________________________
22183 [  5961] By: gsar                                  on 2000/04/27  05:55:03
22184         Log: recognize our, CHECK and INIT in cperl-mode (from Doug MacEachern)
22185      Branch: perl
22186            ! emacs/cperl-mode.el
22187 ____________________________________________________________________________
22188 [  5960] By: gsar                                  on 2000/04/27  05:49:26
22189         Log: better INSTALL notes on Solaris issues (from Dominic Dunlop)
22190      Branch: perl
22191            ! INSTALL
22192 ____________________________________________________________________________
22193 [  5959] By: gsar                                  on 2000/04/27  05:33:41
22194         Log: doubled words in pods (from Simon Cozens
22195              <simon.p.cozens@jp.pwcglobal.com>)
22196      Branch: perl
22197            ! pod/perl56delta.pod pod/perldebguts.pod pod/perlfaq5.pod
22198            ! pod/perlfork.pod pod/perlfunc.pod pod/perlipc.pod
22199            ! pod/perllexwarn.pod pod/perllocale.pod pod/perlmodlib.pod
22200            ! pod/perlnumber.pod pod/perlopentut.pod pod/perltodo.pod
22201            ! pod/perltootc.pod
22202 ____________________________________________________________________________
22203 [  5958] By: gsar                                  on 2000/04/27  05:11:39
22204         Log: change#3569 deleted some essential code, revert; avoid use of
22205              atexit() to make DynaLoader work properly on AIX under mod_perl
22206              (from Jens-Uwe Mager <jum@helios.de>)
22207      Branch: perl
22208            ! ext/DynaLoader/dl_aix.xs
22209 ____________________________________________________________________________
22210 [  5957] By: gsar                                  on 2000/04/27  04:54:51
22211         Log: pod nits (from A. C. Yardley <yardley@tanet.net>)
22212      Branch: perl
22213            ! pod/perlmod.pod
22214 ____________________________________________________________________________
22215 [  5956] By: gsar                                  on 2000/04/27  04:51:47
22216         Log: better diagnostics on failed tests (from Ilya Zakharevich)
22217      Branch: perl
22218            ! t/op/lex_assign.t
22219 ____________________________________________________________________________
22220 [  5955] By: gsar                                  on 2000/04/27  04:26:44
22221         Log: longstanding bug exposed by change#3307: sort arguments weren't
22222              compiled with the right wantarray context (ensuing runtime lookup
22223              via block_gimme() was getting the incidental context of the
22224              sort() itself)
22225      Branch: perl
22226            ! op.c t/op/sort.t
22227 ____________________________________________________________________________
22228 [  5954] By: gsar                                  on 2000/04/26  23:42:12
22229         Log: integrate cfgperl contents into mainline
22230      Branch: perl
22231           !> (integrate 30 files)
22232 ____________________________________________________________________________
22233 [  5953] By: jhi                                   on 2000/04/26  23:06:42
22234         Log: Integrate with Sarathy.
22235      Branch: cfgperl
22236           !> README.win32 ext/B/B/Deparse.pm
22237           !> ext/DynaLoader/DynaLoader_pm.PL ext/DynaLoader/XSLoader_pm.PL
22238           !> lib/vars.pm perl.c pod/perldiag.pod pod/perlsub.pod
22239           !> pod/perlsyn.pod pod/perlthrtut.pod pod/perltoc.pod
22240           !> pod/perltodo.pod pod/perlxs.pod pod/perlxstut.pod
22241           !> utils/perldoc.PL vms/perlvms.pod
22242 ____________________________________________________________________________
22243 [  5952] By: jhi                                   on 2000/04/26  23:03:46
22244         Log: Undo "use integer" addition from 64bitint as it seems
22245              to break most of the subtests in Digital UNIX;
22246              Unicos needs to find another way.
22247      Branch: cfgperl
22248            ! t/op/64bitint.t
22249 ____________________________________________________________________________
22250 [  5951] By: jhi                                   on 2000/04/26  22:57:53
22251         Log: Be more robust on "extreme" (large absolute value)
22252              arguments.  Originally reported by Daniel Connelly
22253              as a problem with asinh() on large negative arguments,
22254              asinh() used to bail out because an argument to log()
22255              ended up being zero.  Ilya Zakharevich proposed using
22256              Taylor's series in such cases, which for such large
22257              arguments is a very good approximation.
22258      Branch: cfgperl
22259            ! lib/Math/Complex.pm t/lib/complex.t
22260 ____________________________________________________________________________
22261 [  5950] By: gsar                                  on 2000/04/25  19:13:12
22262         Log: reformat perldiag to avoid long lines
22263      Branch: perl
22264            ! pod/perldiag.pod
22265 ____________________________________________________________________________
22266 [  5949] By: gsar                                  on 2000/04/25  18:41:11
22267         Log: make perldoc use the pod2man from the same version (from
22268              M.J.T. Guy)
22269      Branch: perl
22270            ! utils/perldoc.PL
22271 ____________________________________________________________________________
22272 [  5948] By: gsar                                  on 2000/04/25  18:21:57
22273         Log: typo in vars.pm that leads to cryptic message (from Piotr Piatkowski
22274              <kompas@kompas.usr.onet.pl>)
22275      Branch: perl
22276            ! lib/vars.pm
22277 ____________________________________________________________________________
22278 [  5947] By: gsar                                  on 2000/04/25  18:11:53
22279         Log: use &dl_error rather than &dl_load_file as the guard for calling
22280              boot_DynaLoader() (meant to fix dl_error() redefined warnings in
22281              statically built perl)
22282      Branch: perl
22283            ! ext/DynaLoader/DynaLoader_pm.PL ext/DynaLoader/XSLoader_pm.PL
22284 ____________________________________________________________________________
22285 [  5946] By: jhi                                   on 2000/04/25  17:37:54
22286         Log: Document that tr() is not tr(1).
22287      Branch: cfgperl
22288            ! pod/perlop.pod
22289 ____________________________________________________________________________
22290 [  5945] By: gsar                                  on 2000/04/25  16:34:33
22291         Log: make module name mandatory after -M switch; reorder perldiag
22292              alphabetically (from Mark-Jason Dominus)
22293      Branch: perl
22294            ! perl.c pod/perldiag.pod
22295 ____________________________________________________________________________
22296 [  5944] By: jhi                                   on 2000/04/25  01:15:18
22297         Log: On second thoughts frexp() does have two arguments.
22298      Branch: cfgperl
22299            ! perl.h
22300 ____________________________________________________________________________
22301 [  5943] By: jhi                                   on 2000/04/24  22:56:32
22302         Log: Add HAS_FREXPL, HAS_ISNAN, HAS_ISNANL, and HAS_MODFL.
22303              Now pp_ncmp() returns undef is either operand is a NaN.
22304      Branch: cfgperl
22305            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
22306            ! Todo-5.6 config_h.SH epoc/config.sh perl.h pp.c pp_sys.c
22307            ! vms/subconfigure.com vos/config.def vos/config.h
22308            ! vos/config_h.SH_orig win32/config.bc win32/config.gc
22309            ! win32/config.vc win32/config_H.bc win32/config_H.gc
22310            ! win32/config_H.vc
22311      Branch: metaconfig/U/perl
22312            + d_modfl.U
22313 ____________________________________________________________________________
22314 [  5942] By: jhi                                   on 2000/04/24  19:45:17
22315         Log: Regen Configure to match #5937.
22316      Branch: cfgperl
22317            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
22318            ! config_h.SH
22319      Branch: metaconfig
22320            ! U/installdirs/inc_version_list.U U/modified/cpp_stuff.U
22321 ____________________________________________________________________________
22322 [  5941] By: jhi                                   on 2000/04/24  19:24:11
22323         Log: Further Unicos fixes for Mark Lutz.
22324      Branch: cfgperl
22325            ! hints/unicos.sh pp_ctl.c
22326 ____________________________________________________________________________
22327 [  5940] By: jhi                                   on 2000/04/24  19:09:06
22328         Log: Various Unicos 10.0.0.6 fixes.
22329              
22330              Subject: [ID 20000414.007] Test suite failures in perl 5.6 on Cray T90
22331              From: Mark P Lutz <tecmpl1@triton.ca.boeing.com> 
22332              Reply-To: tecmpl1@triton.ca.boeing.com 
22333              To: perl5-porters@perl.org 
22334              Date: Fri, 14 Apr 2000 20:21:00 GMT 
22335              Message-Id: <200004142021.UAA36232@triton.ca.boeing.com> 
22336      Branch: cfgperl
22337            ! hints/unicos.sh pp.c pp_ctl.c t/op/64bitint.t
22338 ____________________________________________________________________________
22339 [  5939] By: gsar                                  on 2000/04/24  19:01:24
22340         Log: more pod nits (from Larry Virden)
22341      Branch: perl
22342            ! README.win32 pod/perlsub.pod pod/perlsyn.pod
22343            ! pod/perlthrtut.pod pod/perltoc.pod pod/perltodo.pod
22344            ! pod/perlxs.pod pod/perlxstut.pod vms/perlvms.pod
22345 ____________________________________________________________________________
22346 [  5938] By: gsar                                  on 2000/04/24  18:54:01
22347         Log: Consolidated B::Deparse fixes (from Stephen McCamant)
22348      Branch: perl
22349            ! ext/B/B/Deparse.pm
22350 ____________________________________________________________________________
22351 [  5937] By: jhi                                   on 2000/04/24  17:39:00
22352         Log: Integrate with Sarathy.
22353      Branch: cfgperl
22354           +> (branch 31 files)
22355           !> (integrate 73 files)
22356 ____________________________________________________________________________
22357 [  5936] By: gsar                                  on 2000/04/24  17:30:06
22358         Log: additional tests for change#5934 (from Paul Marquess, who also
22359              sent in the same fix)
22360      Branch: perl
22361            ! t/pragma/warn/2use t/pragma/warn/3both t/pragma/warn/4lint
22362            ! t/pragma/warn/5nolint t/pragma/warn/6default
22363 ____________________________________________________________________________
22364 [  5935] By: jhi                                   on 2000/04/24  17:26:05
22365         Log: Do not assume sign propagation.
22366              Subject:  [PATCH] Re: [ID 20000410.010] Unicoss 10.0.0.6 and perl 5.6.0
22367              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk> 
22368              To: payner@ncifcrf.gov, perl5-porters@perl.org 
22369              Date: Tue, 18 Apr 2000 18:24:49 +0100 
22370              Message-Id: <E12hbk1-0006Ws-00@ursa.cus.cam.ac.uk> 
22371      Branch: cfgperl
22372            ! t/op/bop.t t/op/misc.t
22373 ____________________________________________________________________________
22374 [  5934] By: gsar                                  on 2000/04/24  17:16:54
22375         Log: propagate lexical warnings from surrounding scope correctly
22376              within string eval()
22377      Branch: perl
22378            ! pp_ctl.c t/pragma/warn/pp_ctl
22379 ____________________________________________________________________________
22380 [  5933] By: jhi                                   on 2000/04/24  17:01:07
22381         Log: Flatten the cpp jungle doing the nosuid checking.
22382      Branch: cfgperl
22383            ! perl.c
22384 ____________________________________________________________________________
22385 [  5932] By: gsar                                  on 2000/04/24  09:08:14
22386         Log: add rsignal(), whichsig() and do_join() to public API list
22387              (mod_perl uses them to good advantage)
22388      Branch: perl
22389            ! embed.pl global.sym objXSUB.h perlapi.c proto.h
22390 ____________________________________________________________________________
22391 [  5931] By: gsar                                  on 2000/04/24  09:01:40
22392         Log: fix RE brokenness on refs/overloaded things (from Ilya Zakharevich)
22393      Branch: perl
22394            ! pp_hot.c regexec.c t/op/pat.t
22395 ____________________________________________________________________________
22396 [  5930] By: gsar                                  on 2000/04/24  08:58:33
22397         Log: small os390 tweaks (from Peter Prymmer)
22398      Branch: perl
22399            ! config_h.SH makedepend.SH
22400 ____________________________________________________________________________
22401 [  5929] By: gsar                                  on 2000/04/24  08:55:25
22402         Log: pod nits
22403      Branch: perl
22404            ! pod/perlguts.pod
22405 ____________________________________________________________________________
22406 [  5928] By: gsar                                  on 2000/04/24  08:50:13
22407         Log: revert change#5923 ("breaks" t/lib/io_poll.t)
22408      Branch: perl
22409            ! ext/IO/lib/IO/Poll.pm
22410 ____________________________________________________________________________
22411 [  5927] By: gsar                                  on 2000/04/24  08:43:24
22412         Log: arrange for next() to resume at the unstack op rather than the
22413              loop conditional, so that scope cleanup happens correctly
22414              (from Stephen McCamant)
22415      Branch: perl
22416            ! op.c pp_ctl.c t/op/misc.t
22417 ____________________________________________________________________________
22418 [  5926] By: gsar                                  on 2000/04/24  08:18:40
22419         Log: on windows, reserve 16M of stack rather than 128M (allows more
22420              threads to run concurrently)
22421      Branch: perl
22422            ! win32/Makefile win32/makefile.mk
22423 ____________________________________________________________________________
22424 [  5925] By: gsar                                  on 2000/04/24  08:13:52
22425         Log: POSIX-BC tweak (from Ignasi Roca <ignasi.roca@fujitsu.siemens.es>)
22426      Branch: perl
22427            ! toke.c
22428 ____________________________________________________________________________
22429 [  5924] By: gsar                                  on 2000/04/24  08:08:59
22430         Log: avoid using uninitialized memory in require version check
22431      Branch: perl
22432            ! pp_ctl.c universal.c
22433 ____________________________________________________________________________
22434 [  5923] By: gsar                                  on 2000/04/24  07:20:14
22435         Log: various bugs in IO::Poll (from Lincoln D. Stein <lstein@cshl.org>)
22436      Branch: perl
22437            ! ext/IO/lib/IO/Poll.pm
22438 ____________________________________________________________________________
22439 [  5922] By: gsar                                  on 2000/04/24  07:08:42
22440         Log: commentary about IoTYPE() (from Nathan Torkington)
22441      Branch: perl
22442            ! sv.h
22443 ____________________________________________________________________________
22444 [  5921] By: gsar                                  on 2000/04/24  06:58:26
22445         Log: make eq unicode-aware (from Gisle Aas); fix bogus tests revealed
22446              by fix
22447      Branch: perl
22448            ! sv.c t/lib/charnames.t t/pragma/utf8.t
22449 ____________________________________________________________________________
22450 [  5920] By: gsar                                  on 2000/04/24  06:37:59
22451         Log: Larry's fix for buggy propagation of utf8-ness in join(); add test
22452      Branch: perl
22453            ! doop.c t/op/ver.t
22454 ____________________________________________________________________________
22455 [  5919] By: gsar                                  on 2000/04/24  06:21:58
22456         Log: Configure might miss old directories when prefix must be
22457              expanded (from Robin Barker)
22458      Branch: metaconfig
22459            ! U/installdirs/inc_version_list.U
22460      Branch: perl
22461            ! Configure
22462 ____________________________________________________________________________
22463 [  5918] By: gsar                                  on 2000/04/24  06:16:11
22464         Log: VMS nits in glob() test (from Charles Lane)
22465      Branch: perl
22466            ! t/lib/glob-basic.t
22467 ____________________________________________________________________________
22468 [  5917] By: gsar                                  on 2000/04/24  06:11:56
22469         Log: various pod nits (from Larry Virden and others)
22470      Branch: perl
22471            ! README.amiga README.hpux README.machten README.os2
22472            ! README.os390 README.win32 embed.pl handy.h lib/IPC/Open3.pm
22473            ! pod/Win32.pod pod/perl56delta.pod pod/perlapi.pod
22474            ! pod/perlbook.pod pod/perlcompile.pod pod/perldebguts.pod
22475            ! pod/perldiag.pod pod/perlfork.pod pod/perlfunc.pod
22476            ! pod/perlguts.pod pod/perlintern.pod pod/perlipc.pod
22477            ! pod/perlmod.pod pod/perlmodinstall.pod pod/perlnumber.pod
22478            ! pod/perlop.pod pod/perlport.pod pod/perlre.pod
22479            ! pod/perltrap.pod pod/perlunicode.pod pod/perlvar.pod pp.h
22480 ____________________________________________________________________________
22481 [  5916] By: gsar                                  on 2000/04/24  05:52:43
22482         Log: ignore dotfiles (.cvsignore etc) in test (from Warren Jones
22483              <wjones@tc.fluke.com>)
22484      Branch: perl
22485            ! t/lib/glob-basic.t
22486 ____________________________________________________________________________
22487 [  5915] By: gsar                                  on 2000/04/24  05:07:01
22488         Log: supported platforms mixed up
22489      Branch: perl
22490            ! pod/perl56delta.pod pod/perlport.pod
22491 ____________________________________________________________________________
22492 [  5914] By: gsar                                  on 2000/04/24  04:56:08
22493         Log: caller() wasn't returning the right number of elements for
22494              eval {...}
22495      Branch: perl
22496            ! pp_ctl.c t/pragma/warn/9enabled
22497 ____________________________________________________________________________
22498 [  5913] By: gsar                                  on 2000/04/24  04:35:41
22499         Log: pod nit: $yday range for localtime/gmtime is 0..364 not 1..365 (from
22500              Mark-Jason Dominus)
22501      Branch: perl
22502            ! pod/perlfunc.pod
22503 ____________________________________________________________________________
22504 [  5912] By: gsar                                  on 2000/04/24  04:17:15
22505         Log: fix totally broken caching in UNIVERSAL::isa() (from
22506              Nick Ing-Simmons)
22507      Branch: perl
22508            ! t/op/universal.t universal.c
22509 ____________________________________________________________________________
22510 [  5911] By: gsar                                  on 2000/04/24  03:39:47
22511         Log: add linebreak properties from unicode/LineBrk.txt (from
22512              Dave Hartnoll <Dave_Hartnoll@3b2.com>)
22513      Branch: perl
22514            + lib/unicode/Is/LbrkAI.pl lib/unicode/Is/LbrkAL.pl
22515            + lib/unicode/Is/LbrkB2.pl lib/unicode/Is/LbrkBA.pl
22516            + lib/unicode/Is/LbrkBB.pl lib/unicode/Is/LbrkBK.pl
22517            + lib/unicode/Is/LbrkCB.pl lib/unicode/Is/LbrkCL.pl
22518            + lib/unicode/Is/LbrkCM.pl lib/unicode/Is/LbrkCR.pl
22519            + lib/unicode/Is/LbrkEX.pl lib/unicode/Is/LbrkGL.pl
22520            + lib/unicode/Is/LbrkHY.pl lib/unicode/Is/LbrkID.pl
22521            + lib/unicode/Is/LbrkIN.pl lib/unicode/Is/LbrkIS.pl
22522            + lib/unicode/Is/LbrkLF.pl lib/unicode/Is/LbrkNS.pl
22523            + lib/unicode/Is/LbrkNU.pl lib/unicode/Is/LbrkOP.pl
22524            + lib/unicode/Is/LbrkPO.pl lib/unicode/Is/LbrkPR.pl
22525            + lib/unicode/Is/LbrkQU.pl lib/unicode/Is/LbrkSA.pl
22526            + lib/unicode/Is/LbrkSG.pl lib/unicode/Is/LbrkSP.pl
22527            + lib/unicode/Is/LbrkSY.pl lib/unicode/Is/LbrkXX.pl
22528            + lib/unicode/Is/LbrkZW.pl
22529            ! lib/unicode/mktables.PL
22530 ____________________________________________________________________________
22531 [  5910] By: gsar                                  on 2000/04/24  03:23:10
22532         Log: typo in pod
22533      Branch: perl
22534            ! ext/Thread/Thread.pm
22535 ____________________________________________________________________________
22536 [  5909] By: gsar                                  on 2000/04/24  03:22:03
22537         Log: mode argument to do_binmode() should be file mode, not boolean
22538      Branch: perl
22539            ! pp_sys.c
22540 ____________________________________________________________________________
22541 [  5908] By: gsar                                  on 2000/04/16  16:51:08
22542         Log: introduce illegal symbols into null package so that gv_fetchpv(...,TRUE)
22543              always returns a valid GV even when the symbol is trapped by strictures
22544              (avoids coredumps)
22545              
22546              TODO: the C<package;> hack needs similar treatment
22547      Branch: perl
22548            ! embedvar.h gv.c intrpvar.h perl.c perlapi.h
22549            ! t/pragma/strict-vars
22550 ____________________________________________________________________________
22551 [  5907] By: jhi                                   on 2000/03/31  23:42:56
22552         Log: pp_gmtime() assumed that newSVpvf %d would take C ints,
22553              an assumption which #5905 demolished.
22554      Branch: cfgperl
22555            ! pp_sys.c
22556 ____________________________________________________________________________
22557 [  5906] By: jhi                                   on 2000/03/31  18:54:37
22558         Log: Typo in #5905.
22559      Branch: cfgperl
22560            ! t/op/64bitint.t
22561 ____________________________________________________________________________
22562 [  5905] By: jhi                                   on 2000/03/31  18:50:54
22563         Log: Fix for "[ID 20000329.080] quad printing does not work as documented",
22564              reported by Joseph N. Hall.  The bug was that even with use64bitint
22565              one had to use the prefixes q, L, or ll with printf/sprintf,
22566              contrary to the documentation and common sense.
22567      Branch: cfgperl
22568            ! sv.c t/op/64bitint.t
22569 ____________________________________________________________________________
22570 [  5904] By: gsar                                  on 2000/03/28  02:31:32
22571         Log: add Changes, perldelta.pod
22572      Branch: perl
22573            + Changes pod/perldelta.pod
22574 ____________________________________________________________________________
22575 [  5903] By: gsar                                  on 2000/03/28  02:03:55
22576         Log: rename Changes and perldelta.pod
22577      Branch: perl
22578           +> Changes5.6 pod/perl56delta.pod
22579            - Changes pod/perldelta.pod
22580            ! MANIFEST
22581 ____________________________________________________________________________
22582 [  5902] By: gsar                                  on 2000/03/28  01:59:14
22583         Log: create maint-5.6 branch
22584      Branch: maint-5.6/perl
22585           +> (branch 1611 files)
22586 ____________________________________________________________________________
22587 [  5901] By: jhi                                   on 2000/03/23  05:48:43
22588         Log: Integrate with Sarathy.
22589      Branch: cfgperl
22590           !> Changes patchlevel.h pod/perlhist.pod pod/perltoc.pod
22591 ____________________________________________________________________________
22592 [  5900] By: gsar                                  on 2000/03/23  05:42:43
22593         Log: three guesses on what this is :-)
22594      Branch: perl
22595            ! Changes