summaryrefslogtreecommitdiff
path: root/pod
Commit message (Collapse)AuthorAgeFilesLines
* remove prohibition against L<text|href>Ricardo Signes2009-12-082-4/+12
|
* [perl #71000] Wrong variable name in warninghv@crypt.org2009-12-061-0/+5
| | | | Add a new warning "Missing argument in %s"
* Unicode 5.2Karl Williamson2009-12-031-0/+6
|
* Document if.pm in perlfuncZefram2009-11-301-0/+9
|
* Document backreferences to groups that did not matchMoritz Lenz2009-11-281-0/+4
| | | | | Also add a test for that, fill in test description, and sneak in a vim modeline for re_tests
* Slight rewording of last patchRafael Garcia-Suarez2009-11-241-4/+8
|
* add mention of PERL_MEM_LOG in perlrun.podJim Cromie2009-11-241-0/+10
|
* Remove generated file pod/perluniprops.pod from the source distributionRafael Garcia-Suarez2009-11-242-2783/+1
|
* mktables not run unless neededKarl Williamson2009-11-241-1/+2
|
* * Remove some end-of-line whitespace from perlebcdicbrian d foy2009-11-231-3/+3
|
* * Convert some pod files to UTF-8 (like all of the other pod files)brian d foy2009-11-235-10/+10
|
* * Reword the sentence about checking unlink failuresbrian d foy2009-11-231-1/+1
|
* Added a perltodo about enabling/disabling individual warningsJesse Vincent2009-11-231-0/+5
|
* More info about camel in perlrepository.podDennis Kaarsemaker2009-11-231-9/+18
| | | | Signed-off-by: H.Merijn Brand <h.m.brand@xs4all.nl>
* Add new pod file to various lists and makefilesRafael Garcia-Suarez2009-11-221-0/+1
|
* Simplify title of perlunipropsRafael Garcia-Suarez2009-11-221-2/+1
| | | | The man standard requires the title to be on one line.
* Add deprecation of goto to inner scopes to perldeltaRafael Garcia-Suarez2009-11-221-2/+4
|
* Add Karl's text describing his Unicode property changes to perldeltaRafael Garcia-Suarez2009-11-221-0/+100
|
* Merge branch 'mktables' into bleadRafael Garcia-Suarez2009-11-221-0/+2783
|\
| * mktables revampKarl Williamson2009-11-211-0/+2783
| |
* | Fix unindented code in perlfunc after 5ed4f2ecec5b66feed399b9a24471aeac4242cdbVincent Pit2009-11-211-154/+154
|/
* Add new warning introduced by last patch in perldiag.Rafael Garcia-Suarez2009-11-212-2/+7
|
* deprecate "goto" to jump into a constructGerard Goossen2009-11-211-12/+15
|
* Clarify docs for implicit "next" on all "when" blocksMoritz Lenz2009-11-201-1/+1
|
* Fix up the NAME in perl5112delta.podNicholas Clark2009-11-201-1/+1
| | | | | (It needs to be this way to make search.cpan.org generate the right links) This step is already described in release_managers_guide.pod.
* create perl5113deltaLeon Brocard2009-11-202-0/+281
|
* Tiny English fixLeon Brocard2009-11-201-1/+1
|
* * Note that unlink sets $! on failure.brian d foy2009-11-191-10/+19
| | | | | | | | | | | | | | | The docs to unlink didn't explicitly note that it set $! on failure, unlike the docs on some other system calls do. While I was in there, I cleansed the entry a little and added an example of unlinking files one-by-one to find the ones that fail. Modern Perl fix: let's call a glob a glob() and not a <*>. This problem was noted on the Perl Beginner's list: http://www.nntp.perl.org/group/perl.beginners/2009/11/msg110062.html
* * Fixing inconsistent use of tabs in perlfunc. Now it's spaces spaces spaces.brian d foy2009-11-191-401/+401
|
* * FAQ sync for Nov blead releasebrian d foy2009-11-198-128/+913
| | | | | This comes from 028b6d17a07335707c2b234cb69ac4051ed48435 in git@github.com:briandfoy/perlfaq.git
* * Fixed sort example using =(\d+)brian d foy2009-11-191-31/+31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | The example wanted to sort a list like qw(=1 =2 =a =3 =d). One example tried to be clever with array indices and precomputed an array in @nums. However, it forgot to leave holes for the elements where it could not extract a run of digits. Once the indices were misaligned, the sort didn't give the right answer. I know you can read the patch, but since I fixed whitespace too, a simple diff gives you a lot of output. The old example had: for (@old) { push @nums, /=(\d+)/; push @caps, uc($_); } The new one keeps the indices aligned by using undef when the match failed: for (@old) { push @nums, ( /=(\d+)/ ? $1 : undef ); push @caps, uc($_); } This issue was reported on Stackoverflow: http://stackoverflow.com/questions/1754441
* The lexer API is very exciting, but only mention it onceLeon Brocard2009-11-191-9/+0
|
* Run Porting/podtidyLeon Brocard2009-11-191-80/+90
|
* Add details of module updatesLeon Brocard2009-11-191-4/+35
|
* Delete a few more sectionsLeon Brocard2009-11-191-43/+0
|
* Delete sections, add a bunch moreLeon Brocard2009-11-191-103/+77
|
* Fix POD: C<...->...> => C<< ...-> ... >>Frank Wiegand2009-11-192-2/+2
| | | | Signed-off-by: Abigail <abigail@abigail.be>
* Fill in some details about the releaseLeon Brocard2009-11-191-6/+56
|
* Tweak tense, remove double spacesLeon Brocard2009-11-191-14/+13
|
* lexer API fixesZefram2009-11-191-9/+11
| | | | | | | | | | | | | The attached patch contains these fixes for the lexer API work: * fix MinGW-revealed problem in BOM logic (replacing Jan's patch) * fix warnings from t/op/incfilter.t * probably fix g++ failure due to goto bypassing initialisation * perl5112delta update -zefram Signed-off-by: H.Merijn Brand <h.m.brand@xs4all.nl>
* Merge branch 'blead' of ssh://perl5.git.perl.org/gitroot/perl into bleadLeon Brocard2009-11-181-46/+50
|\
| * {camel,dromedary}.booking.com names are gone, so update them to ↵Vincent Pit2009-11-181-46/+50
| | | | | | | | | | | | {,users.}per5.git.perl.org And run podtidy.
* | Add the 5.11.2 releaseLeon Brocard2009-11-181-0/+1
|/
* Document SIGPIPE when printing to closed socketDavid Golden2009-11-161-0/+3
|
* lexer APIZefram2009-11-151-0/+14
| | | | | | | | | Attached is a patch that adds a public API for the lowest layers of lexing. This is meant to provide a solid foundation for the parsing that Devel::Declare and similar modules do, and it complements the pluggable keyword mechanism. The API consists of some existing variables combined with some new functions, all marked as experimental (which making them public certainly is).
* [perl #70337] perldiag: localtime(...) too largeFather Chrysostomos2009-11-131-0/+11
| | | | | | | | | The message ‘localtime(...) too large’ is not documented in perldiag. The attached patch adds it. I know it’s technically ‘%s(%.0f) too large’, but it’s easier for users to find it under ‘localtime’ and ‘gmtime’. I also had to modify diagnostics.pm to support %.0f, and I added a test, but I used a hack with STDERR that would make debugging very difficult to anyone else adding tests.
* Clarify and complete documentation for in-place reverseVincent Pit2009-11-102-2/+8
|
* Optimize reversing an array in-placeVincent Pit2009-11-101-4/+2
|
* Bareword sub lookupsZefram2009-11-081-0/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Attached is a patch that changes how the tokeniser looks up subroutines, when they're referenced by a bareword, for prototype and const-sub purposes. Formerly, it has looked up bareword subs directly in the package, which is contrary to the way the generated op tree looks up the sub, via an rv2cv op. The patch makes the tokeniser generate the rv2cv op earlier, and dig around in that. The motivation for this is to allow modules to hook the rv2cv op creation, to affect the name->subroutine lookup process. Currently, such hooking affects op execution as intended, but everything goes wrong with a bareword ref where the tokeniser looks at some unrelated CV, or a blank space, in the package. With the patch in place, an rv2cv hook correctly affects the tokeniser and therefore the prototype-based aspects of parsing. The patch also changes ck_subr (which applies the argument context and checking parts of prototype behaviour) to handle subs referenced by an RV const op inside the rv2cv, where formerly it would only handle a gv op inside the rv2cv. This is to support the most likely kind of modified rv2cv op. The attached patch is the resulting revised version of the bareword sub patch. It incorporates the original patch (allowing rv2cv op hookers to control prototype processing), the GV-downgrading addition, and a mention in perldelta.
* s/AvLEN/AvMAX/ in perlgutsEric Brine2009-11-081-1/+1
|