Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | remove the expectation of a "P" command | Ricardo Signes | 2013-05-28 | 1 | -1/+1 |
| | | | | | | | This command was introduced for the ill-fated assertions system, then *mostly* removed by commit 584420f022. Reported as [perl #118191] and [perl #118185] | ||||
* | On Linux LC_ALL overrides LC_MESSAGES, so tweak perl5db.t accordingly. | Nicholas Clark | 2013-05-27 | 1 | -0/+1 |
| | | | | | Without this, the test fails when LC_ALL is set to a non-English locale for which man has been localised. | ||||
* | man perlrules doesn't always output "No manual entry for perlrules" | Tony Cook | 2013-05-27 | 1 | -0/+5 |
| | | | | | | | especially when the locale is non-English. Hopefully all Linux dists are producing the same message, and force the language to "C" so we get English messages. | ||||
* | typo fixes for Unicode UCD | David Steinbrunner | 2013-05-26 | 1 | -7/+7 |
| | |||||
* | Correction recommended by Brad Gilbert++. | James E Keenan | 2013-05-25 | 1 | -2/+2 |
| | | | | | | Bump $VERSION. For: RT #118085 | ||||
* | In the debugger use local $ENV{MANPATH}, instead of a work around. | Nicholas Clark | 2013-05-25 | 1 | -8/+1 |
| | | | | | | local on regular hashes was fixed to delete elements it added by commit 1f5346dc23a1f0ea in Dec 2000. The analogous fix for tied hashes was made by commit c39e6ab0a7545b7a in May 2002. So the work around can go. | ||||
* | Remove the hard-coded list of "perl" manpages from the debugger. | Nicholas Clark | 2013-05-25 | 1 | -135/+15 |
| | | | | | Instead, use the directory of installed pod files to work out whether the page name the user typed should have "perl" prepended. | ||||
* | In the debugger's doc command, use man[13]direxp instead of man[13]dir. | Nicholas Clark | 2013-05-25 | 1 | -2/+2 |
| | | | | | Without this, the doc command won't work when perl is configured and installed with a prefix starting with ~ | ||||
* | Fix the man/perldoc/doc command in the debugger. | Nicholas Clark | 2013-05-25 | 2 | -2/+22 |
| | | | | This was accidentally broken by commit c7b0c61d36b24841. | ||||
* | lib/perldoc.pod is no longer generated, stop ignoring it | Tony Cook | 2013-05-25 | 1 | -1/+0 |
| | | | | | This changed with cb1974ba, 4a430f72 added an ignore for the new location but didn't remove the old location. | ||||
* | typo fix for perl5db | David Steinbrunner | 2013-05-25 | 1 | -9/+9 |
| | | | | Bump $VERSION. | ||||
* | typo fix for Thread | David Steinbrunner | 2013-05-25 | 1 | -2/+2 |
| | | | | Bump $VERSION. | ||||
* | typo fix for DB | David Steinbrunner | 2013-05-25 | 1 | -2/+2 |
| | | | | Bump $VERSION. | ||||
* | typo fix for _charnames | David Steinbrunner | 2013-05-25 | 2 | -2/+2 |
| | | | | Bump $VERSION for charnames. | ||||
* | Add lib/Pod/perldoc.pod to lib/.gitignore. | James E Keenan | 2013-05-25 | 1 | -0/+1 |
| | |||||
* | typo fixes for Benchmark | David Steinbrunner | 2013-05-25 | 1 | -24/+24 |
| | | | | Bump $VERSION; clean up trailing whitespace. | ||||
* | typo fix for File::Find | David Steinbrunner | 2013-05-25 | 1 | -2/+2 |
| | | | | Bump $VERSION for File::Find. | ||||
* | typo fixes for version pod | David Steinbrunner | 2013-05-24 | 1 | -2/+2 |
| | |||||
* | fix various podcheck nits | David Golden | 2013-05-23 | 2 | -8/+22 |
| | |||||
* | Make Unicode::UCD::search_invlist() available | Karl Williamson | 2013-05-22 | 2 | -11/+63 |
| | | | | | This commit documents this function, removing the initial underscore from its name. (And it hardens input checking.) | ||||
* | Unicode::UCD Clarifications in pod | Karl Williamson | 2013-05-22 | 1 | -7/+8 |
| | | | | | | There are no "missing" values in inversion maps; there is a default value returned for each one. So change the example variables' names. Plus another sentence rewording for clarity. | ||||
* | Unicode::UCD: Move function in file. | Karl Williamson | 2013-05-22 | 1 | -59/+59 |
| | | | | | This is in preparation for making this function public, and it should be listed in the pod later than it otherwise would be. | ||||
* | Unicode::UCD: Correct wrong pod info | Karl Williamson | 2013-05-22 | 1 | -15/+36 |
| | | | | This was erroneous. Extra clarifications are also added. | ||||
* | Fix multi-char fold edge case | Karl Williamson | 2013-05-20 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | use locale; fc("\N{LATIN CAPITAL LETTER SHARP S}") eq 2 x fc("\N{LATIN SMALL LETTER LONG S}") should return true, as the SHARP S folds to two 's's in a row, and the LONG S is an antique variant of 's', and folds to s. Until this commit, the expression was false. Similarly, the following should match, but didn't until this commit: "\N{LATIN SMALL LETTER SHARP S}" =~ /\N{LATIN SMALL LETTER LONG S}{2}/iaa The reason these didn't work properly is that in both cases the actual fold to 's' is disallowed. In the first case because of locale; and in the second because of /aa. And the code wasn't smart enough to realize that these were legal. The fix is to special case these so that the fold of sharp s (both capital and small) is two LONG S's under /aa; as is the fold of the capital sharp s under locale. The latter is user-visible, and the documentation of fc() now points that out. I believe this is such an edge case that no mention of it need be done in perldelta. | ||||
* | lib/charnames.t: Fix wrongly complemented test | Karl Williamson | 2013-05-20 | 1 | -2/+2 |
| | | | | | | | The 'if' test should be the opposite of what it is. I believe I had it this way for forcing the branch to be taken during testing, and forgot to restore it. It only matters if Perl is compiled with early Unicodes, or on a non-ASCII platform. | ||||
* | mktables: Fix typos in comments | Karl Williamson | 2013-05-20 | 1 | -2/+2 |
| | | | | | One of these fixes is for where a real CTRL-X was specified, instead of $^X | ||||
* | charnames: fix nit in comment | Karl Williamson | 2013-05-20 | 2 | -3/+3 |
| | |||||
* | Remove double space between words in pod | Brian Fraser | 2013-05-20 | 1 | -1/+1 |
| | |||||
* | lib/utf8.pm: Fix pod verbatim line wraps | Karl Williamson | 2013-05-20 | 1 | -14/+16 |
| | |||||
* | lib/utf8.pm: Pod clarification and nit | Karl Williamson | 2013-05-20 | 1 | -4/+4 |
| | |||||
* | Bump $Getopt::Std::VERSION following commit 0c0a84c65e572a92. | Nicholas Clark | 2013-05-20 | 1 | -1/+1 |
| | |||||
* | Document getopts before getopt, and de-recommend getopt. | Reuben Thomas | 2013-05-19 | 1 | -10/+12 |
| | |||||
* | utf8: Remove unused variable (%utf8::enc). | Brian Fraser | 2013-05-19 | 1 | -2/+1 |
| | | | | | | | | | | | | In its original implementation in perl 5.6, 'use utf8' accepted an encoding argument, which was saved in %utf8::enc and later used by utf8_heavy.pl to load the right files from lib/unico[rd]e. However, since 5.8 (or more specifically, 15732964418f), utf8_heavy.pl stopped using that variable, so there's no reason to keep it around in utf8.pm. Bump $VERSION in lib/utf8.pm. | ||||
* | Removed cpan/Log-Message | Chris 'BinGOs' Williams | 2013-05-18 | 1 | -4/+0 |
| | |||||
* | Removed cpan/Log-Message-Simple | Chris 'BinGOs' Williams | 2013-05-18 | 1 | -1/+0 |
| | |||||
* | Remove cpan/Object-Accessor | Chris 'BinGOs' Williams | 2013-05-18 | 1 | -1/+0 |
| | |||||
* | Remove cpan/Module-Pluggable | Chris 'BinGOs' Williams | 2013-05-18 | 1 | -2/+0 |
| | |||||
* | Remove cpan/Pod-LaTeX and pod2latex utility | Chris 'BinGOs' Williams | 2013-05-18 | 1 | -1/+0 |
| | |||||
* | Remove cpan/Archive-Extract | Chris 'BinGOs' Williams | 2013-05-18 | 1 | -1/+0 |
| | | | | | | | Note: Porting/core-cpan-diff refactored to use Archive::Tar instead of Archive::Extract | ||||
* | Remove cpan/CPANPLUS and associated utilities | Chris 'BinGOs' Williams | 2013-05-18 | 1 | -50/+0 |
| | |||||
* | Remove cpan/CPANPLUS-Dist-Build | Chris 'BinGOs' Williams | 2013-05-18 | 1 | -2/+0 |
| | |||||
* | regen feature.pm | Ricardo Signes | 2013-05-18 | 1 | -1/+6 |
| | |||||
* | lib/utf8_heavy.pl: Fix separated '(?' token | Karl Williamson | 2013-05-02 | 1 | -1/+1 |
| | | | | The next commit will warn when these aren't adjacent | ||||
* | Document that range operator '..' can not be overloaded. | Moritz Lenz | 2013-04-14 | 1 | -1/+5 |
| | | | | | Also document that this means that ranges and bigint.pm do not mix perfectly. Bump version numbers. | ||||
* | Exporter on CPAN is 5.68 make blead reflect this | Chris 'BinGOs' Williams | 2013-03-27 | 1 | -1/+1 |
| | |||||
* | Make smartmatch, given & when experimental | Brian Fraser | 2013-03-26 | 2 | -9/+14 |
| | |||||
* | bump version on perl5db.pl | Ricardo Signes | 2013-03-18 | 1 | -1/+1 |
| | |||||
* | lib/perl5db.pl: Workaround rt#116771 by putting DB::Obj inside BEGIN { } | Kent Fredric | 2013-03-18 | 1 | -0/+14 |
| | |||||
* | lib/perl5db.t: Add test for bug #116771, autotrace crashes debugger | Kent Fredric | 2013-03-18 | 1 | -1/+8 |
| | |||||
* | lib/perl5db.t: Add test for bug #116769, Frame=2 crashes debugger | Kent Fredric | 2013-03-18 | 1 | -1/+8 |
| |