summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* windows fixes for virtualizing child std{in,out,err} handles,Gurusamy Sarathy2000-02-204-5/+42
| | | | | | attempts to lock uninitialized critical section in files that were never explicitly opened (from Doug Lankshear) p4raw-id: //depot/perl@5169
* update Changes, creditsGurusamy Sarathy2000-02-201-2/+358
| | | p4raw-id: //depot/perl@5168
* avoid reading out-of-bounds memory when matching against referenceGurusamy Sarathy2000-02-201-1/+1
| | | p4raw-id: //depot/perl@5167
* byte mode chop() should clear UTF8 (from Gisle Aas)Gurusamy Sarathy2000-02-201-0/+1
| | | p4raw-id: //depot/perl@5166
* test fix needed by change#5164Gurusamy Sarathy2000-02-201-2/+2
| | | | | p4raw-link: @5164 on //depot/perl: 5a211162cd360449f2dbfb7ca9231c025909353f p4raw-id: //depot/perl@5165
* default mkdir() mode argument to 0777Gurusamy Sarathy2000-02-207-16/+25
| | | p4raw-id: //depot/perl@5164
* glob() takes one or no user arguments and a non-user-visible secondGurusamy Sarathy2000-02-203-3/+4
| | | | | hidden argument, fix its prototype-checking accordingly p4raw-id: //depot/perl@5163
* make change#3386 a build-time option (avoids problems due toGurusamy Sarathy2000-02-2016-86/+286
| | | | | | | perl_run() longjmping out) p4raw-link: @3386 on //depot/perl: 312caa8e97f1c7ee342a9895c2f0e749625b4929 p4raw-id: //depot/perl@5162
* IO::Socket now sets $!, avoids eval/die (patch from Graham BarrGurusamy Sarathy2000-02-202-56/+77
| | | | | modified to use Errno more portably) p4raw-id: //depot/perl@5161
* mention portability caveat about C<use Errno 'EFOO'>Gurusamy Sarathy2000-02-201-6/+18
| | | p4raw-id: //depot/perl@5160
* revise docs on @+ and @- (from Tom "Camel" Christiansen)Gurusamy Sarathy2000-02-201-10/+37
| | | p4raw-id: //depot/perl@5159
* README.vms and related updates (from Peter Prymmer <pvhp@best.com>)Gurusamy Sarathy2000-02-208-265/+572
| | | p4raw-id: //depot/perl@5158
* char vs U8 warningsGurusamy Sarathy2000-02-191-2/+2
| | | p4raw-id: //depot/perl@5155
* remove outdated caveat about C<while ($k = each %foo)> (fromGurusamy Sarathy2000-02-191-3/+1
| | | | | Hugo van der Sanden) p4raw-id: //depot/perl@5154
* tests, doc tweak (from Gisle Aas)Gurusamy Sarathy2000-02-192-5/+12
| | | p4raw-id: //depot/perl@5153
* document behavior of splice(@ary) (from Gisle Aas)Gurusamy Sarathy2000-02-191-1/+5
| | | p4raw-id: //depot/perl@5152
* fix bug in backtracking optimizer (from Makoto IshisoneGurusamy Sarathy2000-02-192-2/+21
| | | | | <ishisone@sra.co.jp>) p4raw-id: //depot/perl@5151
* more B fixups to cope with empty GVs (these can only happen in pads)Gurusamy Sarathy2000-02-194-14/+35
| | | p4raw-id: //depot/perl@5150
* avoid compiler warningsGurusamy Sarathy2000-02-192-8/+8
| | | p4raw-id: //depot/perl@5149
* document 'lvalue' attribute (from Simon Cozens <simon@brecon.co.uk>)Gurusamy Sarathy2000-02-191-0/+6
| | | p4raw-id: //depot/perl@5148
* avoid failing on $!{ENOTHERE} (they can always use C<exists $!{NOTHERE}>Gurusamy Sarathy2000-02-191-6/+8
| | | | | for that) p4raw-id: //depot/perl@5147
* integrate cfgperl contents into mainlineGurusamy Sarathy2000-02-1913-148/+780
|\ | | | | p4raw-id: //depot/perl@5146
| * Take out the -Wl,-z as we have survice so far without.Jarkko Hietaniemi2000-02-171-1/+1
| | | | | | p4raw-id: //depot/cfgperl@5124
| * Integrate with Sarathy.Jarkko Hietaniemi2000-02-173-10/+1
| |\ | | | | | | p4raw-id: //depot/cfgperl@5123
| * | Regularize the use* questions, and replaceJarkko Hietaniemi2000-02-161-36/+35
| | | | | | | | | | | | | | | | | | "Configure *must* be run with -Duse..." with. "can be run". p4raw-id: //depot/cfgperl@5120
| * | HP-UX 64-bitness/largefile fixes.Jarkko Hietaniemi2000-02-165-75/+89
| | | | | | | | | p4raw-id: //depot/cfgperl@5119
| * | Fcntl: more O_ constants, move SEEK_ to @EXPORT_OKJarkko Hietaniemi2000-02-169-37/+656
| | | | | | | | | | | | | | | | | | | | | | | | (tag :seek), add S_I constants (and functions) (tag :mode); refer only to the SEEK_ of Fcntl, not the ones from POSIX or IO::; add SHUT_ to Socket; get trigonometric functions from Math::Trig instead of POSIX. p4raw-id: //depot/cfgperl@5118
* | | POSIX::strftime gets the date wrong (from John TobeyGurusamy Sarathy2000-02-192-3/+10
| | | | | | | | | | | | | | | <jtobey@epsilondev.com>) p4raw-id: //depot/perl@5145
* | | don't blindly set bool=char on linux (from Andy Dougherty)Gurusamy Sarathy2000-02-193-17/+13
| | | | | | | | | p4raw-id: //depot/perl@5144
* | | some rearrangement of the includes for easier "microperl" build;Gurusamy Sarathy2000-02-197-41/+24
| | | | | | | | | | | | | | | add PERL_MICRO guards supplied by Simon Cozens <simon@brecon.co.uk> p4raw-id: //depot/perl@5143
* | | fixes for Pod::Html issues (from Wolfgang LaunGurusamy Sarathy2000-02-191-10/+14
| | | | | | | | | | | | | | | <wolfgang.laun@chello.at>) p4raw-id: //depot/perl@5142
* | | grammos (spotted by Tom Christiansen)Gurusamy Sarathy2000-02-191-3/+3
| | | | | | | | | p4raw-id: //depot/perl@5141
* | | various xsubpp enhancements that make it easier to use withGurusamy Sarathy2000-02-191-30/+144
| | | | | | | | | | | | | | | | | | | | | C::Scan (from Ilya Zakharevich) TODO: still needs documentation p4raw-id: //depot/perl@5140
* | | s/croak/Perl_croak/Gurusamy Sarathy2000-02-191-1/+1
| | | | | | | | | p4raw-id: //depot/perl@5139
* | | make comparisons promote to utf8 as necessary (from Gisle Aas)Gurusamy Sarathy2000-02-1910-14/+269
| | | | | | | | | p4raw-id: //depot/perl@5138
* | | set close-on-exec flag on sockets too, like we do for filesGurusamy Sarathy2000-02-194-6/+31
| | | | | | | | | | | | | | | and pipes p4raw-id: //depot/perl@5137
* | | allocate sufficient buffer sizes for 64-bit wide utf8 charactersGurusamy Sarathy2000-02-193-19/+21
| | | | | | | | | | | | | | | | | | | | | permitted by change#5011 (from Gisle Aas) p4raw-link: @5011 on //depot/perl: 3c77ea2bace63b1ad27d15a6366cb938bdd158cb p4raw-id: //depot/perl@5136
* | | s/WARN_PRECEDENCE/WARN_BAREWORD/, vide change#5131Gurusamy Sarathy2000-02-194-18/+18
| | | | | | | | | | | | | | | p4raw-link: @5131 on //depot/perl: 34d09196f6a006314d7ea49a091a30ce5ee08bff p4raw-id: //depot/perl@5135
* | | s/byte/bytes/g remnantsGurusamy Sarathy2000-02-192-10/+10
| | | | | | | | | p4raw-id: //depot/perl@5134
* | | rename byte:: to bytes::Gurusamy Sarathy2000-02-1911-16/+16
| | | | | | | | | p4raw-id: //depot/perl@5133
* | | English names for $^R and $^SGurusamy Sarathy2000-02-192-0/+8
| | | | | | | | | p4raw-id: //depot/perl@5132
* | | rename "Probable precendence problem" diagnostic to "Bareword foundGurusamy Sarathy2000-02-194-12/+43
| | | | | | | | | | | | | | | | | | in conditional" to better reflect the class of error (as suggested by Larry) p4raw-id: //depot/perl@5131
* | | fix outdated info about PerlClinic and the bug-tracking systemGurusamy Sarathy2000-02-192-31/+28
| | | | | | | | | p4raw-id: //depot/perl@5130
* | | some fixes for mingw32/GCC (SETERRNO() still appears toGurusamy Sarathy2000-02-195-18/+18
| | | | | | | | | | | | | | | trash memory) p4raw-id: //depot/perl@5129
* | | avoid $@-clearing sideeffect of require in CarpGurusamy Sarathy2000-02-181-2/+2
| | | | | | | | | p4raw-id: //depot/perl@5128
* | | stronger testcase for change#5126Gurusamy Sarathy2000-02-181-12/+37
| | | | | | | | | | | | | | | p4raw-link: @5126 on //depot/perl: 9442cb0ec25041ea5b061c40868e0a3c8bfbb2ab p4raw-id: //depot/perl@5127
* | | make /\S/ match the same things /[\S]/ matches; likewise forGurusamy Sarathy2000-02-182-17/+71
| | | | | | | | | | | | | | | \D (from Rick Delaney <rick@consumercontact.com>) p4raw-id: //depot/perl@5126
* | | Compiler fixups from Jan DuboisGurusamy Sarathy2000-02-184-70/+135
| |/ |/| | | p4raw-id: //depot/perl@5125
* | fix test that depends on op_dump() outputGurusamy Sarathy2000-02-171-1/+1
| | | | | | p4raw-id: //depot/perl@5122
* | op_dump() tweakGurusamy Sarathy2000-02-171-2/+0
| | | | | | p4raw-id: //depot/perl@5121