summaryrefslogtreecommitdiff
path: root/pod
Commit message (Collapse)AuthorAgeFilesLines
* Add perldelta for Unicode CCC132 fixKarl Williamson2012-05-231-0/+7
|
* [perl #112604] perlre man page contains suspect example of recursionRonald J Kimball2012-05-231-1/+1
| | | | | | | | | Jim Avera wrote: > This seems incorrect because the \s++ eats all white space without > backtracking, preventing the following \s+ from matching. > Thus the pattern always fails for any input. It should be \s+ \+ \s+
* [perl #112522] Mildly incorrect wording in "perldoc perlre"Aristotle Pagaltzis2012-05-231-2/+2
|
* Correct perldelta entry for fallback entryFather Chrysostomos2012-05-231-2/+2
|
* perldelta for PL_amagic_generation removalFather Chrysostomos2012-05-231-4/+2
|
* perlfunc: long linesFather Chrysostomos2012-05-231-215/+231
|
* Purported equivalency isn't.Eric Brine2012-05-221-3/+3
|
* perlebcdic: make verbatim line fit in 79 colsKarl Williamson2012-05-221-3/+3
|
* perlebcdic: Narrow table to fit in 79 columnsKarl Williamson2012-05-221-292/+291
| | | | | | | | | This uses the abbreviations for control characters available officially in Unicode 6.1, instead of the much longer names, thus enabling this table to be narrowed. With some space changes, it will fit in 79 columns. The differences look large, but most go away under 'diff -b'. The recipes are changed to correspond.
* perlebcdic: Add a few commas for clarityKarl Williamson2012-05-221-3/+3
|
* perlebcdic: remove trailing white spaceKarl Williamson2012-05-221-167/+167
|
* perlfunc: Add reference to simple folding docsKarl Williamson2012-05-221-1/+3
|
* Experimentally add VT to \s definitionKarl Williamson2012-05-221-0/+8
| | | | | | | | | | | | | | This commit is the minimal necessary to get \s to match the vertical tab. It is being done early in the 5.17 series in order to see what repercussions there might be from doing this. It may well be that we decide that this change will require a 'use feature' to activate. In any event there is significant documentation of the behavior without the VT that this patch does not address at all. Tom Christiansen asked Larry Wall why \s did not include VT, and reported that Larry replied that he did not remember, but had no objections to adding it.
* perldelta for undef *_, &CORE::time crashFather Chrysostomos2012-05-211-0/+5
|
* perldelta for while(each %h)Father Chrysostomos2012-05-211-0/+5
|
* perldelta for pos %fooFather Chrysostomos2012-05-211-0/+5
|
* perldelta for ‘no overload "invalid"’ warningsFather Chrysostomos2012-05-211-0/+6
|
* perldelta for overload fallback inheritanceFather Chrysostomos2012-05-211-0/+4
|
* perldelta for overload caching bug fixesFather Chrysostomos2012-05-211-0/+11
|
* perldelta for changed AMAGIC table mechanismFather Chrysostomos2012-05-211-1/+19
|
* perldelta for File::stat’s -pFather Chrysostomos2012-05-211-0/+2
|
* perldelta for vec w/2GB offsetsFather Chrysostomos2012-05-211-0/+4
|
* perldelta for File::stat -r warningFather Chrysostomos2012-05-211-2/+10
|
* perldelta for method{}Father Chrysostomos2012-05-211-0/+6
|
* perldelta for CORE:: and TARGFather Chrysostomos2012-05-211-0/+9
|
* perldelta for undef *^H non-ambiguityFather Chrysostomos2012-05-211-0/+5
|
* perldelta for Hash::Util changesFather Chrysostomos2012-05-211-0/+14
|
* perldelta for modding $_[0] in STORABLE_freezeFather Chrysostomos2012-05-211-1/+4
|
* perldelta for setting $^NFather Chrysostomos2012-05-211-0/+6
|
* perldelta for copying call checkers to closuresFather Chrysostomos2012-05-211-0/+6
|
* perldelta for hvstore and %^HFather Chrysostomos2012-05-211-0/+5
|
* perldelta for goto "\0"Father Chrysostomos2012-05-211-0/+5
|
* perldelta for goto ""Father Chrysostomos2012-05-211-1/+2
|
* Remove double space from Pod::Functions descrFather Chrysostomos2012-05-211-1/+1
|
* [perl #112692] perlfunc: waitpid takes two argsEric Brine2012-05-211-1/+1
|
* Annihilate ‘A’ magicFather Chrysostomos2012-05-211-61/+58
| | | | | | | | | How ironic! Overloading is called ‘A’ magic internally all over the place, because of the letter used as its magic type. But now it does not even use that magic. I left a comment in mg_vtable.pl, so that future maintainers will have some clue as to what AMAGIC means.
* Correct spelling error reported by rrt.jkeenan2012-05-211-2/+2
| | | | For RT #112772.
* [perlfunc] fix usage of waitMoritz Lenz2012-05-211-1/+1
|
* document the return value of pipe()Tony Cook2012-05-211-0/+2
|
* perldiag: Rewrap symref error for better splain outputFather Chrysostomos2012-05-211-7/+7
| | | | | | | | | | | | | | | | | | | | | | Before: (F) You've told Perl to dereference a string, something which use strict blocks to prevent it happening accidentally. See "Symbolic references" in perlref. This can be triggered by an @ or $ in a double-quoted string immediately before interpolating a variable, for example in "user @$twitter_id", which says to treat the contents of $twitter_id as an array reference; use a \ to have a literal @ symbol followed by the contents of $twitter_id: "user \@$twitter_id". After: (F) You've told Perl to dereference a string, something which use strict blocks to prevent it happening accidentally. See "Symbolic references" in perlref. This can be triggered by an @ or $ in a double-quoted string immediately before interpolating a variable, for example in "user @$twitter_id", which says to treat the contents of $twitter_id as an array reference; use a \ to have a literal @ symbol followed by the contents of $twitter_id: "user \@$twitter_id".
* Make symbolic references diagnostic less crypticSmylers2012-05-211-2/+7
| | | | | | | | | | | | If somebody has accidentally used a symbolic reference with strict enabled and are looking for diagnostics then it's likely they didn't intend to use a symbolic reference at all. A beginner may not even know what a symbolic reference is, or even a reference. So explain the error in terms of what the user has done, not what sort of references are allowed. Provide a simple example of how this error can occur, so even those who don't know about references have a chance of spotting and fixing their mistake.
* document behavior of duplicate keys in hash assignmentLukas Mai2012-05-211-0/+23
|
* add a directory of tests to run with large available memoryTony Cook2012-05-211-0/+7
| | | | Intended for testing 64-bit behavious
* [perl #112418] Fix POD paragraph formattingFather Chrysostomos2012-05-211-0/+1
| | | | | There was no empty line before a verbatim paragraph, making it not verbatim.
* perldata: Consistent spaces after dotsFather Chrysostomos2012-05-211-13/+13
|
* Copy call checker when cloning closure prototypeFather Chrysostomos2012-05-211-1/+1
| | | | | Otherwise cv_set_call_checker has no effect inside an attribute han- dler for a closure.
* Removed a redundant 'once'Alan Haggai Alavi2012-05-211-1/+1
|
* create the new perldelta for 5.17.0Ricardo Signes2012-05-203-4073/+4469
|
* perlhist: add the perl-5.16.0 and -RC2 datesv5.16.0Ricardo Signes2012-05-201-0/+2
|
* perldelta: fix the example of lvalue ref from substrRicardo Signes2012-05-201-2/+2
| | | | reported by Shlomi Fish