summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Update Changes.Jarkko Hietaniemi2001-05-112-1/+228
| | | p4raw-id: //depot/perl@10086
* Remove the 'asciir' re subpragma. Should instead implementJarkko Hietaniemi2001-05-115-37/+7
| | | | | | | | | | | | | | | | | | | | | | | | | the 'physical vs logical' range scheme: \xAA-\xCC is a native physical range, you want that range of codepoints in your native encoding. In EBCDIC the codepoints in the gaps (between i-j and r-s) should be included. \x{AA}-\x{CC} is a physical Unicode range, you want that range of codepoints in Unicode. a-z is a logical range, you want that range of 'logical' codepoints in your native encoding. In EBCDIC the codepoints in the gaps (between i-j and r-s) should not be included. Mixed cases (a-\xAA, etc) should either be errors, or maybe the 'logical' endpoints should be converted to native/Unicode codepoints, and the range handled as a physical range. 'Logical endpoints' are to be recognized only in the A-Z, a-z, and 0-9 ranges. Probably a warning should be given for mixed cases like A-z or a-9 (since such expressions are encoding dependent), with a recommendation to use physical ranges. p4raw-id: //depot/perl@10085
* Make the test to cleanup the test directory treeJarkko Hietaniemi2001-05-111-11/+22
| | | | | | both before and after the testing so that we always have a clean slate to work with. p4raw-id: //depot/perl@10084
* Re: [PATCH perlfunc.pod] split on an empty stringJon Eveland2001-05-111-5/+8
| | | | | Message-ID: <20010511143628.24225.qmail@web10402.mail.yahoo.com> p4raw-id: //depot/perl@10083
* Merge the camel-III/vstring.t with op/ver.t.Jarkko Hietaniemi2001-05-115-91/+79
| | | p4raw-id: //depot/perl@10082
* Add test.deparse make target.Jarkko Hietaniemi2001-05-111-6/+14
| | | p4raw-id: //depot/perl@10081
* $foo->bar(0)Robin Houston2001-05-112-2/+5
| | | | | Message-ID: <20010511120222.A11529@penderel> p4raw-id: //depot/perl@10080
* A nicely working combination for UTS from Hal Morris.Jarkko Hietaniemi2001-05-113-10/+21
| | | p4raw-id: //depot/perl@10079
* i_ieeefp=undef for UTS.Jarkko Hietaniemi2001-05-111-1/+2
| | | p4raw-id: //depot/perl@10078
* RE: rand(0) is rand(1)Larry Shatzer2001-05-101-2/+2
| | | | | Message-ID: <95CD90709D74D4118F4600D0B79E8BC9995027@mail.islanddata.com> p4raw-id: //depot/perl@10077
* [patch] make op_{clear,null} publicDoug MacEachern2001-05-104-35/+35
| | | | | Message-ID: <Pine.LNX.4.21.0105101546510.2962-100000@mako.covalent.net> p4raw-id: //depot/perl@10076
* Extend tr/\0-\377/blah/c supportRobin Houston2001-05-103-7/+22
| | | | | Message-ID: <20010510185459.A5995@penderel> p4raw-id: //depot/perl@10075
* t/op/64bitint.tRobin Houston2001-05-101-1/+7
| | | | | Message-ID: <20010510125639.A2119@penderel> p4raw-id: //depot/perl@10074
* Retract #10070, not ready yet.Jarkko Hietaniemi2001-05-101-2/+1
| | | p4raw-id: //depot/perl@10073
* The #9525+#9526 didn't allow for overriding usemymalloc.Jarkko Hietaniemi2001-05-101-7/+8
| | | p4raw-id: //depot/perl@10071
* (Retracted by #10073)Hugo van der Sanden2001-05-101-1/+2
| | | | | | Subject: Re: [PATCH t/TEST] B::Deparse tester Message-Id: <200105100448.FAA13584@crypt.compulink.co.uk> p4raw-id: //depot/perl@10070
* Add a for(func()) test.Jarkko Hietaniemi2001-05-101-1/+12
| | | p4raw-id: //depot/perl@10069
* our() lists and foreach loopsRobin Houston2001-05-101-3/+12
| | | | | Message-ID: <20010510135008.A2454@penderel> p4raw-id: //depot/perl@10068
* A thinko in #10065.Jarkko Hietaniemi2001-05-101-1/+1
| | | p4raw-id: //depot/perl@10067
* Fix tr///ansliterationRobin Houston2001-05-102-14/+28
| | | | | Message-ID: <20010510021034.A19421@penderel> p4raw-id: //depot/perl@10066
* [patch] make hv_fetch{_ent} SvGMAGICAL awareDoug MacEachern2001-05-101-4/+4
| | | | | Message-ID: <Pine.LNX.4.21.0105070947060.23808-100000@mako.covalent.net> p4raw-id: //depot/perl@10065
* One more workaround for the UTS compiler from Hal Morris.Jarkko Hietaniemi2001-05-091-0/+7
| | | p4raw-id: //depot/perl@10064
* Show string for PVOP, and referent for RVRobin Houston2001-05-091-1/+10
| | | | | Message-ID: <20010510010208.A18200@penderel> p4raw-id: //depot/perl@10063
* Simplify deb_curcv() a bitBenjamin Sugars2001-05-091-2/+0
| | | | | Message-ID: <Pine.LNX.4.21.0105091811340.1160-100000@marmot.rim.canoe.ca> p4raw-id: //depot/perl@10062
* Additional test case for PerlIO::ScalarBenjamin Sugars2001-05-091-1/+14
| | | | | Message-ID: <Pine.LNX.4.21.0105091758220.1160-100000@marmot.rim.canoe.ca> p4raw-id: //depot/perl@10061
* update md5sum for MD5.xs on IBM-1047Peter Prymmer2001-05-091-1/+1
| | | | | Message-ID: <Pine.OSF.4.10.10105091205250.455254-100000@aspara.forte.com> p4raw-id: //depot/perl@10060
* B::Deparse testerRobin Houston2001-05-092-8/+62
| | | | | Message-ID: <20010509191750.A16940@penderel> p4raw-id: //depot/perl@10059
* Pod::Html -- fixes extra gaps in raw textJeff Pinyan2001-05-091-1/+1
| | | | | Message-ID: <Pine.GSO.4.21.0105091430420.357-100000@crusoe.crusoe.net> p4raw-id: //depot/perl@10058
* Update Changes.Jarkko Hietaniemi2001-05-092-1/+235
| | | p4raw-id: //depot/perl@10056
* Integrate perlio:Jarkko Hietaniemi2001-05-093-3/+21
|\ | | | | | | | | | | | | | | [ 10050] win32, regen_config_h p4raw-link: @10050 on //depot/perlio: bc69c33c0f0d8128c01b934ef5f20ce57c96a341 p4raw-id: //depot/perl@10055
| * win32, regen_config_hNick Ing-Simmons2001-05-093-3/+21
| | | | | | p4raw-id: //depot/perlio@10050
* | Re: [PATCH] Test offset when reading from a PerlIO::ScalarBenjamin Sugars2001-05-091-1/+3
| | | | | | | | | | Message-ID: <Pine.LNX.4.21.0105091230110.1516-100000@marmot.rim.canoe.ca> p4raw-id: //depot/perl@10054
* | Test offset when reading from a PerlIO::ScalarBenjamin Sugars2001-05-091-1/+4
| | | | | | | | | | Message-ID: <Pine.LNX.4.21.0105081654140.1212-100000@marmot.rim.canoe.ca> p4raw-id: //depot/perl@10053
* | Pod::Html doesn't honor =begin ... =end properlyJeff Pinyan2001-05-091-0/+1
| | | | | | | | | | Message-ID: <Pine.GSO.4.21.0105091233430.357-100000@crusoe.crusoe.net> p4raw-id: //depot/perl@10052
* | EPOC tweak from Olaf Flebbe.Jarkko Hietaniemi2001-05-091-0/+3
| | | | | | p4raw-id: //depot/perl@10051
* | Integrate perlio:Jarkko Hietaniemi2001-05-091-0/+12
|\ \ | |/ | | | | | | | | | | | | | | [ 10048] If wait() or waitpid() ends due to EINTR despatch perl interrupt handler and re-try. Fixes "perl 5.7.x prefers suicide over killing more than one child." p4raw-link: @10048 on //depot/perlio: 0a0ada86d5873275d2ecec5cb3ffc5cb284ca30d p4raw-id: //depot/perl@10049
| * If wait() or waitpid() ends due to EINTR despatch perl interrupt handlerNick Ing-Simmons2001-05-091-0/+12
| | | | | | | | | | and re-try. Fixes "perl 5.7.x prefers suicide over killing more than one child." p4raw-id: //depot/perlio@10048
* | Integrate perlio:Jarkko Hietaniemi2001-05-091-1/+1
|\ \ | |/ | | | | | | | | | | | | [ 10045] MULTIPLICITY/DEBUGGING build fix. p4raw-link: @10045 on //depot/perlio: 7e78a3dd0a001bb9e811c17c95314cd5b6e3113a p4raw-id: //depot/perl@10047
| * MULTIPLICITY/DEBUGGING build fix.Nick Ing-Simmons2001-05-091-1/+1
| | | | | | p4raw-id: //depot/perlio@10045
| * Merge of mainline (does not build MULTIPLICITY/DEBUGGING issue).Nick Ing-Simmons2001-05-0969-774/+1708
| |\ | | | | | | p4raw-id: //depot/perlio@10044
* | | Re: Less warnings during configureH.Merijn Brand2001-05-091-0/+50
| |/ |/| | | | | | | Message-Id: <20010509125337.995D.H.M.BRAND@hccnet.nl> p4raw-id: //depot/perl@10046
* | [PATCH op.c] Deprecate %x->{'foo'}, @y->[23] etcRobin Houston2001-05-084-3/+56
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Date: Tue, 8 May 2001 19:38:00 +0100 Message-ID: <20010508193800.A4389@penderel> Subject: Re: [PATCH op.c] Deprecate %x->{'foo'}, @y->[23] etc From: Robin Houston <robin@kitsite.com> Date: Tue, 8 May 2001 20:03:57 +0100 Message-ID: <20010508200357.A4614@penderel> Subject: Re: [PATCH op.c] Deprecate %x->{'foo'}, @y->[23] etc From: Robin Houston <robin@kitsite.com> Date: Wed, 9 May 2001 00:12:05 +0100 Message-ID: <20010509001205.A18521@puffinry.freeserve.co.uk> p4raw-id: //depot/perl@10043
* | Retract #10031.Jarkko Hietaniemi2001-05-081-5/+0
| | | | | | p4raw-id: //depot/perl@10042
* | The Configure half ofH.Merijn Brand2001-05-081-4/+4
| | | | | | | | | | | | Subject: Less warnings during configure Message-Id: <20010508084158.D793.H.M.BRAND@hccnet.nl> p4raw-id: //depot/perl@10040
* | Less warnings during configureH.Merijn Brand2001-05-081-10/+10
| | | | | | | | | | Message-Id: <20010508084158.D793.H.M.BRAND@hccnet.nl> p4raw-id: //depot/perl@10039
* | Don't forget to whine about \d__\d.Jarkko Hietaniemi2001-05-082-11/+18
| | | | | | p4raw-id: //depot/perl@10038
* | Allow underscores also in the exponent part.Jarkko Hietaniemi2001-05-082-49/+194
| | | | | | p4raw-id: //depot/perl@10037
* | CodeMagicCD doesn't look like an *I*DE.Jarkko Hietaniemi2001-05-081-15/+19
| | | | | | p4raw-id: //depot/perl@10036
* | Add Open Perl IDE, remove Perl Code Magic (the site seemsJarkko Hietaniemi2001-05-081-5/+9
| | | | | | | | | | to be consistently down). p4raw-id: //depot/perl@10035
* | Upgrade to Text::Balanced 1.84.Jarkko Hietaniemi2001-05-082-7/+8
| | | | | | p4raw-id: //depot/perl@10034