summaryrefslogtreecommitdiff
path: root/pod
Commit message (Collapse)AuthorAgeFilesLines
* Merge commit 'khwilliamson/x' into bleadRafael Garcia-Suarez2009-12-121-5/+15
|\
| * qr/\X/ expansionKarl Williamson2009-12-051-5/+15
| |
* | Updated docpointer for illgutsReini Urban2009-12-091-5/+3
| |
* | legalize =begin foo barRicardo Signes2009-12-081-3/+7
| |
* | more aggressively deprecate L<section> and L<"section">Ricardo Signes2009-12-082-10/+11
| |
* | 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).