summaryrefslogtreecommitdiff
path: root/pod
Commit message (Collapse)AuthorAgeFilesLines
* Rename cop_hints to cop_hints_hashNicholas Clark2006-05-201-1/+2
| | | p4raw-id: //depot/perl@28252
* Correct Perl_refcounted_he_chain_2hv() and its caller - it doesn'tNicholas Clark2006-05-191-4/+3
| | | | | store a reference to the value, so don't pass it in a new SV. p4raw-id: //depot/perl@28245
* Rebuild perltoc.pod.Nicholas Clark2006-05-191-486/+2413
| | | p4raw-id: //depot/perl@28242
* Add perlpragma.pod, which describes how to implement user pragmata.Nicholas Clark2006-05-192-0/+139
| | | p4raw-id: //depot/perl@28241
* Add README.riscos to pod.lstNicholas Clark2006-05-191-0/+1
| | | p4raw-id: //depot/perl@28239
* give a more useful example for $^VDave Mitchell2006-05-191-1/+4
| | | p4raw-id: //depot/perl@28235
* Re: Change 28183 has broken 64-bit builds?Jarkko Hietaniemi2006-05-171-5/+9
| | | | | Message-ID: <446B7757.8030301@gmail.com> p4raw-id: //depot/perl@28216
* Clarification on what Perl does to floating points in the modulus Steve Peters2006-05-151-1/+3
| | | | | operation. p4raw-id: //depot/perl@28200
* [REPATCH universal.c] Make sv_derived_from Documentation Clearerchromatic2006-05-151-3/+3
| | | | | Message-Id: <200605141651.37181.chromatic@wgz.org> p4raw-id: //depot/perl@28195
* Re: [PATCH] my_snprintfJarkko Hietaniemi2006-05-121-0/+25
| | | | | Message-ID: <4464E1F1.9010706@gmail.com> p4raw-id: //depot/perl@28183
* AW: question on "len item/string item" with unpack()Peter Dintelmann2006-05-121-12/+15
| | | | | | From: "Dintelmann, Peter" <Peter.Dintelmann@Dresdner-Bank.com> Message-ID: <E9A2605289D8D7468B1A21EC24E59D2104979424@naimucx5.muc.allianz> p4raw-id: //depot/perl@28181
* Adding a mention of STDIN processing by qx// as requested by Steve Peters2006-05-111-0/+9
| | | | | RT #34288: perlop: qx/STRING/: mention STDIN p4raw-id: //depot/perl@28156
* perlop.pod doc patch: I/O operatorsAsh Berlin2006-05-091-2/+2
| | | | | Message-ID: <445CA190.1070105@cpan.org> p4raw-id: //depot/perl@28133
* Document order of evaluation for the comma operatorPaul Johnson2006-05-041-1/+2
| | | | | | Subject: [PATCH] Re: Kill select((select(OUTPUT_HANDLE), $| = 1)[0]); Message-ID: <20060426203843.GE21543@pjcj.net> p4raw-id: //depot/perl@28092
* RE: [PATCH] Implement ${^WIN32_SLOPPY_STAT}Jan Dubois2006-05-041-0/+5
| | | | | | From: "Jan Dubois" <jand@activestate.com> Message-ID: <013f01c66ee9$8f1437a0$d045a8c0@candy> p4raw-id: //depot/perl@28091
* Introduce a new keyword, state, for state variables.Rafael Garcia-Suarez2006-05-031-1/+1
| | | p4raw-id: //depot/perl@28086
* Clarify hard link support on WindowsJan Dubois2006-05-031-2/+5
| | | | | | From: "Jan Dubois" <jand@activestate.com> Message-ID: <013a01c66edf$982ebcc0$d045a8c0@candy> p4raw-id: //depot/perl@28084
* RE: [PATCH] Implement ${^WIN32_SLOPPY_STAT}Jan Dubois2006-05-031-0/+13
| | | | | | From: "Jan Dubois" <jand@activestate.com> Message-ID: <013901c66edd$fb8ae750$d045a8c0@candy> p4raw-id: //depot/perl@28083
* Fix bug in DynaLoader, which has been passing a filename in dynamicNicholas Clark2006-05-021-1/+2
| | | | | | | storage to newXS() seemingly forever. This involves creating newXS_flags(), with the first flag being "arrange to copy the filename and free it at the right time". p4raw-id: //depot/perl@28063
* [DOC PATCH] chop warning in perlportXavier Noria2006-05-021-15/+3
| | | | | Message-Id: <E06C0594-CAF6-4822-8EB4-8E06EAD4A889@hashref.com> p4raw-id: //depot/perl@28054
* Perl_pack_cat() is a mathom too!Nicholas Clark2006-04-301-11/+11
| | | p4raw-id: //depot/perl@28031
* Document SvGAMAGIC(), and its significance w.r.t. the side effects ofNicholas Clark2006-04-301-0/+14
| | | | | inadvertently calling magic and overloading too often. p4raw-id: //depot/perl@28021
* Add a cross reference to bytes_from_utf8() in the documentation forNicholas Clark2006-04-291-11/+13
| | | | | utf8_to_bytes(). Regenerate perlapi.pod. p4raw-id: //depot/perl@28015
* Typo fix in perlretut by Simon TaylorRafael Garcia-Suarez2006-04-281-1/+1
| | | p4raw-id: //depot/perl@27989
* Changes to perlfaq8 "How do I find out if I'm running interactively Steve Peters2006-04-191-6/+12
| | | | | or not?" suggested by Slaven Rezic in RT #38901: perlfaq8 correction p4raw-id: //depot/perl@27905
* Calling cv_undef() on the CV created by newCONSTSUB() would leak likeNicholas Clark2006-04-191-3/+3
| | | | | | | | | | a Jumblie's preferred maritime craft. To free CvFILE for this case, take advantage of the 0 length prototype that will also be there, and hang it from the prototype. To do this properly means changing code to actually pay attention to SvCUR() on prototypes. It turns out that we always know the length of the prototype string, so this may be faster. Certainly, it's a memory saving (even ignoring the leak). p4raw-id: //depot/perl@27896
* Add a TODO regarding merging the win32 and wince codebases.Steve Peters2006-04-181-2/+6
| | | p4raw-id: //depot/perl@27892
* Expand "am I hot or not" into a more general "Profile Perl" section.Nicholas Clark2006-04-181-8/+14
| | | p4raw-id: //depot/perl@27890
* Note that Rafael has done the first cut of state variables.Nicholas Clark2006-04-181-0/+9
| | | | | Document that UTF-8 cleansing the tokeniser and the pads is TODO. p4raw-id: //depot/perl@27886
* Relocatable @INC and parallel builds pretty much work now.Nicholas Clark2006-04-181-13/+0
| | | p4raw-id: //depot/perl@27885
* Fix an error, spotted by Tim Bunce.Nicholas Clark2006-04-171-1/+1
| | | p4raw-id: //depot/perl@27881
* Coderefs in @INC are done and documented.Nicholas Clark2006-04-171-5/+0
| | | p4raw-id: //depot/perl@27880
* Document all the return values that code references in @INC can return.Nicholas Clark2006-04-171-6/+36
| | | p4raw-id: //depot/perl@27879
* Turn on UTF8 cache assertions with -CaNicholas Clark2006-04-171-0/+5
| | | p4raw-id: //depot/perl@27875
* Note that PVIOs probably aren't worth shrinking. Note 3 possibleNicholas Clark2006-04-172-3/+10
| | | | | subflags for -C if the two Unicode TODOs are done. p4raw-id: //depot/perl@27872
* Stray pod/perlapi.pod change found after a regen.Steve Peters2006-04-161-16/+32
| | | p4raw-id: //depot/perl@27846
* In the description of require, clarify the file handle return and whyNicholas Clark2006-04-141-3/+6
| | | | | C<INC> must be qualified. p4raw-id: //depot/perl@27804
* doop.c: (Coverity) found a bug but not quite what Coverity thought it did ↵Jarkko Hietaniemi2006-04-141-6/+8
| | | | | | | (try valgrind on the new bop.t without the doop.c patch) Message-Id: <20060413162046.5F9636D08C@ugli.hut.fi> p4raw-id: //depot/perl@27801
* eliminate PL_reg_reDave Mitchell2006-04-131-20/+0
| | | | | (only another 439 to go ...) p4raw-id: //depot/perl@27783
* sv.c, rs.t, perlvar.pod (Coverity finding: did you know what happens with ↵Jarkko Hietaniemi2006-04-081-1/+2
| | | | | | | | | | $/=\0?) Message-Id: <20060408152533.C4D5F6D08C@ugli.hut.fi> (although I should add that this version of Coverity is actually raising a false positive here, albeit something still interesting) p4raw-id: //depot/perl@27744
* Document that the regexp engine is not currently reentrantDominic Dunlop2006-04-031-0/+8
| | | | | | Subject: Re: [perl #33936] segment fault when using split() in regexp with (??{...}) Message-Id: <AD104FE7-2BD6-49B6-A845-46458179A4B1@computer.org> p4raw-id: //depot/perl@27697
* Re: recent changes have some unmatching of parameters and typesSADAHIRO Tomoyuki2006-04-021-1/+1
| | | | | | Message-Id: <20060402122547.0037.BQW10602@nifty.com> Date: Sun, 02 Apr 2006 12:32:53 +0900 p4raw-id: //depot/perl@27680
* Propagate cop_hints inside string evals. For the unthreaded case thisNicholas Clark2006-04-011-1/+11
| | | | | | | is easy. For the threaded case it's not, because the current OP may be shared with another thread, so solve this by copying the hints chain. p4raw-id: //depot/perl@27659
* Document new magic types in perlguts. Fix a comment about sort hints.Rafael Garcia-Suarez2006-03-311-0/+2
| | | p4raw-id: //depot/perl@27644
* Serialise changes to %^H onto the current COP. Return the compile timeNicholas Clark2006-03-312-1/+69
| | | | | | state of %^H as an eleventh value from caller. This allows users to write pragmas. p4raw-id: //depot/perl@27643
* Pod nit mentioned in Debian bug #358455.Steve Peters2006-03-301-1/+1
| | | p4raw-id: //depot/perl@27635
* child's processor timeHugo van der Sanden2006-03-291-0/+2
| | | | | Message-Id: <200603291234.k2TCY6r29535@zen.crypt.org> p4raw-id: //depot/perl@27629
* re-[PATCH] Re: [PATCH] Poison now in two different flavours!Jarkko Hietaniemi2006-03-293-6/+30
| | | | | Message-ID: <442680D4.3000809@gmail.com> p4raw-id: //depot/perl@27626
* Having tested IPv6 support in all builtins for TCP and UDP, it allNicholas Clark2006-03-281-4/+0
| | | | | seem to work perfectly. So remove from perltodo.pod. p4raw-id: //depot/perl@27621
* If constant folding fails, don't fold constants, rather than reportingNicholas Clark2006-03-272-7/+5
| | | | | | the error at compile time. This allows illegal constant expressions in dead code to be ignored. p4raw-id: //depot/perl@27615